diff --git a/.appveyor.yml b/.appveyor.yml index ef08146f..70d4d921 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,5 +1,5 @@ os: - - Visual Studio 2019 + - Visual Studio 2017 configuration: - Debug @@ -20,8 +20,8 @@ before_build: - git submodule update --init - mkdir build - cd build - - cmake .. -G "Visual Studio 16 2019" -A x64 - - cmake --build . --target ALL_BUILD --config RelWithDebInfo + - cmake .. -G "Visual Studio 15 2017 Win64" + - cmake --build . --target ALL_BUILD --config Release build_script: - cd bin diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md deleted file mode 100644 index ce291207..00000000 --- a/.github/CONTRIBUTING.md +++ /dev/null @@ -1,63 +0,0 @@ -# Contributing - -Thanks for contributing to Sapphire! - -First, we'd like to mention that a lot of discussion regarding the project happens in our Discord server. -We value research and discussion as to how we should tackle our issues as well as improving what is already in. -Of course we also value testing - many things tend to break due to patches, or mistakes/edge cases. - -Regardless of how you plan on contributing, your thoughts are appreciated and you're welcome to join our Discord (link in README.md). - -## Research - -Care in implementating features should be taken. It tends to be end up weird, and replicating the expected behavior -is always preferred. Avoid assumptions and guesswork whenever possible. - -As much research possible should be done before writing it out - on game data, testing with retail, -and even common practices in server development (emulators or not). - -## Pull Requests - -When making a PR, please make sure that it follows our style guidelines and good practices. - -### Coding style - -Indentations are Allman-style based, 2-space, no tabs. -Space between arguments in function calls, as well as for types. - -Example (shortened from ActionHandler.cpp): - -```cpp -switch( commandId ) -{ - case 0x01: // Toggle sheathe - { - if( param11 == 1 ) - pPlayer->setStance( Entity::Chara::Stance::Active ); - else - { - pPlayer->setStance( Entity::Chara::Stance::Passive ); - pPlayer->setAutoattack( false ); - } - - pPlayer->sendToInRangeSet( ActorControlPacket142( pPlayer->getId(), 0, param11, 1 ) ); - - break; - } - case 0x03: // Change target - { - uint64_t targetId = inPacket.getValAt< uint64_t >( 0x24 ); - pPlayer->changeTarget( targetId ); - break; - } - default: - { - break; - } -} -``` - -### Feature implementation - -Please make sure edge cases have been tested, behavior is aligned with retail and (if applicable) your queries make sense. -Any changes to the SQL base should be noted (and reflected in the update.sql file in rootDirectory/sql). diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 9edef5fe..00000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,9 +0,0 @@ -**Describe the problem:** *Please describe the problem you're encountering accurately, including steps to reproduce/recreate the issue.* - -**Screenshots or videos needed to identify the problem:** *Please attach screenshots or videos showing the problem to this issue, if applicable.* - -**Sapphire branch and commit:** *You can get this by checking the server startup message in your console window, running `` git describe --all`` in a console window or looking at your git client.* - -**Logs:** *You can get these from the /bin/logs directory in your sapphire clone, please attach them to this issue.* - -**Setup:** *Please note down which operating system you are using and any other information about your setup which could be of use to us, like compiler/Visual Studio version and FFXIV version.* \ No newline at end of file diff --git a/.gitignore b/.gitignore index 4e989b2b..eb84142e 100644 --- a/.gitignore +++ b/.gitignore @@ -129,7 +129,7 @@ src/common/Version\.cpp .mtime_cache # generated script loader files -**/ScriptLoader.cpp +src/scripts/*/ScriptLoader.cpp # cotire generated files/folders cotire/ diff --git a/.travis.yml b/.travis.yml index 4c04e527..375d4353 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,10 +14,9 @@ matrix: sources: - ubuntu-toolchain-r-test packages: - - g++-8 + - g++-7 env: - - MATRIX_EVAL="CC=gcc-8 && CXX=g++-8" - - CXX=g++-8 + - MATRIX_EVAL="CC=gcc-7 && CXX=g++-7" # Setup cache cache: diff --git a/CMakeLists.txt b/CMakeLists.txt index 76160f3d..cb4fcae7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,16 +13,13 @@ add_custom_target( copy_runtime_files ALL COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_SOURCE_DIR}/config ${CMAKE_BINARY_DIR}/bin/config COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_SOURCE_DIR}/sql ${CMAKE_BINARY_DIR}/bin/sql COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_SOURCE_DIR}/web ${CMAKE_BINARY_DIR}/bin/web - COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/sql_import.sh ${CMAKE_BINARY_DIR}/bin/sql_import.sh - COMMAND ${CMAKE_COMMAND} -E remove_directory ${CMAKE_BINARY_DIR}/bin/data/actions - COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_SOURCE_DIR}/deps/ffxiv-actions/actions ${CMAKE_BINARY_DIR}/bin/data/actions ) + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/sql_import.sh ${CMAKE_BINARY_DIR}/bin/sql_import.sh ) ###################################### # Dependencies and compiler settings # ###################################### include( "cmake/paths.cmake" ) include( "cmake/compiler.cmake" ) -include( "cmake/cotire.cmake" ) ############################## # Git # @@ -44,6 +41,7 @@ find_package( MySQL ) add_subdirectory( "deps/zlib" ) add_subdirectory( "deps/MySQL" ) add_subdirectory( "deps/datReader" ) +add_subdirectory( "deps/datReaderPs3" ) add_subdirectory( "deps/mysqlConnector" ) add_subdirectory( "deps/recastnavigation" ) diff --git a/CMakeSettings.json b/CMakeSettings.json index cc894359..751654bb 100644 --- a/CMakeSettings.json +++ b/CMakeSettings.json @@ -1,32 +1,21 @@ { // See https://go.microsoft.com//fwlink//?linkid=834763 for more information about this file. - "environments": [ - { - "BuildDir": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build" - } - ], "configurations": [ { "name": "x64-Debug", - "generator": "Visual Studio 16 2019 Win64", + "generator": "Visual Studio 15 2017 Win64", "configurationType": "Debug", - "buildRoot": "${env.BuildDir}\\${name}", + "buildRoot": "H:\\Sapphire\\Sapphire-2.3-Build", "cmakeCommandArgs": "-DCMAKE_BUILD_TYPE=\"Debug\"", - "buildCommandArgs": "-m -v:minimal", - "inheritEnvironments": [ - "msvc_x64" - ] + "buildCommandArgs": "-m -v:minimal" }, { "name": "x64-Release", - "generator": "Visual Studio 16 2019 Win64", + "generator": "Visual Studio 15 2017 Win64", "configurationType": "Release", - "buildRoot": "${env.BuildDir}\\${name}", - "cmakeCommandArgs": "-DCMAKE_BUILD_TYPE=\"RelWithDebInfo\"", - "buildCommandArgs": "-m -v:minimal", - "inheritEnvironments": [ - "msvc_x64" - ] + "buildRoot": "H:\\Sapphire\\Sapphire-2.3-Build", + "cmakeCommandArgs": "", + "buildCommandArgs": "-m -v:minimal" } ] } diff --git a/README.md b/README.md index 324a54a1..582f4ebf 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Sapphire requires the following software: | *Name* | *Windows* | *Linux* | | ------ | --------- | ------- | -| CMake 3.0.2+ and C++17 capable compiler | [Visual Studio 2019](https://www.visualstudio.com/) | `gcc 8` and `g++ 8` or newer, or equivalent `clang` version. | +| CMake 3.0.2+ and C++17 capable compiler | [Visual Studio 2017](https://www.visualstudio.com/) | `gcc 7` and `g++ 7` or newer | | MySQL Server 5.7 | [Official Site](https://dev.mysql.com/downloads/mysql/) | MySQL server from your distribution's package manager | Please check the [wiki](https://github.com/SapphireMordred/Sapphire/wiki) for detailed installation/build instructions for your OS. diff --git a/cmake/FindMySQL.cmake b/cmake/FindMySQL.cmake index 0042d308..034e94d7 100644 --- a/cmake/FindMySQL.cmake +++ b/cmake/FindMySQL.cmake @@ -85,8 +85,6 @@ find_path(MYSQL_INCLUDE_DIR "${PROGRAM_FILES_64}/MySQL/MySQL Server 5.7/include" "${PROGRAM_FILES_64}/MySQL/include" "${PROGRAM_FILES_64}/MariaDB 10.3/include/mysql" - "${PROGRAM_FILES_64}/MariaDB 10.4/include/mysql" - "${PROGRAM_FILES_64}/MariaDB 10.5/include/mysql" "C:/MySQL/include" "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MySQL AB\\MySQL Server 5.7;Location]/include" "$ENV{ProgramFiles}/MySQL/MySQL Server 5.7/include" @@ -126,8 +124,6 @@ if( WIN32 ) "${PROGRAM_FILES_64}/MySQL/MySQL Server 5.7/lib/opt" "${PROGRAM_FILES_64}/MySQL/lib" "${PROGRAM_FILES_64}/MariaDB 10.3/lib" - "${PROGRAM_FILES_64}/MariaDB 10.4/lib" - "${PROGRAM_FILES_64}/MariaDB 10.5/lib" "C:/MySQL/lib/debug" "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MySQL AB\\MySQL Server 5.7;Location]/lib" "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MySQL AB\\MySQL Server 5.7;Location]/lib/opt" @@ -181,8 +177,6 @@ if( WIN32 ) "${PROGRAM_FILES_64}/MySQL/MySQL Server 5.7/bin/opt" "${PROGRAM_FILES_64}/MySQL/bin" "${PROGRAM_FILES_64}/MariaDB 10.3/bin" - "${PROGRAM_FILES_64}/MariaDB 10.4/bin" - "${PROGRAM_FILES_64}/MariaDB 10.5/bin" "C:/MySQL/bin/debug" "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MySQL AB\\MySQL Server 5.7;Location]/bin" "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MySQL AB\\MySQL Server 5.7;Location]/bin/opt" diff --git a/cmake/cotire.cmake b/cmake/cotire.cmake deleted file mode 100644 index 46ef8c42..00000000 --- a/cmake/cotire.cmake +++ /dev/null @@ -1,4055 +0,0 @@ -# - cotire (compile time reducer) -# -# See the cotire manual for usage hints. -# -#============================================================================= -# Copyright 2012-2017 Sascha Kratky -# -# 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 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. -#============================================================================= - -if(__COTIRE_INCLUDED) - return() -endif() -set(__COTIRE_INCLUDED TRUE) - -# call cmake_minimum_required, but prevent modification of the CMake policy stack in include mode -# cmake_minimum_required also sets the policy version as a side effect, which we have to avoid -if (NOT CMAKE_SCRIPT_MODE_FILE) - cmake_policy(PUSH) -endif() -cmake_minimum_required(VERSION 2.8.12) -if (NOT CMAKE_SCRIPT_MODE_FILE) - cmake_policy(POP) -endif() - -set (COTIRE_CMAKE_MODULE_FILE "${CMAKE_CURRENT_LIST_FILE}") -set (COTIRE_CMAKE_MODULE_VERSION "1.7.10") - -# activate select policies -if (POLICY CMP0025) - # Compiler id for Apple Clang is now AppleClang - cmake_policy(SET CMP0025 NEW) -endif() - -if (POLICY CMP0026) - # disallow use of the LOCATION target property - cmake_policy(SET CMP0026 NEW) -endif() - -if (POLICY CMP0038) - # targets may not link directly to themselves - cmake_policy(SET CMP0038 NEW) -endif() - -if (POLICY CMP0039) - # utility targets may not have link dependencies - cmake_policy(SET CMP0039 NEW) -endif() - -if (POLICY CMP0040) - # target in the TARGET signature of add_custom_command() must exist - cmake_policy(SET CMP0040 NEW) -endif() - -if (POLICY CMP0045) - # error on non-existent target in get_target_property - cmake_policy(SET CMP0045 NEW) -endif() - -if (POLICY CMP0046) - # error on non-existent dependency in add_dependencies - cmake_policy(SET CMP0046 NEW) -endif() - -if (POLICY CMP0049) - # do not expand variables in target source entries - cmake_policy(SET CMP0049 NEW) -endif() - -if (POLICY CMP0050) - # disallow add_custom_command SOURCE signatures - cmake_policy(SET CMP0050 NEW) -endif() - -if (POLICY CMP0051) - # include TARGET_OBJECTS expressions in a target's SOURCES property - cmake_policy(SET CMP0051 NEW) -endif() - -if (POLICY CMP0053) - # simplify variable reference and escape sequence evaluation - cmake_policy(SET CMP0053 NEW) -endif() - -if (POLICY CMP0054) - # only interpret if() arguments as variables or keywords when unquoted - cmake_policy(SET CMP0054 NEW) -endif() - -if (POLICY CMP0055) - # strict checking for break() command - cmake_policy(SET CMP0055 NEW) -endif() - -include(CMakeParseArguments) -include(ProcessorCount) - -function (cotire_get_configuration_types _configsVar) - set (_configs "") - if (CMAKE_CONFIGURATION_TYPES) - list (APPEND _configs ${CMAKE_CONFIGURATION_TYPES}) - endif() - if (CMAKE_BUILD_TYPE) - list (APPEND _configs "${CMAKE_BUILD_TYPE}") - endif() - if (_configs) - list (REMOVE_DUPLICATES _configs) - set (${_configsVar} ${_configs} PARENT_SCOPE) - else() - set (${_configsVar} "None" PARENT_SCOPE) - endif() -endfunction() - -function (cotire_get_source_file_extension _sourceFile _extVar) - # get_filename_component returns extension from first occurrence of . in file name - # this function computes the extension from last occurrence of . in file name - string (FIND "${_sourceFile}" "." _index REVERSE) - if (_index GREATER -1) - math (EXPR _index "${_index} + 1") - string (SUBSTRING "${_sourceFile}" ${_index} -1 _sourceExt) - else() - set (_sourceExt "") - endif() - set (${_extVar} "${_sourceExt}" PARENT_SCOPE) -endfunction() - -macro (cotire_check_is_path_relative_to _path _isRelativeVar) - set (${_isRelativeVar} FALSE) - if (IS_ABSOLUTE "${_path}") - foreach (_dir ${ARGN}) - file (RELATIVE_PATH _relPath "${_dir}" "${_path}") - if (NOT _relPath OR (NOT IS_ABSOLUTE "${_relPath}" AND NOT "${_relPath}" MATCHES "^\\.\\.")) - set (${_isRelativeVar} TRUE) - break() - endif() - endforeach() - endif() -endmacro() - -function (cotire_filter_language_source_files _language _target _sourceFilesVar _excludedSourceFilesVar _cotiredSourceFilesVar) - if (CMAKE_${_language}_SOURCE_FILE_EXTENSIONS) - set (_languageExtensions "${CMAKE_${_language}_SOURCE_FILE_EXTENSIONS}") - else() - set (_languageExtensions "") - endif() - if (CMAKE_${_language}_IGNORE_EXTENSIONS) - set (_ignoreExtensions "${CMAKE_${_language}_IGNORE_EXTENSIONS}") - else() - set (_ignoreExtensions "") - endif() - if (COTIRE_UNITY_SOURCE_EXCLUDE_EXTENSIONS) - set (_excludeExtensions "${COTIRE_UNITY_SOURCE_EXCLUDE_EXTENSIONS}") - else() - set (_excludeExtensions "") - endif() - if (COTIRE_DEBUG AND _languageExtensions) - message (STATUS "${_language} source file extensions: ${_languageExtensions}") - endif() - if (COTIRE_DEBUG AND _ignoreExtensions) - message (STATUS "${_language} ignore extensions: ${_ignoreExtensions}") - endif() - if (COTIRE_DEBUG AND _excludeExtensions) - message (STATUS "${_language} exclude extensions: ${_excludeExtensions}") - endif() - if (CMAKE_VERSION VERSION_LESS "3.1.0") - set (_allSourceFiles ${ARGN}) - else() - # as of CMake 3.1 target sources may contain generator expressions - # since we cannot obtain required property information about source files added - # through generator expressions at configure time, we filter them out - string (GENEX_STRIP "${ARGN}" _allSourceFiles) - endif() - set (_filteredSourceFiles "") - set (_excludedSourceFiles "") - foreach (_sourceFile ${_allSourceFiles}) - get_source_file_property(_sourceIsHeaderOnly "${_sourceFile}" HEADER_FILE_ONLY) - get_source_file_property(_sourceIsExternal "${_sourceFile}" EXTERNAL_OBJECT) - get_source_file_property(_sourceIsSymbolic "${_sourceFile}" SYMBOLIC) - if (NOT _sourceIsHeaderOnly AND NOT _sourceIsExternal AND NOT _sourceIsSymbolic) - cotire_get_source_file_extension("${_sourceFile}" _sourceExt) - if (_sourceExt) - list (FIND _ignoreExtensions "${_sourceExt}" _ignoreIndex) - if (_ignoreIndex LESS 0) - list (FIND _excludeExtensions "${_sourceExt}" _excludeIndex) - if (_excludeIndex GREATER -1) - list (APPEND _excludedSourceFiles "${_sourceFile}") - else() - list (FIND _languageExtensions "${_sourceExt}" _sourceIndex) - if (_sourceIndex GREATER -1) - # consider source file unless it is excluded explicitly - get_source_file_property(_sourceIsExcluded "${_sourceFile}" COTIRE_EXCLUDED) - if (_sourceIsExcluded) - list (APPEND _excludedSourceFiles "${_sourceFile}") - else() - list (APPEND _filteredSourceFiles "${_sourceFile}") - endif() - else() - get_source_file_property(_sourceLanguage "${_sourceFile}" LANGUAGE) - if ("${_sourceLanguage}" STREQUAL "${_language}") - # add to excluded sources, if file is not ignored and has correct language without having the correct extension - list (APPEND _excludedSourceFiles "${_sourceFile}") - endif() - endif() - endif() - endif() - endif() - endif() - endforeach() - # separate filtered source files from already cotired ones - # the COTIRE_TARGET property of a source file may be set while a target is being processed by cotire - set (_sourceFiles "") - set (_cotiredSourceFiles "") - foreach (_sourceFile ${_filteredSourceFiles}) - get_source_file_property(_sourceIsCotired "${_sourceFile}" COTIRE_TARGET) - if (_sourceIsCotired) - list (APPEND _cotiredSourceFiles "${_sourceFile}") - else() - get_source_file_property(_sourceCompileFlags "${_sourceFile}" COMPILE_FLAGS) - if (_sourceCompileFlags) - # add to excluded sources, if file has custom compile flags - list (APPEND _excludedSourceFiles "${_sourceFile}") - else() - list (APPEND _sourceFiles "${_sourceFile}") - endif() - endif() - endforeach() - if (COTIRE_DEBUG) - if (_sourceFiles) - message (STATUS "Filtered ${_target} ${_language} sources: ${_sourceFiles}") - endif() - if (_excludedSourceFiles) - message (STATUS "Excluded ${_target} ${_language} sources: ${_excludedSourceFiles}") - endif() - if (_cotiredSourceFiles) - message (STATUS "Cotired ${_target} ${_language} sources: ${_cotiredSourceFiles}") - endif() - endif() - set (${_sourceFilesVar} ${_sourceFiles} PARENT_SCOPE) - set (${_excludedSourceFilesVar} ${_excludedSourceFiles} PARENT_SCOPE) - set (${_cotiredSourceFilesVar} ${_cotiredSourceFiles} PARENT_SCOPE) -endfunction() - -function (cotire_get_objects_with_property_on _filteredObjectsVar _property _type) - set (_filteredObjects "") - foreach (_object ${ARGN}) - get_property(_isSet ${_type} "${_object}" PROPERTY ${_property} SET) - if (_isSet) - get_property(_propertyValue ${_type} "${_object}" PROPERTY ${_property}) - if (_propertyValue) - list (APPEND _filteredObjects "${_object}") - endif() - endif() - endforeach() - set (${_filteredObjectsVar} ${_filteredObjects} PARENT_SCOPE) -endfunction() - -function (cotire_get_objects_with_property_off _filteredObjectsVar _property _type) - set (_filteredObjects "") - foreach (_object ${ARGN}) - get_property(_isSet ${_type} "${_object}" PROPERTY ${_property} SET) - if (_isSet) - get_property(_propertyValue ${_type} "${_object}" PROPERTY ${_property}) - if (NOT _propertyValue) - list (APPEND _filteredObjects "${_object}") - endif() - endif() - endforeach() - set (${_filteredObjectsVar} ${_filteredObjects} PARENT_SCOPE) -endfunction() - -function (cotire_get_source_file_property_values _valuesVar _property) - set (_values "") - foreach (_sourceFile ${ARGN}) - get_source_file_property(_propertyValue "${_sourceFile}" ${_property}) - if (_propertyValue) - list (APPEND _values "${_propertyValue}") - endif() - endforeach() - set (${_valuesVar} ${_values} PARENT_SCOPE) -endfunction() - -function (cotire_resolve_config_properties _configurations _propertiesVar) - set (_properties "") - foreach (_property ${ARGN}) - if ("${_property}" MATCHES "") - foreach (_config ${_configurations}) - string (TOUPPER "${_config}" _upperConfig) - string (REPLACE "" "${_upperConfig}" _configProperty "${_property}") - list (APPEND _properties ${_configProperty}) - endforeach() - else() - list (APPEND _properties ${_property}) - endif() - endforeach() - set (${_propertiesVar} ${_properties} PARENT_SCOPE) -endfunction() - -function (cotire_copy_set_properties _configurations _type _source _target) - cotire_resolve_config_properties("${_configurations}" _properties ${ARGN}) - foreach (_property ${_properties}) - get_property(_isSet ${_type} ${_source} PROPERTY ${_property} SET) - if (_isSet) - get_property(_propertyValue ${_type} ${_source} PROPERTY ${_property}) - set_property(${_type} ${_target} PROPERTY ${_property} "${_propertyValue}") - endif() - endforeach() -endfunction() - -function (cotire_get_target_usage_requirements _target _config _targetRequirementsVar) - set (_targetRequirements "") - get_target_property(_librariesToProcess ${_target} LINK_LIBRARIES) - while (_librariesToProcess) - # remove from head - list (GET _librariesToProcess 0 _library) - list (REMOVE_AT _librariesToProcess 0) - if (_library MATCHES "^\\$<\\$:([A-Za-z0-9_:-]+)>$") - set (_library "${CMAKE_MATCH_1}") - elseif (_config STREQUAL "None" AND _library MATCHES "^\\$<\\$:([A-Za-z0-9_:-]+)>$") - set (_library "${CMAKE_MATCH_1}") - endif() - if (TARGET ${_library}) - list (FIND _targetRequirements ${_library} _index) - if (_index LESS 0) - list (APPEND _targetRequirements ${_library}) - # BFS traversal of transitive libraries - get_target_property(_libraries ${_library} INTERFACE_LINK_LIBRARIES) - if (_libraries) - list (APPEND _librariesToProcess ${_libraries}) - list (REMOVE_DUPLICATES _librariesToProcess) - endif() - endif() - endif() - endwhile() - set (${_targetRequirementsVar} ${_targetRequirements} PARENT_SCOPE) -endfunction() - -function (cotire_filter_compile_flags _language _flagFilter _matchedOptionsVar _unmatchedOptionsVar) - if (WIN32 AND CMAKE_${_language}_COMPILER_ID MATCHES "MSVC|Intel") - set (_flagPrefix "[/-]") - else() - set (_flagPrefix "--?") - endif() - set (_optionFlag "") - set (_matchedOptions "") - set (_unmatchedOptions "") - foreach (_compileFlag ${ARGN}) - if (_compileFlag) - if (_optionFlag AND NOT "${_compileFlag}" MATCHES "^${_flagPrefix}") - # option with separate argument - list (APPEND _matchedOptions "${_compileFlag}") - set (_optionFlag "") - elseif ("${_compileFlag}" MATCHES "^(${_flagPrefix})(${_flagFilter})$") - # remember option - set (_optionFlag "${CMAKE_MATCH_2}") - elseif ("${_compileFlag}" MATCHES "^(${_flagPrefix})(${_flagFilter})(.+)$") - # option with joined argument - list (APPEND _matchedOptions "${CMAKE_MATCH_3}") - set (_optionFlag "") - else() - # flush remembered option - if (_optionFlag) - list (APPEND _matchedOptions "${_optionFlag}") - set (_optionFlag "") - endif() - # add to unfiltered options - list (APPEND _unmatchedOptions "${_compileFlag}") - endif() - endif() - endforeach() - if (_optionFlag) - list (APPEND _matchedOptions "${_optionFlag}") - endif() - if (COTIRE_DEBUG AND _matchedOptions) - message (STATUS "Filter ${_flagFilter} matched: ${_matchedOptions}") - endif() - if (COTIRE_DEBUG AND _unmatchedOptions) - message (STATUS "Filter ${_flagFilter} unmatched: ${_unmatchedOptions}") - endif() - set (${_matchedOptionsVar} ${_matchedOptions} PARENT_SCOPE) - set (${_unmatchedOptionsVar} ${_unmatchedOptions} PARENT_SCOPE) -endfunction() - -function (cotire_is_target_supported _target _isSupportedVar) - if (NOT TARGET "${_target}") - set (${_isSupportedVar} FALSE PARENT_SCOPE) - return() - endif() - get_target_property(_imported ${_target} IMPORTED) - if (_imported) - set (${_isSupportedVar} FALSE PARENT_SCOPE) - return() - endif() - get_target_property(_targetType ${_target} TYPE) - if (NOT _targetType MATCHES "EXECUTABLE|(STATIC|SHARED|MODULE|OBJECT)_LIBRARY") - set (${_isSupportedVar} FALSE PARENT_SCOPE) - return() - endif() - set (${_isSupportedVar} TRUE PARENT_SCOPE) -endfunction() - -function (cotire_get_target_compile_flags _config _language _target _flagsVar) - string (TOUPPER "${_config}" _upperConfig) - # collect options from CMake language variables - set (_compileFlags "") - if (CMAKE_${_language}_FLAGS) - set (_compileFlags "${_compileFlags} ${CMAKE_${_language}_FLAGS}") - endif() - if (CMAKE_${_language}_FLAGS_${_upperConfig}) - set (_compileFlags "${_compileFlags} ${CMAKE_${_language}_FLAGS_${_upperConfig}}") - endif() - if (_target) - # add target compile flags - get_target_property(_targetflags ${_target} COMPILE_FLAGS) - if (_targetflags) - set (_compileFlags "${_compileFlags} ${_targetflags}") - endif() - endif() - if (UNIX) - separate_arguments(_compileFlags UNIX_COMMAND "${_compileFlags}") - elseif(WIN32) - separate_arguments(_compileFlags WINDOWS_COMMAND "${_compileFlags}") - else() - separate_arguments(_compileFlags) - endif() - # target compile options - if (_target) - get_target_property(_targetOptions ${_target} COMPILE_OPTIONS) - if (_targetOptions) - list (APPEND _compileFlags ${_targetOptions}) - endif() - endif() - # interface compile options from linked library targets - if (_target) - set (_linkedTargets "") - cotire_get_target_usage_requirements(${_target} ${_config} _linkedTargets) - foreach (_linkedTarget ${_linkedTargets}) - get_target_property(_targetOptions ${_linkedTarget} INTERFACE_COMPILE_OPTIONS) - if (_targetOptions) - list (APPEND _compileFlags ${_targetOptions}) - endif() - endforeach() - endif() - # handle language standard properties - if (CMAKE_${_language}_STANDARD_DEFAULT) - # used compiler supports language standard levels - if (_target) - get_target_property(_targetLanguageStandard ${_target} ${_language}_STANDARD) - if (_targetLanguageStandard) - set (_type "EXTENSION") - get_property(_isSet TARGET ${_target} PROPERTY ${_language}_EXTENSIONS SET) - if (_isSet) - get_target_property(_targetUseLanguageExtensions ${_target} ${_language}_EXTENSIONS) - if (NOT _targetUseLanguageExtensions) - set (_type "STANDARD") - endif() - endif() - if (CMAKE_${_language}${_targetLanguageStandard}_${_type}_COMPILE_OPTION) - list (APPEND _compileFlags "${CMAKE_${_language}${_targetLanguageStandard}_${_type}_COMPILE_OPTION}") - endif() - endif() - endif() - endif() - # handle the POSITION_INDEPENDENT_CODE target property - if (_target) - get_target_property(_targetPIC ${_target} POSITION_INDEPENDENT_CODE) - if (_targetPIC) - get_target_property(_targetType ${_target} TYPE) - if (_targetType STREQUAL "EXECUTABLE" AND CMAKE_${_language}_COMPILE_OPTIONS_PIE) - list (APPEND _compileFlags "${CMAKE_${_language}_COMPILE_OPTIONS_PIE}") - elseif (CMAKE_${_language}_COMPILE_OPTIONS_PIC) - list (APPEND _compileFlags "${CMAKE_${_language}_COMPILE_OPTIONS_PIC}") - endif() - endif() - endif() - # handle visibility target properties - if (_target) - get_target_property(_targetVisibility ${_target} ${_language}_VISIBILITY_PRESET) - if (_targetVisibility AND CMAKE_${_language}_COMPILE_OPTIONS_VISIBILITY) - list (APPEND _compileFlags "${CMAKE_${_language}_COMPILE_OPTIONS_VISIBILITY}${_targetVisibility}") - endif() - get_target_property(_targetVisibilityInlines ${_target} VISIBILITY_INLINES_HIDDEN) - if (_targetVisibilityInlines AND CMAKE_${_language}_COMPILE_OPTIONS_VISIBILITY_INLINES_HIDDEN) - list (APPEND _compileFlags "${CMAKE_${_language}_COMPILE_OPTIONS_VISIBILITY_INLINES_HIDDEN}") - endif() - endif() - # platform specific flags - if (APPLE) - get_target_property(_architectures ${_target} OSX_ARCHITECTURES_${_upperConfig}) - if (NOT _architectures) - get_target_property(_architectures ${_target} OSX_ARCHITECTURES) - endif() - if (_architectures) - foreach (_arch ${_architectures}) - list (APPEND _compileFlags "-arch" "${_arch}") - endforeach() - endif() - if (CMAKE_OSX_SYSROOT) - if (CMAKE_${_language}_SYSROOT_FLAG) - list (APPEND _compileFlags "${CMAKE_${_language}_SYSROOT_FLAG}" "${CMAKE_OSX_SYSROOT}") - else() - list (APPEND _compileFlags "-isysroot" "${CMAKE_OSX_SYSROOT}") - endif() - endif() - if (CMAKE_OSX_DEPLOYMENT_TARGET) - if (CMAKE_${_language}_OSX_DEPLOYMENT_TARGET_FLAG) - list (APPEND _compileFlags "${CMAKE_${_language}_OSX_DEPLOYMENT_TARGET_FLAG}${CMAKE_OSX_DEPLOYMENT_TARGET}") - else() - list (APPEND _compileFlags "-mmacosx-version-min=${CMAKE_OSX_DEPLOYMENT_TARGET}") - endif() - endif() - endif() - if (COTIRE_DEBUG AND _compileFlags) - message (STATUS "Target ${_target} compile flags: ${_compileFlags}") - endif() - set (${_flagsVar} ${_compileFlags} PARENT_SCOPE) -endfunction() - -function (cotire_get_target_include_directories _config _language _target _includeDirsVar _systemIncludeDirsVar) - set (_includeDirs "") - set (_systemIncludeDirs "") - # default include dirs - if (CMAKE_INCLUDE_CURRENT_DIR) - list (APPEND _includeDirs "${CMAKE_CURRENT_BINARY_DIR}") - list (APPEND _includeDirs "${CMAKE_CURRENT_SOURCE_DIR}") - endif() - set (_targetFlags "") - cotire_get_target_compile_flags("${_config}" "${_language}" "${_target}" _targetFlags) - # parse additional include directories from target compile flags - if (CMAKE_INCLUDE_FLAG_${_language}) - string (STRIP "${CMAKE_INCLUDE_FLAG_${_language}}" _includeFlag) - string (REGEX REPLACE "^[-/]+" "" _includeFlag "${_includeFlag}") - if (_includeFlag) - set (_dirs "") - cotire_filter_compile_flags("${_language}" "${_includeFlag}" _dirs _ignore ${_targetFlags}) - if (_dirs) - list (APPEND _includeDirs ${_dirs}) - endif() - endif() - endif() - # parse additional system include directories from target compile flags - if (CMAKE_INCLUDE_SYSTEM_FLAG_${_language}) - string (STRIP "${CMAKE_INCLUDE_SYSTEM_FLAG_${_language}}" _includeFlag) - string (REGEX REPLACE "^[-/]+" "" _includeFlag "${_includeFlag}") - if (_includeFlag) - set (_dirs "") - cotire_filter_compile_flags("${_language}" "${_includeFlag}" _dirs _ignore ${_targetFlags}) - if (_dirs) - list (APPEND _systemIncludeDirs ${_dirs}) - endif() - endif() - endif() - # target include directories - get_directory_property(_dirs DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" INCLUDE_DIRECTORIES) - if (_target) - get_target_property(_targetDirs ${_target} INCLUDE_DIRECTORIES) - if (_targetDirs) - list (APPEND _dirs ${_targetDirs}) - endif() - get_target_property(_targetDirs ${_target} INTERFACE_SYSTEM_INCLUDE_DIRECTORIES) - if (_targetDirs) - list (APPEND _systemIncludeDirs ${_targetDirs}) - endif() - endif() - # interface include directories from linked library targets - if (_target) - set (_linkedTargets "") - cotire_get_target_usage_requirements(${_target} ${_config} _linkedTargets) - foreach (_linkedTarget ${_linkedTargets}) - get_target_property(_linkedTargetType ${_linkedTarget} TYPE) - if (CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE AND NOT CMAKE_VERSION VERSION_LESS "3.4.0" AND - _linkedTargetType MATCHES "(STATIC|SHARED|MODULE|OBJECT)_LIBRARY") - # CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE refers to CMAKE_CURRENT_BINARY_DIR and CMAKE_CURRENT_SOURCE_DIR - # at the time, when the target was created. These correspond to the target properties BINARY_DIR and SOURCE_DIR - # which are only available with CMake 3.4 or later. - get_target_property(_targetDirs ${_linkedTarget} BINARY_DIR) - if (_targetDirs) - list (APPEND _dirs ${_targetDirs}) - endif() - get_target_property(_targetDirs ${_linkedTarget} SOURCE_DIR) - if (_targetDirs) - list (APPEND _dirs ${_targetDirs}) - endif() - endif() - get_target_property(_targetDirs ${_linkedTarget} INTERFACE_INCLUDE_DIRECTORIES) - if (_targetDirs) - list (APPEND _dirs ${_targetDirs}) - endif() - get_target_property(_targetDirs ${_linkedTarget} INTERFACE_SYSTEM_INCLUDE_DIRECTORIES) - if (_targetDirs) - list (APPEND _systemIncludeDirs ${_targetDirs}) - endif() - endforeach() - endif() - if (dirs) - list (REMOVE_DUPLICATES _dirs) - endif() - list (LENGTH _includeDirs _projectInsertIndex) - foreach (_dir ${_dirs}) - if (CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE) - cotire_check_is_path_relative_to("${_dir}" _isRelative "${CMAKE_SOURCE_DIR}" "${CMAKE_BINARY_DIR}") - if (_isRelative) - list (LENGTH _includeDirs _len) - if (_len EQUAL _projectInsertIndex) - list (APPEND _includeDirs "${_dir}") - else() - list (INSERT _includeDirs _projectInsertIndex "${_dir}") - endif() - math (EXPR _projectInsertIndex "${_projectInsertIndex} + 1") - else() - list (APPEND _includeDirs "${_dir}") - endif() - else() - list (APPEND _includeDirs "${_dir}") - endif() - endforeach() - list (REMOVE_DUPLICATES _includeDirs) - list (REMOVE_DUPLICATES _systemIncludeDirs) - if (CMAKE_${_language}_IMPLICIT_INCLUDE_DIRECTORIES) - list (REMOVE_ITEM _includeDirs ${CMAKE_${_language}_IMPLICIT_INCLUDE_DIRECTORIES}) - endif() - if (WIN32 AND NOT MINGW) - # convert Windows paths in include directories to CMake paths - if (_includeDirs) - set (_paths "") - foreach (_dir ${_includeDirs}) - file (TO_CMAKE_PATH "${_dir}" _path) - list (APPEND _paths "${_path}") - endforeach() - set (_includeDirs ${_paths}) - endif() - if (_systemIncludeDirs) - set (_paths "") - foreach (_dir ${_systemIncludeDirs}) - file (TO_CMAKE_PATH "${_dir}" _path) - list (APPEND _paths "${_path}") - endforeach() - set (_systemIncludeDirs ${_paths}) - endif() - endif() - if (COTIRE_DEBUG AND _includeDirs) - message (STATUS "Target ${_target} include dirs: ${_includeDirs}") - endif() - set (${_includeDirsVar} ${_includeDirs} PARENT_SCOPE) - if (COTIRE_DEBUG AND _systemIncludeDirs) - message (STATUS "Target ${_target} system include dirs: ${_systemIncludeDirs}") - endif() - set (${_systemIncludeDirsVar} ${_systemIncludeDirs} PARENT_SCOPE) -endfunction() - -function (cotire_get_target_export_symbol _target _exportSymbolVar) - set (_exportSymbol "") - get_target_property(_targetType ${_target} TYPE) - get_target_property(_enableExports ${_target} ENABLE_EXPORTS) - if (_targetType MATCHES "(SHARED|MODULE)_LIBRARY" OR - (_targetType STREQUAL "EXECUTABLE" AND _enableExports)) - get_target_property(_exportSymbol ${_target} DEFINE_SYMBOL) - if (NOT _exportSymbol) - set (_exportSymbol "${_target}_EXPORTS") - endif() - string (MAKE_C_IDENTIFIER "${_exportSymbol}" _exportSymbol) - endif() - set (${_exportSymbolVar} ${_exportSymbol} PARENT_SCOPE) -endfunction() - -function (cotire_get_target_compile_definitions _config _language _target _definitionsVar) - string (TOUPPER "${_config}" _upperConfig) - set (_configDefinitions "") - # CMAKE_INTDIR for multi-configuration build systems - if (NOT "${CMAKE_CFG_INTDIR}" STREQUAL ".") - list (APPEND _configDefinitions "CMAKE_INTDIR=\"${_config}\"") - endif() - # target export define symbol - cotire_get_target_export_symbol("${_target}" _defineSymbol) - if (_defineSymbol) - list (APPEND _configDefinitions "${_defineSymbol}") - endif() - # directory compile definitions - get_directory_property(_definitions DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" COMPILE_DEFINITIONS) - if (_definitions) - list (APPEND _configDefinitions ${_definitions}) - endif() - get_directory_property(_definitions DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" COMPILE_DEFINITIONS_${_upperConfig}) - if (_definitions) - list (APPEND _configDefinitions ${_definitions}) - endif() - # target compile definitions - get_target_property(_definitions ${_target} COMPILE_DEFINITIONS) - if (_definitions) - list (APPEND _configDefinitions ${_definitions}) - endif() - get_target_property(_definitions ${_target} COMPILE_DEFINITIONS_${_upperConfig}) - if (_definitions) - list (APPEND _configDefinitions ${_definitions}) - endif() - # interface compile definitions from linked library targets - set (_linkedTargets "") - cotire_get_target_usage_requirements(${_target} ${_config} _linkedTargets) - foreach (_linkedTarget ${_linkedTargets}) - get_target_property(_definitions ${_linkedTarget} INTERFACE_COMPILE_DEFINITIONS) - if (_definitions) - list (APPEND _configDefinitions ${_definitions}) - endif() - endforeach() - # parse additional compile definitions from target compile flags - # and don't look at directory compile definitions, which we already handled - set (_targetFlags "") - cotire_get_target_compile_flags("${_config}" "${_language}" "${_target}" _targetFlags) - cotire_filter_compile_flags("${_language}" "D" _definitions _ignore ${_targetFlags}) - if (_definitions) - list (APPEND _configDefinitions ${_definitions}) - endif() - list (REMOVE_DUPLICATES _configDefinitions) - if (COTIRE_DEBUG AND _configDefinitions) - message (STATUS "Target ${_target} compile definitions: ${_configDefinitions}") - endif() - set (${_definitionsVar} ${_configDefinitions} PARENT_SCOPE) -endfunction() - -function (cotire_get_target_compiler_flags _config _language _target _compilerFlagsVar) - # parse target compile flags omitting compile definitions and include directives - set (_targetFlags "") - cotire_get_target_compile_flags("${_config}" "${_language}" "${_target}" _targetFlags) - set (_flagFilter "D") - if (CMAKE_INCLUDE_FLAG_${_language}) - string (STRIP "${CMAKE_INCLUDE_FLAG_${_language}}" _includeFlag) - string (REGEX REPLACE "^[-/]+" "" _includeFlag "${_includeFlag}") - if (_includeFlag) - set (_flagFilter "${_flagFilter}|${_includeFlag}") - endif() - endif() - if (CMAKE_INCLUDE_SYSTEM_FLAG_${_language}) - string (STRIP "${CMAKE_INCLUDE_SYSTEM_FLAG_${_language}}" _includeFlag) - string (REGEX REPLACE "^[-/]+" "" _includeFlag "${_includeFlag}") - if (_includeFlag) - set (_flagFilter "${_flagFilter}|${_includeFlag}") - endif() - endif() - set (_compilerFlags "") - cotire_filter_compile_flags("${_language}" "${_flagFilter}" _ignore _compilerFlags ${_targetFlags}) - if (COTIRE_DEBUG AND _compilerFlags) - message (STATUS "Target ${_target} compiler flags: ${_compilerFlags}") - endif() - set (${_compilerFlagsVar} ${_compilerFlags} PARENT_SCOPE) -endfunction() - -function (cotire_add_sys_root_paths _pathsVar) - if (APPLE) - if (CMAKE_OSX_SYSROOT AND CMAKE_${_language}_HAS_ISYSROOT) - foreach (_path IN LISTS ${_pathsVar}) - if (IS_ABSOLUTE "${_path}") - get_filename_component(_path "${CMAKE_OSX_SYSROOT}/${_path}" ABSOLUTE) - if (EXISTS "${_path}") - list (APPEND ${_pathsVar} "${_path}") - endif() - endif() - endforeach() - endif() - endif() - set (${_pathsVar} ${${_pathsVar}} PARENT_SCOPE) -endfunction() - -function (cotire_get_source_extra_properties _sourceFile _pattern _resultVar) - set (_extraProperties ${ARGN}) - set (_result "") - if (_extraProperties) - list (FIND _extraProperties "${_sourceFile}" _index) - if (_index GREATER -1) - math (EXPR _index "${_index} + 1") - list (LENGTH _extraProperties _len) - math (EXPR _len "${_len} - 1") - foreach (_index RANGE ${_index} ${_len}) - list (GET _extraProperties ${_index} _value) - if (_value MATCHES "${_pattern}") - list (APPEND _result "${_value}") - else() - break() - endif() - endforeach() - endif() - endif() - set (${_resultVar} ${_result} PARENT_SCOPE) -endfunction() - -function (cotire_get_source_compile_definitions _config _language _sourceFile _definitionsVar) - set (_compileDefinitions "") - if (NOT CMAKE_SCRIPT_MODE_FILE) - string (TOUPPER "${_config}" _upperConfig) - get_source_file_property(_definitions "${_sourceFile}" COMPILE_DEFINITIONS) - if (_definitions) - list (APPEND _compileDefinitions ${_definitions}) - endif() - get_source_file_property(_definitions "${_sourceFile}" COMPILE_DEFINITIONS_${_upperConfig}) - if (_definitions) - list (APPEND _compileDefinitions ${_definitions}) - endif() - endif() - cotire_get_source_extra_properties("${_sourceFile}" "^[a-zA-Z0-9_]+(=.*)?$" _definitions ${ARGN}) - if (_definitions) - list (APPEND _compileDefinitions ${_definitions}) - endif() - if (COTIRE_DEBUG AND _compileDefinitions) - message (STATUS "Source ${_sourceFile} compile definitions: ${_compileDefinitions}") - endif() - set (${_definitionsVar} ${_compileDefinitions} PARENT_SCOPE) -endfunction() - -function (cotire_get_source_files_compile_definitions _config _language _definitionsVar) - set (_configDefinitions "") - foreach (_sourceFile ${ARGN}) - cotire_get_source_compile_definitions("${_config}" "${_language}" "${_sourceFile}" _sourceDefinitions) - if (_sourceDefinitions) - list (APPEND _configDefinitions "${_sourceFile}" ${_sourceDefinitions} "-") - endif() - endforeach() - set (${_definitionsVar} ${_configDefinitions} PARENT_SCOPE) -endfunction() - -function (cotire_get_source_undefs _sourceFile _property _sourceUndefsVar) - set (_sourceUndefs "") - if (NOT CMAKE_SCRIPT_MODE_FILE) - get_source_file_property(_undefs "${_sourceFile}" ${_property}) - if (_undefs) - list (APPEND _sourceUndefs ${_undefs}) - endif() - endif() - cotire_get_source_extra_properties("${_sourceFile}" "^[a-zA-Z0-9_]+$" _undefs ${ARGN}) - if (_undefs) - list (APPEND _sourceUndefs ${_undefs}) - endif() - if (COTIRE_DEBUG AND _sourceUndefs) - message (STATUS "Source ${_sourceFile} ${_property} undefs: ${_sourceUndefs}") - endif() - set (${_sourceUndefsVar} ${_sourceUndefs} PARENT_SCOPE) -endfunction() - -function (cotire_get_source_files_undefs _property _sourceUndefsVar) - set (_sourceUndefs "") - foreach (_sourceFile ${ARGN}) - cotire_get_source_undefs("${_sourceFile}" ${_property} _undefs) - if (_undefs) - list (APPEND _sourceUndefs "${_sourceFile}" ${_undefs} "-") - endif() - endforeach() - set (${_sourceUndefsVar} ${_sourceUndefs} PARENT_SCOPE) -endfunction() - -macro (cotire_set_cmd_to_prologue _cmdVar) - set (${_cmdVar} "${CMAKE_COMMAND}") - if (COTIRE_DEBUG) - list (APPEND ${_cmdVar} "--warn-uninitialized") - endif() - list (APPEND ${_cmdVar} "-DCOTIRE_BUILD_TYPE:STRING=$") - if (XCODE) - list (APPEND ${_cmdVar} "-DXCODE:BOOL=TRUE") - endif() - if (COTIRE_VERBOSE) - list (APPEND ${_cmdVar} "-DCOTIRE_VERBOSE:BOOL=ON") - elseif("${CMAKE_GENERATOR}" MATCHES "Makefiles") - list (APPEND ${_cmdVar} "-DCOTIRE_VERBOSE:BOOL=$(VERBOSE)") - endif() -endmacro() - -function (cotire_init_compile_cmd _cmdVar _language _compilerLauncher _compilerExe _compilerArg1) - if (NOT _compilerLauncher) - set (_compilerLauncher ${CMAKE_${_language}_COMPILER_LAUNCHER}) - endif() - if (NOT _compilerExe) - set (_compilerExe "${CMAKE_${_language}_COMPILER}") - endif() - if (NOT _compilerArg1) - set (_compilerArg1 ${CMAKE_${_language}_COMPILER_ARG1}) - endif() - string (STRIP "${_compilerArg1}" _compilerArg1) - if ("${CMAKE_GENERATOR}" MATCHES "Make|Ninja") - # compiler launcher is only supported for Makefile and Ninja - set (${_cmdVar} ${_compilerLauncher} "${_compilerExe}" ${_compilerArg1} PARENT_SCOPE) - else() - set (${_cmdVar} "${_compilerExe}" ${_compilerArg1} PARENT_SCOPE) - endif() -endfunction() - -macro (cotire_add_definitions_to_cmd _cmdVar _language) - foreach (_definition ${ARGN}) - if (WIN32 AND CMAKE_${_language}_COMPILER_ID MATCHES "MSVC|Intel") - list (APPEND ${_cmdVar} "/D${_definition}") - else() - list (APPEND ${_cmdVar} "-D${_definition}") - endif() - endforeach() -endmacro() - -function (cotire_add_includes_to_cmd _cmdVar _language _includesVar _systemIncludesVar) - set (_includeDirs ${${_includesVar}} ${${_systemIncludesVar}}) - if (_includeDirs) - list (REMOVE_DUPLICATES _includeDirs) - foreach (_include ${_includeDirs}) - if (WIN32 AND CMAKE_${_language}_COMPILER_ID MATCHES "MSVC|Intel") - file (TO_NATIVE_PATH "${_include}" _include) - list (APPEND ${_cmdVar} "${CMAKE_INCLUDE_FLAG_${_language}}${CMAKE_INCLUDE_FLAG_SEP_${_language}}${_include}") - else() - set (_index -1) - if ("${CMAKE_INCLUDE_SYSTEM_FLAG_${_language}}" MATCHES ".+") - list (FIND ${_systemIncludesVar} "${_include}" _index) - endif() - if (_index GREATER -1) - list (APPEND ${_cmdVar} "${CMAKE_INCLUDE_SYSTEM_FLAG_${_language}}${CMAKE_INCLUDE_FLAG_SEP_${_language}}${_include}") - else() - list (APPEND ${_cmdVar} "${CMAKE_INCLUDE_FLAG_${_language}}${CMAKE_INCLUDE_FLAG_SEP_${_language}}${_include}") - endif() - endif() - endforeach() - endif() - set (${_cmdVar} ${${_cmdVar}} PARENT_SCOPE) -endfunction() - -function (cotire_add_frameworks_to_cmd _cmdVar _language _includesVar _systemIncludesVar) - if (APPLE) - set (_frameworkDirs "") - foreach (_include ${${_includesVar}}) - if (IS_ABSOLUTE "${_include}" AND _include MATCHES "\\.framework$") - get_filename_component(_frameworkDir "${_include}" DIRECTORY) - list (APPEND _frameworkDirs "${_frameworkDir}") - endif() - endforeach() - set (_systemFrameworkDirs "") - foreach (_include ${${_systemIncludesVar}}) - if (IS_ABSOLUTE "${_include}" AND _include MATCHES "\\.framework$") - get_filename_component(_frameworkDir "${_include}" DIRECTORY) - list (APPEND _systemFrameworkDirs "${_frameworkDir}") - endif() - endforeach() - if (_systemFrameworkDirs) - list (APPEND _frameworkDirs ${_systemFrameworkDirs}) - endif() - if (_frameworkDirs) - list (REMOVE_DUPLICATES _frameworkDirs) - foreach (_frameworkDir ${_frameworkDirs}) - set (_index -1) - if ("${CMAKE_${_language}_SYSTEM_FRAMEWORK_SEARCH_FLAG}" MATCHES ".+") - list (FIND _systemFrameworkDirs "${_frameworkDir}" _index) - endif() - if (_index GREATER -1) - list (APPEND ${_cmdVar} "${CMAKE_${_language}_SYSTEM_FRAMEWORK_SEARCH_FLAG}${_frameworkDir}") - else() - list (APPEND ${_cmdVar} "${CMAKE_${_language}_FRAMEWORK_SEARCH_FLAG}${_frameworkDir}") - endif() - endforeach() - endif() - endif() - set (${_cmdVar} ${${_cmdVar}} PARENT_SCOPE) -endfunction() - -macro (cotire_add_compile_flags_to_cmd _cmdVar) - foreach (_flag ${ARGN}) - list (APPEND ${_cmdVar} "${_flag}") - endforeach() -endmacro() - -function (cotire_check_file_up_to_date _fileIsUpToDateVar _file) - if (EXISTS "${_file}") - set (_triggerFile "") - foreach (_dependencyFile ${ARGN}) - if (EXISTS "${_dependencyFile}") - # IS_NEWER_THAN returns TRUE if both files have the same timestamp - # thus we do the comparison in both directions to exclude ties - if ("${_dependencyFile}" IS_NEWER_THAN "${_file}" AND - NOT "${_file}" IS_NEWER_THAN "${_dependencyFile}") - set (_triggerFile "${_dependencyFile}") - break() - endif() - endif() - endforeach() - if (_triggerFile) - if (COTIRE_VERBOSE) - get_filename_component(_fileName "${_file}" NAME) - message (STATUS "${_fileName} update triggered by ${_triggerFile} change.") - endif() - set (${_fileIsUpToDateVar} FALSE PARENT_SCOPE) - else() - if (COTIRE_VERBOSE) - get_filename_component(_fileName "${_file}" NAME) - message (STATUS "${_fileName} is up-to-date.") - endif() - set (${_fileIsUpToDateVar} TRUE PARENT_SCOPE) - endif() - else() - if (COTIRE_VERBOSE) - get_filename_component(_fileName "${_file}" NAME) - message (STATUS "${_fileName} does not exist yet.") - endif() - set (${_fileIsUpToDateVar} FALSE PARENT_SCOPE) - endif() -endfunction() - -macro (cotire_find_closest_relative_path _headerFile _includeDirs _relPathVar) - set (${_relPathVar} "") - foreach (_includeDir ${_includeDirs}) - if (IS_DIRECTORY "${_includeDir}") - file (RELATIVE_PATH _relPath "${_includeDir}" "${_headerFile}") - if (NOT IS_ABSOLUTE "${_relPath}" AND NOT "${_relPath}" MATCHES "^\\.\\.") - string (LENGTH "${${_relPathVar}}" _closestLen) - string (LENGTH "${_relPath}" _relLen) - if (_closestLen EQUAL 0 OR _relLen LESS _closestLen) - set (${_relPathVar} "${_relPath}") - endif() - endif() - elseif ("${_includeDir}" STREQUAL "${_headerFile}") - # if path matches exactly, return short non-empty string - set (${_relPathVar} "1") - break() - endif() - endforeach() -endmacro() - -macro (cotire_check_header_file_location _headerFile _insideIncludeDirs _outsideIncludeDirs _headerIsInside) - # check header path against ignored and honored include directories - cotire_find_closest_relative_path("${_headerFile}" "${_insideIncludeDirs}" _insideRelPath) - if (_insideRelPath) - # header is inside, but could be become outside if there is a shorter outside match - cotire_find_closest_relative_path("${_headerFile}" "${_outsideIncludeDirs}" _outsideRelPath) - if (_outsideRelPath) - string (LENGTH "${_insideRelPath}" _insideRelPathLen) - string (LENGTH "${_outsideRelPath}" _outsideRelPathLen) - if (_outsideRelPathLen LESS _insideRelPathLen) - set (${_headerIsInside} FALSE) - else() - set (${_headerIsInside} TRUE) - endif() - else() - set (${_headerIsInside} TRUE) - endif() - else() - # header is outside - set (${_headerIsInside} FALSE) - endif() -endmacro() - -macro (cotire_check_ignore_header_file_path _headerFile _headerIsIgnoredVar) - if (NOT EXISTS "${_headerFile}") - set (${_headerIsIgnoredVar} TRUE) - elseif (IS_DIRECTORY "${_headerFile}") - set (${_headerIsIgnoredVar} TRUE) - elseif ("${_headerFile}" MATCHES "\\.\\.|[_-]fixed" AND "${_headerFile}" MATCHES "\\.h$") - # heuristic: ignore C headers with embedded parent directory references or "-fixed" or "_fixed" in path - # these often stem from using GCC #include_next tricks, which may break the precompiled header compilation - # with the error message "error: no include path in which to search for header.h" - set (${_headerIsIgnoredVar} TRUE) - else() - set (${_headerIsIgnoredVar} FALSE) - endif() -endmacro() - -macro (cotire_check_ignore_header_file_ext _headerFile _ignoreExtensionsVar _headerIsIgnoredVar) - # check header file extension - cotire_get_source_file_extension("${_headerFile}" _headerFileExt) - set (${_headerIsIgnoredVar} FALSE) - if (_headerFileExt) - list (FIND ${_ignoreExtensionsVar} "${_headerFileExt}" _index) - if (_index GREATER -1) - set (${_headerIsIgnoredVar} TRUE) - endif() - endif() -endmacro() - -macro (cotire_parse_line _line _headerFileVar _headerDepthVar) - if (MSVC) - # cl.exe /showIncludes output looks different depending on the language pack used, e.g.: - # English: "Note: including file: C:\directory\file" - # German: "Hinweis: Einlesen der Datei: C:\directory\file" - # We use a very general regular expression, relying on the presence of the : characters - if (_line MATCHES "( +)([a-zA-Z]:[^:]+)$") - # Visual Studio compiler output - string (LENGTH "${CMAKE_MATCH_1}" ${_headerDepthVar}) - get_filename_component(${_headerFileVar} "${CMAKE_MATCH_2}" ABSOLUTE) - else() - set (${_headerFileVar} "") - set (${_headerDepthVar} 0) - endif() - else() - if (_line MATCHES "^(\\.+) (.*)$") - # GCC like output - string (LENGTH "${CMAKE_MATCH_1}" ${_headerDepthVar}) - if (IS_ABSOLUTE "${CMAKE_MATCH_2}") - set (${_headerFileVar} "${CMAKE_MATCH_2}") - else() - get_filename_component(${_headerFileVar} "${CMAKE_MATCH_2}" REALPATH) - endif() - else() - set (${_headerFileVar} "") - set (${_headerDepthVar} 0) - endif() - endif() -endmacro() - -function (cotire_parse_includes _language _scanOutput _ignoredIncludeDirs _honoredIncludeDirs _ignoredExtensions _selectedIncludesVar _unparsedLinesVar) - if (WIN32) - # prevent CMake macro invocation errors due to backslash characters in Windows paths - string (REPLACE "\\" "/" _scanOutput "${_scanOutput}") - endif() - # canonize slashes - string (REPLACE "//" "/" _scanOutput "${_scanOutput}") - # prevent semicolon from being interpreted as a line separator - string (REPLACE ";" "\\;" _scanOutput "${_scanOutput}") - # then separate lines - string (REGEX REPLACE "\n" ";" _scanOutput "${_scanOutput}") - list (LENGTH _scanOutput _len) - # remove duplicate lines to speed up parsing - list (REMOVE_DUPLICATES _scanOutput) - list (LENGTH _scanOutput _uniqueLen) - if (COTIRE_VERBOSE OR COTIRE_DEBUG) - message (STATUS "Scanning ${_uniqueLen} unique lines of ${_len} for includes") - if (_ignoredExtensions) - message (STATUS "Ignored extensions: ${_ignoredExtensions}") - endif() - if (_ignoredIncludeDirs) - message (STATUS "Ignored paths: ${_ignoredIncludeDirs}") - endif() - if (_honoredIncludeDirs) - message (STATUS "Included paths: ${_honoredIncludeDirs}") - endif() - endif() - set (_sourceFiles ${ARGN}) - set (_selectedIncludes "") - set (_unparsedLines "") - # stack keeps track of inside/outside project status of processed header files - set (_headerIsInsideStack "") - foreach (_line IN LISTS _scanOutput) - if (_line) - cotire_parse_line("${_line}" _headerFile _headerDepth) - if (_headerFile) - cotire_check_header_file_location("${_headerFile}" "${_ignoredIncludeDirs}" "${_honoredIncludeDirs}" _headerIsInside) - if (COTIRE_DEBUG) - message (STATUS "${_headerDepth}: ${_headerFile} ${_headerIsInside}") - endif() - # update stack - list (LENGTH _headerIsInsideStack _stackLen) - if (_headerDepth GREATER _stackLen) - math (EXPR _stackLen "${_stackLen} + 1") - foreach (_index RANGE ${_stackLen} ${_headerDepth}) - list (APPEND _headerIsInsideStack ${_headerIsInside}) - endforeach() - else() - foreach (_index RANGE ${_headerDepth} ${_stackLen}) - list (REMOVE_AT _headerIsInsideStack -1) - endforeach() - list (APPEND _headerIsInsideStack ${_headerIsInside}) - endif() - if (COTIRE_DEBUG) - message (STATUS "${_headerIsInsideStack}") - endif() - # header is a candidate if it is outside project - if (NOT _headerIsInside) - # get parent header file's inside/outside status - if (_headerDepth GREATER 1) - math (EXPR _index "${_headerDepth} - 2") - list (GET _headerIsInsideStack ${_index} _parentHeaderIsInside) - else() - set (_parentHeaderIsInside TRUE) - endif() - # select header file if parent header file is inside project - # (e.g., a project header file that includes a standard header file) - if (_parentHeaderIsInside) - cotire_check_ignore_header_file_path("${_headerFile}" _headerIsIgnored) - if (NOT _headerIsIgnored) - cotire_check_ignore_header_file_ext("${_headerFile}" _ignoredExtensions _headerIsIgnored) - if (NOT _headerIsIgnored) - list (APPEND _selectedIncludes "${_headerFile}") - else() - # fix header's inside status on stack, it is ignored by extension now - list (REMOVE_AT _headerIsInsideStack -1) - list (APPEND _headerIsInsideStack TRUE) - endif() - endif() - if (COTIRE_DEBUG) - message (STATUS "${_headerFile} ${_ignoredExtensions} ${_headerIsIgnored}") - endif() - endif() - endif() - else() - if (MSVC) - # for cl.exe do not keep unparsed lines which solely consist of a source file name - string (FIND "${_sourceFiles}" "${_line}" _index) - if (_index LESS 0) - list (APPEND _unparsedLines "${_line}") - endif() - else() - list (APPEND _unparsedLines "${_line}") - endif() - endif() - endif() - endforeach() - list (REMOVE_DUPLICATES _selectedIncludes) - set (${_selectedIncludesVar} ${_selectedIncludes} PARENT_SCOPE) - set (${_unparsedLinesVar} ${_unparsedLines} PARENT_SCOPE) -endfunction() - -function (cotire_scan_includes _includesVar) - set(_options "") - set(_oneValueArgs COMPILER_ID COMPILER_EXECUTABLE COMPILER_ARG1 COMPILER_VERSION LANGUAGE UNPARSED_LINES SCAN_RESULT) - set(_multiValueArgs COMPILE_DEFINITIONS COMPILE_FLAGS INCLUDE_DIRECTORIES SYSTEM_INCLUDE_DIRECTORIES - IGNORE_PATH INCLUDE_PATH IGNORE_EXTENSIONS INCLUDE_PRIORITY_PATH COMPILER_LAUNCHER) - cmake_parse_arguments(_option "${_options}" "${_oneValueArgs}" "${_multiValueArgs}" ${ARGN}) - set (_sourceFiles ${_option_UNPARSED_ARGUMENTS}) - if (NOT _option_LANGUAGE) - set (_option_LANGUAGE "CXX") - endif() - if (NOT _option_COMPILER_ID) - set (_option_COMPILER_ID "${CMAKE_${_option_LANGUAGE}_ID}") - endif() - if (NOT _option_COMPILER_VERSION) - set (_option_COMPILER_VERSION "${CMAKE_${_option_LANGUAGE}_COMPILER_VERSION}") - endif() - cotire_init_compile_cmd(_cmd "${_option_LANGUAGE}" "${_option_COMPILER_LAUNCHER}" "${_option_COMPILER_EXECUTABLE}" "${_option_COMPILER_ARG1}") - cotire_add_definitions_to_cmd(_cmd "${_option_LANGUAGE}" ${_option_COMPILE_DEFINITIONS}) - cotire_add_compile_flags_to_cmd(_cmd ${_option_COMPILE_FLAGS}) - cotire_add_includes_to_cmd(_cmd "${_option_LANGUAGE}" _option_INCLUDE_DIRECTORIES _option_SYSTEM_INCLUDE_DIRECTORIES) - cotire_add_frameworks_to_cmd(_cmd "${_option_LANGUAGE}" _option_INCLUDE_DIRECTORIES _option_SYSTEM_INCLUDE_DIRECTORIES) - cotire_add_makedep_flags("${_option_LANGUAGE}" "${_option_COMPILER_ID}" "${_option_COMPILER_VERSION}" _cmd) - # only consider existing source files for scanning - set (_existingSourceFiles "") - foreach (_sourceFile ${_sourceFiles}) - if (EXISTS "${_sourceFile}") - list (APPEND _existingSourceFiles "${_sourceFile}") - endif() - endforeach() - if (NOT _existingSourceFiles) - set (${_includesVar} "" PARENT_SCOPE) - return() - endif() - list (APPEND _cmd ${_existingSourceFiles}) - if (COTIRE_VERBOSE) - message (STATUS "execute_process: ${_cmd}") - endif() - if (_option_COMPILER_ID MATCHES "MSVC") - # cl.exe messes with the output streams unless the environment variable VS_UNICODE_OUTPUT is cleared - unset (ENV{VS_UNICODE_OUTPUT}) - endif() - execute_process( - COMMAND ${_cmd} - WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" - RESULT_VARIABLE _result - OUTPUT_QUIET - ERROR_VARIABLE _output) - if (_result) - message (STATUS "Result ${_result} scanning includes of ${_existingSourceFiles}.") - endif() - cotire_parse_includes( - "${_option_LANGUAGE}" "${_output}" - "${_option_IGNORE_PATH}" "${_option_INCLUDE_PATH}" - "${_option_IGNORE_EXTENSIONS}" - _includes _unparsedLines - ${_sourceFiles}) - if (_option_INCLUDE_PRIORITY_PATH) - set (_sortedIncludes "") - foreach (_priorityPath ${_option_INCLUDE_PRIORITY_PATH}) - foreach (_include ${_includes}) - string (FIND ${_include} ${_priorityPath} _position) - if (_position GREATER -1) - list (APPEND _sortedIncludes ${_include}) - endif() - endforeach() - endforeach() - if (_sortedIncludes) - list (INSERT _includes 0 ${_sortedIncludes}) - list (REMOVE_DUPLICATES _includes) - endif() - endif() - set (${_includesVar} ${_includes} PARENT_SCOPE) - if (_option_UNPARSED_LINES) - set (${_option_UNPARSED_LINES} ${_unparsedLines} PARENT_SCOPE) - endif() - if (_option_SCAN_RESULT) - set (${_option_SCAN_RESULT} ${_result} PARENT_SCOPE) - endif() -endfunction() - -macro (cotire_append_undefs _contentsVar) - set (_undefs ${ARGN}) - if (_undefs) - list (REMOVE_DUPLICATES _undefs) - foreach (_definition ${_undefs}) - list (APPEND ${_contentsVar} "#undef ${_definition}") - endforeach() - endif() -endmacro() - -macro (cotire_comment_str _language _commentText _commentVar) - if ("${_language}" STREQUAL "CMAKE") - set (${_commentVar} "# ${_commentText}") - else() - set (${_commentVar} "/* ${_commentText} */") - endif() -endmacro() - -function (cotire_write_file _language _file _contents _force) - get_filename_component(_moduleName "${COTIRE_CMAKE_MODULE_FILE}" NAME) - cotire_comment_str("${_language}" "${_moduleName} ${COTIRE_CMAKE_MODULE_VERSION} generated file" _header1) - cotire_comment_str("${_language}" "${_file}" _header2) - set (_contents "${_header1}\n${_header2}\n${_contents}") - if (COTIRE_DEBUG) - message (STATUS "${_contents}") - endif() - if (_force OR NOT EXISTS "${_file}") - file (WRITE "${_file}" "${_contents}") - else() - file (READ "${_file}" _oldContents) - if (NOT "${_oldContents}" STREQUAL "${_contents}") - file (WRITE "${_file}" "${_contents}") - else() - if (COTIRE_DEBUG) - message (STATUS "${_file} unchanged") - endif() - endif() - endif() -endfunction() - -function (cotire_generate_unity_source _unityFile) - set(_options "") - set(_oneValueArgs LANGUAGE) - set(_multiValueArgs - DEPENDS SOURCES_COMPILE_DEFINITIONS - PRE_UNDEFS SOURCES_PRE_UNDEFS POST_UNDEFS SOURCES_POST_UNDEFS PROLOGUE EPILOGUE) - cmake_parse_arguments(_option "${_options}" "${_oneValueArgs}" "${_multiValueArgs}" ${ARGN}) - if (_option_DEPENDS) - cotire_check_file_up_to_date(_unityFileIsUpToDate "${_unityFile}" ${_option_DEPENDS}) - if (_unityFileIsUpToDate) - return() - endif() - endif() - set (_sourceFiles ${_option_UNPARSED_ARGUMENTS}) - if (NOT _option_PRE_UNDEFS) - set (_option_PRE_UNDEFS "") - endif() - if (NOT _option_SOURCES_PRE_UNDEFS) - set (_option_SOURCES_PRE_UNDEFS "") - endif() - if (NOT _option_POST_UNDEFS) - set (_option_POST_UNDEFS "") - endif() - if (NOT _option_SOURCES_POST_UNDEFS) - set (_option_SOURCES_POST_UNDEFS "") - endif() - set (_contents "") - if (_option_PROLOGUE) - list (APPEND _contents ${_option_PROLOGUE}) - endif() - if (_option_LANGUAGE AND _sourceFiles) - if ("${_option_LANGUAGE}" STREQUAL "CXX") - list (APPEND _contents "#ifdef __cplusplus") - elseif ("${_option_LANGUAGE}" STREQUAL "C") - list (APPEND _contents "#ifndef __cplusplus") - endif() - endif() - set (_compileUndefinitions "") - foreach (_sourceFile ${_sourceFiles}) - cotire_get_source_compile_definitions( - "${_option_CONFIGURATION}" "${_option_LANGUAGE}" "${_sourceFile}" _compileDefinitions - ${_option_SOURCES_COMPILE_DEFINITIONS}) - cotire_get_source_undefs("${_sourceFile}" COTIRE_UNITY_SOURCE_PRE_UNDEFS _sourcePreUndefs ${_option_SOURCES_PRE_UNDEFS}) - cotire_get_source_undefs("${_sourceFile}" COTIRE_UNITY_SOURCE_POST_UNDEFS _sourcePostUndefs ${_option_SOURCES_POST_UNDEFS}) - if (_option_PRE_UNDEFS) - list (APPEND _compileUndefinitions ${_option_PRE_UNDEFS}) - endif() - if (_sourcePreUndefs) - list (APPEND _compileUndefinitions ${_sourcePreUndefs}) - endif() - if (_compileUndefinitions) - cotire_append_undefs(_contents ${_compileUndefinitions}) - set (_compileUndefinitions "") - endif() - if (_sourcePostUndefs) - list (APPEND _compileUndefinitions ${_sourcePostUndefs}) - endif() - if (_option_POST_UNDEFS) - list (APPEND _compileUndefinitions ${_option_POST_UNDEFS}) - endif() - foreach (_definition ${_compileDefinitions}) - if (_definition MATCHES "^([a-zA-Z0-9_]+)=(.+)$") - list (APPEND _contents "#define ${CMAKE_MATCH_1} ${CMAKE_MATCH_2}") - list (INSERT _compileUndefinitions 0 "${CMAKE_MATCH_1}") - else() - list (APPEND _contents "#define ${_definition}") - list (INSERT _compileUndefinitions 0 "${_definition}") - endif() - endforeach() - # use absolute path as source file location - get_filename_component(_sourceFileLocation "${_sourceFile}" ABSOLUTE) - if (WIN32) - file (TO_NATIVE_PATH "${_sourceFileLocation}" _sourceFileLocation) - endif() - list (APPEND _contents "#include \"${_sourceFileLocation}\"") - endforeach() - if (_compileUndefinitions) - cotire_append_undefs(_contents ${_compileUndefinitions}) - set (_compileUndefinitions "") - endif() - if (_option_LANGUAGE AND _sourceFiles) - list (APPEND _contents "#endif") - endif() - if (_option_EPILOGUE) - list (APPEND _contents ${_option_EPILOGUE}) - endif() - list (APPEND _contents "") - string (REPLACE ";" "\n" _contents "${_contents}") - if (COTIRE_VERBOSE) - message ("${_contents}") - endif() - cotire_write_file("${_option_LANGUAGE}" "${_unityFile}" "${_contents}" TRUE) -endfunction() - -function (cotire_generate_prefix_header _prefixFile) - set(_options "") - set(_oneValueArgs LANGUAGE COMPILER_EXECUTABLE COMPILER_ARG1 COMPILER_ID COMPILER_VERSION) - set(_multiValueArgs DEPENDS COMPILE_DEFINITIONS COMPILE_FLAGS - INCLUDE_DIRECTORIES SYSTEM_INCLUDE_DIRECTORIES IGNORE_PATH INCLUDE_PATH - IGNORE_EXTENSIONS INCLUDE_PRIORITY_PATH COMPILER_LAUNCHER) - cmake_parse_arguments(_option "${_options}" "${_oneValueArgs}" "${_multiValueArgs}" ${ARGN}) - if (NOT _option_COMPILER_ID) - set (_option_COMPILER_ID "${CMAKE_${_option_LANGUAGE}_ID}") - endif() - if (NOT _option_COMPILER_VERSION) - set (_option_COMPILER_VERSION "${CMAKE_${_option_LANGUAGE}_COMPILER_VERSION}") - endif() - if (_option_DEPENDS) - cotire_check_file_up_to_date(_prefixFileIsUpToDate "${_prefixFile}" ${_option_DEPENDS}) - if (_prefixFileIsUpToDate) - # create empty log file - set (_unparsedLinesFile "${_prefixFile}.log") - file (WRITE "${_unparsedLinesFile}" "") - return() - endif() - endif() - set (_prologue "") - set (_epilogue "") - if (_option_COMPILER_ID MATCHES "Clang") - set (_prologue "#pragma clang system_header") - elseif (_option_COMPILER_ID MATCHES "GNU") - set (_prologue "#pragma GCC system_header") - elseif (_option_COMPILER_ID MATCHES "MSVC") - set (_prologue "#pragma warning(push, 0)") - set (_epilogue "#pragma warning(pop)") - elseif (_option_COMPILER_ID MATCHES "Intel") - # Intel compiler requires hdrstop pragma to stop generating PCH file - set (_epilogue "#pragma hdrstop") - endif() - set (_sourceFiles ${_option_UNPARSED_ARGUMENTS}) - cotire_scan_includes(_selectedHeaders ${_sourceFiles} - LANGUAGE "${_option_LANGUAGE}" - COMPILER_LAUNCHER "${_option_COMPILER_LAUNCHER}" - COMPILER_EXECUTABLE "${_option_COMPILER_EXECUTABLE}" - COMPILER_ARG1 "${_option_COMPILER_ARG1}" - COMPILER_ID "${_option_COMPILER_ID}" - COMPILER_VERSION "${_option_COMPILER_VERSION}" - COMPILE_DEFINITIONS ${_option_COMPILE_DEFINITIONS} - COMPILE_FLAGS ${_option_COMPILE_FLAGS} - INCLUDE_DIRECTORIES ${_option_INCLUDE_DIRECTORIES} - SYSTEM_INCLUDE_DIRECTORIES ${_option_SYSTEM_INCLUDE_DIRECTORIES} - IGNORE_PATH ${_option_IGNORE_PATH} - INCLUDE_PATH ${_option_INCLUDE_PATH} - IGNORE_EXTENSIONS ${_option_IGNORE_EXTENSIONS} - INCLUDE_PRIORITY_PATH ${_option_INCLUDE_PRIORITY_PATH} - UNPARSED_LINES _unparsedLines - SCAN_RESULT _scanResult) - cotire_generate_unity_source("${_prefixFile}" - PROLOGUE ${_prologue} EPILOGUE ${_epilogue} LANGUAGE "${_option_LANGUAGE}" ${_selectedHeaders}) - set (_unparsedLinesFile "${_prefixFile}.log") - if (_unparsedLines) - if (COTIRE_VERBOSE OR _scanResult OR NOT _selectedHeaders) - list (LENGTH _unparsedLines _skippedLineCount) - message (STATUS "${_skippedLineCount} line(s) skipped, see ${_unparsedLinesFile}") - endif() - string (REPLACE ";" "\n" _unparsedLines "${_unparsedLines}") - endif() - file (WRITE "${_unparsedLinesFile}" "${_unparsedLines}") -endfunction() - -function (cotire_add_makedep_flags _language _compilerID _compilerVersion _flagsVar) - set (_flags ${${_flagsVar}}) - if (_compilerID MATCHES "MSVC") - # cl.exe options used - # /nologo suppresses display of sign-on banner - # /TC treat all files named on the command line as C source files - # /TP treat all files named on the command line as C++ source files - # /EP preprocess to stdout without #line directives - # /showIncludes list include files - set (_sourceFileTypeC "/TC") - set (_sourceFileTypeCXX "/TP") - if (_flags) - # append to list - list (APPEND _flags /nologo "${_sourceFileType${_language}}" /EP /showIncludes) - else() - # return as a flag string - set (_flags "${_sourceFileType${_language}} /EP /showIncludes") - endif() - elseif (_compilerID MATCHES "GNU") - # GCC options used - # -H print the name of each header file used - # -E invoke preprocessor - # -fdirectives-only do not expand macros, requires GCC >= 4.3 - if (_flags) - # append to list - list (APPEND _flags -H -E) - if (NOT "${_compilerVersion}" VERSION_LESS "4.3.0") - list (APPEND _flags "-fdirectives-only") - endif() - else() - # return as a flag string - set (_flags "-H -E") - if (NOT "${_compilerVersion}" VERSION_LESS "4.3.0") - set (_flags "${_flags} -fdirectives-only") - endif() - endif() - elseif (_compilerID MATCHES "Clang") - # Clang options used - # -H print the name of each header file used - # -E invoke preprocessor - # -fno-color-diagnostics don't prints diagnostics in color - if (_flags) - # append to list - list (APPEND _flags -H -E -fno-color-diagnostics) - else() - # return as a flag string - set (_flags "-H -E -fno-color-diagnostics") - endif() - elseif (_compilerID MATCHES "Intel") - if (WIN32) - # Windows Intel options used - # /nologo do not display compiler version information - # /QH display the include file order - # /EP preprocess to stdout, omitting #line directives - # /TC process all source or unrecognized file types as C source files - # /TP process all source or unrecognized file types as C++ source files - set (_sourceFileTypeC "/TC") - set (_sourceFileTypeCXX "/TP") - if (_flags) - # append to list - list (APPEND _flags /nologo "${_sourceFileType${_language}}" /EP /QH) - else() - # return as a flag string - set (_flags "${_sourceFileType${_language}} /EP /QH") - endif() - else() - # Linux / Mac OS X Intel options used - # -H print the name of each header file used - # -EP preprocess to stdout, omitting #line directives - # -Kc++ process all source or unrecognized file types as C++ source files - if (_flags) - # append to list - if ("${_language}" STREQUAL "CXX") - list (APPEND _flags -Kc++) - endif() - list (APPEND _flags -H -EP) - else() - # return as a flag string - if ("${_language}" STREQUAL "CXX") - set (_flags "-Kc++ ") - endif() - set (_flags "${_flags}-H -EP") - endif() - endif() - else() - message (FATAL_ERROR "cotire: unsupported ${_language} compiler ${_compilerID} version ${_compilerVersion}.") - endif() - set (${_flagsVar} ${_flags} PARENT_SCOPE) -endfunction() - -function (cotire_add_pch_compilation_flags _language _compilerID _compilerVersion _prefixFile _pchFile _hostFile _flagsVar) - set (_flags ${${_flagsVar}}) - if (_compilerID MATCHES "MSVC") - file (TO_NATIVE_PATH "${_prefixFile}" _prefixFileNative) - file (TO_NATIVE_PATH "${_pchFile}" _pchFileNative) - file (TO_NATIVE_PATH "${_hostFile}" _hostFileNative) - # cl.exe options used - # /Yc creates a precompiled header file - # /Fp specifies precompiled header binary file name - # /FI forces inclusion of file - # /TC treat all files named on the command line as C source files - # /TP treat all files named on the command line as C++ source files - # /Zs syntax check only - # /Zm precompiled header memory allocation scaling factor - set (_sourceFileTypeC "/TC") - set (_sourceFileTypeCXX "/TP") - if (_flags) - # append to list - list (APPEND _flags /nologo "${_sourceFileType${_language}}" - "/Yc${_prefixFileNative}" "/Fp${_pchFileNative}" "/FI${_prefixFileNative}" /Zs "${_hostFileNative}") - if (COTIRE_PCH_MEMORY_SCALING_FACTOR) - list (APPEND _flags "/Zm${COTIRE_PCH_MEMORY_SCALING_FACTOR}") - endif() - else() - # return as a flag string - set (_flags "/Yc\"${_prefixFileNative}\" /Fp\"${_pchFileNative}\" /FI\"${_prefixFileNative}\"") - if (COTIRE_PCH_MEMORY_SCALING_FACTOR) - set (_flags "${_flags} /Zm${COTIRE_PCH_MEMORY_SCALING_FACTOR}") - endif() - endif() - elseif (_compilerID MATCHES "GNU|Clang") - # GCC / Clang options used - # -x specify the source language - # -c compile but do not link - # -o place output in file - # note that we cannot use -w to suppress all warnings upon pre-compiling, because turning off a warning may - # alter compile flags as a side effect (e.g., -Wwrite-string implies -fconst-strings) - set (_xLanguage_C "c-header") - set (_xLanguage_CXX "c++-header") - if (_flags) - # append to list - list (APPEND _flags "-x" "${_xLanguage_${_language}}" "-c" "${_prefixFile}" -o "${_pchFile}") - else() - # return as a flag string - set (_flags "-x ${_xLanguage_${_language}} -c \"${_prefixFile}\" -o \"${_pchFile}\"") - endif() - elseif (_compilerID MATCHES "Intel") - if (WIN32) - file (TO_NATIVE_PATH "${_prefixFile}" _prefixFileNative) - file (TO_NATIVE_PATH "${_pchFile}" _pchFileNative) - file (TO_NATIVE_PATH "${_hostFile}" _hostFileNative) - # Windows Intel options used - # /nologo do not display compiler version information - # /Yc create a precompiled header (PCH) file - # /Fp specify a path or file name for precompiled header files - # /FI tells the preprocessor to include a specified file name as the header file - # /TC process all source or unrecognized file types as C source files - # /TP process all source or unrecognized file types as C++ source files - # /Zs syntax check only - # /Wpch-messages enable diagnostics related to pre-compiled headers (requires Intel XE 2013 Update 2) - set (_sourceFileTypeC "/TC") - set (_sourceFileTypeCXX "/TP") - if (_flags) - # append to list - list (APPEND _flags /nologo "${_sourceFileType${_language}}" - "/Yc" "/Fp${_pchFileNative}" "/FI${_prefixFileNative}" /Zs "${_hostFileNative}") - if (NOT "${_compilerVersion}" VERSION_LESS "13.1.0") - list (APPEND _flags "/Wpch-messages") - endif() - else() - # return as a flag string - set (_flags "/Yc /Fp\"${_pchFileNative}\" /FI\"${_prefixFileNative}\"") - if (NOT "${_compilerVersion}" VERSION_LESS "13.1.0") - set (_flags "${_flags} /Wpch-messages") - endif() - endif() - else() - # Linux / Mac OS X Intel options used - # -pch-dir location for precompiled header files - # -pch-create name of the precompiled header (PCH) to create - # -Kc++ process all source or unrecognized file types as C++ source files - # -fsyntax-only check only for correct syntax - # -Wpch-messages enable diagnostics related to pre-compiled headers (requires Intel XE 2013 Update 2) - get_filename_component(_pchDir "${_pchFile}" DIRECTORY) - get_filename_component(_pchName "${_pchFile}" NAME) - set (_xLanguage_C "c-header") - set (_xLanguage_CXX "c++-header") - set (_pchSuppressMessages FALSE) - if ("${CMAKE_${_language}_FLAGS}" MATCHES ".*-Wno-pch-messages.*") - set(_pchSuppressMessages TRUE) - endif() - if (_flags) - # append to list - if ("${_language}" STREQUAL "CXX") - list (APPEND _flags -Kc++) - endif() - list (APPEND _flags "-include" "${_prefixFile}" "-pch-dir" "${_pchDir}" "-pch-create" "${_pchName}" "-fsyntax-only" "${_hostFile}") - if (NOT "${_compilerVersion}" VERSION_LESS "13.1.0") - if (NOT _pchSuppressMessages) - list (APPEND _flags "-Wpch-messages") - endif() - endif() - else() - # return as a flag string - set (_flags "-include \"${_prefixFile}\" -pch-dir \"${_pchDir}\" -pch-create \"${_pchName}\"") - if (NOT "${_compilerVersion}" VERSION_LESS "13.1.0") - if (NOT _pchSuppressMessages) - set (_flags "${_flags} -Wpch-messages") - endif() - endif() - endif() - endif() - else() - message (FATAL_ERROR "cotire: unsupported ${_language} compiler ${_compilerID} version ${_compilerVersion}.") - endif() - set (${_flagsVar} ${_flags} PARENT_SCOPE) -endfunction() - -function (cotire_add_prefix_pch_inclusion_flags _language _compilerID _compilerVersion _prefixFile _pchFile _flagsVar) - set (_flags ${${_flagsVar}}) - if (_compilerID MATCHES "MSVC") - file (TO_NATIVE_PATH "${_prefixFile}" _prefixFileNative) - # cl.exe options used - # /Yu uses a precompiled header file during build - # /Fp specifies precompiled header binary file name - # /FI forces inclusion of file - # /Zm precompiled header memory allocation scaling factor - if (_pchFile) - file (TO_NATIVE_PATH "${_pchFile}" _pchFileNative) - if (_flags) - # append to list - list (APPEND _flags "/Yu${_prefixFileNative}" "/Fp${_pchFileNative}" "/FI${_prefixFileNative}") - if (COTIRE_PCH_MEMORY_SCALING_FACTOR) - list (APPEND _flags "/Zm${COTIRE_PCH_MEMORY_SCALING_FACTOR}") - endif() - else() - # return as a flag string - set (_flags "/Yu\"${_prefixFileNative}\" /Fp\"${_pchFileNative}\" /FI\"${_prefixFileNative}\"") - if (COTIRE_PCH_MEMORY_SCALING_FACTOR) - set (_flags "${_flags} /Zm${COTIRE_PCH_MEMORY_SCALING_FACTOR}") - endif() - endif() - else() - # no precompiled header, force inclusion of prefix header - if (_flags) - # append to list - list (APPEND _flags "/FI${_prefixFileNative}") - else() - # return as a flag string - set (_flags "/FI\"${_prefixFileNative}\"") - endif() - endif() - elseif (_compilerID MATCHES "GNU") - # GCC options used - # -include process include file as the first line of the primary source file - # -Winvalid-pch warns if precompiled header is found but cannot be used - # note: ccache requires the -include flag to be used in order to process precompiled header correctly - if (_flags) - # append to list - list (APPEND _flags "-Winvalid-pch" "-include" "${_prefixFile}") - else() - # return as a flag string - set (_flags "-Winvalid-pch -include \"${_prefixFile}\"") - endif() - elseif (_compilerID MATCHES "Clang") - # Clang options used - # -include process include file as the first line of the primary source file - # -include-pch include precompiled header file - # -Qunused-arguments don't emit warning for unused driver arguments - # note: ccache requires the -include flag to be used in order to process precompiled header correctly - if (_flags) - # append to list - list (APPEND _flags "-Qunused-arguments" "-include" "${_prefixFile}") - else() - # return as a flag string - set (_flags "-Qunused-arguments -include \"${_prefixFile}\"") - endif() - elseif (_compilerID MATCHES "Intel") - if (WIN32) - file (TO_NATIVE_PATH "${_prefixFile}" _prefixFileNative) - # Windows Intel options used - # /Yu use a precompiled header (PCH) file - # /Fp specify a path or file name for precompiled header files - # /FI tells the preprocessor to include a specified file name as the header file - # /Wpch-messages enable diagnostics related to pre-compiled headers (requires Intel XE 2013 Update 2) - if (_pchFile) - file (TO_NATIVE_PATH "${_pchFile}" _pchFileNative) - if (_flags) - # append to list - list (APPEND _flags "/Yu" "/Fp${_pchFileNative}" "/FI${_prefixFileNative}") - if (NOT "${_compilerVersion}" VERSION_LESS "13.1.0") - list (APPEND _flags "/Wpch-messages") - endif() - else() - # return as a flag string - set (_flags "/Yu /Fp\"${_pchFileNative}\" /FI\"${_prefixFileNative}\"") - if (NOT "${_compilerVersion}" VERSION_LESS "13.1.0") - set (_flags "${_flags} /Wpch-messages") - endif() - endif() - else() - # no precompiled header, force inclusion of prefix header - if (_flags) - # append to list - list (APPEND _flags "/FI${_prefixFileNative}") - else() - # return as a flag string - set (_flags "/FI\"${_prefixFileNative}\"") - endif() - endif() - else() - # Linux / Mac OS X Intel options used - # -pch-dir location for precompiled header files - # -pch-use name of the precompiled header (PCH) to use - # -include process include file as the first line of the primary source file - # -Wpch-messages enable diagnostics related to pre-compiled headers (requires Intel XE 2013 Update 2) - if (_pchFile) - get_filename_component(_pchDir "${_pchFile}" DIRECTORY) - get_filename_component(_pchName "${_pchFile}" NAME) - set (_pchSuppressMessages FALSE) - if ("${CMAKE_${_language}_FLAGS}" MATCHES ".*-Wno-pch-messages.*") - set(_pchSuppressMessages TRUE) - endif() - if (_flags) - # append to list - list (APPEND _flags "-include" "${_prefixFile}" "-pch-dir" "${_pchDir}" "-pch-use" "${_pchName}") - if (NOT "${_compilerVersion}" VERSION_LESS "13.1.0") - if (NOT _pchSuppressMessages) - list (APPEND _flags "-Wpch-messages") - endif() - endif() - else() - # return as a flag string - set (_flags "-include \"${_prefixFile}\" -pch-dir \"${_pchDir}\" -pch-use \"${_pchName}\"") - if (NOT "${_compilerVersion}" VERSION_LESS "13.1.0") - if (NOT _pchSuppressMessages) - set (_flags "${_flags} -Wpch-messages") - endif() - endif() - endif() - else() - # no precompiled header, force inclusion of prefix header - if (_flags) - # append to list - list (APPEND _flags "-include" "${_prefixFile}") - else() - # return as a flag string - set (_flags "-include \"${_prefixFile}\"") - endif() - endif() - endif() - else() - message (FATAL_ERROR "cotire: unsupported ${_language} compiler ${_compilerID} version ${_compilerVersion}.") - endif() - set (${_flagsVar} ${_flags} PARENT_SCOPE) -endfunction() - -function (cotire_precompile_prefix_header _prefixFile _pchFile _hostFile) - set(_options "") - set(_oneValueArgs COMPILER_EXECUTABLE COMPILER_ARG1 COMPILER_ID COMPILER_VERSION LANGUAGE) - set(_multiValueArgs COMPILE_DEFINITIONS COMPILE_FLAGS INCLUDE_DIRECTORIES SYSTEM_INCLUDE_DIRECTORIES SYS COMPILER_LAUNCHER) - cmake_parse_arguments(_option "${_options}" "${_oneValueArgs}" "${_multiValueArgs}" ${ARGN}) - if (NOT _option_LANGUAGE) - set (_option_LANGUAGE "CXX") - endif() - if (NOT _option_COMPILER_ID) - set (_option_COMPILER_ID "${CMAKE_${_option_LANGUAGE}_ID}") - endif() - if (NOT _option_COMPILER_VERSION) - set (_option_COMPILER_VERSION "${CMAKE_${_option_LANGUAGE}_COMPILER_VERSION}") - endif() - cotire_init_compile_cmd(_cmd "${_option_LANGUAGE}" "${_option_COMPILER_LAUNCHER}" "${_option_COMPILER_EXECUTABLE}" "${_option_COMPILER_ARG1}") - cotire_add_definitions_to_cmd(_cmd "${_option_LANGUAGE}" ${_option_COMPILE_DEFINITIONS}) - cotire_add_compile_flags_to_cmd(_cmd ${_option_COMPILE_FLAGS}) - cotire_add_includes_to_cmd(_cmd "${_option_LANGUAGE}" _option_INCLUDE_DIRECTORIES _option_SYSTEM_INCLUDE_DIRECTORIES) - cotire_add_frameworks_to_cmd(_cmd "${_option_LANGUAGE}" _option_INCLUDE_DIRECTORIES _option_SYSTEM_INCLUDE_DIRECTORIES) - cotire_add_pch_compilation_flags( - "${_option_LANGUAGE}" "${_option_COMPILER_ID}" "${_option_COMPILER_VERSION}" - "${_prefixFile}" "${_pchFile}" "${_hostFile}" _cmd) - if (COTIRE_VERBOSE) - message (STATUS "execute_process: ${_cmd}") - endif() - if (_option_COMPILER_ID MATCHES "MSVC") - # cl.exe messes with the output streams unless the environment variable VS_UNICODE_OUTPUT is cleared - unset (ENV{VS_UNICODE_OUTPUT}) - elseif (_option_COMPILER_ID MATCHES "GNU|Clang") - if (_option_COMPILER_LAUNCHER MATCHES "ccache" OR - _option_COMPILER_EXECUTABLE MATCHES "ccache") - # Newer versions of Clang and GCC seem to embed a compilation timestamp into the precompiled header binary, - # which results in "file has been modified since the precompiled header was built" errors if ccache is used. - # We work around the problem by disabling ccache upon pre-compiling the prefix header. - set (ENV{CCACHE_DISABLE} "true") - endif() - endif() - execute_process( - COMMAND ${_cmd} - WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" - RESULT_VARIABLE _result) - if (_result) - message (FATAL_ERROR "cotire: error ${_result} precompiling ${_prefixFile}.") - endif() -endfunction() - -function (cotire_check_precompiled_header_support _language _target _msgVar) - set (_unsupportedCompiler - "Precompiled headers not supported for ${_language} compiler ${CMAKE_${_language}_COMPILER_ID}") - if (CMAKE_${_language}_COMPILER_ID MATCHES "MSVC") - # supported since Visual Studio C++ 6.0 - # and CMake does not support an earlier version - set (${_msgVar} "" PARENT_SCOPE) - elseif (CMAKE_${_language}_COMPILER_ID MATCHES "GNU") - # GCC PCH support requires version >= 3.4 - if ("${CMAKE_${_language}_COMPILER_VERSION}" VERSION_LESS "3.4.0") - set (${_msgVar} "${_unsupportedCompiler} version ${CMAKE_${_language}_COMPILER_VERSION}." PARENT_SCOPE) - else() - set (${_msgVar} "" PARENT_SCOPE) - endif() - elseif (CMAKE_${_language}_COMPILER_ID MATCHES "Clang") - # all Clang versions have PCH support - set (${_msgVar} "" PARENT_SCOPE) - elseif (CMAKE_${_language}_COMPILER_ID MATCHES "Intel") - # Intel PCH support requires version >= 8.0.0 - if ("${CMAKE_${_language}_COMPILER_VERSION}" VERSION_LESS "8.0.0") - set (${_msgVar} "${_unsupportedCompiler} version ${CMAKE_${_language}_COMPILER_VERSION}." PARENT_SCOPE) - else() - set (${_msgVar} "" PARENT_SCOPE) - endif() - else() - set (${_msgVar} "${_unsupportedCompiler}." PARENT_SCOPE) - endif() - get_target_property(_launcher ${_target} ${_language}_COMPILER_LAUNCHER) - if (CMAKE_${_language}_COMPILER MATCHES "ccache" OR _launcher MATCHES "ccache") - if (DEFINED ENV{CCACHE_SLOPPINESS}) - if (NOT "$ENV{CCACHE_SLOPPINESS}" MATCHES "pch_defines" OR NOT "$ENV{CCACHE_SLOPPINESS}" MATCHES "time_macros") - set (${_msgVar} - "ccache requires the environment variable CCACHE_SLOPPINESS to be set to \"pch_defines,time_macros\"." - PARENT_SCOPE) - endif() - else() - if (_launcher MATCHES "ccache") - get_filename_component(_ccacheExe "${_launcher}" REALPATH) - else() - get_filename_component(_ccacheExe "${CMAKE_${_language}_COMPILER}" REALPATH) - endif() - execute_process( - COMMAND "${_ccacheExe}" "--print-config" - WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" - RESULT_VARIABLE _result - OUTPUT_VARIABLE _ccacheConfig OUTPUT_STRIP_TRAILING_WHITESPACE - ERROR_QUIET) - if (_result OR NOT - _ccacheConfig MATCHES "sloppiness.*=.*time_macros" OR NOT - _ccacheConfig MATCHES "sloppiness.*=.*pch_defines") - set (${_msgVar} - "ccache requires configuration setting \"sloppiness\" to be set to \"pch_defines,time_macros\"." - PARENT_SCOPE) - endif() - endif() - endif() - if (APPLE) - # PCH compilation not supported by GCC / Clang for multi-architecture builds (e.g., i386, x86_64) - cotire_get_configuration_types(_configs) - foreach (_config ${_configs}) - set (_targetFlags "") - cotire_get_target_compile_flags("${_config}" "${_language}" "${_target}" _targetFlags) - cotire_filter_compile_flags("${_language}" "arch" _architectures _ignore ${_targetFlags}) - list (LENGTH _architectures _numberOfArchitectures) - if (_numberOfArchitectures GREATER 1) - string (REPLACE ";" ", " _architectureStr "${_architectures}") - set (${_msgVar} - "Precompiled headers not supported on Darwin for multi-architecture builds (${_architectureStr})." - PARENT_SCOPE) - break() - endif() - endforeach() - endif() -endfunction() - -macro (cotire_get_intermediate_dir _cotireDir) - # ${CMAKE_CFG_INTDIR} may reference a build-time variable when using a generator which supports configuration types - get_filename_component(${_cotireDir} "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${COTIRE_INTDIR}" ABSOLUTE) -endmacro() - -macro (cotire_setup_file_extension_variables) - set (_unityFileExt_C ".c") - set (_unityFileExt_CXX ".cxx") - set (_prefixFileExt_C ".h") - set (_prefixFileExt_CXX ".hxx") - set (_prefixSourceFileExt_C ".c") - set (_prefixSourceFileExt_CXX ".cxx") -endmacro() - -function (cotire_make_single_unity_source_file_path _language _target _unityFileVar) - cotire_setup_file_extension_variables() - if (NOT DEFINED _unityFileExt_${_language}) - set (${_unityFileVar} "" PARENT_SCOPE) - return() - endif() - set (_unityFileBaseName "${_target}_${_language}${COTIRE_UNITY_SOURCE_FILENAME_SUFFIX}") - set (_unityFileName "${_unityFileBaseName}${_unityFileExt_${_language}}") - cotire_get_intermediate_dir(_baseDir) - set (_unityFile "${_baseDir}/${_unityFileName}") - set (${_unityFileVar} "${_unityFile}" PARENT_SCOPE) -endfunction() - -function (cotire_make_unity_source_file_paths _language _target _maxIncludes _unityFilesVar) - cotire_setup_file_extension_variables() - if (NOT DEFINED _unityFileExt_${_language}) - set (${_unityFileVar} "" PARENT_SCOPE) - return() - endif() - set (_unityFileBaseName "${_target}_${_language}${COTIRE_UNITY_SOURCE_FILENAME_SUFFIX}") - cotire_get_intermediate_dir(_baseDir) - set (_startIndex 0) - set (_index 0) - set (_unityFiles "") - set (_sourceFiles ${ARGN}) - foreach (_sourceFile ${_sourceFiles}) - get_source_file_property(_startNew "${_sourceFile}" COTIRE_START_NEW_UNITY_SOURCE) - math (EXPR _unityFileCount "${_index} - ${_startIndex}") - if (_startNew OR (_maxIncludes GREATER 0 AND NOT _unityFileCount LESS _maxIncludes)) - if (_index GREATER 0) - # start new unity file segment - math (EXPR _endIndex "${_index} - 1") - set (_unityFileName "${_unityFileBaseName}_${_startIndex}_${_endIndex}${_unityFileExt_${_language}}") - list (APPEND _unityFiles "${_baseDir}/${_unityFileName}") - endif() - set (_startIndex ${_index}) - endif() - math (EXPR _index "${_index} + 1") - endforeach() - list (LENGTH _sourceFiles _numberOfSources) - if (_startIndex EQUAL 0) - # there is only a single unity file - cotire_make_single_unity_source_file_path(${_language} ${_target} _unityFiles) - elseif (_startIndex LESS _numberOfSources) - # end with final unity file segment - math (EXPR _endIndex "${_index} - 1") - set (_unityFileName "${_unityFileBaseName}_${_startIndex}_${_endIndex}${_unityFileExt_${_language}}") - list (APPEND _unityFiles "${_baseDir}/${_unityFileName}") - endif() - set (${_unityFilesVar} ${_unityFiles} PARENT_SCOPE) - if (COTIRE_DEBUG AND _unityFiles) - message (STATUS "unity files: ${_unityFiles}") - endif() -endfunction() - -function (cotire_unity_to_prefix_file_path _language _target _unityFile _prefixFileVar) - cotire_setup_file_extension_variables() - if (NOT DEFINED _unityFileExt_${_language}) - set (${_prefixFileVar} "" PARENT_SCOPE) - return() - endif() - set (_unityFileBaseName "${_target}_${_language}${COTIRE_UNITY_SOURCE_FILENAME_SUFFIX}") - set (_prefixFileBaseName "${_target}_${_language}${COTIRE_PREFIX_HEADER_FILENAME_SUFFIX}") - string (REPLACE "${_unityFileBaseName}" "${_prefixFileBaseName}" _prefixFile "${_unityFile}") - string (REGEX REPLACE "${_unityFileExt_${_language}}$" "${_prefixFileExt_${_language}}" _prefixFile "${_prefixFile}") - set (${_prefixFileVar} "${_prefixFile}" PARENT_SCOPE) -endfunction() - -function (cotire_prefix_header_to_source_file_path _language _prefixHeaderFile _prefixSourceFileVar) - cotire_setup_file_extension_variables() - if (NOT DEFINED _prefixSourceFileExt_${_language}) - set (${_prefixSourceFileVar} "" PARENT_SCOPE) - return() - endif() - string (REGEX REPLACE "${_prefixFileExt_${_language}}$" "${_prefixSourceFileExt_${_language}}" _prefixSourceFile "${_prefixHeaderFile}") - set (${_prefixSourceFileVar} "${_prefixSourceFile}" PARENT_SCOPE) -endfunction() - -function (cotire_make_prefix_file_name _language _target _prefixFileBaseNameVar _prefixFileNameVar) - cotire_setup_file_extension_variables() - if (NOT _language) - set (_prefixFileBaseName "${_target}${COTIRE_PREFIX_HEADER_FILENAME_SUFFIX}") - set (_prefixFileName "${_prefixFileBaseName}${_prefixFileExt_C}") - elseif (DEFINED _prefixFileExt_${_language}) - set (_prefixFileBaseName "${_target}_${_language}${COTIRE_PREFIX_HEADER_FILENAME_SUFFIX}") - set (_prefixFileName "${_prefixFileBaseName}${_prefixFileExt_${_language}}") - else() - set (_prefixFileBaseName "") - set (_prefixFileName "") - endif() - set (${_prefixFileBaseNameVar} "${_prefixFileBaseName}" PARENT_SCOPE) - set (${_prefixFileNameVar} "${_prefixFileName}" PARENT_SCOPE) -endfunction() - -function (cotire_make_prefix_file_path _language _target _prefixFileVar) - cotire_make_prefix_file_name("${_language}" "${_target}" _prefixFileBaseName _prefixFileName) - set (${_prefixFileVar} "" PARENT_SCOPE) - if (_prefixFileName) - if (NOT _language) - set (_language "C") - endif() - if (CMAKE_${_language}_COMPILER_ID MATCHES "GNU|Clang|Intel|MSVC") - cotire_get_intermediate_dir(_baseDir) - set (${_prefixFileVar} "${_baseDir}/${_prefixFileName}" PARENT_SCOPE) - endif() - endif() -endfunction() - -function (cotire_make_pch_file_path _language _target _pchFileVar) - cotire_make_prefix_file_name("${_language}" "${_target}" _prefixFileBaseName _prefixFileName) - set (${_pchFileVar} "" PARENT_SCOPE) - if (_prefixFileBaseName AND _prefixFileName) - cotire_check_precompiled_header_support("${_language}" "${_target}" _msg) - if (NOT _msg) - if (XCODE) - # For Xcode, we completely hand off the compilation of the prefix header to the IDE - return() - endif() - cotire_get_intermediate_dir(_baseDir) - if (CMAKE_${_language}_COMPILER_ID MATCHES "MSVC") - # MSVC uses the extension .pch added to the prefix header base name - set (${_pchFileVar} "${_baseDir}/${_prefixFileBaseName}.pch" PARENT_SCOPE) - elseif (CMAKE_${_language}_COMPILER_ID MATCHES "Clang") - # Clang looks for a precompiled header corresponding to the prefix header with the extension .pch appended - set (${_pchFileVar} "${_baseDir}/${_prefixFileName}.pch" PARENT_SCOPE) - elseif (CMAKE_${_language}_COMPILER_ID MATCHES "GNU") - # GCC looks for a precompiled header corresponding to the prefix header with the extension .gch appended - set (${_pchFileVar} "${_baseDir}/${_prefixFileName}.gch" PARENT_SCOPE) - elseif (CMAKE_${_language}_COMPILER_ID MATCHES "Intel") - # Intel uses the extension .pchi added to the prefix header base name - set (${_pchFileVar} "${_baseDir}/${_prefixFileBaseName}.pchi" PARENT_SCOPE) - endif() - endif() - endif() -endfunction() - -function (cotire_select_unity_source_files _unityFile _sourcesVar) - set (_sourceFiles ${ARGN}) - if (_sourceFiles AND "${_unityFile}" MATCHES "${COTIRE_UNITY_SOURCE_FILENAME_SUFFIX}_([0-9]+)_([0-9]+)") - set (_startIndex ${CMAKE_MATCH_1}) - set (_endIndex ${CMAKE_MATCH_2}) - list (LENGTH _sourceFiles _numberOfSources) - if (NOT _startIndex LESS _numberOfSources) - math (EXPR _startIndex "${_numberOfSources} - 1") - endif() - if (NOT _endIndex LESS _numberOfSources) - math (EXPR _endIndex "${_numberOfSources} - 1") - endif() - set (_files "") - foreach (_index RANGE ${_startIndex} ${_endIndex}) - list (GET _sourceFiles ${_index} _file) - list (APPEND _files "${_file}") - endforeach() - else() - set (_files ${_sourceFiles}) - endif() - set (${_sourcesVar} ${_files} PARENT_SCOPE) -endfunction() - -function (cotire_get_unity_source_dependencies _language _target _dependencySourcesVar) - set (_dependencySources "") - # depend on target's generated source files - get_target_property(_targetSourceFiles ${_target} SOURCES) - cotire_get_objects_with_property_on(_generatedSources GENERATED SOURCE ${_targetSourceFiles}) - if (_generatedSources) - # but omit all generated source files that have the COTIRE_EXCLUDED property set to true - cotire_get_objects_with_property_on(_excludedGeneratedSources COTIRE_EXCLUDED SOURCE ${_generatedSources}) - if (_excludedGeneratedSources) - list (REMOVE_ITEM _generatedSources ${_excludedGeneratedSources}) - endif() - # and omit all generated source files that have the COTIRE_DEPENDENCY property set to false explicitly - cotire_get_objects_with_property_off(_excludedNonDependencySources COTIRE_DEPENDENCY SOURCE ${_generatedSources}) - if (_excludedNonDependencySources) - list (REMOVE_ITEM _generatedSources ${_excludedNonDependencySources}) - endif() - if (_generatedSources) - list (APPEND _dependencySources ${_generatedSources}) - endif() - endif() - if (COTIRE_DEBUG AND _dependencySources) - message (STATUS "${_language} ${_target} unity source dependencies: ${_dependencySources}") - endif() - set (${_dependencySourcesVar} ${_dependencySources} PARENT_SCOPE) -endfunction() - -function (cotire_get_prefix_header_dependencies _language _target _dependencySourcesVar) - set (_dependencySources "") - # depend on target source files marked with custom COTIRE_DEPENDENCY property - get_target_property(_targetSourceFiles ${_target} SOURCES) - cotire_get_objects_with_property_on(_dependencySources COTIRE_DEPENDENCY SOURCE ${_targetSourceFiles}) - if (COTIRE_DEBUG AND _dependencySources) - message (STATUS "${_language} ${_target} prefix header dependencies: ${_dependencySources}") - endif() - set (${_dependencySourcesVar} ${_dependencySources} PARENT_SCOPE) -endfunction() - -function (cotire_generate_target_script _language _configurations _target _targetScriptVar _targetConfigScriptVar) - set (_targetSources ${ARGN}) - cotire_get_prefix_header_dependencies(${_language} ${_target} COTIRE_TARGET_PREFIX_DEPENDS ${_targetSources}) - cotire_get_unity_source_dependencies(${_language} ${_target} COTIRE_TARGET_UNITY_DEPENDS ${_targetSources}) - # set up variables to be configured - set (COTIRE_TARGET_LANGUAGE "${_language}") - get_target_property(COTIRE_TARGET_IGNORE_PATH ${_target} COTIRE_PREFIX_HEADER_IGNORE_PATH) - cotire_add_sys_root_paths(COTIRE_TARGET_IGNORE_PATH) - get_target_property(COTIRE_TARGET_INCLUDE_PATH ${_target} COTIRE_PREFIX_HEADER_INCLUDE_PATH) - cotire_add_sys_root_paths(COTIRE_TARGET_INCLUDE_PATH) - get_target_property(COTIRE_TARGET_PRE_UNDEFS ${_target} COTIRE_UNITY_SOURCE_PRE_UNDEFS) - get_target_property(COTIRE_TARGET_POST_UNDEFS ${_target} COTIRE_UNITY_SOURCE_POST_UNDEFS) - get_target_property(COTIRE_TARGET_MAXIMUM_NUMBER_OF_INCLUDES ${_target} COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES) - get_target_property(COTIRE_TARGET_INCLUDE_PRIORITY_PATH ${_target} COTIRE_PREFIX_HEADER_INCLUDE_PRIORITY_PATH) - cotire_get_source_files_undefs(COTIRE_UNITY_SOURCE_PRE_UNDEFS COTIRE_TARGET_SOURCES_PRE_UNDEFS ${_targetSources}) - cotire_get_source_files_undefs(COTIRE_UNITY_SOURCE_POST_UNDEFS COTIRE_TARGET_SOURCES_POST_UNDEFS ${_targetSources}) - set (COTIRE_TARGET_CONFIGURATION_TYPES "${_configurations}") - foreach (_config ${_configurations}) - string (TOUPPER "${_config}" _upperConfig) - cotire_get_target_include_directories( - "${_config}" "${_language}" "${_target}" COTIRE_TARGET_INCLUDE_DIRECTORIES_${_upperConfig} COTIRE_TARGET_SYSTEM_INCLUDE_DIRECTORIES_${_upperConfig}) - cotire_get_target_compile_definitions( - "${_config}" "${_language}" "${_target}" COTIRE_TARGET_COMPILE_DEFINITIONS_${_upperConfig}) - cotire_get_target_compiler_flags( - "${_config}" "${_language}" "${_target}" COTIRE_TARGET_COMPILE_FLAGS_${_upperConfig}) - cotire_get_source_files_compile_definitions( - "${_config}" "${_language}" COTIRE_TARGET_SOURCES_COMPILE_DEFINITIONS_${_upperConfig} ${_targetSources}) - endforeach() - get_target_property(COTIRE_TARGET_${_language}_COMPILER_LAUNCHER ${_target} ${_language}_COMPILER_LAUNCHER) - # set up COTIRE_TARGET_SOURCES - set (COTIRE_TARGET_SOURCES "") - foreach (_sourceFile ${_targetSources}) - get_source_file_property(_generated "${_sourceFile}" GENERATED) - if (_generated) - # use absolute paths for generated files only, retrieving the LOCATION property is an expensive operation - get_source_file_property(_sourceLocation "${_sourceFile}" LOCATION) - list (APPEND COTIRE_TARGET_SOURCES "${_sourceLocation}") - else() - list (APPEND COTIRE_TARGET_SOURCES "${_sourceFile}") - endif() - endforeach() - # copy variable definitions to cotire target script - get_cmake_property(_vars VARIABLES) - string (REGEX MATCHALL "COTIRE_[A-Za-z0-9_]+" _matchVars "${_vars}") - # omit COTIRE_*_INIT variables - string (REGEX MATCHALL "COTIRE_[A-Za-z0-9_]+_INIT" _initVars "${_matchVars}") - if (_initVars) - list (REMOVE_ITEM _matchVars ${_initVars}) - endif() - # omit COTIRE_VERBOSE which is passed as a CMake define on command line - list (REMOVE_ITEM _matchVars COTIRE_VERBOSE) - set (_contents "") - set (_contentsHasGeneratorExpressions FALSE) - foreach (_var IN LISTS _matchVars ITEMS - XCODE MSVC CMAKE_GENERATOR CMAKE_BUILD_TYPE CMAKE_CONFIGURATION_TYPES - CMAKE_${_language}_COMPILER_ID CMAKE_${_language}_COMPILER_VERSION - CMAKE_${_language}_COMPILER_LAUNCHER CMAKE_${_language}_COMPILER CMAKE_${_language}_COMPILER_ARG1 - CMAKE_INCLUDE_FLAG_${_language} CMAKE_INCLUDE_FLAG_SEP_${_language} - CMAKE_INCLUDE_SYSTEM_FLAG_${_language} - CMAKE_${_language}_FRAMEWORK_SEARCH_FLAG - CMAKE_${_language}_SYSTEM_FRAMEWORK_SEARCH_FLAG - CMAKE_${_language}_SOURCE_FILE_EXTENSIONS) - if (DEFINED ${_var}) - string (REPLACE "\"" "\\\"" _value "${${_var}}") - set (_contents "${_contents}set (${_var} \"${_value}\")\n") - if (NOT _contentsHasGeneratorExpressions) - if ("${_value}" MATCHES "\\$<.*>") - set (_contentsHasGeneratorExpressions TRUE) - endif() - endif() - endif() - endforeach() - # generate target script file - get_filename_component(_moduleName "${COTIRE_CMAKE_MODULE_FILE}" NAME) - set (_targetCotireScript "${CMAKE_CURRENT_BINARY_DIR}/${_target}_${_language}_${_moduleName}") - cotire_write_file("CMAKE" "${_targetCotireScript}" "${_contents}" FALSE) - if (_contentsHasGeneratorExpressions) - # use file(GENERATE ...) to expand generator expressions in the target script at CMake generate-time - set (_configNameOrNoneGeneratorExpression "$<$:None>$<$>:$>") - set (_targetCotireConfigScript "${CMAKE_CURRENT_BINARY_DIR}/${_target}_${_language}_${_configNameOrNoneGeneratorExpression}_${_moduleName}") - file (GENERATE OUTPUT "${_targetCotireConfigScript}" INPUT "${_targetCotireScript}") - else() - set (_targetCotireConfigScript "${_targetCotireScript}") - endif() - set (${_targetScriptVar} "${_targetCotireScript}" PARENT_SCOPE) - set (${_targetConfigScriptVar} "${_targetCotireConfigScript}" PARENT_SCOPE) -endfunction() - -function (cotire_setup_pch_file_compilation _language _target _targetScript _prefixFile _pchFile _hostFile) - set (_sourceFiles ${ARGN}) - if (CMAKE_${_language}_COMPILER_ID MATCHES "MSVC|Intel") - # for Visual Studio and Intel, we attach the precompiled header compilation to the host file - # the remaining files include the precompiled header, see cotire_setup_pch_file_inclusion - if (_sourceFiles) - set (_flags "") - cotire_add_pch_compilation_flags( - "${_language}" "${CMAKE_${_language}_COMPILER_ID}" "${CMAKE_${_language}_COMPILER_VERSION}" - "${_prefixFile}" "${_pchFile}" "${_hostFile}" _flags) - set_property (SOURCE ${_hostFile} APPEND_STRING PROPERTY COMPILE_FLAGS " ${_flags} ") - set_property (SOURCE ${_hostFile} APPEND PROPERTY OBJECT_OUTPUTS "${_pchFile}") - # make object file generated from host file depend on prefix header - set_property (SOURCE ${_hostFile} APPEND PROPERTY OBJECT_DEPENDS "${_prefixFile}") - # mark host file as cotired to prevent it from being used in another cotired target - set_property (SOURCE ${_hostFile} PROPERTY COTIRE_TARGET "${_target}") - endif() - elseif ("${CMAKE_GENERATOR}" MATCHES "Make|Ninja") - # for makefile based generator, we add a custom command to precompile the prefix header - if (_targetScript) - cotire_set_cmd_to_prologue(_cmds) - list (APPEND _cmds -P "${COTIRE_CMAKE_MODULE_FILE}" "precompile" "${_targetScript}" "${_prefixFile}" "${_pchFile}" "${_hostFile}") - if (MSVC_IDE) - file (TO_NATIVE_PATH "${_pchFile}" _pchFileLogPath) - else() - file (RELATIVE_PATH _pchFileLogPath "${CMAKE_BINARY_DIR}" "${_pchFile}") - endif() - # make precompiled header compilation depend on the actual compiler executable used to force - # re-compilation when the compiler executable is updated. This prevents "created by a different GCC executable" - # warnings when the precompiled header is included. - get_filename_component(_realCompilerExe "${CMAKE_${_language}_COMPILER}" ABSOLUTE) - if (COTIRE_DEBUG) - message (STATUS "add_custom_command: OUTPUT ${_pchFile} ${_cmds} DEPENDS ${_prefixFile} ${_realCompilerExe} IMPLICIT_DEPENDS ${_language} ${_prefixFile}") - endif() - set_property (SOURCE "${_pchFile}" PROPERTY GENERATED TRUE) - add_custom_command( - OUTPUT "${_pchFile}" - COMMAND ${_cmds} - DEPENDS "${_prefixFile}" "${_realCompilerExe}" - IMPLICIT_DEPENDS ${_language} "${_prefixFile}" - WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" - COMMENT "Building ${_language} precompiled header ${_pchFileLogPath}" - VERBATIM) - endif() - endif() -endfunction() - -function (cotire_setup_pch_file_inclusion _language _target _wholeTarget _prefixFile _pchFile _hostFile) - if (CMAKE_${_language}_COMPILER_ID MATCHES "MSVC|Intel") - # for Visual Studio and Intel, we include the precompiled header in all but the host file - # the host file does the precompiled header compilation, see cotire_setup_pch_file_compilation - set (_sourceFiles ${ARGN}) - list (LENGTH _sourceFiles _numberOfSourceFiles) - if (_numberOfSourceFiles GREATER 0) - # mark sources as cotired to prevent them from being used in another cotired target - set_source_files_properties(${_sourceFiles} PROPERTIES COTIRE_TARGET "${_target}") - set (_flags "") - cotire_add_prefix_pch_inclusion_flags( - "${_language}" "${CMAKE_${_language}_COMPILER_ID}" "${CMAKE_${_language}_COMPILER_VERSION}" - "${_prefixFile}" "${_pchFile}" _flags) - set_property (SOURCE ${_sourceFiles} APPEND_STRING PROPERTY COMPILE_FLAGS " ${_flags} ") - # make object files generated from source files depend on precompiled header - set_property (SOURCE ${_sourceFiles} APPEND PROPERTY OBJECT_DEPENDS "${_pchFile}") - endif() - elseif ("${CMAKE_GENERATOR}" MATCHES "Make|Ninja") - set (_sourceFiles ${_hostFile} ${ARGN}) - if (NOT _wholeTarget) - # for makefile based generator, we force the inclusion of the prefix header for a subset - # of the source files, if this is a multi-language target or has excluded files - set (_flags "") - cotire_add_prefix_pch_inclusion_flags( - "${_language}" "${CMAKE_${_language}_COMPILER_ID}" "${CMAKE_${_language}_COMPILER_VERSION}" - "${_prefixFile}" "${_pchFile}" _flags) - set_property (SOURCE ${_sourceFiles} APPEND_STRING PROPERTY COMPILE_FLAGS " ${_flags} ") - # mark sources as cotired to prevent them from being used in another cotired target - set_source_files_properties(${_sourceFiles} PROPERTIES COTIRE_TARGET "${_target}") - endif() - # make object files generated from source files depend on precompiled header - set_property (SOURCE ${_sourceFiles} APPEND PROPERTY OBJECT_DEPENDS "${_pchFile}") - endif() -endfunction() - -function (cotire_setup_prefix_file_inclusion _language _target _prefixFile) - set (_sourceFiles ${ARGN}) - # force the inclusion of the prefix header for the given source files - set (_flags "") - set (_pchFile "") - cotire_add_prefix_pch_inclusion_flags( - "${_language}" "${CMAKE_${_language}_COMPILER_ID}" "${CMAKE_${_language}_COMPILER_VERSION}" - "${_prefixFile}" "${_pchFile}" _flags) - set_property (SOURCE ${_sourceFiles} APPEND_STRING PROPERTY COMPILE_FLAGS " ${_flags} ") - # mark sources as cotired to prevent them from being used in another cotired target - set_source_files_properties(${_sourceFiles} PROPERTIES COTIRE_TARGET "${_target}") - # make object files generated from source files depend on prefix header - set_property (SOURCE ${_sourceFiles} APPEND PROPERTY OBJECT_DEPENDS "${_prefixFile}") -endfunction() - -function (cotire_get_first_set_property_value _propertyValueVar _type _object) - set (_properties ${ARGN}) - foreach (_property ${_properties}) - get_property(_propertyValue ${_type} "${_object}" PROPERTY ${_property}) - if (_propertyValue) - set (${_propertyValueVar} ${_propertyValue} PARENT_SCOPE) - return() - endif() - endforeach() - set (${_propertyValueVar} "" PARENT_SCOPE) -endfunction() - -function (cotire_setup_combine_command _language _targetScript _joinedFile _cmdsVar) - set (_files ${ARGN}) - set (_filesPaths "") - foreach (_file ${_files}) - get_filename_component(_filePath "${_file}" ABSOLUTE) - list (APPEND _filesPaths "${_filePath}") - endforeach() - cotire_set_cmd_to_prologue(_prefixCmd) - list (APPEND _prefixCmd -P "${COTIRE_CMAKE_MODULE_FILE}" "combine") - if (_targetScript) - list (APPEND _prefixCmd "${_targetScript}") - endif() - list (APPEND _prefixCmd "${_joinedFile}" ${_filesPaths}) - if (COTIRE_DEBUG) - message (STATUS "add_custom_command: OUTPUT ${_joinedFile} COMMAND ${_prefixCmd} DEPENDS ${_files}") - endif() - set_property (SOURCE "${_joinedFile}" PROPERTY GENERATED TRUE) - if (MSVC_IDE) - file (TO_NATIVE_PATH "${_joinedFile}" _joinedFileLogPath) - else() - file (RELATIVE_PATH _joinedFileLogPath "${CMAKE_BINARY_DIR}" "${_joinedFile}") - endif() - get_filename_component(_joinedFileBaseName "${_joinedFile}" NAME_WE) - get_filename_component(_joinedFileExt "${_joinedFile}" EXT) - if (_language AND _joinedFileBaseName MATCHES "${COTIRE_UNITY_SOURCE_FILENAME_SUFFIX}$") - set (_comment "Generating ${_language} unity source ${_joinedFileLogPath}") - elseif (_language AND _joinedFileBaseName MATCHES "${COTIRE_PREFIX_HEADER_FILENAME_SUFFIX}$") - if (_joinedFileExt MATCHES "^\\.c") - set (_comment "Generating ${_language} prefix source ${_joinedFileLogPath}") - else() - set (_comment "Generating ${_language} prefix header ${_joinedFileLogPath}") - endif() - else() - set (_comment "Generating ${_joinedFileLogPath}") - endif() - add_custom_command( - OUTPUT "${_joinedFile}" - COMMAND ${_prefixCmd} - DEPENDS ${_files} - COMMENT "${_comment}" - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" - VERBATIM) - list (APPEND ${_cmdsVar} COMMAND ${_prefixCmd}) - set (${_cmdsVar} ${${_cmdsVar}} PARENT_SCOPE) -endfunction() - -function (cotire_setup_target_pch_usage _languages _target _wholeTarget) - if (XCODE) - # for Xcode, we attach a pre-build action to generate the unity sources and prefix headers - set (_prefixFiles "") - foreach (_language ${_languages}) - get_property(_prefixFile TARGET ${_target} PROPERTY COTIRE_${_language}_PREFIX_HEADER) - if (_prefixFile) - list (APPEND _prefixFiles "${_prefixFile}") - endif() - endforeach() - set (_cmds ${ARGN}) - list (LENGTH _prefixFiles _numberOfPrefixFiles) - if (_numberOfPrefixFiles GREATER 1) - # we also generate a generic, single prefix header which includes all language specific prefix headers - set (_language "") - set (_targetScript "") - cotire_make_prefix_file_path("${_language}" ${_target} _prefixHeader) - cotire_setup_combine_command("${_language}" "${_targetScript}" "${_prefixHeader}" _cmds ${_prefixFiles}) - else() - set (_prefixHeader "${_prefixFiles}") - endif() - if (COTIRE_DEBUG) - message (STATUS "add_custom_command: TARGET ${_target} PRE_BUILD ${_cmds}") - endif() - # because CMake PRE_BUILD command does not support dependencies, - # we check dependencies explicity in cotire script mode when the pre-build action is run - add_custom_command( - TARGET "${_target}" - PRE_BUILD ${_cmds} - WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" - COMMENT "Updating target ${_target} prefix headers" - VERBATIM) - # make Xcode precompile the generated prefix header with ProcessPCH and ProcessPCH++ - set_target_properties(${_target} PROPERTIES XCODE_ATTRIBUTE_GCC_PRECOMPILE_PREFIX_HEADER "YES") - set_target_properties(${_target} PROPERTIES XCODE_ATTRIBUTE_GCC_PREFIX_HEADER "${_prefixHeader}") - elseif ("${CMAKE_GENERATOR}" MATCHES "Make|Ninja") - # for makefile based generator, we force inclusion of the prefix header for all target source files - # if this is a single-language target without any excluded files - if (_wholeTarget) - set (_language "${_languages}") - # for Visual Studio and Intel, precompiled header inclusion is always done on the source file level - # see cotire_setup_pch_file_inclusion - if (NOT CMAKE_${_language}_COMPILER_ID MATCHES "MSVC|Intel") - get_property(_prefixFile TARGET ${_target} PROPERTY COTIRE_${_language}_PREFIX_HEADER) - if (_prefixFile) - get_property(_pchFile TARGET ${_target} PROPERTY COTIRE_${_language}_PRECOMPILED_HEADER) - set (_options COMPILE_OPTIONS) - cotire_add_prefix_pch_inclusion_flags( - "${_language}" "${CMAKE_${_language}_COMPILER_ID}" "${CMAKE_${_language}_COMPILER_VERSION}" - "${_prefixFile}" "${_pchFile}" _options) - set_property(TARGET ${_target} APPEND PROPERTY ${_options}) - endif() - endif() - endif() - endif() -endfunction() - -function (cotire_setup_unity_generation_commands _language _target _targetScript _targetConfigScript _unityFiles _cmdsVar) - set (_dependencySources "") - cotire_get_unity_source_dependencies(${_language} ${_target} _dependencySources ${ARGN}) - foreach (_unityFile ${_unityFiles}) - set_property (SOURCE "${_unityFile}" PROPERTY GENERATED TRUE) - # set up compiled unity source dependencies via OBJECT_DEPENDS - # this ensures that missing source files are generated before the unity file is compiled - if (COTIRE_DEBUG AND _dependencySources) - message (STATUS "${_unityFile} OBJECT_DEPENDS ${_dependencySources}") - endif() - if (_dependencySources) - # the OBJECT_DEPENDS property requires a list of full paths - set (_objectDependsPaths "") - foreach (_sourceFile ${_dependencySources}) - get_source_file_property(_sourceLocation "${_sourceFile}" LOCATION) - list (APPEND _objectDependsPaths "${_sourceLocation}") - endforeach() - set_property (SOURCE "${_unityFile}" PROPERTY OBJECT_DEPENDS ${_objectDependsPaths}) - endif() - if (WIN32 AND CMAKE_${_language}_COMPILER_ID MATCHES "MSVC|Intel") - # unity file compilation results in potentially huge object file, thus use /bigobj by default unter MSVC and Windows Intel - set_property (SOURCE "${_unityFile}" APPEND_STRING PROPERTY COMPILE_FLAGS "/bigobj") - endif() - cotire_set_cmd_to_prologue(_unityCmd) - list (APPEND _unityCmd -P "${COTIRE_CMAKE_MODULE_FILE}" "unity" "${_targetConfigScript}" "${_unityFile}") - if (CMAKE_VERSION VERSION_LESS "3.1.0") - set (_unityCmdDepends "${_targetScript}") - else() - # CMake 3.1.0 supports generator expressions in arguments to DEPENDS - set (_unityCmdDepends "${_targetConfigScript}") - endif() - if (MSVC_IDE) - file (TO_NATIVE_PATH "${_unityFile}" _unityFileLogPath) - else() - file (RELATIVE_PATH _unityFileLogPath "${CMAKE_BINARY_DIR}" "${_unityFile}") - endif() - if (COTIRE_DEBUG) - message (STATUS "add_custom_command: OUTPUT ${_unityFile} COMMAND ${_unityCmd} DEPENDS ${_unityCmdDepends}") - endif() - add_custom_command( - OUTPUT "${_unityFile}" - COMMAND ${_unityCmd} - DEPENDS ${_unityCmdDepends} - COMMENT "Generating ${_language} unity source ${_unityFileLogPath}" - WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" - VERBATIM) - list (APPEND ${_cmdsVar} COMMAND ${_unityCmd}) - endforeach() - set (${_cmdsVar} ${${_cmdsVar}} PARENT_SCOPE) -endfunction() - -function (cotire_setup_prefix_generation_command _language _target _targetScript _prefixFile _unityFiles _cmdsVar) - set (_sourceFiles ${ARGN}) - set (_dependencySources "") - cotire_get_prefix_header_dependencies(${_language} ${_target} _dependencySources ${_sourceFiles}) - cotire_set_cmd_to_prologue(_prefixCmd) - list (APPEND _prefixCmd -P "${COTIRE_CMAKE_MODULE_FILE}" "prefix" "${_targetScript}" "${_prefixFile}" ${_unityFiles}) - set_property (SOURCE "${_prefixFile}" PROPERTY GENERATED TRUE) - # make prefix header generation depend on the actual compiler executable used to force - # re-generation when the compiler executable is updated. This prevents "file not found" - # errors for compiler version specific system header files. - get_filename_component(_realCompilerExe "${CMAKE_${_language}_COMPILER}" ABSOLUTE) - if (COTIRE_DEBUG) - message (STATUS "add_custom_command: OUTPUT ${_prefixFile} COMMAND ${_prefixCmd} DEPENDS ${_unityFile} ${_dependencySources} ${_realCompilerExe}") - endif() - if (MSVC_IDE) - file (TO_NATIVE_PATH "${_prefixFile}" _prefixFileLogPath) - else() - file (RELATIVE_PATH _prefixFileLogPath "${CMAKE_BINARY_DIR}" "${_prefixFile}") - endif() - get_filename_component(_prefixFileExt "${_prefixFile}" EXT) - if (_prefixFileExt MATCHES "^\\.c") - set (_comment "Generating ${_language} prefix source ${_prefixFileLogPath}") - else() - set (_comment "Generating ${_language} prefix header ${_prefixFileLogPath}") - endif() - # prevent pre-processing errors upon generating the prefix header when a target's generated include file does not yet exist - # we do not add a file-level dependency for the target's generated files though, because we only want to depend on their existence - # thus we make the prefix header generation depend on a custom helper target which triggers the generation of the files - set (_preTargetName "${_target}${COTIRE_PCH_TARGET_SUFFIX}_pre") - if (TARGET ${_preTargetName}) - # custom helper target has already been generated while processing a different language - list (APPEND _dependencySources ${_preTargetName}) - else() - get_target_property(_targetSourceFiles ${_target} SOURCES) - cotire_get_objects_with_property_on(_generatedSources GENERATED SOURCE ${_targetSourceFiles}) - if (_generatedSources) - add_custom_target("${_preTargetName}" DEPENDS ${_generatedSources}) - cotire_init_target("${_preTargetName}") - list (APPEND _dependencySources ${_preTargetName}) - endif() - endif() - add_custom_command( - OUTPUT "${_prefixFile}" "${_prefixFile}.log" - COMMAND ${_prefixCmd} - DEPENDS ${_unityFiles} ${_dependencySources} "${_realCompilerExe}" - COMMENT "${_comment}" - WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" - VERBATIM) - list (APPEND ${_cmdsVar} COMMAND ${_prefixCmd}) - set (${_cmdsVar} ${${_cmdsVar}} PARENT_SCOPE) -endfunction() - -function (cotire_setup_prefix_generation_from_unity_command _language _target _targetScript _prefixFile _unityFiles _cmdsVar) - set (_sourceFiles ${ARGN}) - if (CMAKE_${_language}_COMPILER_ID MATCHES "GNU|Clang") - # GNU and Clang require indirect compilation of the prefix header to make them honor the system_header pragma - cotire_prefix_header_to_source_file_path(${_language} "${_prefixFile}" _prefixSourceFile) - else() - set (_prefixSourceFile "${_prefixFile}") - endif() - cotire_setup_prefix_generation_command( - ${_language} ${_target} "${_targetScript}" - "${_prefixSourceFile}" "${_unityFiles}" ${_cmdsVar} ${_sourceFiles}) - if (CMAKE_${_language}_COMPILER_ID MATCHES "GNU|Clang") - # set up generation of a prefix source file which includes the prefix header - cotire_setup_combine_command(${_language} "${_targetScript}" "${_prefixFile}" _cmds ${_prefixSourceFile}) - endif() - set (${_cmdsVar} ${${_cmdsVar}} PARENT_SCOPE) -endfunction() - -function (cotire_setup_prefix_generation_from_provided_command _language _target _targetScript _prefixFile _cmdsVar) - set (_prefixHeaderFiles ${ARGN}) - if (CMAKE_${_language}_COMPILER_ID MATCHES "GNU|Clang") - # GNU and Clang require indirect compilation of the prefix header to make them honor the system_header pragma - cotire_prefix_header_to_source_file_path(${_language} "${_prefixFile}" _prefixSourceFile) - else() - set (_prefixSourceFile "${_prefixFile}") - endif() - cotire_setup_combine_command(${_language} "${_targetScript}" "${_prefixSourceFile}" _cmds ${_prefixHeaderFiles}) - if (CMAKE_${_language}_COMPILER_ID MATCHES "GNU|Clang") - # set up generation of a prefix source file which includes the prefix header - cotire_setup_combine_command(${_language} "${_targetScript}" "${_prefixFile}" _cmds ${_prefixSourceFile}) - endif() - set (${_cmdsVar} ${${_cmdsVar}} PARENT_SCOPE) -endfunction() - -function (cotire_init_cotire_target_properties _target) - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_ENABLE_PRECOMPILED_HEADER SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_ENABLE_PRECOMPILED_HEADER TRUE) - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_ADD_UNITY_BUILD SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_ADD_UNITY_BUILD TRUE) - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_ADD_CLEAN SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_ADD_CLEAN FALSE) - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_PREFIX_HEADER_IGNORE_PATH SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_PREFIX_HEADER_IGNORE_PATH "${CMAKE_SOURCE_DIR}") - cotire_check_is_path_relative_to("${CMAKE_BINARY_DIR}" _isRelative "${CMAKE_SOURCE_DIR}") - if (NOT _isRelative) - set_property(TARGET ${_target} APPEND PROPERTY COTIRE_PREFIX_HEADER_IGNORE_PATH "${CMAKE_BINARY_DIR}") - endif() - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_PREFIX_HEADER_INCLUDE_PATH SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_PREFIX_HEADER_INCLUDE_PATH "") - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_PREFIX_HEADER_INCLUDE_PRIORITY_PATH SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_PREFIX_HEADER_INCLUDE_PRIORITY_PATH "") - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_UNITY_SOURCE_PRE_UNDEFS SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_UNITY_SOURCE_PRE_UNDEFS "") - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_UNITY_SOURCE_POST_UNDEFS SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_UNITY_SOURCE_POST_UNDEFS "") - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_UNITY_LINK_LIBRARIES_INIT SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_UNITY_LINK_LIBRARIES_INIT "COPY_UNITY") - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES SET) - if (NOT _isSet) - if (COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES) - set_property(TARGET ${_target} PROPERTY COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES "${COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES}") - else() - set_property(TARGET ${_target} PROPERTY COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES "") - endif() - endif() -endfunction() - -function (cotire_make_target_message _target _languages _disableMsg _targetMsgVar) - get_target_property(_targetUsePCH ${_target} COTIRE_ENABLE_PRECOMPILED_HEADER) - get_target_property(_targetAddSCU ${_target} COTIRE_ADD_UNITY_BUILD) - string (REPLACE ";" " " _languagesStr "${_languages}") - math (EXPR _numberOfExcludedFiles "${ARGC} - 4") - if (_numberOfExcludedFiles EQUAL 0) - set (_excludedStr "") - elseif (COTIRE_VERBOSE OR _numberOfExcludedFiles LESS 4) - string (REPLACE ";" ", " _excludedStr "excluding ${ARGN}") - else() - set (_excludedStr "excluding ${_numberOfExcludedFiles} files") - endif() - set (_targetMsg "") - if (NOT _languages) - set (_targetMsg "Target ${_target} cannot be cotired.") - if (_disableMsg) - set (_targetMsg "${_targetMsg} ${_disableMsg}") - endif() - elseif (NOT _targetUsePCH AND NOT _targetAddSCU) - set (_targetMsg "${_languagesStr} target ${_target} cotired without unity build and precompiled header.") - if (_disableMsg) - set (_targetMsg "${_targetMsg} ${_disableMsg}") - endif() - elseif (NOT _targetUsePCH) - if (_excludedStr) - set (_targetMsg "${_languagesStr} target ${_target} cotired without precompiled header ${_excludedStr}.") - else() - set (_targetMsg "${_languagesStr} target ${_target} cotired without precompiled header.") - endif() - if (_disableMsg) - set (_targetMsg "${_targetMsg} ${_disableMsg}") - endif() - elseif (NOT _targetAddSCU) - if (_excludedStr) - set (_targetMsg "${_languagesStr} target ${_target} cotired without unity build ${_excludedStr}.") - else() - set (_targetMsg "${_languagesStr} target ${_target} cotired without unity build.") - endif() - else() - if (_excludedStr) - set (_targetMsg "${_languagesStr} target ${_target} cotired ${_excludedStr}.") - else() - set (_targetMsg "${_languagesStr} target ${_target} cotired.") - endif() - endif() - set (${_targetMsgVar} "${_targetMsg}" PARENT_SCOPE) -endfunction() - -function (cotire_choose_target_languages _target _targetLanguagesVar _wholeTargetVar) - set (_languages ${ARGN}) - set (_allSourceFiles "") - set (_allExcludedSourceFiles "") - set (_allCotiredSourceFiles "") - set (_targetLanguages "") - set (_pchEligibleTargetLanguages "") - get_target_property(_targetType ${_target} TYPE) - get_target_property(_targetSourceFiles ${_target} SOURCES) - get_target_property(_targetUsePCH ${_target} COTIRE_ENABLE_PRECOMPILED_HEADER) - get_target_property(_targetAddSCU ${_target} COTIRE_ADD_UNITY_BUILD) - set (_disableMsg "") - foreach (_language ${_languages}) - get_target_property(_prefixHeader ${_target} COTIRE_${_language}_PREFIX_HEADER) - get_target_property(_unityBuildFile ${_target} COTIRE_${_language}_UNITY_SOURCE) - if (_prefixHeader OR _unityBuildFile) - message (STATUS "cotire: target ${_target} has already been cotired.") - set (${_targetLanguagesVar} "" PARENT_SCOPE) - return() - endif() - if (_targetUsePCH AND "${_language}" MATCHES "^C|CXX$" AND DEFINED CMAKE_${_language}_COMPILER_ID) - if (CMAKE_${_language}_COMPILER_ID) - cotire_check_precompiled_header_support("${_language}" "${_target}" _disableMsg) - if (_disableMsg) - set (_targetUsePCH FALSE) - endif() - endif() - endif() - set (_sourceFiles "") - set (_excludedSources "") - set (_cotiredSources "") - cotire_filter_language_source_files(${_language} ${_target} _sourceFiles _excludedSources _cotiredSources ${_targetSourceFiles}) - if (_sourceFiles OR _excludedSources OR _cotiredSources) - list (APPEND _targetLanguages ${_language}) - endif() - if (_sourceFiles) - list (APPEND _allSourceFiles ${_sourceFiles}) - endif() - list (LENGTH _sourceFiles _numberOfSources) - if (NOT _numberOfSources LESS ${COTIRE_MINIMUM_NUMBER_OF_TARGET_SOURCES}) - list (APPEND _pchEligibleTargetLanguages ${_language}) - endif() - if (_excludedSources) - list (APPEND _allExcludedSourceFiles ${_excludedSources}) - endif() - if (_cotiredSources) - list (APPEND _allCotiredSourceFiles ${_cotiredSources}) - endif() - endforeach() - set (_targetMsgLevel STATUS) - if (NOT _targetLanguages) - string (REPLACE ";" " or " _languagesStr "${_languages}") - set (_disableMsg "No ${_languagesStr} source files.") - set (_targetUsePCH FALSE) - set (_targetAddSCU FALSE) - endif() - if (_targetUsePCH) - if (_allCotiredSourceFiles) - cotire_get_source_file_property_values(_cotireTargets COTIRE_TARGET ${_allCotiredSourceFiles}) - list (REMOVE_DUPLICATES _cotireTargets) - string (REPLACE ";" ", " _cotireTargetsStr "${_cotireTargets}") - set (_disableMsg "Target sources already include a precompiled header for target(s) ${_cotireTargets}.") - set (_disableMsg "${_disableMsg} Set target property COTIRE_ENABLE_PRECOMPILED_HEADER to FALSE for targets ${_target},") - set (_disableMsg "${_disableMsg} ${_cotireTargetsStr} to get a workable build system.") - set (_targetMsgLevel SEND_ERROR) - set (_targetUsePCH FALSE) - elseif (NOT _pchEligibleTargetLanguages) - set (_disableMsg "Too few applicable sources.") - set (_targetUsePCH FALSE) - elseif (XCODE AND _allExcludedSourceFiles) - # for Xcode, we cannot apply the precompiled header to individual sources, only to the whole target - set (_disableMsg "Exclusion of source files not supported for generator Xcode.") - set (_targetUsePCH FALSE) - elseif (XCODE AND "${_targetType}" STREQUAL "OBJECT_LIBRARY") - # for Xcode, we cannot apply the required PRE_BUILD action to generate the prefix header to an OBJECT_LIBRARY target - set (_disableMsg "Required PRE_BUILD action not supported for OBJECT_LIBRARY targets for generator Xcode.") - set (_targetUsePCH FALSE) - endif() - endif() - set_property(TARGET ${_target} PROPERTY COTIRE_ENABLE_PRECOMPILED_HEADER ${_targetUsePCH}) - set_property(TARGET ${_target} PROPERTY COTIRE_ADD_UNITY_BUILD ${_targetAddSCU}) - cotire_make_target_message(${_target} "${_targetLanguages}" "${_disableMsg}" _targetMsg ${_allExcludedSourceFiles}) - if (_targetMsg) - if (NOT DEFINED COTIREMSG_${_target}) - set (COTIREMSG_${_target} "") - endif() - if (COTIRE_VERBOSE OR NOT "${_targetMsgLevel}" STREQUAL "STATUS" OR - NOT "${COTIREMSG_${_target}}" STREQUAL "${_targetMsg}") - # cache message to avoid redundant messages on re-configure - set (COTIREMSG_${_target} "${_targetMsg}" CACHE INTERNAL "${_target} cotire message.") - message (${_targetMsgLevel} "${_targetMsg}") - endif() - endif() - list (LENGTH _targetLanguages _numberOfLanguages) - if (_numberOfLanguages GREATER 1 OR _allExcludedSourceFiles) - set (${_wholeTargetVar} FALSE PARENT_SCOPE) - else() - set (${_wholeTargetVar} TRUE PARENT_SCOPE) - endif() - set (${_targetLanguagesVar} ${_targetLanguages} PARENT_SCOPE) -endfunction() - -function (cotire_compute_unity_max_number_of_includes _target _maxIncludesVar) - set (_sourceFiles ${ARGN}) - get_target_property(_maxIncludes ${_target} COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES) - if (_maxIncludes MATCHES "(-j|--parallel|--jobs) ?([0-9]*)") - set (_numberOfThreads "${CMAKE_MATCH_2}") - if (NOT _numberOfThreads) - # use all available cores - ProcessorCount(_numberOfThreads) - endif() - list (LENGTH _sourceFiles _numberOfSources) - math (EXPR _maxIncludes "(${_numberOfSources} + ${_numberOfThreads} - 1) / ${_numberOfThreads}") - elseif (NOT _maxIncludes MATCHES "[0-9]+") - set (_maxIncludes 0) - endif() - if (COTIRE_DEBUG) - message (STATUS "${_target} unity source max includes: ${_maxIncludes}") - endif() - set (${_maxIncludesVar} ${_maxIncludes} PARENT_SCOPE) -endfunction() - -function (cotire_process_target_language _language _configurations _target _wholeTarget _cmdsVar) - set (${_cmdsVar} "" PARENT_SCOPE) - get_target_property(_targetSourceFiles ${_target} SOURCES) - set (_sourceFiles "") - set (_excludedSources "") - set (_cotiredSources "") - cotire_filter_language_source_files(${_language} ${_target} _sourceFiles _excludedSources _cotiredSources ${_targetSourceFiles}) - if (NOT _sourceFiles AND NOT _cotiredSources) - return() - endif() - set (_cmds "") - # check for user provided unity source file list - get_property(_unitySourceFiles TARGET ${_target} PROPERTY COTIRE_${_language}_UNITY_SOURCE_INIT) - if (NOT _unitySourceFiles) - set (_unitySourceFiles ${_sourceFiles} ${_cotiredSources}) - endif() - cotire_generate_target_script( - ${_language} "${_configurations}" ${_target} _targetScript _targetConfigScript ${_unitySourceFiles}) - # set up unity files for parallel compilation - cotire_compute_unity_max_number_of_includes(${_target} _maxIncludes ${_unitySourceFiles}) - cotire_make_unity_source_file_paths(${_language} ${_target} ${_maxIncludes} _unityFiles ${_unitySourceFiles}) - list (LENGTH _unityFiles _numberOfUnityFiles) - if (_numberOfUnityFiles EQUAL 0) - return() - elseif (_numberOfUnityFiles GREATER 1) - cotire_setup_unity_generation_commands( - ${_language} ${_target} "${_targetScript}" "${_targetConfigScript}" "${_unityFiles}" _cmds ${_unitySourceFiles}) - endif() - # set up single unity file for prefix header generation - cotire_make_single_unity_source_file_path(${_language} ${_target} _unityFile) - cotire_setup_unity_generation_commands( - ${_language} ${_target} "${_targetScript}" "${_targetConfigScript}" "${_unityFile}" _cmds ${_unitySourceFiles}) - cotire_make_prefix_file_path(${_language} ${_target} _prefixFile) - # set up prefix header - if (_prefixFile) - # check for user provided prefix header files - get_property(_prefixHeaderFiles TARGET ${_target} PROPERTY COTIRE_${_language}_PREFIX_HEADER_INIT) - if (_prefixHeaderFiles) - cotire_setup_prefix_generation_from_provided_command( - ${_language} ${_target} "${_targetConfigScript}" "${_prefixFile}" _cmds ${_prefixHeaderFiles}) - else() - cotire_setup_prefix_generation_from_unity_command( - ${_language} ${_target} "${_targetConfigScript}" "${_prefixFile}" "${_unityFile}" _cmds ${_unitySourceFiles}) - endif() - # check if selected language has enough sources at all - list (LENGTH _sourceFiles _numberOfSources) - if (_numberOfSources LESS ${COTIRE_MINIMUM_NUMBER_OF_TARGET_SOURCES}) - set (_targetUsePCH FALSE) - else() - get_target_property(_targetUsePCH ${_target} COTIRE_ENABLE_PRECOMPILED_HEADER) - endif() - if (_targetUsePCH) - cotire_make_pch_file_path(${_language} ${_target} _pchFile) - if (_pchFile) - # first file in _sourceFiles is passed as the host file - cotire_setup_pch_file_compilation( - ${_language} ${_target} "${_targetConfigScript}" "${_prefixFile}" "${_pchFile}" ${_sourceFiles}) - cotire_setup_pch_file_inclusion( - ${_language} ${_target} ${_wholeTarget} "${_prefixFile}" "${_pchFile}" ${_sourceFiles}) - endif() - elseif (_prefixHeaderFiles) - # user provided prefix header must be included unconditionally - cotire_setup_prefix_file_inclusion(${_language} ${_target} "${_prefixFile}" ${_sourceFiles}) - endif() - endif() - # mark target as cotired for language - set_property(TARGET ${_target} PROPERTY COTIRE_${_language}_UNITY_SOURCE "${_unityFiles}") - if (_prefixFile) - set_property(TARGET ${_target} PROPERTY COTIRE_${_language}_PREFIX_HEADER "${_prefixFile}") - if (_targetUsePCH AND _pchFile) - set_property(TARGET ${_target} PROPERTY COTIRE_${_language}_PRECOMPILED_HEADER "${_pchFile}") - endif() - endif() - set (${_cmdsVar} ${_cmds} PARENT_SCOPE) -endfunction() - -function (cotire_setup_clean_target _target) - set (_cleanTargetName "${_target}${COTIRE_CLEAN_TARGET_SUFFIX}") - if (NOT TARGET "${_cleanTargetName}") - cotire_set_cmd_to_prologue(_cmds) - get_filename_component(_outputDir "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}" ABSOLUTE) - list (APPEND _cmds -P "${COTIRE_CMAKE_MODULE_FILE}" "cleanup" "${_outputDir}" "${COTIRE_INTDIR}" "${_target}") - add_custom_target(${_cleanTargetName} - COMMAND ${_cmds} - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" - COMMENT "Cleaning up target ${_target} cotire generated files" - VERBATIM) - cotire_init_target("${_cleanTargetName}") - endif() -endfunction() - -function (cotire_setup_pch_target _languages _configurations _target) - if ("${CMAKE_GENERATOR}" MATCHES "Make|Ninja") - # for makefile based generators, we add a custom target to trigger the generation of the cotire related files - set (_dependsFiles "") - foreach (_language ${_languages}) - set (_props COTIRE_${_language}_PREFIX_HEADER COTIRE_${_language}_UNITY_SOURCE) - if (NOT CMAKE_${_language}_COMPILER_ID MATCHES "MSVC|Intel") - # Visual Studio and Intel only create precompiled header as a side effect - list (INSERT _props 0 COTIRE_${_language}_PRECOMPILED_HEADER) - endif() - cotire_get_first_set_property_value(_dependsFile TARGET ${_target} ${_props}) - if (_dependsFile) - list (APPEND _dependsFiles "${_dependsFile}") - endif() - endforeach() - if (_dependsFiles) - set (_pchTargetName "${_target}${COTIRE_PCH_TARGET_SUFFIX}") - add_custom_target("${_pchTargetName}" DEPENDS ${_dependsFiles}) - cotire_init_target("${_pchTargetName}") - cotire_add_to_pch_all_target(${_pchTargetName}) - endif() - else() - # for other generators, we add the "clean all" target to clean up the precompiled header - cotire_setup_clean_all_target() - endif() -endfunction() - -function (cotire_filter_object_libraries _target _objectLibrariesVar) - set (_objectLibraries "") - foreach (_source ${ARGN}) - if (_source MATCHES "^\\$$") - list (APPEND _objectLibraries "${_source}") - endif() - endforeach() - set (${_objectLibrariesVar} ${_objectLibraries} PARENT_SCOPE) -endfunction() - -function (cotire_collect_unity_target_sources _target _languages _unityTargetSourcesVar) - get_target_property(_targetSourceFiles ${_target} SOURCES) - set (_unityTargetSources ${_targetSourceFiles}) - foreach (_language ${_languages}) - get_property(_unityFiles TARGET ${_target} PROPERTY COTIRE_${_language}_UNITY_SOURCE) - if (_unityFiles) - # remove source files that are included in the unity source - set (_sourceFiles "") - set (_excludedSources "") - set (_cotiredSources "") - cotire_filter_language_source_files(${_language} ${_target} _sourceFiles _excludedSources _cotiredSources ${_targetSourceFiles}) - if (_sourceFiles OR _cotiredSources) - list (REMOVE_ITEM _unityTargetSources ${_sourceFiles} ${_cotiredSources}) - endif() - # add unity source files instead - list (APPEND _unityTargetSources ${_unityFiles}) - endif() - endforeach() - get_target_property(_linkLibrariesStrategy ${_target} COTIRE_UNITY_LINK_LIBRARIES_INIT) - if ("${_linkLibrariesStrategy}" MATCHES "^COPY_UNITY$") - cotire_filter_object_libraries(${_target} _objectLibraries ${_targetSourceFiles}) - if (_objectLibraries) - cotire_map_libraries("${_linkLibrariesStrategy}" _unityObjectLibraries ${_objectLibraries}) - list (REMOVE_ITEM _unityTargetSources ${_objectLibraries}) - list (APPEND _unityTargetSources ${_unityObjectLibraries}) - endif() - endif() - set (${_unityTargetSourcesVar} ${_unityTargetSources} PARENT_SCOPE) -endfunction() - -function (cotire_setup_unity_target_pch_usage _languages _target) - foreach (_language ${_languages}) - get_property(_unityFiles TARGET ${_target} PROPERTY COTIRE_${_language}_UNITY_SOURCE) - if (_unityFiles) - get_property(_userPrefixFile TARGET ${_target} PROPERTY COTIRE_${_language}_PREFIX_HEADER_INIT) - get_property(_prefixFile TARGET ${_target} PROPERTY COTIRE_${_language}_PREFIX_HEADER) - if (_userPrefixFile AND _prefixFile) - # user provided prefix header must be included unconditionally by unity sources - cotire_setup_prefix_file_inclusion(${_language} ${_target} "${_prefixFile}" ${_unityFiles}) - endif() - endif() - endforeach() -endfunction() - -function (cotire_setup_unity_build_target _languages _configurations _target) - get_target_property(_unityTargetName ${_target} COTIRE_UNITY_TARGET_NAME) - if (NOT _unityTargetName) - set (_unityTargetName "${_target}${COTIRE_UNITY_BUILD_TARGET_SUFFIX}") - endif() - # determine unity target sub type - get_target_property(_targetType ${_target} TYPE) - if ("${_targetType}" STREQUAL "EXECUTABLE") - set (_unityTargetSubType "") - elseif (_targetType MATCHES "(STATIC|SHARED|MODULE|OBJECT)_LIBRARY") - set (_unityTargetSubType "${CMAKE_MATCH_1}") - else() - message (WARNING "cotire: target ${_target} has unknown target type ${_targetType}.") - return() - endif() - # determine unity target sources - set (_unityTargetSources "") - cotire_collect_unity_target_sources(${_target} "${_languages}" _unityTargetSources) - # handle automatic Qt processing - get_target_property(_targetAutoMoc ${_target} AUTOMOC) - get_target_property(_targetAutoUic ${_target} AUTOUIC) - get_target_property(_targetAutoRcc ${_target} AUTORCC) - if (_targetAutoMoc OR _targetAutoUic OR _targetAutoRcc) - # if the original target sources are subject to CMake's automatic Qt processing, - # also include implicitly generated _automoc.cpp file - if (CMAKE_VERSION VERSION_LESS "3.8.0") - list (APPEND _unityTargetSources "${_target}_automoc.cpp") - set_property (SOURCE "${_target}_automoc.cpp" PROPERTY GENERATED TRUE) - else() - list (APPEND _unityTargetSources "${_target}_autogen/moc_compilation.cpp") - set_property (SOURCE "${_target}_autogen/moc_compilation.cpp" PROPERTY GENERATED TRUE) - endif() - endif() - # prevent AUTOMOC, AUTOUIC and AUTORCC properties from being set when the unity target is created - set (CMAKE_AUTOMOC OFF) - set (CMAKE_AUTOUIC OFF) - set (CMAKE_AUTORCC OFF) - if (COTIRE_DEBUG) - message (STATUS "add target ${_targetType} ${_unityTargetName} ${_unityTargetSubType} EXCLUDE_FROM_ALL ${_unityTargetSources}") - endif() - # generate unity target - if ("${_targetType}" STREQUAL "EXECUTABLE") - add_executable(${_unityTargetName} ${_unityTargetSubType} EXCLUDE_FROM_ALL ${_unityTargetSources}) - else() - add_library(${_unityTargetName} ${_unityTargetSubType} EXCLUDE_FROM_ALL ${_unityTargetSources}) - endif() - if ("${CMAKE_GENERATOR}" MATCHES "Visual Studio") - # depend on original target's automoc target, if it exists - if (TARGET ${_target}_automoc) - add_dependencies(${_unityTargetName} ${_target}_automoc) - endif() - else() - if (_targetAutoMoc OR _targetAutoUic OR _targetAutoRcc) - # depend on the original target's implicity generated _automoc target - if (CMAKE_VERSION VERSION_LESS "3.8.0") - add_dependencies(${_unityTargetName} ${_target}_automoc) - else() - add_dependencies(${_unityTargetName} ${_target}_autogen) - endif() - endif() - endif() - # copy output location properties - set (_outputDirProperties - ARCHIVE_OUTPUT_DIRECTORY ARCHIVE_OUTPUT_DIRECTORY_ - LIBRARY_OUTPUT_DIRECTORY LIBRARY_OUTPUT_DIRECTORY_ - RUNTIME_OUTPUT_DIRECTORY RUNTIME_OUTPUT_DIRECTORY_) - if (COTIRE_UNITY_OUTPUT_DIRECTORY) - set (_setDefaultOutputDir TRUE) - if (IS_ABSOLUTE "${COTIRE_UNITY_OUTPUT_DIRECTORY}") - set (_outputDir "${COTIRE_UNITY_OUTPUT_DIRECTORY}") - else() - # append relative COTIRE_UNITY_OUTPUT_DIRECTORY to target's actual output directory - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} ${_outputDirProperties}) - cotire_resolve_config_properties("${_configurations}" _properties ${_outputDirProperties}) - foreach (_property ${_properties}) - get_property(_outputDir TARGET ${_target} PROPERTY ${_property}) - if (_outputDir) - get_filename_component(_outputDir "${_outputDir}/${COTIRE_UNITY_OUTPUT_DIRECTORY}" ABSOLUTE) - set_property(TARGET ${_unityTargetName} PROPERTY ${_property} "${_outputDir}") - set (_setDefaultOutputDir FALSE) - endif() - endforeach() - if (_setDefaultOutputDir) - get_filename_component(_outputDir "${CMAKE_CURRENT_BINARY_DIR}/${COTIRE_UNITY_OUTPUT_DIRECTORY}" ABSOLUTE) - endif() - endif() - if (_setDefaultOutputDir) - set_target_properties(${_unityTargetName} PROPERTIES - ARCHIVE_OUTPUT_DIRECTORY "${_outputDir}" - LIBRARY_OUTPUT_DIRECTORY "${_outputDir}" - RUNTIME_OUTPUT_DIRECTORY "${_outputDir}") - endif() - else() - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - ${_outputDirProperties}) - endif() - # copy output name - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - ARCHIVE_OUTPUT_NAME ARCHIVE_OUTPUT_NAME_ - LIBRARY_OUTPUT_NAME LIBRARY_OUTPUT_NAME_ - OUTPUT_NAME OUTPUT_NAME_ - RUNTIME_OUTPUT_NAME RUNTIME_OUTPUT_NAME_ - PREFIX _POSTFIX SUFFIX - IMPORT_PREFIX IMPORT_SUFFIX) - # copy compile stuff - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - COMPILE_DEFINITIONS COMPILE_DEFINITIONS_ - COMPILE_FLAGS COMPILE_OPTIONS - Fortran_FORMAT Fortran_MODULE_DIRECTORY - INCLUDE_DIRECTORIES - INTERPROCEDURAL_OPTIMIZATION INTERPROCEDURAL_OPTIMIZATION_ - POSITION_INDEPENDENT_CODE - C_COMPILER_LAUNCHER CXX_COMPILER_LAUNCHER - C_INCLUDE_WHAT_YOU_USE CXX_INCLUDE_WHAT_YOU_USE - C_VISIBILITY_PRESET CXX_VISIBILITY_PRESET VISIBILITY_INLINES_HIDDEN - C_CLANG_TIDY CXX_CLANG_TIDY) - # copy compile features - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - C_EXTENSIONS C_STANDARD C_STANDARD_REQUIRED - CXX_EXTENSIONS CXX_STANDARD CXX_STANDARD_REQUIRED - COMPILE_FEATURES) - # copy interface stuff - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - COMPATIBLE_INTERFACE_BOOL COMPATIBLE_INTERFACE_NUMBER_MAX COMPATIBLE_INTERFACE_NUMBER_MIN - COMPATIBLE_INTERFACE_STRING - INTERFACE_COMPILE_DEFINITIONS INTERFACE_COMPILE_FEATURES INTERFACE_COMPILE_OPTIONS - INTERFACE_INCLUDE_DIRECTORIES INTERFACE_SOURCES - INTERFACE_POSITION_INDEPENDENT_CODE INTERFACE_SYSTEM_INCLUDE_DIRECTORIES - INTERFACE_AUTOUIC_OPTIONS NO_SYSTEM_FROM_IMPORTED) - # copy link stuff - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - BUILD_WITH_INSTALL_RPATH INSTALL_RPATH INSTALL_RPATH_USE_LINK_PATH SKIP_BUILD_RPATH - LINKER_LANGUAGE LINK_DEPENDS LINK_DEPENDS_NO_SHARED - LINK_FLAGS LINK_FLAGS_ - LINK_INTERFACE_LIBRARIES LINK_INTERFACE_LIBRARIES_ - LINK_INTERFACE_MULTIPLICITY LINK_INTERFACE_MULTIPLICITY_ - LINK_SEARCH_START_STATIC LINK_SEARCH_END_STATIC - STATIC_LIBRARY_FLAGS STATIC_LIBRARY_FLAGS_ - NO_SONAME SOVERSION VERSION - LINK_WHAT_YOU_USE BUILD_RPATH) - # copy cmake stuff - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - IMPLICIT_DEPENDS_INCLUDE_TRANSFORM RULE_LAUNCH_COMPILE RULE_LAUNCH_CUSTOM RULE_LAUNCH_LINK) - # copy Apple platform specific stuff - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - BUNDLE BUNDLE_EXTENSION FRAMEWORK FRAMEWORK_VERSION INSTALL_NAME_DIR - MACOSX_BUNDLE MACOSX_BUNDLE_INFO_PLIST MACOSX_FRAMEWORK_INFO_PLIST MACOSX_RPATH - OSX_ARCHITECTURES OSX_ARCHITECTURES_ PRIVATE_HEADER PUBLIC_HEADER RESOURCE XCTEST - IOS_INSTALL_COMBINED XCODE_EXPLICIT_FILE_TYPE XCODE_PRODUCT_TYPE) - # copy Windows platform specific stuff - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - GNUtoMS - COMPILE_PDB_NAME COMPILE_PDB_NAME_ - COMPILE_PDB_OUTPUT_DIRECTORY COMPILE_PDB_OUTPUT_DIRECTORY_ - PDB_NAME PDB_NAME_ PDB_OUTPUT_DIRECTORY PDB_OUTPUT_DIRECTORY_ - VS_DESKTOP_EXTENSIONS_VERSION VS_DOTNET_REFERENCES VS_DOTNET_TARGET_FRAMEWORK_VERSION - VS_GLOBAL_KEYWORD VS_GLOBAL_PROJECT_TYPES VS_GLOBAL_ROOTNAMESPACE - VS_IOT_EXTENSIONS_VERSION VS_IOT_STARTUP_TASK - VS_KEYWORD VS_MOBILE_EXTENSIONS_VERSION - VS_SCC_AUXPATH VS_SCC_LOCALPATH VS_SCC_PROJECTNAME VS_SCC_PROVIDER - VS_WINDOWS_TARGET_PLATFORM_MIN_VERSION - VS_WINRT_COMPONENT VS_WINRT_EXTENSIONS VS_WINRT_REFERENCES - WIN32_EXECUTABLE WINDOWS_EXPORT_ALL_SYMBOLS - DEPLOYMENT_REMOTE_DIRECTORY VS_CONFIGURATION_TYPE - VS_SDK_REFERENCES VS_USER_PROPS VS_DEBUGGER_WORKING_DIRECTORY) - # copy Android platform specific stuff - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - ANDROID_API ANDROID_API_MIN ANDROID_GUI - ANDROID_ANT_ADDITIONAL_OPTIONS ANDROID_ARCH ANDROID_ASSETS_DIRECTORIES - ANDROID_JAR_DEPENDENCIES ANDROID_JAR_DIRECTORIES ANDROID_JAVA_SOURCE_DIR - ANDROID_NATIVE_LIB_DEPENDENCIES ANDROID_NATIVE_LIB_DIRECTORIES - ANDROID_PROCESS_MAX ANDROID_PROGUARD ANDROID_PROGUARD_CONFIG_PATH - ANDROID_SECURE_PROPS_PATH ANDROID_SKIP_ANT_STEP ANDROID_STL_TYPE) - # use output name from original target - get_target_property(_targetOutputName ${_unityTargetName} OUTPUT_NAME) - if (NOT _targetOutputName) - set_property(TARGET ${_unityTargetName} PROPERTY OUTPUT_NAME "${_target}") - endif() - # use export symbol from original target - cotire_get_target_export_symbol("${_target}" _defineSymbol) - if (_defineSymbol) - set_property(TARGET ${_unityTargetName} PROPERTY DEFINE_SYMBOL "${_defineSymbol}") - if ("${_targetType}" STREQUAL "EXECUTABLE") - set_property(TARGET ${_unityTargetName} PROPERTY ENABLE_EXPORTS TRUE) - endif() - endif() - cotire_init_target(${_unityTargetName}) - cotire_add_to_unity_all_target(${_unityTargetName}) - set_property(TARGET ${_target} PROPERTY COTIRE_UNITY_TARGET_NAME "${_unityTargetName}") -endfunction(cotire_setup_unity_build_target) - -function (cotire_target _target) - set(_options "") - set(_oneValueArgs "") - set(_multiValueArgs LANGUAGES CONFIGURATIONS) - cmake_parse_arguments(_option "${_options}" "${_oneValueArgs}" "${_multiValueArgs}" ${ARGN}) - if (NOT _option_LANGUAGES) - get_property (_option_LANGUAGES GLOBAL PROPERTY ENABLED_LANGUAGES) - endif() - if (NOT _option_CONFIGURATIONS) - cotire_get_configuration_types(_option_CONFIGURATIONS) - endif() - # check if cotire can be applied to target at all - cotire_is_target_supported(${_target} _isSupported) - if (NOT _isSupported) - get_target_property(_imported ${_target} IMPORTED) - get_target_property(_targetType ${_target} TYPE) - if (_imported) - message (WARNING "cotire: imported ${_targetType} target ${_target} cannot be cotired.") - else() - message (STATUS "cotire: ${_targetType} target ${_target} cannot be cotired.") - endif() - return() - endif() - # resolve alias - get_target_property(_aliasName ${_target} ALIASED_TARGET) - if (_aliasName) - if (COTIRE_DEBUG) - message (STATUS "${_target} is an alias. Applying cotire to aliased target ${_aliasName} instead.") - endif() - set (_target ${_aliasName}) - endif() - # check if target needs to be cotired for build type - # when using configuration types, the test is performed at build time - cotire_init_cotire_target_properties(${_target}) - if (NOT CMAKE_CONFIGURATION_TYPES) - if (CMAKE_BUILD_TYPE) - list (FIND _option_CONFIGURATIONS "${CMAKE_BUILD_TYPE}" _index) - else() - list (FIND _option_CONFIGURATIONS "None" _index) - endif() - if (_index EQUAL -1) - if (COTIRE_DEBUG) - message (STATUS "CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} not cotired (${_option_CONFIGURATIONS})") - endif() - return() - endif() - endif() - # when not using configuration types, immediately create cotire intermediate dir - if (NOT CMAKE_CONFIGURATION_TYPES) - cotire_get_intermediate_dir(_baseDir) - file (MAKE_DIRECTORY "${_baseDir}") - endif() - # choose languages that apply to the target - cotire_choose_target_languages("${_target}" _targetLanguages _wholeTarget ${_option_LANGUAGES}) - if (NOT _targetLanguages) - return() - endif() - set (_cmds "") - foreach (_language ${_targetLanguages}) - cotire_process_target_language("${_language}" "${_option_CONFIGURATIONS}" ${_target} ${_wholeTarget} _cmd) - if (_cmd) - list (APPEND _cmds ${_cmd}) - endif() - endforeach() - get_target_property(_targetAddSCU ${_target} COTIRE_ADD_UNITY_BUILD) - if (_targetAddSCU) - cotire_setup_unity_build_target("${_targetLanguages}" "${_option_CONFIGURATIONS}" ${_target}) - endif() - get_target_property(_targetUsePCH ${_target} COTIRE_ENABLE_PRECOMPILED_HEADER) - if (_targetUsePCH) - cotire_setup_target_pch_usage("${_targetLanguages}" ${_target} ${_wholeTarget} ${_cmds}) - cotire_setup_pch_target("${_targetLanguages}" "${_option_CONFIGURATIONS}" ${_target}) - if (_targetAddSCU) - cotire_setup_unity_target_pch_usage("${_targetLanguages}" ${_target}) - endif() - endif() - get_target_property(_targetAddCleanTarget ${_target} COTIRE_ADD_CLEAN) - if (_targetAddCleanTarget) - cotire_setup_clean_target(${_target}) - endif() -endfunction(cotire_target) - -function (cotire_map_libraries _strategy _mappedLibrariesVar) - set (_mappedLibraries "") - foreach (_library ${ARGN}) - if (_library MATCHES "^\\$$") - set (_libraryName "${CMAKE_MATCH_1}") - set (_linkOnly TRUE) - set (_objectLibrary FALSE) - elseif (_library MATCHES "^\\$$") - set (_libraryName "${CMAKE_MATCH_1}") - set (_linkOnly FALSE) - set (_objectLibrary TRUE) - else() - set (_libraryName "${_library}") - set (_linkOnly FALSE) - set (_objectLibrary FALSE) - endif() - if ("${_strategy}" MATCHES "COPY_UNITY") - cotire_is_target_supported(${_libraryName} _isSupported) - if (_isSupported) - # use target's corresponding unity target, if available - get_target_property(_libraryUnityTargetName ${_libraryName} COTIRE_UNITY_TARGET_NAME) - if (TARGET "${_libraryUnityTargetName}") - if (_linkOnly) - list (APPEND _mappedLibraries "$") - elseif (_objectLibrary) - list (APPEND _mappedLibraries "$") - else() - list (APPEND _mappedLibraries "${_libraryUnityTargetName}") - endif() - else() - list (APPEND _mappedLibraries "${_library}") - endif() - else() - list (APPEND _mappedLibraries "${_library}") - endif() - else() - list (APPEND _mappedLibraries "${_library}") - endif() - endforeach() - list (REMOVE_DUPLICATES _mappedLibraries) - set (${_mappedLibrariesVar} ${_mappedLibraries} PARENT_SCOPE) -endfunction() - -function (cotire_target_link_libraries _target) - cotire_is_target_supported(${_target} _isSupported) - if (NOT _isSupported) - return() - endif() - get_target_property(_unityTargetName ${_target} COTIRE_UNITY_TARGET_NAME) - if (TARGET "${_unityTargetName}") - get_target_property(_linkLibrariesStrategy ${_target} COTIRE_UNITY_LINK_LIBRARIES_INIT) - if (COTIRE_DEBUG) - message (STATUS "unity target ${_unityTargetName} link strategy: ${_linkLibrariesStrategy}") - endif() - if ("${_linkLibrariesStrategy}" MATCHES "^(COPY|COPY_UNITY)$") - get_target_property(_linkLibraries ${_target} LINK_LIBRARIES) - if (_linkLibraries) - cotire_map_libraries("${_linkLibrariesStrategy}" _unityLinkLibraries ${_linkLibraries}) - set_target_properties(${_unityTargetName} PROPERTIES LINK_LIBRARIES "${_unityLinkLibraries}") - if (COTIRE_DEBUG) - message (STATUS "unity target ${_unityTargetName} link libraries: ${_unityLinkLibraries}") - endif() - endif() - get_target_property(_interfaceLinkLibraries ${_target} INTERFACE_LINK_LIBRARIES) - if (_interfaceLinkLibraries) - cotire_map_libraries("${_linkLibrariesStrategy}" _unityLinkInterfaceLibraries ${_interfaceLinkLibraries}) - set_target_properties(${_unityTargetName} PROPERTIES INTERFACE_LINK_LIBRARIES "${_unityLinkInterfaceLibraries}") - if (COTIRE_DEBUG) - message (STATUS "unity target ${_unityTargetName} interface link libraries: ${_unityLinkInterfaceLibraries}") - endif() - endif() - endif() - endif() -endfunction(cotire_target_link_libraries) - -function (cotire_cleanup _binaryDir _cotireIntermediateDirName _targetName) - if (_targetName) - file (GLOB_RECURSE _cotireFiles "${_binaryDir}/${_targetName}*.*") - else() - file (GLOB_RECURSE _cotireFiles "${_binaryDir}/*.*") - endif() - # filter files in intermediate directory - set (_filesToRemove "") - foreach (_file ${_cotireFiles}) - get_filename_component(_dir "${_file}" DIRECTORY) - get_filename_component(_dirName "${_dir}" NAME) - if ("${_dirName}" STREQUAL "${_cotireIntermediateDirName}") - list (APPEND _filesToRemove "${_file}") - endif() - endforeach() - if (_filesToRemove) - if (COTIRE_VERBOSE) - message (STATUS "cleaning up ${_filesToRemove}") - endif() - file (REMOVE ${_filesToRemove}) - endif() -endfunction() - -function (cotire_init_target _targetName) - if (COTIRE_TARGETS_FOLDER) - set_target_properties(${_targetName} PROPERTIES FOLDER "${COTIRE_TARGETS_FOLDER}") - endif() - set_target_properties(${_targetName} PROPERTIES EXCLUDE_FROM_ALL TRUE) - if (MSVC_IDE) - set_target_properties(${_targetName} PROPERTIES EXCLUDE_FROM_DEFAULT_BUILD TRUE) - endif() -endfunction() - -function (cotire_add_to_pch_all_target _pchTargetName) - set (_targetName "${COTIRE_PCH_ALL_TARGET_NAME}") - if (NOT TARGET "${_targetName}") - add_custom_target("${_targetName}" - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" - VERBATIM) - cotire_init_target("${_targetName}") - endif() - cotire_setup_clean_all_target() - add_dependencies(${_targetName} ${_pchTargetName}) -endfunction() - -function (cotire_add_to_unity_all_target _unityTargetName) - set (_targetName "${COTIRE_UNITY_BUILD_ALL_TARGET_NAME}") - if (NOT TARGET "${_targetName}") - add_custom_target("${_targetName}" - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" - VERBATIM) - cotire_init_target("${_targetName}") - endif() - cotire_setup_clean_all_target() - add_dependencies(${_targetName} ${_unityTargetName}) -endfunction() - -function (cotire_setup_clean_all_target) - set (_targetName "${COTIRE_CLEAN_ALL_TARGET_NAME}") - if (NOT TARGET "${_targetName}") - cotire_set_cmd_to_prologue(_cmds) - list (APPEND _cmds -P "${COTIRE_CMAKE_MODULE_FILE}" "cleanup" "${CMAKE_BINARY_DIR}" "${COTIRE_INTDIR}") - add_custom_target(${_targetName} - COMMAND ${_cmds} - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" - COMMENT "Cleaning up all cotire generated files" - VERBATIM) - cotire_init_target("${_targetName}") - endif() -endfunction() - -function (cotire) - set(_options "") - set(_oneValueArgs "") - set(_multiValueArgs LANGUAGES CONFIGURATIONS) - cmake_parse_arguments(_option "${_options}" "${_oneValueArgs}" "${_multiValueArgs}" ${ARGN}) - set (_targets ${_option_UNPARSED_ARGUMENTS}) - foreach (_target ${_targets}) - if (TARGET ${_target}) - cotire_target(${_target} LANGUAGES ${_option_LANGUAGES} CONFIGURATIONS ${_option_CONFIGURATIONS}) - else() - message (WARNING "cotire: ${_target} is not a target.") - endif() - endforeach() - foreach (_target ${_targets}) - if (TARGET ${_target}) - cotire_target_link_libraries(${_target}) - endif() - endforeach() -endfunction() - -if (CMAKE_SCRIPT_MODE_FILE) - - # cotire is being run in script mode - # locate -P on command args - set (COTIRE_ARGC -1) - foreach (_index RANGE ${CMAKE_ARGC}) - if (COTIRE_ARGC GREATER -1) - set (COTIRE_ARGV${COTIRE_ARGC} "${CMAKE_ARGV${_index}}") - math (EXPR COTIRE_ARGC "${COTIRE_ARGC} + 1") - elseif ("${CMAKE_ARGV${_index}}" STREQUAL "-P") - set (COTIRE_ARGC 0) - endif() - endforeach() - - # include target script if available - if ("${COTIRE_ARGV2}" MATCHES "\\.cmake$") - # the included target scripts sets up additional variables relating to the target (e.g., COTIRE_TARGET_SOURCES) - include("${COTIRE_ARGV2}") - endif() - - if (COTIRE_DEBUG) - message (STATUS "${COTIRE_ARGV0} ${COTIRE_ARGV1} ${COTIRE_ARGV2} ${COTIRE_ARGV3} ${COTIRE_ARGV4} ${COTIRE_ARGV5}") - endif() - - if (NOT COTIRE_BUILD_TYPE) - set (COTIRE_BUILD_TYPE "None") - endif() - string (TOUPPER "${COTIRE_BUILD_TYPE}" _upperConfig) - set (_includeDirs ${COTIRE_TARGET_INCLUDE_DIRECTORIES_${_upperConfig}}) - set (_systemIncludeDirs ${COTIRE_TARGET_SYSTEM_INCLUDE_DIRECTORIES_${_upperConfig}}) - set (_compileDefinitions ${COTIRE_TARGET_COMPILE_DEFINITIONS_${_upperConfig}}) - set (_compileFlags ${COTIRE_TARGET_COMPILE_FLAGS_${_upperConfig}}) - # check if target has been cotired for actual build type COTIRE_BUILD_TYPE - list (FIND COTIRE_TARGET_CONFIGURATION_TYPES "${COTIRE_BUILD_TYPE}" _index) - if (_index GREATER -1) - set (_sources ${COTIRE_TARGET_SOURCES}) - set (_sourcesDefinitions ${COTIRE_TARGET_SOURCES_COMPILE_DEFINITIONS_${_upperConfig}}) - else() - if (COTIRE_DEBUG) - message (STATUS "COTIRE_BUILD_TYPE=${COTIRE_BUILD_TYPE} not cotired (${COTIRE_TARGET_CONFIGURATION_TYPES})") - endif() - set (_sources "") - set (_sourcesDefinitions "") - endif() - set (_targetPreUndefs ${COTIRE_TARGET_PRE_UNDEFS}) - set (_targetPostUndefs ${COTIRE_TARGET_POST_UNDEFS}) - set (_sourcesPreUndefs ${COTIRE_TARGET_SOURCES_PRE_UNDEFS}) - set (_sourcesPostUndefs ${COTIRE_TARGET_SOURCES_POST_UNDEFS}) - - if ("${COTIRE_ARGV1}" STREQUAL "unity") - - if (XCODE) - # executing pre-build action under Xcode, check dependency on target script - set (_dependsOption DEPENDS "${COTIRE_ARGV2}") - else() - # executing custom command, no need to re-check for dependencies - set (_dependsOption "") - endif() - - cotire_select_unity_source_files("${COTIRE_ARGV3}" _sources ${_sources}) - - cotire_generate_unity_source( - "${COTIRE_ARGV3}" ${_sources} - LANGUAGE "${COTIRE_TARGET_LANGUAGE}" - SOURCES_COMPILE_DEFINITIONS ${_sourcesDefinitions} - PRE_UNDEFS ${_targetPreUndefs} - POST_UNDEFS ${_targetPostUndefs} - SOURCES_PRE_UNDEFS ${_sourcesPreUndefs} - SOURCES_POST_UNDEFS ${_sourcesPostUndefs} - ${_dependsOption}) - - elseif ("${COTIRE_ARGV1}" STREQUAL "prefix") - - if (XCODE) - # executing pre-build action under Xcode, check dependency on unity file and prefix dependencies - set (_dependsOption DEPENDS "${COTIRE_ARGV4}" ${COTIRE_TARGET_PREFIX_DEPENDS}) - else() - # executing custom command, no need to re-check for dependencies - set (_dependsOption "") - endif() - - set (_files "") - foreach (_index RANGE 4 ${COTIRE_ARGC}) - if (COTIRE_ARGV${_index}) - list (APPEND _files "${COTIRE_ARGV${_index}}") - endif() - endforeach() - - cotire_generate_prefix_header( - "${COTIRE_ARGV3}" ${_files} - COMPILER_LAUNCHER "${COTIRE_TARGET_${COTIRE_TARGET_LANGUAGE}_COMPILER_LAUNCHER}" - COMPILER_EXECUTABLE "${CMAKE_${COTIRE_TARGET_LANGUAGE}_COMPILER}" - COMPILER_ARG1 ${CMAKE_${COTIRE_TARGET_LANGUAGE}_COMPILER_ARG1} - COMPILER_ID "${CMAKE_${COTIRE_TARGET_LANGUAGE}_COMPILER_ID}" - COMPILER_VERSION "${CMAKE_${COTIRE_TARGET_LANGUAGE}_COMPILER_VERSION}" - LANGUAGE "${COTIRE_TARGET_LANGUAGE}" - IGNORE_PATH "${COTIRE_TARGET_IGNORE_PATH};${COTIRE_ADDITIONAL_PREFIX_HEADER_IGNORE_PATH}" - INCLUDE_PATH ${COTIRE_TARGET_INCLUDE_PATH} - IGNORE_EXTENSIONS "${CMAKE_${COTIRE_TARGET_LANGUAGE}_SOURCE_FILE_EXTENSIONS};${COTIRE_ADDITIONAL_PREFIX_HEADER_IGNORE_EXTENSIONS}" - INCLUDE_PRIORITY_PATH ${COTIRE_TARGET_INCLUDE_PRIORITY_PATH} - INCLUDE_DIRECTORIES ${_includeDirs} - SYSTEM_INCLUDE_DIRECTORIES ${_systemIncludeDirs} - COMPILE_DEFINITIONS ${_compileDefinitions} - COMPILE_FLAGS ${_compileFlags} - ${_dependsOption}) - - elseif ("${COTIRE_ARGV1}" STREQUAL "precompile") - - set (_files "") - foreach (_index RANGE 5 ${COTIRE_ARGC}) - if (COTIRE_ARGV${_index}) - list (APPEND _files "${COTIRE_ARGV${_index}}") - endif() - endforeach() - - cotire_precompile_prefix_header( - "${COTIRE_ARGV3}" "${COTIRE_ARGV4}" "${COTIRE_ARGV5}" - COMPILER_LAUNCHER "${COTIRE_TARGET_${COTIRE_TARGET_LANGUAGE}_COMPILER_LAUNCHER}" - COMPILER_EXECUTABLE "${CMAKE_${COTIRE_TARGET_LANGUAGE}_COMPILER}" - COMPILER_ARG1 ${CMAKE_${COTIRE_TARGET_LANGUAGE}_COMPILER_ARG1} - COMPILER_ID "${CMAKE_${COTIRE_TARGET_LANGUAGE}_COMPILER_ID}" - COMPILER_VERSION "${CMAKE_${COTIRE_TARGET_LANGUAGE}_COMPILER_VERSION}" - LANGUAGE "${COTIRE_TARGET_LANGUAGE}" - INCLUDE_DIRECTORIES ${_includeDirs} - SYSTEM_INCLUDE_DIRECTORIES ${_systemIncludeDirs} - COMPILE_DEFINITIONS ${_compileDefinitions} - COMPILE_FLAGS ${_compileFlags}) - - elseif ("${COTIRE_ARGV1}" STREQUAL "combine") - - if (COTIRE_TARGET_LANGUAGE) - set (_combinedFile "${COTIRE_ARGV3}") - set (_startIndex 4) - else() - set (_combinedFile "${COTIRE_ARGV2}") - set (_startIndex 3) - endif() - set (_files "") - foreach (_index RANGE ${_startIndex} ${COTIRE_ARGC}) - if (COTIRE_ARGV${_index}) - list (APPEND _files "${COTIRE_ARGV${_index}}") - endif() - endforeach() - - if (XCODE) - # executing pre-build action under Xcode, check dependency on files to be combined - set (_dependsOption DEPENDS ${_files}) - else() - # executing custom command, no need to re-check for dependencies - set (_dependsOption "") - endif() - - if (COTIRE_TARGET_LANGUAGE) - cotire_generate_unity_source( - "${_combinedFile}" ${_files} - LANGUAGE "${COTIRE_TARGET_LANGUAGE}" - ${_dependsOption}) - else() - cotire_generate_unity_source("${_combinedFile}" ${_files} ${_dependsOption}) - endif() - - elseif ("${COTIRE_ARGV1}" STREQUAL "cleanup") - - cotire_cleanup("${COTIRE_ARGV2}" "${COTIRE_ARGV3}" "${COTIRE_ARGV4}") - - else() - message (FATAL_ERROR "cotire: unknown command \"${COTIRE_ARGV1}\".") - endif() - -else() - - # cotire is being run in include mode - # set up all variable and property definitions - - if (NOT DEFINED COTIRE_DEBUG_INIT) - if (DEFINED COTIRE_DEBUG) - set (COTIRE_DEBUG_INIT ${COTIRE_DEBUG}) - else() - set (COTIRE_DEBUG_INIT FALSE) - endif() - endif() - option (COTIRE_DEBUG "Enable cotire debugging output?" ${COTIRE_DEBUG_INIT}) - - if (NOT DEFINED COTIRE_VERBOSE_INIT) - if (DEFINED COTIRE_VERBOSE) - set (COTIRE_VERBOSE_INIT ${COTIRE_VERBOSE}) - else() - set (COTIRE_VERBOSE_INIT FALSE) - endif() - endif() - option (COTIRE_VERBOSE "Enable cotire verbose output?" ${COTIRE_VERBOSE_INIT}) - - set (COTIRE_ADDITIONAL_PREFIX_HEADER_IGNORE_EXTENSIONS "inc;inl;ipp" CACHE STRING - "Ignore headers with the listed file extensions from the generated prefix header.") - - set (COTIRE_ADDITIONAL_PREFIX_HEADER_IGNORE_PATH "" CACHE STRING - "Ignore headers from these directories when generating the prefix header.") - - set (COTIRE_UNITY_SOURCE_EXCLUDE_EXTENSIONS "m;mm" CACHE STRING - "Ignore sources with the listed file extensions from the generated unity source.") - - set (COTIRE_MINIMUM_NUMBER_OF_TARGET_SOURCES "3" CACHE STRING - "Minimum number of sources in target required to enable use of precompiled header.") - - if (NOT DEFINED COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES_INIT) - if (DEFINED COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES) - set (COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES_INIT ${COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES}) - elseif ("${CMAKE_GENERATOR}" MATCHES "JOM|Ninja|Visual Studio") - # enable parallelization for generators that run multiple jobs by default - set (COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES_INIT "-j") - else() - set (COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES_INIT "0") - endif() - endif() - set (COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES "${COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES_INIT}" CACHE STRING - "Maximum number of source files to include in a single unity source file.") - - if (NOT COTIRE_PREFIX_HEADER_FILENAME_SUFFIX) - set (COTIRE_PREFIX_HEADER_FILENAME_SUFFIX "_prefix") - endif() - if (NOT COTIRE_UNITY_SOURCE_FILENAME_SUFFIX) - set (COTIRE_UNITY_SOURCE_FILENAME_SUFFIX "_unity") - endif() - if (NOT COTIRE_INTDIR) - set (COTIRE_INTDIR "cotire") - endif() - if (NOT COTIRE_PCH_ALL_TARGET_NAME) - set (COTIRE_PCH_ALL_TARGET_NAME "all_pch") - endif() - if (NOT COTIRE_UNITY_BUILD_ALL_TARGET_NAME) - set (COTIRE_UNITY_BUILD_ALL_TARGET_NAME "all_unity") - endif() - if (NOT COTIRE_CLEAN_ALL_TARGET_NAME) - set (COTIRE_CLEAN_ALL_TARGET_NAME "clean_cotire") - endif() - if (NOT COTIRE_CLEAN_TARGET_SUFFIX) - set (COTIRE_CLEAN_TARGET_SUFFIX "_clean_cotire") - endif() - if (NOT COTIRE_PCH_TARGET_SUFFIX) - set (COTIRE_PCH_TARGET_SUFFIX "_pch") - endif() - if (MSVC) - # MSVC default PCH memory scaling factor of 100 percent (75 MB) is too small for template heavy C++ code - # use a bigger default factor of 170 percent (128 MB) - if (NOT DEFINED COTIRE_PCH_MEMORY_SCALING_FACTOR) - set (COTIRE_PCH_MEMORY_SCALING_FACTOR "170") - endif() - endif() - if (NOT COTIRE_UNITY_BUILD_TARGET_SUFFIX) - set (COTIRE_UNITY_BUILD_TARGET_SUFFIX "_unity") - endif() - if (NOT DEFINED COTIRE_TARGETS_FOLDER) - set (COTIRE_TARGETS_FOLDER "cotire") - endif() - if (NOT DEFINED COTIRE_UNITY_OUTPUT_DIRECTORY) - if ("${CMAKE_GENERATOR}" MATCHES "Ninja") - # generated Ninja build files do not work if the unity target produces the same output file as the cotired target - set (COTIRE_UNITY_OUTPUT_DIRECTORY "unity") - else() - set (COTIRE_UNITY_OUTPUT_DIRECTORY "") - endif() - endif() - - # define cotire cache variables - - define_property( - CACHED_VARIABLE PROPERTY "COTIRE_ADDITIONAL_PREFIX_HEADER_IGNORE_PATH" - BRIEF_DOCS "Ignore headers from these directories when generating the prefix header." - FULL_DOCS - "The variable can be set to a semicolon separated list of include directories." - "If a header file is found in one of these directories or sub-directories, it will be excluded from the generated prefix header." - "If not defined, defaults to empty list." - ) - - define_property( - CACHED_VARIABLE PROPERTY "COTIRE_ADDITIONAL_PREFIX_HEADER_IGNORE_EXTENSIONS" - BRIEF_DOCS "Ignore includes with the listed file extensions from the generated prefix header." - FULL_DOCS - "The variable can be set to a semicolon separated list of file extensions." - "If a header file extension matches one in the list, it will be excluded from the generated prefix header." - "Includes with an extension in CMAKE__SOURCE_FILE_EXTENSIONS are always ignored." - "If not defined, defaults to inc;inl;ipp." - ) - - define_property( - CACHED_VARIABLE PROPERTY "COTIRE_UNITY_SOURCE_EXCLUDE_EXTENSIONS" - BRIEF_DOCS "Exclude sources with the listed file extensions from the generated unity source." - FULL_DOCS - "The variable can be set to a semicolon separated list of file extensions." - "If a source file extension matches one in the list, it will be excluded from the generated unity source file." - "Source files with an extension in CMAKE__IGNORE_EXTENSIONS are always excluded." - "If not defined, defaults to m;mm." - ) - - define_property( - CACHED_VARIABLE PROPERTY "COTIRE_MINIMUM_NUMBER_OF_TARGET_SOURCES" - BRIEF_DOCS "Minimum number of sources in target required to enable use of precompiled header." - FULL_DOCS - "The variable can be set to an integer > 0." - "If a target contains less than that number of source files, cotire will not enable the use of the precompiled header for the target." - "If not defined, defaults to 3." - ) - - define_property( - CACHED_VARIABLE PROPERTY "COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES" - BRIEF_DOCS "Maximum number of source files to include in a single unity source file." - FULL_DOCS - "This may be set to an integer >= 0." - "If 0, cotire will only create a single unity source file." - "If a target contains more than that number of source files, cotire will create multiple unity source files for it." - "Can be set to \"-j\" to optimize the count of unity source files for the number of available processor cores." - "Can be set to \"-j jobs\" to optimize the number of unity source files for the given number of simultaneous jobs." - "Is used to initialize the target property COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES." - "Defaults to \"-j\" for the generators Visual Studio, JOM or Ninja. Defaults to 0 otherwise." - ) - - # define cotire directory properties - - define_property( - DIRECTORY PROPERTY "COTIRE_ENABLE_PRECOMPILED_HEADER" - BRIEF_DOCS "Modify build command of cotired targets added in this directory to make use of the generated precompiled header." - FULL_DOCS - "See target property COTIRE_ENABLE_PRECOMPILED_HEADER." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_ADD_UNITY_BUILD" - BRIEF_DOCS "Add a new target that performs a unity build for cotired targets added in this directory." - FULL_DOCS - "See target property COTIRE_ADD_UNITY_BUILD." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_ADD_CLEAN" - BRIEF_DOCS "Add a new target that cleans all cotire generated files for cotired targets added in this directory." - FULL_DOCS - "See target property COTIRE_ADD_CLEAN." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_PREFIX_HEADER_IGNORE_PATH" - BRIEF_DOCS "Ignore headers from these directories when generating the prefix header." - FULL_DOCS - "See target property COTIRE_PREFIX_HEADER_IGNORE_PATH." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_PREFIX_HEADER_INCLUDE_PATH" - BRIEF_DOCS "Honor headers from these directories when generating the prefix header." - FULL_DOCS - "See target property COTIRE_PREFIX_HEADER_INCLUDE_PATH." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_PREFIX_HEADER_INCLUDE_PRIORITY_PATH" - BRIEF_DOCS "Header paths matching one of these directories are put at the top of the prefix header." - FULL_DOCS - "See target property COTIRE_PREFIX_HEADER_INCLUDE_PRIORITY_PATH." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_UNITY_SOURCE_PRE_UNDEFS" - BRIEF_DOCS "Preprocessor undefs to place in the generated unity source file before the inclusion of each source file." - FULL_DOCS - "See target property COTIRE_UNITY_SOURCE_PRE_UNDEFS." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_UNITY_SOURCE_POST_UNDEFS" - BRIEF_DOCS "Preprocessor undefs to place in the generated unity source file after the inclusion of each source file." - FULL_DOCS - "See target property COTIRE_UNITY_SOURCE_POST_UNDEFS." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES" - BRIEF_DOCS "Maximum number of source files to include in a single unity source file." - FULL_DOCS - "See target property COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_UNITY_LINK_LIBRARIES_INIT" - BRIEF_DOCS "Define strategy for setting up the unity target's link libraries." - FULL_DOCS - "See target property COTIRE_UNITY_LINK_LIBRARIES_INIT." - ) - - # define cotire target properties - - define_property( - TARGET PROPERTY "COTIRE_ENABLE_PRECOMPILED_HEADER" INHERITED - BRIEF_DOCS "Modify this target's build command to make use of the generated precompiled header." - FULL_DOCS - "If this property is set to TRUE, cotire will modify the build command to make use of the generated precompiled header." - "Irrespective of the value of this property, cotire will setup custom commands to generate the unity source and prefix header for the target." - "For makefile based generators cotire will also set up a custom target to manually invoke the generation of the precompiled header." - "The target name will be set to this target's name with the suffix _pch appended." - "Inherited from directory." - "Defaults to TRUE." - ) - - define_property( - TARGET PROPERTY "COTIRE_ADD_UNITY_BUILD" INHERITED - BRIEF_DOCS "Add a new target that performs a unity build for this target." - FULL_DOCS - "If this property is set to TRUE, cotire creates a new target of the same type that uses the generated unity source file instead of the target sources." - "Most of the relevant target properties will be copied from this target to the new unity build target." - "Target dependencies and linked libraries have to be manually set up for the new unity build target." - "The unity target name will be set to this target's name with the suffix _unity appended." - "Inherited from directory." - "Defaults to TRUE." - ) - - define_property( - TARGET PROPERTY "COTIRE_ADD_CLEAN" INHERITED - BRIEF_DOCS "Add a new target that cleans all cotire generated files for this target." - FULL_DOCS - "If this property is set to TRUE, cotire creates a new target that clean all files (unity source, prefix header, precompiled header)." - "The clean target name will be set to this target's name with the suffix _clean_cotire appended." - "Inherited from directory." - "Defaults to FALSE." - ) - - define_property( - TARGET PROPERTY "COTIRE_PREFIX_HEADER_IGNORE_PATH" INHERITED - BRIEF_DOCS "Ignore headers from these directories when generating the prefix header." - FULL_DOCS - "The property can be set to a list of directories." - "If a header file is found in one of these directories or sub-directories, it will be excluded from the generated prefix header." - "Inherited from directory." - "If not set, this property is initialized to \${CMAKE_SOURCE_DIR};\${CMAKE_BINARY_DIR}." - ) - - define_property( - TARGET PROPERTY "COTIRE_PREFIX_HEADER_INCLUDE_PATH" INHERITED - BRIEF_DOCS "Honor headers from these directories when generating the prefix header." - FULL_DOCS - "The property can be set to a list of directories." - "If a header file is found in one of these directories or sub-directories, it will be included in the generated prefix header." - "If a header file is both selected by COTIRE_PREFIX_HEADER_IGNORE_PATH and COTIRE_PREFIX_HEADER_INCLUDE_PATH," - "the option which yields the closer relative path match wins." - "Inherited from directory." - "If not set, this property is initialized to the empty list." - ) - - define_property( - TARGET PROPERTY "COTIRE_PREFIX_HEADER_INCLUDE_PRIORITY_PATH" INHERITED - BRIEF_DOCS "Header paths matching one of these directories are put at the top of prefix header." - FULL_DOCS - "The property can be set to a list of directories." - "Header file paths matching one of these directories will be inserted at the beginning of the generated prefix header." - "Header files are sorted according to the order of the directories in the property." - "If not set, this property is initialized to the empty list." - ) - - define_property( - TARGET PROPERTY "COTIRE_UNITY_SOURCE_PRE_UNDEFS" INHERITED - BRIEF_DOCS "Preprocessor undefs to place in the generated unity source file before the inclusion of each target source file." - FULL_DOCS - "This may be set to a semicolon-separated list of preprocessor symbols." - "cotire will add corresponding #undef directives to the generated unit source file before each target source file." - "Inherited from directory." - "Defaults to empty string." - ) - - define_property( - TARGET PROPERTY "COTIRE_UNITY_SOURCE_POST_UNDEFS" INHERITED - BRIEF_DOCS "Preprocessor undefs to place in the generated unity source file after the inclusion of each target source file." - FULL_DOCS - "This may be set to a semicolon-separated list of preprocessor symbols." - "cotire will add corresponding #undef directives to the generated unit source file after each target source file." - "Inherited from directory." - "Defaults to empty string." - ) - - define_property( - TARGET PROPERTY "COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES" INHERITED - BRIEF_DOCS "Maximum number of source files to include in a single unity source file." - FULL_DOCS - "This may be set to an integer > 0." - "If a target contains more than that number of source files, cotire will create multiple unity build files for it." - "If not set, cotire will only create a single unity source file." - "Inherited from directory." - "Defaults to empty." - ) - - define_property( - TARGET PROPERTY "COTIRE__UNITY_SOURCE_INIT" - BRIEF_DOCS "User provided unity source file to be used instead of the automatically generated one." - FULL_DOCS - "If set, cotire will only add the given file(s) to the generated unity source file." - "If not set, cotire will add all the target source files to the generated unity source file." - "The property can be set to a user provided unity source file." - "Defaults to empty." - ) - - define_property( - TARGET PROPERTY "COTIRE__PREFIX_HEADER_INIT" - BRIEF_DOCS "User provided prefix header file to be used instead of the automatically generated one." - FULL_DOCS - "If set, cotire will add the given header file(s) to the generated prefix header file." - "If not set, cotire will generate a prefix header by tracking the header files included by the unity source file." - "The property can be set to a user provided prefix header file (e.g., stdafx.h)." - "Defaults to empty." - ) - - define_property( - TARGET PROPERTY "COTIRE_UNITY_LINK_LIBRARIES_INIT" INHERITED - BRIEF_DOCS "Define strategy for setting up unity target's link libraries." - FULL_DOCS - "If this property is empty or set to NONE, the generated unity target's link libraries have to be set up manually." - "If this property is set to COPY, the unity target's link libraries will be copied from this target." - "If this property is set to COPY_UNITY, the unity target's link libraries will be copied from this target with considering existing unity targets." - "Inherited from directory." - "Defaults to empty." - ) - - define_property( - TARGET PROPERTY "COTIRE__UNITY_SOURCE" - BRIEF_DOCS "Read-only property. The generated unity source file(s)." - FULL_DOCS - "cotire sets this property to the path of the generated single computation unit source file for the target." - "Defaults to empty string." - ) - - define_property( - TARGET PROPERTY "COTIRE__PREFIX_HEADER" - BRIEF_DOCS "Read-only property. The generated prefix header file." - FULL_DOCS - "cotire sets this property to the full path of the generated language prefix header for the target." - "Defaults to empty string." - ) - - define_property( - TARGET PROPERTY "COTIRE__PRECOMPILED_HEADER" - BRIEF_DOCS "Read-only property. The generated precompiled header file." - FULL_DOCS - "cotire sets this property to the full path of the generated language precompiled header binary for the target." - "Defaults to empty string." - ) - - define_property( - TARGET PROPERTY "COTIRE_UNITY_TARGET_NAME" - BRIEF_DOCS "The name of the generated unity build target corresponding to this target." - FULL_DOCS - "This property can be set to the desired name of the unity target that will be created by cotire." - "If not set, the unity target name will be set to this target's name with the suffix _unity appended." - "After this target has been processed by cotire, the property is set to the actual name of the generated unity target." - "Defaults to empty string." - ) - - # define cotire source properties - - define_property( - SOURCE PROPERTY "COTIRE_EXCLUDED" - BRIEF_DOCS "Do not modify source file's build command." - FULL_DOCS - "If this property is set to TRUE, the source file's build command will not be modified to make use of the precompiled header." - "The source file will also be excluded from the generated unity source file." - "Source files that have their COMPILE_FLAGS property set will be excluded by default." - "Defaults to FALSE." - ) - - define_property( - SOURCE PROPERTY "COTIRE_DEPENDENCY" - BRIEF_DOCS "Add this source file to dependencies of the automatically generated prefix header file." - FULL_DOCS - "If this property is set to TRUE, the source file is added to dependencies of the generated prefix header file." - "If the file is modified, cotire will re-generate the prefix header source upon build." - "Defaults to FALSE." - ) - - define_property( - SOURCE PROPERTY "COTIRE_UNITY_SOURCE_PRE_UNDEFS" - BRIEF_DOCS "Preprocessor undefs to place in the generated unity source file before the inclusion of this source file." - FULL_DOCS - "This may be set to a semicolon-separated list of preprocessor symbols." - "cotire will add corresponding #undef directives to the generated unit source file before this file is included." - "Defaults to empty string." - ) - - define_property( - SOURCE PROPERTY "COTIRE_UNITY_SOURCE_POST_UNDEFS" - BRIEF_DOCS "Preprocessor undefs to place in the generated unity source file after the inclusion of this source file." - FULL_DOCS - "This may be set to a semicolon-separated list of preprocessor symbols." - "cotire will add corresponding #undef directives to the generated unit source file after this file is included." - "Defaults to empty string." - ) - - define_property( - SOURCE PROPERTY "COTIRE_START_NEW_UNITY_SOURCE" - BRIEF_DOCS "Start a new unity source file which includes this source file as the first one." - FULL_DOCS - "If this property is set to TRUE, cotire will complete the current unity file and start a new one." - "The new unity source file will include this source file as the first one." - "This property essentially works as a separator for unity source files." - "Defaults to FALSE." - ) - - define_property( - SOURCE PROPERTY "COTIRE_TARGET" - BRIEF_DOCS "Read-only property. Mark this source file as cotired for the given target." - FULL_DOCS - "cotire sets this property to the name of target, that the source file's build command has been altered for." - "Defaults to empty string." - ) - - message (STATUS "cotire ${COTIRE_CMAKE_MODULE_VERSION} loaded.") - -endif() - diff --git a/cmake/paths.cmake b/cmake/paths.cmake index 1df097aa..ab4ae84d 100644 --- a/cmake/paths.cmake +++ b/cmake/paths.cmake @@ -13,4 +13,3 @@ endif() # Create log folder file( MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin/log ) file( MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin/navi ) -file( MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin/data ) diff --git a/config/global.ini.default b/config/global.ini.default index db3ec4a2..18b8c33f 100644 --- a/config/global.ini.default +++ b/config/global.ini.default @@ -11,7 +11,7 @@ AsyncThreads = 2 ServerSecret = default DataPath = C:\\SquareEnix\\FINAL FANTASY XIV - A Realm Reborn\\game\\sqpack WorldID = 67 -DefaultGMRank = 255 +DefaultGMRank = 90 LogLevel = 1 LogFilter = 0 diff --git a/deps/datReader/Dat.cpp b/deps/datReader/Dat.cpp index 943e12fd..f8f458d9 100644 --- a/deps/datReader/Dat.cpp +++ b/deps/datReader/Dat.cpp @@ -70,9 +70,9 @@ namespace xiv::utils::bparse xiv::utils::bparse::reorder( i_struct.size ); xiv::utils::bparse::reorder( i_struct.entry_type ); xiv::utils::bparse::reorder( i_struct.total_uncompressed_size ); - for( int32_t i = 0; i < 0x2; ++i ) + for( unsigned int & i : i_struct.unknown ) { - xiv::utils::bparse::reorder( i_struct.unknown[ i ] ); + xiv::utils::bparse::reorder( i ); } } @@ -81,9 +81,9 @@ namespace xiv::utils::bparse { xiv::utils::bparse::reorder( i_struct.offset ); xiv::utils::bparse::reorder( i_struct.size ); - for( int32_t i = 0; i < 0x4; ++i ) + for( unsigned int & i : i_struct.unknown ) { - xiv::utils::bparse::reorder( i_struct.unknown[ i ] ); + xiv::utils::bparse::reorder( i ); } xiv::utils::bparse::reorder( i_struct.block_hash ); } @@ -109,29 +109,29 @@ namespace xiv::utils::bparse inline void reorder< xiv::dat::DatMdlFileBlockInfos >( xiv::dat::DatMdlFileBlockInfos& i_struct ) { xiv::utils::bparse::reorder( i_struct.unknown1 ); - for( auto i = 0; i < ::model_section_count; ++i ) + for( unsigned int& uncompressed_size : i_struct.uncompressed_sizes ) { - xiv::utils::bparse::reorder( i_struct.uncompressed_sizes[ i ] ); + xiv::utils::bparse::reorder( uncompressed_size ); } - for( auto i = 0; i < ::model_section_count; ++i ) + for( unsigned int& compressed_size : i_struct.compressed_sizes ) { - xiv::utils::bparse::reorder( i_struct.compressed_sizes[ i ] ); + xiv::utils::bparse::reorder( compressed_size ); } - for( auto i = 0; i < ::model_section_count; ++i ) + for( unsigned int& offset : i_struct.offsets ) { - xiv::utils::bparse::reorder( i_struct.offsets[ i ] ); + xiv::utils::bparse::reorder( offset ); } - for( auto i = 0; i < ::model_section_count; ++i ) + for( unsigned short& block_id : i_struct.block_ids ) { - xiv::utils::bparse::reorder( i_struct.block_ids[ i ] ); + xiv::utils::bparse::reorder( block_id ); } - for( auto i = 0; i < ::model_section_count; ++i ) + for( unsigned short& block_count : i_struct.block_counts ) { - xiv::utils::bparse::reorder( i_struct.block_counts[ i ] ); + xiv::utils::bparse::reorder( block_count ); } - for( auto i = 0; i < 0x2; ++i ) + for( unsigned int &i : i_struct.unknown2 ) { - xiv::utils::bparse::reorder( i_struct.unknown2[ i ] ); + xiv::utils::bparse::reorder( i ); } } @@ -160,9 +160,7 @@ namespace xiv::dat isBlockValid( block_record.offset, block_record.size, block_record.block_hash ); } - Dat::~Dat() - { - } + Dat::~Dat() = default; std::unique_ptr< File > Dat::getFile( uint32_t i_offset ) { @@ -184,7 +182,7 @@ namespace xiv::dat { outputFile->_type = FileType::standard; - uint32_t number_of_blocks = extract< uint32_t >( m_handle, "number_of_blocks" ); + auto number_of_blocks = extract< uint32_t >( m_handle, "number_of_blocks" ); // Just extract offset infos for the blocks to extract std::vector< DatStdFileBlockInfos > std_file_block_infos; @@ -207,7 +205,7 @@ namespace xiv::dat { outputFile->_type = FileType::model; - DatMdlFileBlockInfos mdlBlockInfo = extract< DatMdlFileBlockInfos >( m_handle ); + auto mdlBlockInfo = extract< DatMdlFileBlockInfos >( m_handle ); // Getting the block number and read their sizes const uint32_t block_count = mdlBlockInfo.block_ids[ ::model_section_count - 1 ] + @@ -239,7 +237,7 @@ namespace xiv::dat outputFile->_type = FileType::texture; // Extracts mipmap entries and the block sizes - uint32_t sectionCount = extract< uint32_t >( m_handle, "sections_count" ); + auto sectionCount = extract< uint32_t >( m_handle, "sections_count" ); std::vector< DatTexFileBlockInfos > texBlockInfo; extract< DatTexFileBlockInfos >( m_handle, sectionCount, texBlockInfo ); @@ -289,10 +287,10 @@ namespace xiv::dat { m_handle.seekg( i_offset ); - DatBlockHeader block_header = extract< DatBlockHeader >( m_handle ); + auto block_header = extract< DatBlockHeader >( m_handle ); // Resizing the vector to write directly into it - const uint32_t data_size = o_data.size(); + const auto data_size = o_data.size(); o_data.resize( data_size + block_header.uncompressed_size ); // 32000 in compressed_size means it is not compressed so take uncompressed_size @@ -307,10 +305,10 @@ namespace xiv::dat std::vector< char > temp_buffer( block_header.compressed_size ); m_handle.read( temp_buffer.data(), block_header.compressed_size ); - utils::zlib::no_header_decompress( reinterpret_cast(temp_buffer.data()), + utils::zlib::no_header_decompress( reinterpret_cast< uint8_t* >( temp_buffer.data() ), temp_buffer.size(), - reinterpret_cast(o_data.data() + data_size), - block_header.uncompressed_size ); + reinterpret_cast< uint8_t* >( o_data.data() + data_size ), + static_cast< size_t >( block_header.uncompressed_size ) ); } } diff --git a/deps/datReader/Dat.h b/deps/datReader/Dat.h index f1827782..8306cbdf 100644 --- a/deps/datReader/Dat.h +++ b/deps/datReader/Dat.h @@ -1,6 +1,4 @@ -#ifndef XIV_DAT_DAT_H -#define XIV_DAT_DAT_H - +#pragma once #include "SqPack.h" #include @@ -39,4 +37,3 @@ namespace xiv::dat } -#endif // XIV_DAT_DAT_H diff --git a/deps/datReader/DatCategories/bg/lgb.h b/deps/datReader/DatCategories/bg/lgb.h index 25bd5b6b..195b5d3b 100644 --- a/deps/datReader/DatCategories/bg/lgb.h +++ b/deps/datReader/DatCategories/bg/lgb.h @@ -34,10 +34,10 @@ public: memset( &header, 0, sizeof( header ) ); }; - LgbEntry( char* buf, uint32_t offset ) + LgbEntry( char* buf, size_t offset ) { m_buf = buf; - m_offset = offset; + m_offset = static_cast< uint32_t >( offset ); header = *reinterpret_cast< InstanceObject* >( buf + offset ); }; @@ -60,11 +60,9 @@ public: std::string modelFileName; std::string collisionFileName; - LGB_BGPARTS_ENTRY() - { - }; + LGB_BGPARTS_ENTRY() = default; - LGB_BGPARTS_ENTRY( char* buf, uint32_t offset ) : LgbEntry( buf, offset ) + LGB_BGPARTS_ENTRY( char* buf, size_t offset ) : LgbEntry( buf, offset ) { data = *reinterpret_cast< BgPartsData* >( buf + offset ); name = std::string( buf + offset + header.nameOffset ); @@ -80,7 +78,7 @@ public: std::string name; std::string gimmickFileName; - LGB_GIMMICK_ENTRY( char* buf, uint32_t offset ) : LgbEntry( buf, offset ) + LGB_GIMMICK_ENTRY( char* buf, size_t offset ) : LgbEntry( buf, offset ) { data = *reinterpret_cast< GimmickData* >( buf + offset ); name = std::string( buf + offset + header.nameOffset ); @@ -94,7 +92,7 @@ public: ENpcData data; std::string name; - LGB_ENPC_ENTRY( char* buf, uint32_t offset ) : + LGB_ENPC_ENTRY( char* buf, size_t offset ) : LgbEntry( buf, offset ) { data = *reinterpret_cast< ENpcData* >( buf + offset ); @@ -108,7 +106,7 @@ public: EObjData data; std::string name; - LGB_EOBJ_ENTRY( char* buf, uint32_t offset ) : LgbEntry( buf, offset ) + LGB_EOBJ_ENTRY( char* buf, size_t offset ) : LgbEntry( buf, offset ) { data = *reinterpret_cast< EObjData* >( buf + offset ); name = std::string( buf + offset + header.nameOffset ); @@ -121,7 +119,7 @@ public: MapRangeData data; std::string name; - LGB_MAP_RANGE_ENTRY( char* buf, uint32_t offset ) : LgbEntry( buf, offset ) + LGB_MAP_RANGE_ENTRY( char* buf, size_t offset ) : LgbEntry( buf, offset ) { data = *reinterpret_cast< MapRangeData* >( buf + offset ); name = std::string( buf + offset + header.nameOffset ); @@ -134,7 +132,7 @@ public: ExitRangeData data; std::string name; - LGB_EXIT_RANGE_ENTRY( char* buf, uint32_t offset ) : LgbEntry( buf, offset ) + LGB_EXIT_RANGE_ENTRY( char* buf, size_t offset ) : LgbEntry( buf, offset ) { data = *reinterpret_cast< ExitRangeData* >( buf + offset ); name = std::string( buf + offset + header.nameOffset ); @@ -146,7 +144,7 @@ struct LGB_POP_RANGE_ENTRY : public LgbEntry public: PopRangeData data; - LGB_POP_RANGE_ENTRY( char* buf, uint32_t offset ) : LgbEntry( buf, offset ) + LGB_POP_RANGE_ENTRY( char* buf, size_t offset ) : LgbEntry( buf, offset ) { data = *reinterpret_cast< PopRangeData* >( buf + offset ); }; @@ -176,7 +174,7 @@ struct LGB_GROUP std::string name; std::vector< std::shared_ptr< LgbEntry > > entries; - LGB_GROUP( char* buf, LGB_FILE* parentStruct, uint32_t offset ) + LGB_GROUP( char* buf, LGB_FILE* parentStruct, size_t offset ) { parent = parentStruct; header = *reinterpret_cast< LGB_GROUP_HEADER* >( buf + offset ); @@ -257,7 +255,7 @@ struct LGB_FILE throw std::runtime_error( "Invalid LGB file!" ); constexpr auto baseOffset = sizeof( header ); - for( auto i = 0; i < header.groupCount; ++i ) + for( size_t i = 0; i < header.groupCount; ++i ) { const auto groupOffset = baseOffset + *reinterpret_cast< int32_t* >( buf + ( baseOffset + i * 4 ) ); const auto group = LGB_GROUP( buf, this, groupOffset ); diff --git a/deps/datReader/DatCategories/bg/sgb.h b/deps/datReader/DatCategories/bg/sgb.h index fbf23f5a..d7a338b6 100644 --- a/deps/datReader/DatCategories/bg/sgb.h +++ b/deps/datReader/DatCategories/bg/sgb.h @@ -136,7 +136,7 @@ struct SGB_MODEL_ENTRY : public SGB_GROUP_ENTRY std::string modelFileName; std::string collisionFileName; - SGB_MODEL_ENTRY( char* buf, uint32_t offset, SgbGroupEntryType type ) + SGB_MODEL_ENTRY( char* buf, size_t offset, SgbGroupEntryType type ) { this->type = type; header = *reinterpret_cast< SGB_MODEL_HEADER* >( buf + offset ); @@ -258,7 +258,7 @@ struct SGB_FILE if( stateCount > 0 ) { stateCount = stateCount; - for( int i = 0; i < stateCount; ++i ) + for( size_t i = 0; i < stateCount; ++i ) { auto state = SGB_STATE_ENTRY( buf + baseOffset + header.statesOffset + 8 + i * sizeof( SGB_STATE_HEADER ) ); stateEntries.push_back( state ); diff --git a/deps/datReader/Exd.cpp b/deps/datReader/Exd.cpp index 6c4769b5..74aae36e 100644 --- a/deps/datReader/Exd.cpp +++ b/deps/datReader/Exd.cpp @@ -1,6 +1,8 @@ #include "Exd.h" #include "bparse.h" +#include "stream.h" +#include #include "Exh.h" using xiv::utils::bparse::extract; @@ -51,24 +53,32 @@ template<> namespace xiv::exd { - Exd::Exd( std::shared_ptr< Exh > exh, const std::vector< std::shared_ptr< dat::File > >& files ) + Exd::Exd( std::shared_ptr< Exh > i_exh, const std::vector< std::shared_ptr< dat::File>>& i_files ) { - _exh = exh; + _exh = i_exh; + _files = i_files; // Iterates over all the files - for( auto& file : files ) + const uint32_t member_count = static_cast< uint32_t >( _exh->get_members().size() ); + for( auto& file_ptr : _files ) { - std::vector< char > dataCpy = file->get_data_sections().front(); + // Get a stream + std::vector< char > dataCpy = file_ptr->get_data_sections().front(); + std::istringstream iss( std::string( dataCpy.begin(), dataCpy.end() ) ); - // Extract the header - auto exdHeader = extract< ExdHeader >( dataCpy, 0 ); + // Extract the header and skip to the record indices + auto exd_header = extract< ExdHeader >( iss ); + iss.seekg( 0x20 ); - const uint32_t recordCount = exdHeader.index_size / sizeof( ExdRecordIndex ); - for( uint32_t i = 0; i < recordCount; ++i ) + // Preallocate and extract the record_indices + const uint32_t record_count = exd_header.index_size / sizeof( ExdRecordIndex ); + std::vector< ExdRecordIndex > record_indices; + record_indices.reserve( record_count ); + for( uint32_t i = 0; i < record_count; ++i ) { - auto recordIndex = extract< ExdRecordIndex >( dataCpy, 32 + ( i * sizeof( ExdRecordIndex ) ) ); - _idCache[ recordIndex.id ] = ExdCacheEntry{ file, recordIndex.offset + 6, extract< uint8_t >( dataCpy, recordIndex.offset + 5 ) }; + auto recordIndex = extract< ExdRecordIndex >( iss ); + _idCache[ recordIndex.id ] = ExdCacheEntry{ file_ptr, recordIndex.offset }; } } } @@ -81,24 +91,40 @@ namespace xiv::exd { auto cacheEntryIt = _idCache.find( id ); - if( cacheEntryIt == _idCache.end() || subRow >= cacheEntryIt->second.subRows ) - throw std::runtime_error( "Id + SubId combination not found: " + std::to_string( id ) + "." + std::to_string( subRow ) ); + if( cacheEntryIt == _idCache.end() ) + throw std::runtime_error( "Id not found: " + std::to_string( id ) ); - auto dataCpy = cacheEntryIt->second.file->get_data_sections().front(); + // Iterates over all the files + const uint32_t member_count = static_cast< uint32_t >( _exh->get_members().size() ); + auto& file_ptr = cacheEntryIt->second.file; - std::vector< Field > fields; - fields.reserve( _exh->get_members().size() ); + std::vector< char > dataCpy = file_ptr->get_data_sections().front(); + std::istringstream iss( std::string( dataCpy.begin(), dataCpy.end() ) ); - uint32_t baseOffset = cacheEntryIt->second.offset + ( subRow * _exh->get_header().data_offset + 2 * ( subRow + 1 ) ); + // Get the vector fields for the given record and preallocate it + auto fields = _data[ id ]; + fields.reserve( member_count ); + iss.seekg( cacheEntryIt->second.offset + 6 ); - for( auto& memberEntry : _exh->get_exh_members() ) + uint8_t subRows = *reinterpret_cast< uint8_t* >( &dataCpy[ cacheEntryIt->second.offset + 5 ] ); + + if( subRow >= subRows ) + throw std::runtime_error( "Out of bounds sub-row!" ); + + int offset = cacheEntryIt->second.offset + 6 + ( subRow * _exh->get_header().data_offset + 2 * ( subRow + 1 ) ); + + for( auto& member_entry : _exh->get_exh_members() ) { + // Seek to the position of the member to extract. + // 6 is because we have uint32_t/uint16_t at the start of each record + iss.seekg( offset + member_entry.offset ); + // Switch depending on the type to extract - switch( memberEntry.type ) + switch( member_entry.type ) { case DataType::string: // Extract the offset to the actual string - // Then extract the actual string from that offset + // Seek to it then extract the actual string { throw std::runtime_error( "String not implemented for variant 2!" ); //auto string_offset = extract( iss, "string_offset", false ); @@ -108,46 +134,50 @@ namespace xiv::exd break; case DataType::boolean: - fields.emplace_back( extract< bool >( dataCpy, baseOffset + memberEntry.offset ) ); + fields.emplace_back( extract< bool >( iss, "bool" ) ); break; case DataType::int8: - fields.emplace_back( extract< int8_t >( dataCpy, baseOffset + memberEntry.offset ) ); + fields.emplace_back( extract< int8_t >( iss, "int8_t" ) ); break; case DataType::uint8: - fields.emplace_back( extract< uint8_t >( dataCpy, baseOffset + memberEntry.offset ) ); + fields.emplace_back( extract< uint8_t >( iss, "uint8_t" ) ); break; case DataType::int16: - fields.emplace_back( extract< int16_t >( dataCpy, baseOffset + memberEntry.offset, false ) ); + fields.emplace_back( extract< int16_t >( iss, "int16_t", false ) ); break; case DataType::uint16: - fields.emplace_back( extract< uint16_t >( dataCpy, baseOffset + memberEntry.offset, false ) ); + fields.emplace_back( extract< uint16_t >( iss, "uint16_t", false ) ); break; case DataType::int32: - fields.emplace_back( extract< int32_t >( dataCpy, baseOffset + memberEntry.offset, false ) ); + fields.emplace_back( extract< int32_t >( iss, "int32_t", false ) ); break; case DataType::uint32: - fields.emplace_back( extract< uint32_t >( dataCpy, baseOffset + memberEntry.offset, false ) ); + fields.emplace_back( extract< uint32_t >( iss, "uint32_t", false ) ); break; case DataType::float32: - fields.emplace_back( extract< float >( dataCpy, baseOffset + memberEntry.offset, false ) ); + fields.emplace_back( extract< float >( iss, "float", false ) ); break; case DataType::uint64: - fields.emplace_back( extract< uint64_t >( dataCpy, baseOffset + memberEntry.offset, false ) ); + fields.emplace_back( extract< uint64_t >( iss, "uint64_t", false ) ); break; default: - auto type = static_cast< uint16_t >( memberEntry.type ); + auto type = static_cast< uint16_t >( member_entry.type ); if( type < 0x19 || type > 0x20 ) throw std::runtime_error( "Unknown DataType: " + std::to_string( type ) ); - fields.emplace_back( ( extract< uint8_t >( dataCpy, baseOffset + memberEntry.offset ) & ( 1 << ( type - 0x19 ) ) ) != 0 ); + uint64_t val = extract< uint64_t >( iss, "bool" ); + int32_t shift = type - 0x19; + int32_t i = 1 << shift; + val &= i; + fields.emplace_back( ( val & i ) == i ); break; } } @@ -163,68 +193,84 @@ namespace xiv::exd if( cacheEntryIt == _idCache.end() ) throw std::runtime_error( "Id not found: " + std::to_string( id ) ); - auto dataCpy = cacheEntryIt->second.file->get_data_sections().front(); + // Iterates over all the files + const uint32_t member_count = static_cast< uint32_t >( _exh->get_members().size() ); + auto& file_ptr = cacheEntryIt->second.file; - std::vector< Field > fields; - fields.reserve( _exh->get_members().size() ); + std::vector< char > dataCpy = file_ptr->get_data_sections().front(); + std::istringstream iss( std::string( dataCpy.begin(), dataCpy.end() ) ); - auto stringBaseOffset = cacheEntryIt->second.offset + _exh->get_header().data_offset; + // Get the vector fields for the given record and preallocate it + auto fields = _data[ id ]; + fields.reserve( member_count ); + iss.seekg( cacheEntryIt->second.offset + 6 ); - for( auto& memberEntry : _exh->get_exh_members() ) + uint8_t subRows = *reinterpret_cast< uint8_t* >( &dataCpy[ cacheEntryIt->second.offset + 5 ] ); + + for( auto& member_entry : _exh->get_exh_members() ) { + // Seek to the position of the member to extract. + // 6 is because we have uint32_t/uint16_t at the start of each record + iss.seekg( cacheEntryIt->second.offset + 6 + member_entry.offset ); + // Switch depending on the type to extract - switch( memberEntry.type ) + switch( member_entry.type ) { case DataType::string: // Extract the offset to the actual string - // Then extract the actual string from that offset + // Seek to it then extract the actual string { - auto stringOffset = extract< uint32_t >( dataCpy, cacheEntryIt->second.offset + memberEntry.offset, false ); - fields.emplace_back( utils::bparse::extract_cstring( dataCpy, stringBaseOffset + stringOffset ) ); + auto string_offset = extract< uint32_t >( iss, "string_offset", false ); + iss.seekg( cacheEntryIt->second.offset + 6 + _exh->get_header().data_offset + string_offset ); + fields.emplace_back( utils::bparse::extract_cstring( iss, "string" ) ); } break; case DataType::boolean: - fields.emplace_back( extract< bool >( dataCpy, cacheEntryIt->second.offset + memberEntry.offset ) ); + fields.emplace_back( extract< bool >( iss, "bool" ) ); break; case DataType::int8: - fields.emplace_back( extract< int8_t >( dataCpy, cacheEntryIt->second.offset + memberEntry.offset ) ); + fields.emplace_back( extract< int8_t >( iss, "int8_t" ) ); break; case DataType::uint8: - fields.emplace_back( extract< uint8_t >( dataCpy, cacheEntryIt->second.offset + memberEntry.offset ) ); + fields.emplace_back( extract< uint8_t >( iss, "uint8_t" ) ); break; case DataType::int16: - fields.emplace_back( extract< int16_t >( dataCpy, cacheEntryIt->second.offset + memberEntry.offset, false ) ); + fields.emplace_back( extract< int16_t >( iss, "int16_t", false ) ); break; case DataType::uint16: - fields.emplace_back( extract< uint16_t >( dataCpy, cacheEntryIt->second.offset + memberEntry.offset, false ) ); + fields.emplace_back( extract< uint16_t >( iss, "uint16_t", false ) ); break; case DataType::int32: - fields.emplace_back( extract< int32_t >( dataCpy, cacheEntryIt->second.offset + memberEntry.offset, false ) ); + fields.emplace_back( extract< int32_t >( iss, "int32_t", false ) ); break; case DataType::uint32: - fields.emplace_back( extract< uint32_t >( dataCpy, cacheEntryIt->second.offset + memberEntry.offset, false ) ); + fields.emplace_back( extract< uint32_t >( iss, "uint32_t", false ) ); break; case DataType::float32: - fields.emplace_back( extract< float >( dataCpy, cacheEntryIt->second.offset + memberEntry.offset, false ) ); + fields.emplace_back( extract< float >( iss, "float", false ) ); break; case DataType::uint64: - fields.emplace_back( extract< uint64_t >( dataCpy, cacheEntryIt->second.offset + memberEntry.offset, false ) ); + fields.emplace_back( extract< uint64_t >( iss, "uint64_t", false ) ); break; default: - auto type = static_cast< uint16_t >( memberEntry.type ); + auto type = static_cast< uint16_t >( member_entry.type ); if( type < 0x19 || type > 0x20 ) throw std::runtime_error( "Unknown DataType: " + std::to_string( type ) ); - fields.emplace_back( ( extract< uint8_t >( dataCpy, cacheEntryIt->second.offset + memberEntry.offset ) & ( 1 << ( type - 0x19 ) ) ) != 0 ); + uint64_t val = extract< uint64_t >( iss, "bool" ); + int32_t shift = type - 0x19; + int32_t i = 1 << shift; + val &= i; + fields.emplace_back( ( val & i ) == i ); break; } } @@ -233,99 +279,106 @@ namespace xiv::exd } // Get all rows - const std::map< ExdRow, std::vector< Field >, exdRowSort > Exd::get_rows() + const std::map< uint32_t, std::vector< Field>>& Exd::get_rows() { - std::map< ExdRow, std::vector< Field >, exdRowSort > data; - - // Iterates over all the cached ids - const uint32_t memberCount = _exh->get_members().size(); - for( auto& cacheEntry : _idCache ) + // Iterates over all the files + const uint32_t member_count = static_cast< uint32_t >( _exh->get_members().size() ); + for( auto& file_ptr : _files ) { - std::vector< char > dataCpy = cacheEntry.second.file->get_data_sections().front(); + // Get a stream + std::vector< char > dataCpy = file_ptr->get_data_sections().front(); + std::istringstream iss( std::string( dataCpy.begin(), dataCpy.end() ) ); - auto baseOffset = cacheEntry.second.offset; - auto stringBaseOffset = baseOffset + _exh->get_header().data_offset; + // Extract the header and skip to the record indices + auto exd_header = extract< ExdHeader >( iss ); + iss.seekg( 0x20 ); - for( int32_t i = 0; i < cacheEntry.second.subRows; i++ ) + // Preallocate and extract the record_indices + const uint32_t record_count = exd_header.index_size / sizeof( ExdRecordIndex ); + std::vector< ExdRecordIndex > record_indices; + record_indices.reserve( record_count ); + for( uint32_t i = 0; i < record_count; ++i ) + { + record_indices.emplace_back( extract< ExdRecordIndex >( iss ) ); + } + + for( auto& record_index : record_indices ) { // Get the vector fields for the given record and preallocate it - ExdRow row = { cacheEntry.first, i }; - auto& fields = data[ row ]; - fields.reserve( memberCount ); + auto& fields = _data[ record_index.id ]; + fields.reserve( member_count ); - if( _exh->get_header().variant == 2 ) - baseOffset = cacheEntry.second.offset + ( i * _exh->get_header().data_offset + 2 * ( i + 1 ) ); - - for( auto& memberEntry : _exh->get_exh_members() ) + for( auto& member_entry : _exh->get_exh_members() ) //for( auto& member_entry : _exh->get_members() ) { + // Seek to the position of the member to extract. + // 6 is because we have uint32_t/uint16_t at the start of each record + iss.seekg( record_index.offset + 6 + member_entry.offset ); + // Switch depending on the type to extract - switch( memberEntry.type ) + switch( member_entry.type ) { case DataType::string: // Extract the offset to the actual string - // Then extract the actual string from that offset + // Seek to it then extract the actual string { - if( _exh->get_header().variant == 1 ) - { - auto stringOffset = extract< uint32_t >( dataCpy, baseOffset + memberEntry.offset, false ); - fields.emplace_back( utils::bparse::extract_cstring( dataCpy, stringBaseOffset + stringOffset ) ); - } - else if( _exh->get_header().variant == 2 ) - { - throw std::runtime_error( "String not implemented for variant 2!" ); - } + auto string_offset = extract< uint32_t >( iss, "string_offset", false ); + iss.seekg( record_index.offset + 6 + _exh->get_header().data_offset + string_offset ); + fields.emplace_back( utils::bparse::extract_cstring( iss, "string" ) ); } break; case DataType::boolean: - fields.emplace_back( extract< bool >( dataCpy, baseOffset + memberEntry.offset ) ); + fields.emplace_back( extract< bool >( iss, "bool" ) ); break; case DataType::int8: - fields.emplace_back( extract< int8_t >( dataCpy, baseOffset + memberEntry.offset ) ); + fields.emplace_back( extract< int8_t >( iss, "int8_t" ) ); break; case DataType::uint8: - fields.emplace_back( extract< uint8_t >( dataCpy, baseOffset + memberEntry.offset ) ); + fields.emplace_back( extract< uint8_t >( iss, "uint8_t" ) ); break; case DataType::int16: - fields.emplace_back( extract< int16_t >( dataCpy, baseOffset + memberEntry.offset, false ) ); + fields.emplace_back( extract< int16_t >( iss, "int16_t", false ) ); break; case DataType::uint16: - fields.emplace_back( extract< uint16_t >( dataCpy, baseOffset + memberEntry.offset, false ) ); + fields.emplace_back( extract< uint16_t >( iss, "uint16_t", false ) ); break; case DataType::int32: - fields.emplace_back( extract< int32_t >( dataCpy, baseOffset + memberEntry.offset, false ) ); + fields.emplace_back( extract< int32_t >( iss, "int32_t", false ) ); break; case DataType::uint32: - fields.emplace_back( extract< uint32_t >( dataCpy, baseOffset + memberEntry.offset, false ) ); + fields.emplace_back( extract< uint32_t >( iss, "uint32_t", false ) ); break; case DataType::float32: - fields.emplace_back( extract< float >( dataCpy, baseOffset + memberEntry.offset, false ) ); + fields.emplace_back( extract< float >( iss, "float", false ) ); break; case DataType::uint64: - fields.emplace_back( extract< uint64_t >( dataCpy, baseOffset + memberEntry.offset, false ) ); + fields.emplace_back( extract< uint64_t >( iss, "uint64_t", false ) ); break; default: - auto type = static_cast< uint16_t >( memberEntry.type ); + auto type = static_cast< uint16_t >( member_entry.type ); if( type < 0x19 || type > 0x20 ) throw std::runtime_error( "Unknown DataType: " + std::to_string( type ) ); - fields.emplace_back( ( extract< uint8_t >( dataCpy, baseOffset + memberEntry.offset ) & ( 1 << ( type - 0x19 ) ) ) != 0 ); + uint64_t val = extract< uint64_t >( iss, "bool" ); + int32_t shift = type - 0x19; + int32_t i = 1 << shift; + val &= i; + fields.emplace_back( ( val & i ) == i ); break; } } } } - return data; - + return _data; } } diff --git a/deps/datReader/Exd.h b/deps/datReader/Exd.h index 30a9e9e0..81365e2e 100644 --- a/deps/datReader/Exd.h +++ b/deps/datReader/Exd.h @@ -1,15 +1,17 @@ -#ifndef XIV_EXD_EXD_H -#define XIV_EXD_EXD_H +#pragma once #include #include -#include -#include #include #include "File.h" - +#include "Exd/Common.h" +#include "Exd/Structs.h" +#include "stream.h" +#include +#include "Exh.h" +#include "bparse.h" namespace xiv::exd { @@ -32,54 +34,165 @@ namespace xiv::exd { std::shared_ptr< dat::File > file; uint32_t offset; - uint8_t subRows; - }; - - struct ExdRow - { - uint32_t rowId; - uint8_t subRowId; - }; - - struct exdRowSort - { - constexpr bool operator()( const ExdRow& _Left, const ExdRow& _Right ) const - { - if( _Left.rowId == _Right.rowId ) - return _Left.subRowId < _Right.subRowId; - - return _Left.rowId < _Right.rowId; - } }; // Data for a given language class Exd { public: - // exh: the header - // files: the multiple exd files + // i_exh: the header + // i_files: the multiple exd files Exd() { } - Exd( std::shared_ptr< Exh > exh, const std::vector< std::shared_ptr< dat::File > >& files ); + Exd( std::shared_ptr< Exh > i_exh, const std::vector< std::shared_ptr< dat::File>>& i_files ); ~Exd(); // Get a row by its id const std::vector< Field > get_row( uint32_t id ); + template< typename T > + std::shared_ptr< Component::Excel::ExcelStruct< T > > get_row( uint32_t id ) + { + using namespace xiv::utils; + auto cacheEntryIt = _idCache.find( id ); + if( cacheEntryIt == _idCache.end() ) + throw std::out_of_range( "Id not found: " + std::to_string( id ) ); + + if( sizeof( T ) != _exh->get_header().data_offset ) + { + throw std::runtime_error( + "the struct size (" + std::to_string( sizeof( T ) ) + ") doesn't match the size in the header (" + + std::to_string( _exh->get_header().data_offset ) + ")!" ); + } + + // Iterates over all the files + const uint32_t member_count = static_cast< uint32_t >( _exh->get_members().size() ); + auto& file_ptr = cacheEntryIt->second.file; + + std::vector< char > dataCpy = file_ptr->get_data_sections().front(); + std::istringstream iss( std::string( dataCpy.begin(), dataCpy.end() ) ); + + auto pSheet = std::make_shared< Component::Excel::ExcelStruct< T > >(); + + // Get the vector fields for the given record and preallocate it + auto fields = _data[ id ]; + fields.reserve( member_count ); + iss.seekg( cacheEntryIt->second.offset + 6 ); + + iss.read( reinterpret_cast( &pSheet.get()->_data ), sizeof( T ) ); + + int stringCount = 0; + for( auto& member_entry : _exh->get_exh_members() ) + { + + // Seek to the position of the member to extract. + // 6 is because we have uint32_t/uint16_t at the start of each record + iss.seekg( cacheEntryIt->second.offset + 6 + member_entry.offset ); + + // Switch depending on the type to extract + switch( member_entry.type ) + { + case DataType::string: + // Extract the offset to the actual string + // Seek to it then extract the actual string + { + auto string_offset = bparse::extract< uint32_t >( iss, "string_offset", false ); + iss.seekg( cacheEntryIt->second.offset + 6 + _exh->get_header().data_offset + string_offset ); + std::string value = utils::bparse::extract_cstring( iss, "string" ); + auto it = pSheet->_strings.insert( pSheet->_strings.end(), value ); + *reinterpret_cast< uint32_t* >( pSheet->ptr() + member_entry.offset ) = + static_cast< uint32_t >( std::distance( pSheet->_strings.begin(), it ) ); + } + break; + + case DataType::boolean: + bparse::extract< bool >( iss, "bool" ); + break; + + case DataType::int8: + bparse::extract< int8_t >( iss, "int8_t" ); + break; + + case DataType::uint8: + bparse::extract< uint8_t >( iss, "uint8_t" ); + break; + + + case DataType::int16: + { + int16_t value = bparse::extract< int16_t >( iss, "int16_t", false ); + *reinterpret_cast< int16_t* >( pSheet->ptr() + member_entry.offset ) = value; + } + break; + + case DataType::uint16: + { + uint16_t value = bparse::extract< uint16_t >( iss, "uint16_t", false ); + *reinterpret_cast< uint16_t* >( pSheet->ptr() + member_entry.offset ) = value; + } + break; + + case DataType::int32: + { + int32_t value = bparse::extract< int32_t >( iss, "int32_t", false ); + *reinterpret_cast< int32_t* >( pSheet->ptr() + member_entry.offset ) = value; + } + break; + + case DataType::uint32: + { + uint32_t value = bparse::extract< uint32_t >( iss, "uint32_t", false ); + *reinterpret_cast< uint32_t* >( pSheet->ptr() + member_entry.offset ) = value; + } + break; + + case DataType::float32: + { + float value = bparse::extract< float >( iss, "float", false ); + *reinterpret_cast< float* >( pSheet->ptr() + member_entry.offset ) = value; + } + break; + + case DataType::uint64: + { + uint64_t value = bparse::extract< uint64_t >( iss, "uint64_t", false ); + *reinterpret_cast< uint64_t* >( pSheet->ptr() + member_entry.offset ) = value; + } + break; + + default: + auto type = static_cast< uint16_t >( member_entry.type ); + if( type < 0x19 || type > 0x20 ) + throw std::runtime_error( "Unknown DataType: " + std::to_string( type ) ); + uint64_t val = bparse::extract< uint64_t >( iss, "bool" ); + int32_t shift = type - 0x19; + int32_t i = 1 << shift; + val &= i; + fields.emplace_back( ( val & i ) == i ); + break; + } + } + + return pSheet; + + } + // Get a row by its id and sub-row const std::vector< Field > get_row( uint32_t id, uint32_t subRow ); // Get all rows - const std::map< ExdRow, std::vector< Field >, exdRowSort > get_rows(); + const std::map< uint32_t, std::vector< Field>>& get_rows(); protected: + // Data indexed by the ID of the row, the vector is field with the same order as exh.members + std::map< uint32_t, std::vector< Field>> _data; + std::vector< std::shared_ptr< dat::File>> _files; std::shared_ptr< Exh > _exh; std::map< uint32_t, ExdCacheEntry > _idCache; }; } -#endif // XIV_EXD_EXD_H diff --git a/deps/datReader/Exd/Common.h b/deps/datReader/Exd/Common.h new file mode 100644 index 00000000..bc4344af --- /dev/null +++ b/deps/datReader/Exd/Common.h @@ -0,0 +1,103 @@ +#pragma once +namespace Component::Excel +{ + + struct ExcelDataRowHeader + { + uint32_t dataSize; + uint16_t rowCount; + }; + + enum Language : int32_t + { + LANGUAGE_ALL = 0x0, + LANGUAGE_JP = 0x1, + LANGUAGE_EN = 0x2, + LANGUAGE_DE = 0x3, + LANGUAGE_FR = 0x4, + LANGUAGE_CH = 0x5, + LANGUAGE_MAX = 0x6, + }; + + struct StringOffset + { + uint32_t m_offset; + }; + + typedef int32_t LinkList[12]; + +/* struct LinkList::Holder + { + Common::Component::Excel::LinkList m_begin; + Common::Component::Excel::LinkList m_end; + uint32_t m_size; + };*/ + + struct ExcelEntryKey + { + uint32_t m_mainkey; + uint16_t m_hash; + uint16_t m_subkey_info[3]; + }; + + typedef int32_t StringPOD[4]; + + union ExcelCell + { + bool b; + int8_t s8; + uint8_t u8; + int16_t s16; + uint16_t u16; + int32_t s32; + uint32_t u32; + int64_t s64; + uint64_t u64; + float f; + StringPOD str_pod; + StringPOD str_old; + StringOffset str_new; + StringPOD str; + StringOffset str_ofs; + int8_t *bin; + uint8_t boolean0; + uint8_t boolean1; + uint8_t boolean2; + uint8_t boolean3; + uint8_t boolean4; + uint8_t boolean5; + uint8_t boolean6; + uint8_t boolean7; + }; + + using ExdCell = ExcelCell; + + enum CELL_TYPE : uint32_t + { + TYPE_NONE = 0xFFFFFFFF, + TYPE_STR = 0x0, + TYPE_BOOL = 0x1, + TYPE_S8 = 0x2, + TYPE_U8 = 0x3, + TYPE_S16 = 0x4, + TYPE_U16 = 0x5, + TYPE_S32 = 0x6, + TYPE_U32 = 0x7, + TYPE_F16 = 0x8, + TYPE_FLOAT = 0x9, + TYPE_S64 = 0xA, + TYPE_U64 = 0xB, + TYPE_BIN = 0xC, + TYPE_BOOLEAN0 = 0x19, + TYPE_BOOLEAN1 = 0x1A, + TYPE_BOOLEAN2 = 0x1B, + TYPE_BOOLEAN3 = 0x1C, + TYPE_BOOLEAN4 = 0x1D, + TYPE_BOOLEAN5 = 0x1E, + TYPE_BOOLEAN6 = 0x1F, + TYPE_BOOLEAN7 = 0x20, + TYPE_MAX_4 = 0x21, + }; + + +} diff --git a/deps/datReader/Exd/Structs.h b/deps/datReader/Exd/Structs.h new file mode 100644 index 00000000..878876e5 --- /dev/null +++ b/deps/datReader/Exd/Structs.h @@ -0,0 +1,4670 @@ +#pragma once + +#include "Common.h" +#include + +namespace Component::Excel +{ + + template< typename T > + struct ExcelStruct + { + + T _data; + std::vector< std::string > _strings; + + T& data() + { + return _data; + }; + + uint8_t* ptr() + { + return reinterpret_cast< uint8_t* >( &_data ); + }; + + const std::string& getString( Component::Excel::StringOffset offset ) + { + return _strings[ offset.m_offset ]; + }; + }; + + + ///////////////////////////////////////////////////////// + + /* 3746 */ + struct CraftLeve + { + int32_t Leve; + int32_t Talk; + int32_t Item[4]; + uint16_t ItemNum[4]; + uint8_t AdditionalTimes; + bool HQ[4]; + int8_t padding0[3]; + }; + + /* 3747 */ + struct CompleteJournalCategory + { + uint32_t Begin; + uint32_t End; + int32_t SeparateType; + }; + + /* 33329 */ + struct ItemTextStruct + { + Component::Excel::StringOffset SGL; + Component::Excel::StringOffset PLR; + Component::Excel::StringOffset Help; + Component::Excel::StringOffset UIName; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 33331 */ + struct Item + { + ItemTextStruct Text; + uint64_t ModelId; + uint64_t SubModelId; + uint32_t StackMax; + uint32_t CategoryArg; + uint32_t PriceMin; + uint32_t Price; + uint32_t PriceMax; + uint32_t SortId; + int32_t RepairItem; + int32_t MirageItem; + uint16_t Icon; + uint16_t Trait; + uint16_t Damage; + uint16_t MagicDamage; + uint16_t AttackInterval; + uint16_t ShieldRate; + uint16_t ShieldBlockRate; + uint16_t Defense; + uint16_t MagicDefense; + uint16_t RecastTime; + uint16_t Action; + uint16_t Salvage; + int16_t BonusValue[6]; + uint8_t Level; + uint8_t EquipLevel; + uint8_t EquipPvPRank; + uint8_t Category; + uint8_t UICategory; + uint8_t SearchCategory; + uint8_t Rarity; + uint8_t MaterializeType; + uint8_t MateriaSocket; + uint8_t Slot; + uint8_t BonusType[6]; + uint8_t SpecialBonus; + uint8_t SpecialBonusType[6]; + uint8_t Repair; + uint8_t Class; + uint8_t AttackType; + uint8_t AttackRange; + uint8_t CastTime; + uint8_t CondClassJob; + uint8_t Series; + uint8_t SellPriceParam; + uint8_t CondGrandCompany; + uint8_t Role; + int8_t SpecialBonusValue[6]; + bool ConditionRace[5]; + uint8_t DisablePassedOthers : 1; + uint8_t OnlyOne : 1; + uint8_t DisableAbandon : 1; + uint8_t MateriaProhibition : 1; + uint8_t Crest : 1; + uint8_t Stain : 1; + uint8_t Lot : 1; + uint8_t HQ : 1; + uint8_t padding1 : 4; + uint8_t MateriaEffectOnlyInPvP : 1; + uint8_t ConditionFemale : 1; + uint8_t ConditionMale : 1; + uint8_t DisableSameAccount : 1; + int8_t padding2[6]; + }; + + /* 35156 */ + struct AddonTextStruct + { + Component::Excel::StringOffset Text; + }; + + /* 35157 */ + struct Addon + { + AddonTextStruct Text; + }; + + /* 35338 */ + struct InstanceContentTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 35339 */ + struct InstanceContentRewardStruct + { + uint32_t BeginnerBonusGil; + uint32_t BeginnerBonusExp; + uint32_t TotalExp; + uint32_t TotalGil; + uint32_t Unknown; + uint16_t BeginnerBonusA; + uint16_t ClearA; + uint16_t ClearB; + uint16_t MiddleA[17]; + }; + + /* 35340 */ + struct InstanceContent + { + InstanceContentTextStruct Text; + InstanceContentRewardStruct Reward; + uint8_t Unknown1; + uint32_t StartCutscene; + uint32_t EntranceRect; + uint32_t TerritoryType; + uint32_t Image; + uint32_t BossMessage[2]; + uint32_t BossName; + uint32_t ContentTextStart; + uint32_t ContentTextEnd; + int32_t InstanceBuff; + int32_t Unknown2; + uint16_t Time; + uint16_t Music; + uint16_t ClearMusic; + uint16_t Sortkey; + uint8_t Unknown3; + uint8_t Type; + uint8_t RandomContentType; + uint8_t RewardType; + uint8_t FinderPartyCondition; + uint8_t LevelMin; + uint8_t LevelMax; + uint8_t PartyMemberCount; + uint8_t PartyCount; + uint8_t TankCount; + uint8_t HealerCount; + uint8_t AttackerCount; + uint8_t RangeCount; + uint8_t ItemLevel; + uint8_t ItemLevelMax; + uint8_t ProgressMax; + int8_t TreasureObtainedFlag; + uint8_t padding1 : 2; + uint8_t DisableHalfwayProgress : 1; + uint8_t Halfway : 1; + uint8_t EnableFinder : 1; + uint8_t DifferentiateDPS : 1; + uint8_t Alliance : 1; + uint8_t FreeRole : 1; + uint8_t Unknown4; + }; + + /* 63505 */ + struct ClassJobTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Abbreviation; + Component::Excel::StringOffset NameFemale; + }; + + /* 63506 */ + struct ClassJob + { + ClassJobTextStruct Text; + int8_t padding0[4]; + uint64_t ModelJobStone; + Component::Excel::StringOffset EnText; + uint32_t Unknown; + uint32_t Unknown1; + uint32_t Unknown2; + int32_t InitWeapon[2]; + + uint16_t Hp; + uint16_t Mp; + uint16_t STR; + uint16_t VIT; + uint16_t DEX; + uint16_t INT_; + uint16_t MND; + uint16_t PIE; + uint16_t Element[6]; + uint16_t LimitBreakAction[3]; + uint16_t Unknown3; + uint16_t Unknown4; + uint16_t Unknown5; + uint8_t Kind; + uint8_t MainClass; + + uint8_t Role; + uint8_t Town; + uint8_t PartyBuff; + uint8_t UIPriority; + + int8_t MonsterNote; + int8_t BattleClassIndex; + int8_t WorkIndex; + uint8_t padding1 : 7; + uint8_t IsJob : 1; + + }; + + /* 63507 */ + struct TribeTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset NameFemale; + }; + + /* 63508 */ + struct Tribe + { + TribeTextStruct Text; + int8_t Hp; + int8_t Mp; + int8_t STR; + int8_t VIT; + int8_t DEX; + int8_t INT_; + int8_t MND; + int8_t PIE; + }; + + /* 66076 */ + struct ActionTimeline + { + Component::Excel::StringOffset Filename; + uint8_t Type; + uint8_t Priority; + uint8_t Stance; + uint8_t Slot; + uint8_t LookAtMode; + uint8_t ActionTimelineEIDMode; + uint8_t WeaponTimeline; + uint8_t LoadType; + uint8_t StartAttach; + uint8_t padding0 : 2; + uint8_t Pause : 1; + uint8_t ResidentPap : 1; + uint8_t Resident : 1; + uint8_t KillUpper : 1; + uint8_t IsMotionCanceledByMoving : 1; + uint8_t IsLoop : 1; + int8_t padding1[2]; + }; + + /* 67373 */ + struct ActionTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Help; + }; + + /* 67374 */ + struct Action + { + ActionTextStruct Text; + uint32_t Reward; + uint16_t Icon; + uint16_t CastTimeline; + uint16_t HitTimeline; + uint16_t CostValue; + uint16_t CondArg; + uint16_t ComboParent; + uint16_t CastTime; + uint16_t RecastTime; + uint16_t ResetStatus; + int16_t Timeline; + uint8_t Category; + uint8_t CastVFX; + uint8_t ArcherTimeline; + uint8_t Level; + uint8_t EffectType; + uint8_t EffectRange; + uint8_t EffectWidth; + uint8_t CostType; + uint8_t Cond; + uint8_t RecastGroup; + uint8_t Element; + uint8_t ProcStatus; + uint8_t UseClassJob; + uint8_t Init; + uint8_t Omen; + int8_t Learn; + int8_t SelectRange; + int8_t SelectCorpse; + int8_t AttackType; + uint8_t SelectMyPet : 1; + uint8_t SelectGround : 1; + uint8_t SelectENpc : 1; + uint8_t SelectOthers : 1; + uint8_t SelectEnemy : 1; + uint8_t SelectAlliance : 1; + uint8_t SelectParty : 1; + uint8_t SelectMyself : 1; + uint8_t PvPOnly : 1; + uint8_t InvalidMove : 1; + uint8_t Silence : 1; + uint8_t ComboContinue : 1; + uint8_t EffectEnemy : 1; + uint8_t CheckDir : 1; + uint8_t Lay : 1; + uint8_t SelectPartyPet : 1; + uint8_t IsTargetLine : 1; + uint8_t HideCastBar : 1; + uint8_t ForceVFX : 1; + uint8_t LogExec : 1; + uint8_t LogMiss : 1; + uint8_t LogCast : 1; + uint8_t IsMove : 1; + uint8_t IsAvoid : 1; + int8_t padding0[1]; + }; + + /* 75653 */ + struct Recipe + { + int32_t CraftType; + int32_t CraftItemId; + int32_t MaterialItemId[8]; + int32_t CrystalType[2]; + int32_t NeedStatus; + int32_t NeedEquipItem; + uint16_t Category; + uint16_t WorkRate; + uint16_t QualityRate; + uint16_t MaterialPointRate; + uint16_t NotebookIndex; + uint16_t NeedCraftmanship; + uint16_t NeedControl; + uint16_t NeedSecretRecipeBook; + uint8_t Level; + uint8_t CraftNum; + uint8_t MaterialNum[8]; + uint8_t CrystalNum[2]; + uint8_t Element; + uint8_t padding0 : 5; + uint8_t CanHq : 1; + uint8_t CanAutoCraft : 1; + uint8_t Sub : 1; + int8_t padding1[2]; + }; + + /* 75654 */ + struct RecipeLevelTable + { + uint16_t WorkMax; + uint16_t QualityMax; + uint16_t MaterialPoint; + int8_t padding0[2]; + }; + + /* 86192 */ + struct EventItemTextStruct + { + Component::Excel::StringOffset SGL; + Component::Excel::StringOffset PLR; + Component::Excel::StringOffset Help; + Component::Excel::StringOffset UIName; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 86193 */ + struct EventItem + { + EventItemTextStruct Text; + uint32_t EventHandler; + int32_t CastTimeline; + int32_t Timeline; + uint16_t Icon; + uint16_t Action; + uint8_t StackMax; + uint8_t CastTime; + int8_t padding1[2]; + }; + + /* 100766 */ + struct WeatherTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 100767 */ + struct Weather + { + WeatherTextStruct Text; + int32_t Icon; + }; + + /* 139964 */ + struct WeaponTimeline + { + Component::Excel::StringOffset File; + int16_t NextWeaponTimeline; + int8_t padding0[2]; + }; + + /* 161452 */ + struct MotionTimeline + { + Component::Excel::StringOffset filename; + uint8_t BlendGroup; + uint8_t padding0 : 5; + uint8_t IsLipEnable : 1; + uint8_t IsBlinkEnable : 1; + uint8_t IsLoop : 1; + int8_t padding1[2]; + }; + + /* 175281 */ + struct ExclusionPreloadStruct + { + int32_t Timeline; + }; + + /* 195074 */ + struct CharaMakeTypeLooksStruct + { + uint32_t Menu; + uint32_t SubMenuMask; + uint32_t Customize; + uint32_t SubMenuParam[28]; + uint32_t SubMenuGraphic[28]; + uint8_t InitVal; + uint8_t SubMenuType; + uint8_t SubMenuNum; + uint8_t LookAt; + }; + + /* 195075 */ + struct CharaMakeTypeVoiceStruct + { + uint8_t SEPackId[12]; + }; + + /* 195076 */ + struct CharaMakeTypeFaceOptionStruct + { + int32_t Option[7]; + }; + + /* 195077 */ + struct CharaMakeTypeEquipStruct + { + uint64_t Helmet; + uint64_t Top; + uint64_t Glove; + uint64_t Down; + uint64_t Shoes; + uint64_t Weapon; + uint64_t SubWeapon; + }; + + /* 195078 */ + struct CharaMakeType + { + CharaMakeTypeLooksStruct Looks[28]; + CharaMakeTypeVoiceStruct Voice; + CharaMakeTypeFaceOptionStruct FaceOption[6]; + int8_t padding0[4]; + CharaMakeTypeEquipStruct Equip[3]; + int32_t Race; + int32_t Tribe; + int8_t Gender; + int8_t padding1[7]; + }; + + struct BNpcCustomize + { + uint8_t race; + uint8_t gender; + uint8_t bodyType; + uint8_t height; + uint8_t tribe; + uint8_t face; + uint8_t hairStyle; + uint8_t hairHighlight; + uint8_t skinColor; + uint8_t eyeHeterochromia; + uint8_t hairColor; + uint8_t hairHighlightColor; + uint8_t facialFeature; + uint8_t facialFeatureColor; + uint8_t eyebrows; + uint8_t eyeColor; + uint8_t eyeShape; + uint8_t nose; + uint8_t jaw; + uint8_t mouth; + uint8_t lipColor; + uint8_t bustOrTone1; + uint8_t extraFeature1; + uint8_t extraFeature2OrBust; + uint8_t facePaint; + uint8_t facePaintColor; + uint8_t padding1; + uint8_t padding2; + }; + + /* 195079 */ + struct HairMakeTypeLooksStruct + { + uint32_t Menu; + uint32_t SubMenuMask; + uint32_t Customize; + uint32_t SubMenuParam[40]; + uint32_t SubMenuGraphic[28]; + uint8_t InitVal; + uint8_t SubMenuType; + uint8_t SubMenuNum; + uint8_t LookAt; + }; + + /* 195080 */ + struct HairMakeTypeFaceOptionStruct + { + int32_t Option[7]; + }; + + /* 195081 */ + struct HairMakeType + { + HairMakeTypeLooksStruct Looks[9]; + HairMakeTypeFaceOptionStruct FaceOption[6]; + int32_t Race; + int32_t Tribe; + int8_t Gender; + int8_t padding0[3]; + }; + + /* 195083 */ + struct CharaMakeCustomize + { + uint32_t Icon; + uint8_t Graphic; + uint8_t NeedReward; + int8_t padding0[2]; + }; + + /* 195168 */ + struct EmoteTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 195169 */ + struct Emote + { + EmoteTextStruct Text; + int32_t TimelineID; + int32_t TimelineID_Begin; + int32_t TimelineID_End; + int32_t TimelineID_GroundSitting; + int32_t TimelineID_ChairSitting; + int32_t TimelineID_Mounting; + int32_t TimelineID_Lying; + int32_t TimelineID_Adjust; + int32_t TextCommand; + uint16_t Icon; + uint16_t Log; + uint16_t LogSelf; + uint8_t Category; + uint8_t Mode; + uint8_t UI_Priority; + uint8_t Reward; + uint8_t IsLoopEmote : 1; + uint8_t IsPoseEmote : 1; + uint8_t IsAvailableWhenFishing : 1; + uint8_t IsAvailableWhenDrawn : 1; + uint8_t IsAvailableWhenNotDrawn : 1; + uint8_t IsFacial : 1; + uint8_t IsRotate : 1; + uint8_t IsEndEmoteMode : 1; + int8_t padding0[1]; + }; + + /* 195171 */ + struct AetheryteTextStruct + { + Component::Excel::StringOffset SGL; + Component::Excel::StringOffset PLR; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 195172 */ + struct Aetheryte + { + AetheryteTextStruct Text; + int32_t EventHandler; + uint32_t PopRange[4]; + uint16_t TelepoName; + uint16_t TransferName; + uint16_t TerritoryType; + int16_t CostPosX; + int16_t CostPosY; + uint8_t Town; + uint8_t SortKey; + uint8_t TextIcon; + uint8_t Telepo : 7; + uint8_t padding1 : 1; + int8_t padding2[2]; + }; + + /* 195176 */ + struct TerritoryType + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset LVB; + uint32_t EventHandler; + int32_t RegionIcon; + int32_t AreaIcon; + int32_t Aetheryte; + int32_t FixedTime; + uint16_t Region; + uint16_t SubRegion; + uint16_t Area; + uint16_t Map; + uint16_t BGM; + uint16_t QuestBattle; + uint8_t BattalionMode; + uint8_t ExclusiveType; + uint8_t IntendedUse; + uint8_t Breath; + uint8_t Unknown; + uint8_t Resident; + uint8_t Unknown1; + uint8_t Unknown2; + uint8_t Unknown3; + int8_t TreasureObtainedFlag; + int8_t AchievementIndex; + uint8_t padding0 : 4; + uint8_t IsPvPAction : 1; + uint8_t Mount : 1; + uint8_t Stealth : 1; + uint8_t PCSearch : 1; + }; + + /* 195177 */ + struct ItemUICategoryTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 195178 */ + struct ItemUICategory + { + ItemUICategoryTextStruct Text; + int32_t Icon; + uint8_t Priority; + uint8_t Kind; + int8_t padding0[2]; + }; + + /* 195791 */ + struct MovieSubtitleTimeStruct + { + float StartTime; + float EndTime; + }; + + /* 195792 */ + struct MovieSubtitle + { + MovieSubtitleTimeStruct Time; + }; + + /* 195793 */ + struct HowToTextStruct + { + Component::Excel::StringOffset Title; + }; + + /* 195794 */ + struct HowTo + { + HowToTextStruct Text; + int16_t Page[5]; + int16_t PagePad[5]; + uint8_t SortId; + int8_t Category; + uint8_t padding0 : 7; + uint8_t Announce : 1; + int8_t padding1[1]; + }; + + /* 195795 */ + struct AchievementTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Help; + }; + + /* 195796 */ + struct Achievement + { + AchievementTextStruct Text; + uint32_t Item; + int32_t ConditionArg[9]; + uint16_t Title; + uint16_t Icon; + uint16_t Priority; + uint8_t Category; + uint8_t Point; + uint8_t ConditionType; + uint8_t Detail; + int8_t padding0[2]; + }; + + /* 200982 */ + struct Jingle + { + Component::Excel::StringOffset Path; + }; + + /* 200983 */ + struct ScreenImage + { + uint32_t Image; + int8_t Jingle; + int8_t Type; + uint8_t padding0 : 7; + uint8_t Lang : 1; + int8_t padding1[1]; + }; + + /* 200984 */ + struct CutScreenImage + { + int32_t Type; + int32_t Icon; + }; + + /* 200985 */ + struct GeneralActionTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Help; + }; + + /* 200986 */ + struct GeneralAction + { + GeneralActionTextStruct Text; + int32_t Icon; + uint16_t Action; + uint8_t Reward; + uint8_t Recast; + uint8_t UIPriority; + int8_t padding0[3]; + }; + + /* 200987 */ + struct CraftActionTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Help; + }; + + /* 200988 */ + struct CraftAction + { + CraftActionTextStruct Text; + int32_t Action[8]; + uint16_t Timeline; + uint16_t SubTimeline; + uint16_t Icon; + uint8_t UseClassJob; + uint8_t Lv; + uint8_t CostCP; + int8_t ClassJob; + int8_t padding0[2]; + }; + + /* 200989 */ + struct TraitTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Help; + }; + + /* 200990 */ + struct Trait + { + TraitTextStruct Text; + int32_t Icon; + uint16_t Reward; + int16_t ParamValue; + uint8_t ClassJob; + uint8_t Level; + uint8_t PvPSkillPoint; + uint8_t UseClass; + uint8_t padding0 : 7; + uint8_t PvPOnly : 1; + int8_t padding1[3]; + }; + + /* 200991 */ + struct FCRightsTextStruct + { + Component::Excel::StringOffset Text; + Component::Excel::StringOffset Help; + }; + + /* 200992 */ + struct FCRights + { + FCRightsTextStruct RightsName; + uint16_t Icon; + uint8_t SortId; + int8_t padding0[1]; + }; + + /* 200993 */ + struct GrandCompanyRank + { + uint32_t CSMax; + uint32_t NextCS; + int32_t IconOfLimsa; + int32_t IconOfGridania; + int32_t IconOfUldah; + int32_t RankUpQuestOfLimsa; + int32_t RankUpQuestOfGridania; + int32_t RankUpQuestOfUldah; + uint8_t RankCategory; + uint8_t LinearRank; + uint8_t RankOfMonsterNoteCondition; + int8_t padding0[1]; + }; + + /* 200994 */ + struct MonsterNoteTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 200995 */ + struct MonsterNote + { + MonsterNoteTextStruct Text; + uint32_t RewardExp; + uint16_t Target[4]; + uint8_t NeededKills[4]; + }; + + /* 200996 */ + struct MonsterNoteTarget + { + int32_t Icon; + uint16_t Monster; + uint16_t ZoneName[3]; + uint16_t AreaName[3]; + uint8_t Town; + int8_t padding0[1]; + }; + + /* 200997 */ + struct ParamGrow + { + int32_t NextExp; + int32_t Mp; + int32_t ParamBase; + int32_t ParamBaseRating; + int32_t MonsterNoteExp; + int32_t MonsterNoteSeals; + uint16_t PhysicalBonus; + uint16_t BaseExp; + uint16_t RepairExp; + uint16_t ProperDungeon; + uint16_t ProperGuildOrder; + uint8_t ApplyAction; + uint8_t PhysicalBonusLimit; + uint8_t EventExpRate; + int8_t padding0[3]; + }; + + /* 201000 */ + struct BuddySkill + { + uint16_t Line[3]; + uint8_t Point; + uint8_t padding0 : 7; + uint8_t IsActive : 1; + }; + + /* 201001 */ + struct PetActionTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Help; + }; + + /* 201002 */ + struct PetAction + { + PetActionTextStruct Text; + int32_t Icon; + uint16_t Action; + uint8_t Pet; + uint8_t padding0 : 6; + uint8_t DisableOrder : 1; + uint8_t MasterOrder : 1; + }; + + /* 201003 */ + struct EquipSlotCategoryTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 201004 */ + struct EquipSlotCategory + { + EquipSlotCategoryTextStruct Text; + int8_t Permit[14]; + int8_t padding0[2]; + }; + + /* 201006 */ + struct Stain + { + uint32_t Color; + uint32_t Item; + uint8_t Category; + int8_t padding0[3]; + }; + + /* 201007 */ + struct MarkerTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 201008 */ + struct Marker + { + MarkerTextStruct Text; + int32_t Icon; + }; + + /* 201009 */ + struct BuddyActionTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Help; + }; + + /* 201010 */ + struct BuddyAction + { + BuddyActionTextStruct Text; + int32_t Icon; + int32_t StatusIcon; + uint8_t Reward; + int8_t padding0[3]; + }; + + /* 201011 */ + struct MainCommandTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Help; + }; + + /* 201012 */ + struct MainCommand + { + MainCommandTextStruct Text; + int32_t Icon; + uint8_t ActionMenu; + uint8_t Category; + int8_t SortId; + int8_t padding0[1]; + }; + + /* 201013 */ + struct FieldMarkerTextStruct + { + Component::Excel::StringOffset Help; + }; + + /* 201014 */ + struct FieldMarker + { + FieldMarkerTextStruct Text; + int32_t VFX; + uint16_t Icon; + int8_t padding0[2]; + }; + + /* 201015 */ + struct CompanionTextStruct + { + Component::Excel::StringOffset SGL; + Component::Excel::StringOffset PLR; + Component::Excel::StringOffset Help; + Component::Excel::StringOffset Expository; + Component::Excel::StringOffset Cry; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 201016 */ + struct Companion + { + CompanionTextStruct Text; + uint16_t Model; + uint16_t Icon; + uint16_t Enemy; + uint16_t Priority; + uint8_t Scale; + uint8_t InactiveIdle[2]; + uint8_t InactiveBattle; + uint8_t InactiveWandering; + uint8_t MoveType; + uint8_t Special; + uint8_t WanderingWait; + uint8_t ChatGroup; + uint8_t padding1 : 2; + uint8_t Roulette : 1; + uint8_t Battle : 1; + uint8_t LookAt : 1; + uint8_t Poke : 1; + uint8_t Stroke : 1; + uint8_t Clapping : 1; + int8_t padding2[2]; + }; + + /* 201017 */ + struct MountTextStruct + { + Component::Excel::StringOffset SGL; + Component::Excel::StringOffset PLR; + Component::Excel::StringOffset Help; + Component::Excel::StringOffset Expository; + Component::Excel::StringOffset Cry; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 201018 */ + struct Mount + { + MountTextStruct Text; + Component::Excel::StringOffset CallSE; + Component::Excel::StringOffset CallFalseSE; + Component::Excel::StringOffset ExitSE; + float Slowdown; + float MoveAccel_Run; + float MoveAccel_Walk; + float MoveSpeed_Run; + float MoveSpeed_Walk; + float MoveSpeed_RunLR; + float MoveSpeed_WalkLR; + float MoveSpeed_Back; + float RotateSpeed_FFXIV; + float RotateSpeed_WOW; + float RotateSpeed_AutoRun; + float RotateSpeed_LockOn; + float RotateAccel_FFXIVRun; + float RotateAccel_FFXIVWalk; + float RotateAccel_LockOn; + float BattleMoveSpeed_Run; + float BattleMoveSpeed_RunLR; + float BattleMoveSpeed_Back; + float ScaleMale[6]; + float ScaleFemale[6]; + int32_t Model; + int32_t EquipHead; + int32_t EquipBody; + int32_t EquipLeg; + int32_t EquipFoot; + uint16_t BGM; + uint16_t Icon; + uint16_t Action[2]; + uint8_t ExitMoveDist; + uint8_t ExitMoveSpeed; + uint8_t UIPriority; + uint8_t RadiusRate; + uint8_t BaseMotionSpeed_Run; + uint8_t BaseMotionSpeed_Walk; + uint8_t LinkNum; + int8_t SaveIndex; + uint8_t padding1 : 5; + uint8_t ExHotbarEnableConfig : 1; + uint8_t IsFloat : 1; + uint8_t IsEmote : 1; + int8_t padding2[3]; + }; + + /* 201019 */ + struct OnlineStatusTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 201020 */ + struct OnlineStatus + { + OnlineStatusTextStruct Text; + uint32_t Icon; + uint8_t ListOrder; + uint8_t padding0 : 7; + uint8_t List : 1; + int8_t padding1[2]; + }; + + /* 201021 */ + struct TitleTextStruct + { + Component::Excel::StringOffset Male; + Component::Excel::StringOffset Female; + uint8_t padding0 : 7; + uint8_t Front : 1; + int8_t padding1[3]; + }; + + /* 201022 */ + struct Title + { + TitleTextStruct Text; + }; + + /* 201023 */ + struct ENpcTextStruct + { + Component::Excel::StringOffset SGL; + Component::Excel::StringOffset PLR; + Component::Excel::StringOffset Title; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 201024 */ + struct ENpcResident + { + ENpcTextStruct Text; + uint8_t PopType; + int8_t padding1[3]; + }; + + /* 201025 */ + struct PatchMark + { + int32_t MarkID; + uint16_t SubCategory; + uint16_t Version; + uint8_t SubCategoryType; + int8_t Category; + int8_t padding0[2]; + }; + + /* 201026 */ + struct LogFilterTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Help; + }; + + /* 201027 */ + struct LogFilter + { + LogFilterTextStruct Text; + uint16_t Caster; + uint16_t Target; + uint8_t LogKind; + uint8_t Category; + uint8_t DisplayOrder; + uint8_t Preset; + }; + + /* 201028 */ + struct Cabinet + { + int32_t Item; + uint16_t Priority; + uint8_t Category; + int8_t padding0[1]; + }; + + /* 201029 */ + struct PlaceNameTextStruct + { + Component::Excel::StringOffset SGL; + Component::Excel::StringOffset PLR; + Component::Excel::StringOffset SWT; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 201030 */ + struct PlaceName + { + PlaceNameTextStruct Text; + uint8_t LocationTitle; + int8_t padding1[3]; + }; + + /* 201031 */ + struct InfoError + { + int32_t Message; + }; + + /* 201032 */ + struct FCRank + { + uint32_t NextPoint; + uint32_t CurrentPoint; + uint16_t Rights[3]; + uint8_t FCActionActiveNum; + uint8_t FCActionStockNum; + uint8_t FCChestBoxNum; + int8_t padding0[3]; + }; + + /* 201033 */ + struct FCDefine + { + int32_t Value; + }; + + /* 201034 */ + struct FCHierarchyTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 201035 */ + struct FCHierarchy + { + FCHierarchyTextStruct Text; + }; + + /* 201036 */ + struct FCReputationTextStruct + { + Component::Excel::StringOffset Text; + }; + + /* 201037 */ + struct FCReputation + { + FCReputationTextStruct Name; + uint32_t NextPoint; + uint32_t CurrentPoint; + uint32_t Color; + uint8_t DiscountRate; + int8_t padding0[3]; + }; + + /* 201038 */ + struct TownTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 201039 */ + struct Town + { + TownTextStruct Name; + int32_t Icon; + }; + + /* 201040 */ + struct TerritoryIntendedUse + { + uint8_t BuzzType; + uint8_t EnableReturn : 1; + uint8_t EnableTeleport : 1; + uint8_t ImmediatelyLogout : 1; + uint8_t EnablePet : 1; + uint8_t EnableBuddy : 1; + uint8_t ClassJobChange : 1; + uint8_t Repair : 1; + uint8_t Craft : 1; + uint8_t padding0 : 1; + uint8_t RecastPenalty : 1; + uint8_t EnableAction : 1; + uint8_t SELimit : 1; + uint8_t EnableDiscoveryNotification : 1; + uint8_t EnableRecommend : 1; + uint8_t EnableHomePoint : 1; + uint8_t EnableCompanion : 1; + int8_t padding1[1]; + }; + + /* 223113 */ + struct BNpcTextStruct + { + Component::Excel::StringOffset SGL; + Component::Excel::StringOffset PLR; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 223114 */ + struct BNpcName + { + BNpcTextStruct Text; + }; + + /* 223115 */ + struct EObjTextStruct + { + Component::Excel::StringOffset SGL; + Component::Excel::StringOffset PLR; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 223116 */ + struct EObj + { + EObjTextStruct Text; + float EventHighAddition; + uint32_t EventHandler; + uint16_t SharedGroup; + uint8_t PopType; + uint8_t Invisibility; + uint8_t padding1 : 5; + uint8_t EyeCollision : 1; + uint8_t DirectorControl : 1; + uint8_t Target : 1; + int8_t padding2[3]; + }; + + /* 223117 */ + struct TreasureTextStruct + { + Component::Excel::StringOffset SGL; + Component::Excel::StringOffset PLR; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 223118 */ + struct Treasure + { + TreasureTextStruct Text; + int32_t Type; + int32_t KeyItem; + int32_t Model; + int32_t Item; + int32_t SubItem; + int32_t SharedGroup; + uint8_t Zone; + uint8_t Rate; + int8_t padding1[2]; + }; + + /* 223119 */ + struct ExportedSG + { + Component::Excel::StringOffset SGFilePath; + }; + + /* 223120 */ + struct Festival + { + Component::Excel::StringOffset name; + }; + + /* 228343 */ + struct PhysicsWind + { + float Threshold; + float Amplitude; + float AmplitudeFrequency; + float PowerMin; + float PowerMax; + float PowerFrequency; + }; + + /* 240362 */ + struct ModelSkeleton + { + float Radius; + float Height; + float VFXScale; + float FootScale; + float WalkSpeed; + float RunSpeed; + float FloatHeight[2]; + float FloatDown; + float FloatUp; + uint8_t MotionBlendType; + uint8_t AutoAttackType; + uint8_t padding0 : 7; + uint8_t LoopFlySE : 1; + int8_t padding1[1]; + }; + + /* 257957 */ + struct WorldTextStruct + { + Component::Excel::StringOffset Help; + }; + + /* 257958 */ + struct World + { + WorldTextStruct Text; + Component::Excel::StringOffset Name; + uint8_t UserType; + uint8_t DCGroup; + uint8_t padding0 : 7; + uint8_t Public : 1; + int8_t padding1[1]; + }; + + /* 258037 */ + struct GuardianDeityTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Help; + }; + + /* 258038 */ + struct GuardianDeity + { + GuardianDeityTextStruct Text; + uint16_t Icon; + int8_t padding0[2]; + }; + + /* 258039 */ + struct MainCommandCategoryTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 258040 */ + struct MainCommandCategory + { + MainCommandCategoryTextStruct Text; + int32_t Icon; + }; + + /* 258042 */ + struct CharaMakeClassEquip + { + uint64_t Helmet; + uint64_t Top; + uint64_t Glove; + uint64_t Down; + uint64_t Shoes; + uint64_t Weapon; + uint64_t SubWeapon; + int32_t Class; + int8_t padding0[4]; + }; + + /* 258043 */ + struct CharaMakeNameTextStruct + { + Component::Excel::StringOffset HuM_M_; + Component::Excel::StringOffset HuM_F_; + Component::Excel::StringOffset HuM_L_; + Component::Excel::StringOffset HuH_M_; + Component::Excel::StringOffset HuH_F_; + Component::Excel::StringOffset HuH_L_; + Component::Excel::StringOffset El_M_; + Component::Excel::StringOffset El_F_; + Component::Excel::StringOffset ElF_L_; + Component::Excel::StringOffset ElS_L_; + Component::Excel::StringOffset MqS_M_; + Component::Excel::StringOffset MqS_F_; + Component::Excel::StringOffset MqS_ML_; + Component::Excel::StringOffset MqS_FL_; + Component::Excel::StringOffset MqM_M_; + Component::Excel::StringOffset MqM_F_; + Component::Excel::StringOffset MqM_L_; + Component::Excel::StringOffset LaP_MF_; + Component::Excel::StringOffset LaP_ML_; + Component::Excel::StringOffset LaP_MR_; + Component::Excel::StringOffset LaD_MN_; + Component::Excel::StringOffset LaD_MR_; + Component::Excel::StringOffset LaD_FN_; + Component::Excel::StringOffset LaD_FR_; + Component::Excel::StringOffset RoZ_MF_; + Component::Excel::StringOffset RoZ_ML_; + Component::Excel::StringOffset RoZ_FF_; + Component::Excel::StringOffset RoZ_FL_; + Component::Excel::StringOffset RoR_F_; + Component::Excel::StringOffset RoR_ML_; + Component::Excel::StringOffset RoR_FL_; + }; + + /* 258044 */ + struct CharaMakeName + { + CharaMakeNameTextStruct TEXT; + }; + + /* 258046 */ + struct LobbyTextStruct + { + Component::Excel::StringOffset Text; + Component::Excel::StringOffset Sub; + Component::Excel::StringOffset Help; + }; + + /* 258047 */ + struct Lobby + { + LobbyTextStruct TEXT; + uint32_t TYPE; + uint32_t PARAM; + uint32_t LINK; + }; + + /* 258048 */ + struct CalendarDaysStruct + { + uint8_t Month; + uint8_t Day; + }; + + /* 258049 */ + struct Calendar + { + CalendarDaysStruct Days[32]; + }; + + /* 258050 */ + struct WorldDCGroupType + { + Component::Excel::StringOffset Name; + }; + + /* 264223 */ + struct MapSymbol + { + int32_t Icon; + int32_t Name; + uint8_t padding0 : 7; + uint8_t DisplayNavi : 1; + int8_t padding1[3]; + }; + + /* 264224 */ + struct ItemAction + { + uint16_t Action; + uint16_t Calcu0Arg[3]; + uint16_t Calcu1Arg[3]; + uint16_t Calcu2Arg[3]; + uint16_t HQCalcu0Arg[3]; + uint16_t HQCalcu1Arg[3]; + uint16_t HQCalcu2Arg[3]; + uint8_t CondLv; + uint8_t padding0 : 5; + uint8_t CondPVPOnly : 1; + uint8_t CondPVP : 1; + uint8_t CondBattle : 1; + }; + + /* 264225 */ + struct Materia + { + int32_t Item[10]; + uint8_t Param; + int8_t ParamValue[10]; + int8_t padding0[1]; + }; + + /* 264226 */ + struct ClassJobCategoryTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264227 */ + struct ClassJobCategory + { + ClassJobCategoryTextStruct Text; + bool ClassJob[31]; + int8_t padding0[1]; + }; + + /* 264228 */ + struct RetainerTask + { + int32_t Exp; + uint16_t TipCost; + uint16_t Time; + uint16_t CondItemLv; + uint16_t ParamA; + uint16_t ParamB; + uint16_t TaskNum; + uint8_t Category; + uint8_t Level; + uint8_t CondParamA; + uint8_t CondParamB; + uint8_t padding0 : 7; + uint8_t IsRandom : 1; + int8_t padding1[3]; + }; + + /* 264229 */ + struct HowToPageTextStruct + { + Component::Excel::StringOffset Text[3]; + }; + + /* 264230 */ + struct HowToPage + { + HowToPageTextStruct Text; + int32_t Icon; + uint8_t Type; + uint8_t IconKind; + uint8_t TextKind; + int8_t padding0[1]; + }; + + /* 264231 */ + struct Map + { + Component::Excel::StringOffset Path; + uint32_t DiscoveryFlag; + uint16_t Unknown; + uint16_t Scale; + uint16_t CategoryNameUI; + uint16_t NameUI; + uint16_t FloorNameUI; + uint16_t TerritoryType; + int16_t Unknown1; + int16_t Unknown2; + int16_t DiscoveryIndex; + uint8_t PriorityCategoryUI; + uint8_t PriorityUI; + uint8_t MapType; + int8_t PriorityFloorUI; + uint8_t IsUint16Discovery : 6; + uint8_t IsEvent : 1; + uint8_t padding0 : 1; + int8_t padding1[1]; + }; + + /* 264233 */ + struct ContentsNoteTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Help; + }; + + /* 264234 */ + struct ContentsNote + { + ContentsNoteTextStruct Text; + int32_t CondArg; + int32_t RewardArg[2]; + uint16_t OpenLevel; + uint16_t OpenHowTo; + uint8_t Category; + uint8_t UIPriority; + uint8_t Reward[2]; + }; + + /* 264240 */ + struct FCActivityTextStruct + { + Component::Excel::StringOffset Text; + }; + + /* 264241 */ + struct FCActivity + { + FCActivityTextStruct Text; + uint8_t SelfKind; + uint8_t TargetKind; + uint8_t NumParam; + uint8_t Category; + int8_t IconType; + int8_t padding0[3]; + }; + + /* 264318 */ + struct QuestTodoStruct + { + uint32_t Marker[8]; + uint8_t TodoSequence; + uint8_t CountableNum; + int8_t padding0[2]; + }; + + /* 264319 */ + struct QuestTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264320 */ + struct QuestDefineStruct + { + Component::Excel::StringOffset Name; + uint32_t Value; + }; + + /* 264321 */ + struct QuestEventListenerStruct + { + uint32_t Listener; + uint32_t ConditionValue; + uint16_t Behavior; + uint8_t Sequence; + uint8_t Todo; + uint8_t Event; + uint8_t ConditionType; + uint8_t ConditionOperator; + uint8_t VisibleCallback : 1; + uint8_t ConditionCallback : 1; + uint8_t BehaviorCallback : 1; + uint8_t ItemCallback : 1; + uint8_t TargetingPossibleCallback : 1; + uint8_t QualifiedCallback : 1; + uint8_t AnnounceCallback : 1; + uint8_t AcceptCallback : 1; + }; + + /* 264322 */ + struct QuestRewardStruct + { + uint32_t Gil; + uint32_t Item[7]; + uint32_t OptionalItem[5]; + uint32_t InstanceContent; + uint32_t AllaganTomestoneType; + uint16_t ExpBonus; + uint16_t CompanyPointNum; + uint16_t Action; + uint16_t System[4]; + uint8_t CompanyPointType; + uint8_t CrystalType[3]; + uint8_t CrystalNum[3]; + uint8_t ItemArrayType; + uint8_t ItemNum[6]; + uint8_t ItemStainId[6]; + uint8_t OptionalItemNum[5]; + uint8_t OptionalItemStainId[5]; + uint8_t Emote; + uint8_t GeneralAction[2]; + uint8_t AllaganTomestoneNum; + uint8_t BeastReputationValueNum; + int8_t padding1[3]; + }; + + /* 264323 */ + struct Quest + { + QuestTextStruct Text; //4 + QuestDefineStruct Define[50]; // 194 + QuestEventListenerStruct EventListener[64]; // 594 + QuestTodoStruct QuestTodo[24]; // 8f4 + QuestRewardStruct Reward; + Component::Excel::StringOffset Script; + uint32_t PrevQuest[3]; + uint32_t ExcludeQuest[2]; + uint32_t InstanceContent[3]; + uint32_t Client; + uint32_t Finish; + uint32_t Header; + uint32_t Inlay; + int32_t Mount; + uint16_t ClassLevel; + uint16_t ClassLevel2; + uint16_t AcquiredReward; + uint16_t TimeBegin; + uint16_t TimeEnd; + uint16_t BeastReputationValue; + uint16_t ClientBehavior; + uint16_t Area; + uint16_t Sort; + uint8_t ClassJob; + uint8_t QuestLevelOffset; + uint8_t ClassJob2; + uint8_t PrevQuestOperator; + uint8_t ExcludeQuestOperator; + uint8_t StartTown; + uint8_t FirstClassOperator; + uint8_t FirstClass; + uint8_t GrandCompany; + uint8_t GrandCompanyRank; + uint8_t InstanceContentOperator; + uint8_t Festival; + uint8_t FestivalPhaseBegin; + uint8_t FestivalPhaseEnd; + uint8_t BeastTribe; + uint8_t BeastReputationRank; + uint8_t RepeatCycle; + uint8_t RepeatFlag; + uint8_t ExpClass; + uint8_t Genre; + uint8_t IconType; + uint8_t Quality; + uint8_t padding2 : 3; + uint8_t HideOfferIcon : 1; + uint8_t Cancellable : 1; + uint8_t Introduction : 1; + uint8_t Repeatable : 1; + uint8_t House : 1; + int8_t padding3[3]; + }; + + /* 264324 */ + struct Level + { + float TransX; + float TransY; + float TransZ; + float RotY; + float RangeOnMap; + uint32_t BaseId; + uint32_t Map; + uint32_t EventHandler; + uint32_t TerritoryType; + int32_t eAssetType; + }; + + /* 264325 */ + struct ContentRouletteTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Description; + Component::Excel::StringOffset Contents; + }; + + /* 264326 */ + struct ContentRoulette + { + ContentRouletteTextStruct Text; + uint32_t Image; + uint32_t ClearRewardA; + uint32_t ClearRewardB; + uint8_t ItemLevel; + uint8_t PartyMemberCount; + uint8_t TankCount; + uint8_t HealerCount; + uint8_t MeleeDPSCount; + uint8_t RangedDPSCount; + uint8_t Sortkey; + uint8_t padding0 : 6; + uint8_t AllClearFlag : 1; + uint8_t EnableFinder : 1; + }; + + /* 264329 */ + struct ActionCategoryTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264330 */ + struct ActionCategory + { + ActionCategoryTextStruct Text; + }; + + /* 264331 */ + struct StatusTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Help; + }; + + /* 264332 */ + struct Status + { + StatusTextStruct Text; + uint16_t Icon; + uint16_t Log; + uint8_t Stack; + uint8_t Category; + uint8_t HitEffect; + uint8_t LoopEffect; + uint8_t PartyListPriority; + uint8_t SystemParamEffect; + uint8_t TargetType; + uint8_t Flag; + uint8_t InconvenienceClear : 1; + uint8_t HideTimer : 1; + uint8_t Forever : 1; + uint8_t NotLookAt : 1; + uint8_t ShapeShift : 1; + uint8_t NotControl : 1; + uint8_t NotAction : 1; + uint8_t NotMove : 1; + uint8_t padding0 : 6; + uint8_t SemiTransparent : 1; + uint8_t FcAction : 1; + int8_t padding1[2]; + }; + + /* 264333 */ + struct AchievementKindTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264334 */ + struct AchievementKind + { + AchievementKindTextStruct Text; + }; + + /* 264335 */ + struct AchievementCategoryTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264336 */ + struct AchievementCategory + { + AchievementCategoryTextStruct Text; + uint8_t Kind; + uint8_t padding0 : 6; + uint8_t ShowComplete : 1; + uint8_t Valid : 1; + int8_t padding1[2]; + }; + + /* 264337 */ + struct RaceTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset NameFemale; + }; + + /* 264338 */ + struct Race + { + RaceTextStruct Text; + int32_t Body[2]; + int32_t Hand[2]; + int32_t Leg[2]; + int32_t Foot[2]; + }; + + /* 264339 */ + struct BaseParamTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Help; + }; + + /* 264340 */ + struct BaseParam + { + BaseParamTextStruct Text; + uint8_t ItemParamRate[21]; + uint8_t RoleRate[13]; + int8_t PacketIndex; + int8_t padding0; + }; + + /* 264341 */ + struct MateriaTomestoneRate + { + uint32_t Rate; + }; + + /* 264342 */ + struct ItemSearchCategoryTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264343 */ + struct ItemSearchCategory + { + ItemSearchCategoryTextStruct Text; + int32_t Icon; + uint8_t Block; + uint8_t DisplayOrder; + int8_t ClassLevel; + int8_t padding0[1]; + }; + + /* 264344 */ + struct ItemSearchClassFilterTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264345 */ + struct ItemSearchClassFilterStruct + { + ItemSearchClassFilterTextStruct Text; + int8_t Class; + int8_t padding0[3]; + }; + + /* 264346 */ + struct ItemFood + { + uint8_t Param[3]; + int8_t Value[3]; + int8_t Limit[3]; + int8_t ValueHQ[3]; + int8_t LimitHQ[3]; + bool Rate[3]; + int8_t padding0[2]; + }; + + /* 264347 */ + struct CompanionMoveTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264348 */ + struct CompanionMove + { + CompanionMoveTextStruct Text; + }; + + /* 264349 */ + struct RoleTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset ShortName; + }; + + /* 264350 */ + struct Role + { + RoleTextStruct Text; + int32_t Icon; + }; + + /* 264351 */ + struct BuddyEquipTextStruct + { + Component::Excel::StringOffset SGL; + Component::Excel::StringOffset PLR; + Component::Excel::StringOffset UIName; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 264352 */ + struct BuddyEquip + { + BuddyEquipTextStruct Text; + int32_t Model[3]; + uint16_t Icon[3]; + uint8_t GrandCompany; + int8_t padding1[1]; + }; + + /* 264353 */ + struct BuddyRank + { + uint32_t RankUpExp; + }; + + /* 264354 */ + struct TreasureSpot + { + float MapOffsetX; + float MapOffsetY; + int32_t Location; + }; + + /* 264355 */ + struct ContentsNoteCategory + { + uint8_t ContentType; + int8_t UIPriority; + int8_t padding0[2]; + }; + + /* 264356 */ + struct Relic + { + uint32_t Item; + uint32_t ExchangeItem; + int32_t Icon; + uint16_t Materia[4]; + uint8_t MainNote[3]; + uint8_t SubNote[3]; + uint8_t SelectionANote[2]; + uint8_t SelectionBNote[1]; + int8_t padding0[3]; + }; + + /* 264357 */ + struct RelicNote + { + uint32_t EventItem; + uint16_t Target[10]; + uint16_t Boss[4]; + uint16_t Fate[3]; + uint16_t FateTerritoryType[3]; + uint16_t GuildLeve[3]; + uint8_t NeededKills[10]; + }; + + /* 264358 */ + struct RelicNoteCategoryTextStruct + { + Component::Excel::StringOffset Text; + }; + + /* 264359 */ + struct RelicNoteCategory + { + RelicNoteCategoryTextStruct Text; + int8_t UIPriority; + int8_t padding0[3]; + }; + + /* 264362 */ + struct MobHuntStruct + { + uint16_t Target[5]; + uint8_t NeededKills[5]; + uint8_t Rank[5]; + }; + + /* 264363 */ + struct MobHuntTarget + { + uint16_t Monster; + uint16_t Fate; + uint16_t Icon; + uint16_t ZoneName; + uint16_t AreaName; + int8_t padding0[2]; + }; + + /* 264364 */ + struct MobHuntRankStruct + { + uint16_t Reward[2]; + }; + + /* 264365 */ + struct GatheringPoint + { + int32_t BaseId; + int32_t BonusCond; + int32_t BonusType; + int32_t AreaId; + uint16_t BonusVal; + uint16_t BonusPoint; + uint16_t PlaceNameId; + uint8_t Type; + uint8_t Count; + }; + + /* 264366 */ + struct GatheringPointBase + { + int32_t Type; + int32_t GatheringItemId[8]; + uint8_t Lv; + uint8_t EffectId; + int8_t padding0[2]; + }; + + /* 264367 */ + struct GatheringPointNameTextStruct + { + Component::Excel::StringOffset SGL; + Component::Excel::StringOffset PLR; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 264368 */ + struct GatheringPointName + { + GatheringPointNameTextStruct Text; + }; + + /* 264369 */ + struct CraftTypeTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264370 */ + struct CraftType + { + CraftTypeTextStruct Text; + uint8_t MainPhysical; + uint8_t SubPhysical; + int8_t padding0[2]; + }; + + /* 264371 */ + struct NotebookDivisionTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264372 */ + struct NotebookDivision + { + NotebookDivisionTextStruct Text; + uint8_t CraftOpeningLevel; + uint8_t GatheringOpeningLevel; + bool CanUseCraft[8]; + int8_t padding0[2]; + }; + + /* 264373 */ + struct LeveTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Objective; + }; + + /* 264374 */ + struct LeveRewardStruct + { + float ExpRate; + uint32_t StaticExp; + uint32_t Gil; + int32_t Item; + int32_t AdditionalItem; + }; + + /* 264375 */ + struct Leve + { + LeveTextStruct Text; + LeveRewardStruct Reward; + uint32_t TodoListener; + uint32_t StartMarker; + int32_t Client; + int32_t AssignmentType; + int32_t Town; + int32_t Evaluation; + int32_t Location; + int32_t Genre; + int32_t Region; + int32_t Area; + int32_t PlateRegionIcon; + int32_t GameData; + int32_t Header; + uint16_t ClassLevel; + uint16_t BGM; + uint8_t TimeLimit; + uint8_t ClassJob; + uint8_t PlateDesignVfx; + uint8_t PlateFrameVfx; + uint8_t padding0 : 5; + uint8_t Cancellable : 1; + uint8_t Difficulty : 1; + uint8_t Special : 1; + int8_t padding1[3]; + }; + + /* 264376 */ + struct GatheringLeve + { + int32_t Route[4]; + int32_t Item[4]; + int32_t Rule; + int32_t BNpcEntry; + uint16_t Objective[2]; + uint8_t ItemNum[4]; + uint8_t Num; + uint8_t Variation; + uint8_t padding0 : 7; + uint8_t UseSubArm : 1; + int8_t padding1[1]; + }; + + /* 264378 */ + struct MapMarker + { + int32_t Icon; + int32_t Name; + int32_t EventSubArg; + uint16_t EventArg; + int16_t PosX; + int16_t PosY; + uint8_t Start; + uint8_t Layout; + uint8_t TextType; + uint8_t EventType; + int8_t padding0[2]; + }; + + /* 264379 */ + struct ContentTypeTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264380 */ + struct ContentType + { + ContentTypeTextStruct Text; + uint32_t IconLarge; + uint32_t IconSmall; + }; + + /* 264381 */ + struct GrandCompanyTextStruct + { + Component::Excel::StringOffset SGL; + Component::Excel::StringOffset PLR; + Component::Excel::StringOffset SWT; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 264382 */ + struct GrandCompany + { + GrandCompanyTextStruct Text; + int8_t MonsterNote; + int8_t padding1[3]; + }; + + /* 264383 */ + struct HowToCategoryTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264384 */ + struct HowToCategory + { + HowToCategoryTextStruct Text; + }; + + /* 264385 */ + struct ConfigurationKeyTextStruct + { + Component::Excel::StringOffset Text; + }; + + /* 264386 */ + struct ConfigKey + { + ConfigurationKeyTextStruct Text; + Component::Excel::StringOffset Label; + uint8_t Param; + uint8_t Platform; + uint8_t Category; + uint8_t padding0 : 7; + uint8_t Required : 1; + }; + + /* 264387 */ + struct MacroIcon + { + int32_t Icon; + }; + + /* 264388 */ + struct RecommendContents + { + int32_t LayoutId; + uint8_t ClassJob; + uint8_t LvMin; + uint8_t LvMax; + int8_t padding0[1]; + }; + + /* 264389 */ + struct AdventureTextStruct + { + Component::Excel::StringOffset TitleText; + Component::Excel::StringOffset HintText; + Component::Excel::StringOffset FlavorText; + }; + + /* 264390 */ + struct Adventure + { + AdventureTextStruct Text; + int32_t LayoutID; + int32_t AreaName; + int32_t SpotIcon; + int32_t LandscapePicture; + int32_t RegionPicture; + uint16_t ClearStartTimeCond; + uint16_t ClearEndTimeCond; + uint8_t ClearEmoteCond; + uint8_t padding0 : 7; + uint8_t IsShowRegion : 1; + int8_t padding1[2]; + }; + + /* 264391 */ + struct RetainerTaskLvRange + { + uint8_t MinLv; + uint8_t MaxLv; + int8_t padding0[2]; + }; + + /* 264392 */ + struct RetainerTaskNormal + { + int32_t Item; + int16_t GatheringItem; + int16_t FishParameter; + uint8_t Stack[3]; + int8_t padding0[1]; + }; + + /* 264393 */ + struct RetainerTaskRandomTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264394 */ + struct RetainerTaskRandom + { + RetainerTaskRandomTextStruct Text; + int16_t SortId; + int8_t padding0[2]; + }; + + /* 264395 */ + struct Tomestones + { + int32_t CatalogId; + uint16_t WeeklyCap; + uint8_t Slot; + int8_t WorkIndex; + }; + + /* 264396 */ + struct FateTextStruct + { + Component::Excel::StringOffset TitleText; + Component::Excel::StringOffset DescriptionText; + Component::Excel::StringOffset DescriptionText2; + Component::Excel::StringOffset TodoName1; + Component::Excel::StringOffset TodoName2; + Component::Excel::StringOffset TodoName3; + }; + + /* 264397 */ + struct FateQuest + { + uint32_t ResultListener; + }; + + /* 264398 */ + struct Fate + { + FateTextStruct Text; + FateQuest Quest; + uint32_t TradeItemId; + uint32_t GuardNpcLayoutId; + int32_t EventRange; + int32_t Icon; + int32_t IconSmall; + int32_t BGM; + int32_t StarterTalkNpcLayoutId; + uint16_t Achivement; + uint16_t TodoValueType[3]; + uint8_t Rule; + uint8_t Level; + uint8_t SyncLv; + uint8_t AcceptScreenImage; + uint8_t CompleteScreenImage; + uint8_t FailedScreenImage; + uint8_t padding0 : 6; + uint8_t IsQuest : 1; + uint8_t Show2DMap : 1; + int8_t padding1[1]; + }; + + /* 264399 */ + struct FCActivityCategoryTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264400 */ + struct FCActivityCategory + { + FCActivityCategoryTextStruct Text; + uint8_t Priority; + int8_t padding0[3]; + }; + + /* 264401 */ + struct FCAuthorityTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264402 */ + struct FCAuthority + { + FCAuthorityTextStruct Text; + int32_t Category; + uint8_t Sort; + int8_t padding0[3]; + }; + + /* 264403 */ + struct FCAuthorityCategoryTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264404 */ + struct FCAuthorityCategory + { + FCAuthorityCategoryTextStruct Text; + }; + + /* 264405 */ + struct CompanyActionTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Help; + }; + + /* 264406 */ + struct CompanyAction + { + CompanyActionTextStruct Text; + uint32_t Price; + int32_t Icon; + uint8_t NeedRank; + uint8_t UIPriority; + int8_t padding0[2]; + }; + + /* 264407 */ + struct FCCrestSymbol + { + uint8_t ColorNum; + uint8_t FCRight; + int8_t padding0[2]; + }; + + /* 264408 */ + struct FCProfileTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264409 */ + struct FCProfile + { + FCProfileTextStruct Text; + uint8_t Priority; + int8_t padding0[3]; + }; + + /* 264410 */ + struct ItemSeriesTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264411 */ + struct ItemSeries + { + ItemSeriesTextStruct Text; + }; + + /* 264412 */ + struct ItemSpecialBonusTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 264413 */ + struct ItemSpecialBonus + { + ItemSpecialBonusTextStruct Text; + }; + + /* 264414 */ + struct HousingYardObject + { + uint32_t Param; + uint32_t EventHandler; + uint32_t Item; + uint8_t ID; + uint8_t Category; + uint8_t UseType; + uint8_t LayoutLimit; + uint8_t padding0 : 7; + uint8_t Disposable : 1; + int8_t padding1[3]; + }; + + /* 264415 */ + struct HousingFurniture + { + uint32_t Param; + uint32_t EventHandler; + uint32_t Item; + uint16_t ID; + uint8_t Category; + uint8_t UseType; + uint8_t LayoutLimit; + uint8_t padding0 : 6; + uint8_t HasCrest : 1; + uint8_t Disposable : 1; + int8_t padding1[2]; + }; + + /* 264416 */ + struct HousingExterior + { + uint16_t Region; + uint8_t ID; + uint8_t Category; + uint8_t Size; + int8_t padding0[1]; + int8_t padding1[2]; + }; + + /* 264417 */ + struct HousingInterior + { + uint8_t ID; + uint8_t Category; + uint8_t Material; + int8_t padding0[1]; + }; + + /* 264418 */ + struct BeastTribeTextStruct + { + Component::Excel::StringOffset SGL; + Component::Excel::StringOffset PLR; + Component::Excel::StringOffset ReputationValue; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 264419 */ + struct BeastTribe + { + BeastTribeTextStruct Text; + uint32_t ReputationIcon; + uint32_t RewardIcon; + }; + + /* 264420 */ + struct BeastReputationRankTextStruct + { + Component::Excel::StringOffset SGL; + Component::Excel::StringOffset PLR; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 264421 */ + struct BeastReputationRank + { + BeastReputationRankTextStruct Text; + uint32_t Color; + uint16_t MaxReputationValue; + int8_t padding1[2]; + }; + + /* 271695 */ + struct HousingPresetNameStruct + { + Component::Excel::StringOffset SGL; + Component::Excel::StringOffset PLR; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 271696 */ + struct HousingPreset + { + HousingPresetNameStruct Name; + int32_t Roof; + int32_t Wall; + int32_t Window; + int32_t Door; + int32_t Interior[10]; + uint16_t Region; + uint8_t Size; + int8_t padding1[1]; + }; + + /* 271697 */ + struct HousingLayoutLimitStruct + { + uint8_t LimitNumSS; + uint8_t LimitNumS; + uint8_t LimitNumM; + uint8_t LimitNumL; + }; + + /* 271698 */ + struct HousingLandStruct + { + uint32_t LandRange; + uint32_t SignboardEObj; + uint32_t StuckPopRange; + uint32_t ExitPopRange; + uint32_t InitPrice; + uint8_t Size; + int8_t padding0[3]; + }; + + /* 271699 */ + struct HousingLandSet + { + HousingLandStruct Lands[60]; + }; + + /* 271700 */ + struct GardeningSeed + { + uint32_t Crop; + uint32_t HarvestIcon; + uint16_t ModelId; + uint8_t padding0 : 7; + uint8_t SE : 1; + int8_t padding1[1]; + }; + + /* 271701 */ + struct HousingEmploymentNpcStruct + { + uint32_t ENpcId; + }; + + /* 271702 */ + struct HousingEmploymentNpcTypeStruct + { + HousingEmploymentNpcStruct ENpcType[10]; + }; + + /* 282075 */ + struct PhysicsGroup + { + float SimulationTime[6]; + float PS3SimulationTime[6]; + float RootFollowingGame; + float RootFollowingCutScene; + int8_t ConfigSwitch[3]; + uint8_t padding0 : 6; + uint8_t ForceAttractByPhysicsOff : 1; + uint8_t ResetByLookAt : 1; + }; + + /* 326984 */ + struct Channeling + { + Component::Excel::StringOffset File; + float WidthScale; + uint8_t LimitDist; + int8_t padding0[3]; + }; + + /* 326985 */ + struct ModelChara + { + uint16_t SkeletonId; + uint16_t SEPack; + uint8_t ModelType; + uint8_t PatternId; + uint8_t ImeChanId; + uint8_t PapVariation; + }; + + /* 326986 */ + struct BNpcState + { + Component::Excel::StringOffset Attribute[3]; + float Scale; + int32_t LoopTimeline; + uint16_t Idle; + uint8_t Slot; + int8_t OverRay[2]; + bool AttributeFlag[3]; + }; + + /* 326987 */ + struct Transformation + { + uint16_t Action[2]; + int16_t ModelChara; + uint8_t padding0 : 7; + uint8_t ExHotbarEnableConfig : 1; + int8_t padding1[1]; + }; + + /* 326988 */ + struct BNpcBase + { + float Scale; + int32_t EventHandler; + uint16_t NormalAI; + uint16_t Model; + uint16_t Customize; + uint16_t Equipment; + uint16_t SEPack; + uint8_t Battalion; + uint8_t LinkRace; + uint8_t Rank; + uint8_t Special; + uint8_t Parts; + uint8_t IsTargetLine : 1; + uint8_t IsDisplayLevel : 1; + uint8_t padding0 : 6; + }; + + /* 326989 */ + struct BNpcParts + { + Component::Excel::StringOffset Attribute[4]; + float OffsetX[4]; + float OffsetZ[4]; + uint16_t Parts[4]; + bool AttDefault[4]; + bool Timeline[4]; + }; + + /* 326991 */ + struct Carry + { + uint64_t Model; + int32_t Timeline; + int8_t padding0[4]; + }; + + /* 326993 */ + struct ENpcEventHandlerStruct + { + uint32_t EventHandler; + }; + + /* 326994 */ + struct ENpcBase + { + ENpcEventHandlerStruct EventHandler[32]; + uint64_t Weapon; + uint64_t SubWeapon; + float Scale; + uint32_t Equip[10]; + uint16_t IdleTimeline; + uint16_t Model; + uint16_t EquipPreset; + uint16_t Behavior; + uint16_t DefaultBalloon; + uint8_t Customize[26]; + uint8_t Voice; + uint8_t WeaponStain; + uint8_t SubWeaponStain; + uint8_t Stain[10]; + uint8_t Invisibility; + uint8_t padding0 : 5; + uint8_t Important : 1; + uint8_t Visor : 1; + uint8_t NotRewriteHeight : 1; + int8_t padding1[1]; + }; + + /* 326995 */ + struct Battalion + { + bool Table[12]; + }; + + /* 326996 */ + struct EventActionTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 326997 */ + struct EventAction + { + EventActionTextStruct Text; + uint16_t Icon; + uint16_t ActionTimeline_Start; + uint16_t ActionTimeline_Loop; + uint16_t ActionTimeline_End; + uint8_t Time; + int8_t padding0[3]; + }; + + /* 326998 */ + struct Omen + { + Component::Excel::StringOffset Path; + Component::Excel::StringOffset PathAlly; + uint8_t Type; + uint8_t padding0 : 6; + uint8_t LargeScale : 1; + uint8_t RestrictYScale : 1; + int8_t padding1[2]; + }; + + /* 326999 */ + struct NpcEquip + { + uint64_t WeaponModel; + uint64_t SubWeaponModel; + uint32_t Equip[10]; + uint8_t WeaponStain; + uint8_t SubWeaponStain; + uint8_t Stain[10]; + uint8_t padding0 : 7; + uint8_t Visor : 1; + int8_t padding1[3]; + }; + + /* 335954 */ + struct ChocoboTaxi + { + uint32_t Terminus; + int32_t Territory; + int32_t Path; + uint16_t Fare; + uint8_t TimeRequired; + int8_t padding0[1]; + }; + + /* 335955 */ + struct CutsceneMotion + { + float WALK_LOOP_SPEED; + float RUN_LOOP_SPEED; + float SLOWWALK_LOOP_SPEED; + float SLOWRUN_LOOP_SPEED; + float BATTLEWALK_LOOP_SPEED; + float BATTLERUN_LOOP_SPEED; + float DASH_LOOP_SPEED; + uint8_t TURN_CW90_FRAME; + uint8_t TURN_CCW90_FRAME; + uint8_t TURN_CW180_FRAME; + uint8_t TURN_CCW180_FRAME; + }; + + /* 335956 */ + struct EmoteMode + { + uint32_t StartEmote; + uint32_t EndEmote; + uint8_t ConditionMode; + uint8_t padding0 : 4; + uint8_t Move : 1; + uint8_t Camera : 1; + uint8_t EndOnRotate : 1; + uint8_t EndOnEmote : 1; + int8_t padding1[2]; + }; + + /* 337601 */ + struct GimmickJump + { + uint32_t LoopMotion; + uint32_t EndMotion; + uint16_t FallDamage; + int8_t Height; + uint8_t padding0 : 7; + uint8_t StartClient : 1; + }; + + /* 339572 */ + struct LinkRace + { + bool Link[4]; + }; + + /* 342251 */ + struct BGMScene + { + uint8_t padding0 : 3; + uint8_t EnableDisableRestart : 1; + uint8_t Resume : 1; + uint8_t EnablePassEnd : 1; + uint8_t ForceAutoReset : 1; + uint8_t IgnoreBattle : 1; + int8_t padding1[3]; + }; + + /* 342296 */ + struct VFX + { + Component::Excel::StringOffset Path; + }; + + /* 342297 */ + struct Lockon + { + Component::Excel::StringOffset File; + }; + + /* 342298 */ + struct Resident + { + int32_t Value; + int32_t Model; + uint8_t Type; + int8_t padding0[3]; + }; + + /* 342313 */ + struct MotionTimelineAdvanceBlend + { + Component::Excel::StringOffset MotionTimelineName; + Component::Excel::StringOffset NextMotionTimelineName; + }; + + /* 342406 */ + struct BGM + { + Component::Excel::StringOffset Path; + float DisableRestartResetTime; + uint8_t Priority; + uint8_t SpecialMode; + uint8_t padding0 : 5; + uint8_t DisableRestartTimeOut : 1; + uint8_t DisableRestart : 1; + uint8_t PassEnd : 1; + int8_t padding1[1]; + }; + + /* 342407 */ + struct BGMSituation + { + uint16_t DaytimeID; + uint16_t NightID; + uint16_t BattleID; + uint16_t DaybreakID; + uint16_t TwilightID; + int8_t padding0[2]; + }; + + /* 342408 */ + struct BGMFade + { + int32_t SceneOut; + int32_t SceneIn; + int32_t FadeType; + }; + + /* 342409 */ + struct BGMFadeType + { + float FadeOutTime; + float FadeInTime; + float FadeInStartTime; + float ResumeFadeInTime; + }; + + /* 342410 */ + struct BGMSystemDefine + { + float ValueFloat; + }; + + /* 342463 */ + struct Ballista + { + uint16_t BNpc; + uint16_t Angle; + uint16_t Action[2]; + uint8_t Bullet; + int8_t Near; + int8_t Far; + int8_t padding0[1]; + }; + + /* 362336 */ + struct SpecialShopItem + { + uint32_t SetNum[2]; + uint32_t NumOfCurrency[3]; + int32_t ItemId[2]; + int32_t Category[2]; + int32_t Currency[3]; + int32_t Quest[2]; + int32_t Achievement; + bool IsCurrencyHq[3]; + int8_t padding0[1]; + }; + + /* 362337 */ + struct GuildleveAssignment + { + uint32_t Talk; + uint32_t UnlockQuest; + uint32_t DecideQuest; + uint8_t NeedGrandCompanyRank; + uint8_t padding0 : 5; + uint8_t HaveImmortalLeve : 1; + uint8_t HaveTwinAdderLeve : 1; + uint8_t HaveMaelstromLeve : 1; + int8_t padding1[2]; + }; + + /* 362338 */ + struct GuildleveAssignmentTalkParamStruct + { + uint32_t Gesture; + int32_t Shape; + uint8_t Turn; + int8_t LipSync; + int8_t Facial; + uint8_t padding0 : 7; + uint8_t LookAt : 1; + }; + + /* 362339 */ + struct GuildleveAssignmentTalkTextStruct + { + Component::Excel::StringOffset Talk[8]; + }; + + /* 362340 */ + struct GuildleveAssignmentTalk + { + GuildleveAssignmentTalkParamStruct Param[5]; + GuildleveAssignmentTalkTextStruct Text; + }; + + /* 362341 */ + struct EventIconType + { + uint32_t Announce; + uint32_t Map; + uint8_t Num; + int8_t padding0[3]; + }; + + /* 362342 */ + struct GatheringItem + { + int32_t ItemId; + uint8_t Level; + uint8_t padding0 : 7; + uint8_t IsHiddenForNotebook : 1; + int8_t padding1[2]; + }; + + /* 362343 */ + struct DefaultTalkParamStruct + { + uint16_t Gesture; + uint16_t Facial; + uint8_t Turn; + uint8_t LipSync; + uint8_t Shape; + uint8_t padding0 : 7; + uint8_t IsAutoShake : 1; + }; + + /* 362344 */ + struct DefaultTalkTextStruct + { + Component::Excel::StringOffset Talk[3]; + }; + + /* 362345 */ + struct DefaultTalk + { + DefaultTalkParamStruct Param[3]; + DefaultTalkTextStruct Text; + }; + + /* 362346 */ + struct CraftLeveTalkParamStruct + { + uint32_t Gesture; + int32_t Shape; + uint8_t Turn; + int8_t LipSync; + int8_t Facial; + uint8_t padding0 : 7; + uint8_t LookAt : 1; + }; + + /* 362347 */ + struct CraftLeveTalkTextStruct + { + Component::Excel::StringOffset Talk[6]; + }; + + /* 362348 */ + struct CraftLeveTalk + { + CraftLeveTalkParamStruct Param[6]; + CraftLeveTalkTextStruct Text; + }; + + /* 362349 */ + struct SwitchTalkCaseStruct + { + uint32_t CaseCondition; + uint32_t Talk; + }; + + /* 362350 */ + struct SwitchTalk + { + SwitchTalkCaseStruct TalkCase[16]; + }; + + /* 362351 */ + struct BattleLeveTimeStruct + { + uint16_t RoutePointTime; + }; + + /* 362352 */ + struct BattleLeveEntryStruct + { + uint32_t NameId; + uint32_t Param[6]; + int32_t BaseId; + int32_t DropEventItemId; + uint16_t Level; + uint8_t DropEventItemMax; + uint8_t DropEventItemRate; + uint8_t NumOfAppearance[8]; + }; + + /* 362353 */ + struct BattleLeveTodoStruct + { + uint8_t TodoSequence; + }; + + /* 362354 */ + struct BattleLeve + { + BattleLeveTimeStruct RoutePointTime[8]; + BattleLeveEntryStruct Entry[8]; + BattleLeveTodoStruct Todo[8]; + int32_t Rule; + uint16_t Objective[3]; + uint16_t Help[2]; + uint8_t Variation; + int8_t padding0[1]; + }; + + /* 362355 */ + struct GatheringLeveRoute + { + int32_t Point[10]; + int32_t BNpcPopRange[10]; + }; + + /* 362356 */ + struct CompanyLeveTimeStruct + { + uint16_t RoutePointTime; + }; + + /* 362357 */ + struct CompanyLeveEntryStruct + { + uint32_t NameId; + uint32_t Param[6]; + int32_t BaseId; + int32_t DropEventItemId; + uint16_t Level; + uint8_t DropEventItemMax; + uint8_t DropEventItemRate; + uint8_t NumOfAppearance[8]; + }; + + /* 362358 */ + struct CompanyLeveTodoStruct + { + uint8_t TodoSequence; + }; + + /* 362359 */ + struct CompanyLeve + { + CompanyLeveTimeStruct RoutePointTime[8]; + CompanyLeveEntryStruct Entry[8]; + CompanyLeveTodoStruct Todo[8]; + int32_t Rule; + uint8_t Variation; + int8_t padding0[3]; + }; + + /* 362360 */ + struct QuestBattleDefineStruct + { + Component::Excel::StringOffset DefineName; + uint32_t DefineValue; + }; + + /* 362361 */ + struct QuestBattle + { + QuestBattleDefineStruct Define[100]; + int32_t Quest; + uint16_t LimitTime; + uint16_t SyncLevel; + uint8_t SubNo; + int8_t padding0[3]; + }; + + /* 362362 */ + struct CustomTalkDefineStruct + { + Component::Excel::StringOffset Name; + uint32_t Value; + }; + + /* 362363 */ + struct CustomTalkTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 362364 */ + struct CustomTalk + { + CustomTalkDefineStruct Define[30]; + CustomTalkTextStruct Text; + Component::Excel::StringOffset Script; + uint32_t MapIcon; + uint8_t padding0 : 1; + uint8_t ListenHousing : 1; + uint8_t ListenEnterTerritory : 1; + uint8_t ListenEmote : 1; + uint8_t TargetingPossibleCallback : 1; + uint8_t ConditionCallback : 1; + uint8_t AcceptCallback : 1; + uint8_t ClientEvent : 1; + int8_t padding1[3]; + }; + + /* 362365 */ + struct StorySequenceStruct + { + uint32_t CompletedQuest[3]; + uint32_t AcceptedQuest[3]; + uint32_t LayerSet[2]; + uint16_t Sequence; + uint8_t CompletedQuestOperator; + uint8_t AcceptedQuestOperator; + uint8_t AcceptedQuestSequence[3]; + int8_t padding0[1]; + }; + + /* 362366 */ + struct StoryDefineStruct + { + Component::Excel::StringOffset Name; + uint32_t Value; + }; + + /* 362367 */ + struct StoryVisibleListenerStruct + { + uint32_t Listener; + uint16_t SequenceBegin; + uint16_t SequenceEnd; + }; + + /* 362368 */ + struct Story + { + StoryDefineStruct Define[40]; + StorySequenceStruct Sequence[110]; + StoryVisibleListenerStruct VisibleListener[80]; + Component::Excel::StringOffset Script; + uint16_t LayerSetTerritoryType[2]; + }; + + /* 362369 */ + struct CompanyLeveRule + { + Component::Excel::StringOffset Script; + uint16_t Objective; + uint16_t Help; + }; + + /* 362448 */ + struct AethernetStruct + { + uint32_t PopRange; + uint16_t TransferName; + int8_t padding0[2]; + }; + + /* 362451 */ + struct AetheryteSystemDefine + { + Component::Excel::StringOffset DefineName; + uint32_t DefineValue; + }; + + /* 362452 */ + struct GatheringTypeTextStruct + { + Component::Excel::StringOffset Text; + }; + + /* 362453 */ + struct GatheringType + { + GatheringTypeTextStruct Text; + int32_t MapIcon; + int32_t RareMapIcon; + }; + + /* 362454 */ + struct GatheringConditionTextStruct + { + Component::Excel::StringOffset Text; + }; + + /* 362455 */ + struct GatheringCondition + { + GatheringConditionTextStruct Text; + }; + + /* 362456 */ + struct GatheringPointBonusTypeTextStruct + { + Component::Excel::StringOffset Text; + }; + + /* 362457 */ + struct GatheringPointBonusType + { + GatheringPointBonusTypeTextStruct Text; + }; + + /* 362458 */ + struct GatheringExp + { + uint16_t Exp; + int8_t padding0[2]; + }; + + /* 362459 */ + struct FishingRecordType + { + int32_t NameId; + uint16_t Rank[2]; + }; + + /* 362460 */ + struct QuestSystemDefine + { + Component::Excel::StringOffset DefineName; + int32_t DefineValue; + }; + + /* 362461 */ + struct EventSystemDefine + { + Component::Excel::StringOffset DefineName; + uint32_t DefineValue; + }; + + /* 362462 */ + struct JournalGenreTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 362463 */ + struct JournalGenre + { + JournalGenreTextStruct Text; + int32_t Icon; + uint8_t Category; + int8_t padding0[3]; + }; + + /* 362464 */ + struct LeveSystemDefine + { + Component::Excel::StringOffset DefineName; + int32_t DefineValue; + }; + + /* 362465 */ + struct BattleLeveRule + { + Component::Excel::StringOffset Script; + }; + + /* 362466 */ + struct LeveVfx + { + Component::Excel::StringOffset Path; + int32_t Icon; + }; + + /* 362467 */ + struct LeveStringTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 362468 */ + struct LeveString + { + LeveStringTextStruct Text; + }; + + /* 362469 */ + struct GatheringLeveRule + { + Component::Excel::StringOffset Script; + }; + + /* 362470 */ + struct LeveClientTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 362471 */ + struct LeveClient + { + LeveClientTextStruct Text; + }; + + /* 362472 */ + struct LeveRewardItem + { + int32_t ItemGroup[8]; + uint8_t ItemGroupRate[8]; + }; + + /* 362473 */ + struct LeveRewardItemGroup + { + int32_t Item[8]; + uint16_t Stack[8]; + bool HQ[8]; + }; + + /* 362474 */ + struct GuildleveAssignmentCategory + { + int32_t Filter[8]; + }; + + /* 362475 */ + struct LeveAssignmentTypeTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 362476 */ + struct LeveAssignmentType + { + LeveAssignmentTypeTextStruct Text; + int32_t Icon; + uint8_t padding0 : 7; + uint8_t Faction : 1; + int8_t padding1[3]; + }; + + /* 362477 */ + struct GuildleveEvaluationTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 362478 */ + struct GuildleveEvaluation + { + GuildleveEvaluationTextStruct Text; + }; + + /* 362479 */ + struct OpeningSystemDefine + { + Component::Excel::StringOffset DefineName; + uint32_t DefineValue; + }; + + /* 362480 */ + struct StorySystemDefine + { + Component::Excel::StringOffset DefineName; + uint32_t DefineValue; + }; + + /* 362481 */ + struct PresetCamera + { + float PosX; + float PosY; + float PosZ; + float Elezene; + float Lalafell; + float Migote; + float Roegadyn; + float Hyuran_F; + float Elezene_F; + float Lalafell_F; + float Migote_F; + float Roegadyn_F; + uint16_t EID; + int8_t padding0[2]; + }; + + /* 362482 */ + struct PresetCameraAdjust + { + float Hyuran_M; + float Hyuran_F; + float Elezene_M; + float Elezene_F; + float Lalafell_M; + float Lalafell_F; + float Migote_M; + float Migote_F; + float Roegadyn_M; + float Roegadyn_F; + }; + + /* 362483 */ + struct Cutscene + { + Component::Excel::StringOffset Path; + }; + + /* 362484 */ + struct DirectorSystemDefine + { + Component::Excel::StringOffset DefineName; + int32_t DefineValue; + }; + + /* 362485 */ + struct SE + { + Component::Excel::StringOffset Path; + }; + + /* 362486 */ + struct RetainerTaskParameter + { + int32_t TimeCorrectionNormal; + int32_t TimeCorrectionRandom; + int16_t BattleStack[2]; + int16_t GatheringStack[2]; + int16_t FishingStack[2]; + }; + + /* 362487 */ + struct ChocoboTaxiStandTextStruct + { + Component::Excel::StringOffset Destination; + }; + + /* 362488 */ + struct ChocoboTaxiStand + { + ChocoboTaxiStandTextStruct Text; + uint16_t Taxi[8]; + }; + + /* 362489 */ + struct DefaultTalkLipSyncType + { + int32_t ActionTimeLine; + }; + + /* 362490 */ + struct GCShopItemCategoryTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 362491 */ + struct GCShopItemCategory + { + GCShopItemCategoryTextStruct Text; + }; + + /* 362492 */ + struct GCShop + { + int32_t ItemStartIndex; + int32_t ItemEndIndex; + }; + + /* 362493 */ + struct QuestBattleSystemDefine + { + Component::Excel::StringOffset DefineName; + uint32_t DefineValue; + }; + + /* 363134 */ + struct ContentTalkTextStruct + { + Component::Excel::StringOffset Text; + }; + + /* 363135 */ + struct ContentTalk + { + ContentTalkTextStruct Text; + uint8_t Param; + int8_t padding0[3]; + }; + + /* 363136 */ + struct ContentTalkParam + { + uint32_t Gesture; + uint8_t Turn; + uint8_t Shape; + int8_t LipSync; + int8_t Facial; + uint8_t padding0 : 7; + uint8_t LookAt : 1; + int8_t padding1[3]; + }; + + /* 363137 */ + struct ContentNpcTalk + { + uint32_t Talk[8]; + int32_t Type; + }; + + /* 363138 */ + struct GuildOrderOfficer + { + uint32_t Talk[6]; + }; + + /* 363139 */ + struct GuildOrderGuide + { + uint32_t Talk[6]; + }; + + /* 363140 */ + struct GimmickRect + { + uint32_t LayoutId; + uint32_t Param0; + uint32_t Param1; + uint8_t TriggerIn; + uint8_t TriggerOut; + int8_t padding0[2]; + }; + + /* 363141 */ + struct GimmickAccessor + { + uint32_t Param0; + uint32_t Param1; + uint32_t Param2; + int32_t Type; + }; + + /* 367152 */ + struct ScenarioTextStruct + { + Component::Excel::StringOffset Label; + Component::Excel::StringOffset Text; + }; + + /* 367156 */ + struct ArrayEventHandler + { + uint32_t EventHandler[16]; + }; + + /* 367157 */ + struct ShopTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 367158 */ + struct ShopStruct + { + ShopTextStruct Text; + uint32_t MapIcon; + int32_t Quest; + int32_t QualifiedTalk; + int32_t UnqualifiedTalk; + int32_t Item[40]; + uint8_t BeastTribe; + uint8_t BeastReputationRank; + uint8_t padding0 : 7; + uint8_t PriceChangeFlag : 1; + int8_t padding1[1]; + }; + + /* 367159 */ + struct ShopItem + { + uint32_t PriceMinParam; + uint32_t PriceParam; + uint32_t PriceMaxParam; + int32_t ItemId; + int32_t StainId; + int32_t Quest[2]; + int32_t Achievement; + uint8_t padding0 : 7; + uint8_t IsHQ : 1; + int8_t padding1[3]; + }; + + /* 367160 */ + struct GrandCompanySealShopItem + { + uint32_t SetNum; + uint32_t Seal; + int32_t ItemId; + int32_t ValidRank; + int32_t Category; + }; + + /* 367161 */ + struct WarpTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Question; + }; + + /* 367162 */ + struct Warp + { + WarpTextStruct Text; + uint32_t PopRange; + uint32_t QualifiedPreTalk; + uint32_t UnqualifiedPreTalk; + uint32_t UnqualifiedGilPreTalk; + uint16_t WarpCondition; + uint16_t Logic; + uint16_t PreCutScene; + uint16_t PostCutScene; + uint8_t padding0 : 7; + uint8_t SkipCutSceneConfig : 1; + int8_t padding1[3]; + }; + + /* 367163 */ + struct WarpLogicDefineStruct + { + Component::Excel::StringOffset Name; + uint32_t Value; + }; + + /* 367164 */ + struct WarpLogicTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Yes; + Component::Excel::StringOffset No; + }; + + /* 367165 */ + struct WarpLogic + { + WarpLogicDefineStruct Define[10]; + WarpLogicTextStruct Text; + Component::Excel::StringOffset Script; + uint32_t MapIcon; + uint8_t padding0 : 7; + uint8_t AcceptCallback : 1; + int8_t padding1[3]; + }; + + /* 367166 */ + struct WarpCondition + { + uint32_t CompletedQuest[3]; + uint32_t NotAcceptedQuest; + uint16_t Gil; + uint16_t Reward; + uint16_t ClassLevel; + uint8_t CompletedQuestOperator; + int8_t padding0[1]; + }; + + /* 367167 */ + struct SpecialShopTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 367168 */ + struct SpecialShop + { + SpecialShopTextStruct Text; + SpecialShopItem Item[160]; + int32_t Quest; + int32_t QualifiedTalk; + int32_t UnqualifiedTalk; + uint8_t padding1 : 7; + uint8_t IsCurrencyType : 1; + int8_t padding2[3]; + }; + + struct Shop + { + ShopTextStruct Text; + uint32_t MapIcon; + int32_t Quest; + int32_t QualifiedTalk; + int32_t UnqualifiedTalk; + int32_t Item[40]; + uint8_t BeastTribe; + uint8_t BeastReputationRank; + uint8_t padding0 : 7; + uint8_t PriceChangeFlag : 1; + int8_t padding1[1]; + }; + + /* 367169 */ + struct OpeningDefineStruct + { + Component::Excel::StringOffset Name; + uint32_t Value; + }; + + /* 367170 */ + struct Opening + { + OpeningDefineStruct Define[40]; + Component::Excel::StringOffset Script; + uint32_t Quest; + }; + + /* 367972 */ + struct QuestRepeatFlag + { + uint32_t Quest; + }; + + /* 367973 */ + struct EventIconPriority + { + uint32_t Icon[16]; + }; + + /* 370975 */ + struct PvPAction + { + uint16_t Action; + uint16_t Trait[3]; + uint8_t SkillPoint; + uint8_t Rank; + bool GrandCompany[3]; + int8_t padding0[1]; + int8_t padding1[2]; + }; + + /* 370976 */ + struct PvPTrait + { + uint16_t Trait[3]; + int8_t padding0[2]; + }; + + /* 370977 */ + struct MateriaJoinRate + { + float Rate[4]; + float HQRate[4]; + }; + + /* 370978 */ + struct ItemLevel + { + uint16_t BaseParam[74]; + }; + + /* 370979 */ + struct Buddy + { + Component::Excel::StringOffset ActionSE[4]; + int32_t BaseEquip[3]; + uint8_t Base; + int8_t padding0[3]; + }; + + /* 370980 */ + struct BuddyItem + { + uint16_t Item; + uint8_t Status; + uint8_t padding0 : 6; + uint8_t UseField : 1; + uint8_t UseTraining : 1; + }; + + /* 370981 */ + struct PvPRankTextStruct + { + Component::Excel::StringOffset PvPTitleMale[3]; + Component::Excel::StringOffset PvPTitleFemale[3]; + }; + + /* 370982 */ + struct PvPRank + { + PvPRankTextStruct Text; + uint32_t Point; + }; + + /* 370983 */ + struct RelicMateria + { + uint8_t GradeMax; + int8_t padding0[3]; + }; + + /* 370986 */ + struct CraftCrystalTypeStruct + { + int32_t ItemId; + }; + + /* 370987 */ + struct RecipeElementTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 370988 */ + struct RecipeElement + { + RecipeElementTextStruct Text; + }; + + /* 370989 */ + struct GatheringItemPoint + { + uint32_t GatheringPointId; + }; + + /* 370990 */ + struct FishParameterTextStruct + { + Component::Excel::StringOffset NoteHelp; + }; + + /* 370991 */ + struct FishParameter + { + FishParameterTextStruct Text; + int32_t ItemId; + int32_t Territory; + uint8_t Level; + uint8_t RecordType; + uint8_t padding0 : 7; + uint8_t IsFishPrint : 1; + int8_t padding1[1]; + }; + + /* 370992 */ + struct FishingSpotTextStruct + { + Component::Excel::StringOffset SpotName; + }; + + /* 370993 */ + struct FishingSpot + { + FishingSpotTextStruct Text; + int32_t Category; + int32_t TerritoryType; + int32_t NameLayout; + int32_t Target[10]; + uint16_t MakerType; + uint16_t SpotNameId; + int16_t MakerPosX; + int16_t MakerPosY; + uint8_t Level; + uint8_t SortKey; + uint8_t padding0 : 7; + uint8_t Rare : 1; + int8_t padding1[1]; + }; + + /* 370994 */ + struct JournalCategoryTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 370995 */ + struct JournalCategory + { + JournalCategoryTextStruct Text; + uint8_t SeparateType; + uint8_t DataType; + int8_t padding0[2]; + }; + + /* 370996 */ + struct InstanceContentType + { + uint8_t Sortkey; + uint8_t Genre; + uint8_t ContentType; + int8_t padding0[1]; + }; + + /* 370997 */ + struct InstanceContentBuff + { + uint16_t ParamBase; + uint16_t ParamAdd; + }; + + /* 370998 */ + struct GCSupplyDutyReward + { + uint32_t ExpOfMunition; + uint32_t ExpOfSupplies; + uint32_t SealsOfBooty; + uint32_t SealsOfMunition; + uint32_t SealsOfSupplies; + }; + + /* 370999 */ + struct GCSupplyDefine + { + uint32_t Value; + }; + + /* 371000 */ + struct CycleTime + { + uint32_t FirstCycleOffset; + uint32_t Cycle; + }; + + /* 371001 */ + struct CutsceneWorkIndex + { + uint16_t WorkIndex; + int8_t padding0[2]; + }; + + /* 374114 */ + struct GatheringNotebookList + { + int32_t ItemId[100]; + uint8_t ItemNum; + int8_t padding0[3]; + }; + + /* 374115 */ + struct RecipeNotebookList + { + int32_t RecipeId[100]; + int32_t RecipeId1[30]; + uint8_t RecipeNum; + int8_t padding0[3]; + }; + + /* 374116 */ + struct CompleteJournalTextStruct + { + Component::Excel::StringOffset Name; + }; + + /* 374117 */ + struct CompleteJournal + { + CompleteJournalTextStruct Text; + uint32_t Id; + uint32_t Separate; + int32_t Icon; + int32_t CutScene[24]; + uint16_t Level; + uint8_t LevelOffset; + int8_t padding0[1]; + }; + + /* 374118 */ + struct LegacyQuestTextStruct + { + Component::Excel::StringOffset Name; + Component::Excel::StringOffset Journal; + }; + + /* 374119 */ + struct LegacyQuest + { + LegacyQuestTextStruct Text; + uint16_t LegacyQuestId; + uint16_t SortKey; + uint8_t Genre; + int8_t padding0[3]; + }; + + /* 374121 */ + struct GCSupplyDuty_WoodWorkerStruct + { + int32_t Item_wdk[3]; + uint8_t Stack_wdk[3]; + int8_t padding0[1]; + }; + + /* 374122 */ + struct GCSupplyDuty_CulinarianStruct + { + int32_t Item_cul[3]; + uint8_t Stack_cul[3]; + int8_t padding1[1]; + }; + + /* 374123 */ + struct GCSupplyDuty_AlchemistStruct + { + int32_t Item_alc[3]; + uint8_t Stack_alc[3]; + int8_t padding2[1]; + }; + + /* 374124 */ + struct GCSupplyDuty_ArmourerStruct + { + int32_t Item_arm[3]; + uint8_t Stack_arm[3]; + int8_t padding3[1]; + }; + + /* 374125 */ + struct GCSupplyDuty_TannerStruct + { + int32_t Item_tan[3]; + uint8_t Stack_tan[3]; + int8_t padding4[1]; + }; + + /* 374126 */ + struct GCSupplyDuty_GoldSmithStruct + { + int32_t Item_gld[3]; + uint8_t Stack_gld[3]; + int8_t padding5[1]; + }; + + /* 374127 */ + struct GCSupplyDuty_WeaverStruct + { + int32_t Item_wvr[3]; + uint8_t Stack_wvr[3]; + int8_t padding6[1]; + }; + + /* 374128 */ + struct GCSupplyDuty_BlackSmithStruct + { + int32_t Item_bsm[3]; + uint8_t Stack_bsm[3]; + int8_t padding7[1]; + }; + + /* 374129 */ + struct GCSupplyDuty_MinerStruct + { + int32_t Item_min[3]; + uint8_t Stack_min[3]; + int8_t padding8[1]; + }; + + /* 374130 */ + struct GCSupplyDuty_HarvesterStruct + { + int32_t Item_hrv[3]; + uint8_t Stack_hrv[3]; + int8_t padding9[1]; + }; + + /* 374131 */ + struct GCSupplyDuty_FishermanStruct + { + int32_t Item_fsh[3]; + uint8_t Stack_fsh[3]; + int8_t padding10[1]; + }; + + /* 374132 */ + struct GCSupplyDuty + { + GCSupplyDuty_WoodWorkerStruct WoodWorker; + GCSupplyDuty_CulinarianStruct Culinarian; + GCSupplyDuty_AlchemistStruct Alchemist; + GCSupplyDuty_ArmourerStruct Armourer; + GCSupplyDuty_TannerStruct Tanner; + GCSupplyDuty_GoldSmithStruct GoldSmith; + GCSupplyDuty_WeaverStruct Weaver; + GCSupplyDuty_BlackSmithStruct BlackSmith; + GCSupplyDuty_MinerStruct Miner; + GCSupplyDuty_HarvesterStruct Harvester; + GCSupplyDuty_FishermanStruct Fisherman; + }; + + /* 374133 */ + struct GuildOrderTextStruct + { + Component::Excel::StringOffset OperationText; + Component::Excel::StringOffset OrderText[2]; + Component::Excel::StringOffset SummaryText; + }; + + /* 374134 */ + struct GuildOrderRewardStruct + { + uint32_t Exp[2]; + uint32_t Gil[2]; + uint32_t Seal[2]; + uint32_t Item[2]; + uint16_t Stack[2]; + bool HQ[2]; + int8_t padding0[2]; + }; + + /* 374135 */ + struct GuildOrder + { + GuildOrderTextStruct Text; + GuildOrderRewardStruct Reward; + uint32_t OfficerBase; + }; + + /* 374137 */ + struct DailySupplyItem + { + int32_t Item[8]; + uint8_t Count[8]; + uint8_t Level[8]; + }; + + /* 379812 */ + struct BehaviorPath + { + uint8_t padding0 : 4; + uint8_t IsTurnTransition : 1; + uint8_t IsFadeOut : 1; + uint8_t IsFadeIn : 1; + uint8_t IsWalking : 1; + int8_t padding1[3]; + }; + + /* 379813 */ + struct Behavior + { + uint32_t Cont0_TypeArg0; + uint32_t Cont1_TypeArg1; + int32_t ActionArg; + uint16_t Balloon; + uint16_t Cont0_TypeArg1; + uint16_t Cont1_TypeArg0; + int16_t ActionArg2; + uint8_t Pack; + uint8_t Caster; + uint8_t Target; + uint8_t Action; + uint8_t Cond0_Target; + uint8_t Cond0_Type; + uint8_t Cond1_Target; + uint8_t Cond1_Type; + }; + + /* 383306 */ + struct BalloonTextStruct + { + Component::Excel::StringOffset Message; + }; + + /* 383307 */ + struct Balloon + { + BalloonTextStruct Text; + uint8_t padding0 : 7; + uint8_t Slowly : 1; + int8_t padding1[3]; + }; + + /* 389006 */ + struct Knockback + { + float Distance; + float Speed; + float NearDistance; + float DirectionArg; + uint8_t Direction; + uint8_t padding0 : 6; + uint8_t CancelMove : 1; + uint8_t Motion : 1; + int8_t padding1[2]; + }; + + /* 390890 */ + struct Permission + { + bool Flag[58]; + int8_t padding0[2]; + }; + + /* 391161 */ + struct InstanceContentTextDataTextStruct + { + Component::Excel::StringOffset Text; + }; + + /* 391162 */ + struct InstanceContentTextData + { + InstanceContentTextDataTextStruct Text; + }; + + /* 393785 */ + struct InstanceContentGuide + { + uint32_t InstanceContent; + uint32_t EventRange; + }; + + /* 397676 */ + struct GimmickYesNoTextStruct + { + Component::Excel::StringOffset Text1; + Component::Excel::StringOffset Text2; + Component::Excel::StringOffset Text3; + }; + + /* 397677 */ + struct GimmickYesNo + { + GimmickYesNoTextStruct Text; + }; + + /* 397678 */ + struct GimmickBillTextStruct + { + Component::Excel::StringOffset Message; + }; + + /* 397679 */ + struct GimmickBill + { + GimmickBillTextStruct Text; + }; + + /* 399529 */ + struct FateEventParamStruct + { + uint32_t Gesture; + int32_t LipSync; + int32_t Facial; + int32_t Shape; + uint8_t Turn; + uint8_t WidgetType; + uint8_t padding0 : 7; + uint8_t IsAutoShake : 1; + int8_t padding1[1]; + }; + + /* 399530 */ + struct FateEventTextStruct + { + Component::Excel::StringOffset MessageText[8]; + }; + + /* 399531 */ + struct FateEvent + { + FateEventParamStruct Param[8]; + FateEventTextStruct Text; + }; + + /* 399532 */ + struct NpcYellTextStruct + { + Component::Excel::StringOffset Text; + }; + + /* 399533 */ + struct NpcYell + { + NpcYellTextStruct NpcText; + float BalloonTime; + float BattleTalkTime; + uint8_t OutputType; + uint8_t padding0 : 7; + uint8_t IsBalloonSlow : 1; + int8_t padding1[2]; + }; + + /* 421681 */ + struct AnimationLOD + { + float CameraDistance; + float SampleInterval; + int8_t BoneLOD; + bool AnimationEnable[8]; + int8_t padding0[3]; + }; + + /* 450837 */ + struct MotionTimelineBlendTable + { + uint8_t DestBlendGroup; + uint8_t SrcBlendGroup; + uint8_t BlendFrame_PC; + uint8_t BlendFrame_TypeA; + uint8_t BlendFrame_TypeB; + uint8_t BlendFrame_TypeC; + int8_t padding0[2]; + }; + + + +} diff --git a/deps/datReader/ExdCat.cpp b/deps/datReader/ExdCat.cpp index ebf75ec7..eb7534f8 100644 --- a/deps/datReader/ExdCat.cpp +++ b/deps/datReader/ExdCat.cpp @@ -78,4 +78,15 @@ namespace xiv::exd return *( ln_it->second ); } + const Exd& Cat::get_data( Language language ) const + { + auto ln_it = _data.find( language ); + if( ln_it == _data.end() ) + { + return get_data_ln( Language::none ); + } + + return *( ln_it->second ); + } + } diff --git a/deps/datReader/ExdCat.h b/deps/datReader/ExdCat.h index e22ec036..5d4e9c4a 100644 --- a/deps/datReader/ExdCat.h +++ b/deps/datReader/ExdCat.h @@ -1,5 +1,4 @@ -#ifndef XIV_EXD_CAT_H -#define XIV_EXD_CAT_H +#pragma once #include #include @@ -50,6 +49,8 @@ namespace xiv // Returns data for a specific language const Exd& get_data_ln( Language i_language = Language::none ) const; + + const Exd& get_data( Language language = Language::none ) const; protected: const std::string _name; @@ -62,5 +63,3 @@ namespace xiv } } - -#endif // XIV_EXD_CAT_H diff --git a/deps/datReader/ExdData.h b/deps/datReader/ExdData.h index c7c61626..e6eea4fa 100644 --- a/deps/datReader/ExdData.h +++ b/deps/datReader/ExdData.h @@ -1,12 +1,12 @@ -#ifndef XIV_EXD_EXDDATA_H -#define XIV_EXD_EXDDATA_H +#pragma once #include +#include #include +#include #include #include -#include namespace xiv { @@ -54,5 +54,3 @@ namespace xiv } } - -#endif // XIV_EXD_EXDDATA_H diff --git a/deps/datReader/Exh.h b/deps/datReader/Exh.h index 37301d0b..b011a382 100644 --- a/deps/datReader/Exh.h +++ b/deps/datReader/Exh.h @@ -1,5 +1,4 @@ -#ifndef XIV_EXD_EXH_H -#define XIV_EXD_EXH_H +#pragma once #include @@ -7,8 +6,7 @@ namespace xiv::exd { - enum class DataType : - uint16_t + enum class DataType : uint16_t { string = 0, boolean = 1, @@ -98,8 +96,7 @@ namespace xiv namespace exd { - enum Language : - uint16_t; + enum Language : uint16_t; // Header file for exd data class Exh @@ -132,4 +129,3 @@ namespace xiv } } -#endif // XIV_EXD_EXH_H diff --git a/deps/datReader/File.h b/deps/datReader/File.h index 31c12fbe..3676a796 100644 --- a/deps/datReader/File.h +++ b/deps/datReader/File.h @@ -1,5 +1,4 @@ -#ifndef XIV_DAT_FILE_H -#define XIV_DAT_FILE_H +#pragma once #include @@ -45,4 +44,3 @@ namespace xiv::dat }; } -#endif // XIV_DAT_FILE_H diff --git a/deps/datReader/GameData.cpp b/deps/datReader/GameData.cpp index f3e56537..ab94b3b4 100644 --- a/deps/datReader/GameData.cpp +++ b/deps/datReader/GameData.cpp @@ -5,6 +5,7 @@ #include #include +#include #include #include "bparse.h" @@ -49,8 +50,8 @@ std::unordered_map< uint32_t, std::string > categoryIdToNameMap = namespace xiv::dat { - GameData::GameData( const std::filesystem::path& path ) try : - m_path( path ) + GameData::GameData( std::filesystem::path path ) try : + m_path( std::move( path ) ) { int maxExLevel = 0; @@ -273,8 +274,8 @@ namespace xiv::dat std::string filenamePart = pathLower.substr( lastSlashPos + 1 ); // Get the crc32 values from zlib, to compensate the final XOR 0xFFFFFFFF that isnot done in the exe we just reXOR - dirHash = crc32( 0, reinterpret_cast( dirPart.data() ), dirPart.size() ) ^ 0xFFFFFFFF; - filenameHash = crc32( 0, reinterpret_cast( filenamePart.data() ), filenamePart.size() ) ^ 0xFFFFFFFF; + dirHash = crc32( 0, reinterpret_cast< const uint8_t* >( dirPart.data() ), static_cast< uInt >( dirPart.size() ) ) ^ 0xFFFFFFFF; + filenameHash = crc32( 0, reinterpret_cast< const uint8_t* >( filenamePart.data() ), static_cast< uInt >( filenamePart.size() ) ) ^ 0xFFFFFFFF; } void GameData::createCategory( uint32_t catNum ) diff --git a/deps/datReader/GameData.h b/deps/datReader/GameData.h index da6b059a..19ab0cfa 100644 --- a/deps/datReader/GameData.h +++ b/deps/datReader/GameData.h @@ -1,12 +1,13 @@ -#ifndef XIV_DAT_GAMEDATA_H -#define XIV_DAT_GAMEDATA_H +#pragma once -#include #include +#include +#include +#include +#include #include #include -#include namespace xiv::dat { @@ -21,7 +22,7 @@ namespace xiv::dat { public: // This should be the path in which the .index/.datX files are located - GameData( const std::filesystem::path& path ); + GameData( std::filesystem::path path ); ~GameData(); @@ -90,4 +91,3 @@ namespace xiv::dat } -#endif // XIV_DAT_GAMEDATA_H diff --git a/deps/datReader/bparse.cpp b/deps/datReader/bparse.cpp index 70bdb8b3..dc36a7d6 100644 --- a/deps/datReader/bparse.cpp +++ b/deps/datReader/bparse.cpp @@ -5,9 +5,4 @@ std::string xiv::utils::bparse::extract_cstring( std::istream& i_stream, const s std::string temp_str; std::getline( i_stream, temp_str, '\0' ); return temp_str; -} - -std::string xiv::utils::bparse::extract_cstring( std::vector< char >& data, uint32_t pos ) -{ - return &data[ pos ]; -} +} \ No newline at end of file diff --git a/deps/datReader/bparse.h b/deps/datReader/bparse.h index f45fecdd..6c722126 100644 --- a/deps/datReader/bparse.h +++ b/deps/datReader/bparse.h @@ -1,6 +1,4 @@ -#ifndef XIV_UTILS_BPARSE_H -#define XIV_UTILS_BPARSE_H - +#pragma once #include #include #include @@ -31,7 +29,7 @@ namespace xiv::utils::bparse template< typename StructType > void read( std::istream& i_stream, StructType& i_struct ) { - static_assert( std::is_pod< StructType >::value, "StructType must be a POD to be able to use read." ); + static_assert( std::is_trivially_copyable< StructType >::value, "StructType must be a POD to be able to use read." ); i_stream.read( reinterpret_cast( &i_struct ), sizeof( StructType ) ); } @@ -93,27 +91,7 @@ namespace xiv::utils::bparse } } - template< typename StructType > - StructType extract( std::vector< char >& data, uint32_t pos, bool isLe = true ) - { - StructType tempStruct = *reinterpret_cast< StructType* >( &data[ pos ] ); - - if( std::is_class< StructType >::value ) - { - reorder( tempStruct ); - } - else if( !isLe ) - { - tempStruct = byteswap( tempStruct ); - } - return tempStruct; - } - // For cstrings std::string extract_cstring( std::istream& i_stream, const std::string& i_name ); - std::string extract_cstring( std::vector< char >& data, uint32_t pos ); - } - -#endif // XIV_UTILS_BPARSE_H diff --git a/deps/datReader/conv.h b/deps/datReader/conv.h index b8f3326f..86bd1e8c 100644 --- a/deps/datReader/conv.h +++ b/deps/datReader/conv.h @@ -1,5 +1,4 @@ -#ifndef XIV_UTILS_CONV_H -#define XIV_UTILS_CONV_H +#pragma once #include #include @@ -12,4 +11,3 @@ namespace xiv::utils::conv float ubyte2float( const uint8_t i_value ); } -#endif // XIV_UTILS_CONV_H diff --git a/deps/datReader/crc32.cpp b/deps/datReader/crc32.cpp index c861cebc..d21293d3 100644 --- a/deps/datReader/crc32.cpp +++ b/deps/datReader/crc32.cpp @@ -101,7 +101,7 @@ namespace xiv::utils::crc32 void generate_hashes_1( std::string& i_format, const uint32_t i_first_index, std::vector< uint32_t >& o_hashes ) { char* str = const_cast(i_format.data()); - const uint32_t str_size = i_format.size(); + const auto str_size = static_cast< uInt >( i_format.size() ); o_hashes.resize( 10000 ); @@ -130,7 +130,7 @@ namespace xiv::utils::crc32 std::vector< uint32_t >& o_hashes ) { char* str = const_cast(i_format.data()); - const uint32_t str_size = i_format.size(); + const auto str_size = static_cast< uInt >( i_format.size() ); o_hashes.resize( 100000000 ); diff --git a/deps/datReader/crc32.h b/deps/datReader/crc32.h index 7d4894b7..9af5490c 100644 --- a/deps/datReader/crc32.h +++ b/deps/datReader/crc32.h @@ -1,5 +1,4 @@ -#ifndef XIV_UTILS_CRC32_H -#define XIV_UTILS_CRC32_H +#pragma once #include #include @@ -22,4 +21,3 @@ namespace xiv::utils::crc32 } -#endif // XIV_UTILS_CRC32_H diff --git a/deps/datReader/zlib.cpp b/deps/datReader/zlib.cpp index 29396b99..46a26126 100644 --- a/deps/datReader/zlib.cpp +++ b/deps/datReader/zlib.cpp @@ -10,11 +10,11 @@ namespace xiv::utils::zlib void compress( const std::vector< char >& in, std::vector< char >& out ) { // Fetching upper bound for out size - auto out_size = compressBound( in.size() ); + auto out_size = compressBound( static_cast< uLong >( in.size() ) ); out.resize( out_size ); - auto ret = compress2( reinterpret_cast(out.data()), &out_size, - reinterpret_cast(in.data()), in.size(), Z_BEST_COMPRESSION ); + auto ret = compress2( reinterpret_cast< uint8_t* >( out.data() ), &out_size, + reinterpret_cast< const uint8_t* >( in.data() ), static_cast< uLong >( in.size() ), Z_BEST_COMPRESSION ); if( ret != Z_OK ) { @@ -24,13 +24,13 @@ namespace xiv::utils::zlib out.resize( out_size ); } - void no_header_decompress( uint8_t* in, uint32_t in_size, uint8_t* out, uint32_t out_size ) + void no_header_decompress( uint8_t* in, size_t in_size, uint8_t* out, size_t out_size ) { z_stream strm; strm.zalloc = Z_NULL; strm.zfree = Z_NULL; strm.opaque = Z_NULL; - strm.avail_in = in_size; + strm.avail_in = static_cast< uInt >( in_size ); strm.next_in = Z_NULL; // Init with -15 because we do not have header in this compressed data @@ -42,7 +42,7 @@ namespace xiv::utils::zlib // Set pointers to the right addresses strm.next_in = in; - strm.avail_out = out_size; + strm.avail_out = static_cast< uInt >( out_size ); strm.next_out = out; // Effectively decompress data diff --git a/deps/datReader/zlib.h b/deps/datReader/zlib.h index 7c93a5a3..97c368f2 100644 --- a/deps/datReader/zlib.h +++ b/deps/datReader/zlib.h @@ -9,7 +9,7 @@ namespace xiv::utils::zlib void compress( const std::vector< char >& in, std::vector< char >& out ); - void no_header_decompress( uint8_t* in, uint32_t in_size, uint8_t* out, uint32_t out_size ); + void no_header_decompress( uint8_t* in, size_t in_size, uint8_t* out, size_t out_size ); } diff --git a/deps/datReaderPs3/CMakeLists.txt b/deps/datReaderPs3/CMakeLists.txt new file mode 100644 index 00000000..7355a594 --- /dev/null +++ b/deps/datReaderPs3/CMakeLists.txt @@ -0,0 +1,20 @@ +cmake_minimum_required(VERSION 3.0.2) +project(Sapphire) + +include_directories( "../" ) + +file( GLOB UTILS_PUBLIC_INCLUDE_FILES "${CMAKE_CURRENT_SOURCE_DIR}/*" ) +file( GLOB UTILS_SOURCE_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/*" ) + +set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) + +add_library( xivdatps3 ${UTILS_PUBLIC_INCLUDE_FILES} ${UTILS_SOURCE_FILES} ) + +if (UNIX) + target_link_libraries( xivdatps3 PUBLIC dl ) + target_link_libraries( xivdatps3 PUBLIC z ) +else() + target_link_libraries( xivdatps3 PUBLIC zlib ) +endif() +target_include_directories( xivdatps3 PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} ) +#cotire( xivdat ) diff --git a/deps/datReaderPs3/Dat.cpp b/deps/datReaderPs3/Dat.cpp new file mode 100644 index 00000000..1a7c150e --- /dev/null +++ b/deps/datReaderPs3/Dat.cpp @@ -0,0 +1,334 @@ +#include "Dat.h" + +#include "zlib.h" + +#include "File.h" + +namespace { + const uint32_t model_section_count = 0xB; +} + +namespace xivps3::dat +{ + struct DatFileHeader + { + uint32_t size; + FileType entry_type; + uint32_t total_uncompressed_size; + uint32_t unknown[0x2]; + }; + + struct DatBlockRecord + { + uint32_t offset; + uint32_t size; + uint32_t unknown[0x4]; + SqPackBlockHash block_hash; + }; + + struct DatBlockHeader + { + uint32_t size; + uint32_t unknown1; + uint32_t compressed_size; + uint32_t uncompressed_size; + }; + + struct DatStdFileBlockInfos + { + uint32_t offset; + uint16_t size; + uint16_t uncompressed_size; + }; + + struct DatMdlFileBlockInfos + { + uint32_t unknown1; + uint32_t uncompressed_sizes[::model_section_count]; + uint32_t compressed_sizes[::model_section_count]; + uint32_t offsets[::model_section_count]; + uint16_t block_ids[::model_section_count]; + uint16_t block_counts[::model_section_count]; + uint32_t unknown2[0x2]; + }; + + struct DatTexFileBlockInfos + { + uint32_t offset; + uint32_t size; + uint32_t uncompressed_size; + uint32_t block_id; + uint32_t block_count; + }; +} + +namespace xivps3::utils::bparse +{ + template<> + inline void reorder< xivps3::dat::DatFileHeader >( xivps3::dat::DatFileHeader& i_struct ) + { + xivps3::utils::bparse::reorder( i_struct.size ); + xivps3::utils::bparse::reorder( i_struct.entry_type ); + xivps3::utils::bparse::reorder( i_struct.total_uncompressed_size ); + i_struct.size = xivps3::utils::bparse::byteswap( i_struct.size ); + i_struct.entry_type = xivps3::utils::bparse::byteswap( i_struct.entry_type ); + i_struct.total_uncompressed_size = xivps3::utils::bparse::byteswap( i_struct.total_uncompressed_size ); + for( int32_t i = 0; i < 0x2; ++i ) + { + xivps3::utils::bparse::reorder( i_struct.unknown[ i ] ); + } + } + + template<> + inline void reorder< xivps3::dat::DatBlockRecord >( xivps3::dat::DatBlockRecord& i_struct ) + { + i_struct.offset = xivps3::utils::bparse::byteswap( i_struct.offset ); + i_struct.size = xivps3::utils::bparse::byteswap( i_struct.size ); + for( int32_t i = 0; i < 0x4; ++i ) + { + xivps3::utils::bparse::reorder( i_struct.unknown[ i ] ); + } + xivps3::utils::bparse::reorder( i_struct.block_hash ); + } + + template<> + inline void reorder< xivps3::dat::DatBlockHeader >( xivps3::dat::DatBlockHeader& i_struct ) + { + xivps3::utils::bparse::reorder( i_struct.size ); + xivps3::utils::bparse::reorder( i_struct.unknown1 ); + xivps3::utils::bparse::reorder( i_struct.compressed_size ); + xivps3::utils::bparse::reorder( i_struct.uncompressed_size ); + + i_struct.size = xivps3::utils::bparse::byteswap( i_struct.size ); + i_struct.unknown1 = xivps3::utils::bparse::byteswap( i_struct.unknown1 ); + i_struct.compressed_size = xivps3::utils::bparse::byteswap( i_struct.compressed_size ); + i_struct.uncompressed_size = xivps3::utils::bparse::byteswap( i_struct.uncompressed_size ); + } + + template<> + inline void reorder< xivps3::dat::DatStdFileBlockInfos >( xivps3::dat::DatStdFileBlockInfos& i_struct ) + { + xivps3::utils::bparse::reorder( i_struct.offset ); + xivps3::utils::bparse::reorder( i_struct.size ); + xivps3::utils::bparse::reorder( i_struct.uncompressed_size ); + + i_struct.offset = xivps3::utils::bparse::byteswap( i_struct.offset ); + i_struct.size = xivps3::utils::bparse::byteswap( i_struct.size ); + i_struct.uncompressed_size = xivps3::utils::bparse::byteswap( i_struct.uncompressed_size ); + } + + template<> + inline void reorder< xivps3::dat::DatMdlFileBlockInfos >( xivps3::dat::DatMdlFileBlockInfos& i_struct ) + { + xivps3::utils::bparse::reorder( i_struct.unknown1 ); + for( auto i = 0; i < ::model_section_count; ++i ) + { + xivps3::utils::bparse::reorder( i_struct.uncompressed_sizes[ i ] ); + } + for( auto i = 0; i < ::model_section_count; ++i ) + { + xivps3::utils::bparse::reorder( i_struct.compressed_sizes[ i ] ); + } + for( auto i = 0; i < ::model_section_count; ++i ) + { + xivps3::utils::bparse::reorder( i_struct.offsets[ i ] ); + } + for( auto i = 0; i < ::model_section_count; ++i ) + { + xivps3::utils::bparse::reorder( i_struct.block_ids[ i ] ); + } + for( auto i = 0; i < ::model_section_count; ++i ) + { + xivps3::utils::bparse::reorder( i_struct.block_counts[ i ] ); + } + for( auto i = 0; i < 0x2; ++i ) + { + xivps3::utils::bparse::reorder( i_struct.unknown2[ i ] ); + } + } + + template<> + inline void reorder< xivps3::dat::DatTexFileBlockInfos >( xivps3::dat::DatTexFileBlockInfos& i_struct ) + { + xivps3::utils::bparse::reorder( i_struct.offset ); + xivps3::utils::bparse::reorder( i_struct.size ); + xivps3::utils::bparse::reorder( i_struct.uncompressed_size ); + xivps3::utils::bparse::reorder( i_struct.block_id ); + xivps3::utils::bparse::reorder( i_struct.block_count ); + } +} + +using xivps3::utils::bparse::extract; + +namespace xivps3::dat +{ + + Dat::Dat( const std::filesystem::path& i_path, uint32_t i_nb ) : + SqPack( i_path ), + m_num( i_nb ) + { + auto block_record = extract< DatBlockRecord >( m_handle ); + block_record.offset *= 0x80; + isBlockValid( block_record.offset, block_record.size, block_record.block_hash ); + } + + Dat::~Dat() + { + } + + std::unique_ptr< File > Dat::getFile( uint32_t i_offset ) + { + std::unique_ptr< File > outputFile( new File() ); + { + // Lock in this scope + std::lock_guard< std::mutex > lock( m_fileMutex ); + + // Seek to the start of the header of the file record and extract it + m_handle.seekg( i_offset ); + auto file_header = extract< DatFileHeader >( m_handle ); + + switch( file_header.entry_type ) + { + case FileType::empty: + throw std::runtime_error( "File is empty" ); + + case FileType::standard: + { + outputFile->_type = FileType::standard; + + uint32_t number_of_blocks = extract< uint32_t >( m_handle, "number_of_blocks", false ); + + // Just extract offset infos for the blocks to extract + std::vector< DatStdFileBlockInfos > std_file_block_infos; + extract< DatStdFileBlockInfos >( m_handle, number_of_blocks, std_file_block_infos ); + + // Pre allocate data vector for the whole file + outputFile->_data_sections.resize( 1 ); + auto& data_section = outputFile->_data_sections.front(); + + data_section.reserve( file_header.total_uncompressed_size ); + // Extract each block + for( auto& file_block_info : std_file_block_infos ) + { + extractBlock( i_offset + file_header.size + file_block_info.offset, data_section ); + } + } + break; + + case FileType::model: + { + outputFile->_type = FileType::model; + + DatMdlFileBlockInfos mdlBlockInfo = extract< DatMdlFileBlockInfos >( m_handle ); + + // Getting the block number and read their sizes + const uint32_t block_count = mdlBlockInfo.block_ids[ ::model_section_count - 1 ] + + mdlBlockInfo.block_counts[ ::model_section_count - 1 ]; + std::vector< uint16_t > block_sizes; + extract< uint16_t >( m_handle, "block_size", block_count, block_sizes ); + + // Preallocate sufficient space + outputFile->_data_sections.resize( ::model_section_count ); + + for( uint32_t i = 0; i < ::model_section_count; ++i ) + { + // Preallocating for section + auto& data_section = outputFile->_data_sections[ i ]; + data_section.reserve( mdlBlockInfo.uncompressed_sizes[ i ] ); + + uint32_t current_offset = i_offset + file_header.size + mdlBlockInfo.offsets[ i ]; + for( uint32_t j = 0; j < mdlBlockInfo.block_counts[ i ]; ++j ) + { + extractBlock( current_offset, data_section ); + current_offset += block_sizes[ mdlBlockInfo.block_ids[ i ] + j ]; + } + } + } + break; + + case FileType::texture: + { + outputFile->_type = FileType::texture; + + // Extracts mipmap entries and the block sizes + uint32_t sectionCount = extract< uint32_t >( m_handle, "sections_count" ); + + std::vector< DatTexFileBlockInfos > texBlockInfo; + extract< DatTexFileBlockInfos >( m_handle, sectionCount, texBlockInfo ); + + // Extracting block sizes + uint32_t block_count = texBlockInfo.back().block_id + texBlockInfo.back().block_count; + std::vector< uint16_t > block_sizes; + extract< uint16_t >( m_handle, "block_size", block_count, block_sizes ); + + outputFile->_data_sections.resize( sectionCount + 1 ); + + // Extracting header in section 0 + const uint32_t header_size = texBlockInfo.front().offset; + auto& header_section = outputFile->_data_sections[ 0 ]; + header_section.resize( header_size ); + + m_handle.seekg( i_offset + file_header.size ); + m_handle.read( header_section.data(), header_size ); + + // Extracting other sections + for( uint32_t i = 0; i < sectionCount; ++i ) + { + auto& data_section = outputFile->_data_sections[ i + 1 ]; + auto& section_infos = texBlockInfo[ i ]; + data_section.reserve( section_infos.uncompressed_size ); + + uint32_t current_offset = i_offset + file_header.size + section_infos.offset; + for( uint32_t j = 0; j < section_infos.block_count; ++j ) + { + extractBlock( current_offset, data_section ); + current_offset += block_sizes[ section_infos.block_id + j ]; + } + } + } + break; + + default: + throw std::runtime_error( + "Invalid entry_type: " + std::to_string( static_cast(file_header.entry_type) ) ); + } + } + + return outputFile; + } + + void Dat::extractBlock( uint32_t i_offset, std::vector< char >& o_data ) + { + m_handle.seekg( i_offset ); + + DatBlockHeader block_header = extract< DatBlockHeader >( m_handle ); + + // Resizing the vector to write directly into it + const uint32_t data_size = o_data.size(); + o_data.resize( data_size + block_header.uncompressed_size ); + + // 32000 in compressed_size means it is not compressed so take uncompressed_size + if( block_header.compressed_size == 32000 ) + { + m_handle.read( o_data.data() + data_size, block_header.uncompressed_size ); + } + else + { + // If it is compressed use zlib + // Read the data to be decompressed + std::vector< char > temp_buffer( block_header.compressed_size ); + m_handle.read( temp_buffer.data(), block_header.compressed_size ); + + utils::zlib::no_header_decompress( reinterpret_cast(temp_buffer.data()), + temp_buffer.size(), + reinterpret_cast(o_data.data() + data_size), + block_header.uncompressed_size ); + } + } + + uint32_t Dat::getNum() const + { + return m_num; + } + +} diff --git a/deps/datReaderPs3/Dat.h b/deps/datReaderPs3/Dat.h new file mode 100644 index 00000000..bbbd9ce8 --- /dev/null +++ b/deps/datReaderPs3/Dat.h @@ -0,0 +1,42 @@ +#ifndef XIV_DAT_DAT_H +#define XIV_DAT_DAT_H + +#include "SqPack.h" + +#include + +#include + +namespace xivps3::dat +{ + + class File; + + class Dat : public SqPack + { + public: + // Full path to the dat file + Dat( const std::filesystem::path& i_path, uint32_t i_nb ); + virtual ~Dat(); + + // Retrieves a file given the offset in the dat file + std::unique_ptr getFile( uint32_t i_offset ); + + // Appends to the vector the data of this block, it is assumed to be preallocated + // Is it also assumed that the m_fileMutex is currently locked by this thread before the call + void extractBlock( uint32_t i_offset, std::vector& o_data ); + + // Returns the dat number + uint32_t getNum() const; + + protected: + // File reading mutex to have only one thread reading the file at a time + std::mutex m_fileMutex; + + // Dat nb + uint32_t m_num; + }; + +} + +#endif // XIV_DAT_DAT_H diff --git a/deps/datReaderPs3/DatCat.cpp b/deps/datReaderPs3/DatCat.cpp new file mode 100644 index 00000000..64eb145c --- /dev/null +++ b/deps/datReaderPs3/DatCat.cpp @@ -0,0 +1,86 @@ +#include "DatCat.h" + +#include "Index.h" +#include "Dat.h" +#include "File.h" +#include "GameData.h" + +namespace xivps3 +{ +namespace dat +{ + +Cat::Cat( const std::filesystem::path& basePath, uint32_t catNum, const std::string& name ) : + m_name( name ), + m_catNum( catNum ), + m_chunk( -1 ) +{ + // From the category number, compute back the real filename for.index .datXs + std::stringstream ss; + ss << std::setw( 2 ) << std::setfill( '0' ) << std::hex << catNum; + std::string prefix = ss.str() + "0000.ps3.d"; + + // Creates the index: XX0000.win32.index + m_index = std::unique_ptr( new Index( basePath / "ffxiv" / ( prefix + ".index" ) ) ); + + // For all dat files linked to this index, create it: XX0000.win32.datX + for( uint32_t i = 0; i < getIndex().getDatCount(); ++i ) + { + m_dats.emplace_back( std::make_unique< Dat >(basePath / "ffxiv" / ( prefix + ".dat" + std::to_string( i ) ), i ) ); + } +} + +Cat::Cat( const std::filesystem::path& basePath, uint32_t catNum, const std::string& name, uint32_t exNum, uint32_t chunk ) : + m_name( name ), + m_catNum( catNum ), + m_chunk( chunk ) +{ + // Creates the index: XX0000.win32.index + m_index = std::make_unique< Index >( basePath / GameData::buildDatStr( "ex" + std::to_string( exNum ), catNum, exNum, chunk, "ps3.d", "index" ) ); + + // For all dat files linked to this index, create it: XX0000.win32.datX + for( uint32_t i = 0; i < getIndex().getDatCount(); ++i ) + { + m_dats.emplace_back( std::make_unique< Dat >( basePath / GameData::buildDatStr( "ex" + std::to_string( exNum ), catNum, exNum, chunk, "ps3.d", "dat" + std::to_string( i ) ), i ) ); + } +} + +Cat::~Cat() +{ + +} + +const Index& Cat::getIndex() const +{ + return *m_index; +} + +std::unique_ptr Cat::getFile(uint32_t dir_hash, uint32_t filename_hash) const +{ + // Fetch the correct hash_table_entry for these hashes, from that request the file from the right dat file + auto& hash_table_entry = getIndex().getHashTableEntry(dir_hash, filename_hash); + return m_dats[hash_table_entry.datNum]->getFile(hash_table_entry.datOffset); +} + +bool Cat::doesFileExist( uint32_t dir_hash, uint32_t filename_hash ) const +{ + return getIndex().doesFileExist( dir_hash, filename_hash ); +} + +bool Cat::doesDirExist( uint32_t dir_hash ) const +{ + return getIndex().doesDirExist( dir_hash ); +} + +const std::string& Cat::getName() const +{ + return m_name; +} + +uint32_t Cat::getCatNum() const +{ + return m_catNum; +} + +} +} diff --git a/deps/datReaderPs3/DatCat.h b/deps/datReaderPs3/DatCat.h new file mode 100644 index 00000000..5f8215bc --- /dev/null +++ b/deps/datReaderPs3/DatCat.h @@ -0,0 +1,68 @@ +#ifndef XIV_DAT_CAT_H +#define XIV_DAT_CAT_H + +#include +#include +#include + +namespace xivps3::dat +{ + + class Index; + + class Dat; + + class File; + + // A category represents an .index and its associated .datX + class Cat + { + public: + // basePath: Path to the folder containingthe datfiles + // catNum: The number of the category + // name: The name of the category, empty if not known + Cat( const std::filesystem::path& basePath, uint32_t catNum, const std::string& name ); + + // basePath: Path to the folder containingthe datfiles + // catNum: The number of the category + // name: The name of the category, empty if not known + // exNum: The number of the expansion to load from + // chunk: The chunk to load from + Cat( const std::filesystem::path& basePath, uint32_t catNum, const std::string& name, uint32_t exNum, + uint32_t chunk ); + + ~Cat(); + + // Returns .index of the category + const Index& getIndex() const; + + // Retrieve a file from the category given its hashes + std::unique_ptr< File > getFile( uint32_t dir_hash, uint32_t filename_hash ) const; + + + bool doesFileExist( uint32_t dir_hash, uint32_t filename_hash ) const; + + bool doesDirExist( uint32_t dir_hash ) const; + + + // Returns thename of the category + const std::string& getName() const; + + // Returns the number of the category + uint32_t getCatNum() const; + + protected: + const std::string m_name; + const uint32_t m_catNum; + const uint32_t m_chunk; + + // The .index + std::unique_ptr< Index > m_index; + + // The .datXs such as dat nb X => m_dats[X] + std::vector< std::unique_ptr< Dat>> m_dats; + }; + +} + +#endif // XIV_DAT_CAT_H diff --git a/deps/datReaderPs3/DatCategories/bg/LgbTypes.h b/deps/datReaderPs3/DatCategories/bg/LgbTypes.h new file mode 100644 index 00000000..908c8014 --- /dev/null +++ b/deps/datReaderPs3/DatCategories/bg/LgbTypes.h @@ -0,0 +1,283 @@ +#ifndef SAPPHIRE_LGBTYPES_H +#define SAPPHIRE_LGBTYPES_H + +#include "vec3.h" + +enum class LgbEntryType : uint32_t +{ + BgParts = 1, + Attribute = 2, + Light = 3, + Vfx = 4, + PositionMarker = 5, + Gimmick = 6, + SharedGroup6 = 6,// secondary variable is set to 2 + Sound = 7, + EventNpc = 8, + BattleNpc = 9, + RoutePath = 10, + Character = 11, + Aetheryte = 12, + EnvSpace = 13, + Gathering = 14, + SharedGroup15 = 15,// secondary variable is set to 13 + Treasure = 16, + Clip = 0x11, + ClipCtrlPoint = 0x12, + ClipCamera = 0x13, + ClipLight = 0x14, + ClipReserve00 = 0x15, + ClipReserve01 = 0x16, + ClipReserve02 = 0x17, + ClipReserve03 = 0x18, + ClipReserve04 = 0x19, + ClipReserve05 = 0x1A, + ClipReserve06 = 0x1B, + ClipReserve07 = 0x1C, + ClipReserve08 = 0x1D, + ClipReserve09 = 0x1E, + ClipReserve10 = 0x1F, + ClipReserve11 = 0x20, + ClipReserve12 = 0x21, + ClipReserve13 = 0x22, + ClipReserve14 = 0x23, + CutAssetOnlySelectable = 0x24, + Player = 37, + Monster = 38, + Weapon = 39, + PopRange = 40, + ExitRange = 41, + LVB = 42, + MapRange = 43, + NaviMeshRange = 44, + EventObject = 45, + DemiHuman = 46, + EnvLocation = 47, + ControlPoint = 48, + EventRange = 49, + RestBonusRange = 50, + QuestMarker = 51, + TimeLine = 52, + ObjectBehaviorSet = 53, + Movie = 54, + ScenarioEXD = 55, + ScenarioText = 56, + CollisionBox = 57, + DoorRange = 58, + LineVfx = 59, + SoundEnvSet = 60, + CutActionTimeline = 61, + CharaScene = 62, + CutAction = 63, + EquipPreset = 64, + ClientPath = 65, + ServerPath = 66, + GimmickRange = 67, + TargetMarker = 68, + ChairMarker = 69, + ClickableRange = 70, + PrefetchRange = 71, + FateRange = 72, + PartyMember = 73, + KeepRange = 74, + SphereCastRange = 75, + IndoorObject = 76, + OutdoorObject = 77, + EditGroup = 78, + StableChocobo = 79 +}; + +enum PopType : uint32_t +{ + PopTypePC = 0x1, + PopTypeNPC = 0x2, + PopTypeBNPC = 0x2, + PopTypeContent = 0x3, +}; + +struct Transformation +{ + vec3 translation; + vec3 rotation; + vec3 scale; +}; + +struct RelativePositions_ +{ + int32_t Pos; + int32_t PosCount; +}; + +struct InstanceObject +{ + LgbEntryType type; + uint32_t instanceId; + uint32_t nameOffset; + Transformation transform; +}; + +struct GameInstanceObject : public InstanceObject +{ + uint32_t BaseId; +}; + +struct NPCInstanceObject : public GameInstanceObject +{ + uint32_t PopWeather; + uint8_t PopTimeStart; + uint8_t PopTimeEnd; + uint8_t Padding00[2]; + uint32_t MoveAI; + uint8_t WanderingRange; + uint8_t Route; + uint16_t EventGroup; + uint32_t Reserved1; + uint32_t Reserved2; +}; + + +struct BNpcBaseData +{ + uint16_t TerritoryRange; + uint8_t Sense[2]; + uint8_t SenseRange[2]; +}; + + +struct BNPCInstanceObject : public NPCInstanceObject +{ + uint32_t NameId; + uint32_t DropItem; + float SenseRangeRate; + uint16_t Level; + uint8_t ActiveType; + uint8_t PopInterval; + uint8_t PopRate; + uint8_t PopEvent; + uint8_t LinkGroup; + uint8_t LinkFamily; + uint8_t LinkRange; + uint8_t LinkCountLimit; + int8_t NonpopInitZone; + int8_t InvalidRepop; + int8_t LinkParent; + int8_t LinkOverride; + int8_t LinkReply; + int8_t Nonpop; + RelativePositions_ RelativePositions; + float HorizontalPopRange; + float VerticalPopRange; + int32_t BNpcBaseData; + uint8_t RepopId; + uint8_t BNPCRankId; + uint16_t TerritoryRange; + uint32_t BoundInstanceID; + uint32_t FateLayoutLabelId; + uint32_t NormalAI; + uint32_t ServerPathId; + uint32_t EquipmentID; + uint32_t CustomizeID; +}; + +struct BgPartsData : public InstanceObject +{ + uint32_t modelFileOffset; + uint32_t collisionFileOffset; + uint32_t unknown4; + uint32_t unknown5; + uint32_t unknown6; + uint32_t unknown7; + uint32_t unknown8; + uint32_t unknown9; +}; + + + +struct PopRangeData : public InstanceObject +{ + PopType popType; + RelativePositions_ relativePositions; + float innerRadiusRatio; + uint8_t index; + uint8_t padding00[3]; + uint32_t reserved; +}; + +struct GimmickData : public InstanceObject +{ + uint32_t gimmickFileOffset; + char unknownBytes[100]; +}; + +struct ENpcData : public InstanceObject +{ + uint32_t enpcId; + uint8_t unknown1[0x24]; +}; + +struct EObjData : public InstanceObject +{ + uint32_t eobjId; + uint32_t levelHierachyId; + uint8_t unknown1[0xC]; +}; + +enum TriggerBoxShape : uint32_t +{ + TriggerBoxShapeBox = 0x1, + TriggerBoxShapeSphere = 0x2, + TriggerBoxShapeCylinder = 0x3, + TriggerBoxShapeBoard = 0x4, + TriggerBoxShapeMesh = 0x5, + TriggerBoxShapeBoardBothSides = 0x6, +}; + +struct TriggerBoxInstanceObject +{ + TriggerBoxShape triggerBoxShape; + int16_t priority; + int8_t enabled; + uint8_t padding; + uint32_t reserved; +}; + +struct ExitRangeData : public InstanceObject +{ + TriggerBoxInstanceObject triggerBoxType; + uint32_t exitType; + uint16_t zoneId; + uint16_t destTerritoryType; + int index; + uint32_t destInstanceObjectId; + uint32_t returnInstanceObjectId; + float direction; + uint32_t reserved; +}; + +struct MapRangeData : public InstanceObject +{ + TriggerBoxInstanceObject triggerBoxType; + uint32_t mapId; + uint32_t placeNameBlock; + uint32_t placeNameSpot; + uint32_t bGM; + uint32_t weather; + uint32_t reserved; + uint32_t reserved2; + uint16_t reserved3; + uint8_t housingBlockId; + int8_t restBonusEffective; + uint8_t discoveryIndex; + int8_t mapEnabled; + int8_t placeNameEnabled; + int8_t discoveryEnabled; + int8_t bGMEnabled; + int8_t weatherEnabled; + int8_t restBonusEnabled; + int8_t bGMPlayZoneInOnly; + int8_t liftEnabled; + int8_t housingEnabled; + uint16_t padding; +}; + +#endif //SAPPHIRE_LGBTYPES_H diff --git a/deps/datReaderPs3/DatCategories/bg/lgb.h b/deps/datReaderPs3/DatCategories/bg/lgb.h new file mode 100644 index 00000000..9771733e --- /dev/null +++ b/deps/datReaderPs3/DatCategories/bg/lgb.h @@ -0,0 +1,467 @@ +#ifndef _LGB_H +#define _LGB_H + +#include +#include +#include +#include +#include +#include +#include + +#include "matrix4.h" +#include "vec3.h" +#include "sgb.h" +#include "LgbTypes.h" +#include "../../bparse.h" + + +// based on https://github.com/ufx/SaintCoinach/blob/master/SaintCoinach/Graphics/Lgb/ +struct LGB_FILE; +struct LGB_FILE_HEADER; +struct LGB_GROUP; +struct LGB_GROUP_HEADER; + +/* 253494 */ +struct LayerSetReferenced +{ + uint32_t LayerSetID; +}; + +/* 253496 */ +enum LayerSetReferencedType : int32_t +{ + All = 0x0, + Include = 0x1, + Exclude = 0x2, + Undetermined = 0x3, +}; + +/* 253495 */ +struct LayerSetReferencedList +{ + LayerSetReferencedType ReferencedType; + int32_t LayerSets; + int32_t LayerSet_Count; +}; + + +class LgbEntry +{ +public: + char* m_buf; + uint32_t m_offset; + InstanceObject header; + + LgbEntry() + { + m_buf = nullptr; + m_offset = 0; + memset( &header, 0, sizeof( header ) ); + }; + + LgbEntry( char* buf, uint32_t offset ) + { + m_buf = buf; + m_offset = offset; + header = *reinterpret_cast< InstanceObject* >( buf + offset ); + header.instanceId = xivps3::utils::bparse::byteswap( header.instanceId ); + header.nameOffset = xivps3::utils::bparse::byteswap( header.nameOffset ); + header.type = xivps3::utils::bparse::byteswap( header.type ); + + header.transform.translation.x = xivps3::utils::bparse::byteswap( header.transform.translation.x ); + header.transform.translation.y = xivps3::utils::bparse::byteswap( header.transform.translation.y ); + header.transform.translation.z = xivps3::utils::bparse::byteswap( header.transform.translation.z ); + + header.transform.rotation.x = xivps3::utils::bparse::byteswap( header.transform.rotation.x ); + header.transform.rotation.y = xivps3::utils::bparse::byteswap( header.transform.rotation.y ); + header.transform.rotation.z = xivps3::utils::bparse::byteswap( header.transform.rotation.z ); + }; + + const LgbEntryType getType() const + { + return header.type; + }; + + virtual ~LgbEntry() + { + }; +}; + + +class LGB_BGPARTS_ENTRY : public LgbEntry +{ +public: + BgPartsData data; + std::string name; + std::string modelFileName; + std::string collisionFileName; + + LGB_BGPARTS_ENTRY() + { + }; + + LGB_BGPARTS_ENTRY( char* buf, uint32_t offset ) : LgbEntry( buf, offset ) + { + data = *reinterpret_cast< BgPartsData* >( buf + offset ); + name = std::string( buf + offset + header.nameOffset ); + modelFileName = std::string( buf + offset + data.modelFileOffset ); + collisionFileName = std::string( buf + offset + data.collisionFileOffset ); + }; +}; + +class LGB_GIMMICK_ENTRY : public LgbEntry +{ +public: + GimmickData data; + std::string name; + std::string gimmickFileName; + + LGB_GIMMICK_ENTRY( char* buf, uint32_t offset ) : LgbEntry( buf, offset ) + { + data = *reinterpret_cast< GimmickData* >( buf + offset ); + name = std::string( buf + offset + header.nameOffset ); + gimmickFileName = std::string( buf + offset + data.gimmickFileOffset ); + }; +}; + +class LGB_ENPC_ENTRY : public LgbEntry +{ +public: + ENpcData data; + std::string name; + + LGB_ENPC_ENTRY( char* buf, uint32_t offset ) : + LgbEntry( buf, offset ) + { + data = *reinterpret_cast< ENpcData* >( buf + offset ); + name = std::string( buf + offset + header.nameOffset ); + }; +}; + +class LGB_BNPC_ENTRY : public LgbEntry +{ +public: + BNPCInstanceObject data; + BNpcBaseData baseData; + std::string name; + + LGB_BNPC_ENTRY( char* buf, uint32_t offset ) : LgbEntry( buf, offset ) + { + data = *reinterpret_cast< BNPCInstanceObject* >( buf + offset ); + data.BaseId = xivps3::utils::bparse::byteswap( data.BaseId ); + data.BNpcBaseData = xivps3::utils::bparse::byteswap( data.BNpcBaseData ); + data.BoundInstanceID = xivps3::utils::bparse::byteswap( data.BoundInstanceID ); + data.CustomizeID = xivps3::utils::bparse::byteswap( data.CustomizeID ); + data.DropItem = xivps3::utils::bparse::byteswap( data.DropItem ); + data.EquipmentID = xivps3::utils::bparse::byteswap( data.EquipmentID ); + data.EventGroup = xivps3::utils::bparse::byteswap( data.EventGroup ); + data.FateLayoutLabelId = xivps3::utils::bparse::byteswap( data.FateLayoutLabelId ); + data.HorizontalPopRange = xivps3::utils::bparse::byteswap( data.HorizontalPopRange ); + + data.type = xivps3::utils::bparse::byteswap( data.type ); + data.instanceId = xivps3::utils::bparse::byteswap( data.instanceId ); + data.nameOffset = xivps3::utils::bparse::byteswap( data.nameOffset ); + + data.transform.translation.x = xivps3::utils::bparse::byteswap( data.transform.translation.x ); + data.transform.translation.y = xivps3::utils::bparse::byteswap( data.transform.translation.y ); + data.transform.translation.z = xivps3::utils::bparse::byteswap( data.transform.translation.z ); + + data.transform.rotation.x = xivps3::utils::bparse::byteswap( data.transform.rotation.x ); + data.transform.rotation.y = xivps3::utils::bparse::byteswap( data.transform.rotation.y ); + data.transform.rotation.z = xivps3::utils::bparse::byteswap( data.transform.rotation.z ); + + data.transform.scale.x = xivps3::utils::bparse::byteswap( data.transform.scale.x ); + data.transform.scale.y = xivps3::utils::bparse::byteswap( data.transform.scale.y ); + data.transform.scale.z = xivps3::utils::bparse::byteswap( data.transform.scale.z ); + + data.PopWeather = xivps3::utils::bparse::byteswap( data.PopWeather ); + data.MoveAI = xivps3::utils::bparse::byteswap( data.MoveAI ); + data.Level = xivps3::utils::bparse::byteswap( data.Level ); + data.NormalAI = xivps3::utils::bparse::byteswap( data.NormalAI ); + data.SenseRangeRate = xivps3::utils::bparse::byteswap( data.SenseRangeRate ); + data.ServerPathId = xivps3::utils::bparse::byteswap( data.ServerPathId ); + data.TerritoryRange = xivps3::utils::bparse::byteswap( data.TerritoryRange ); + data.VerticalPopRange = xivps3::utils::bparse::byteswap( data.VerticalPopRange ); + data.NameId = xivps3::utils::bparse::byteswap( data.NameId ); + + name = std::string( buf + offset + header.nameOffset ); + + baseData = *reinterpret_cast< BNpcBaseData* >( buf + offset + data.BNpcBaseData ); + + baseData.TerritoryRange = xivps3::utils::bparse::byteswap( baseData.TerritoryRange ); + + std::cout << data.BNpcBaseData << "\n"; + + }; +}; + +class LGB_EOBJ_ENTRY : public LgbEntry +{ +public: + EObjData data; + std::string name; + + LGB_EOBJ_ENTRY( char* buf, uint32_t offset ) : LgbEntry( buf, offset ) + { + data = *reinterpret_cast< EObjData* >( buf + offset ); + name = std::string( buf + offset + header.nameOffset ); + }; +}; + +struct LGB_MAP_RANGE_ENTRY : public LgbEntry +{ +public: + MapRangeData data; + std::string name; + + LGB_MAP_RANGE_ENTRY( char* buf, uint32_t offset ) : LgbEntry( buf, offset ) + { + data = *reinterpret_cast< MapRangeData* >( buf + offset ); + name = std::string( buf + offset + header.nameOffset ); + }; +}; + +struct LGB_EXIT_RANGE_ENTRY : public LgbEntry +{ +public: + ExitRangeData data; + std::string name; + + LGB_EXIT_RANGE_ENTRY( char* buf, uint32_t offset ) : LgbEntry( buf, offset ) + { + data = *reinterpret_cast< ExitRangeData* >( buf + offset ); + name = std::string( buf + offset + header.nameOffset ); + }; +}; + +struct LGB_POP_RANGE_ENTRY : public LgbEntry +{ +public: + PopRangeData data; + + LGB_POP_RANGE_ENTRY( char* buf, uint32_t offset ) : LgbEntry( buf, offset ) + { + data = *reinterpret_cast< PopRangeData* >( buf + offset ); + }; +}; + +struct LGB_GROUP_HEADER +{ + uint32_t id; + int32_t groupNameOffset; + int32_t entriesOffset; + int32_t entryCount; + int8_t ToolModeVisible; + int8_t ToolModeReadOnly; + int8_t IsBushLayer; + int8_t PS3Visible; + int32_t LayerSetRef; + uint16_t FestivalID; + uint16_t FestivalPhaseID; + int8_t IsTemporary; + int8_t IsHousing; + uint16_t VersionMask; + uint32_t Reserved; + int32_t OBSetReferencedList; + int32_t OBSetReferencedList_Count; + int32_t OBSetEnableReferencedList; + int32_t OBSetEnableReferencedList_Count; +}; + +struct LGB_GROUP +{ + LGB_FILE* parent; + LGB_GROUP_HEADER header; + LayerSetReferencedList layerSetReferencedList; + + std::string name; + std::vector< std::shared_ptr< LgbEntry > > entries; + std::vector< LayerSetReferenced > refs; + + LGB_GROUP( char* buf, LGB_FILE* parentStruct, uint32_t offset ) + { + parent = parentStruct; + header = *reinterpret_cast< LGB_GROUP_HEADER* >( buf + offset ); + header.entriesOffset = xivps3::utils::bparse::byteswap( header.entriesOffset ); + header.entryCount = xivps3::utils::bparse::byteswap( header.entryCount ); + header.groupNameOffset = xivps3::utils::bparse::byteswap( header.groupNameOffset ); + header.LayerSetRef = xivps3::utils::bparse::byteswap( header.LayerSetRef ); + header.id = xivps3::utils::bparse::byteswap( header.id ); + name = std::string( buf + offset + header.groupNameOffset ); + + layerSetReferencedList = *reinterpret_cast< LayerSetReferencedList* >( buf + offset + header.LayerSetRef ); + layerSetReferencedList.LayerSet_Count = xivps3::utils::bparse::byteswap( layerSetReferencedList.LayerSet_Count ); + layerSetReferencedList.LayerSets = xivps3::utils::bparse::byteswap( layerSetReferencedList.LayerSets ); + layerSetReferencedList.ReferencedType = xivps3::utils::bparse::byteswap( layerSetReferencedList.ReferencedType ); + + if( layerSetReferencedList.LayerSet_Count > 0 ) + { + refs.resize( layerSetReferencedList.LayerSet_Count ); + memcpy( (char*)&refs[0], buf + offset + header.LayerSetRef + layerSetReferencedList.LayerSets, layerSetReferencedList.LayerSet_Count * sizeof( LayerSetReferenced ) ); + + for( auto& ref : refs ) + { + ref = xivps3::utils::bparse::byteswap( ref ); + } + } + const auto entriesOffset = offset + header.entriesOffset; + for( auto i = 0; i < header.entryCount; ++i ) + { + + const auto entryOffset = entriesOffset + xivps3::utils::bparse::byteswap( *reinterpret_cast< int32_t* >( buf + ( entriesOffset + i * 4 ) ) ); + + try + { + const auto type = xivps3::utils::bparse::byteswap( *reinterpret_cast< LgbEntryType* >( buf + entryOffset ) ); + if( type == LgbEntryType::BgParts ) + { + // entries.push_back( std::make_shared< LGB_BGPARTS_ENTRY >( buf, entryOffset ) ); + } + else if( type == LgbEntryType::Gimmick ) + { + // entries.push_back( std::make_shared< LGB_GIMMICK_ENTRY >( buf, entryOffset ) ); + } + else if( type == LgbEntryType::EventNpc ) + { + // entries.push_back( std::make_shared< LGB_ENPC_ENTRY >( buf, entryOffset ) ); + } + else if( type == LgbEntryType::EventObject ) + { + // entries.push_back( std::make_shared< LGB_EOBJ_ENTRY >( buf, entryOffset ) ); + } + else if( type == LgbEntryType::ExitRange ) + { + // entries.push_back( std::make_shared< LGB_EXIT_RANGE_ENTRY >( buf, entryOffset ) ); + } + else if( type == LgbEntryType::MapRange ) + { + // entries.push_back( std::make_shared< LGB_MAP_RANGE_ENTRY >( buf, entryOffset ) ); + } + else if( type == LgbEntryType::BattleNpc ) + { + entries.push_back( std::make_shared< LGB_BNPC_ENTRY >( buf, entryOffset ) ); + } + else + { + // entries.push_back( std::make_shared< LgbEntry >( buf, entryOffset ) ); + } + } + catch( std::exception& e ) + { + std::cout << name << " " << e.what() << std::endl; + } + } + }; +}; + +struct LGB_FILE_HEADER +{ + char magic[4]; // LGB 1 + uint32_t fileSize; + uint32_t unknown; + char magic2[4]; // LGP1 + uint32_t dataOffset; + uint32_t unknown3; + uint32_t unknown4; + uint32_t unknown5; + int32_t groupCount; +}; + +struct LGB_FILE +{ + LGB_FILE_HEADER header; + std::vector< LGB_GROUP > groups; + std::string m_name; + + LGB_FILE( char* buf, const std::string& name ) : LGB_FILE( buf ) + { + m_name = name; + } + + LGB_FILE( char* buf ) + { + header = *reinterpret_cast< LGB_FILE_HEADER* >( buf ); + + header.fileSize = xivps3::utils::bparse::byteswap( header.fileSize ); + + + /* header.unknown = xivps3::utils::bparse::byteswap( header.unknown ); + header.unknown2 = xivps3::utils::bparse::byteswap( header.unknown2 ); + header.unknown3 = xivps3::utils::bparse::byteswap( header.unknown3 ); + header.unknown4 = xivps3::utils::bparse::byteswap( header.unknown4 ); + header.unknown5 = xivps3::utils::bparse::byteswap( header.unknown5 );*/ + + + auto baseOffset = sizeof( header ); + + header.dataOffset = xivps3::utils::bparse::byteswap( header.dataOffset ); + + if( strncmp( &header.magic[ 0 ], "LGB1", 4 ) != 0 ) + throw std::runtime_error( "Invalid LGB file!" ); + + if( strncmp( &header.magic2[ 0 ], "LGP1", 4 ) != 0 ) + { + throw std::runtime_error( "Invalid LGB file, LGP section not found!" ); + /* if( strncmp( &header.magic2[ 0 ] + 0x14 , "LGP1", 4 ) == 0 ) + { + memcpy( &header.magic2[ 0 ], buf + 0x20, 24 ); + baseOffset = 0x44; + + header.dataOffset = *reinterpret_cast< int32_t* >( buf + 0x24 ); + header.dataOffset = xivps3::utils::bparse::byteswap( header.dataOffset ); + header.groupCount = *reinterpret_cast< int32_t* >( buf + 0x20 + header.dataOffset ); + } + else + throw std::runtime_error( "Invalid LGB file, LGP section not found!" ); + + */ + } + + header.groupCount = xivps3::utils::bparse::byteswap( header.groupCount ); + + for( auto i = 0; i < header.groupCount; ++i ) + { + auto groupOffset = *reinterpret_cast< int32_t* >( buf + ( baseOffset + i * 4 ) ); + groupOffset = baseOffset + xivps3::utils::bparse::byteswap( groupOffset ); + const auto group = LGB_GROUP( buf, this, groupOffset ); + groups.push_back( group ); + } + }; +}; + +/* +#if __cplusplus >= 201703L +#include +std::map getLgbFiles( const std::string& dir ) +{ + namespace fs = std::experimental::filesystem; + std::map fileMap; + for( const auto& path : fs::recursive_directory_iterator( dir ) ) + { + if( path.path().extension() == ".lgb" ) + { + const auto& strPath = path.path().string(); + auto f = fopen( strPath.c_str(), "rb" ); + fseek( f, 0, SEEK_END ); + const auto size = ftell( f ); + std::vector bytes( size ); + rewind( f ); + fread( bytes.data(), 1, size, f ); + fclose( f ); + try + { + LGB_FILE lgbFile( bytes.data() ); + fileMap.insert( std::make_pair( strPath, lgbFile ) ); + } + catch( std::exception& e ) + { + std::cout << "Unable to load " << strPath << std::endl; + } + } + } + return fileMap; +} +#endif +*/ +#endif \ No newline at end of file diff --git a/deps/datReaderPs3/DatCategories/bg/lvb.h b/deps/datReaderPs3/DatCategories/bg/lvb.h new file mode 100644 index 00000000..d8f49c1a --- /dev/null +++ b/deps/datReaderPs3/DatCategories/bg/lvb.h @@ -0,0 +1,296 @@ +#ifndef _LVB_H +#define _LVB_H + +#include +#include +#include +#include +#include +#include +#include + +#include "matrix4.h" +#include "vec3.h" +#include "sgb.h" +#include "LgbTypes.h" +#include "../../bparse.h" + +struct FileHeader +{ + char FileID[4]; + int32_t FileSize; + int32_t TotalChunkCount; + char ChunkID[4]; + int32_t ChunkSize; +}; +static_assert( sizeof( FileHeader ) == 20 ); + +struct LayoutLayerSet +{ + uint32_t m_layerSetId; + uint32_t m_territoryTypeId; + char m_layerSetName[32]; +}; +static_assert( sizeof( LayoutLayerSet ) == 40 ); + +struct LayerSet +{ + int32_t NavimeshAssetPath; + uint32_t LayerSetID; + int32_t LayerReferences; + int32_t LayerReference_Count; + uint32_t TerritoryTypeID; + int32_t Name; +}; +static_assert( sizeof( LayerSet ) == 24 ); + +struct SceneChunk +{ + int32_t LayerGroups; + int32_t LayerGroup_Count; + int32_t Settings; + int32_t LayerSetFold; + int32_t SGTimelineFold; + int32_t LGBAssetPaths; + int32_t LGBAssetPathCount; + int32_t _SGDoorSettings; + int32_t SGSetting; + int32_t _SGRotationSettings; + int32_t _SGRandomTimelineSettings; + int32_t HousingSetting; + int32_t _SGClockSettings; + int32_t Reserved1[3]; +}; +static_assert( sizeof( SceneChunk ) == 64 ); + +struct SceneSettings +{ + int8_t IsPartialOutput; + int8_t ContainsLayerSetRef; + int8_t IsDungeon; + int8_t ExistsGrassData; + int32_t TerrainAssetPath; + int32_t EnvSetAttrReferences; + int32_t EnvSetAttrReference_Count; + int32_t SunriseAngle; + int32_t SkyVisibilityPath; + float CameraFarClipDistance; + float MainLightOrbitCurve; + float MainLightOrbitClamp; + float ShadowFarDistance; + float ShadowDistanceFade; + float BGSkyVisibility; + int32_t BGMaterialColor; + int32_t LightClipAABBPath; + int8_t TerrainOcclusionRainEnabled; + int8_t TerrainOcclusionDustEnabled; + int8_t ConstantTimeModeEnabled; + uint8_t Padding00[1]; + float ConstantTime; + int32_t LevelWeatherTable; + int32_t Reserved1[5]; +}; +static_assert( sizeof( SceneSettings ) == 88 ); + +struct LayerSetFolder +{ + int32_t LayerSets; + int32_t LayerSetCount; +}; +static_assert( sizeof( LayerSetFolder ) == 8 ); + +struct SGTimelineFolder +{ + int32_t SGTimelines; + int32_t SGTimelineCount; +}; +static_assert( sizeof( SGTimelineFolder ) == 8 ); + +enum eShowHideAnimationType : int32_t +{ + Invalid = 0x0, + None_1 = 0x1, + Auto = 0x2, + Timeline_0 = 0x3, + AutoWithAnimationTime = 0x4, +}; + +/* 20883 */ +struct SGSettings +{ + uint8_t NamePlateInstanceID; + uint8_t TimelineShowingID; + uint8_t TimelineHidingID; + uint8_t TimelineShownID; + uint8_t TimelineHiddenID; + uint8_t GeneralPurposeTimelineIDs[16]; + int8_t TimelineShowingIDEnabled; + int8_t TimelineHidingIDEnabled; + uint8_t Padding00[1]; + eShowHideAnimationType ShowHideAnimationType; + uint16_t ShowAnimationTime; + uint16_t HideAnimationTime; + int32_t SGActionFolder; +}; +static_assert( sizeof( SGSettings ) == 36 ); + +struct LVB_FILE +{ + FileHeader header; + SceneChunk sceneChunk; + SceneSettings sceneSettings; + + LayerSetFolder layerSetFolder; + SGTimelineFolder sgTimelineFolder; + SGSettings sgSettings; + + std::vector< LayerSet > layers; + std::vector< LayoutLayerSet > layoutLayers; + std::vector< std::string > layerNames; + + //std::vector< LGB_GROUP > groups; + std::string m_name; + + LVB_FILE( char* buf, const std::string& name ) : LVB_FILE( buf ) + { + m_name = name; + } + + LVB_FILE( char* buf ) + { + header = *reinterpret_cast< FileHeader* >( buf ); + convertToLEBytes( header ); + + if( strncmp( &header.FileID[ 0 ], "LVB1", 4 ) != 0 ) + throw std::runtime_error( "Invalid LVB file!" ); + + auto baseOffset = sizeof( header ); + auto dataOffset = baseOffset; + + sceneChunk = *reinterpret_cast< SceneChunk* >( buf + baseOffset ); + convertToLEBytes( sceneChunk ); + + baseOffset += sizeof( sceneChunk ); + + sceneSettings = *reinterpret_cast< SceneSettings* >( buf + baseOffset ); + convertToLEBytes( sceneSettings ); + + layerSetFolder = *reinterpret_cast< LayerSetFolder* >( buf + dataOffset + sceneChunk.LayerSetFold ); + convertToLEBytes( layerSetFolder ); + + sgTimelineFolder = *reinterpret_cast< SGTimelineFolder* >( buf + dataOffset + sceneChunk.SGTimelineFold ); + convertToLEBytes( sgTimelineFolder ); + + sgSettings = *reinterpret_cast< SGSettings* >( buf + dataOffset + sceneChunk.SGSetting ); + convertToLEBytes( sgSettings ); + + layers.resize( layerSetFolder.LayerSetCount ); + memcpy( (char*)&layers[0], buf + dataOffset + sceneChunk.LayerSetFold + layerSetFolder.LayerSets, sizeof( LayerSet ) * layerSetFolder.LayerSetCount ); + + int i = 0; + for( auto& entry : layers ) + { + convertToLEBytes( entry ); + + auto entryOffset = buf + dataOffset + sceneChunk.LayerSetFold + layerSetFolder.LayerSets + ( sizeof( LayerSet ) * i++ ); + + layerNames.emplace_back( entryOffset + entry.Name ); + +// for( int j = 0; j < entry.LayerReference_Count; ++j ) +// { +// LayoutLayerSet layoutLayer{}; +// +// memcpy( +// ( char* ) &layoutLayer, +// entryOffset + entry.LayerReferences + ( sizeof( LayoutLayerSet ) * j ), +// sizeof( LayoutLayerSet ) +// ); +// +// convertToLEBytes( layoutLayer ); +// +// layoutLayers.emplace_back( layoutLayer ); +// } + } + + } + + void convertToLEBytes( LayoutLayerSet& lls ) const + { + lls.m_layerSetId = xivps3::utils::bparse::byteswap( lls.m_layerSetId ); + lls.m_territoryTypeId = xivps3::utils::bparse::byteswap( lls.m_territoryTypeId ); + } + + void convertToLEBytes( FileHeader& header ) const + { + header.FileSize = xivps3::utils::bparse::byteswap( header.FileSize ); + header.TotalChunkCount = xivps3::utils::bparse::byteswap( header.TotalChunkCount ); + header.ChunkSize = xivps3::utils::bparse::byteswap( header.ChunkSize ); + } + + void convertToLEBytes( LayerSet& entry ) const + { + entry.LayerReference_Count = xivps3::utils::bparse::byteswap( entry.LayerReference_Count ); + entry.LayerReferences = xivps3::utils::bparse::byteswap( entry.LayerReferences ); + entry.LayerSetID = xivps3::utils::bparse::byteswap( entry.LayerSetID ); + entry.Name = xivps3::utils::bparse::byteswap( entry.Name ); + entry.NavimeshAssetPath = xivps3::utils::bparse::byteswap( entry.NavimeshAssetPath ); + entry.TerritoryTypeID = xivps3::utils::bparse::byteswap( entry.TerritoryTypeID ); + } + + void convertToLEBytes( SGSettings& sgSettings ) const + { + sgSettings.HideAnimationTime = xivps3::utils::bparse::byteswap( sgSettings.HideAnimationTime ); + sgSettings.SGActionFolder = xivps3::utils::bparse::byteswap( sgSettings.SGActionFolder ); + sgSettings.ShowAnimationTime = xivps3::utils::bparse::byteswap( sgSettings.ShowAnimationTime ); + sgSettings.ShowHideAnimationType = xivps3::utils::bparse::byteswap( sgSettings.ShowHideAnimationType ); + } + + void convertToLEBytes( SGTimelineFolder& sgTimelineFolder ) const + { + sgTimelineFolder.SGTimelineCount = xivps3::utils::bparse::byteswap( sgTimelineFolder.SGTimelineCount ); + sgTimelineFolder.SGTimelines = xivps3::utils::bparse::byteswap( sgTimelineFolder.SGTimelines ); + } + + void convertToLEBytes( LayerSetFolder& layerSetFolder ) const + { + layerSetFolder.LayerSetCount = xivps3::utils::bparse::byteswap( layerSetFolder.LayerSetCount ); + layerSetFolder.LayerSets = xivps3::utils::bparse::byteswap( layerSetFolder.LayerSets ); + } + + void convertToLEBytes( SceneSettings& sceneSettings ) const + { + sceneSettings.BGMaterialColor = xivps3::utils::bparse::byteswap( sceneSettings.BGMaterialColor ); + sceneSettings.BGSkyVisibility = xivps3::utils::bparse::byteswap( sceneSettings.BGSkyVisibility ); + sceneSettings.CameraFarClipDistance = xivps3::utils::bparse::byteswap( sceneSettings.CameraFarClipDistance ); + sceneSettings.ConstantTime = xivps3::utils::bparse::byteswap( sceneSettings.ConstantTime ); + sceneSettings.EnvSetAttrReference_Count = xivps3::utils::bparse::byteswap( sceneSettings.EnvSetAttrReference_Count ); + sceneSettings.EnvSetAttrReferences = xivps3::utils::bparse::byteswap( sceneSettings.EnvSetAttrReferences ); + sceneSettings.LevelWeatherTable = xivps3::utils::bparse::byteswap( sceneSettings.LevelWeatherTable ); + sceneSettings.LightClipAABBPath = xivps3::utils::bparse::byteswap( sceneSettings.LightClipAABBPath ); + sceneSettings.MainLightOrbitClamp = xivps3::utils::bparse::byteswap( sceneSettings.MainLightOrbitClamp ); + sceneSettings.ShadowDistanceFade = xivps3::utils::bparse::byteswap( sceneSettings.ShadowDistanceFade ); + sceneSettings.ShadowFarDistance = xivps3::utils::bparse::byteswap( sceneSettings.ShadowFarDistance ); + sceneSettings.SkyVisibilityPath = xivps3::utils::bparse::byteswap( sceneSettings.SkyVisibilityPath ); + sceneSettings.SunriseAngle = xivps3::utils::bparse::byteswap( sceneSettings.SunriseAngle ); + sceneSettings.TerrainAssetPath = xivps3::utils::bparse::byteswap( sceneSettings.TerrainAssetPath ); + } + + void convertToLEBytes( SceneChunk& sceneChunk ) const + { + sceneChunk._SGClockSettings = xivps3::utils::bparse::byteswap( sceneChunk._SGClockSettings ); + sceneChunk._SGDoorSettings = xivps3::utils::bparse::byteswap( sceneChunk._SGDoorSettings ); + sceneChunk._SGRandomTimelineSettings = xivps3::utils::bparse::byteswap( sceneChunk._SGRandomTimelineSettings ); + sceneChunk._SGRotationSettings = xivps3::utils::bparse::byteswap( sceneChunk._SGRotationSettings ); + sceneChunk.HousingSetting = xivps3::utils::bparse::byteswap( sceneChunk.HousingSetting ); + sceneChunk.LayerGroup_Count = xivps3::utils::bparse::byteswap( sceneChunk.LayerGroup_Count ); + sceneChunk.LayerGroups = xivps3::utils::bparse::byteswap( sceneChunk.LayerGroups ); + sceneChunk.LayerSetFold = xivps3::utils::bparse::byteswap( sceneChunk.LayerSetFold ); + sceneChunk.LGBAssetPathCount = xivps3::utils::bparse::byteswap( sceneChunk.LGBAssetPathCount ); + sceneChunk.LGBAssetPaths = xivps3::utils::bparse::byteswap( sceneChunk.LGBAssetPaths ); + sceneChunk.Settings = xivps3::utils::bparse::byteswap( sceneChunk.Settings ); + sceneChunk.SGSetting = xivps3::utils::bparse::byteswap( sceneChunk.SGSetting ); + sceneChunk.SGTimelineFold = xivps3::utils::bparse::byteswap( sceneChunk.SGTimelineFold ); + }; +}; + +#endif \ No newline at end of file diff --git a/deps/datReaderPs3/DatCategories/bg/matrix4.h b/deps/datReaderPs3/DatCategories/bg/matrix4.h new file mode 100644 index 00000000..fdcee84c --- /dev/null +++ b/deps/datReaderPs3/DatCategories/bg/matrix4.h @@ -0,0 +1,111 @@ +#ifndef _MATRIX4_H +#define _MATRIX4_H + +#include +#include + +// https://github.com/jpd002/Play--Framework/tree/master/include/math +struct matrix4 +{ + // 4x4 + float grid[16]; + + matrix4() + { + memset( &grid[ 0 ], 0, sizeof( grid ) ); + } + + float operator()( int row, int col ) const + { + return grid[ ( row * 4 ) + col ]; + } + + float& operator()( int row, int col ) + { + return grid[ ( row * 4 ) + col ]; + } + + static matrix4 rotateX( float angle ) + { + matrix4 ret = matrix4(); + ret( 0, 0 ) = 1.000000000f; + ret( 1, 1 ) = cos( angle ); + ret( 1, 2 ) = -sin( angle ); + ret( 2, 1 ) = sin( angle ); + ret( 2, 2 ) = cos( angle ); + ret( 3, 3 ) = 1.000000000f; + return ret; + } + + static matrix4 rotateY( float angle ) + { + matrix4 ret = matrix4(); + ret( 0, 0 ) = cos( angle ); + ret( 0, 2 ) = sin( angle ); + ret( 1, 1 ) = 1.000000000f; + ret( 2, 0 ) = -sin( angle ); + ret( 2, 2 ) = cos( angle ); + ret( 3, 3 ) = 1.000000000f; + return ret; + } + + static matrix4 rotateZ( float angle ) + { + matrix4 ret = matrix4(); + ret( 0, 0 ) = cos( angle ); + ret( 0, 1 ) = -sin( angle ); + ret( 1, 0 ) = sin( angle ); + ret( 1, 1 ) = cos( angle ); + ret( 2, 2 ) = 1.000000000f; + ret( 3, 3 ) = 1.000000000f; + return ret; + } + + static matrix4 scale( float x, float y, float z ) + { + matrix4 ret = matrix4(); + ret( 0, 0 ) = x; + ret( 1, 1 ) = y; + ret( 2, 2 ) = z; + ret( 3, 3 ) = 1; + + return ret; + } + + static matrix4 translate( float x, float y, float z ) + { + matrix4 ret = matrix4(); + ret( 0, 0 ) = 1; + ret( 1, 1 ) = 1; + ret( 2, 2 ) = 1; + ret( 3, 3 ) = 1; + + ret( 3, 0 ) = x; + ret( 3, 1 ) = y; + ret( 3, 2 ) = z; + return ret; + } + + matrix4 operator*( const matrix4& rhs ) const + { + matrix4 ret; + for( unsigned int i = 0; i < 4; i++ ) + { + ret( i, 0 ) = + ( *this )( i, 0 ) * rhs( 0, 0 ) + ( *this )( i, 1 ) * rhs( 1, 0 ) + ( *this )( i, 2 ) * rhs( 2, 0 ) + + ( *this )( i, 3 ) * rhs( 3, 0 ); + ret( i, 1 ) = + ( *this )( i, 0 ) * rhs( 0, 1 ) + ( *this )( i, 1 ) * rhs( 1, 1 ) + ( *this )( i, 2 ) * rhs( 2, 1 ) + + ( *this )( i, 3 ) * rhs( 3, 1 ); + ret( i, 2 ) = + ( *this )( i, 0 ) * rhs( 0, 2 ) + ( *this )( i, 1 ) * rhs( 1, 2 ) + ( *this )( i, 2 ) * rhs( 2, 2 ) + + ( *this )( i, 3 ) * rhs( 3, 2 ); + ret( i, 3 ) = + ( *this )( i, 0 ) * rhs( 0, 3 ) + ( *this )( i, 1 ) * rhs( 1, 3 ) + ( *this )( i, 2 ) * rhs( 2, 3 ) + + ( *this )( i, 3 ) * rhs( 3, 3 ); + } + return ret; + } +}; + +#endif diff --git a/deps/datReaderPs3/DatCategories/bg/pcb.h b/deps/datReaderPs3/DatCategories/bg/pcb.h new file mode 100644 index 00000000..77a50d81 --- /dev/null +++ b/deps/datReaderPs3/DatCategories/bg/pcb.h @@ -0,0 +1,92 @@ +#ifndef _PCB_H +#define _PCB_H + +#include +#include + +struct PCB_HEADER +{ + uint32_t unknown_1; + uint32_t unknown_2; + uint32_t num_entries; // count starts at 0 + uint32_t total_indices; + uint64_t padding; +}; + +struct PCB_BLOCK_HEADER +{ + uint32_t type; // 0 for entry, 0x30 for group + uint32_t group_size; // when group size in bytes for the group block + // bounding box + float x; + float y; + float z; + float x1; + float y1; + float z1; + // number of vertices packed into 16 bit + uint16_t num_v16; + // number of indices + uint16_t num_indices; + // number of normal floar vertices + uint32_t num_vertices; +}; + +struct PCB_VERTEXDATA +{ + float x; + float y; + float z; +}; + +struct PCB_INDEXDATA +{ + uint8_t index[3]; + uint8_t unknown[3]; + uint8_t unknown1[6]; +}; + +struct PCB_VERTEXDATAI16 +{ + uint16_t x; + uint16_t y; + uint16_t z; +}; + +struct PCB_BLOCK_DATA +{ + std::vector< PCB_VERTEXDATA > vertices; + std::vector< PCB_VERTEXDATAI16 > vertices_i16; + std::vector< PCB_INDEXDATA > indices; +}; + +struct PCB_BLOCK_ENTRY +{ + PCB_BLOCK_HEADER header; + PCB_BLOCK_DATA data; +}; + +struct PCB_FILE +{ + PCB_HEADER header; + std::vector< PCB_BLOCK_ENTRY > entries; +}; + +struct PCB_LIST_ENTRY +{ + uint32_t id; + float x, y, z, x2, y2, z2, rot; +}; + +struct PCB_LIST_BASE_ENTRY +{ + float x, y, z, x2, y2, z2, rot; +}; + +struct PCB_LIST_FILE +{ + uint32_t count; + PCB_LIST_BASE_ENTRY entry; + std::vector< PCB_LIST_ENTRY > entries; +}; +#endif \ No newline at end of file diff --git a/deps/datReaderPs3/DatCategories/bg/sgb.h b/deps/datReaderPs3/DatCategories/bg/sgb.h new file mode 100644 index 00000000..fbf23f5a --- /dev/null +++ b/deps/datReaderPs3/DatCategories/bg/sgb.h @@ -0,0 +1,276 @@ +#ifndef _SGB_H +#define _SGB_H + +#include +#include +#include +#include +#include +#include +#include + +#include "vec3.h" + +// +// ported from https://github.com/ufx/SaintCoinach/blob/master/SaintCoinach/Graphics/Sgb/SgbDataType.cs + +struct SGB_FILE; +struct SGB_HEADER; +struct SGB_MODEL_ENTRY; +struct SGB_MODEL_HEADER; +struct SGB_GROUP; +struct SGB_GROUP_HEADER; + + +enum SgbDataType : uint32_t +{ + Unknown0008 = 0x0008, + Group = 0x0100, +}; + +enum SgbGroupEntryType : uint32_t +{ + Model = 0x01, + Gimmick = 0x06, +}; + +struct SGB_GROUP_HEADER +{ + SgbDataType type; + int32_t nameOffset; + uint32_t unknown08; + uint32_t unknown0C; + + uint32_t unknown10; + uint32_t unknown14; + uint32_t unknown18; + uint32_t unknown1C; + + int32_t entryCount; + uint32_t unknown24; + uint32_t unknown28; + uint32_t unknown2C; + + uint32_t unknown30; + uint32_t unknown34; + uint32_t unknown38; + uint32_t unknown3C; + + uint32_t unknown40; + uint32_t unknown44; +}; + +struct SGB_GROUP1C_HEADER +{ + SgbDataType type; + int32_t nameOffset; + uint32_t unknown08; + + int32_t entryCount; + uint32_t unknown14; + int32_t modelFileOffset; + vec3 unknownFloat3; + vec3 unknownFloat3_2; + int32_t stateOffset; + int32_t modelFileOffset2; + uint32_t unknown3; + float unknown4; + int32_t nameOffset2; + vec3 unknownFloat3_3; +}; + +struct SGB_GROUP1C_ENTRY +{ + uint32_t unk; + uint32_t unk2; + int32_t nameOffset; + uint32_t index; + uint32_t unk3; + int32_t modelFileOffset; +}; + +struct SGB_GROUP_ENTRY +{ +public: + char* m_buf; + uint32_t m_offset; + + SGB_GROUP_ENTRY() + { + m_buf = nullptr; + m_offset = 0; + }; + + SGB_GROUP_ENTRY( char* buf, uint32_t offset ) + { + m_buf = buf; + m_offset = offset; + }; + + virtual ~SGB_GROUP_ENTRY() + { + }; +}; + +struct SGB_ENTRY_HEADER +{ + SgbGroupEntryType type; + uint32_t unknown2; + int32_t nameOffset; + vec3 translation; + vec3 rotation; + vec3 scale; +}; + +struct SGB_MODEL_HEADER : public SGB_ENTRY_HEADER +{ + int32_t modelFileOffset; + int32_t collisionFileOffset; +}; + +struct SGB_MODEL_ENTRY : public SGB_GROUP_ENTRY +{ + SGB_MODEL_HEADER header; + SgbGroupEntryType type; + std::string name; + std::string modelFileName; + std::string collisionFileName; + + SGB_MODEL_ENTRY( char* buf, uint32_t offset, SgbGroupEntryType type ) + { + this->type = type; + header = *reinterpret_cast< SGB_MODEL_HEADER* >( buf + offset ); + name = std::string( buf + offset + header.nameOffset ); + modelFileName = std::string( buf + offset + header.modelFileOffset ); + collisionFileName = std::string( buf + offset + header.collisionFileOffset ); + } +}; + +struct SGB_GROUP +{ + SGB_GROUP_HEADER header; + std::string name; + SGB_FILE* parent; + std::vector< std::shared_ptr< SGB_GROUP_ENTRY > > entries; + + SGB_GROUP( char* buf, SGB_FILE* file, uint32_t fileSize, uint32_t offset ) + { + parent = file; + header = *reinterpret_cast< SGB_GROUP_HEADER* >( buf + offset ); + name = std::string( buf + offset + header.nameOffset ); + + auto entriesOffset = offset + sizeof( header ); + + for( auto i = 0; i < header.entryCount; ++i ) + { + auto entryOffset = entriesOffset + *reinterpret_cast< uint32_t* >( buf + ( entriesOffset + ( i * 4 ) ) ); + if( entryOffset > fileSize ) + throw std::runtime_error( "SGB_GROUP entry offset was larger than SGB file size!" ); + auto type = *reinterpret_cast< uint32_t* >( buf + entryOffset ); + if( type == SgbGroupEntryType::Model || type == SgbGroupEntryType::Gimmick ) + { + entries.push_back( std::make_shared< SGB_MODEL_ENTRY >( buf, entryOffset, ( SgbGroupEntryType )type ) ); + } + else + { + // std::cout << "\t\tUnknown SGB entry! Group: " << name << " type: " << type << " index: " << i << " entryOffset: " << entryOffset << "\n"; + } + } + } +}; + +struct SGB_HEADER +{ + char magic[4]; // SGB1 + uint32_t fileSize; + uint32_t unknown1; + char magic2[4]; // SCN1 + + uint32_t unknown10; + int32_t sharedOffset; + uint32_t unknown18; + int32_t offset1C; + + uint32_t unknown20; + uint32_t statesOffset; + uint32_t unknown28; + uint32_t unknown2C; + + uint32_t unknown30; + uint32_t unknown34; + uint32_t unknown38; + uint32_t unknown3C; + + uint32_t unknown40; + uint32_t unknown44; + uint32_t unknown48; + uint32_t unknown4C; + + uint32_t unknown50; + uint32_t unknown54; +}; + +struct SGB_STATE_HEADER +{ + uint32_t id; + uint32_t nameOffset; + char unknown[0x24]; +}; + +struct SGB_STATE_ENTRY +{ + SGB_STATE_HEADER header; + std::string name; + + SGB_STATE_ENTRY( char* buf ) + { + header = *reinterpret_cast< SGB_STATE_HEADER* >( buf ); + name = std::string( buf + header.nameOffset ); + } +}; + +struct SGB_FILE +{ + SGB_HEADER header; + std::vector< SGB_GROUP > entries; + std::vector< SGB_STATE_ENTRY > stateEntries; + + SGB_FILE() + { + memset( &header, 0, sizeof( header ) ); + } + + SGB_FILE( char* buf ) + { + constexpr int baseOffset = 0x14; + header = *reinterpret_cast< SGB_HEADER* >( buf ); + + if( strncmp( &header.magic[ 0 ], "SGB1", 4 ) != 0 || strncmp( &header.magic2[ 0 ], "SCN1", 4 ) != 0 ) + throw std::runtime_error( "Unable to load SGB File!" ); + + try + { + auto group = SGB_GROUP( buf, this, header.fileSize, baseOffset + header.sharedOffset ); + entries.push_back( group ); + auto group2 = SGB_GROUP( buf, this, header.fileSize, baseOffset + header.offset1C ); + entries.push_back( group2 ); + uint32_t stateCount = *reinterpret_cast< uint32_t* >( buf + baseOffset + header.statesOffset + 4 ); + if( stateCount > 0 ) + { + stateCount = stateCount; + for( int i = 0; i < stateCount; ++i ) + { + auto state = SGB_STATE_ENTRY( buf + baseOffset + header.statesOffset + 8 + i * sizeof( SGB_STATE_HEADER ) ); + stateEntries.push_back( state ); + std::cout << state.name << "\n"; + } + } + } + catch( std::exception& e ) + { + std::cout << e.what() << "\n"; + } + }; +}; + +#endif // !_SGB_H \ No newline at end of file diff --git a/deps/datReaderPs3/DatCategories/bg/vec3.h b/deps/datReaderPs3/DatCategories/bg/vec3.h new file mode 100644 index 00000000..2ff35fa2 --- /dev/null +++ b/deps/datReaderPs3/DatCategories/bg/vec3.h @@ -0,0 +1,34 @@ +#ifndef _VEC3_H +#define _VEC3_H + +#include +#include "matrix4.h" + +struct vec3 +{ + float x, y, z; + + vec3() + { + x = 0.0f; + y = 0.0f; + z = 0.0f; + } + + vec3( float x, float y, float z ) + { + this->x = x; + this->y = y; + this->z = z; + }; +}; + +static vec3 operator*( const vec3& lhs, const matrix4& rhs ) +{ + vec3 ret; + ret.x = rhs( 0, 0 ) * lhs.x + rhs( 0, 1 ) * lhs.y + rhs( 0, 2 ) * lhs.z; + ret.y = rhs( 1, 0 ) * lhs.x + rhs( 1, 1 ) * lhs.y + rhs( 1, 2 ) * lhs.z; + ret.z = rhs( 2, 0 ) * lhs.x + rhs( 2, 1 ) * lhs.y + rhs( 2, 2 ) * lhs.z; + return ret; +}; +#endif \ No newline at end of file diff --git a/deps/datReaderPs3/Exd.cpp b/deps/datReaderPs3/Exd.cpp new file mode 100644 index 00000000..8cbcc78b --- /dev/null +++ b/deps/datReaderPs3/Exd.cpp @@ -0,0 +1,385 @@ +#include "Exd.h" + +#include "bparse.h" +#include "stream.h" +#include +#include "Exh.h" + +using xivps3::utils::bparse::extract; + + +namespace xivps3::exd +{ + struct ExdHeader + { + char magic[0x4]; + uint16_t unknown; + uint16_t unknown2; + uint32_t index_size; + }; + + struct ExdRecordIndex + { + uint32_t id; + uint32_t offset; + }; +} + +namespace xivps3::utils::bparse { +template<> + inline void reorder< xivps3::exd::ExdHeader >( xivps3::exd::ExdHeader& i_struct ) + { + for( int32_t i = 0; i < 0x4; ++i ) + { + xivps3::utils::bparse::reorder( i_struct.magic[ i ] ); + } + i_struct.unknown = xivps3::utils::bparse::byteswap( i_struct.unknown ); + xivps3::utils::bparse::reorder( i_struct.unknown ); + i_struct.unknown2 = xivps3::utils::bparse::byteswap( i_struct.unknown2 ); + xivps3::utils::bparse::reorder( i_struct.unknown2 ); + i_struct.index_size = xivps3::utils::bparse::byteswap( i_struct.index_size ); + xivps3::utils::bparse::reorder( i_struct.index_size ); + } + + template<> + inline void reorder< xivps3::exd::ExdRecordIndex >( xivps3::exd::ExdRecordIndex& i_struct ) + { + i_struct.id = xivps3::utils::bparse::byteswap( i_struct.id ); + xivps3::utils::bparse::reorder( i_struct.id ); + i_struct.offset = xivps3::utils::bparse::byteswap( i_struct.offset ); + xivps3::utils::bparse::reorder( i_struct.offset ); + } +}; + +namespace xivps3::exd +{ + Exd::Exd( std::shared_ptr< Exh > i_exh, const std::vector< std::shared_ptr< dat::File>>& i_files ) + { + _exh = i_exh; + _files = i_files; + + + // Iterates over all the files + const uint32_t member_count = static_cast< uint32_t >( _exh->get_members().size() ); + for( auto& file_ptr : _files ) + { + // Get a stream + std::vector< char > dataCpy = file_ptr->get_data_sections().front(); + std::istringstream iss( std::string( dataCpy.begin(), dataCpy.end() ) ); + + // Extract the header and skip to the record indices + auto exd_header = extract< ExdHeader >( iss ); + iss.seekg( 0x20 ); + + // Preallocate and extract the record_indices + const uint32_t record_count = exd_header.index_size / sizeof( ExdRecordIndex ); + std::vector< ExdRecordIndex > record_indices; + record_indices.reserve( record_count ); + for( uint32_t i = 0; i < record_count; ++i ) + { + auto recordIndex = extract< ExdRecordIndex >( iss ); + _idCache[ recordIndex.id ] = ExdCacheEntry{ file_ptr, recordIndex.offset }; + } + } + } + + Exd::~Exd() + { + } + + const std::vector< Field > Exd::get_row( uint32_t id, uint32_t subRow ) + { + + auto cacheEntryIt = _idCache.find( id ); + if( cacheEntryIt == _idCache.end() ) + throw std::runtime_error( "Id not found: " + std::to_string( id ) ); + + // Iterates over all the files + const uint32_t member_count = static_cast< uint32_t >( _exh->get_members().size() ); + auto& file_ptr = cacheEntryIt->second.file; + + std::vector< char > dataCpy = file_ptr->get_data_sections().front(); + std::istringstream iss( std::string( dataCpy.begin(), dataCpy.end() ) ); + + // Get the vector fields for the given record and preallocate it + auto fields = _data[ id ]; + fields.reserve( member_count ); + iss.seekg( cacheEntryIt->second.offset + 6 ); + + uint8_t subRows = *reinterpret_cast< uint8_t* >( &dataCpy[ cacheEntryIt->second.offset + 5 ] ); + + if( subRow >= subRows ) + throw std::runtime_error( "Out of bounds sub-row!" ); + + int offset = cacheEntryIt->second.offset + 6 + ( subRow * _exh->get_header().data_offset + 2 * ( subRow + 1 ) ); + + for( auto& member_entry : _exh->get_exh_members() ) + { + // Seek to the position of the member to extract. + // 6 is because we have uint32_t/uint16_t at the start of each record + iss.seekg( offset + member_entry.offset ); + + // Switch depending on the type to extract + switch( member_entry.type ) + { + case DataType::string: + // Extract the offset to the actual string + // Seek to it then extract the actual string + { + throw std::runtime_error( "String not implemented for variant 2!" ); + //auto string_offset = extract( iss, "string_offset", false ); + //iss.seekg( cacheEntryIt->second.offset + 6 + _exh->get_header().data_offset + string_offset ); + //fields.emplace_back( utils::bparse::extract_cstring( iss, "string" ) ); + } + break; + + case DataType::boolean: + fields.emplace_back( extract< bool >( iss, "bool" ) ); + break; + + case DataType::int8: + fields.emplace_back( extract< int8_t >( iss, "int8_t" ) ); + break; + + case DataType::uint8: + fields.emplace_back( extract< uint8_t >( iss, "uint8_t" ) ); + break; + + case DataType::int16: + fields.emplace_back( extract< int16_t >( iss, "int16_t", false ) ); + break; + + case DataType::uint16: + fields.emplace_back( extract< uint16_t >( iss, "uint16_t", false ) ); + break; + + case DataType::int32: + fields.emplace_back( extract< int32_t >( iss, "int32_t", false ) ); + break; + + case DataType::uint32: + fields.emplace_back( extract< uint32_t >( iss, "uint32_t", false ) ); + break; + + case DataType::float32: + fields.emplace_back( extract< float >( iss, "float", false ) ); + break; + + case DataType::uint64: + fields.emplace_back( extract< uint64_t >( iss, "uint64_t", false ) ); + break; + + default: + auto type = static_cast< uint16_t >( member_entry.type ); + if( type < 0x19 || type > 0x20 ) + throw std::runtime_error( "Unknown DataType: " + std::to_string( type ) ); + uint64_t val = extract< uint64_t >( iss, "bool" ); + int32_t shift = type - 0x19; + int32_t i = 1 << shift; + val &= i; + fields.emplace_back( ( val & i ) == i ); + break; + } + } + return fields; + + } + + + const std::vector< Field > Exd::get_row( uint32_t id ) + { + + auto cacheEntryIt = _idCache.find( id ); + if( cacheEntryIt == _idCache.end() ) + throw std::runtime_error( "Id not found: " + std::to_string( id ) ); + + // Iterates over all the files + const uint32_t member_count = static_cast< uint32_t >( _exh->get_members().size() ); + auto& file_ptr = cacheEntryIt->second.file; + + std::vector< char > dataCpy = file_ptr->get_data_sections().front(); + std::istringstream iss( std::string( dataCpy.begin(), dataCpy.end() ) ); + + // Get the vector fields for the given record and preallocate it + auto fields = _data[ id ]; + fields.reserve( member_count ); + iss.seekg( cacheEntryIt->second.offset + 6 ); + + uint8_t subRows = *reinterpret_cast< uint8_t* >( &dataCpy[ cacheEntryIt->second.offset + 5 ] ); + + for( auto& member_entry : _exh->get_exh_members() ) + { + // Seek to the position of the member to extract. + // 6 is because we have uint32_t/uint16_t at the start of each record + iss.seekg( cacheEntryIt->second.offset + 6 + member_entry.offset ); + + // Switch depending on the type to extract + switch( member_entry.type ) + { + case DataType::string: + // Extract the offset to the actual string + // Seek to it then extract the actual string + { + auto string_offset = extract< uint32_t >( iss, "string_offset", false ); + iss.seekg( cacheEntryIt->second.offset + 6 + _exh->get_header().data_offset + string_offset ); + fields.emplace_back( utils::bparse::extract_cstring( iss, "string" ) ); + } + break; + + case DataType::boolean: + fields.emplace_back( extract< bool >( iss, "bool" ) ); + break; + + case DataType::int8: + fields.emplace_back( extract< int8_t >( iss, "int8_t" ) ); + break; + + case DataType::uint8: + fields.emplace_back( extract< uint8_t >( iss, "uint8_t" ) ); + break; + + case DataType::int16: + fields.emplace_back( extract< int16_t >( iss, "int16_t", false ) ); + break; + + case DataType::uint16: + fields.emplace_back( extract< uint16_t >( iss, "uint16_t", false ) ); + break; + + case DataType::int32: + fields.emplace_back( extract< int32_t >( iss, "int32_t", false ) ); + break; + + case DataType::uint32: + fields.emplace_back( extract< uint32_t >( iss, "uint32_t", false ) ); + break; + + case DataType::float32: + fields.emplace_back( extract< float >( iss, "float", false ) ); + break; + + case DataType::uint64: + fields.emplace_back( extract< uint64_t >( iss, "uint64_t", false ) ); + break; + + default: + auto type = static_cast< uint16_t >( member_entry.type ); + if( type < 0x19 || type > 0x20 ) + throw std::runtime_error( "Unknown DataType: " + std::to_string( type ) ); + uint64_t val = extract< uint64_t >( iss, "bool" ); + int32_t shift = type - 0x19; + int32_t i = 1 << shift; + val &= i; + fields.emplace_back( ( val & i ) == i ); + break; + } + } + return fields; + + } + + // Get all rows + const std::map< uint32_t, std::vector< Field>>& Exd::get_rows() + { + // Iterates over all the files + const uint32_t member_count = static_cast< uint32_t >( _exh->get_members().size() ); + for( auto& file_ptr : _files ) + { + // Get a stream + std::vector< char > dataCpy = file_ptr->get_data_sections().front(); + std::istringstream iss( std::string( dataCpy.begin(), dataCpy.end() ) ); + + // Extract the header and skip to the record indices + auto exd_header = extract< ExdHeader >( iss ); + iss.seekg( 0x20 ); + + // Preallocate and extract the record_indices + const uint32_t record_count = exd_header.index_size / sizeof( ExdRecordIndex ); + std::vector< ExdRecordIndex > record_indices; + record_indices.reserve( record_count ); + for( uint32_t i = 0; i < record_count; ++i ) + { + record_indices.emplace_back( extract< ExdRecordIndex >( iss ) ); + } + + for( auto& record_index : record_indices ) + { + // Get the vector fields for the given record and preallocate it + auto& fields = _data[ record_index.id ]; + fields.reserve( member_count ); + + for( auto& member_entry : _exh->get_exh_members() ) + //for( auto& member_entry : _exh->get_members() ) + { + // Seek to the position of the member to extract. + // 6 is because we have uint32_t/uint16_t at the start of each record + iss.seekg( record_index.offset + 6 + member_entry.offset ); + + // Switch depending on the type to extract + switch( member_entry.type ) + { + case DataType::string: + // Extract the offset to the actual string + // Seek to it then extract the actual string + { + auto string_offset = extract< uint32_t >( iss, "string_offset", false ); + iss.seekg( record_index.offset + 6 + _exh->get_header().data_offset + string_offset ); + fields.emplace_back( utils::bparse::extract_cstring( iss, "string" ) ); + } + break; + + case DataType::boolean: + fields.emplace_back( extract< bool >( iss, "bool" ) ); + break; + + case DataType::int8: + fields.emplace_back( extract< int8_t >( iss, "int8_t" ) ); + break; + + case DataType::uint8: + fields.emplace_back( extract< uint8_t >( iss, "uint8_t" ) ); + break; + + case DataType::int16: + fields.emplace_back( extract< int16_t >( iss, "int16_t", false ) ); + break; + + case DataType::uint16: + fields.emplace_back( extract< uint16_t >( iss, "uint16_t", false ) ); + break; + + case DataType::int32: + fields.emplace_back( extract< int32_t >( iss, "int32_t", false ) ); + break; + + case DataType::uint32: + fields.emplace_back( extract< uint32_t >( iss, "uint32_t", false ) ); + break; + + case DataType::float32: + fields.emplace_back( extract< float >( iss, "float", false ) ); + break; + + case DataType::uint64: + fields.emplace_back( extract< uint64_t >( iss, "uint64_t", false ) ); + break; + + default: + auto type = static_cast< uint16_t >( member_entry.type ); + if( type < 0x19 || type > 0x20 ) + throw std::runtime_error( "Unknown DataType: " + std::to_string( type ) ); + uint64_t val = extract< uint64_t >( iss, "bool" ); + int32_t shift = type - 0x19; + int32_t i = 1 << shift; + val &= i; + fields.emplace_back( ( val & i ) == i ); + break; + } + } + } + } + return _data; + } + +} + diff --git a/deps/datReaderPs3/Exd.h b/deps/datReaderPs3/Exd.h new file mode 100644 index 00000000..0884ce8d --- /dev/null +++ b/deps/datReaderPs3/Exd.h @@ -0,0 +1,200 @@ +#ifndef XIV_EXD_EXD_H +#define XIV_EXD_EXD_H + +#include +#include + +#include + +#include "File.h" +#include "Exd/Common.h" +#include "Exd/Structs.h" +#include "stream.h" +#include +#include "Exh.h" +#include "bparse.h" +namespace xivps3::exd +{ + + class Exh; + + // Field type containing all the possible types in the data files + using Field = std::variant< + std::string, + bool, + int8_t, + uint8_t, + int16_t, + uint16_t, + int32_t, + uint32_t, + float, + uint64_t >; + + struct ExdCacheEntry + { + std::shared_ptr< dat::File > file; + uint32_t offset; + }; + + // Data for a given language + class Exd + { + public: + // i_exh: the header + // i_files: the multiple exd files + Exd() + { + } + + Exd( std::shared_ptr< Exh > i_exh, const std::vector< std::shared_ptr< dat::File>>& i_files ); + + ~Exd(); + + // Get a row by its id + const std::vector< Field > get_row( uint32_t id ); + + template< typename T > + std::shared_ptr< Component::Excel::Ps3::ExcelStruct< T > > get_row( uint32_t id ) + { + using namespace xivps3::utils; + auto cacheEntryIt = _idCache.find( id ); + if( cacheEntryIt == _idCache.end() ) + throw std::out_of_range( "Id not found: " + std::to_string( id ) ); + + if( sizeof( T ) != _exh->get_header().data_offset ) + { + throw std::runtime_error( + "the struct size (" + std::to_string( sizeof( T ) ) + ") doesn't match the size in the header (" + + std::to_string( _exh->get_header().data_offset ) + ")!" ); + } + + // Iterates over all the files + const uint32_t member_count = static_cast< uint32_t >( _exh->get_members().size() ); + auto& file_ptr = cacheEntryIt->second.file; + + std::vector< char > dataCpy = file_ptr->get_data_sections().front(); + std::istringstream iss( std::string( dataCpy.begin(), dataCpy.end() ) ); + + auto pSheet = std::make_shared< Component::Excel::Ps3::ExcelStruct< T > >(); + + // Get the vector fields for the given record and preallocate it + auto fields = _data[ id ]; + fields.reserve( member_count ); + iss.seekg( cacheEntryIt->second.offset + 6 ); + + iss.read( reinterpret_cast( &pSheet.get()->_data ), sizeof( T ) ); + + int stringCount = 0; + for( auto& member_entry : _exh->get_exh_members() ) + { + + // Seek to the position of the member to extract. + // 6 is because we have uint32_t/uint16_t at the start of each record + iss.seekg( cacheEntryIt->second.offset + 6 + member_entry.offset ); + + // Switch depending on the type to extract + switch( member_entry.type ) + { + case DataType::string: + // Extract the offset to the actual string + // Seek to it then extract the actual string + { + auto string_offset = bparse::extract< uint32_t >( iss, "string_offset", false ); + iss.seekg( cacheEntryIt->second.offset + 6 + _exh->get_header().data_offset + string_offset ); + std::string value = utils::bparse::extract_cstring( iss, "string" ); + auto it = pSheet->_strings.insert( pSheet->_strings.end(), value ); + *reinterpret_cast< uint32_t* >( pSheet->ptr() + member_entry.offset ) = + static_cast< uint32_t >( std::distance( pSheet->_strings.begin(), it ) ); + } + break; + + case DataType::boolean: + bparse::extract< bool >( iss, "bool" ); + break; + + case DataType::int8: + bparse::extract< int8_t >( iss, "int8_t" ); + break; + + case DataType::uint8: + bparse::extract< uint8_t >( iss, "uint8_t" ); + break; + + + case DataType::int16: + { + int16_t value = bparse::extract< int16_t >( iss, "int16_t", false ); + *reinterpret_cast< int16_t* >( pSheet->ptr() + member_entry.offset ) = value; + } + break; + + case DataType::uint16: + { + uint16_t value = bparse::extract< uint16_t >( iss, "uint16_t", false ); + *reinterpret_cast< uint16_t* >( pSheet->ptr() + member_entry.offset ) = value; + } + break; + + case DataType::int32: + { + int32_t value = bparse::extract< int32_t >( iss, "int32_t", false ); + *reinterpret_cast< int32_t* >( pSheet->ptr() + member_entry.offset ) = value; + } + break; + + case DataType::uint32: + { + uint32_t value = bparse::extract< uint32_t >( iss, "uint32_t", false ); + *reinterpret_cast< uint32_t* >( pSheet->ptr() + member_entry.offset ) = value; + } + break; + + case DataType::float32: + { + float value = bparse::extract< float >( iss, "float", false ); + *reinterpret_cast< float* >( pSheet->ptr() + member_entry.offset ) = value; + } + break; + + case DataType::uint64: + { + uint64_t value = bparse::extract< uint64_t >( iss, "uint64_t", false ); + *reinterpret_cast< uint64_t* >( pSheet->ptr() + member_entry.offset ) = value; + } + break; + + default: + auto type = static_cast< uint16_t >( member_entry.type ); + if( type < 0x19 || type > 0x20 ) + throw std::runtime_error( "Unknown DataType: " + std::to_string( type ) ); + uint64_t val = bparse::extract< uint64_t >( iss, "bool" ); + int32_t shift = type - 0x19; + int32_t i = 1 << shift; + val &= i; + fields.emplace_back( ( val & i ) == i ); + break; + } + } + + return pSheet; + + } + + // Get a row by its id and sub-row + const std::vector< Field > get_row( uint32_t id, uint32_t subRow ); + + // Get all rows + const std::map< uint32_t, std::vector< Field>>& get_rows(); + + protected: + // Data indexed by the ID of the row, the vector is field with the same order as exh.members + std::map< uint32_t, std::vector< Field>> _data; + std::vector< std::shared_ptr< dat::File>> _files; + std::shared_ptr< Exh > _exh; + std::map< uint32_t, ExdCacheEntry > _idCache; + }; + +} + +#endif // XIV_EXD_EXD_H diff --git a/deps/datReaderPs3/Exd/Common.h b/deps/datReaderPs3/Exd/Common.h new file mode 100644 index 00000000..83fb1382 --- /dev/null +++ b/deps/datReaderPs3/Exd/Common.h @@ -0,0 +1,109 @@ +#ifndef SAPPHIRE_EXD_COMMON_H +#define SAPPHIRE_EXD_COMMON_H + +namespace Component::Excel::Ps3 +{ + + struct ExcelDataRowHeader + { + uint32_t dataSize; + uint16_t rowCount; + }; + + enum Language : int32_t + { + LANGUAGE_ALL = 0x0, + LANGUAGE_JP = 0x1, + LANGUAGE_EN = 0x2, + LANGUAGE_DE = 0x3, + LANGUAGE_FR = 0x4, + LANGUAGE_CH = 0x5, + LANGUAGE_MAX = 0x6, + }; + + struct StringOffset + { + uint32_t m_offset; + }; + + typedef int32_t LinkList[12]; + +/* struct LinkList::Holder + { + Common::Component::Excel::LinkList m_begin; + Common::Component::Excel::LinkList m_end; + uint32_t m_size; + };*/ + + struct ExcelEntryKey + { + uint32_t m_mainkey; + uint16_t m_hash; + uint16_t m_subkey_info[3]; + }; + + typedef int32_t StringPOD[4]; + + union ExcelCell + { + bool b; + int8_t s8; + uint8_t u8; + int16_t s16; + uint16_t u16; + int32_t s32; + uint32_t u32; + int64_t s64; + uint64_t u64; + float f; + StringPOD str_pod; + StringPOD str_old; + StringOffset str_new; + StringPOD str; + StringOffset str_ofs; + int8_t *bin; + uint8_t boolean0; + uint8_t boolean1; + uint8_t boolean2; + uint8_t boolean3; + uint8_t boolean4; + uint8_t boolean5; + uint8_t boolean6; + uint8_t boolean7; + }; + + using ExdCell = ExcelCell; + + enum CELL_TYPE : uint32_t + { + TYPE_NONE = 0xFFFFFFFF, + TYPE_STR = 0x0, + TYPE_BOOL = 0x1, + TYPE_S8 = 0x2, + TYPE_U8 = 0x3, + TYPE_S16 = 0x4, + TYPE_U16 = 0x5, + TYPE_S32 = 0x6, + TYPE_U32 = 0x7, + TYPE_F16 = 0x8, + TYPE_FLOAT = 0x9, + TYPE_S64 = 0xA, + TYPE_U64 = 0xB, + TYPE_BIN = 0xC, + TYPE_BOOLEAN0 = 0x19, + TYPE_BOOLEAN1 = 0x1A, + TYPE_BOOLEAN2 = 0x1B, + TYPE_BOOLEAN3 = 0x1C, + TYPE_BOOLEAN4 = 0x1D, + TYPE_BOOLEAN5 = 0x1E, + TYPE_BOOLEAN6 = 0x1F, + TYPE_BOOLEAN7 = 0x20, + TYPE_MAX_4 = 0x21, + }; + + +} + + + +#endif //SAPPHIRE_EXD_COMMON_H diff --git a/deps/datReaderPs3/Exd/Structs.h b/deps/datReaderPs3/Exd/Structs.h new file mode 100644 index 00000000..03a46f7a --- /dev/null +++ b/deps/datReaderPs3/Exd/Structs.h @@ -0,0 +1,4644 @@ +#ifndef SAPPHIRE_EXCEL_STRUCTS_H +#define SAPPHIRE_EXCEL_STRUCTS_H + +#include "Common.h" +#include + +namespace Component::Excel::Ps3 +{ + + template< typename T > + struct ExcelStruct + { + + T _data; + std::vector< std::string > _strings; + + T& data() + { + return _data; + }; + + uint8_t* ptr() + { + return reinterpret_cast< uint8_t* >( &_data ); + }; + + const std::string& getString( Component::Excel::Ps3::StringOffset offset ) + { + return _strings[ offset.m_offset ]; + }; + }; + + + ///////////////////////////////////////////////////////// + + /* 3746 */ + struct CraftLeve + { + int32_t Leve; + int32_t Talk; + int32_t Item[4]; + uint16_t ItemNum[4]; + uint8_t AdditionalTimes; + bool HQ[4]; + int8_t padding0[3]; + }; + + /* 3747 */ + struct CompleteJournalCategory + { + uint32_t Begin; + uint32_t End; + int32_t SeparateType; + }; + + /* 33329 */ + struct ItemTextStruct + { + Component::Excel::Ps3::StringOffset SGL; + Component::Excel::Ps3::StringOffset PLR; + Component::Excel::Ps3::StringOffset Help; + Component::Excel::Ps3::StringOffset UIName; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 33331 */ + struct Item + { + ItemTextStruct Text; + uint64_t ModelId; + uint64_t SubModelId; + uint32_t StackMax; + uint32_t CategoryArg; + uint32_t PriceMin; + uint32_t Price; + uint32_t PriceMax; + uint32_t SortId; + int32_t RepairItem; + int32_t MirageItem; + uint16_t Icon; + uint16_t Trait; + uint16_t Damage; + uint16_t MagicDamage; + uint16_t AttackInterval; + uint16_t ShieldRate; + uint16_t ShieldBlockRate; + uint16_t Defense; + uint16_t MagicDefense; + uint16_t RecastTime; + uint16_t Action; + uint16_t Salvage; + int16_t BonusValue[6]; + uint8_t Level; + uint8_t EquipLevel; + uint8_t EquipPvPRank; + uint8_t Category; + uint8_t UICategory; + uint8_t SearchCategory; + uint8_t Rarity; + uint8_t MaterializeType; + uint8_t MateriaSocket; + uint8_t Slot; + uint8_t BonusType[6]; + uint8_t SpecialBonus; + uint8_t SpecialBonusType[6]; + uint8_t Repair; + uint8_t Class; + uint8_t AttackType; + uint8_t AttackRange; + uint8_t CastTime; + uint8_t CondClassJob; + uint8_t Series; + uint8_t SellPriceParam; + uint8_t CondGrandCompany; + uint8_t Role; + int8_t SpecialBonusValue[6]; + bool ConditionRace[5]; + uint8_t DisablePassedOthers : 1; + uint8_t OnlyOne : 1; + uint8_t DisableAbandon : 1; + uint8_t MateriaProhibition : 1; + uint8_t Crest : 1; + uint8_t Stain : 1; + uint8_t Lot : 1; + uint8_t HQ : 1; + uint8_t padding1 : 4; + uint8_t MateriaEffectOnlyInPvP : 1; + uint8_t ConditionFemale : 1; + uint8_t ConditionMale : 1; + uint8_t DisableSameAccount : 1; + int8_t padding2[6]; + }; + + /* 35156 */ + struct AddonTextStruct + { + Component::Excel::Ps3::StringOffset Text; + }; + + /* 35157 */ + struct Addon + { + AddonTextStruct Text; + }; + + /* 35338 */ + struct InstanceContentTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Description; + }; + + /* 35339 */ + struct InstanceContentRewardStruct + { + uint32_t BeginnerBonusGil; + uint32_t BeginnerBonusExp; + uint32_t TotalExp; + uint32_t TotalGil; + uint16_t BeginnerBonusA; + uint16_t ClearA; + uint16_t ClearB; + uint16_t MiddleA[5]; + uint16_t MiddleB[5]; + int8_t padding0[2]; + }; + + /* 35340 */ + struct InstanceContent + { + InstanceContentTextStruct Text; + InstanceContentRewardStruct Reward; + uint32_t StartCutscene; + uint32_t EntranceRect; + uint32_t TerritoryType; + uint32_t Image; + uint32_t BossMessage[2]; + uint32_t BossName; + uint32_t ContentTextStart; + uint32_t ContentTextEnd; + int32_t InstanceBuff; + uint16_t Time; + uint16_t Music; + uint16_t ClearMusic; + uint16_t Sortkey; + uint8_t Type; + uint8_t RandomContentType; + uint8_t RewardType; + uint8_t FinderPartyCondition; + uint8_t LevelMin; + uint8_t LevelMax; + uint8_t PartyMemberCount; + uint8_t PartyCount; + uint8_t TankCount; + uint8_t HealerCount; + uint8_t AttackerCount; + uint8_t RangeCount; + uint8_t ItemLevel; + uint8_t ItemLevelMax; + uint8_t ProgressMax; + int8_t TreasureObtainedFlag; + uint8_t padding1 : 2; + uint8_t DisableHalfwayProgress : 1; + uint8_t Halfway : 1; + uint8_t EnableFinder : 1; + uint8_t DifferentiateDPS : 1; + uint8_t Alliance : 1; + uint8_t FreeRole : 1; + int8_t padding2[3]; + }; + + /* 63505 */ + struct ClassJobTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Abbreviation; + Component::Excel::Ps3::StringOffset NameFemale; + }; + + /* 63506 */ + struct ClassJob + { + ClassJobTextStruct Text; + int8_t padding0[4]; + uint64_t ModelJobStone; + Component::Excel::Ps3::StringOffset EnText; + int32_t Kind; + int32_t InitWeapon[2]; + uint16_t Hp; + uint16_t Mp; + uint16_t STR; + uint16_t VIT; + uint16_t DEX; + uint16_t INT_; + uint16_t MND; + uint16_t PIE; + uint16_t Element[6]; + uint16_t LimitBreakAction[3]; + uint8_t MainClass; + uint8_t Role; + uint8_t Town; + uint8_t PartyBuff; + uint8_t UIPriority; + int8_t WorkIndex; + int8_t BattleClassIndex; + int8_t MonsterNote; + uint8_t padding1 : 7; + uint8_t IsJob : 1; + int8_t padding2[5]; + }; + + /* 63507 */ + struct TribeTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset NameFemale; + }; + + /* 63508 */ + struct Tribe + { + TribeTextStruct Text; + int8_t Hp; + int8_t Mp; + int8_t STR; + int8_t VIT; + int8_t DEX; + int8_t INT_; + int8_t MND; + int8_t PIE; + }; + + /* 66076 */ + struct ActionTimeline + { + Component::Excel::Ps3::StringOffset Filename; + uint8_t Type; + uint8_t Priority; + uint8_t Stance; + uint8_t Slot; + uint8_t LookAtMode; + uint8_t ActionTimelineEIDMode; + uint8_t WeaponTimeline; + uint8_t LoadType; + uint8_t StartAttach; + uint8_t padding0 : 2; + uint8_t Pause : 1; + uint8_t ResidentPap : 1; + uint8_t Resident : 1; + uint8_t KillUpper : 1; + uint8_t IsMotionCanceledByMoving : 1; + uint8_t IsLoop : 1; + int8_t padding1[2]; + }; + + /* 67373 */ + struct ActionTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Help; + }; + + /* 67374 */ + struct Action + { + ActionTextStruct Text; + uint16_t Icon; + uint16_t CastTimeline; + uint16_t HitTimeline; + uint16_t CostValue; + uint16_t CondArg; + uint16_t ComboParent; + uint16_t CastTime; + uint16_t RecastTime; + uint16_t ResetStatus; + int16_t Timeline; + uint8_t Category; + uint8_t CastVFX; + uint8_t ArcherTimeline; + uint8_t Level; + uint8_t EffectType; + uint8_t EffectRange; + uint8_t EffectWidth; + uint8_t CostType; + uint8_t Cond; + uint8_t RecastGroup; + uint8_t Element; + uint8_t ProcStatus; + uint8_t Reward; + uint8_t Init; + uint8_t UseClassJob; + uint8_t Omen; + int8_t Learn; + int8_t SelectRange; + int8_t SelectCorpse; + int8_t AttackType; + uint8_t SelectMyPet : 1; + uint8_t SelectGround : 1; + uint8_t SelectENpc : 1; + uint8_t SelectOthers : 1; + uint8_t SelectEnemy : 1; + uint8_t SelectAlliance : 1; + uint8_t SelectParty : 1; + uint8_t SelectMyself : 1; + uint8_t PvPOnly : 1; + uint8_t InvalidMove : 1; + uint8_t Silence : 1; + uint8_t ComboContinue : 1; + uint8_t EffectEnemy : 1; + uint8_t CheckDir : 1; + uint8_t Lay : 1; + uint8_t SelectPartyPet : 1; + uint8_t IsTargetLine : 1; + uint8_t HideCastBar : 1; + uint8_t ForceVFX : 1; + uint8_t LogExec : 1; + uint8_t LogMiss : 1; + uint8_t LogCast : 1; + uint8_t IsMove : 1; + uint8_t IsAvoid : 1; + int8_t padding0[1]; + }; + + /* 75653 */ + struct Recipe + { + int32_t CraftType; + int32_t CraftItemId; + int32_t MaterialItemId[8]; + int32_t CrystalType[2]; + int32_t NeedStatus; + int32_t NeedEquipItem; + uint16_t Category; + uint16_t WorkRate; + uint16_t QualityRate; + uint16_t MaterialPointRate; + uint16_t NotebookIndex; + uint16_t NeedCraftmanship; + uint16_t NeedControl; + uint16_t NeedSecretRecipeBook; + uint8_t Level; + uint8_t CraftNum; + uint8_t MaterialNum[8]; + uint8_t CrystalNum[2]; + uint8_t Element; + uint8_t padding0 : 5; + uint8_t CanHq : 1; + uint8_t CanAutoCraft : 1; + uint8_t Sub : 1; + int8_t padding1[2]; + }; + + /* 75654 */ + struct RecipeLevelTable + { + uint16_t WorkMax; + uint16_t QualityMax; + uint16_t MaterialPoint; + int8_t padding0[2]; + }; + + /* 86192 */ + struct EventItemTextStruct + { + Component::Excel::Ps3::StringOffset SGL; + Component::Excel::Ps3::StringOffset PLR; + Component::Excel::Ps3::StringOffset Help; + Component::Excel::Ps3::StringOffset UIName; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 86193 */ + struct EventItem + { + EventItemTextStruct Text; + uint32_t EventHandler; + int32_t CastTimeline; + int32_t Timeline; + uint16_t Icon; + uint16_t Action; + uint8_t StackMax; + uint8_t CastTime; + int8_t padding1[2]; + }; + + /* 100766 */ + struct WeatherTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 100767 */ + struct Weather + { + WeatherTextStruct Text; + int32_t Icon; + }; + + /* 139964 */ + struct WeaponTimeline + { + Component::Excel::Ps3::StringOffset File; + int16_t NextWeaponTimeline; + int8_t padding0[2]; + }; + + /* 161452 */ + struct MotionTimeline + { + Component::Excel::Ps3::StringOffset filename; + uint8_t BlendGroup; + uint8_t padding0 : 5; + uint8_t IsLipEnable : 1; + uint8_t IsBlinkEnable : 1; + uint8_t IsLoop : 1; + int8_t padding1[2]; + }; + + /* 175281 */ + struct ExclusionPreloadStruct + { + int32_t Timeline; + }; + + /* 195074 */ + struct CharaMakeTypeLooksStruct + { + uint32_t Menu; + uint32_t SubMenuMask; + uint32_t Customize; + uint32_t SubMenuParam[28]; + uint32_t SubMenuGraphic[28]; + uint8_t InitVal; + uint8_t SubMenuType; + uint8_t SubMenuNum; + uint8_t LookAt; + }; + + /* 195075 */ + struct CharaMakeTypeVoiceStruct + { + uint8_t SEPackId[12]; + }; + + /* 195076 */ + struct CharaMakeTypeFaceOptionStruct + { + int32_t Option[7]; + }; + + /* 195077 */ + struct CharaMakeTypeEquipStruct + { + uint64_t Helmet; + uint64_t Top; + uint64_t Glove; + uint64_t Down; + uint64_t Shoes; + uint64_t Weapon; + uint64_t SubWeapon; + }; + + /* 195078 */ + struct CharaMakeType + { + CharaMakeTypeLooksStruct Looks[28]; + CharaMakeTypeVoiceStruct Voice; + CharaMakeTypeFaceOptionStruct FaceOption[6]; + int8_t padding0[4]; + CharaMakeTypeEquipStruct Equip[3]; + int32_t Race; + int32_t Tribe; + int8_t Gender; + int8_t padding1[7]; + }; + + struct BNpcCustomizeStruct + { + uint8_t race; + uint8_t gender; + uint8_t bodyType; + uint8_t height; + uint8_t tribe; + uint8_t face; + uint8_t hairStyle; + uint8_t hairHighlight; + uint8_t skinColor; + uint8_t eyeHeterochromia; + uint8_t hairColor; + uint8_t hairHighlightColor; + uint8_t facialFeature; + uint8_t facialFeatureColor; + uint8_t eyebrows; + uint8_t eyeColor; + uint8_t eyeShape; + uint8_t nose; + uint8_t jaw; + uint8_t mouth; + uint8_t lipColor; + uint8_t bustOrTone1; + uint8_t extraFeature1; + uint8_t extraFeature2OrBust; + uint8_t facePaint; + uint8_t facePaintColor; + uint8_t padding1; + uint8_t padding2; + }; + + /* 195079 */ + struct HairMakeTypeLooksStruct + { + uint32_t Menu; + uint32_t SubMenuMask; + uint32_t Customize; + uint32_t SubMenuParam[40]; + uint32_t SubMenuGraphic[28]; + uint8_t InitVal; + uint8_t SubMenuType; + uint8_t SubMenuNum; + uint8_t LookAt; + }; + + /* 195080 */ + struct HairMakeTypeFaceOptionStruct + { + int32_t Option[7]; + }; + + /* 195081 */ + struct HairMakeType + { + HairMakeTypeLooksStruct Looks[9]; + HairMakeTypeFaceOptionStruct FaceOption[6]; + int32_t Race; + int32_t Tribe; + int8_t Gender; + int8_t padding0[3]; + }; + + /* 195083 */ + struct CharaMakeCustomize + { + uint32_t Icon; + uint8_t Graphic; + uint8_t NeedReward; + int8_t padding0[2]; + }; + + /* 195168 */ + struct EmoteTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 195169 */ + struct Emote + { + EmoteTextStruct Text; + int32_t TimelineID; + int32_t TimelineID_Begin; + int32_t TimelineID_End; + int32_t TimelineID_GroundSitting; + int32_t TimelineID_ChairSitting; + int32_t TimelineID_Mounting; + int32_t TimelineID_Lying; + int32_t TimelineID_Adjust; + int32_t TextCommand; + uint16_t Icon; + uint16_t Log; + uint16_t LogSelf; + uint8_t Category; + uint8_t Mode; + uint8_t UI_Priority; + uint8_t Reward; + uint8_t IsLoopEmote : 1; + uint8_t IsPoseEmote : 1; + uint8_t IsAvailableWhenFishing : 1; + uint8_t IsAvailableWhenDrawn : 1; + uint8_t IsAvailableWhenNotDrawn : 1; + uint8_t IsFacial : 1; + uint8_t IsRotate : 1; + uint8_t IsEndEmoteMode : 1; + int8_t padding0[1]; + }; + + /* 195171 */ + struct AetheryteTextStruct + { + Component::Excel::Ps3::StringOffset SGL; + Component::Excel::Ps3::StringOffset PLR; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 195172 */ + struct Aetheryte + { + AetheryteTextStruct Text; + uint32_t PopRange[4]; + int32_t EventHandler; + uint16_t TelepoName; + uint16_t TransferName; + uint16_t TerritoryType; + int16_t MakerPosX; + int16_t MakerPosY; + int16_t CostPosX; + int16_t CostPosY; + uint8_t Town; + uint8_t SortKey; + uint8_t TextIcon; + uint8_t padding1 : 7; + uint8_t Telepo : 1; + int8_t padding2[2]; + }; + + /* 195176 */ + struct TerritoryType + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset LVB; + uint32_t EventHandler; + int32_t RegionIcon; + int32_t AreaIcon; + int32_t Aetheryte; + int32_t FixedTime; + uint16_t Region; + uint16_t SubRegion; + uint16_t Area; + uint16_t Map; + uint16_t BGM; + uint16_t QuestBattle; + uint8_t BattalionMode; + uint8_t ExclusiveType; + uint8_t IntendedUse; + uint8_t Breath; + uint8_t Resident; + int8_t TreasureObtainedFlag; + int8_t AchievementIndex; + uint8_t padding0 : 4; + uint8_t IsPvPAction : 1; + uint8_t Mount : 1; + uint8_t Stealth : 1; + uint8_t PCSearch : 1; + }; + + /* 195177 */ + struct ItemUICategoryTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 195178 */ + struct ItemUICategory + { + ItemUICategoryTextStruct Text; + int32_t Icon; + uint8_t Priority; + uint8_t Kind; + int8_t padding0[2]; + }; + + /* 195791 */ + struct MovieSubtitleTimeStruct + { + float StartTime; + float EndTime; + }; + + /* 195792 */ + struct MovieSubtitle + { + MovieSubtitleTimeStruct Time; + }; + + /* 195793 */ + struct HowToTextStruct + { + Component::Excel::Ps3::StringOffset Title; + }; + + /* 195794 */ + struct HowTo + { + HowToTextStruct Text; + int16_t Page[5]; + int16_t PagePad[5]; + uint8_t SortId; + int8_t Category; + uint8_t padding0 : 7; + uint8_t Announce : 1; + int8_t padding1[1]; + }; + + /* 195795 */ + struct AchievementTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Help; + }; + + /* 195796 */ + struct Achievement + { + AchievementTextStruct Text; + uint32_t Item; + int32_t ConditionArg[9]; + uint16_t Title; + uint16_t Icon; + uint16_t Priority; + uint8_t Category; + uint8_t Point; + uint8_t ConditionType; + uint8_t Detail; + int8_t padding0[2]; + }; + + /* 200982 */ + struct Jingle + { + Component::Excel::Ps3::StringOffset Path; + }; + + /* 200983 */ + struct ScreenImage + { + uint32_t Image; + int8_t Jingle; + int8_t Type; + uint8_t padding0 : 7; + uint8_t Lang : 1; + int8_t padding1[1]; + }; + + /* 200984 */ + struct CutScreenImage + { + int32_t Type; + int32_t Icon; + }; + + /* 200985 */ + struct GeneralActionTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Help; + }; + + /* 200986 */ + struct GeneralAction + { + GeneralActionTextStruct Text; + int32_t Icon; + uint16_t Action; + uint8_t Reward; + uint8_t Recast; + uint8_t UIPriority; + int8_t padding0[3]; + }; + + /* 200987 */ + struct CraftActionTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Help; + }; + + /* 200988 */ + struct CraftAction + { + CraftActionTextStruct Text; + int32_t Action[8]; + uint16_t Timeline; + uint16_t SubTimeline; + uint16_t Icon; + uint8_t UseClassJob; + uint8_t Lv; + uint8_t CostCP; + int8_t ClassJob; + int8_t padding0[2]; + }; + + /* 200989 */ + struct TraitTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Help; + }; + + /* 200990 */ + struct Trait + { + TraitTextStruct Text; + int32_t Icon; + uint16_t Reward; + int16_t ParamValue; + uint8_t ClassJob; + uint8_t Level; + uint8_t PvPSkillPoint; + uint8_t UseClass; + uint8_t padding0 : 7; + uint8_t PvPOnly : 1; + int8_t padding1[3]; + }; + + /* 200991 */ + struct FCRightsTextStruct + { + Component::Excel::Ps3::StringOffset Text; + Component::Excel::Ps3::StringOffset Help; + }; + + /* 200992 */ + struct FCRights + { + FCRightsTextStruct RightsName; + uint16_t Icon; + uint8_t SortId; + int8_t padding0[1]; + }; + + /* 200993 */ + struct GrandCompanyRank + { + uint32_t CSMax; + uint32_t NextCS; + int32_t IconOfLimsa; + int32_t IconOfGridania; + int32_t IconOfUldah; + int32_t RankUpQuestOfLimsa; + int32_t RankUpQuestOfGridania; + int32_t RankUpQuestOfUldah; + uint8_t RankCategory; + uint8_t LinearRank; + uint8_t RankOfMonsterNoteCondition; + int8_t padding0[1]; + }; + + /* 200994 */ + struct MonsterNoteTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 200995 */ + struct MonsterNote + { + MonsterNoteTextStruct Text; + uint32_t RewardExp; + uint16_t Target[4]; + uint8_t NeededKills[4]; + }; + + /* 200996 */ + struct MonsterNoteTarget + { + int32_t Icon; + uint16_t Monster; + uint16_t ZoneName[3]; + uint16_t AreaName[3]; + uint8_t Town; + int8_t padding0[1]; + }; + + /* 200997 */ + struct ParamGrow + { + int32_t NextExp; + int32_t Mp; + int32_t ParamBase; + int32_t ParamBaseRating; + int32_t MonsterNoteExp; + int32_t MonsterNoteSeals; + uint16_t PhysicalBonus; + uint16_t BaseExp; + uint16_t RepairExp; + uint16_t ProperDungeon; + uint16_t ProperGuildOrder; + uint8_t ApplyAction; + uint8_t PhysicalBonusLimit; + uint8_t EventExpRate; + int8_t padding0[3]; + }; + + /* 201000 */ + struct BuddySkill + { + uint16_t Line[3]; + uint8_t Point; + uint8_t padding0 : 7; + uint8_t IsActive : 1; + }; + + /* 201001 */ + struct PetActionTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Help; + }; + + /* 201002 */ + struct PetAction + { + PetActionTextStruct Text; + int32_t Icon; + uint16_t Action; + uint8_t Pet; + uint8_t padding0 : 6; + uint8_t DisableOrder : 1; + uint8_t MasterOrder : 1; + }; + + /* 201003 */ + struct EquipSlotCategoryTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 201004 */ + struct EquipSlotCategory + { + EquipSlotCategoryTextStruct Text; + int8_t Permit[14]; + int8_t padding0[2]; + }; + + /* 201006 */ + struct Stain + { + uint32_t Color; + uint32_t Item; + uint8_t Category; + int8_t padding0[3]; + }; + + /* 201007 */ + struct MarkerTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 201008 */ + struct Marker + { + MarkerTextStruct Text; + int32_t Icon; + }; + + /* 201009 */ + struct BuddyActionTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Help; + }; + + /* 201010 */ + struct BuddyAction + { + BuddyActionTextStruct Text; + int32_t Icon; + int32_t StatusIcon; + uint8_t Reward; + int8_t padding0[3]; + }; + + /* 201011 */ + struct MainCommandTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Help; + }; + + /* 201012 */ + struct MainCommand + { + MainCommandTextStruct Text; + int32_t Icon; + uint8_t ActionMenu; + uint8_t Category; + int8_t SortId; + int8_t padding0[1]; + }; + + /* 201013 */ + struct FieldMarkerTextStruct + { + Component::Excel::Ps3::StringOffset Help; + }; + + /* 201014 */ + struct FieldMarker + { + FieldMarkerTextStruct Text; + int32_t VFX; + uint16_t Icon; + int8_t padding0[2]; + }; + + /* 201015 */ + struct CompanionTextStruct + { + Component::Excel::Ps3::StringOffset SGL; + Component::Excel::Ps3::StringOffset PLR; + Component::Excel::Ps3::StringOffset Help; + Component::Excel::Ps3::StringOffset Expository; + Component::Excel::Ps3::StringOffset Cry; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 201016 */ + struct Companion + { + CompanionTextStruct Text; + uint16_t Model; + uint16_t Icon; + uint16_t Enemy; + uint16_t Priority; + uint8_t Scale; + uint8_t InactiveIdle[2]; + uint8_t InactiveBattle; + uint8_t InactiveWandering; + uint8_t MoveType; + uint8_t Special; + uint8_t WanderingWait; + uint8_t ChatGroup; + uint8_t padding1 : 2; + uint8_t Roulette : 1; + uint8_t Battle : 1; + uint8_t LookAt : 1; + uint8_t Poke : 1; + uint8_t Stroke : 1; + uint8_t Clapping : 1; + int8_t padding2[2]; + }; + + /* 201017 */ + struct MountTextStruct + { + Component::Excel::Ps3::StringOffset SGL; + Component::Excel::Ps3::StringOffset PLR; + Component::Excel::Ps3::StringOffset Help; + Component::Excel::Ps3::StringOffset Expository; + Component::Excel::Ps3::StringOffset Cry; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 201018 */ + struct Mount + { + MountTextStruct Text; + Component::Excel::Ps3::StringOffset CallSE; + Component::Excel::Ps3::StringOffset CallFalseSE; + Component::Excel::Ps3::StringOffset ExitSE; + float Slowdown; + float MoveAccel_Run; + float MoveAccel_Walk; + float MoveSpeed_Run; + float MoveSpeed_Walk; + float MoveSpeed_RunLR; + float MoveSpeed_WalkLR; + float MoveSpeed_Back; + float RotateSpeed_FFXIV; + float RotateSpeed_WOW; + float RotateSpeed_AutoRun; + float RotateSpeed_LockOn; + float RotateAccel_FFXIVRun; + float RotateAccel_FFXIVWalk; + float RotateAccel_LockOn; + float BattleMoveSpeed_Run; + float BattleMoveSpeed_RunLR; + float BattleMoveSpeed_Back; + float ScaleMale[6]; + float ScaleFemale[6]; + int32_t Model; + int32_t EquipHead; + int32_t EquipBody; + int32_t EquipLeg; + int32_t EquipFoot; + uint16_t BGM; + uint16_t Icon; + uint16_t Action[2]; + uint8_t ExitMoveDist; + uint8_t ExitMoveSpeed; + uint8_t UIPriority; + uint8_t RadiusRate; + uint8_t BaseMotionSpeed_Run; + uint8_t BaseMotionSpeed_Walk; + uint8_t LinkNum; + int8_t SaveIndex; + uint8_t padding1 : 5; + uint8_t ExHotbarEnableConfig : 1; + uint8_t IsFloat : 1; + uint8_t IsEmote : 1; + int8_t padding2[3]; + }; + + /* 201019 */ + struct OnlineStatusTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 201020 */ + struct OnlineStatus + { + OnlineStatusTextStruct Text; + uint32_t Icon; + uint8_t ListOrder; + uint8_t padding0 : 7; + uint8_t List : 1; + int8_t padding1[2]; + }; + + /* 201021 */ + struct TitleTextStruct + { + Component::Excel::Ps3::StringOffset Male; + Component::Excel::Ps3::StringOffset Female; + uint8_t padding0 : 7; + uint8_t Front : 1; + int8_t padding1[3]; + }; + + /* 201022 */ + struct Title + { + TitleTextStruct Text; + }; + + /* 201023 */ + struct ENpcTextStruct + { + Component::Excel::Ps3::StringOffset SGL; + Component::Excel::Ps3::StringOffset PLR; + Component::Excel::Ps3::StringOffset Title; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 201024 */ + struct ENpcResident + { + ENpcTextStruct Text; + uint8_t PopType; + int8_t padding1[3]; + }; + + /* 201025 */ + struct PatchMark + { + int32_t MarkID; + uint16_t SubCategory; + uint16_t Version; + uint8_t SubCategoryType; + int8_t Category; + int8_t padding0[2]; + }; + + /* 201026 */ + struct LogFilterTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Help; + }; + + /* 201027 */ + struct LogFilter + { + LogFilterTextStruct Text; + uint16_t Caster; + uint16_t Target; + uint8_t LogKind; + uint8_t Category; + uint8_t DisplayOrder; + uint8_t Preset; + }; + + /* 201028 */ + struct Cabinet + { + int32_t Item; + uint16_t Priority; + uint8_t Category; + int8_t padding0[1]; + }; + + /* 201029 */ + struct PlaceNameTextStruct + { + Component::Excel::Ps3::StringOffset SGL; + Component::Excel::Ps3::StringOffset PLR; + Component::Excel::Ps3::StringOffset SWT; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 201030 */ + struct PlaceName + { + PlaceNameTextStruct Text; + uint8_t LocationTitle; + int8_t padding1[3]; + }; + + /* 201031 */ + struct InfoError + { + int32_t Message; + }; + + /* 201032 */ + struct FCRank + { + uint32_t NextPoint; + uint32_t CurrentPoint; + uint16_t Rights[3]; + uint8_t FCActionActiveNum; + uint8_t FCActionStockNum; + uint8_t FCChestBoxNum; + int8_t padding0[3]; + }; + + /* 201033 */ + struct FCDefine + { + int32_t Value; + }; + + /* 201034 */ + struct FCHierarchyTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 201035 */ + struct FCHierarchy + { + FCHierarchyTextStruct Text; + }; + + /* 201036 */ + struct FCReputationTextStruct + { + Component::Excel::Ps3::StringOffset Text; + }; + + /* 201037 */ + struct FCReputation + { + FCReputationTextStruct Name; + uint32_t NextPoint; + uint32_t CurrentPoint; + uint32_t Color; + uint8_t DiscountRate; + int8_t padding0[3]; + }; + + /* 201038 */ + struct TownTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 201039 */ + struct Town + { + TownTextStruct Name; + int32_t Icon; + }; + + /* 201040 */ + struct TerritoryIntendedUse + { + uint8_t BuzzType; + uint8_t EnableReturn : 1; + uint8_t EnableTeleport : 1; + uint8_t ImmediatelyLogout : 1; + uint8_t EnablePet : 1; + uint8_t EnableBuddy : 1; + uint8_t ClassJobChange : 1; + uint8_t Repair : 1; + uint8_t Craft : 1; + uint8_t padding0 : 1; + uint8_t RecastPenalty : 1; + uint8_t EnableAction : 1; + uint8_t SELimit : 1; + uint8_t EnableDiscoveryNotification : 1; + uint8_t EnableRecommend : 1; + uint8_t EnableHomePoint : 1; + uint8_t EnableCompanion : 1; + int8_t padding1[1]; + }; + + /* 223113 */ + struct BNpcTextStruct + { + Component::Excel::Ps3::StringOffset SGL; + Component::Excel::Ps3::StringOffset PLR; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 223114 */ + struct BNpcName + { + BNpcTextStruct Text; + }; + + /* 223115 */ + struct EObjTextStruct + { + Component::Excel::Ps3::StringOffset SGL; + Component::Excel::Ps3::StringOffset PLR; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 223116 */ + struct EObj + { + EObjTextStruct Text; + float EventHighAddition; + uint32_t EventHandler; + uint16_t SharedGroup; + uint8_t PopType; + uint8_t Invisibility; + uint8_t padding1 : 5; + uint8_t EyeCollision : 1; + uint8_t DirectorControl : 1; + uint8_t Target : 1; + int8_t padding2[3]; + }; + + /* 223117 */ + struct TreasureTextStruct + { + Component::Excel::Ps3::StringOffset SGL; + Component::Excel::Ps3::StringOffset PLR; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 223118 */ + struct Treasure + { + TreasureTextStruct Text; + int32_t Type; + int32_t KeyItem; + int32_t Model; + int32_t Item; + int32_t SubItem; + int32_t SharedGroup; + uint8_t Zone; + uint8_t Rate; + int8_t padding1[2]; + }; + + /* 223119 */ + struct ExportedSG + { + Component::Excel::Ps3::StringOffset SGFilePath; + }; + + /* 223120 */ + struct Festival + { + Component::Excel::Ps3::StringOffset name; + }; + + /* 228343 */ + struct PhysicsWind + { + float Threshold; + float Amplitude; + float AmplitudeFrequency; + float PowerMin; + float PowerMax; + float PowerFrequency; + }; + + /* 240362 */ + struct ModelSkeleton + { + float Radius; + float Height; + float VFXScale; + float FootScale; + float WalkSpeed; + float RunSpeed; + float FloatHeight[2]; + float FloatDown; + float FloatUp; + uint8_t MotionBlendType; + uint8_t AutoAttackType; + uint8_t padding0 : 7; + uint8_t LoopFlySE : 1; + int8_t padding1[1]; + }; + + /* 257957 */ + struct WorldTextStruct + { + Component::Excel::Ps3::StringOffset Help; + }; + + /* 257958 */ + struct World + { + WorldTextStruct Text; + Component::Excel::Ps3::StringOffset Name; + uint8_t UserType; + uint8_t DCGroup; + uint8_t padding0 : 7; + uint8_t Public : 1; + int8_t padding1[1]; + }; + + /* 258037 */ + struct GuardianDeityTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Help; + }; + + /* 258038 */ + struct GuardianDeity + { + GuardianDeityTextStruct Text; + uint16_t Icon; + int8_t padding0[2]; + }; + + /* 258039 */ + struct MainCommandCategoryTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 258040 */ + struct MainCommandCategory + { + MainCommandCategoryTextStruct Text; + int32_t Icon; + }; + + /* 258042 */ + struct CharaMakeClassEquip + { + uint64_t Helmet; + uint64_t Top; + uint64_t Glove; + uint64_t Down; + uint64_t Shoes; + uint64_t Weapon; + uint64_t SubWeapon; + int32_t Class; + int8_t padding0[4]; + }; + + /* 258043 */ + struct CharaMakeNameTextStruct + { + Component::Excel::Ps3::StringOffset HuM_M_; + Component::Excel::Ps3::StringOffset HuM_F_; + Component::Excel::Ps3::StringOffset HuM_L_; + Component::Excel::Ps3::StringOffset HuH_M_; + Component::Excel::Ps3::StringOffset HuH_F_; + Component::Excel::Ps3::StringOffset HuH_L_; + Component::Excel::Ps3::StringOffset El_M_; + Component::Excel::Ps3::StringOffset El_F_; + Component::Excel::Ps3::StringOffset ElF_L_; + Component::Excel::Ps3::StringOffset ElS_L_; + Component::Excel::Ps3::StringOffset MqS_M_; + Component::Excel::Ps3::StringOffset MqS_F_; + Component::Excel::Ps3::StringOffset MqS_ML_; + Component::Excel::Ps3::StringOffset MqS_FL_; + Component::Excel::Ps3::StringOffset MqM_M_; + Component::Excel::Ps3::StringOffset MqM_F_; + Component::Excel::Ps3::StringOffset MqM_L_; + Component::Excel::Ps3::StringOffset LaP_MF_; + Component::Excel::Ps3::StringOffset LaP_ML_; + Component::Excel::Ps3::StringOffset LaP_MR_; + Component::Excel::Ps3::StringOffset LaD_MN_; + Component::Excel::Ps3::StringOffset LaD_MR_; + Component::Excel::Ps3::StringOffset LaD_FN_; + Component::Excel::Ps3::StringOffset LaD_FR_; + Component::Excel::Ps3::StringOffset RoZ_MF_; + Component::Excel::Ps3::StringOffset RoZ_ML_; + Component::Excel::Ps3::StringOffset RoZ_FF_; + Component::Excel::Ps3::StringOffset RoZ_FL_; + Component::Excel::Ps3::StringOffset RoR_F_; + Component::Excel::Ps3::StringOffset RoR_ML_; + Component::Excel::Ps3::StringOffset RoR_FL_; + }; + + /* 258044 */ + struct CharaMakeName + { + CharaMakeNameTextStruct TEXT; + }; + + /* 258046 */ + struct LobbyTextStruct + { + Component::Excel::Ps3::StringOffset Text; + Component::Excel::Ps3::StringOffset Sub; + Component::Excel::Ps3::StringOffset Help; + }; + + /* 258047 */ + struct Lobby + { + LobbyTextStruct TEXT; + uint32_t TYPE; + uint32_t PARAM; + uint32_t LINK; + }; + + /* 258048 */ + struct CalendarDaysStruct + { + uint8_t Month; + uint8_t Day; + }; + + /* 258049 */ + struct Calendar + { + CalendarDaysStruct Days[32]; + }; + + /* 258050 */ + struct WorldDCGroupType + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264223 */ + struct MapSymbol + { + int32_t Icon; + int32_t Name; + uint8_t padding0 : 7; + uint8_t DisplayNavi : 1; + int8_t padding1[3]; + }; + + /* 264224 */ + struct ItemAction + { + uint16_t Action; + uint16_t Calcu0Arg[3]; + uint16_t Calcu1Arg[3]; + uint16_t Calcu2Arg[3]; + uint16_t HQCalcu0Arg[3]; + uint16_t HQCalcu1Arg[3]; + uint16_t HQCalcu2Arg[3]; + uint8_t CondLv; + uint8_t padding0 : 5; + uint8_t CondPVPOnly : 1; + uint8_t CondPVP : 1; + uint8_t CondBattle : 1; + }; + + /* 264225 */ + struct Materia + { + int32_t Item[10]; + uint8_t Param; + int8_t ParamValue[10]; + int8_t padding0[1]; + }; + + /* 264226 */ + struct ClassJobCategoryTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264227 */ + struct ClassJobCategory + { + ClassJobCategoryTextStruct Text; + bool ClassJob[31]; + int8_t padding0[1]; + }; + + /* 264228 */ + struct RetainerTask + { + int32_t Exp; + uint16_t TipCost; + uint16_t Time; + uint16_t CondItemLv; + uint16_t ParamA; + uint16_t ParamB; + uint16_t TaskNum; + uint8_t Category; + uint8_t Level; + uint8_t CondParamA; + uint8_t CondParamB; + uint8_t padding0 : 7; + uint8_t IsRandom : 1; + int8_t padding1[3]; + }; + + /* 264229 */ + struct HowToPageTextStruct + { + Component::Excel::Ps3::StringOffset Text[3]; + }; + + /* 264230 */ + struct HowToPage + { + HowToPageTextStruct Text; + int32_t Icon; + uint8_t Type; + uint8_t IconKind; + uint8_t TextKind; + int8_t padding0[1]; + }; + + /* 264231 */ + struct Map + { + Component::Excel::Ps3::StringOffset Path; + float Scale; + uint32_t DiscoveryFlag; + int32_t CategoryNameUI; + int32_t NameUI; + int32_t FloorNameUI; + uint16_t Marker; + uint16_t TerritoryType; + int16_t DiscoveryIndex; + uint8_t PriorityCategoryUI; + uint8_t PriorityUI; + uint8_t MapType; + int8_t PriorityFloorUI; + uint8_t padding0 : 6; + uint8_t IsEvent : 1; + uint8_t IsUint16Discovery : 1; + int8_t padding1[1]; + }; + + /* 264233 */ + struct ContentsNoteTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Help; + }; + + /* 264234 */ + struct ContentsNote + { + ContentsNoteTextStruct Text; + int32_t CondArg; + int32_t RewardArg[2]; + uint16_t OpenLevel; + uint16_t OpenHowTo; + uint8_t Category; + uint8_t UIPriority; + uint8_t Reward[2]; + }; + + /* 264240 */ + struct FCActivityTextStruct + { + Component::Excel::Ps3::StringOffset Text; + }; + + /* 264241 */ + struct FCActivity + { + FCActivityTextStruct Text; + uint8_t SelfKind; + uint8_t TargetKind; + uint8_t NumParam; + uint8_t Category; + int8_t IconType; + int8_t padding0[3]; + }; + + /* 264318 */ + struct QuestTodoStruct + { + uint32_t Marker[8]; + uint8_t TodoSequence; + uint8_t CountableNum; + int8_t padding0[2]; + }; + + /* 264319 */ + struct QuestTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264320 */ + struct QuestDefineStruct + { + Component::Excel::Ps3::StringOffset Name; + uint32_t Value; + }; + + /* 264321 */ + struct QuestEventListenerStruct + { + uint32_t Listener; + uint32_t ConditionValue; + uint16_t Behavior; + uint8_t Sequence; + uint8_t Todo; + uint8_t Event; + uint8_t ConditionType; + uint8_t ConditionOperator; + uint8_t VisibleCallback : 1; + uint8_t ConditionCallback : 1; + uint8_t BehaviorCallback : 1; + uint8_t ItemCallback : 1; + uint8_t TargetingPossibleCallback : 1; + uint8_t QualifiedCallback : 1; + uint8_t AnnounceCallback : 1; + uint8_t AcceptCallback : 1; + }; + + /* 264322 */ + struct QuestRewardStruct + { + uint32_t Gil; + uint32_t Item[6]; + uint32_t OptionalItem[5]; + uint32_t InstanceContent; + uint32_t AllaganTomestoneType; + uint16_t ExpBonus; + uint16_t CompanyPointNum; + uint16_t Action; + uint16_t System[2]; + uint8_t CompanyPointType; + uint8_t CrystalType[3]; + uint8_t CrystalNum[3]; + uint8_t ItemArrayType; + uint8_t ItemNum[6]; + uint8_t ItemStainId[6]; + uint8_t OptionalItemNum[5]; + uint8_t OptionalItemStainId[5]; + uint8_t Emote; + uint8_t GeneralAction[2]; + uint8_t AllaganTomestoneNum; + uint8_t BeastReputationValueNum; + int8_t padding1[3]; + }; + + /* 264323 */ + struct Quest + { + QuestTextStruct Text; + QuestDefineStruct Define[50]; + QuestEventListenerStruct EventListener[64]; + QuestTodoStruct QuestTodo[24]; + QuestRewardStruct Reward; + Component::Excel::Ps3::StringOffset Script; + uint32_t PrevQuest[3]; + uint32_t ExcludeQuest[2]; + uint32_t InstanceContent[3]; + uint32_t Client; + uint32_t Finish; + uint32_t Header; + uint32_t Inlay; + int32_t Mount; + uint16_t ClassLevel; + uint16_t ClassLevel2; + uint16_t AcquiredReward; + uint16_t TimeBegin; + uint16_t TimeEnd; + uint16_t BeastReputationValue; + uint16_t ClientBehavior; + uint16_t Area; + uint16_t Sort; + uint8_t ClassJob; + uint8_t QuestLevelOffset; + uint8_t ClassJob2; + uint8_t PrevQuestOperator; + uint8_t ExcludeQuestOperator; + uint8_t StartTown; + uint8_t FirstClassOperator; + uint8_t FirstClass; + uint8_t GrandCompany; + uint8_t GrandCompanyRank; + uint8_t InstanceContentOperator; + uint8_t Festival; + uint8_t FestivalPhaseBegin; + uint8_t FestivalPhaseEnd; + uint8_t BeastTribe; + uint8_t BeastReputationRank; + uint8_t RepeatCycle; + uint8_t RepeatFlag; + uint8_t ExpClass; + uint8_t Genre; + uint8_t IconType; + uint8_t Quality; + uint8_t padding2 : 3; + uint8_t HideOfferIcon : 1; + uint8_t Cancellable : 1; + uint8_t Introduction : 1; + uint8_t Repeatable : 1; + uint8_t House : 1; + int8_t padding3[3]; + }; + + /* 264324 */ + struct Level + { + float TransX; + float TransY; + float TransZ; + float RotY; + float RangeOnMap; + uint32_t BaseId; + uint32_t Map; + uint32_t EventHandler; + uint32_t TerritoryType; + int32_t eAssetType; + }; + + /* 264325 */ + struct ContentRouletteTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Description; + Component::Excel::Ps3::StringOffset Contents; + }; + + /* 264326 */ + struct ContentRoulette + { + ContentRouletteTextStruct Text; + uint32_t Image; + uint32_t ClearRewardA; + uint32_t ClearRewardB; + uint8_t ItemLevel; + uint8_t PartyMemberCount; + uint8_t TankCount; + uint8_t HealerCount; + uint8_t MeleeDPSCount; + uint8_t RangedDPSCount; + uint8_t Sortkey; + uint8_t padding0 : 6; + uint8_t AllClearFlag : 1; + uint8_t EnableFinder : 1; + }; + + /* 264329 */ + struct ActionCategoryTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264330 */ + struct ActionCategory + { + ActionCategoryTextStruct Text; + }; + + /* 264331 */ + struct StatusTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Help; + }; + + /* 264332 */ + struct Status + { + StatusTextStruct Text; + uint16_t Icon; + uint16_t Log; + uint8_t Stack; + uint8_t Category; + uint8_t HitEffect; + uint8_t LoopEffect; + uint8_t PartyListPriority; + uint8_t SystemParamEffect; + uint8_t TargetType; + uint8_t Flag; + uint8_t InconvenienceClear : 1; + uint8_t HideTimer : 1; + uint8_t Forever : 1; + uint8_t NotLookAt : 1; + uint8_t ShapeShift : 1; + uint8_t NotControl : 1; + uint8_t NotAction : 1; + uint8_t NotMove : 1; + uint8_t padding0 : 6; + uint8_t SemiTransparent : 1; + uint8_t FcAction : 1; + int8_t padding1[2]; + }; + + /* 264333 */ + struct AchievementKindTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264334 */ + struct AchievementKind + { + AchievementKindTextStruct Text; + }; + + /* 264335 */ + struct AchievementCategoryTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264336 */ + struct AchievementCategory + { + AchievementCategoryTextStruct Text; + uint8_t Kind; + uint8_t padding0 : 6; + uint8_t ShowComplete : 1; + uint8_t Valid : 1; + int8_t padding1[2]; + }; + + /* 264337 */ + struct RaceTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset NameFemale; + }; + + /* 264338 */ + struct Race + { + RaceTextStruct Text; + int32_t Body[2]; + int32_t Hand[2]; + int32_t Leg[2]; + int32_t Foot[2]; + }; + + /* 264339 */ + struct BaseParamTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Help; + }; + + /* 264340 */ + struct BaseParam + { + BaseParamTextStruct Text; + uint8_t ItemParamRate[18]; + uint8_t RoleRate[11]; + int8_t PacketIndex; + int8_t padding0[2]; + }; + + /* 264341 */ + struct MateriaTomestoneRate + { + uint32_t Rate; + }; + + /* 264342 */ + struct ItemSearchCategoryTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264343 */ + struct ItemSearchCategory + { + ItemSearchCategoryTextStruct Text; + int32_t Icon; + uint8_t Block; + uint8_t DisplayOrder; + int8_t ClassLevel; + int8_t padding0[1]; + }; + + /* 264344 */ + struct ItemSearchClassFilterTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264345 */ + struct ItemSearchClassFilterStruct + { + ItemSearchClassFilterTextStruct Text; + int8_t Class; + int8_t padding0[3]; + }; + + /* 264346 */ + struct ItemFood + { + uint8_t Param[3]; + int8_t Value[3]; + int8_t Limit[3]; + int8_t ValueHQ[3]; + int8_t LimitHQ[3]; + bool Rate[3]; + int8_t padding0[2]; + }; + + /* 264347 */ + struct CompanionMoveTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264348 */ + struct CompanionMove + { + CompanionMoveTextStruct Text; + }; + + /* 264349 */ + struct RoleTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset ShortName; + }; + + /* 264350 */ + struct Role + { + RoleTextStruct Text; + int32_t Icon; + }; + + /* 264351 */ + struct BuddyEquipTextStruct + { + Component::Excel::Ps3::StringOffset SGL; + Component::Excel::Ps3::StringOffset PLR; + Component::Excel::Ps3::StringOffset UIName; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 264352 */ + struct BuddyEquip + { + BuddyEquipTextStruct Text; + int32_t Model[3]; + uint16_t Icon[3]; + uint8_t GrandCompany; + int8_t padding1[1]; + }; + + /* 264353 */ + struct BuddyRank + { + uint32_t RankUpExp; + }; + + /* 264354 */ + struct TreasureSpot + { + float MapOffsetX; + float MapOffsetY; + int32_t Location; + }; + + /* 264355 */ + struct ContentsNoteCategory + { + uint8_t ContentType; + int8_t UIPriority; + int8_t padding0[2]; + }; + + /* 264356 */ + struct Relic + { + uint32_t Item; + uint32_t ExchangeItem; + int32_t Icon; + uint16_t Materia[4]; + uint8_t MainNote[3]; + uint8_t SubNote[3]; + uint8_t SelectionANote[2]; + uint8_t SelectionBNote[1]; + int8_t padding0[3]; + }; + + /* 264357 */ + struct RelicNote + { + uint32_t EventItem; + uint16_t Target[10]; + uint16_t Boss[4]; + uint16_t Fate[3]; + uint16_t FateTerritoryType[3]; + uint16_t GuildLeve[3]; + uint8_t NeededKills[10]; + }; + + /* 264358 */ + struct RelicNoteCategoryTextStruct + { + Component::Excel::Ps3::StringOffset Text; + }; + + /* 264359 */ + struct RelicNoteCategory + { + RelicNoteCategoryTextStruct Text; + int8_t UIPriority; + int8_t padding0[3]; + }; + + /* 264362 */ + struct MobHuntStruct + { + uint16_t Target[5]; + uint8_t NeededKills[5]; + uint8_t Rank[5]; + }; + + /* 264363 */ + struct MobHuntTarget + { + uint16_t Monster; + uint16_t Fate; + uint16_t Icon; + uint16_t ZoneName; + uint16_t AreaName; + int8_t padding0[2]; + }; + + /* 264364 */ + struct MobHuntRankStruct + { + uint16_t Reward[2]; + }; + + /* 264365 */ + struct GatheringPoint + { + int32_t BaseId; + int32_t BonusCond; + int32_t BonusType; + int32_t AreaId; + uint16_t BonusVal; + uint16_t BonusPoint; + uint16_t PlaceNameId; + uint8_t Type; + uint8_t Count; + }; + + /* 264366 */ + struct GatheringPointBase + { + int32_t Type; + int32_t GatheringItemId[8]; + uint8_t Lv; + uint8_t EffectId; + int8_t padding0[2]; + }; + + /* 264367 */ + struct GatheringPointNameTextStruct + { + Component::Excel::Ps3::StringOffset SGL; + Component::Excel::Ps3::StringOffset PLR; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 264368 */ + struct GatheringPointName + { + GatheringPointNameTextStruct Text; + }; + + /* 264369 */ + struct CraftTypeTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264370 */ + struct CraftType + { + CraftTypeTextStruct Text; + uint8_t MainPhysical; + uint8_t SubPhysical; + int8_t padding0[2]; + }; + + /* 264371 */ + struct NotebookDivisionTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264372 */ + struct NotebookDivision + { + NotebookDivisionTextStruct Text; + uint8_t CraftOpeningLevel; + uint8_t GatheringOpeningLevel; + bool CanUseCraft[8]; + int8_t padding0[2]; + }; + + /* 264373 */ + struct LeveTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Objective; + }; + + /* 264374 */ + struct LeveRewardStruct + { + float ExpRate; + uint32_t StaticExp; + uint32_t Gil; + int32_t Item; + int32_t AdditionalItem; + }; + + /* 264375 */ + struct Leve + { + LeveTextStruct Text; + LeveRewardStruct Reward; + uint32_t TodoListener; + uint32_t StartMarker; + int32_t Client; + int32_t AssignmentType; + int32_t Town; + int32_t Evaluation; + int32_t Location; + int32_t Genre; + int32_t Region; + int32_t Area; + int32_t PlateRegionIcon; + int32_t GameData; + int32_t Header; + uint16_t ClassLevel; + uint16_t BGM; + uint8_t TimeLimit; + uint8_t ClassJob; + uint8_t PlateDesignVfx; + uint8_t PlateFrameVfx; + uint8_t padding0 : 5; + uint8_t Cancellable : 1; + uint8_t Difficulty : 1; + uint8_t Special : 1; + int8_t padding1[3]; + }; + + /* 264376 */ + struct GatheringLeve + { + int32_t Route[4]; + int32_t Item[4]; + int32_t Rule; + int32_t BNpcEntry; + uint16_t Objective[2]; + uint8_t ItemNum[4]; + uint8_t Num; + uint8_t Variation; + uint8_t padding0 : 7; + uint8_t UseSubArm : 1; + int8_t padding1[1]; + }; + + /* 264378 */ + struct MapMarker + { + int32_t Icon; + int32_t Name; + int32_t EventSubArg; + uint16_t EventArg; + int16_t PosX; + int16_t PosY; + uint8_t Start; + uint8_t Layout; + uint8_t TextType; + uint8_t EventType; + int8_t padding0[2]; + }; + + /* 264379 */ + struct ContentTypeTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264380 */ + struct ContentType + { + ContentTypeTextStruct Text; + uint32_t IconLarge; + uint32_t IconSmall; + }; + + /* 264381 */ + struct GrandCompanyTextStruct + { + Component::Excel::Ps3::StringOffset SGL; + Component::Excel::Ps3::StringOffset PLR; + Component::Excel::Ps3::StringOffset SWT; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 264382 */ + struct GrandCompany + { + GrandCompanyTextStruct Text; + int8_t MonsterNote; + int8_t padding1[3]; + }; + + /* 264383 */ + struct HowToCategoryTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264384 */ + struct HowToCategory + { + HowToCategoryTextStruct Text; + }; + + /* 264385 */ + struct ConfigurationKeyTextStruct + { + Component::Excel::Ps3::StringOffset Text; + }; + + /* 264386 */ + struct ConfigKey + { + ConfigurationKeyTextStruct Text; + Component::Excel::Ps3::StringOffset Label; + uint8_t Param; + uint8_t Platform; + uint8_t Category; + uint8_t padding0 : 7; + uint8_t Required : 1; + }; + + /* 264387 */ + struct MacroIcon + { + int32_t Icon; + }; + + /* 264388 */ + struct RecommendContents + { + int32_t LayoutId; + uint8_t ClassJob; + uint8_t LvMin; + uint8_t LvMax; + int8_t padding0[1]; + }; + + /* 264389 */ + struct AdventureTextStruct + { + Component::Excel::Ps3::StringOffset TitleText; + Component::Excel::Ps3::StringOffset HintText; + Component::Excel::Ps3::StringOffset FlavorText; + }; + + /* 264390 */ + struct Adventure + { + AdventureTextStruct Text; + int32_t LayoutID; + int32_t AreaName; + int32_t SpotIcon; + int32_t LandscapePicture; + int32_t RegionPicture; + uint16_t ClearStartTimeCond; + uint16_t ClearEndTimeCond; + uint8_t ClearEmoteCond; + uint8_t padding0 : 7; + uint8_t IsShowRegion : 1; + int8_t padding1[2]; + }; + + /* 264391 */ + struct RetainerTaskLvRange + { + uint8_t MinLv; + uint8_t MaxLv; + int8_t padding0[2]; + }; + + /* 264392 */ + struct RetainerTaskNormal + { + int32_t Item; + int16_t GatheringItem; + int16_t FishParameter; + uint8_t Stack[3]; + int8_t padding0[1]; + }; + + /* 264393 */ + struct RetainerTaskRandomTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264394 */ + struct RetainerTaskRandom + { + RetainerTaskRandomTextStruct Text; + int16_t SortId; + int8_t padding0[2]; + }; + + /* 264395 */ + struct Tomestones + { + int32_t CatalogId; + uint16_t WeeklyCap; + uint8_t Slot; + int8_t WorkIndex; + }; + + /* 264396 */ + struct FateTextStruct + { + Component::Excel::Ps3::StringOffset TitleText; + Component::Excel::Ps3::StringOffset DescriptionText; + Component::Excel::Ps3::StringOffset DescriptionText2; + Component::Excel::Ps3::StringOffset TodoName1; + Component::Excel::Ps3::StringOffset TodoName2; + Component::Excel::Ps3::StringOffset TodoName3; + }; + + /* 264397 */ + struct FateQuest + { + uint32_t ResultListener; + }; + + /* 264398 */ + struct Fate + { + FateTextStruct Text; + FateQuest Quest; + uint32_t TradeItemId; + uint32_t GuardNpcLayoutId; + int32_t EventRange; + int32_t Icon; + int32_t IconSmall; + int32_t BGM; + int32_t StarterTalkNpcLayoutId; + uint16_t Achivement; + uint16_t TodoValueType[3]; + uint8_t Rule; + uint8_t Level; + uint8_t SyncLv; + uint8_t AcceptScreenImage; + uint8_t CompleteScreenImage; + uint8_t FailedScreenImage; + uint8_t padding0 : 6; + uint8_t IsQuest : 1; + uint8_t Show2DMap : 1; + int8_t padding1[1]; + }; + + /* 264399 */ + struct FCActivityCategoryTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264400 */ + struct FCActivityCategory + { + FCActivityCategoryTextStruct Text; + uint8_t Priority; + int8_t padding0[3]; + }; + + /* 264401 */ + struct FCAuthorityTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264402 */ + struct FCAuthority + { + FCAuthorityTextStruct Text; + int32_t Category; + uint8_t Sort; + int8_t padding0[3]; + }; + + /* 264403 */ + struct FCAuthorityCategoryTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264404 */ + struct FCAuthorityCategory + { + FCAuthorityCategoryTextStruct Text; + }; + + /* 264405 */ + struct CompanyActionTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Help; + }; + + /* 264406 */ + struct CompanyAction + { + CompanyActionTextStruct Text; + uint32_t Price; + int32_t Icon; + uint8_t NeedRank; + uint8_t UIPriority; + int8_t padding0[2]; + }; + + /* 264407 */ + struct FCCrestSymbol + { + uint8_t ColorNum; + uint8_t FCRight; + int8_t padding0[2]; + }; + + /* 264408 */ + struct FCProfileTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264409 */ + struct FCProfile + { + FCProfileTextStruct Text; + uint8_t Priority; + int8_t padding0[3]; + }; + + /* 264410 */ + struct ItemSeriesTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264411 */ + struct ItemSeries + { + ItemSeriesTextStruct Text; + }; + + /* 264412 */ + struct ItemSpecialBonusTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 264413 */ + struct ItemSpecialBonus + { + ItemSpecialBonusTextStruct Text; + }; + + /* 264414 */ + struct HousingYardObject + { + uint32_t Param; + uint32_t EventHandler; + uint32_t Item; + uint8_t ID; + uint8_t Category; + uint8_t UseType; + uint8_t LayoutLimit; + uint8_t padding0 : 7; + uint8_t Disposable : 1; + int8_t padding1[3]; + }; + + /* 264415 */ + struct HousingFurniture + { + uint32_t Param; + uint32_t EventHandler; + uint32_t Item; + uint16_t ID; + uint8_t Category; + uint8_t UseType; + uint8_t LayoutLimit; + uint8_t padding0 : 6; + uint8_t HasCrest : 1; + uint8_t Disposable : 1; + int8_t padding1[2]; + }; + + /* 264416 */ + struct HousingExterior + { + uint16_t Region; + uint8_t ID; + uint8_t Category; + uint8_t Size; + int8_t padding0[1]; + int8_t padding1[2]; + }; + + /* 264417 */ + struct HousingInterior + { + uint8_t ID; + uint8_t Category; + uint8_t Material; + int8_t padding0[1]; + }; + + /* 264418 */ + struct BeastTribeTextStruct + { + Component::Excel::Ps3::StringOffset SGL; + Component::Excel::Ps3::StringOffset PLR; + Component::Excel::Ps3::StringOffset ReputationValue; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 264419 */ + struct BeastTribe + { + BeastTribeTextStruct Text; + uint32_t ReputationIcon; + uint32_t RewardIcon; + }; + + /* 264420 */ + struct BeastReputationRankTextStruct + { + Component::Excel::Ps3::StringOffset SGL; + Component::Excel::Ps3::StringOffset PLR; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 264421 */ + struct BeastReputationRank + { + BeastReputationRankTextStruct Text; + uint32_t Color; + uint16_t MaxReputationValue; + int8_t padding1[2]; + }; + + /* 271695 */ + struct HousingPresetNameStruct + { + Component::Excel::Ps3::StringOffset SGL; + Component::Excel::Ps3::StringOffset PLR; + int8_t SGG; + int8_t PLG; + int8_t VOW; + int8_t CNT; + int8_t GEN; + int8_t DEF; + int8_t padding0[2]; + }; + + /* 271696 */ + struct HousingPreset + { + HousingPresetNameStruct Name; + int32_t Roof; + int32_t Wall; + int32_t Window; + int32_t Door; + int32_t Interior[10]; + uint16_t Region; + uint8_t Size; + int8_t padding1[1]; + }; + + /* 271697 */ + struct HousingLayoutLimitStruct + { + uint8_t LimitNumSS; + uint8_t LimitNumS; + uint8_t LimitNumM; + uint8_t LimitNumL; + }; + + /* 271698 */ + struct HousingLandStruct + { + uint32_t LandRange; + uint32_t SignboardEObj; + uint32_t StuckPopRange; + uint32_t ExitPopRange; + uint32_t InitPrice; + uint8_t Size; + int8_t padding0[3]; + }; + + /* 271699 */ + struct HousingLandSet + { + HousingLandStruct Lands[30]; + }; + + /* 271700 */ + struct GardeningSeed + { + uint32_t Crop; + uint32_t HarvestIcon; + uint16_t ModelId; + uint8_t padding0 : 7; + uint8_t SE : 1; + int8_t padding1[1]; + }; + + /* 271701 */ + struct HousingEmploymentNpcStruct + { + uint32_t ENpcId; + }; + + /* 271702 */ + struct HousingEmploymentNpcTypeStruct + { + HousingEmploymentNpcStruct ENpcType[10]; + }; + + /* 282075 */ + struct PhysicsGroup + { + float SimulationTime[6]; + float PS3SimulationTime[6]; + float RootFollowingGame; + float RootFollowingCutScene; + int8_t ConfigSwitch[3]; + uint8_t padding0 : 6; + uint8_t ForceAttractByPhysicsOff : 1; + uint8_t ResetByLookAt : 1; + }; + + /* 326984 */ + struct Channeling + { + Component::Excel::Ps3::StringOffset File; + float WidthScale; + uint8_t LimitDist; + int8_t padding0[3]; + }; + + /* 326985 */ + struct ModelChara + { + uint16_t SkeletonId; + uint16_t SEPack; + uint8_t ModelType; + uint8_t PatternId; + uint8_t ImeChanId; + uint8_t PapVariation; + }; + + /* 326986 */ + struct BNpcState + { + Component::Excel::Ps3::StringOffset Attribute[3]; + float Scale; + int32_t LoopTimeline; + uint16_t Idle; + uint8_t Slot; + int8_t OverRay[2]; + bool AttributeFlag[3]; + }; + + /* 326987 */ + struct Transformation + { + uint16_t Action[2]; + int16_t ModelChara; + uint8_t padding0 : 7; + uint8_t ExHotbarEnableConfig : 1; + int8_t padding1[1]; + }; + + /* 326988 */ + struct BNpcBase + { + float Scale; + int32_t EventHandler; + uint16_t NormalAI; + uint16_t Model; + uint16_t Customize; + uint16_t Equipment; + uint16_t SEPack; + uint8_t Battalion; + uint8_t LinkRace; + uint8_t Rank; + uint8_t Special; + uint8_t Parts; + uint8_t IsTargetLine : 1; + uint8_t IsDisplayLevel : 1; + uint8_t padding0 : 6; + }; + + /* 326989 */ + struct BNpcParts + { + Component::Excel::Ps3::StringOffset Attribute[4]; + float OffsetX[4]; + float OffsetZ[4]; + uint16_t Parts[4]; + bool AttDefault[4]; + bool Timeline[4]; + }; + + /* 326991 */ + struct Carry + { + uint64_t Model; + int32_t Timeline; + int8_t padding0[4]; + }; + + /* 326993 */ + struct ENpcEventHandlerStruct + { + uint32_t EventHandler; + }; + + /* 326994 */ + struct ENpcBase + { + ENpcEventHandlerStruct EventHandler[32]; + uint64_t Weapon; + uint64_t SubWeapon; + float Scale; + uint32_t Equip[10]; + uint16_t IdleTimeline; + uint16_t Model; + uint16_t EquipPreset; + uint16_t Behavior; + uint16_t DefaultBalloon; + uint8_t Customize[26]; + uint8_t Voice; + uint8_t WeaponStain; + uint8_t SubWeaponStain; + uint8_t Stain[10]; + uint8_t Invisibility; + uint8_t padding0 : 5; + uint8_t Important : 1; + uint8_t Visor : 1; + uint8_t NotRewriteHeight : 1; + int8_t padding1[1]; + }; + + /* 326995 */ + struct Battalion + { + bool Table[12]; + }; + + /* 326996 */ + struct EventActionTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 326997 */ + struct EventAction + { + EventActionTextStruct Text; + uint16_t Icon; + uint16_t ActionTimeline_Start; + uint16_t ActionTimeline_Loop; + uint16_t ActionTimeline_End; + uint8_t Time; + int8_t padding0[3]; + }; + + /* 326998 */ + struct Omen + { + Component::Excel::Ps3::StringOffset Path; + Component::Excel::Ps3::StringOffset PathAlly; + uint8_t Type; + uint8_t padding0 : 6; + uint8_t LargeScale : 1; + uint8_t RestrictYScale : 1; + int8_t padding1[2]; + }; + + /* 326999 */ + struct NpcEquip + { + uint64_t WeaponModel; + uint64_t SubWeaponModel; + uint32_t Equip[10]; + uint8_t WeaponStain; + uint8_t SubWeaponStain; + uint8_t Stain[10]; + uint8_t padding0 : 7; + uint8_t Visor : 1; + int8_t padding1[3]; + }; + + /* 335954 */ + struct ChocoboTaxi + { + uint32_t Terminus; + int32_t Territory; + int32_t Path; + uint16_t Fare; + uint8_t TimeRequired; + int8_t padding0[1]; + }; + + /* 335955 */ + struct CutsceneMotion + { + float WALK_LOOP_SPEED; + float RUN_LOOP_SPEED; + float SLOWWALK_LOOP_SPEED; + float SLOWRUN_LOOP_SPEED; + float BATTLEWALK_LOOP_SPEED; + float BATTLERUN_LOOP_SPEED; + float DASH_LOOP_SPEED; + uint8_t TURN_CW90_FRAME; + uint8_t TURN_CCW90_FRAME; + uint8_t TURN_CW180_FRAME; + uint8_t TURN_CCW180_FRAME; + }; + + /* 335956 */ + struct EmoteMode + { + uint32_t StartEmote; + uint32_t EndEmote; + uint8_t ConditionMode; + uint8_t padding0 : 4; + uint8_t Move : 1; + uint8_t Camera : 1; + uint8_t EndOnRotate : 1; + uint8_t EndOnEmote : 1; + int8_t padding1[2]; + }; + + /* 337601 */ + struct GimmickJump + { + uint32_t LoopMotion; + uint32_t EndMotion; + uint16_t FallDamage; + int8_t Height; + uint8_t padding0 : 7; + uint8_t StartClient : 1; + }; + + /* 339572 */ + struct LinkRace + { + bool Link[4]; + }; + + /* 342251 */ + struct BGMScene + { + uint8_t padding0 : 3; + uint8_t EnableDisableRestart : 1; + uint8_t Resume : 1; + uint8_t EnablePassEnd : 1; + uint8_t ForceAutoReset : 1; + uint8_t IgnoreBattle : 1; + int8_t padding1[3]; + }; + + /* 342296 */ + struct VFX + { + Component::Excel::Ps3::StringOffset Path; + }; + + /* 342297 */ + struct Lockon + { + Component::Excel::Ps3::StringOffset File; + }; + + /* 342298 */ + struct Resident + { + int32_t Value; + int32_t Model; + uint8_t Type; + int8_t padding0[3]; + }; + + /* 342313 */ + struct MotionTimelineAdvanceBlend + { + Component::Excel::Ps3::StringOffset MotionTimelineName; + Component::Excel::Ps3::StringOffset NextMotionTimelineName; + }; + + /* 342406 */ + struct BGM + { + Component::Excel::Ps3::StringOffset Path; + float DisableRestartResetTime; + uint8_t Priority; + uint8_t SpecialMode; + uint8_t padding0 : 5; + uint8_t DisableRestartTimeOut : 1; + uint8_t DisableRestart : 1; + uint8_t PassEnd : 1; + int8_t padding1[1]; + }; + + /* 342407 */ + struct BGMSituation + { + uint16_t DaytimeID; + uint16_t NightID; + uint16_t BattleID; + uint16_t DaybreakID; + uint16_t TwilightID; + int8_t padding0[2]; + }; + + /* 342408 */ + struct BGMFade + { + int32_t SceneOut; + int32_t SceneIn; + int32_t FadeType; + }; + + /* 342409 */ + struct BGMFadeType + { + float FadeOutTime; + float FadeInTime; + float FadeInStartTime; + float ResumeFadeInTime; + }; + + /* 342410 */ + struct BGMSystemDefine + { + float ValueFloat; + }; + + /* 342463 */ + struct Ballista + { + uint16_t BNpc; + uint16_t Angle; + uint16_t Action[2]; + uint8_t Bullet; + int8_t Near; + int8_t Far; + int8_t padding0[1]; + }; + + /* 362336 */ + struct SpecialShopItem + { + uint32_t SetNum[2]; + uint32_t NumOfCurrency[3]; + int32_t ItemId[2]; + int32_t Category[2]; + int32_t Currency[3]; + int32_t Quest[2]; + int32_t Achievement; + bool IsCurrencyHq[3]; + int8_t padding0[1]; + }; + + /* 362337 */ + struct GuildleveAssignment + { + uint32_t Talk; + uint32_t UnlockQuest; + uint32_t DecideQuest; + uint8_t NeedGrandCompanyRank; + uint8_t padding0 : 5; + uint8_t HaveImmortalLeve : 1; + uint8_t HaveTwinAdderLeve : 1; + uint8_t HaveMaelstromLeve : 1; + int8_t padding1[2]; + }; + + /* 362338 */ + struct GuildleveAssignmentTalkParamStruct + { + uint32_t Gesture; + int32_t Shape; + uint8_t Turn; + int8_t LipSync; + int8_t Facial; + uint8_t padding0 : 7; + uint8_t LookAt : 1; + }; + + /* 362339 */ + struct GuildleveAssignmentTalkTextStruct + { + Component::Excel::Ps3::StringOffset Talk[8]; + }; + + /* 362340 */ + struct GuildleveAssignmentTalk + { + GuildleveAssignmentTalkParamStruct Param[5]; + GuildleveAssignmentTalkTextStruct Text; + }; + + /* 362341 */ + struct EventIconType + { + uint32_t Announce; + uint32_t Map; + uint8_t Num; + int8_t padding0[3]; + }; + + /* 362342 */ + struct GatheringItem + { + int32_t ItemId; + uint8_t Level; + uint8_t padding0 : 7; + uint8_t IsHiddenForNotebook : 1; + int8_t padding1[2]; + }; + + /* 362343 */ + struct DefaultTalkParamStruct + { + uint16_t Gesture; + uint16_t Facial; + uint8_t Turn; + uint8_t LipSync; + uint8_t Shape; + uint8_t padding0 : 7; + uint8_t IsAutoShake : 1; + }; + + /* 362344 */ + struct DefaultTalkTextStruct + { + Component::Excel::Ps3::StringOffset Talk[3]; + }; + + /* 362345 */ + struct DefaultTalk + { + DefaultTalkParamStruct Param[3]; + DefaultTalkTextStruct Text; + }; + + /* 362346 */ + struct CraftLeveTalkParamStruct + { + uint32_t Gesture; + int32_t Shape; + uint8_t Turn; + int8_t LipSync; + int8_t Facial; + uint8_t padding0 : 7; + uint8_t LookAt : 1; + }; + + /* 362347 */ + struct CraftLeveTalkTextStruct + { + Component::Excel::Ps3::StringOffset Talk[6]; + }; + + /* 362348 */ + struct CraftLeveTalk + { + CraftLeveTalkParamStruct Param[6]; + CraftLeveTalkTextStruct Text; + }; + + /* 362349 */ + struct SwitchTalkCaseStruct + { + uint32_t CaseCondition; + uint32_t Talk; + }; + + /* 362350 */ + struct SwitchTalk + { + SwitchTalkCaseStruct TalkCase[16]; + }; + + /* 362351 */ + struct BattleLeveTimeStruct + { + uint16_t RoutePointTime; + }; + + /* 362352 */ + struct BattleLeveEntryStruct + { + uint32_t NameId; + uint32_t Param[6]; + int32_t BaseId; + int32_t DropEventItemId; + uint16_t Level; + uint8_t DropEventItemMax; + uint8_t DropEventItemRate; + uint8_t NumOfAppearance[8]; + }; + + /* 362353 */ + struct BattleLeveTodoStruct + { + uint8_t TodoSequence; + }; + + /* 362354 */ + struct BattleLeve + { + BattleLeveTimeStruct RoutePointTime[8]; + BattleLeveEntryStruct Entry[8]; + BattleLeveTodoStruct Todo[8]; + int32_t Rule; + uint16_t Objective[3]; + uint16_t Help[2]; + uint8_t Variation; + int8_t padding0[1]; + }; + + /* 362355 */ + struct GatheringLeveRoute + { + int32_t Point[10]; + int32_t BNpcPopRange[10]; + }; + + /* 362356 */ + struct CompanyLeveTimeStruct + { + uint16_t RoutePointTime; + }; + + /* 362357 */ + struct CompanyLeveEntryStruct + { + uint32_t NameId; + uint32_t Param[6]; + int32_t BaseId; + int32_t DropEventItemId; + uint16_t Level; + uint8_t DropEventItemMax; + uint8_t DropEventItemRate; + uint8_t NumOfAppearance[8]; + }; + + /* 362358 */ + struct CompanyLeveTodoStruct + { + uint8_t TodoSequence; + }; + + /* 362359 */ + struct CompanyLeve + { + CompanyLeveTimeStruct RoutePointTime[8]; + CompanyLeveEntryStruct Entry[8]; + CompanyLeveTodoStruct Todo[8]; + int32_t Rule; + uint8_t Variation; + int8_t padding0[3]; + }; + + /* 362360 */ + struct QuestBattleDefineStruct + { + Component::Excel::Ps3::StringOffset DefineName; + uint32_t DefineValue; + }; + + /* 362361 */ + struct QuestBattle + { + QuestBattleDefineStruct Define[100]; + int32_t Quest; + uint16_t LimitTime; + uint16_t SyncLevel; + uint8_t SubNo; + int8_t padding0[3]; + }; + + /* 362362 */ + struct CustomTalkDefineStruct + { + Component::Excel::Ps3::StringOffset Name; + uint32_t Value; + }; + + /* 362363 */ + struct CustomTalkTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 362364 */ + struct CustomTalk + { + CustomTalkDefineStruct Define[30]; + CustomTalkTextStruct Text; + Component::Excel::Ps3::StringOffset Script; + uint32_t MapIcon; + uint8_t padding0 : 1; + uint8_t ListenHousing : 1; + uint8_t ListenEnterTerritory : 1; + uint8_t ListenEmote : 1; + uint8_t TargetingPossibleCallback : 1; + uint8_t ConditionCallback : 1; + uint8_t AcceptCallback : 1; + uint8_t ClientEvent : 1; + int8_t padding1[3]; + }; + + /* 362365 */ + struct StorySequenceStruct + { + uint32_t CompletedQuest[3]; + uint32_t AcceptedQuest[3]; + uint32_t LayerSet[2]; + uint16_t Sequence; + uint8_t CompletedQuestOperator; + uint8_t AcceptedQuestOperator; + uint8_t AcceptedQuestSequence[3]; + int8_t padding0[1]; + }; + + /* 362366 */ + struct StoryDefineStruct + { + Component::Excel::Ps3::StringOffset Name; + uint32_t Value; + }; + + /* 362367 */ + struct StoryVisibleListenerStruct + { + uint32_t Listener; + uint16_t SequenceBegin; + uint16_t SequenceEnd; + }; + + /* 362368 */ + struct Story + { + StoryDefineStruct Define[40]; + StorySequenceStruct Sequence[110]; + StoryVisibleListenerStruct VisibleListener[80]; + Component::Excel::Ps3::StringOffset Script; + uint16_t LayerSetTerritoryType[2]; + }; + + /* 362369 */ + struct CompanyLeveRule + { + Component::Excel::Ps3::StringOffset Script; + uint16_t Objective; + uint16_t Help; + }; + + /* 362448 */ + struct AethernetStruct + { + uint32_t PopRange; + uint16_t TransferName; + int8_t padding0[2]; + }; + + /* 362451 */ + struct AetheryteSystemDefine + { + Component::Excel::Ps3::StringOffset DefineName; + uint32_t DefineValue; + }; + + /* 362452 */ + struct GatheringTypeTextStruct + { + Component::Excel::Ps3::StringOffset Text; + }; + + /* 362453 */ + struct GatheringType + { + GatheringTypeTextStruct Text; + int32_t MapIcon; + int32_t RareMapIcon; + }; + + /* 362454 */ + struct GatheringConditionTextStruct + { + Component::Excel::Ps3::StringOffset Text; + }; + + /* 362455 */ + struct GatheringCondition + { + GatheringConditionTextStruct Text; + }; + + /* 362456 */ + struct GatheringPointBonusTypeTextStruct + { + Component::Excel::Ps3::StringOffset Text; + }; + + /* 362457 */ + struct GatheringPointBonusType + { + GatheringPointBonusTypeTextStruct Text; + }; + + /* 362458 */ + struct GatheringExp + { + uint16_t Exp; + int8_t padding0[2]; + }; + + /* 362459 */ + struct FishingRecordType + { + int32_t NameId; + uint16_t Rank[2]; + }; + + /* 362460 */ + struct QuestSystemDefine + { + Component::Excel::Ps3::StringOffset DefineName; + int32_t DefineValue; + }; + + /* 362461 */ + struct EventSystemDefine + { + Component::Excel::Ps3::StringOffset DefineName; + uint32_t DefineValue; + }; + + /* 362462 */ + struct JournalGenreTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 362463 */ + struct JournalGenre + { + JournalGenreTextStruct Text; + int32_t Icon; + uint8_t Category; + int8_t padding0[3]; + }; + + /* 362464 */ + struct LeveSystemDefine + { + Component::Excel::Ps3::StringOffset DefineName; + int32_t DefineValue; + }; + + /* 362465 */ + struct BattleLeveRule + { + Component::Excel::Ps3::StringOffset Script; + }; + + /* 362466 */ + struct LeveVfx + { + Component::Excel::Ps3::StringOffset Path; + int32_t Icon; + }; + + /* 362467 */ + struct LeveStringTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 362468 */ + struct LeveString + { + LeveStringTextStruct Text; + }; + + /* 362469 */ + struct GatheringLeveRule + { + Component::Excel::Ps3::StringOffset Script; + }; + + /* 362470 */ + struct LeveClientTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 362471 */ + struct LeveClient + { + LeveClientTextStruct Text; + }; + + /* 362472 */ + struct LeveRewardItem + { + int32_t ItemGroup[8]; + uint8_t ItemGroupRate[8]; + }; + + /* 362473 */ + struct LeveRewardItemGroup + { + int32_t Item[8]; + uint16_t Stack[8]; + bool HQ[8]; + }; + + /* 362474 */ + struct GuildleveAssignmentCategory + { + int32_t Filter[8]; + }; + + /* 362475 */ + struct LeveAssignmentTypeTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 362476 */ + struct LeveAssignmentType + { + LeveAssignmentTypeTextStruct Text; + int32_t Icon; + uint8_t padding0 : 7; + uint8_t Faction : 1; + int8_t padding1[3]; + }; + + /* 362477 */ + struct GuildleveEvaluationTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 362478 */ + struct GuildleveEvaluation + { + GuildleveEvaluationTextStruct Text; + }; + + /* 362479 */ + struct OpeningSystemDefine + { + Component::Excel::Ps3::StringOffset DefineName; + uint32_t DefineValue; + }; + + /* 362480 */ + struct StorySystemDefine + { + Component::Excel::Ps3::StringOffset DefineName; + uint32_t DefineValue; + }; + + /* 362481 */ + struct PresetCamera + { + float PosX; + float PosY; + float PosZ; + float Elezene; + float Lalafell; + float Migote; + float Roegadyn; + float Hyuran_F; + float Elezene_F; + float Lalafell_F; + float Migote_F; + float Roegadyn_F; + uint16_t EID; + int8_t padding0[2]; + }; + + /* 362482 */ + struct PresetCameraAdjust + { + float Hyuran_M; + float Hyuran_F; + float Elezene_M; + float Elezene_F; + float Lalafell_M; + float Lalafell_F; + float Migote_M; + float Migote_F; + float Roegadyn_M; + float Roegadyn_F; + }; + + /* 362483 */ + struct Cutscene + { + Component::Excel::Ps3::StringOffset Path; + }; + + /* 362484 */ + struct DirectorSystemDefine + { + Component::Excel::Ps3::StringOffset DefineName; + int32_t DefineValue; + }; + + /* 362485 */ + struct SE + { + Component::Excel::Ps3::StringOffset Path; + }; + + /* 362486 */ + struct RetainerTaskParameter + { + int32_t TimeCorrectionNormal; + int32_t TimeCorrectionRandom; + int16_t BattleStack[2]; + int16_t GatheringStack[2]; + int16_t FishingStack[2]; + }; + + /* 362487 */ + struct ChocoboTaxiStandTextStruct + { + Component::Excel::Ps3::StringOffset Destination; + }; + + /* 362488 */ + struct ChocoboTaxiStand + { + ChocoboTaxiStandTextStruct Text; + uint16_t Taxi[8]; + }; + + /* 362489 */ + struct DefaultTalkLipSyncType + { + int32_t ActionTimeLine; + }; + + /* 362490 */ + struct GCShopItemCategoryTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 362491 */ + struct GCShopItemCategory + { + GCShopItemCategoryTextStruct Text; + }; + + /* 362492 */ + struct GCShop + { + int32_t ItemStartIndex; + int32_t ItemEndIndex; + }; + + /* 362493 */ + struct QuestBattleSystemDefine + { + Component::Excel::Ps3::StringOffset DefineName; + uint32_t DefineValue; + }; + + /* 363134 */ + struct ContentTalkTextStruct + { + Component::Excel::Ps3::StringOffset Text; + }; + + /* 363135 */ + struct ContentTalk + { + ContentTalkTextStruct Text; + uint8_t Param; + int8_t padding0[3]; + }; + + /* 363136 */ + struct ContentTalkParam + { + uint32_t Gesture; + uint8_t Turn; + uint8_t Shape; + int8_t LipSync; + int8_t Facial; + uint8_t padding0 : 7; + uint8_t LookAt : 1; + int8_t padding1[3]; + }; + + /* 363137 */ + struct ContentNpcTalk + { + uint32_t Talk[8]; + int32_t Type; + }; + + /* 363138 */ + struct GuildOrderOfficer + { + uint32_t Talk[6]; + }; + + /* 363139 */ + struct GuildOrderGuide + { + uint32_t Talk[6]; + }; + + /* 363140 */ + struct GimmickRect + { + uint32_t LayoutId; + uint32_t Param0; + uint32_t Param1; + uint8_t TriggerIn; + uint8_t TriggerOut; + int8_t padding0[2]; + }; + + /* 363141 */ + struct GimmickAccessor + { + uint32_t Param0; + uint32_t Param1; + uint32_t Param2; + int32_t Type; + }; + + /* 367152 */ + struct ScenarioTextStruct + { + Component::Excel::Ps3::StringOffset Label; + Component::Excel::Ps3::StringOffset Text; + }; + + /* 367156 */ + struct ArrayEventHandler + { + uint32_t EventHandler[16]; + }; + + /* 367157 */ + struct ShopTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 367158 */ + struct ShopStruct + { + ShopTextStruct Text; + uint32_t MapIcon; + int32_t Quest; + int32_t QualifiedTalk; + int32_t UnqualifiedTalk; + int32_t Item[40]; + uint8_t BeastTribe; + uint8_t BeastReputationRank; + uint8_t padding0 : 7; + uint8_t PriceChangeFlag : 1; + int8_t padding1[1]; + }; + + /* 367159 */ + struct ShopItem + { + uint32_t PriceMinParam; + uint32_t PriceParam; + uint32_t PriceMaxParam; + int32_t ItemId; + int32_t StainId; + int32_t Quest[2]; + int32_t Achievement; + uint8_t padding0 : 7; + uint8_t IsHQ : 1; + int8_t padding1[3]; + }; + + /* 367160 */ + struct GrandCompanySealShopItem + { + uint32_t SetNum; + uint32_t Seal; + int32_t ItemId; + int32_t ValidRank; + int32_t Category; + }; + + /* 367161 */ + struct WarpTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Question; + }; + + /* 367162 */ + struct Warp + { + WarpTextStruct Text; + uint32_t PopRange; + uint32_t QualifiedPreTalk; + uint32_t UnqualifiedPreTalk; + uint32_t UnqualifiedGilPreTalk; + uint16_t WarpCondition; + uint16_t Logic; + uint16_t PreCutScene; + uint16_t PostCutScene; + uint8_t padding0 : 7; + uint8_t SkipCutSceneConfig : 1; + int8_t padding1[3]; + }; + + /* 367163 */ + struct WarpLogicDefineStruct + { + Component::Excel::Ps3::StringOffset Name; + uint32_t Value; + }; + + /* 367164 */ + struct WarpLogicTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Yes; + Component::Excel::Ps3::StringOffset No; + }; + + /* 367165 */ + struct WarpLogic + { + WarpLogicDefineStruct Define[10]; + WarpLogicTextStruct Text; + Component::Excel::Ps3::StringOffset Script; + uint32_t MapIcon; + uint8_t padding0 : 7; + uint8_t AcceptCallback : 1; + int8_t padding1[3]; + }; + + /* 367166 */ + struct WarpCondition + { + uint32_t CompletedQuest[3]; + uint32_t NotAcceptedQuest; + uint16_t Gil; + uint16_t Reward; + uint16_t ClassLevel; + uint8_t CompletedQuestOperator; + int8_t padding0[1]; + }; + + /* 367167 */ + struct SpecialShopTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 367168 */ + struct SpecialShop + { + SpecialShopTextStruct Text; + SpecialShopItem Item[160]; + int32_t Quest; + int32_t QualifiedTalk; + int32_t UnqualifiedTalk; + uint8_t padding1 : 7; + uint8_t IsCurrencyType : 1; + int8_t padding2[3]; + }; + + /* 367169 */ + struct OpeningDefineStruct + { + Component::Excel::Ps3::StringOffset Name; + uint32_t Value; + }; + + /* 367170 */ + struct Opening + { + OpeningDefineStruct Define[40]; + Component::Excel::Ps3::StringOffset Script; + uint32_t Quest; + }; + + /* 367972 */ + struct QuestRepeatFlag + { + uint32_t Quest; + }; + + /* 367973 */ + struct EventIconPriority + { + uint32_t Icon[16]; + }; + + /* 370975 */ + struct PvPAction + { + uint16_t Action; + uint16_t Trait[3]; + uint8_t SkillPoint; + uint8_t Rank; + bool GrandCompany[3]; + int8_t padding0[1]; + int8_t padding1[2]; + }; + + /* 370976 */ + struct PvPTrait + { + uint16_t Trait[3]; + int8_t padding0[2]; + }; + + /* 370977 */ + struct MateriaJoinRate + { + float Rate[4]; + float HQRate[4]; + }; + + /* 370978 */ + struct ItemLevel + { + uint16_t BaseParam[74]; + }; + + /* 370979 */ + struct Buddy + { + Component::Excel::Ps3::StringOffset ActionSE[4]; + int32_t BaseEquip[3]; + uint8_t Base; + int8_t padding0[3]; + }; + + /* 370980 */ + struct BuddyItem + { + uint16_t Item; + uint8_t Status; + uint8_t padding0 : 6; + uint8_t UseField : 1; + uint8_t UseTraining : 1; + }; + + /* 370981 */ + struct PvPRankTextStruct + { + Component::Excel::Ps3::StringOffset PvPTitleMale[3]; + Component::Excel::Ps3::StringOffset PvPTitleFemale[3]; + }; + + /* 370982 */ + struct PvPRank + { + PvPRankTextStruct Text; + uint32_t Point; + }; + + /* 370983 */ + struct RelicMateria + { + uint8_t GradeMax; + int8_t padding0[3]; + }; + + /* 370986 */ + struct CraftCrystalTypeStruct + { + int32_t ItemId; + }; + + /* 370987 */ + struct RecipeElementTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 370988 */ + struct RecipeElement + { + RecipeElementTextStruct Text; + }; + + /* 370989 */ + struct GatheringItemPoint + { + uint32_t GatheringPointId; + }; + + /* 370990 */ + struct FishParameterTextStruct + { + Component::Excel::Ps3::StringOffset NoteHelp; + }; + + /* 370991 */ + struct FishParameter + { + FishParameterTextStruct Text; + int32_t ItemId; + int32_t Territory; + uint8_t Level; + uint8_t RecordType; + uint8_t padding0 : 7; + uint8_t IsFishPrint : 1; + int8_t padding1[1]; + }; + + /* 370992 */ + struct FishingSpotTextStruct + { + Component::Excel::Ps3::StringOffset SpotName; + }; + + /* 370993 */ + struct FishingSpot + { + FishingSpotTextStruct Text; + int32_t Category; + int32_t TerritoryType; + int32_t NameLayout; + int32_t Target[10]; + uint16_t MakerType; + uint16_t SpotNameId; + int16_t MakerPosX; + int16_t MakerPosY; + uint8_t Level; + uint8_t SortKey; + uint8_t padding0 : 7; + uint8_t Rare : 1; + int8_t padding1[1]; + }; + + /* 370994 */ + struct JournalCategoryTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 370995 */ + struct JournalCategory + { + JournalCategoryTextStruct Text; + uint8_t SeparateType; + uint8_t DataType; + int8_t padding0[2]; + }; + + /* 370996 */ + struct InstanceContentType + { + uint8_t Sortkey; + uint8_t Genre; + uint8_t ContentType; + int8_t padding0[1]; + }; + + /* 370997 */ + struct InstanceContentBuff + { + uint16_t ParamBase; + uint16_t ParamAdd; + }; + + /* 370998 */ + struct GCSupplyDutyReward + { + uint32_t ExpOfMunition; + uint32_t ExpOfSupplies; + uint32_t SealsOfBooty; + uint32_t SealsOfMunition; + uint32_t SealsOfSupplies; + }; + + /* 370999 */ + struct GCSupplyDefine + { + uint32_t Value; + }; + + /* 371000 */ + struct CycleTime + { + uint32_t FirstCycleOffset; + uint32_t Cycle; + }; + + /* 371001 */ + struct CutsceneWorkIndex + { + uint16_t WorkIndex; + int8_t padding0[2]; + }; + + /* 374114 */ + struct GatheringNotebookList + { + int32_t ItemId[100]; + uint8_t ItemNum; + int8_t padding0[3]; + }; + + /* 374115 */ + struct RecipeNotebookList + { + int32_t RecipeId[100]; + int32_t RecipeId1[30]; + uint8_t RecipeNum; + int8_t padding0[3]; + }; + + /* 374116 */ + struct CompleteJournalTextStruct + { + Component::Excel::Ps3::StringOffset Name; + }; + + /* 374117 */ + struct CompleteJournal + { + CompleteJournalTextStruct Text; + uint32_t Id; + uint32_t Separate; + int32_t Icon; + int32_t CutScene[24]; + uint16_t Level; + uint8_t LevelOffset; + int8_t padding0[1]; + }; + + /* 374118 */ + struct LegacyQuestTextStruct + { + Component::Excel::Ps3::StringOffset Name; + Component::Excel::Ps3::StringOffset Journal; + }; + + /* 374119 */ + struct LegacyQuest + { + LegacyQuestTextStruct Text; + uint16_t LegacyQuestId; + uint16_t SortKey; + uint8_t Genre; + int8_t padding0[3]; + }; + + /* 374121 */ + struct GCSupplyDuty_WoodWorkerStruct + { + int32_t Item_wdk[3]; + uint8_t Stack_wdk[3]; + int8_t padding0[1]; + }; + + /* 374122 */ + struct GCSupplyDuty_CulinarianStruct + { + int32_t Item_cul[3]; + uint8_t Stack_cul[3]; + int8_t padding1[1]; + }; + + /* 374123 */ + struct GCSupplyDuty_AlchemistStruct + { + int32_t Item_alc[3]; + uint8_t Stack_alc[3]; + int8_t padding2[1]; + }; + + /* 374124 */ + struct GCSupplyDuty_ArmourerStruct + { + int32_t Item_arm[3]; + uint8_t Stack_arm[3]; + int8_t padding3[1]; + }; + + /* 374125 */ + struct GCSupplyDuty_TannerStruct + { + int32_t Item_tan[3]; + uint8_t Stack_tan[3]; + int8_t padding4[1]; + }; + + /* 374126 */ + struct GCSupplyDuty_GoldSmithStruct + { + int32_t Item_gld[3]; + uint8_t Stack_gld[3]; + int8_t padding5[1]; + }; + + /* 374127 */ + struct GCSupplyDuty_WeaverStruct + { + int32_t Item_wvr[3]; + uint8_t Stack_wvr[3]; + int8_t padding6[1]; + }; + + /* 374128 */ + struct GCSupplyDuty_BlackSmithStruct + { + int32_t Item_bsm[3]; + uint8_t Stack_bsm[3]; + int8_t padding7[1]; + }; + + /* 374129 */ + struct GCSupplyDuty_MinerStruct + { + int32_t Item_min[3]; + uint8_t Stack_min[3]; + int8_t padding8[1]; + }; + + /* 374130 */ + struct GCSupplyDuty_HarvesterStruct + { + int32_t Item_hrv[3]; + uint8_t Stack_hrv[3]; + int8_t padding9[1]; + }; + + /* 374131 */ + struct GCSupplyDuty_FishermanStruct + { + int32_t Item_fsh[3]; + uint8_t Stack_fsh[3]; + int8_t padding10[1]; + }; + + /* 374132 */ + struct GCSupplyDuty + { + GCSupplyDuty_WoodWorkerStruct WoodWorker; + GCSupplyDuty_CulinarianStruct Culinarian; + GCSupplyDuty_AlchemistStruct Alchemist; + GCSupplyDuty_ArmourerStruct Armourer; + GCSupplyDuty_TannerStruct Tanner; + GCSupplyDuty_GoldSmithStruct GoldSmith; + GCSupplyDuty_WeaverStruct Weaver; + GCSupplyDuty_BlackSmithStruct BlackSmith; + GCSupplyDuty_MinerStruct Miner; + GCSupplyDuty_HarvesterStruct Harvester; + GCSupplyDuty_FishermanStruct Fisherman; + }; + + /* 374133 */ + struct GuildOrderTextStruct + { + Component::Excel::Ps3::StringOffset OperationText; + Component::Excel::Ps3::StringOffset OrderText[2]; + Component::Excel::Ps3::StringOffset SummaryText; + }; + + /* 374134 */ + struct GuildOrderRewardStruct + { + uint32_t Exp[2]; + uint32_t Gil[2]; + uint32_t Seal[2]; + uint32_t Item[2]; + uint16_t Stack[2]; + bool HQ[2]; + int8_t padding0[2]; + }; + + /* 374135 */ + struct GuildOrder + { + GuildOrderTextStruct Text; + GuildOrderRewardStruct Reward; + uint32_t OfficerBase; + }; + + /* 374137 */ + struct DailySupplyItem + { + int32_t Item[8]; + uint8_t Count[8]; + uint8_t Level[8]; + }; + + /* 379812 */ + struct BehaviorPath + { + uint8_t padding0 : 4; + uint8_t IsTurnTransition : 1; + uint8_t IsFadeOut : 1; + uint8_t IsFadeIn : 1; + uint8_t IsWalking : 1; + int8_t padding1[3]; + }; + + /* 379813 */ + struct Behavior + { + uint32_t Cont0_TypeArg0; + uint32_t Cont1_TypeArg1; + int32_t ActionArg; + uint16_t Balloon; + uint16_t Cont0_TypeArg1; + uint16_t Cont1_TypeArg0; + int16_t ActionArg2; + uint8_t Pack; + uint8_t Caster; + uint8_t Target; + uint8_t Action; + uint8_t Cond0_Target; + uint8_t Cond0_Type; + uint8_t Cond1_Target; + uint8_t Cond1_Type; + }; + + /* 383306 */ + struct BalloonTextStruct + { + Component::Excel::Ps3::StringOffset Message; + }; + + /* 383307 */ + struct Balloon + { + BalloonTextStruct Text; + uint8_t padding0 : 7; + uint8_t Slowly : 1; + int8_t padding1[3]; + }; + + /* 389006 */ + struct Knockback + { + float Distance; + float Speed; + float NearDistance; + float DirectionArg; + uint8_t Direction; + uint8_t padding0 : 6; + uint8_t CancelMove : 1; + uint8_t Motion : 1; + int8_t padding1[2]; + }; + + /* 390890 */ + struct Permission + { + bool Flag[58]; + int8_t padding0[2]; + }; + + /* 391161 */ + struct InstanceContentTextDataTextStruct + { + Component::Excel::Ps3::StringOffset Text; + }; + + /* 391162 */ + struct InstanceContentTextData + { + InstanceContentTextDataTextStruct Text; + }; + + /* 393785 */ + struct InstanceContentGuide + { + uint32_t InstanceContent; + uint32_t EventRange; + }; + + /* 397676 */ + struct GimmickYesNoTextStruct + { + Component::Excel::Ps3::StringOffset Text1; + Component::Excel::Ps3::StringOffset Text2; + Component::Excel::Ps3::StringOffset Text3; + }; + + /* 397677 */ + struct GimmickYesNo + { + GimmickYesNoTextStruct Text; + }; + + /* 397678 */ + struct GimmickBillTextStruct + { + Component::Excel::Ps3::StringOffset Message; + }; + + /* 397679 */ + struct GimmickBill + { + GimmickBillTextStruct Text; + }; + + /* 399529 */ + struct FateEventParamStruct + { + uint32_t Gesture; + int32_t LipSync; + int32_t Facial; + int32_t Shape; + uint8_t Turn; + uint8_t WidgetType; + uint8_t padding0 : 7; + uint8_t IsAutoShake : 1; + int8_t padding1[1]; + }; + + /* 399530 */ + struct FateEventTextStruct + { + Component::Excel::Ps3::StringOffset MessageText[8]; + }; + + /* 399531 */ + struct FateEvent + { + FateEventParamStruct Param[8]; + FateEventTextStruct Text; + }; + + /* 399532 */ + struct NpcYellTextStruct + { + Component::Excel::Ps3::StringOffset Text; + }; + + /* 399533 */ + struct NpcYell + { + NpcYellTextStruct NpcText; + float BalloonTime; + float BattleTalkTime; + uint8_t OutputType; + uint8_t padding0 : 7; + uint8_t IsBalloonSlow : 1; + int8_t padding1[2]; + }; + + /* 421681 */ + struct AnimationLOD + { + float CameraDistance; + float SampleInterval; + int8_t BoneLOD; + bool AnimationEnable[8]; + int8_t padding0[3]; + }; + + /* 450837 */ + struct MotionTimelineBlendTable + { + uint8_t DestBlendGroup; + uint8_t SrcBlendGroup; + uint8_t BlendFrame_PC; + uint8_t BlendFrame_TypeA; + uint8_t BlendFrame_TypeB; + uint8_t BlendFrame_TypeC; + int8_t padding0[2]; + }; + + + +} + +#endif //SAPPHIRE_EXCEL_STRUCTS_H diff --git a/deps/datReaderPs3/ExdCat.cpp b/deps/datReaderPs3/ExdCat.cpp new file mode 100644 index 00000000..fb0afe60 --- /dev/null +++ b/deps/datReaderPs3/ExdCat.cpp @@ -0,0 +1,92 @@ +#include "ExdCat.h" + +#include + +#include "GameData.h" + +#include "Exh.h" +#include "Exd.h" + +namespace +{ + // Suffix of the filenames given a language + std::map language_map = + { + {xivps3::exd::Language::none, ""}, + {xivps3::exd::Language::ja, "_ja"}, + {xivps3::exd::Language::en, "_en"}, + {xivps3::exd::Language::de, "_de"}, + {xivps3::exd::Language::fr, "_fr"}, + {xivps3::exd::Language::chs, "_chs"} + }; +} + +namespace xivps3::exd +{ + Cat::Cat( dat::GameData& i_game_data, const std::string& i_name ) : + _name( i_name ) + { + //XIV_INFO(xiv_exd_logger, "Initializing Cat with name: " << i_name); + // creates the header .exh + { + auto header_file = i_game_data.getFile( "exd/" + i_name + ".exh" ); + _header = std::shared_ptr< Exh >( new Exh( *header_file ) ); + + } + + for( auto language: _header->get_languages() ) + { + // chs not yet in data files + if( language == Language::en || language == Language::none ) + { + // Get all the files for a given category/language, in case of multiple range of IDs in separate files (like Quest) + std::vector< std::shared_ptr< dat::File>> files; + for( auto& exd_def: _header->get_exd_defs() ) + { + files.emplace_back( i_game_data.getFile( + "exd/" + i_name + "_" + std::to_string( exd_def.start_id ) + language_map.at( language ) + ".exd" ) ); + } + // Instantiate the data for this language + _data[ language ] = std::make_unique< Exd >( _header, files ); + } + } + } + + Cat::~Cat() + { + + } + + const std::string& Cat::get_name() const + { + return _name; + } + + const Exh& Cat::get_header() const + { + return *_header; + } + + const Exd& Cat::get_data_ln( Language i_language ) const + { + auto ln_it = _data.find( i_language ); + if( ln_it == _data.end() ) + { + throw std::runtime_error( "No data for language: " + std::to_string( uint16_t( i_language ) ) ); + } + + return *( ln_it->second ); + } + + const Exd& Cat::get_data( Language language ) const + { + auto ln_it = _data.find( language ); + if( ln_it == _data.end() ) + { + return get_data_ln( Language::none ); + } + + return *( ln_it->second ); + } + +} diff --git a/deps/datReaderPs3/ExdCat.h b/deps/datReaderPs3/ExdCat.h new file mode 100644 index 00000000..da70c580 --- /dev/null +++ b/deps/datReaderPs3/ExdCat.h @@ -0,0 +1,68 @@ +#ifndef XIV_EXD_CAT_H +#define XIV_EXD_CAT_H + +#include +#include + +#include + +#include "bparse.h" +#include "Exd.h" + + +namespace xivps3 +{ + namespace dat + { + class GameData; + } + namespace exd + { + + // Language in the exd files - note: chs/chinese is present in the languages array but not in the data files + enum Language : uint16_t + { + none = 0, + ja = 1, + en = 2, + de = 3, + fr = 4, + chs = 5, + }; + + class Exh; + class Exd; + + // A category repesent a several data sheets in the dats all under the same category + class Cat + { + public: + // i_name: name of the category + // i_game_data: used to fetch the files needed + Cat( dat::GameData& i_game_data, const std::string& i_name ); + ~Cat(); + + // Returns the name of the category + const std::string& get_name() const; + + // Returns the header + const Exh& get_header() const; + + // Returns data for a specific language + const Exd& get_data_ln( Language i_language = Language::none ) const; + + const Exd& get_data( Language language = Language::none ) const; + protected: + const std::string _name; + + // The header file of the category *.exh + std::shared_ptr _header; + // The data files of the category, indexed by language *.exd + // Note that if we have multiple files for different range of IDs, they are merged here + std::map> _data; + }; + + } +} + +#endif // XIV_EXD_CAT_H diff --git a/deps/datReaderPs3/ExdData.cpp b/deps/datReaderPs3/ExdData.cpp new file mode 100644 index 00000000..7881cf74 --- /dev/null +++ b/deps/datReaderPs3/ExdData.cpp @@ -0,0 +1,96 @@ +#include "ExdData.h" + +#include "stream.h" + +#include "GameData.h" +#include "File.h" + +#include "ExdCat.h" + +namespace xivps3::exd { + +ExdData::ExdData( dat::GameData& i_game_data ) try : + _game_data( i_game_data ) +{ + //XIV_INFO(xiv_exd_logger, "Initializing ExdData"); + + // Fetch the root.exl and get a stream from it + auto root_exl = i_game_data.getFile( "exd/root.exl" ); + std::vector< char > dataCpy = root_exl->get_data_sections().front(); + xivps3::utils::stream::vectorwrapbuf< char > databuf( dataCpy ); + std::istream stream( &databuf ); + + // Iterates over the lines while skipping the first one + std::string line; + std::getline( stream, line ); // extract first line EXLT,2 + std::getline( stream, line ); + + // Until the EOF + while( !line.empty() ) + { + // Format is cat_name,XX + // XX being an internal identifier + // Get only the cat_name + auto sep = line.find( ',' ); + auto category = line.substr( 0, sep ); + + // Add to the list of category name + // creates the empty category in the cats map + // instantiate the creation mutex for this category + _cat_names.push_back( category ); + _cats[ category ] = std::unique_ptr< Cat >(); + _cat_creation_mutexes[ category ] = std::make_unique< std::mutex >(); + + std::getline( stream, line ); + } +} +catch( std::exception& e ) +{ + // In case of failure here, client is supposed to catch the exception because it is not recoverable on our side + throw std::runtime_error( "ExdData initialization failed: " + std::string( e.what() ) ); +} + +ExdData::~ExdData() +{ + +} + +const std::vector< std::string >& ExdData::get_cat_names() const +{ + return _cat_names; +} + +const Cat& ExdData::get_category( const std::string& i_cat_name ) +{ + // Get the category from its name + auto cat_it = _cats.find( i_cat_name ); + if( cat_it == _cats.end() ) + { + throw std::runtime_error( "Category not found: " + i_cat_name ); + } + + if( cat_it->second ) + { + // If valid return it + return *( cat_it->second ); + } + else + { + // If not, create it and return it + create_category( i_cat_name ); + return *( _cats[ i_cat_name ] ); + } +} + +void ExdData::create_category( const std::string& i_cat_name ) +{ + // Lock mutex in this scope + std::lock_guard< std::mutex > lock( *( _cat_creation_mutexes[ i_cat_name ] ) ); + // Maybe after unlocking it has already been created, so check (most likely if it blocked) + if( !_cats[ i_cat_name ] ) + { + _cats[ i_cat_name ] = std::make_unique< Cat >( _game_data, i_cat_name ); + } +} + +} diff --git a/deps/datReaderPs3/ExdData.h b/deps/datReaderPs3/ExdData.h new file mode 100644 index 00000000..7b8ccf9e --- /dev/null +++ b/deps/datReaderPs3/ExdData.h @@ -0,0 +1,59 @@ +#ifndef XIV_EXD_EXDDATA_H +#define XIV_EXD_EXDDATA_H + +#include +#include +#include +#include +#include + +#include + +namespace xivps3 +{ + namespace dat + { + class GameData; + } + namespace exd + { + + class Cat; + + // Interface for retrieval of exd data - Main entry point + // the game_data object should outlive the exd_data object + class ExdData + { + public: + // Need an initialized dat::GameData to retrieve the files from the dat + ExdData(dat::GameData& i_game_data); + ~ExdData(); + + // Get the list of thenames of the categories + const std::vector& get_cat_names() const; + + // Get a category by its name + const Cat& get_category(const std::string& i_cat_name); + + // Export in csv in base flder i_ouput_path + void export_as_csvs(const std::filesystem::path& i_output_path); + + protected: + // Lazy instantiation of category + void create_category(const std::string& i_cat_name); + + // Reference to the game_data object + dat::GameData& _game_data; + + // Categories, indexed by their name + std::unordered_map> _cats; + // List of category names = m_cats.keys() + std::vector _cat_names; + // Mutexes used to avoid race condition when lazy instantiating a category + std::unordered_map> _cat_creation_mutexes; + }; + + } +} + +#endif // XIV_EXD_EXDDATA_H diff --git a/deps/datReaderPs3/Exh.cpp b/deps/datReaderPs3/Exh.cpp new file mode 100644 index 00000000..cfec8f9b --- /dev/null +++ b/deps/datReaderPs3/Exh.cpp @@ -0,0 +1,75 @@ +#include "Exh.h" + +#include "stream.h" + +#include "File.h" +#include + +using xivps3::utils::bparse::extract; + +namespace xivps3::exd +{ + + Exh::Exh( const dat::File& i_file ) + { + // Get a stream from the file + std::vector< char > dataCpy = i_file.get_data_sections().front(); + std::istringstream iss( std::string( dataCpy.begin(), dataCpy.end() ) ); + + // Extract header and skip to member definitions + _header = extract< ExhHeader >( iss ); + iss.seekg( 0x20 ); + + // Extract all the members and feed the _members map + for( auto i = 0; i < _header.field_count; ++i ) + { + auto member = extract< ExhMember >( iss ); + _members[ member.offset ] = member; + _exh_defs.push_back( member ); + } + + // Extract all the exd_defs + _exd_defs.reserve( _header.exd_count ); + for( auto i = 0; i < _header.exd_count; ++i ) + { + _exd_defs.emplace_back( extract< ExhExdDef >( iss ) ); + } + + // Extract all the languages + _languages.reserve( _header.language_count ); + for( auto i = 0; i < _header.language_count; ++i ) + { + _languages.emplace_back( Language( extract< uint16_t >( iss, "language" ) ) ); + } + } + + Exh::~Exh() + { + } + + const ExhHeader& Exh::get_header() const + { + return _header; + } + + const std::vector< ExhExdDef >& Exh::get_exd_defs() const + { + return _exd_defs; + } + + const std::vector< Language >& Exh::get_languages() const + { + return _languages; + } + + const std::map< uint32_t, ExhMember >& Exh::get_members() const + { + return _members; + } + + const std::vector< ExhMember >& Exh::get_exh_members() const + { + return _exh_defs; + } + +} diff --git a/deps/datReaderPs3/Exh.h b/deps/datReaderPs3/Exh.h new file mode 100644 index 00000000..28418a74 --- /dev/null +++ b/deps/datReaderPs3/Exh.h @@ -0,0 +1,133 @@ +#ifndef XIV_EXD_EXH_H +#define XIV_EXD_EXH_H + +#include + +#include "bparse.h" + +namespace xivps3::exd +{ + enum class DataType : uint16_t + { + string = 0, + boolean = 1, + int8 = 2, + uint8 = 3, + int16 = 4, + uint16 = 5, + int32 = 6, + uint32 = 7, + float32 = 9, + uint64 = 11, + }; + + struct ExhHeader + { + char magic[0x4]; + uint16_t unknown; + uint16_t data_offset; + uint16_t field_count; + uint16_t exd_count; + uint16_t language_count; + uint16_t unknown1; + uint8_t u2; + uint8_t variant; + }; + + struct ExhMember + { + DataType type; + uint16_t offset; + }; + + struct ExhExdDef + { + uint32_t start_id; + uint32_t count_id; + }; +}; + +namespace xivps3::utils::bparse { +template<> +inline void reorder< xivps3::exd::ExhHeader >( xivps3::exd::ExhHeader& i_struct ) +{ + for( int32_t i = 0; i < 0x4; ++i ) + { + xivps3::utils::bparse::reorder( i_struct.magic[ i ] ); + } + i_struct.unknown = xivps3::utils::bparse::byteswap( i_struct.unknown ); + xivps3::utils::bparse::reorder( i_struct.unknown ); + i_struct.data_offset = xivps3::utils::bparse::byteswap( i_struct.data_offset ); + xivps3::utils::bparse::reorder( i_struct.data_offset ); + i_struct.field_count = xivps3::utils::bparse::byteswap( i_struct.field_count ); + xivps3::utils::bparse::reorder( i_struct.field_count ); + i_struct.exd_count = xivps3::utils::bparse::byteswap( i_struct.exd_count ); + xivps3::utils::bparse::reorder( i_struct.exd_count ); + i_struct.language_count = xivps3::utils::bparse::byteswap( i_struct.language_count ); + xivps3::utils::bparse::reorder( i_struct.language_count ); +} + +template<> +inline void reorder< xivps3::exd::ExhMember >( xivps3::exd::ExhMember& i_struct ) +{ + i_struct.type = xivps3::utils::bparse::byteswap( i_struct.type ); + xivps3::utils::bparse::reorder( i_struct.type ); + i_struct.offset = xivps3::utils::bparse::byteswap( i_struct.offset ); + xivps3::utils::bparse::reorder( i_struct.offset ); +} + +template<> +inline void reorder< xivps3::exd::ExhExdDef >( xivps3::exd::ExhExdDef& i_struct ) +{ + i_struct.start_id = xivps3::utils::bparse::byteswap( i_struct.start_id ); + xivps3::utils::bparse::reorder( i_struct.start_id ); + i_struct.count_id = xivps3::utils::bparse::byteswap( i_struct.count_id ); + xivps3::utils::bparse::reorder( i_struct.count_id ); +} +}; + +namespace xivps3 +{ + + namespace dat + { + class File; + } + + namespace exd + { + + enum Language : uint16_t; + + // Header file for exd data + class Exh + { + public: + // The header file + Exh( const dat::File& i_file ); + + ~Exh(); + + const ExhHeader& get_header() const; + + const std::vector< ExhExdDef >& get_exd_defs() const; + + const std::vector< Language >& get_languages() const; + + const std::map< uint32_t, ExhMember >& get_members() const; + + const std::vector< ExhMember >& get_exh_members() const; + + protected: + ExhHeader _header; + // Members of the datastruct ordered(indexed) by offset + std::map< uint32_t, ExhMember > _members; + std::vector< ExhMember > _exh_defs; + std::vector< ExhExdDef > _exd_defs; + std::vector< Language > _languages; + }; + + } +} + +#endif // XIV_EXD_EXH_H diff --git a/deps/datReaderPs3/File.cpp b/deps/datReaderPs3/File.cpp new file mode 100644 index 00000000..6307d164 --- /dev/null +++ b/deps/datReaderPs3/File.cpp @@ -0,0 +1,42 @@ +#include "File.h" + +#include + +namespace xivps3::dat +{ + + File::File() : + _type( FileType::empty ) + { + } + + File::~File() + { + } + + FileType File::get_type() const + { + return _type; + } + + const std::vector< std::vector< char>>& File::get_data_sections() const + { + return _data_sections; + } + + std::vector< std::vector< char>>& File::access_data_sections() + { + return _data_sections; + } + + void File::exportToFile( const std::filesystem::path& i_path ) const + { + std::ofstream ofs( i_path.string(), std::ios_base::binary | std::ios_base::out ); + for( auto& data_section : _data_sections ) + { + ofs.write( data_section.data(), data_section.size() ); + } + ofs.close(); + } + +} diff --git a/deps/datReaderPs3/File.h b/deps/datReaderPs3/File.h new file mode 100644 index 00000000..85f98292 --- /dev/null +++ b/deps/datReaderPs3/File.h @@ -0,0 +1,48 @@ +#ifndef XIV_DAT_FILE_H +#define XIV_DAT_FILE_H + +#include + +#include +#include +#include "bparse.h" + +namespace xivps3::dat +{ + enum class FileType : + uint32_t + { + empty = 1, + standard = 2, + model = 3, + texture = 4, + }; + + class Dat; + + // Basic file from the dats + class File + { + friend class Dat; + + public: + File(); + + ~File(); + + FileType get_type() const; + + // Getters functions for the data in the file + const std::vector< std::vector< char>>& get_data_sections() const; + + std::vector< std::vector< char>>& access_data_sections(); + + void exportToFile( const std::filesystem::path& i_path ) const; + + protected: + FileType _type; + std::vector< std::vector< char>> _data_sections; + }; +} + +#endif // XIV_DAT_FILE_H diff --git a/deps/datReaderPs3/GameData.cpp b/deps/datReaderPs3/GameData.cpp new file mode 100644 index 00000000..f66c739b --- /dev/null +++ b/deps/datReaderPs3/GameData.cpp @@ -0,0 +1,325 @@ +#include "GameData.h" + +#include +#include +#include + +#include +#include + +#include "bparse.h" +#include "DatCat.h" +#include "File.h" + +namespace { +// Relation between category number and category name +// These names are taken straight from the exe, it helps resolve dispatching when getting files by path + +std::unordered_map< std::string, uint32_t > categoryNameToIdMap = + { { "common", 0x00 }, + { "bgcommon", 0x01 }, + { "bg", 0x02 }, + { "cut", 0x03 }, + { "chara", 0x04 }, + { "shader", 0x05 }, + { "ui", 0x06 }, + { "sound", 0x07 }, + { "vfx", 0x08 }, + { "ui_script", 0x09 }, + { "exd", 0x0A }, + { "game_script", 0x0B }, + { "music", 0x0C } + }; + +std::unordered_map< uint32_t, std::string > categoryIdToNameMap = + { { 0x00, "common" }, + { 0x01, "bgcommon" }, + { 0x02, "bg" }, + { 0x03, "cut" }, + { 0x04, "chara" }, + { 0x05, "shader" }, + { 0x06, "ui" }, + { 0x07, "sound" }, + { 0x08, "vfx" }, + { 0x09, "ui_script" }, + { 0x0A, "exd" }, + { 0x0B, "game_script" }, + { 0x0C, "music" } }; +} + +namespace xivps3::dat +{ + GameData::GameData( const std::filesystem::path& path ) try : + m_path( path ) + { + int maxExLevel = 0; + + // msvc has retarded stdlib implementation + #ifdef _WIN32 + static constexpr auto sep = "\\"; + #else + static constexpr auto sep = std::filesystem::path::preferred_separator; + #endif + + // Determine which expansions are available + while( std::filesystem::exists( std::filesystem::path( + m_path.string() + sep + "ex" + std::to_string( maxExLevel + 1 ) + sep + "ex" + std::to_string( maxExLevel + 1 ) + + ".ver" ) ) ) + { + maxExLevel++; + } + + + // Iterate over the files in path + for( auto it = std::filesystem::directory_iterator( m_path.string() + "//ffxiv" ); + it != std::filesystem::directory_iterator(); ++it ) + { + // Get the filename of the current element + auto filename = it->path().filename().string(); + + // If it contains ".ps3.d.index" this is most likely a hit for a category + if( filename.find( ".ps3.d.index" ) != std::string::npos && filename.find( ".ps3.d.index2" ) == std::string::npos ) + { + // Format of indexes is XX0000.win32.index, so fetch the hex number for category number + std::istringstream iss( filename.substr( 0, 2 ) ); + uint32_t cat_nb; + iss >> std::hex >> cat_nb; + + + // Add to the list of category number + // creates the empty category in the cats map + // instantiate the creation mutex for this category + m_catNums.push_back( cat_nb ); + m_cats[ cat_nb ] = std::unique_ptr< Cat >(); + m_catCreationMutexes[ cat_nb ] = std::make_unique< std::mutex >(); + + // Check for expansion + for( int exNum = 1; exNum <= maxExLevel; exNum++ ) + { + const std::string path = + m_path.string() + sep + buildDatStr( "ex" + std::to_string( exNum ), cat_nb, exNum, 0, "ps3.d", "index" ); + + if( std::filesystem::exists( std::filesystem::path( path ) ) ) + { + + int chunkCount = 0; + + for( int chunkTest = 0; chunkTest < 256; chunkTest++ ) + { + if( std::filesystem::exists( m_path.string() + sep + + buildDatStr( "ex" + std::to_string( exNum ), cat_nb, exNum, chunkTest, "ps3.d", + "index" ) ) ) + { + m_exCats[ cat_nb ].exNumToChunkMap[ exNum ].chunkToCatMap[ chunkTest ] = std::unique_ptr< Cat >(); + chunkCount++; + } + } + + } + } + } + } + + } + catch( std::exception& e ) + { + // In case of failure here, client is supposed to catch the exception because it is not recoverable on our side + throw std::runtime_error( "GameData initialization failed: " + std::string( e.what() ) ); + } + + GameData::~GameData() + { + + } + + const std::string GameData::buildDatStr( const std::string folder, const int cat, const int exNum, const int chunk, + const std::string platform, const std::string type ) + { + char dat[1024]; + sprintf( dat, "%s/%02x%02x%02x.%s.%s", folder.c_str(), cat, exNum, chunk, platform.c_str(), type.c_str() ); + return std::string( dat ); + } + + const std::vector< uint32_t >& GameData::getCatNumbers() const + { + return m_catNums; + } + + std::unique_ptr< File > GameData::getFile( const std::string& path ) + { + // Get the hashes, the category from the path then call the getFile of the category + uint32_t dirHash; + uint32_t filenameHash; + getHashes( path, dirHash, filenameHash ); + + return getCategoryFromPath( path ).getFile( dirHash, filenameHash ); + } + + bool GameData::doesFileExist( const std::string& path ) + { + uint32_t dirHash; + uint32_t filenameHash; + getHashes( path, dirHash, filenameHash ); + + return getCategoryFromPath( path ).doesFileExist( dirHash, filenameHash ); + } + + bool GameData::doesDirExist( const std::string& i_path ) + { + uint32_t dirHash; + uint32_t filenameHash; + getHashes( i_path, dirHash, filenameHash ); + + return getCategoryFromPath( i_path ).doesDirExist( dirHash ); + } + + const Cat& GameData::getCategory( uint32_t catNum ) + { + // Check that the category number exists + auto catIt = m_cats.find( catNum ); + if( catIt == m_cats.end() ) + { + throw std::runtime_error( "Category not found: " + std::to_string( catNum ) ); + } + + // If it exists and already instantiated return it + if( catIt->second ) + { + return *( catIt->second ); + } + else + { + // Else create it and return it + createCategory( catNum ); + return *( m_cats[ catNum ] ); + } + } + + const Cat& GameData::getCategory( const std::string& catName ) + { + // Find the category number from the name + auto categoryNameToIdMapIt = ::categoryNameToIdMap.find( catName ); + if( categoryNameToIdMapIt == ::categoryNameToIdMap.end() ) + { + throw std::runtime_error( "Category not found: " + catName ); + } + + // From the category number return the category + return getCategory( categoryNameToIdMapIt->second ); + } + + const Cat& GameData::getExCategory( const std::string& catName, uint32_t exNum, const std::string& path ) + { + // Find the category number from the name + auto categoryMapIt = ::categoryNameToIdMap.find( catName ); + if( categoryMapIt == ::categoryNameToIdMap.end() ) + { + throw std::runtime_error( "Category not found: " + catName ); + } + + uint32_t dirHash; + uint32_t filenameHash; + getHashes( path, dirHash, filenameHash ); + + for( auto const& chunk : m_exCats[ categoryMapIt->second ].exNumToChunkMap[ exNum ].chunkToCatMap ) + { + if( !chunk.second ) + createExCategory( categoryMapIt->second ); + + if( chunk.second->doesFileExist( dirHash, filenameHash ) ) + { + return *( chunk.second ); + } + } + + throw std::runtime_error( "Chunk not found for path: " + path ); + } + + const Cat& GameData::getCategoryFromPath( const std::string& path ) + { + // Find the first / in the string, paths are in the format CAT_NAME/..../.../../.... + auto firstSlashPos = path.find( '/' ); + if( firstSlashPos == std::string::npos ) + { + throw std::runtime_error( "Path does not have a / char: " + path ); + } + + if( path.substr( firstSlashPos + 1, 2 ) == "ex" ) + { + return getExCategory( path.substr( 0, firstSlashPos ), std::stoi( path.substr( firstSlashPos + 3, 1 ) ), path ); + } + else + { + // From the sub string found beforethe first / get the category + return getCategory( path.substr( 0, firstSlashPos ) ); + } + } + + void GameData::getHashes( const std::string& path, uint32_t& dirHash, uint32_t& filenameHash ) const + { + // Convert the path to lowercase before getting the hashes + std::string pathLower; + pathLower.resize( path.size() ); + std::transform( path.begin(), path.end(), pathLower.begin(), ::tolower ); + + // Find last / to separate dir from filename + auto lastSlashPos = pathLower.rfind( '/' ); + if( lastSlashPos == std::string::npos ) + { + throw std::runtime_error( "Path does not have a / char: " + path ); + } + + std::string dirPart = pathLower.substr( 0, lastSlashPos ); + std::string filenamePart = pathLower.substr( lastSlashPos + 1 ); + + // Get the crc32 values from zlib, to compensate the final XOR 0xFFFFFFFF that isnot done in the exe we just reXOR + dirHash = crc32( 0, reinterpret_cast( dirPart.data() ), dirPart.size() ) ^ 0xFFFFFFFF; + filenameHash = crc32( 0, reinterpret_cast( filenamePart.data() ), filenamePart.size() ) ^ 0xFFFFFFFF; + } + + void GameData::createCategory( uint32_t catNum ) + { + // Lock mutex in this scope + std::lock_guard< std::mutex > lock( *( m_catCreationMutexes[ catNum ] ) ); + // Maybe after unlocking it has already been created, so check (most likely if it blocked) + if( !m_cats[ catNum ] ) + { + // Get the category name if we have it + std::string catName; + auto categoryMapIt = ::categoryIdToNameMap.find( catNum ); + if( categoryMapIt != ::categoryIdToNameMap.end() ) + { + catName = categoryMapIt->second; + } + + // Actually creates the category + m_cats[ catNum ] = std::make_unique< Cat >( m_path, catNum, catName ); + } + } + + void GameData::createExCategory( uint32_t catNum ) + { + // Maybe after unlocking it has already been created, so check (most likely if it blocked) + if( !m_exCats[ catNum ].exNumToChunkMap[ 1 ].chunkToCatMap[ 0 ] ) + { + // Get the category name if we have it + std::string catName; + auto categoryMapIt = ::categoryIdToNameMap.find( catNum ); + if( categoryMapIt != ::categoryIdToNameMap.end() ) + { + catName = categoryMapIt->second; + } + + for( auto const& ex : m_exCats[ catNum ].exNumToChunkMap ) + { + for( auto const& chunk : m_exCats[ catNum ].exNumToChunkMap[ ex.first ].chunkToCatMap ) + { + // Actually creates the category + m_exCats[ catNum ].exNumToChunkMap[ ex.first ].chunkToCatMap[ chunk.first ] = std::unique_ptr< Cat >( + new Cat( m_path, catNum, catName, ex.first, chunk.first ) ); + } + } + } + } + +} diff --git a/deps/datReaderPs3/GameData.h b/deps/datReaderPs3/GameData.h new file mode 100644 index 00000000..f2075a00 --- /dev/null +++ b/deps/datReaderPs3/GameData.h @@ -0,0 +1,95 @@ +#ifndef XIV_DAT_GAMEDATA_H +#define XIV_DAT_GAMEDATA_H + +#include +#include +#include +#include +#include +#include + +#include + +namespace xivps3::dat +{ + + class Cat; + + class File; + + // Interface to all the datfiles - Main entry point + // All the paths to files/dirs inside the dats are case-insensitive + class GameData + { + public: + // This should be the path in which the .index/.datX files are located + GameData( const std::filesystem::path& path ); + + ~GameData(); + + static const std::string + buildDatStr( const std::string folder, const int cat, const int exNum, const int chunk, const std::string platform, + const std::string type ); + + // Returns all the scanned category number available in the path + const std::vector< uint32_t >& getCatNumbers() const; + + // Return a specific category by its number (see getCatNumbers() for loops) + const Cat& getCategory( uint32_t catNum ); + + // Return a specific category by it's name (e.g.: "exd"/"game_script"/ etc...) + const Cat& getCategory( const std::string& catName ); + + const Cat& getExCategory( const std::string& catName, uint32_t exNum, const std::string& path ); + + // Retrieve a file from the dats given its filename + std::unique_ptr< File > getFile( const std::string& path ); + + // Checks that a file exists + bool doesFileExist( const std::string& path ); + + // Checks that a dir exists, there must be a trailing / in the path + // Note that it won't work for dirs that don't contain any file + // e.g.: - "ui/icon/" will return False + // - "ui/icon/000000/" will return True + bool doesDirExist( const std::string& path ); + + protected: + // Return a specific category given a path (calls const Cat& getCategory(const std::string& catName)) + const Cat& getCategoryFromPath( const std::string& path ); + + // From a full path, returns the dirHash and the filenameHash + void getHashes( const std::string& path, uint32_t& dirHash, uint32_t& filenameHash ) const; + + // Lazy instantiation of category + void createCategory( uint32_t catNum ); + + void createExCategory( uint32_t catNum ); + + // Path given to constructor, pointing to the folder with the .index/.datX files + const std::filesystem::path m_path; + + // Stored categories, indexed by their number, categories are instantiated and parsed individually when they are needed + std::unordered_map< uint32_t, std::unique_ptr< Cat>> m_cats; + + // List of all the categories numbers, is equal to m_cats.keys() + std::vector< uint32_t > m_catNums; + + // Map of all EX categories and their chunks, "CatNum - (ExNum - (ChunkNum - Cat))" + // Map of all EX categories and their chunks, "CatNum - (ExNum - (ChunkNum - Cat))" + using ChunkToCatMap = struct + { + std::unordered_map< uint32_t, std::unique_ptr< Cat > > chunkToCatMap; + }; + using ExNumToChunkMap = struct + { + std::unordered_map< uint32_t, ChunkToCatMap > exNumToChunkMap; + }; + using CatNumToExNumMap = std::unordered_map< uint32_t, ExNumToChunkMap >; + CatNumToExNumMap m_exCats; + std::unordered_map< uint32_t, std::unique_ptr< std::mutex>> m_catCreationMutexes; + }; + +} + +#endif // XIV_DAT_GAMEDATA_H diff --git a/deps/datReaderPs3/Index.cpp b/deps/datReaderPs3/Index.cpp new file mode 100644 index 00000000..b067163a --- /dev/null +++ b/deps/datReaderPs3/Index.cpp @@ -0,0 +1,156 @@ +#include "Index.h" + +#include "bparse.h" + +namespace xivps3::dat +{ + struct IndexBlockRecord + { + uint32_t offset; + uint32_t size; + SqPackBlockHash blockHash; + }; + + struct IndexHashTableEntry + { + uint32_t dirHash; + uint32_t filenameHash; + uint32_t datOffset; + uint32_t padding; + }; +} + +namespace xivps3::utils::bparse +{ + template<> + inline void reorder< xivps3::dat::IndexBlockRecord >( xivps3::dat::IndexBlockRecord& i_struct ) + { + i_struct.offset = xivps3::utils::bparse::byteswap( i_struct.offset ); + i_struct.size = xivps3::utils::bparse::byteswap( i_struct.size ); + + xivps3::utils::bparse::reorder( i_struct.blockHash ); + } + + template<> + inline void reorder< xivps3::dat::IndexHashTableEntry >( xivps3::dat::IndexHashTableEntry& i_struct ) + { + i_struct.filenameHash = xivps3::utils::bparse::byteswap( i_struct.filenameHash ); + i_struct.dirHash = xivps3::utils::bparse::byteswap( i_struct.dirHash ); + i_struct.datOffset = xivps3::utils::bparse::byteswap( i_struct.datOffset ); + i_struct.padding = xivps3::utils::bparse::byteswap( i_struct.padding ); + } +} + +using xivps3::utils::bparse::extract; + +namespace xivps3::dat +{ + + Index::Index( const std::filesystem::path& path ) : + SqPack( path ) + { + if( !m_handle ) + throw new std::runtime_error( "Failed to load Index at " + path.string() ); + + // Hash Table record + auto hashTableBlockRecord = extract< IndexBlockRecord >( m_handle ); + isIndexBlockValid( hashTableBlockRecord ); + + // Save the posin the stream to go back to it later on + auto pos = m_handle.tellg(); + + // Seek to the pos of the hash table in the file + m_handle.seekg( hashTableBlockRecord.offset ); + + // Preallocate and extract the index_hash_table_entries + std::vector< IndexHashTableEntry > indexHashTableEntries; + extract< IndexHashTableEntry >( m_handle, hashTableBlockRecord.size / sizeof( IndexHashTableEntry ), + indexHashTableEntries ); + + // Feed the correct entry in the HashTable for each index_hash_table_entry + for( auto& indexHashTableEntry : indexHashTableEntries ) + { + auto& hashTableEntry = m_hashTable[ indexHashTableEntry.dirHash ][ indexHashTableEntry.filenameHash ]; + // The dat number is found in the offset, last four bits + //hashTableEntry.datNum = ( indexHashTableEntry.datOffset & 0xF ) / 0x2; + hashTableEntry.datNum = 0; + // The offset in the dat file, needs to strip the dat number indicator + //hashTableEntry.datOffset = ( indexHashTableEntry.datOffset - ( indexHashTableEntry.datOffset & 0x000F ) ) * 0x08; + hashTableEntry.datOffset = indexHashTableEntry.datOffset * 128; + } + + // Come back to where we were before reading the HashTable + m_handle.seekg( pos ); + + // Dat Count + m_datCount = extract< uint32_t >( m_handle, "dat_count", false ); + + // Free List + isIndexBlockValid( extract< IndexBlockRecord >( m_handle ) ); + + // Dir Hash Table + isIndexBlockValid( extract< IndexBlockRecord >( m_handle ) ); + } + + Index::~Index() + { + } + + uint32_t Index::getDatCount() const + { + return m_datCount; + } + + const Index::HashTable& Index::getHashTable() const + { + return m_hashTable; + } + + bool Index::doesFileExist( uint32_t dir_hash, uint32_t filename_hash ) const + { + auto dir_it = getHashTable().find( dir_hash ); + if( dir_it != getHashTable().end() ) + { + return ( dir_it->second.find( filename_hash ) != dir_it->second.end() ); + } + return false; + } + + bool Index::doesDirExist( uint32_t dir_hash ) const + { + return ( getHashTable().find( dir_hash ) != getHashTable().end() ); + } + + const Index::DirHashTable& Index::getDirHashTable( uint32_t dir_hash ) const + { + auto dir_it = getHashTable().find( dir_hash ); + if( dir_it == getHashTable().end() ) + { + throw std::runtime_error( "dirHash not found" ); + } + else + { + return dir_it->second; + } + } + + const Index::HashTableEntry& Index::getHashTableEntry( uint32_t dir_hash, uint32_t filename_hash ) const + { + auto& dirHashTable = getDirHashTable( dir_hash ); + auto file_it = dirHashTable.find( filename_hash ); + if( file_it == dirHashTable.end() ) + { + throw std::runtime_error( "filenameHash not found" ); + } + else + { + return file_it->second; + } + } + + void Index::isIndexBlockValid( const IndexBlockRecord& i_index_block_record ) + { + isBlockValid( i_index_block_record.offset, i_index_block_record.size, i_index_block_record.blockHash ); + } + +} diff --git a/deps/datReaderPs3/Index.h b/deps/datReaderPs3/Index.h new file mode 100644 index 00000000..ed4a05ed --- /dev/null +++ b/deps/datReaderPs3/Index.h @@ -0,0 +1,63 @@ +#ifndef XIV_DAT_INDEX_H +#define XIV_DAT_INDEX_H + +#include "SqPack.h" + +#include + +#include + +namespace xivps3::dat +{ + + struct IndexBlockRecord; + + class Index : + public SqPack + { + public: + // Full path to the index file + Index( const std::filesystem::path& i_path ); + + virtual ~Index(); + + // An entry in the hash table, representing a file in a given dat + struct HashTableEntry + { + uint32_t datNum; + uint32_t dirHash; + uint32_t filenameHash; + uint32_t datOffset; + }; + + // HashTable has dir hashes -> filename hashes -> HashTableEntry + using DirHashTable = std::unordered_map< uint32_t, HashTableEntry >; + using HashTable = std::unordered_map< uint32_t, DirHashTable >; + + // Get the number of dat files the index is linked to + uint32_t getDatCount() const; + + bool doesFileExist( uint32_t dir_hash, uint32_t filename_hash ) const; + + bool doesDirExist( uint32_t dir_hash ) const; + + // Returns the whole HashTable + const HashTable& getHashTable() const; + + // Returns the hash table for a specific dir + const DirHashTable& getDirHashTable( uint32_t dir_hash ) const; + + // Returns the HashTableEntry for a given file given its hashes + const HashTableEntry& getHashTableEntry( uint32_t dir_hash, uint32_t filename_hash ) const; + + protected: + // Checks that the block is valid with regards to its hash + void isIndexBlockValid( const IndexBlockRecord& i_index_block_record ); + + uint32_t m_datCount; + HashTable m_hashTable; + }; + +} + +#endif // XIV_DAT_INDEX_H diff --git a/deps/datReaderPs3/SqPack.cpp b/deps/datReaderPs3/SqPack.cpp new file mode 100644 index 00000000..d3ea35a1 --- /dev/null +++ b/deps/datReaderPs3/SqPack.cpp @@ -0,0 +1,78 @@ +#include "SqPack.h" + +namespace xivps3::dat { + enum PlatformId : + uint8_t + { + Win32, + PS3, + PS4 + }; + + struct SqPackHeader + { + char magic[0x8]; + PlatformId platformId; + uint8_t padding0[3]; + uint32_t size; + uint32_t version; + uint32_t type; + }; + + struct SqPackIndexHeader + { + uint32_t size; + uint32_t type; + }; +} + +namespace xivps3::utils:: bparse +{ + template<> + inline void reorder< xivps3::dat::SqPackHeader >( xivps3::dat::SqPackHeader& i_struct ) + { + for( int32_t i = 0; i < 0x8; ++i ) + { + xivps3::utils::bparse::reorder( i_struct.magic[ i ] ); + } + xivps3::utils::bparse::reorder( i_struct.platformId ); + xivps3::utils::bparse::reorder( i_struct.size ); + xivps3::utils::bparse::reorder( i_struct.version ); + xivps3::utils::bparse::reorder( i_struct.type ); + } + + template<> + inline void reorder< xivps3::dat::SqPackIndexHeader >( xivps3::dat::SqPackIndexHeader& i_struct ) + { + xivps3::utils::bparse::reorder( i_struct.size ); + xivps3::utils::bparse::reorder( i_struct.type ); + } +} + +using xivps3::utils::bparse::extract; + +namespace xivps3::dat +{ + + // Open the file + SqPack::SqPack( const std::filesystem::path& path ) : + m_handle( path.string(), std::ios_base::in | std::ios_base::binary ) + { + // Extract the header + extract< SqPackHeader >( m_handle ); + + // Skip until the IndexHeader the extract it + m_handle.seekg( 0x400 ); + extract< SqPackIndexHeader >( m_handle ); + } + + SqPack::~SqPack() + { + } + + void SqPack::isBlockValid( uint32_t i_offset, uint32_t i_size, const SqPackBlockHash& i_block_hash ) + { + // TODO + } + +} diff --git a/deps/datReaderPs3/SqPack.h b/deps/datReaderPs3/SqPack.h new file mode 100644 index 00000000..0aeb1329 --- /dev/null +++ b/deps/datReaderPs3/SqPack.h @@ -0,0 +1,62 @@ +#ifndef XIV_DAT_SQPACK_H +#define XIV_DAT_SQPACK_H + +#include + +#include + +#include "bparse.h" + + +namespace xivps3::dat +{ + typedef uint64_t HashType64; + struct SqPackBlockHash + { + HashType64 hash; + uint8_t reserved[0x0B]; + uint32_t padding[0xB]; + }; +} + +namespace xivps3::utils::bparse +{ + template<> + inline void reorder< xivps3::dat::SqPackBlockHash >( xivps3::dat::SqPackBlockHash& i_struct ) + { + i_struct.hash = xivps3::utils::bparse::byteswap( i_struct.hash ); + for( auto i = 0; i < 0x14; ++i ) + { + // xivps3::utils::bparse::reorder( i_struct.hash[ i ] ); + + } + for( auto i = 0; i < 0xB; ++i ) + { + xivps3::utils::bparse::reorder( i_struct.padding[ i ] ); + } + } +}; + +namespace xivps3::dat +{ + + class SqPack + { + + public: + // Full path to the sqpack file + SqPack( const std::filesystem::path& i_path ); + + virtual ~SqPack(); + + protected: + // Checks that a given block is valid iven its hash + void isBlockValid( uint32_t i_offset, uint32_t i_size, const SqPackBlockHash& i_block_hash ); + + // File handle + std::ifstream m_handle; + }; + +} + +#endif // XIV_DAT_SQPACK_H diff --git a/deps/datReaderPs3/bparse.cpp b/deps/datReaderPs3/bparse.cpp new file mode 100644 index 00000000..9a34dfb4 --- /dev/null +++ b/deps/datReaderPs3/bparse.cpp @@ -0,0 +1,8 @@ +#include "bparse.h" + +std::string xivps3::utils::bparse::extract_cstring( std::istream& i_stream, const std::string& i_name ) +{ + std::string temp_str; + std::getline( i_stream, temp_str, '\0' ); + return temp_str; +} \ No newline at end of file diff --git a/deps/datReaderPs3/bparse.h b/deps/datReaderPs3/bparse.h new file mode 100644 index 00000000..71535263 --- /dev/null +++ b/deps/datReaderPs3/bparse.h @@ -0,0 +1,101 @@ +#ifndef XIV_UTILS_BPARSE_H +#define XIV_UTILS_BPARSE_H + +#include +#include +#include +#include + +namespace xivps3::utils::bparse +{ + + // Internal macro for byteswapping + template< int N > + void byteswap_impl( char (& bytes)[N] ) + { + for( auto p = std::begin( bytes ), end = std::end( bytes ) - 1; p < end; ++p, --end ) + { + std::swap( *p, *end ); + } + } + + // byteswapping any type (no pointers to array) + template< typename T > + T byteswap( T value ) + { + byteswap_impl( *reinterpret_cast(&value) ); + return value; + } + + // Read a struct from a stream + template< typename StructType > + void read( std::istream& i_stream, StructType& i_struct ) + { + static_assert( std::is_pod< StructType >::value, "StructType must be a POD to be able to use read." ); + i_stream.read( reinterpret_cast( &i_struct ), sizeof( StructType ) ); + } + + // By default a type does not need reordering + template< typename StructType > + void reorder( StructType& i_struct ) + { + } + + // "Overload" for passed struct as arg + template< typename StructType > + void extract( std::istream& i_stream, StructType& o_struct ) + { + read( i_stream, o_struct ); + reorder( o_struct ); + } + + // This should not copy because of RVO + // Extract a struct from a stream and log it + template< typename StructType > + StructType extract( std::istream& i_stream ) + { + StructType temp_struct; + extract< StructType >( i_stream, temp_struct ); + return temp_struct; + } + + template< typename StructType > + void extract( std::istream& i_stream, uint32_t i_size, std::vector< StructType >& o_structs ) + { + o_structs.reserve( i_size ); + for( uint32_t i = 0; i < i_size; ++i ) + { + o_structs.emplace_back( extract< StructType >( i_stream ) ); + } + } + + // For simple (integral) types just provide name and endianness directly + template< typename StructType > + StructType extract( std::istream& i_stream, const std::string& i_name, bool i_is_le = true ) + { + StructType temp_struct; + read( i_stream, temp_struct ); + if( !i_is_le ) + { + temp_struct = byteswap( temp_struct ); + } + return temp_struct; + } + + template< typename StructType > + void extract( std::istream& i_stream, const std::string& i_name, uint32_t i_size, std::vector< StructType >& o_structs, + bool i_is_le = true ) + { + o_structs.reserve( i_size ); + for( uint32_t i = 0; i < i_size; ++i ) + { + o_structs.emplace_back( extract< StructType >( i_stream, i_name ) ); + } + } + + // For cstrings + std::string extract_cstring( std::istream& i_stream, const std::string& i_name ); + +} + +#endif // XIV_UTILS_BPARSE_H diff --git a/deps/datReaderPs3/conv.cpp b/deps/datReaderPs3/conv.cpp new file mode 100644 index 00000000..0a8fb702 --- /dev/null +++ b/deps/datReaderPs3/conv.cpp @@ -0,0 +1,33 @@ +#include "conv.h" + +namespace xivps3::utils::conv +{ + + float half2float( const uint16_t i_value ) + { + uint32_t t1; + uint32_t t2; + uint32_t t3; + + t1 = i_value & 0x7fff; // Non-sign bits + t2 = i_value & 0x8000; // Sign bit + t3 = i_value & 0x7c00; // Exponent + t1 <<= 13; // Align mantissa on MSB + t2 <<= 16; // Shift sign bit into position + + t1 += 0x38000000; // Adjust bias + + t1 = ( t3 == 0 ? 0 : t1 ); // Denormals-as-zero + + t1 |= t2; // Re-insert sign bit + + return *reinterpret_cast< float* >( &t1 ); + } + + float ubyte2float( const uint8_t i_value ) + { + return i_value / 255.0f; + } + +} + diff --git a/deps/datReaderPs3/conv.h b/deps/datReaderPs3/conv.h new file mode 100644 index 00000000..a1bc8373 --- /dev/null +++ b/deps/datReaderPs3/conv.h @@ -0,0 +1,15 @@ +#ifndef XIV_UTILS_CONV_H +#define XIV_UTILS_CONV_H + +#include +#include +#include + +namespace xivps3::utils::conv +{ + float half2float( const uint16_t i_value ); + + float ubyte2float( const uint8_t i_value ); +} + +#endif // XIV_UTILS_CONV_H diff --git a/deps/datReaderPs3/crc32.cpp b/deps/datReaderPs3/crc32.cpp new file mode 100644 index 00000000..ba5c75e9 --- /dev/null +++ b/deps/datReaderPs3/crc32.cpp @@ -0,0 +1,175 @@ +#include "crc32.h" + +#include +#include + +#include + +namespace internal +{ + // Mutex to prevent two threads from concurrently trying to build the crc tables atthe same time + std::mutex crc_creation_mutex; + + typedef std::vector CrcTable; + + // Our crc/rev_crc tables + CrcTable crc_table; + CrcTable rev_crc_table; + + bool crc_tables_created = false; + + void build_crc_tables() + { + std::lock_guard lock(crc_creation_mutex); + if (!crc_tables_created) + { + crc_table.resize(0x100); + rev_crc_table.resize(0x100); + for (auto i = 0; i < 0x100; ++i) + { + uint32_t crc = i; + for (auto j = 0; j < 8; ++j) + { + if (crc & 1) + { + crc = 0xEDB88320 ^ (crc >> 1); + } + else + { + crc = crc >> 1; + } + } + crc_table[i] = crc; + rev_crc_table[crc >> 24] = i + ((crc & 0xFFFFFF) << 8); + } + } + crc_tables_created = true; + } + + const CrcTable& get_crc_table() + { + if (!crc_tables_created) + { + build_crc_tables(); + } + return crc_table; + } + + const CrcTable& get_rev_crc_table() + { + if (!crc_tables_created) + { + build_crc_tables(); + } + return rev_crc_table; + } +} + +namespace xivps3::utils::crc32 +{ + + uint32_t compute( const std::string& i_input, uint32_t init_crc ) + { + // Classical crc stuff + auto& crc_table = internal::get_crc_table(); + auto crc = init_crc; + for( std::size_t i = 0; i < i_input.size(); ++i ) + { + crc = crc_table[ ( crc ^ i_input[ i ] ) & 0xFF ] ^ ( crc >> 8 ); + } + return crc; + } + + uint32_t rev_compute( const std::string& i_input, uint32_t init_crc ) + { + auto& rev_crc_table = internal::get_rev_crc_table(); + auto crc = init_crc; + const auto input_size = i_input.size(); + // Reverse crc + for( auto i = input_size; i > 0; --i ) + { + crc = rev_crc_table[ crc >> 24 ] ^ ( ( crc << 8 ) & 0xFFFFFF00 ) ^ i_input[ input_size - i - 1 ]; + } + // Compute the 4 bytes needed for this init_crc + for( auto i = 0; i < 4; ++i ) + { + crc = rev_crc_table[ crc >> 24 ] ^ ( ( crc << 8 ) & 0xFFFFFF00 ); + } + return crc; + } + + void generate_hashes_1( std::string& i_format, const uint32_t i_first_index, std::vector< uint32_t >& o_hashes ) + { + char* str = const_cast(i_format.data()); + const uint32_t str_size = i_format.size(); + + o_hashes.resize( 10000 ); + + uint32_t i = 0; + for( char a = '0'; a <= '9'; ++a ) + { + str[ i_first_index ] = a; + for( char b = '0'; b <= '9'; ++b ) + { + str[ i_first_index + 1 ] = b; + for( char c = '0'; c <= '9'; ++c ) + { + str[ i_first_index + 2 ] = c; + for( char d = '0'; d <= '9'; ++d ) + { + str[ i_first_index + 3 ] = d; + o_hashes[ i ] = ::crc32( 0, reinterpret_cast(&( str[ 0 ] )), str_size ) ^ 0xFFFFFFFF; + ++i; + } + } + } + } + } + + void generate_hashes_2( std::string& i_format, const uint32_t i_first_index, const uint32_t i_second_index, + std::vector< uint32_t >& o_hashes ) + { + char* str = const_cast(i_format.data()); + const uint32_t str_size = i_format.size(); + + o_hashes.resize( 100000000 ); + + uint32_t i = 0; + for( char a = '0'; a <= '9'; ++a ) + { + str[ i_first_index ] = a; + for( char b = '0'; b <= '9'; ++b ) + { + str[ i_first_index + 1 ] = b; + for( char c = '0'; c <= '9'; ++c ) + { + str[ i_first_index + 2 ] = c; + for( char d = '0'; d <= '9'; ++d ) + { + str[ i_first_index + 3 ] = d; + for( char e = '0'; e <= '9'; ++e ) + { + str[ i_second_index ] = e; + for( char f = '0'; f <= '9'; ++f ) + { + str[ i_second_index + 1 ] = f; + for( char g = '0'; g <= '9'; ++g ) + { + str[ i_second_index + 2 ] = g; + for( char h = '0'; h <= '9'; ++h ) + { + str[ i_second_index + 3 ] = h; + o_hashes[ i ] = ::crc32( 0, reinterpret_cast(&( str[ 0 ] )), str_size ) ^ 0xFFFFFFFF; + ++i; + } + } + } + } + } + } + } + } + } + + +} diff --git a/deps/datReaderPs3/crc32.h b/deps/datReaderPs3/crc32.h new file mode 100644 index 00000000..7a80ebca --- /dev/null +++ b/deps/datReaderPs3/crc32.h @@ -0,0 +1,25 @@ +#ifndef XIV_UTILS_CRC32_H +#define XIV_UTILS_CRC32_H + +#include +#include +#include + +namespace xivps3::utils::crc32 +{ + + // Normal crc32 computation from a given intial crc value, use zlib.crc32 instead, the final XOR 0xFFFFFFFF is not done + uint32_t compute( const std::string& i_input, uint32_t init_crc = 0xFFFFFFFF ); + + // Computes the 4 missing bytes XXXX such as init_crc = crc32(prefix_string) + // and string_to_find = prefix_string + XXXX + i_input + uint32_t rev_compute( const std::string& i_input, uint32_t init_crc = 0 ); + + void generate_hashes_1( std::string& i_format, const uint32_t i_first_index, std::vector< uint32_t >& o_hashes ); + + void generate_hashes_2( std::string& i_format, const uint32_t i_first_index, const uint32_t i_second_index, + std::vector< uint32_t >& o_hashes ); + +} + +#endif // XIV_UTILS_CRC32_H diff --git a/deps/datReaderPs3/stream.cpp b/deps/datReaderPs3/stream.cpp new file mode 100644 index 00000000..d658da92 --- /dev/null +++ b/deps/datReaderPs3/stream.cpp @@ -0,0 +1,10 @@ +#include "stream.h" + +#include +#include +#include + +namespace xivps3::utils::stream +{ + +} diff --git a/deps/datReaderPs3/stream.h b/deps/datReaderPs3/stream.h new file mode 100644 index 00000000..7ddfe72f --- /dev/null +++ b/deps/datReaderPs3/stream.h @@ -0,0 +1,21 @@ +#ifndef XIV_UTILS_STREAM_H +#define XIV_UTILS_STREAM_H + +#include +#include +#include + +namespace xivps3::utils::stream +{ + template< typename CharT, typename TraitsT = std::char_traits< CharT > > + class vectorwrapbuf : + public std::basic_streambuf< CharT, TraitsT > + { + public: + vectorwrapbuf( std::vector< CharT >& vec ) + { + this->setg( vec.data(), vec.data(), vec.data() + vec.size() ); + } + }; +} +#endif // XIV_UTILS_STREAM_H diff --git a/deps/datReaderPs3/zlib.cpp b/deps/datReaderPs3/zlib.cpp new file mode 100644 index 00000000..2ec19d62 --- /dev/null +++ b/deps/datReaderPs3/zlib.cpp @@ -0,0 +1,59 @@ +#include "zlib.h" +#include +#include +#include +#include + +namespace xivps3::utils::zlib +{ + + void compress( const std::vector< char >& in, std::vector< char >& out ) + { + // Fetching upper bound for out size + auto out_size = compressBound( in.size() ); + out.resize( out_size ); + + auto ret = compress2( reinterpret_cast(out.data()), &out_size, + reinterpret_cast(in.data()), in.size(), Z_BEST_COMPRESSION ); + + if( ret != Z_OK ) + { + throw std::runtime_error( "Error at zlib uncompress: " + std::to_string( ret ) ); + } + + out.resize( out_size ); + } + + void no_header_decompress( uint8_t* in, size_t in_size, uint8_t* out, size_t out_size ) + { + z_stream strm; + strm.zalloc = Z_NULL; + strm.zfree = Z_NULL; + strm.opaque = Z_NULL; + strm.avail_in = in_size; + strm.next_in = Z_NULL; + + // Init with -15 because we do not have header in this compressed data + auto ret = inflateInit2( &strm, -15 ); + if( ret != Z_OK ) + { + throw std::runtime_error( "Error at zlib init: " + std::to_string( ret ) ); + } + + // Set pointers to the right addresses + strm.next_in = in; + strm.avail_out = out_size; + strm.next_out = out; + + // Effectively decompress data + ret = inflate( &strm, Z_NO_FLUSH ); + if( ret != Z_STREAM_END ) + { + throw std::runtime_error( "Error at zlib inflate: " + std::to_string( ret ) ); + } + + // Clean up + inflateEnd( &strm ); + } + +} diff --git a/deps/datReaderPs3/zlib.h b/deps/datReaderPs3/zlib.h new file mode 100644 index 00000000..cacfc077 --- /dev/null +++ b/deps/datReaderPs3/zlib.h @@ -0,0 +1,16 @@ +#ifndef XIV_UTILS_ZLIB_H +#define XIV_UTILS_ZLIB_H + +#include +#include + +namespace xivps3::utils::zlib +{ + + void compress( const std::vector< char >& in, std::vector< char >& out ); + + void no_header_decompress( uint8_t* in, size_t in_size, uint8_t* out, size_t out_size ); + +} + +#endif // XIV_UTILS_ZLIB_H diff --git a/deps/ffxiv-actions b/deps/ffxiv-actions deleted file mode 160000 index dde9b5bb..00000000 --- a/deps/ffxiv-actions +++ /dev/null @@ -1 +0,0 @@ -Subproject commit dde9b5bbfc7c0197de0b0b49b982a0ee9fe761ab diff --git a/deps/mysqlConnector/Connection.cpp b/deps/mysqlConnector/Connection.cpp index df6a28f0..1da0042c 100644 --- a/deps/mysqlConnector/Connection.cpp +++ b/deps/mysqlConnector/Connection.cpp @@ -3,11 +3,9 @@ #include "Statement.h" #include "PreparedStatement.h" #include +#include -#ifdef _MSC_VER - // fixes compile error when compiling with vs2019 - #include -#endif +#include #include Mysql::Connection::Connection( std::shared_ptr< MySqlBase > pBase, @@ -15,7 +13,7 @@ Mysql::Connection::Connection( std::shared_ptr< MySqlBase > pBase, const std::string& userName, const std::string& password, uint16_t port ) : - m_pBase( pBase ), + m_pBase( std::move( pBase ) ), m_bConnected( false ) { m_pRawCon = mysql_init( nullptr ); @@ -32,12 +30,12 @@ Mysql::Connection::Connection( std::shared_ptr< MySqlBase > pBase, const std::string& password, const optionMap& options, uint16_t port ) : - m_pBase( pBase ) + m_pBase( std::move( pBase ) ) { m_pRawCon = mysql_init( nullptr ); // Different mysql versions support different options, for now whatever was unsupporter here was commented out // but left there. - for( auto entry : options ) + for( const auto& entry : options ) { switch( entry.first ) { @@ -113,9 +111,7 @@ Mysql::Connection::Connection( std::shared_ptr< MySqlBase > pBase, } -Mysql::Connection::~Connection() -{ -} +Mysql::Connection::~Connection() = default; void Mysql::Connection::setOption( enum mysqlOption option, const void *arg ) { @@ -159,7 +155,7 @@ std::shared_ptr< Mysql::MySqlBase > Mysql::Connection::getMySqlBase() const void Mysql::Connection::setAutoCommit( bool autoCommit ) { - auto b = static_cast< my_bool >( autoCommit == true ? 1 : 0 ); + auto b = static_cast< my_bool >( autoCommit ? 1 : 0 ); if( mysql_autocommit( m_pRawCon, b ) != 0 ) throw std::runtime_error( "Connection::setAutoCommit failed!" ); } @@ -168,10 +164,10 @@ bool Mysql::Connection::getAutoCommit() { // TODO: should be replaced with wrapped sql query function once available std::string query("SELECT @@autocommit"); - auto res = mysql_real_query( m_pRawCon, query.c_str(), query.length() ); + auto res = mysql_real_query( m_pRawCon, query.c_str(), static_cast< unsigned long >( query.length() ) ); if( res != 0 ) - throw std::runtime_error( "Query failed!" ); + throw std::runtime_error( "Query failed!" ); auto pRes = mysql_store_result( m_pRawCon ); auto row = mysql_fetch_row( pRes ); @@ -202,7 +198,7 @@ void Mysql::Connection::rollbackTransaction() std::string Mysql::Connection::escapeString( const std::string &inData ) { std::unique_ptr< char[] > buffer( new char[inData.length() * 2 + 1] ); - if( !buffer.get() ) + if( !buffer ) return ""; unsigned long return_len = mysql_real_escape_string( m_pRawCon, buffer.get(), inData.c_str(), static_cast< unsigned long > ( inData.length() ) ); @@ -240,7 +236,7 @@ std::shared_ptr< Mysql::PreparedStatement > Mysql::Connection::prepareStatement( if( !stmt ) throw std::runtime_error( "Could not init prepared statement: " + getError() ); - if( mysql_stmt_prepare( stmt, sql.c_str(), sql.size() ) ) + if( mysql_stmt_prepare( stmt, sql.c_str(), static_cast< unsigned long >( sql.size() ) ) ) throw std::runtime_error( "Could not prepare statement: " + getError() ); return std::make_shared< PreparedStatement >( stmt, shared_from_this() ); diff --git a/deps/mysqlConnector/Connection.h b/deps/mysqlConnector/Connection.h index 43cc6e07..d3c0d6a2 100644 --- a/deps/mysqlConnector/Connection.h +++ b/deps/mysqlConnector/Connection.h @@ -1,10 +1,9 @@ #ifndef SAPPHIRE_CONNECTION_H #define SAPPHIRE_CONNECTION_H +#include #include #include -#include - #include "MysqlCommon.h" typedef struct st_mysql MYSQL; @@ -19,18 +18,11 @@ namespace Mysql class Connection : public std::enable_shared_from_this< Connection > { public: - Connection( std::shared_ptr< MySqlBase > pBase, - const std::string& hostName, - const std::string& userName, - const std::string& password, - uint16_t port = 3306); + Connection( std::shared_ptr< MySqlBase > pBase, const std::string& hostName, const std::string& userName, + const std::string& password, uint16_t port = 3306 ); - Connection( std::shared_ptr< MySqlBase > pBase, - const std::string& hostName, - const std::string& userName, - const std::string& password, - const optionMap& options, - uint16_t port = 3306 ); + Connection( std::shared_ptr< MySqlBase > pBase, const std::string& hostName, const std::string& userName, + const std::string& password, const optionMap& options, uint16_t port = 3306 ); virtual ~Connection(); @@ -79,7 +71,7 @@ namespace Mysql private: std::shared_ptr< MySqlBase > m_pBase; MYSQL* m_pRawCon; - bool m_bConnected; + bool m_bConnected{}; Connection( const Connection& ); void operator=( Connection& ); diff --git a/deps/mysqlConnector/PreparedStatement.cpp b/deps/mysqlConnector/PreparedStatement.cpp index 5354fc02..ad65ec96 100644 --- a/deps/mysqlConnector/PreparedStatement.cpp +++ b/deps/mysqlConnector/PreparedStatement.cpp @@ -78,7 +78,7 @@ struct LongDataSender while( sent < str->length() ) { chunkSize = ( sent + MAX_SEND_LONGDATA_CHUNK > str->length() - ? str->length() - sent + ? static_cast< uint32_t >( str->length() ) - sent : MAX_SEND_LONGDATA_CHUNK ); if( mysql_stmt_send_long_data( m_pStmt, position, str->c_str() + sent, chunkSize ) ) diff --git a/deps/mysqlConnector/Statement.cpp b/deps/mysqlConnector/Statement.cpp index 14d81020..5c5b9c4f 100644 --- a/deps/mysqlConnector/Statement.cpp +++ b/deps/mysqlConnector/Statement.cpp @@ -17,7 +17,7 @@ Mysql::Statement::Statement( std::shared_ptr< Mysql::Connection > conn ) : void Mysql::Statement::doQuery( const std::string &q ) { - mysql_real_query( m_pConnection->getRawCon(), q.c_str(), q.length() ); + mysql_real_query( m_pConnection->getRawCon(), q.c_str(), static_cast< unsigned long >( q.length() ) ); if( errNo() ) throw std::runtime_error( m_pConnection->getError() ); diff --git a/deps/mysqlConnector/mysql_util.h b/deps/mysqlConnector/mysql_util.h index 624475ec..e43a373b 100644 --- a/deps/mysqlConnector/mysql_util.h +++ b/deps/mysqlConnector/mysql_util.h @@ -27,8 +27,9 @@ with this program; if not, write to the Free Software Foundation, Inc., #include #include +#include -typedef struct st_mysql_field MYSQL_FIELD; +//using MYSQL_FIELD = st_mysql_field; #ifndef UL64 #ifdef _WIN32 #define UL64(x) x##ui64 diff --git a/deps/watchdog/Watchdog.h b/deps/watchdog/Watchdog.h index e64a21f0..08cc0678 100644 --- a/deps/watchdog/Watchdog.h +++ b/deps/watchdog/Watchdog.h @@ -31,8 +31,15 @@ #include #include + + // fucking filesystem +#if _MSC_VER >= 1925 #include namespace ci { namespace fs = std::filesystem; } +#else +#include +namespace ci { namespace fs = std::experimental::filesystem; } +#endif //! Exception for when Watchdog can't locate a file or parse the wildcard class WatchedFileSystemExc : public std::exception { @@ -319,7 +326,7 @@ protected: std::string mFilter; std::function mCallback; std::function&)> mListCallback; - std::map< std::string, std::filesystem::file_time_type > mModificationTimes; + std::map< std::string, ci::fs::file_time_type > mModificationTimes; }; std::mutex mMutex; diff --git a/sql/migrations/20200428074112_AddBattleNpcTable.sql b/sql/migrations/20200428074112_AddBattleNpcTable.sql new file mode 100644 index 00000000..f1092d50 --- /dev/null +++ b/sql/migrations/20200428074112_AddBattleNpcTable.sql @@ -0,0 +1,50 @@ +-- Migration generated at 2020/04/28 07:41:12 +-- 20200428074112_AddBattleNpcTable.sql + +CREATE TABLE IF NOT EXISTS `battlenpc` ( + `TerritoryType` int(11) NOT NULL, + `TerritoryName` varchar(22) NOT NULL, + `name` varchar(12) NOT NULL, + `instanceId` int(11) NOT NULL, + `x` decimal(12,6) NOT NULL, + `y` decimal(11,6) NOT NULL, + `z` decimal(11,6) NOT NULL, + `BaseId` int(11) NOT NULL, + `PopWeather` int(11) NOT NULL, + `PopTimeStart` int(11) NOT NULL, + `PopTimeEnd` int(11) NOT NULL, + `MoveAI` int(11) NOT NULL, + `WanderingRange` int(11) NOT NULL, + `Route` int(11) NOT NULL, + `EventGroup` int(11) NOT NULL, + `NameId` int(11) NOT NULL, + `DropItem` int(11) NOT NULL, + `SenseRangeRate` decimal(9,6) NOT NULL, + `Level` int(11) NOT NULL, + `ActiveType` int(11) NOT NULL, + `PopInterval` int(11) NOT NULL, + `PopRate` int(11) NOT NULL, + `PopEvent` int(11) NOT NULL, + `LinkGroup` int(11) NOT NULL, + `LinkFamily` int(11) NOT NULL, + `LinkRange` int(11) NOT NULL, + `LinkCountLimit` int(11) NOT NULL, + `NonpopInitZone` int(11) NOT NULL, + `InvalidRepop` int(11) NOT NULL, + `LinkParent` int(11) NOT NULL, + `LinkOverride` int(11) NOT NULL, + `LinkReply` int(11) NOT NULL, + `HorizontalPopRange` decimal(9,6) NOT NULL, + `VerticalPopRange` decimal(9,6) NOT NULL, + `BNpcBaseData` int(11) NOT NULL, + `RepopId` int(11) NOT NULL, + `BNPCRankId` int(11) NOT NULL, + `TerritoryRange` int(11) NOT NULL, + `BoundInstanceID` int(11) NOT NULL, + `FateLayoutLabelId` int(11) NOT NULL, + `NormalAI` int(11) NOT NULL, + `ServerPathId` int(11) NOT NULL, + `EquipmentID` int(11) NOT NULL, + `CustomizeID` int(11) NOT NULL, + PRIMARY KEY (`TerritoryType`,`instanceId`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; \ No newline at end of file diff --git a/sql/migrations/20200428074115_AddBattleNpcTableData.sql b/sql/migrations/20200428074115_AddBattleNpcTableData.sql new file mode 100644 index 00000000..91833c14 --- /dev/null +++ b/sql/migrations/20200428074115_AddBattleNpcTableData.sql @@ -0,0 +1,55292 @@ +-- Migration generated at 2020/04/28 07:41:15 +-- 20200428074115_AddBattleNpcTableData.sql + +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(6, 'w1f2_client_benchmark', 'bnpc1368411', 1368411, '-66.155998', '-12.582840', '-8.814363', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc1368412', 1368412, '-64.537338', '-12.499180', '-8.712757', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc1368413', 1368413, '-62.951370', '-12.426580', '-8.677147', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc1368414', 1368414, '-61.258369', '-12.364150', '-8.589471', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc1368416', 1368416, '-66.693230', '-12.961350', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212726, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc1368417', 1368417, '-64.495934', '-12.860610', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc1368418', 1368418, '-62.481739', '-12.772990', '-13.472360', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc1368419', 1368419, '-60.162369', '-12.662670', '-13.441840', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc1368420', 1368420, '-69.467598', '-13.149620', '-18.035919', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211644, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc1368440', 1368440, '-65.325943', '-13.142030', '-18.046921', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211372, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc1368441', 1368441, '-61.416431', '-13.052980', '-18.065041', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211100, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc1368442', 1368442, '-57.492748', '-12.665620', '-17.741350', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210828, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746473', 3746473, '-134.012207', '9.916103', '267.132690', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208458, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746474', 3746474, '-139.248093', '11.343600', '270.767487', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208186, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746475', 3746475, '-116.714996', '8.743372', '266.243988', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207914, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746477', 3746477, '-123.143700', '11.980280', '281.311798', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207642, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746478', 3746478, '-128.526794', '6.043580', '250.778503', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207370, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746481', 3746481, '-87.065170', '8.131585', '270.853210', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207098, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746484', 3746484, '-77.385406', '9.277164', '278.146301', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206826, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746485', 3746485, '-79.850502', '9.815605', '280.807892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206554, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746486', 3746486, '-57.801540', '7.714478', '280.245697', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206282, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746487', 3746487, '-32.103970', '8.045358', '306.695404', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206010, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746488', 3746488, '-33.263660', '8.805240', '310.174408', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205738, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746489', 3746489, '-23.206301', '7.924604', '316.282593', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205466, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746490', 3746490, '-1.823452', '12.616180', '355.344391', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205194, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746491', 3746491, '1.058939', '11.460450', '352.323212', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204922, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746492', 3746492, '-1.840275', '11.813140', '350.644714', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204650, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746493', 3746493, '-56.592079', '0.108709', '220.398895', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204378, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746494', 3746494, '-56.292080', '3.881968', '249.628098', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204106, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746495', 3746495, '-31.334530', '2.359202', '278.398193', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203834, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746496', 3746496, '-104.320801', '1.025299', '207.824005', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203562, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746498', 3746498, '7.768722', '1.031246', '256.953094', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203290, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746499', 3746499, '-123.605797', '2.842937', '210.266296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203018, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746500', 3746500, '30.048519', '10.050760', '356.964386', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202746, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746501', 3746501, '-97.688263', '-3.294564', '184.145203', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202474, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746503', 3746503, '-99.971313', '-3.426347', '180.765198', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202202, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746505', 3746505, '-87.144318', '-1.876907', '198.901306', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201930, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746506', 3746506, '-47.697250', '-4.439452', '201.516296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201658, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746507', 3746507, '-14.522570', '0.676844', '242.620300', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201386, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746508', 3746508, '-11.261070', '0.694751', '245.484695', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201114, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746514', 3746514, '-119.246803', '8.981372', '268.429688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155702, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746519', 3746519, '-132.127899', '6.316744', '252.007797', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155974, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746522', 3746522, '-155.544296', '14.321210', '274.575500', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156246, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746523', 3746523, '-155.193604', '7.549813', '251.117706', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155430, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746524', 3746524, '-92.355728', '5.076609', '248.889801', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154614, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746525', 3746525, '-107.799896', '1.451139', '209.227798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154886, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746526', 3746526, '-114.793701', '4.013075', '226.245499', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155158, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746527', 3746527, '28.597651', '13.168800', '391.636688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157606, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746528', 3746528, '-93.669998', '-2.292831', '193.599503', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157878, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746529', 3746529, '-86.737587', '1.982069', '218.821899', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158150, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746530', 3746530, '-94.103600', '-4.710398', '174.915298', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157334, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746532', 3746532, '-55.083771', '1.032392', '224.458603', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156518, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746533', 3746533, '-52.324100', '-0.635104', '220.185806', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156790, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746534', 3746534, '-52.024101', '-4.438385', '196.025299', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157062, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746535', 3746535, '-23.599480', '-4.862183', '218.164505', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162774, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746536', 3746536, '-2.930916', '14.263170', '364.690308', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165222, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746538', 3746538, '-40.705959', '2.362750', '241.470093', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165494, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746539', 3746539, '-66.280632', '6.869143', '269.246704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165766, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746541', 3746541, '4.373672', '4.711559', '297.562012', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164950, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746542', 3746542, '-63.836632', '11.354730', '293.474915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164134, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746543', 3746543, '-67.036057', '11.719290', '294.869385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164406, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746544', 3746544, '-40.587990', '10.584770', '307.244690', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164678, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746545', 3746545, '-18.006081', '5.176353', '307.655609', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159510, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746547', 3746547, '13.581710', '5.033936', '280.057404', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746557', 3746557, '59.891609', '12.558130', '450.125793', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746560', 3746560, '49.054600', '13.360080', '439.790100', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746579', 3746579, '-107.428101', '5.098667', '239.118896', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746589', 3746589, '15.346860', '15.164520', '392.385712', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200842, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746592', 3746592, '14.522880', '15.407670', '396.017303', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200570, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746594', 3746594, '34.258789', '14.106760', '421.936798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159782, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746595', 3746595, '60.659401', '11.900060', '438.181702', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160054, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746616', 3746616, '55.188671', '13.295150', '508.984802', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159238, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746617', 3746617, '66.524231', '10.880620', '515.488220', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200298, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746618', 3746618, '49.532551', '14.712430', '506.886414', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200026, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746619', 3746619, '50.356541', '14.371650', '503.254791', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199754, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746620', 3746620, '59.248550', '11.443580', '491.395813', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199482, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746621', 3746621, '87.897888', '3.259133', '489.249908', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158422, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746622', 3746622, '84.418831', '4.091218', '486.350708', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158694, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746623', 3746623, '46.372120', '15.609930', '520.347778', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158966, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746624', 3746624, '84.031380', '8.407674', '556.939026', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199210, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746625', 3746625, '89.244087', '6.908536', '552.574890', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198938, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746626', 3746626, '105.598701', '4.370574', '521.843201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198666, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746628', 3746628, '107.891403', '6.906938', '609.728882', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161414, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746629', 3746629, '160.979904', '10.423200', '445.205414', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746630', 3746630, '189.060593', '11.863390', '607.536072', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746688', 3746688, '86.533859', '11.154300', '622.308594', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198394, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746689', 3746689, '77.714149', '12.588650', '626.672729', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198122, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746690', 3746690, '81.986671', '11.825690', '632.593201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197850, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746691', 3746691, '42.256569', '15.522670', '621.038330', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197578, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746692', 3746692, '36.528320', '15.730630', '626.060913', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197306, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746693', 3746693, '33.963001', '15.853820', '622.955627', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197034, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746694', 3746694, '54.517780', '14.477480', '614.387390', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160870, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746695', 3746695, '75.144310', '14.202080', '664.210083', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160598, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746697', 3746697, '71.776787', '14.357050', '666.349792', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196762, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746699', 3746699, '110.074799', '9.705235', '672.023499', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196490, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746700', 3746700, '105.802299', '9.833974', '666.103027', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196218, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746701', 3746701, '114.622002', '9.802178', '661.738892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195946, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746702', 3746702, '102.630096', '9.930755', '678.326416', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160326, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746703', 3746703, '124.601700', '9.267537', '672.118774', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161142, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746704', 3746704, '139.915802', '3.409252', '629.204895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161958, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746706', 3746706, '148.317993', '4.103824', '654.705994', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195674, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746707', 3746707, '140.430801', '4.620288', '650.824585', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195402, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746708', 3746708, '144.703293', '4.162472', '656.745178', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195130, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746728', 3746728, '105.175301', '7.446661', '611.285278', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161686, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746741', 3746741, '123.709900', '4.546344', '401.381409', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746744', 3746744, '119.896500', '4.229595', '400.430603', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746745', 3746745, '121.385498', '4.562400', '415.457306', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746747', 3746747, '94.951797', '4.409234', '415.757996', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746748', 3746748, '98.573242', '3.713897', '402.903290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746753', 3746753, '105.931702', '3.887046', '438.676788', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746754', 3746754, '103.130402', '3.837232', '441.897888', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746756', 3746756, '101.549301', '2.579426', '385.163391', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746757', 3746757, '126.748802', '2.272390', '326.781708', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746762', 3746762, '128.648804', '2.609246', '322.621399', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746767', 3746767, '115.312401', '0.839199', '310.200592', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746769', 3746769, '60.052872', '2.658700', '301.575806', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746771', 3746771, '66.487648', '2.270967', '295.222290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746772', 3746772, '59.572800', '2.550388', '279.994904', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746773', 3746773, '39.864429', '5.507329', '295.432587', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746775', 3746775, '28.239599', '1.102737', '258.417786', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746782', 3746782, '33.012630', '-0.000074', '236.507797', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746783', 3746783, '30.472219', '1.540232', '261.602997', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746790', 3746790, '40.329552', '0.198320', '191.668503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746791', 3746791, '42.740471', '0.381429', '188.281006', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189696, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746792', 3746792, '21.316620', '-1.942127', '212.041397', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189424, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746795', 3746795, '33.488029', '0.135540', '209.757507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189152, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746800', 3746800, '79.875580', '17.322849', '153.453400', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188880, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746801', 3746801, '86.274673', '14.097900', '174.830002', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188608, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746802', 3746802, '82.595718', '17.371531', '156.113602', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188336, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746803', 3746803, '68.047150', '12.851960', '169.148697', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188064, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746805', 3746805, '145.186905', '14.265870', '303.993011', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187792, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746806', 3746806, '134.595795', '15.951970', '271.548492', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187520, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746807', 3746807, '129.378799', '14.996020', '276.045807', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187248, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746808', 3746808, '102.709000', '6.216220', '218.986298', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186976, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746815', 3746815, '104.478500', '3.524787', '410.177704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162502, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746820', 3746820, '134.782898', '6.790217', '393.331787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162230, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746821', 3746821, '109.756599', '2.337350', '358.451385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163046, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746826', 3746826, '100.612602', '0.927920', '320.347412', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163862, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746828', 3746828, '122.748901', '1.776996', '318.298187', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163590, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746831', 3746831, '90.791931', '1.666962', '266.808197', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163318, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746834', 3746834, '115.643402', '6.086327', '252.986206', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153254, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746835', 3746835, '116.878197', '7.099676', '249.317596', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152982, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746839', 3746839, '134.754898', '15.738220', '277.605591', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152710, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746842', 3746842, '138.416901', '14.910950', '291.298401', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153526, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746843', 3746843, '69.640907', '10.773730', '192.122192', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154342, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746844', 3746844, '80.370789', '14.464900', '168.592697', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154070, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746845', 3746845, '58.563480', '13.422550', '142.645203', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153798, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746846', 3746846, '84.523247', '19.105749', '150.735306', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151350, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746847', 3746847, '44.427238', '1.305627', '214.361099', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151078, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746848', 3746848, '17.726910', '-2.276831', '214.661102', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150806, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746850', 3746850, '23.742001', '2.113425', '263.454895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151622, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746857', 3746857, '39.223301', '5.294607', '322.688812', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152438, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746859', 3746859, '72.028061', '7.308271', '404.591492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152166, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746861', 3746861, '127.672203', '6.607109', '430.716309', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151894, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746864', 3746864, '165.074600', '12.246150', '482.778503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186704, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746867', 3746867, '168.492706', '12.057270', '478.475494', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186432, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746868', 3746868, '162.989304', '12.037260', '478.563507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186160, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746870', 3746870, '159.288895', '10.574450', '408.590790', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185888, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746871', 3746871, '163.653000', '10.757560', '411.825714', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185616, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746872', 3746872, '180.336197', '12.793920', '406.002014', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185344, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746873', 3746873, '161.736893', '16.236589', '388.045105', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185072, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746876', 3746876, '133.837296', '9.269427', '459.531403', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184800, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746878', 3746878, '131.557098', '8.976067', '457.624695', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184528, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746880', 3746880, '120.227203', '8.368025', '485.318115', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184256, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746885', 3746885, '134.445908', '12.144460', '507.273987', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183984, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746887', 3746887, '131.554993', '12.056210', '504.412415', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183712, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746889', 3746889, '140.997406', '11.949580', '487.139313', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183440, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746891', 3746891, '177.389404', '11.185200', '525.833618', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183168, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746894', 3746894, '180.637207', '11.258170', '523.414673', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182896, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746896', 3746896, '163.836105', '12.375020', '511.253387', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182624, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746898', 3746898, '147.262100', '7.242397', '543.931824', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182352, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746902', 3746902, '159.838196', '8.834927', '539.787781', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182080, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746905', 3746905, '155.880402', '7.197376', '556.779175', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181808, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746908', 3746908, '158.138794', '8.079927', '559.495300', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181536, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746910', 3746910, '143.386200', '7.563845', '583.138916', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181264, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746911', 3746911, '141.779205', '7.213043', '585.132019', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180992, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746913', 3746913, '138.754898', '6.737441', '570.297424', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180720, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746914', 3746914, '149.117798', '6.128607', '602.883972', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180448, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746915', 3746915, '169.704697', '11.348940', '603.184021', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180176, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746916', 3746916, '180.008804', '11.209140', '617.096130', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179904, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746917', 3746917, '182.074905', '11.129530', '618.747620', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179632, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746918', 3746918, '203.008896', '12.064710', '597.300476', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179360, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746919', 3746919, '222.377304', '10.658940', '600.289978', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179088, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746920', 3746920, '219.857101', '10.195060', '606.104126', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178816, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746921', 3746921, '216.053207', '12.886560', '579.694885', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178544, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746922', 3746922, '254.440308', '11.644550', '583.224670', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178272, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746923', 3746923, '187.395996', '12.680200', '480.674408', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178000, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746925', 3746925, '122.484100', '8.621300', '468.558685', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174198, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746927', 3746927, '152.697006', '11.123780', '465.049103', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173382, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746928', 3746928, '200.189301', '12.546850', '452.841888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173654, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746929', 3746929, '184.320801', '12.674630', '482.649414', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174470, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746930', 3746930, '161.638794', '12.497090', '508.781494', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175286, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746932', 3746932, '134.477707', '12.039320', '494.041290', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175558, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746933', 3746933, '157.244202', '8.895963', '538.017822', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174742, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746934', 3746934, '145.677795', '11.978280', '517.051880', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175014, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746937', 3746937, '112.465202', '5.551401', '523.979492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168486, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746941', 3746941, '164.965195', '10.635490', '582.482483', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168214, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746945', 3746945, '140.062500', '7.095398', '581.505981', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167942, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746946', 3746946, '126.004097', '4.418174', '596.074219', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169302, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746951', 3746951, '205.096497', '11.978280', '595.452820', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169030, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746954', 3746954, '201.556396', '10.391350', '620.202881', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168758, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746956', 3746956, '223.407303', '9.658914', '609.063782', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167670, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746958', 3746958, '230.853699', '7.095398', '629.480286', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166582, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746959', 3746959, '228.412201', '6.607109', '632.684814', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166310, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(6, 'w1f2_client_benchmark', 'bnpc3746960', 3746960, '250.843002', '10.543940', '603.967285', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166038, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746962', 3746962, '251.148193', '11.947770', '580.346313', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167398, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746963', 3746963, '236.801498', '16.670509', '560.962524', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167126, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746965', 3746965, '239.996399', '16.684830', '564.761475', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166854, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746966', 3746966, '219.876907', '16.677370', '559.278870', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169574, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746967', 3746967, '255.603806', '16.647539', '552.574890', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172294, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746968', 3746968, '261.768494', '13.412630', '571.068787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172022, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746969', 3746969, '261.341187', '16.678061', '523.765930', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171750, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746970', 3746970, '263.263885', '16.647539', '520.866577', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173110, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746971', 3746971, '247.730194', '16.647539', '499.259888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172838, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746972', 3746972, '210.126297', '16.670370', '499.584686', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172566, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746973', 3746973, '206.265198', '16.709129', '502.872498', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171478, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746974', 3746974, '201.359299', '16.670370', '525.525696', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170390, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746975', 3746975, '199.202896', '16.634470', '546.190796', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170118, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746976', 3746976, '201.042099', '16.670389', '547.166199', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169846, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746983', 3746983, '47.837040', '20.883829', '-297.468597', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79320, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746984', 3746984, '30.218941', '19.809231', '-261.464111', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80402, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746985', 3746985, '45.726398', '19.952000', '-251.705505', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79048, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746988', 3746988, '37.782612', '19.928471', '-277.190186', 736, 0, 0, 0, 1, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80130, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746992', 3746992, '32.101620', '19.979660', '-229.510406', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79858, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746993', 3746993, '32.891548', '19.908630', '-233.898605', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78776, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3746997', 3746997, '-40.889229', '-6.750034', '159.270004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88278, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747003', 3747003, '-38.858761', '-6.750058', '155.119003', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88550, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747004', 3747004, '-21.989389', '-6.750032', '151.563995', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87190, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747006', 3747006, '-1.016211', '-6.750022', '160.127197', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89638, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747009', 3747009, '3.375875', '-6.751163', '164.669601', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89910, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747010', 3747010, '5.926142', '-6.750027', '161.728195', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89366, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747012', 3747012, '22.984619', '-6.750012', '165.561600', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89094, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747015', 3747015, '30.818211', '-6.750096', '148.130096', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88822, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747018', 3747018, '-6.179034', '-6.750058', '138.765106', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90182, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747019', 3747019, '-2.610643', '-6.750058', '141.990707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87734, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747021', 3747021, '-15.651240', '-6.750003', '122.209503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87462, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747022', 3747022, '-52.276199', '-6.750027', '169.793900', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88006, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747028', 3747028, '-73.794739', '-6.750006', '155.086899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91814, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747033', 3747033, '-84.128677', '-6.750047', '148.117004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90454, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747034', 3747034, '-88.289063', '-6.750033', '145.505707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90998, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747037', 3747037, '-81.662231', '-6.750007', '162.451996', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91542, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747042', 3747042, '-100.621399', '-6.750030', '133.779007', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91270, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747078', 3747078, '174.099396', '10.387860', '561.876526', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177728, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747306', 3747306, '166.825607', '12.296140', '403.792114', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171206, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747310', 3747310, '155.935303', '9.673933', '431.016296', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170934, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747330', 3747330, '-88.883842', '-0.106860', '109.147697', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747331', 3747331, '-61.120312', '0.636424', '88.682060', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747332', 3747332, '-80.643967', '-0.473077', '67.368530', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747333', 3747333, '-86.717056', '0.991789', '72.831261', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747336', 3747336, '-36.911621', '-3.830061', '32.700039', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747337', 3747337, '-40.695862', '-4.928711', '25.589331', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747338', 3747338, '-11.550680', '0.488563', '-28.281300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747339', 3747339, '17.013760', '3.036498', '-38.223900', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747340', 3747340, '-58.237549', '-4.110259', '-107.568703', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110020, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747341', 3747341, '-67.615173', '-4.777174', '-101.631897', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109476, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747342', 3747342, '-91.142181', '-0.778257', '-101.335197', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109748, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747344', 3747344, '-126.726303', '9.466410', '-79.290817', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110564, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747345', 3747345, '-162.798492', '10.177720', '-67.887444', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114644, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747347', 3747347, '-162.133194', '17.720350', '-97.090424', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114916, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747349', 3747349, '-170.820297', '17.510420', '-95.798119', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114372, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747353', 3747353, '-144.544800', '8.164017', '-26.941380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113828, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747356', 3747356, '-176.280701', '8.164456', '-26.641380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114100, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747358', 3747358, '-181.261993', '6.912290', '-21.225349', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116004, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747359', 3747359, '-207.415894', '10.971190', '-31.418369', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116276, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747362', 3747362, '-142.900803', '6.271411', '-160.784302', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115732, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747363', 3747363, '-153.948898', '13.420070', '-190.044296', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115188, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747364', 3747364, '-199.122604', '1.060047', '7.769498', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112468, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747365', 3747365, '-100.182404', '-4.169586', '5.823180', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112196, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747366', 3747366, '-162.648407', '1.476818', '27.867500', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112740, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747368', 3747368, '-228.292801', '1.271454', '31.448839', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113284, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747369', 3747369, '-281.000000', '1.547629', '6.098617', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113012, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747370', 3747370, '-292.305786', '1.883296', '3.669711', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110292, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747371', 3747371, '-289.186615', '0.923461', '44.489441', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111108, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747372', 3747372, '-331.967499', '-0.344346', '37.288601', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110836, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747373', 3747373, '-367.222809', '14.331700', '37.588600', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111380, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747374', 3747374, '-362.704590', '17.228571', '24.585470', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111924, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747376', 3747376, '-337.512299', '2.239006', '84.820068', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111652, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747380', 3747380, '-350.515015', '5.752604', '108.384804', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113556, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747385', 3747385, '-374.964294', '1.092578', '72.868820', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115460, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747388', 3747388, '-52.163811', '-2.028311', '119.953003', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147810, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747389', 3747389, '-86.052368', '0.110645', '102.987396', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147538, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747390', 3747390, '-74.317467', '-4.983451', '25.989620', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147266, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747391', 3747391, '-33.861969', '-6.175569', '6.276085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146994, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747393', 3747393, '13.815840', '0.849448', '-43.540058', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146722, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747394', 3747394, '-25.443001', '-6.505634', '-66.767128', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146450, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747395', 3747395, '-66.218620', '-2.263651', '-110.189796', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146178, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747396', 3747396, '-92.423927', '2.517692', '-129.686493', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747397', 3747397, '-120.059502', '11.096300', '-65.332710', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747398', 3747398, '-123.346199', '11.132750', '-62.877190', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747399', 3747399, '-135.404602', '3.017960', '-134.773499', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145090, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747400', 3747400, '-155.932007', '14.084030', '-185.687103', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747401', 3747401, '-176.806305', '20.096081', '-127.183998', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144546, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747402', 3747402, '-182.692200', '11.068910', '-54.575550', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144274, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747403', 3747403, '-188.219101', '8.602026', '-26.668791', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144002, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747404', 3747404, '-125.142403', '-1.327417', '12.701530', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143730, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747405', 3747405, '-142.871094', '-0.211552', '-0.011758', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143458, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747406', 3747406, '-188.977707', '1.185343', '0.288242', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143186, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747407', 3747407, '-196.063202', '-0.991883', '44.632591', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747408', 3747408, '-198.598099', '-1.427130', '46.344830', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142642, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747409', 3747409, '-265.374908', '-0.871808', '46.644829', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747410', 3747410, '-245.222107', '0.679796', '27.065580', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747411', 3747411, '-236.532196', '4.119698', '-11.326280', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747413', 3747413, '-237.229904', '7.081615', '-22.989599', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141554, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747414', 3747414, '-238.542206', '7.219037', '-24.718719', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747415', 3747415, '-245.215302', '6.500818', '-25.125641', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747417', 3747417, '-335.459198', '7.751451', '2.210185', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747419', 3747419, '-332.434692', '-0.635067', '45.192638', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747420', 3747420, '-338.391815', '2.787159', '90.300163', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140194, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747635', 3747635, '-101.580002', '3.185857', '-122.629700', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747636', 3747636, '-113.067703', '0.190863', '-235.496902', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747637', 3747637, '-8.689189', '-2.987621', '-71.427528', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747853', 3747853, '-210.928299', '22.971910', '-101.417801', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82028, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747854', 3747854, '-210.061996', '22.349720', '-98.801086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82844, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747855', 3747855, '-199.564606', '24.777719', '-122.897400', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82572, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747856', 3747856, '-217.284500', '27.674749', '-122.597397', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81756, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747858', 3747858, '-217.212097', '28.120930', '-124.432098', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81212, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747859', 3747859, '-208.813400', '29.458891', '-133.137894', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80940, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747860', 3747860, '-223.520599', '24.171949', '-95.828552', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81484, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747864', 3747864, '-228.529297', '20.575800', '-76.218086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85564, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747865', 3747865, '-241.385498', '18.354990', '-63.139381', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85292, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747867', 3747867, '-243.216904', '18.379009', '-62.623611', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86380, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747868', 3747868, '-255.936401', '24.723961', '-77.803009', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86108, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747869', 3747869, '-267.446411', '25.988930', '-78.509064', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85836, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747870', 3747870, '-266.262207', '26.413910', '-80.013046', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86924, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747873', 3747873, '-288.302704', '28.840969', '-91.487991', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86652, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747874', 3747874, '-273.846008', '27.999920', '-103.128998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83660, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747876', 3747876, '-257.572906', '27.938169', '-88.810738', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83932, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747877', 3747877, '-234.919403', '27.970850', '-103.431198', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84476, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747880', 3747880, '-245.382996', '27.999990', '-107.453003', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83116, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747881', 3747881, '-254.081406', '28.000000', '-102.002197', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84204, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747883', 3747883, '-258.959106', '28.000000', '-105.536201', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82300, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747884', 3747884, '-251.270294', '27.969730', '-102.616898', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85020, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747886', 3747886, '-248.655701', '28.000000', '-96.725998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84748, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747889', 3747889, '-248.153000', '28.470831', '-127.263100', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83388, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747891', 3747891, '-234.992294', '9.310618', '-37.905788', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139922, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747893', 3747893, '-237.711700', '8.873294', '-42.033760', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139650, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747899', 3747899, '-214.038300', '-30.502831', '123.735397', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139384, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747900', 3747900, '-250.516998', '-31.060820', '85.115646', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139118, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747904', 3747904, '-201.968796', '-30.857059', '117.357803', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138840, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747905', 3747905, '-183.124893', '-31.750071', '106.885902', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138568, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747906', 3747906, '-185.311996', '-31.750059', '109.415100', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138296, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747907', 3747907, '-152.843002', '-31.750000', '109.715103', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138024, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747908', 3747908, '-166.101105', '-31.750000', '110.540100', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137758, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747909', 3747909, '-169.604507', '-27.712351', '77.843430', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137486, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747910', 3747910, '-167.071503', '-27.177780', '76.317528', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137214, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747911', 3747911, '-210.234406', '-30.382589', '95.879173', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136942, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747913', 3747913, '-195.861603', '-27.444660', '129.920502', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136670, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747914', 3747914, '-224.566406', '-31.750071', '110.176003', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136398, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747915', 3747915, '-263.312103', '-31.750090', '97.519081', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136126, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747916', 3747916, '-255.968094', '-31.750130', '95.789261', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135848, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747919', 3747919, '-211.436401', '-30.614429', '97.981651', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135576, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747921', 3747921, '-244.620895', '-28.275660', '117.486801', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135304, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747922', 3747922, '-225.970795', '-15.579620', '71.709572', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135026, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747923', 3747923, '-170.891495', '-26.165300', '72.662949', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134754, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747924', 3747924, '-154.802902', '-29.800900', '94.071899', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134482, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747925', 3747925, '-164.402603', '-31.750019', '112.296303', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747927', 3747927, '-213.131393', '-30.063490', '125.099403', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747928', 3747928, '-234.579193', '-29.342421', '117.079697', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747930', 3747930, '-206.002899', '-30.332180', '97.422249', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747931', 3747931, '-258.774902', '-31.750071', '93.732712', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747933', 3747933, '-124.520401', '25.876591', '-384.084900', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117364, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747935', 3747935, '-120.378502', '25.406219', '-376.089111', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117636, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747936', 3747936, '-71.168182', '15.618890', '-341.319214', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117908, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747937', 3747937, '-140.945007', '34.283039', '-443.520813', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116548, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747945', 3747945, '-104.844803', '10.208240', '-322.407898', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116820, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747953', 3747953, '-68.964897', '24.845461', '-295.047913', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117092, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747955', 3747955, '-30.148661', '20.242010', '-347.723907', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118180, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747958', 3747958, '-20.706499', '20.599291', '-342.888702', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118724, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747963', 3747963, '20.322849', '15.975690', '-350.654205', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118996, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747965', 3747965, '39.420231', '19.301970', '-356.003815', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119268, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747975', 3747975, '-138.811401', '27.237310', '-416.372986', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747994', 3747994, '-93.431030', '7.583686', '-301.106293', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3747997', 3747997, '-65.966766', '21.859249', '-305.947601', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748004', 3748004, '-66.655212', '20.943001', '-309.725586', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748006', 3748006, '-38.712181', '21.255770', '-344.167297', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748009', 3748009, '-93.684303', '18.821621', '-371.862793', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748015', 3748015, '-113.144402', '27.605829', '-397.741913', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131490, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748017', 3748017, '-112.844398', '28.132500', '-450.977997', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748018', 3748018, '-108.119003', '27.149870', '-454.027008', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748020', 3748020, '-152.178299', '27.511971', '-419.668915', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748022', 3748022, '35.132519', '17.855400', '-352.433105', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748394', 3748394, '65.413780', '20.079309', '-340.723206', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748396', 3748396, '-140.276199', '-3.219701', '-317.433502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748397', 3748397, '-147.234299', '-4.593012', '-324.147400', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748399', 3748399, '-210.589798', '1.083344', '-288.624390', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748402', 3748402, '-72.186493', '11.340310', '-240.295197', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748407', 3748407, '-77.690918', '8.765988', '-234.389694', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748409', 3748409, '-50.269390', '11.709270', '-222.062698', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748410', 3748410, '-65.652512', '8.342214', '-211.891998', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748411', 3748411, '-21.376921', '8.231496', '-242.911896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748412', 3748412, '-16.418360', '6.341013', '-249.044601', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748413', 3748413, '-6.975120', '11.175980', '-282.658691', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106490, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748414', 3748414, '10.056190', '8.215180', '-250.173004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748415', 3748415, '5.360405', '-0.923770', '-218.657303', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748416', 3748416, '48.714218', '0.699683', '-174.900604', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748417', 3748417, '95.936577', '1.386500', '-186.119995', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748418', 3748418, '31.585911', '8.951487', '-139.193497', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748419', 3748419, '35.112041', '16.424919', '-113.143204', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748420', 3748420, '34.363049', '8.229201', '-145.052994', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748421', 3748421, '90.860474', '1.763928', '-189.065002', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748422', 3748422, '113.054001', '1.174898', '-202.746704', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748423', 3748423, '130.461395', '1.093745', '-233.497101', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748424', 3748424, '124.484100', '0.743076', '-229.449493', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748425', 3748425, '89.422256', '3.504610', '-218.853806', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748428', 3748428, '-184.704300', '-4.704755', '-317.082306', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748429', 3748429, '-177.061203', '-3.447654', '-291.626190', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748430', 3748430, '-168.688507', '-1.968461', '-348.439789', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102954, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(6, 'w1f2_client_benchmark', 'bnpc3748431', 3748431, '-142.835693', '-1.140769', '-353.109894', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748433', 3748433, '-167.528793', '6.179857', '-382.681000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748434', 3748434, '-192.189301', '-4.726788', '-315.063293', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97242, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748436', 3748436, '-213.360901', '-4.497713', '-340.979004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748437', 3748437, '-234.150696', '5.014801', '-286.084686', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98602, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748438', 3748438, '-218.334900', '17.160500', '-255.482300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748443', 3748443, '-212.971405', '13.338840', '-260.496307', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748479', 3748479, '-151.282501', '-4.870804', '-286.887787', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748499', 3748499, '-178.949402', '6.440631', '-256.865692', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748520', 3748520, '-148.505096', '-5.306737', '-314.775085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748524', 3748524, '-185.881104', '-4.844985', '-310.895508', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748526', 3748526, '-164.369003', '1.507254', '-251.882507', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748528', 3748528, '-207.412399', '17.160610', '-247.635193', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748530', 3748530, '-229.519104', '3.459191', '-289.959412', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748532', 3748532, '-163.010803', '-1.945551', '-356.094696', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748534', 3748534, '-173.595505', '5.841309', '-388.489685', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748537', 3748537, '-232.440796', '-2.339301', '-322.417908', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127954, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748538', 3748538, '-251.794006', '-1.267901', '-386.990295', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748542', 3748542, '-234.040207', '-0.107224', '-383.030914', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748543', 3748543, '-272.222107', '0.687642', '-325.399811', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748545', 3748545, '-263.308685', '4.237235', '-309.758392', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748546', 3748546, '-252.162598', '0.152196', '-318.392395', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748548', 3748548, '-251.430496', '-2.982757', '-348.143311', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748549', 3748549, '-240.737198', '1.345172', '-393.418396', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748550', 3748550, '-242.828506', '-3.567687', '-364.035309', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748551', 3748551, '-250.630707', '-3.725200', '-363.735291', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748552', 3748552, '-213.087494', '1.112077', '-382.537415', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748553', 3748553, '-255.836105', '7.531438', '-290.196289', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748554', 3748554, '-246.018097', '-2.631598', '-372.254608', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748555', 3748555, '-236.562103', '3.655112', '-396.309387', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748557', 3748557, '-203.850494', '16.277430', '-409.920593', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748559', 3748559, '-242.042892', '18.601339', '-425.242401', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748564', 3748564, '-177.168198', '14.656220', '-411.592987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748565', 3748565, '-215.900406', '16.573481', '-408.014008', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748566', 3748566, '-221.473297', '17.321730', '-412.786896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748567', 3748567, '-236.289001', '19.116409', '-424.877502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748570', 3748570, '-254.304306', '22.347059', '-449.055695', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748654', 3748654, '-205.192398', '19.296721', '-445.294189', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748657', 3748657, '-207.202301', '25.558809', '-115.343002', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748660', 3748660, '-222.657104', '20.702950', '-78.345047', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748662', 3748662, '-247.438400', '20.240339', '-67.748871', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748663', 3748663, '-230.727005', '26.739140', '-98.761307', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748670', 3748670, '-271.961609', '27.969740', '-98.954803', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748672', 3748672, '-271.661285', '23.599831', '-70.352722', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748674', 3748674, '-231.617004', '30.324150', '-133.076996', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748726', 3748726, '33.854542', '6.542700', '-211.889801', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748728', 3748728, '55.167561', '0.798945', '-193.606598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748729', 3748729, '69.255318', '0.046956', '-152.350906', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748730', 3748730, '10.055020', '5.968488', '-132.156097', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123602, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748732', 3748732, '50.175282', '14.921620', '-128.489700', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748734', 3748734, '76.929573', '3.883048', '-205.706406', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748736', 3748736, '79.198738', '3.548813', '-202.087204', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748737', 3748737, '106.461601', '1.818933', '-204.985199', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748738', 3748738, '140.354401', '0.554754', '-232.614304', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122242, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748739', 3748739, '111.391197', '0.776695', '-238.240707', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748749', 3748749, '145.884293', '-1.750025', '-212.434097', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748752', 3748752, '136.108398', '-1.750136', '-190.396194', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748753', 3748753, '149.821106', '-1.750019', '-214.231293', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54188, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748755', 3748755, '84.854179', '-1.750136', '-139.436905', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53916, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748758', 3748758, '72.003227', '-1.750024', '-104.510002', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53644, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748760', 3748760, '68.467178', '-1.754834', '-99.778793', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53372, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748763', 3748763, '78.693497', '-3.269199', '-32.994751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53100, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748765', 3748765, '68.721947', '-2.620518', '-49.466751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52828, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748770', 3748770, '166.277496', '-1.754834', '-241.382507', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52556, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748772', 3748772, '187.884293', '-1.754834', '-278.858704', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52284, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748773', 3748773, '194.766006', '-1.750224', '-280.991394', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52012, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748775', 3748775, '71.615707', '-3.621419', '-26.438259', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51740, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748850', 3748850, '12.774460', '-6.750232', '111.257401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90726, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748852', 3748852, '9.592600', '-6.750232', '107.837402', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92086, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748876', 3748876, '11.520510', '1.022307', '-111.986000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748879', 3748879, '-129.259201', '2.487174', '-193.926895', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118452, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748904', 3748904, '176.132706', '4.710299', '-187.304703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748905', 3748905, '158.969894', '2.732193', '-177.146698', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748906', 3748906, '191.563705', '2.176362', '-156.220703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748907', 3748907, '196.388000', '3.012704', '-160.659393', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748908', 3748908, '239.061295', '5.923066', '-187.296494', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748910', 3748910, '269.473785', '9.044052', '-198.574799', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748913', 3748913, '263.650208', '11.289570', '-202.903397', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748915', 3748915, '227.710297', '-1.205510', '-113.847603', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748923', 3748923, '231.280899', '-1.632762', '-106.462196', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748926', 3748926, '200.610306', '-1.358100', '-103.471497', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748930', 3748930, '207.171707', '-1.144474', '-84.519768', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748932', 3748932, '173.937500', '1.205416', '-81.071228', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73736, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748934', 3748934, '148.809097', '3.036994', '-133.465897', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73464, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748937', 3748937, '169.787094', '0.045730', '-115.892303', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73192, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748941', 3748941, '145.535507', '4.850001', '-129.478104', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72920, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748942', 3748942, '119.305603', '3.909301', '-132.622696', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72648, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748943', 3748943, '109.916496', '3.556486', '-129.240601', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748944', 3748944, '224.505905', '-2.975556', '-56.412651', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72104, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748945', 3748945, '175.332993', '6.489766', '-41.243931', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748946', 3748946, '186.449905', '4.165666', '-17.319040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748947', 3748947, '281.825989', '-9.100459', '2.598387', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71832, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748949', 3748949, '288.471710', '-11.734230', '-3.952133', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71560, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748950', 3748950, '278.492310', '-14.114640', '-37.338871', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71288, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748953', 3748953, '324.544098', '-13.504280', '-33.615669', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748954', 3748954, '329.030212', '-13.565320', '-29.770399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748955', 3748955, '356.861603', '-15.283880', '-44.573921', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748956', 3748956, '347.890411', '-17.502140', '8.102493', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748962', 3748962, '150.469193', '19.150021', '-76.524040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748963', 3748963, '146.044098', '19.581060', '-88.241302', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748964', 3748964, '117.082397', '20.462299', '-97.062683', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748967', 3748967, '142.873703', '16.403400', '-46.097549', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748968', 3748968, '400.991608', '-12.783140', '-32.000870', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748969', 3748969, '366.536896', '-16.189871', '-58.854092', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748970', 3748970, '415.234192', '-14.170130', '-62.547722', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748972', 3748972, '432.695709', '-16.065250', '-112.148399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748974', 3748974, '436.729889', '-14.846640', '-118.392700', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68840, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748976', 3748976, '441.284088', '-15.576560', '-96.939430', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68568, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748980', 3748980, '384.960602', '-17.809891', '-96.639427', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68296, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748986', 3748986, '389.761108', '-17.502140', '-101.701401', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3748990', 3748990, '391.353210', '-17.460060', '-135.489304', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749004', 3749004, '172.667496', '7.527369', '-42.066410', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749018', 3749018, '187.591705', '4.184689', '-15.078180', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749020', 3749020, '183.022797', '5.398401', '-15.566580', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749031', 3749031, '202.090393', '0.810960', '-15.619060', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749036', 3749036, '199.896393', '1.465439', '-15.630680', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749047', 3749047, '143.173706', '15.773830', '-43.893311', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749053', 3749053, '153.171097', '16.202070', '-56.630402', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749059', 3749059, '151.803696', '19.216890', '-78.848953', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749061', 3749061, '153.666504', '19.040461', '-76.088043', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749071', 3749071, '144.894501', '19.988741', '-106.295998', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749073', 3749073, '142.185501', '20.171949', '-108.059097', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749080', 3749080, '115.432404', '20.583151', '-99.077271', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749083', 3749083, '114.653099', '20.724030', '-96.549553', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749168', 3749168, '312.979492', '-19.718349', '-75.451233', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62252, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749170', 3749170, '261.730194', '-19.718349', '-82.128349', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61980, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749172', 3749172, '274.699402', '-19.718349', '-117.167198', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61708, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749173', 3749173, '291.363098', '-19.718349', '-136.065598', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749174', 3749174, '342.729797', '-19.718349', '-131.071106', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749175', 3749175, '353.724091', '-19.718349', '-85.215424', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749176', 3749176, '333.410095', '-19.718349', '-136.385498', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60620, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749177', 3749177, '319.949188', '-19.718349', '-179.156403', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60348, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749178', 3749178, '308.689301', '-19.718349', '-60.698299', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60142, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749180', 3749180, '311.695190', '-19.718349', '-58.346031', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59870, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749183', 3749183, '330.312012', '-19.729959', '-70.267838', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59598, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749186', 3749186, '296.119995', '-19.718349', '-90.360474', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59326, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749187', 3749187, '293.415802', '-19.718349', '-93.414520', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59054, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749188', 3749188, '290.216614', '-19.718349', '-87.193253', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58782, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749189', 3749189, '258.481415', '-19.718349', '-104.208000', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58510, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749190', 3749190, '252.984802', '-19.718349', '-103.640099', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58238, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749191', 3749191, '257.907715', '-19.718349', '-125.303101', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57966, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749192', 3749192, '286.451904', '-19.718349', '-129.699097', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57694, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749193', 3749193, '282.557892', '-19.718349', '-147.388199', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57422, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749195', 3749195, '310.290314', '-19.718349', '-172.318802', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57150, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749196', 3749196, '313.118591', '-19.718349', '-169.401993', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56878, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749197', 3749197, '310.587006', '-19.718349', '-142.173401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56606, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749199', 3749199, '350.892212', '-19.718349', '-150.816696', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56334, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749200', 3749200, '368.409302', '-19.718349', '-144.276596', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56062, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749201', 3749201, '364.918213', '-19.718349', '-140.378006', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55790, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749202', 3749202, '359.256592', '-19.718349', '-116.557503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55518, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749203', 3749203, '346.291199', '-19.718349', '-105.267899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55246, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749204', 3749204, '371.776215', '-19.718349', '-104.967796', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54974, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749211', 3749211, '123.998703', '28.662880', '-17.350370', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51474, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749213', 3749213, '121.332397', '28.612700', '-23.583090', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51208, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749215', 3749215, '161.791397', '28.213881', '-14.786040', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50936, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749218', 3749218, '137.021805', '28.624880', '-23.498341', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50658, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749219', 3749219, '107.272903', '29.216610', '-36.643101', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749222', 3749222, '149.401093', '28.610600', '-15.610050', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50120, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749223', 3749223, '148.790604', '28.610600', '-15.152280', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49842, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749225', 3749225, '122.827698', '28.633169', '-37.359280', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749226', 3749226, '104.128304', '29.031771', '-49.110481', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49304, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749235', 3749235, '93.149368', '29.525270', '-84.964371', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749239', 3749239, '67.895287', '30.429380', '-70.394157', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749240', 3749240, '65.047180', '30.255060', '-77.079674', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749241', 3749241, '44.682369', '28.535789', '-84.546478', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749242', 3749242, '66.806038', '29.155720', '-109.342300', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749245', 3749245, '204.538101', '7.350389', '-181.293304', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749246', 3749246, '174.853104', '5.172761', '-202.929794', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749247', 3749247, '263.069611', '8.545942', '-196.205307', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749252', 3749252, '231.435593', '1.119558', '-165.006302', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749253', 3749253, '173.375305', '2.771811', '-168.286102', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749255', 3749255, '157.126694', '3.796749', '-121.347397', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749257', 3749257, '115.770103', '4.592918', '-127.306099', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749275', 3749275, '161.730301', '-1.754834', '-239.398804', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749277', 3749277, '185.534393', '-1.754834', '-265.705414', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749279', 3749279, '210.539902', '-1.750040', '-309.299408', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749284', 3749284, '211.839401', '-1.750030', '-306.582611', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749290', 3749290, '143.733002', '-1.750026', '-193.558701', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749297', 3749297, '144.345306', '0.955883', '-165.104004', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749310', 3749310, '216.777496', '0.994229', '-97.056053', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749312', 3749312, '169.933899', '2.409006', '-84.351593', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749314', 3749314, '219.378906', '-3.433327', '-46.921539', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749321', 3749321, '277.040192', '-7.191899', '-0.686294', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749327', 3749327, '331.429810', '-13.937110', '-37.954071', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749332', 3749332, '384.322205', '-19.359289', '-5.627488', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749336', 3749336, '382.853088', '-20.412571', '-0.889114', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749338', 3749338, '359.951508', '-16.405090', '-60.846310', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749343', 3749343, '451.404602', '-11.420970', '-118.535599', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749351', 3749351, '384.249603', '-17.667879', '-125.562897', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749357', 3749357, '297.316589', '-19.718349', '-70.108559', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749359', 3749359, '289.558197', '-19.718349', '-103.097801', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749362', 3749362, '240.405807', '-18.104980', '-89.540627', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749364', 3749364, '283.065491', '-19.718349', '-125.167999', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749367', 3749367, '267.129913', '-18.000000', '-169.891296', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749369', 3749369, '264.685486', '-18.000000', '-168.247101', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749370', 3749370, '316.532898', '-19.718349', '-157.003693', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749371', 3749371, '353.619995', '-19.718349', '-109.615997', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749373', 3749373, '339.318695', '-19.718349', '-85.941147', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749376', 3749376, '165.671799', '11.656820', '-52.356880', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749380', 3749380, '172.813995', '6.716133', '-26.881840', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749388', 3749388, '191.772202', '-0.202088', '-35.283329', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749390', 3749390, '136.510300', '18.512560', '-57.480461', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749392', 3749392, '133.468002', '19.606770', '-81.872276', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37886, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(6, 'w1f2_client_benchmark', 'bnpc3749396', 3749396, '128.184402', '20.219101', '-102.714104', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749397', 3749397, '116.821999', '23.443171', '-63.701351', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749399', 3749399, '86.653412', '30.354231', '-83.224442', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749402', 3749402, '86.953407', '29.540970', '-103.119400', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3749404', 3749404, '58.939091', '30.914900', '-69.530090', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3751223', 3751223, '27.075630', '19.825541', '-258.167999', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79592, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3751224', 3751224, '25.641180', '19.827999', '-262.593201', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80674, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3751325', 3751325, '-86.401451', '-0.314426', '-202.187195', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3751326', 3751326, '-89.241432', '-0.377375', '-203.793503', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3751327', 3751327, '-54.347431', '10.746100', '-226.743500', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3751329', 3751329, '14.423480', '6.148088', '-236.752106', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3751331', 3751331, '-1.214684', '-0.950067', '-207.831497', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3751332', 3751332, '-12.497190', '11.337410', '-273.731598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3751350', 3751350, '12.680810', '9.512568', '-296.489288', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3751353', 3751353, '-5.330978', '16.424870', '-314.262909', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3751354', 3751354, '-110.742599', '-1.464606', '-173.727402', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3782203', 3782203, '-10.133880', '-3.109667', '-92.309822', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3782206', 3782206, '-5.820518', '-2.317021', '-88.935387', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3782208', 3782208, '-16.094000', '-4.734633', '-82.939987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3782210', 3782210, '-16.866150', '-3.490384', '-51.955761', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3782566', 3782566, '219.465393', '20.017179', '421.855988', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177456, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3782567', 3782567, '215.101303', '19.951290', '418.621094', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177184, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3782571', 3782571, '276.496490', '14.358410', '504.494598', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176912, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3782572', 3782572, '274.299194', '14.525580', '502.022614', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170662, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3782576', 3782576, '223.506195', '14.214930', '465.799103', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176640, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3782578', 3782578, '228.904907', '14.555940', '463.312805', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176368, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3782579', 3782579, '240.208405', '14.734180', '473.802307', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176096, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3782581', 3782581, '203.301804', '12.792270', '451.523285', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175824, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc3782585', 3782585, '230.220703', '14.451260', '471.293915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173926, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc4057631', 4057631, '-117.387497', '15.659340', '316.159485', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22414, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc4057642', 4057642, '32.356911', '15.912200', '575.715027', 797, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22148, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc4057659', 4057659, '-26.174540', '-2.337916', '-130.147400', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21882, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc4057662', 4057662, '7.597365', '-2.072273', '-178.519897', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21610, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(6, 'w1f2_client_benchmark', 'bnpc4621827', 4621827, '-293.653107', '18.424400', '-380.671600', 2770, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22760, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132780', 1132780, '42.705971', '6.489012', '-222.119598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132784', 1132784, '43.994171', '7.081282', '-226.261307', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132785', 1132785, '46.368141', '6.532326', '-222.363800', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230902, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132786', 1132786, '50.249649', '8.663927', '-237.583603', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132810', 1132810, '119.142403', '17.274370', '-264.585907', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132815', 1132815, '53.141479', '4.367238', '-208.718597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132818', 1132818, '57.950279', '4.701855', '-181.906006', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132819', 1132819, '53.380199', '3.647015', '-170.941803', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132823', 1132823, '85.892982', '4.386182', '-186.633102', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132827', 1132827, '136.440002', '-0.215091', '-142.126297', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132829', 1132829, '139.586502', '1.436886', '-162.906296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132833', 1132833, '144.692596', '1.594073', '-161.313507', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132834', 1132834, '169.345306', '-0.575563', '-143.321701', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132835', 1132835, '132.885803', '4.471908', '-182.040894', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132836', 1132836, '127.652000', '2.679112', '-179.060898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132837', 1132837, '133.402802', '5.498395', '-185.220093', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132842', 1132842, '104.130501', '4.751109', '-199.651596', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132988', 1132988, '145.939301', '0.761501', '-119.501801', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132990', 1132990, '165.896698', '-0.582151', '-142.284103', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132991', 1132991, '196.646301', '-2.798964', '-155.795898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132992', 1132992, '159.011398', '0.196450', '-113.407997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226012, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1132993', 1132993, '162.856598', '-0.357008', '-115.116997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225740, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133000', 1133000, '202.288803', '-2.206049', '-168.963196', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225468, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133001', 1133001, '223.772705', '-6.852091', '-140.217407', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225196, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133002', 1133002, '206.683395', '-2.759299', '-171.221497', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224924, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133005', 1133005, '231.146698', '-5.044106', '-178.307693', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224652, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133007', 1133007, '242.902496', '-0.494766', '-191.458496', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224380, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133008', 1133008, '239.977493', '-0.588080', '-191.828400', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224108, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133010', 1133010, '221.392303', '-6.460419', '-138.050598', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223836, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133022', 1133022, '332.788513', '-3.345333', '-151.251495', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201534, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133023', 1133023, '298.603699', '-6.332541', '-125.749603', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133029', 1133029, '302.693298', '-3.341390', '-184.143005', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133031', 1133031, '328.386993', '-0.505648', '-187.936401', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133032', 1133032, '342.892487', '-1.328422', '-175.218201', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133035', 1133035, '358.327515', '-2.255364', '-175.310898', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133036', 1133036, '335.507294', '0.561625', '-194.418793', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133042', 1133042, '439.946808', '10.149250', '-108.177101', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169468, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133044', 1133044, '458.584900', '14.997390', '-90.379593', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169740, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133047', 1133047, '463.401215', '25.778530', '-35.324680', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168380, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133049', 1133049, '445.243591', '31.812080', '-9.685579', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168652, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133052', 1133052, '486.745514', '31.609249', '-44.177990', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168924, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133053', 1133053, '487.618011', '31.024900', '-55.958771', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170012, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133054', 1133054, '483.304291', '30.900890', '-51.161331', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172188, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133056', 1133056, '482.511993', '23.910801', '-88.545013', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173276, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133057', 1133057, '480.679291', '24.104330', '-120.189201', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169196, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133063', 1133063, '504.435913', '29.146271', '-83.562149', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173004, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133064', 1133064, '482.169495', '24.010910', '-92.475502', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172732, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133065', 1133065, '459.642914', '24.454941', '-39.719559', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172460, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133066', 1133066, '453.938690', '26.000799', '-33.810230', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170828, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133070', 1133070, '351.512787', '3.052480', '46.861389', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133071', 1133071, '341.298492', '3.983801', '67.704231', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133072', 1133072, '348.626495', '0.976962', '28.015940', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133073', 1133073, '342.183502', '0.098491', '27.298340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133077', 1133077, '309.071411', '-2.609340', '63.065491', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133080', 1133080, '281.574707', '-7.184652', '26.169170', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133098', 1133098, '289.254913', '-5.168305', '48.585239', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133100', 1133100, '291.498688', '-5.368438', '47.821369', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133126', 1133126, '-82.030632', '1.519239', '-141.488693', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148770, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133128', 1133128, '-77.317497', '1.083344', '-136.644608', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148498, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133130', 1133130, '-63.375290', '0.643326', '-166.887497', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148226, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133131', 1133131, '-64.313164', '0.965167', '-162.181503', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147954, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133132', 1133132, '-75.591331', '1.176651', '-142.404297', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147682, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133138', 1133138, '-33.189919', '-4.914308', '-94.149628', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147410, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133148', 1133148, '86.244072', '-19.783070', '210.247406', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133152', 1133152, '70.510750', '-17.727341', '188.296799', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133156', 1133156, '56.609531', '-22.226370', '292.790710', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133163', 1133163, '25.970390', '-24.061230', '233.649994', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133165', 1133165, '37.231960', '-26.765560', '260.079498', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133167', 1133167, '36.484268', '-25.833570', '242.542099', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133172', 1133172, '94.585983', '-24.244490', '288.477509', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133176', 1133176, '98.126083', '-23.363501', '294.977814', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133177', 1133177, '85.597298', '-27.953020', '268.263000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133178', 1133178, '89.747749', '-28.194380', '266.065704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133179', 1133179, '141.949905', '-28.936390', '333.222290', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133181', 1133181, '160.046402', '-31.802570', '350.789795', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133185', 1133185, '164.906906', '-32.018280', '333.485504', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133186', 1133186, '146.226807', '-28.810591', '357.818298', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133187', 1133187, '196.479996', '-32.228100', '370.754303', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133189', 1133189, '179.687897', '-32.476631', '364.163086', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133193', 1133193, '213.929794', '-29.694580', '421.080688', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133194', 1133194, '210.157394', '-29.179230', '422.919312', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133195', 1133195, '202.300293', '-31.331381', '415.743286', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133196', 1133196, '197.350098', '-27.568890', '432.363586', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133197', 1133197, '127.580299', '-21.390261', '452.635986', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133198', 1133198, '140.825500', '-23.697309', '449.881714', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133199', 1133199, '140.459198', '-23.605749', '454.489899', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133202', 1133202, '12.397950', '-27.619690', '294.880493', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133205', 1133205, '-18.143021', '-24.734921', '265.369598', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133206', 1133206, '-12.771850', '-24.094040', '262.958710', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133207', 1133207, '-9.199866', '-28.976500', '329.645294', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140338, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133209', 1133209, '-28.712330', '-27.396271', '280.689209', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140066, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133235', 1133235, '-294.825012', '66.698837', '-219.308807', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94446, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133239', 1133239, '-293.659912', '67.460083', '-222.491806', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94174, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133246', 1133246, '-302.510101', '60.959740', '-159.319504', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93902, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133248', 1133248, '-302.700409', '62.132381', '-166.402496', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133255', 1133255, '-356.364685', '65.308533', '-258.518585', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133257', 1133257, '-369.039490', '65.567993', '-232.715393', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133258', 1133258, '-392.416290', '67.276978', '-249.713898', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133287', 1133287, '197.283798', '-8.773984', '-27.176359', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133291', 1133291, '211.352707', '-8.651912', '-43.106781', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133293', 1133293, '157.305206', '-7.888961', '-17.929399', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133294', 1133294, '157.244202', '-8.163623', '-11.917340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133298', 1133298, '120.449799', '-4.840655', '13.528090', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1133303', 1133303, '104.203796', '-7.003938', '47.562321', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135577', 1135577, '335.133911', '-4.725379', '-24.794729', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196916, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135582', 1135582, '371.054596', '0.844982', '-35.208488', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196644, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135586', 1135586, '374.433105', '1.702958', '-25.284241', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135591', 1135591, '345.784607', '-2.975556', '-32.761169', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135593', 1135593, '332.478790', '-3.372291', '3.097534', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135605', 1135605, '395.773193', '2.548209', '-44.693722', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135606', 1135606, '415.025085', '5.625315', '-64.068764', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135607', 1135607, '388.509888', '0.304810', '-66.453087', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135612', 1135612, '394.000214', '3.556523', '-87.144318', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135613', 1135613, '375.936493', '0.686609', '-85.923592', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135614', 1135614, '343.831512', '-5.020265', '-80.094650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135616', 1135616, '409.009888', '5.209702', '-112.078003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135617', 1135617, '417.517700', '5.755183', '-68.232597', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135618', 1135618, '412.284607', '5.636008', '-106.424400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135619', 1135619, '406.314209', '5.571515', '-103.380302', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135624', 1135624, '386.668915', '4.336706', '-103.087303', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135625', 1135625, '364.309509', '0.784262', '-125.017197', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135627', 1135627, '359.853485', '-2.578822', '-152.483398', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135628', 1135628, '350.999207', '-2.118987', '-128.300003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135629', 1135629, '316.613586', '8.015758', '128.187897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135632', 1135632, '323.190002', '9.736116', '132.826904', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135633', 1135633, '322.078613', '10.136940', '134.004807', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135639', 1135639, '288.849091', '17.952721', '161.725601', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135643', 1135643, '286.915314', '19.626829', '172.441101', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135645', 1135645, '295.765594', '16.383280', '167.437195', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135646', 1135646, '318.979004', '13.831220', '155.957001', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135647', 1135647, '290.314087', '17.922770', '159.804199', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135651', 1135651, '-262.056305', '55.970860', '36.748020', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135671', 1135671, '-462.059692', '64.698357', '68.829857', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135673', 1135673, '-398.458893', '51.156910', '68.804077', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83602, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135685', 1135685, '-418.844910', '58.274151', '-34.409142', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135687', 1135687, '-520.153870', '65.239517', '61.102520', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80888, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135688', 1135688, '-508.781586', '65.293297', '40.634731', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81432, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135931', 1135931, '272.581390', '23.939560', '195.025894', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135933', 1135933, '241.474594', '24.000601', '179.914902', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135937', 1135937, '-101.839104', '-40.043732', '299.745911', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135938', 1135938, '-105.816902', '-40.028461', '306.239807', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135939', 1135939, '-90.198776', '-40.129551', '324.673096', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135940', 1135940, '-94.585022', '-40.032150', '311.676514', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135941', 1135941, '-114.854698', '-40.054981', '302.937286', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135942', 1135942, '-97.734077', '-40.054981', '304.310608', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135943', 1135943, '-102.695999', '-40.032539', '320.445892', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1135944', 1135944, '-83.087273', '-39.867889', '327.616211', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162337', 1162337, '283.977112', '-6.509701', '-148.452805', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162338', 1162338, '281.871399', '-6.690229', '-150.039703', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162341', 1162341, '315.751801', '-4.718813', '-109.327103', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162344', 1162344, '309.980103', '1.983368', '92.979958', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162345', 1162345, '337.067413', '3.266761', '71.050873', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162348', 1162348, '130.357803', '-6.759793', '57.419651', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162351', 1162351, '222.430695', '-7.827925', '-60.441029', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162352', 1162352, '227.527206', '-7.187046', '-66.727753', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162353', 1162353, '203.082306', '-7.339636', '-68.925049', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162354', 1162354, '221.484604', '-7.400672', '-64.011642', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162358', 1162358, '-19.657080', '0.269221', '-140.150803', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162368', 1162368, '112.853699', '-26.954611', '251.195801', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162369', 1162369, '89.158417', '-24.246630', '236.957306', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162371', 1162371, '217.547806', '-31.967699', '395.895294', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162374', 1162374, '-2.485424', '-31.687981', '451.364502', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162376', 1162376, '-10.696620', '-34.134480', '443.381287', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162378', 1162378, '-23.636271', '-35.911461', '462.485596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162380', 1162380, '-61.417610', '-36.118149', '490.745300', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162384', 1162384, '-4.128872', '-28.294901', '327.096588', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162385', 1162385, '-48.920349', '-35.910400', '310.262909', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162386', 1162386, '-66.916382', '-32.083370', '343.644196', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162387', 1162387, '-65.420998', '-31.630421', '353.013306', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162390', 1162390, '-298.542786', '20.650921', '132.768707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135454, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(7, 'f1f1_client_benchmark', 'bnpc1162391', 1162391, '-294.392303', '20.060690', '130.388306', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162392', 1162392, '-296.020508', '20.999870', '168.359299', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162393', 1162393, '-297.016907', '20.876789', '122.239998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162394', 1162394, '-208.026505', '3.601872', '2.164479', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162398', 1162398, '-396.566711', '63.980961', '-218.615997', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162399', 1162399, '-347.955994', '66.968529', '-220.251999', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162402', 1162402, '-291.152710', '61.247379', '-168.828796', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162403', 1162403, '-351.183289', '63.740372', '-153.645599', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162412', 1162412, '-365.503204', '62.324249', '-85.497841', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162413', 1162413, '-365.240814', '62.204288', '-87.690971', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162416', 1162416, '-353.685791', '63.380310', '-149.922501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162426', 1162426, '-501.091003', '65.293297', '90.318100', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1162427', 1162427, '-534.918823', '65.381104', '43.912449', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81160, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1180878', 1180878, '104.639297', '-8.000016', '-91.168152', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1180879', 1180879, '105.168701', '-8.000016', '-94.222618', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1180880', 1180880, '106.210297', '-8.000016', '-96.527153', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1183451', 1183451, '104.347603', '-8.000016', '-88.522499', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1183452', 1183452, '101.512100', '-8.064646', '-97.812950', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1183453', 1183453, '100.580399', '-8.000016', '-95.459229', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1183454', 1183454, '99.803108', '-8.184623', '-92.716454', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1183455', 1183455, '99.192757', '-8.361253', '-89.878258', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234346, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1183456', 1183456, '96.327393', '-8.500061', '-99.385361', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1183458', 1183458, '95.550194', '-8.460118', '-96.840134', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1183459', 1183459, '94.825958', '-8.500061', '-93.978119', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1183460', 1183460, '94.179993', '-8.500061', '-90.982887', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1408325', 1408325, '107.492897', '15.984340', '-270.054596', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1408329', 1408329, '119.554398', '17.410500', '-259.693298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1408332', 1408332, '111.600800', '16.549120', '-248.298096', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1408334', 1408334, '117.813103', '17.697479', '-247.780807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1408341', 1408341, '111.814400', '16.758829', '-244.880096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1408351', 1408351, '86.796638', '15.940370', '-262.601105', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1408352', 1408352, '68.921707', '16.132620', '-262.037811', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1408353', 1408353, '68.168861', '16.760660', '-264.307190', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1408357', 1408357, '72.243088', '10.935070', '-243.492706', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1408358', 1408358, '87.101822', '15.245950', '-260.648010', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221122, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410560', 1410560, '103.350998', '14.389260', '-254.875107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410688', 1410688, '50.217388', '6.559038', '-223.468399', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410689', 1410689, '39.352970', '4.053384', '-182.513199', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410690', 1410690, '37.860909', '3.934789', '-183.153900', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410691', 1410691, '55.661430', '4.710185', '-183.981201', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410693', 1410693, '-1.083989', '1.339663', '-188.567398', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219478, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410694', 1410694, '0.474049', '1.531124', '-191.204697', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219206, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410695', 1410695, '8.437746', '1.980624', '-176.756195', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218934, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410696', 1410696, '-15.013690', '1.551492', '-198.619598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218662, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410698', 1410698, '7.450444', '1.514552', '-190.764694', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410699', 1410699, '8.438234', '3.222636', '-146.234497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410700', 1410700, '14.477130', '3.104484', '-138.479904', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410701', 1410701, '16.068541', '3.373573', '-139.535202', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217574, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410703', 1410703, '-15.113390', '3.146425', '-233.722000', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217302, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410704', 1410704, '-4.948251', '4.778366', '-234.155304', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217030, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410705', 1410705, '8.210199', '5.748120', '-247.337402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410707', 1410707, '9.591916', '5.570471', '-251.132996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216498, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410708', 1410708, '5.815275', '5.237663', '-249.501099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216226, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410709', 1410709, '-9.906527', '3.594761', '-217.097595', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215954, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410712', 1410712, '-13.648660', '3.344659', '-231.383408', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215682, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410714', 1410714, '-30.136610', '0.909592', '-224.200897', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410715', 1410715, '48.355789', '9.194451', '-243.366196', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410716', 1410716, '74.908539', '4.285552', '-211.076706', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410851', 1410851, '88.732697', '4.082766', '-185.738998', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215138, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410853', 1410853, '130.975204', '4.971314', '-185.109497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214866, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410976', 1410976, '131.470093', '2.068069', '-173.581100', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214594, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410977', 1410977, '107.495903', '0.653863', '-168.558304', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214322, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410978', 1410978, '142.190598', '1.204836', '-160.400803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214050, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410979', 1410979, '148.032898', '0.649221', '-123.475403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213778, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410982', 1410982, '166.648804', '-1.181116', '-137.457901', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213506, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410983', 1410983, '178.145996', '-1.608972', '-140.621307', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213228, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410984', 1410984, '168.844696', '2.701761', '-163.503296', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212962, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410990', 1410990, '199.114899', '-0.803801', '-174.853195', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212684, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410996', 1410996, '202.197205', '-1.697314', '-172.655899', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212418, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410998', 1410998, '239.098404', '-2.190103', '-187.159805', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212146, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1410999', 1410999, '221.515396', '-6.264487', '-154.155502', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211874, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411000', 1411000, '227.837204', '-8.126032', '-125.948700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211602, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411003', 1411003, '174.579300', '-1.892151', '-102.278099', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411004', 1411004, '182.699707', '-4.339209', '-88.384857', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211058, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411005', 1411005, '161.154007', '4.078132', '-169.399704', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411032', 1411032, '271.173798', '-9.203460', '-119.877403', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411034', 1411034, '330.082886', '-2.640436', '-152.968796', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173790, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411036', 1411036, '305.867188', '-2.983790', '-188.262894', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411037', 1411037, '302.815399', '-3.417479', '-190.063507', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411038', 1411038, '283.192108', '-6.780017', '-171.401596', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411042', 1411042, '287.338715', '-5.114256', '-195.320007', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411049', 1411049, '276.640594', '-8.026556', '-141.155594', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411065', 1411065, '308.725311', '-4.528103', '-80.785583', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411066', 1411066, '311.802795', '-5.117999', '-76.683037', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411069', 1411069, '291.112213', '-5.409167', '-79.667397', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411071', 1411071, '346.714203', '-3.206666', '-41.466160', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411078', 1411078, '264.779999', '-11.621630', '-65.637466', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183878, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411084', 1411084, '234.546997', '-11.793010', '-2.134793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183606, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411085', 1411085, '250.625107', '-8.387555', '28.634951', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183334, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411086', 1411086, '313.420288', '-6.097115', '16.095341', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183038, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411087', 1411087, '314.703308', '-5.599903', '20.012140', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182766, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411119', 1411119, '309.285095', '2.975462', '97.764503', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182494, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411120', 1411120, '326.314087', '2.426137', '90.012917', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182222, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411121', 1411121, '371.612488', '7.304699', '55.979481', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411124', 1411124, '375.810211', '7.175481', '51.219879', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411135', 1411135, '420.071991', '5.244238', '-35.509991', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411136', 1411136, '417.919312', '5.091386', '-39.660309', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411137', 1411137, '425.005402', '6.439638', '-41.263420', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411148', 1411148, '449.318512', '32.509201', '-8.551085', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170556, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411152', 1411152, '505.440613', '42.969250', '-25.847120', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170284, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411155', 1411155, '511.920410', '44.121750', '-42.307079', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171644, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411157', 1411157, '502.891510', '43.241459', '-46.006001', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171372, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411159', 1411159, '481.475494', '41.105301', '-9.940406', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171100, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411160', 1411160, '484.982300', '41.536228', '-12.749530', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171916, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411162', 1411162, '201.709000', '-7.309118', '-73.014473', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181134, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411163', 1411163, '206.805496', '-9.964188', '-16.037279', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180862, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411164', 1411164, '183.550705', '-8.560358', '-4.379386', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180590, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411167', 1411167, '127.300301', '-5.901662', '12.460290', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180318, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411170', 1411170, '92.851097', '-4.928711', '4.867581', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180046, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411171', 1411171, '127.489098', '-7.126010', '58.609852', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179774, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411173', 1411173, '216.815399', '-9.170719', '-44.144390', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411174', 1411174, '218.066605', '-9.475899', '-42.282791', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411176', 1411176, '184.252594', '-8.621394', '-0.259450', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411178', 1411178, '102.749901', '-11.800030', '112.244499', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411179', 1411179, '107.205597', '-7.793041', '74.349869', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411180', 1411180, '84.061897', '-6.851347', '16.464439', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411181', 1411181, '84.336563', '-6.698757', '13.137970', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411182', 1411182, '275.292297', '23.606110', '190.161697', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411186', 1411186, '288.694397', '21.579050', '187.354996', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177344, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411187', 1411187, '286.440796', '21.978689', '190.167206', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177072, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411193', 1411193, '237.018204', '23.458019', '156.614304', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176800, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411197', 1411197, '211.473099', '23.453070', '169.805405', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176528, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411198', 1411198, '209.800598', '23.457560', '211.348297', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176256, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411202', 1411202, '205.811798', '24.000139', '204.175003', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175984, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411203', 1411203, '226.011993', '23.536930', '175.448105', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175712, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411206', 1411206, '227.024994', '24.063431', '228.666702', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175440, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411207', 1411207, '224.858200', '23.422550', '230.009598', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175168, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411208', 1411208, '234.736603', '23.544621', '214.365707', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411210', 1411210, '233.020493', '23.453070', '214.312897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411213', 1411213, '213.946701', '23.453070', '226.459106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411214', 1411214, '211.749405', '23.453070', '228.168106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411218', 1411218, '228.444595', '23.457581', '165.045898', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411220', 1411220, '382.833496', '13.565220', '79.972481', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159876, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411222', 1411222, '374.288513', '12.161390', '84.031380', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158516, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411223', 1411223, '409.964111', '18.326040', '60.501968', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159604, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411225', 1411225, '411.001709', '26.138660', '123.399696', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158788, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411227', 1411227, '436.179108', '32.211750', '101.823402', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159060, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411228', 1411228, '439.383514', '32.761070', '98.649529', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157972, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411233', 1411233, '-58.666859', '-4.080153', '-116.513397', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134082, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411234', 1411234, '-111.996201', '6.549166', '-145.525208', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411235', 1411235, '-123.994698', '12.085680', '-163.495407', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411236', 1411236, '-120.946297', '10.817430', '-167.745193', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411237', 1411237, '-179.948700', '2.732331', '-103.572197', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411238', 1411238, '-212.568405', '1.504992', '-84.178993', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97676, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411240', 1411240, '-212.756607', '1.846313', '-94.163452', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96316, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411241', 1411241, '-214.172699', '1.359615', '-82.278023', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96044, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411242', 1411242, '-213.856293', '1.439267', '-83.871033', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96588, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411244', 1411244, '-193.905304', '2.125694', '-41.069290', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97948, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411253', 1411253, '-56.382130', '-4.928711', '-94.529694', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411254', 1411254, '-20.293131', '-2.590379', '-100.341103', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411255', 1411255, '-23.246990', '0.393718', '-138.153305', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411256', 1411256, '-59.128750', '0.758792', '-164.202393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411655', 1411655, '-92.954361', '1.786075', '-122.393898', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411656', 1411656, '-93.869904', '1.736482', '-119.067497', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411657', 1411657, '-109.805397', '6.718060', '-150.029800', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411658', 1411658, '-176.756607', '2.961861', '-114.443398', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1411659', 1411659, '-205.790604', '2.068845', '-61.951530', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412058', 1412058, '-196.154800', '1.939114', '-25.589430', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412059', 1412059, '-163.822601', '0.087921', '-11.411790', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412062', 1412062, '71.492859', '-11.893120', '161.389404', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412463', 1412463, '107.728401', '-8.259025', '159.304703', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412464', 1412464, '108.796501', '-7.985859', '156.375000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412465', 1412465, '45.309830', '-13.145570', '164.612595', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412467', 1412467, '86.263412', '-10.238450', '166.918396', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412470', 1412470, '43.860840', '-19.453880', '194.128098', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412471', 1412471, '40.686970', '-20.436541', '199.194107', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412474', 1412474, '83.274986', '-19.705959', '207.342194', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412475', 1412475, '56.498798', '-24.125010', '265.742401', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412476', 1412476, '56.595661', '-23.666790', '269.184387', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412477', 1412477, '67.313408', '-23.280479', '279.101715', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412478', 1412478, '130.256897', '-28.458679', '285.610504', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412480', 1412480, '84.874817', '-11.151300', '170.539902', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412482', 1412482, '48.863239', '-15.723400', '175.131393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412483', 1412483, '91.596550', '-15.216650', '191.087204', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412484', 1412484, '40.536888', '-24.919319', '239.885193', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412486', 1412486, '12.541730', '-30.409491', '274.885712', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412488', 1412488, '84.885887', '-24.795959', '238.330597', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412489', 1412489, '100.537003', '-25.090691', '289.606689', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412890', 1412890, '192.974106', '-32.093040', '371.993805', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412891', 1412891, '174.770096', '-30.985760', '392.154999', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412892', 1412892, '169.164200', '-29.940310', '393.395111', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412893', 1412893, '172.161407', '-30.924379', '389.056885', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412894', 1412894, '171.285507', '-29.285271', '402.230988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412895', 1412895, '154.779907', '-26.129629', '405.514008', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412896', 1412896, '168.913696', '-28.561871', '440.527588', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412897', 1412897, '173.811401', '-24.163700', '462.640015', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412898', 1412898, '172.581100', '-23.212021', '466.157715', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412900', 1412900, '157.804596', '-31.533340', '347.603088', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412901', 1412901, '181.335403', '-32.472290', '364.442596', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412902', 1412902, '173.037506', '-29.813890', '400.369385', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412903', 1412903, '215.503098', '-32.150810', '397.756897', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412904', 1412904, '151.140594', '-25.314760', '448.172699', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1412905', 1412905, '174.771194', '-22.925610', '465.693207', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413304', 1413304, '-10.375770', '-30.070101', '357.174011', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120482, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413305', 1413305, '-73.187973', '-29.638651', '377.182007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120210, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413306', 1413306, '7.099501', '-28.323009', '389.698700', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119938, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413307', 1413307, '-25.474409', '-30.239300', '288.173004', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413309', 1413309, '2.871708', '-26.996679', '314.962891', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413310', 1413310, '-43.682961', '-31.251160', '365.171295', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413311', 1413311, '-60.904331', '-32.109970', '348.252411', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413312', 1413312, '-26.264040', '-32.967579', '411.424805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413711', 1413711, '1.843092', '-32.621689', '440.420288', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413712', 1413712, '-47.684052', '-34.975368', '436.820007', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413713', 1413713, '-62.874069', '-35.826691', '451.367706', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413714', 1413714, '-36.040771', '-30.235821', '405.258087', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117496, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(7, 'f1f1_client_benchmark', 'bnpc1413715', 1413715, '-77.531143', '-35.740108', '463.920013', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413716', 1413716, '-81.834183', '-35.561951', '465.537415', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413717', 1413717, '-81.132263', '-36.687901', '482.108704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413718', 1413718, '-64.000313', '-36.181229', '492.846497', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413719', 1413719, '-45.209900', '-36.768280', '469.442810', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413721', 1413721, '-49.479870', '-31.658331', '420.700195', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413723', 1413723, '-61.146591', '-34.546021', '439.197601', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413724', 1413724, '-12.636190', '-34.818890', '433.701904', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413725', 1413725, '-21.261789', '-35.776421', '463.813293', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1413726', 1413726, '-80.766037', '-35.860481', '467.917786', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1414923', 1414923, '-251.624496', '8.046767', '9.209213', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1414924', 1414924, '-237.355103', '14.172800', '56.681469', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1414925', 1414925, '-240.865097', '13.064570', '51.144550', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1414928', 1414928, '-261.738007', '16.472500', '59.800060', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1414929', 1414929, '-271.273499', '19.264000', '95.431259', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1414931', 1414931, '-299.224915', '20.999870', '171.197403', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1414932', 1414932, '-335.657013', '21.199930', '166.262405', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1414935', 1414935, '-333.186493', '21.314899', '161.005798', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1414936', 1414936, '-351.155914', '21.194731', '192.767197', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1414938', 1414938, '-239.843002', '7.295271', '0.194433', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415337', 1415337, '-263.631592', '17.193020', '61.247459', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415339', 1415339, '-340.596497', '21.199930', '161.368500', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415340', 1415340, '-332.306000', '21.000000', '208.378098', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415341', 1415341, '-328.043915', '21.000000', '211.118393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415342', 1415342, '-292.652802', '20.981110', '203.265396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415343', 1415343, '-87.174072', '-39.921982', '291.489105', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415344', 1415344, '-112.985397', '-40.020420', '312.799713', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415345', 1415345, '-86.737244', '-40.184792', '302.023285', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415346', 1415346, '-116.616600', '-40.014709', '309.506805', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415347', 1415347, '-244.678497', '66.147812', '-179.125702', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415348', 1415348, '-241.352005', '66.788689', '-178.362701', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415352', 1415352, '-351.735809', '67.765259', '-226.093002', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415353', 1415353, '-354.085602', '67.313278', '-222.043106', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415354', 1415354, '-354.115387', '66.529556', '-254.235596', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415358', 1415358, '-429.221008', '60.624039', '-145.159103', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415359', 1415359, '-431.571014', '61.023251', '-141.100204', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415360', 1415360, '-409.323303', '61.264919', '-120.927803', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415361', 1415361, '-290.298706', '60.229500', '-115.695396', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415364', 1415364, '-313.710297', '62.882381', '-46.982571', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415365', 1415365, '-308.186493', '62.943420', '-50.370079', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72208, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415367', 1415367, '-304.768494', '62.180470', '-99.076874', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72480, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415368', 1415368, '-275.257507', '60.807152', '-84.214577', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71664, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415375', 1415375, '-262.012695', '62.577202', '-39.993938', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415376', 1415376, '-417.990387', '64.377762', '-51.102509', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415377', 1415377, '-416.159302', '65.476410', '-55.924358', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415378', 1415378, '-446.097504', '57.907940', '-22.476589', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415379', 1415379, '-454.154297', '61.631142', '-28.213980', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415381', 1415381, '-285.852814', '61.458679', '25.148211', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415382', 1415382, '-414.267212', '60.471451', '-98.405472', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415383', 1415383, '-462.152802', '62.699409', '-106.490501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1415384', 1415384, '-465.866913', '62.824699', '-107.035797', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1416355', 1416355, '184.649399', '-7.461709', '-54.703640', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173518, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1418012', 1418012, '397.388092', '18.876289', '87.758537', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149848, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc1418013', 1418013, '272.692596', '-2.411928', '61.854092', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150120, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154901', 2154901, '-288.593994', '59.581390', '-121.735901', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64604, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154903', 2154903, '-303.822388', '59.830570', '-130.571503', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154910', 2154910, '-290.943787', '61.814331', '-175.341400', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64876, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154912', 2154912, '-384.725800', '64.377808', '-230.792694', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154914', 2154914, '-416.247894', '61.594559', '-135.801102', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154915', 2154915, '-397.116089', '56.778770', '-87.632607', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154916', 2154916, '-408.031494', '53.104481', '35.133572', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154917', 2154917, '-274.891388', '62.760250', '-48.600040', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154925', 2154925, '-365.255188', '56.015820', '61.905800', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154932', 2154932, '-452.140106', '63.523258', '-235.614594', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92276, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154933', 2154933, '-486.564514', '58.060532', '-222.186707', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154938', 2154938, '-449.027313', '55.863232', '-205.401703', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91732, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154939', 2154939, '-453.788086', '56.259960', '-203.845306', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91460, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154940', 2154940, '-449.607086', '55.100281', '-200.518799', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91188, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154941', 2154941, '-459.128693', '64.652428', '-264.026886', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154943', 2154943, '-483.543213', '58.182598', '-215.136993', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90112, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154944', 2154944, '-488.316101', '67.415604', '-265.598907', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154945', 2154945, '-487.007385', '67.617432', '-267.616608', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90916, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154950', 2154950, '-508.114197', '73.937157', '-289.616486', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154952', 2154952, '-505.210999', '72.800743', '-287.708893', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154954', 2154954, '-475.800293', '75.099243', '-316.311890', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88486, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154959', 2154959, '-474.076904', '71.450668', '-300.198914', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154963', 2154963, '-481.180389', '74.270866', '-319.393005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88752, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154965', 2154965, '-509.328613', '51.460609', '-230.011002', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154966', 2154966, '-530.510376', '48.020088', '-245.654999', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87670, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154968', 2154968, '-550.774414', '46.775639', '-245.014099', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154969', 2154969, '-546.684998', '46.860470', '-244.251205', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154970', 2154970, '-545.647400', '50.522579', '-203.540100', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154971', 2154971, '-547.356384', '51.163448', '-199.786407', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154973', 2154973, '-572.310486', '49.567921', '-226.453506', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90644, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154974', 2154974, '-564.080322', '50.297001', '-211.993607', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154976', 2154976, '-508.251099', '57.374981', '-255.303207', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154978', 2154978, '-533.645081', '43.546291', '-230.397507', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154980', 2154980, '-468.316010', '57.494301', '-212.252502', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154982', 2154982, '-485.247803', '68.405968', '-274.754211', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154983', 2154983, '-505.135406', '73.043167', '-290.313904', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154985', 2154985, '-528.526672', '48.142170', '-244.495300', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2154986', 2154986, '-568.407227', '50.556568', '-214.304596', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320574', 2320574, '261.921387', '1.753539', '-223.409698', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210786, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320575', 2320575, '261.238495', '0.534709', '-243.419296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320576', 2320576, '263.797699', '1.764011', '-223.470901', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320577', 2320577, '259.453186', '1.043279', '-240.840607', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320579', 2320579, '274.919800', '-1.072963', '-256.170593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209698, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320580', 2320580, '300.060089', '-0.888014', '-307.572510', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320581', 2320581, '324.245514', '-1.093548', '-288.072113', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320582', 2320582, '298.274811', '-0.855762', '-304.993805', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320583', 2320583, '325.011292', '-1.286943', '-316.835388', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208610, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320584', 2320584, '287.788513', '-0.475198', '-298.277313', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208338, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320585', 2320585, '329.843903', '-0.745502', '-290.159698', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320586', 2320586, '325.924103', '-0.928046', '-285.067993', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320587', 2320587, '327.193207', '-1.286943', '-313.833496', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207522, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320588', 2320588, '337.177185', '0.441468', '-264.191803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207250, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320589', 2320589, '332.682892', '0.959346', '-254.439896', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206978, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320590', 2320590, '329.305206', '0.991071', '-252.106293', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206706, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320591', 2320591, '304.253815', '-0.643113', '-258.978912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320596', 2320596, '346.493591', '-0.483981', '-328.131287', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206162, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320597', 2320597, '302.790710', '-1.010156', '-352.830505', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320598', 2320598, '273.957489', '-0.689871', '-328.818512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205618, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320599', 2320599, '268.469910', '-0.593068', '-327.086395', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205346, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320600', 2320600, '267.525513', '-0.806307', '-329.538208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205074, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320601', 2320601, '276.737091', '0.547026', '-314.840912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320610', 2320610, '288.781494', '-1.187131', '-281.665588', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320612', 2320612, '330.290802', '-1.286943', '-344.531311', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320617', 2320617, '92.850220', '-10.902450', '173.235596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320637', 2320637, '-108.605698', '-30.528610', '272.296295', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320638', 2320638, '-138.649902', '-23.382610', '264.698212', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320639', 2320639, '-99.474327', '-30.263571', '271.854614', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320641', 2320641, '-170.286606', '-27.619471', '297.813995', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320642', 2320642, '-171.781998', '-27.505461', '288.445007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320643', 2320643, '-165.769897', '-27.707670', '293.053192', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320645', 2320645, '-125.383400', '-25.040100', '360.402802', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320646', 2320646, '-137.475906', '-27.672729', '336.516113', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320647', 2320647, '-141.819901', '-30.193661', '309.942688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320649', 2320649, '-59.102539', '-28.549570', '296.388702', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320650', 2320650, '277.147400', '-31.644880', '389.827209', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320651', 2320651, '250.690399', '-30.350241', '408.346588', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106362, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320652', 2320652, '274.666290', '-31.273550', '391.993988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320654', 2320654, '299.640686', '-31.632290', '402.348511', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320655', 2320655, '300.434814', '-32.791679', '411.978302', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320656', 2320656, '342.732788', '-31.784590', '408.346588', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320658', 2320658, '308.735687', '-32.272881', '398.214600', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320659', 2320659, '329.910309', '-31.601860', '408.307800', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320660', 2320660, '332.175415', '-31.647480', '410.657013', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320661', 2320661, '344.838593', '-31.113190', '440.115906', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320664', 2320664, '144.316299', '-22.573250', '513.925293', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320665', 2320665, '141.166702', '-21.478600', '518.533508', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320666', 2320666, '165.008896', '-23.196131', '497.355591', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320667', 2320667, '137.956802', '-21.858990', '489.646698', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103642, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320668', 2320668, '130.324295', '-19.810080', '417.345490', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320669', 2320669, '98.407799', '-20.697760', '221.536407', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320671', 2320671, '97.314743', '-11.800020', '101.237198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320675', 2320675, '135.972794', '-11.800140', '133.207794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320678', 2320678, '185.468796', '-11.800210', '106.268402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320683', 2320683, '188.220001', '-11.825790', '62.851860', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320688', 2320688, '201.678406', '-11.795270', '23.117371', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320694', 2320694, '260.142914', '-12.002980', '-90.756157', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320695', 2320695, '258.451996', '-12.002920', '-92.319710', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320696', 2320696, '257.085999', '-12.006830', '-154.938705', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320697', 2320697, '264.474091', '-12.313630', '-187.969193', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320721', 2320721, '396.475098', '20.645411', '107.225098', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159332, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320722', 2320722, '419.413391', '27.114370', '102.443001', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158244, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320725', 2320725, '-159.887802', '18.109520', '-68.195572', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320727', 2320727, '-170.536102', '27.551260', '-85.891403', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320728', 2320728, '-170.885803', '27.966640', '-89.178688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320732', 2320732, '-547.753174', '19.485781', '-191.943298', 30, 0, 0, 0, 2, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63894, 1, 0, 0, 0, 0, 0, 4302234, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320790', 2320790, '-439.475098', '48.996670', '43.930679', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320791', 2320791, '-432.144196', '49.318508', '-4.165760', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320793', 2320793, '-242.034393', '58.664711', '38.845100', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320794', 2320794, '-206.227997', '57.382519', '52.006420', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320797', 2320797, '-193.570099', '74.743111', '21.367661', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320800', 2320800, '-238.635895', '62.272018', '25.375710', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2320801', 2320801, '-219.805405', '67.608017', '9.079071', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2341782', 2341782, '345.014008', '-1.078350', '-177.896896', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2341783', 2341783, '319.296997', '-0.849605', '-171.347198', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2341784', 2341784, '292.707397', '-6.651216', '-123.136101', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2341785', 2341785, '347.310486', '6.679530', '84.092422', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2341786', 2341786, '354.267487', '5.193762', '60.841671', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2341787', 2341787, '348.283203', '3.086715', '49.707630', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2603191', 2603191, '256.015594', '-11.793030', '-185.891006', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164850, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2603192', 2603192, '260.232605', '-11.793140', '-180.095505', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164578, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612552', 2612552, '252.195404', '-11.793090', '-145.885406', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164306, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612553', 2612553, '254.433395', '-11.793010', '-113.328796', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164034, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612554', 2612554, '258.838715', '-11.793140', '-73.879280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163762, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612555', 2612555, '233.580307', '-11.793010', '-18.570280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163490, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612556', 2612556, '216.695099', '-11.793000', '8.959249', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163218, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612557', 2612557, '212.512299', '-11.795270', '12.741240', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162946, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612559', 2612559, '120.048798', '-11.800060', '124.326401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162680, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612561', 2612561, '191.515900', '-11.856310', '51.102409', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162408, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612562', 2612562, '189.768997', '-11.800210', '71.478256', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162136, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612563', 2612563, '192.239395', '-11.800030', '91.385788', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161864, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612564', 2612564, '179.480606', '-11.800260', '106.735802', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161592, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612565', 2612565, '165.069794', '-11.800630', '119.881798', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161320, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612566', 2612566, '146.988297', '-11.800000', '126.311401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161048, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612569', 2612569, '132.474792', '-11.800090', '139.979294', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160776, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612570', 2612570, '250.133804', '-11.793030', '-55.898849', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160498, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612571', 2612571, '205.980301', '-11.772920', '33.134300', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160226, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612573', 2612573, '421.064514', '24.757450', '78.823257', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2612574', 2612574, '428.320709', '31.721590', '124.805603', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157428, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2615184', 2615184, '360.341705', '-32.028728', '435.294006', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2615186', 2615186, '375.478699', '-32.089771', '448.966095', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2615187', 2615187, '382.955597', '-31.998211', '440.878815', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2615503', 2615503, '253.211594', '-11.793080', '-161.360504', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154514, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc2615504', 2615504, '253.937607', '-11.793030', '-68.861298', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154242, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693097', 3693097, '-224.085602', '1.055553', '-69.316994', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693102', 3693102, '-195.941101', '2.945007', '-104.081802', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96860, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693103', 3693103, '-189.283005', '2.362727', '-83.005783', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97404, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693105', 3693105, '-210.620300', '1.998901', '-96.299683', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95500, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693109', 3693109, '-195.513901', '2.216981', '-40.186169', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95228, 1, 0, 0, 0, 0, 30060, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(7, 'f1f1_client_benchmark', 'bnpc3693111', 3693111, '-200.096695', '2.060742', '-67.256340', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693121', 3693121, '368.459503', '-32.364429', '413.199005', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693136', 3693136, '242.206406', '-30.411280', '402.182007', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693138', 3693138, '225.451996', '-28.488640', '423.605713', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693140', 3693140, '215.350494', '-32.486500', '387.777496', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693173', 3693173, '-508.842590', '40.237991', '-79.606361', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693174', 3693174, '-516.899414', '40.146439', '-74.967621', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693175', 3693175, '-514.549500', '40.207470', '-77.103882', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85228, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693176', 3693176, '-520.866821', '40.146439', '-64.255783', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693177', 3693177, '-515.685120', '40.359970', '-54.677021', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693178', 3693178, '-503.929199', '41.000938', '-56.107471', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693179', 3693179, '-483.658691', '45.245129', '-60.343559', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693180', 3693180, '-481.533905', '45.933941', '-62.817669', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693183', 3693183, '-378.957794', '51.132931', '52.109509', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693184', 3693184, '-397.512787', '49.301849', '10.055650', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693185', 3693185, '-433.121094', '49.318531', '34.558170', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693188', 3693188, '-322.396393', '57.338970', '-6.726664', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65686, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693623', 3693623, '-184.619797', '78.429970', '42.778721', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3693624', 3693624, '-191.994202', '77.183746', '37.510250', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72746, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3694403', 3694403, '-314.266113', '63.832611', '57.746510', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3742079', 3742079, '-530.733887', '65.311684', '98.466423', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3742133', 3742133, '-526.186829', '65.311691', '102.647400', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3742194', 3742194, '48.050610', '-11.800030', '-40.915428', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153976, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3742195', 3742195, '22.187790', '-11.800000', '-69.750504', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153704, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3742196', 3742196, '15.168640', '-11.800000', '-75.762558', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153432, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3742197', 3742197, '6.348711', '-11.800040', '-110.540199', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153160, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3742198', 3742198, '-54.153049', '-3.500003', '-186.530106', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152888, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3742199', 3742199, '-50.919399', '-3.500001', '-182.895996', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152616, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3742200', 3742200, '-69.779549', '-3.500144', '-196.820496', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152344, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3742201', 3742201, '-62.272110', '-3.500066', '-207.843399', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152072, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3742202', 3742202, '2.735321', '-11.800110', '-122.937599', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151782, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3742203', 3742203, '-6.886642', '-3.500000', '-135.990402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3742204', 3742204, '-6.586641', '-3.500000', '-139.267899', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3742205', 3742205, '-36.719379', '-3.500000', '-180.416794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150966, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3742206', 3742206, '-48.687111', '-3.500072', '-207.096298', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150694, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3746465', 3746465, '-208.691696', '52.495350', '-42.669102', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71120, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3746466', 3746466, '-219.824799', '58.286751', '-60.483898', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3746467', 3746467, '-215.491898', '57.635231', '-71.491089', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70576, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3869502', 3869502, '125.699600', '25.160120', '-311.621185', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41108, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3869509', 3869509, '-307.502899', '63.448620', '-285.687714', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40842, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3869525', 3869525, '-206.130997', '53.564651', '-126.977600', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40564, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3869531', 3869531, '96.403351', '-6.334397', '-121.433502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40298, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3869540', 3869540, '164.007095', '-6.013201', '-52.486290', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.750000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40020, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3869598', 3869598, '-4.837158', '-7.919495', '-22.201900', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39760, 5, 0, 20, 0, 0, 30055, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3869604', 3869604, '85.465698', '-6.089244', '60.991131', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39482, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3869607', 3869607, '14.362120', '-8.102512', '100.498901', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39204, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3877513', 3877513, '121.019203', '24.917931', '-304.463287', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204518, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3884907', 3884907, '-419.228607', '55.416000', '66.506737', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3897658', 3897658, '117.021400', '25.101040', '-311.604492', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204258, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc3898007', 3898007, '132.524597', '24.948450', '-305.562012', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203974, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4083772', 4083772, '-327.757690', '21.357790', '204.228699', 58, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 5782, 1, 0, 0, 0, 0, 0, 4083771, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4083778', 4083778, '-297.044800', '21.140360', '151.049896', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 8174, 1, 0, 0, 0, 0, 0, 4083775, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4083795', 4083795, '-327.840088', '21.103210', '206.835907', 58, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6054, 1, 0, 0, 0, 0, 0, 4083794, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4083796', 4083796, '-296.744812', '21.145109', '151.349899', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7662, 1, 0, 0, 0, 0, 0, 4083797, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4083798', 4083798, '-296.444794', '21.149870', '151.649902', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7278, 1, 0, 0, 0, 0, 0, 4083799, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4083800', 4083800, '-296.144806', '21.154619', '151.949905', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6894, 1, 0, 0, 0, 0, 0, 4083801, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4083802', 4083802, '-295.844788', '21.159370', '152.249893', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6510, 1, 0, 0, 0, 0, 0, 4083803, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4083871', 4083871, '127.641701', '-6.332520', '-100.389198', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38544, 8, 0, 0, 4295658, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4295672', 4295672, '132.951797', '-6.332520', '-100.114502', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37512, 8, 0, 0, 4295661, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4295673', 4295673, '137.910706', '-6.438695', '-96.608414', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37240, 8, 0, 0, 4295662, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4295675', 4295675, '126.695297', '-6.948534', '-90.459633', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36968, 8, 0, 0, 4295663, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4295677', 4295677, '126.418900', '-6.971872', '-84.529358', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36696, 8, 0, 0, 4295664, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4296957', 4296957, '95.628906', '-2.029270', '-42.382439', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35816, 1, 0, 0, 2280260, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4296958', 4296958, '98.693558', '-2.029731', '-43.942860', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35544, 1, 0, 0, 2280261, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4296959', 4296959, '101.467598', '-2.005454', '-46.176739', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35272, 1, 0, 0, 2280262, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4296960', 4296960, '104.146896', '-1.968804', '-48.332958', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35000, 1, 0, 0, 2280263, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302206', 4302206, '-555.148071', '29.067560', '-230.785706', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302207', 4302207, '-516.437683', '22.056881', '-221.606796', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302208', 4302208, '-524.244812', '24.477020', '-253.274597', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302209', 4302209, '-527.577820', '24.719191', '-254.932404', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302212', 4302212, '-582.818420', '21.723471', '-238.845596', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302213', 4302213, '-596.266602', '20.622200', '-226.349106', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302214', 4302214, '-579.272827', '21.076719', '-214.966003', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302215', 4302215, '-581.780823', '21.842831', '-241.897293', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302216', 4302216, '-528.772888', '19.922779', '-195.839096', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61374, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302217', 4302217, '-537.197327', '20.139130', '-199.348495', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302218', 4302218, '-563.208191', '18.867491', '-186.546005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302219', 4302219, '-527.765808', '20.129919', '-200.682007', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302220', 4302220, '-569.817627', '10.940670', '-130.235794', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302221', 4302221, '-617.120605', '21.896610', '-197.436493', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302222', 4302222, '-575.432983', '11.001710', '-129.716995', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302223', 4302223, '-568.810608', '10.910160', '-133.318100', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302225', 4302225, '-502.711792', '17.279470', '-157.029495', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59204, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302226', 4302226, '-496.089386', '16.799740', '-160.630707', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58938, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302228', 4302228, '-481.979004', '18.189381', '-229.549103', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302229', 4302229, '-555.941528', '25.463579', '-260.210693', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302351', 4302351, '-572.925293', '18.257090', '-181.740707', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57718, 1, 0, 0, 0, 0, 0, 4302260, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4302353', 4302353, '-513.667175', '23.842480', '-245.333893', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57446, 1, 0, 0, 0, 0, 0, 4302268, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4333043', 4333043, '-309.205597', '57.338970', '-10.110600', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4333385', 4333385, '-348.321503', '67.616417', '-233.774200', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4510293', 4510293, '213.253204', '-32.025242', '324.145386', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38950, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4621046', 4621046, '370.051086', '-32.295422', '411.821198', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42124, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(7, 'f1f1_client_benchmark', 'bnpc4621047', 4621047, '-538.803589', '50.907551', '-203.075394', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41858, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132780', 1132780, '42.705971', '6.489012', '-222.119598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132784', 1132784, '43.994171', '7.081282', '-226.261307', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132785', 1132785, '46.368141', '6.532326', '-222.363800', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230902, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132786', 1132786, '50.249649', '8.663927', '-237.583603', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132810', 1132810, '119.142403', '17.274370', '-264.585907', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132815', 1132815, '53.141479', '4.367238', '-208.718597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132818', 1132818, '57.950279', '4.701855', '-181.906006', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132819', 1132819, '53.380199', '3.647015', '-170.941803', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132823', 1132823, '85.892982', '4.386182', '-186.633102', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132827', 1132827, '136.440002', '-0.215091', '-142.126297', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132829', 1132829, '139.586502', '1.436886', '-162.906296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132833', 1132833, '144.692596', '1.594073', '-161.313507', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132834', 1132834, '169.345306', '-0.575563', '-143.321701', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132835', 1132835, '132.885803', '4.471908', '-182.040894', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132836', 1132836, '127.652000', '2.679112', '-179.060898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132837', 1132837, '133.402802', '5.498395', '-185.220093', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132842', 1132842, '104.130501', '4.751109', '-199.651596', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132988', 1132988, '145.939301', '0.761501', '-119.501801', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132990', 1132990, '165.896698', '-0.582151', '-142.284103', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132991', 1132991, '196.646301', '-2.798964', '-155.795898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132992', 1132992, '159.011398', '0.196450', '-113.407997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226012, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1132993', 1132993, '162.856598', '-0.357008', '-115.116997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225740, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133000', 1133000, '202.288803', '-2.206049', '-168.963196', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225468, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133001', 1133001, '223.772705', '-6.852091', '-140.217407', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225196, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133002', 1133002, '206.683395', '-2.759299', '-171.221497', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224924, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133005', 1133005, '231.146698', '-5.044106', '-178.307693', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224652, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133007', 1133007, '242.902496', '-0.494766', '-191.458496', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224380, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133008', 1133008, '239.977493', '-0.588080', '-191.828400', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224108, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133010', 1133010, '221.392303', '-6.460419', '-138.050598', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223836, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133022', 1133022, '332.788513', '-3.345333', '-151.251495', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201534, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133023', 1133023, '298.603699', '-6.332541', '-125.749603', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133029', 1133029, '302.693298', '-3.341390', '-184.143005', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133031', 1133031, '328.386993', '-0.505648', '-187.936401', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133032', 1133032, '342.892487', '-1.328422', '-175.218201', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133035', 1133035, '358.327515', '-2.255364', '-175.310898', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133036', 1133036, '335.507294', '0.561625', '-194.418793', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133042', 1133042, '439.946808', '10.149250', '-108.177101', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169468, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133044', 1133044, '458.584900', '14.997390', '-90.379593', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169740, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133047', 1133047, '463.401215', '25.778530', '-35.324680', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168380, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133049', 1133049, '445.243591', '31.812080', '-9.685579', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168652, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133052', 1133052, '486.745514', '31.609249', '-44.177990', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168924, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133053', 1133053, '487.618011', '31.024900', '-55.958771', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170012, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133054', 1133054, '483.304291', '30.900890', '-51.161331', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172188, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133056', 1133056, '482.511993', '23.910801', '-88.545013', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173276, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133057', 1133057, '480.679291', '24.104330', '-120.189201', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169196, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133063', 1133063, '504.435913', '29.146271', '-83.562149', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173004, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133064', 1133064, '482.169495', '24.010910', '-92.475502', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172732, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133065', 1133065, '459.642914', '24.454941', '-39.719559', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172460, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133066', 1133066, '453.938690', '26.000799', '-33.810230', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170828, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133070', 1133070, '351.512787', '3.052480', '46.861389', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133071', 1133071, '341.298492', '3.983801', '67.704231', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133072', 1133072, '348.626495', '0.976962', '28.015940', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133073', 1133073, '342.183502', '0.098491', '27.298340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133077', 1133077, '309.071411', '-2.609340', '63.065491', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133080', 1133080, '281.574707', '-7.184652', '26.169170', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133098', 1133098, '289.254913', '-5.168305', '48.585239', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133100', 1133100, '291.498688', '-5.368438', '47.821369', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133126', 1133126, '-82.030632', '1.519239', '-141.488693', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148770, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133128', 1133128, '-77.317497', '1.083344', '-136.644608', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148498, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133130', 1133130, '-63.375290', '0.643326', '-166.887497', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148226, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133131', 1133131, '-64.313164', '0.965167', '-162.181503', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147954, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133132', 1133132, '-75.591331', '1.176651', '-142.404297', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147682, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133138', 1133138, '-33.189919', '-4.914308', '-94.149628', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147410, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133148', 1133148, '86.244072', '-19.783070', '210.247406', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133152', 1133152, '70.510750', '-17.727341', '188.296799', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133156', 1133156, '56.609531', '-22.226370', '292.790710', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133163', 1133163, '25.970390', '-24.061230', '233.649994', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133165', 1133165, '37.231960', '-26.765560', '260.079498', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133167', 1133167, '36.484268', '-25.833570', '242.542099', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133172', 1133172, '94.585983', '-24.244490', '288.477509', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133176', 1133176, '98.126083', '-23.363501', '294.977814', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133177', 1133177, '85.597298', '-27.953020', '268.263000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133178', 1133178, '89.747749', '-28.194380', '266.065704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133179', 1133179, '141.949905', '-28.936390', '333.222290', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133181', 1133181, '160.046402', '-31.802570', '350.789795', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133185', 1133185, '164.906906', '-32.018280', '333.485504', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133186', 1133186, '146.226807', '-28.810591', '357.818298', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133187', 1133187, '196.479996', '-32.228100', '370.754303', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133189', 1133189, '179.687897', '-32.476631', '364.163086', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133193', 1133193, '213.929794', '-29.694580', '421.080688', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133194', 1133194, '210.157394', '-29.179230', '422.919312', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133195', 1133195, '202.300293', '-31.331381', '415.743286', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133196', 1133196, '197.350098', '-27.568890', '432.363586', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133197', 1133197, '127.580299', '-21.390261', '452.635986', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133198', 1133198, '140.825500', '-23.697309', '449.881714', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133199', 1133199, '140.459198', '-23.605749', '454.489899', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133202', 1133202, '12.397950', '-27.619690', '294.880493', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133205', 1133205, '-18.143021', '-24.734921', '265.369598', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133206', 1133206, '-12.771850', '-24.094040', '262.958710', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133207', 1133207, '-9.199866', '-28.976500', '329.645294', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140338, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133209', 1133209, '-28.712330', '-27.396271', '280.689209', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140066, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133235', 1133235, '-294.825012', '66.698837', '-219.308807', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94446, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133239', 1133239, '-293.659912', '67.460083', '-222.491806', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94174, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133246', 1133246, '-302.510101', '60.959740', '-159.319504', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93902, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133248', 1133248, '-302.700409', '62.132381', '-166.402496', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133255', 1133255, '-356.364685', '65.308533', '-258.518585', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133257', 1133257, '-369.039490', '65.567993', '-232.715393', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133258', 1133258, '-392.416290', '67.276978', '-249.713898', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133287', 1133287, '197.283798', '-8.773984', '-27.176359', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133291', 1133291, '211.352707', '-8.651912', '-43.106781', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133293', 1133293, '157.305206', '-7.888961', '-17.929399', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133294', 1133294, '157.244202', '-8.163623', '-11.917340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133298', 1133298, '120.449799', '-4.840655', '13.528090', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1133303', 1133303, '104.203796', '-7.003938', '47.562321', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135577', 1135577, '335.133911', '-4.725379', '-24.794729', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196916, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135582', 1135582, '371.054596', '0.844982', '-35.208488', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196644, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135586', 1135586, '374.433105', '1.702958', '-25.284241', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135591', 1135591, '345.784607', '-2.975556', '-32.761169', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135593', 1135593, '332.478790', '-3.372291', '3.097534', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135605', 1135605, '395.773193', '2.548209', '-44.693722', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135606', 1135606, '415.025085', '5.625315', '-64.068764', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135607', 1135607, '388.509888', '0.304810', '-66.453087', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135612', 1135612, '394.000214', '3.556523', '-87.144318', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135613', 1135613, '375.936493', '0.686609', '-85.923592', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135614', 1135614, '343.831512', '-5.020265', '-80.094650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194196, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(9, 'f1f1_intel', 'bnpc1135616', 1135616, '409.009888', '5.209702', '-112.078003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135617', 1135617, '417.517700', '5.755183', '-68.232597', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135618', 1135618, '412.284607', '5.636008', '-106.424400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135619', 1135619, '406.314209', '5.571515', '-103.380302', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135624', 1135624, '386.668915', '4.336706', '-103.087303', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135625', 1135625, '364.309509', '0.784262', '-125.017197', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135627', 1135627, '359.853485', '-2.578822', '-152.483398', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135628', 1135628, '350.999207', '-2.118987', '-128.300003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135629', 1135629, '316.613586', '8.015758', '128.187897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135632', 1135632, '323.190002', '9.736116', '132.826904', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135633', 1135633, '322.078613', '10.136940', '134.004807', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135639', 1135639, '288.849091', '17.952721', '161.725601', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135643', 1135643, '286.915314', '19.626829', '172.441101', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135645', 1135645, '295.765594', '16.383280', '167.437195', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135646', 1135646, '318.979004', '13.831220', '155.957001', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135647', 1135647, '290.314087', '17.922770', '159.804199', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135651', 1135651, '-262.056305', '55.970860', '36.748020', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135671', 1135671, '-462.059692', '64.698357', '68.829857', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135673', 1135673, '-398.458893', '51.156910', '68.804077', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83602, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135685', 1135685, '-418.844910', '58.274151', '-34.409142', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135687', 1135687, '-520.153870', '65.239517', '61.102520', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80888, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135688', 1135688, '-508.781586', '65.293297', '40.634731', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81432, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135931', 1135931, '272.581390', '23.939560', '195.025894', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135933', 1135933, '241.474594', '24.000601', '179.914902', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135937', 1135937, '-101.839104', '-40.043732', '299.745911', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135938', 1135938, '-105.816902', '-40.028461', '306.239807', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135939', 1135939, '-90.198776', '-40.129551', '324.673096', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135940', 1135940, '-94.585022', '-40.032150', '311.676514', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135941', 1135941, '-114.854698', '-40.054981', '302.937286', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135942', 1135942, '-97.734077', '-40.054981', '304.310608', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135943', 1135943, '-102.695999', '-40.032539', '320.445892', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1135944', 1135944, '-83.087273', '-39.867889', '327.616211', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162337', 1162337, '283.977112', '-6.509701', '-148.452805', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162338', 1162338, '281.871399', '-6.690229', '-150.039703', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162341', 1162341, '315.751801', '-4.718813', '-109.327103', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162344', 1162344, '309.980103', '1.983368', '92.979958', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162345', 1162345, '337.067413', '3.266761', '71.050873', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162348', 1162348, '130.357803', '-6.759793', '57.419651', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162351', 1162351, '222.430695', '-7.827925', '-60.441029', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162352', 1162352, '227.527206', '-7.187046', '-66.727753', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162353', 1162353, '203.082306', '-7.339636', '-68.925049', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162354', 1162354, '221.484604', '-7.400672', '-64.011642', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162358', 1162358, '-19.657080', '0.269221', '-140.150803', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162368', 1162368, '112.853699', '-26.954611', '251.195801', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162369', 1162369, '89.158417', '-24.246630', '236.957306', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162371', 1162371, '217.547806', '-31.967699', '395.895294', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162374', 1162374, '-2.485424', '-31.687981', '451.364502', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162376', 1162376, '-10.696620', '-34.134480', '443.381287', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162378', 1162378, '-23.636271', '-35.911461', '462.485596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162380', 1162380, '-61.417610', '-36.118149', '490.745300', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162384', 1162384, '-4.128872', '-28.294901', '327.096588', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162385', 1162385, '-48.920349', '-35.910400', '310.262909', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162386', 1162386, '-66.916382', '-32.083370', '343.644196', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162387', 1162387, '-65.420998', '-31.630421', '353.013306', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162390', 1162390, '-298.542786', '20.650921', '132.768707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162391', 1162391, '-294.392303', '20.060690', '130.388306', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162392', 1162392, '-296.020508', '20.999870', '168.359299', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162393', 1162393, '-297.016907', '20.876789', '122.239998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162394', 1162394, '-208.026505', '3.601872', '2.164479', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162398', 1162398, '-396.566711', '63.980961', '-218.615997', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162399', 1162399, '-347.955994', '66.968529', '-220.251999', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162402', 1162402, '-291.152710', '61.247379', '-168.828796', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162403', 1162403, '-351.183289', '63.740372', '-153.645599', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162412', 1162412, '-365.503204', '62.324249', '-85.497841', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162413', 1162413, '-365.240814', '62.204288', '-87.690971', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162416', 1162416, '-353.685791', '63.380310', '-149.922501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162426', 1162426, '-501.091003', '65.293297', '90.318100', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1162427', 1162427, '-534.918823', '65.381104', '43.912449', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81160, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1180878', 1180878, '104.639297', '-8.000016', '-91.168152', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1180879', 1180879, '105.168701', '-8.000016', '-94.222618', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1180880', 1180880, '106.210297', '-8.000016', '-96.527153', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1183451', 1183451, '104.347603', '-8.000016', '-88.522499', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1183452', 1183452, '101.512100', '-8.064646', '-97.812950', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1183453', 1183453, '100.580399', '-8.000016', '-95.459229', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1183454', 1183454, '99.803108', '-8.184623', '-92.716454', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1183455', 1183455, '99.192757', '-8.361253', '-89.878258', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234346, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1183456', 1183456, '96.327393', '-8.500061', '-99.385361', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1183458', 1183458, '95.550194', '-8.460118', '-96.840134', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1183459', 1183459, '94.825958', '-8.500061', '-93.978119', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1183460', 1183460, '94.179993', '-8.500061', '-90.982887', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1408325', 1408325, '107.492897', '15.984340', '-270.054596', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1408329', 1408329, '119.554398', '17.410500', '-259.693298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1408332', 1408332, '111.600800', '16.549120', '-248.298096', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1408334', 1408334, '117.813103', '17.697479', '-247.780807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1408341', 1408341, '111.814400', '16.758829', '-244.880096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1408351', 1408351, '86.796638', '15.940370', '-262.601105', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1408352', 1408352, '68.921707', '16.132620', '-262.037811', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1408353', 1408353, '68.168861', '16.760660', '-264.307190', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1408357', 1408357, '72.243088', '10.935070', '-243.492706', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1408358', 1408358, '87.101822', '15.245950', '-260.648010', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221122, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410560', 1410560, '103.350998', '14.389260', '-254.875107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410688', 1410688, '50.217388', '6.559038', '-223.468399', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410689', 1410689, '39.352970', '4.053384', '-182.513199', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410690', 1410690, '37.860909', '3.934789', '-183.153900', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410691', 1410691, '55.661430', '4.710185', '-183.981201', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410693', 1410693, '-1.083989', '1.339663', '-188.567398', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219478, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410694', 1410694, '0.474049', '1.531124', '-191.204697', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219206, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410695', 1410695, '8.437746', '1.980624', '-176.756195', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218934, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410696', 1410696, '-15.013690', '1.551492', '-198.619598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218662, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410698', 1410698, '7.450444', '1.514552', '-190.764694', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410699', 1410699, '8.438234', '3.222636', '-146.234497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410700', 1410700, '14.477130', '3.104484', '-138.479904', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410701', 1410701, '16.068541', '3.373573', '-139.535202', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217574, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410703', 1410703, '-15.113390', '3.146425', '-233.722000', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217302, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410704', 1410704, '-4.948251', '4.778366', '-234.155304', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217030, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410705', 1410705, '8.210199', '5.748120', '-247.337402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410707', 1410707, '9.591916', '5.570471', '-251.132996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216498, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410708', 1410708, '5.815275', '5.237663', '-249.501099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216226, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410709', 1410709, '-9.906527', '3.594761', '-217.097595', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215954, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410712', 1410712, '-13.648660', '3.344659', '-231.383408', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215682, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410714', 1410714, '-30.136610', '0.909592', '-224.200897', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410715', 1410715, '48.355789', '9.194451', '-243.366196', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410716', 1410716, '74.908539', '4.285552', '-211.076706', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410851', 1410851, '88.732697', '4.082766', '-185.738998', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215138, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410853', 1410853, '130.975204', '4.971314', '-185.109497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214866, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410976', 1410976, '131.470093', '2.068069', '-173.581100', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214594, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410977', 1410977, '107.495903', '0.653863', '-168.558304', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214322, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410978', 1410978, '142.190598', '1.204836', '-160.400803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214050, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410979', 1410979, '148.032898', '0.649221', '-123.475403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213778, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410982', 1410982, '166.648804', '-1.181116', '-137.457901', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213506, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410983', 1410983, '178.145996', '-1.608972', '-140.621307', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213228, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410984', 1410984, '168.844696', '2.701761', '-163.503296', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212962, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410990', 1410990, '199.114899', '-0.803801', '-174.853195', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212684, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410996', 1410996, '202.197205', '-1.697314', '-172.655899', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212418, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410998', 1410998, '239.098404', '-2.190103', '-187.159805', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212146, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1410999', 1410999, '221.515396', '-6.264487', '-154.155502', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211874, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411000', 1411000, '227.837204', '-8.126032', '-125.948700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211602, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411003', 1411003, '174.579300', '-1.892151', '-102.278099', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411004', 1411004, '182.699707', '-4.339209', '-88.384857', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211058, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411005', 1411005, '161.154007', '4.078132', '-169.399704', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411032', 1411032, '271.173798', '-9.203460', '-119.877403', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411034', 1411034, '330.082886', '-2.640436', '-152.968796', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173790, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411036', 1411036, '305.867188', '-2.983790', '-188.262894', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411037', 1411037, '302.815399', '-3.417479', '-190.063507', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411038', 1411038, '283.192108', '-6.780017', '-171.401596', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411042', 1411042, '287.338715', '-5.114256', '-195.320007', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411049', 1411049, '276.640594', '-8.026556', '-141.155594', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411065', 1411065, '308.725311', '-4.528103', '-80.785583', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411066', 1411066, '311.802795', '-5.117999', '-76.683037', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411069', 1411069, '291.112213', '-5.409167', '-79.667397', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411071', 1411071, '346.714203', '-3.206666', '-41.466160', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411078', 1411078, '264.779999', '-11.621630', '-65.637466', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183878, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411084', 1411084, '234.546997', '-11.793010', '-2.134793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183606, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411085', 1411085, '250.625107', '-8.387555', '28.634951', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183334, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411086', 1411086, '313.420288', '-6.097115', '16.095341', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183038, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411087', 1411087, '314.703308', '-5.599903', '20.012140', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182766, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411119', 1411119, '309.285095', '2.975462', '97.764503', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182494, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411120', 1411120, '326.314087', '2.426137', '90.012917', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182222, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411121', 1411121, '371.612488', '7.304699', '55.979481', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411124', 1411124, '375.810211', '7.175481', '51.219879', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411135', 1411135, '420.071991', '5.244238', '-35.509991', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411136', 1411136, '417.919312', '5.091386', '-39.660309', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411137', 1411137, '425.005402', '6.439638', '-41.263420', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411148', 1411148, '449.318512', '32.509201', '-8.551085', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170556, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411152', 1411152, '505.440613', '42.969250', '-25.847120', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170284, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411155', 1411155, '511.920410', '44.121750', '-42.307079', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171644, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411157', 1411157, '502.891510', '43.241459', '-46.006001', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171372, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411159', 1411159, '481.475494', '41.105301', '-9.940406', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171100, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411160', 1411160, '484.982300', '41.536228', '-12.749530', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171916, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411162', 1411162, '201.709000', '-7.309118', '-73.014473', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181134, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411163', 1411163, '206.805496', '-9.964188', '-16.037279', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180862, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411164', 1411164, '183.550705', '-8.560358', '-4.379386', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180590, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411167', 1411167, '127.300301', '-5.901662', '12.460290', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180318, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411170', 1411170, '92.851097', '-4.928711', '4.867581', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180046, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411171', 1411171, '127.489098', '-7.126010', '58.609852', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179774, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411173', 1411173, '216.815399', '-9.170719', '-44.144390', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411174', 1411174, '218.066605', '-9.475899', '-42.282791', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411176', 1411176, '184.252594', '-8.621394', '-0.259450', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411178', 1411178, '102.749901', '-11.800030', '112.244499', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411179', 1411179, '107.205597', '-7.793041', '74.349869', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411180', 1411180, '84.061897', '-6.851347', '16.464439', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411181', 1411181, '84.336563', '-6.698757', '13.137970', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411182', 1411182, '275.292297', '23.606110', '190.161697', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411186', 1411186, '288.694397', '21.579050', '187.354996', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177344, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411187', 1411187, '286.440796', '21.978689', '190.167206', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177072, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411193', 1411193, '237.018204', '23.458019', '156.614304', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176800, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411197', 1411197, '211.473099', '23.453070', '169.805405', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176528, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411198', 1411198, '209.800598', '23.457560', '211.348297', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176256, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411202', 1411202, '205.811798', '24.000139', '204.175003', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175984, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411203', 1411203, '226.011993', '23.536930', '175.448105', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175712, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411206', 1411206, '227.024994', '24.063431', '228.666702', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175440, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411207', 1411207, '224.858200', '23.422550', '230.009598', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175168, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411208', 1411208, '234.736603', '23.544621', '214.365707', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411210', 1411210, '233.020493', '23.453070', '214.312897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411213', 1411213, '213.946701', '23.453070', '226.459106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411214', 1411214, '211.749405', '23.453070', '228.168106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411218', 1411218, '228.444595', '23.457581', '165.045898', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411220', 1411220, '382.833496', '13.565220', '79.972481', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159876, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411222', 1411222, '374.288513', '12.161390', '84.031380', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158516, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411223', 1411223, '409.964111', '18.326040', '60.501968', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159604, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411225', 1411225, '411.001709', '26.138660', '123.399696', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158788, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411227', 1411227, '436.179108', '32.211750', '101.823402', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159060, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411228', 1411228, '439.383514', '32.761070', '98.649529', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157972, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411233', 1411233, '-58.666859', '-4.080153', '-116.513397', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134082, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411234', 1411234, '-111.996201', '6.549166', '-145.525208', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411235', 1411235, '-123.994698', '12.085680', '-163.495407', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411236', 1411236, '-120.946297', '10.817430', '-167.745193', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411237', 1411237, '-179.948700', '2.732331', '-103.572197', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411238', 1411238, '-212.568405', '1.504992', '-84.178993', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97676, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411240', 1411240, '-212.756607', '1.846313', '-94.163452', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96316, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411241', 1411241, '-214.172699', '1.359615', '-82.278023', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96044, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411242', 1411242, '-213.856293', '1.439267', '-83.871033', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96588, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411244', 1411244, '-193.905304', '2.125694', '-41.069290', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97948, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411253', 1411253, '-56.382130', '-4.928711', '-94.529694', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411254', 1411254, '-20.293131', '-2.590379', '-100.341103', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411255', 1411255, '-23.246990', '0.393718', '-138.153305', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411256', 1411256, '-59.128750', '0.758792', '-164.202393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411655', 1411655, '-92.954361', '1.786075', '-122.393898', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411656', 1411656, '-93.869904', '1.736482', '-119.067497', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411657', 1411657, '-109.805397', '6.718060', '-150.029800', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411658', 1411658, '-176.756607', '2.961861', '-114.443398', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1411659', 1411659, '-205.790604', '2.068845', '-61.951530', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412058', 1412058, '-196.154800', '1.939114', '-25.589430', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412059', 1412059, '-163.822601', '0.087921', '-11.411790', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130026, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(9, 'f1f1_intel', 'bnpc1412062', 1412062, '71.492859', '-11.893120', '161.389404', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412463', 1412463, '107.728401', '-8.259025', '159.304703', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412464', 1412464, '108.796501', '-7.985859', '156.375000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412465', 1412465, '45.309830', '-13.145570', '164.612595', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412467', 1412467, '86.263412', '-10.238450', '166.918396', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412470', 1412470, '43.860840', '-19.453880', '194.128098', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412471', 1412471, '40.686970', '-20.436541', '199.194107', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412474', 1412474, '83.274986', '-19.705959', '207.342194', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412475', 1412475, '56.498798', '-24.125010', '265.742401', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412476', 1412476, '56.595661', '-23.666790', '269.184387', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412477', 1412477, '67.313408', '-23.280479', '279.101715', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412478', 1412478, '130.256897', '-28.458679', '285.610504', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412480', 1412480, '84.874817', '-11.151300', '170.539902', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412482', 1412482, '48.863239', '-15.723400', '175.131393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412483', 1412483, '91.596550', '-15.216650', '191.087204', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412484', 1412484, '40.536888', '-24.919319', '239.885193', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412486', 1412486, '12.541730', '-30.409491', '274.885712', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412488', 1412488, '84.885887', '-24.795959', '238.330597', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412489', 1412489, '100.537003', '-25.090691', '289.606689', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412890', 1412890, '192.974106', '-32.093040', '371.993805', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412891', 1412891, '174.770096', '-30.985760', '392.154999', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412892', 1412892, '169.164200', '-29.940310', '393.395111', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412893', 1412893, '172.161407', '-30.924379', '389.056885', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412894', 1412894, '171.285507', '-29.285271', '402.230988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412895', 1412895, '154.779907', '-26.129629', '405.514008', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412896', 1412896, '168.913696', '-28.561871', '440.527588', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412897', 1412897, '173.811401', '-24.163700', '462.640015', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412898', 1412898, '172.581100', '-23.212021', '466.157715', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412900', 1412900, '157.804596', '-31.533340', '347.603088', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412901', 1412901, '181.335403', '-32.472290', '364.442596', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412902', 1412902, '173.037506', '-29.813890', '400.369385', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412903', 1412903, '215.503098', '-32.150810', '397.756897', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412904', 1412904, '151.140594', '-25.314760', '448.172699', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1412905', 1412905, '174.771194', '-22.925610', '465.693207', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413304', 1413304, '-10.375770', '-30.070101', '357.174011', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120482, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413305', 1413305, '-73.187973', '-29.638651', '377.182007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120210, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413306', 1413306, '7.099501', '-28.323009', '389.698700', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119938, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413307', 1413307, '-25.474409', '-30.239300', '288.173004', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413309', 1413309, '2.871708', '-26.996679', '314.962891', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413310', 1413310, '-43.682961', '-31.251160', '365.171295', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413311', 1413311, '-60.904331', '-32.109970', '348.252411', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413312', 1413312, '-26.264040', '-32.967579', '411.424805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413711', 1413711, '1.843092', '-32.621689', '440.420288', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413712', 1413712, '-47.684052', '-34.975368', '436.820007', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413713', 1413713, '-62.874069', '-35.826691', '451.367706', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413714', 1413714, '-36.040771', '-30.235821', '405.258087', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413715', 1413715, '-77.531143', '-35.740108', '463.920013', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413716', 1413716, '-81.834183', '-35.561951', '465.537415', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413717', 1413717, '-81.132263', '-36.687901', '482.108704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413718', 1413718, '-64.000313', '-36.181229', '492.846497', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413719', 1413719, '-45.209900', '-36.768280', '469.442810', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413721', 1413721, '-49.479870', '-31.658331', '420.700195', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413723', 1413723, '-61.146591', '-34.546021', '439.197601', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413724', 1413724, '-12.636190', '-34.818890', '433.701904', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413725', 1413725, '-21.261789', '-35.776421', '463.813293', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1413726', 1413726, '-80.766037', '-35.860481', '467.917786', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1414923', 1414923, '-251.624496', '8.046767', '9.209213', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1414924', 1414924, '-237.355103', '14.172800', '56.681469', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1414925', 1414925, '-240.865097', '13.064570', '51.144550', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1414928', 1414928, '-261.738007', '16.472500', '59.800060', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1414929', 1414929, '-271.273499', '19.264000', '95.431259', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1414931', 1414931, '-299.224915', '20.999870', '171.197403', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1414932', 1414932, '-335.657013', '21.199930', '166.262405', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1414935', 1414935, '-333.186493', '21.314899', '161.005798', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1414936', 1414936, '-351.155914', '21.194731', '192.767197', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1414938', 1414938, '-239.843002', '7.295271', '0.194433', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415337', 1415337, '-263.631592', '17.193020', '61.247459', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415339', 1415339, '-340.596497', '21.199930', '161.368500', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415340', 1415340, '-332.306000', '21.000000', '208.378098', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415341', 1415341, '-328.043915', '21.000000', '211.118393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415342', 1415342, '-292.652802', '20.981110', '203.265396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415343', 1415343, '-87.174072', '-39.921982', '291.489105', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415344', 1415344, '-112.985397', '-40.020420', '312.799713', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415345', 1415345, '-86.737244', '-40.184792', '302.023285', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415346', 1415346, '-116.616600', '-40.014709', '309.506805', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415347', 1415347, '-244.678497', '66.147812', '-179.125702', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415348', 1415348, '-241.352005', '66.788689', '-178.362701', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415352', 1415352, '-351.735809', '67.765259', '-226.093002', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415353', 1415353, '-354.085602', '67.313278', '-222.043106', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415354', 1415354, '-354.115387', '66.529556', '-254.235596', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415358', 1415358, '-429.221008', '60.624039', '-145.159103', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415359', 1415359, '-431.571014', '61.023251', '-141.100204', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415360', 1415360, '-409.323303', '61.264919', '-120.927803', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415361', 1415361, '-290.298706', '60.229500', '-115.695396', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415364', 1415364, '-313.710297', '62.882381', '-46.982571', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415365', 1415365, '-308.186493', '62.943420', '-50.370079', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72208, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415367', 1415367, '-304.768494', '62.180470', '-99.076874', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72480, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415368', 1415368, '-275.257507', '60.807152', '-84.214577', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71664, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415375', 1415375, '-262.012695', '62.577202', '-39.993938', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415376', 1415376, '-417.990387', '64.377762', '-51.102509', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415377', 1415377, '-416.159302', '65.476410', '-55.924358', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415378', 1415378, '-446.097504', '57.907940', '-22.476589', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415379', 1415379, '-454.154297', '61.631142', '-28.213980', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415381', 1415381, '-285.852814', '61.458679', '25.148211', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415382', 1415382, '-414.267212', '60.471451', '-98.405472', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415383', 1415383, '-462.152802', '62.699409', '-106.490501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1415384', 1415384, '-465.866913', '62.824699', '-107.035797', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1416355', 1416355, '184.649399', '-7.461709', '-54.703640', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173518, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1418012', 1418012, '397.388092', '18.876289', '87.758537', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149848, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc1418013', 1418013, '272.692596', '-2.411928', '61.854092', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150120, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154901', 2154901, '-288.593994', '59.581390', '-121.735901', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64604, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154903', 2154903, '-303.822388', '59.830570', '-130.571503', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154910', 2154910, '-290.943787', '61.814331', '-175.341400', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64876, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154912', 2154912, '-384.725800', '64.377808', '-230.792694', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154914', 2154914, '-416.247894', '61.594559', '-135.801102', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154915', 2154915, '-397.116089', '56.778770', '-87.632607', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154916', 2154916, '-408.031494', '53.104481', '35.133572', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154917', 2154917, '-274.891388', '62.760250', '-48.600040', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154925', 2154925, '-365.255188', '56.015820', '61.905800', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154932', 2154932, '-452.140106', '63.523258', '-235.614594', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92276, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154933', 2154933, '-486.564514', '58.060532', '-222.186707', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154938', 2154938, '-449.027313', '55.863232', '-205.401703', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91732, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154939', 2154939, '-453.788086', '56.259960', '-203.845306', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91460, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154940', 2154940, '-449.607086', '55.100281', '-200.518799', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91188, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154941', 2154941, '-459.128693', '64.652428', '-264.026886', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154943', 2154943, '-483.543213', '58.182598', '-215.136993', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90112, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154944', 2154944, '-488.316101', '67.415604', '-265.598907', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154945', 2154945, '-487.007385', '67.617432', '-267.616608', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90916, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154950', 2154950, '-508.114197', '73.937157', '-289.616486', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154952', 2154952, '-505.210999', '72.800743', '-287.708893', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154954', 2154954, '-475.800293', '75.099243', '-316.311890', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88486, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154959', 2154959, '-474.076904', '71.450668', '-300.198914', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154963', 2154963, '-481.180389', '74.270866', '-319.393005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88752, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154965', 2154965, '-509.328613', '51.460609', '-230.011002', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154966', 2154966, '-530.510376', '48.020088', '-245.654999', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87670, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154968', 2154968, '-550.774414', '46.775639', '-245.014099', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154969', 2154969, '-546.684998', '46.860470', '-244.251205', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154970', 2154970, '-545.647400', '50.522579', '-203.540100', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154971', 2154971, '-547.356384', '51.163448', '-199.786407', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154973', 2154973, '-572.310486', '49.567921', '-226.453506', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90644, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154974', 2154974, '-564.080322', '50.297001', '-211.993607', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154976', 2154976, '-508.251099', '57.374981', '-255.303207', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154978', 2154978, '-533.645081', '43.546291', '-230.397507', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154980', 2154980, '-468.316010', '57.494301', '-212.252502', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154982', 2154982, '-485.247803', '68.405968', '-274.754211', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154983', 2154983, '-505.135406', '73.043167', '-290.313904', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154985', 2154985, '-528.526672', '48.142170', '-244.495300', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2154986', 2154986, '-568.407227', '50.556568', '-214.304596', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320574', 2320574, '261.921387', '1.753539', '-223.409698', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210786, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320575', 2320575, '261.238495', '0.534709', '-243.419296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320576', 2320576, '263.797699', '1.764011', '-223.470901', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320577', 2320577, '259.453186', '1.043279', '-240.840607', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320579', 2320579, '274.919800', '-1.072963', '-256.170593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209698, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320580', 2320580, '300.060089', '-0.888014', '-307.572510', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320581', 2320581, '324.245514', '-1.093548', '-288.072113', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320582', 2320582, '298.274811', '-0.855762', '-304.993805', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320583', 2320583, '325.011292', '-1.286943', '-316.835388', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208610, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320584', 2320584, '287.788513', '-0.475198', '-298.277313', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208338, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320585', 2320585, '329.843903', '-0.745502', '-290.159698', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320586', 2320586, '325.924103', '-0.928046', '-285.067993', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320587', 2320587, '327.193207', '-1.286943', '-313.833496', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207522, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320588', 2320588, '337.177185', '0.441468', '-264.191803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207250, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320589', 2320589, '332.682892', '0.959346', '-254.439896', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206978, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320590', 2320590, '329.305206', '0.991071', '-252.106293', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206706, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320591', 2320591, '304.253815', '-0.643113', '-258.978912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320596', 2320596, '346.493591', '-0.483981', '-328.131287', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206162, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320597', 2320597, '302.790710', '-1.010156', '-352.830505', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320598', 2320598, '273.957489', '-0.689871', '-328.818512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205618, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320599', 2320599, '268.469910', '-0.593068', '-327.086395', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205346, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320600', 2320600, '267.525513', '-0.806307', '-329.538208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205074, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320601', 2320601, '276.737091', '0.547026', '-314.840912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320610', 2320610, '288.781494', '-1.187131', '-281.665588', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320612', 2320612, '330.290802', '-1.286943', '-344.531311', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320617', 2320617, '92.850220', '-10.902450', '173.235596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320637', 2320637, '-108.605698', '-30.528610', '272.296295', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320638', 2320638, '-138.649902', '-23.382610', '264.698212', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320639', 2320639, '-99.474327', '-30.263571', '271.854614', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320641', 2320641, '-170.286606', '-27.619471', '297.813995', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320642', 2320642, '-171.781998', '-27.505461', '288.445007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320643', 2320643, '-165.769897', '-27.707670', '293.053192', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320645', 2320645, '-125.383400', '-25.040100', '360.402802', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320646', 2320646, '-137.475906', '-27.672729', '336.516113', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320647', 2320647, '-141.819901', '-30.193661', '309.942688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320649', 2320649, '-59.102539', '-28.549570', '296.388702', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320650', 2320650, '277.147400', '-31.644880', '389.827209', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320651', 2320651, '250.690399', '-30.350241', '408.346588', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106362, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320652', 2320652, '274.666290', '-31.273550', '391.993988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320654', 2320654, '299.640686', '-31.632290', '402.348511', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320655', 2320655, '300.434814', '-32.791679', '411.978302', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320656', 2320656, '342.732788', '-31.784590', '408.346588', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320658', 2320658, '308.735687', '-32.272881', '398.214600', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320659', 2320659, '329.910309', '-31.601860', '408.307800', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320660', 2320660, '332.175415', '-31.647480', '410.657013', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320661', 2320661, '344.838593', '-31.113190', '440.115906', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320664', 2320664, '144.316299', '-22.573250', '513.925293', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320665', 2320665, '141.166702', '-21.478600', '518.533508', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320666', 2320666, '165.008896', '-23.196131', '497.355591', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320667', 2320667, '137.956802', '-21.858990', '489.646698', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103642, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320668', 2320668, '130.324295', '-19.810080', '417.345490', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320669', 2320669, '98.407799', '-20.697760', '221.536407', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320671', 2320671, '97.314743', '-11.800020', '101.237198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320675', 2320675, '135.972794', '-11.800140', '133.207794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320678', 2320678, '185.468796', '-11.800210', '106.268402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320683', 2320683, '188.220001', '-11.825790', '62.851860', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320688', 2320688, '201.678406', '-11.795270', '23.117371', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320694', 2320694, '260.142914', '-12.002980', '-90.756157', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320695', 2320695, '258.451996', '-12.002920', '-92.319710', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320696', 2320696, '257.085999', '-12.006830', '-154.938705', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320697', 2320697, '264.474091', '-12.313630', '-187.969193', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320721', 2320721, '396.475098', '20.645411', '107.225098', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159332, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320722', 2320722, '419.413391', '27.114370', '102.443001', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158244, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320725', 2320725, '-159.887802', '18.109520', '-68.195572', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320727', 2320727, '-170.536102', '27.551260', '-85.891403', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320728', 2320728, '-170.885803', '27.966640', '-89.178688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320732', 2320732, '-547.753174', '19.485781', '-191.943298', 30, 0, 0, 0, 2, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63894, 1, 0, 0, 0, 0, 0, 4302234, 0, 0), +(9, 'f1f1_intel', 'bnpc2320790', 2320790, '-439.475098', '48.996670', '43.930679', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320791', 2320791, '-432.144196', '49.318508', '-4.165760', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320793', 2320793, '-242.034393', '58.664711', '38.845100', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320794', 2320794, '-206.227997', '57.382519', '52.006420', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320797', 2320797, '-193.570099', '74.743111', '21.367661', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320800', 2320800, '-238.635895', '62.272018', '25.375710', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2320801', 2320801, '-219.805405', '67.608017', '9.079071', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2341782', 2341782, '345.014008', '-1.078350', '-177.896896', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165630, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(9, 'f1f1_intel', 'bnpc2341783', 2341783, '319.296997', '-0.849605', '-171.347198', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2341784', 2341784, '292.707397', '-6.651216', '-123.136101', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2341785', 2341785, '347.310486', '6.679530', '84.092422', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2341786', 2341786, '354.267487', '5.193762', '60.841671', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2341787', 2341787, '348.283203', '3.086715', '49.707630', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2603191', 2603191, '256.015594', '-11.793030', '-185.891006', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164850, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2603192', 2603192, '260.232605', '-11.793140', '-180.095505', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164578, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612552', 2612552, '252.195404', '-11.793090', '-145.885406', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164306, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612553', 2612553, '254.433395', '-11.793010', '-113.328796', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164034, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612554', 2612554, '258.838715', '-11.793140', '-73.879280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163762, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612555', 2612555, '233.580307', '-11.793010', '-18.570280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163490, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612556', 2612556, '216.695099', '-11.793000', '8.959249', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163218, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612557', 2612557, '212.512299', '-11.795270', '12.741240', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162946, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612559', 2612559, '120.048798', '-11.800060', '124.326401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162680, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612561', 2612561, '191.515900', '-11.856310', '51.102409', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162408, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612562', 2612562, '189.768997', '-11.800210', '71.478256', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162136, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612563', 2612563, '192.239395', '-11.800030', '91.385788', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161864, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612564', 2612564, '179.480606', '-11.800260', '106.735802', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161592, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612565', 2612565, '165.069794', '-11.800630', '119.881798', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161320, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612566', 2612566, '146.988297', '-11.800000', '126.311401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161048, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612569', 2612569, '132.474792', '-11.800090', '139.979294', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160776, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612570', 2612570, '250.133804', '-11.793030', '-55.898849', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160498, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612571', 2612571, '205.980301', '-11.772920', '33.134300', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160226, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612573', 2612573, '421.064514', '24.757450', '78.823257', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2612574', 2612574, '428.320709', '31.721590', '124.805603', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157428, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2615184', 2615184, '360.341705', '-32.028728', '435.294006', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2615186', 2615186, '375.478699', '-32.089771', '448.966095', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2615187', 2615187, '382.955597', '-31.998211', '440.878815', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2615503', 2615503, '253.211594', '-11.793080', '-161.360504', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154514, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc2615504', 2615504, '253.937607', '-11.793030', '-68.861298', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154242, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693097', 3693097, '-224.085602', '1.055553', '-69.316994', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693102', 3693102, '-195.941101', '2.945007', '-104.081802', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96860, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693103', 3693103, '-189.283005', '2.362727', '-83.005783', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97404, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693105', 3693105, '-210.620300', '1.998901', '-96.299683', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95500, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693109', 3693109, '-195.513901', '2.216981', '-40.186169', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95228, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693111', 3693111, '-200.096695', '2.060742', '-67.256340', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693121', 3693121, '368.459503', '-32.364429', '413.199005', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693136', 3693136, '242.206406', '-30.411280', '402.182007', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693138', 3693138, '225.451996', '-28.488640', '423.605713', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693140', 3693140, '215.350494', '-32.486500', '387.777496', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693173', 3693173, '-508.842590', '40.237991', '-79.606361', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693174', 3693174, '-516.899414', '40.146439', '-74.967621', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693175', 3693175, '-514.549500', '40.207470', '-77.103882', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85228, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693176', 3693176, '-520.866821', '40.146439', '-64.255783', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693177', 3693177, '-515.685120', '40.359970', '-54.677021', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693178', 3693178, '-503.929199', '41.000938', '-56.107471', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693179', 3693179, '-483.658691', '45.245129', '-60.343559', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693180', 3693180, '-481.533905', '45.933941', '-62.817669', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693183', 3693183, '-378.957794', '51.132931', '52.109509', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693184', 3693184, '-397.512787', '49.301849', '10.055650', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693185', 3693185, '-433.121094', '49.318531', '34.558170', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693188', 3693188, '-322.396393', '57.338970', '-6.726664', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65686, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693623', 3693623, '-184.619797', '78.429970', '42.778721', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3693624', 3693624, '-191.994202', '77.183746', '37.510250', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72746, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3694403', 3694403, '-314.266113', '63.832611', '57.746510', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3742079', 3742079, '-530.733887', '65.311684', '98.466423', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3742133', 3742133, '-526.186829', '65.311691', '102.647400', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3742194', 3742194, '48.050610', '-11.800030', '-40.915428', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153976, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3742195', 3742195, '22.187790', '-11.800000', '-69.750504', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153704, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3742196', 3742196, '15.168640', '-11.800000', '-75.762558', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153432, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3742197', 3742197, '6.348711', '-11.800040', '-110.540199', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153160, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3742198', 3742198, '-54.153049', '-3.500003', '-186.530106', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152888, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3742199', 3742199, '-50.919399', '-3.500001', '-182.895996', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152616, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3742200', 3742200, '-69.779549', '-3.500144', '-196.820496', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152344, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3742201', 3742201, '-62.272110', '-3.500066', '-207.843399', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152072, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3742202', 3742202, '2.735321', '-11.800110', '-122.937599', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151782, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3742203', 3742203, '-6.886642', '-3.500000', '-135.990402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3742204', 3742204, '-6.586641', '-3.500000', '-139.267899', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3742205', 3742205, '-36.719379', '-3.500000', '-180.416794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150966, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3742206', 3742206, '-48.687111', '-3.500072', '-207.096298', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150694, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3746465', 3746465, '-208.691696', '52.495350', '-42.669102', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71120, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3746466', 3746466, '-219.824799', '58.286751', '-60.483898', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3746467', 3746467, '-215.491898', '57.635231', '-71.491089', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70576, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3869502', 3869502, '125.699600', '25.160120', '-311.621185', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41108, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3869509', 3869509, '-307.502899', '63.448620', '-285.687714', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40842, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3869525', 3869525, '-206.130997', '53.564651', '-126.977600', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40564, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3869531', 3869531, '96.403351', '-6.334397', '-121.433502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40298, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3869540', 3869540, '164.007095', '-6.013201', '-52.486290', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.750000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40020, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3869598', 3869598, '-4.837158', '-7.919495', '-22.201900', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39760, 5, 0, 20, 0, 0, 30055, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3869604', 3869604, '85.465698', '-6.089244', '60.991131', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39482, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3869607', 3869607, '14.362120', '-8.102512', '100.498901', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39204, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3877513', 3877513, '121.019203', '24.917931', '-304.463287', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204518, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3884907', 3884907, '-419.228607', '55.416000', '66.506737', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3897658', 3897658, '117.021400', '25.101040', '-311.604492', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204258, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc3898007', 3898007, '132.524597', '24.948450', '-305.562012', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203974, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4083772', 4083772, '-327.757690', '21.357790', '204.228699', 58, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 5782, 1, 0, 0, 0, 0, 0, 4083771, 0, 0), +(9, 'f1f1_intel', 'bnpc4083778', 4083778, '-297.044800', '21.140360', '151.049896', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 8174, 1, 0, 0, 0, 0, 0, 4083775, 0, 0), +(9, 'f1f1_intel', 'bnpc4083795', 4083795, '-327.840088', '21.103210', '206.835907', 58, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6054, 1, 0, 0, 0, 0, 0, 4083794, 0, 0), +(9, 'f1f1_intel', 'bnpc4083796', 4083796, '-296.744812', '21.145109', '151.349899', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7662, 1, 0, 0, 0, 0, 0, 4083797, 0, 0), +(9, 'f1f1_intel', 'bnpc4083798', 4083798, '-296.444794', '21.149870', '151.649902', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7278, 1, 0, 0, 0, 0, 0, 4083799, 0, 0), +(9, 'f1f1_intel', 'bnpc4083800', 4083800, '-296.144806', '21.154619', '151.949905', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6894, 1, 0, 0, 0, 0, 0, 4083801, 0, 0), +(9, 'f1f1_intel', 'bnpc4083802', 4083802, '-295.844788', '21.159370', '152.249893', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6510, 1, 0, 0, 0, 0, 0, 4083803, 0, 0), +(9, 'f1f1_intel', 'bnpc4083871', 4083871, '127.641701', '-6.332520', '-100.389198', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38544, 8, 0, 0, 4295658, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4295672', 4295672, '132.951797', '-6.332520', '-100.114502', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37512, 8, 0, 0, 4295661, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4295673', 4295673, '137.910706', '-6.438695', '-96.608414', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37240, 8, 0, 0, 4295662, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4295675', 4295675, '126.695297', '-6.948534', '-90.459633', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36968, 8, 0, 0, 4295663, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4295677', 4295677, '126.418900', '-6.971872', '-84.529358', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36696, 8, 0, 0, 4295664, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4296957', 4296957, '95.628906', '-2.029270', '-42.382439', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35816, 1, 0, 0, 2280260, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4296958', 4296958, '98.693558', '-2.029731', '-43.942860', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35544, 1, 0, 0, 2280261, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4296959', 4296959, '101.467598', '-2.005454', '-46.176739', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35272, 1, 0, 0, 2280262, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4296960', 4296960, '104.146896', '-1.968804', '-48.332958', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35000, 1, 0, 0, 2280263, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302206', 4302206, '-555.148071', '29.067560', '-230.785706', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302207', 4302207, '-516.437683', '22.056881', '-221.606796', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302208', 4302208, '-524.244812', '24.477020', '-253.274597', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302209', 4302209, '-527.577820', '24.719191', '-254.932404', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302212', 4302212, '-582.818420', '21.723471', '-238.845596', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302213', 4302213, '-596.266602', '20.622200', '-226.349106', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302214', 4302214, '-579.272827', '21.076719', '-214.966003', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302215', 4302215, '-581.780823', '21.842831', '-241.897293', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302216', 4302216, '-528.772888', '19.922779', '-195.839096', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61374, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302217', 4302217, '-537.197327', '20.139130', '-199.348495', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302218', 4302218, '-563.208191', '18.867491', '-186.546005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302219', 4302219, '-527.765808', '20.129919', '-200.682007', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302220', 4302220, '-569.817627', '10.940670', '-130.235794', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302221', 4302221, '-617.120605', '21.896610', '-197.436493', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302222', 4302222, '-575.432983', '11.001710', '-129.716995', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302223', 4302223, '-568.810608', '10.910160', '-133.318100', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302225', 4302225, '-502.711792', '17.279470', '-157.029495', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59204, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302226', 4302226, '-496.089386', '16.799740', '-160.630707', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58938, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302228', 4302228, '-481.979004', '18.189381', '-229.549103', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302229', 4302229, '-555.941528', '25.463579', '-260.210693', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4302351', 4302351, '-572.925293', '18.257090', '-181.740707', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57718, 1, 0, 0, 0, 0, 0, 4302260, 0, 0), +(9, 'f1f1_intel', 'bnpc4302353', 4302353, '-513.667175', '23.842480', '-245.333893', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57446, 1, 0, 0, 0, 0, 0, 4302268, 0, 0), +(9, 'f1f1_intel', 'bnpc4333043', 4333043, '-309.205597', '57.338970', '-10.110600', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4333385', 4333385, '-348.321503', '67.616417', '-233.774200', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4510293', 4510293, '213.253204', '-32.025242', '324.145386', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38950, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4621046', 4621046, '370.051086', '-32.295422', '411.821198', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42124, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(9, 'f1f1_intel', 'bnpc4621047', 4621047, '-538.803589', '50.907551', '-203.075394', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41858, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760882', 3760882, '7.760897', '64.944183', '95.225662', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760883', 3760883, '11.569650', '64.269142', '103.174004', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760884', 3760884, '27.212851', '64.259323', '68.436661', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121286, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760886', 3760886, '35.300129', '63.748798', '70.756027', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122102, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760887', 3760887, '29.623779', '63.785370', '72.434517', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122918, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760888', 3760888, '12.674300', '64.363640', '96.110687', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122646, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760889', 3760889, '37.375351', '64.107178', '66.758171', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122374, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760890', 3760890, '35.361160', '64.320633', '64.408279', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760896', 3760896, '20.935301', '61.990829', '147.102097', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760898', 3760898, '32.574959', '59.535831', '128.579605', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119382, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760901', 3760901, '3.688727', '65.262871', '139.257401', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119110, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760902', 3760902, '1.674536', '65.722069', '135.412201', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760911', 3760911, '66.135712', '56.046421', '111.429703', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760912', 3760912, '62.577202', '57.663799', '106.370598', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120470, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760913', 3760913, '64.103104', '57.114471', '107.652298', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760917', 3760917, '60.457890', '61.337429', '74.236450', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121830, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760922', 3760922, '96.288940', '49.550621', '73.985641', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126182, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760923', 3760923, '110.317703', '42.549389', '102.239700', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125366, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760925', 3760925, '121.477097', '40.913620', '141.046600', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125638, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760927', 3760927, '99.690933', '44.016190', '125.932701', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126998, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760933', 3760933, '86.244019', '47.554829', '160.082397', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126726, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760937', 3760937, '87.891998', '47.433571', '161.638794', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123190, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760948', 3760948, '68.406143', '53.661510', '183.326599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123462, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760950', 3760950, '62.399029', '56.000351', '191.517303', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125910, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760952', 3760952, '63.992779', '55.493610', '189.245102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124550, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760958', 3760958, '51.348160', '55.864281', '150.438599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124278, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760961', 3760961, '56.546551', '56.041698', '186.103394', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125094, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3760965', 3760965, '53.117081', '55.406071', '151.622894', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124822, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761027', 3761027, '-7.343534', '67.714622', '93.888710', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153092, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761030', 3761030, '15.512480', '63.992210', '99.894920', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152820, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761031', 3761031, '78.979568', '53.555161', '86.569473', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124006, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761032', 3761032, '80.505470', '52.852570', '87.851227', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123734, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761033', 3761033, '31.698999', '64.077950', '68.192520', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152548, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761034', 3761034, '111.202797', '42.291870', '104.620102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126454, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761035', 3761035, '112.698097', '41.971249', '105.901901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127270, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761036', 3761036, '16.824760', '63.905472', '97.575546', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152276, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761039', 3761039, '11.941870', '64.628357', '91.990753', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152004, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761041', 3761041, '54.459400', '59.806961', '102.917297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151732, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761042', 3761042, '30.722420', '63.595020', '74.784416', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151460, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761044', 3761044, '19.068230', '62.294941', '149.492599', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151188, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761045', 3761045, '22.420271', '61.734470', '145.882996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150916, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761046', 3761046, '31.079571', '59.608490', '125.924500', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150644, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761048', 3761048, '66.227257', '56.978741', '104.868301', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150372, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761049', 3761049, '81.546333', '52.845501', '84.585800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150100, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761050', 3761050, '62.755970', '60.386440', '76.019211', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149828, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761051', 3761051, '109.737900', '42.563049', '105.962898', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149556, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761052', 3761052, '98.714363', '44.085449', '129.594803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149284, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761053', 3761053, '98.425201', '49.276859', '70.598137', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149012, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761054', 3761054, '99.981613', '48.315552', '73.649940', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148740, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761080', 3761080, '100.606499', '43.794998', '128.557205', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148468, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761081', 3761081, '89.814621', '46.770222', '157.976593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148196, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761084', 3761084, '51.818901', '55.815891', '145.346603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147924, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761085', 3761085, '70.215584', '52.939968', '181.270401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147652, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761086', 3761086, '60.924660', '55.885761', '189.770996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147380, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761088', 3761088, '48.845680', '56.451950', '150.896393', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147108, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761089', 3761089, '50.420841', '56.054260', '153.244995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146836, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761096', 3761096, '199.256302', '27.059620', '91.574173', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146570, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761097', 3761097, '66.501930', '57.215820', '101.480797', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761099', 3761099, '111.690498', '36.582958', '4.053726', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146298, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761100', 3761100, '67.783684', '56.291199', '107.065697', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761102', 3761102, '156.633804', '34.653191', '70.542397', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146026, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761103', 3761103, '23.832260', '61.353020', '150.988007', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761104', 3761104, '24.717279', '61.225311', '149.156906', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761105', 3761105, '167.377899', '33.443420', '75.522820', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145754, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761108', 3761108, '124.488503', '36.345482', '15.758260', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145482, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761109', 3761109, '159.302094', '33.928551', '78.777786', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145210, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761111', 3761111, '108.955002', '36.663021', '9.387772', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144938, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761112', 3761112, '131.578506', '35.965469', '45.853310', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144666, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761123', 3761123, '237.190399', '36.611149', '66.717194', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761124', 3761124, '242.137604', '44.361130', '44.958832', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144128, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761125', 3761125, '242.718903', '43.673290', '46.873840', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143856, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761128', 3761128, '187.436096', '42.116020', '51.900459', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143584, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761129', 3761129, '223.247696', '51.849850', '26.116220', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143312, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761130', 3761130, '223.430801', '52.761440', '22.759239', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143040, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761131', 3761131, '217.449295', '51.875561', '27.520050', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142768, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761134', 3761134, '223.010498', '31.021540', '165.483994', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142496, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761135', 3761135, '227.779602', '33.454979', '203.906296', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142224, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761136', 3761136, '242.318497', '38.158321', '234.873306', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141952, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761137', 3761137, '227.626999', '34.365898', '207.232697', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141680, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761139', 3761139, '245.897202', '37.488659', '235.919693', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141408, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(10, 's1f2_client_benchmark', 'bnpc3761141', 3761141, '195.561203', '47.715080', '226.776001', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141136, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761142', 3761142, '197.033997', '48.159161', '228.423004', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761143', 3761143, '222.161804', '50.249969', '256.272888', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761145', 3761145, '180.566803', '43.422722', '197.741592', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761146', 3761146, '181.211105', '43.103500', '194.872894', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761147', 3761147, '150.769104', '55.568981', '248.645706', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761149', 3761149, '148.855896', '56.596169', '250.553299', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761150', 3761150, '152.127594', '64.016029', '312.689392', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761151', 3761151, '154.979797', '64.179688', '314.660492', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761152', 3761152, '153.705307', '64.400146', '315.376495', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761155', 3761155, '115.122803', '68.518044', '293.763489', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761164', 3761164, '69.781052', '51.086330', '157.761703', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761169', 3761169, '97.733994', '47.043510', '88.944794', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761303', 3761303, '204.358505', '46.098690', '45.780960', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761362', 3761362, '198.245804', '51.531582', '242.749405', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761367', 3761367, '182.543594', '41.458710', '51.590698', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761369', 3761369, '186.119797', '42.655750', '49.950859', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761370', 3761370, '285.549408', '42.548729', '57.964470', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761371', 3761371, '285.078796', '44.421532', '49.076550', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761372', 3761372, '239.723694', '36.528450', '66.898483', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761373', 3761373, '148.845200', '38.711102', '41.285278', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761374', 3761374, '152.171600', '39.307671', '41.468391', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761375', 3761375, '182.186905', '54.291470', '262.783508', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761376', 3761376, '184.506195', '55.134689', '266.109985', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761475', 3761475, '201.696899', '32.601101', '76.500427', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135684, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761552', 3761552, '150.981400', '38.858120', '42.405491', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135412, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761553', 3761553, '185.442902', '41.123051', '53.604858', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135140, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761554', 3761554, '206.775299', '43.330341', '53.446110', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134868, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761555', 3761555, '208.241592', '43.763321', '52.334370', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134596, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761556', 3761556, '239.497803', '36.005562', '68.131721', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134324, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761557', 3761557, '215.528305', '44.498230', '50.226871', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134052, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761572', 3761572, '223.339294', '51.412380', '27.733681', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133780, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761576', 3761576, '283.996399', '43.243752', '55.750099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133508, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761580', 3761580, '272.696899', '45.167171', '32.535080', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133236, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761585', 3761585, '215.465607', '53.837990', '20.867121', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132964, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761592', 3761592, '217.212097', '32.425369', '164.537994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132692, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761607', 3761607, '218.341293', '32.455891', '165.972305', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132420, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761622', 3761622, '202.532898', '37.857590', '176.104294', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132148, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761626', 3761626, '183.154007', '42.709949', '197.436401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131876, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761716', 3761716, '184.920502', '44.981480', '218.420700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131604, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761718', 3761718, '224.420395', '35.250660', '205.197601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131332, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761720', 3761720, '242.515396', '37.441879', '232.829803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131060, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761721', 3761721, '215.690094', '51.411850', '255.712601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130788, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761722', 3761722, '217.734802', '50.606812', '253.454300', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130516, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761723', 3761723, '185.971100', '54.557800', '262.936096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130244, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761726', 3761726, '152.777603', '58.215248', '280.103607', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129972, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761727', 3761727, '152.238602', '58.132370', '277.662201', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129700, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761728', 3761728, '118.327202', '67.511993', '294.840210', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129428, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761730', 3761730, '114.320396', '68.359100', '296.500885', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129156, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3761731', 3761731, '153.412399', '63.654282', '311.208801', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128884, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766328', 3766328, '444.374390', '64.694489', '-36.484081', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766391', 3766391, '446.046112', '65.017601', '-33.594650', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766399', 3766399, '453.421814', '56.259960', '-0.534113', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766401', 3766401, '455.924286', '55.802189', '3.341679', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766402', 3766402, '448.874603', '55.222351', '4.837063', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766575', 3766575, '366.619385', '51.659290', '-12.188280', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766577', 3766577, '364.147400', '52.146080', '-17.895161', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766579', 3766579, '370.878113', '59.451641', '-59.303612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766580', 3766580, '368.924988', '58.367748', '-54.695389', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766581', 3766581, '373.350098', '58.395641', '-53.596741', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766584', 3766584, '363.439606', '63.704231', '-82.801590', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766586', 3766586, '341.616302', '51.478588', '-30.833561', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766588', 3766588, '305.806000', '47.806469', '0.503501', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766589', 3766589, '308.552612', '48.569420', '-3.769025', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766591', 3766591, '409.158112', '63.702721', '-82.786118', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766592', 3766592, '412.649689', '63.919991', '-86.564484', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766596', 3766596, '450.583588', '66.468239', '-76.957558', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766603', 3766603, '394.502594', '67.135857', '-121.089203', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766604', 3766604, '391.786499', '67.793007', '-123.530602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3766605', 3766605, '395.113007', '67.180733', '-122.828697', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767081', 3767081, '473.143494', '66.440041', '-148.859894', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767082', 3767082, '437.091309', '65.055496', '-127.757103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767083', 3767083, '438.506500', '65.198730', '-126.336800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767118', 3767118, '437.011108', '65.003197', '-124.078499', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767119', 3767119, '474.052002', '66.418793', '-147.307800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767127', 3767127, '371.903290', '67.982323', '-110.760803', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767131', 3767131, '460.464600', '68.698967', '-124.371498', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767137', 3767137, '564.060181', '84.658661', '-310.397614', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767139', 3767139, '425.864014', '78.873833', '-349.813110', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767149', 3767149, '418.543213', '65.856056', '-158.386795', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767152', 3767152, '380.575195', '71.228844', '-138.534103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767155', 3767155, '353.131409', '70.227692', '-126.119904', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767158', 3767158, '355.969604', '70.540512', '-125.082298', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767160', 3767160, '354.321594', '69.995934', '-123.739502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767163', 3767163, '385.091888', '70.103569', '-139.968506', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767164', 3767164, '383.413391', '70.520859', '-137.771194', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767165', 3767165, '382.223206', '70.816437', '-140.151596', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767230', 3767230, '338.126892', '68.759033', '-132.386398', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767240', 3767240, '525.678589', '69.218857', '-235.317993', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91168, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767241', 3767241, '529.279724', '69.670998', '-238.980103', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90352, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767242', 3767242, '523.878113', '69.910103', '-240.231400', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90624, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767246', 3767246, '503.511597', '77.082458', '-297.441315', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767247', 3767247, '490.567688', '72.273407', '-273.391388', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767248', 3767248, '499.222992', '76.478897', '-297.574799', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767251', 3767251, '561.724976', '68.563721', '-232.711105', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90896, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767262', 3767262, '609.164307', '70.799339', '-269.442291', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767263', 3767263, '607.699524', '69.742554', '-262.681885', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767264', 3767264, '611.178528', '70.073822', '-266.496613', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767271', 3767271, '583.442871', '78.270691', '-293.369995', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767272', 3767272, '582.626099', '82.811012', '-321.008209', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767273', 3767273, '586.291077', '77.487671', '-291.515594', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767374', 3767374, '436.361908', '73.251167', '-304.983185', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767375', 3767375, '432.991608', '72.276894', '-303.043610', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767376', 3767376, '349.804901', '74.911560', '-321.936798', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767377', 3767377, '435.671997', '72.056473', '-300.979401', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104478, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767388', 3767388, '361.665588', '75.651962', '-325.562408', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767390', 3767390, '363.221985', '75.155243', '-322.388489', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767391', 3767391, '358.186493', '73.581299', '-315.714813', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767393', 3767393, '395.641113', '76.023048', '-328.902496', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767394', 3767394, '397.399597', '76.429916', '-332.825500', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767395', 3767395, '393.430298', '76.446228', '-331.738098', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767396', 3767396, '392.678711', '86.886810', '-395.321106', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767399', 3767399, '470.368805', '87.249977', '-348.957306', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767400', 3767400, '454.939209', '84.293327', '-350.549591', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767401', 3767401, '458.387787', '84.602448', '-346.643188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767402', 3767402, '428.051086', '76.420769', '-330.744385', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767425', 3767425, '422.176910', '67.247093', '-159.579803', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767426', 3767426, '420.543213', '66.332741', '-157.321503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767435', 3767435, '384.954498', '71.312561', '-255.829102', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767436', 3767436, '381.795898', '71.738327', '-257.517487', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767437', 3767437, '387.359314', '69.869453', '-264.137299', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767445', 3767445, '628.911987', '66.716454', '-231.728607', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767446', 3767446, '630.792603', '66.280296', '-209.603195', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767447', 3767447, '629.602417', '66.422333', '-211.983597', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767448', 3767448, '627.954529', '66.392159', '-210.335602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767449', 3767449, '632.471130', '66.334442', '-211.800507', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767450', 3767450, '630.285278', '66.806633', '-233.987000', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767455', 3767455, '662.184509', '66.885223', '-232.532303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767456', 3767456, '663.832520', '66.880669', '-235.767197', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767457', 3767457, '660.994324', '67.126022', '-234.912704', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767458', 3767458, '679.883301', '64.783623', '-225.588394', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767462', 3767462, '683.051575', '64.449142', '-221.445694', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767463', 3767463, '686.133911', '64.440773', '-225.077301', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767464', 3767464, '682.532776', '64.535759', '-223.856598', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767465', 3767465, '680.213379', '64.599297', '-222.178101', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767466', 3767466, '644.667419', '61.202068', '-179.041107', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98228, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767467', 3767467, '646.345825', '61.561089', '-181.268906', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767468', 3767468, '625.297607', '63.148769', '-175.494003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767469', 3767469, '624.534729', '62.919571', '-173.449295', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767472', 3767472, '612.920227', '62.437519', '-154.581299', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97140, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767473', 3767473, '618.413513', '60.995640', '-154.157501', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96868, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767474', 3767474, '611.729980', '62.836342', '-156.961700', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96596, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767475', 3767475, '610.081970', '62.919849', '-155.313705', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96324, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767480', 3767480, '599.736572', '66.081619', '-200.660995', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96052, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767481', 3767481, '603.400085', '66.248016', '-212.652893', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95780, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767482', 3767482, '600.591125', '66.117447', '-203.224594', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767487', 3767487, '582.119629', '63.525211', '-162.909500', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767488', 3767488, '583.554016', '63.640011', '-161.566696', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767504', 3767504, '384.336212', '81.769058', '-374.104706', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767505', 3767505, '386.960785', '82.047218', '-374.979614', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92250, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767508', 3767508, '420.230408', '83.041237', '-377.818695', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91978, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767509', 3767509, '416.202087', '83.456848', '-380.199188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91706, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767510', 3767510, '414.218414', '82.361076', '-374.217590', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91434, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767538', 3767538, '559.649475', '74.212418', '-273.297485', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90080, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767539', 3767539, '565.844971', '73.504051', '-271.077698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89808, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767541', 3767541, '530.575989', '78.841171', '-292.050598', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89536, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767542', 3767542, '536.018616', '73.912933', '-270.240601', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89264, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767543', 3767543, '527.257324', '78.277519', '-291.082397', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88992, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767550', 3767550, '559.405579', '68.352837', '-230.727402', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88720, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767551', 3767551, '504.920990', '71.617661', '-255.737900', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88448, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767552', 3767552, '562.426697', '74.626442', '-275.098114', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88176, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767553', 3767553, '515.106079', '86.958946', '-357.724792', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87886, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767554', 3767554, '555.815430', '86.288918', '-333.674286', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87614, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767555', 3767555, '550.172974', '86.038811', '-337.105713', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87342, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767556', 3767556, '556.703918', '86.005051', '-341.164612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87070, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767558', 3767558, '595.652222', '100.886101', '-481.113007', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86798, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767559', 3767559, '565.758728', '90.501213', '-411.795288', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767560', 3767560, '593.128418', '99.817238', '-476.295013', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767561', 3767561, '597.171326', '86.616676', '-366.082886', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767562', 3767562, '592.898621', '86.573059', '-364.752991', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767565', 3767565, '659.080383', '68.157593', '-282.327087', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767566', 3767566, '655.601379', '67.872910', '-278.542786', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767568', 3767568, '696.297791', '66.817932', '-301.967896', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767583', 3767583, '629.275208', '76.769440', '-316.382690', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84622, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767584', 3767584, '635.718506', '76.129578', '-319.129303', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84350, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767675', 3767675, '637.937683', '75.470261', '-314.178314', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84078, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767694', 3767694, '274.187408', '73.498833', '-235.511505', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767702', 3767702, '282.131287', '73.968918', '-250.520294', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767704', 3767704, '283.459686', '74.239098', '-252.146103', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767705', 3767705, '285.161987', '73.984657', '-268.017487', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767706', 3767706, '277.286194', '74.210907', '-280.408813', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767707', 3767707, '277.586212', '74.130417', '-281.519714', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767709', 3767709, '268.511505', '73.750023', '-310.081207', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767710', 3767710, '290.727997', '75.783447', '-320.191986', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767711', 3767711, '291.566193', '75.961906', '-321.088593', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767712', 3767712, '240.649994', '74.570793', '-328.847198', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767715', 3767715, '221.796799', '75.280907', '-305.122711', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767716', 3767716, '234.573196', '72.438171', '-271.531403', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767717', 3767717, '235.577301', '72.991150', '-274.815186', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767721', 3767721, '341.847809', '47.013062', '1.602173', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80300, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767722', 3767722, '413.717804', '55.405399', '-18.570250', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80028, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767725', 3767725, '414.877411', '56.473511', '-20.889650', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79756, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767729', 3767729, '340.932404', '58.884521', '-68.986153', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767730', 3767730, '349.904510', '70.939087', '-141.039200', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767735', 3767735, '351.399994', '71.122192', '-139.177597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767772', 3767772, '385.992096', '79.489769', '-359.438690', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767779', 3767779, '406.035400', '88.015427', '-400.377411', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767782', 3767782, '403.608612', '88.645103', '-402.194885', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767814', 3767814, '635.174072', '71.616203', '-284.468597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767845', 3767845, '633.182922', '72.289650', '-286.197998', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767846', 3767846, '635.372375', '67.114166', '-231.371002', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767853', 3767853, '622.306885', '64.499603', '-174.464905', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767854', 3767854, '645.827026', '60.818569', '-177.759293', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767857', 3767857, '725.192871', '64.427238', '-240.193405', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76492, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(10, 's1f2_client_benchmark', 'bnpc3767859', 3767859, '617.085510', '62.126339', '-147.285202', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767860', 3767860, '673.612427', '64.732903', '-189.639206', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767863', 3767863, '676.003723', '64.536713', '-188.308105', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767872', 3767872, '678.086914', '64.518532', '-207.618896', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767901', 3767901, '653.968079', '78.578423', '-360.327515', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767906', 3767906, '656.550293', '77.457336', '-356.077393', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767907', 3767907, '657.869080', '77.894173', '-358.050293', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3767910', 3767910, '590.645020', '90.549652', '-389.681702', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3768115', 3768115, '530.515381', '91.184883', '-383.319305', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3768118', 3768118, '533.323120', '90.657288', '-380.765015', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3768152', 3768152, '508.880707', '96.069290', '-437.340302', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71342, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3768153', 3768153, '519.773071', '96.615059', '-445.083588', 752, 0, 0, 0, 0, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71608, 3, 0, 0, 0, 16, 30059, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3768154', 3768154, '523.339417', '94.818977', '-429.381287', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72962, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3768156', 3768156, '535.457581', '96.545937', '-468.044800', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72690, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3768157', 3768157, '520.360107', '95.886787', '-460.180389', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72424, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3768158', 3768158, '535.493225', '94.402260', '-439.778015', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70526, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3768159', 3768159, '502.875793', '97.415413', '-416.738495', 754, 0, 0, 0, 0, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73234, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3768160', 3768160, '521.578979', '94.382271', '-413.852905', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72152, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3768161', 3768161, '509.317200', '94.366043', '-398.691711', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71070, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3768165', 3768165, '517.667175', '95.947739', '-463.471588', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73506, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3768166', 3768166, '501.819092', '97.276329', '-413.591797', 751, 0, 0, 0, 0, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70798, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3768167', 3768167, '534.916016', '94.227654', '-435.617798', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71880, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873220', 3873220, '-19.011200', '59.577240', '478.601715', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68768, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873222', 3873222, '-57.635151', '54.398960', '509.264313', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68496, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873223', 3873223, '-72.043533', '60.186852', '494.941803', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68224, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873226', 3873226, '-82.569511', '59.009541', '500.667694', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67952, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873227', 3873227, '-85.215538', '58.176079', '495.797913', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67680, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873232', 3873232, '-26.285730', '45.126209', '554.549622', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67408, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873233', 3873233, '-80.450127', '53.830681', '543.885925', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67136, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873235', 3873235, '-77.768517', '54.979061', '539.636902', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66864, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873237', 3873237, '-49.665508', '40.839931', '590.425781', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66592, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873238', 3873238, '-51.547249', '40.978630', '596.975098', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66320, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873240', 3873240, '-56.989220', '40.385479', '595.949585', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66048, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873243', 3873243, '73.494881', '48.720230', '629.534424', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65776, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873244', 3873244, '83.244293', '50.021931', '641.594727', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65504, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873246', 3873246, '77.347931', '48.172680', '641.229797', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65232, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873247', 3873247, '77.649078', '56.774830', '716.941528', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64960, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873249', 3873249, '79.648613', '56.806110', '720.165710', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64688, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873250', 3873250, '52.669842', '55.384899', '724.728516', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873255', 3873255, '48.538898', '36.148571', '656.885620', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64144, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873256', 3873256, '46.513409', '36.839489', '684.859314', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63872, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873257', 3873257, '41.888302', '35.921108', '686.955078', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63600, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873265', 3873265, '34.495090', '45.667789', '819.153381', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63328, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873271', 3873271, '-18.570280', '43.203621', '763.671082', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63056, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873272', 3873272, '-24.521290', '43.172451', '761.992676', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62784, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873275', 3873275, '37.190269', '46.111851', '822.446777', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62512, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873324', 3873324, '79.270752', '49.720821', '871.732483', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62240, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873328', 3873328, '31.098160', '46.232330', '851.456421', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61968, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873329', 3873329, '-90.470787', '8.590782', '680.567627', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61702, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873330', 3873330, '-224.494995', '-0.300003', '686.536377', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61430, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873331', 3873331, '-215.466797', '-0.252817', '694.899719', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61158, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873332', 3873332, '-120.012199', '3.585823', '702.235413', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60886, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873333', 3873333, '-207.511307', '-0.292601', '666.813293', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60614, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873334', 3873334, '-171.158203', '-0.710317', '738.778076', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60342, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873335', 3873335, '-132.077698', '0.394896', '752.015930', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60070, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873336', 3873336, '-122.561096', '0.570598', '756.478577', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59798, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873337', 3873337, '-78.064957', '2.435715', '762.539001', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59526, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873339', 3873339, '-81.966408', '2.959849', '802.456604', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59254, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873340', 3873340, '-17.237820', '8.762830', '808.010925', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58982, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873343', 3873343, '91.020012', '21.945419', '806.005371', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58710, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873345', 3873345, '127.519600', '23.025820', '809.445313', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58438, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873348', 3873348, '121.338402', '24.555710', '817.927795', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58166, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873353', 3873353, '213.397400', '25.314671', '805.691528', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57894, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873359', 3873359, '80.472221', '24.632441', '756.982178', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57622, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873362', 3873362, '24.652531', '14.575950', '784.440430', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57350, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873363', 3873363, '139.838699', '21.711720', '778.939575', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57078, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873367', 3873367, '251.139801', '6.797970', '788.702271', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873368', 3873368, '253.283096', '6.540766', '787.524292', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873369', 3873369, '254.565994', '6.283995', '780.385681', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873371', 3873371, '246.057800', '9.008336', '801.580994', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873374', 3873374, '248.002304', '6.721136', '783.831970', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873375', 3873375, '248.302399', '6.265314', '767.472473', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873376', 3873376, '246.801407', '6.267453', '768.374390', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873379', 3873379, '-3.098505', '41.687851', '623.973083', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54914, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873381', 3873381, '-0.691058', '42.488289', '627.270020', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873382', 3873382, '-6.383020', '41.661289', '631.828674', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873385', 3873385, '-12.702990', '41.812180', '707.756409', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873386', 3873386, '-10.462590', '41.960880', '705.075378', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873387', 3873387, '-52.108768', '38.325489', '665.766113', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873388', 3873388, '-55.987579', '36.343479', '670.810486', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873389', 3873389, '-59.405991', '38.476730', '658.650818', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53010, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873390', 3873390, '-59.105999', '36.026340', '668.374023', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52738, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873396', 3873396, '-160.952896', '1.569027', '667.861206', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48398, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873398', 3873398, '-161.990494', '1.669328', '666.421692', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48126, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873399', 3873399, '-150.636902', '5.134464', '653.424011', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47854, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873401', 3873401, '-144.836700', '4.701064', '665.153870', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47582, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873402', 3873402, '-149.620605', '3.102985', '669.616089', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47310, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873403', 3873403, '-155.732605', '1.144920', '679.460327', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47038, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873404', 3873404, '-142.607895', '1.054965', '712.663025', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46766, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873405', 3873405, '-148.567505', '0.750069', '714.199524', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46494, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873406', 3873406, '-149.139404', '0.759766', '712.362000', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46222, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873420', 3873420, '-59.783230', '40.755260', '572.130127', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873421', 3873421, '-58.553791', '40.657639', '574.646973', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873422', 3873422, '-25.335461', '55.583641', '513.424194', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873425', 3873425, '142.979706', '22.710770', '829.297302', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51656, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873426', 3873426, '220.695999', '20.348419', '790.027283', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51384, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873427', 3873427, '69.222389', '20.622999', '778.105286', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51112, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873428', 3873428, '70.471992', '21.233120', '776.341980', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50840, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873430', 3873430, '66.086601', '57.020870', '725.806213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50568, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873431', 3873431, '79.195717', '52.007320', '685.675415', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50296, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873432', 3873432, '79.268204', '51.686298', '683.238892', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50024, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873433', 3873433, '-129.812698', '8.744282', '655.901672', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873434', 3873434, '-127.513100', '8.619234', '660.065491', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873435', 3873435, '-70.867996', '3.471146', '805.643616', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873461', 3873461, '18.223940', '44.911652', '832.339600', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc3873463', 3873463, '129.763306', '48.053009', '868.938477', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48664, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc4057136', 4057136, '-29.171040', '70.937523', '112.141998', 784, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23136, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc4057153', 4057153, '-33.309830', '59.142609', '456.249786', 785, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22870, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc4057178', 4057178, '-0.370673', '36.202759', '591.413818', 786, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22604, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc4057204', 4057204, '126.070801', '23.201380', '735.619629', 788, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22338, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc4510193', 4510193, '600.272400', '61.718521', '-115.521301', 787, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22072, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc4621602', 4621602, '205.951904', '73.024078', '-291.708496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26712, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc4867727', 4867727, '-103.902603', '2.225230', '731.826416', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26326, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc4867728', 4867728, '-115.780197', '1.850056', '725.665710', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26054, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc4867729', 4867729, '-96.687714', '2.097239', '744.887817', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25782, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc4867730', 4867730, '-98.053673', '1.671072', '759.716797', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25510, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc4867731', 4867731, '-109.169701', '1.535632', '746.508301', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23746, 8, 0, 0, 0, 0, 0, 4867752, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc4867733', 4867733, '-113.730499', '0.984999', '755.556274', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24018, 8, 0, 0, 0, 0, 0, 4867753, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc4867735', 4867735, '-122.788597', '0.819352', '748.165283', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25244, 8, 0, 0, 0, 0, 0, 4867761, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc4867736', 4867736, '-111.623299', '1.689789', '738.438904', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24972, 8, 0, 0, 0, 0, 0, 4867748, 0, 0), +(10, 's1f2_client_benchmark', 'bnpc4867737', 4867737, '-123.906197', '0.960864', '734.838501', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23474, 8, 0, 0, 0, 0, 0, 4867754, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1332316', 1332316, '-48.829159', '14.045880', '-13.919290', 76, 0, 0, 0, 0, 0, 0, 0, 73, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 21588, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334952', 1334952, '-7.879776', '30.829121', '-16.246740', 82, 0, 0, 0, 0, 0, 0, 0, 79, 0, '0.000000', 16, 0, 0, 0, 0, 1, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 18620, 1, 6, 2000, 0, 0, 30111, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334953', 1334953, '-5.509180', '29.614531', '-18.574800', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 1, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 15652, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334954', 1334954, '-5.502441', '29.720200', '-14.650200', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 1, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 15380, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334955', 1334955, '-23.165661', '24.713131', '20.988779', 83, 0, 0, 0, 0, 0, 0, 0, 79, 0, '0.000000', 16, 0, 0, 0, 0, 2, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 18354, 1, 6, 2000, 0, 0, 30111, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334956', 1334956, '-20.111259', '23.654711', '21.363100', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 2, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 15108, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334957', 1334957, '-23.262150', '23.700979', '23.572571', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 2, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 14836, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334959', 1334959, '-21.286381', '23.605650', '22.873230', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 2, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 14564, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334960', 1334960, '-95.201912', '14.906600', '3.900912', 137, 0, 0, 0, 0, 0, 0, 0, 119, 0, '0.000000', 16, 0, 0, 0, 0, 3, 0, 30, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 18088, 1, 6, 2000, 0, 0, 30111, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334961', 1334961, '-92.004013', '13.656780', '12.243930', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 3, 0, 30, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 14292, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334962', 1334962, '-94.882767', '13.839910', '6.681185', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 3, 0, 30, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 14020, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334963', 1334963, '-92.223839', '13.656800', '15.158940', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 3, 0, 30, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 13748, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334965', 1334965, '-97.796120', '13.656800', '4.496320', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 3, 0, 30, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 13476, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334967', 1334967, '-52.977772', '14.391350', '-24.628670', 126, 0, 0, 0, 0, 0, 0, 0, 110, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 20784, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334968', 1334968, '-50.477921', '14.391350', '-23.966190', 126, 0, 0, 0, 0, 0, 0, 0, 110, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 20512, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334969', 1334969, '-41.627171', '14.048270', '-18.482430', 126, 0, 0, 0, 0, 0, 0, 0, 110, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 20240, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334970', 1334970, '-40.026581', '14.391350', '-16.062910', 126, 0, 0, 0, 0, 0, 0, 0, 110, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 19968, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334971', 1334971, '-40.237289', '14.391350', '-6.984694', 126, 0, 0, 0, 0, 0, 0, 0, 110, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 19696, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334972', 1334972, '-41.977619', '14.389210', '-5.233891', 126, 0, 0, 0, 0, 0, 0, 0, 110, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 19424, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334973', 1334973, '-37.568890', '14.686780', '-11.828650', 125, 0, 0, 0, 0, 0, 0, 0, 456, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 21050, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334974', 1334974, '-45.151489', '14.053510', '-24.673880', 125, 0, 0, 0, 0, 0, 0, 0, 456, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 21322, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334975', 1334975, '-39.749802', '14.022990', '-17.898880', 127, 0, 0, 0, 0, 0, 0, 0, 111, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 18886, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc1334976', 1334976, '-51.377171', '14.297660', '-25.040100', 127, 0, 0, 0, 0, 0, 0, 0, 111, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 19158, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2029061', 2029061, '-43.534031', '14.053510', '0.167802', 125, 0, 0, 0, 0, 0, 0, 0, 456, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 17786, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2029064', 2029064, '-58.609951', '14.053510', '2.273547', 125, 0, 0, 0, 0, 0, 0, 0, 456, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 17514, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2029065', 2029065, '-67.399147', '13.992480', '-16.250900', 125, 0, 0, 0, 0, 0, 0, 0, 456, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 17242, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2029067', 2029067, '-58.518391', '14.053510', '-26.108231', 125, 0, 0, 0, 0, 0, 0, 0, 456, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 16970, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2029118', 2029118, '-39.963421', '14.022990', '-5.142337', 127, 0, 0, 0, 0, 0, 0, 0, 111, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 16710, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2372233', 2372233, '40.470921', '32.851158', '-29.631550', 1346, 0, 0, 0, 2, 0, 0, 0, 143, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33170, 1, 3, 2000, 0, 0, 0, 4217087, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2372238', 2372238, '64.605553', '35.355011', '-41.091770', 1346, 0, 0, 0, 1, 0, 0, 0, 143, 0, '0.000000', 16, 0, 120, 1, 0, 15, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32898, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2372239', 2372239, '69.126572', '35.354961', '-42.002979', 1346, 0, 0, 0, 1, 6, 0, 0, 143, 0, '0.000000', 16, 0, 120, 1, 0, 15, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33442, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2372249', 2372249, '81.677719', '40.937019', '-87.882561', 1352, 0, 0, 0, 2, 6, 0, 0, 147, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33708, 1, 3, 2000, 0, 0, 0, 4217086, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2372328', 2372328, '12.680240', '41.092529', '-88.731262', 1348, 0, 0, 0, 1, 6, 0, 0, 145, 0, '0.000000', 16, 0, 120, 1, 0, 13, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34512, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2372348', 2372348, '59.586430', '40.115971', '-81.406921', 1348, 0, 0, 0, 1, 6, 0, 0, 145, 0, '0.000000', 16, 0, 120, 1, 0, 14, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34784, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2372998', 2372998, '12.928850', '23.384501', '75.450447', 1350, 0, 0, 0, 1, 6, 0, 0, 111, 0, '0.000000', 16, 0, 120, 1, 0, 24, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30074, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2372999', 2372999, '14.970920', '23.453131', '68.173920', 1350, 0, 0, 0, 1, 6, 0, 0, 111, 0, '0.000000', 16, 0, 120, 1, 0, 24, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29802, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2373649', 2373649, '33.138599', '23.572519', '39.973331', 1347, 0, 0, 0, 2, 6, 0, 0, 144, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30612, 1, 3, 2000, 0, 0, 0, 4217089, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2373653', 2373653, '67.364571', '23.706730', '9.159799', 1350, 0, 0, 0, 1, 6, 0, 0, 111, 0, '0.000000', 16, 0, 120, 1, 0, 23, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30346, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2373657', 2373657, '31.414961', '23.535040', '34.148060', 1349, 0, 0, 0, 1, 6, 0, 0, 146, 0, '0.000000', 16, 0, 120, 1, 0, 22, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30866, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2373663', 2373663, '-110.948402', '13.778870', '15.976140', 1347, 0, 0, 0, 1, 6, 0, 0, 144, 0, '0.000000', 16, 0, 120, 1, 0, 36, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25836, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2373664', 2373664, '-106.498497', '13.782470', '16.511530', 1346, 0, 0, 0, 2, 6, 0, 0, 143, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26374, 1, 3, 2000, 0, 0, 0, 4217097, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2373665', 2373665, '-171.587799', '12.649660', '-4.409851', 1388, 0, 0, 0, 0, 6, 0, 0, 1271, 0, '0.000000', 16, 0, 120, 1, 0, 41, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 22312, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2373666', 2373666, '-171.831894', '12.649660', '-7.309082', 1346, 0, 0, 0, 0, 6, 0, 0, 143, 0, '0.000000', 16, 0, 120, 1, 0, 41, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 22022, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2373667', 2373667, '-174.395401', '12.527650', '-3.097595', 1347, 0, 0, 0, 0, 6, 0, 0, 144, 0, '0.000000', 16, 0, 120, 1, 0, 41, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26108, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2373676', 2373676, '-146.990204', '15.915160', '107.927002', 1352, 0, 0, 0, 2, 6, 0, 0, 147, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27456, 1, 3, 2000, 0, 0, 0, 4217145, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2373677', 2373677, '-150.957504', '15.976140', '99.320923', 1352, 0, 0, 0, 2, 6, 0, 0, 147, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27184, 1, 3, 2000, 0, 0, 0, 4217145, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2373715', 2373715, '-122.514702', '15.976140', '67.399048', 1351, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 16, 0, 120, 1, 0, 35, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26942, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2380805', 2380805, '16.449720', '41.094021', '-86.946388', 1349, 0, 0, 0, 1, 6, 0, 0, 146, 0, '0.000000', 16, 0, 120, 1, 0, 13, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33974, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2380810', 2380810, '-17.783590', '41.350811', '-71.202271', 1349, 0, 0, 0, 1, 6, 0, 0, 146, 0, '0.000000', 16, 0, 120, 1, 0, 12, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34246, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2380906', 2380906, '21.159510', '23.392019', '74.739922', 1350, 0, 0, 0, 1, 6, 0, 0, 111, 0, '0.000000', 16, 0, 120, 1, 0, 24, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29258, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2380915', 2380915, '8.138228', '29.253321', '14.000250', 1350, 0, 0, 0, 1, 6, 0, 0, 111, 0, '0.000000', 16, 0, 120, 1, 0, 21, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29530, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2380939', 2380939, '-116.838402', '15.945620', '65.842651', 1351, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 16, 0, 120, 1, 0, 35, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26670, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc2380947', 2380947, '-174.700607', '12.649660', '-7.888916', 1347, 0, 0, 0, 0, 6, 0, 0, 144, 0, '0.000000', 16, 0, 120, 1, 0, 41, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25564, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc3859972', 3859972, '-6.003298', '30.123409', '-16.575911', 567, 0, 0, 0, 0, 6, 0, 0, 455, 0, '0.000000', 16, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16462, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc3859980', 3859980, '-21.867100', '24.093081', '22.095341', 567, 0, 0, 0, 0, 6, 0, 0, 455, 0, '0.000000', 16, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16190, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc3859984', 3859984, '-91.435806', '13.839910', '8.472486', 567, 0, 0, 0, 0, 6, 0, 0, 455, 0, '0.000000', 16, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15918, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4174607', 4174607, '-57.175598', '44.296879', '-81.000000', 1346, 0, 0, 0, 0, 6, 0, 0, 143, 0, '0.000000', 16, 0, 120, 1, 0, 11, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32626, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4174608', 4174608, '-52.406731', '44.357910', '-81.000000', 1346, 0, 0, 0, 0, 0, 0, 0, 143, 0, '0.000000', 16, 0, 120, 1, 0, 11, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32354, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4174609', 4174609, '29.039829', '41.000000', '-89.874382', 1346, 0, 0, 0, 2, 0, 0, 0, 143, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32082, 1, 3, 2000, 0, 0, 0, 4217084, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4174646', 4174646, '69.138550', '23.727720', '5.813660', 1352, 0, 0, 0, 1, 6, 0, 0, 147, 0, '0.000000', 16, 0, 120, 1, 0, 23, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28968, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4174678', 4174678, '-19.363770', '18.478640', '83.848267', 1388, 0, 0, 0, 2, 0, 0, 0, 1271, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25304, 1, 3, 2000, 0, 0, 0, 4217095, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4174715', 4174715, '-43.778141', '18.631229', '91.935547', 1351, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 16, 0, 120, 1, 0, 33, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25038, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4174716', 4174716, '-49.499729', '18.298790', '93.392548', 1351, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 16, 0, 120, 1, 0, 33, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24766, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4174717', 4174717, '-34.967670', '22.459360', '44.253990', 1351, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 16, 0, 120, 1, 0, 31, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24494, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4174720', 4174720, '-107.621902', '13.778870', '21.225281', 1388, 0, 0, 0, 1, 0, 0, 0, 1271, 0, '0.000000', 16, 0, 120, 1, 0, 36, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24216, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4217124', 4217124, '-14.097060', '41.316799', '-69.614777', 1349, 0, 0, 0, 1, 6, 0, 0, 146, 0, '0.000000', 16, 0, 120, 1, 0, 12, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31798, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4217125', 4217125, '56.482510', '40.030540', '-76.111214', 1348, 0, 0, 0, 1, 6, 0, 0, 145, 0, '0.000000', 16, 0, 120, 1, 0, 14, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31520, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4217126', 4217126, '96.232140', '40.815369', '-92.025398', 1352, 0, 0, 0, 2, 6, 0, 0, 147, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31260, 1, 3, 2000, 0, 0, 0, 4217086, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4217128', 4217128, '16.734699', '28.361031', '19.855450', 1388, 0, 0, 0, 2, 6, 0, 0, 1271, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28720, 1, 3, 2000, 0, 0, 0, 4217088, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4217129', 4217129, '5.583970', '31.072531', '10.059360', 1350, 0, 0, 0, 1, 6, 0, 0, 111, 0, '0.000000', 16, 0, 120, 1, 0, 21, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28442, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4217130', 4217130, '34.267551', '23.549999', '30.522020', 1348, 0, 0, 0, 1, 6, 0, 0, 145, 0, '0.000000', 16, 0, 120, 1, 0, 22, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28140, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4217131', 4217131, '35.855000', '23.514099', '34.362549', 1348, 0, 0, 0, 1, 6, 0, 0, 145, 0, '0.000000', 16, 0, 120, 1, 0, 22, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27868, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4217134', 4217134, '-36.365040', '22.427361', '47.503910', 1351, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 16, 0, 120, 1, 0, 31, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23950, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4217140', 4217140, '-23.116039', '18.237049', '89.044937', 1349, 0, 0, 0, 1, 6, 0, 0, 146, 0, '0.000000', 16, 0, 120, 1, 0, 32, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23642, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4217141', 4217141, '-21.102160', '18.475571', '84.030884', 1349, 0, 0, 0, 1, 6, 0, 0, 146, 0, '0.000000', 16, 0, 120, 1, 0, 32, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23370, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4217142', 4217142, '-126.203102', '15.986050', '93.396667', 1347, 0, 0, 0, 1, 6, 0, 0, 144, 0, '0.000000', 16, 0, 120, 1, 0, 34, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23116, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4217143', 4217143, '-128.609100', '15.956230', '88.970192', 1388, 0, 0, 0, 1, 0, 0, 0, 1271, 0, '0.000000', 16, 0, 120, 1, 0, 34, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 22856, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(11, 'f1d1_client_benchmark', 'bnpc4217144', 4217144, '-125.389297', '16.065760', '89.869827', 1347, 0, 0, 0, 2, 6, 0, 0, 144, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22572, 1, 3, 2000, 0, 0, 0, 4217096, 0, 0), +(22, 'qib_test', 'bnpc3879685', 3879685, '23.483589', '-3.344040', '69.474274', 540, 0, 0, 0, 1, 6, 0, 0, 138, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 750, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(22, 'qib_test', 'bnpc3963616', 3963616, '12.788210', '-3.848850', '90.104469', 113, 0, 0, 0, 1, 6, 0, 0, 573, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 2488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(22, 'qib_test', 'bnpc3963617', 3963617, '7.031832', '-2.244302', '76.589859', 246, 0, 0, 0, 1, 6, 0, 0, 578, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 2222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(22, 'qib_test', 'bnpc3995190', 3995190, '-1.593716', '-2.616982', '80.940651', 249, 0, 0, 0, 0, 6, 0, 0, 619, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 1396, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929298', 3929298, '2.578727', '46.242130', '89.066856', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106598, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929300', 3929300, '154.466995', '46.291969', '133.531601', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106870, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929301', 3929301, '-32.773281', '40.774231', '67.215347', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62568, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929303', 3929303, '-28.213820', '41.179878', '64.173943', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62296, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929305', 3929305, '8.662592', '42.689850', '45.686710', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62024, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929306', 3929306, '13.183170', '42.815102', '41.155972', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61752, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929307', 3929307, '12.633850', '42.762321', '45.031761', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61480, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929308', 3929308, '83.202133', '43.374279', '33.127289', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61208, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929310', 3929310, '107.530296', '44.219631', '32.892910', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60936, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929311', 3929311, '110.185303', '44.303749', '30.939760', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60664, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929313', 3929313, '-41.367249', '44.463268', '115.983803', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134868, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929315', 3929315, '-64.483994', '44.221882', '108.658401', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 0, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134596, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929319', 3929319, '-62.882469', '44.443130', '110.643097', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929320', 3929320, '-67.124481', '43.839500', '114.061096', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134052, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929322', 3929322, '-84.184067', '44.665230', '140.856003', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133780, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929323', 3929323, '-86.198257', '45.235828', '143.511002', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929326', 3929326, '-72.007370', '42.584850', '150.499695', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929327', 3929327, '9.933576', '43.348518', '109.513901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929330', 3929330, '-16.098310', '44.986568', '99.015739', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132692, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929331', 3929331, '-18.173540', '45.462231', '95.170471', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929332', 3929332, '5.935712', '46.903179', '76.340843', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929333', 3929333, '31.174129', '43.952351', '145.616806', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929334', 3929334, '39.963329', '44.737961', '148.119293', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131604, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929335', 3929335, '31.357241', '44.031109', '155.077393', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131332, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929336', 3929336, '38.651051', '44.626740', '146.440796', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929338', 3929338, '38.895199', '44.219131', '96.910004', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929339', 3929339, '42.160629', '44.387291', '96.482742', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130516, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929340', 3929340, '6.515503', '32.613819', '167.589798', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130244, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929342', 3929342, '-15.976240', '28.111290', '180.102203', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129972, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929343', 3929343, '-17.563181', '28.060829', '182.726700', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129700, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929344', 3929344, '-5.020265', '23.736271', '199.389603', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929345', 3929345, '-3.494363', '24.235390', '196.307297', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129156, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929346', 3929346, '-1.510690', '23.913940', '198.748703', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929347', 3929347, '17.227421', '29.147539', '192.309402', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128612, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929353', 3929353, '76.584961', '46.652691', '118.364098', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128340, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929355', 3929355, '100.907799', '48.208359', '64.560791', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128068, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929356', 3929356, '103.440804', '48.287861', '69.260620', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929357', 3929357, '97.886597', '48.162868', '66.422493', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127524, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929358', 3929358, '75.394783', '47.995930', '57.511230', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127252, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929359', 3929359, '72.770264', '48.021091', '55.741089', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126980, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929361', 3929361, '97.978149', '47.044201', '84.183960', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126708, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929362', 3929362, '133.287506', '48.588211', '77.775269', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126436, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929363', 3929363, '135.271103', '48.582859', '78.843384', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126164, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929364', 3929364, '134.172607', '48.281239', '57.785889', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125892, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929366', 3929366, '131.364899', '46.312809', '110.704102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125620, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929367', 3929367, '134.965897', '46.384861', '111.589203', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125348, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929369', 3929369, '133.928497', '46.630039', '108.415298', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125076, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929370', 3929370, '160.601196', '47.107681', '107.804901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124804, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929371', 3929371, '158.648102', '47.043930', '108.811996', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124532, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929373', 3929373, '87.449463', '46.439480', '122.392601', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124260, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929374', 3929374, '89.402588', '46.291409', '119.066002', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123988, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929379', 3929379, '79.026489', '46.295200', '172.747299', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123722, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929381', 3929381, '55.313839', '47.580700', '188.036896', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123450, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929382', 3929382, '59.983150', '48.833561', '191.790604', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123178, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929383', 3929383, '55.496948', '49.485981', '193.255493', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122906, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929384', 3929384, '40.207520', '50.527809', '210.284500', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122634, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929385', 3929385, '37.171730', '50.727009', '213.792206', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122362, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929386', 3929386, '68.163307', '56.521938', '225.312607', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122090, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929387', 3929387, '54.398369', '56.626060', '241.565506', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121818, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929388', 3929388, '72.589951', '56.790089', '227.695297', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121546, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929389', 3929389, '116.563599', '50.650009', '183.367706', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121274, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929390', 3929390, '120.317299', '49.333080', '176.928299', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121002, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929391', 3929391, '112.138496', '57.097969', '213.153198', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120730, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929392', 3929392, '127.885902', '49.931992', '177.782806', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120458, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929394', 3929394, '115.251297', '57.518108', '214.251801', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120186, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929396', 3929396, '125.779999', '52.105469', '187.182404', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119914, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929397', 3929397, '108.506798', '46.810520', '148.088699', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119642, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929398', 3929398, '105.393997', '46.639080', '146.959595', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119370, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929400', 3929400, '175.585602', '47.639019', '147.630997', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119098, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929401', 3929401, '183.975204', '48.843269', '153.229202', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118826, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929403', 3929403, '178.149002', '47.405022', '144.853806', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118554, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929404', 3929404, '186.666794', '55.711109', '189.380295', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118282, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929405', 3929405, '183.897797', '55.522209', '192.259796', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118010, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929406', 3929406, '188.514496', '58.364479', '196.141098', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117738, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929407', 3929407, '190.993103', '63.780270', '212.770905', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117466, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929408', 3929408, '167.906097', '54.582249', '207.555405', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117194, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929409', 3929409, '142.684006', '57.000031', '221.431396', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116922, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929410', 3929410, '137.517303', '57.770241', '224.725601', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116650, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929412', 3929412, '140.714096', '57.641670', '227.264099', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116378, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929413', 3929413, '147.277206', '57.573250', '230.267700', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116106, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929415', 3929415, '132.701004', '59.887051', '252.613098', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115834, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929416', 3929416, '155.349503', '60.722469', '262.394104', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115562, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929417', 3929417, '152.622498', '60.751789', '265.042389', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115290, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929420', 3929420, '54.698360', '61.151402', '279.140015', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115018, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929421', 3929421, '56.888519', '60.853931', '277.569885', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114746, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929423', 3929423, '74.967529', '46.674271', '133.257004', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107142, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929428', 3929428, '-79.240143', '44.199680', '141.771500', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114480, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929431', 3929431, '-49.668159', '44.146759', '101.335098', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114208, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929432', 3929432, '-5.630626', '46.383801', '88.914268', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113936, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929433', 3929433, '38.284840', '47.256828', '61.997360', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113664, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929435', 3929435, '37.766029', '44.173309', '103.105202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113392, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929438', 3929438, '33.798679', '44.230461', '150.377594', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113120, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929439', 3929439, '23.575130', '32.314270', '182.543701', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112848, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929440', 3929440, '24.704220', '32.888840', '184.801895', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112576, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929441', 3929441, '-7.156528', '28.523640', '176.836700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112304, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929442', 3929442, '8.926480', '28.079479', '213.183701', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112032, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929443', 3929443, '107.194603', '45.562160', '101.762497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111760, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929444', 3929444, '107.499802', '45.309570', '104.722702', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111488, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929445', 3929445, '96.330078', '47.994221', '51.621220', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111216, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929446', 3929446, '136.522293', '48.535961', '75.516853', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110944, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929489', 3929489, '104.234398', '46.884571', '152.330795', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110672, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929492', 3929492, '92.393311', '56.364761', '218.402298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929494', 3929494, '37.064091', '49.279091', '203.295898', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110128, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929495', 3929495, '86.381348', '47.170170', '181.353394', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109856, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929497', 3929497, '83.939819', '47.040508', '183.794907', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109584, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929498', 3929498, '91.314941', '60.775452', '256.840088', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109312, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929500', 3929500, '134.705704', '59.571301', '250.694107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109040, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929501', 3929501, '131.525299', '61.218529', '277.023590', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108768, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929502', 3929502, '200.545807', '49.630661', '148.869003', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108496, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929504', 3929504, '198.987793', '50.079350', '152.091995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108224, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929505', 3929505, '178.837997', '53.123459', '189.309799', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107952, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929506', 3929506, '181.171707', '59.001560', '223.100006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107680, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929507', 3929507, '126.924500', '58.802368', '223.399994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107408, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929728', 3929728, '57.677570', '57.037601', '-252.600006', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60392, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929730', 3929730, '16.799730', '54.286369', '-250.227097', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60120, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929731', 3929731, '21.166161', '54.789558', '-247.635101', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59848, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929733', 3929733, '-38.999229', '46.458340', '-213.513901', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59576, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929734', 3929734, '-72.817390', '45.500000', '-170.936401', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59304, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929735', 3929735, '-68.148132', '45.500000', '-172.858994', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59032, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929736', 3929736, '-70.620087', '45.500000', '-166.297607', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58760, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929737', 3929737, '-110.856796', '44.284451', '-131.487106', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58488, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929738', 3929738, '-101.976097', '45.015499', '-129.716995', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58216, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929740', 3929740, '-167.498306', '40.500000', '-61.966919', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57944, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929741', 3929741, '-167.193100', '40.500000', '-66.147888', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57672, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929742', 3929742, '-183.581406', '41.007771', '-109.056297', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929746', 3929746, '80.869362', '49.270599', '7.434502', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105496, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929747', 3929747, '29.012220', '49.028271', '-3.487470', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105224, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929748', 3929748, '77.311432', '49.709980', '3.491879', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104952, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929749', 3929749, '81.834106', '54.978149', '-65.232361', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104680, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929750', 3929750, '87.083130', '55.954830', '-70.298401', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104408, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929751', 3929751, '106.034897', '57.114498', '-51.468689', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104136, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929752', 3929752, '105.891502', '62.411079', '-101.484497', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103864, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929753', 3929753, '109.310799', '62.695950', '-97.230469', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103592, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929754', 3929754, '112.249298', '64.482712', '-105.898697', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103320, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929756', 3929756, '11.047700', '51.170399', '-56.780079', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103048, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929757', 3929757, '7.333039', '50.839249', '-59.004021', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102776, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929758', 3929758, '-9.942499', '48.132980', '-25.451969', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102504, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929759', 3929759, '-5.731009', '48.580139', '-23.376751', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102232, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929761', 3929761, '-0.174012', '53.131248', '-111.148903', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101960, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929762', 3929762, '-7.256910', '48.664841', '-31.555580', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101688, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929763', 3929763, '-0.610147', '46.842758', '24.196171', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101416, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929764', 3929764, '-16.474920', '49.226559', '-89.968887', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101144, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929765', 3929765, '-27.792070', '47.072651', '8.583298', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53810, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929767', 3929767, '76.915253', '51.330029', '-32.258850', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53538, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929769', 3929769, '-43.220982', '46.402618', '25.789110', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100872, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929770', 3929770, '3.832037', '53.483231', '-114.631203', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100600, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929771', 3929771, '12.344500', '52.316029', '-102.067596', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100328, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929772', 3929772, '-38.788712', '46.775139', '22.066339', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100056, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929773', 3929773, '-37.919960', '46.459820', '29.848379', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99784, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929774', 3929774, '-80.033630', '42.496342', '35.263550', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99512, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929776', 3929776, '-91.857826', '43.085781', '-23.419170', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99240, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929777', 3929777, '-87.681976', '42.651001', '-20.729090', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98968, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929778', 3929778, '-153.286896', '41.687149', '-29.617990', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98696, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929779', 3929779, '-149.248505', '42.913052', '-34.195511', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98424, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929780', 3929780, '-146.114700', '41.510841', '-23.279819', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98152, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929781', 3929781, '-91.557831', '45.832359', '-74.574440', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97880, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929782', 3929782, '-94.882561', '46.208530', '-79.633614', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97608, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929783', 3929783, '-87.110580', '46.547352', '-86.619080', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97336, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929786', 3929786, '-96.894127', '45.010529', '-44.811169', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97064, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929787', 3929787, '-62.452171', '48.231701', '-104.740601', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96792, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929794', 3929794, '-178.942596', '43.561249', '-181.994400', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96520, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929795', 3929795, '-126.848297', '47.734409', '-169.207306', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96248, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929796', 3929796, '-194.842499', '42.180161', '-142.809296', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95976, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929800', 3929800, '-192.279007', '41.889690', '-147.600601', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95704, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929801', 3929801, '-122.087502', '48.332630', '-170.000793', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95432, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929802', 3929802, '-123.918503', '48.047798', '-161.486298', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95160, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929803', 3929803, '-229.663605', '39.878719', '-179.980194', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94888, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929804', 3929804, '-181.170395', '41.225609', '-251.667099', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94616, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929805', 3929805, '-185.351303', '41.346439', '-247.821793', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94344, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929806', 3929806, '-195.330795', '40.334259', '-258.991394', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94072, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929808', 3929808, '131.630295', '52.191109', '0.493474', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54414, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(134, 's1f1', 'bnpc3929810', 3929810, '132.709000', '52.181438', '1.958378', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55230, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(134, 's1f1', 'bnpc3929812', 3929812, '115.385597', '49.234230', '11.315280', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54686, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(134, 's1f1', 'bnpc3929813', 3929813, '117.565399', '49.175140', '13.275840', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56046, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(134, 's1f1', 'bnpc3929815', 3929815, '118.431900', '49.488010', '10.180580', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56318, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(134, 's1f1', 'bnpc3929817', 3929817, '106.367798', '48.645981', '15.557140', 769, 0, 0, 0, 1, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55502, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(134, 's1f1', 'bnpc3929818', 3929818, '120.948303', '51.064060', '-0.143817', 769, 0, 0, 0, 1, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55774, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(134, 's1f1', 'bnpc3929820', 3929820, '134.218094', '51.528179', '9.775265', 769, 0, 0, 0, 1, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54958, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(134, 's1f1', 'bnpc3929826', 3929826, '-13.135430', '48.986919', '-86.472923', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93800, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929828', 3929828, '54.727501', '50.161850', '-32.944271', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93528, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929829', 3929829, '64.597313', '54.990398', '-122.676598', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929831', 3929831, '66.026863', '55.127190', '-121.580200', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929832', 3929832, '64.993713', '54.756149', '-119.316101', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929834', 3929834, '-11.130180', '54.068581', '-151.851303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929835', 3929835, '19.661039', '55.244888', '-153.973495', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929836', 3929836, '18.231480', '55.455791', '-155.069901', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929838', 3929838, '-9.406013', '54.140652', '-151.402298', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929839', 3929839, '-10.487150', '54.255268', '-153.170502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929843', 3929843, '24.606649', '60.413231', '-187.828293', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929844', 3929844, '26.036209', '60.638901', '-186.731903', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929845', 3929845, '28.305441', '61.087551', '-194.048996', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929846', 3929846, '-13.216780', '58.348202', '-191.121994', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929847', 3929847, '-11.787220', '58.581120', '-190.025604', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929849', 3929849, '51.002171', '62.513901', '-171.321503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929850', 3929850, '52.431728', '62.561481', '-170.225098', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929851', 3929851, '50.250092', '61.812469', '-168.366302', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929856', 3929856, '56.742020', '62.683529', '-167.113602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929857', 3929857, '91.871223', '65.801552', '-162.567993', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929858', 3929858, '91.084763', '66.005180', '-164.451996', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88366, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929859', 3929859, '119.531303', '72.554298', '-168.638596', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929861', 3929861, '119.737503', '69.204010', '-146.898697', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929862', 3929862, '118.303101', '68.822662', '-147.997299', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929863', 3929863, '117.112900', '68.311539', '-134.325195', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929864', 3929864, '117.540199', '68.388046', '-145.037003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929873', 3929873, '118.584702', '77.068329', '-192.023804', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929874', 3929874, '119.371101', '77.166290', '-190.139801', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929875', 3929875, '96.033737', '71.784462', '-206.070999', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929876', 3929876, '147.231293', '84.770142', '-179.634399', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85918, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929878', 3929878, '131.732498', '84.239113', '-214.769608', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85646, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929879', 3929879, '129.449295', '83.200447', '-214.469604', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85374, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929880', 3929880, '117.078697', '76.359550', '-189.839798', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929886', 3929886, '-9.820036', '57.888222', '-265.562714', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929888', 3929888, '-8.463858', '57.920422', '-266.546692', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929892', 3929892, '-36.288441', '54.051159', '-264.804810', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84286, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(134, 's1f1', 'bnpc3929895', 3929895, '-37.718620', '55.539761', '-246.754105', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929896', 3929896, '-36.105400', '55.795471', '-247.488297', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929897', 3929897, '-35.805401', '55.647850', '-244.752502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929898', 3929898, '-72.558617', '52.311829', '-247.421906', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929899', 3929899, '-72.858627', '52.571899', '-250.157700', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929900', 3929900, '-74.471848', '52.134220', '-249.423401', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929902', 3929902, '-74.133102', '52.444199', '-251.412003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929903', 3929903, '-61.128719', '54.917782', '-276.469696', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929905', 3929905, '-62.202911', '55.073421', '-276.169708', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929906', 3929906, '-87.521019', '49.709011', '-267.128387', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929907', 3929907, '-103.837601', '46.340569', '-243.640900', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929908', 3929908, '-102.189697', '46.624069', '-244.434296', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929910', 3929910, '-89.931953', '49.147942', '-266.121399', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929911', 3929911, '-88.406036', '49.520420', '-265.144806', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80478, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929913', 3929913, '-94.834862', '44.620140', '-289.814606', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929914', 3929914, '-93.431030', '44.502659', '-291.523712', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929918', 3929918, '-156.328705', '41.211071', '-257.953796', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929919', 3929919, '-154.711197', '41.244331', '-258.686310', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929921', 3929921, '-122.943001', '43.252022', '-286.232788', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929922', 3929922, '-109.323997', '40.309811', '-324.737396', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929923', 3929923, '-110.727898', '40.159351', '-323.028412', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929924', 3929924, '-108.366302', '40.562851', '-322.496002', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929925', 3929925, '-68.430206', '45.267422', '-308.626495', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929926', 3929926, '-51.165970', '45.726879', '-353.049713', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929927', 3929927, '-49.648022', '45.907570', '-352.084595', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77486, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929928', 3929928, '-48.759708', '45.997150', '-354.053986', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77214, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929929', 3929929, '-54.654140', '45.340069', '-370.533600', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76942, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929930', 3929930, '-54.354141', '45.342510', '-373.142303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76670, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929931', 3929931, '-90.540337', '39.280819', '-353.994690', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76398, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929932', 3929932, '-90.840347', '39.428822', '-351.385986', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76126, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929933', 3929933, '-60.107460', '55.697620', '-260.511414', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54082, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929934', 3929934, '-164.141403', '44.110901', '-217.517303', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75860, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929935', 3929935, '-144.975998', '45.815300', '-200.640900', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75588, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929936', 3929936, '-136.644501', '45.374001', '-218.646606', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75316, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929937', 3929937, '-131.304001', '45.701130', '-214.709702', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75044, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3929938', 3929938, '-66.976334', '25.431820', '-148.179199', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929940', 3929940, '-57.442081', '24.957350', '-153.725693', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929941', 3929941, '-53.170090', '26.263571', '-128.472107', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929942', 3929942, '-67.405273', '26.238400', '-132.898193', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929943', 3929943, '-55.497108', '26.236170', '-126.848297', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929944', 3929944, '-58.530079', '27.712959', '-111.586197', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929945', 3929945, '-55.685059', '24.922501', '-155.193802', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929948', 3929948, '-46.655151', '25.719770', '-144.661301', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3929954', 3929954, '-58.565269', '51.362320', '-226.270996', 348, 0, 0, 0, 0, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72608, 3, 0, 0, 0, 0, 30073, 0, 0, 0), +(134, 's1f1', 'bnpc3929955', 3929955, '-56.209209', '52.730179', '-234.378098', 349, 0, 0, 0, 1, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72342, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(134, 's1f1', 'bnpc3929957', 3929957, '-64.286301', '51.072021', '-224.902802', 349, 0, 0, 0, 1, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72070, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(134, 's1f1', 'bnpc3929959', 3929959, '-60.089680', '51.823978', '-230.541000', 349, 0, 0, 0, 1, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71798, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(134, 's1f1', 'bnpc3929960', 3929960, '-64.276390', '50.332390', '-220.639801', 349, 0, 0, 0, 0, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71526, 3, 0, 0, 0, 0, 30079, 0, 0, 0), +(134, 's1f1', 'bnpc3929962', 3929962, '-63.299820', '50.321152', '-220.334595', 348, 0, 0, 0, 0, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71248, 3, 0, 0, 0, 0, 30082, 0, 0, 0), +(134, 's1f1', 'bnpc3929963', 3929963, '-66.534210', '51.498051', '-231.124802', 348, 0, 0, 0, 1, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70976, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(134, 's1f1', 'bnpc3929964', 3929964, '-71.434937', '49.349220', '-217.996902', 348, 0, 0, 0, 1, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70704, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(134, 's1f1', 'bnpc3929966', 3929966, '-57.328251', '51.480759', '-227.008499', 350, 0, 0, 0, 0, 6, 0, 0, 419, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70444, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(134, 's1f1', 'bnpc3930079', 3930079, '2.853394', '47.348751', '19.333130', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70178, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930083', 3930083, '98.893677', '51.255001', '-19.302670', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930087', 3930087, '79.819946', '55.375000', '-73.319641', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930089', 3930089, '11.367920', '50.858280', '-64.957703', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930092', 3930092, '-19.729919', '46.707760', '-29.587280', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69090, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930094', 3930094, '-25.955629', '51.285519', '-122.240097', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930097', 3930097, '-27.878300', '50.766720', '-117.967499', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68546, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930100', 3930100, '81.406860', '64.560791', '-160.418198', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68274, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930105', 3930105, '131.548004', '84.245003', '-218.036194', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68002, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930109', 3930109, '111.113503', '74.884857', '-194.245605', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67730, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930110', 3930110, '28.519039', '61.112301', '-189.013504', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67458, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930112', 3930112, '-4.593018', '58.915039', '-205.523697', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67186, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930113', 3930113, '3.555298', '56.168461', '-161.730392', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930118', 3930118, '-122.117996', '45.761719', '-79.270630', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66642, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930123', 3930123, '-118.181198', '42.313229', '-6.424072', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930124', 3930124, '-40.451721', '45.426029', '43.106689', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930125', 3930125, '-56.534729', '45.853390', '3.311157', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930127', 3930127, '-76.127258', '43.228760', '-43.289860', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65554, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930128', 3930128, '-213.427994', '39.292461', '-150.652298', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930129', 3930129, '-174.792099', '43.778080', '-200.488297', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930130', 3930130, '-178.332199', '41.714760', '-243.854507', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930132', 3930132, '-82.078308', '51.346561', '-266.498810', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930133', 3930133, '-48.081181', '54.215328', '-241.352005', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64194, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930138', 3930138, '-142.076797', '40.268429', '-293.263092', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63922, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930141', 3930141, '-140.245697', '40.848389', '-289.845215', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63650, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930143', 3930143, '-44.602112', '46.372070', '-358.907501', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63378, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930147', 3930147, '-57.785950', '46.097530', '-316.426300', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63106, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930151', 3930151, '-55.863281', '46.250000', '-314.839508', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62834, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930182', 3930182, '-304.707397', '13.931440', '-297.352600', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52976, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930185', 3930185, '-317.921814', '14.511280', '-319.874908', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52704, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930186', 3930186, '-356.069305', '13.626260', '-315.358185', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52432, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930188', 3930188, '-346.212006', '15.915110', '-343.556885', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52160, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930190', 3930190, '-357.564697', '16.983240', '-350.606598', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51888, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930192', 3930192, '-365.224701', '24.277060', '-387.899597', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51616, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930193', 3930193, '-372.335388', '24.032909', '-383.108307', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51344, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930194', 3930194, '-242.989197', '12.764750', '-304.178589', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51072, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930195', 3930195, '-245.276901', '15.323140', '-347.073608', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50800, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930196', 3930196, '-241.837601', '15.504950', '-360.820190', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50528, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930197', 3930197, '-231.249405', '14.674970', '-351.945709', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50256, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930198', 3930198, '-279.758698', '23.224979', '-379.012512', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49984, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930199', 3930199, '-287.296814', '23.576111', '-386.822815', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49712, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930200', 3930200, '-300.179901', '19.009211', '-361.576294', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49440, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930203', 3930203, '-344.047791', '28.847330', '-431.588806', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49168, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930207', 3930207, '-327.870605', '22.171310', '-400.259399', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48896, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930213', 3930213, '-179.705505', '16.617029', '-403.463806', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930216', 3930216, '-146.990204', '14.297660', '-392.843506', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930219', 3930219, '-175.310898', '16.525471', '-404.928711', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930224', 3930224, '-229.388901', '22.812189', '-440.299103', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930227', 3930227, '-197.039795', '24.795860', '-452.140106', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930229', 3930229, '-216.937500', '26.810061', '-472.739807', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47270, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930231', 3930231, '-222.980103', '23.453070', '-442.618500', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46998, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930232', 3930232, '-283.527893', '22.018740', '-432.181305', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46726, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930233', 3930233, '-250.629501', '24.917971', '-481.406891', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46454, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930234', 3930234, '-223.682007', '32.577961', '-507.713501', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46182, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930235', 3930235, '-228.229202', '31.876051', '-511.985992', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45910, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930236', 3930236, '-213.031204', '32.272781', '-537.346497', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45638, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930237', 3930237, '-249.988602', '30.502741', '-572.350586', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45366, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930240', 3930240, '-252.735199', '33.310398', '-597.344971', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930241', 3930241, '-255.390305', '33.768169', '-600.732422', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930242', 3930242, '-284.290894', '30.136520', '-561.608276', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930245', 3930245, '-317.302002', '35.589191', '-591.171570', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930246', 3930246, '-321.442505', '33.511250', '-583.939514', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930247', 3930247, '-331.995605', '36.578739', '-597.355713', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930248', 3930248, '-354.800690', '33.443390', '-535.994385', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43462, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930250', 3930250, '-367.069611', '33.580250', '-493.158600', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43190, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930252', 3930252, '-374.167297', '34.022141', '-483.473907', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42918, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930253', 3930253, '-370.490387', '33.450420', '-481.198914', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42646, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930254', 3930254, '-325.906097', '27.601170', '-476.435211', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42374, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930255', 3930255, '-322.883911', '27.180950', '-472.301392', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930258', 3930258, '-323.219299', '26.630880', '-526.640625', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(134, 's1f1', 'bnpc3930270', 3930270, '-365.179810', '12.493070', '-307.350189', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41564, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930271', 3930271, '-422.502197', '12.677160', '-307.390991', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41292, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930274', 3930274, '-425.462402', '12.762100', '-310.618195', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41020, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930277', 3930277, '-222.915207', '12.294620', '-317.636810', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40748, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930278', 3930278, '-226.158997', '12.534600', '-317.995789', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40476, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930280', 3930280, '-196.398895', '12.222430', '-355.031708', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40204, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930281', 3930281, '-74.238098', '12.130030', '-410.146606', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39932, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930283', 3930283, '-21.098070', '11.319840', '-436.355804', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930284', 3930284, '-3.859158', '14.732280', '-457.622314', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930285', 3930285, '-24.365191', '12.386510', '-452.972687', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39116, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3930286', 3930286, '-6.057117', '14.506850', '-455.250793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38844, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3931787', 3931787, '-269.609711', '22.980930', '-390.658813', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3931791', 3931791, '-271.683899', '13.930550', '-319.410187', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3931792', 3931792, '-269.811615', '14.350880', '-322.618713', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3931793', 3931793, '-312.711609', '13.906600', '-302.460907', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3931795', 3931795, '-204.028397', '13.900940', '-394.735687', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3931796', 3931796, '-231.464203', '25.436769', '-471.122314', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3931798', 3931798, '-201.647995', '24.643311', '-457.297699', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3931799', 3931799, '-243.150803', '26.919580', '-525.615479', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3932161', 3932161, '-207.015305', '32.560860', '-562.758789', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3932162', 3932162, '-244.633408', '29.896629', '-566.727112', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3932164', 3932164, '-269.969910', '33.304001', '-589.321411', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3932166', 3932166, '-286.629089', '24.500669', '-532.985291', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3932167', 3932167, '-284.197998', '25.013651', '-536.186523', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3932168', 3932168, '-357.327911', '32.973610', '-562.442871', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3932170', 3932170, '-331.616302', '28.746330', '-468.081787', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3932171', 3932171, '-298.664886', '23.056339', '-406.912415', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3932173', 3932173, '-377.859802', '25.497511', '-389.074188', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3932175', 3932175, '-350.521088', '18.624069', '-355.627014', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc3932176', 3932176, '-379.679993', '13.370460', '-319.535095', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4024349', 4024349, '-95.414726', '47.931198', '-199.847397', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4024350', 4024350, '-97.032097', '47.837219', '-199.084503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4024351', 4024351, '-95.109558', '48.244461', '-196.093704', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4056974', 4056974, '-10.772860', '41.723129', '131.511597', 783, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20370, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(134, 's1f1', 'bnpc4296703', 4296703, '220.339401', '103.033401', '-192.118607', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19236, 8, 0, 0, 4296693, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4296705', 4296705, '244.738297', '105.634201', '-204.802994', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18964, 8, 0, 0, 4296689, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4296707', 4296707, '249.144104', '105.712402', '-208.740204', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18692, 8, 0, 0, 4296690, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4296708', 4296708, '253.558899', '105.985802', '-214.094299', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18420, 8, 0, 0, 4296691, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4296709', 4296709, '226.015106', '103.203697', '-193.008301', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18148, 8, 0, 0, 4296694, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4621598', 4621598, '-494.667999', '21.636040', '-302.079010', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29960, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4867876', 4867876, '28.213869', '50.827759', '-87.998840', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29486, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4867877', 4867877, '41.707401', '51.156799', '-86.539299', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29214, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4867878', 4867878, '39.668598', '51.736500', '-101.188400', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28942, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4867879', 4867879, '34.538631', '50.845268', '-83.984108', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28676, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4867880', 4867880, '24.472219', '51.118671', '-92.466171', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28404, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4867881', 4867881, '24.319870', '52.536991', '-109.234901', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28132, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4867882', 4867882, '55.329231', '53.690331', '-96.379692', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27860, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4867883', 4867883, '35.340740', '52.012718', '-113.983498', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27588, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4867884', 4867884, '20.250629', '52.350960', '-103.253700', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27316, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4867885', 4867885, '51.540489', '52.848961', '-79.500076', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27044, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4867886', 4867886, '41.456211', '51.357250', '-93.443268', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26772, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4867887', 4867887, '35.558880', '51.834862', '-105.446701', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26500, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4867888', 4867888, '23.570000', '50.670292', '-81.777740', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26228, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4867889', 4867889, '51.948132', '52.700432', '-106.025299', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25956, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4867890', 4867890, '27.729429', '51.344398', '-95.375870', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25684, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4892334', 4892334, '136.626007', '48.560169', '61.895821', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24494, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4892335', 4892335, '131.496002', '48.619511', '79.100121', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24228, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4892336', 4892336, '121.429604', '48.684132', '70.618050', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23956, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4892337', 4892337, '121.277298', '47.602539', '53.849319', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23684, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4892338', 4892338, '138.664795', '48.539879', '76.544930', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23406, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4892339', 4892339, '117.208000', '48.099979', '59.830521', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23140, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4892340', 4892340, '132.298096', '47.763882', '49.100731', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22868, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4892341', 4892341, '152.286697', '49.492531', '66.704536', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22596, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4892342', 4892342, '125.171303', '48.678471', '75.085381', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22318, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4892343', 4892343, '120.527397', '48.525890', '81.306480', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22052, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4892344', 4892344, '148.497894', '48.561459', '83.584137', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21780, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4892345', 4892345, '148.905502', '49.877151', '57.058929', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21508, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4892346', 4892346, '124.762199', '48.546471', '67.801064', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21236, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4892347', 4892347, '132.516296', '48.171822', '57.637520', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20964, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(134, 's1f1', 'bnpc4892348', 4892348, '138.413605', '48.645409', '69.640953', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20692, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3760882', 3760882, '7.760897', '64.944183', '95.225662', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760883', 3760883, '11.569650', '64.269142', '103.174004', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760884', 3760884, '27.212851', '64.259323', '68.436661', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121286, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760886', 3760886, '35.300129', '63.748798', '70.756027', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122102, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760887', 3760887, '29.623779', '63.785370', '72.434517', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122918, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760888', 3760888, '12.674300', '64.363640', '96.110687', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122646, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760889', 3760889, '37.375351', '64.107178', '66.758171', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122374, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760890', 3760890, '35.361160', '64.320633', '64.408279', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760896', 3760896, '20.935301', '61.990829', '147.102097', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760898', 3760898, '32.574959', '59.535831', '128.579605', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119382, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760901', 3760901, '3.688727', '65.262871', '139.257401', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119110, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760902', 3760902, '1.674536', '65.722069', '135.412201', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760911', 3760911, '66.135712', '56.046421', '111.429703', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760912', 3760912, '62.577202', '57.663799', '106.370598', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120470, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760913', 3760913, '64.103104', '57.114471', '107.652298', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760917', 3760917, '60.457890', '61.337429', '74.236450', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121830, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760922', 3760922, '96.288940', '49.550621', '73.985641', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126182, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760923', 3760923, '110.317703', '42.549389', '102.239700', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125366, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760925', 3760925, '121.477097', '40.913620', '141.046600', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125638, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760927', 3760927, '99.690933', '44.016190', '125.932701', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126998, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760933', 3760933, '86.244019', '47.554829', '160.082397', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126726, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760937', 3760937, '87.891998', '47.433571', '161.638794', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123190, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760948', 3760948, '68.406143', '53.661510', '183.326599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123462, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760950', 3760950, '62.399029', '56.000351', '191.517303', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125910, 7, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(135, 's1f2', 'bnpc3760952', 3760952, '63.992779', '55.493610', '189.245102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124550, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760958', 3760958, '51.348160', '55.864281', '150.438599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124278, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760961', 3760961, '56.546551', '56.041698', '186.103394', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125094, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3760965', 3760965, '53.117081', '55.406071', '151.622894', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124822, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761027', 3761027, '-7.343534', '67.714622', '93.888710', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153092, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761030', 3761030, '15.512480', '63.992210', '99.894920', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152820, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761031', 3761031, '78.979568', '53.555161', '86.569473', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124006, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761032', 3761032, '80.505470', '52.852570', '87.851227', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123734, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761033', 3761033, '31.698999', '64.077950', '68.192520', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152548, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761034', 3761034, '111.202797', '42.291870', '104.620102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126454, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761035', 3761035, '112.698097', '41.971249', '105.901901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127270, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761036', 3761036, '16.824760', '63.905472', '97.575546', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152276, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761039', 3761039, '11.941870', '64.628357', '91.990753', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152004, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761041', 3761041, '54.459400', '59.806961', '102.917297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151732, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761042', 3761042, '30.722420', '63.595020', '74.784416', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151460, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761044', 3761044, '19.068230', '62.294941', '149.492599', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151188, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761045', 3761045, '22.420271', '61.734470', '145.882996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150916, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761046', 3761046, '31.079571', '59.608490', '125.924500', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150644, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761048', 3761048, '66.227257', '56.978741', '104.868301', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150372, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761049', 3761049, '81.546333', '52.845501', '84.585800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150100, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761050', 3761050, '62.755970', '60.386440', '76.019211', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149828, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761051', 3761051, '109.737900', '42.563049', '105.962898', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149556, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761052', 3761052, '98.714363', '44.085449', '129.594803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149284, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761053', 3761053, '98.425201', '49.276859', '70.598137', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149012, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761054', 3761054, '99.981613', '48.315552', '73.649940', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148740, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761080', 3761080, '100.606499', '43.794998', '128.557205', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148468, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761081', 3761081, '89.814621', '46.770222', '157.976593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148196, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761084', 3761084, '51.818901', '55.815891', '145.346603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147924, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761085', 3761085, '70.215584', '52.939968', '181.270401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147652, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761086', 3761086, '60.924660', '55.885761', '189.770996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147380, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761088', 3761088, '48.845680', '56.451950', '150.896393', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147108, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761089', 3761089, '50.420841', '56.054260', '153.244995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146836, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761096', 3761096, '199.256302', '27.059620', '91.574173', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146570, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761097', 3761097, '66.501930', '57.215820', '101.480797', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761099', 3761099, '111.690498', '36.582958', '4.053726', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146298, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761100', 3761100, '67.783684', '56.291199', '107.065697', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761102', 3761102, '156.633804', '34.653191', '70.542397', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146026, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761103', 3761103, '23.832260', '61.353020', '150.988007', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761104', 3761104, '24.717279', '61.225311', '149.156906', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761105', 3761105, '167.377899', '33.443420', '75.522820', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145754, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761108', 3761108, '124.488503', '36.345482', '15.758260', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145482, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761109', 3761109, '159.302094', '33.928551', '78.777786', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145210, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761111', 3761111, '108.955002', '36.663021', '9.387772', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144938, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761112', 3761112, '131.578506', '35.965469', '45.853310', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144666, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761123', 3761123, '237.190399', '36.611149', '66.717194', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761124', 3761124, '242.137604', '44.361130', '44.958832', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144128, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761125', 3761125, '242.718903', '43.673290', '46.873840', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143856, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761128', 3761128, '187.436096', '42.116020', '51.900459', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143584, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761129', 3761129, '223.247696', '51.849850', '26.116220', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143312, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761130', 3761130, '223.430801', '52.761440', '22.759239', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143040, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761131', 3761131, '217.449295', '51.875561', '27.520050', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142768, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761134', 3761134, '223.010498', '31.021540', '165.483994', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142496, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761135', 3761135, '227.779602', '33.454979', '203.906296', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142224, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761136', 3761136, '242.318497', '38.158321', '234.873306', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141952, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761137', 3761137, '227.626999', '34.365898', '207.232697', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141680, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761139', 3761139, '245.897202', '37.488659', '235.919693', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141408, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761141', 3761141, '195.561203', '47.715080', '226.776001', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141136, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761142', 3761142, '197.033997', '48.159161', '228.423004', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761143', 3761143, '222.161804', '50.249969', '256.272888', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761145', 3761145, '180.566803', '43.422722', '197.741592', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761146', 3761146, '181.211105', '43.103500', '194.872894', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761147', 3761147, '150.769104', '55.568981', '248.645706', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761149', 3761149, '148.855896', '56.596169', '250.553299', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761150', 3761150, '152.127594', '64.016029', '312.689392', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761151', 3761151, '154.979797', '64.179688', '314.660492', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761152', 3761152, '153.705307', '64.400146', '315.376495', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761155', 3761155, '115.122803', '68.518044', '293.763489', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761164', 3761164, '69.781052', '51.086330', '157.761703', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761169', 3761169, '97.733994', '47.043510', '88.944794', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761303', 3761303, '204.358505', '46.098690', '45.780960', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761362', 3761362, '198.245804', '51.531582', '242.749405', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3761367', 3761367, '182.543594', '41.458710', '51.590698', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761369', 3761369, '186.119797', '42.655750', '49.950859', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761370', 3761370, '285.549408', '42.548729', '57.964470', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761371', 3761371, '285.078796', '44.421532', '49.076550', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761372', 3761372, '239.723694', '36.528450', '66.898483', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761373', 3761373, '148.845200', '38.711102', '41.285278', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761374', 3761374, '152.171600', '39.307671', '41.468391', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761375', 3761375, '182.186905', '54.291470', '262.783508', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761376', 3761376, '184.506195', '55.134689', '266.109985', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761475', 3761475, '201.696899', '32.601101', '76.500427', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135684, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761552', 3761552, '150.981400', '38.858120', '42.405491', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135412, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761553', 3761553, '185.442902', '41.123051', '53.604858', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135140, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761554', 3761554, '206.775299', '43.330341', '53.446110', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134868, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761555', 3761555, '208.241592', '43.763321', '52.334370', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134596, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761556', 3761556, '239.497803', '36.005562', '68.131721', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134324, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761557', 3761557, '215.528305', '44.498230', '50.226871', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134052, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761572', 3761572, '223.339294', '51.412380', '27.733681', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133780, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761576', 3761576, '283.996399', '43.243752', '55.750099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133508, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761580', 3761580, '272.696899', '45.167171', '32.535080', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133236, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761585', 3761585, '215.465607', '53.837990', '20.867121', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132964, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761592', 3761592, '217.212097', '32.425369', '164.537994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132692, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761607', 3761607, '218.341293', '32.455891', '165.972305', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132420, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761622', 3761622, '202.532898', '37.857590', '176.104294', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132148, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761626', 3761626, '183.154007', '42.709949', '197.436401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131876, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761716', 3761716, '184.920502', '44.981480', '218.420700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131604, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761718', 3761718, '224.420395', '35.250660', '205.197601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131332, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761720', 3761720, '242.515396', '37.441879', '232.829803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131060, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761721', 3761721, '215.690094', '51.411850', '255.712601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130788, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761722', 3761722, '217.734802', '50.606812', '253.454300', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130516, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761723', 3761723, '185.971100', '54.557800', '262.936096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130244, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761726', 3761726, '152.777603', '58.215248', '280.103607', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129972, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761727', 3761727, '152.238602', '58.132370', '277.662201', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129700, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761728', 3761728, '118.327202', '67.511993', '294.840210', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129428, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761730', 3761730, '114.320396', '68.359100', '296.500885', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129156, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3761731', 3761731, '153.412399', '63.654282', '311.208801', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128884, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766328', 3766328, '444.374390', '64.694489', '-36.484081', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766391', 3766391, '446.046112', '65.017601', '-33.594650', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766399', 3766399, '453.421814', '56.259960', '-0.534113', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766401', 3766401, '455.924286', '55.802189', '3.341679', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766402', 3766402, '448.874603', '55.222351', '4.837063', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766575', 3766575, '366.619385', '51.659290', '-12.188280', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766577', 3766577, '364.147400', '52.146080', '-17.895161', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766579', 3766579, '370.878113', '59.451641', '-59.303612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766580', 3766580, '368.924988', '58.367748', '-54.695389', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766581', 3766581, '373.350098', '58.395641', '-53.596741', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766584', 3766584, '363.439606', '63.704231', '-82.801590', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766586', 3766586, '341.616302', '51.478588', '-30.833561', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766588', 3766588, '305.806000', '47.806469', '0.503501', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766589', 3766589, '308.552612', '48.569420', '-3.769025', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766591', 3766591, '409.158112', '63.702721', '-82.786118', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766592', 3766592, '412.649689', '63.919991', '-86.564484', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766596', 3766596, '450.583588', '66.468239', '-76.957558', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766603', 3766603, '394.502594', '67.135857', '-121.089203', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766604', 3766604, '391.786499', '67.793007', '-123.530602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3766605', 3766605, '395.113007', '67.180733', '-122.828697', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767081', 3767081, '473.143494', '66.440041', '-148.859894', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767082', 3767082, '437.091309', '65.055496', '-127.757103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767083', 3767083, '438.506500', '65.198730', '-126.336800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767118', 3767118, '437.011108', '65.003197', '-124.078499', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767119', 3767119, '474.052002', '66.418793', '-147.307800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767127', 3767127, '371.903290', '67.982323', '-110.760803', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3767131', 3767131, '460.464600', '68.698967', '-124.371498', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3767137', 3767137, '564.060181', '84.658661', '-310.397614', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3767139', 3767139, '425.864014', '78.873833', '-349.813110', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3767149', 3767149, '418.543213', '65.856056', '-158.386795', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767152', 3767152, '380.575195', '71.228844', '-138.534103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767155', 3767155, '353.131409', '70.227692', '-126.119904', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767158', 3767158, '355.969604', '70.540512', '-125.082298', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767160', 3767160, '354.321594', '69.995934', '-123.739502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767163', 3767163, '385.091888', '70.103569', '-139.968506', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767164', 3767164, '383.413391', '70.520859', '-137.771194', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767165', 3767165, '382.223206', '70.816437', '-140.151596', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767230', 3767230, '338.126892', '68.759033', '-132.386398', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767240', 3767240, '525.678589', '69.218857', '-235.317993', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91168, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767241', 3767241, '529.279724', '69.670998', '-238.980103', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90352, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767242', 3767242, '523.878113', '69.910103', '-240.231400', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90624, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767246', 3767246, '503.511597', '77.082458', '-297.441315', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767247', 3767247, '490.567688', '72.273407', '-273.391388', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767248', 3767248, '499.222992', '76.478897', '-297.574799', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767251', 3767251, '561.724976', '68.563721', '-232.711105', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90896, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767262', 3767262, '609.164307', '70.799339', '-269.442291', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767263', 3767263, '607.699524', '69.742554', '-262.681885', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767264', 3767264, '611.178528', '70.073822', '-266.496613', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767271', 3767271, '583.442871', '78.270691', '-293.369995', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767272', 3767272, '582.626099', '82.811012', '-321.008209', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767273', 3767273, '586.291077', '77.487671', '-291.515594', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767374', 3767374, '436.361908', '73.251167', '-304.983185', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767375', 3767375, '432.991608', '72.276894', '-303.043610', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767376', 3767376, '349.804901', '74.911560', '-321.936798', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767377', 3767377, '435.671997', '72.056473', '-300.979401', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104478, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767388', 3767388, '361.665588', '75.651962', '-325.562408', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767390', 3767390, '363.221985', '75.155243', '-322.388489', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767391', 3767391, '358.186493', '73.581299', '-315.714813', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767393', 3767393, '395.641113', '76.023048', '-328.902496', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767394', 3767394, '397.399597', '76.429916', '-332.825500', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767395', 3767395, '393.430298', '76.446228', '-331.738098', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767396', 3767396, '392.678711', '86.886810', '-395.321106', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767399', 3767399, '470.368805', '87.249977', '-348.957306', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767400', 3767400, '454.939209', '84.293327', '-350.549591', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767401', 3767401, '458.387787', '84.602448', '-346.643188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767402', 3767402, '428.051086', '76.420769', '-330.744385', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767425', 3767425, '422.176910', '67.247093', '-159.579803', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767426', 3767426, '420.543213', '66.332741', '-157.321503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767435', 3767435, '384.954498', '71.312561', '-255.829102', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767436', 3767436, '381.795898', '71.738327', '-257.517487', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767437', 3767437, '387.359314', '69.869453', '-264.137299', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767445', 3767445, '628.911987', '66.716454', '-231.728607', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767446', 3767446, '630.792603', '66.280296', '-209.603195', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767447', 3767447, '629.602417', '66.422333', '-211.983597', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767448', 3767448, '627.954529', '66.392159', '-210.335602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767449', 3767449, '632.471130', '66.334442', '-211.800507', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767450', 3767450, '630.285278', '66.806633', '-233.987000', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767455', 3767455, '662.184509', '66.885223', '-232.532303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767456', 3767456, '663.832520', '66.880669', '-235.767197', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767457', 3767457, '660.994324', '67.126022', '-234.912704', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767458', 3767458, '679.883301', '64.783623', '-225.588394', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767462', 3767462, '683.051575', '64.449142', '-221.445694', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767463', 3767463, '686.133911', '64.440773', '-225.077301', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767464', 3767464, '682.532776', '64.535759', '-223.856598', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767465', 3767465, '680.213379', '64.599297', '-222.178101', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767466', 3767466, '644.667419', '61.202068', '-179.041107', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98228, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767467', 3767467, '646.345825', '61.561089', '-181.268906', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767468', 3767468, '625.297607', '63.148769', '-175.494003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767469', 3767469, '624.534729', '62.919571', '-173.449295', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767472', 3767472, '612.920227', '62.437519', '-154.581299', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97140, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767473', 3767473, '618.413513', '60.995640', '-154.157501', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96868, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767474', 3767474, '611.729980', '62.836342', '-156.961700', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96596, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767475', 3767475, '610.081970', '62.919849', '-155.313705', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96324, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767480', 3767480, '599.736572', '66.081619', '-200.660995', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96052, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767481', 3767481, '603.400085', '66.248016', '-212.652893', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95780, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767482', 3767482, '600.591125', '66.117447', '-203.224594', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767487', 3767487, '582.119629', '63.525211', '-162.909500', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767488', 3767488, '583.554016', '63.640011', '-161.566696', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767504', 3767504, '384.336212', '81.769058', '-374.104706', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767505', 3767505, '386.960785', '82.047218', '-374.979614', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92250, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767508', 3767508, '420.230408', '83.041237', '-377.818695', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91978, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767509', 3767509, '416.202087', '83.456848', '-380.199188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91706, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767510', 3767510, '414.218414', '82.361076', '-374.217590', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91434, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767538', 3767538, '559.649475', '74.212418', '-273.297485', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90080, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767539', 3767539, '565.844971', '73.504051', '-271.077698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89808, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767541', 3767541, '530.575989', '78.841171', '-292.050598', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89536, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767542', 3767542, '536.018616', '73.912933', '-270.240601', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89264, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767543', 3767543, '527.257324', '78.277519', '-291.082397', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88992, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767550', 3767550, '559.405579', '68.352837', '-230.727402', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88720, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767551', 3767551, '504.920990', '71.617661', '-255.737900', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88448, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767552', 3767552, '562.426697', '74.626442', '-275.098114', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88176, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767553', 3767553, '515.106079', '86.958946', '-357.724792', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87886, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(135, 's1f2', 'bnpc3767554', 3767554, '555.815430', '86.288918', '-333.674286', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87614, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767555', 3767555, '550.172974', '86.038811', '-337.105713', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87342, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767556', 3767556, '556.703918', '86.005051', '-341.164612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87070, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767558', 3767558, '595.652222', '100.886101', '-481.113007', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86798, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767559', 3767559, '565.758728', '90.501213', '-411.795288', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767560', 3767560, '593.128418', '99.817238', '-476.295013', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767561', 3767561, '597.171326', '86.616676', '-366.082886', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767562', 3767562, '592.898621', '86.573059', '-364.752991', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767565', 3767565, '659.080383', '68.157593', '-282.327087', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767566', 3767566, '655.601379', '67.872910', '-278.542786', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767568', 3767568, '696.297791', '66.817932', '-301.967896', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767583', 3767583, '629.275208', '76.769440', '-316.382690', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84622, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767584', 3767584, '635.718506', '76.129578', '-319.129303', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84350, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767675', 3767675, '637.937683', '75.470261', '-314.178314', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84078, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767694', 3767694, '274.187408', '73.498833', '-235.511505', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767702', 3767702, '282.131287', '73.968918', '-250.520294', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767704', 3767704, '283.459686', '74.239098', '-252.146103', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767705', 3767705, '285.161987', '73.984657', '-268.017487', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767706', 3767706, '277.286194', '74.210907', '-280.408813', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767707', 3767707, '277.586212', '74.130417', '-281.519714', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767709', 3767709, '268.511505', '73.750023', '-310.081207', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767710', 3767710, '290.727997', '75.783447', '-320.191986', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767711', 3767711, '291.566193', '75.961906', '-321.088593', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767712', 3767712, '240.649994', '74.570793', '-328.847198', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767715', 3767715, '221.796799', '75.280907', '-305.122711', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767716', 3767716, '234.573196', '72.438171', '-271.531403', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767717', 3767717, '235.577301', '72.991150', '-274.815186', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767721', 3767721, '341.847809', '47.013062', '1.602173', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80300, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767722', 3767722, '413.717804', '55.405399', '-18.570250', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80028, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767725', 3767725, '414.877411', '56.473511', '-20.889650', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79756, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767729', 3767729, '340.932404', '58.884521', '-68.986153', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767730', 3767730, '349.904510', '70.939087', '-141.039200', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767735', 3767735, '351.399994', '71.122192', '-139.177597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767772', 3767772, '385.992096', '79.489769', '-359.438690', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767779', 3767779, '406.035400', '88.015427', '-400.377411', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767782', 3767782, '403.608612', '88.645103', '-402.194885', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767814', 3767814, '635.174072', '71.616203', '-284.468597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767845', 3767845, '633.182922', '72.289650', '-286.197998', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767846', 3767846, '635.372375', '67.114166', '-231.371002', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767853', 3767853, '622.306885', '64.499603', '-174.464905', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767854', 3767854, '645.827026', '60.818569', '-177.759293', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767857', 3767857, '725.192871', '64.427238', '-240.193405', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767859', 3767859, '617.085510', '62.126339', '-147.285202', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767860', 3767860, '673.612427', '64.732903', '-189.639206', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767863', 3767863, '676.003723', '64.536713', '-188.308105', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767872', 3767872, '678.086914', '64.518532', '-207.618896', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767901', 3767901, '653.968079', '78.578423', '-360.327515', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767906', 3767906, '656.550293', '77.457336', '-356.077393', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767907', 3767907, '657.869080', '77.894173', '-358.050293', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3767910', 3767910, '590.645020', '90.549652', '-389.681702', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3768115', 3768115, '530.515381', '91.184883', '-383.319305', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3768118', 3768118, '533.323120', '90.657288', '-380.765015', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3768152', 3768152, '508.880707', '96.069290', '-437.340302', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71342, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(135, 's1f2', 'bnpc3768153', 3768153, '519.773071', '96.615059', '-445.083588', 752, 0, 0, 0, 0, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71608, 3, 0, 0, 0, 16, 30059, 0, 0, 0), +(135, 's1f2', 'bnpc3768154', 3768154, '523.339417', '94.818977', '-429.381287', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72962, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(135, 's1f2', 'bnpc3768156', 3768156, '535.457581', '96.545937', '-468.044800', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72690, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(135, 's1f2', 'bnpc3768157', 3768157, '520.360107', '95.886787', '-460.180389', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72424, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(135, 's1f2', 'bnpc3768158', 3768158, '535.493225', '94.402260', '-439.778015', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70526, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(135, 's1f2', 'bnpc3768159', 3768159, '502.875793', '97.415413', '-416.738495', 754, 0, 0, 0, 0, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73234, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(135, 's1f2', 'bnpc3768160', 3768160, '521.578979', '94.382271', '-413.852905', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72152, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(135, 's1f2', 'bnpc3768161', 3768161, '509.317200', '94.366043', '-398.691711', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71070, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(135, 's1f2', 'bnpc3768165', 3768165, '517.667175', '95.947739', '-463.471588', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73506, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(135, 's1f2', 'bnpc3768166', 3768166, '501.819092', '97.276329', '-413.591797', 751, 0, 0, 0, 0, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70798, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(135, 's1f2', 'bnpc3768167', 3768167, '534.916016', '94.227654', '-435.617798', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71880, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(135, 's1f2', 'bnpc3873220', 3873220, '-19.011200', '59.577240', '478.601715', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68768, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873222', 3873222, '-57.635151', '54.398960', '509.264313', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68496, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873223', 3873223, '-72.043533', '60.186852', '494.941803', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68224, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873226', 3873226, '-82.569511', '59.009541', '500.667694', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67952, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873227', 3873227, '-85.215538', '58.176079', '495.797913', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67680, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873232', 3873232, '-26.285730', '45.126209', '554.549622', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67408, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873233', 3873233, '-80.450127', '53.830681', '543.885925', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67136, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873235', 3873235, '-77.768517', '54.979061', '539.636902', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66864, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873237', 3873237, '-49.665508', '40.839931', '590.425781', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66592, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873238', 3873238, '-51.547249', '40.978630', '596.975098', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66320, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873240', 3873240, '-56.989220', '40.385479', '595.949585', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66048, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873243', 3873243, '73.494881', '48.720230', '629.534424', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65776, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873244', 3873244, '83.244293', '50.021931', '641.594727', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65504, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873246', 3873246, '77.347931', '48.172680', '641.229797', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65232, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873247', 3873247, '77.649078', '56.774830', '716.941528', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64960, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873249', 3873249, '79.648613', '56.806110', '720.165710', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64688, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873250', 3873250, '52.669842', '55.384899', '724.728516', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873255', 3873255, '48.538898', '36.148571', '656.885620', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64144, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873256', 3873256, '46.513409', '36.839489', '684.859314', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63872, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873257', 3873257, '41.888302', '35.921108', '686.955078', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63600, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873265', 3873265, '34.495090', '45.667789', '819.153381', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63328, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873271', 3873271, '-18.570280', '43.203621', '763.671082', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63056, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873272', 3873272, '-24.521290', '43.172451', '761.992676', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62784, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873275', 3873275, '37.190269', '46.111851', '822.446777', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62512, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873324', 3873324, '79.270752', '49.720821', '871.732483', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62240, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873328', 3873328, '31.098160', '46.232330', '851.456421', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61968, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873329', 3873329, '-90.470787', '8.590782', '680.567627', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61702, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873330', 3873330, '-224.494995', '-0.300003', '686.536377', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61430, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873331', 3873331, '-215.466797', '-0.252817', '694.899719', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61158, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873332', 3873332, '-120.012199', '3.585823', '702.235413', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60886, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873333', 3873333, '-207.511307', '-0.292601', '666.813293', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60614, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873334', 3873334, '-171.158203', '-0.710317', '738.778076', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60342, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873335', 3873335, '-132.077698', '0.394896', '752.015930', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60070, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873336', 3873336, '-122.561096', '0.570598', '756.478577', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59798, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873337', 3873337, '-78.064957', '2.435715', '762.539001', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59526, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873339', 3873339, '-81.966408', '2.959849', '802.456604', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59254, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873340', 3873340, '-17.237820', '8.762830', '808.010925', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58982, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873343', 3873343, '91.020012', '21.945419', '806.005371', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58710, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873345', 3873345, '127.519600', '23.025820', '809.445313', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58438, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873348', 3873348, '121.338402', '24.555710', '817.927795', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58166, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873353', 3873353, '213.397400', '25.314671', '805.691528', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57894, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873359', 3873359, '80.472221', '24.632441', '756.982178', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57622, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873362', 3873362, '24.652531', '14.575950', '784.440430', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57350, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873363', 3873363, '139.838699', '21.711720', '778.939575', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57078, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(135, 's1f2', 'bnpc3873367', 3873367, '251.139801', '6.797970', '788.702271', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873368', 3873368, '253.283096', '6.540766', '787.524292', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873369', 3873369, '254.565994', '6.283995', '780.385681', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873371', 3873371, '246.057800', '9.008336', '801.580994', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873374', 3873374, '248.002304', '6.721136', '783.831970', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873375', 3873375, '248.302399', '6.265314', '767.472473', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873376', 3873376, '246.801407', '6.267453', '768.374390', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873379', 3873379, '-3.098505', '41.687851', '623.973083', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54914, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873381', 3873381, '-0.691058', '42.488289', '627.270020', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873382', 3873382, '-6.383020', '41.661289', '631.828674', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873385', 3873385, '-12.702990', '41.812180', '707.756409', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873386', 3873386, '-10.462590', '41.960880', '705.075378', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873387', 3873387, '-52.108768', '38.325489', '665.766113', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873388', 3873388, '-55.987579', '36.343479', '670.810486', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873389', 3873389, '-59.405991', '38.476730', '658.650818', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53010, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873390', 3873390, '-59.105999', '36.026340', '668.374023', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52738, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873396', 3873396, '-160.952896', '1.569027', '667.861206', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48398, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(135, 's1f2', 'bnpc3873398', 3873398, '-161.990494', '1.669328', '666.421692', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48126, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(135, 's1f2', 'bnpc3873399', 3873399, '-150.636902', '5.134464', '653.424011', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47854, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(135, 's1f2', 'bnpc3873401', 3873401, '-144.836700', '4.701064', '665.153870', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47582, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(135, 's1f2', 'bnpc3873402', 3873402, '-149.620605', '3.102985', '669.616089', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47310, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(135, 's1f2', 'bnpc3873403', 3873403, '-155.732605', '1.144920', '679.460327', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47038, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(135, 's1f2', 'bnpc3873404', 3873404, '-142.607895', '1.054965', '712.663025', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46766, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(135, 's1f2', 'bnpc3873405', 3873405, '-148.567505', '0.750069', '714.199524', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46494, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(135, 's1f2', 'bnpc3873406', 3873406, '-149.139404', '0.759766', '712.362000', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46222, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(135, 's1f2', 'bnpc3873420', 3873420, '-59.783230', '40.755260', '572.130127', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873421', 3873421, '-58.553791', '40.657639', '574.646973', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873422', 3873422, '-25.335461', '55.583641', '513.424194', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873425', 3873425, '142.979706', '22.710770', '829.297302', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51656, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873426', 3873426, '220.695999', '20.348419', '790.027283', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51384, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873427', 3873427, '69.222389', '20.622999', '778.105286', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51112, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873428', 3873428, '70.471992', '21.233120', '776.341980', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50840, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873430', 3873430, '66.086601', '57.020870', '725.806213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50568, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873431', 3873431, '79.195717', '52.007320', '685.675415', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50296, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873432', 3873432, '79.268204', '51.686298', '683.238892', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50024, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873433', 3873433, '-129.812698', '8.744282', '655.901672', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873434', 3873434, '-127.513100', '8.619234', '660.065491', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873435', 3873435, '-70.867996', '3.471146', '805.643616', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873461', 3873461, '18.223940', '44.911652', '832.339600', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc3873463', 3873463, '129.763306', '48.053009', '868.938477', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48664, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc4057136', 4057136, '-29.171040', '70.937523', '112.141998', 784, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23136, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(135, 's1f2', 'bnpc4057153', 4057153, '-33.309830', '59.142609', '456.249786', 785, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22870, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(135, 's1f2', 'bnpc4057178', 4057178, '-0.370673', '36.202759', '591.413818', 786, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22604, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(135, 's1f2', 'bnpc4057204', 4057204, '126.070801', '23.201380', '735.619629', 788, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22338, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(135, 's1f2', 'bnpc4510193', 4510193, '600.272400', '61.718521', '-115.521301', 787, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22072, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(135, 's1f2', 'bnpc4621602', 4621602, '205.951904', '73.024078', '-291.708496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26712, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc4867727', 4867727, '-103.902603', '2.225230', '731.826416', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26326, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc4867728', 4867728, '-115.780197', '1.850056', '725.665710', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26054, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc4867729', 4867729, '-96.687714', '2.097239', '744.887817', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25782, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc4867730', 4867730, '-98.053673', '1.671072', '759.716797', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25510, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(135, 's1f2', 'bnpc4867731', 4867731, '-109.169701', '1.535632', '746.508301', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23746, 8, 0, 0, 0, 0, 0, 4867752, 0, 0), +(135, 's1f2', 'bnpc4867733', 4867733, '-113.730499', '0.984999', '755.556274', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24018, 8, 0, 0, 0, 0, 0, 4867753, 0, 0), +(135, 's1f2', 'bnpc4867735', 4867735, '-122.788597', '0.819352', '748.165283', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25244, 8, 0, 0, 0, 0, 0, 4867761, 0, 0), +(135, 's1f2', 'bnpc4867736', 4867736, '-111.623299', '1.689789', '738.438904', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24972, 8, 0, 0, 0, 0, 0, 4867748, 0, 0), +(135, 's1f2', 'bnpc4867737', 4867737, '-123.906197', '0.960864', '734.838501', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23474, 8, 0, 0, 0, 0, 0, 4867754, 0, 0), +(137, 's1f3', 'bnpc3965984', 3965984, '290.117706', '43.654701', '749.469177', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107688, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3965987', 3965987, '293.200012', '43.134739', '746.661621', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107416, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3965988', 3965988, '324.116791', '32.547440', '699.946472', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107144, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3965990', 3965990, '392.568787', '27.054199', '712.336914', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106872, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3965997', 3965997, '390.188385', '27.145750', '714.442627', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106600, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966001', 3966001, '385.580200', '26.749020', '711.055115', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106328, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966005', 3966005, '389.669586', '25.009489', '695.277283', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106056, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966021', 3966021, '290.485901', '42.923580', '551.995117', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105790, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966030', 3966030, '281.486511', '40.675110', '660.846008', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105518, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966033', 3966033, '385.317902', '24.940651', '523.827576', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105246, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966039', 3966039, '452.273987', '34.051319', '541.621094', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104974, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966043', 3966043, '343.232605', '30.682180', '454.719208', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104702, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966045', 3966045, '288.452911', '42.365101', '363.512909', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104430, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966046', 3966046, '299.927887', '41.764408', '350.498810', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104158, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966078', 3966078, '418.940399', '16.917250', '740.596619', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103880, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966084', 3966084, '430.092010', '14.727770', '731.417480', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103608, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966085', 3966085, '432.472412', '14.548040', '729.311829', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103336, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966086', 3966086, '430.427704', '14.832140', '728.091003', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103064, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966092', 3966092, '387.587006', '24.567631', '693.317871', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102792, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966095', 3966095, '427.572998', '13.961960', '671.839417', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102520, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966096', 3966096, '429.953400', '13.687290', '669.733582', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102248, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966097', 3966097, '422.964813', '14.236620', '668.451904', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101976, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966100', 3966100, '428.580109', '13.809370', '659.082825', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101704, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966104', 3966104, '352.881012', '30.771620', '728.950378', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101432, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966108', 3966108, '504.101715', '8.999934', '681.622986', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966112', 3966112, '463.920013', '10.940670', '693.965027', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966115', 3966115, '475.702911', '9.703782', '729.907288', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966117', 3966117, '481.560486', '9.326057', '765.301697', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966118', 3966118, '489.679596', '8.999991', '754.903076', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966120', 3966120, '485.691986', '9.522070', '641.613586', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966122', 3966122, '502.346710', '8.999838', '630.363403', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966123', 3966123, '467.942596', '11.618370', '598.635376', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966128', 3966128, '523.159729', '8.999995', '252.453705', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99002, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966129', 3966129, '503.478210', '9.866951', '210.334000', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98730, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966132', 3966132, '506.041687', '9.747169', '207.556793', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98458, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966134', 3966134, '494.140015', '11.102120', '230.850998', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98186, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966135', 3966135, '513.192200', '8.999973', '265.080597', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97914, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966139', 3966139, '515.692383', '8.999988', '223.561798', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966142', 3966142, '536.347412', '9.170974', '198.358597', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97370, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966143', 3966143, '480.563690', '11.275560', '254.698898', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97098, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966185', 3966185, '225.319901', '54.344410', '564.565430', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96832, 1, 0, 0, 0, 27, 30059, 0, 0, 0), +(137, 's1f3', 'bnpc3966191', 3966191, '240.668304', '51.838989', '562.298584', 170, 0, 0, 0, 1, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96560, 1, 0, 0, 0, 27, 30063, 0, 0, 0), +(137, 's1f3', 'bnpc3966193', 3966193, '237.524506', '52.241501', '560.929688', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96288, 1, 0, 0, 0, 27, 30059, 0, 0, 0), +(137, 's1f3', 'bnpc3966195', 3966195, '238.675705', '52.019920', '558.354919', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96016, 1, 0, 0, 0, 27, 30059, 0, 0, 0), +(137, 's1f3', 'bnpc3966197', 3966197, '234.047104', '60.363258', '532.494019', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95744, 1, 0, 0, 0, 27, 30060, 0, 0, 0), +(137, 's1f3', 'bnpc3966198', 3966198, '232.410202', '60.349369', '532.799194', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95472, 1, 0, 0, 0, 27, 30060, 0, 0, 0), +(137, 's1f3', 'bnpc3966204', 3966204, '318.658203', '37.686790', '233.860397', 328, 0, 0, 0, 0, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95206, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(137, 's1f3', 'bnpc3966224', 3966224, '322.804413', '37.674561', '206.378204', 328, 0, 0, 0, 0, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94934, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(137, 's1f3', 'bnpc3966226', 3966226, '330.596191', '36.181511', '217.927505', 328, 0, 0, 0, 1, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94662, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(137, 's1f3', 'bnpc3966237', 3966237, '325.863403', '37.460819', '205.065903', 329, 0, 0, 0, 0, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94396, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(137, 's1f3', 'bnpc3966240', 3966240, '316.045197', '38.194221', '236.654907', 329, 0, 0, 0, 0, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94124, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(137, 's1f3', 'bnpc3966241', 3966241, '313.378113', '38.056759', '220.080307', 329, 0, 0, 0, 1, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93852, 1, 0, 0, 0, 0, 30063, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(137, 's1f3', 'bnpc3966242', 3966242, '334.248901', '36.394051', '239.885498', 331, 0, 0, 0, 1, 6, 0, 0, 373, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93586, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(137, 's1f3', 'bnpc3966243', 3966243, '315.073486', '38.121010', '233.173004', 331, 0, 0, 0, 0, 6, 0, 0, 373, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93314, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(137, 's1f3', 'bnpc3966244', 3966244, '315.354797', '39.330219', '197.917297', 331, 0, 0, 0, 1, 6, 0, 0, 373, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93042, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(137, 's1f3', 'bnpc3966270', 3966270, '307.454010', '32.229580', '527.673584', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92776, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966278', 3966278, '282.918610', '42.498619', '402.770111', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92504, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966279', 3966279, '331.480194', '37.450062', '426.526886', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92232, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966281', 3966281, '411.184814', '27.695080', '488.273407', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966285', 3966285, '430.838409', '18.936399', '772.152222', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966288', 3966288, '445.507111', '13.025030', '702.326416', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966289', 3966289, '424.795807', '18.326040', '592.889221', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966291', 3966291, '236.732101', '53.718140', '616.643982', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966296', 3966296, '309.773285', '35.843399', '593.896301', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966311', 3966311, '460.890411', '14.134280', '275.800812', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966322', 3966322, '462.973907', '13.992480', '272.785492', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966331', 3966331, '436.391907', '17.167070', '328.657104', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966340', 3966340, '429.404114', '36.819969', '132.829697', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966343', 3966343, '438.622589', '35.297611', '196.059998', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966351', 3966351, '334.525085', '38.941391', '327.366913', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966355', 3966355, '368.808807', '33.632469', '253.976501', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85976, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966368', 3966368, '523.699890', '41.479031', '549.176697', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88696, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966375', 3966375, '522.691589', '41.801552', '546.826721', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88424, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966380', 3966380, '470.281799', '34.323669', '551.294006', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88152, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966581', 3966581, '350.408997', '30.882040', '725.654419', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87832, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966589', 3966589, '327.600098', '31.811251', '702.823730', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966594', 3966594, '368.138489', '29.659201', '745.547729', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87336, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966604', 3966604, '313.217499', '38.596272', '433.198486', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87022, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966613', 3966613, '414.287506', '29.365601', '516.322510', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86750, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966614', 3966614, '298.856689', '37.864361', '705.197083', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86472, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966630', 3966630, '399.514893', '36.100700', '222.557495', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86206, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966825', 3966825, '331.662201', '39.448109', '166.458801', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85704, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966829', 3966829, '334.347809', '38.871632', '163.773193', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85432, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966836', 3966836, '252.163696', '50.856651', '559.044678', 170, 0, 0, 0, 1, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85136, 1, 0, 0, 0, 27, 30063, 0, 0, 0), +(137, 's1f3', 'bnpc3966837', 3966837, '231.653397', '53.322651', '577.867188', 170, 0, 0, 0, 1, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84864, 1, 0, 0, 0, 27, 30063, 0, 0, 0), +(137, 's1f3', 'bnpc3966848', 3966848, '422.451294', '35.254921', '169.566895', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966849', 3966849, '428.958496', '37.325779', '102.728203', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966850', 3966850, '454.571808', '12.465490', '151.488907', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966851', 3966851, '459.783295', '12.487550', '182.865997', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966852', 3966852, '442.573303', '36.806381', '114.818901', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966853', 3966853, '426.489105', '37.229988', '104.534302', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966854', 3966854, '418.872314', '35.403931', '158.459900', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966855', 3966855, '446.885712', '37.061001', '190.656296', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966856', 3966856, '414.331604', '34.928871', '162.227295', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966857', 3966857, '485.124786', '44.077980', '161.297897', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82174, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966858', 3966858, '501.047394', '49.527180', '137.380997', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966859', 3966859, '476.396698', '32.421059', '208.906006', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81630, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966860', 3966860, '508.647186', '50.047180', '135.756897', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966861', 3966861, '517.712280', '31.487631', '183.328796', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81086, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966862', 3966862, '519.568970', '31.405090', '185.390900', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966932', 3966932, '-107.621902', '60.001968', '671.706909', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80092, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966938', 3966938, '-100.602798', '64.316727', '689.204224', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79820, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966939', 3966939, '-90.836998', '63.675850', '681.605225', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79548, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966940', 3966940, '-166.796707', '62.704250', '685.247925', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79276, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966941', 3966941, '-161.909302', '60.470612', '677.937500', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79004, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966942', 3966942, '-94.041397', '56.778770', '634.607422', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78732, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966944', 3966944, '-1.239546', '50.637169', '509.984985', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57280, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966947', 3966947, '-45.667271', '51.856998', '574.469299', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966949', 3966949, '-46.905361', '43.370399', '516.468689', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58640, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966950', 3966950, '-54.126480', '51.789631', '583.855896', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966951', 3966951, '-73.928673', '43.410858', '544.963013', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57552, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966952', 3966952, '-103.159698', '37.284828', '459.933807', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57824, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966954', 3966954, '-98.466507', '40.512650', '504.295288', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58096, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966958', 3966958, '-120.704201', '52.333061', '327.006989', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56470, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966982', 3966982, '-87.449501', '62.424610', '345.723602', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56742, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966983', 3966983, '-186.848404', '37.966789', '344.289215', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55382, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966984', 3966984, '-146.753799', '46.975368', '343.366302', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966987', 3966987, '-97.896507', '47.301010', '283.912598', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966988', 3966988, '-144.492203', '41.001541', '290.455414', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56198, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966993', 3966993, '-126.139099', '49.532829', '320.589905', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55926, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966994', 3966994, '-169.229095', '40.705471', '319.673706', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3966998', 3966998, '-196.612503', '34.134380', '262.104187', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78466, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3966999', 3966999, '-130.632507', '34.213940', '238.391602', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78194, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967000', 3967000, '-324.116913', '44.541031', '362.416992', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77922, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967001', 3967001, '-119.190002', '34.214378', '236.487305', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77650, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967002', 3967002, '-60.455029', '34.214390', '222.702805', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967003', 3967003, '-235.382202', '34.214390', '291.120911', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77106, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967006', 3967006, '-168.902100', '54.611992', '635.431396', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76828, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967008', 3967008, '-220.172501', '52.819180', '602.254089', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76568, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967012', 3967012, '-153.429504', '54.795101', '616.906921', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76296, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967013', 3967013, '-54.184830', '43.686531', '393.575897', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76024, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967015', 3967015, '-4.951565', '40.562092', '383.766205', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75752, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967016', 3967016, '-144.853897', '44.663109', '395.559601', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75480, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967019', 3967019, '-215.347198', '46.906521', '443.329498', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75208, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967021', 3967021, '-195.910599', '47.775951', '498.802094', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74936, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967023', 3967023, '-255.848099', '45.242950', '527.916321', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74664, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967024', 3967024, '-193.863693', '46.459171', '567.863098', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74392, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967040', 3967040, '-227.654999', '44.566780', '550.036011', 321, 0, 0, 0, 1, 6, 0, 0, 355, 0, '0.000000', 34, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967048', 3967048, '-245.306793', '50.107510', '203.033295', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967053', 3967053, '-231.670807', '44.156860', '229.440903', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967054', 3967054, '-239.386597', '43.805309', '236.070206', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73292, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967056', 3967056, '-308.054810', '53.123970', '249.850693', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73020, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967057', 3967057, '-279.167908', '51.349911', '221.039795', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967060', 3967060, '121.580902', '83.791519', '-63.093380', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72476, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967063', 3967063, '136.610001', '90.130913', '-77.008636', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72204, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967064', 3967064, '138.671295', '88.429123', '-72.254028', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71932, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967067', 3967067, '109.981201', '88.091492', '-91.405563', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71660, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967069', 3967069, '117.567299', '75.280457', '-31.443140', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71388, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967071', 3967071, '79.369293', '74.087349', '-7.523047', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71116, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967072', 3967072, '87.348160', '76.560066', '-62.532970', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70844, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967079', 3967079, '119.521301', '70.482773', '15.235610', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70572, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967232', 3967232, '-65.956238', '40.845070', '201.759201', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967236', 3967236, '-112.260201', '41.370239', '200.130005', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967238', 3967238, '-113.662697', '41.688950', '199.025208', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69780, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967239', 3967239, '-116.857201', '40.502911', '201.676895', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967240', 3967240, '-149.497101', '46.658821', '173.189301', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967241', 3967241, '-154.094101', '46.603470', '174.736206', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967242', 3967242, '-150.899704', '46.878399', '172.084595', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68692, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967244', 3967244, '-164.773300', '47.053860', '187.026794', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68420, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967245', 3967245, '-132.803101', '48.519630', '164.560394', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68148, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967246', 3967246, '-166.175903', '47.201370', '185.921997', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67876, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967247', 3967247, '-96.265427', '45.412338', '178.992096', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67604, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967248', 3967248, '-94.862892', '45.333729', '180.096893', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967250', 3967250, '-255.398605', '55.315521', '193.396301', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967251', 3967251, '-250.814499', '43.443932', '254.456497', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967252', 3967252, '-0.594336', '41.413090', '300.056488', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967253', 3967253, '-12.474910', '40.981110', '345.808990', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967254', 3967254, '-10.307140', '40.161018', '348.964508', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967255', 3967255, '-118.867302', '45.441109', '407.337494', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967256', 3967256, '-276.173096', '44.724140', '328.084198', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967257', 3967257, '-205.867706', '41.135929', '381.384705', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967260', 3967260, '-206.799393', '41.163960', '383.136597', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967261', 3967261, '-72.173149', '34.214340', '223.018997', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967262', 3967262, '-188.542496', '34.213940', '259.734406', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967263', 3967263, '-141.513000', '47.998859', '333.870789', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967264', 3967264, '-83.307388', '49.447201', '285.004303', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967265', 3967265, '-94.670761', '58.438599', '656.570923', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967266', 3967266, '-155.296707', '63.642780', '694.602295', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967267', 3967267, '-132.048401', '53.203049', '637.721985', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967268', 3967268, '-190.779999', '52.425701', '609.329773', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967269', 3967269, '-193.352798', '52.082130', '607.753784', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62442, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967270', 3967270, '-147.991806', '50.188049', '564.462830', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967271', 3967271, '-235.545898', '44.762379', '563.043518', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967272', 3967272, '-240.728607', '45.133591', '492.780487', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967275', 3967275, '-304.364014', '44.566818', '466.077515', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967276', 3967276, '-310.552399', '44.566750', '465.462799', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967277', 3967277, '-80.421982', '37.210289', '478.231903', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967278', 3967278, '-26.911261', '50.888149', '543.665771', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60538, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967280', 3967280, '-89.173988', '45.007820', '563.858215', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60266, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967290', 3967290, '76.708450', '77.890778', '-16.653400', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967292', 3967292, '140.583405', '74.160980', '12.732710', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967294', 3967294, '140.883408', '74.042503', '11.184050', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59450, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967295', 3967295, '116.940697', '83.753616', '-66.031197', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc3967308', 3967308, '-40.160881', '45.050510', '523.243713', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57008, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967595', 3967595, '-210.406693', '40.237991', '366.170685', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54536, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967644', 3967644, '-273.564209', '43.724400', '334.223694', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54264, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc3967651', 3967651, '-139.989197', '48.125320', '545.608582', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53992, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(137, 's1f3', 'bnpc4057235', 4057235, '404.560089', '20.446920', '453.365112', 789, 0, 0, 0, 0, 6, 0, 0, 1274, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23074, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(137, 's1f3', 'bnpc4057253', 4057253, '464.607697', '13.736580', '386.294098', 790, 0, 0, 0, 0, 6, 0, 0, 1274, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22808, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(137, 's1f3', 'bnpc4057266', 4057266, '521.743530', '9.007294', '564.869080', 789, 0, 0, 0, 0, 6, 0, 0, 1274, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22530, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(137, 's1f3', 'bnpc4057293', 4057293, '8.463147', '64.817741', '50.653370', 788, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22270, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(137, 's1f3', 'bnpc4312742', 4312742, '183.886398', '74.509773', '-5.691650', 55, 0, 0, 0, 1, 6, 0, 0, 1821, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53536, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312743', 4312743, '204.760696', '75.181152', '-29.739870', 61, 0, 0, 0, 1, 6, 0, 0, 1822, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53270, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312744', 4312744, '232.166000', '75.577881', '-4.745544', 62, 0, 0, 0, 1, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53004, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312745', 4312745, '206.103500', '75.547363', '-31.540409', 63, 0, 0, 0, 1, 6, 0, 0, 1824, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52738, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312746', 4312746, '212.115601', '74.235107', '-9.903137', 64, 0, 0, 0, 1, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52472, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312748', 4312748, '242.298004', '74.479248', '-23.727840', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52188, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(137, 's1f3', 'bnpc4312759', 4312759, '335.849396', '76.161110', '-11.489540', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51916, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(137, 's1f3', 'bnpc4312813', 4312813, '429.465088', '76.157707', '-63.431820', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51644, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(137, 's1f3', 'bnpc4312814', 4312814, '387.136505', '76.218750', '-61.814331', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51372, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(137, 's1f3', 'bnpc4312815', 4312815, '287.367798', '76.123413', '-2.225652', 55, 0, 0, 0, 1, 6, 0, 0, 1821, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51088, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312816', 4312816, '314.246796', '76.070213', '-34.506378', 62, 0, 0, 0, 1, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50828, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312817', 4312817, '300.532501', '76.472076', '-15.301860', 61, 0, 0, 0, 1, 6, 0, 0, 1822, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50550, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312818', 4312818, '301.875214', '76.471893', '-17.102390', 63, 0, 0, 0, 1, 6, 0, 0, 1824, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50290, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312819', 4312819, '279.745087', '76.218422', '-22.320280', 64, 0, 0, 0, 1, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50024, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312874', 4312874, '444.379700', '76.086662', '-13.359130', 61, 0, 0, 0, 1, 6, 0, 0, 1822, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49734, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312875', 4312875, '358.754791', '76.249268', '-34.500729', 64, 0, 0, 0, 1, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49480, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312876', 4312876, '409.780914', '76.432373', '0.442505', 63, 0, 0, 0, 1, 6, 0, 0, 1824, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49202, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312877', 4312877, '412.466614', '76.066162', '-1.327576', 62, 0, 0, 0, 1, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48924, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312878', 4312878, '373.531311', '76.412163', '-19.283190', 55, 0, 0, 0, 1, 6, 0, 0, 1821, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48640, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312880', 4312880, '481.615387', '76.891281', '-107.208000', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48380, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(137, 's1f3', 'bnpc4312881', 4312881, '474.740814', '76.178452', '-92.284813', 64, 0, 0, 0, 1, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48120, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312882', 4312882, '476.438690', '76.178452', '-61.350609', 55, 0, 0, 0, 1, 6, 0, 0, 1821, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47824, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312883', 4312883, '433.289612', '76.178452', '-103.308701', 61, 0, 0, 0, 1, 6, 0, 0, 1822, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47558, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312885', 4312885, '455.140289', '76.178452', '-125.088303', 63, 0, 0, 0, 1, 6, 0, 0, 1824, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47298, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312886', 4312886, '435.969788', '76.178452', '-103.270302', 62, 0, 0, 0, 1, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47020, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(137, 's1f3', 'bnpc4312887', 4312887, '389.036896', '76.218277', '-42.814720', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc4312890', 4312890, '430.472198', '76.127197', '-39.200500', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc4312892', 4312892, '355.095093', '76.140678', '-93.768280', 201, 0, 0, 0, 0, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc4312893', 4312893, '362.949707', '76.156097', '-101.645103', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc4312895', 4312895, '376.375610', '79.863983', '-55.369541', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45672, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(137, 's1f3', 'bnpc4312896', 4312896, '401.510406', '79.863983', '-80.450699', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45400, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(137, 's1f3', 'bnpc4312897', 4312897, '448.056213', '79.863983', '-48.739960', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45128, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(137, 's1f3', 'bnpc4312908', 4312908, '336.851501', '79.863983', '1.148477', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44856, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(137, 's1f3', 'bnpc4312909', 4312909, '336.851501', '79.863983', '-34.551071', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44584, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(137, 's1f3', 'bnpc4312910', 4312910, '465.150513', '76.178452', '-77.636757', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc4312911', 4312911, '456.877289', '76.178452', '-100.076103', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(137, 's1f3', 'bnpc4312912', 4312912, '389.015991', '76.084824', '-102.386803', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43756, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(137, 's1f3', 'bnpc4312913', 4312913, '354.466187', '76.065430', '-67.588791', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43484, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(137, 's1f3', 'bnpc4621604', 4621604, '298.139404', '60.044762', '414.959106', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23804, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969486', 3969486, '557.060974', '28.946320', '333.730011', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135904, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969499', 3969499, '706.892212', '28.174080', '410.894989', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135638, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc3969501', 3969501, '698.946899', '27.231220', '412.552002', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135366, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc3969502', 3969502, '658.104797', '40.675949', '339.546509', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc3969504', 3969504, '688.856689', '42.308319', '338.199005', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc3969505', 3969505, '695.458374', '32.764568', '395.995209', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc3969506', 3969506, '714.097778', '41.205120', '366.676910', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc3969507', 3969507, '672.780518', '40.217781', '354.945709', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc3969508', 3969508, '719.824585', '40.851952', '370.876312', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc3969542', 3969542, '560.540100', '24.185499', '348.622803', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133456, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969548', 3969548, '522.148376', '23.025820', '338.460297', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133184, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969554', 3969554, '549.980774', '37.888100', '297.108398', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132912, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969559', 3969559, '529.777893', '26.199690', '320.881897', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969858', 3969858, '676.691772', '12.588650', '446.555206', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969860', 3969860, '668.372314', '21.641729', '428.498291', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132108, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969864', 3969864, '682.858887', '19.865379', '433.932312', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131836, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969865', 3969865, '734.760376', '26.661579', '441.483093', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131564, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969866', 3969866, '738.361572', '27.470659', '441.561615', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131292, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969867', 3969867, '743.555115', '43.828701', '397.126801', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131020, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969868', 3969868, '749.288208', '49.819462', '361.199493', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130748, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969869', 3969869, '745.879089', '49.587929', '364.109314', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130476, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969870', 3969870, '554.436523', '29.648230', '329.762695', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969874', 3969874, '501.999603', '16.372259', '323.036591', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969875', 3969875, '516.929810', '22.049240', '301.594513', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969876', 3969876, '565.178772', '35.629768', '313.008209', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969877', 3969877, '634.964478', '23.582150', '394.616089', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969913', 3969913, '617.781311', '28.683889', '370.071503', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969920', 3969920, '611.048096', '35.477501', '345.262604', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128578, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(138, 's1f4', 'bnpc3969921', 3969921, '586.014709', '27.906170', '353.311188', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969922', 3969922, '619.215576', '29.112610', '369.491608', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969923', 3969923, '588.120422', '28.606050', '352.456696', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969924', 3969924, '613.825195', '35.926769', '345.689789', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969925', 3969925, '619.487122', '27.800541', '373.672699', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969928', 3969928, '586.106323', '30.585791', '346.139404', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969938', 3969938, '607.670898', '42.955601', '306.352112', 348, 0, 0, 0, 0, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126680, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(138, 's1f4', 'bnpc3969940', 3969940, '601.888184', '42.074169', '311.211304', 349, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126414, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(138, 's1f4', 'bnpc3969942', 3969942, '586.741699', '40.893959', '312.224213', 349, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126142, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(138, 's1f4', 'bnpc3969943', 3969943, '615.350525', '43.930660', '306.935211', 348, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125864, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(138, 's1f4', 'bnpc3969944', 3969944, '582.392395', '43.245682', '301.571014', 349, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125598, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(138, 's1f4', 'bnpc3969945', 3969945, '593.642029', '43.886150', '301.072693', 348, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125320, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(138, 's1f4', 'bnpc3969946', 3969946, '601.489197', '43.885170', '302.896698', 348, 0, 0, 0, 0, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125048, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(138, 's1f4', 'bnpc3969947', 3969947, '600.182373', '43.875881', '302.854614', 349, 0, 0, 0, 0, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124782, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(138, 's1f4', 'bnpc3969953', 3969953, '466.849701', '12.710720', '359.487213', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969954', 3969954, '457.877411', '9.353733', '383.566010', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969977', 3969977, '450.522614', '9.018035', '388.296295', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969978', 3969978, '489.053406', '7.208063', '402.681610', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969979', 3969979, '510.520996', '1.643817', '421.411987', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969980', 3969980, '516.838318', '2.083105', '418.970612', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123156, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969981', 3969981, '454.281586', '8.893167', '420.949799', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122884, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3969983', 3969983, '510.302307', '3.759752', '406.295197', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122612, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970016', 3970016, '598.226685', '25.550039', '368.222595', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122304, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970018', 3970018, '617.181580', '32.516930', '357.289886', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122032, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970021', 3970021, '643.447693', '23.634590', '398.243011', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121760, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970023', 3970023, '635.004395', '20.669270', '404.579987', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121488, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970025', 3970025, '599.237000', '30.746880', '353.353088', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121216, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970032', 3970032, '622.963623', '41.739059', '320.949005', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120944, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970034', 3970034, '634.595825', '42.144840', '321.818115', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120672, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970036', 3970036, '626.665527', '41.288631', '324.601715', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120400, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970043', 3970043, '657.099609', '17.239750', '446.592987', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970044', 3970044, '603.288696', '6.133514', '483.976501', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970045', 3970045, '601.175476', '6.050048', '482.055298', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970058', 3970058, '513.097290', '16.847160', '355.958801', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970061', 3970061, '447.827789', '5.457586', '281.886292', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970133', 3970133, '416.984497', '-8.646816', '202.035202', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970135', 3970135, '412.728088', '-9.469052', '205.053802', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970136', 3970136, '346.358093', '-20.858730', '218.121307', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970139', 3970139, '349.959106', '-18.572670', '169.900894', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970140', 3970140, '354.643799', '-18.085939', '171.731094', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970155', 3970155, '335.827911', '-17.950689', '158.445908', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117108, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970159', 3970159, '307.105988', '-20.876850', '162.587708', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116836, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970161', 3970161, '298.054413', '-13.534800', '141.344299', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116564, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970162', 3970162, '293.618408', '-13.544960', '146.169205', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116292, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970166', 3970166, '194.223495', '-9.052984', '64.264412', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc3970168', 3970168, '126.745399', '-15.229580', '95.719521', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc3970170', 3970170, '165.697601', '-14.725040', '79.575813', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc3970171', 3970171, '84.276093', '-14.942520', '126.744102', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102450, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc3970174', 3970174, '97.569847', '-16.128820', '166.516693', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102722, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc3970177', 3970177, '7.003844', '-24.124559', '109.025703', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116026, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970184', 3970184, '24.765341', '-23.209021', '107.560799', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115754, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970186', 3970186, '-19.180639', '-22.568140', '51.071899', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970187', 3970187, '-12.954960', '-22.781759', '46.860409', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970190', 3970190, '7.797313', '-22.598660', '68.039932', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970193', 3970193, '104.600502', '-10.910250', '5.996748', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970194', 3970194, '55.405460', '-5.264410', '-30.655420', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970196', 3970196, '38.071209', '-5.203373', '-34.836391', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970199', 3970199, '64.013428', '-4.214352', '-64.780800', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970214', 3970214, '176.327301', '-12.764270', '112.090401', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc3970222', 3970222, '89.666710', '-1.146154', '-60.931259', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113584, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970231', 3970231, '82.380707', '-1.466871', '-63.000511', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970232', 3970232, '87.757019', '-2.006091', '-55.761841', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970236', 3970236, '82.076691', '-1.472959', '-64.535721', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970238', 3970238, '81.548286', '-2.522091', '-54.485199', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970241', 3970241, '76.980713', '-2.383074', '-61.994930', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970308', 3970308, '344.824890', '-17.982759', '163.365295', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970320', 3970320, '261.840088', '-17.578510', '163.665298', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970328', 3970328, '262.914001', '-17.209499', '160.012894', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970331', 3970331, '324.945801', '-5.662250', '104.268402', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970344', 3970344, '367.757294', '4.986305', '78.445778', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970353', 3970353, '366.964111', '4.318256', '81.956146', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970357', 3970357, '383.822998', '15.624690', '27.171089', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970366', 3970366, '253.742203', '2.639771', '62.302608', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100280, 5, 0, 0, 0, 28, 30059, 0, 0, 0), +(138, 's1f4', 'bnpc3970369', 3970369, '250.293701', '2.426147', '62.638309', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100552, 5, 0, 0, 0, 28, 30059, 0, 0, 0), +(138, 's1f4', 'bnpc3970370', 3970370, '253.833694', '2.365112', '64.438843', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99736, 5, 0, 0, 0, 28, 30059, 0, 0, 0), +(138, 's1f4', 'bnpc3970371', 3970371, '242.913300', '1.349542', '71.061279', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100008, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc3970372', 3970372, '243.379196', '1.981285', '58.301060', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101368, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc3970373', 3970373, '264.349487', '2.966964', '67.594612', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101640, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc3970374', 3970374, '258.144806', '5.613231', '48.790150', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100824, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc3970375', 3970375, '272.358307', '5.020142', '58.945560', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101096, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc3970378', 3970378, '170.397400', '-15.426920', '64.652428', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970381', 3970381, '148.926498', '-12.439410', '99.620064', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970382', 3970382, '150.743805', '-12.130980', '102.494904', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970389', 3970389, '5.355869', '-23.270050', '51.895889', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970391', 3970391, '79.423157', '-4.654048', '-18.814421', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970394', 3970394, '50.156361', '-2.487267', '-15.762620', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970399', 3970399, '48.172680', '-2.487267', '-15.457440', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970406', 3970406, '269.703186', '-9.597971', '96.116524', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108156, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970411', 3970411, '267.261688', '-10.238850', '98.008636', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107884, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970412', 3970412, '263.263885', '-10.391440', '90.897942', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107612, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970414', 3970414, '241.901199', '-11.703720', '95.231506', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107340, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970415', 3970415, '239.032501', '-11.642680', '94.010780', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107068, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970416', 3970416, '246.860504', '-13.252180', '112.323097', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106796, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970419', 3970419, '249.271500', '-13.493160', '115.100197', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106524, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970420', 3970420, '243.442505', '-14.033920', '117.877403', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106252, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970433', 3970433, '222.674896', '-14.938630', '104.905701', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105980, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970434', 3970434, '219.775604', '-15.091220', '103.654503', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105708, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970437', 3970437, '293.079987', '-11.703720', '132.432999', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105412, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970680', 3970680, '216.784897', '-14.389340', '95.933472', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3970681', 3970681, '272.755005', '-9.750549', '103.227303', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3972576', 3972576, '303.465607', '3.314056', '68.397324', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104596, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3972577', 3972577, '306.798889', '3.292596', '65.152077', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc3972584', 3972584, '338.778503', '-21.646130', '187.870697', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4057318', 4057318, '654.975586', '9.882965', '475.443115', 783, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21436, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(138, 's1f4', 'bnpc4057321', 4057321, '299.487488', '-24.761221', '213.123703', 785, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21170, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(138, 's1f4', 'bnpc4057322', 4057322, '221.054092', '-24.836121', '213.135193', 784, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20904, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(138, 's1f4', 'bnpc4057324', 4057324, '-96.358551', '-25.164360', '54.821659', 786, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20638, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(138, 's1f4', 'bnpc4057391', 4057391, '14.877870', '-10.652030', '-83.785133', 787, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20372, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(138, 's1f4', 'bnpc4108563', 4108563, '134.623199', '-16.564131', '55.533340', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102178, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4108567', 4108567, '124.950996', '-18.103809', '158.397507', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101906, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4114576', 4114576, '-69.169189', '-25.864071', '-73.624763', 768, 0, 0, 0, 1, 6, 0, 0, 565, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89138, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(138, 's1f4', 'bnpc4114578', 4114578, '-48.966251', '-22.781740', '-124.681503', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96990, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4114591', 4114591, '-75.944153', '-28.244450', '-144.487701', 766, 0, 0, 0, 0, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97528, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(138, 's1f4', 'bnpc4114593', 4114593, '-75.913696', '-28.427610', '-146.562897', 765, 0, 0, 0, 0, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98610, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(138, 's1f4', 'bnpc4114594', 4114594, '-97.522850', '-30.215300', '-148.102402', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97800, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4114595', 4114595, '-106.523300', '-31.509951', '-130.479904', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97262, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4116530', 4116530, '-157.610504', '-38.071289', '-31.235229', 766, 0, 0, 0, 0, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98072, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(138, 's1f4', 'bnpc4116531', 4116531, '-146.562897', '-27.573059', '20.462339', 765, 0, 0, 0, 1, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99154, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(138, 's1f4', 'bnpc4116532', 4116532, '-119.035599', '-27.328920', '23.208981', 767, 0, 0, 0, 1, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96446, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4116538', 4116538, '-155.565796', '-38.010250', '-31.357361', 765, 0, 0, 0, 0, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98882, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(138, 's1f4', 'bnpc4116539', 4116539, '-166.765900', '-32.578060', '5.874695', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96718, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4116540', 4116540, '-134.447296', '-30.472290', '-5.020264', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98344, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(138, 's1f4', 'bnpc4125231', 4125231, '-370.973785', '-40.882549', '-198.661697', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96180, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4125233', 4125233, '-63.096130', '-25.253719', '-114.000198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4125234', 4125234, '-50.309021', '-23.849850', '-91.264221', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95642, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4125235', 4125235, '-90.898071', '-29.831421', '-137.163406', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4125236', 4125236, '-129.961105', '-32.852779', '-108.934097', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4125238', 4125238, '-158.037796', '-34.042912', '-99.229492', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4125239', 4125239, '-185.717606', '-39.169922', '-80.796570', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94554, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4125240', 4125240, '-190.905594', '-41.001041', '-49.210388', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4125241', 4125241, '-202.166794', '-40.024479', '-90.806519', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4125242', 4125242, '-140.642502', '-30.411249', '1.815735', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4125243', 4125243, '-166.796402', '-36.392818', '-12.100400', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4125244', 4125244, '-222.583405', '-40.634769', '-87.815727', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93194, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4125247', 4125247, '-423.331085', '-40.756901', '-220.508102', 773, 0, 0, 0, 1, 6, 0, 0, 347, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92928, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(138, 's1f4', 'bnpc4125248', 4125248, '-412.832886', '-41.458801', '-213.153305', 776, 0, 0, 0, 0, 6, 0, 0, 559, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92662, 1, 0, 0, 0, 36, 30079, 0, 0, 0), +(138, 's1f4', 'bnpc4125250', 4125250, '-411.978394', '-41.641911', '-212.024200', 774, 0, 0, 0, 0, 6, 0, 0, 345, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92396, 1, 0, 0, 0, 36, 30065, 0, 0, 0), +(138, 's1f4', 'bnpc4125261', 4125261, '-441.245209', '-39.475101', '-220.111496', 774, 0, 0, 0, 0, 6, 0, 0, 345, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92124, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(138, 's1f4', 'bnpc4125262', 4125262, '-440.054993', '-39.475101', '-218.646606', 776, 0, 0, 0, 1, 6, 0, 0, 559, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91846, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(138, 's1f4', 'bnpc4125263', 4125263, '-435.568787', '-41.001041', '-232.898407', 773, 0, 0, 0, 1, 6, 0, 0, 347, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91568, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(138, 's1f4', 'bnpc4125282', 4125282, '-406.515594', '-28.397030', '-253.040405', 774, 0, 0, 0, 0, 6, 0, 0, 345, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91308, 1, 0, 0, 0, 36, 30077, 0, 0, 0), +(138, 's1f4', 'bnpc4125283', 4125283, '-407.217499', '-28.397030', '-253.528702', 776, 0, 0, 0, 0, 6, 0, 0, 559, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91030, 1, 0, 0, 0, 36, 30079, 0, 0, 0), +(138, 's1f4', 'bnpc4125285', 4125285, '-412.985413', '-28.397030', '-250.843094', 773, 0, 0, 0, 1, 6, 0, 0, 347, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90752, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(138, 's1f4', 'bnpc4125286', 4125286, '-405.966309', '-37.644100', '-243.823898', 773, 0, 0, 0, 1, 6, 0, 0, 347, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90480, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(138, 's1f4', 'bnpc4125289', 4125289, '-398.519897', '-40.817928', '-218.188797', 774, 0, 0, 0, 1, 6, 0, 0, 345, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90220, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(138, 's1f4', 'bnpc4125290', 4125290, '-391.042999', '-38.651119', '-244.220703', 776, 0, 0, 0, 1, 6, 0, 0, 559, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89942, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(138, 's1f4', 'bnpc4316913', 4316913, '-221.667801', '-42.008121', '-198.138397', 765, 0, 0, 0, 1, 6, 0, 0, 2525, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81986, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4316918', 4316918, '-211.239502', '-41.783859', '-229.267593', 766, 0, 0, 0, 1, 6, 0, 0, 2524, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81720, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4316920', 4316920, '-242.389603', '-42.008121', '-221.606796', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81490, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4316922', 4316922, '-243.732407', '-41.367310', '-179.705597', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81182, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4316928', 4316928, '-237.445602', '-41.977600', '-231.189499', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80910, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4316930', 4316930, '-202.472000', '-42.008121', '-244.739395', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80638, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4316933', 4316933, '-197.619598', '-41.428280', '-317.036713', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80366, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4316935', 4316935, '-237.476196', '-42.008121', '-307.362488', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80094, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4316938', 4316938, '-292.652802', '-41.672421', '-327.657013', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79822, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4316939', 4316939, '-440.940002', '-33.005310', '-363.149506', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79550, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4316942', 4316942, '-458.416687', '-32.786930', '-362.740295', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79278, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4316943', 4316943, '-263.904785', '-43.381409', '-271.076599', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72514, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4316944', 4316944, '-319.625488', '-39.391800', '-300.050995', 766, 0, 0, 0, 0, 6, 0, 0, 1828, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79000, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(138, 's1f4', 'bnpc4316945', 4316945, '-317.930511', '-39.354549', '-298.395599', 768, 0, 0, 0, 0, 6, 0, 0, 1830, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78770, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(138, 's1f4', 'bnpc4316950', 4316950, '-207.660095', '-42.008121', '-279.957306', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72786, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4316951', 4316951, '-144.609802', '-41.153629', '-241.840302', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78498, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4316958', 4316958, '-146.990204', '-41.031559', '-289.265289', 766, 0, 0, 0, 0, 6, 0, 0, 2524, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78184, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(138, 's1f4', 'bnpc4316959', 4316959, '-147.081696', '-41.031559', '-291.035309', 768, 0, 0, 0, 0, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77954, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(138, 's1f4', 'bnpc4316960', 4316960, '-167.712006', '-41.336731', '-290.058807', 765, 0, 0, 0, 1, 6, 0, 0, 2525, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77634, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4316963', 4316963, '-232.440704', '-40.146481', '-349.050201', 768, 0, 0, 0, 1, 6, 0, 0, 1830, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77410, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4316964', 4316964, '-282.307190', '-42.008121', '-365.072113', 766, 0, 0, 0, 0, 6, 0, 0, 1828, 0, '0.000000', 47, 0, 120, 1, 0, 25, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 66216, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(138, 's1f4', 'bnpc4316965', 4316965, '-281.116913', '-42.008121', '-359.151611', 766, 0, 0, 0, 0, 6, 0, 0, 1828, 0, '0.000000', 47, 0, 120, 1, 0, 21, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 77096, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(138, 's1f4', 'bnpc4316980', 4316980, '-375.469208', '-39.479321', '-346.811401', 768, 0, 0, 0, 0, 6, 0, 0, 1830, 0, '0.000000', 49, 0, 120, 1, 0, 31, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 76866, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(138, 's1f4', 'bnpc4316981', 4316981, '-360.719788', '-35.466740', '-409.681396', 766, 0, 0, 0, 1, 6, 0, 0, 1828, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76552, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4316987', 4316987, '-351.952209', '-35.287498', '-400.680786', 768, 0, 0, 0, 1, 6, 0, 0, 1830, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72242, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4317006', 4317006, '-425.589386', '-33.107040', '-354.529510', 766, 0, 0, 0, 0, 6, 0, 0, 1828, 0, '0.000000', 49, 0, 120, 1, 0, 35, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 76280, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(138, 's1f4', 'bnpc4317012', 4317012, '-354.351501', '-39.271420', '-303.235596', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76062, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4317015', 4317015, '-507.061493', '-32.206131', '-362.981293', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75790, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4317016', 4317016, '-496.515411', '-31.640949', '-381.532288', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75518, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4317017', 4317017, '-386.895294', '-35.722141', '-293.090790', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75246, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4317019', 4317019, '-374.123108', '-37.690010', '-300.576691', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74974, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4317020', 4317020, '-364.905487', '-37.562908', '-288.443298', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74702, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4321460', 4321460, '-315.388794', '-38.406979', '624.200806', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321461', 4321461, '-274.008301', '-39.855450', '650.736206', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321463', 4321463, '-243.883301', '-39.120640', '668.059570', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321464', 4321464, '-281.698914', '-40.244148', '655.379211', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321465', 4321465, '-345.691711', '-40.588310', '660.238220', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321466', 4321466, '-392.988892', '-41.449879', '655.634277', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64414, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321467', 4321467, '-363.413086', '-40.854279', '695.693970', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64142, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321468', 4321468, '-450.857391', '-37.997330', '733.822021', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321469', 4321469, '-476.772797', '-38.142120', '757.051270', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321470', 4321470, '-447.854492', '-37.912220', '730.335571', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321471', 4321471, '-477.072906', '-37.196659', '711.034729', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321472', 4321472, '-507.253998', '-37.196659', '740.505798', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321473', 4321473, '-479.166901', '-37.732540', '738.016785', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321474', 4321474, '-451.650787', '-37.109020', '704.282288', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321475', 4321475, '-308.953400', '-42.000000', '713.766479', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61978, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4321477', 4321477, '-348.667999', '-42.000000', '722.773987', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4321478', 4321478, '-268.398895', '-42.000000', '721.376526', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61434, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4321479', 4321479, '-229.397903', '-41.984539', '738.036926', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61162, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4321480', 4321480, '-226.253403', '-41.385059', '735.099487', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60890, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4321481', 4321481, '-322.466187', '-41.807381', '693.960083', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60618, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4321482', 4321482, '-286.179810', '-41.791012', '697.924927', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4321483', 4321483, '-259.243988', '-38.144661', '566.177124', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60062, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321486', 4321486, '-292.149994', '-40.520851', '429.086090', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321487', 4321487, '-311.995514', '-41.332989', '414.272888', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59536, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321488', 4321488, '-288.225800', '-40.390610', '430.941986', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59264, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321489', 4321489, '-255.620697', '-40.477798', '440.482300', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58992, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321490', 4321490, '-240.806793', '-38.337589', '480.157013', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321492', 4321492, '-223.535095', '-38.907558', '511.755188', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58448, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321493', 4321493, '-250.595703', '-38.072151', '503.112091', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58176, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321494', 4321494, '-227.069397', '-38.621010', '515.364319', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57904, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321495', 4321495, '-208.841599', '-38.722130', '493.455811', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57632, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321496', 4321496, '-241.072998', '-38.224331', '544.913513', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57360, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321497', 4321497, '-291.392700', '-38.949532', '627.616089', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57088, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321498', 4321498, '-261.889404', '-39.899719', '661.304077', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56816, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321499', 4321499, '-370.138092', '-40.451721', '688.807495', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56544, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321500', 4321500, '-291.260986', '-41.491730', '693.390076', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56272, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(138, 's1f4', 'bnpc4321501', 4321501, '-332.560211', '-42.000000', '711.026123', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56000, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321502', 4321502, '-329.420013', '-42.000000', '712.776611', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55728, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321503', 4321503, '-246.192200', '-40.441620', '709.686218', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55456, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321505', 4321505, '-240.736298', '-42.000000', '742.566528', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55184, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321506', 4321506, '-468.364594', '-38.197491', '749.200073', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54912, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321508', 4321508, '-469.616486', '-37.505680', '723.021729', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321509', 4321509, '-467.157196', '-37.692699', '722.171387', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54368, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321510', 4321510, '-443.166687', '-37.068859', '715.848694', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321511', 4321511, '-438.206390', '-35.766102', '670.497375', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321526', 4321526, '-71.423027', '-25.768869', '-86.368896', 768, 0, 0, 0, 1, 6, 0, 0, 565, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88866, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4321527', 4321527, '-78.263550', '-26.108219', '-70.908691', 768, 0, 0, 0, 0, 6, 0, 0, 565, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89410, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4321528', 4321528, '-39.536190', '-22.232420', '-158.983795', 765, 0, 0, 0, 1, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89634, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(138, 's1f4', 'bnpc4621608', 4621608, '430.063690', '14.976550', '469.112305', 2770, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21786, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633063', 4633063, '-390.393707', '-41.813049', '-203.727905', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88564, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633067', 4633067, '-360.463898', '-39.780331', '-216.723907', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88292, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633068', 4633068, '-355.794708', '-40.390629', '-201.770096', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88020, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633073', 4633073, '-373.761292', '-40.459530', '-206.054901', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87748, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633074', 4633074, '-349.660492', '-38.529110', '-232.227097', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87476, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633076', 4633076, '-357.646790', '-38.274658', '-239.828094', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87204, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633118', 4633118, '-155.500198', '-34.403210', '-88.681213', 765, 0, 0, 0, 1, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86914, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(138, 's1f4', 'bnpc4633119', 4633119, '-216.104294', '-40.840759', '-85.531441', 765, 0, 0, 0, 1, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86642, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(138, 's1f4', 'bnpc4633122', 4633122, '-180.251999', '-39.087090', '-75.459579', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86376, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(138, 's1f4', 'bnpc4633123', 4633123, '-193.427002', '-38.091850', '-114.042099', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86104, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(138, 's1f4', 'bnpc4633124', 4633124, '-121.586899', '-32.542980', '-106.177200', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85832, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(138, 's1f4', 'bnpc4633125', 4633125, '-145.063293', '-32.872959', '-115.359398', 767, 0, 0, 0, 1, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85566, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633126', 4633126, '-216.646500', '-41.021160', '-66.576988', 767, 0, 0, 0, 1, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85294, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633128', 4633128, '-196.023407', '-42.000118', '-288.500702', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74436, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633131', 4633131, '-181.510605', '-42.000141', '-270.853699', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74164, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633132', 4633132, '-221.403793', '-42.000000', '-294.279510', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73892, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633133', 4633133, '-255.104706', '-42.000011', '-324.852905', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73620, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633134', 4633134, '-272.297607', '-42.000000', '-331.539307', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73348, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633135', 4633135, '-275.837311', '-41.886051', '-348.195587', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73076, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633157', 4633157, '-96.910004', '-30.450001', '-92.839996', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 12, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85064, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633224', 4633224, '-103.441002', '-31.479370', '-116.075401', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 14, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84792, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633232', 4633232, '-118.730499', '-32.303410', '-133.012894', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 15, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84520, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633233', 4633233, '-84.733398', '-29.587280', '-110.399101', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 11, 0, 16, 22, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83976, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633236', 4633236, '-91.264221', '-30.197689', '-128.465698', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 13, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84248, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633263', 4633263, '-789.705627', '-41.480991', '683.228088', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53234, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633264', 4633264, '-759.089783', '-38.575909', '689.571106', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52962, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633265', 4633265, '-805.386475', '-40.817928', '661.463318', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52690, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633266', 4633266, '-794.361572', '-39.456490', '648.005005', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52418, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633267', 4633267, '-775.544617', '-38.485760', '658.247375', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52146, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633268', 4633268, '-775.478821', '-40.268620', '671.290222', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51874, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633269', 4633269, '-818.600830', '-42.008121', '650.415771', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51602, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633270', 4633270, '-762.932495', '-38.970909', '687.098389', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51330, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633271', 4633271, '-776.258606', '-39.190811', '705.569885', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51058, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633276', 4633276, '-283.527893', '-41.916561', '-357.747803', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 21, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 70090, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633279', 4633279, '-294.392303', '-41.489319', '-349.569000', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 22, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 69818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633281', 4633281, '-296.894806', '-41.733459', '-359.090607', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 23, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 70362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633283', 4633283, '-293.720886', '-41.641911', '-367.788208', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 24, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 70906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633285', 4633285, '-282.062988', '-42.038639', '-367.910309', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 25, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 70634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633286', 4633286, '-377.859192', '-39.444641', '-348.989105', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 31, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 69552, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633288', 4633288, '-395.040802', '-38.559631', '-343.953613', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 32, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 69280, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633289', 4633289, '-415.392700', '-33.349609', '-358.443909', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 33, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 69008, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633290', 4633290, '-423.105713', '-32.905010', '-367.492004', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 34, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 68736, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633291', 4633291, '-425.528412', '-33.066349', '-357.686798', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 35, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 68464, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4633377', 4633377, '-188.154800', '-41.040760', '-213.112900', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71970, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4633783', 4633783, '-343.341888', '-39.413860', '-362.948090', 765, 0, 0, 0, 1, 6, 0, 0, 1827, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71650, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4633784', 4633784, '-423.791107', '-33.754879', '-325.509613', 765, 0, 0, 0, 1, 6, 0, 0, 1827, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71378, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4633787', 4633787, '-415.514801', '-33.350899', '-355.147888', 765, 0, 0, 0, 0, 6, 0, 0, 1827, 0, '0.000000', 49, 0, 120, 1, 0, 33, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 71106, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(138, 's1f4', 'bnpc4664481', 4664481, '-777.584473', '-42.008121', '724.696716', 383, 0, 18, 5, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50786, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4664485', 4664485, '-809.964111', '-41.672421', '665.003418', 383, 0, 18, 5, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50514, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4664488', 4664488, '-789.944275', '-41.458801', '705.134583', 383, 0, 18, 5, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50242, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4666236', 4666236, '-878.239990', '-20.652750', '883.271118', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49862, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4666257', 4666257, '-828.987305', '-25.652750', '888.069519', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49590, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4666258', 4666258, '-829.739929', '-25.680969', '889.829773', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49318, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4666259', 4666259, '-815.924316', '-23.649630', '888.875488', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49046, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4666260', 4666260, '-817.754517', '-23.649630', '894.566589', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48774, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(138, 's1f4', 'bnpc4666261', 4666261, '-877.169678', '-20.873289', '876.188171', 775, 0, 0, 0, 1, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48616, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(138, 's1f4', 'bnpc4666262', 4666262, '-875.114197', '-20.902760', '890.589722', 776, 0, 0, 0, 1, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48266, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(138, 's1f4', 'bnpc4666265', 4666265, '-832.192383', '-25.647751', '899.698303', 775, 0, 0, 0, 0, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48072, 2, 0, 0, 0, 0, 30079, 0, 0, 282), +(138, 's1f4', 'bnpc4666266', 4666266, '-883.583496', '-20.647829', '889.883484', 776, 0, 0, 0, 0, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47722, 2, 0, 0, 0, 0, 30065, 0, 0, 282), +(138, 's1f4', 'bnpc4666267', 4666267, '-888.256775', '-20.652750', '881.349426', 775, 0, 0, 0, 0, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47528, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(138, 's1f4', 'bnpc4666268', 4666268, '-887.970093', '-20.652760', '879.854126', 776, 0, 0, 0, 0, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47178, 2, 0, 0, 0, 0, 30073, 0, 0, 282), +(138, 's1f4', 'bnpc4666269', 4666269, '-822.368286', '-24.341749', '895.894714', 775, 0, 0, 0, 1, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46984, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(138, 's1f4', 'bnpc4666270', 4666270, '-824.196777', '-25.652750', '884.833923', 776, 0, 0, 0, 1, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46634, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(138, 's1f4', 'bnpc4666271', 4666271, '-830.350220', '-25.650511', '879.239990', 775, 0, 0, 0, 0, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46440, 2, 0, 0, 0, 0, 30066, 0, 0, 282), +(138, 's1f4', 'bnpc4666272', 4666272, '-834.023621', '-25.647751', '899.649170', 776, 0, 0, 0, 0, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46090, 2, 0, 0, 0, 0, 30065, 0, 0, 282), +(138, 's1f4', 'bnpc4666281', 4666281, '-922.445129', '-20.652750', '935.165527', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45794, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666282', 4666282, '-913.466614', '-20.902750', '923.657410', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45522, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666283', 4666283, '-912.036621', '-20.902750', '938.072876', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45250, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666284', 4666284, '-867.946289', '-25.647751', '918.489319', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44978, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666285', 4666285, '-853.890320', '-23.649630', '930.090576', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44706, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666286', 4666286, '-857.944092', '-24.538349', '922.393616', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44434, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666287', 4666287, '-867.256897', '-25.652750', '934.697571', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44162, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666288', 4666288, '-914.135620', '-20.652750', '930.937622', 2832, 0, 0, 0, 1, 6, 0, 0, 2538, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43944, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4666291', 4666291, '-853.015991', '-23.649630', '925.301086', 2832, 0, 0, 0, 1, 6, 0, 0, 2538, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43672, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4666292', 4666292, '-864.342407', '-25.652750', '926.222717', 2832, 0, 0, 0, 1, 6, 0, 0, 2538, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43400, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4666293', 4666293, '-860.802307', '-25.647760', '930.098389', 2832, 0, 0, 0, 1, 6, 0, 0, 2538, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43128, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(138, 's1f4', 'bnpc4666294', 4666294, '-921.446472', '-20.676029', '926.420898', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42802, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666705', 4666705, '-862.519897', '-20.652750', '958.568176', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42548, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(138, 's1f4', 'bnpc4666706', 4666706, '-853.286377', '-20.902750', '958.398071', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42276, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(138, 's1f4', 'bnpc4666707', 4666707, '-857.476013', '-20.902750', '972.392212', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42004, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(138, 's1f4', 'bnpc4666708', 4666708, '-807.939697', '-25.652750', '970.221191', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41732, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(138, 's1f4', 'bnpc4666709', 4666709, '-813.264771', '-25.652750', '979.515930', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41460, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(138, 's1f4', 'bnpc4666710', 4666710, '-813.351990', '-25.647751', '985.380127', 773, 0, 0, 0, 0, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41188, 2, 0, 0, 0, 0, 30065, 0, 0, 282), +(138, 's1f4', 'bnpc4666711', 4666711, '-808.987488', '-25.650511', '964.934692', 773, 0, 0, 0, 0, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40916, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(138, 's1f4', 'bnpc4666712', 4666712, '-799.837708', '-23.649639', '983.904175', 773, 0, 0, 0, 0, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40644, 2, 0, 0, 0, 0, 30066, 0, 0, 282), +(138, 's1f4', 'bnpc4666714', 4666714, '-855.103516', '-20.652750', '965.275879', 766, 0, 0, 0, 1, 6, 0, 0, 2540, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40348, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666715', 4666715, '-807.366516', '-25.652750', '978.315125', 766, 0, 0, 0, 1, 6, 0, 0, 2540, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40076, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666716', 4666716, '-798.339783', '-23.649630', '975.416626', 766, 0, 0, 0, 1, 6, 0, 0, 2540, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39804, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666717', 4666717, '-805.016602', '-25.647760', '974.326172', 768, 0, 0, 0, 1, 6, 0, 0, 2541, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39574, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666718', 4666718, '-798.632202', '-23.649630', '979.035828', 768, 0, 0, 0, 1, 6, 0, 0, 2541, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39302, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666719', 4666719, '-861.894470', '-20.652750', '968.356384', 768, 0, 0, 0, 1, 6, 0, 0, 2541, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39030, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666720', 4666720, '-936.066711', '-31.750019', '852.472473', 775, 0, 0, 0, 0, 6, 0, 0, 2542, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38824, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(138, 's1f4', 'bnpc4666721', 4666721, '-933.356873', '-30.260000', '832.557922', 775, 0, 0, 0, 0, 6, 0, 0, 2542, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38552, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(138, 's1f4', 'bnpc4666722', 4666722, '-923.082092', '-30.250000', '842.560730', 775, 0, 0, 0, 0, 6, 0, 0, 2542, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38280, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(138, 's1f4', 'bnpc4666723', 4666723, '-914.793579', '-28.763309', '805.386414', 775, 0, 0, 0, 0, 6, 0, 0, 2542, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38008, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(138, 's1f4', 'bnpc4666724', 4666724, '-936.587219', '-31.755150', '843.129822', 765, 0, 0, 0, 1, 6, 0, 0, 2543, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37622, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666725', 4666725, '-926.512573', '-30.258671', '834.653076', 765, 0, 0, 0, 1, 6, 0, 0, 2543, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37350, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666726', 4666726, '-917.355713', '-28.760000', '806.922974', 765, 0, 0, 0, 1, 6, 0, 0, 2543, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37078, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666728', 4666728, '-910.490601', '-28.763309', '809.658813', 765, 0, 0, 0, 1, 6, 0, 0, 2543, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36806, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4666734', 4666734, '-89.256203', '-30.084669', '-124.693199', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 13, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83662, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4666735', 4666735, '-94.161926', '-30.635151', '-89.379402', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 12, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83390, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4666736', 4666736, '-85.840622', '-29.611879', '-107.485497', 766, 0, 0, 0, 0, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 11, 0, 16, 22, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83112, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(138, 's1f4', 'bnpc4666746', 4666746, '-104.014999', '-31.623831', '-118.950104', 765, 0, 0, 0, 0, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 14, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 82834, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(138, 's1f4', 'bnpc4666747', 4666747, '-118.166702', '-32.339401', '-135.991302', 765, 0, 0, 0, 0, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 15, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 82562, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(138, 's1f4', 'bnpc4667026', 4667026, '-292.652802', '-41.733459', '-365.011108', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 47, 0, 120, 1, 0, 24, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 68126, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4667027', 4667027, '-293.720886', '-41.580872', '-346.913910', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 47, 0, 120, 1, 0, 22, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 67854, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4667028', 4667028, '-294.453400', '-41.580872', '-359.822998', 768, 0, 0, 0, 0, 6, 0, 0, 1830, 0, '0.000000', 47, 0, 120, 1, 0, 23, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 67618, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(138, 's1f4', 'bnpc4667036', 4667036, '-425.913300', '-32.791721', '-368.407501', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 49, 0, 120, 1, 0, 34, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 67310, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4667037', 4667037, '-397.546295', '-37.902161', '-342.084900', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 49, 0, 120, 1, 0, 32, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 67038, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(138, 's1f4', 'bnpc4681259', 4681259, '-351.697388', '-38.557800', '-379.104797', 766, 0, 0, 0, 1, 6, 0, 0, 1828, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66760, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(138, 's1f4', 'bnpc4681260', 4681260, '-370.744995', '-35.287498', '-414.281708', 768, 0, 0, 0, 0, 6, 0, 0, 1830, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66530, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(139, 's1f5', 'bnpc4057424', 4057424, '373.678802', '0.422750', '77.136467', 787, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 13576, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(139, 's1f5', 'bnpc4125683', 4125683, '-430.132813', '-4.460994', '252.733902', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70376, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4125744', 4125744, '-425.421906', '-5.333291', '249.054504', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70104, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4125745', 4125745, '-466.306793', '-7.092595', '232.199203', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69832, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4125747', 4125747, '-443.584503', '-13.024020', '208.694595', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69560, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4125750', 4125750, '-384.939392', '-2.456726', '215.991302', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69288, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4125752', 4125752, '-401.977203', '-3.269313', '175.769104', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69016, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4125755', 4125755, '-369.548309', '0.004147', '192.516693', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68744, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4125756', 4125756, '-398.737305', '-2.894251', '174.231705', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68472, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4125763', 4125763, '-396.099915', '-3.100000', '145.190201', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125766', 4125766, '-393.865906', '-3.100000', '143.932800', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125767', 4125767, '-386.391907', '-3.100003', '157.227005', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125768', 4125768, '-378.088715', '-3.100000', '148.268097', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125769', 4125769, '-406.202789', '-3.100000', '152.051300', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125772', 4125772, '-405.765289', '-3.100000', '141.705704', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125778', 4125778, '-366.663391', '-1.920207', '156.406006', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125779', 4125779, '-420.247314', '-1.484060', '141.641296', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125784', 4125784, '-410.220001', '-3.100000', '26.344061', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66036, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4125795', 4125795, '-409.830414', '-3.100000', '41.699661', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65764, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4125797', 4125797, '-431.816986', '-3.100000', '23.416639', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65492, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4125801', 4125801, '-433.412598', '-3.100000', '18.522329', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65220, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4125802', 4125802, '-479.417297', '-3.100000', '-1.863089', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64948, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4125803', 4125803, '-512.265808', '-3.100000', '-6.092242', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64676, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4125804', 4125804, '-518.534912', '-3.100008', '-9.719651', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64404, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4125808', 4125808, '-593.263123', '-2.203172', '-36.779171', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64138, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125810', 4125810, '-564.081787', '-1.780965', '-9.216994', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125812', 4125812, '-595.108887', '-1.485892', '9.388672', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63594, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125815', 4125815, '-650.354675', '-3.100002', '5.733859', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63322, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125820', 4125820, '-627.241516', '-3.100004', '-1.093794', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63050, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125822', 4125822, '-593.917175', '-1.481592', '-0.002720', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125843', 4125843, '-400.381500', '43.564449', '-4.135254', 328, 0, 0, 0, 1, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62512, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(139, 's1f5', 'bnpc4125844', 4125844, '-391.328400', '44.270889', '-5.423687', 329, 0, 0, 0, 0, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62246, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(139, 's1f5', 'bnpc4125848', 4125848, '-440.943298', '31.565310', '58.753658', 328, 0, 0, 0, 1, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61968, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(139, 's1f5', 'bnpc4125849', 4125849, '-428.585693', '37.782028', '19.815300', 329, 0, 0, 0, 1, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61702, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(139, 's1f5', 'bnpc4125851', 4125851, '-404.069885', '36.076439', '36.532841', 328, 0, 0, 0, 0, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61424, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(139, 's1f5', 'bnpc4125852', 4125852, '-402.817291', '36.137718', '33.293110', 329, 0, 0, 0, 0, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61158, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(139, 's1f5', 'bnpc4125853', 4125853, '-478.698395', '28.016800', '54.543690', 329, 0, 0, 0, 1, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60886, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(139, 's1f5', 'bnpc4125854', 4125854, '-378.043213', '38.659840', '29.684401', 328, 0, 0, 0, 1, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60608, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(139, 's1f5', 'bnpc4125855', 4125855, '-482.932800', '26.474369', '57.663818', 329, 0, 0, 0, 1, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125856', 4125856, '-465.260010', '36.882080', '31.197201', 328, 0, 0, 0, 1, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60064, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125938', 4125938, '-477.459015', '-2.084961', '31.291599', 329, 0, 0, 0, 1, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59798, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(139, 's1f5', 'bnpc4125940', 4125940, '-486.273987', '-2.193239', '25.343540', 328, 0, 0, 0, 1, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59520, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(139, 's1f5', 'bnpc4125942', 4125942, '-489.859711', '-2.618297', '38.082218', 328, 0, 0, 0, 0, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59248, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(139, 's1f5', 'bnpc4125943', 4125943, '-491.041992', '-2.412468', '34.461601', 329, 0, 0, 0, 0, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58982, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(139, 's1f5', 'bnpc4125949', 4125949, '-467.209808', '-2.220885', '253.157806', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125951', 4125951, '-468.934601', '-2.134753', '251.403000', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125952', 4125952, '-435.089508', '-7.852676', '240.201996', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125953', 4125953, '-421.885315', '-7.810967', '200.294296', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125954', 4125954, '-385.569489', '-1.927866', '179.288498', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125955', 4125955, '-355.833588', '-0.654633', '170.008102', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125957', 4125957, '-414.132385', '-3.313842', '165.281601', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125959', 4125959, '-438.587494', '-1.647789', '125.521599', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125961', 4125961, '-439.676910', '-1.549295', '123.968102', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125964', 4125964, '-425.339294', '-2.050552', '105.144096', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125968', 4125968, '-430.014313', '-2.101961', '59.509911', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 22, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125972', 4125972, '-479.200195', '-2.255513', '23.531839', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 22, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125974', 4125974, '-553.856689', '-2.609314', '1.632629', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 23, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125977', 4125977, '-585.334229', '-2.232086', '-15.587410', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 23, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125978', 4125978, '-586.275085', '-2.093815', '-14.228230', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 23, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125981', 4125981, '-429.866486', '34.005150', '42.804970', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125985', 4125985, '-469.631805', '31.277020', '45.936749', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4125986', 4125986, '-382.392395', '40.251968', '10.964420', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126060', 4126060, '590.199829', '-3.100000', '139.805496', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53466, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126064', 4126064, '637.447083', '-3.100000', '169.287994', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53194, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126065', 4126065, '624.633972', '-3.100000', '133.809998', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52922, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126066', 4126066, '576.989380', '-3.128174', '128.160400', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52650, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126068', 4126068, '585.121216', '-3.100000', '167.812897', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52378, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126069', 4126069, '574.338806', '-3.100000', '131.902802', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52106, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126070', 4126070, '640.462585', '-3.100000', '171.417999', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51834, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126071', 4126071, '633.408691', '-3.100000', '187.767105', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51562, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126072', 4126072, '564.760071', '-3.100325', '203.277802', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51290, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126110', 4126110, '420.178009', '-3.100000', '155.939606', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51024, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126111', 4126111, '446.875000', '-3.100000', '175.658096', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126112', 4126112, '437.292786', '-3.100000', '194.681793', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126113', 4126113, '401.780914', '-3.100000', '183.057205', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126114', 4126114, '394.433014', '-3.100000', '141.594101', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126115', 4126115, '390.221100', '-3.100000', '144.688904', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49664, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126116', 4126116, '369.374298', '-3.100012', '127.962303', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49392, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126117', 4126117, '380.599792', '-3.100016', '17.808519', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49120, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126118', 4126118, '376.532288', '-3.100016', '22.182360', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48848, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126119', 4126119, '358.780792', '-3.100016', '33.644321', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48576, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126120', 4126120, '440.921600', '-3.100000', '192.138596', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48304, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126121', 4126121, '299.763397', '-3.100003', '155.110306', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4126122', 4126122, '328.125793', '-3.100003', '150.720703', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4126124', 4126124, '287.582489', '-3.100012', '33.655041', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40724, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4126125', 4126125, '327.775513', '-3.100016', '30.262211', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40452, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4126127', 4126127, '293.655487', '-3.100016', '37.213219', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40180, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4126129', 4126129, '272.029205', '-3.100012', '83.103783', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39908, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(139, 's1f5', 'bnpc4126131', 4126131, '303.497009', '-3.100003', '149.039093', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39636, 1, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(139, 's1f5', 'bnpc4126133', 4126133, '338.338287', '-0.869812', '206.256104', 343, 0, 0, 0, 1, 6, 0, 0, 414, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126134', 4126134, '342.366699', '-1.510742', '208.392303', 344, 0, 0, 0, 1, 6, 0, 0, 413, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126135', 4126135, '363.240997', '-1.083435', '209.918304', 345, 0, 0, 0, 1, 6, 0, 0, 416, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47506, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126136', 4126136, '352.468109', '-2.426208', '192.339798', 346, 0, 0, 0, 1, 6, 0, 0, 415, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47240, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126137', 4126137, '323.811615', '-2.517761', '78.690804', 344, 0, 0, 0, 1, 6, 0, 0, 413, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126138', 4126138, '334.004608', '-2.517761', '104.631104', 345, 0, 0, 0, 1, 6, 0, 0, 416, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126139', 4126139, '301.655487', '-2.548279', '92.088127', 346, 0, 0, 0, 1, 6, 0, 0, 415, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46424, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126140', 4126140, '299.427704', '-2.548279', '95.109383', 343, 0, 0, 0, 1, 6, 0, 0, 414, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126141', 4126141, '595.239075', '-2.517761', '216.113495', 343, 0, 0, 0, 1, 6, 0, 0, 414, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126142', 4126142, '590.905579', '-1.602234', '208.758698', 345, 0, 0, 0, 1, 6, 0, 0, 416, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45602, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126143', 4126143, '571.892822', '-2.517761', '189.532196', 344, 0, 0, 0, 1, 6, 0, 0, 413, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45324, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126144', 4126144, '614.526489', '-2.548279', '199.420197', 346, 0, 0, 0, 1, 6, 0, 0, 415, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45064, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126145', 4126145, '377.982513', '3.082690', '-10.971560', 344, 0, 0, 0, 1, 6, 0, 0, 413, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126146', 4126146, '358.682709', '1.620175', '-3.517888', 345, 0, 0, 0, 1, 6, 0, 0, 416, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126147', 4126147, '356.030396', '0.471913', '-0.493977', 346, 0, 0, 0, 1, 6, 0, 0, 415, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44248, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126148', 4126148, '321.975311', '-2.309778', '2.777854', 343, 0, 0, 0, 1, 6, 0, 0, 414, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126149', 4126149, '369.527588', '23.636169', '-126.329498', 328, 0, 0, 0, 1, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43656, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(139, 's1f5', 'bnpc4126150', 4126150, '365.261505', '24.531950', '-141.892105', 329, 0, 0, 0, 0, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43390, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(139, 's1f5', 'bnpc4126151', 4126151, '376.211090', '23.514099', '-136.919296', 330, 0, 0, 0, 1, 6, 0, 0, 376, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43166, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(139, 's1f5', 'bnpc4126152', 4126152, '262.362488', '26.421909', '-92.842506', 329, 0, 0, 0, 0, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42846, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(139, 's1f5', 'bnpc4126153', 4126153, '259.484711', '26.393141', '-94.860497', 330, 0, 0, 0, 0, 6, 0, 0, 376, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42622, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(139, 's1f5', 'bnpc4126154', 4126154, '289.894501', '21.974110', '-95.414726', 328, 0, 0, 0, 1, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42296, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(139, 's1f5', 'bnpc4126155', 4126155, '342.356110', '27.484810', '-150.423996', 328, 0, 0, 0, 1, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42024, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(139, 's1f5', 'bnpc4126156', 4126156, '336.954010', '12.465180', '-69.307114', 329, 0, 0, 0, 1, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41758, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(139, 's1f5', 'bnpc4126157', 4126157, '263.538513', '33.493530', '-145.616898', 330, 0, 0, 0, 1, 6, 0, 0, 376, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41534, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(139, 's1f5', 'bnpc4126201', 4126201, '687.981384', '-0.741994', '125.134102', 345, 0, 0, 0, 1, 6, 0, 0, 416, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39346, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126202', 4126202, '665.960205', '-1.478390', '135.026901', 343, 0, 0, 0, 1, 6, 0, 0, 414, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39062, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126203', 4126203, '704.842712', '-0.435132', '136.984604', 346, 0, 0, 0, 1, 6, 0, 0, 415, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126204', 4126204, '700.169128', '-0.449296', '142.053299', 344, 0, 0, 0, 1, 6, 0, 0, 413, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38524, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126250', 4126250, '663.416870', '-3.100000', '163.420700', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126251', 4126251, '601.270325', '-3.100000', '130.947296', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38010, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126253', 4126253, '620.669922', '-3.051413', '181.877808', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37738, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126254', 4126254, '541.538879', '-3.100000', '155.849396', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37466, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126256', 4126256, '538.999573', '-3.100000', '152.828400', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37194, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126259', 4126259, '390.150787', '-3.100000', '175.607697', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36922, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126266', 4126266, '359.669403', '-3.100003', '142.000702', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36650, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126267', 4126267, '359.969391', '-3.100016', '53.416809', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36378, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126268', 4126268, '325.831085', '-3.128174', '90.616592', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36106, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126270', 4126270, '250.098404', '-3.100526', '79.563713', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35834, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126271', 4126271, '302.732788', '-3.100012', '124.098297', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35562, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126273', 4126273, '273.024994', '-3.100202', '221.399399', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 33, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35290, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126274', 4126274, '249.098404', '-3.100000', '249.991501', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 33, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35018, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126275', 4126275, '271.496887', '-3.100202', '223.957397', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 33, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126277', 4126277, '246.158798', '-3.100526', '39.638111', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126278', 4126278, '246.458801', '-3.100526', '81.666367', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4126279', 4126279, '308.674408', '-3.100016', '18.911890', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4621610', 4621610, '488.661896', '8.812365', '96.352119', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 14176, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(139, 's1f5', 'bnpc4621612', 4621612, '-355.266296', '10.754760', '92.445412', 2771, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 13910, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926308', 3926308, '376.795502', '84.142036', '107.708504', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154812, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926338', 3926338, '375.147491', '84.022469', '106.274200', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154540, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926351', 3926351, '405.431488', '88.082703', '99.945763', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154268, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926354', 3926354, '409.251190', '88.844963', '97.093102', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153996, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926358', 3926358, '378.901215', '84.631958', '104.412598', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153724, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926365', 3926365, '407.170990', '88.157288', '101.532700', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153452, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926371', 3926371, '392.339203', '86.636040', '181.099197', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153180, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926372', 3926372, '396.068207', '86.811653', '179.238007', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152908, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926373', 3926373, '393.988495', '86.897270', '182.527893', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152636, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926381', 3926381, '411.703613', '88.297813', '162.003098', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152364, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926382', 3926382, '410.055603', '88.039360', '160.599197', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152092, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926386', 3926386, '394.559601', '85.026733', '153.758499', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151820, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926391', 3926391, '410.144012', '88.683350', '189.622894', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151548, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926417', 3926417, '417.375885', '87.742783', '131.569901', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926439', 3926439, '345.812805', '76.219322', '212.725998', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926440', 3926440, '344.548309', '75.438789', '207.299393', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926441', 3926441, '348.012512', '76.039337', '211.108795', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926464', 3926464, '356.043793', '74.743179', '151.343094', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926465', 3926465, '352.759186', '74.743149', '149.888596', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926467', 3926467, '367.410095', '80.423607', '133.246597', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926481', 3926481, '353.852814', '80.577820', '117.643204', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926484', 3926484, '351.360199', '79.902428', '120.108704', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926487', 3926487, '355.985199', '80.082771', '121.892502', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926490', 3926490, '373.090698', '84.220062', '99.076653', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926522', 3926522, '406.246887', '86.759048', '111.752296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926526', 3926526, '325.732788', '66.676826', '171.598495', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926537', 3926537, '328.927612', '68.512451', '191.103607', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926539', 3926539, '326.017792', '67.722847', '188.876999', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926541', 3926541, '342.366608', '72.409378', '178.265305', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926543', 3926543, '340.851105', '72.117889', '182.389893', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926545', 3926545, '339.368805', '71.684380', '180.432800', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926547', 3926547, '329.747711', '68.403687', '149.117706', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926548', 3926548, '327.065491', '67.092491', '170.001404', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926552', 3926552, '319.223511', '67.064529', '203.825699', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926557', 3926557, '307.153687', '65.648338', '183.776306', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926564', 3926564, '315.245087', '65.419243', '134.686005', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926565', 3926565, '313.912415', '65.218117', '136.283096', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926572', 3926572, '310.648285', '65.000732', '131.124893', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926578', 3926578, '301.380890', '64.171013', '142.769608', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926601', 3926601, '261.503296', '53.867599', '124.334000', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926644', 3926644, '295.185699', '60.044201', '169.695496', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926653', 3926653, '293.079987', '59.372799', '172.716797', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132792, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926658', 3926658, '296.070709', '60.135750', '174.090103', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133064, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926660', 3926660, '257.465393', '54.488819', '176.080399', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134152, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926665', 3926665, '279.163788', '55.806110', '134.904999', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133336, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926667', 3926667, '277.598999', '55.429420', '137.030197', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131976, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926670', 3926670, '269.266907', '56.155140', '106.412498', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132520, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926677', 3926677, '260.700409', '54.871441', '108.842598', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132248, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926683', 3926683, '261.666290', '55.104469', '106.238503', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134696, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926716', 3926716, '257.191193', '55.945511', '220.022095', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926717', 3926717, '258.076202', '55.964081', '224.416702', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926718', 3926718, '255.085403', '55.855000', '223.043396', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134424, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926733', 3926733, '243.941101', '55.670811', '235.884598', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133608, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926750', 3926750, '258.564087', '54.697350', '178.949097', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133880, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926769', 3926769, '413.944397', '89.309250', '158.034897', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148018, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926800', 3926800, '407.416199', '87.761620', '175.019302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147746, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926801', 3926801, '406.609985', '87.629570', '176.598602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147474, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926804', 3926804, '392.991699', '87.757637', '191.946198', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147202, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926805', 3926805, '387.339111', '84.919083', '134.093994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146930, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926808', 3926808, '354.084900', '81.902718', '100.424797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146658, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926810', 3926810, '422.356903', '89.050278', '114.571297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146386, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926812', 3926812, '421.045013', '88.772667', '115.796600', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146114, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926815', 3926815, '403.283386', '86.085800', '113.897499', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145842, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926821', 3926821, '370.507996', '82.400093', '117.661697', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145570, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926825', 3926825, '367.792389', '81.913681', '118.807602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926829', 3926829, '360.534485', '74.935432', '148.181396', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145026, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926837', 3926837, '378.317413', '79.842934', '162.415802', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144754, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926847', 3926847, '376.053986', '78.965889', '164.143707', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926848', 3926848, '369.552399', '77.052002', '192.962997', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144210, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926854', 3926854, '346.371490', '75.720573', '208.895203', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143938, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926858', 3926858, '363.167694', '77.767464', '219.355392', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143666, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926860', 3926860, '371.780212', '77.339363', '194.397400', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926868', 3926868, '369.826996', '77.102577', '196.960907', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143116, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3926883', 3926883, '344.452301', '72.995819', '181.059906', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926890', 3926890, '328.520813', '67.640129', '172.850403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926891', 3926891, '311.090302', '65.890671', '189.672195', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926896', 3926896, '309.819885', '64.657661', '145.602493', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926898', 3926898, '328.420197', '67.645653', '147.350800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141762, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926899', 3926899, '317.188690', '65.970573', '128.639603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141490, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926902', 3926902, '318.570007', '65.981651', '129.865601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141218, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926912', 3926912, '275.386810', '55.162628', '134.854202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140946, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926915', 3926915, '264.207703', '55.231709', '109.226501', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140674, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926917', 3926917, '260.486694', '54.760460', '176.782303', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926928', 3926928, '254.790497', '55.815201', '226.529297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926929', 3926929, '242.801407', '55.684689', '237.647995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3926930', 3926930, '241.351593', '55.604931', '235.930405', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139586, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927149', 3927149, '27.696630', '50.949940', '203.695496', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130588, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927150', 3927150, '15.640450', '53.696449', '252.796204', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927151', 3927151, '-61.356571', '57.144989', '351.064209', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927152', 3927152, '173.737106', '54.352638', '226.520096', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130316, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927153', 3927153, '183.533401', '54.215019', '225.513000', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130044, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927154', 3927154, '99.898514', '49.255638', '188.131607', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129772, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927156', 3927156, '128.718903', '50.518780', '195.651794', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129500, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927158', 3927158, '115.929298', '48.682110', '176.508408', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129228, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927162', 3927162, '108.506699', '47.551449', '175.644897', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128956, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927163', 3927163, '32.919010', '50.990910', '198.741592', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128684, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927164', 3927164, '31.915621', '47.200191', '163.456696', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128412, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927165', 3927165, '65.425613', '51.619080', '219.897705', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128140, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927166', 3927166, '70.552643', '50.994259', '212.756500', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127868, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927168', 3927168, '60.756340', '51.112720', '213.427902', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127596, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927169', 3927169, '1.910973', '44.523701', '152.350204', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127324, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927170', 3927170, '6.149339', '47.714909', '180.407394', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127052, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927171', 3927171, '175.777206', '50.666649', '65.453201', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126780, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927172', 3927172, '170.246994', '50.547649', '69.196983', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126508, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927174', 3927174, '240.923996', '51.465309', '71.654427', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126236, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927175', 3927175, '249.684906', '51.468151', '78.309212', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125964, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927176', 3927176, '255.227203', '51.199020', '67.745193', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125692, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927178', 3927178, '253.462494', '51.509102', '19.847630', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125420, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927179', 3927179, '201.886398', '51.465870', '22.835030', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125148, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927182', 3927182, '111.507797', '59.949421', '283.252502', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927185', 3927185, '98.313828', '59.311771', '302.754211', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124610, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927186', 3927186, '110.092697', '60.098831', '287.907593', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124338, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927187', 3927187, '128.731201', '60.436340', '298.911407', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124066, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927188', 3927188, '83.256920', '55.503361', '283.185394', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123794, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927189', 3927189, '91.296028', '55.644341', '266.384308', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123522, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927190', 3927190, '82.101891', '55.164581', '275.573212', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123250, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927191', 3927191, '115.385597', '59.492580', '287.027496', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122978, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927192', 3927192, '178.888199', '53.984070', '219.121597', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927194', 3927194, '131.716507', '57.952309', '278.151306', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122434, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927197', 3927197, '-22.751249', '56.290482', '304.371613', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927200', 3927200, '-18.722870', '56.046341', '317.952209', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927201', 3927201, '-14.837500', '56.125702', '314.598206', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927203', 3927203, '8.417153', '55.567989', '320.395599', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927204', 3927204, '20.042080', '57.618370', '350.774109', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927205', 3927205, '26.145691', '57.755730', '356.084290', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927206', 3927206, '22.476490', '58.182598', '359.426208', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927209', 3927209, '49.869179', '57.280979', '352.553101', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120264, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927211', 3927211, '21.927170', '54.917171', '311.085602', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119992, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927213', 3927213, '25.229980', '54.764481', '306.841705', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119720, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927218', 3927218, '-21.114670', '53.540970', '264.998993', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119448, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927220', 3927220, '-5.313622', '54.065811', '256.266205', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119176, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927221', 3927221, '-23.334700', '53.561840', '260.473511', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118904, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927222', 3927222, '5.204782', '54.084610', '236.687195', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118632, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927224', 3927224, '8.561768', '54.060150', '238.457199', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118360, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927226', 3927226, '-8.821225', '50.881729', '201.391602', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927229', 3927229, '-6.608897', '50.901840', '203.446304', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927230', 3927230, '-18.636290', '51.201260', '221.737701', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927231', 3927231, '-35.276581', '49.465691', '214.633698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927236', 3927236, '-11.411140', '50.721111', '205.313904', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927239', 3927239, '-38.801102', '49.907009', '218.520004', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927240', 3927240, '6.279222', '50.975891', '212.108902', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927241', 3927241, '-35.700180', '46.975208', '193.506195', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927246', 3927246, '-141.250000', '50.637089', '227.672501', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97168, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(140, 'w1f1', 'bnpc3927250', 3927250, '-140.879105', '50.598660', '225.798996', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97440, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(140, 'w1f1', 'bnpc3927252', 3927252, '-133.580704', '50.071732', '219.991806', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96624, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(140, 'w1f1', 'bnpc3927255', 3927255, '-132.305801', '49.998920', '219.510193', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96896, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(140, 'w1f1', 'bnpc3927256', 3927256, '-130.444595', '50.881111', '227.569397', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98256, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(140, 'w1f1', 'bnpc3927333', 3927333, '-125.582298', '49.131699', '207.139694', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98528, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(140, 'w1f1', 'bnpc3927334', 3927334, '-153.431595', '49.478130', '221.025101', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97712, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(140, 'w1f1', 'bnpc3927339', 3927339, '-121.896698', '49.490898', '212.546097', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97984, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(140, 'w1f1', 'bnpc3927343', 3927343, '-45.193470', '62.185181', '363.152100', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115912, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927345', 3927345, '-79.881020', '55.100281', '361.379395', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115640, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927346', 3927346, '-83.391731', '54.977058', '365.606995', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115368, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927347', 3927347, '-54.476139', '65.540337', '392.423004', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115096, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927349', 3927349, '-51.241718', '65.802643', '390.513214', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114824, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927352', 3927352, '-1.297064', '68.802879', '377.553894', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114552, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927353', 3927353, '2.885915', '68.536720', '372.786896', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114280, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927354', 3927354, '-109.941299', '48.966148', '357.015289', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114008, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927356', 3927356, '-125.981003', '51.453751', '311.388885', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113736, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927357', 3927357, '-130.879105', '51.717690', '309.097412', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113464, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927358', 3927358, '-131.425293', '51.394489', '312.798096', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113192, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927359', 3927359, '-118.158401', '53.802921', '271.080597', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112920, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927360', 3927360, '-115.932800', '53.461861', '267.407501', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112648, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927361', 3927361, '-95.500458', '52.359612', '245.109894', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112376, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927364', 3927364, '-138.997604', '45.849251', '391.546814', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112104, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927366', 3927366, '-131.347107', '47.246719', '398.411713', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111832, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927367', 3927367, '-141.612305', '45.939159', '395.010193', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111560, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927368', 3927368, '-175.499496', '39.137119', '393.656799', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111288, 6, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(140, 'w1f1', 'bnpc3927370', 3927370, '-156.301407', '40.866211', '345.757813', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111016, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927371', 3927371, '-162.614700', '39.951931', '342.568695', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110744, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927373', 3927373, '-157.533707', '40.302212', '350.198212', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110472, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927375', 3927375, '28.610620', '55.466499', '328.511414', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927379', 3927379, '37.804600', '58.140781', '363.465912', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927382', 3927382, '32.272758', '55.471779', '329.481689', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927384', 3927384, '6.784028', '54.128811', '253.378204', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927387', 3927387, '-20.690559', '53.685650', '251.224396', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927388', 3927388, '45.252361', '48.095360', '180.655197', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927394', 3927394, '69.706589', '56.137440', '318.697693', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927398', 3927398, '104.150002', '56.064339', '263.215607', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927403', 3927403, '156.664307', '54.703541', '236.652100', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927404', 3927404, '44.327412', '52.658840', '244.800400', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927408', 3927408, '-26.490999', '44.862301', '177.075394', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927413', 3927413, '152.993607', '50.116879', '72.775887', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927414', 3927414, '220.945801', '50.242329', '4.633916', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927417', 3927417, '219.309296', '49.916939', '6.135899', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927424', 3927424, '-14.541890', '67.307503', '362.722107', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927425', 3927425, '-65.254753', '64.638290', '395.066498', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927431', 3927431, '-117.631798', '47.959061', '380.300507', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927432', 3927432, '-172.127304', '40.469398', '398.069092', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927433', 3927433, '-189.330597', '36.909599', '341.340210', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927435', 3927435, '-140.326401', '45.201859', '337.794006', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927436', 3927436, '-110.657700', '52.097160', '290.219696', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927437', 3927437, '-145.151993', '56.686409', '288.573792', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927730', 3927730, '120.638901', '17.207850', '96.590080', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104234, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927734', 3927734, '123.778503', '17.206751', '88.372543', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103962, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927735', 3927735, '128.407593', '16.559820', '98.111130', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103690, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927736', 3927736, '78.465424', '21.109140', '92.377060', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103418, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927737', 3927737, '100.497498', '16.583630', '126.907097', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103146, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927739', 3927739, '-25.650459', '22.079760', '105.851799', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102874, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927742', 3927742, '-20.340321', '21.438881', '108.873100', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102602, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927745', 3927745, '78.228539', '22.345881', '63.241020', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102330, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927746', 3927746, '86.209900', '22.246161', '56.213009', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102058, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927748', 3927748, '127.763702', '25.986071', '49.240810', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101786, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927750', 3927750, '70.167282', '16.789490', '139.201706', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927760', 3927760, '95.818649', '15.165110', '168.324600', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927771', 3927771, '96.919411', '15.051520', '166.152405', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927776', 3927776, '126.695602', '15.793040', '128.007904', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100692, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927784', 3927784, '58.284618', '22.640039', '59.899170', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100420, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927789', 3927789, '14.317140', '20.384331', '98.519272', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100148, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927870', 3927870, '123.073700', '18.194111', '18.950350', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99882, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927874', 3927874, '164.476593', '18.193741', '-3.313263', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99610, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927875', 3927875, '161.316605', '18.193520', '6.161218', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99338, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927880', 3927880, '179.117905', '18.193710', '3.609651', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99066, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3927883', 3927883, '103.653801', '19.374020', '93.697792', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98788, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927890', 3927890, '122.968102', '56.939259', '-36.773190', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95074, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927910', 3927910, '123.268097', '55.511478', '-56.716091', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94802, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927911', 3927911, '129.320206', '55.924271', '-51.987530', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927912', 3927912, '154.660400', '55.357391', '-41.330311', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94258, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927919', 3927919, '189.631897', '50.414280', '-25.954390', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93986, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927923', 3927923, '183.639099', '52.017891', '-84.284233', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93714, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927925', 3927925, '153.890793', '52.284729', '-77.195427', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927934', 3927934, '191.650803', '52.446129', '-77.491463', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93170, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3927952', 3927952, '199.298004', '52.109509', '-110.399101', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92898, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928005', 3928005, '249.801102', '63.548111', '-129.309692', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92626, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928007', 3928007, '233.766098', '63.274509', '-115.512901', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92354, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928013', 3928013, '75.352249', '58.717110', '35.270901', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92088, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928021', 3928021, '86.804192', '58.856110', '31.969290', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91816, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928022', 3928022, '84.852730', '58.771778', '28.421551', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91544, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928152', 3928152, '58.122269', '59.502029', '1.331460', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928154', 3928154, '99.899971', '53.697948', '21.844801', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928157', 3928157, '28.599730', '59.945721', '27.529560', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928160', 3928160, '25.558041', '59.878441', '30.178419', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928161', 3928161, '14.973360', '62.347179', '18.278700', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928165', 3928165, '6.374675', '59.338470', '42.109829', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928314', 3928314, '319.607910', '63.456242', '-187.854004', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928315', 3928315, '318.191406', '63.387531', '-186.084000', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928317', 3928317, '311.617798', '62.671181', '-255.173492', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928319', 3928319, '306.148010', '62.678329', '-255.381195', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928320', 3928320, '310.641205', '62.731220', '-257.553894', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928321', 3928321, '288.386597', '62.264820', '-212.191498', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928323', 3928323, '281.432892', '62.276360', '-175.724792', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928324', 3928324, '294.345215', '62.536160', '-229.177994', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87700, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928326', 3928326, '324.076385', '63.986629', '-248.880295', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87428, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928327', 3928327, '294.358307', '62.940811', '-234.107498', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87156, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928328', 3928328, '298.334686', '62.391232', '-190.659805', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86884, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928329', 3928329, '288.392303', '62.534901', '-229.239197', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86612, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928331', 3928331, '298.725800', '62.141201', '-195.515305', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86340, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928332', 3928332, '265.782898', '63.307018', '-219.574600', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86068, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928335', 3928335, '316.656586', '63.109501', '-200.695007', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85796, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928360', 3928360, '-105.641998', '14.974850', '-248.369598', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928364', 3928364, '-110.496902', '14.974860', '-245.931396', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928366', 3928366, '-96.993607', '14.974790', '-263.062500', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928370', 3928370, '-134.325607', '14.974520', '-268.556091', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928372', 3928372, '-137.674500', '14.974520', '-281.872009', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84484, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928373', 3928373, '-140.064697', '14.974790', '-279.290314', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84212, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928374', 3928374, '-183.464493', '14.974900', '-240.699707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83940, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928376', 3928376, '-180.748398', '14.974890', '-244.758606', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83668, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928378', 3928378, '-186.089096', '14.974890', '-243.232697', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83396, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928379', 3928379, '-147.631104', '14.969050', '-274.158905', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83124, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928383', 3928383, '-224.475494', '14.969050', '-348.714386', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928386', 3928386, '-209.268402', '14.974940', '-344.686401', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928387', 3928387, '-206.509598', '14.974940', '-340.343994', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928388', 3928388, '-218.735199', '14.974420', '-379.859985', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928389', 3928389, '-223.490601', '14.974420', '-382.159912', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928391', 3928391, '-258.752411', '14.974870', '-325.427490', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928392', 3928392, '-264.535492', '14.974880', '-327.510101', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928394', 3928394, '-281.808807', '14.974920', '-208.237701', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928519', 3928519, '-253.182007', '14.974930', '-267.783295', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928520', 3928520, '-255.348694', '14.974930', '-265.372406', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928523', 3928523, '-283.110809', '14.974940', '-291.602112', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928524', 3928524, '-282.531006', '14.974940', '-294.806488', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928525', 3928525, '-286.528809', '14.974940', '-293.707794', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928527', 3928527, '-298.754211', '14.974940', '-221.860397', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928528', 3928528, '-295.336212', '14.974940', '-225.644699', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928531', 3928531, '-217.611801', '14.974770', '-304.205109', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928534', 3928534, '-250.701904', '14.974930', '-243.696503', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928783', 3928783, '-182.680801', '14.974910', '-276.838287', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78228, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928784', 3928784, '-170.103302', '14.974860', '-253.832504', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77956, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928788', 3928788, '-212.801102', '14.974940', '-333.462799', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928795', 3928795, '-266.258698', '15.546460', '-234.426102', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77370, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928796', 3928796, '-219.789307', '14.974930', '-267.238892', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77098, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928797', 3928797, '-285.191498', '14.974940', '-268.444397', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76826, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928798', 3928798, '-203.762299', '14.974910', '-250.822205', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76554, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928799', 3928799, '-278.737915', '14.974940', '-262.906189', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76282, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928800', 3928800, '-277.257599', '14.974940', '-267.571411', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76010, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928801', 3928801, '-256.085907', '14.974930', '-289.433411', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75738, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928802', 3928802, '-224.033401', '14.974930', '-264.018097', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75466, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928803', 3928803, '146.532303', '54.459400', '-51.499241', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928804', 3928804, '102.067497', '53.818520', '-56.137989', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928805', 3928805, '78.182693', '57.105598', '-30.773781', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928806', 3928806, '76.842499', '57.456390', '-29.140619', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928807', 3928807, '86.645050', '57.952759', '6.113357', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928808', 3928808, '22.705441', '61.685020', '19.656160', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928809', 3928809, '10.100620', '59.973881', '35.668980', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928810', 3928810, '166.031296', '50.849098', '-100.283997', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928811', 3928811, '186.388901', '51.621220', '-160.082397', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928812', 3928812, '238.300095', '63.248600', '-122.148499', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928813', 3928813, '184.099701', '52.311790', '-57.823231', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928814', 3928814, '179.929794', '52.482571', '-55.958038', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928815', 3928815, '142.056702', '53.278130', '-130.908096', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928816', 3928816, '268.193207', '63.254810', '-222.082703', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928822', 3928822, '302.263489', '62.065739', '-193.318497', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928825', 3928825, '-123.838997', '14.974520', '-263.543488', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928831', 3928831, '-176.301498', '14.974870', '-250.083099', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928832', 3928832, '-144.984497', '14.974770', '-287.996185', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928833', 3928833, '-185.416595', '14.974910', '-280.625488', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928834', 3928834, '-244.850296', '14.974930', '-244.881104', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928835', 3928835, '-244.690704', '15.599670', '-289.695801', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928836', 3928836, '-287.953003', '14.974940', '-254.367096', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928837', 3928837, '-288.296387', '14.974940', '-221.930298', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928838', 3928838, '-242.570297', '14.974810', '-341.476898', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928839', 3928839, '-294.252502', '14.974850', '-321.210785', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928840', 3928840, '-213.266998', '14.974420', '-364.787292', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928841', 3928841, '-196.042206', '14.974940', '-319.922791', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928894', 3928894, '-427.363312', '23.320280', '-482.444489', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67692, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928895', 3928895, '-414.236694', '24.246580', '-480.094604', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67420, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928896', 3928896, '-399.069214', '24.662140', '-486.445496', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67148, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928897', 3928897, '-426.661407', '23.254721', '-480.735504', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66876, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928898', 3928898, '-385.109589', '24.366320', '-508.717590', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66604, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928899', 3928899, '-383.622498', '24.283310', '-510.090912', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66332, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928900', 3928900, '-397.867401', '24.621420', '-483.869110', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66060, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928902', 3928902, '-395.742706', '24.800859', '-486.720215', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65788, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928905', 3928905, '-372.182800', '14.915100', '-682.187012', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65438, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928915', 3928915, '-343.109711', '14.951240', '-708.646729', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65166, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928916', 3928916, '-336.488098', '15.011050', '-702.973022', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64894, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928917', 3928917, '-342.475098', '14.886180', '-699.100403', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64622, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928918', 3928918, '-346.725800', '15.000050', '-648.932983', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64350, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928919', 3928919, '-360.611603', '15.143860', '-728.342285', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64078, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928920', 3928920, '-369.109985', '17.086229', '-625.858582', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63806, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928921', 3928921, '-368.551208', '14.932670', '-677.304016', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63534, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928922', 3928922, '-289.976898', '15.036210', '-766.856018', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928923', 3928923, '-329.499603', '13.228890', '-734.741028', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63074, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928924', 3928924, '-308.522186', '13.199010', '-741.054382', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62802, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928926', 3928926, '-330.769806', '14.999570', '-781.734985', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928927', 3928927, '-282.568512', '14.996440', '-714.049622', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928928', 3928928, '-288.031189', '15.033810', '-704.314270', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928929', 3928929, '-340.138885', '14.999570', '-765.682495', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928930', 3928930, '-375.273102', '24.057680', '-530.949707', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61364, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928931', 3928931, '-376.594513', '24.104771', '-528.967224', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61092, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928932', 3928932, '-385.780304', '23.495701', '-548.185181', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60820, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928933', 3928933, '-388.991913', '23.634899', '-551.127014', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60548, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928934', 3928934, '-380.102814', '23.848009', '-554.942871', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60276, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928935', 3928935, '-383.823486', '24.014250', '-580.209229', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60004, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928936', 3928936, '-384.645203', '22.916321', '-600.375427', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928937', 3928937, '-382.814087', '22.623171', '-601.962280', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc3928938', 3928938, '-160.448700', '15.121640', '-740.138916', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928939', 3928939, '-163.418106', '15.126450', '-733.144714', 109, 0, 0, 0, 1, 6, 0, 0, 310, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59006, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928940', 3928940, '-154.855392', '15.126450', '-735.291016', 111, 0, 0, 0, 1, 6, 0, 0, 312, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928941', 3928941, '-184.969193', '15.126200', '-748.799011', 111, 0, 0, 0, 1, 6, 0, 0, 312, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928942', 3928942, '-245.304596', '14.639280', '-736.399902', 109, 0, 0, 0, 1, 6, 0, 0, 310, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58190, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928943', 3928943, '-208.907501', '15.126340', '-737.954224', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928944', 3928944, '-177.706696', '15.126430', '-724.218872', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928945', 3928945, '129.798294', '53.983780', '241.581604', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc3928946', 3928946, '358.728088', '75.113953', '188.477402', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4057505', 4057505, '425.836700', '93.949097', '147.345596', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.500000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23758, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(140, 'w1f1', 'bnpc4057530', 4057530, '246.828796', '52.038040', '143.148804', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.800000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23492, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(140, 'w1f1', 'bnpc4057532', 4057532, '209.687393', '52.005539', '110.727303', 797, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23226, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(140, 'w1f1', 'bnpc4057541', 4057541, '192.848099', '52.038040', '162.149994', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22942, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(140, 'w1f1', 'bnpc4057553', 4057553, '108.028297', '49.844238', '-189.682297', 798, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22688, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(140, 'w1f1', 'bnpc4057563', 4057563, '-82.688713', '15.467950', '-260.648010', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(140, 'w1f1', 'bnpc4057572', 4057572, '-436.003998', '23.000170', '-484.805511', 791, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22150, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(140, 'w1f1', 'bnpc4190759', 4190759, '-345.540588', '14.999600', '-775.448181', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57362, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(140, 'w1f1', 'bnpc4267191', 4267191, '-707.860779', '67.740463', '-822.422119', 1439, 0, 0, 0, 0, 6, 0, 0, 2160, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57014, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4267197', 4267197, '-665.501282', '62.452560', '-807.101318', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56748, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4267200', 4267200, '-665.515930', '62.330540', '-804.663086', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56476, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4267201', 4267201, '-678.426575', '63.899670', '-816.868713', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56204, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4267202', 4267202, '-697.547180', '65.602493', '-808.171204', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55932, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4267203', 4267203, '-691.117920', '65.001953', '-800.783875', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55660, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4267204', 4267204, '-707.367920', '67.125900', '-815.833374', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55388, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4267205', 4267205, '-691.542114', '65.307541', '-815.101807', 434, 0, 0, 0, 0, 6, 0, 0, 2160, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4296870', 4296870, '242.172607', '52.038120', '112.691498', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20750, 8, 0, 0, 4296864, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4296871', 4296871, '246.709503', '52.038120', '124.038902', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20478, 8, 0, 0, 4296863, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4296872', 4296872, '237.477707', '52.017941', '108.608101', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20206, 8, 0, 0, 4296858, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4296873', 4296873, '244.254303', '52.038120', '162.449799', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19934, 8, 0, 0, 4296867, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4296874', 4296874, '244.299103', '52.038120', '166.290298', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19662, 8, 0, 0, 4296868, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4308066', 4308066, '-421.159485', '44.462021', '-712.226013', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54672, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(140, 'w1f1', 'bnpc4308069', 4308069, '-514.378784', '51.624359', '-759.622498', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54400, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(140, 'w1f1', 'bnpc4308070', 4308070, '-599.843384', '57.051182', '-784.518921', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54128, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(140, 'w1f1', 'bnpc4308071', 4308071, '-656.681274', '62.116219', '-804.503601', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53856, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(140, 'w1f1', 'bnpc4308072', 4308072, '-492.048187', '50.155430', '-704.991577', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53590, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(140, 'w1f1', 'bnpc4308073', 4308073, '-517.815491', '50.450741', '-713.017395', 63, 0, 0, 0, 0, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53324, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(140, 'w1f1', 'bnpc4308074', 4308074, '-456.002014', '51.014610', '-752.579285', 55, 0, 0, 0, 0, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53058, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(140, 'w1f1', 'bnpc4308075', 4308075, '-495.700897', '50.855309', '-742.115417', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52792, 1, 0, 0, 0, 0, 30096, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(140, 'w1f1', 'bnpc4308082', 4308082, '-441.168610', '50.899448', '-705.323914', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52514, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(140, 'w1f1', 'bnpc4308083', 4308083, '-518.314270', '50.452862', '-714.412109', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52224, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(140, 'w1f1', 'bnpc4308084', 4308084, '-479.211487', '51.372540', '-761.453186', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51964, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(140, 'w1f1', 'bnpc4308085', 4308085, '-402.046509', '49.868610', '-739.848206', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51704, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(140, 'w1f1', 'bnpc4308086', 4308086, '-454.328613', '50.848831', '-752.713074', 64, 0, 0, 0, 0, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51414, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(140, 'w1f1', 'bnpc4308091', 4308091, '-536.909607', '51.647678', '-772.339600', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51154, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(140, 'w1f1', 'bnpc4308092', 4308092, '-566.559387', '53.197552', '-772.416382', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50870, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(140, 'w1f1', 'bnpc4308093', 4308093, '-534.190186', '55.472980', '-738.915771', 62, 0, 0, 0, 1, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50592, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(140, 'w1f1', 'bnpc4308094', 4308094, '-570.383728', '53.322189', '-740.588013', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(140, 'w1f1', 'bnpc4308095', 4308095, '-576.705811', '54.865730', '-790.850830', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50060, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(140, 'w1f1', 'bnpc4308096', 4308096, '-598.254211', '63.233582', '-755.445496', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49788, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(140, 'w1f1', 'bnpc4308097', 4308097, '-601.317322', '62.751640', '-757.922485', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49510, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(140, 'w1f1', 'bnpc4308098', 4308098, '-621.487915', '61.777660', '-742.445374', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49256, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(140, 'w1f1', 'bnpc4308099', 4308099, '-621.786072', '58.863022', '-795.647095', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48978, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(140, 'w1f1', 'bnpc4308100', 4308100, '-646.074890', '61.267559', '-800.385315', 62, 0, 0, 0, 1, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48688, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(140, 'w1f1', 'bnpc4308102', 4308102, '-555.229980', '53.299679', '-753.444702', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4308104', 4308104, '-410.261810', '51.000069', '-758.953003', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48174, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4308105', 4308105, '-468.451904', '50.148300', '-723.755676', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4308109', 4308109, '-626.947510', '60.044189', '-813.534790', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47630, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4308112', 4308112, '-635.044800', '58.894249', '-777.102417', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4308164', 4308164, '-544.952698', '55.549671', '-803.447388', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47086, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(140, 'w1f1', 'bnpc4510228', 4510228, '320.279907', '67.275337', '234.176498', 793, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21884, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(140, 'w1f1', 'bnpc4621821', 4621821, '-91.708687', '15.670890', '217.180496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24120, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc1368411', 1368411, '-66.155998', '-12.582840', '-8.814363', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc1368412', 1368412, '-64.537338', '-12.499180', '-8.712757', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc1368413', 1368413, '-62.951370', '-12.426580', '-8.677147', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc1368414', 1368414, '-61.258369', '-12.364150', '-8.589471', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc1368416', 1368416, '-66.693230', '-12.961350', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212726, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc1368417', 1368417, '-64.495934', '-12.860610', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc1368418', 1368418, '-62.481739', '-12.772990', '-13.472360', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc1368419', 1368419, '-60.162369', '-12.662670', '-13.441840', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc1368420', 1368420, '-69.467598', '-13.149620', '-18.035919', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211644, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc1368440', 1368440, '-65.325943', '-13.142030', '-18.046921', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211372, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc1368441', 1368441, '-61.416431', '-13.052980', '-18.065041', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211100, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc1368442', 1368442, '-57.492748', '-12.665620', '-17.741350', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210828, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746473', 3746473, '-134.012207', '9.916103', '267.132690', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208458, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746474', 3746474, '-139.248093', '11.343600', '270.767487', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208186, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746475', 3746475, '-116.714996', '8.743372', '266.243988', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207914, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746477', 3746477, '-123.143700', '11.980280', '281.311798', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207642, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746478', 3746478, '-128.526794', '6.043580', '250.778503', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207370, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746481', 3746481, '-87.065170', '8.131585', '270.853210', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207098, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746484', 3746484, '-77.385406', '9.277164', '278.146301', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206826, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746485', 3746485, '-79.850502', '9.815605', '280.807892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206554, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746486', 3746486, '-57.801540', '7.714478', '280.245697', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206282, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746487', 3746487, '-32.103970', '8.045358', '306.695404', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206010, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746488', 3746488, '-33.263660', '8.805240', '310.174408', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205738, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746489', 3746489, '-23.206301', '7.924604', '316.282593', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205466, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746490', 3746490, '-1.823452', '12.616180', '355.344391', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205194, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746491', 3746491, '1.058939', '11.460450', '352.323212', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204922, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746492', 3746492, '-1.840275', '11.813140', '350.644714', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204650, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746493', 3746493, '-56.592079', '0.108709', '220.398895', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204378, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746494', 3746494, '-56.292080', '3.881968', '249.628098', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204106, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746495', 3746495, '-31.334530', '2.359202', '278.398193', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203834, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746496', 3746496, '-104.320801', '1.025299', '207.824005', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203562, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746498', 3746498, '7.768722', '1.031246', '256.953094', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203290, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746499', 3746499, '-123.605797', '2.842937', '210.266296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203018, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746500', 3746500, '30.048519', '10.050760', '356.964386', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202746, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746501', 3746501, '-97.688263', '-3.294564', '184.145203', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202474, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746503', 3746503, '-99.971313', '-3.426347', '180.765198', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202202, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746505', 3746505, '-87.144318', '-1.876907', '198.901306', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201930, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746506', 3746506, '-47.697250', '-4.439452', '201.516296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201658, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746507', 3746507, '-14.522570', '0.676844', '242.620300', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201386, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746508', 3746508, '-11.261070', '0.694751', '245.484695', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201114, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746514', 3746514, '-119.246803', '8.981372', '268.429688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155702, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746519', 3746519, '-132.127899', '6.316744', '252.007797', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155974, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746522', 3746522, '-155.544296', '14.321210', '274.575500', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156246, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746523', 3746523, '-155.193604', '7.549813', '251.117706', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155430, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746524', 3746524, '-92.355728', '5.076609', '248.889801', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154614, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746525', 3746525, '-107.799896', '1.451139', '209.227798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154886, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746526', 3746526, '-114.793701', '4.013075', '226.245499', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155158, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746527', 3746527, '28.597651', '13.168800', '391.636688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157606, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746528', 3746528, '-93.669998', '-2.292831', '193.599503', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157878, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746529', 3746529, '-86.737587', '1.982069', '218.821899', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158150, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746530', 3746530, '-94.103600', '-4.710398', '174.915298', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157334, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746532', 3746532, '-55.083771', '1.032392', '224.458603', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156518, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746533', 3746533, '-52.324100', '-0.635104', '220.185806', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156790, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746534', 3746534, '-52.024101', '-4.438385', '196.025299', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157062, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746535', 3746535, '-23.599480', '-4.862183', '218.164505', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162774, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746536', 3746536, '-2.930916', '14.263170', '364.690308', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165222, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746538', 3746538, '-40.705959', '2.362750', '241.470093', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165494, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746539', 3746539, '-66.280632', '6.869143', '269.246704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165766, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746541', 3746541, '4.373672', '4.711559', '297.562012', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164950, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746542', 3746542, '-63.836632', '11.354730', '293.474915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164134, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746543', 3746543, '-67.036057', '11.719290', '294.869385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164406, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746544', 3746544, '-40.587990', '10.584770', '307.244690', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164678, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746545', 3746545, '-18.006081', '5.176353', '307.655609', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159510, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746547', 3746547, '13.581710', '5.033936', '280.057404', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746557', 3746557, '59.891609', '12.558130', '450.125793', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746560', 3746560, '49.054600', '13.360080', '439.790100', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746579', 3746579, '-107.428101', '5.098667', '239.118896', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746589', 3746589, '15.346860', '15.164520', '392.385712', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200842, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746592', 3746592, '14.522880', '15.407670', '396.017303', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200570, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746594', 3746594, '34.258789', '14.106760', '421.936798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159782, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746595', 3746595, '60.659401', '11.900060', '438.181702', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160054, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746616', 3746616, '55.188671', '13.295150', '508.984802', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159238, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746617', 3746617, '66.524231', '10.880620', '515.488220', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200298, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746618', 3746618, '49.532551', '14.712430', '506.886414', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200026, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746619', 3746619, '50.356541', '14.371650', '503.254791', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199754, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746620', 3746620, '59.248550', '11.443580', '491.395813', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199482, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746621', 3746621, '87.897888', '3.259133', '489.249908', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158422, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746622', 3746622, '84.418831', '4.091218', '486.350708', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158694, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746623', 3746623, '46.372120', '15.609930', '520.347778', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158966, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746624', 3746624, '84.031380', '8.407674', '556.939026', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199210, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746625', 3746625, '89.244087', '6.908536', '552.574890', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198938, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746626', 3746626, '105.598701', '4.370574', '521.843201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198666, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746628', 3746628, '107.891403', '6.906938', '609.728882', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161414, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746629', 3746629, '160.979904', '10.423200', '445.205414', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746630', 3746630, '189.060593', '11.863390', '607.536072', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746688', 3746688, '86.533859', '11.154300', '622.308594', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198394, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746689', 3746689, '77.714149', '12.588650', '626.672729', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198122, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746690', 3746690, '81.986671', '11.825690', '632.593201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197850, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746691', 3746691, '42.256569', '15.522670', '621.038330', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197578, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746692', 3746692, '36.528320', '15.730630', '626.060913', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197306, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746693', 3746693, '33.963001', '15.853820', '622.955627', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197034, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746694', 3746694, '54.517780', '14.477480', '614.387390', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160870, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746695', 3746695, '75.144310', '14.202080', '664.210083', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160598, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746697', 3746697, '71.776787', '14.357050', '666.349792', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196762, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746699', 3746699, '110.074799', '9.705235', '672.023499', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196490, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746700', 3746700, '105.802299', '9.833974', '666.103027', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196218, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746701', 3746701, '114.622002', '9.802178', '661.738892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195946, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746702', 3746702, '102.630096', '9.930755', '678.326416', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160326, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746703', 3746703, '124.601700', '9.267537', '672.118774', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161142, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746704', 3746704, '139.915802', '3.409252', '629.204895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161958, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746706', 3746706, '148.317993', '4.103824', '654.705994', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195674, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746707', 3746707, '140.430801', '4.620288', '650.824585', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195402, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746708', 3746708, '144.703293', '4.162472', '656.745178', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195130, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3746728', 3746728, '105.175301', '7.446661', '611.285278', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161686, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746741', 3746741, '123.709900', '4.546344', '401.381409', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746744', 3746744, '119.896500', '4.229595', '400.430603', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746745', 3746745, '121.385498', '4.562400', '415.457306', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746747', 3746747, '94.951797', '4.409234', '415.757996', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746748', 3746748, '98.573242', '3.713897', '402.903290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746753', 3746753, '105.931702', '3.887046', '438.676788', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746754', 3746754, '103.130402', '3.837232', '441.897888', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746756', 3746756, '101.549301', '2.579426', '385.163391', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746757', 3746757, '126.748802', '2.272390', '326.781708', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746762', 3746762, '128.648804', '2.609246', '322.621399', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746767', 3746767, '115.312401', '0.839199', '310.200592', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746769', 3746769, '60.052872', '2.658700', '301.575806', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746771', 3746771, '66.487648', '2.270967', '295.222290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746772', 3746772, '59.572800', '2.550388', '279.994904', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746773', 3746773, '39.864429', '5.507329', '295.432587', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746775', 3746775, '28.239599', '1.102737', '258.417786', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746782', 3746782, '33.012630', '-0.000074', '236.507797', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746783', 3746783, '30.472219', '1.540232', '261.602997', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746790', 3746790, '40.329552', '0.198320', '191.668503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746791', 3746791, '42.740471', '0.381429', '188.281006', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189696, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746792', 3746792, '21.316620', '-1.942127', '212.041397', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189424, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746795', 3746795, '33.488029', '0.135540', '209.757507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189152, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746800', 3746800, '79.875580', '17.322849', '153.453400', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188880, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746801', 3746801, '86.274673', '14.097900', '174.830002', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188608, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746802', 3746802, '82.595718', '17.371531', '156.113602', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188336, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746803', 3746803, '68.047150', '12.851960', '169.148697', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188064, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746805', 3746805, '145.186905', '14.265870', '303.993011', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187792, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746806', 3746806, '134.595795', '15.951970', '271.548492', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187520, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746807', 3746807, '129.378799', '14.996020', '276.045807', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187248, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746808', 3746808, '102.709000', '6.216220', '218.986298', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186976, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746815', 3746815, '104.478500', '3.524787', '410.177704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162502, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746820', 3746820, '134.782898', '6.790217', '393.331787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162230, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746821', 3746821, '109.756599', '2.337350', '358.451385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163046, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746826', 3746826, '100.612602', '0.927920', '320.347412', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163862, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746828', 3746828, '122.748901', '1.776996', '318.298187', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163590, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746831', 3746831, '90.791931', '1.666962', '266.808197', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163318, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746834', 3746834, '115.643402', '6.086327', '252.986206', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153254, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746835', 3746835, '116.878197', '7.099676', '249.317596', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152982, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746839', 3746839, '134.754898', '15.738220', '277.605591', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152710, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746842', 3746842, '138.416901', '14.910950', '291.298401', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153526, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746843', 3746843, '69.640907', '10.773730', '192.122192', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154342, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746844', 3746844, '80.370789', '14.464900', '168.592697', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154070, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746845', 3746845, '58.563480', '13.422550', '142.645203', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153798, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746846', 3746846, '84.523247', '19.105749', '150.735306', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151350, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746847', 3746847, '44.427238', '1.305627', '214.361099', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151078, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746848', 3746848, '17.726910', '-2.276831', '214.661102', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150806, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746850', 3746850, '23.742001', '2.113425', '263.454895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151622, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746857', 3746857, '39.223301', '5.294607', '322.688812', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152438, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746859', 3746859, '72.028061', '7.308271', '404.591492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152166, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746861', 3746861, '127.672203', '6.607109', '430.716309', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151894, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746864', 3746864, '165.074600', '12.246150', '482.778503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186704, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746867', 3746867, '168.492706', '12.057270', '478.475494', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186432, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746868', 3746868, '162.989304', '12.037260', '478.563507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186160, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746870', 3746870, '159.288895', '10.574450', '408.590790', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185888, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746871', 3746871, '163.653000', '10.757560', '411.825714', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185616, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746872', 3746872, '180.336197', '12.793920', '406.002014', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185344, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746873', 3746873, '161.736893', '16.236589', '388.045105', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185072, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746876', 3746876, '133.837296', '9.269427', '459.531403', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184800, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746878', 3746878, '131.557098', '8.976067', '457.624695', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184528, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746880', 3746880, '120.227203', '8.368025', '485.318115', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184256, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746885', 3746885, '134.445908', '12.144460', '507.273987', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183984, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746887', 3746887, '131.554993', '12.056210', '504.412415', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183712, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746889', 3746889, '140.997406', '11.949580', '487.139313', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183440, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746891', 3746891, '177.389404', '11.185200', '525.833618', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183168, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746894', 3746894, '180.637207', '11.258170', '523.414673', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182896, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746896', 3746896, '163.836105', '12.375020', '511.253387', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182624, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746898', 3746898, '147.262100', '7.242397', '543.931824', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182352, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746902', 3746902, '159.838196', '8.834927', '539.787781', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182080, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746905', 3746905, '155.880402', '7.197376', '556.779175', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181808, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746908', 3746908, '158.138794', '8.079927', '559.495300', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181536, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746910', 3746910, '143.386200', '7.563845', '583.138916', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181264, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746911', 3746911, '141.779205', '7.213043', '585.132019', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180992, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746913', 3746913, '138.754898', '6.737441', '570.297424', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180720, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746914', 3746914, '149.117798', '6.128607', '602.883972', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180448, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746915', 3746915, '169.704697', '11.348940', '603.184021', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180176, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746916', 3746916, '180.008804', '11.209140', '617.096130', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179904, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746917', 3746917, '182.074905', '11.129530', '618.747620', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179632, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746918', 3746918, '203.008896', '12.064710', '597.300476', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179360, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746919', 3746919, '222.377304', '10.658940', '600.289978', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179088, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746920', 3746920, '219.857101', '10.195060', '606.104126', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178816, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746921', 3746921, '216.053207', '12.886560', '579.694885', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178544, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746922', 3746922, '254.440308', '11.644550', '583.224670', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178272, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746923', 3746923, '187.395996', '12.680200', '480.674408', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178000, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746925', 3746925, '122.484100', '8.621300', '468.558685', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174198, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746927', 3746927, '152.697006', '11.123780', '465.049103', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173382, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746928', 3746928, '200.189301', '12.546850', '452.841888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173654, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746929', 3746929, '184.320801', '12.674630', '482.649414', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174470, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746930', 3746930, '161.638794', '12.497090', '508.781494', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175286, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746932', 3746932, '134.477707', '12.039320', '494.041290', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175558, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746933', 3746933, '157.244202', '8.895963', '538.017822', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174742, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(141, 'w1f2', 'bnpc3746934', 3746934, '145.677795', '11.978280', '517.051880', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175014, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746937', 3746937, '112.465202', '5.551401', '523.979492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168486, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746941', 3746941, '164.965195', '10.635490', '582.482483', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168214, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746945', 3746945, '140.062500', '7.095398', '581.505981', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167942, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746946', 3746946, '126.004097', '4.418174', '596.074219', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169302, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746951', 3746951, '205.096497', '11.978280', '595.452820', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169030, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746954', 3746954, '201.556396', '10.391350', '620.202881', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168758, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746956', 3746956, '223.407303', '9.658914', '609.063782', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167670, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746958', 3746958, '230.853699', '7.095398', '629.480286', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166582, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746959', 3746959, '228.412201', '6.607109', '632.684814', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166310, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746960', 3746960, '250.843002', '10.543940', '603.967285', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166038, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746962', 3746962, '251.148193', '11.947770', '580.346313', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167398, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746963', 3746963, '236.801498', '16.670509', '560.962524', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167126, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746965', 3746965, '239.996399', '16.684830', '564.761475', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166854, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746966', 3746966, '219.876907', '16.677370', '559.278870', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169574, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746967', 3746967, '255.603806', '16.647539', '552.574890', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172294, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746968', 3746968, '261.768494', '13.412630', '571.068787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172022, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746969', 3746969, '261.341187', '16.678061', '523.765930', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171750, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746970', 3746970, '263.263885', '16.647539', '520.866577', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173110, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746971', 3746971, '247.730194', '16.647539', '499.259888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172838, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746972', 3746972, '210.126297', '16.670370', '499.584686', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172566, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746973', 3746973, '206.265198', '16.709129', '502.872498', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171478, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746974', 3746974, '201.359299', '16.670370', '525.525696', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170390, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746975', 3746975, '199.202896', '16.634470', '546.190796', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170118, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746976', 3746976, '201.042099', '16.670389', '547.166199', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169846, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3746983', 3746983, '47.837040', '20.883829', '-297.468597', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79320, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3746984', 3746984, '30.218941', '19.809231', '-261.464111', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80402, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(141, 'w1f2', 'bnpc3746985', 3746985, '45.726398', '19.952000', '-251.705505', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79048, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3746988', 3746988, '37.782612', '19.928471', '-277.190186', 736, 0, 0, 0, 1, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80130, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3746992', 3746992, '32.101620', '19.979660', '-229.510406', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79858, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(141, 'w1f2', 'bnpc3746993', 3746993, '32.891548', '19.908630', '-233.898605', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78776, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(141, 'w1f2', 'bnpc3746997', 3746997, '-40.889229', '-6.750034', '159.270004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88278, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747003', 3747003, '-38.858761', '-6.750058', '155.119003', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88550, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747004', 3747004, '-21.989389', '-6.750032', '151.563995', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87190, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747006', 3747006, '-1.016211', '-6.750022', '160.127197', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89638, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747009', 3747009, '3.375875', '-6.751163', '164.669601', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89910, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747010', 3747010, '5.926142', '-6.750027', '161.728195', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89366, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747012', 3747012, '22.984619', '-6.750012', '165.561600', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89094, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747015', 3747015, '30.818211', '-6.750096', '148.130096', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88822, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747018', 3747018, '-6.179034', '-6.750058', '138.765106', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90182, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747019', 3747019, '-2.610643', '-6.750058', '141.990707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87734, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747021', 3747021, '-15.651240', '-6.750003', '122.209503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87462, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747022', 3747022, '-52.276199', '-6.750027', '169.793900', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88006, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747028', 3747028, '-73.794739', '-6.750006', '155.086899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91814, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747033', 3747033, '-84.128677', '-6.750047', '148.117004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90454, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747034', 3747034, '-88.289063', '-6.750033', '145.505707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90998, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747037', 3747037, '-81.662231', '-6.750007', '162.451996', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91542, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747042', 3747042, '-100.621399', '-6.750030', '133.779007', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91270, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747078', 3747078, '174.099396', '10.387860', '561.876526', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177728, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747306', 3747306, '166.825607', '12.296140', '403.792114', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171206, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747310', 3747310, '155.935303', '9.673933', '431.016296', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170934, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747330', 3747330, '-88.883842', '-0.106860', '109.147697', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747331', 3747331, '-61.120312', '0.636424', '88.682060', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747332', 3747332, '-80.643967', '-0.473077', '67.368530', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747333', 3747333, '-86.717056', '0.991789', '72.831261', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747336', 3747336, '-36.911621', '-3.830061', '32.700039', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747337', 3747337, '-40.695862', '-4.928711', '25.589331', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747338', 3747338, '-11.550680', '0.488563', '-28.281300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747339', 3747339, '17.013760', '3.036498', '-38.223900', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747340', 3747340, '-58.237549', '-4.110259', '-107.568703', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110020, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747341', 3747341, '-67.615173', '-4.777174', '-101.631897', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109476, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747342', 3747342, '-91.142181', '-0.778257', '-101.335197', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109748, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747344', 3747344, '-126.726303', '9.466410', '-79.290817', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110564, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747345', 3747345, '-162.798492', '10.177720', '-67.887444', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114644, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747347', 3747347, '-162.133194', '17.720350', '-97.090424', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114916, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747349', 3747349, '-170.820297', '17.510420', '-95.798119', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114372, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747353', 3747353, '-144.544800', '8.164017', '-26.941380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113828, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747356', 3747356, '-176.280701', '8.164456', '-26.641380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114100, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747358', 3747358, '-181.261993', '6.912290', '-21.225349', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116004, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747359', 3747359, '-207.415894', '10.971190', '-31.418369', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116276, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747362', 3747362, '-142.900803', '6.271411', '-160.784302', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115732, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747363', 3747363, '-153.948898', '13.420070', '-190.044296', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115188, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747364', 3747364, '-199.122604', '1.060047', '7.769498', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112468, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747365', 3747365, '-100.182404', '-4.169586', '5.823180', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112196, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747366', 3747366, '-162.648407', '1.476818', '27.867500', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112740, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747368', 3747368, '-228.292801', '1.271454', '31.448839', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113284, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747369', 3747369, '-281.000000', '1.547629', '6.098617', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113012, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747370', 3747370, '-292.305786', '1.883296', '3.669711', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110292, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747371', 3747371, '-289.186615', '0.923461', '44.489441', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111108, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747372', 3747372, '-331.967499', '-0.344346', '37.288601', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110836, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747373', 3747373, '-367.222809', '14.331700', '37.588600', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111380, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747374', 3747374, '-362.704590', '17.228571', '24.585470', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111924, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747376', 3747376, '-337.512299', '2.239006', '84.820068', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111652, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747380', 3747380, '-350.515015', '5.752604', '108.384804', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113556, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747385', 3747385, '-374.964294', '1.092578', '72.868820', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115460, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747388', 3747388, '-52.163811', '-2.028311', '119.953003', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147810, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747389', 3747389, '-86.052368', '0.110645', '102.987396', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147538, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747390', 3747390, '-74.317467', '-4.983451', '25.989620', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147266, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747391', 3747391, '-33.861969', '-6.175569', '6.276085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146994, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747393', 3747393, '13.815840', '0.849448', '-43.540058', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146722, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747394', 3747394, '-25.443001', '-6.505634', '-66.767128', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146450, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747395', 3747395, '-66.218620', '-2.263651', '-110.189796', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146178, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747396', 3747396, '-92.423927', '2.517692', '-129.686493', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747397', 3747397, '-120.059502', '11.096300', '-65.332710', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747398', 3747398, '-123.346199', '11.132750', '-62.877190', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747399', 3747399, '-135.404602', '3.017960', '-134.773499', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145090, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747400', 3747400, '-155.932007', '14.084030', '-185.687103', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747401', 3747401, '-176.806305', '20.096081', '-127.183998', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144546, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747402', 3747402, '-182.692200', '11.068910', '-54.575550', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144274, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747403', 3747403, '-188.219101', '8.602026', '-26.668791', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144002, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747404', 3747404, '-125.142403', '-1.327417', '12.701530', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143730, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747405', 3747405, '-142.871094', '-0.211552', '-0.011758', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143458, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747406', 3747406, '-188.977707', '1.185343', '0.288242', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143186, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747407', 3747407, '-196.063202', '-0.991883', '44.632591', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747408', 3747408, '-198.598099', '-1.427130', '46.344830', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142642, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747409', 3747409, '-265.374908', '-0.871808', '46.644829', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747410', 3747410, '-245.222107', '0.679796', '27.065580', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747411', 3747411, '-236.532196', '4.119698', '-11.326280', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747413', 3747413, '-237.229904', '7.081615', '-22.989599', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141554, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747414', 3747414, '-238.542206', '7.219037', '-24.718719', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747415', 3747415, '-245.215302', '6.500818', '-25.125641', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747417', 3747417, '-335.459198', '7.751451', '2.210185', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747419', 3747419, '-332.434692', '-0.635067', '45.192638', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747420', 3747420, '-338.391815', '2.787159', '90.300163', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140194, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747635', 3747635, '-101.580002', '3.185857', '-122.629700', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747636', 3747636, '-113.067703', '0.190863', '-235.496902', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747637', 3747637, '-8.689189', '-2.987621', '-71.427528', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747853', 3747853, '-210.928299', '22.971910', '-101.417801', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82028, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3747854', 3747854, '-210.061996', '22.349720', '-98.801086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82844, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3747855', 3747855, '-199.564606', '24.777719', '-122.897400', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82572, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3747856', 3747856, '-217.284500', '27.674749', '-122.597397', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81756, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(141, 'w1f2', 'bnpc3747858', 3747858, '-217.212097', '28.120930', '-124.432098', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81212, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(141, 'w1f2', 'bnpc3747859', 3747859, '-208.813400', '29.458891', '-133.137894', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80940, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3747860', 3747860, '-223.520599', '24.171949', '-95.828552', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81484, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3747864', 3747864, '-228.529297', '20.575800', '-76.218086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85564, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3747865', 3747865, '-241.385498', '18.354990', '-63.139381', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85292, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3747867', 3747867, '-243.216904', '18.379009', '-62.623611', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86380, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3747868', 3747868, '-255.936401', '24.723961', '-77.803009', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86108, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3747869', 3747869, '-267.446411', '25.988930', '-78.509064', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85836, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(141, 'w1f2', 'bnpc3747870', 3747870, '-266.262207', '26.413910', '-80.013046', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86924, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(141, 'w1f2', 'bnpc3747873', 3747873, '-288.302704', '28.840969', '-91.487991', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86652, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3747874', 3747874, '-273.846008', '27.999920', '-103.128998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83660, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3747876', 3747876, '-257.572906', '27.938169', '-88.810738', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83932, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3747877', 3747877, '-234.919403', '27.970850', '-103.431198', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84476, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(141, 'w1f2', 'bnpc3747880', 3747880, '-245.382996', '27.999990', '-107.453003', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83116, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3747881', 3747881, '-254.081406', '28.000000', '-102.002197', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84204, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(141, 'w1f2', 'bnpc3747883', 3747883, '-258.959106', '28.000000', '-105.536201', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82300, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3747884', 3747884, '-251.270294', '27.969730', '-102.616898', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85020, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(141, 'w1f2', 'bnpc3747886', 3747886, '-248.655701', '28.000000', '-96.725998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84748, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3747889', 3747889, '-248.153000', '28.470831', '-127.263100', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83388, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(141, 'w1f2', 'bnpc3747891', 3747891, '-234.992294', '9.310618', '-37.905788', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139922, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747893', 3747893, '-237.711700', '8.873294', '-42.033760', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139650, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747899', 3747899, '-214.038300', '-30.502831', '123.735397', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139384, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747900', 3747900, '-250.516998', '-31.060820', '85.115646', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139118, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747904', 3747904, '-201.968796', '-30.857059', '117.357803', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138840, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747905', 3747905, '-183.124893', '-31.750071', '106.885902', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138568, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747906', 3747906, '-185.311996', '-31.750059', '109.415100', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138296, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747907', 3747907, '-152.843002', '-31.750000', '109.715103', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138024, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747908', 3747908, '-166.101105', '-31.750000', '110.540100', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137758, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747909', 3747909, '-169.604507', '-27.712351', '77.843430', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137486, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747910', 3747910, '-167.071503', '-27.177780', '76.317528', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137214, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747911', 3747911, '-210.234406', '-30.382589', '95.879173', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136942, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747913', 3747913, '-195.861603', '-27.444660', '129.920502', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136670, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747914', 3747914, '-224.566406', '-31.750071', '110.176003', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136398, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747915', 3747915, '-263.312103', '-31.750090', '97.519081', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136126, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747916', 3747916, '-255.968094', '-31.750130', '95.789261', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135848, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747919', 3747919, '-211.436401', '-30.614429', '97.981651', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135576, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747921', 3747921, '-244.620895', '-28.275660', '117.486801', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135304, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747922', 3747922, '-225.970795', '-15.579620', '71.709572', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135026, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747923', 3747923, '-170.891495', '-26.165300', '72.662949', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134754, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747924', 3747924, '-154.802902', '-29.800900', '94.071899', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134482, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747925', 3747925, '-164.402603', '-31.750019', '112.296303', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747927', 3747927, '-213.131393', '-30.063490', '125.099403', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747928', 3747928, '-234.579193', '-29.342421', '117.079697', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747930', 3747930, '-206.002899', '-30.332180', '97.422249', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747931', 3747931, '-258.774902', '-31.750071', '93.732712', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747933', 3747933, '-124.520401', '25.876591', '-384.084900', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117364, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747935', 3747935, '-120.378502', '25.406219', '-376.089111', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117636, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747936', 3747936, '-71.168182', '15.618890', '-341.319214', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117908, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747937', 3747937, '-140.945007', '34.283039', '-443.520813', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116548, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747945', 3747945, '-104.844803', '10.208240', '-322.407898', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116820, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747953', 3747953, '-68.964897', '24.845461', '-295.047913', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117092, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747955', 3747955, '-30.148661', '20.242010', '-347.723907', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118180, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747958', 3747958, '-20.706499', '20.599291', '-342.888702', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118724, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747963', 3747963, '20.322849', '15.975690', '-350.654205', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118996, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747965', 3747965, '39.420231', '19.301970', '-356.003815', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119268, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3747975', 3747975, '-138.811401', '27.237310', '-416.372986', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747994', 3747994, '-93.431030', '7.583686', '-301.106293', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3747997', 3747997, '-65.966766', '21.859249', '-305.947601', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748004', 3748004, '-66.655212', '20.943001', '-309.725586', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748006', 3748006, '-38.712181', '21.255770', '-344.167297', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748009', 3748009, '-93.684303', '18.821621', '-371.862793', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748015', 3748015, '-113.144402', '27.605829', '-397.741913', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131490, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748017', 3748017, '-112.844398', '28.132500', '-450.977997', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748018', 3748018, '-108.119003', '27.149870', '-454.027008', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748020', 3748020, '-152.178299', '27.511971', '-419.668915', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748022', 3748022, '35.132519', '17.855400', '-352.433105', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748394', 3748394, '65.413780', '20.079309', '-340.723206', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748396', 3748396, '-140.276199', '-3.219701', '-317.433502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748397', 3748397, '-147.234299', '-4.593012', '-324.147400', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748399', 3748399, '-210.589798', '1.083344', '-288.624390', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748402', 3748402, '-72.186493', '11.340310', '-240.295197', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748407', 3748407, '-77.690918', '8.765988', '-234.389694', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748409', 3748409, '-50.269390', '11.709270', '-222.062698', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748410', 3748410, '-65.652512', '8.342214', '-211.891998', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748411', 3748411, '-21.376921', '8.231496', '-242.911896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748412', 3748412, '-16.418360', '6.341013', '-249.044601', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748413', 3748413, '-6.975120', '11.175980', '-282.658691', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106490, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748414', 3748414, '10.056190', '8.215180', '-250.173004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748415', 3748415, '5.360405', '-0.923770', '-218.657303', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748416', 3748416, '48.714218', '0.699683', '-174.900604', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748417', 3748417, '95.936577', '1.386500', '-186.119995', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748418', 3748418, '31.585911', '8.951487', '-139.193497', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748419', 3748419, '35.112041', '16.424919', '-113.143204', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748420', 3748420, '34.363049', '8.229201', '-145.052994', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748421', 3748421, '90.860474', '1.763928', '-189.065002', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748422', 3748422, '113.054001', '1.174898', '-202.746704', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748423', 3748423, '130.461395', '1.093745', '-233.497101', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748424', 3748424, '124.484100', '0.743076', '-229.449493', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748425', 3748425, '89.422256', '3.504610', '-218.853806', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748428', 3748428, '-184.704300', '-4.704755', '-317.082306', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748429', 3748429, '-177.061203', '-3.447654', '-291.626190', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748430', 3748430, '-168.688507', '-1.968461', '-348.439789', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102954, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748431', 3748431, '-142.835693', '-1.140769', '-353.109894', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748433', 3748433, '-167.528793', '6.179857', '-382.681000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748434', 3748434, '-192.189301', '-4.726788', '-315.063293', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97242, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(141, 'w1f2', 'bnpc3748436', 3748436, '-213.360901', '-4.497713', '-340.979004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748437', 3748437, '-234.150696', '5.014801', '-286.084686', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98602, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748438', 3748438, '-218.334900', '17.160500', '-255.482300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748443', 3748443, '-212.971405', '13.338840', '-260.496307', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748479', 3748479, '-151.282501', '-4.870804', '-286.887787', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748499', 3748499, '-178.949402', '6.440631', '-256.865692', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748520', 3748520, '-148.505096', '-5.306737', '-314.775085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748524', 3748524, '-185.881104', '-4.844985', '-310.895508', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748526', 3748526, '-164.369003', '1.507254', '-251.882507', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748528', 3748528, '-207.412399', '17.160610', '-247.635193', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748530', 3748530, '-229.519104', '3.459191', '-289.959412', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748532', 3748532, '-163.010803', '-1.945551', '-356.094696', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748534', 3748534, '-173.595505', '5.841309', '-388.489685', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748537', 3748537, '-232.440796', '-2.339301', '-322.417908', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127954, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748538', 3748538, '-251.794006', '-1.267901', '-386.990295', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748542', 3748542, '-234.040207', '-0.107224', '-383.030914', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748543', 3748543, '-272.222107', '0.687642', '-325.399811', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748545', 3748545, '-263.308685', '4.237235', '-309.758392', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748546', 3748546, '-252.162598', '0.152196', '-318.392395', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748548', 3748548, '-251.430496', '-2.982757', '-348.143311', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748549', 3748549, '-240.737198', '1.345172', '-393.418396', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748550', 3748550, '-242.828506', '-3.567687', '-364.035309', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748551', 3748551, '-250.630707', '-3.725200', '-363.735291', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748552', 3748552, '-213.087494', '1.112077', '-382.537415', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748553', 3748553, '-255.836105', '7.531438', '-290.196289', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748554', 3748554, '-246.018097', '-2.631598', '-372.254608', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748555', 3748555, '-236.562103', '3.655112', '-396.309387', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748557', 3748557, '-203.850494', '16.277430', '-409.920593', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748559', 3748559, '-242.042892', '18.601339', '-425.242401', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748564', 3748564, '-177.168198', '14.656220', '-411.592987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748565', 3748565, '-215.900406', '16.573481', '-408.014008', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748566', 3748566, '-221.473297', '17.321730', '-412.786896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748567', 3748567, '-236.289001', '19.116409', '-424.877502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748570', 3748570, '-254.304306', '22.347059', '-449.055695', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748654', 3748654, '-205.192398', '19.296721', '-445.294189', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748657', 3748657, '-207.202301', '25.558809', '-115.343002', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748660', 3748660, '-222.657104', '20.702950', '-78.345047', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748662', 3748662, '-247.438400', '20.240339', '-67.748871', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748663', 3748663, '-230.727005', '26.739140', '-98.761307', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748670', 3748670, '-271.961609', '27.969740', '-98.954803', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748672', 3748672, '-271.661285', '23.599831', '-70.352722', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748674', 3748674, '-231.617004', '30.324150', '-133.076996', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748726', 3748726, '33.854542', '6.542700', '-211.889801', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748728', 3748728, '55.167561', '0.798945', '-193.606598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748729', 3748729, '69.255318', '0.046956', '-152.350906', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748730', 3748730, '10.055020', '5.968488', '-132.156097', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123602, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748732', 3748732, '50.175282', '14.921620', '-128.489700', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748734', 3748734, '76.929573', '3.883048', '-205.706406', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748736', 3748736, '79.198738', '3.548813', '-202.087204', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748737', 3748737, '106.461601', '1.818933', '-204.985199', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748738', 3748738, '140.354401', '0.554754', '-232.614304', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122242, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748739', 3748739, '111.391197', '0.776695', '-238.240707', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748749', 3748749, '145.884293', '-1.750025', '-212.434097', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3748752', 3748752, '136.108398', '-1.750136', '-190.396194', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3748753', 3748753, '149.821106', '-1.750019', '-214.231293', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54188, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3748755', 3748755, '84.854179', '-1.750136', '-139.436905', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53916, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3748758', 3748758, '72.003227', '-1.750024', '-104.510002', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53644, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3748760', 3748760, '68.467178', '-1.754834', '-99.778793', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53372, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3748763', 3748763, '78.693497', '-3.269199', '-32.994751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53100, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3748765', 3748765, '68.721947', '-2.620518', '-49.466751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52828, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3748770', 3748770, '166.277496', '-1.754834', '-241.382507', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52556, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3748772', 3748772, '187.884293', '-1.754834', '-278.858704', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52284, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3748773', 3748773, '194.766006', '-1.750224', '-280.991394', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52012, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3748775', 3748775, '71.615707', '-3.621419', '-26.438259', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51740, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3748850', 3748850, '12.774460', '-6.750232', '111.257401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90726, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3748852', 3748852, '9.592600', '-6.750232', '107.837402', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92086, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3748876', 3748876, '11.520510', '1.022307', '-111.986000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748879', 3748879, '-129.259201', '2.487174', '-193.926895', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118452, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3748904', 3748904, '176.132706', '4.710299', '-187.304703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748905', 3748905, '158.969894', '2.732193', '-177.146698', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748906', 3748906, '191.563705', '2.176362', '-156.220703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748907', 3748907, '196.388000', '3.012704', '-160.659393', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748908', 3748908, '239.061295', '5.923066', '-187.296494', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748910', 3748910, '269.473785', '9.044052', '-198.574799', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748913', 3748913, '263.650208', '11.289570', '-202.903397', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748915', 3748915, '227.710297', '-1.205510', '-113.847603', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748923', 3748923, '231.280899', '-1.632762', '-106.462196', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748926', 3748926, '200.610306', '-1.358100', '-103.471497', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748930', 3748930, '207.171707', '-1.144474', '-84.519768', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748932', 3748932, '173.937500', '1.205416', '-81.071228', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73736, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748934', 3748934, '148.809097', '3.036994', '-133.465897', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73464, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748937', 3748937, '169.787094', '0.045730', '-115.892303', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73192, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748941', 3748941, '145.535507', '4.850001', '-129.478104', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72920, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748942', 3748942, '119.305603', '3.909301', '-132.622696', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72648, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748943', 3748943, '109.916496', '3.556486', '-129.240601', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748944', 3748944, '224.505905', '-2.975556', '-56.412651', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72104, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748945', 3748945, '175.332993', '6.489766', '-41.243931', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748946', 3748946, '186.449905', '4.165666', '-17.319040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748947', 3748947, '281.825989', '-9.100459', '2.598387', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71832, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748949', 3748949, '288.471710', '-11.734230', '-3.952133', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71560, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748950', 3748950, '278.492310', '-14.114640', '-37.338871', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71288, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748953', 3748953, '324.544098', '-13.504280', '-33.615669', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748954', 3748954, '329.030212', '-13.565320', '-29.770399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748955', 3748955, '356.861603', '-15.283880', '-44.573921', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748956', 3748956, '347.890411', '-17.502140', '8.102493', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748962', 3748962, '150.469193', '19.150021', '-76.524040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748963', 3748963, '146.044098', '19.581060', '-88.241302', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748964', 3748964, '117.082397', '20.462299', '-97.062683', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748967', 3748967, '142.873703', '16.403400', '-46.097549', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748968', 3748968, '400.991608', '-12.783140', '-32.000870', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748969', 3748969, '366.536896', '-16.189871', '-58.854092', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748970', 3748970, '415.234192', '-14.170130', '-62.547722', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748972', 3748972, '432.695709', '-16.065250', '-112.148399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748974', 3748974, '436.729889', '-14.846640', '-118.392700', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68840, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748976', 3748976, '441.284088', '-15.576560', '-96.939430', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68568, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748980', 3748980, '384.960602', '-17.809891', '-96.639427', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68296, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748986', 3748986, '389.761108', '-17.502140', '-101.701401', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3748990', 3748990, '391.353210', '-17.460060', '-135.489304', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749004', 3749004, '172.667496', '7.527369', '-42.066410', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749018', 3749018, '187.591705', '4.184689', '-15.078180', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749020', 3749020, '183.022797', '5.398401', '-15.566580', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749031', 3749031, '202.090393', '0.810960', '-15.619060', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749036', 3749036, '199.896393', '1.465439', '-15.630680', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749047', 3749047, '143.173706', '15.773830', '-43.893311', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749053', 3749053, '153.171097', '16.202070', '-56.630402', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749059', 3749059, '151.803696', '19.216890', '-78.848953', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749061', 3749061, '153.666504', '19.040461', '-76.088043', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749071', 3749071, '144.894501', '19.988741', '-106.295998', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749073', 3749073, '142.185501', '20.171949', '-108.059097', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749080', 3749080, '115.432404', '20.583151', '-99.077271', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749083', 3749083, '114.653099', '20.724030', '-96.549553', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749168', 3749168, '312.979492', '-19.718349', '-75.451233', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62252, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749170', 3749170, '261.730194', '-19.718349', '-82.128349', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61980, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749172', 3749172, '274.699402', '-19.718349', '-117.167198', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61708, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749173', 3749173, '291.363098', '-19.718349', '-136.065598', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749174', 3749174, '342.729797', '-19.718349', '-131.071106', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749175', 3749175, '353.724091', '-19.718349', '-85.215424', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749176', 3749176, '333.410095', '-19.718349', '-136.385498', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60620, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749177', 3749177, '319.949188', '-19.718349', '-179.156403', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60348, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749178', 3749178, '308.689301', '-19.718349', '-60.698299', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60142, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749180', 3749180, '311.695190', '-19.718349', '-58.346031', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59870, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749183', 3749183, '330.312012', '-19.729959', '-70.267838', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59598, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749186', 3749186, '296.119995', '-19.718349', '-90.360474', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59326, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749187', 3749187, '293.415802', '-19.718349', '-93.414520', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59054, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749188', 3749188, '290.216614', '-19.718349', '-87.193253', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58782, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749189', 3749189, '258.481415', '-19.718349', '-104.208000', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58510, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749190', 3749190, '252.984802', '-19.718349', '-103.640099', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58238, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749191', 3749191, '257.907715', '-19.718349', '-125.303101', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57966, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749192', 3749192, '286.451904', '-19.718349', '-129.699097', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57694, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749193', 3749193, '282.557892', '-19.718349', '-147.388199', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57422, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749195', 3749195, '310.290314', '-19.718349', '-172.318802', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57150, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749196', 3749196, '313.118591', '-19.718349', '-169.401993', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56878, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749197', 3749197, '310.587006', '-19.718349', '-142.173401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56606, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749199', 3749199, '350.892212', '-19.718349', '-150.816696', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56334, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749200', 3749200, '368.409302', '-19.718349', '-144.276596', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56062, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749201', 3749201, '364.918213', '-19.718349', '-140.378006', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55790, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749202', 3749202, '359.256592', '-19.718349', '-116.557503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55518, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749203', 3749203, '346.291199', '-19.718349', '-105.267899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55246, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749204', 3749204, '371.776215', '-19.718349', '-104.967796', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54974, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(141, 'w1f2', 'bnpc3749211', 3749211, '123.998703', '28.662880', '-17.350370', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51474, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(141, 'w1f2', 'bnpc3749213', 3749213, '121.332397', '28.612700', '-23.583090', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51208, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(141, 'w1f2', 'bnpc3749215', 3749215, '161.791397', '28.213881', '-14.786040', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50936, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(141, 'w1f2', 'bnpc3749218', 3749218, '137.021805', '28.624880', '-23.498341', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50658, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(141, 'w1f2', 'bnpc3749219', 3749219, '107.272903', '29.216610', '-36.643101', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749222', 3749222, '149.401093', '28.610600', '-15.610050', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50120, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(141, 'w1f2', 'bnpc3749223', 3749223, '148.790604', '28.610600', '-15.152280', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49842, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(141, 'w1f2', 'bnpc3749225', 3749225, '122.827698', '28.633169', '-37.359280', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749226', 3749226, '104.128304', '29.031771', '-49.110481', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49304, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(141, 'w1f2', 'bnpc3749235', 3749235, '93.149368', '29.525270', '-84.964371', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749239', 3749239, '67.895287', '30.429380', '-70.394157', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749240', 3749240, '65.047180', '30.255060', '-77.079674', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749241', 3749241, '44.682369', '28.535789', '-84.546478', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749242', 3749242, '66.806038', '29.155720', '-109.342300', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749245', 3749245, '204.538101', '7.350389', '-181.293304', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749246', 3749246, '174.853104', '5.172761', '-202.929794', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749247', 3749247, '263.069611', '8.545942', '-196.205307', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749252', 3749252, '231.435593', '1.119558', '-165.006302', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749253', 3749253, '173.375305', '2.771811', '-168.286102', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749255', 3749255, '157.126694', '3.796749', '-121.347397', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749257', 3749257, '115.770103', '4.592918', '-127.306099', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749275', 3749275, '161.730301', '-1.754834', '-239.398804', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749277', 3749277, '185.534393', '-1.754834', '-265.705414', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749279', 3749279, '210.539902', '-1.750040', '-309.299408', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749284', 3749284, '211.839401', '-1.750030', '-306.582611', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749290', 3749290, '143.733002', '-1.750026', '-193.558701', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749297', 3749297, '144.345306', '0.955883', '-165.104004', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749310', 3749310, '216.777496', '0.994229', '-97.056053', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749312', 3749312, '169.933899', '2.409006', '-84.351593', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749314', 3749314, '219.378906', '-3.433327', '-46.921539', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749321', 3749321, '277.040192', '-7.191899', '-0.686294', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749327', 3749327, '331.429810', '-13.937110', '-37.954071', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749332', 3749332, '384.322205', '-19.359289', '-5.627488', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749336', 3749336, '382.853088', '-20.412571', '-0.889114', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749338', 3749338, '359.951508', '-16.405090', '-60.846310', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749343', 3749343, '451.404602', '-11.420970', '-118.535599', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749351', 3749351, '384.249603', '-17.667879', '-125.562897', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749357', 3749357, '297.316589', '-19.718349', '-70.108559', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749359', 3749359, '289.558197', '-19.718349', '-103.097801', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749362', 3749362, '240.405807', '-18.104980', '-89.540627', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749364', 3749364, '283.065491', '-19.718349', '-125.167999', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749367', 3749367, '267.129913', '-18.000000', '-169.891296', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749369', 3749369, '264.685486', '-18.000000', '-168.247101', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749370', 3749370, '316.532898', '-19.718349', '-157.003693', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749371', 3749371, '353.619995', '-19.718349', '-109.615997', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749373', 3749373, '339.318695', '-19.718349', '-85.941147', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749376', 3749376, '165.671799', '11.656820', '-52.356880', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749380', 3749380, '172.813995', '6.716133', '-26.881840', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749388', 3749388, '191.772202', '-0.202088', '-35.283329', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749390', 3749390, '136.510300', '18.512560', '-57.480461', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749392', 3749392, '133.468002', '19.606770', '-81.872276', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749396', 3749396, '128.184402', '20.219101', '-102.714104', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749397', 3749397, '116.821999', '23.443171', '-63.701351', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749399', 3749399, '86.653412', '30.354231', '-83.224442', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749402', 3749402, '86.953407', '29.540970', '-103.119400', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3749404', 3749404, '58.939091', '30.914900', '-69.530090', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3751223', 3751223, '27.075630', '19.825541', '-258.167999', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79592, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(141, 'w1f2', 'bnpc3751224', 3751224, '25.641180', '19.827999', '-262.593201', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80674, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(141, 'w1f2', 'bnpc3751325', 3751325, '-86.401451', '-0.314426', '-202.187195', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3751326', 3751326, '-89.241432', '-0.377375', '-203.793503', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3751327', 3751327, '-54.347431', '10.746100', '-226.743500', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3751329', 3751329, '14.423480', '6.148088', '-236.752106', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3751331', 3751331, '-1.214684', '-0.950067', '-207.831497', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3751332', 3751332, '-12.497190', '11.337410', '-273.731598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3751350', 3751350, '12.680810', '9.512568', '-296.489288', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3751353', 3751353, '-5.330978', '16.424870', '-314.262909', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3751354', 3751354, '-110.742599', '-1.464606', '-173.727402', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3782203', 3782203, '-10.133880', '-3.109667', '-92.309822', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95882, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(141, 'w1f2', 'bnpc3782206', 3782206, '-5.820518', '-2.317021', '-88.935387', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3782208', 3782208, '-16.094000', '-4.734633', '-82.939987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3782210', 3782210, '-16.866150', '-3.490384', '-51.955761', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3782566', 3782566, '219.465393', '20.017179', '421.855988', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177456, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3782567', 3782567, '215.101303', '19.951290', '418.621094', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177184, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3782571', 3782571, '276.496490', '14.358410', '504.494598', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176912, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3782572', 3782572, '274.299194', '14.525580', '502.022614', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170662, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3782576', 3782576, '223.506195', '14.214930', '465.799103', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176640, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3782578', 3782578, '228.904907', '14.555940', '463.312805', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176368, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3782579', 3782579, '240.208405', '14.734180', '473.802307', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176096, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3782581', 3782581, '203.301804', '12.792270', '451.523285', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175824, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc3782585', 3782585, '230.220703', '14.451260', '471.293915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173926, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(141, 'w1f2', 'bnpc4057631', 4057631, '-117.387497', '15.659340', '316.159485', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22414, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(141, 'w1f2', 'bnpc4057642', 4057642, '32.356911', '15.912200', '575.715027', 797, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22148, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(141, 'w1f2', 'bnpc4057659', 4057659, '-26.174540', '-2.337916', '-130.147400', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21882, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(141, 'w1f2', 'bnpc4057662', 4057662, '7.597365', '-2.072273', '-178.519897', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21610, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(141, 'w1f2', 'bnpc4621827', 4621827, '-293.653107', '18.424400', '-380.671600', 2770, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22760, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600222', 4600222, '-73.624763', '-10.208310', '-100.877403', 2757, 0, 0, 0, 0, 6, 0, 0, 2597, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23996, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600223', 4600223, '155.413101', '4.501404', '227.985001', 2761, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17764, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600224', 4600224, '-296.958710', '17.404200', '17.564131', 2724, 0, 0, 0, 0, 6, 0, 0, 2602, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31322, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600436', 4600436, '-13.861610', '-11.263960', '-146.508804', 2814, 0, 0, 0, 1, 6, 0, 0, 2589, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40802, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600438', 4600438, '-9.082000', '-2.426208', '-112.477699', 2813, 0, 0, 0, 1, 6, 0, 0, 2591, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40536, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600440', 4600440, '14.877500', '-11.099520', '-183.886307', 2814, 0, 0, 0, 1, 6, 0, 0, 2589, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40258, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600442', 4600442, '-17.134460', '-11.100300', '-148.660507', 2813, 0, 0, 0, 1, 6, 0, 0, 2591, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39992, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600452', 4600452, '93.372711', '-3.731028', '33.454021', 2818, 0, 0, 0, 0, 6, 0, 0, 2750, 0, '4.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39318, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600454', 4600454, '134.813400', '-3.738525', '63.004391', 2818, 0, 0, 0, 0, 6, 0, 0, 2750, 0, '4.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39046, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600455', 4600455, '75.547363', '-3.738525', '57.083981', 2934, 0, 0, 0, 0, 6, 0, 0, 2592, 0, '4.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35502, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600457', 4600457, '109.709602', '-3.714834', '87.203979', 2935, 0, 0, 0, 0, 6, 0, 0, 2751, 0, '4.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35236, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600460', 4600460, '-9.039840', '0.781528', '147.498993', 2819, 0, 0, 0, 0, 6, 0, 0, 2593, 0, '4.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36040, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600462', 4600462, '26.260740', '0.819950', '172.289597', 2819, 0, 0, 0, 0, 6, 0, 0, 2593, 0, '4.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36312, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600463', 4600463, '75.455811', '0.832446', '138.292496', 2819, 0, 0, 0, 0, 6, 0, 0, 2593, 0, '4.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35768, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600467', 4600467, '-159.197403', '10.696530', '102.738998', 2720, 0, 0, 0, 0, 6, 0, 0, 2595, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34850, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600468', 4600468, '-60.929321', '14.419740', '60.837650', 2718, 0, 0, 0, 0, 6, 0, 0, 2594, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34584, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600469', 4600469, '-132.646698', '10.177730', '1.388489', 2719, 0, 0, 0, 0, 6, 0, 0, 2596, 0, '0.000000', 50, 0, 120, 1, 0, 33, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34318, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600470', 4600470, '77.747589', '-10.582350', '-91.129044', 434, 0, 0, 0, 0, 6, 0, 0, 2633, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600471', 4600471, '35.650700', '-9.480681', '-105.288300', 434, 0, 0, 0, 0, 6, 0, 0, 2633, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600472', 4600472, '2.619149', '-11.303330', '-188.718796', 434, 0, 0, 0, 0, 6, 0, 0, 2633, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4600473', 4600473, '-10.247380', '-11.049300', '-152.855896', 434, 0, 0, 0, 0, 6, 0, 0, 2633, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620336', 4620336, '-67.338127', '-10.178000', '-104.387001', 2758, 0, 0, 0, 1, 6, 0, 0, 2591, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23730, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620339', 4620339, '-67.826424', '-10.178000', '-104.936302', 2759, 0, 0, 0, 1, 6, 0, 0, 2589, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23464, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620352', 4620352, '-82.261414', '-10.208310', '-94.499153', 2760, 0, 0, 0, 0, 20, 0, 0, 2590, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23198, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620358', 4620358, '150.201004', '4.509544', '222.629196', 2762, 0, 0, 0, 1, 6, 0, 0, 2600, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17498, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620359', 4620359, '147.698898', '4.509544', '227.653793', 2763, 0, 0, 0, 1, 6, 0, 0, 2601, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17232, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620363', 4620363, '-264.850891', '17.593571', '18.997379', 2721, 0, 0, 0, 0, 6, 0, 0, 2604, 0, '0.000000', 50, 0, 120, 1, 0, 91, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31056, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620364', 4620364, '-264.881409', '17.593571', '17.807249', 2722, 0, 0, 0, 0, 6, 0, 0, 2605, 0, '0.000000', 50, 0, 120, 1, 0, 91, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30790, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620365', 4620365, '-267.811096', '17.593571', '15.976140', 2723, 0, 0, 0, 0, 6, 0, 0, 2606, 0, '0.000000', 50, 0, 120, 1, 0, 91, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30524, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620366', 4620366, '-267.627991', '17.593571', '21.103210', 2725, 0, 0, 0, 0, 6, 0, 0, 2607, 0, '0.000000', 50, 0, 120, 1, 0, 91, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30258, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620368', 4620368, '-296.589600', '17.379999', '20.492800', 2764, 0, 0, 0, 0, 6, 0, 0, 2603, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29992, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620537', 4620537, '162.378494', '4.509542', '225.365494', 434, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15616, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620538', 4620538, '162.052704', '4.509544', '226.875107', 434, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620539', 4620539, '161.621399', '4.509542', '228.542297', 434, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15072, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620540', 4620540, '161.041901', '4.509542', '230.164398', 434, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620541', 4620541, '160.113007', '4.509544', '231.862503', 434, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620542', 4620542, '159.149994', '4.509544', '233.482895', 434, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620543', 4620543, '158.188995', '4.509544', '234.966599', 434, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620544', 4620544, '157.086304', '4.509544', '236.526398', 434, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620561', 4620561, '-261.078186', '17.622761', '18.472710', 434, 0, 0, 0, 0, 6, 0, 0, 2605, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24632, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620562', 4620562, '-261.078186', '17.622709', '17.592739', 434, 0, 0, 0, 0, 6, 0, 0, 2605, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24360, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4620919', 4620919, '-20.418261', '-11.049300', '-136.294998', 434, 0, 0, 0, 0, 6, 0, 0, 2633, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4621580', 4621580, '-85.833862', '-8.580495', '-92.962219', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20908, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4632468', 4632468, '-261.265900', '17.622780', '18.439501', 2831, 0, 0, 0, 0, 6, 0, 0, 2603, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27962, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4634925', 4634925, '46.737961', '-11.116050', '-96.431511', 2817, 0, 0, 0, 1, 6, 0, 0, 2585, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43392, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4634926', 4634926, '41.106880', '-10.871090', '-92.364250', 2816, 0, 0, 0, 1, 6, 0, 0, 2584, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43126, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4634929', 4634929, '-4.962070', '-2.130528', '-111.616302', 2816, 0, 0, 0, 1, 6, 0, 0, 2584, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42854, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4634930', 4634930, '-6.214492', '-1.875767', '-115.117500', 2816, 0, 0, 0, 1, 6, 0, 0, 2584, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42582, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4634933', 4634933, '11.487220', '-11.043880', '-186.641800', 2817, 0, 0, 0, 1, 6, 0, 0, 2585, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42304, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4634934', 4634934, '16.325800', '-11.008110', '-186.755203', 2816, 0, 0, 0, 1, 6, 0, 0, 2584, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42038, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4634936', 4634936, '-14.053210', '-11.096940', '-149.542099', 2817, 0, 0, 0, 1, 6, 0, 0, 2585, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39696, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4634939', 4634939, '-4.806641', '-10.788150', '-189.135605', 2820, 0, 0, 0, 5, 6, 0, 0, 2586, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41772, 1, 3, 2000, 0, 0, 0, 4634940, 0, 0), +(142, 'w1d7_battle', 'bnpc4634943', 4634943, '3.421977', '-3.527810', '-114.145897', 2820, 0, 0, 0, 5, 6, 0, 0, 2586, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41068, 1, 3, 2000, 0, 0, 0, 4634941, 0, 0), +(142, 'w1d7_battle', 'bnpc4634968', 4634968, '57.596401', '9.157762', '109.399498', 2821, 0, 0, 0, 1, 6, 0, 0, 2587, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38780, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4634969', 4634969, '52.988110', '9.149729', '109.155403', 2822, 0, 0, 0, 1, 6, 0, 0, 2588, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38514, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4634970', 4634970, '54.880329', '9.141557', '105.279503', 2821, 0, 0, 0, 1, 6, 0, 0, 2587, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38236, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4634975', 4634975, '86.624207', '-1.678856', '193.072998', 2822, 0, 0, 0, 1, 6, 0, 0, 2588, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37970, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4634976', 4634976, '81.527771', '-2.076723', '192.706802', 2822, 0, 0, 0, 1, 6, 0, 0, 2588, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37698, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4634977', 4634977, '83.419861', '-2.208830', '189.227798', 2821, 0, 0, 0, 1, 6, 0, 0, 2587, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37420, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4634978', 4634978, '50.874310', '9.141564', '101.452698', 2820, 0, 0, 0, 5, 6, 0, 0, 2586, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37124, 1, 3, 2000, 0, 0, 0, 4634979, 0, 0), +(142, 'w1d7_battle', 'bnpc4634981', 4634981, '-248.218506', '-1.236023', '141.985107', 2820, 0, 0, 0, 2, 6, 0, 0, 2586, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33980, 1, 3, 2000, 0, 0, 0, 4634983, 0, 0), +(142, 'w1d7_battle', 'bnpc4635011', 4635011, '67.678963', '-3.638154', '173.726196', 2820, 0, 0, 0, 5, 6, 0, 0, 2586, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36548, 1, 3, 2000, 0, 0, 0, 4635010, 0, 0), +(142, 'w1d7_battle', 'bnpc4635019', 4635019, '-281.528412', '0.010568', '141.592102', 2820, 0, 0, 0, 5, 6, 0, 0, 2586, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33324, 1, 3, 2000, 0, 0, 0, 4635018, 0, 0), +(142, 'w1d7_battle', 'bnpc4649857', 4649857, '-158.159805', '10.696530', '102.250702', 434, 0, 0, 0, 0, 6, 0, 0, 2595, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33124, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4679014', 4679014, '-163.042694', '10.696530', '98.588501', 2817, 0, 0, 0, 0, 6, 0, 0, 2585, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32768, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4679016', 4679016, '-155.321701', '10.696530', '98.588501', 2817, 0, 0, 0, 0, 6, 0, 0, 2585, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32496, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4679931', 4679931, '-59.189758', '14.419740', '61.600590', 2937, 0, 0, 0, 0, 6, 0, 0, 2753, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32314, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4679932', 4679932, '-135.973206', '10.177730', '4.837097', 2936, 0, 0, 0, 0, 6, 0, 0, 2754, 0, '0.000000', 50, 0, 120, 1, 0, 33, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32048, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4679933', 4679933, '-135.973206', '10.177730', '-1.724304', 2936, 0, 0, 0, 0, 6, 0, 0, 2754, 0, '0.000000', 50, 0, 120, 1, 0, 33, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31776, 1, 3, 0, 0, 0, 0, 0, 0, 437), +(142, 'w1d7_battle', 'bnpc4681668', 4681668, '-270.068298', '17.622801', '32.008701', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27432, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4682335', 4682335, '-270.068298', '17.622801', '32.008701', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27160, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4682336', 4682336, '-271.883514', '17.622801', '6.202800', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26888, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4682337', 4682337, '-271.883514', '17.622801', '6.202800', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26616, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4682338', 4682338, '-244.251801', '17.593599', '30.251499', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4682339', 4682339, '-244.251801', '17.593599', '30.251499', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26072, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4682340', 4682340, '-246.038696', '17.593599', '4.371000', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(142, 'w1d7_battle', 'bnpc4682341', 4682341, '-246.038696', '17.593599', '4.371000', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4012541', 4012541, '-499.944489', '-24.206900', '274.711395', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4012542', 4012542, '-496.735107', '-24.822651', '275.516113', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136368, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4012543', 4012543, '-498.215302', '-25.168880', '279.728394', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4012544', 4012544, '-508.450897', '-22.501459', '275.251801', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4012545', 4012545, '-500.246307', '-22.856750', '332.079407', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4012546', 4012546, '-503.241211', '-22.525490', '333.955200', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4012547', 4012547, '-490.592804', '-25.436840', '313.618591', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4012548', 4012548, '-487.602112', '-26.077709', '308.522095', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4012549', 4012549, '-487.632599', '-25.467350', '315.632813', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4012550', 4012550, '-490.196106', '-25.009581', '264.942413', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013205', 4013205, '-304.194305', '-34.543591', '294.601898', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013206', 4013206, '-304.224792', '-33.836750', '301.712585', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013207', 4013207, '-307.184998', '-34.167721', '299.698395', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013208', 4013208, '-370.016113', '-38.010269', '260.669800', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013209', 4013209, '-367.025299', '-37.796638', '255.573303', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013210', 4013210, '-367.055786', '-38.345970', '262.714508', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013211', 4013211, '-393.702789', '-33.147480', '298.410095', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013212', 4013212, '-390.742615', '-33.080891', '300.424286', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013213', 4013213, '-422.867310', '-30.681101', '303.919800', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013214', 4013214, '-421.252197', '-30.134701', '311.575806', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013215', 4013215, '-418.295593', '-29.892469', '313.588104', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013216', 4013216, '-418.261505', '-30.624969', '306.479187', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013222', 4013222, '-228.755997', '-29.250050', '268.198700', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130662, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013224', 4013224, '-259.769104', '-25.814650', '223.363907', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130390, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013225', 4013225, '-248.303101', '-25.635059', '215.703506', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130118, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013226', 4013226, '-244.556595', '-29.157000', '245.735596', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013227', 4013227, '-205.884796', '-28.989929', '252.945099', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013230', 4013230, '-221.465103', '-29.933540', '230.371399', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129302, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013231', 4013231, '-191.527893', '-33.626598', '218.107803', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013232', 4013232, '-179.018005', '-29.188629', '250.063797', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128758, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013234', 4013234, '-175.844193', '-28.984510', '287.393402', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128492, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013235', 4013235, '-189.302597', '-29.714430', '288.949799', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91536, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013236', 4013236, '-180.635498', '-30.361820', '295.114288', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128220, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013237', 4013237, '-155.046997', '-38.834259', '204.882797', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127948, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013238', 4013238, '-140.856094', '-42.038651', '199.298004', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127676, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013239', 4013239, '-147.844696', '-38.864811', '208.361893', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127404, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013244', 4013244, '-152.971695', '-38.651150', '171.557098', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91808, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013245', 4013245, '-122.655197', '-36.402191', '160.250000', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127132, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013246', 4013246, '-125.513298', '-36.825439', '155.686493', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126860, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013248', 4013248, '-240.869400', '-31.567810', '320.527802', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126588, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013249', 4013249, '-235.614594', '-31.418369', '325.917389', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126316, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013250', 4013250, '-222.186707', '-34.622761', '365.438293', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126044, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013251', 4013251, '-253.131897', '-36.331779', '359.212585', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91264, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013254', 4013254, '-287.041687', '-32.065750', '207.250107', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125760, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013255', 4013255, '-284.050995', '-31.622311', '202.123093', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125488, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013256', 4013256, '-284.081512', '-31.907009', '209.264297', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125216, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013262', 4013262, '-273.132507', '-35.872952', '132.381500', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124944, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013263', 4013263, '-270.172211', '-35.967918', '134.395706', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124672, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013264', 4013264, '-270.141693', '-36.277580', '127.254402', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124400, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013266', 4013266, '-259.425812', '-35.518791', '150.542206', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124128, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013267', 4013267, '-256.465515', '-35.526428', '152.556396', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123856, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013445', 4013445, '-149.523193', '-32.364429', '59.342289', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92080, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013479', 4013479, '-159.265594', '-32.346439', '51.098259', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123596, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013480', 4013480, '-151.901093', '-33.007351', '66.556549', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123324, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013481', 4013481, '-100.511200', '-26.840670', '16.128740', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013482', 4013482, '-102.891098', '-28.253700', '23.320940', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123052, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013483', 4013483, '-149.419205', '-28.890289', '2.911655', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122780, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013484', 4013484, '-188.433701', '-27.695169', '-13.168580', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122508, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013485', 4013485, '-199.267593', '-31.357340', '4.409810', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92352, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013486', 4013486, '-182.299606', '-27.603621', '-9.872634', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122236, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013489', 4013489, '-219.226395', '-37.674568', '39.414009', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121964, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013490', 4013490, '-225.360504', '-37.827160', '36.118061', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121692, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013499', 4013499, '-273.627289', '-31.862329', '103.566002', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92624, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013500', 4013500, '-267.855988', '-33.038231', '97.413803', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121420, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013501', 4013501, '-272.429901', '-34.255821', '90.077278', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121148, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013502', 4013502, '-291.837189', '-33.717522', '94.695030', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120876, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013504', 4013504, '-408.834991', '-25.528391', '375.844910', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120592, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013509', 4013509, '-412.414703', '-25.124140', '378.094910', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120320, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013510', 4013510, '-421.050690', '-24.694500', '373.044586', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120048, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013511', 4013511, '-347.292603', '-22.499969', '411.814514', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119776, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013512', 4013512, '-350.892090', '-22.007130', '414.044891', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119504, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013513', 4013513, '-301.048492', '-24.998409', '421.781494', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119232, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013514', 4013514, '-235.065308', '-33.493599', '442.587891', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013515', 4013515, '-231.464096', '-34.195511', '440.359985', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013517', 4013517, '-230.304504', '-33.981892', '443.503387', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013521', 4013521, '-175.050400', '-37.658531', '450.209198', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013522', 4013522, '-175.885300', '-38.533630', '453.905487', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013525', 4013525, '-215.670593', '-35.585159', '459.834106', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013533', 4013533, '99.168327', '-25.375799', '291.493011', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117340, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013534', 4013534, '97.093102', '-25.223209', '297.444092', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117068, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013536', 4013536, '68.684219', '-23.820311', '291.749390', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116796, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013539', 4013539, '92.027107', '-24.063520', '274.555511', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90992, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013550', 4013550, '-370.036499', '-26.139339', '-3.111549', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013552', 4013552, '-377.077698', '-24.934530', '-2.811549', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013553', 4013553, '-374.311096', '-24.946871', '-6.761492', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013554', 4013554, '-361.013214', '-20.157209', '-51.316139', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115696, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013556', 4013556, '-364.370209', '-19.974110', '-48.996769', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115424, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013558', 4013558, '-314.082306', '-25.819000', '-70.030121', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115152, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013559', 4013559, '-316.848907', '-27.254049', '-66.080177', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114880, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013560', 4013560, '-309.807709', '-25.975500', '-66.380173', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013562', 4013562, '-330.224487', '-29.939251', '-43.977570', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114336, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013564', 4013564, '-407.858398', '-15.091220', '-126.360001', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114064, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013565', 4013565, '-411.203003', '-15.113620', '-124.026497', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113792, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013569', 4013569, '-415.904999', '-11.930880', '-136.712494', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113520, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013571', 4013571, '-452.618408', '-8.742622', '-98.281227', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113248, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013572', 4013572, '-449.357788', '-8.414806', '-96.310440', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112976, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013576', 4013576, '-464.105194', '-11.407580', '-129.066101', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112704, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013577', 4013577, '-498.092499', '-9.974959', '-109.458298', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112432, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013580', 4013580, '-502.620789', '-10.577840', '-112.821098', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112160, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013582', 4013582, '-507.470886', '-10.328900', '-110.974403', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111888, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013583', 4013583, '-522.056885', '-4.348868', '-159.960403', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111616, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013584', 4013584, '-523.460815', '-4.837157', '-158.281906', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111344, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013594', 4013594, '-352.898499', '-15.213080', '-143.948807', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111090, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013596', 4013596, '-332.967194', '-12.588740', '-145.708405', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110818, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013605', 4013605, '-332.265198', '-17.044371', '-127.824898', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110546, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013606', 4013606, '-352.598511', '-10.906090', '-168.210007', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110274, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013609', 4013609, '-385.111389', '-7.978566', '-230.465805', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110002, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013611', 4013611, '-331.138092', '-11.882090', '-143.969299', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109730, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013627', 4013627, '-383.286194', '-8.260035', '-224.126007', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109458, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013633', 4013633, '-366.385315', '-16.827869', '-132.410706', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109186, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4013638', 4013638, '-349.540588', '-11.100560', '-235.093994', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108920, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013641', 4013641, '-346.185791', '-11.887330', '-259.764496', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108648, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013642', 4013642, '-344.857910', '-11.892970', '-258.193207', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013645', 4013645, '-327.837799', '-11.400080', '-244.734406', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013647', 4013647, '-309.640594', '-10.000100', '-243.310898', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108104, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013649', 4013649, '-301.356903', '-10.000100', '-247.002197', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013650', 4013650, '-322.462311', '-9.437181', '-225.651001', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107022, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(145, 'w1f3', 'bnpc4013652', 4013652, '-323.876587', '-6.632608', '-212.379700', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107832, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013668', 4013668, '-335.498505', '-12.014050', '-229.725906', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013720', 4013720, '-429.370209', '-1.586753', '-278.570801', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106448, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013721', 4013721, '-430.804504', '-1.625461', '-276.861786', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106176, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013722', 4013722, '-444.877411', '-1.080222', '-258.128387', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105904, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013723', 4013723, '-464.653595', '1.612374', '-285.266113', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105632, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013724', 4013724, '-461.633514', '1.079876', '-282.367096', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105360, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013725', 4013725, '-467.806213', '2.048990', '-283.036896', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105088, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013728', 4013728, '-533.374023', '-6.691851', '-159.632706', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104816, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013735', 4013735, '-450.919403', '-29.068480', '316.700897', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013772', 4013772, '-397.589996', '-23.851999', '392.935089', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013777', 4013777, '-330.837891', '-22.252911', '401.824585', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013778', 4013778, '-318.013306', '-23.819380', '430.685791', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013779', 4013779, '-249.358002', '-33.714100', '429.461487', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013780', 4013780, '-191.484207', '-36.256191', '404.149292', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013781', 4013781, '-190.484894', '-35.487671', '401.923004', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013782', 4013782, '-487.190399', '-25.702749', '201.419907', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013784', 4013784, '-334.884705', '-34.612320', '299.203400', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013785', 4013785, '-312.764191', '-31.815109', '177.660706', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013786', 4013786, '-422.784302', '-34.151939', '243.826904', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013788', 4013788, '-165.697800', '-28.246771', '253.973404', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013792', 4013792, '-54.262890', '-17.705391', '367.731415', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013794', 4013794, '-33.163811', '-19.940189', '365.769714', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013795', 4013795, '-51.895939', '-17.512991', '370.210602', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100772, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013796', 4013796, '78.414223', '-15.939830', '366.048615', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100500, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013798', 4013798, '7.173542', '-23.354309', '329.441010', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100228, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013804', 4013804, '-166.105103', '-28.583521', '251.194107', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99956, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013807', 4013807, '-96.303726', '-54.621849', '189.374496', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99684, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013809', 4013809, '-129.643600', '-41.051750', '105.021004', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99412, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013811', 4013811, '-131.669601', '-27.426109', '-54.776691', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99140, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013813', 4013813, '-173.987106', '-33.616089', '-39.161282', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98868, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013815', 4013815, '-175.831604', '-33.870190', '-41.495399', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98596, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013816', 4013816, '-205.031403', '-33.039600', '-67.334999', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013818', 4013818, '-281.004791', '-32.283211', '-47.466839', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013819', 4013819, '-366.248810', '-37.056171', '28.697981', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97780, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013820', 4013820, '-548.804321', '-10.844810', '-120.767998', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013821', 4013821, '-547.929016', '-10.919210', '-118.103897', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013822', 4013822, '-505.184814', '-5.976281', '-148.866592', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013823', 4013823, '-411.073914', '-31.135130', '46.428162', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013824', 4013824, '-430.816315', '-29.355061', '29.829710', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013825', 4013825, '-424.892914', '-28.321070', '3.818028', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013826', 4013826, '-455.293610', '-28.139351', '76.774193', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013827', 4013827, '-457.516510', '-27.855551', '79.493294', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013828', 4013828, '-479.286011', '-25.295200', '93.214996', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013829', 4013829, '-527.688721', '-21.083590', '110.860397', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013830', 4013830, '-536.720886', '-18.332451', '74.782097', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013831', 4013831, '-553.551880', '-16.714809', '84.756439', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013832', 4013832, '-510.295288', '-19.041250', '45.220119', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013833', 4013833, '-485.247589', '-20.332100', '48.307430', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013834', 4013834, '-458.042603', '-21.417490', '14.689170', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013835', 4013835, '-459.737488', '-21.394270', '13.442860', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013836', 4013836, '-484.622711', '-17.327000', '0.944125', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013837', 4013837, '-498.477814', '-17.417601', '25.127859', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013849', 4013849, '-140.192505', '-30.609131', '309.013794', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86380, 1, 0, 0, 0, 19, 30058, 0, 0, 0), +(145, 'w1f3', 'bnpc4013851', 4013851, '-50.371601', '-27.557119', '321.120697', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85564, 1, 0, 0, 0, 19, 30058, 0, 0, 0), +(145, 'w1f3', 'bnpc4013857', 4013857, '-76.608521', '-27.621309', '289.534302', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86108, 1, 0, 0, 0, 19, 30059, 0, 0, 0), +(145, 'w1f3', 'bnpc4013859', 4013859, '-105.272003', '-29.404169', '285.419891', 735, 0, 0, 0, 1, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85836, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(145, 'w1f3', 'bnpc4013864', 4013864, '-122.575798', '-30.167110', '296.284302', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85298, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(145, 'w1f3', 'bnpc4013865', 4013865, '-70.664551', '-27.908751', '300.739990', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84482, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(145, 'w1f3', 'bnpc4013866', 4013866, '-71.732674', '-27.084780', '289.021088', 737, 0, 0, 0, 0, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85026, 1, 0, 0, 0, 19, 30060, 0, 0, 0), +(145, 'w1f3', 'bnpc4013867', 4013867, '-109.317596', '-27.427130', '345.218903', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84754, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(145, 'w1f3', 'bnpc4013868', 4013868, '146.652603', '-5.540083', '412.411499', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013869', 4013869, '144.284500', '-5.955482', '411.455200', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013870', 4013870, '145.884995', '-5.941638', '404.887695', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013872', 4013872, '136.158096', '-6.723706', '412.478790', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013873', 4013873, '140.986099', '-6.708030', '406.031189', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013874', 4013874, '137.354004', '-7.302959', '404.747009', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4013877', 4013877, '127.735001', '-8.321562', '406.855713', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4014958', 4014958, '20.401260', '2.731318', '-54.520531', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83704, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015589', 4015589, '31.067261', '2.425304', '-70.573143', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83432, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015593', 4015593, '48.749241', '5.676062', '-102.147301', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83160, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015594', 4015594, '35.250210', '6.228703', '-92.927460', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82888, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015595', 4015595, '67.637573', '4.351546', '-87.514160', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82616, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015596', 4015596, '54.489922', '0.411947', '-65.110291', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015598', 4015598, '7.965932', '1.085048', '-77.601852', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82072, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015605', 4015605, '9.769605', '1.369744', '-80.136017', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015668', 4015668, '104.484001', '4.846275', '-63.102379', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015674', 4015674, '102.296700', '4.972450', '-66.202560', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015676', 4015676, '96.732941', '3.052606', '-62.312988', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015678', 4015678, '99.597008', '8.227051', '-90.531860', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015691', 4015691, '141.042694', '10.713930', '-50.547859', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015696', 4015696, '141.342697', '10.968710', '-54.225460', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015701', 4015701, '108.271400', '-2.418733', '-8.458347', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015704', 4015704, '106.417397', '-2.650057', '-10.997480', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015706', 4015706, '97.733994', '-3.219701', '2.456656', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015707', 4015707, '30.234659', '-13.926860', '41.901440', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015709', 4015709, '27.316900', '-15.302890', '44.688141', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015711', 4015711, '67.083893', '-9.601854', '56.893761', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015718', 4015718, '73.500443', '-4.948884', '24.766541', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4015720', 4015720, '70.143448', '-5.095084', '22.416651', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4016500', 4016500, '104.692101', '-11.093380', '148.271896', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77732, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(145, 'w1f3', 'bnpc4016539', 4016539, '107.896500', '-11.093380', '147.508896', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77460, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(145, 'w1f3', 'bnpc4016540', 4016540, '100.724701', '-10.660250', '120.341797', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77188, 1, 0, 0, 0, 9, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4016541', 4016541, '99.180260', '-10.555300', '116.451401', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76916, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(145, 'w1f3', 'bnpc4016542', 4016542, '136.732193', '-7.571920', '111.707901', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76644, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(145, 'w1f3', 'bnpc4016543', 4016543, '109.599403', '-4.406592', '97.184692', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76372, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(145, 'w1f3', 'bnpc4016544', 4016544, '110.955200', '-4.201653', '88.662132', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76100, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(145, 'w1f3', 'bnpc4016545', 4016545, '113.349701', '-3.809178', '95.995033', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75828, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(145, 'w1f3', 'bnpc4016546', 4016546, '116.990799', '-8.926575', '119.340698', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75556, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(145, 'w1f3', 'bnpc4016549', 4016549, '132.524506', '-4.867676', '80.796509', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75284, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(145, 'w1f3', 'bnpc4016552', 4016552, '172.457306', '13.025480', '-52.917801', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75018, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(145, 'w1f3', 'bnpc4016557', 4016557, '176.353500', '14.358130', '-73.066628', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74746, 1, 0, 0, 0, 31, 30060, 0, 0, 0), +(145, 'w1f3', 'bnpc4016560', 4016560, '200.762894', '12.344500', '-41.489330', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74474, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(145, 'w1f3', 'bnpc4016946', 4016946, '178.545807', '14.145070', '-76.310410', 168, 0, 0, 0, 0, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74208, 1, 0, 0, 0, 31, 30060, 0, 0, 0), +(145, 'w1f3', 'bnpc4016949', 4016949, '157.244202', '11.490000', '-28.885370', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73936, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(145, 'w1f3', 'bnpc4016957', 4016957, '194.933899', '11.673100', '-34.256550', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73664, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(145, 'w1f3', 'bnpc4017619', 4017619, '180.407394', '10.330310', '-23.086950', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73386, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(145, 'w1f3', 'bnpc4017833', 4017833, '165.697693', '9.414769', '0.106766', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73120, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(145, 'w1f3', 'bnpc4017881', 4017881, '267.688995', '7.156434', '-121.568703', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4017882', 4017882, '256.488800', '7.736277', '-113.023598', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72588, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4017883', 4017883, '277.515808', '7.583686', '-116.807899', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72322, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4017891', 4017891, '272.907501', '17.593611', '-157.701996', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4017892', 4017892, '270.862915', '16.861151', '-151.415298', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4017893', 4017893, '257.892700', '16.006670', '-153.185394', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4017899', 4017899, '240.680496', '7.431091', '-122.636803', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4017900', 4017900, '243.182999', '7.370056', '-117.753899', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4017901', 4017901, '258.381012', '12.313960', '-138.811295', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4017921', 4017921, '138.353500', '9.506287', '-146.349304', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70424, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4017927', 4017927, '115.709099', '11.123780', '-141.435898', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70152, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4017928', 4017928, '212.176605', '3.555298', '-181.902802', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69880, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4017929', 4017929, '219.897705', '3.799438', '-195.117096', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69608, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4017932', 4017932, '278.370300', '8.041457', '-218.646606', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69336, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4017937', 4017937, '289.906097', '11.551030', '-240.192307', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69064, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4017941', 4017941, '373.476013', '20.829370', '-239.892303', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68792, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4017942', 4017942, '356.299500', '14.980250', '-225.505997', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68520, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4017945', 4017945, '404.706909', '22.897909', '-197.807907', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68248, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4017950', 4017950, '298.207001', '5.264315', '-172.350693', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4017954', 4017954, '134.599701', '8.987488', '-116.411102', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4017972', 4017972, '189.930405', '-1.185125', '27.687700', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4017978', 4017978, '193.187805', '-1.444422', '30.281919', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4017981', 4017981, '228.766998', '3.164756', '31.533100', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4017985', 4017985, '259.187988', '10.854590', '-0.979421', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4017987', 4017987, '256.991486', '10.906030', '-1.850262', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4017989', 4017989, '263.108002', '12.374600', '-6.144668', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4017999', 4017999, '144.542801', '-1.822149', '25.260910', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018003', 4018003, '118.866699', '-3.156176', '35.166130', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018006', 4018006, '152.788498', '-3.677471', '45.426060', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018007', 4018007, '149.431503', '-3.524881', '43.076172', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018008', 4018008, '148.638107', '-3.585917', '46.951962', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018022', 4018022, '94.621094', '3.248499', '83.127548', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64404, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(145, 'w1f3', 'bnpc4018023', 4018023, '95.261963', '2.700867', '72.495613', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(145, 'w1f3', 'bnpc4018024', 4018024, '96.513313', '3.431219', '83.543091', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63860, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(145, 'w1f3', 'bnpc4018102', 4018102, '97.606216', '6.518048', '-80.554100', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018103', 4018103, '118.155403', '9.586515', '-100.878799', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018104', 4018104, '120.378304', '9.628418', '-99.046333', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018105', 4018105, '131.592499', '8.266950', '-67.253014', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018106', 4018106, '58.518299', '-3.494363', '-48.813660', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018108', 4018108, '90.160843', '-1.231179', '-48.488152', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018109', 4018109, '75.582893', '-5.687634', '-3.987827', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018110', 4018110, '48.298389', '-10.503780', '42.532669', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018112', 4018112, '90.491623', '-2.237890', '36.720051', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018113', 4018113, '93.131050', '-2.135577', '38.381100', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018115', 4018115, '112.673203', '-2.455007', '13.961960', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018117', 4018117, '127.625603', '-3.590302', '53.494831', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018118', 4018118, '188.733200', '4.905004', '3.896455', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018120', 4018120, '219.065399', '11.690500', '5.996748', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018121', 4018121, '216.593399', '11.322950', '7.522650', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018122', 4018122, '241.927307', '7.629051', '9.728237', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018125', 4018125, '268.848206', '8.777798', '13.353050', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59278, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018127', 4018127, '270.080994', '9.039959', '11.601690', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59006, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018129', 4018129, '158.682999', '14.718640', '-63.220341', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58734, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018133', 4018133, '188.223907', '10.030940', '-97.774307', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58462, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018134', 4018134, '166.552094', '8.773865', '-94.346558', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018137', 4018137, '163.958099', '6.301941', '-142.320999', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018141', 4018141, '160.723297', '6.515503', '-139.940598', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018142', 4018142, '218.860107', '3.097534', '-168.047699', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018143', 4018143, '231.647202', '5.874695', '-136.827698', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018152', 4018152, '228.137604', '4.013123', '-233.386795', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018154', 4018154, '270.251190', '8.134529', '-236.478806', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018156', 4018156, '267.750397', '7.438218', '-233.682907', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018157', 4018157, '316.072815', '12.832880', '-231.256195', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018159', 4018159, '316.372803', '6.627599', '-200.028305', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018161', 4018161, '363.549500', '16.893539', '-200.111694', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018165', 4018165, '365.959412', '17.232080', '-197.356705', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018171', 4018171, '32.567570', '2.131757', '-61.269958', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54926, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018175', 4018175, '68.556648', '3.005930', '-78.273499', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54654, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018177', 4018177, '70.294853', '2.807336', '-76.142509', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018218', 4018218, '-299.646698', '-38.938461', '29.649010', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88544, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018219', 4018219, '-291.777802', '-38.764221', '32.025139', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88236, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018220', 4018220, '-333.157501', '-38.096481', '14.837530', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87964, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018223', 4018223, '-450.400604', '-30.487301', '217.028503', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018224', 4018224, '-437.057800', '-30.783661', '234.972397', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018225', 4018225, '-439.601105', '-30.769150', '236.646896', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018228', 4018228, '-364.140503', '-35.208920', '210.519699', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018229', 4018229, '-361.718689', '-35.490021', '212.068604', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86592, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018449', 4018449, '408.621307', '7.003844', '139.543701', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53252, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018452', 4018452, '410.757507', '7.095398', '140.581299', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52980, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018453', 4018453, '405.539001', '6.301929', '141.710495', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52708, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018455', 4018455, '433.269897', '13.745850', '117.412903', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52436, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018459', 4018459, '458.291687', '14.700790', '137.946793', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018460', 4018460, '456.601501', '14.747650', '135.462296', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51892, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018462', 4018462, '435.268585', '6.480499', '160.338593', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51620, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018465', 4018465, '340.566010', '-7.949997', '150.988007', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51348, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018513', 4018513, '186.169693', '-31.149429', '258.258911', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51076, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018518', 4018518, '231.316696', '-44.052341', '271.940186', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50804, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018520', 4018520, '230.185699', '-44.115601', '274.394501', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50532, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018521', 4018521, '202.469299', '-14.894620', '157.281494', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50260, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018526', 4018526, '204.195099', '-14.686260', '155.274399', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49988, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018531', 4018531, '215.699997', '-14.748440', '162.191299', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018535', 4018535, '230.609497', '-15.671060', '152.147705', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018536', 4018536, '234.454803', '-15.945720', '152.452805', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018541', 4018541, '316.582214', '-12.778530', '171.745605', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018544', 4018544, '341.519897', '-7.554129', '153.111801', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018546', 4018546, '280.363190', '-10.464180', '157.039001', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018548', 4018548, '277.401794', '-10.433680', '158.329605', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018550', 4018550, '298.631104', '-17.845301', '138.619705', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018552', 4018552, '300.514313', '-17.990530', '137.021698', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018553', 4018553, '304.173004', '-16.961420', '140.928604', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018557', 4018557, '288.870209', '-20.820299', '112.120399', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018560', 4018560, '286.831604', '-20.760210', '113.868401', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018565', 4018565, '384.634094', '-8.041552', '208.148300', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46458, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018574', 4018574, '375.753387', '-8.651917', '202.716095', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46186, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018575', 4018575, '337.562012', '-6.490084', '196.335602', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018585', 4018585, '322.451508', '0.360318', '232.339203', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018587', 4018587, '332.444611', '-2.041133', '221.043106', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018590', 4018590, '322.120911', '0.721062', '236.863403', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018591', 4018591, '343.012787', '-5.424837', '244.845795', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44826, 5, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(145, 'w1f3', 'bnpc4018594', 4018594, '294.422791', '2.151475', '226.428604', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44554, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018597', 4018597, '399.075592', '-20.838551', '256.768402', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44282, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018599', 4018599, '395.043915', '-20.189211', '256.316895', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44010, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018600', 4018600, '388.906586', '-19.852030', '278.797485', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43738, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018602', 4018602, '439.887085', '-33.409691', '296.645996', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43466, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018603', 4018603, '464.315399', '-42.298431', '269.112213', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43194, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018604', 4018604, '464.615387', '-42.545731', '274.560486', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42922, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018605', 4018605, '494.224304', '-55.678349', '265.046295', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42650, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018653', 4018653, '494.524292', '-63.894562', '233.206802', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42378, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018656', 4018656, '453.035309', '-64.522003', '255.129593', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42106, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018657', 4018657, '441.404510', '-64.788147', '246.034805', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41834, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018658', 4018658, '444.123810', '-64.620087', '241.737396', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41562, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018661', 4018661, '439.902802', '-20.658911', '226.785904', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41290, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018662', 4018662, '443.246185', '-19.347570', '231.567505', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41018, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018663', 4018663, '446.924286', '-17.912411', '214.384598', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40746, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018664', 4018664, '483.668396', '-8.428408', '232.612701', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40474, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018667', 4018667, '485.972687', '-7.855111', '227.039703', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40202, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(145, 'w1f3', 'bnpc4018683', 4018683, '420.139191', '10.932210', '126.607399', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018685', 4018685, '447.669708', '11.251440', '147.314606', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39664, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018687', 4018687, '388.530914', '-9.116596', '196.378998', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018688', 4018688, '383.230286', '-18.143021', '263.599487', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018693', 4018693, '267.754089', '-4.105820', '247.045593', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018694', 4018694, '430.037811', '-64.649399', '210.820694', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38576, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018697', 4018697, '441.279785', '-64.462044', '202.846802', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38304, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018699', 4018699, '456.870789', '-14.453500', '215.100906', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018700', 4018700, '482.293304', '-7.656506', '258.934692', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018711', 4018711, '319.466095', '-21.198891', '117.792198', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018714', 4018714, '287.041992', '-19.224710', '132.121902', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018719', 4018719, '256.611511', '-16.890450', '168.769501', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018721', 4018721, '226.084503', '-3.171931', '186.594803', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4018722', 4018722, '228.457001', '-3.558112', '189.543701', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4021495', 4021495, '290.852203', '7.003784', '-131.212296', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4021497', 4021497, '290.089203', '6.881775', '-132.860397', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4057678', 4057678, '-430.180603', '-37.593121', '175.636093', 792, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21986, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(145, 'w1f3', 'bnpc4057682', 4057682, '-445.348114', '-30.229731', '50.185131', 791, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21720, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(145, 'w1f3', 'bnpc4057686', 4057686, '-332.421600', '-42.604149', '42.912781', 793, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21454, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(145, 'w1f3', 'bnpc4621848', 4621848, '-77.749184', '-58.466881', '167.597900', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22594, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(145, 'w1f3', 'bnpc4621849', 4621849, '235.769302', '-44.305069', '271.670990', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22328, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4057759', 4057759, '-167.171906', '25.428049', '-361.451508', 798, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27716, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(146, 'w1f4', 'bnpc4057772', 4057772, '-250.234695', '27.956100', '-323.354889', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27450, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(146, 'w1f4', 'bnpc4057782', 4057782, '-56.647308', '26.533920', '-382.801697', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27184, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(146, 'w1f4', 'bnpc4057793', 4057793, '-250.333099', '7.167006', '413.444885', 1342, 0, 0, 0, 0, 6, 0, 0, 1278, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26918, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(146, 'w1f4', 'bnpc4128048', 4128048, '-402.311707', '13.399570', '-383.545898', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128049', 4128049, '-398.984802', '13.399560', '-382.573486', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128050', 4128050, '-398.703003', '13.473630', '-399.130188', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128051', 4128051, '-349.172211', '14.053470', '-371.236786', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128052', 4128052, '-363.032715', '12.848900', '-352.263092', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128053', 4128053, '-344.625000', '14.389220', '-374.166504', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128054', 4128054, '-361.864685', '12.175190', '-319.089905', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128055', 4128055, '-357.923309', '12.323080', '-315.838715', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128056', 4128056, '-366.900909', '12.044570', '-313.915009', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128057', 4128057, '-345.540588', '14.114500', '-368.795288', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128058', 4128058, '-306.752106', '19.363649', '-347.920990', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128059', 4128059, '-303.998688', '19.825630', '-345.763611', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128061', 4128061, '-329.335510', '13.992490', '-311.024689', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128062', 4128062, '-334.273499', '12.735820', '-272.286011', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128063', 4128063, '-332.188293', '12.773240', '-274.762512', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128064', 4128064, '-275.553406', '19.811119', '-300.743988', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128065', 4128065, '-277.943207', '19.468559', '-300.616791', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128066', 4128066, '-216.697205', '19.814110', '-291.068909', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128067', 4128067, '-219.086899', '19.669310', '-290.941803', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128068', 4128068, '-215.855301', '18.862061', '-286.262787', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128069', 4128069, '-251.503403', '17.336300', '-282.862091', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155656, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128071', 4128071, '-277.037994', '27.629240', '-446.633911', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155390, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128072', 4128072, '-293.590302', '20.134371', '-406.301605', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128073', 4128073, '-241.107803', '23.575130', '-427.206787', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154846, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128074', 4128074, '-233.356293', '23.788820', '-423.636292', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128075', 4128075, '-192.850494', '24.439541', '-471.427490', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128076', 4128076, '-225.719101', '22.713610', '-511.794586', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128078', 4128078, '-234.581894', '23.154600', '-503.730499', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128080', 4128080, '-99.297150', '11.812300', '-624.887512', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128081', 4128081, '-101.063499', '14.100460', '-548.412415', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128082', 4128082, '-57.090172', '5.200434', '-542.299622', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128083', 4128083, '-1.143898', '7.618513', '-528.769287', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128085', 4128085, '5.080926', '7.618519', '-537.079224', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128089', 4128089, '-156.176102', '17.047890', '-567.528198', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128090', 4128090, '-129.437500', '14.855080', '-587.989197', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128095', 4128095, '-28.120790', '6.618664', '-619.769470', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151576, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128096', 4128096, '-29.463200', '6.619354', '-617.967285', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151304, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128097', 4128097, '-24.055080', '6.620687', '-614.076782', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151032, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128098', 4128098, '-25.895201', '4.928910', '-647.637573', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150760, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128099', 4128099, '-12.619260', '4.562378', '-658.594727', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150488, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128100', 4128100, '-9.942262', '4.207929', '-660.454895', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150216, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128102', 4128102, '-63.811069', '7.713764', '-671.437012', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149944, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128103', 4128103, '-56.610531', '6.680237', '-675.225220', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149672, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128104', 4128104, '-63.511070', '7.475504', '-669.236084', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149400, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128105', 4128105, '-82.276627', '12.964970', '-712.882813', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149128, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128106', 4128106, '-75.376091', '12.702090', '-718.871826', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148856, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128107', 4128107, '-82.576622', '13.183150', '-715.083679', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148584, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128108', 4128108, '-92.149231', '14.084050', '-719.172974', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128109', 4128109, '-50.418240', '10.700190', '-716.867188', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128110', 4128110, '-36.628948', '10.796120', '-721.924072', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128111', 4128111, '-34.110340', '9.565180', '-718.908081', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128112', 4128112, '-22.776590', '6.822047', '-697.630371', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128113', 4128113, '39.229660', '3.128414', '-685.332397', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128114', 4128114, '36.552662', '2.610799', '-683.472229', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128115', 4128115, '42.912899', '6.469104', '-652.670776', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128119', 4128119, '-65.089844', '4.250028', '-634.668091', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128250', 4128250, '40.021858', '6.264256', '-433.494293', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128252', 4128252, '55.418652', '12.390480', '-491.216187', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128253', 4128253, '77.684799', '10.281420', '-468.654602', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128254', 4128254, '89.542992', '10.303750', '-428.138397', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128255', 4128255, '137.875504', '10.065270', '-451.167206', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128256', 4128256, '35.210232', '9.730854', '-485.420990', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128257', 4128257, '183.695404', '14.216050', '-465.348206', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128258', 4128258, '-100.389198', '14.631890', '-227.392395', 2259, 0, 0, 0, 1, 6, 0, 0, 1998, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123312, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128259', 4128259, '-97.276253', '14.631890', '-215.328506', 2260, 0, 0, 0, 1, 6, 0, 0, 1999, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123046, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128260', 4128260, '-75.621529', '14.631890', '-214.231506', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128261', 4128261, '-120.924698', '14.520920', '-211.301697', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128262', 4128262, '-73.457458', '14.731040', '-236.287506', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128263', 4128263, '-89.280579', '15.629060', '-251.062103', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128264', 4128264, '-112.932098', '15.533810', '-246.046600', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128265', 4128265, '-121.350601', '14.949070', '-239.633499', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128269', 4128269, '-1.754883', '15.457340', '-292.500214', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142358, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(146, 'w1f4', 'bnpc4128270', 4128270, '-5.172852', '15.518430', '-288.410797', 169, 0, 0, 0, 0, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142092, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4128271', 4128271, '-26.595400', '16.964270', '-310.556000', 169, 0, 0, 0, 1, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141820, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4128272', 4128272, '-6.968165', '15.539780', '-293.998108', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141542, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4128273', 4128273, '-3.867146', '14.547090', '-326.988495', 169, 0, 0, 0, 0, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141276, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(146, 'w1f4', 'bnpc4128274', 4128274, '-1.742153', '14.339200', '-330.423615', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140998, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(146, 'w1f4', 'bnpc4128275', 4128275, '-16.894220', '15.891530', '-344.307587', 169, 0, 0, 0, 1, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140732, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4128276', 4128276, '-36.352852', '15.737740', '-281.239685', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140454, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4128285', 4128285, '86.811409', '3.880296', '-641.041382', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140194, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(146, 'w1f4', 'bnpc4129531', 4129531, '154.758194', '4.167945', '-538.420471', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139922, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(146, 'w1f4', 'bnpc4129542', 4129542, '86.147247', '2.628398', '-610.838013', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139656, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4130363', 4130363, '99.626099', '3.646851', '-655.359680', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4130365', 4130365, '137.834702', '3.433289', '-594.293091', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139112, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4130366', 4130366, '148.899902', '5.148987', '-530.581482', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138840, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4130369', 4130369, '124.284698', '2.822876', '-604.577820', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138562, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(146, 'w1f4', 'bnpc4130372', 4130372, '124.864502', '2.731323', '-606.225708', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138296, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(146, 'w1f4', 'bnpc4130374', 4130374, '161.030197', '2.624552', '-609.139282', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138018, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4130377', 4130377, '161.330200', '3.682087', '-563.744324', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137746, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4130378', 4130378, '98.850403', '6.344423', '-544.399780', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137480, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(146, 'w1f4', 'bnpc4130379', 4130379, '100.378799', '6.344423', '-543.894287', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137202, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(146, 'w1f4', 'bnpc4130380', 4130380, '11.922580', '6.840849', '-592.719177', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136936, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(146, 'w1f4', 'bnpc4130381', 4130381, '13.302400', '7.038995', '-591.807983', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136658, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(146, 'w1f4', 'bnpc4130382', 4130382, '19.505831', '19.298901', '-624.247314', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136392, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(146, 'w1f4', 'bnpc4130383', 4130383, '20.782539', '19.319000', '-625.061401', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136114, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(146, 'w1f4', 'bnpc4130386', 4130386, '37.483280', '18.026581', '-609.961670', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135848, 1, 0, 0, 0, 20, 30072, 0, 0, 0), +(146, 'w1f4', 'bnpc4130388', 4130388, '36.074890', '17.983601', '-608.959229', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135570, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(146, 'w1f4', 'bnpc4130389', 4130389, '37.643921', '17.440981', '-596.398926', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135298, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4130390', 4130390, '24.155029', '17.990360', '-604.119995', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135032, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4130403', 4130403, '22.943991', '6.252352', '-608.046997', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134754, 1, 0, 0, 0, 20, 30083, 0, 0, 0), +(146, 'w1f4', 'bnpc4130404', 4130404, '38.940979', '7.903199', '-595.086975', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134488, 1, 0, 0, 0, 20, 30077, 0, 0, 0), +(146, 'w1f4', 'bnpc4130431', 4130431, '66.514038', '9.567322', '-576.257019', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134216, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4130432', 4130432, '18.704010', '7.066027', '-628.667725', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133938, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4130682', 4130682, '95.351791', '6.393626', '-542.884888', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133666, 1, 0, 0, 0, 20, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4130683', 4130683, '84.609253', '6.344424', '-545.683472', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133400, 1, 0, 0, 0, 20, 30077, 0, 0, 0), +(146, 'w1f4', 'bnpc4130705', 4130705, '92.140930', '6.705567', '-559.693420', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133128, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4130708', 4130708, '98.243317', '6.344424', '-537.346680', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132850, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4130800', 4130800, '-385.468414', '13.547760', '-376.772614', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4130805', 4130805, '-326.314209', '15.945620', '-388.265808', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4130806', 4130806, '-305.992188', '11.810610', '-274.036194', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4130807', 4130807, '-231.864395', '4.434839', '-243.585495', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4130808', 4130808, '-229.445007', '4.279073', '-242.303406', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4130809', 4130809, '-189.227203', '19.363649', '-294.819611', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4130811', 4130811, '-71.915771', '15.823550', '-267.627991', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4130813', 4130813, '-70.176270', '15.579410', '-265.919006', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4130814', 4130814, '-119.981796', '19.729919', '-275.562714', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4130819', 4130819, '-21.895340', '6.009452', '-485.204193', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4130821', 4130821, '-26.265631', '3.170915', '-553.012085', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4130827', 4130827, '-105.577202', '20.767460', '-487.358002', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4130829', 4130829, '-155.776306', '20.648140', '-534.493225', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4130832', 4130832, '-62.007500', '3.030127', '-631.860474', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4130836', 4130836, '-61.692261', '4.837097', '-580.163330', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4130839', 4130839, '-91.172493', '13.691580', '-698.557617', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4130842', 4130842, '-16.285299', '3.398638', '-675.862915', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4131461', 4131461, '82.139282', '2.612924', '-669.048584', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4131466', 4131466, '80.602791', '2.681827', '-667.547119', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4131467', 4131467, '142.968597', '2.741290', '-677.939270', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4131470', 4131470, '166.607895', '8.180286', '-517.830872', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4131473', 4131473, '97.571892', '10.129180', '-455.764313', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4131477', 4131477, '48.494888', '6.708367', '-437.703308', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4131480', 4131480, '12.300930', '7.902957', '-513.924316', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4131487', 4131487, '-19.243019', '5.989767', '-481.780304', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4131489', 4131489, '45.965000', '4.000000', '-353.260895', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4131491', 4131491, '44.038780', '4.000000', '-355.090515', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4131492', 4131492, '-277.563599', '21.317619', '-408.466705', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4131494', 4131494, '-220.691895', '23.733870', '-445.561493', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4131495', 4131495, '-203.367996', '20.050930', '-538.838074', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132134', 4132134, '-23.739849', '6.019080', '-587.944885', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124382, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132161', 4132161, '-219.349106', '4.013124', '-175.605194', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132178', 4132178, '-223.713196', '3.981025', '-172.004196', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132179', 4132179, '-217.822601', '5.111694', '-152.941193', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132181', 4132181, '-255.092102', '4.214314', '-101.690002', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132182', 4132182, '-260.379913', '3.866467', '-142.158005', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120264, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132184', 4132184, '-284.843506', '4.387352', '-61.849739', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119992, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132186', 4132186, '-281.833313', '4.514743', '-60.248520', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132187', 4132187, '-330.772186', '4.539914', '-70.267380', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132191', 4132191, '-395.325806', '4.134359', '-44.501831', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132194', 4132194, '-412.872314', '3.503397', '-46.007912', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132197', 4132197, '-392.828613', '4.906980', '-40.147282', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132355', 4132355, '-121.233002', '7.370056', '452.140015', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90682, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132356', 4132356, '-38.284969', '7.583679', '405.569489', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118360, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132357', 4132357, '-30.167110', '8.163513', '413.107391', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118088, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132358', 4132358, '-78.294067', '8.377136', '475.181000', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90410, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132359', 4132359, '-112.962601', '7.400574', '493.125702', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90138, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132360', 4132360, '-118.791496', '6.423950', '489.219513', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89866, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132361', 4132361, '-4.867676', '10.116700', '466.422485', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117816, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132362', 4132362, '74.448730', '8.224609', '416.708588', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117544, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132363', 4132363, '-96.391296', '12.802250', '545.708374', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117272, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132364', 4132364, '-162.951096', '7.675232', '421.805206', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89594, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132367', 4132367, '-195.513901', '8.987488', '460.166290', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89322, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4132371', 4132371, '-247.455597', '14.572330', '601.159729', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132373', 4132373, '-265.674896', '14.389220', '594.628723', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132374', 4132374, '-409.506897', '2.863013', '643.319275', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132375', 4132375, '-373.173615', '1.482062', '830.041687', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132376', 4132376, '-303.572998', '0.554237', '737.432800', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132377', 4132377, '-285.938812', '8.895996', '674.952271', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115664, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132378', 4132378, '-321.243011', '0.748059', '738.623108', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132379', 4132379, '-228.992203', '-0.198364', '779.568115', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132381', 4132381, '-214.807693', '1.408311', '692.128296', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132385', 4132385, '30.807980', '25.375731', '552.178101', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114576, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132386', 4132386, '86.625488', '18.020809', '513.389587', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114304, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132387', 4132387, '152.666504', '8.346619', '585.931030', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114032, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(146, 'w1f4', 'bnpc4132389', 4132389, '95.506104', '14.938600', '536.278198', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132390', 4132390, '-41.311451', '8.914728', '618.996887', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132391', 4132391, '55.148140', '12.639380', '622.588928', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132394', 4132394, '99.351440', '5.569519', '656.366699', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132395', 4132395, '49.166569', '12.003170', '629.394592', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132398', 4132398, '-155.296402', '-0.249691', '684.087891', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112406, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132402', 4132402, '-128.552399', '-6.248472', '698.360413', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132403', 4132403, '-82.598297', '-7.092235', '672.947815', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132404', 4132404, '-47.857578', '-2.212809', '690.802612', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132405', 4132405, '-43.152802', '-0.921682', '679.936829', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132406', 4132406, '-28.558571', '-0.125700', '752.652527', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132407', 4132407, '-54.816002', '-0.469275', '771.766785', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132408', 4132408, '-157.322098', '-1.367114', '781.628418', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132409', 4132409, '-162.195999', '-0.433001', '772.940186', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132410', 4132410, '-153.362198', '0.387354', '735.776123', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132411', 4132411, '-99.790901', '-2.270120', '789.114685', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132415', 4132415, '-174.253799', '4.062513', '619.920715', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109408, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4132416', 4132416, '103.926498', '3.903357', '915.233887', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4133094', 4133094, '136.949707', '3.216623', '756.322510', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4133095', 4133095, '256.006012', '6.944463', '820.505676', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108604, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4133096', 4133096, '200.758102', '5.104731', '868.748230', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4133097', 4133097, '152.132797', '4.348816', '821.800720', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108060, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4133098', 4133098, '194.324295', '4.776027', '863.148987', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107788, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4133099', 4133099, '229.417892', '4.637394', '902.513123', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107516, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4133100', 4133100, '83.255379', '4.406397', '848.491577', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107244, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4133102', 4133102, '-428.485687', '5.673192', '569.950806', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106978, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4133105', 4133105, '-431.695404', '7.408978', '526.095520', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4133106', 4133106, '-391.061707', '7.983613', '532.203613', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106434, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4133107', 4133107, '-311.320892', '6.989801', '543.801514', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106162, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4133108', 4133108, '-385.831696', '6.261216', '581.952576', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105890, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4133109', 4133109, '-404.812103', '8.978989', '481.090607', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105618, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4133111', 4133111, '-435.612488', '7.492519', '530.732178', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4133112', 4133112, '-368.011810', '7.345028', '545.098206', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105074, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4133142', 4133142, '2.160542', '13.238140', '867.918884', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133143', 4133143, '-9.752866', '13.238140', '862.073975', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104452, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133146', 4133146, '-38.601059', '-3.610238', '870.833984', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104180, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133147', 4133147, '3.913166', '5.198262', '844.633179', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133149', 4133149, '-23.697269', '-3.494385', '830.106018', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103636, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133150', 4133150, '-47.257198', '-4.837158', '821.164185', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133152', 4133152, '-99.204224', '-4.564651', '854.179871', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103092, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133153', 4133153, '-91.265266', '-5.356507', '842.750183', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133155', 4133155, '-104.580101', '-4.512669', '850.706116', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102542, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133160', 4133160, '-40.085510', '-3.585876', '880.033630', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102270, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133166', 4133166, '23.838100', '-0.302399', '832.912781', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133167', 4133167, '31.011000', '5.208305', '877.738525', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101732, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133171', 4133171, '23.808920', '0.563182', '709.098083', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101520, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133175', 4133175, '-208.948196', '-2.203250', '889.001587', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101272, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133854', 4133854, '-169.319504', '-3.498206', '849.864197', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101000, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133856', 4133856, '-294.270294', '5.081238', '808.072021', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100728, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133857', 4133857, '-252.533798', '3.371831', '695.150513', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100456, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133858', 4133858, '-360.768585', '11.544860', '664.182312', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100184, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133859', 4133859, '-93.662338', '7.398253', '582.921509', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99912, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133860', 4133860, '-173.964798', '7.509760', '511.382202', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133861', 4133861, '-63.357861', '7.614773', '373.184204', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99368, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133862', 4133862, '30.766090', '9.412603', '441.489288', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133863', 4133863, '-36.250969', '13.359000', '500.993500', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133864', 4133864, '127.540901', '8.141046', '481.803406', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133865', 4133865, '80.714157', '14.492840', '579.852722', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133866', 4133866, '-16.843950', '17.676241', '580.152710', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133867', 4133867, '24.143961', '2.411896', '671.088074', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133868', 4133868, '140.561096', '7.403133', '627.360474', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133869', 4133869, '96.573219', '4.412809', '794.674683', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133870', 4133870, '197.362503', '4.724640', '803.828918', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133872', 4133872, '130.937607', '8.480643', '895.933289', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133874', 4133874, '-1.962330', '-3.925701', '819.197571', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133877', 4133877, '-40.858768', '-4.353204', '847.265625', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4133878', 4133878, '-102.367302', '-5.084877', '872.023987', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4134559', 4134559, '-383.817688', '-1.011531', '901.672424', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4134560', 4134560, '-288.511597', '10.613900', '859.882324', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4134561', 4134561, '-351.064606', '6.710670', '883.250427', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4134562', 4134562, '200.244095', '10.299800', '649.805420', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92580, 1, 0, 0, 0, 24, 30058, 0, 0, 0), +(146, 'w1f4', 'bnpc4134563', 4134563, '226.015793', '8.615845', '608.168701', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94750, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4134564', 4134564, '183.543503', '9.768476', '646.637512', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94400, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4135246', 4135246, '243.579697', '8.834900', '694.209229', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92308, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(146, 'w1f4', 'bnpc4135251', 4135251, '295.658600', '8.371674', '624.363525', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94128, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4135252', 4135252, '224.383896', '9.530697', '660.020325', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93934, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4135254', 4135254, '219.592499', '8.926453', '678.248291', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91764, 1, 0, 0, 0, 24, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4135932', 4135932, '214.160294', '8.957031', '677.332581', 168, 0, 0, 0, 0, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93662, 1, 0, 0, 0, 24, 30060, 0, 0, 0), +(146, 'w1f4', 'bnpc4135934', 4135934, '323.184814', '6.857816', '665.903687', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93312, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4135935', 4135935, '329.342285', '7.113992', '659.138672', 166, 0, 0, 0, 1, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92036, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4135936', 4135936, '289.562012', '7.415476', '729.328918', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93040, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4135937', 4135937, '238.798294', '8.794422', '722.661011', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92846, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4136006', 4136006, '-7.705540', '1.187112', '-24.901859', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4136008', 4136008, '-62.727612', '-2.486439', '-1.833968', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4136009', 4136009, '-95.048462', '-2.365173', '28.824221', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4136012', 4136012, '-46.066471', '8.494778', '123.064003', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4136033', 4136033, '-271.290192', '10.421880', '211.047501', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4136034', 4136034, '-264.806305', '7.399314', '162.775604', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4136037', 4136037, '-177.294601', '7.125916', '20.614929', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4136039', 4136039, '43.869629', '35.416142', '165.728104', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4136040', 4136040, '-23.361570', '40.512569', '240.161697', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4136226', 4136226, '-131.853699', '13.179720', '86.700623', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4137046', 4137046, '52.658810', '2.883911', '-257.434998', 740, 0, 0, 0, 0, 6, 0, 0, 253, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68890, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(146, 'w1f4', 'bnpc4137048', 4137048, '55.832760', '2.914429', '-254.505203', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66992, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4137050', 4137050, '79.179077', '3.768982', '-271.045990', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71054, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4137065', 4137065, '21.736320', '5.244883', '-278.538391', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70782, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4137066', 4137066, '57.419899', '4.007567', '-299.611694', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66176, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4137892', 4137892, '-39.719238', '-0.900330', '-152.208694', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71326, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4137893', 4137893, '-91.355766', '-1.724304', '-58.945621', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68074, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4137894', 4137894, '-71.905777', '-1.906798', '-74.343948', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66448, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4137912', 4137912, '-174.456406', '39.993900', '160.387604', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72414, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4137914', 4137914, '-174.029205', '39.993900', '155.352097', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55834, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4137915', 4137915, '-169.848206', '39.993900', '158.342804', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65088, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4137927', 4137927, '-140.215103', '18.539671', '118.211700', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67264, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(146, 'w1f4', 'bnpc4137928', 4137928, '-103.074699', '27.908689', '120.592003', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70516, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4137929', 4137929, '-135.423798', '37.125118', '176.409500', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72686, 2, 0, 0, 0, 42, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4137937', 4137937, '-95.628304', '45.792240', '195.269699', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56106, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(146, 'w1f4', 'bnpc4137938', 4137938, '-61.905880', '44.937740', '212.664902', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65632, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(146, 'w1f4', 'bnpc4137941', 4137941, '-88.853271', '43.381351', '152.910599', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65904, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(146, 'w1f4', 'bnpc4137947', 4137947, '-24.093990', '38.986820', '206.042603', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55018, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4137948', 4137948, '-44.113831', '43.259281', '222.186493', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71598, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4137953', 4137953, '-163.534897', '40.000000', '151.507095', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55290, 2, 0, 0, 0, 42, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4137955', 4137955, '24.765381', '2.761841', '-0.717224', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66720, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(146, 'w1f4', 'bnpc4137956', 4137956, '-79.850456', '45.792240', '193.377594', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71870, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4137966', 4137966, '-42.954159', '8.255066', '51.499149', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70244, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4137967', 4137967, '-112.382797', '12.191960', '75.883057', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68618, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4137979', 4137979, '75.730469', '25.253660', '204.974396', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55562, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4137980', 4137980, '111.253502', '13.778870', '152.666504', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72142, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4137982', 4137982, '124.528801', '13.931460', '143.175400', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65360, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(146, 'w1f4', 'bnpc4137991', 4137991, '112.391602', '9.231154', '192.303696', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 49, 0, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 54734, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4137993', 4137993, '111.772301', '8.529010', '204.422699', 741, 0, 0, 0, 1, 6, 0, 0, 2296, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69700, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4138003', 4138003, '145.462601', '13.997980', '239.934799', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68346, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4138054', 4138054, '244.128998', '7.980469', '-24.460270', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40838, 2, 0, 0, 0, 44, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4138055', 4138055, '208.087296', '7.980469', '104.387001', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41110, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4138056', 4138056, '164.005997', '7.818353', '-31.478350', 739, 0, 0, 0, 1, 6, 0, 0, 1837, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40572, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4138061', 4138061, '345.326508', '8.771392', '-44.180370', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 48, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 41914, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4138062', 4138062, '273.090698', '11.734130', '-9.628479', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42464, 2, 0, 0, 0, 44, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4138065', 4138065, '103.105103', '15.030030', '20.462339', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 48, 0, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 41642, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4138066', 4138066, '76.493408', '12.191390', '20.402031', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42192, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4138067', 4138067, '117.584900', '15.938490', '11.404420', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41382, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4138716', 4138716, '176.348495', '13.992490', '240.985703', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54462, 2, 0, 0, 0, 35, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4138717', 4138717, '158.251205', '13.992490', '254.322006', 741, 0, 0, 0, 1, 6, 0, 0, 2296, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69428, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4138718', 4138718, '174.425797', '13.992490', '235.339798', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67802, 2, 0, 0, 0, 35, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4138722', 4138722, '129.299393', '7.759512', '330.730286', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69972, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4138723', 4138723, '127.946899', '7.071052', '376.910889', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67530, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4138736', 4138736, '45.873520', '23.511459', '-135.133301', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85730, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4138737', 4138737, '34.941601', '23.511471', '-143.619507', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85464, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4140356', 4140356, '38.925659', '23.483580', '-138.689301', 369, 0, 0, 0, 0, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85192, 1, 0, 0, 0, 32, 30073, 0, 0, 0), +(146, 'w1f4', 'bnpc4140357', 4140357, '40.383900', '23.511459', '-138.534897', 367, 0, 0, 0, 0, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84914, 1, 0, 0, 0, 32, 30079, 0, 0, 0), +(146, 'w1f4', 'bnpc4140358', 4140358, '42.540970', '17.713570', '-101.085297', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84642, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4140359', 4140359, '45.869240', '22.788361', '-122.945396', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84376, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4140360', 4140360, '-3.844561', '8.435183', '-93.056000', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84098, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4140361', 4140361, '-11.875860', '6.747277', '-75.913834', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83832, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(146, 'w1f4', 'bnpc4140362', 4140362, '-6.949590', '8.713659', '-105.002502', 367, 0, 0, 0, 0, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83554, 1, 0, 0, 0, 32, 30082, 0, 0, 0), +(146, 'w1f4', 'bnpc4140363', 4140363, '-8.319045', '8.596273', '-104.796700', 369, 0, 0, 0, 0, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83288, 1, 0, 0, 0, 32, 30079, 0, 0, 0), +(146, 'w1f4', 'bnpc4140373', 4140373, '62.782619', '3.445141', '-267.002686', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82980, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140376', 4140376, '-24.128490', '-0.222955', '-159.058701', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82708, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140377', 4140377, '-83.108093', '-14.744680', '-157.238297', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82436, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140379', 4140379, '-97.737221', '-14.744680', '-145.298904', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140380', 4140380, '-94.201157', '-14.744680', '-142.907806', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81892, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140381', 4140381, '-95.134377', '-14.397570', '-169.786697', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81620, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140383', 4140383, '-53.365379', '-16.085800', '-169.063507', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81348, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140384', 4140384, '-62.683842', '-1.205086', '-107.887497', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81076, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140386', 4140386, '-131.578598', '1.541138', '-134.599899', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80804, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140387', 4140387, '-84.214539', '-1.937927', '-49.942810', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80532, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140388', 4140388, '-95.933533', '-0.900330', '-15.945740', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80260, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140392', 4140392, '-94.041443', '-0.961365', '-14.877620', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79988, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140393', 4140393, '-43.289860', '-1.571716', '1.235901', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140394', 4140394, '-14.218010', '4.090468', '36.143909', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140395', 4140395, '-17.297621', '4.967797', '39.749630', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140398', 4140398, '-101.304703', '12.741210', '80.552368', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140400', 4140400, '-144.371704', '-1.052405', '41.807720', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140401', 4140401, '-107.255699', '28.030760', '124.498299', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140402', 4140402, '-52.008862', '11.528760', '192.386597', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140404', 4140404, '-283.105499', '9.536800', '201.528900', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140405', 4140405, '-118.150597', '4.442561', '248.788605', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140406', 4140406, '-114.824203', '4.493244', '246.347107', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140407', 4140407, '-183.400894', '40.000000', '157.241699', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140408', 4140408, '-169.404205', '40.000000', '143.694000', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140409', 4140409, '-126.916702', '37.668209', '186.635406', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140410', 4140410, '-83.693520', '45.889679', '179.053299', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140411', 4140411, '-85.551117', '45.811230', '209.439102', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140412', 4140412, '20.889589', '36.758911', '209.735199', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140413', 4140413, '112.923897', '13.990590', '141.405304', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140414', 4140414, '160.982407', '13.997970', '233.444595', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140416', 4140416, '146.294601', '13.997970', '244.723495', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140417', 4140417, '124.652702', '8.457688', '313.738892', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140419', 4140419, '139.964203', '7.391594', '192.456802', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140420', 4140420, '224.634705', '8.093283', '86.476837', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140421', 4140421, '253.877808', '8.000000', '-33.567520', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140422', 4140422, '295.798798', '8.000000', '-26.774521', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140423', 4140423, '297.220490', '8.000000', '-29.494390', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4140427', 4140427, '117.781403', '9.346180', '-7.032808', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72916, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4142005', 4142005, '-268.913208', '4.851185', '-90.289322', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4142007', 4142007, '-359.236389', '4.669468', '-59.445290', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4142009', 4142009, '-420.227386', '6.206403', '-20.966650', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4142018', 4142018, '-42.274540', '10.032320', '171.660904', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69162, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4142028', 4142028, '-93.827759', '45.792240', '199.145401', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64816, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4313527', 4313527, '313.771210', '7.980469', '-31.998230', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51244, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(146, 'w1f4', 'bnpc4313538', 4313538, '287.709015', '8.000000', '-40.641960', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50972, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(146, 'w1f4', 'bnpc4313539', 4313539, '417.063385', '17.715700', '-63.623531', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50688, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4313540', 4313540, '355.620087', '9.881611', '-35.813759', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50422, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4313547', 4313547, '445.548096', '16.678040', '-115.800697', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50156, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(146, 'w1f4', 'bnpc4313549', 4313549, '409.744812', '12.774850', '-100.924301', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49812, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4313550', 4313550, '552.483398', '7.583679', '-164.965302', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 49594, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4313551', 4313551, '481.528900', '7.614197', '-157.915604', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49328, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(146, 'w1f4', 'bnpc4313552', 4313552, '484.977386', '7.614197', '-157.701996', 740, 0, 0, 0, 0, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49062, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(146, 'w1f4', 'bnpc4313556', 4313556, '509.282410', '7.599621', '-134.754105', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48724, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4313557', 4313557, '519.299988', '7.581244', '-127.391800', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48452, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4313560', 4313560, '533.592712', '7.583679', '-79.881042', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47146, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4313561', 4313561, '549.797729', '7.583679', '-92.454468', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48240, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4313562', 4313562, '534.650330', '7.599616', '-75.784973', 740, 0, 0, 0, 0, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47974, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4313563', 4313563, '569.926575', '7.599619', '-77.731194', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47708, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(146, 'w1f4', 'bnpc4313564', 4313564, '549.767212', '7.599621', '-67.267418', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 47436, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(146, 'w1f4', 'bnpc4313565', 4313565, '442.353912', '18.401279', '-84.513977', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46820, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(146, 'w1f4', 'bnpc4313572', 4313572, '631.942383', '7.123771', '-69.111237', 742, 0, 0, 0, 1, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46602, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4329911', 4329911, '-253.803406', '23.269960', '-431.265686', 2188, 0, 0, 0, 6, 6, 0, 0, 1993, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123578, 4, 1, 0, 0, 0, 0, 4329909, 0, 0), +(146, 'w1f4', 'bnpc4333133', 4333133, '-201.984695', '24.429350', '-469.400787', 2188, 0, 0, 0, 6, 6, 0, 0, 1993, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122442, 4, 1, 0, 0, 0, 0, 4329909, 0, 0), +(146, 'w1f4', 'bnpc4333143', 4333143, '-91.031189', '14.631890', '-220.647095', 2260, 0, 0, 0, 1, 6, 0, 0, 1999, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122182, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4333144', 4333144, '-95.213539', '14.640040', '-232.687607', 2259, 0, 0, 0, 1, 6, 0, 0, 1998, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121904, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4515628', 4515628, '230.071304', '10.431990', '28.589081', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45208, 2, 0, 0, 0, 0, 0, 4515627, 0, 0), +(146, 'w1f4', 'bnpc4515630', 4515630, '306.129913', '8.000000', '-35.433121', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44936, 2, 0, 0, 0, 0, 0, 4515617, 0, 0), +(146, 'w1f4', 'bnpc4515631', 4515631, '409.323212', '17.164120', '-66.182114', 2457, 0, 0, 0, 2, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44664, 2, 0, 0, 0, 0, 0, 4515622, 0, 0), +(146, 'w1f4', 'bnpc4515632', 4515632, '450.431000', '18.142941', '-98.527527', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44392, 2, 0, 0, 0, 0, 0, 4515619, 0, 0), +(146, 'w1f4', 'bnpc4515633', 4515633, '528.573975', '7.599619', '-123.610298', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44120, 2, 0, 0, 0, 0, 0, 4515626, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(146, 'w1f4', 'bnpc4522053', 4522053, '-108.508598', '-1.658285', '50.827759', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4522057', 4522057, '-20.309811', '4.196167', '-48.355900', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 2, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64278, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4522061', 4522061, '-208.789200', '7.827881', '41.184078', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 3, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64006, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4522063', 4522063, '-277.088593', '16.372860', '105.149902', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 4, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63734, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4522065', 4522065, '-233.600403', '7.156433', '195.910507', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 5, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63462, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4522066', 4522066, '102.342300', '15.152160', '25.375731', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 39762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4522067', 4522067, '-24.155090', '7.522644', '120.195297', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4522069', 4522069, '-114.458000', '7.766785', '222.339096', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4522077', 4522077, '-43.839230', '7.949890', '350.362305', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4522101', 4522101, '108.016403', '9.690581', '194.451294', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4522396', 4522396, '-21.478930', '2.767368', '-38.678539', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62078, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4522398', 4522398, '-207.376999', '7.622232', '46.231140', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 3, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61824, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(146, 'w1f4', 'bnpc4522399', 4522399, '-234.055893', '7.389282', '200.963898', 742, 0, 0, 0, 0, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 5, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61534, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4522406', 4522406, '-105.390503', '-1.773797', '46.289669', 742, 0, 0, 0, 0, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61262, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4522407', 4522407, '-271.650208', '14.867290', '104.792099', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 4, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61008, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(146, 'w1f4', 'bnpc4522411', 4522411, '-100.910103', '-1.501870', '50.329479', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60736, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4522416', 4522416, '-109.675301', '7.278503', '224.872192', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 60452, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4522419', 4522419, '-28.614960', '7.609998', '118.196198', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 60180, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4522420', 4522420, '-39.757469', '7.899223', '353.966003', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 59908, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(146, 'w1f4', 'bnpc4522421', 4522421, '-27.695190', '7.583679', '129.961105', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59642, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4522422', 4522422, '-117.326698', '6.179810', '229.419296', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59370, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4522424', 4522424, '-52.859360', '7.196684', '358.597412', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59098, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4522427', 4522427, '554.650085', '7.583679', '-67.246582', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43854, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4522544', 4522544, '557.138977', '7.599622', '-162.231705', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43582, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4522545', 4522545, '413.717804', '17.929260', '-60.318909', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43310, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4522546', 4522546, '349.712006', '9.286700', '-45.325851', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43038, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4522547', 4522547, '291.672913', '8.000000', '-42.948238', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 42766, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4522549', 4522549, '227.166595', '8.620508', '78.546181', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40288, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4522550', 4522550, '408.039398', '12.424580', '-131.584198', 742, 0, 0, 0, 1, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40010, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4524149', 4524149, '-46.524780', '-1.266479', '10.910160', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58826, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4524160', 4524160, '-52.610519', '-1.409638', '13.605740', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58548, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4524163', 4524163, '14.724910', '1.785278', '16.159300', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58276, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4524164', 4524164, '20.839840', '2.344519', '13.486760', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58010, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4524175', 4524175, '-136.317200', '10.889600', '-70.746132', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57738, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4524176', 4524176, '-142.403000', '11.520290', '-68.050552', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57460, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4524179', 4524179, '-124.245399', '6.484659', '-98.137253', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57200, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4524181', 4524181, '-155.565796', '6.332458', '-43.106812', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56910, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4524206', 4524206, '-163.683502', '7.064880', '7.705750', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56656, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4524215', 4524215, '-100.204201', '12.076750', '75.251801', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56366, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4553442', 4553442, '-200.593903', '7.600075', '38.475250', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54190, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4553443', 4553443, '-17.239441', '3.551795', '-44.301022', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 2, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 53936, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(146, 'w1f4', 'bnpc4553444', 4553444, '-243.102203', '7.628644', '196.886398', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53664, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4553445', 4553445, '-277.132202', '14.459210', '114.208504', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53374, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4553446', 4553446, '-118.333702', '6.485046', '-90.318237', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53102, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4553447', 4553447, '-143.133606', '6.438087', '-36.288349', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52848, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4553448', 4553448, '-160.387604', '7.156433', '27.054199', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52576, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4553449', 4553449, '-63.000992', '-1.730121', '-63.235321', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52286, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(146, 'w1f4', 'bnpc4577401', 4577401, '-110.148399', '-0.815602', '-20.043240', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4621851', 4621851, '-468.283295', '-2.650424', '95.657677', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28328, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4621852', 4621852, '-103.113701', '45.811230', '205.494797', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28062, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(146, 'w1f4', 'bnpc4695634', 4695634, '-218.433502', '5.298542', '95.696121', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4057836', 4057836, '28.031610', '4.298763', '383.960999', 793, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 11604, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(147, 'w1f5', 'bnpc4057838', 4057838, '29.892330', '35.882359', '42.700661', 791, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 11338, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(147, 'w1f5', 'bnpc4057854', 4057854, '-104.771599', '56.986221', '-91.275787', 792, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 11072, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(147, 'w1f5', 'bnpc4143257', 4143257, '-22.751280', '11.306820', '255.023895', 173, 0, 0, 0, 1, 6, 0, 0, 304, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143258', 4143258, '36.026489', '12.344480', '271.015411', 173, 0, 0, 0, 1, 6, 0, 0, 304, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143259', 4143259, '55.802120', '17.593571', '268.879211', 173, 0, 0, 0, 1, 6, 0, 0, 304, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143262', 4143262, '-27.096640', '22.818489', '171.618607', 173, 0, 0, 0, 1, 6, 0, 0, 304, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42596, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143263', 4143263, '-2.783560', '22.065960', '179.791595', 173, 0, 0, 0, 1, 6, 0, 0, 304, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42324, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143264', 4143264, '81.315308', '19.180540', '136.797104', 173, 0, 0, 0, 1, 6, 0, 0, 304, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143549', 4143549, '88.120850', '26.535400', '85.465698', 173, 0, 0, 0, 1, 6, 0, 0, 304, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143550', 4143550, '25.709190', '31.163389', '87.561913', 173, 0, 0, 0, 1, 6, 0, 0, 304, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143554', 4143554, '154.924805', '26.413330', '55.680180', 173, 0, 0, 0, 1, 6, 0, 0, 304, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143562', 4143562, '91.538818', '16.617001', '247.455597', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40970, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(147, 'w1f5', 'bnpc4143564', 4143564, '113.600899', '20.635731', '256.752289', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40698, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(147, 'w1f5', 'bnpc4143565', 4143565, '97.404030', '15.458280', '235.336502', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40426, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(147, 'w1f5', 'bnpc4143567', 4143567, '90.499191', '15.431490', '213.212006', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40154, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(147, 'w1f5', 'bnpc4143568', 4143568, '94.008713', '15.986880', '210.037994', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39882, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(147, 'w1f5', 'bnpc4143569', 4143569, '72.804611', '17.211941', '188.128403', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39610, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(147, 'w1f5', 'bnpc4143570', 4143570, '113.583397', '20.725821', '198.431107', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39338, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(147, 'w1f5', 'bnpc4143572', 4143572, '110.270599', '19.667850', '255.799896', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39066, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(147, 'w1f5', 'bnpc4143576', 4143576, '232.090897', '25.124689', '91.229813', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143582', 4143582, '235.318207', '25.000000', '90.251823', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143583', 4143583, '217.891495', '24.995701', '66.152168', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143584', 4143584, '238.131699', '25.000000', '69.756897', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143585', 4143585, '181.954498', '24.096069', '108.793198', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143587', 4143587, '187.734497', '23.467779', '81.350632', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143599', 4143599, '206.140198', '24.982540', '99.308563', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143601', 4143601, '128.801407', '32.150631', '22.171329', 183, 0, 0, 0, 1, 6, 0, 0, 242, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36902, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(147, 'w1f5', 'bnpc4143603', 4143603, '145.579803', '36.363121', '0.951006', 183, 0, 0, 0, 1, 6, 0, 0, 242, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(147, 'w1f5', 'bnpc4143605', 4143605, '199.000107', '37.938610', '-38.092609', 183, 0, 0, 0, 1, 6, 0, 0, 242, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(147, 'w1f5', 'bnpc4143606', 4143606, '210.101303', '43.259281', '-62.882450', 183, 0, 0, 0, 1, 6, 0, 0, 242, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(147, 'w1f5', 'bnpc4143607', 4143607, '168.781799', '34.245739', '-48.962570', 183, 0, 0, 0, 1, 6, 0, 0, 242, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(147, 'w1f5', 'bnpc4143609', 4143609, '124.096703', '36.327381', '1.739570', 183, 0, 0, 0, 1, 6, 0, 0, 242, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(147, 'w1f5', 'bnpc4143633', 4143633, '103.898697', '29.587160', '51.316040', 173, 0, 0, 0, 1, 6, 0, 0, 304, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35252, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143658', 4143658, '-43.847889', '4.272492', '328.905212', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143664', 4143664, '21.199301', '12.444670', '247.143097', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143665', 4143665, '26.998260', '8.727581', '301.573212', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143667', 4143667, '91.295532', '17.012800', '203.566498', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143675', 4143675, '151.964798', '23.031151', '219.041107', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33916, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143678', 4143678, '12.408140', '27.175131', '161.493607', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33644, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143680', 4143680, '102.545601', '20.679501', '134.920197', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33372, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143681', 4143681, '5.065147', '32.352421', '92.032951', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33100, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143683', 4143683, '122.494400', '28.121000', '63.417889', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32828, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143686', 4143686, '159.263199', '38.439861', '-21.090820', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32556, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143689', 4143689, '156.182205', '38.100910', '-21.738810', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143696', 4143696, '191.562195', '35.245621', '19.655609', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143697', 4143697, '237.079300', '24.979000', '10.849120', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143698', 4143698, '270.740692', '24.979000', '19.821409', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143699', 4143699, '-171.068893', '65.201782', '-114.244301', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4143985', 4143985, '-236.942505', '74.336182', '-139.612595', 55, 0, 0, 0, 1, 6, 0, 0, 53, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30974, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(147, 'w1f5', 'bnpc4143987', 4143987, '-175.616104', '72.465088', '-175.524506', 62, 0, 0, 0, 1, 6, 0, 0, 59, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30708, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(147, 'w1f5', 'bnpc4143988', 4143988, '-173.022003', '75.478470', '-197.758698', 64, 0, 0, 0, 1, 6, 0, 0, 61, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30442, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(147, 'w1f5', 'bnpc4143993', 4143993, '-149.580002', '77.503860', '-222.418793', 62, 0, 0, 0, 1, 6, 0, 0, 59, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30164, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(147, 'w1f5', 'bnpc4143994', 4143994, '-93.107857', '75.162788', '-232.686707', 55, 0, 0, 0, 1, 6, 0, 0, 53, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29886, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(147, 'w1f5', 'bnpc4143995', 4143995, '-123.641602', '77.912354', '-256.362396', 64, 0, 0, 0, 1, 6, 0, 0, 61, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29626, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(147, 'w1f5', 'bnpc4143996', 4143996, '-226.793793', '81.000000', '-184.122299', 62, 0, 0, 0, 0, 6, 0, 0, 59, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29348, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(147, 'w1f5', 'bnpc4143997', 4143997, '-235.407898', '81.000000', '-178.838806', 55, 0, 0, 0, 1, 6, 0, 0, 53, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29070, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(147, 'w1f5', 'bnpc4143998', 4143998, '-230.074997', '80.916733', '-190.776306', 64, 0, 0, 0, 1, 6, 0, 0, 61, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28810, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(147, 'w1f5', 'bnpc4144004', 4144004, '-226.367599', '84.489143', '-253.589706', 64, 0, 0, 0, 0, 6, 0, 0, 61, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28538, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(147, 'w1f5', 'bnpc4144005', 4144005, '-224.933304', '84.489143', '-253.589706', 63, 0, 0, 0, 0, 6, 0, 0, 60, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28272, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(147, 'w1f5', 'bnpc4144006', 4144006, '-220.538696', '84.580688', '-272.175201', 61, 0, 0, 0, 1, 6, 0, 0, 58, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28006, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(147, 'w1f5', 'bnpc4144007', 4144007, '-185.748199', '82.993767', '-343.923187', 64, 0, 0, 0, 1, 6, 0, 0, 61, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27722, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(147, 'w1f5', 'bnpc4144008', 4144008, '-241.626602', '82.871696', '-325.673401', 61, 0, 0, 0, 1, 6, 0, 0, 58, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27462, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(147, 'w1f5', 'bnpc4144009', 4144009, '-183.731796', '82.171227', '-277.526794', 63, 0, 0, 0, 1, 6, 0, 0, 60, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27184, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(147, 'w1f5', 'bnpc4144010', 4144010, '-150.125107', '79.349922', '-288.540314', 64, 0, 0, 0, 1, 6, 0, 0, 61, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26906, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(147, 'w1f5', 'bnpc4144011', 4144011, '-145.403198', '79.148438', '-287.983490', 61, 0, 0, 0, 1, 6, 0, 0, 58, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26646, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(147, 'w1f5', 'bnpc4144012', 4144012, '-137.499100', '78.965332', '-316.365387', 63, 0, 0, 0, 1, 6, 0, 0, 60, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26368, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(147, 'w1f5', 'bnpc4144014', 4144014, '-270.984497', '86.114403', '-209.552200', 200, 0, 0, 0, 1, 6, 0, 0, 269, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26108, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144019', 4144019, '-271.322510', '85.845490', '-250.351501', 200, 0, 0, 0, 1, 6, 0, 0, 269, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144020', 4144020, '-215.539902', '78.789352', '-220.913300', 200, 0, 0, 0, 1, 6, 0, 0, 269, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144021', 4144021, '-207.940796', '79.257797', '-225.979294', 200, 0, 0, 0, 1, 6, 0, 0, 269, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25292, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144022', 4144022, '-206.439301', '81.986687', '-312.581085', 200, 0, 0, 0, 1, 6, 0, 0, 269, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25020, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144024', 4144024, '-245.671600', '85.185867', '-295.674591', 200, 0, 0, 0, 1, 6, 0, 0, 269, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144026', 4144026, '-281.544312', '84.733276', '-337.270111', 200, 0, 0, 0, 1, 6, 0, 0, 269, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24476, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144030', 4144030, '-197.894302', '73.685791', '-155.962494', 200, 0, 0, 0, 1, 6, 0, 0, 269, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24204, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144093', 4144093, '-116.075401', '69.687866', '-168.993698', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144094', 4144094, '-264.972992', '66.300423', '-94.865417', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144096', 4144096, '-268.024811', '82.291870', '-176.836807', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144098', 4144098, '-269.398102', '82.566528', '-178.057602', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144099', 4144099, '-264.698303', '84.550171', '-278.523010', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22536, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144100', 4144100, '-188.461502', '82.094650', '-246.270706', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22264, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144111', 4144111, '-151.170593', '81.992996', '-335.126007', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21992, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144120', 4144120, '-94.132240', '86.095337', '-349.362091', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144121', 4144121, '-135.933197', '74.805679', '-201.996399', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21448, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144122', 4144122, '-197.625793', '75.483841', '-186.585007', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21176, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144123', 4144123, '-66.867043', '77.003868', '-231.542603', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20904, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4144125', 4144125, '-52.429440', '74.259010', '-179.350494', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20632, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4321602', 4321602, '-34.066769', '78.059433', '-197.537704', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20360, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(147, 'w1f5', 'bnpc4622463', 4622463, '-256.647614', '58.429218', '-42.257309', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 12330, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1132780', 1132780, '42.705971', '6.489012', '-222.119598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132784', 1132784, '43.994171', '7.081282', '-226.261307', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132785', 1132785, '46.368141', '6.532326', '-222.363800', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230902, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132786', 1132786, '50.249649', '8.663927', '-237.583603', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132810', 1132810, '119.142403', '17.274370', '-264.585907', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132815', 1132815, '53.141479', '4.367238', '-208.718597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132818', 1132818, '57.950279', '4.701855', '-181.906006', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132819', 1132819, '53.380199', '3.647015', '-170.941803', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132823', 1132823, '85.892982', '4.386182', '-186.633102', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132827', 1132827, '136.440002', '-0.215091', '-142.126297', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132829', 1132829, '139.586502', '1.436886', '-162.906296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132833', 1132833, '144.692596', '1.594073', '-161.313507', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132834', 1132834, '169.345306', '-0.575563', '-143.321701', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132835', 1132835, '132.885803', '4.471908', '-182.040894', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132836', 1132836, '127.652000', '2.679112', '-179.060898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132837', 1132837, '133.402802', '5.498395', '-185.220093', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132842', 1132842, '104.130501', '4.751109', '-199.651596', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132988', 1132988, '145.939301', '0.761501', '-119.501801', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132990', 1132990, '165.896698', '-0.582151', '-142.284103', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132991', 1132991, '196.646301', '-2.798964', '-155.795898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132992', 1132992, '159.011398', '0.196450', '-113.407997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226012, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1132993', 1132993, '162.856598', '-0.357008', '-115.116997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225740, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133000', 1133000, '202.288803', '-2.206049', '-168.963196', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225468, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133001', 1133001, '223.772705', '-6.852091', '-140.217407', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225196, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133002', 1133002, '206.683395', '-2.759299', '-171.221497', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224924, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133005', 1133005, '231.146698', '-5.044106', '-178.307693', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224652, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133007', 1133007, '242.902496', '-0.494766', '-191.458496', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224380, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133008', 1133008, '239.977493', '-0.588080', '-191.828400', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224108, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133010', 1133010, '221.392303', '-6.460419', '-138.050598', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223836, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133022', 1133022, '332.788513', '-3.345333', '-151.251495', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201534, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133023', 1133023, '298.603699', '-6.332541', '-125.749603', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133029', 1133029, '302.693298', '-3.341390', '-184.143005', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133031', 1133031, '328.386993', '-0.505648', '-187.936401', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133032', 1133032, '342.892487', '-1.328422', '-175.218201', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133035', 1133035, '358.327515', '-2.255364', '-175.310898', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133036', 1133036, '335.507294', '0.561625', '-194.418793', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133042', 1133042, '439.946808', '10.149250', '-108.177101', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169468, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133044', 1133044, '458.584900', '14.997390', '-90.379593', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169740, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133047', 1133047, '463.401215', '25.778530', '-35.324680', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168380, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133049', 1133049, '445.243591', '31.812080', '-9.685579', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168652, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133052', 1133052, '486.745514', '31.609249', '-44.177990', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168924, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133053', 1133053, '487.618011', '31.024900', '-55.958771', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170012, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133054', 1133054, '483.304291', '30.900890', '-51.161331', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172188, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133056', 1133056, '482.511993', '23.910801', '-88.545013', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173276, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133057', 1133057, '480.679291', '24.104330', '-120.189201', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169196, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133063', 1133063, '504.435913', '29.146271', '-83.562149', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173004, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133064', 1133064, '482.169495', '24.010910', '-92.475502', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172732, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133065', 1133065, '459.642914', '24.454941', '-39.719559', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172460, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133066', 1133066, '453.938690', '26.000799', '-33.810230', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170828, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133070', 1133070, '351.512787', '3.052480', '46.861389', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133071', 1133071, '341.298492', '3.983801', '67.704231', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133072', 1133072, '348.626495', '0.976962', '28.015940', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133073', 1133073, '342.183502', '0.098491', '27.298340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133077', 1133077, '309.071411', '-2.609340', '63.065491', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133080', 1133080, '281.574707', '-7.184652', '26.169170', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133098', 1133098, '289.254913', '-5.168305', '48.585239', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133100', 1133100, '291.498688', '-5.368438', '47.821369', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133126', 1133126, '-82.030632', '1.519239', '-141.488693', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148770, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133128', 1133128, '-77.317497', '1.083344', '-136.644608', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148498, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133130', 1133130, '-63.375290', '0.643326', '-166.887497', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148226, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133131', 1133131, '-64.313164', '0.965167', '-162.181503', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147954, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133132', 1133132, '-75.591331', '1.176651', '-142.404297', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147682, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133138', 1133138, '-33.189919', '-4.914308', '-94.149628', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147410, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133148', 1133148, '86.244072', '-19.783070', '210.247406', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133152', 1133152, '70.510750', '-17.727341', '188.296799', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133156', 1133156, '56.609531', '-22.226370', '292.790710', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133163', 1133163, '25.970390', '-24.061230', '233.649994', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133165', 1133165, '37.231960', '-26.765560', '260.079498', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133167', 1133167, '36.484268', '-25.833570', '242.542099', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133172', 1133172, '94.585983', '-24.244490', '288.477509', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133176', 1133176, '98.126083', '-23.363501', '294.977814', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133177', 1133177, '85.597298', '-27.953020', '268.263000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133178', 1133178, '89.747749', '-28.194380', '266.065704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133179', 1133179, '141.949905', '-28.936390', '333.222290', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133181', 1133181, '160.046402', '-31.802570', '350.789795', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133185', 1133185, '164.906906', '-32.018280', '333.485504', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144158, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(148, 'f1f1', 'bnpc1133186', 1133186, '146.226807', '-28.810591', '357.818298', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133187', 1133187, '196.479996', '-32.228100', '370.754303', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133189', 1133189, '179.687897', '-32.476631', '364.163086', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133193', 1133193, '213.929794', '-29.694580', '421.080688', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133194', 1133194, '210.157394', '-29.179230', '422.919312', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133195', 1133195, '202.300293', '-31.331381', '415.743286', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133196', 1133196, '197.350098', '-27.568890', '432.363586', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133197', 1133197, '127.580299', '-21.390261', '452.635986', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133198', 1133198, '140.825500', '-23.697309', '449.881714', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133199', 1133199, '140.459198', '-23.605749', '454.489899', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133202', 1133202, '12.397950', '-27.619690', '294.880493', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133205', 1133205, '-18.143021', '-24.734921', '265.369598', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133206', 1133206, '-12.771850', '-24.094040', '262.958710', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133207', 1133207, '-9.199866', '-28.976500', '329.645294', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140338, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133209', 1133209, '-28.712330', '-27.396271', '280.689209', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140066, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133235', 1133235, '-294.825012', '66.698837', '-219.308807', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94446, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133239', 1133239, '-293.659912', '67.460083', '-222.491806', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94174, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133246', 1133246, '-302.510101', '60.959740', '-159.319504', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93902, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133248', 1133248, '-302.700409', '62.132381', '-166.402496', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133255', 1133255, '-356.364685', '65.308533', '-258.518585', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133257', 1133257, '-369.039490', '65.567993', '-232.715393', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133258', 1133258, '-392.416290', '67.276978', '-249.713898', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1133287', 1133287, '197.283798', '-8.773984', '-27.176359', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133291', 1133291, '211.352707', '-8.651912', '-43.106781', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133293', 1133293, '157.305206', '-7.888961', '-17.929399', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133294', 1133294, '157.244202', '-8.163623', '-11.917340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133298', 1133298, '120.449799', '-4.840655', '13.528090', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1133303', 1133303, '104.203796', '-7.003938', '47.562321', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135577', 1135577, '335.133911', '-4.725379', '-24.794729', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196916, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135582', 1135582, '371.054596', '0.844982', '-35.208488', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196644, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135586', 1135586, '374.433105', '1.702958', '-25.284241', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135591', 1135591, '345.784607', '-2.975556', '-32.761169', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135593', 1135593, '332.478790', '-3.372291', '3.097534', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135605', 1135605, '395.773193', '2.548209', '-44.693722', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135606', 1135606, '415.025085', '5.625315', '-64.068764', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135607', 1135607, '388.509888', '0.304810', '-66.453087', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135612', 1135612, '394.000214', '3.556523', '-87.144318', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135613', 1135613, '375.936493', '0.686609', '-85.923592', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135614', 1135614, '343.831512', '-5.020265', '-80.094650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135616', 1135616, '409.009888', '5.209702', '-112.078003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135617', 1135617, '417.517700', '5.755183', '-68.232597', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135618', 1135618, '412.284607', '5.636008', '-106.424400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135619', 1135619, '406.314209', '5.571515', '-103.380302', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135624', 1135624, '386.668915', '4.336706', '-103.087303', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135625', 1135625, '364.309509', '0.784262', '-125.017197', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135627', 1135627, '359.853485', '-2.578822', '-152.483398', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135628', 1135628, '350.999207', '-2.118987', '-128.300003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135629', 1135629, '316.613586', '8.015758', '128.187897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135632', 1135632, '323.190002', '9.736116', '132.826904', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135633', 1135633, '322.078613', '10.136940', '134.004807', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135639', 1135639, '288.849091', '17.952721', '161.725601', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135643', 1135643, '286.915314', '19.626829', '172.441101', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135645', 1135645, '295.765594', '16.383280', '167.437195', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1135646', 1135646, '318.979004', '13.831220', '155.957001', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1135647', 1135647, '290.314087', '17.922770', '159.804199', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1135651', 1135651, '-262.056305', '55.970860', '36.748020', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135671', 1135671, '-462.059692', '64.698357', '68.829857', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1135673', 1135673, '-398.458893', '51.156910', '68.804077', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83602, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1135685', 1135685, '-418.844910', '58.274151', '-34.409142', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135687', 1135687, '-520.153870', '65.239517', '61.102520', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80888, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1135688', 1135688, '-508.781586', '65.293297', '40.634731', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81432, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1135931', 1135931, '272.581390', '23.939560', '195.025894', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135933', 1135933, '241.474594', '24.000601', '179.914902', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135937', 1135937, '-101.839104', '-40.043732', '299.745911', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1135938', 1135938, '-105.816902', '-40.028461', '306.239807', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1135939', 1135939, '-90.198776', '-40.129551', '324.673096', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1135940', 1135940, '-94.585022', '-40.032150', '311.676514', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1135941', 1135941, '-114.854698', '-40.054981', '302.937286', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135942', 1135942, '-97.734077', '-40.054981', '304.310608', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135943', 1135943, '-102.695999', '-40.032539', '320.445892', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1135944', 1135944, '-83.087273', '-39.867889', '327.616211', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162337', 1162337, '283.977112', '-6.509701', '-148.452805', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162338', 1162338, '281.871399', '-6.690229', '-150.039703', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162341', 1162341, '315.751801', '-4.718813', '-109.327103', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162344', 1162344, '309.980103', '1.983368', '92.979958', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162345', 1162345, '337.067413', '3.266761', '71.050873', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162348', 1162348, '130.357803', '-6.759793', '57.419651', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162351', 1162351, '222.430695', '-7.827925', '-60.441029', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162352', 1162352, '227.527206', '-7.187046', '-66.727753', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162353', 1162353, '203.082306', '-7.339636', '-68.925049', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162354', 1162354, '221.484604', '-7.400672', '-64.011642', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162358', 1162358, '-19.657080', '0.269221', '-140.150803', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1162368', 1162368, '112.853699', '-26.954611', '251.195801', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162369', 1162369, '89.158417', '-24.246630', '236.957306', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162371', 1162371, '217.547806', '-31.967699', '395.895294', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162374', 1162374, '-2.485424', '-31.687981', '451.364502', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162376', 1162376, '-10.696620', '-34.134480', '443.381287', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162378', 1162378, '-23.636271', '-35.911461', '462.485596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162380', 1162380, '-61.417610', '-36.118149', '490.745300', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162384', 1162384, '-4.128872', '-28.294901', '327.096588', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1162385', 1162385, '-48.920349', '-35.910400', '310.262909', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1162386', 1162386, '-66.916382', '-32.083370', '343.644196', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1162387', 1162387, '-65.420998', '-31.630421', '353.013306', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1162390', 1162390, '-298.542786', '20.650921', '132.768707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162391', 1162391, '-294.392303', '20.060690', '130.388306', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162392', 1162392, '-296.020508', '20.999870', '168.359299', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162393', 1162393, '-297.016907', '20.876789', '122.239998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162394', 1162394, '-208.026505', '3.601872', '2.164479', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162398', 1162398, '-396.566711', '63.980961', '-218.615997', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1162399', 1162399, '-347.955994', '66.968529', '-220.251999', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1162402', 1162402, '-291.152710', '61.247379', '-168.828796', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1162403', 1162403, '-351.183289', '63.740372', '-153.645599', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162412', 1162412, '-365.503204', '62.324249', '-85.497841', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162413', 1162413, '-365.240814', '62.204288', '-87.690971', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162416', 1162416, '-353.685791', '63.380310', '-149.922501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1162426', 1162426, '-501.091003', '65.293297', '90.318100', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1162427', 1162427, '-534.918823', '65.381104', '43.912449', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81160, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1180878', 1180878, '104.639297', '-8.000016', '-91.168152', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1180879', 1180879, '105.168701', '-8.000016', '-94.222618', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1180880', 1180880, '106.210297', '-8.000016', '-96.527153', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1183451', 1183451, '104.347603', '-8.000016', '-88.522499', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1183452', 1183452, '101.512100', '-8.064646', '-97.812950', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1183453', 1183453, '100.580399', '-8.000016', '-95.459229', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1183454', 1183454, '99.803108', '-8.184623', '-92.716454', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1183455', 1183455, '99.192757', '-8.361253', '-89.878258', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234346, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1183456', 1183456, '96.327393', '-8.500061', '-99.385361', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1183458', 1183458, '95.550194', '-8.460118', '-96.840134', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1183459', 1183459, '94.825958', '-8.500061', '-93.978119', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1183460', 1183460, '94.179993', '-8.500061', '-90.982887', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1408325', 1408325, '107.492897', '15.984340', '-270.054596', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1408329', 1408329, '119.554398', '17.410500', '-259.693298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1408332', 1408332, '111.600800', '16.549120', '-248.298096', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1408334', 1408334, '117.813103', '17.697479', '-247.780807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1408341', 1408341, '111.814400', '16.758829', '-244.880096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1408351', 1408351, '86.796638', '15.940370', '-262.601105', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1408352', 1408352, '68.921707', '16.132620', '-262.037811', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1408353', 1408353, '68.168861', '16.760660', '-264.307190', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1408357', 1408357, '72.243088', '10.935070', '-243.492706', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1408358', 1408358, '87.101822', '15.245950', '-260.648010', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221122, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410560', 1410560, '103.350998', '14.389260', '-254.875107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410688', 1410688, '50.217388', '6.559038', '-223.468399', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410689', 1410689, '39.352970', '4.053384', '-182.513199', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410690', 1410690, '37.860909', '3.934789', '-183.153900', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410691', 1410691, '55.661430', '4.710185', '-183.981201', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1410693', 1410693, '-1.083989', '1.339663', '-188.567398', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219478, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1410694', 1410694, '0.474049', '1.531124', '-191.204697', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219206, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1410695', 1410695, '8.437746', '1.980624', '-176.756195', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218934, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1410696', 1410696, '-15.013690', '1.551492', '-198.619598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218662, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1410698', 1410698, '7.450444', '1.514552', '-190.764694', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410699', 1410699, '8.438234', '3.222636', '-146.234497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410700', 1410700, '14.477130', '3.104484', '-138.479904', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410701', 1410701, '16.068541', '3.373573', '-139.535202', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217574, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1410703', 1410703, '-15.113390', '3.146425', '-233.722000', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217302, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1410704', 1410704, '-4.948251', '4.778366', '-234.155304', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217030, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1410705', 1410705, '8.210199', '5.748120', '-247.337402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1410707', 1410707, '9.591916', '5.570471', '-251.132996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216498, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410708', 1410708, '5.815275', '5.237663', '-249.501099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216226, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410709', 1410709, '-9.906527', '3.594761', '-217.097595', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215954, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410712', 1410712, '-13.648660', '3.344659', '-231.383408', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215682, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410714', 1410714, '-30.136610', '0.909592', '-224.200897', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1410715', 1410715, '48.355789', '9.194451', '-243.366196', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1410716', 1410716, '74.908539', '4.285552', '-211.076706', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1410851', 1410851, '88.732697', '4.082766', '-185.738998', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215138, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410853', 1410853, '130.975204', '4.971314', '-185.109497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214866, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410976', 1410976, '131.470093', '2.068069', '-173.581100', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214594, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410977', 1410977, '107.495903', '0.653863', '-168.558304', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214322, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410978', 1410978, '142.190598', '1.204836', '-160.400803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214050, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410979', 1410979, '148.032898', '0.649221', '-123.475403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213778, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410982', 1410982, '166.648804', '-1.181116', '-137.457901', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213506, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410983', 1410983, '178.145996', '-1.608972', '-140.621307', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213228, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1410984', 1410984, '168.844696', '2.701761', '-163.503296', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212962, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410990', 1410990, '199.114899', '-0.803801', '-174.853195', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212684, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1410996', 1410996, '202.197205', '-1.697314', '-172.655899', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212418, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410998', 1410998, '239.098404', '-2.190103', '-187.159805', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212146, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1410999', 1410999, '221.515396', '-6.264487', '-154.155502', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211874, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411000', 1411000, '227.837204', '-8.126032', '-125.948700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211602, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411003', 1411003, '174.579300', '-1.892151', '-102.278099', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411004', 1411004, '182.699707', '-4.339209', '-88.384857', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211058, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411005', 1411005, '161.154007', '4.078132', '-169.399704', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411032', 1411032, '271.173798', '-9.203460', '-119.877403', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411034', 1411034, '330.082886', '-2.640436', '-152.968796', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173790, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411036', 1411036, '305.867188', '-2.983790', '-188.262894', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411037', 1411037, '302.815399', '-3.417479', '-190.063507', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411038', 1411038, '283.192108', '-6.780017', '-171.401596', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411042', 1411042, '287.338715', '-5.114256', '-195.320007', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411049', 1411049, '276.640594', '-8.026556', '-141.155594', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411065', 1411065, '308.725311', '-4.528103', '-80.785583', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411066', 1411066, '311.802795', '-5.117999', '-76.683037', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411069', 1411069, '291.112213', '-5.409167', '-79.667397', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411071', 1411071, '346.714203', '-3.206666', '-41.466160', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411078', 1411078, '264.779999', '-11.621630', '-65.637466', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183878, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411084', 1411084, '234.546997', '-11.793010', '-2.134793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183606, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411085', 1411085, '250.625107', '-8.387555', '28.634951', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183334, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411086', 1411086, '313.420288', '-6.097115', '16.095341', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183038, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411087', 1411087, '314.703308', '-5.599903', '20.012140', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182766, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411119', 1411119, '309.285095', '2.975462', '97.764503', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182494, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411120', 1411120, '326.314087', '2.426137', '90.012917', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182222, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411121', 1411121, '371.612488', '7.304699', '55.979481', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411124', 1411124, '375.810211', '7.175481', '51.219879', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411135', 1411135, '420.071991', '5.244238', '-35.509991', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411136', 1411136, '417.919312', '5.091386', '-39.660309', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411137', 1411137, '425.005402', '6.439638', '-41.263420', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411148', 1411148, '449.318512', '32.509201', '-8.551085', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170556, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411152', 1411152, '505.440613', '42.969250', '-25.847120', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170284, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411155', 1411155, '511.920410', '44.121750', '-42.307079', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171644, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411157', 1411157, '502.891510', '43.241459', '-46.006001', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171372, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411159', 1411159, '481.475494', '41.105301', '-9.940406', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171100, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411160', 1411160, '484.982300', '41.536228', '-12.749530', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171916, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411162', 1411162, '201.709000', '-7.309118', '-73.014473', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181134, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411163', 1411163, '206.805496', '-9.964188', '-16.037279', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180862, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411164', 1411164, '183.550705', '-8.560358', '-4.379386', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180590, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411167', 1411167, '127.300301', '-5.901662', '12.460290', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180318, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411170', 1411170, '92.851097', '-4.928711', '4.867581', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180046, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411171', 1411171, '127.489098', '-7.126010', '58.609852', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179774, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411173', 1411173, '216.815399', '-9.170719', '-44.144390', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411174', 1411174, '218.066605', '-9.475899', '-42.282791', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411176', 1411176, '184.252594', '-8.621394', '-0.259450', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411178', 1411178, '102.749901', '-11.800030', '112.244499', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411179', 1411179, '107.205597', '-7.793041', '74.349869', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411180', 1411180, '84.061897', '-6.851347', '16.464439', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411181', 1411181, '84.336563', '-6.698757', '13.137970', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411182', 1411182, '275.292297', '23.606110', '190.161697', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411186', 1411186, '288.694397', '21.579050', '187.354996', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177344, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411187', 1411187, '286.440796', '21.978689', '190.167206', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177072, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411193', 1411193, '237.018204', '23.458019', '156.614304', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176800, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411197', 1411197, '211.473099', '23.453070', '169.805405', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176528, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411198', 1411198, '209.800598', '23.457560', '211.348297', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176256, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411202', 1411202, '205.811798', '24.000139', '204.175003', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175984, 1, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(148, 'f1f1', 'bnpc1411203', 1411203, '226.011993', '23.536930', '175.448105', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175712, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411206', 1411206, '227.024994', '24.063431', '228.666702', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175440, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411207', 1411207, '224.858200', '23.422550', '230.009598', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175168, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411208', 1411208, '234.736603', '23.544621', '214.365707', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411210', 1411210, '233.020493', '23.453070', '214.312897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411213', 1411213, '213.946701', '23.453070', '226.459106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411214', 1411214, '211.749405', '23.453070', '228.168106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411218', 1411218, '228.444595', '23.457581', '165.045898', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411220', 1411220, '382.833496', '13.565220', '79.972481', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159876, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411222', 1411222, '374.288513', '12.161390', '84.031380', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158516, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411223', 1411223, '409.964111', '18.326040', '60.501968', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159604, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411225', 1411225, '411.001709', '26.138660', '123.399696', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158788, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411227', 1411227, '436.179108', '32.211750', '101.823402', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159060, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411228', 1411228, '439.383514', '32.761070', '98.649529', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157972, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411233', 1411233, '-58.666859', '-4.080153', '-116.513397', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134082, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411234', 1411234, '-111.996201', '6.549166', '-145.525208', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411235', 1411235, '-123.994698', '12.085680', '-163.495407', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411236', 1411236, '-120.946297', '10.817430', '-167.745193', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411237', 1411237, '-179.948700', '2.732331', '-103.572197', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1411238', 1411238, '-212.568405', '1.504992', '-84.178993', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97676, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(148, 'f1f1', 'bnpc1411240', 1411240, '-212.756607', '1.846313', '-94.163452', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96316, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(148, 'f1f1', 'bnpc1411241', 1411241, '-214.172699', '1.359615', '-82.278023', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96044, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(148, 'f1f1', 'bnpc1411242', 1411242, '-213.856293', '1.439267', '-83.871033', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96588, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(148, 'f1f1', 'bnpc1411244', 1411244, '-193.905304', '2.125694', '-41.069290', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97948, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(148, 'f1f1', 'bnpc1411253', 1411253, '-56.382130', '-4.928711', '-94.529694', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411254', 1411254, '-20.293131', '-2.590379', '-100.341103', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411255', 1411255, '-23.246990', '0.393718', '-138.153305', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411256', 1411256, '-59.128750', '0.758792', '-164.202393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411655', 1411655, '-92.954361', '1.786075', '-122.393898', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411656', 1411656, '-93.869904', '1.736482', '-119.067497', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411657', 1411657, '-109.805397', '6.718060', '-150.029800', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411658', 1411658, '-176.756607', '2.961861', '-114.443398', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1411659', 1411659, '-205.790604', '2.068845', '-61.951530', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412058', 1412058, '-196.154800', '1.939114', '-25.589430', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412059', 1412059, '-163.822601', '0.087921', '-11.411790', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412062', 1412062, '71.492859', '-11.893120', '161.389404', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412463', 1412463, '107.728401', '-8.259025', '159.304703', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412464', 1412464, '108.796501', '-7.985859', '156.375000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412465', 1412465, '45.309830', '-13.145570', '164.612595', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412467', 1412467, '86.263412', '-10.238450', '166.918396', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412470', 1412470, '43.860840', '-19.453880', '194.128098', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412471', 1412471, '40.686970', '-20.436541', '199.194107', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412474', 1412474, '83.274986', '-19.705959', '207.342194', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412475', 1412475, '56.498798', '-24.125010', '265.742401', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412476', 1412476, '56.595661', '-23.666790', '269.184387', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412477', 1412477, '67.313408', '-23.280479', '279.101715', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412478', 1412478, '130.256897', '-28.458679', '285.610504', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412480', 1412480, '84.874817', '-11.151300', '170.539902', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412482', 1412482, '48.863239', '-15.723400', '175.131393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412483', 1412483, '91.596550', '-15.216650', '191.087204', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412484', 1412484, '40.536888', '-24.919319', '239.885193', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412486', 1412486, '12.541730', '-30.409491', '274.885712', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412488', 1412488, '84.885887', '-24.795959', '238.330597', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412489', 1412489, '100.537003', '-25.090691', '289.606689', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412890', 1412890, '192.974106', '-32.093040', '371.993805', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412891', 1412891, '174.770096', '-30.985760', '392.154999', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412892', 1412892, '169.164200', '-29.940310', '393.395111', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412893', 1412893, '172.161407', '-30.924379', '389.056885', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412894', 1412894, '171.285507', '-29.285271', '402.230988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412895', 1412895, '154.779907', '-26.129629', '405.514008', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412896', 1412896, '168.913696', '-28.561871', '440.527588', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412897', 1412897, '173.811401', '-24.163700', '462.640015', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412898', 1412898, '172.581100', '-23.212021', '466.157715', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412900', 1412900, '157.804596', '-31.533340', '347.603088', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412901', 1412901, '181.335403', '-32.472290', '364.442596', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412902', 1412902, '173.037506', '-29.813890', '400.369385', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412903', 1412903, '215.503098', '-32.150810', '397.756897', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412904', 1412904, '151.140594', '-25.314760', '448.172699', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1412905', 1412905, '174.771194', '-22.925610', '465.693207', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413304', 1413304, '-10.375770', '-30.070101', '357.174011', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120482, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1413305', 1413305, '-73.187973', '-29.638651', '377.182007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120210, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1413306', 1413306, '7.099501', '-28.323009', '389.698700', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119938, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1413307', 1413307, '-25.474409', '-30.239300', '288.173004', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413309', 1413309, '2.871708', '-26.996679', '314.962891', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413310', 1413310, '-43.682961', '-31.251160', '365.171295', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413311', 1413311, '-60.904331', '-32.109970', '348.252411', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413312', 1413312, '-26.264040', '-32.967579', '411.424805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413711', 1413711, '1.843092', '-32.621689', '440.420288', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413712', 1413712, '-47.684052', '-34.975368', '436.820007', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413713', 1413713, '-62.874069', '-35.826691', '451.367706', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413714', 1413714, '-36.040771', '-30.235821', '405.258087', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413715', 1413715, '-77.531143', '-35.740108', '463.920013', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413716', 1413716, '-81.834183', '-35.561951', '465.537415', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413717', 1413717, '-81.132263', '-36.687901', '482.108704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413718', 1413718, '-64.000313', '-36.181229', '492.846497', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413719', 1413719, '-45.209900', '-36.768280', '469.442810', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413721', 1413721, '-49.479870', '-31.658331', '420.700195', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413723', 1413723, '-61.146591', '-34.546021', '439.197601', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413724', 1413724, '-12.636190', '-34.818890', '433.701904', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413725', 1413725, '-21.261789', '-35.776421', '463.813293', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1413726', 1413726, '-80.766037', '-35.860481', '467.917786', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1414923', 1414923, '-251.624496', '8.046767', '9.209213', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1414924', 1414924, '-237.355103', '14.172800', '56.681469', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1414925', 1414925, '-240.865097', '13.064570', '51.144550', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1414928', 1414928, '-261.738007', '16.472500', '59.800060', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1414929', 1414929, '-271.273499', '19.264000', '95.431259', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1414931', 1414931, '-299.224915', '20.999870', '171.197403', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1414932', 1414932, '-335.657013', '21.199930', '166.262405', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1414935', 1414935, '-333.186493', '21.314899', '161.005798', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1414936', 1414936, '-351.155914', '21.194731', '192.767197', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1414938', 1414938, '-239.843002', '7.295271', '0.194433', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1415337', 1415337, '-263.631592', '17.193020', '61.247459', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1415339', 1415339, '-340.596497', '21.199930', '161.368500', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1415340', 1415340, '-332.306000', '21.000000', '208.378098', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1415341', 1415341, '-328.043915', '21.000000', '211.118393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1415342', 1415342, '-292.652802', '20.981110', '203.265396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1415343', 1415343, '-87.174072', '-39.921982', '291.489105', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1415344', 1415344, '-112.985397', '-40.020420', '312.799713', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1415345', 1415345, '-86.737244', '-40.184792', '302.023285', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1415346', 1415346, '-116.616600', '-40.014709', '309.506805', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1415347', 1415347, '-244.678497', '66.147812', '-179.125702', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1415348', 1415348, '-241.352005', '66.788689', '-178.362701', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1415352', 1415352, '-351.735809', '67.765259', '-226.093002', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1415353', 1415353, '-354.085602', '67.313278', '-222.043106', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1415354', 1415354, '-354.115387', '66.529556', '-254.235596', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1415358', 1415358, '-429.221008', '60.624039', '-145.159103', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1415359', 1415359, '-431.571014', '61.023251', '-141.100204', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1415360', 1415360, '-409.323303', '61.264919', '-120.927803', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1415361', 1415361, '-290.298706', '60.229500', '-115.695396', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1415364', 1415364, '-313.710297', '62.882381', '-46.982571', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1415365', 1415365, '-308.186493', '62.943420', '-50.370079', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72208, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1415367', 1415367, '-304.768494', '62.180470', '-99.076874', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72480, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1415368', 1415368, '-275.257507', '60.807152', '-84.214577', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71664, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1415375', 1415375, '-262.012695', '62.577202', '-39.993938', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1415376', 1415376, '-417.990387', '64.377762', '-51.102509', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1415377', 1415377, '-416.159302', '65.476410', '-55.924358', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1415378', 1415378, '-446.097504', '57.907940', '-22.476589', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1415379', 1415379, '-454.154297', '61.631142', '-28.213980', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1415381', 1415381, '-285.852814', '61.458679', '25.148211', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1415382', 1415382, '-414.267212', '60.471451', '-98.405472', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1415383', 1415383, '-462.152802', '62.699409', '-106.490501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1415384', 1415384, '-465.866913', '62.824699', '-107.035797', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1416355', 1416355, '184.649399', '-7.461709', '-54.703640', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173518, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc1418012', 1418012, '397.388092', '18.876289', '87.758537', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149848, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc1418013', 1418013, '272.692596', '-2.411928', '61.854092', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150120, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154901', 2154901, '-288.593994', '59.581390', '-121.735901', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64604, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2154903', 2154903, '-303.822388', '59.830570', '-130.571503', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2154910', 2154910, '-290.943787', '61.814331', '-175.341400', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64876, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2154912', 2154912, '-384.725800', '64.377808', '-230.792694', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2154914', 2154914, '-416.247894', '61.594559', '-135.801102', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2154915', 2154915, '-397.116089', '56.778770', '-87.632607', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2154916', 2154916, '-408.031494', '53.104481', '35.133572', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2154917', 2154917, '-274.891388', '62.760250', '-48.600040', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2154925', 2154925, '-365.255188', '56.015820', '61.905800', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2154932', 2154932, '-452.140106', '63.523258', '-235.614594', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92276, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154933', 2154933, '-486.564514', '58.060532', '-222.186707', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154938', 2154938, '-449.027313', '55.863232', '-205.401703', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91732, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154939', 2154939, '-453.788086', '56.259960', '-203.845306', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91460, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154940', 2154940, '-449.607086', '55.100281', '-200.518799', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91188, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154941', 2154941, '-459.128693', '64.652428', '-264.026886', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154943', 2154943, '-483.543213', '58.182598', '-215.136993', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90112, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154944', 2154944, '-488.316101', '67.415604', '-265.598907', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154945', 2154945, '-487.007385', '67.617432', '-267.616608', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90916, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154950', 2154950, '-508.114197', '73.937157', '-289.616486', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154952', 2154952, '-505.210999', '72.800743', '-287.708893', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154954', 2154954, '-475.800293', '75.099243', '-316.311890', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88486, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154959', 2154959, '-474.076904', '71.450668', '-300.198914', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154963', 2154963, '-481.180389', '74.270866', '-319.393005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88752, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154965', 2154965, '-509.328613', '51.460609', '-230.011002', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154966', 2154966, '-530.510376', '48.020088', '-245.654999', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87670, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154968', 2154968, '-550.774414', '46.775639', '-245.014099', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154969', 2154969, '-546.684998', '46.860470', '-244.251205', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154970', 2154970, '-545.647400', '50.522579', '-203.540100', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154971', 2154971, '-547.356384', '51.163448', '-199.786407', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154973', 2154973, '-572.310486', '49.567921', '-226.453506', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90644, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154974', 2154974, '-564.080322', '50.297001', '-211.993607', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154976', 2154976, '-508.251099', '57.374981', '-255.303207', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154978', 2154978, '-533.645081', '43.546291', '-230.397507', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2154980', 2154980, '-468.316010', '57.494301', '-212.252502', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2154982', 2154982, '-485.247803', '68.405968', '-274.754211', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2154983', 2154983, '-505.135406', '73.043167', '-290.313904', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2154985', 2154985, '-528.526672', '48.142170', '-244.495300', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2154986', 2154986, '-568.407227', '50.556568', '-214.304596', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320574', 2320574, '261.921387', '1.753539', '-223.409698', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210786, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320575', 2320575, '261.238495', '0.534709', '-243.419296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320576', 2320576, '263.797699', '1.764011', '-223.470901', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320577', 2320577, '259.453186', '1.043279', '-240.840607', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320579', 2320579, '274.919800', '-1.072963', '-256.170593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209698, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320580', 2320580, '300.060089', '-0.888014', '-307.572510', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320581', 2320581, '324.245514', '-1.093548', '-288.072113', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320582', 2320582, '298.274811', '-0.855762', '-304.993805', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320583', 2320583, '325.011292', '-1.286943', '-316.835388', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208610, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320584', 2320584, '287.788513', '-0.475198', '-298.277313', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208338, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320585', 2320585, '329.843903', '-0.745502', '-290.159698', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320586', 2320586, '325.924103', '-0.928046', '-285.067993', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320587', 2320587, '327.193207', '-1.286943', '-313.833496', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207522, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320588', 2320588, '337.177185', '0.441468', '-264.191803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207250, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320589', 2320589, '332.682892', '0.959346', '-254.439896', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206978, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320590', 2320590, '329.305206', '0.991071', '-252.106293', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206706, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320591', 2320591, '304.253815', '-0.643113', '-258.978912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320596', 2320596, '346.493591', '-0.483981', '-328.131287', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206162, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320597', 2320597, '302.790710', '-1.010156', '-352.830505', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320598', 2320598, '273.957489', '-0.689871', '-328.818512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205618, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320599', 2320599, '268.469910', '-0.593068', '-327.086395', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205346, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320600', 2320600, '267.525513', '-0.806307', '-329.538208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205074, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320601', 2320601, '276.737091', '0.547026', '-314.840912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320610', 2320610, '288.781494', '-1.187131', '-281.665588', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320612', 2320612, '330.290802', '-1.286943', '-344.531311', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320617', 2320617, '92.850220', '-10.902450', '173.235596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320637', 2320637, '-108.605698', '-30.528610', '272.296295', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320638', 2320638, '-138.649902', '-23.382610', '264.698212', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320639', 2320639, '-99.474327', '-30.263571', '271.854614', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320641', 2320641, '-170.286606', '-27.619471', '297.813995', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320642', 2320642, '-171.781998', '-27.505461', '288.445007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320643', 2320643, '-165.769897', '-27.707670', '293.053192', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320645', 2320645, '-125.383400', '-25.040100', '360.402802', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320646', 2320646, '-137.475906', '-27.672729', '336.516113', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320647', 2320647, '-141.819901', '-30.193661', '309.942688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320649', 2320649, '-59.102539', '-28.549570', '296.388702', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320650', 2320650, '277.147400', '-31.644880', '389.827209', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320651', 2320651, '250.690399', '-30.350241', '408.346588', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106362, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320652', 2320652, '274.666290', '-31.273550', '391.993988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320654', 2320654, '299.640686', '-31.632290', '402.348511', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320655', 2320655, '300.434814', '-32.791679', '411.978302', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320656', 2320656, '342.732788', '-31.784590', '408.346588', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320658', 2320658, '308.735687', '-32.272881', '398.214600', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105534, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(148, 'f1f1', 'bnpc2320659', 2320659, '329.910309', '-31.601860', '408.307800', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320660', 2320660, '332.175415', '-31.647480', '410.657013', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320661', 2320661, '344.838593', '-31.113190', '440.115906', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320664', 2320664, '144.316299', '-22.573250', '513.925293', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320665', 2320665, '141.166702', '-21.478600', '518.533508', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320666', 2320666, '165.008896', '-23.196131', '497.355591', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320667', 2320667, '137.956802', '-21.858990', '489.646698', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103642, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320668', 2320668, '130.324295', '-19.810080', '417.345490', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320669', 2320669, '98.407799', '-20.697760', '221.536407', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320671', 2320671, '97.314743', '-11.800020', '101.237198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320675', 2320675, '135.972794', '-11.800140', '133.207794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320678', 2320678, '185.468796', '-11.800210', '106.268402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320683', 2320683, '188.220001', '-11.825790', '62.851860', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320688', 2320688, '201.678406', '-11.795270', '23.117371', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320694', 2320694, '260.142914', '-12.002980', '-90.756157', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320695', 2320695, '258.451996', '-12.002920', '-92.319710', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320696', 2320696, '257.085999', '-12.006830', '-154.938705', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320697', 2320697, '264.474091', '-12.313630', '-187.969193', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320721', 2320721, '396.475098', '20.645411', '107.225098', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159332, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320722', 2320722, '419.413391', '27.114370', '102.443001', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158244, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320725', 2320725, '-159.887802', '18.109520', '-68.195572', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320727', 2320727, '-170.536102', '27.551260', '-85.891403', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320728', 2320728, '-170.885803', '27.966640', '-89.178688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320732', 2320732, '-547.753174', '19.485781', '-191.943298', 30, 0, 0, 0, 2, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63894, 1, 0, 0, 0, 0, 0, 4302234, 0, 0), +(148, 'f1f1', 'bnpc2320790', 2320790, '-439.475098', '48.996670', '43.930679', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320791', 2320791, '-432.144196', '49.318508', '-4.165760', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2320793', 2320793, '-242.034393', '58.664711', '38.845100', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320794', 2320794, '-206.227997', '57.382519', '52.006420', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320797', 2320797, '-193.570099', '74.743111', '21.367661', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320800', 2320800, '-238.635895', '62.272018', '25.375710', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2320801', 2320801, '-219.805405', '67.608017', '9.079071', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2341782', 2341782, '345.014008', '-1.078350', '-177.896896', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2341783', 2341783, '319.296997', '-0.849605', '-171.347198', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2341784', 2341784, '292.707397', '-6.651216', '-123.136101', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2341785', 2341785, '347.310486', '6.679530', '84.092422', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2341786', 2341786, '354.267487', '5.193762', '60.841671', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2341787', 2341787, '348.283203', '3.086715', '49.707630', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2603191', 2603191, '256.015594', '-11.793030', '-185.891006', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164850, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2603192', 2603192, '260.232605', '-11.793140', '-180.095505', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164578, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612552', 2612552, '252.195404', '-11.793090', '-145.885406', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164306, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612553', 2612553, '254.433395', '-11.793010', '-113.328796', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164034, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612554', 2612554, '258.838715', '-11.793140', '-73.879280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163762, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612555', 2612555, '233.580307', '-11.793010', '-18.570280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163490, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612556', 2612556, '216.695099', '-11.793000', '8.959249', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163218, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612557', 2612557, '212.512299', '-11.795270', '12.741240', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162946, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612559', 2612559, '120.048798', '-11.800060', '124.326401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162680, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612561', 2612561, '191.515900', '-11.856310', '51.102409', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162408, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612562', 2612562, '189.768997', '-11.800210', '71.478256', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162136, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612563', 2612563, '192.239395', '-11.800030', '91.385788', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161864, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612564', 2612564, '179.480606', '-11.800260', '106.735802', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161592, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612565', 2612565, '165.069794', '-11.800630', '119.881798', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161320, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612566', 2612566, '146.988297', '-11.800000', '126.311401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161048, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612569', 2612569, '132.474792', '-11.800090', '139.979294', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160776, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612570', 2612570, '250.133804', '-11.793030', '-55.898849', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160498, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612571', 2612571, '205.980301', '-11.772920', '33.134300', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160226, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612573', 2612573, '421.064514', '24.757450', '78.823257', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2612574', 2612574, '428.320709', '31.721590', '124.805603', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157428, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2615184', 2615184, '360.341705', '-32.028728', '435.294006', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2615186', 2615186, '375.478699', '-32.089771', '448.966095', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2615187', 2615187, '382.955597', '-31.998211', '440.878815', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc2615503', 2615503, '253.211594', '-11.793080', '-161.360504', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154514, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc2615504', 2615504, '253.937607', '-11.793030', '-68.861298', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154242, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3693097', 3693097, '-224.085602', '1.055553', '-69.316994', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(148, 'f1f1', 'bnpc3693102', 3693102, '-195.941101', '2.945007', '-104.081802', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96860, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(148, 'f1f1', 'bnpc3693103', 3693103, '-189.283005', '2.362727', '-83.005783', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97404, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(148, 'f1f1', 'bnpc3693105', 3693105, '-210.620300', '1.998901', '-96.299683', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95500, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(148, 'f1f1', 'bnpc3693109', 3693109, '-195.513901', '2.216981', '-40.186169', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95228, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(148, 'f1f1', 'bnpc3693111', 3693111, '-200.096695', '2.060742', '-67.256340', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(148, 'f1f1', 'bnpc3693121', 3693121, '368.459503', '-32.364429', '413.199005', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3693136', 3693136, '242.206406', '-30.411280', '402.182007', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3693138', 3693138, '225.451996', '-28.488640', '423.605713', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3693140', 3693140, '215.350494', '-32.486500', '387.777496', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3693173', 3693173, '-508.842590', '40.237991', '-79.606361', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3693174', 3693174, '-516.899414', '40.146439', '-74.967621', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3693175', 3693175, '-514.549500', '40.207470', '-77.103882', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85228, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3693176', 3693176, '-520.866821', '40.146439', '-64.255783', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3693177', 3693177, '-515.685120', '40.359970', '-54.677021', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3693178', 3693178, '-503.929199', '41.000938', '-56.107471', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3693179', 3693179, '-483.658691', '45.245129', '-60.343559', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3693180', 3693180, '-481.533905', '45.933941', '-62.817669', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3693183', 3693183, '-378.957794', '51.132931', '52.109509', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3693184', 3693184, '-397.512787', '49.301849', '10.055650', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3693185', 3693185, '-433.121094', '49.318531', '34.558170', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3693188', 3693188, '-322.396393', '57.338970', '-6.726664', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65686, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3693623', 3693623, '-184.619797', '78.429970', '42.778721', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3693624', 3693624, '-191.994202', '77.183746', '37.510250', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72746, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3694403', 3694403, '-314.266113', '63.832611', '57.746510', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3742079', 3742079, '-530.733887', '65.311684', '98.466423', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3742133', 3742133, '-526.186829', '65.311691', '102.647400', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3742194', 3742194, '48.050610', '-11.800030', '-40.915428', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153976, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3742195', 3742195, '22.187790', '-11.800000', '-69.750504', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153704, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3742196', 3742196, '15.168640', '-11.800000', '-75.762558', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153432, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3742197', 3742197, '6.348711', '-11.800040', '-110.540199', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153160, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3742198', 3742198, '-54.153049', '-3.500003', '-186.530106', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152888, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3742199', 3742199, '-50.919399', '-3.500001', '-182.895996', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152616, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3742200', 3742200, '-69.779549', '-3.500144', '-196.820496', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152344, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3742201', 3742201, '-62.272110', '-3.500066', '-207.843399', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152072, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3742202', 3742202, '2.735321', '-11.800110', '-122.937599', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151782, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3742203', 3742203, '-6.886642', '-3.500000', '-135.990402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3742204', 3742204, '-6.586641', '-3.500000', '-139.267899', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3742205', 3742205, '-36.719379', '-3.500000', '-180.416794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150966, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3742206', 3742206, '-48.687111', '-3.500072', '-207.096298', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150694, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3746465', 3746465, '-208.691696', '52.495350', '-42.669102', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71120, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3746466', 3746466, '-219.824799', '58.286751', '-60.483898', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3746467', 3746467, '-215.491898', '57.635231', '-71.491089', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70576, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3869502', 3869502, '125.699600', '25.160120', '-311.621185', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41108, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(148, 'f1f1', 'bnpc3869509', 3869509, '-307.502899', '63.448620', '-285.687714', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40842, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(148, 'f1f1', 'bnpc3869525', 3869525, '-206.130997', '53.564651', '-126.977600', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40564, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(148, 'f1f1', 'bnpc3869531', 3869531, '96.403351', '-6.334397', '-121.433502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40298, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(148, 'f1f1', 'bnpc3869540', 3869540, '164.007095', '-6.013201', '-52.486290', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.750000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40020, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(148, 'f1f1', 'bnpc3869598', 3869598, '-4.837158', '-7.919495', '-22.201900', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39760, 5, 0, 20, 0, 0, 30055, 0, 0, 0), +(148, 'f1f1', 'bnpc3869604', 3869604, '85.465698', '-6.089244', '60.991131', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39482, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(148, 'f1f1', 'bnpc3869607', 3869607, '14.362120', '-8.102512', '100.498901', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39204, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(148, 'f1f1', 'bnpc3877513', 3877513, '121.019203', '24.917931', '-304.463287', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204518, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc3884907', 3884907, '-419.228607', '55.416000', '66.506737', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3897658', 3897658, '117.021400', '25.101040', '-311.604492', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204258, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc3898007', 3898007, '132.524597', '24.948450', '-305.562012', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203974, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc4083772', 4083772, '-327.757690', '21.357790', '204.228699', 58, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 5782, 1, 0, 0, 0, 0, 0, 4083771, 0, 0), +(148, 'f1f1', 'bnpc4083778', 4083778, '-297.044800', '21.140360', '151.049896', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 8174, 1, 0, 0, 0, 0, 0, 4083775, 0, 0), +(148, 'f1f1', 'bnpc4083795', 4083795, '-327.840088', '21.103210', '206.835907', 58, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6054, 1, 0, 0, 0, 0, 0, 4083794, 0, 0), +(148, 'f1f1', 'bnpc4083796', 4083796, '-296.744812', '21.145109', '151.349899', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7662, 1, 0, 0, 0, 0, 0, 4083797, 0, 0), +(148, 'f1f1', 'bnpc4083798', 4083798, '-296.444794', '21.149870', '151.649902', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7278, 1, 0, 0, 0, 0, 0, 4083799, 0, 0), +(148, 'f1f1', 'bnpc4083800', 4083800, '-296.144806', '21.154619', '151.949905', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6894, 1, 0, 0, 0, 0, 0, 4083801, 0, 0), +(148, 'f1f1', 'bnpc4083802', 4083802, '-295.844788', '21.159370', '152.249893', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6510, 1, 0, 0, 0, 0, 0, 4083803, 0, 0), +(148, 'f1f1', 'bnpc4083871', 4083871, '127.641701', '-6.332520', '-100.389198', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38544, 8, 0, 0, 4295658, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4295672', 4295672, '132.951797', '-6.332520', '-100.114502', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37512, 8, 0, 0, 4295661, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4295673', 4295673, '137.910706', '-6.438695', '-96.608414', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37240, 8, 0, 0, 4295662, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4295675', 4295675, '126.695297', '-6.948534', '-90.459633', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36968, 8, 0, 0, 4295663, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4295677', 4295677, '126.418900', '-6.971872', '-84.529358', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36696, 8, 0, 0, 4295664, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4296957', 4296957, '95.628906', '-2.029270', '-42.382439', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35816, 1, 0, 0, 2280260, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4296958', 4296958, '98.693558', '-2.029731', '-43.942860', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35544, 1, 0, 0, 2280261, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4296959', 4296959, '101.467598', '-2.005454', '-46.176739', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35272, 1, 0, 0, 2280262, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4296960', 4296960, '104.146896', '-1.968804', '-48.332958', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35000, 1, 0, 0, 2280263, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302206', 4302206, '-555.148071', '29.067560', '-230.785706', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302207', 4302207, '-516.437683', '22.056881', '-221.606796', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302208', 4302208, '-524.244812', '24.477020', '-253.274597', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302209', 4302209, '-527.577820', '24.719191', '-254.932404', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302212', 4302212, '-582.818420', '21.723471', '-238.845596', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302213', 4302213, '-596.266602', '20.622200', '-226.349106', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302214', 4302214, '-579.272827', '21.076719', '-214.966003', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302215', 4302215, '-581.780823', '21.842831', '-241.897293', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302216', 4302216, '-528.772888', '19.922779', '-195.839096', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61374, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302217', 4302217, '-537.197327', '20.139130', '-199.348495', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302218', 4302218, '-563.208191', '18.867491', '-186.546005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302219', 4302219, '-527.765808', '20.129919', '-200.682007', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302220', 4302220, '-569.817627', '10.940670', '-130.235794', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302221', 4302221, '-617.120605', '21.896610', '-197.436493', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302222', 4302222, '-575.432983', '11.001710', '-129.716995', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302223', 4302223, '-568.810608', '10.910160', '-133.318100', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302225', 4302225, '-502.711792', '17.279470', '-157.029495', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59204, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302226', 4302226, '-496.089386', '16.799740', '-160.630707', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58938, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302228', 4302228, '-481.979004', '18.189381', '-229.549103', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302229', 4302229, '-555.941528', '25.463579', '-260.210693', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4302351', 4302351, '-572.925293', '18.257090', '-181.740707', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57718, 1, 0, 0, 0, 0, 0, 4302260, 0, 0), +(148, 'f1f1', 'bnpc4302353', 4302353, '-513.667175', '23.842480', '-245.333893', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57446, 1, 0, 0, 0, 0, 0, 4302268, 0, 0), +(148, 'f1f1', 'bnpc4333043', 4333043, '-309.205597', '57.338970', '-10.110600', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(148, 'f1f1', 'bnpc4333385', 4333385, '-348.321503', '67.616417', '-233.774200', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4510293', 4510293, '213.253204', '-32.025242', '324.145386', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38950, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(148, 'f1f1', 'bnpc4621046', 4621046, '370.051086', '-32.295422', '411.821198', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42124, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(148, 'f1f1', 'bnpc4621047', 4621047, '-538.803589', '50.907551', '-203.075394', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41858, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136062', 1136062, '-505.795593', '9.752348', '104.621803', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205580, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136063', 1136063, '-515.044922', '11.400910', '112.794899', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205308, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136064', 1136064, '-501.586090', '9.603134', '109.964401', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205036, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136065', 1136065, '-475.682312', '6.895020', '108.614403', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204764, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136067', 1136067, '-478.398712', '7.440553', '105.715897', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204492, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136074', 1136074, '-391.806000', '9.109558', '308.461090', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186842, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc1136075', 1136075, '-414.835693', '4.099017', '268.726593', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136076', 1136076, '-390.326385', '4.860912', '278.225494', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136077', 1136077, '-430.838715', '8.406867', '277.241089', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136078', 1136078, '-459.421692', '5.690572', '240.230301', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136079', 1136079, '-450.953796', '11.975280', '268.649994', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136080', 1136080, '-390.585205', '9.262146', '310.566895', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187114, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc1136081', 1136081, '-461.788513', '5.891314', '238.861206', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136082', 1136082, '-473.594299', '10.086170', '246.936707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136085', 1136085, '-435.743011', '1.967827', '88.564453', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202328, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1136086', 1136086, '-390.760986', '0.834163', '111.607300', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202056, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1136087', 1136087, '-418.825409', '0.336109', '91.913406', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201784, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1136089', 1136089, '-414.658203', '0.079596', '95.602753', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201512, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1136091', 1136091, '-415.322693', '-0.226261', '151.930603', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201240, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1136092', 1136092, '-421.841888', '0.864481', '141.020401', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200968, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1136093', 1136093, '-381.670593', '0.762653', '137.407394', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200696, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1136094', 1136094, '-430.745300', '0.804663', '164.744202', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200424, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1136097', 1136097, '-431.509888', '2.089151', '233.463394', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136098', 1136098, '-446.728088', '0.504031', '188.779205', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136099', 1136099, '-432.335907', '1.523763', '185.544998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136100', 1136100, '-400.007599', '-0.063123', '184.140106', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136101', 1136101, '-403.100311', '-0.089608', '188.898804', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136102', 1136102, '-360.642303', '0.164527', '231.393402', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136103', 1136103, '-384.551605', '0.763345', '233.278397', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136104', 1136104, '-386.850494', '0.112991', '227.897705', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136130', 1136130, '-325.468597', '10.213140', '333.038086', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136131', 1136131, '-242.241394', '-5.472987', '226.931595', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136132', 1136132, '-328.277710', '4.935143', '305.884399', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136134', 1136134, '-321.859711', '9.391951', '328.320587', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136136', 1136136, '-268.451996', '-2.822966', '243.274506', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136137', 1136137, '-184.086700', '-8.314297', '238.537598', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136139', 1136139, '-95.525383', '-7.421386', '293.721008', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136140', 1136140, '-126.314003', '-8.479818', '267.845093', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136141', 1136141, '-103.592903', '-7.979246', '256.096588', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136142', 1136142, '-128.252106', '-6.729275', '293.324097', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136143', 1136143, '-124.302597', '-8.155410', '276.504700', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136158', 1136158, '-113.634003', '-4.072056', '313.771210', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136161', 1136161, '-133.257095', '-0.167896', '343.312714', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163548, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1136162', 1136162, '-92.474274', '0.803288', '352.180786', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163820, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1136163', 1136163, '-74.857803', '4.447460', '383.016602', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136164', 1136164, '-32.537300', '7.616392', '412.410797', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136165', 1136165, '-64.080299', '11.043260', '430.339905', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136167', 1136167, '-5.813734', '2.975462', '373.769714', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136168', 1136168, '37.950851', '7.949909', '464.214691', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136170', 1136170, '78.733383', '6.701904', '382.834015', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158676, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136172', 1136172, '-27.413450', '-5.802525', '309.247986', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136173', 1136173, '4.164327', '-4.588222', '319.364899', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136174', 1136174, '-5.613925', '-6.047291', '306.725403', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136175', 1136175, '-60.686939', '-2.369054', '328.478394', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136177', 1136177, '-22.903839', '-5.355963', '311.696014', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136178', 1136178, '-138.536697', '-2.761930', '180.468399', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155116, 1, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(152, 'f1f2', 'bnpc1136179', 1136179, '-156.542297', '2.639764', '135.026993', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1136180', 1136180, '-150.621796', '2.365101', '138.292496', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1136182', 1136182, '-172.930496', '-0.839293', '164.965195', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1136190', 1136190, '-288.410797', '11.764660', '-25.711500', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146696, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136191', 1136191, '-269.916901', '12.741240', '-45.975479', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139388, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136192', 1136192, '-305.683990', '11.673100', '-35.629860', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139116, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136194', 1136194, '-253.040405', '11.428960', '-3.524881', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136196', 1136196, '-216.479797', '5.813640', '85.984543', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148316, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1136197', 1136197, '-296.681213', '8.743372', '66.361427', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147772, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1136198', 1136198, '-280.833405', '6.822407', '95.059250', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148044, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1136224', 1136224, '68.558739', '11.184820', '-24.826481', 762, 0, 0, 0, 0, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119934, 2, 0, 0, 0, 0, 30122, 0, 0, 0), +(152, 'f1f2', 'bnpc1136225', 1136225, '69.687866', '11.001710', '-24.643370', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118308, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(152, 'f1f2', 'bnpc1136228', 1136228, '333.638397', '-4.043701', '-37.918701', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116138, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc1136229', 1136229, '349.049408', '-2.892388', '-51.221401', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116410, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc1136230', 1136230, '507.865997', '-11.795270', '4.501364', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136231', 1136231, '537.636780', '-12.274270', '-13.554320', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136232', 1136232, '536.101196', '-12.090500', '-2.388316', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136233', 1136233, '530.091492', '-12.161830', '-4.477412', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136234', 1136234, '514.392822', '-12.155740', '-30.914129', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1136235', 1136235, '594.192078', '-12.117190', '-6.794415', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1162438', 1162438, '234.721100', '4.423762', '180.467896', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1162439', 1162439, '236.722900', '4.611117', '188.587906', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1162445', 1162445, '199.757599', '6.240894', '156.164093', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130156, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1162451', 1162451, '252.094193', '0.076233', '155.870804', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126994, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1162452', 1162452, '286.884094', '0.589654', '176.855103', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127538, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1162453', 1162453, '298.563293', '-0.085100', '171.096207', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127266, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1162458', 1162458, '203.268799', '1.655764', '106.938103', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126722, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1162460', 1162460, '243.554703', '-3.339902', '84.717239', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126178, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1162461', 1162461, '279.461212', '-4.218416', '42.329281', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129884, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1162462', 1162462, '294.178589', '-5.478088', '38.284790', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129612, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1162463', 1162463, '301.736115', '-5.423965', '50.006149', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125018, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1162467', 1162467, '241.840195', '-1.764643', '99.107300', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126450, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1162469', 1162469, '274.593109', '-5.942087', '11.604580', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124746, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1162472', 1162472, '227.649307', '-3.036592', '-15.976240', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129340, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1162476', 1162476, '220.935303', '-2.975586', '-22.720699', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129068, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1162477', 1162477, '207.324203', '-4.013123', '-42.343868', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125834, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc1162479', 1162479, '154.222900', '0.015198', '7.949890', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120206, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc1162480', 1162480, '176.019806', '-4.055645', '-3.018583', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117492, 2, 0, 0, 0, 0, 30120, 0, 0, 0), +(152, 'f1f2', 'bnpc1162481', 1162481, '178.942505', '-0.503601', '60.196781', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115594, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc1162482', 1162482, '181.322906', '-0.473083', '58.762451', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120478, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc1162483', 1162483, '356.642700', '-2.987466', '-35.734451', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121566, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc1162484', 1162484, '333.913086', '-4.135254', '-40.177059', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118580, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc1162486', 1162486, '111.986000', '6.118835', '-40.909481', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119124, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc1162487', 1162487, '74.814934', '10.482900', '-18.448200', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115866, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc1162490', 1162490, '-9.318063', '19.332541', '-19.108101', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120750, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc1162492', 1162492, '-20.523430', '17.990339', '11.642590', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119396, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1185226', 1185226, '256.488800', '-24.255501', '-358.053009', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68326, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186102', 1186102, '185.839600', '-21.471359', '-442.130188', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68054, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186104', 1186104, '139.593506', '-25.435749', '-371.665588', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186105', 1186105, '133.317993', '-24.199471', '-327.840088', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186106', 1186106, '85.221588', '-28.236040', '-263.782715', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186107', 1186107, '112.138496', '-30.215771', '-200.427307', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186108', 1186108, '171.129898', '-31.077660', '-212.573502', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44874, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186113', 1186113, '269.977814', '-10.584900', '-100.442299', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73786, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186119', 1186119, '301.000702', '-14.170150', '-179.921906', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186121', 1186121, '299.316498', '-13.980780', '-177.154099', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72426, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186122', 1186122, '210.285797', '-6.827882', '-189.363602', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76258, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186126', 1186126, '195.813797', '-6.409023', '-148.998001', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77074, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186127', 1186127, '198.768997', '-5.217091', '-147.382904', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76802, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186128', 1186128, '264.066498', '-11.720200', '-141.711304', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72970, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186130', 1186130, '255.084595', '-10.365080', '-135.648193', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72698, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186131', 1186131, '262.121887', '-11.356690', '-170.924500', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74880, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186134', 1186134, '257.526489', '-11.230880', '-163.622498', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75152, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186135', 1186135, '289.600891', '-14.023210', '-132.829803', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186142', 1186142, '321.177094', '-17.145399', '-141.817795', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75424, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186146', 1186146, '357.922394', '-18.371901', '-147.675705', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72154, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186157', 1186157, '339.864105', '-20.256371', '-163.073196', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75986, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186160', 1186160, '325.512207', '-18.022200', '-210.406693', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186163', 1186163, '334.967590', '-18.257030', '-188.068497', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186165', 1186165, '357.646301', '-21.037640', '-172.919998', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186166', 1186166, '355.845795', '-21.195030', '-175.910797', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186167', 1186167, '354.167297', '-20.996559', '-172.828506', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186168', 1186168, '327.501495', '-18.763630', '-170.766296', 16, 0, 0, 0, 1, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186169', 1186169, '357.691193', '-18.922649', '-152.895798', 16, 0, 0, 0, 1, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186173', 1186173, '362.066711', '-19.066210', '-226.023697', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186174', 1186174, '367.605011', '-19.394260', '-223.926193', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69736, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1186185', 1186185, '432.333801', '-18.556009', '-200.427307', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335118', 1335118, '259.814606', '-9.041327', '-75.930794', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82388, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335120', 1335120, '258.747192', '-9.339743', '-77.470100', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335121', 1335121, '271.628510', '-12.409580', '-119.495102', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335122', 1335122, '268.973389', '-11.585720', '-119.678200', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335125', 1335125, '299.467896', '-15.161890', '-151.066498', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335126', 1335126, '300.071503', '-15.260950', '-157.970398', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335127', 1335127, '305.104095', '-16.013350', '-153.873703', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80762, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335128', 1335128, '362.569489', '-19.896090', '-195.239197', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335129', 1335129, '359.914490', '-20.141609', '-198.291000', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335131', 1335131, '376.912994', '-17.746290', '-239.673492', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79940, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335132', 1335132, '378.265808', '-17.184210', '-245.818802', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79668, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335133', 1335133, '373.817291', '-17.567560', '-244.927200', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79396, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335135', 1335135, '382.244812', '-18.581270', '-213.006607', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335136', 1335136, '384.289612', '-18.812380', '-216.180496', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78852, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335137', 1335137, '365.346710', '-17.380070', '-235.889297', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78586, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335142', 1335142, '325.117188', '-17.441219', '-261.926086', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335147', 1335147, '382.083588', '-15.505330', '-274.037415', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335148', 1335148, '379.490387', '-15.238400', '-273.274506', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335150', 1335150, '393.739594', '-17.082621', '-246.185501', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335151', 1335151, '395.540100', '-17.610670', '-243.194702', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73242, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335152', 1335152, '374.262207', '-16.275169', '-255.869507', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74058, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335154', 1335154, '445.548096', '-18.953011', '-239.643005', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75714, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335155', 1335155, '410.055603', '-15.113950', '-262.409393', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335156', 1335156, '409.262085', '-14.690550', '-264.759308', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335171', 1335171, '283.910095', '-19.542110', '-281.001801', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335172', 1335172, '309.847809', '-19.112881', '-260.545685', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49406, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335179', 1335179, '308.749512', '-18.382240', '-278.268188', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335180', 1335180, '305.850189', '-18.505501', '-275.399506', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335181', 1335181, '287.464691', '-20.370840', '-267.414398', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335182', 1335182, '221.773499', '-20.304710', '-402.104889', 73, 0, 0, 0, 1, 6, 0, 0, 70, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335186', 1335186, '260.100708', '-22.595980', '-282.093597', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335187', 1335187, '257.170898', '-22.925730', '-282.856506', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335188', 1335188, '258.178009', '-22.527321', '-280.506592', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335189', 1335189, '259.124115', '-22.919470', '-284.351898', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335191', 1335191, '252.674103', '-25.158079', '-319.881500', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55650, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335245', 1335245, '264.071289', '-23.086901', '-377.431885', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335247', 1335247, '251.044693', '-24.157169', '-429.172791', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56484, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335250', 1335250, '213.636093', '-21.692980', '-416.299286', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335254', 1335254, '250.182205', '-23.049110', '-398.827515', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335255', 1335255, '235.164795', '-22.033070', '-382.140289', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51310, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335257', 1335257, '250.975601', '-23.342621', '-395.073792', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335258', 1335258, '233.840302', '-22.782070', '-408.640991', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335259', 1335259, '228.651703', '-20.932440', '-399.771088', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335260', 1335260, '285.551605', '-20.191130', '-266.194702', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335261', 1335261, '233.309006', '-22.290220', '-403.706696', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335262', 1335262, '226.586807', '-21.579840', '-408.344208', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335263', 1335263, '251.797501', '-24.329281', '-417.166504', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335265', 1335265, '239.352707', '-23.325970', '-417.493805', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335266', 1335266, '234.393204', '-23.440660', '-419.117004', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335269', 1335269, '208.094101', '-20.046240', '-400.359314', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335270', 1335270, '205.635300', '-20.583099', '-405.028595', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335271', 1335271, '214.649200', '-21.421610', '-437.417206', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335272', 1335272, '220.603699', '-19.557770', '-394.169189', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335273', 1335273, '237.537292', '-23.111750', '-434.553314', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335274', 1335274, '201.154007', '-21.053610', '-424.056702', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335275', 1335275, '199.896194', '-21.481091', '-433.825592', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64542, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335276', 1335276, '199.035995', '-21.532829', '-428.054504', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335277', 1335277, '204.574905', '-21.963341', '-430.374695', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335278', 1335278, '203.919998', '-21.381781', '-436.120514', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335279', 1335279, '158.464905', '-25.742020', '-514.580017', 78, 0, 0, 0, 0, 6, 0, 0, 75, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63864, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335280', 1335280, '156.163498', '-25.174259', '-507.993713', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335281', 1335281, '162.755295', '-25.392191', '-508.512512', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335282', 1335282, '160.374893', '-26.243521', '-521.635315', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53064, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335283', 1335283, '153.783005', '-25.787460', '-521.116516', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53880, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335284', 1335284, '164.681107', '-23.516750', '-451.796112', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335287', 1335287, '161.309204', '-24.113899', '-454.393097', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335290', 1335290, '178.249100', '-21.930130', '-465.361603', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335294', 1335294, '176.568298', '-23.836981', '-493.324188', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335295', 1335295, '175.158295', '-24.210711', '-495.597809', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335298', 1335298, '146.524597', '-23.827370', '-466.589294', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49678, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335299', 1335299, '136.972305', '-23.003241', '-490.722107', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335310', 1335310, '139.252106', '-23.121799', '-488.640411', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335313', 1335313, '169.940796', '-26.606640', '-538.220520', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335317', 1335317, '176.719406', '-26.248819', '-529.080017', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335318', 1335318, '175.681793', '-26.337879', '-531.124695', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57300, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335326', 1335326, '135.813904', '-23.796021', '-507.744904', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57572, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335327', 1335327, '143.479095', '-24.673691', '-543.979187', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56756, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335328', 1335328, '142.868698', '-24.722940', '-547.854980', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55940, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335329', 1335329, '145.279694', '-25.150471', '-548.343323', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56212, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335330', 1335330, '167.576401', '-23.605841', '-478.499115', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335331', 1335331, '172.550903', '-23.232599', '-481.184692', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335332', 1335332, '136.520096', '-23.013941', '-481.370514', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60310, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335333', 1335333, '170.445099', '-23.299061', '-477.888702', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1335344', 1335344, '163.126495', '-26.834591', '-547.864319', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347955', 1347955, '185.057404', '-22.517530', '-393.153900', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347956', 1347956, '186.735901', '-22.314060', '-389.308685', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63170, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347958', 1347958, '180.601807', '-22.849991', '-388.088013', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62904, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347959', 1347959, '182.982193', '-22.808430', '-387.447113', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347960', 1347960, '181.853104', '-22.416210', '-391.109192', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347961', 1347961, '163.818802', '-23.941280', '-382.930786', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347964', 1347964, '136.015106', '-25.067890', '-394.922394', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347965', 1347965, '135.952805', '-25.463390', '-380.858490', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347966', 1347966, '159.892807', '-23.691389', '-387.543396', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347967', 1347967, '134.539597', '-25.153410', '-393.304901', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347968', 1347968, '148.660599', '-24.933149', '-382.747192', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62082, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347969', 1347969, '149.210007', '-24.847401', '-385.554901', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347970', 1347970, '145.273102', '-24.985941', '-383.815399', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61544, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347971', 1347971, '146.677002', '-25.017750', '-386.012695', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61278, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347974', 1347974, '119.340797', '-26.901699', '-370.321198', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347976', 1347976, '110.948303', '-27.082211', '-355.214813', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44626, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347977', 1347977, '116.650902', '-26.851940', '-355.502686', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347979', 1347979, '115.985397', '-25.590910', '-330.770813', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347980', 1347980, '96.825470', '-26.731310', '-337.443909', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347981', 1347981, '94.966377', '-26.840120', '-343.493591', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347982', 1347982, '112.341904', '-27.148821', '-352.201202', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347984', 1347984, '127.403000', '-25.039721', '-339.740387', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39306, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347987', 1347987, '128.043900', '-25.102480', '-341.174805', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39578, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347990', 1347990, '103.868103', '-27.830070', '-370.201294', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30578, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347993', 1347993, '104.585403', '-27.703699', '-374.422699', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347994', 1347994, '100.785797', '-27.626970', '-369.774109', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30306, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347996', 1347996, '115.281898', '-25.507601', '-321.858612', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36296, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1347999', 1347999, '95.705887', '-27.105480', '-316.640686', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38496, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348000', 1348000, '92.348900', '-26.525320', '-318.288696', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348001', 1348001, '106.853699', '-27.461729', '-348.520905', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348002', 1348002, '106.675797', '-26.863291', '-353.933014', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43538, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348003', 1348003, '111.067200', '-27.419359', '-348.093689', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43266, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348005', 1348005, '147.925797', '-23.963091', '-316.955292', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348006', 1348006, '139.153000', '-23.312229', '-308.514313', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348007', 1348007, '138.078796', '-23.392130', '-312.001312', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348010', 1348010, '95.115891', '-27.238010', '-299.027893', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35734, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348011', 1348011, '133.297394', '-23.149731', '-303.661987', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348012', 1348012, '93.072998', '-26.876440', '-282.357300', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348013', 1348013, '90.519493', '-27.035959', '-280.262787', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42722, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348014', 1348014, '91.113632', '-26.633659', '-283.826508', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348015', 1348015, '138.584198', '-29.894171', '-214.306305', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348016', 1348016, '133.174103', '-29.752001', '-213.771896', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39034, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348018', 1348018, '125.171204', '-28.822081', '-241.728302', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348019', 1348019, '133.407806', '-29.766630', '-245.194504', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348020', 1348020, '157.760696', '-30.241409', '-209.753799', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348021', 1348021, '110.126297', '-29.295731', '-223.210403', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1348022', 1348022, '159.280807', '-29.889629', '-205.386993', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349415', 1349415, '107.675301', '-28.766970', '-247.061798', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34918, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349419', 1349419, '144.273102', '-29.321350', '-228.200500', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42166, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349420', 1349420, '141.345703', '-29.379709', '-233.926895', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41894, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349421', 1349421, '147.630997', '-28.915890', '-231.464096', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349422', 1349422, '140.337204', '-29.188551', '-230.123901', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41356, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349423', 1349423, '142.912903', '-29.360870', '-232.045303', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41090, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349426', 1349426, '117.321800', '-29.940710', '-208.257904', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349428', 1349428, '119.702202', '-29.857460', '-208.563095', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32210, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(152, 'f1f2', 'bnpc1349429', 1349429, '152.550797', '-29.560490', '-240.746399', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349430', 1349430, '153.238297', '-29.591810', '-244.188797', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349434', 1349434, '153.856705', '-29.735661', '-202.044800', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36568, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349444', 1349444, '163.936996', '-29.950470', '-221.893097', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38224, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349446', 1349446, '170.162399', '-30.332001', '-205.375504', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35190, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349448', 1349448, '92.027107', '-29.617809', '-158.983795', 74, 0, 0, 0, 0, 6, 0, 0, 71, 0, '0.000000', 57, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40962, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349450', 1349450, '88.622063', '-30.374201', '-172.160995', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349453', 1349453, '79.946991', '-30.373859', '-158.627106', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28300, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349454', 1349454, '84.076393', '-30.374201', '-170.842606', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349455', 1349455, '87.641907', '-30.374201', '-169.239105', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349456', 1349456, '97.735252', '-30.373690', '-149.205994', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349457', 1349457, '92.410156', '-30.373690', '-146.716202', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349458', 1349458, '93.722427', '-30.289921', '-150.469894', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349460', 1349460, '102.193199', '-30.374161', '-167.326401', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349462', 1349462, '104.695702', '-30.374050', '-164.732300', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27756, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349463', 1349463, '108.756897', '-30.549700', '-139.678604', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349466', 1349466, '70.533546', '-30.081551', '-177.695999', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349469', 1349469, '67.079147', '-29.548901', '-153.771606', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349471', 1349471, '66.987991', '-29.454809', '-150.085007', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36840, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349475', 1349475, '100.944000', '-30.141479', '-182.035095', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349476', 1349476, '103.423500', '-30.255220', '-183.818893', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc1349477', 1349477, '117.287300', '-30.394251', '-176.134903', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313925', 2313925, '-482.564789', '6.955613', '61.610111', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313933', 2313933, '-429.003693', '2.320748', '236.438400', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313934', 2313934, '-409.316101', '1.057956', '244.817902', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313935', 2313935, '-442.272491', '2.403773', '206.166901', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313937', 2313937, '-428.366699', '7.934575', '277.541107', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313938', 2313938, '-418.558289', '9.127686', '293.699799', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313939', 2313939, '-424.849213', '10.891960', '297.223694', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313940', 2313940, '-380.392212', '6.912290', '296.833710', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313942', 2313942, '-357.351105', '2.181993', '273.792603', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313943', 2313943, '-347.798889', '4.318256', '294.331207', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313944', 2313944, '-351.491608', '4.226702', '289.814514', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313946', 2313946, '-350.392914', '9.353733', '319.966400', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313948', 2313948, '-347.768402', '-0.140188', '238.560394', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313949', 2313949, '-334.432007', '0.900235', '197.100693', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313952', 2313952, '-512.518005', '10.681730', '106.017303', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313954', 2313954, '-466.272797', '4.568396', '120.049896', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313955', 2313955, '-503.845398', '11.240590', '124.209396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313959', 2313959, '-429.545593', '1.312407', '120.378799', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313963', 2313963, '-417.238586', '0.076732', '65.064568', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313964', 2313964, '-397.897705', '-0.211857', '75.408188', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313967', 2313967, '-395.162506', '-0.289825', '72.009888', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313971', 2313971, '-435.869385', '1.346877', '216.851196', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313974', 2313974, '-381.439911', '-0.122663', '184.500702', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313980', 2313980, '-464.159210', '9.409202', '251.654099', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313982', 2313982, '-452.844788', '11.917580', '265.924805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313984', 2313984, '-436.512909', '7.460858', '266.224792', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313985', 2313985, '-410.069000', '6.296681', '281.448486', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313988', 2313988, '-425.559387', '12.804490', '309.608093', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313989', 2313989, '-371.467285', '4.569370', '282.813202', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313991', 2313991, '-342.802002', '1.347080', '267.457001', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313993', 2313993, '-365.310303', '-0.244142', '207.010696', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2313994', 2313994, '-370.665497', '1.130038', '238.255402', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314003', 2314003, '-253.246994', '-4.236800', '221.935196', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314004', 2314004, '-227.049805', '-5.537235', '202.864395', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314005', 2314005, '-197.435196', '-7.994266', '221.269196', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314006', 2314006, '-200.220596', '-8.231664', '224.271805', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314009', 2314009, '-125.018700', '-7.681337', '231.549805', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176048, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314010', 2314010, '-129.776001', '-7.944516', '225.414200', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175776, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314034', 2314034, '-112.974503', '2.718925', '356.892609', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164364, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc2314035', 2314035, '-118.974602', '1.573215', '349.996094', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164092, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc2314041', 2314041, '-43.174789', '-3.827868', '319.130188', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314043', 2314043, '-31.562269', '-4.485572', '194.662094', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157322, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc2314047', 2314047, '-33.348999', '-6.685591', '211.045303', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157050, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc2314048', 2314048, '-54.297371', '-4.774252', '197.991501', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157594, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc2314070', 2314070, '-59.919048', '11.628480', '435.431305', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314088', 2314088, '-35.123161', '16.027519', '447.688507', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314102', 2314102, '-45.542999', '11.092310', '429.655396', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314107', 2314107, '-24.940210', '7.788889', '415.915497', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314112', 2314112, '2.340681', '1.029590', '360.915588', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314133', 2314133, '-1.470222', '0.327971', '355.323486', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314135', 2314135, '-2.340280', '16.406719', '467.504791', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173600, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314136', 2314136, '1.744962', '15.965160', '463.338013', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173328, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314137', 2314137, '67.368530', '7.949890', '446.280609', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173056, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314138', 2314138, '46.122662', '7.817679', '439.927185', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172784, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314139', 2314139, '108.354301', '9.109589', '407.461609', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159220, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314140', 2314140, '104.234299', '8.804408', '412.466614', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159764, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314141', 2314141, '123.021004', '12.317820', '423.590515', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159492, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314142', 2314142, '109.849602', '10.971190', '457.846893', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158948, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314144', 2314144, '68.332771', '7.866884', '474.070587', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314145', 2314145, '42.399090', '7.746444', '460.622803', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314146', 2314146, '97.762482', '7.782855', '392.593201', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314147', 2314147, '82.413742', '7.833769', '430.187286', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314148', 2314148, '4.571571', '14.724090', '481.634888', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314149', 2314149, '115.912598', '11.103390', '432.906311', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314150', 2314150, '2.013238', '9.902340', '432.648193', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314151', 2314151, '-58.361721', '5.610658', '400.360504', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314152', 2314152, '-85.923592', '7.095398', '408.499207', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314153', 2314153, '-89.646797', '6.881772', '406.576599', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314154', 2314154, '-6.062557', '1.064418', '360.585297', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314155', 2314155, '5.446085', '-3.557740', '326.017792', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314156', 2314156, '4.316917', '-3.595564', '325.071686', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314157', 2314157, '-28.881241', '-5.070975', '313.819092', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314159', 2314159, '-46.860470', '-8.011047', '221.606705', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314160', 2314160, '-69.568810', '-5.347832', '198.726303', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314161', 2314161, '-58.732021', '-3.341773', '321.766907', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314163', 2314163, '-122.044701', '1.863278', '351.901215', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314164', 2314164, '-134.686493', '5.714658', '377.345215', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314165', 2314165, '-91.805458', '-7.624840', '295.133911', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314166', 2314166, '-113.416000', '-7.987957', '278.087799', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314173', 2314173, '-122.484200', '-7.126010', '289.814514', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314174', 2314174, '-230.604599', '-5.478079', '208.442703', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314175', 2314175, '-207.367706', '-5.861229', '204.890305', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314177', 2314177, '-255.068893', '-4.175101', '226.840500', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314180', 2314180, '-330.692505', '7.278777', '313.762604', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314181', 2314181, '-317.594910', '9.477072', '339.549591', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314192', 2314192, '-345.082794', '6.485037', '63.248600', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147228, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc2314196', 2314196, '-237.055405', '3.071132', '110.837601', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148588, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc2314197', 2314197, '-241.022705', '2.939748', '114.865997', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147500, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc2314228', 2314228, '-134.111603', '-2.151569', '175.158295', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc2314253', 2314253, '-336.507202', '6.607109', '55.985298', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314258', 2314258, '-287.312195', '8.499228', '64.072594', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314261', 2314261, '-285.236908', '7.675241', '65.262787', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314262', 2314262, '-249.378204', '7.888867', '63.401192', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314265', 2314265, '-295.246887', '5.966230', '120.439400', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314267', 2314267, '-244.488403', '4.113512', '102.499100', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314270', 2314270, '-200.428696', '4.427309', '103.759300', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314275', 2314275, '-199.511703', '13.382110', '47.836979', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314276', 2314276, '-226.188293', '11.478340', '8.346189', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148860, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc2314280', 2314280, '-188.377304', '27.717520', '-44.157928', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314286', 2314286, '-183.089706', '31.517771', '-61.713600', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314288', 2314288, '-189.410294', '46.463669', '-104.997398', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314290', 2314290, '-191.485504', '47.196110', '-107.194702', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314302', 2314302, '-182.177505', '1.937849', '136.217194', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314304', 2314304, '-186.236404', '2.212511', '133.592697', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314305', 2314305, '-141.374893', '-2.090533', '175.005707', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314308', 2314308, '-187.396103', '-1.052920', '170.153305', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314309', 2314309, '-129.839096', '0.320392', '156.450699', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314314', 2314314, '-186.266907', '-0.961365', '166.521698', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314362', 2314362, '-5.424891', '19.709511', '-18.332621', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 116682, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc2314363', 2314363, '-6.294857', '20.221451', '15.311720', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121022, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc2314364', 2314364, '80.094597', '9.658875', '14.206050', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117764, 2, 0, 0, 0, 0, 30124, 0, 0, 0), +(152, 'f1f2', 'bnpc2314365', 2314365, '111.406097', '6.393494', '-42.557430', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116954, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc2314366', 2314366, '113.664398', '5.874695', '-41.245178', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119662, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc2314369', 2314369, '176.512604', '-4.252202', '-4.205355', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118036, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(152, 'f1f2', 'bnpc2314398', 2314398, '350.148193', '-2.774287', '-52.136921', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117226, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(152, 'f1f2', 'bnpc2314451', 2314451, '-12.582740', '19.341261', '-16.372990', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314457', 2314457, '-8.483642', '19.834230', '12.296340', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314458', 2314458, '60.166260', '13.473630', '9.872559', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314460', 2314460, '90.726227', '9.726084', '-48.813629', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314462', 2314462, '184.311996', '-2.061695', '22.900990', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314464', 2314464, '212.298294', '-3.300554', '68.344177', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314465', 2314465, '254.499100', '-0.309484', '161.274002', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314466', 2314466, '216.507706', '0.515230', '114.319603', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314610', 2314610, '306.118286', '-6.238892', '11.614130', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314612', 2314612, '236.715302', '-5.231476', '-56.311989', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314613', 2314613, '213.666504', '-2.576396', '-14.211420', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314617', 2314617, '332.661499', '-4.732603', '-51.060032', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314621', 2314621, '364.126007', '-2.822966', '-30.502831', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314623', 2314623, '361.654114', '-2.670410', '-53.025211', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314626', 2314626, '519.135681', '-12.154410', '-35.360329', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314632', 2314632, '562.935120', '-12.088730', '-2.092934', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314634', 2314634, '546.164124', '-11.988440', '-64.370163', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314640', 2314640, '622.314026', '-13.134470', '-6.901284', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314642', 2314642, '619.809082', '-12.711930', '-6.546345', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2314715', 2314715, '570.641479', '-12.100450', '-40.116009', 63, 0, 0, 0, 1, 6, 0, 0, 60, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133220, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(152, 'f1f2', 'bnpc2314717', 2314717, '566.063782', '-11.947860', '-47.776039', 64, 0, 0, 0, 0, 6, 0, 0, 61, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132954, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(152, 'f1f2', 'bnpc2314726', 2314726, '556.389587', '-12.008900', '-42.404869', 55, 0, 0, 0, 1, 6, 0, 0, 53, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132688, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2319905', 2319905, '133.538803', '-23.850300', '-524.211304', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2319906', 2319906, '135.644501', '-24.169041', '-527.507324', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2319916', 2319916, '176.574203', '-26.295950', '-563.569885', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2319917', 2319917, '177.984299', '-26.445820', '-561.296326', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2319918', 2319918, '128.970001', '-22.921940', '-557.568481', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2320483', 2320483, '376.638397', '-2.304138', '-39.993961', 61, 0, 0, 0, 1, 6, 0, 0, 58, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128886, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(152, 'f1f2', 'bnpc2320484', 2320484, '381.979004', '-2.517761', '-36.209721', 62, 0, 0, 0, 0, 6, 0, 0, 59, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128620, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(152, 'f1f2', 'bnpc2320487', 2320487, '378.164307', '-2.273621', '-37.033691', 55, 0, 0, 0, 1, 6, 0, 0, 53, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2320488', 2320488, '413.927094', '-11.864880', '-0.202001', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2320489', 2320489, '450.408203', '-11.066550', '-6.123241', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127708, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2341765', 2341765, '66.095573', '7.840286', '477.260101', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2341766', 2341766, '43.036430', '7.860031', '467.247192', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2341767', 2341767, '24.573021', '9.672716', '473.677795', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2350399', 2350399, '-284.382385', '11.856210', '-27.054291', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146424, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2350400', 2350400, '-260.730988', '11.703620', '-32.242359', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146152, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2350401', 2350401, '-287.373199', '11.490000', '-7.705853', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139660, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2350402', 2350402, '-285.664215', '12.558130', '-52.719971', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145880, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc2350715', 2350715, '350.270203', '-2.804400', '-50.397419', 762, 0, 0, 0, 0, 6, 0, 0, 64, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121294, 2, 0, 0, 0, 0, 30120, 0, 0, 0), +(152, 'f1f2', 'bnpc2350717', 2350717, '364.079590', '-4.248232', '-7.079392', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118852, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc2499386', 2499386, '-228.497696', '12.354860', '2.668262', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3694733', 3694733, '-401.218414', '11.367920', '318.654388', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186570, 5, 0, 0, 0, 0, 30059, 0, 0, 0), +(152, 'f1f2', 'bnpc3694734', 3694734, '-406.210388', '11.893380', '317.922485', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186298, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc3694735', 3694735, '-390.079987', '10.675150', '320.996399', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186026, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc3694736', 3694736, '-405.569611', '9.872559', '309.346100', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185754, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc3694737', 3694737, '-399.718811', '10.832540', '315.967102', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185482, 5, 0, 0, 0, 0, 30059, 0, 0, 0), +(152, 'f1f2', 'bnpc3694738', 3694738, '-398.236786', '11.123780', '318.544708', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185210, 5, 0, 0, 0, 0, 30060, 0, 0, 0), +(152, 'f1f2', 'bnpc3694900', 3694900, '-355.928314', '-0.308188', '209.458206', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3694901', 3694901, '-358.039886', '-0.389206', '203.009705', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3694902', 3694902, '-359.232910', '-0.298962', '198.263794', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3694903', 3694903, '-364.384613', '-0.113241', '212.442200', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3694904', 3694904, '-376.390198', '-0.538467', '203.341293', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3694905', 3694905, '-364.056610', '-0.145500', '194.541702', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3694906', 3694906, '-378.323914', '-0.373772', '200.093002', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3694907', 3694907, '-368.149506', '-0.318695', '203.149994', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3694908', 3694908, '-401.144989', '0.532858', '100.339798', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184400, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3694909', 3694909, '-394.740112', '-0.280364', '154.306000', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184128, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3694910', 3694910, '-391.653412', '-0.503595', '210.406601', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184672, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3695051', 3695051, '-419.371887', '0.232080', '192.587006', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183856, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3695053', 3695053, '-421.990997', '0.316387', '76.746277', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184944, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3696616', 3696616, '-96.760498', '3.493882', '366.300812', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163276, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3696617', 3696617, '-93.824730', '3.873965', '372.828613', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163004, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3696618', 3696618, '-127.003799', '2.972143', '361.243103', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3696619', 3696619, '-133.940903', '6.157478', '379.316498', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3696870', 3696870, '-90.013023', '12.924340', '438.193298', 311, 0, 0, 0, 1, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162194, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3696872', 3696872, '-97.337341', '11.276370', '431.967590', 311, 0, 0, 0, 1, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161922, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(152, 'f1f2', 'bnpc3696873', 3696873, '-91.318466', '10.895230', '429.915894', 311, 0, 0, 0, 0, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161650, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(152, 'f1f2', 'bnpc3696876', 3696876, '-81.651070', '11.886730', '434.470093', 79, 0, 0, 0, 1, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(152, 'f1f2', 'bnpc3696877', 3696877, '-91.226921', '11.092580', '430.953491', 79, 0, 0, 0, 0, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161112, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(152, 'f1f2', 'bnpc3696878', 3696878, '-87.327423', '11.154300', '431.082611', 79, 0, 0, 0, 0, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160840, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(152, 'f1f2', 'bnpc3696879', 3696879, '-90.402939', '11.068160', '430.739899', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160574, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(152, 'f1f2', 'bnpc3697774', 3697774, '-88.120903', '11.001710', '430.441711', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160302, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(152, 'f1f2', 'bnpc3697775', 3697775, '-88.426071', '11.490000', '427.695099', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160030, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(152, 'f1f2', 'bnpc3697778', 3697778, '92.364197', '7.706964', '389.248596', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3697779', 3697779, '108.716797', '9.727629', '431.794403', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3697780', 3697780, '80.686493', '7.961041', '421.256897', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157860, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3698022', 3698022, '-75.550377', '-5.582465', '200.264694', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156778, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3698023', 3698023, '-38.882149', '-4.081942', '191.941605', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156506, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3698921', 3698921, '-37.577309', '-8.258268', '242.908295', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156234, 1, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(152, 'f1f2', 'bnpc3700086', 3700086, '-37.311859', '-8.389291', '259.427307', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155962, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3701093', 3701093, '-28.851320', '-7.961150', '249.751205', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155690, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3726783', 3726783, '-306.845306', '7.615899', '107.505699', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145342, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3726785', 3726785, '-258.686188', '7.797313', '66.056259', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145070, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3726788', 3726788, '-219.973602', '2.520791', '114.552399', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144798, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3726789', 3726789, '-199.571198', '6.403381', '88.836418', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144526, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3727336', 3727336, '-233.240204', '11.494870', '34.787762', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144254, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3727339', 3727339, '-197.756302', '14.999770', '41.853489', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143982, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3727712', 3727712, '-313.497192', '11.569130', '-31.583179', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3727713', 3727713, '-314.589386', '11.902390', '-35.298470', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3727714', 3727714, '-306.619385', '11.253370', '-13.814930', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3727715', 3727715, '-278.890808', '12.580250', '-40.299412', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3727717', 3727717, '-267.242004', '11.943940', '-40.949741', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3727718', 3727718, '-273.701111', '11.886720', '-21.286381', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc3727732', 3727732, '-134.691406', '15.243710', '-3.646973', 70, 0, 0, 0, 0, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142090, 1, 0, 0, 0, 17, 30120, 0, 0, 0), +(152, 'f1f2', 'bnpc3727734', 3727734, '-137.071793', '14.908020', '-3.555420', 71, 0, 0, 0, 1, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141824, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc3727735', 3727735, '-134.325195', '15.182740', '-2.365173', 72, 0, 0, 0, 0, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141558, 1, 0, 0, 0, 17, 30119, 0, 0, 0), +(152, 'f1f2', 'bnpc3727738', 3727738, '-101.701401', '19.180540', '10.727050', 70, 0, 0, 0, 1, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141274, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc3727739', 3727739, '-69.779541', '17.349430', '6.759644', 71, 0, 0, 0, 0, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141008, 1, 0, 0, 0, 17, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc3727740', 3727740, '-74.509888', '17.685120', '8.499207', 72, 0, 0, 0, 1, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140742, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc3727743', 3727743, '-106.065498', '18.173450', '14.633350', 71, 0, 0, 0, 0, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140464, 1, 0, 0, 0, 17, 30121, 0, 0, 0), +(152, 'f1f2', 'bnpc3727744', 3727744, '-104.844803', '18.509150', '14.328170', 72, 0, 0, 0, 0, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140198, 1, 0, 0, 0, 17, 30120, 0, 0, 0), +(152, 'f1f2', 'bnpc3727745', 3727745, '-105.729797', '18.387070', '12.954860', 70, 0, 0, 0, 0, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139914, 1, 0, 0, 0, 17, 30119, 0, 0, 0), +(152, 'f1f2', 'bnpc3727746', 3727746, '246.108398', '-4.984168', '-31.182381', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125562, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3727747', 3727747, '221.653900', '-5.011750', '-51.817490', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125290, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3729074', 3729074, '76.092232', '11.110100', '-47.602612', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124552, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3729746', 3729746, '86.654007', '8.922870', '-28.246519', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124280, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3729747', 3729747, '108.261803', '6.031532', '-26.458651', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124008, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3729748', 3729748, '115.837196', '4.964785', '13.643280', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123736, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3729749', 3729749, '71.684547', '11.649810', '-44.096661', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123464, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc3741023', 3741023, '381.093994', '-2.365173', '-37.277828', 55, 0, 0, 0, 0, 6, 0, 0, 53, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123168, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(152, 'f1f2', 'bnpc3741027', 3741027, '379.934296', '-2.304138', '-35.904541', 62, 0, 0, 0, 0, 6, 0, 0, 59, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122908, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(152, 'f1f2', 'bnpc3741028', 3741028, '378.072815', '-2.426208', '-33.066349', 61, 0, 0, 0, 1, 6, 0, 0, 58, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122630, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(152, 'f1f2', 'bnpc3741029', 3741029, '565.056824', '-11.978380', '-48.966251', 55, 0, 0, 0, 0, 6, 0, 0, 53, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122352, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(152, 'f1f2', 'bnpc3741030', 3741030, '546.837524', '-12.436150', '-46.677391', 64, 0, 0, 0, 1, 6, 0, 0, 61, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122074, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(152, 'f1f2', 'bnpc3741031', 3741031, '549.614624', '-12.436150', '-49.210388', 63, 0, 0, 0, 1, 6, 0, 0, 60, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121796, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(152, 'f1f2', 'bnpc3870165', 3870165, '-530.557922', '11.925130', '70.277603', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22788, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(152, 'f1f2', 'bnpc3870175', 3870175, '-197.120804', '-1.760828', '261.203003', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22522, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(152, 'f1f2', 'bnpc3870206', 3870206, '-273.557404', '0.846183', '289.320587', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22244, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(152, 'f1f2', 'bnpc4317800', 4317800, '498.771515', '-17.898861', '-313.954407', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110750, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317801', 4317801, '451.322998', '-15.501170', '-279.865692', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110484, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc4317802', 4317802, '514.823975', '-20.341690', '-358.783813', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 110218, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc4317803', 4317803, '260.486694', '-11.080910', '-154.824493', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109958, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4317804', 4317804, '357.625610', '-18.265079', '-146.196701', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109686, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4317805', 4317805, '327.286591', '-17.372709', '-188.968796', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109414, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4317817', 4317817, '294.575806', '-12.980530', '-180.587906', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109142, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4317818', 4317818, '388.959412', '-18.823000', '-212.157593', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108876, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4317819', 4317819, '314.365814', '-18.527800', '-289.215912', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108604, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4317820', 4317820, '329.818115', '-17.597429', '-223.296097', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108332, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4317821', 4317821, '370.788086', '-17.580059', '-245.788101', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108060, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4317822', 4317822, '291.974792', '-19.793560', '-289.794800', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107788, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4317826', 4317826, '253.924606', '-23.493771', '-397.838715', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107522, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4317827', 4317827, '253.467499', '-24.551821', '-431.753998', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107250, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4317829', 4317829, '213.044601', '-20.737579', '-407.032990', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106978, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4317830', 4317830, '215.188202', '-20.979630', '-409.962799', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106706, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4317832', 4317832, '145.520706', '-23.570749', '-477.912994', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106314, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4317833', 4317833, '133.494904', '-23.758650', '-547.963074', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106042, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4317834', 4317834, '173.863693', '-25.574671', '-517.082520', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105770, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4317836', 4317836, '-10.175820', '-35.238060', '-550.143311', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105498, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4317838', 4317838, '-52.048519', '-35.202579', '-528.496216', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105226, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4317839', 4317839, '186.907700', '-23.727840', '-376.882599', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105074, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4317840', 4317840, '126.817703', '-25.925110', '-347.127502', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104808, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4317842', 4317842, '115.994499', '-26.717680', '-354.423096', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104536, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4317844', 4317844, '88.409050', '-26.293819', '-339.833893', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104264, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4317849', 4317849, '137.315903', '-23.270020', '-304.951599', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103992, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4317852', 4317852, '155.825104', '-29.775539', '-226.307693', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103564, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4317853', 4317853, '113.237198', '-29.434690', '-221.118500', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103292, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4317854', 4317854, '146.903900', '-29.527519', '-215.189804', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103020, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4317855', 4317855, '129.991104', '-29.535959', '-245.124496', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102748, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4317863', 4317863, '207.402206', '-6.915606', '-189.063599', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102596, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317864', 4317864, '351.494507', '-15.727020', '-259.491211', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 102330, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc4317873', 4317873, '284.544312', '-19.539360', '-291.495911', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 102046, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc4317874', 4317874, '368.856201', '-20.248779', '-184.771500', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101780, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(152, 'f1f2', 'bnpc4317875', 4317875, '368.581512', '-20.218201', '-183.856003', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101514, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(152, 'f1f2', 'bnpc4317885', 4317885, '366.659302', '-17.544319', '-237.723404', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101236, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317886', 4317886, '443.139709', '-18.693390', '-238.559097', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100970, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317887', 4317887, '249.626694', '-24.511021', '-435.444397', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 100698, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc4317891', 4317891, '131.792099', '-25.070620', '-394.277893', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100420, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317893', 4317893, '112.708099', '-30.261940', '-194.688599', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100154, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc4317894', 4317894, '193.408096', '-31.479370', '-219.684097', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99870, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc4317897', 4317897, '129.072906', '-22.173210', '-564.551880', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 99604, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc4317899', 4317899, '253.498001', '-23.239559', '-517.052002', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99338, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317900', 4317900, '165.575607', '-26.840639', '-542.717712', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99060, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(152, 'f1f2', 'bnpc4317901', 4317901, '166.460602', '-26.871220', '-543.541626', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98782, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(152, 'f1f2', 'bnpc4317902', 4317902, '156.908401', '-24.429689', '-455.588593', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98522, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc4317903', 4317903, '-37.241699', '-35.085869', '-537.987976', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98250, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317904', 4317904, '-33.412891', '-35.156620', '-549.607971', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97972, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317905', 4317905, '-27.481510', '-34.836430', '-541.802124', 762, 0, 0, 0, 1, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97694, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317909', 4317909, '143.718704', '-29.336210', '-230.073807', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97434, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317911', 4317911, '119.399300', '-26.408409', '-346.557190', 762, 0, 0, 0, 1, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97150, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317912', 4317912, '139.559601', '-29.771700', '-244.522903', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 96884, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc4317916', 4317916, '565.405212', '-22.088120', '-350.810913', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96606, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc4317917', 4317917, '558.970886', '-22.530359', '-353.985687', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96346, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317918', 4317918, '561.280518', '-22.530359', '-344.947998', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96068, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317920', 4317920, '553.652527', '-24.130871', '-379.476715', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95790, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(152, 'f1f2', 'bnpc4317921', 4317921, '528.888000', '-24.002501', '-316.121185', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95530, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317922', 4317922, '552.422424', '-24.124571', '-379.629211', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95252, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(152, 'f1f2', 'bnpc4317923', 4317923, '516.716187', '-20.340330', '-366.170807', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94986, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317924', 4317924, '544.539673', '-24.024820', '-352.536011', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94702, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317925', 4317925, '573.032776', '-24.048040', '-372.673492', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94436, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317927', 4317927, '408.712799', '-28.427610', '-401.419098', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94164, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317930', 4317930, '335.927399', '-28.671749', '-421.042206', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93886, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(152, 'f1f2', 'bnpc4317931', 4317931, '335.683105', '-28.763309', '-419.913086', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93620, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(152, 'f1f2', 'bnpc4317932', 4317932, '349.965607', '-28.000311', '-412.710785', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93354, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317933', 4317933, '339.902313', '-28.306200', '-487.054108', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93070, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317934', 4317934, '370.887909', '-34.493279', '-462.935608', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 92804, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc4317935', 4317935, '351.582886', '-28.032480', '-484.519714', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92538, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317936', 4317936, '425.497803', '-28.366579', '-482.505615', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92254, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317937', 4317937, '424.521210', '-27.908751', '-463.431793', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91988, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317938', 4317938, '358.322601', '-28.245850', '-509.974213', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91722, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc4317939', 4317939, '388.815186', '-34.042912', '-418.204010', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91438, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317940', 4317940, '413.626190', '-34.042912', '-447.318207', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91172, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317943', 4317943, '383.576294', '-27.500000', '-515.033020', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90906, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(152, 'f1f2', 'bnpc4317944', 4317944, '403.162109', '-27.877609', '-499.533905', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 90628, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc4317945', 4317945, '384.859497', '-27.500000', '-514.937012', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90350, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(152, 'f1f2', 'bnpc4317946', 4317946, '391.422485', '-17.924709', '-377.696991', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90090, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4317948', 4317948, '450.847504', '-28.334009', '-441.002411', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89806, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4516039', 4516039, '201.957901', '-6.015132', '-140.727798', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89558, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4516054', 4516054, '302.846893', '-13.662720', '-70.995468', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89286, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4516060', 4516060, '90.040314', '-26.979679', '-315.730499', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89032, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4516061', 4516061, '118.730499', '-25.303860', '-328.093414', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88760, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4516069', 4516069, '76.916473', '-30.135340', '-176.278107', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88332, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4516071', 4516071, '109.801003', '-30.350300', '-144.088104', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88060, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4516076', 4516076, '178.212997', '-26.243820', '-569.578918', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87818, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4526138', 4526138, '207.189499', '-4.405000', '-55.771381', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4526153', 4526153, '101.728302', '6.775696', '-29.255630', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4526159', 4526159, '-5.661133', '19.302610', '-20.096189', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 114784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4526163', 4526163, '295.063599', '0.717163', '180.926102', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4526170', 4526170, '243.762802', '-2.334717', '93.644531', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4526175', 4526175, '514.976685', '-20.248779', '-360.982697', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4526185', 4526185, '349.873993', '-15.610050', '-260.578400', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4526186', 4526186, '405.020111', '-28.000311', '-500.633209', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4526187', 4526187, '370.778900', '-34.470150', '-460.959808', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4526188', 4526188, '286.335602', '-19.760500', '-293.202087', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4526189', 4526189, '126.848099', '-22.110350', '-563.561523', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4526190', 4526190, '138.658707', '-23.403219', '-470.115204', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4526191', 4526191, '252.338394', '-24.643370', '-435.141510', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85780, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4526192', 4526192, '119.127197', '-25.162230', '-324.086395', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4526193', 4526193, '137.078705', '-29.800461', '-246.062698', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4526240', 4526240, '214.825394', '-19.554331', '-398.094788', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84946, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4553457', 4553457, '345.774902', '-15.417000', '-261.117798', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84668, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4553459', 4553459, '361.297913', '-25.751591', '-438.400085', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84378, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4553469', 4553469, '139.198593', '-23.542650', '-467.790009', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84094, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc4588198', 4588198, '119.859596', '-21.530519', '-297.352600', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83828, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4588199', 4588199, '116.324303', '-25.430050', '-324.881592', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83550, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(152, 'f1f2', 'bnpc4588205', 4588205, '443.598206', '-24.245310', '-392.653687', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83278, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4592960', 4592960, '291.767700', '-13.992610', '-129.503403', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83006, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(152, 'f1f2', 'bnpc4618294', 4618294, '99.668091', '8.096478', '-41.502491', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4618295', 4618295, '114.137100', '6.064597', '-18.577110', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4618296', 4618296, '119.902702', '5.962872', '-52.469212', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4618297', 4618297, '273.146088', '-0.359490', '138.990295', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113122, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4618298', 4618298, '194.044495', '3.506398', '122.434998', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112850, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4618299', 4618299, '301.813202', '-6.703927', '30.420111', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112506, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4618300', 4618300, '344.534210', '-4.776098', '-14.875460', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112234, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(152, 'f1f2', 'bnpc4618301', 4618301, '198.657104', '2.212463', '118.242104', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112064, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4618302', 4618302, '280.378998', '-4.542100', '48.923759', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111792, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4618303', 4618303, '221.648804', '-2.880372', '-13.690810', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111520, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4621091', 4621091, '-46.489208', '15.602010', '3.201886', 2771, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23396, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(152, 'f1f2', 'bnpc4621093', 4621093, '622.978821', '-12.883850', '-12.418940', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23130, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1139214', 1139214, '-268.574097', '7.064880', '631.738708', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1139231', 1139231, '-15.879850', '-0.100045', '376.413208', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1139247', 1139247, '-122.621803', '1.180372', '288.650391', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1139253', 1139253, '-116.636803', '1.401093', '293.862488', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1139295', 1139295, '-239.337799', '0.869717', '266.651306', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1139296', 1139296, '-242.175995', '0.625573', '262.958710', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1139314', 1139314, '-234.854004', '-0.100137', '305.762085', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1139319', 1139319, '-284.558105', '1.846295', '342.205505', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1139327', 1139327, '-178.824295', '0.141551', '253.664703', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160176, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1139344', 1139344, '-179.793198', '0.669785', '323.976196', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159904, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1139407', 1139407, '-279.011292', '6.027267', '564.782104', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159632, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1139408', 1139408, '-254.932495', '6.759699', '578.911987', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159360, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1139409', 1139409, '-258.136902', '7.827831', '603.051819', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159088, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1139410', 1139410, '-257.221405', '6.637627', '578.881470', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1139423', 1139423, '-276.386688', '5.966230', '538.170288', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158544, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1139425', 1139425, '-266.529388', '5.020171', '542.473389', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1139430', 1139430, '-220.569199', '3.982558', '556.969482', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158000, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1140323', 1140323, '48.412201', '22.379660', '245.108307', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124060, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140341', 1140341, '148.210800', '18.142929', '63.034969', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134118, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140355', 1140355, '-167.689697', '4.657228', '188.189499', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1140356', 1140356, '-140.886597', '6.118821', '203.173798', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1140376', 1140376, '-173.095795', '7.162746', '110.695396', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119830, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140378', 1140378, '-169.298904', '4.379292', '134.294601', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119558, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140379', 1140379, '-176.483307', '6.579963', '113.899696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119286, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140393', 1140393, '-213.883896', '11.384410', '78.615593', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119014, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140405', 1140405, '-204.099792', '10.836050', '82.086967', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118742, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140418', 1140418, '-170.832901', '8.611761', '46.359402', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118470, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140419', 1140419, '-163.073196', '7.441800', '53.057159', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118198, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140420', 1140420, '-208.158096', '10.773990', '72.948898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117926, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140429', 1140429, '-210.742401', '9.567359', '0.839199', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117654, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140430', 1140430, '-217.212204', '9.475805', '3.250124', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117382, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140459', 1140459, '-87.514954', '0.030696', '53.398781', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97846, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140460', 1140460, '-83.185509', '0.030617', '55.136490', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98118, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140461', 1140461, '-100.175499', '1.815776', '55.405460', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97302, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140462', 1140462, '-87.013252', '0.030600', '71.372276', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97574, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140539', 1140539, '-119.476097', '5.647681', '112.526497', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117110, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140540', 1140540, '-126.604202', '5.923794', '94.623161', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116838, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140541', 1140541, '-126.329498', '5.844177', '109.056198', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116566, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140980', 1140980, '-313.130402', '25.345190', '-208.453506', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116294, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140981', 1140981, '-326.970612', '26.883949', '-216.976898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116022, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140982', 1140982, '-329.696594', '21.078899', '-165.243500', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115750, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140983', 1140983, '-338.267395', '24.724110', '-191.433197', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115478, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1140984', 1140984, '-323.896515', '19.876869', '-162.956696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115206, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1144407', 1144407, '-272.144714', '17.696960', '57.133450', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105716, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1144408', 1144408, '-257.479095', '14.942520', '80.117462', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1144457', 1144457, '-241.510406', '16.161341', '12.992840', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105444, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1144491', 1144491, '-78.316467', '3.566922', '-36.424759', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106260, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1144547', 1144547, '-106.571297', '7.155371', '-106.524399', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1144577', 1144577, '-127.875000', '6.779816', '-22.488760', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105172, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1144585', 1144585, '-91.407356', '7.599404', '-74.910507', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104900, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1144597', 1144597, '-58.182690', '6.881772', '-97.795113', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1144598', 1144598, '-132.427704', '9.336102', '-104.286499', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1144629', 1144629, '-152.086700', '11.093260', '-140.581406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1144631', 1144631, '-151.639099', '11.652820', '-128.275406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1144632', 1144632, '-167.772995', '9.292697', '-129.167694', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98384, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(153, 'f1f3', 'bnpc1144653', 1144653, '-78.954659', '4.479653', '-126.207397', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1144691', 1144691, '-129.860199', '13.845340', '-129.543701', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1144692', 1144692, '-205.706894', '9.018035', '-138.750305', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1144694', 1144694, '-208.087296', '9.353733', '-141.039200', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1144747', 1144747, '2.112435', '6.781407', '-26.549141', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107620, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1144748', 1144748, '17.348650', '6.534479', '-18.517111', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107892, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1144786', 1144786, '30.609501', '4.094535', '43.754768', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108164, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1144790', 1144790, '42.343739', '4.165666', '68.558739', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1144793', 1144793, '142.320801', '4.196184', '25.833481', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1144799', 1144799, '40.001209', '4.166452', '71.521370', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1144800', 1144800, '70.561348', '4.166210', '66.426353', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145309', 1145309, '99.839729', '6.729181', '-55.405548', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93954, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145310', 1145310, '104.112297', '7.125916', '-59.922218', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93682, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145311', 1145311, '111.009300', '12.405540', '-76.890251', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93410, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145312', 1145312, '53.134991', '10.581870', '-71.978127', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93138, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145330', 1145330, '33.785549', '7.920002', '-96.910088', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92866, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145331', 1145331, '30.485310', '6.219395', '-100.848801', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92594, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145342', 1145342, '7.202258', '5.720373', '-72.371872', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92322, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145343', 1145343, '0.456908', '5.833508', '-87.359497', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92050, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145344', 1145344, '9.624027', '5.417103', '-76.025612', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91778, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145371', 1145371, '323.490204', '5.164718', '-43.671810', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91506, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145380', 1145380, '267.748199', '4.639788', '9.815885', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91234, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145382', 1145382, '262.290802', '3.068853', '19.805670', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90962, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145556', 1145556, '396.724701', '3.565628', '167.813797', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68950, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145558', 1145558, '440.238007', '1.174898', '187.579102', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68678, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145559', 1145559, '499.565002', '1.571632', '166.216507', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68406, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145562', 1145562, '455.435913', '3.250124', '198.748703', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68134, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145578', 1145578, '484.519714', '3.768931', '199.908401', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67862, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145579', 1145579, '528.374084', '7.553168', '195.361206', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67590, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145581', 1145581, '509.391815', '4.440328', '204.577698', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67318, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145595', 1145595, '513.939880', '14.256400', '137.989304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1145607', 1145607, '549.889282', '11.612070', '204.730194', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66774, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145610', 1145610, '538.797913', '21.846140', '123.039803', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1145612', 1145612, '542.038208', '13.673390', '165.126495', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1145613', 1145613, '504.953491', '14.256390', '115.266296', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1145625', 1145625, '557.183105', '21.846149', '129.558304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1145628', 1145628, '553.643005', '21.683020', '99.412483', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1145631', 1145631, '575.402405', '21.683020', '111.314499', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc1145702', 1145702, '284.107697', '3.982544', '49.240841', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90690, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc1145703', 1145703, '342.275299', '7.889330', '-41.286991', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90418, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299623', 2299623, '-290.183014', '-0.100012', '465.039612', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299626', 2299626, '-303.145111', '-0.100187', '410.650696', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299628', 2299628, '-315.270905', '0.279321', '442.690002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299630', 2299630, '-290.338806', '-0.100002', '403.924103', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299631', 2299631, '-260.457001', '-0.100012', '454.819794', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299632', 2299632, '-166.141800', '-0.100048', '463.106415', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139002, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299636', 2299636, '-85.984627', '-0.137378', '426.901611', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299637', 2299637, '-105.242203', '-0.100010', '441.452209', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299638', 2299638, '-127.139801', '-0.100007', '331.296906', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299640', 2299640, '-106.279099', '-0.167896', '335.835785', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299642', 2299642, '-76.920776', '0.228838', '434.653198', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299644', 2299644, '-121.995903', '-0.106860', '397.177002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299647', 2299647, '-213.092300', '-0.106860', '435.019409', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299670', 2299670, '105.271896', '19.668831', '117.021400', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299672', 2299672, '179.124298', '15.917120', '38.983059', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299676', 2299676, '67.215942', '23.941410', '138.414597', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133302, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299677', 2299677, '92.332291', '22.476490', '171.373993', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124332, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299678', 2299678, '68.223038', '21.438881', '171.709702', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123788, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299681', 2299681, '27.293150', '20.375059', '193.801193', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299682', 2299682, '76.646019', '20.096081', '218.799103', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123516, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299685', 2299685, '222.992401', '6.174502', '28.347420', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132764, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299686', 2299686, '218.930206', '7.861652', '25.101040', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132492, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299687', 2299687, '219.145096', '9.429937', '43.394890', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132220, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299688', 2299688, '242.878006', '5.513403', '43.686531', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131948, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299693', 2299693, '203.440796', '11.769820', '11.092830', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131676, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299695', 2299695, '183.372894', '13.534710', '15.091120', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131404, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299696', 2299696, '190.876602', '14.557230', '16.119829', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131132, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299697', 2299697, '181.536499', '14.175580', '17.074800', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130860, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299701', 2299701, '46.014000', '24.951891', '129.998001', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299707', 2299707, '62.549999', '18.461660', '250.313202', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299711', 2299711, '-240.650101', '6.790217', '647.669128', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153932, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299712', 2299712, '-268.177307', '7.461614', '616.082886', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299713', 2299713, '-298.512299', '10.330310', '645.349670', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299714', 2299714, '-301.838715', '11.032230', '612.298706', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299716', 2299716, '-278.400909', '7.095398', '588.036926', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299719', 2299719, '-256.092194', '6.362965', '575.310913', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299720', 2299720, '-249.805496', '4.135148', '533.104370', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299722', 2299722, '-243.854507', '-0.167896', '489.982391', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299723', 2299723, '-273.384796', '-0.100012', '454.524109', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299725', 2299725, '-301.158295', '1.302513', '475.886902', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299729', 2299729, '-220.495697', '-0.100054', '427.954590', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151212, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299730', 2299730, '-295.158295', '-0.100004', '416.955688', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299731', 2299731, '-158.892197', '-0.137378', '438.498413', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150668, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299732', 2299732, '-97.367859', '-0.137378', '460.166290', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299733', 2299733, '-102.128700', '-0.106860', '387.319702', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299734', 2299734, '-103.898697', '-0.106860', '385.000305', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299735', 2299735, '-73.472237', '-0.100006', '383.004608', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299736', 2299736, '-119.829102', '-0.106860', '335.713715', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299737', 2299737, '-25.762659', '-0.100045', '385.324402', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299738', 2299738, '-12.145770', '-0.100007', '340.874298', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299739', 2299739, '-36.646210', '-0.100007', '330.899811', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299740', 2299740, '-69.291260', '-0.100006', '346.480591', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299741', 2299741, '-29.965321', '-0.106860', '383.686096', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299742', 2299742, '-152.754807', '-0.100000', '285.928711', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299746', 2299746, '-188.861404', '-0.100036', '279.196106', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299747', 2299747, '-138.628296', '-0.106860', '247.516495', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299748', 2299748, '-207.352600', '-0.100011', '323.235504', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299751', 2299751, '-240.541595', '-0.100076', '309.201599', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299754', 2299754, '-282.546997', '2.068284', '344.383087', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299756', 2299756, '-165.855804', '3.695794', '214.781403', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299762', 2299762, '190.512695', '15.940850', '25.798840', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299764', 2299764, '193.374695', '15.528740', '58.982250', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299765', 2299765, '192.796906', '15.253090', '57.661560', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299767', 2299767, '162.554993', '16.909040', '69.378082', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299768', 2299768, '118.356201', '19.249180', '84.129753', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299769', 2299769, '119.667503', '18.832991', '86.148743', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299771', 2299771, '205.228104', '12.477170', '36.627281', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299772', 2299772, '218.183899', '10.623910', '45.217682', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299775', 2299775, '206.333893', '12.854360', '17.317181', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299777', 2299777, '114.394302', '18.347380', '106.921097', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299779', 2299779, '125.780098', '24.673790', '178.210098', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299781', 2299781, '135.240707', '28.061291', '166.094406', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299782', 2299782, '132.860199', '26.962641', '168.596893', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299783', 2299783, '145.372696', '31.326719', '173.479797', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299785', 2299785, '52.078991', '24.582239', '146.288193', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299786', 2299786, '52.109509', '24.917931', '143.633102', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299788', 2299788, '54.687038', '18.847170', '222.674896', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299789', 2299789, '71.783401', '22.789841', '205.433395', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299791', 2299791, '52.628319', '11.490000', '281.025391', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299792', 2299792, '55.405460', '12.252950', '279.835114', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299799', 2299799, '-333.285889', '20.722960', '-154.265701', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114934, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299800', 2299800, '-287.157501', '15.489150', '-84.197617', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299802', 2299802, '-262.604095', '12.804420', '-65.742996', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106532, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299803', 2299803, '-258.117889', '10.828210', '-67.787712', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299804', 2299804, '-235.706100', '8.377155', '-31.937180', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299812', 2299812, '-156.572906', '6.393483', '12.436060', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114662, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299820', 2299820, '-231.464096', '9.353733', '-146.379807', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299822', 2299822, '-119.740601', '2.027413', '-74.048714', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299823', 2299823, '-98.963509', '2.027430', '-27.024349', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299882', 2299882, '-305.844391', '25.145599', '-209.288696', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299886', 2299886, '-345.664215', '23.928289', '-176.087097', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299887', 2299887, '-347.161285', '24.534389', '-177.381302', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299895', 2299895, '-261.350800', '12.694290', '-76.165604', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299901', 2299901, '-279.804291', '19.410770', '50.600639', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299908', 2299908, '-263.922089', '15.508790', '89.442383', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299911', 2299911, '-145.702393', '6.826308', '-14.807010', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299914', 2299914, '-186.113998', '9.086921', '28.118750', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299915', 2299915, '-149.863907', '4.337313', '105.397102', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299916', 2299916, '-212.124496', '12.717620', '104.362198', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299930', 2299930, '-56.242779', '6.495965', '-71.791733', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299933', 2299933, '-107.042099', '5.264315', '-76.487633', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299936', 2299936, '-66.982857', '5.925140', '-114.246902', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299938', 2299938, '-139.531906', '11.537960', '-122.054199', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299941', 2299941, '-121.466599', '10.386180', '-143.292297', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299945', 2299945, '0.868353', '6.550388', '-34.652611', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299949', 2299949, '57.447720', '3.129161', '-49.835171', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299951', 2299951, '20.675930', '4.623436', '23.544621', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109772, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2299953', 2299953, '102.866203', '4.166452', '53.437038', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2299954', 2299954, '105.180397', '4.165666', '50.461540', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2300024', 2300024, '124.376198', '19.407740', '-146.837601', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90098, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(153, 'f1f3', 'bnpc2300025', 2300025, '124.414299', '19.130779', '-145.398300', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89832, 1, 0, 0, 0, 0, 30067, 0, 0, 0), +(153, 'f1f3', 'bnpc2300029', 2300029, '83.634644', '9.048584', '-90.501282', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89566, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc2300030', 2300030, '71.000183', '18.234480', '-159.014297', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89282, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(153, 'f1f3', 'bnpc2300031', 2300031, '71.760773', '18.225830', '-160.113007', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89016, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(153, 'f1f3', 'bnpc2300041', 2300041, '179.222198', '18.223680', '-145.087006', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88744, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc2300042', 2300042, '170.907196', '17.193430', '-151.395401', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88466, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(153, 'f1f3', 'bnpc2300044', 2300044, '121.843201', '20.218161', '-96.971130', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88200, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(153, 'f1f3', 'bnpc2300045', 2300045, '123.185997', '20.370750', '-97.032173', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87922, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(153, 'f1f3', 'bnpc2300047', 2300047, '131.347900', '20.830030', '-112.115501', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87650, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc2300048', 2300048, '136.095200', '18.936399', '-149.187500', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87378, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc2300050', 2300050, '99.198853', '17.898781', '-160.631805', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87118, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc2300051', 2300051, '171.717804', '17.307770', '-150.139297', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86846, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(153, 'f1f3', 'bnpc2300067', 2300067, '435.940704', '-0.982693', '5.487583', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76704, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(153, 'f1f3', 'bnpc2300068', 2300068, '440.817810', '-1.144474', '-14.663970', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86520, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc2300072', 2300072, '438.040710', '-0.412041', '-42.984711', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71530, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(153, 'f1f3', 'bnpc2300074', 2300074, '441.568298', '0.782855', '-28.634399', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc2300077', 2300077, '426.413208', '-0.717224', '-50.309021', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72346, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(153, 'f1f3', 'bnpc2300080', 2300080, '399.968506', '4.262952', '-41.852612', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74800, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(153, 'f1f3', 'bnpc2300084', 2300084, '360.969208', '1.840043', '-6.628087', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75616, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc2300091', 2300091, '376.814392', '4.773165', '-33.204460', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71258, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(153, 'f1f3', 'bnpc2300092', 2300092, '356.160797', '2.687235', '2.700800', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86248, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc2300095', 2300095, '366.384308', '1.052825', '12.741240', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76160, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(153, 'f1f3', 'bnpc2300098', 2300098, '387.472290', '-0.900329', '20.340231', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85976, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(153, 'f1f3', 'bnpc2300099', 2300099, '387.075500', '-1.022401', '21.408360', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75888, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(153, 'f1f3', 'bnpc2300103', 2300103, '403.433197', '-2.121051', '16.250811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85704, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc2300104', 2300104, '436.545288', '-1.022401', '4.501364', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72074, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(153, 'f1f3', 'bnpc2300105', 2300105, '435.723999', '-1.106398', '3.907724', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75344, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(153, 'f1f3', 'bnpc2300115', 2300115, '389.150787', '4.287738', '-36.392811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc2300119', 2300119, '397.360107', '0.381429', '115.953300', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64870, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2300123', 2300123, '371.755493', '-3.015678', '139.708099', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2300126', 2300126, '360.794006', '0.882443', '141.705902', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64326, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2300129', 2300129, '415.670990', '3.677377', '157.396805', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64054, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2300135', 2300135, '458.854004', '3.829967', '201.098602', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63782, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2300137', 2300137, '476.584991', '0.595055', '149.950302', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2300147', 2300147, '552.727478', '9.658914', '216.571198', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2300183', 2300183, '383.639801', '-2.278431', '92.591690', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300184', 2300184, '382.528412', '-2.487267', '93.400421', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300186', 2300186, '375.396393', '-4.129155', '77.561340', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300187', 2300187, '364.309113', '-4.655180', '71.455116', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300189', 2300189, '365.917114', '-5.088186', '65.510399', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300192', 2300192, '411.093201', '3.616341', '129.442200', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300193', 2300193, '410.513397', '4.074111', '156.633804', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300197', 2300197, '458.426697', '0.625573', '163.103607', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300199', 2300199, '458.792908', '0.625573', '164.843201', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300201', 2300201, '504.417389', '3.433233', '169.054596', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300202', 2300202, '512.107971', '5.050689', '209.033295', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300204', 2300204, '495.841888', '5.844158', '182.604706', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300205', 2300205, '544.090881', '10.452380', '201.525803', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300207', 2300207, '540.215088', '16.250811', '152.025604', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300211', 2300211, '525.902100', '19.058470', '105.821297', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300212', 2300212, '526.207275', '19.119511', '106.095901', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300214', 2300214, '570.489014', '22.507010', '119.554398', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300215', 2300215, '558.794128', '21.835609', '103.813599', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300217', 2300217, '592.919678', '25.558809', '131.029205', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300218', 2300218, '595.269714', '25.497780', '132.829697', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300222', 2300222, '158.947800', '16.443180', '-139.791306', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300223', 2300223, '162.681396', '16.443199', '-145.830505', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300229', 2300229, '47.617500', '4.166452', '66.536598', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300236', 2300236, '296.403412', '-0.256715', '-3.540742', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300237', 2300237, '307.939301', '-0.256714', '-0.769719', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2300241', 2300241, '306.026306', '-0.256723', '1.577364', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2308368', 2308368, '-332.770508', '11.416920', '613.476685', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145778, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(153, 'f1f3', 'bnpc2308369', 2308369, '-343.075592', '12.112200', '626.433289', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144424, 1, 0, 0, 0, 41, 30083, 0, 0, 0), +(153, 'f1f3', 'bnpc2308372', 2308372, '-345.601593', '15.548900', '608.209290', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143880, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc2308373', 2308373, '-344.072388', '20.119520', '620.861877', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145506, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(153, 'f1f3', 'bnpc2308806', 2308806, '-332.725800', '11.426350', '614.251526', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143608, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(153, 'f1f3', 'bnpc2308807', 2308807, '-333.646912', '11.427370', '613.129211', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144152, 1, 0, 0, 0, 41, 30077, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(153, 'f1f3', 'bnpc2308808', 2308808, '-325.795410', '11.581550', '623.895630', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144696, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(153, 'f1f3', 'bnpc2308809', 2308809, '-333.211304', '11.428960', '605.065918', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145234, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(153, 'f1f3', 'bnpc2308811', 2308811, '-314.290100', '11.306890', '604.882813', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144962, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(153, 'f1f3', 'bnpc2308812', 2308812, '-302.510101', '16.006670', '74.845451', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109506, 1, 0, 0, 0, 8, 30065, 0, 0, 0), +(153, 'f1f3', 'bnpc2308813', 2308813, '-305.806091', '17.837749', '80.064034', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109240, 1, 0, 0, 0, 8, 30072, 0, 0, 0), +(153, 'f1f3', 'bnpc2308814', 2308814, '-302.204987', '16.159260', '76.035652', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108974, 1, 0, 0, 0, 8, 30079, 0, 0, 0), +(153, 'f1f3', 'bnpc2308815', 2308815, '-306.242096', '16.501289', '63.830650', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108702, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc2308816', 2308816, '-295.566986', '17.347191', '79.688187', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108418, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc2308817', 2308817, '73.624763', '7.705750', '-111.894501', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83570, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(153, 'f1f3', 'bnpc2308818', 2308818, '74.906487', '7.766785', '-112.382797', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83304, 1, 0, 0, 0, 0, 30074, 0, 0, 0), +(153, 'f1f3', 'bnpc2308819', 2308819, '68.253563', '7.766795', '-107.438797', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83038, 1, 0, 0, 0, 0, 30081, 0, 0, 0), +(153, 'f1f3', 'bnpc2308820', 2308820, '72.922729', '7.614197', '-102.708603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82766, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc2308822', 2308822, '80.979607', '7.614197', '-109.636101', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82488, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc2310066', 2310066, '447.442291', '0.685165', '-106.462196', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82168, 1, 0, 0, 0, 5, 30073, 0, 0, 0), +(153, 'f1f3', 'bnpc2310068', 2310068, '439.536102', '-0.228932', '-82.414017', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71802, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(153, 'f1f3', 'bnpc2310072', 2310072, '447.196014', '-0.473083', '-64.896667', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81896, 1, 0, 0, 0, 5, 30079, 0, 0, 0), +(153, 'f1f3', 'bnpc2310073', 2310073, '448.172607', '-0.473083', '-65.140808', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75072, 1, 0, 0, 0, 5, 30077, 0, 0, 0), +(153, 'f1f3', 'bnpc2310077', 2310077, '606.902283', '21.846050', '94.322968', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310079', 2310079, '628.601990', '21.846140', '96.549973', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310080', 2310080, '634.544983', '21.846140', '87.894997', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310081', 2310081, '632.357971', '21.846130', '64.279701', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56692, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310082', 2310082, '626.666382', '21.845909', '61.769680', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56420, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310083', 2310083, '607.055603', '21.845909', '87.877663', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56148, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310084', 2310084, '607.202271', '21.845900', '69.260597', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55876, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310086', 2310086, '647.131470', '21.845940', '74.024300', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55604, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310087', 2310087, '631.244385', '21.845980', '119.611702', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310088', 2310088, '589.967102', '21.846029', '111.639000', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310106', 2310106, '62.454399', '22.173260', '-183.847000', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54504, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310110', 2310110, '11.996420', '22.107401', '-194.509094', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54232, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310121', 2310121, '43.552151', '31.746559', '-242.757904', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310129', 2310129, '80.701881', '31.247450', '-236.730392', 77, 0, 0, 0, 1, 6, 0, 0, 74, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310142', 2310142, '1.488476', '42.615070', '-238.873703', 85, 0, 0, 0, 1, 6, 0, 0, 81, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310155', 2310155, '14.401670', '41.170448', '-236.977097', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310157', 2310157, '13.745920', '41.247570', '-234.937393', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310158', 2310158, '26.641451', '40.972401', '-238.464600', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52606, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310159', 2310159, '23.036869', '41.356541', '-231.651596', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310160', 2310160, '34.532631', '34.329281', '-248.540298', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310161', 2310161, '18.166571', '40.736420', '-243.886398', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310162', 2310162, '36.185360', '34.339809', '-251.152893', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51518, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310163', 2310163, '32.022099', '35.938412', '-251.996597', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310164', 2310164, '2.683093', '41.323040', '-231.439301', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50974, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310165', 2310165, '2.481253', '41.289459', '-247.178207', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310166', 2310166, '3.023275', '41.244370', '-229.524307', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310168', 2310168, '26.339149', '41.310089', '-228.982193', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310169', 2310169, '43.691368', '23.807100', '-197.954498', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49886, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310170', 2310170, '47.955181', '23.796989', '-201.803207', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49614, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310171', 2310171, '27.500080', '23.900030', '-176.426407', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310173', 2310173, '8.713860', '24.977810', '-183.468903', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310174', 2310174, '25.766741', '25.453140', '-197.692993', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310175', 2310175, '21.326250', '25.217710', '-213.513397', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310176', 2310176, '56.209671', '30.207701', '-208.221603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310177', 2310177, '50.222309', '30.207741', '-208.816299', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310178', 2310178, '55.211819', '31.096901', '-223.299698', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310179', 2310179, '44.478668', '30.061560', '-213.305893', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47426, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310180', 2310180, '27.629330', '25.414169', '-203.556198', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47154, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310181', 2310181, '11.799320', '24.994440', '-208.841293', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310182', 2310182, '57.392250', '31.250860', '-237.443100', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310183', 2310183, '56.381592', '31.081989', '-222.324799', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310184', 2310184, '41.846550', '31.327400', '-233.639603', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310185', 2310185, '49.764519', '31.322470', '-239.490097', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310186', 2310186, '45.229160', '30.849199', '-225.986694', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310187', 2310187, '54.603119', '30.526270', '-215.684494', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310188', 2310188, '26.807720', '25.469440', '-208.795700', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310191', 2310191, '53.416069', '23.647209', '-198.466995', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310192', 2310192, '16.458969', '23.952860', '-182.981705', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310193', 2310193, '34.354580', '23.728510', '-188.906204', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310194', 2310194, '24.826321', '38.422710', '-248.892502', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310195', 2310195, '19.778610', '41.225639', '-235.194595', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2310196', 2310196, '10.671480', '41.230179', '-245.656906', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2313233', 2313233, '320.515686', '2.215992', '-18.509239', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81726, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(153, 'f1f3', 'bnpc2313234', 2313234, '320.698792', '2.227228', '-15.091220', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81454, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(153, 'f1f3', 'bnpc2313235', 2313235, '318.658691', '2.299638', '-15.389510', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81182, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(153, 'f1f3', 'bnpc2313237', 2313237, '303.089905', '1.571632', '-19.974110', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80910, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(153, 'f1f3', 'bnpc2313238', 2313238, '331.471710', '1.907331', '-17.807329', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80638, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(153, 'f1f3', 'bnpc2320820', 2320820, '241.483994', '17.276871', '-145.913101', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80354, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2320821', 2320821, '252.963196', '12.221980', '-153.075394', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80082, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2320822', 2320822, '246.929703', '9.238781', '-175.852005', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79810, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2320826', 2320826, '292.604004', '10.691710', '-162.803802', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79538, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2320827', 2320827, '290.235687', '9.507468', '-185.479797', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79266, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2320828', 2320828, '295.598389', '11.637060', '-160.074707', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78994, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2320830', 2320830, '279.377411', '8.641194', '-170.115997', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78722, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2320832', 2320832, '250.518402', '10.279540', '-169.884796', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78450, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2351462', 2351462, '48.281940', '25.165770', '125.730797', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2351466', 2351466, '33.028351', '19.801689', '204.600204', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2351468', 2351468, '17.664570', '21.473511', '187.304001', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2351469', 2351469, '15.638560', '21.324190', '188.309006', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2351473', 2351473, '48.142170', '19.912979', '204.211395', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125142, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc2351480', 2351480, '31.650410', '24.598419', '125.582100', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc2763397', 2763397, '318.018890', '0.478852', '12.307590', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78190, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(153, 'f1f3', 'bnpc2763398', 2763398, '317.199188', '0.290855', '13.417520', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77918, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(153, 'f1f3', 'bnpc2763399', 2763399, '313.945190', '0.195134', '8.234367', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77646, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(153, 'f1f3', 'bnpc2763400', 2763400, '289.082001', '0.747620', '16.617001', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77374, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(153, 'f1f3', 'bnpc2763402', 2763402, '292.225494', '0.411926', '13.809330', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77102, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(153, 'f1f3', 'bnpc3739171', 3739171, '-272.839386', '22.280479', '-182.574203', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104362, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(153, 'f1f3', 'bnpc3739176', 3739176, '-271.384399', '22.233410', '-181.710205', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104090, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(153, 'f1f3', 'bnpc3739178', 3739178, '-270.221985', '22.171329', '-172.442307', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103818, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(153, 'f1f3', 'bnpc3739189', 3739189, '-286.671295', '22.598570', '-178.942596', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103546, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(153, 'f1f3', 'bnpc3739195', 3739195, '-285.084290', '23.636169', '-193.682800', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103274, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(153, 'f1f3', 'bnpc3739197', 3739197, '-302.441498', '24.263420', '-202.146301', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103002, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(153, 'f1f3', 'bnpc3739198', 3739198, '-301.991302', '24.106640', '-200.335693', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102730, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(153, 'f1f3', 'bnpc3739200', 3739200, '-307.179413', '23.056339', '-191.149796', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102458, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(153, 'f1f3', 'bnpc3739223', 3739223, '-306.875397', '9.692472', '-137.887207', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3739241', 3739241, '-102.205200', '2.027415', '-36.144821', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3739247', 3739247, '-101.905197', '2.027430', '-31.359751', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3739298', 3739298, '-64.469414', '0.015212', '63.034969', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97030, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3739305', 3739305, '-142.689407', '0.030637', '161.735504', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96758, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3739308', 3739308, '-173.166397', '0.030539', '149.329895', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96486, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3739310', 3739310, '-183.418106', '0.030539', '144.544296', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96214, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3739417', 3739417, '151.785294', '4.236084', '20.237249', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3739423', 3739423, '152.085297', '4.236084', '15.201380', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3740607', 3740607, '-135.541595', '-0.100001', '467.027588', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138730, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3740609', 3740609, '-138.985397', '-0.100003', '461.260590', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138458, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3740611', 3740611, '-176.964996', '-0.100092', '482.156586', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138186, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3740613', 3740613, '-197.264099', '-0.100169', '480.240295', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3740615', 3740615, '-183.840607', '-0.100061', '448.882111', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3740617', 3740617, '-178.071396', '-0.100048', '447.029205', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3740619', 3740619, '-182.900406', '-0.100169', '476.189514', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3740632', 3740632, '-358.518585', '1.158285', '453.619598', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc3740634', 3740634, '-362.075012', '0.968366', '458.185486', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc3740635', 3740635, '-336.208405', '-0.100018', '460.011810', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc3740636', 3740636, '-362.780701', '1.532029', '454.955414', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc3740637', 3740637, '-338.199493', '-0.100187', '433.127808', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc3740638', 3740638, '-334.106689', '-0.100003', '437.684113', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc3740639', 3740639, '-345.628906', '-0.100008', '453.583313', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc3740640', 3740640, '-333.997498', '-0.100017', '457.273987', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc3740644', 3740644, '-79.519012', '-0.100045', '377.072388', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3740645', 3740645, '-20.504120', '-0.106860', '365.133087', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3740646', 3740646, '-52.782280', '-0.106860', '324.177887', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3740647', 3740647, '-59.319771', '-0.100007', '331.135590', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3740648', 3740648, '-4.964393', '-0.100007', '339.615601', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3740649', 3740649, '-18.177540', '-0.100615', '322.254089', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3740651', 3740651, '-42.146980', '-0.100005', '396.759399', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3740823', 3740823, '52.433182', '8.970453', '290.451111', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124604, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3740824', 3740824, '34.042301', '6.188347', '297.895691', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123244, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(153, 'f1f3', 'bnpc3740991', 3740991, '83.869347', '23.640280', '197.587494', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc3740992', 3740992, '83.668243', '23.758640', '201.089493', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc3740993', 3740993, '92.752083', '22.594500', '147.751404', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc3740994', 3740994, '69.937286', '22.357740', '174.791397', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc3870245', 3870245, '-201.828995', '8.309389', '-77.948196', 584, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27764, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(153, 'f1f3', 'bnpc3870249', 3870249, '-144.314499', '6.941079', '-45.049019', 585, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27498, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(153, 'f1f3', 'bnpc3870258', 3870258, '-169.371506', '8.963833', '-15.339670', 586, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27232, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(153, 'f1f3', 'bnpc3870312', 3870312, '213.284805', '9.756709', '-77.238258', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26966, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(153, 'f1f3', 'bnpc3870333', 3870333, '150.590805', '8.698524', '-47.601891', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26700, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(153, 'f1f3', 'bnpc3870347', 3870347, '213.854004', '6.490500', '-15.706390', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 36, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26434, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(153, 'f1f3', 'bnpc3870372', 3870372, '-149.487900', '0.750592', '229.198502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26156, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(153, 'f1f3', 'bnpc3870375', 3870375, '-161.511307', '0.485998', '346.191010', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(153, 'f1f3', 'bnpc3870382', 3870382, '-231.008896', '0.795779', '399.749115', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25606, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(153, 'f1f3', 'bnpc3870387', 3870387, '-228.300903', '0.984585', '517.848816', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25334, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(153, 'f1f3', 'bnpc3878991', 3878991, '400.476288', '4.241707', '-40.787842', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70986, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(153, 'f1f3', 'bnpc3879006', 3879006, '442.368011', '0.843470', '-27.738720', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70714, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc3879018', 3879018, '447.624695', '0.635267', '-105.764603', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70442, 1, 0, 0, 0, 5, 30074, 0, 0, 0), +(153, 'f1f3', 'bnpc3879051', 3879051, '431.967712', '-0.747742', '-65.507080', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70176, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(153, 'f1f3', 'bnpc3879065', 3879065, '356.771088', '2.792354', '1.937849', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69898, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(153, 'f1f3', 'bnpc3879339', 3879339, '-343.618011', '11.367920', '624.658508', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(153, 'f1f3', 'bnpc3879341', 3879341, '-324.269501', '11.551030', '603.662109', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136536, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(153, 'f1f3', 'bnpc3879343', 3879343, '-320.241089', '11.612060', '616.174377', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136288, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc3879346', 3879346, '-319.234009', '11.551030', '602.227722', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136016, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(153, 'f1f3', 'bnpc3879348', 3879348, '-324.879913', '11.551030', '603.082275', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135744, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(153, 'f1f3', 'bnpc3879351', 3879351, '-324.330505', '11.520510', '609.063782', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135448, 1, 0, 0, 0, 41, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc3879352', 3879352, '-342.671906', '20.065571', '624.475403', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135176, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(153, 'f1f3', 'bnpc3879353', 3879353, '-343.556885', '20.065571', '624.811096', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134928, 1, 0, 0, 0, 41, 30073, 0, 0, 0), +(153, 'f1f3', 'bnpc3879398', 3879398, '-335.561188', '11.520510', '620.843811', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134626, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(153, 'f1f3', 'bnpc3884509', 3884509, '125.859001', '4.166452', '44.953560', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc3917184', 3917184, '-60.455681', '3.894856', '-39.952641', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc3939726', 3939726, '436.760712', '0.574082', '-105.544098', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69360, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(153, 'f1f3', 'bnpc4329476', 4329476, '-188.220093', '9.170593', '94.010742', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95676, 6, 1, 0, 0, 0, 30246, 4329477, 0, 0), +(153, 'f1f3', 'bnpc4333062', 4333062, '-159.767395', '3.700634', '137.279205', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94652, 6, 1, 0, 0, 0, 30246, 4333061, 0, 0), +(153, 'f1f3', 'bnpc4621322', 4621322, '28.233730', '25.315451', '115.697998', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28790, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(153, 'f1f3', 'bnpc4621339', 4621339, '-337.105499', '20.119471', '615.520508', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28518, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143752', 1143752, '468.733612', '-3.633345', '230.358597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161672, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143755', 1143755, '465.781586', '-3.677471', '229.602402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161400, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143766', 1143766, '444.779510', '-3.136452', '238.420898', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128760, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143773', 1143773, '465.263000', '-2.447129', '258.256592', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161128, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143778', 1143778, '428.447205', '-1.594615', '201.428604', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160856, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143785', 1143785, '418.397888', '-1.449695', '197.651093', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160584, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143787', 1143787, '419.881805', '-4.161774', '286.077789', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160312, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143790', 1143790, '437.705414', '-3.238991', '267.530212', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160040, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143793', 1143793, '423.775085', '-3.337628', '259.160889', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159768, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143797', 1143797, '424.763611', '-3.434183', '264.063385', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159496, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143811', 1143811, '449.264099', '-2.694139', '278.273193', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159224, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143813', 1143813, '447.361511', '-2.361451', '283.012695', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158952, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143833', 1143833, '324.665100', '-5.350893', '263.034088', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158680, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143834', 1143834, '326.416687', '-5.326731', '264.652008', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158408, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143836', 1143836, '228.076508', '-27.969830', '314.808807', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158142, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143844', 1143844, '226.947403', '-28.244499', '321.583801', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157870, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143846', 1143846, '232.074402', '-27.023769', '316.945099', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157598, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143852', 1143852, '245.166595', '-23.941450', '329.304901', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157326, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143853', 1143853, '243.701797', '-24.673880', '332.020996', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157054, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143858', 1143858, '238.841797', '-23.981850', '361.571594', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156782, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143859', 1143859, '234.742996', '-25.153990', '359.183594', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156510, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143860', 1143860, '184.706299', '-37.785229', '360.952393', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156238, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143861', 1143861, '217.364700', '-28.025049', '344.838593', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143862', 1143862, '218.412994', '-28.201860', '349.321411', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155966, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143865', 1143865, '215.228394', '-28.379271', '347.279999', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155694, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143866', 1143866, '185.345001', '-32.188919', '312.603790', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155422, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143868', 1143868, '188.006302', '-32.639091', '314.137390', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155150, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143873', 1143873, '209.412994', '-25.172079', '366.151306', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154878, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143875', 1143875, '178.562500', '-38.966068', '338.296814', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154606, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143876', 1143876, '144.823303', '-31.479410', '305.622894', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154334, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143877', 1143877, '146.196594', '-30.899561', '302.754211', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154062, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143878', 1143878, '152.851395', '-42.255760', '352.426392', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153790, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143879', 1143879, '149.193604', '-43.619991', '356.343506', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153518, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143881', 1143881, '158.525894', '-36.057110', '323.933685', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153246, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143882', 1143882, '163.927597', '-36.881100', '326.466705', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152974, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143885', 1143885, '159.594101', '-36.820061', '328.267303', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152702, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143886', 1143886, '172.482895', '-27.390930', '279.472900', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152430, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143887', 1143887, '176.999496', '-26.747681', '281.731201', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152158, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143889', 1143889, '171.282501', '-27.115330', '283.741486', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151886, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143891', 1143891, '197.201508', '-28.186390', '271.644287', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151614, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143892', 1143892, '200.589005', '-27.467010', '274.696106', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151342, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143895', 1143895, '197.110001', '-27.467581', '277.015503', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151070, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143897', 1143897, '246.082199', '-21.335920', '271.557007', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150798, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143900', 1143900, '229.912994', '-24.472389', '284.220306', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150526, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143904', 1143904, '243.488205', '-22.337280', '276.104187', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150254, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143905', 1143905, '237.018402', '-23.084021', '269.268188', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149982, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143907', 1143907, '242.685898', '-23.822359', '245.136795', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149710, 7, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(154, 'f1f4', 'bnpc1143911', 1143911, '224.510498', '-25.336050', '241.230103', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149438, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143915', 1143915, '241.148895', '-25.036400', '235.342697', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149166, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143916', 1143916, '236.107697', '-26.824610', '216.055893', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148894, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143919', 1143919, '246.995605', '-24.468109', '240.298096', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146718, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143920', 1143920, '265.723907', '-25.564400', '226.344604', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148622, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143921', 1143921, '265.719299', '-26.269621', '219.037994', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148350, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143923', 1143923, '268.421387', '-21.408449', '246.509399', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148078, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143924', 1143924, '264.054688', '-19.323090', '252.478806', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147806, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143925', 1143925, '295.377899', '-18.290230', '266.437103', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147534, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1143934', 1143934, '316.585999', '-16.832951', '187.871704', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143935', 1143935, '314.021301', '-17.296310', '192.256302', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143936', 1143936, '311.854492', '-17.875420', '189.936905', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143938', 1143938, '283.100586', '-25.497869', '192.706100', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143941', 1143941, '280.262390', '-25.619940', '193.316498', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143944', 1143944, '273.152496', '-20.649960', '128.760193', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110300, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143945', 1143945, '303.365509', '-8.872850', '95.128830', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143946', 1143946, '296.499603', '-11.734670', '103.927902', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109756, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143949', 1143949, '301.016296', '-10.037700', '103.164902', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110028, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143952', 1143952, '274.860687', '-13.992570', '103.746002', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143953', 1143953, '277.363190', '-13.962050', '102.250702', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143962', 1143962, '297.610199', '-23.044500', '220.886002', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143963', 1143963, '309.994110', '-18.136681', '184.117996', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143966', 1143966, '299.197113', '-21.964729', '223.815796', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143969', 1143969, '297.872894', '-12.140140', '107.895203', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143970', 1143970, '276.631500', '-19.656750', '126.440804', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143971', 1143971, '297.779785', '-22.690210', '161.913406', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98332, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143972', 1143972, '371.881592', '-6.723549', '84.641747', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98604, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143973', 1143973, '376.154114', '-6.318017', '85.862457', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97788, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143974', 1143974, '371.085114', '-5.840127', '88.055183', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98060, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143983', 1143983, '419.912994', '-4.654048', '77.439484', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98876, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143984', 1143984, '424.551697', '-3.646953', '81.803574', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99692, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143985', 1143985, '428.493103', '-1.675420', '69.168533', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143987', 1143987, '401.540802', '-6.912460', '58.247761', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143988', 1143988, '403.463715', '-6.369321', '60.898708', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99148, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143989', 1143989, '378.988312', '-7.187046', '68.955467', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99420, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143990', 1143990, '405.752197', '-6.460996', '59.106491', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97516, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143991', 1143991, '387.045013', '-4.837157', '93.705597', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97244, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1143998', 1143998, '390.177887', '-4.509761', '93.888512', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96972, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144003', 1144003, '223.302307', '-22.244350', '140.968201', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91864, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144004', 1144004, '217.578293', '-21.988300', '138.200897', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90504, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144007', 1144007, '185.015701', '-24.153931', '154.465500', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90232, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144008', 1144008, '179.410904', '-23.832951', '152.981903', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91592, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144009', 1144009, '167.197998', '-27.995230', '192.997803', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91320, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144011', 1144011, '177.798798', '-24.733610', '159.351395', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91048, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144015', 1144015, '138.902802', '-27.603621', '237.109894', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92680, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144017', 1144017, '88.530487', '-27.058380', '290.765411', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92136, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144019', 1144019, '84.896217', '-28.451370', '271.261688', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92408, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144027', 1144027, '-15.138880', '-52.068508', '438.953705', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144028', 1144028, '-12.361740', '-51.361629', '435.444214', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73126, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144030', 1144030, '-9.676152', '-51.078831', '436.725891', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144031', 1144031, '-21.414761', '-45.509689', '411.041412', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70950, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144042', 1144042, '9.536865', '-48.508480', '474.235107', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67964, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144043', 1144043, '3.205714', '-47.435299', '471.491486', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67420, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144045', 1144045, '-11.876680', '-52.218342', '458.182587', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68236, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144047', 1144047, '-30.001869', '-55.355400', '500.188385', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71222, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144049', 1144049, '-35.678230', '-53.471958', '498.265686', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144050', 1144050, '-16.922300', '-53.971210', '467.582214', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144051', 1144051, '-30.825859', '-54.086170', '495.671692', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144066', 1144066, '-215.322098', '-30.287540', '345.076813', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144067', 1144067, '-217.336304', '-30.232090', '345.381989', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72582, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144068', 1144068, '-241.359406', '-30.546400', '355.281891', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72854, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144074', 1144074, '-187.557999', '-30.827459', '327.431396', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144076', 1144076, '-189.083893', '-30.732161', '329.140411', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144079', 1144079, '-207.943893', '-30.040119', '327.783203', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144085', 1144085, '-207.568497', '-30.624901', '298.084900', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71494, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144088', 1144088, '-217.678604', '-29.217609', '281.772491', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144089', 1144089, '-232.330093', '-26.492390', '293.040802', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144090', 1144090, '-230.365494', '-26.618240', '295.168701', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144095', 1144095, '-236.490906', '-26.792789', '270.853088', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144102', 1144102, '-269.982300', '-15.041580', '257.233795', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88056, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144103', 1144103, '-256.205414', '-24.029810', '238.507599', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88328, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144108', 1144108, '-250.331604', '-26.539511', '245.353897', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87512, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144111', 1144111, '-247.374802', '-26.295010', '199.152298', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87784, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144115', 1144115, '-145.718704', '-44.456711', '245.994507', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89144, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144117', 1144117, '-194.954300', '-56.667259', '298.548615', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89688, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144124', 1144124, '-88.115013', '-50.887539', '355.110413', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144132', 1144132, '-180.289703', '-58.090000', '341.292908', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144134', 1144134, '-173.453705', '-58.488270', '346.267395', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144136', 1144136, '-248.384903', '-70.863403', '400.043610', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144155', 1144155, '-265.522308', '-78.660339', '495.811401', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64452, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1144156', 1144156, '94.651657', '-28.693371', '205.296204', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52672, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144157', 1144157, '58.451691', '-24.165310', '201.325806', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144161', 1144161, '142.662994', '-27.379681', '171.947693', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51584, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144163', 1144163, '72.983849', '-14.541890', '160.479095', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53216, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144165', 1144165, '28.954960', '-9.060006', '115.734299', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53760, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144166', 1144166, '62.516159', '-10.939160', '113.847504', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53488, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144167', 1144167, '33.890240', '-7.635654', '75.669441', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1144171', 1144171, '38.681568', '-7.743955', '37.247219', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1145781', 1145781, '314.148712', '-9.873041', '137.315598', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1145783', 1145783, '316.563904', '-11.553430', '155.556900', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102140, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1145785', 1145785, '310.839111', '-10.058590', '146.018997', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101868, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1145786', 1145786, '335.961487', '-6.303717', '151.505005', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1145792', 1145792, '334.663391', '-4.191054', '173.662903', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1145794', 1145794, '342.177307', '-3.911723', '174.273193', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100780, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1145797', 1145797, '356.749786', '-1.121761', '182.588501', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368415', 1368415, '451.260101', '-3.443870', '238.795807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147256, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1368437', 1368437, '390.890289', '-7.586338', '269.886292', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146984, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1368491', 1368491, '313.954803', '-6.875740', '27.206791', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368493', 1368493, '318.414001', '-7.856604', '-8.765156', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368494', 1368494, '337.636292', '-5.691662', '26.687981', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368495', 1368495, '360.321503', '-3.134459', '15.892390', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368496', 1368496, '364.258301', '-3.572027', '19.096781', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368497', 1368497, '353.728394', '-5.753780', '25.100679', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368498', 1368498, '321.866913', '-7.314247', '-15.243810', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114918, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368499', 1368499, '317.799591', '-6.363059', '23.605659', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114646, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368501', 1368501, '310.197205', '-8.609804', '2.999502', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368502', 1368502, '307.043396', '-8.701551', '-1.767205', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114374, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368503', 1368503, '307.209808', '-7.736371', '-25.314760', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368506', 1368506, '279.991913', '-7.195922', '-25.793631', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368507', 1368507, '275.332886', '-6.079346', '-51.364719', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117366, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368508', 1368508, '268.817902', '-7.622407', '-26.344280', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368509', 1368509, '276.584106', '-5.971716', '-40.277569', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368513', 1368513, '273.210785', '-9.038651', '1.056271', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368515', 1368515, '271.523804', '-11.769340', '30.395180', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368516', 1368516, '255.359695', '-9.109683', '4.562400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368517', 1368517, '251.891006', '-8.924417', '10.996560', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368519', 1368519, '238.113907', '-10.699850', '39.986820', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368520', 1368520, '236.666702', '-11.041180', '47.762650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368521', 1368521, '216.099899', '-5.217842', '15.486120', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368522', 1368522, '219.648102', '-5.708765', '19.837851', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368527', 1368527, '226.886307', '-11.459570', '69.291168', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368528', 1368528, '232.117203', '-11.721460', '66.985252', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368530', 1368530, '217.647400', '-9.632435', '55.535179', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368531', 1368531, '262.570892', '-13.984700', '50.050228', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368532', 1368532, '253.925293', '-13.748430', '50.339458', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368537', 1368537, '36.721581', '-13.599010', '-35.811329', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368539', 1368539, '45.805561', '-2.063314', '-62.499821', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368540', 1368540, '43.942150', '-1.029362', '-68.421707', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368542', 1368542, '19.448151', '-0.446853', '-89.062424', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368546', 1368546, '57.928291', '9.733817', '-102.176399', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48054, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368548', 1368548, '55.925640', '6.821295', '-37.389530', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48326, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368554', 1368554, '68.129494', '7.053471', '-60.042889', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49142, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368555', 1368555, '94.406288', '8.411647', '-78.379066', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48598, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368556', 1368556, '145.311600', '6.469276', '-59.126930', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48870, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368560', 1368560, '117.309502', '6.760285', '-52.052681', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368561', 1368561, '160.460007', '3.641483', '-40.868118', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368562', 1368562, '-193.135696', '-32.369289', '261.702515', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368569', 1368569, '-19.247980', '-45.409012', '412.262085', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368570', 1368570, '-46.799500', '-47.531921', '426.291290', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368571', 1368571, '-36.310310', '-47.774849', '409.386902', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368577', 1368577, '354.033691', '-1.282395', '183.656601', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122256, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368578', 1368578, '338.217590', '-3.919866', '175.769104', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123072, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368579', 1368579, '320.962494', '-8.541780', '134.309296', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119264, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368580', 1368580, '311.398987', '-9.954162', '140.459198', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123344, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368582', 1368582, '313.089508', '-17.740789', '185.998001', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118176, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368583', 1368583, '274.723297', '-26.291660', '183.940598', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124160, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368584', 1368584, '304.162506', '-21.746981', '213.237000', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122800, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368587', 1368587, '273.532806', '-13.660890', '101.165001', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124976, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368590', 1368590, '303.309204', '-10.197260', '107.375298', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121984, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368591', 1368591, '372.633514', '-5.472790', '90.196060', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123888, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368594', 1368594, '376.821503', '-7.339636', '68.955467', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123616, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368596', 1368596, '410.155609', '-6.183658', '55.648460', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121440, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368597', 1368597, '412.797699', '-4.115298', '93.821388', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121168, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368598', 1368598, '362.752686', '-7.221369', '55.588570', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120624, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368600', 1368600, '330.403503', '-5.478035', '19.729870', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120080, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368601', 1368601, '340.436401', '-5.850005', '23.485689', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118720, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368602', 1368602, '334.164093', '-4.736384', '-1.168072', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120352, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368604', 1368604, '280.384491', '-6.088397', '-46.768951', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121712, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368605', 1368605, '246.078796', '-5.873863', '-10.449420', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122528, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368606', 1368606, '275.931305', '-10.226560', '7.661325', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118448, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368607', 1368607, '279.562286', '-10.758130', '40.909191', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118992, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368608', 1368608, '281.362915', '-10.660460', '38.721069', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119536, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368610', 1368610, '219.226303', '-10.849210', '70.298264', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125792, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368612', 1368612, '233.086899', '-9.948204', '40.259239', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124432, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368613', 1368613, '213.180206', '-3.941148', '-4.296664', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124704, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368614', 1368614, '207.285202', '-5.140594', '20.525330', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119808, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368616', 1368616, '239.936707', '-7.773538', '10.082270', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125520, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1368727', 1368727, '278.431305', '-15.600310', '291.462494', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1368728', 1368728, '265.339111', '-16.501490', '289.234711', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1369057', 1369057, '450.064789', '-3.280736', '237.567703', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145908, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369058', 1369058, '417.631012', '-3.443490', '258.794006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145636, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369059', 1369059, '431.584900', '-2.734727', '225.736801', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145364, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369060', 1369060, '433.904297', '-2.631201', '225.675797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145092, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369063', 1369063, '420.105713', '-3.826969', '244.376099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144820, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369064', 1369064, '420.595215', '-1.434317', '198.139404', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144548, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369066', 1369066, '420.503693', '-1.383187', '195.789505', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144264, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1369067', 1369067, '327.321198', '-5.054865', '262.409302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144004, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369069', 1369069, '418.255005', '-3.347633', '257.236389', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143720, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1369078', 1369078, '405.129486', '-6.796501', '230.618896', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143448, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1369079', 1369079, '379.850403', '-9.137354', '273.382690', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143188, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369081', 1369081, '282.579498', '-14.737670', '288.410797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142916, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369082', 1369082, '297.790985', '-17.412251', '269.611206', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142644, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369083', 1369083, '268.697693', '-19.984810', '251.224106', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142372, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369084', 1369084, '289.845093', '-14.468090', '305.104095', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142100, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369085', 1369085, '324.574585', '-14.779820', '286.915314', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141828, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369086', 1369086, '329.182800', '-13.956880', '285.480988', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141556, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369087', 1369087, '345.143799', '-11.551130', '289.967102', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141272, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1369088', 1369088, '252.741592', '-21.175320', '288.406799', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141012, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369089', 1369089, '218.890594', '-26.504971', '301.258789', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140740, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369090', 1369090, '219.501007', '-26.810150', '303.212006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140468, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369091', 1369091, '241.351898', '-22.922640', '271.923187', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140196, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369092', 1369092, '194.140503', '-27.267920', '297.596588', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139924, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369093', 1369093, '196.285995', '-27.929461', '274.390991', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139652, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369095', 1369095, '185.564896', '-32.730652', '315.266602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139380, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369096', 1369096, '161.730301', '-36.392811', '324.788208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139108, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369097', 1369097, '167.315094', '-27.481541', '282.978485', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138836, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369098', 1369098, '142.931198', '-30.685940', '303.578186', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138564, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369099', 1369099, '172.080307', '-41.270390', '355.679108', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138292, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369101', 1369101, '217.456299', '-28.130699', '347.341095', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138020, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369102', 1369102, '216.124100', '-28.447210', '349.443512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137748, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369103', 1369103, '185.566101', '-37.807560', '358.326202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137476, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369104', 1369104, '238.333801', '-24.868570', '356.358398', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137204, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369105', 1369105, '230.975800', '-27.237400', '321.187103', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136932, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369109', 1369109, '262.285889', '-26.207680', '223.339996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136660, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369112', 1369112, '226.922302', '-24.500299', '282.846985', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136388, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369113', 1369113, '270.740814', '-25.894609', '219.684097', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136116, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369114', 1369114, '226.555206', '-25.225269', '239.887299', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135844, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369116', 1369116, '282.357086', '-23.535101', '244.795303', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135572, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369121', 1369121, '333.561310', '2.185390', '242.975006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135300, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369126', 1369126, '391.683807', '0.442465', '197.375397', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135016, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1369127', 1369127, '374.291687', '0.069733', '177.932404', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125248, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369128', 1369128, '340.926086', '-4.172237', '171.404495', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103228, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369129', 1369129, '274.308289', '-21.454750', '133.409195', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101052, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369131', 1369131, '284.565399', '-25.650459', '196.215698', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101324, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369135', 1369135, '164.769394', '-24.938990', '163.613800', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92952, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1369136', 1369136, '126.420898', '-26.382891', '167.406693', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369137', 1369137, '128.709793', '-25.925119', '164.324402', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57556, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369138', 1369138, '131.686401', '-24.799540', '198.020599', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369139', 1369139, '74.797401', '-28.214760', '204.149094', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58372, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(154, 'f1f4', 'bnpc1369140', 1369140, '71.341454', '-16.064501', '165.951599', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57828, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369141', 1369141, '69.103951', '-17.105560', '168.596893', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58100, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369142', 1369142, '48.614868', '-17.861691', '162.486298', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369143', 1369143, '69.590843', '-13.496570', '146.253998', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369146', 1369146, '39.957119', '-8.666501', '105.835701', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369147', 1369147, '52.015511', '-8.974514', '78.552917', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369148', 1369148, '45.149349', '-13.324360', '7.012329', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369149', 1369149, '17.379999', '-13.717900', '-20.370790', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369150', 1369150, '35.561901', '-13.693350', '-33.797138', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369151', 1369151, '44.338890', '-1.270125', '-66.438026', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369152', 1369152, '14.275760', '-0.570236', '-87.355873', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369153', 1369153, '31.780800', '-0.130703', '-85.079163', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369154', 1369154, '64.954559', '6.905480', '-85.581947', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369157', 1369157, '46.957291', '12.114440', '-121.487297', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369160', 1369160, '68.467163', '6.973328', '-53.543949', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369161', 1369161, '82.078217', '7.186952', '-63.706459', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58916, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369162', 1369162, '91.386230', '8.010939', '-78.294083', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58644, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369163', 1369163, '141.008499', '6.515503', '-53.391361', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369166', 1369166, '163.313705', '6.032107', '-46.804680', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369169', 1369169, '-31.436220', '-54.130669', '497.960510', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369174', 1369174, '21.103210', '-49.546139', '475.272614', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369177', 1369177, '-15.233060', '-53.066551', '466.036011', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369180', 1369180, '-48.539001', '-47.348751', '424.643188', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369183', 1369183, '-11.764770', '-51.560242', '438.742706', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369184', 1369184, '-91.746658', '-51.122200', '356.392212', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369185', 1369185, '-89.732468', '-51.292042', '358.650513', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369186', 1369186, '-116.542198', '-54.847111', '366.704803', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369187', 1369187, '-215.533707', '-63.035099', '360.219604', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369188', 1369188, '-179.797104', '-59.525509', '348.256592', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369189', 1369189, '-217.090103', '-64.042107', '364.888885', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369190', 1369190, '-255.542892', '-74.143631', '419.790894', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369191', 1369191, '-297.823914', '-79.049583', '481.552887', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369194', 1369194, '-267.105286', '-78.933182', '492.746185', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369197', 1369197, '-195.056107', '-32.913761', '285.816711', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63370, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369203', 1369203, '-194.417404', '-31.711460', '260.054596', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63914, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369206', 1369206, '-219.511200', '-30.548080', '332.944885', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63642, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369210', 1369210, '-169.922607', '-51.790081', '281.324493', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369225', 1369225, '415.314301', '-4.384437', '279.848297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134484, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369226', 1369226, '417.664215', '-4.268155', '279.787292', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134200, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1369227', 1369227, '416.351898', '-4.344605', '282.320313', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133928, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1369245', 1369245, '106.026802', '-24.064631', '188.681503', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52944, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1369266', 1369266, '110.856796', '6.893584', '-48.683529', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369268', 1369268, '106.950401', '7.553162', '-65.018799', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369270', 1369270, '448.720703', '-3.422734', '241.608597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133656, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1369283', 1369283, '400.411896', '-3.097628', '212.787003', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133396, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1369346', 1369346, '72.281059', '-23.743839', '185.561203', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1373459', 1373459, '443.619507', '-3.181869', '264.612488', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127146, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1373461', 1373461, '448.051788', '-2.900265', '234.756104', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133112, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1373462', 1373462, '416.268707', '-3.808599', '263.633698', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132840, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1373464', 1373464, '474.141296', '-3.220261', '248.381897', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132568, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1373465', 1373465, '472.096588', '-3.385255', '246.489807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132296, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1373466', 1373466, '475.150604', '-3.341773', '246.356903', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132036, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1373468', 1373468, '274.396088', '-14.909590', '275.718201', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127690, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1373469', 1373469, '166.918396', '-41.534370', '347.432587', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126874, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1373472', 1373472, '315.059814', '-12.244580', '158.583603', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101596, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1373473', 1373473, '320.444611', '-9.346396', '146.037094', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1373474', 1373474, '315.725800', '-9.276663', '126.870499', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1373475', 1373475, '321.508789', '-8.653498', '126.646599', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1373476', 1373476, '336.930115', '-3.588053', '182.083405', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1373477', 1373477, '323.688599', '-14.094800', '192.991898', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1373479', 1373479, '170.224701', '-26.854139', '298.491211', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1373480', 1373480, '259.386292', '-22.771570', '242.221405', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131486, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1373481', 1373481, '296.304993', '-24.768950', '202.106201', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1373482', 1373482, '160.660004', '-38.959309', '337.590302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131220, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1373497', 1373497, '335.683197', '-4.748982', '10.208240', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126602, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1373500', 1373500, '232.074402', '-6.008647', '2.020233', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127418, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1373502', 1373502, '393.522491', '-5.844142', '73.170151', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1373503', 1373503, '411.140686', '-5.930238', '61.455570', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1373504', 1373504, '347.812195', '-6.402293', '271.350494', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130936, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1373505', 1373505, '346.218903', '-6.677882', '272.394409', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130676, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1373507', 1373507, '292.224792', '-18.765341', '132.923004', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1373508', 1373508, '307.241913', '-8.558214', '101.772003', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1417935', 1417935, '204.363998', '-30.869049', '325.184998', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1417936', 1417936, '206.500305', '-30.502831', '322.743500', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130126, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1417937', 1417937, '206.591797', '-30.411280', '325.246002', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129860, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1417940', 1417940, '-165.340302', '-39.282860', '193.438599', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88872, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1417946', 1417946, '-298.084991', '-79.301208', '470.145599', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64724, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1417947', 1417947, '-302.235504', '-79.240173', '463.034912', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64180, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1417948', 1417948, '-232.433594', '-26.853029', '279.165588', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78554, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1417949', 1417949, '-298.420685', '-54.795170', '303.761414', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1417950', 1417950, '-300.953705', '-54.459469', '309.101898', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79370, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1417951', 1417951, '-271.875885', '-52.291519', '281.696686', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78282, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1417952', 1417952, '-278.400909', '-54.097359', '324.329590', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79098, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1417953', 1417953, '-275.976593', '-51.020748', '335.645813', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1417954', 1417954, '-252.932907', '-58.400982', '302.113312', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78826, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1417955', 1417955, '-229.778000', '-27.208941', '284.492401', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78010, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1417956', 1417956, '-202.834305', '-30.699909', '342.864288', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77466, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1417957', 1417957, '-191.225204', '-44.687611', '220.141800', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1417958', 1417958, '-264.080414', '-22.174829', '238.910095', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1417959', 1417959, '-229.297394', '-35.111050', '231.403000', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1417960', 1417960, '-174.044495', '-40.534210', '200.048401', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89416, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1417961', 1417961, '-149.616501', '-45.683731', '252.513397', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc1417968', 1417968, '-35.348652', '-13.415600', '-78.564903', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45346, 1, 0, 0, 0, 40, 30119, 0, 0, 0), +(154, 'f1f4', 'bnpc1417973', 1417973, '-116.777298', '-9.689575', '-86.778084', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45074, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(154, 'f1f4', 'bnpc1417975', 1417975, '-66.605652', '-8.194153', '-62.211121', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43714, 1, 0, 0, 0, 40, 30125, 0, 0, 0), +(154, 'f1f4', 'bnpc1417976', 1417976, '-38.827709', '-13.552420', '-78.398163', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42904, 1, 0, 0, 0, 40, 30057, 0, 0, 0), +(154, 'f1f4', 'bnpc1417977', 1417977, '-64.164253', '-8.163635', '-66.880310', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43986, 1, 0, 0, 0, 40, 30119, 0, 0, 0), +(154, 'f1f4', 'bnpc1417978', 1417978, '-10.940770', '-10.482990', '-42.618488', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43176, 1, 0, 0, 0, 0, 30124, 0, 0, 0), +(154, 'f1f4', 'bnpc1417979', 1417979, '-110.368500', '-9.353821', '-74.723450', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42632, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(154, 'f1f4', 'bnpc1417981', 1417981, '-130.923203', '-9.875401', '-94.172653', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44802, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(154, 'f1f4', 'bnpc1417982', 1417982, '-128.984497', '-10.045940', '-97.250549', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42088, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(154, 'f1f4', 'bnpc1417983', 1417983, '-119.401901', '-9.597961', '-63.828548', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44530, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(154, 'f1f4', 'bnpc1417984', 1417984, '-25.987261', '-7.826045', '-143.341904', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(154, 'f1f4', 'bnpc1417985', 1417985, '-46.618172', '-8.729055', '-147.223099', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44258, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(154, 'f1f4', 'bnpc1417986', 1417986, '-28.136749', '-8.067919', '-139.809906', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42360, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(154, 'f1f4', 'bnpc1417987', 1417987, '-37.033691', '-9.445435', '-137.254898', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41816, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(154, 'f1f4', 'bnpc1417988', 1417988, '-28.400631', '-7.899245', '-144.824905', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45618, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(154, 'f1f4', 'bnpc1417991', 1417991, '59.539070', '-37.771149', '294.833313', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88600, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc1418004', 1418004, '315.449707', '-8.316214', '-13.626350', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120896, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc2315589', 2315589, '-77.122833', '-6.427255', '-71.078758', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55386, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc2315590', 2315590, '-133.217896', '-9.529019', '-60.232140', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55930, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc2315591', 2315591, '-106.534103', '-12.212950', '-111.347603', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55658, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc2315592', 2315592, '-105.572998', '-9.525784', '-86.103401', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54570, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc2315593', 2315593, '-77.411713', '-13.583240', '-132.304901', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54298, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc2315595', 2315595, '-37.583012', '-11.337520', '-125.597000', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55114, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc2315596', 2315596, '-4.898193', '-11.638100', '-36.911621', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc2320968', 2320968, '417.338806', '-2.166638', '180.231598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129576, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc2320969', 2320969, '422.079498', '-2.088056', '179.054596', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129316, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc2320970', 2320970, '421.093597', '-1.981825', '181.915405', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129032, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc2321008', 2321008, '38.345871', '11.978280', '-107.103104', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49414, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc2321010', 2321010, '-46.306919', '-9.823078', '-139.634399', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54842, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc2321012', 2321012, '205.010406', '-24.383320', '145.800797', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89960, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc2321013', 2321013, '115.746803', '-26.867279', '252.730103', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90776, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc2321016', 2321016, '14.364810', '-47.184280', '446.981415', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81268, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(154, 'f1f4', 'bnpc2321017', 2321017, '8.855011', '-47.052078', '437.906494', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80996, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(154, 'f1f4', 'bnpc2321018', 2321018, '23.615641', '-45.878761', '447.495605', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79908, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(154, 'f1f4', 'bnpc2321019', 2321019, '-29.630119', '-53.701389', '454.788208', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc2342034', 2342034, '-104.783699', '-51.407688', '385.580200', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc2615829', 2615829, '247.882797', '-28.305531', '212.390305', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93998, 4, 0, 0, 0, 0, 30126, 0, 0, 0), +(154, 'f1f4', 'bnpc2615830', 2615830, '219.897705', '-25.925119', '230.212799', 744, 0, 0, 0, 1, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95624, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc2615831', 2615831, '251.972198', '-28.702271', '209.338501', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95890, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc2615832', 2615832, '213.214203', '-27.298441', '257.099213', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96434, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc2615833', 2615833, '215.472595', '-27.237400', '253.040298', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94542, 4, 0, 0, 0, 0, 30119, 0, 0, 0), +(154, 'f1f4', 'bnpc2615834', 2615834, '212.019608', '-27.601471', '252.518906', 744, 0, 0, 0, 0, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95080, 4, 0, 0, 0, 0, 30057, 0, 0, 0), +(154, 'f1f4', 'bnpc2615835', 2615835, '223.315704', '-26.199789', '217.486801', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93726, 4, 0, 0, 0, 0, 30125, 0, 0, 0), +(154, 'f1f4', 'bnpc2615836', 2615836, '230.090698', '-25.436840', '224.750107', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96162, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc2615837', 2615837, '251.606003', '-27.756210', '214.862198', 744, 0, 0, 0, 1, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94808, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc2849611', 2849611, '245.960098', '-27.145849', '217.639404', 743, 0, 0, 0, 1, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94270, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc2849612', 2849612, '221.789795', '-25.833570', '222.369705', 745, 0, 0, 0, 0, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96706, 4, 0, 0, 0, 0, 30119, 0, 0, 0), +(154, 'f1f4', 'bnpc2849614', 2849614, '218.411407', '-26.477131', '218.507996', 744, 0, 0, 0, 0, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95352, 4, 0, 0, 0, 0, 30120, 0, 0, 0), +(154, 'f1f4', 'bnpc3741110', 3741110, '73.289063', '-41.763981', '357.900299', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65534, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(154, 'f1f4', 'bnpc3741111', 3741111, '90.043427', '-40.634819', '352.315491', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66072, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(154, 'f1f4', 'bnpc3741112', 3741112, '85.557281', '-40.634819', '351.460999', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66610, 1, 0, 0, 0, 0, 30125, 0, 0, 0), +(154, 'f1f4', 'bnpc3741117', 3741117, '73.065964', '-38.481918', '332.600189', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65262, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(154, 'f1f4', 'bnpc3741118', 3741118, '52.970268', '-40.324650', '335.009186', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66344, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(154, 'f1f4', 'bnpc3741119', 3741119, '68.443611', '-40.187721', '343.554413', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67154, 1, 0, 0, 0, 0, 30057, 0, 0, 0), +(154, 'f1f4', 'bnpc3741122', 3741122, '53.208130', '-40.756901', '339.009613', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65800, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(154, 'f1f4', 'bnpc3741123', 3741123, '50.547020', '-40.461750', '336.659790', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66882, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(154, 'f1f4', 'bnpc3741124', 3741124, '53.528259', '-38.479301', '320.227112', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64990, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(154, 'f1f4', 'bnpc3741132', 3741132, '-284.870697', '-49.925079', '340.580109', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77738, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc3741133', 3741133, '21.243629', '-45.595200', '442.469513', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80724, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(154, 'f1f4', 'bnpc3741134', 3741134, '10.489580', '-47.098289', '439.071106', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81540, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(154, 'f1f4', 'bnpc3741135', 3741135, '23.118601', '-45.096272', '440.785797', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80180, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(154, 'f1f4', 'bnpc3741136', 3741136, '14.816470', '-45.761841', '435.965515', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79636, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(154, 'f1f4', 'bnpc3741137', 3741137, '21.488041', '-45.079990', '439.112488', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80452, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(154, 'f1f4', 'bnpc3741144', 3741144, '30.237329', '-47.804062', '466.828094', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69052, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc3741148', 3741148, '3.116203', '-49.230431', '481.867706', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69324, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc3741173', 3741173, '-41.599140', '-53.307251', '487.071014', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68508, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc3741178', 3741178, '28.775129', '-50.812210', '483.936310', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67692, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc3741198', 3741198, '-42.711262', '-52.666340', '491.020508', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68780, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc3741238', 3741238, '106.088799', '-22.112341', '171.394897', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc3741243', 3741243, '90.759720', '-19.997610', '170.030807', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46156, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc3741245', 3741245, '112.405098', '-22.569309', '167.395905', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45884, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc3741251', 3741251, '98.788353', '-23.465191', '165.496506', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc3741254', 3741254, '99.891838', '-23.128969', '165.796494', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc3741257', 3741257, '104.599197', '-23.865101', '164.789703', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc3741264', 3741264, '112.733398', '-22.251949', '161.306900', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc3741271', 3741271, '111.878098', '-22.535490', '167.695908', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc3870413', 3870413, '454.933990', '-1.199433', '198.847107', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21300, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(154, 'f1f4', 'bnpc3870422', 3870422, '355.536987', '-9.878284', '296.848114', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21034, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(154, 'f1f4', 'bnpc3870434', 3870434, '313.523193', '-6.315191', '-66.822891', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20768, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(154, 'f1f4', 'bnpc3870455', 3870455, '187.612900', '-2.180824', '-4.180596', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 49, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20484, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(154, 'f1f4', 'bnpc3870460', 3870460, '107.120598', '-28.211399', '276.198486', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20230, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(154, 'f1f4', 'bnpc3870467', 3870467, '52.319149', '-39.485619', '244.958893', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19952, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(154, 'f1f4', 'bnpc3870476', 3870476, '-125.156197', '-45.844360', '225.082901', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19680, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(154, 'f1f4', 'bnpc3870506', 3870506, '-54.058109', '-47.078789', '320.834991', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19396, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(154, 'f1f4', 'bnpc3871285', 3871285, '245.121399', '-27.767639', '161.763901', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19130, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(154, 'f1f4', 'bnpc3877610', 3877610, '460.799194', '-1.088999', '205.124603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128500, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc3897788', 3897788, '454.380188', '-1.495000', '207.570404', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128216, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(154, 'f1f4', 'bnpc3898013', 3898013, '448.109894', '-1.597685', '204.794403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127956, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(154, 'f1f4', 'bnpc4621558', 4621558, '-39.931252', '-7.787434', '-153.907501', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22586, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4291453', 4291453, '155.132599', '222.009995', '348.043488', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41428, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(155, 'r1f1', 'bnpc4291457', 4291457, '272.663513', '222.247696', '334.248901', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41156, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(155, 'r1f1', 'bnpc4291464', 4291464, '220.038406', '302.644592', '-149.387497', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(155, 'r1f1', 'bnpc4291467', 4291467, '177.878494', '301.664612', '-190.712402', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40618, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(155, 'r1f1', 'bnpc4291540', 4291540, '264.301514', '302.632202', '-284.870697', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40346, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(155, 'r1f1', 'bnpc4291544', 4291544, '-136.888702', '304.096985', '-285.084290', 1775, 0, 0, 0, 0, 6, 0, 0, 1583, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40080, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(155, 'r1f1', 'bnpc4291545', 4291545, '-494.600586', '204.213104', '-188.481094', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39796, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(155, 'r1f1', 'bnpc4291549', 4291549, '-535.141113', '204.035507', '-287.671906', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39524, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(155, 'r1f1', 'bnpc4296962', 4296962, '6.586450', '224.231003', '359.448090', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4296996', 4296996, '16.820339', '216.422195', '389.762604', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4296997', 4296997, '31.967649', '236.529999', '323.628510', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4296998', 4296998, '72.035683', '242.920105', '316.766113', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4296999', 4296999, '79.061470', '241.243393', '319.846802', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297000', 4297000, '112.809898', '239.429306', '294.575287', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163724, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297001', 4297001, '58.960991', '253.937698', '281.400696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163452, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297003', 4297003, '10.569400', '224.790207', '357.938599', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163180, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297008', 4297008, '354.657288', '224.892807', '300.765289', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297010', 4297010, '417.257904', '226.214996', '374.532593', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297011', 4297011, '421.699005', '227.744202', '370.285492', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297012', 4297012, '330.572113', '223.491394', '369.867493', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297013', 4297013, '429.534393', '217.970001', '417.141296', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161826, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297015', 4297015, '417.746185', '217.952194', '480.668488', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161554, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297016', 4297016, '422.541687', '219.795303', '494.286896', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161282, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297019', 4297019, '411.649689', '220.784195', '484.018890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161010, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297021', 4297021, '181.170303', '242.354599', '223.538406', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160744, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297025', 4297025, '342.033508', '264.985504', '103.754501', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160472, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297026', 4297026, '88.700684', '244.067993', '303.089813', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297027', 4297027, '88.700684', '222.003494', '420.492798', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297028', 4297028, '-25.009581', '205.387497', '480.682007', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297029', 4297029, '398.841614', '224.765701', '381.022705', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297232', 4297232, '-397.424805', '210.788193', '-238.255402', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38242, 8, 0, 0, 4128002, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4297234', 4297234, '-397.352997', '210.788193', '-233.666794', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37970, 8, 0, 0, 4128001, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4297235', 4297235, '-397.251587', '210.788193', '-228.848999', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37698, 8, 0, 0, 4128000, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4297236', 4297236, '-423.044800', '210.788193', '-221.963104', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37426, 8, 0, 0, 4297227, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(155, 'r1f1', 'bnpc4297238', 4297238, '-413.101990', '210.788193', '-212.035004', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37154, 8, 0, 0, 4297228, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4297239', 4297239, '-417.529114', '210.788193', '-217.341202', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36882, 8, 0, 0, 4297229, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4297336', 4297336, '168.169693', '276.447601', '-48.600040', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159112, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297337', 4297337, '264.687988', '294.602692', '-93.670403', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158840, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4297346', 4297346, '280.170807', '253.192902', '147.692001', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4297350', 4297350, '334.350311', '248.434402', '184.154297', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4297353', 4297353, '327.623993', '256.382294', '132.340805', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4297354', 4297354, '291.785187', '269.499786', '39.650711', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4297356', 4297356, '192.950302', '271.137512', '3.646851', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4297359', 4297359, '285.844391', '267.842712', '44.338120', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4297363', 4297363, '173.391296', '272.125793', '-12.465330', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4297364', 4297364, '249.355698', '270.133301', '26.395069', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4297365', 4297365, '203.100204', '254.232300', '149.502304', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298567', 4298567, '157.396698', '293.324097', '-98.374939', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298571', 4298571, '159.523300', '293.493011', '-99.299156', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298572', 4298572, '135.779297', '299.755890', '-101.941704', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298573', 4298573, '136.228699', '283.407715', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298574', 4298574, '258.647614', '289.809692', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298575', 4298575, '254.634094', '287.557098', '-64.855118', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298576', 4298576, '268.831512', '284.212891', '-40.760189', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298741', 4298741, '251.759094', '294.415894', '-111.584099', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298744', 4298744, '288.151489', '302.427002', '-86.886337', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153938, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298765', 4298765, '321.597290', '303.200989', '-338.780914', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298767', 4298767, '346.691895', '304.562286', '-319.108887', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298770', 4298770, '357.329712', '304.360687', '-356.956696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298772', 4298772, '407.769012', '305.618500', '-327.457397', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298773', 4298773, '412.865387', '304.484802', '-333.469391', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298780', 4298780, '365.239410', '319.169586', '-254.025299', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298781', 4298781, '388.845612', '321.034485', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298784', 4298784, '476.218811', '327.076996', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298787', 4298787, '494.638214', '304.602112', '-349.542206', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298790', 4298790, '182.909805', '336.140900', '-467.124512', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151236, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298792', 4298792, '150.108704', '345.173309', '-380.467590', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150964, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298794', 4298794, '146.329498', '347.075287', '-385.583313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150692, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298812', 4298812, '253.761307', '343.590393', '-494.726715', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150420, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298813', 4298813, '294.270294', '329.274292', '-477.805786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298814', 4298814, '212.636703', '327.759796', '-433.014313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298815', 4298815, '412.045288', '353.824188', '-499.736786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149604, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298816', 4298816, '394.674591', '355.184204', '-555.809875', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298823', 4298823, '260.181488', '356.282806', '-541.374878', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298824', 4298824, '188.311493', '357.747803', '-557.427429', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298825', 4298825, '285.877686', '359.578705', '-569.421021', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148522, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298835', 4298835, '126.756599', '376.088989', '-671.473328', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148250, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298837', 4298837, '356.375610', '356.320007', '-595.291321', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298842', 4298842, '468.223511', '349.470490', '-668.565430', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147700, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298844', 4298844, '531.422729', '348.817993', '-732.418884', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147428, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298845', 4298845, '539.850708', '348.653900', '-745.830627', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147156, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4298846', 4298846, '96.262070', '375.573090', '-645.236084', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298847', 4298847, '618.677002', '325.703705', '-430.685913', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298848', 4298848, '626.867126', '322.872803', '-394.244293', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298849', 4298849, '673.548279', '293.690308', '-320.820892', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298851', 4298851, '584.470276', '282.391998', '-315.705292', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298852', 4298852, '599.206482', '281.914215', '-300.226898', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298853', 4298853, '564.033630', '282.951599', '-300.851807', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298854', 4298854, '684.587830', '306.511292', '-363.764191', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298855', 4298855, '562.945190', '342.102997', '-474.200287', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298858', 4298858, '463.976410', '249.572906', '-308.802399', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298859', 4298859, '473.929901', '247.699707', '-302.357513', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298860', 4298860, '490.206787', '271.288086', '-298.332397', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298861', 4298861, '397.627808', '248.461594', '-320.859192', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298862', 4298862, '283.789703', '236.298401', '-325.220306', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298863', 4298863, '291.652496', '235.940796', '-331.188995', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143094, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298864', 4298864, '296.253906', '234.759995', '-368.673309', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298866', 4298866, '473.213501', '248.114304', '-259.048889', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298871', 4298871, '614.450012', '323.410309', '-400.318604', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298873', 4298873, '668.683716', '306.076996', '-365.426788', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298882', 4298882, '683.369995', '295.457611', '-324.276794', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298884', 4298884, '681.273376', '295.122589', '-325.174805', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298886', 4298886, '581.921387', '282.296997', '-294.985413', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298888', 4298888, '584.498718', '282.204895', '-290.600891', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298891', 4298891, '598.967285', '282.223602', '-314.123505', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298892', 4298892, '570.297485', '282.771301', '-310.753998', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298900', 4298900, '532.146484', '235.205200', '301.718414', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140114, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4298901', 4298901, '548.790588', '235.278793', '308.827301', 114, 0, 0, 0, 1, 6, 0, 0, 662, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139848, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4298902', 4298902, '539.909912', '235.309296', '290.943695', 115, 0, 0, 0, 0, 6, 0, 0, 661, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139582, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(155, 'r1f1', 'bnpc4298903', 4298903, '543.114685', '235.512100', '292.484009', 116, 0, 0, 0, 0, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139316, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(155, 'r1f1', 'bnpc4298911', 4298911, '465.921387', '232.736298', '321.428497', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4298914', 4298914, '485.744812', '233.755707', '315.057404', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4298917', 4298917, '8.385859', '200.822098', '514.171082', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298919', 4298919, '3.468143', '219.127502', '377.671387', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298921', 4298921, '56.439899', '213.878601', '395.393188', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298922', 4298922, '32.688740', '261.800201', '264.078491', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298924', 4298924, '31.549110', '262.086487', '260.424103', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298925', 4298925, '97.214867', '251.860901', '270.377808', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298926', 4298926, '65.567993', '240.283707', '329.732208', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298928', 4298928, '173.567596', '231.665298', '266.478912', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298932', 4298932, '267.711090', '226.465698', '281.598785', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298933', 4298933, '349.538513', '232.623795', '259.540588', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298934', 4298934, '353.841400', '234.302200', '255.420700', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298937', 4298937, '398.091797', '226.637100', '344.024994', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298938', 4298938, '278.828003', '242.816803', '203.601105', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298941', 4298941, '191.013199', '256.839386', '104.428802', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4298943', 4298943, '248.318405', '261.876587', '67.776207', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299053', 4299053, '152.027496', '277.941711', '34.020439', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299054', 4299054, '235.312393', '277.402405', '-48.467419', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299057', 4299057, '191.224899', '284.341797', '-81.645477', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299063', 4299063, '374.380005', '306.477386', '-331.197113', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299079', 4299079, '343.678802', '311.085602', '-403.738495', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299081', 4299081, '278.156586', '313.466095', '-429.770386', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299082', 4299082, '347.909790', '309.989197', '-275.124512', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299084', 4299084, '404.743988', '318.417908', '-277.971985', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299088', 4299088, '457.550507', '305.113708', '-285.144989', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299091', 4299091, '458.811310', '305.676910', '-289.211914', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299093', 4299093, '502.242096', '302.581390', '-245.190903', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299094', 4299094, '502.391815', '308.429413', '-356.438385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299096', 4299096, '502.046387', '342.161713', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299098', 4299098, '424.421387', '339.137909', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299099', 4299099, '429.241394', '341.024200', '-436.179199', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299100', 4299100, '218.158203', '330.586700', '-473.045013', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299102', 4299102, '173.367004', '339.026001', '-390.899200', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299103', 4299103, '119.335899', '353.367310', '-336.673615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299106', 4299106, '166.454803', '348.701294', '-492.608795', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299107', 4299107, '432.587189', '365.876801', '-537.769714', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299110', 4299110, '418.305603', '349.797699', '-685.625427', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299112', 4299112, '485.808594', '353.806305', '-658.057312', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299114', 4299114, '298.678589', '345.167297', '-521.747192', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128442, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299115', 4299115, '198.874802', '362.118011', '-601.265076', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299116', 4299116, '138.675293', '374.013306', '-661.681824', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299117', 4299117, '324.054291', '360.242188', '-582.895081', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299119', 4299119, '283.839905', '362.149506', '-625.782288', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299120', 4299120, '210.687897', '361.424805', '-658.411926', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299121', 4299121, '205.782394', '360.548187', '-666.505615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299188', 4299188, '105.119400', '289.448395', '-164.568604', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120116, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299192', 4299192, '62.638309', '289.814606', '-219.226395', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299194', 4299194, '-1.358093', '310.902496', '-142.015701', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299195', 4299195, '-58.910789', '304.604401', '-272.412598', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299197', 4299197, '-86.450127', '300.163605', '-170.834900', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299198', 4299198, '137.090607', '290.130798', '-258.218414', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299208', 4299208, '-115.231300', '298.469788', '-208.100098', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299210', 4299210, '-205.664902', '281.635010', '-192.517700', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118284, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299213', 4299213, '-107.621902', '300.038086', '-137.041306', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118012, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299215', 4299215, '-158.759003', '292.966492', '-201.171295', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299216', 4299216, '-162.136307', '291.173187', '-194.256607', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299217', 4299217, '-205.676498', '283.894012', '-114.763100', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117196, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299218', 4299218, '-212.088394', '285.828400', '-56.427200', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299219', 4299219, '-290.402100', '261.601898', '-157.738800', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116652, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299227', 4299227, '-318.632690', '255.833298', '-42.884541', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101716, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299230', 4299230, '-340.376007', '259.605804', '-64.511017', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101444, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299231', 4299231, '-317.614502', '256.207092', '-97.947693', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299233', 4299233, '-257.298615', '264.585693', '-65.689346', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299235', 4299235, '-249.965302', '269.336914', '-76.447701', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299236', 4299236, '-353.139587', '237.921494', '-157.603195', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299238', 4299238, '-423.544708', '240.253296', '-111.314598', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299241', 4299241, '-359.502197', '233.804596', '-160.537003', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299242', 4299242, '-578.240723', '227.008408', '-125.078201', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116386, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299244', 4299244, '-499.116089', '237.639496', '-97.965683', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116114, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299247', 4299247, '-655.179871', '229.729202', '-54.205719', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115842, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299249', 4299249, '-483.586609', '226.184692', '-125.489799', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299250', 4299250, '-477.837402', '228.009293', '-122.481400', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299252', 4299252, '-573.938416', '231.500397', '-73.804337', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299254', 4299254, '-600.372192', '209.926697', '-352.855804', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299256', 4299256, '-623.961182', '211.311707', '-374.720001', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299257', 4299257, '-624.778992', '210.859299', '-381.588593', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299258', 4299258, '-586.229492', '201.455200', '-440.921997', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299259', 4299259, '-583.154114', '188.738800', '-477.195404', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299260', 4299260, '-653.461182', '211.102798', '-435.622009', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299422', 4299422, '-650.603027', '204.070007', '-488.214691', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299424', 4299424, '-551.951416', '206.791595', '-350.856995', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112856, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299425', 4299425, '-612.623779', '216.144806', '-319.243988', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299426', 4299426, '-853.938416', '226.438599', '25.457430', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299427', 4299427, '-879.604614', '229.180099', '-15.122490', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299428', 4299428, '-894.004272', '228.026398', '0.443500', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299429', 4299429, '-907.681885', '249.338104', '26.397079', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299430', 4299430, '-907.681885', '247.122192', '-24.585300', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299431', 4299431, '-938.982971', '269.272095', '1.981136', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299433', 4299433, '-951.375916', '276.008698', '-32.272030', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299593', 4299593, '117.442703', '288.131500', '-217.671204', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299595', 4299595, '61.837181', '292.037506', '-153.092804', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299596', 4299596, '58.310040', '291.422913', '-157.591202', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299597', 4299597, '-17.296480', '300.204010', '-215.268906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299598', 4299598, '-102.796997', '298.673889', '-164.088501', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299599', 4299599, '-144.174805', '292.303986', '-187.728806', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299600', 4299600, '-141.522705', '298.377014', '-239.075500', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299602', 4299602, '-187.987900', '287.198914', '-119.562897', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299603', 4299603, '-250.437195', '273.614410', '-139.801193', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299604', 4299604, '-287.381409', '260.165009', '-74.592461', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299605', 4299605, '-249.896500', '264.386505', '-56.690639', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299606', 4299606, '-316.963898', '249.190399', '0.375132', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299607', 4299607, '-353.362305', '249.890305', '-112.803703', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107126, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299608', 4299608, '-317.082214', '255.914795', '-163.691803', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106854, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299610', 4299610, '-540.337280', '216.113495', '-165.331497', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106582, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299612', 4299612, '-494.751099', '227.817902', '-119.577698', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299614', 4299614, '-538.078918', '224.933197', '-115.343002', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299615', 4299615, '-679.120911', '223.608002', '-24.397600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299617', 4299617, '-748.989075', '226.855804', '-70.359383', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105494, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299618', 4299618, '-763.556213', '240.848099', '-149.583405', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105222, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299620', 4299620, '-791.189026', '244.109695', '-171.737000', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104950, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299628', 4299628, '-802.041016', '225.578995', '14.979860', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299805', 4299805, '-869.248901', '228.169098', '24.666691', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299806', 4299806, '-916.034790', '242.289902', '5.756409', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299808', 4299808, '-898.861877', '250.815994', '-36.228569', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299809', 4299809, '-932.563721', '262.462097', '18.376640', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299833', 4299833, '-528.303406', '207.486404', '-361.926514', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299835', 4299835, '-635.674072', '220.452301', '-338.610809', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299836', 4299836, '-582.583984', '206.158493', '-384.262085', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299839', 4299839, '-524.189880', '192.377594', '-420.327301', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299840', 4299840, '-649.544922', '206.868103', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299842', 4299842, '-652.836792', '207.443604', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299844', 4299844, '-459.800110', '286.182892', '196.642899', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99194, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299846', 4299846, '-523.050415', '277.612488', '197.807800', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98922, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299847', 4299847, '-532.402588', '240.741592', '331.532806', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98650, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299850', 4299850, '-475.198303', '237.443207', '403.405304', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299852', 4299852, '-369.299286', '237.950699', '382.602814', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98106, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299853', 4299853, '-350.165009', '237.914505', '384.625702', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97834, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299854', 4299854, '-269.214996', '226.703201', '429.251587', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97562, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299856', 4299856, '-231.006302', '225.146896', '420.889496', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299858', 4299858, '-634.704590', '244.070801', '300.718811', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97018, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299859', 4299859, '-706.643005', '237.401398', '303.170288', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96746, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299861', 4299861, '-766.720093', '254.688202', '421.683014', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96474, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299862', 4299862, '-743.321777', '254.701202', '428.467499', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299872', 4299872, '-358.874786', '272.546112', '253.455994', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299873', 4299873, '-357.118988', '248.051895', '290.108185', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299874', 4299874, '-401.256805', '239.983307', '278.980713', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95404, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(155, 'r1f1', 'bnpc4299876', 4299876, '-288.120392', '293.587006', '256.741089', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299877', 4299877, '-277.870697', '258.656494', '334.187714', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299878', 4299878, '-321.083313', '262.754395', '217.010696', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299879', 4299879, '-440.215912', '244.465805', '319.074097', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94316, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299880', 4299880, '-394.308411', '303.990997', '193.089905', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299881', 4299881, '-460.690186', '270.367493', '260.074188', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4299886', 4299886, '-254.901993', '224.367096', '523.252625', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299887', 4299887, '-247.943405', '224.715195', '514.518921', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93096, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299888', 4299888, '-282.529114', '224.717606', '503.718506', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92824, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299889', 4299889, '-393.453888', '238.452805', '503.715515', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92552, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299909', 4299909, '-485.722290', '243.436295', '460.457214', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92280, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299910', 4299910, '-491.588287', '245.377701', '463.765594', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92008, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299912', 4299912, '-305.548096', '226.398407', '559.785400', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91736, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299914', 4299914, '-212.225906', '229.780594', '563.407715', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91464, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299915', 4299915, '-252.616806', '224.743301', '626.013428', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91192, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299917', 4299917, '-120.126801', '205.896805', '472.541412', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299933', 4299933, '-167.451797', '212.509293', '469.950714', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299935', 4299935, '-192.431595', '215.960907', '481.742401', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299937', 4299937, '-254.539902', '221.577606', '466.534088', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299939', 4299939, '-261.479614', '221.984207', '460.971405', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89970, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299940', 4299940, '-327.888702', '223.177307', '446.066895', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89698, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299942', 4299942, '-452.292694', '231.075394', '433.657410', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299943', 4299943, '-556.198486', '235.399994', '407.330414', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299944', 4299944, '-563.418518', '235.399994', '398.974304', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4299945', 4299945, '-533.244080', '235.399994', '407.132111', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4300046', 4300046, '-699.997925', '253.759995', '507.272186', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88344, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300048', 4300048, '-688.471802', '253.697205', '509.426910', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88072, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300049', 4300049, '-698.510803', '253.838196', '499.010101', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87800, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300050', 4300050, '-705.378479', '253.881699', '505.406494', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87528, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300051', 4300051, '-699.795776', '253.759995', '514.230591', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300052', 4300052, '-688.023315', '253.529099', '507.670410', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300053', 4300053, '-688.742798', '253.351105', '499.477112', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300054', 4300054, '-677.956787', '254.053894', '498.299103', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300056', 4300056, '-493.539612', '282.080109', '191.529907', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300057', 4300057, '-521.202393', '242.145401', '299.671906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300059', 4300059, '-521.172913', '237.402893', '377.595398', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300061', 4300061, '-438.483398', '245.206894', '362.585205', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300062', 4300062, '-248.297302', '227.611099', '410.760986', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300064', 4300064, '-153.368500', '221.118393', '416.250702', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300066', 4300066, '-98.785767', '213.591293', '426.872589', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300069', 4300069, '-272.282501', '264.869385', '321.059906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300070', 4300070, '-390.265106', '233.670807', '321.964600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83926, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300072', 4300072, '-383.889404', '248.725204', '219.890106', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83654, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300074', 4300074, '-416.929291', '233.443802', '461.940796', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300078', 4300078, '-295.979309', '224.444901', '485.191010', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300080', 4300080, '-346.028900', '236.543396', '518.089478', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300081', 4300081, '-227.039001', '229.327805', '547.600525', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300083', 4300083, '-286.249908', '221.550095', '669.298584', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300084', 4300084, '-282.240204', '222.570007', '672.355286', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300085', 4300085, '-254.344894', '224.215302', '580.497681', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300087', 4300087, '-149.461502', '217.410095', '485.622894', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300089', 4300089, '-604.956787', '244.740799', '337.663788', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300090', 4300090, '-649.166504', '245.258606', '286.166504', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300091', 4300091, '-748.151123', '238.541107', '350.326385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300171', 4300171, '566.598206', '289.624603', '98.502197', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4300176', 4300176, '527.275391', '303.059296', '-162.340805', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79372, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(155, 'r1f1', 'bnpc4300177', 4300177, '586.301575', '302.701202', '-115.328102', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79100, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(155, 'r1f1', 'bnpc4300178', 4300178, '654.442383', '298.421295', '-12.551030', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78828, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(155, 'r1f1', 'bnpc4300179', 4300179, '669.497986', '301.708099', '-29.924919', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78556, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(155, 'r1f1', 'bnpc4300180', 4300180, '602.427917', '290.487396', '-0.884406', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78284, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(155, 'r1f1', 'bnpc4300181', 4300181, '664.371399', '287.443909', '73.074158', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78012, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(155, 'r1f1', 'bnpc4300182', 4300182, '601.759216', '287.400208', '127.919098', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77740, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(155, 'r1f1', 'bnpc4300183', 4300183, '565.585571', '287.455109', '154.665298', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77468, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(155, 'r1f1', 'bnpc4300184', 4300184, '558.831116', '300.043915', '59.949520', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77196, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(155, 'r1f1', 'bnpc4300191', 4300191, '511.356689', '303.173004', '-206.740097', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76930, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(155, 'r1f1', 'bnpc4300194', 4300194, '494.438110', '303.700287', '-197.619598', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76646, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300196', 4300196, '508.591888', '303.338898', '-205.656296', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76392, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(155, 'r1f1', 'bnpc4300198', 4300198, '523.491211', '302.387909', '-191.363495', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76120, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300200', 4300200, '559.439514', '303.965698', '-151.707001', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75836, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300201', 4300201, '555.992920', '301.960693', '-163.683502', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75570, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300203', 4300203, '593.473511', '302.708496', '-99.112923', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75304, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300204', 4300204, '642.703979', '303.166687', '-43.589840', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300205', 4300205, '650.994812', '303.095612', '-38.070992', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74742, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300206', 4300206, '625.239319', '302.690613', '-97.402184', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74476, 1, 0, 0, 0, 45, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300209', 4300209, '635.367188', '303.307190', '-92.580772', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74198, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(155, 'r1f1', 'bnpc4300210', 4300210, '636.402405', '303.397003', '-95.636833', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73938, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(155, 'r1f1', 'bnpc4300212', 4300212, '640.141296', '289.793488', '15.564350', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73654, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300213', 4300213, '632.201416', '287.460602', '83.472313', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73394, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300214', 4300214, '694.667114', '302.802002', '-25.909540', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73116, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300215', 4300215, '668.584900', '286.359985', '53.434738', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72856, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300219', 4300219, '653.565674', '286.929688', '35.585339', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72566, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(155, 'r1f1', 'bnpc4300220', 4300220, '654.409180', '286.791412', '37.999821', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72312, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(155, 'r1f1', 'bnpc4300221', 4300221, '655.671082', '286.824310', '34.141949', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72034, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(155, 'r1f1', 'bnpc4300222', 4300222, '657.228088', '286.375885', '36.471931', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71756, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(155, 'r1f1', 'bnpc4300226', 4300226, '639.859619', '286.099091', '135.124603', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71478, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(155, 'r1f1', 'bnpc4300227', 4300227, '642.707703', '286.175110', '132.877899', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71212, 1, 0, 0, 0, 0, 30120, 0, 0, 0), +(155, 'r1f1', 'bnpc4300229', 4300229, '708.942505', '286.232513', '46.920448', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70946, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300230', 4300230, '711.298828', '285.307404', '75.698997', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70680, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300232', 4300232, '613.615784', '284.572296', '166.852005', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70408, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300233', 4300233, '590.029480', '285.689209', '176.024506', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70130, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300234', 4300234, '646.990784', '285.135101', '149.341507', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69852, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300236', 4300236, '586.167297', '288.737610', '-28.609209', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4300238', 4300238, '582.383789', '289.517700', '-46.738300', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4300239', 4300239, '559.963928', '292.885193', '-35.993568', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65790, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4300241', 4300241, '576.693481', '289.831787', '-46.195572', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4300242', 4300242, '498.254486', '308.702209', '-165.574203', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4300244', 4300244, '507.927002', '303.303497', '-229.236298', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4300246', 4300246, '630.399292', '300.341187', '-66.790810', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65518, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4300250', 4300250, '684.486816', '291.013214', '7.434129', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4300253', 4300253, '639.507080', '287.656799', '38.046551', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66062, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4300254', 4300254, '630.756226', '286.750000', '109.616798', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4300256', 4300256, '570.830383', '286.569214', '120.215103', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4300257', 4300257, '555.228516', '297.855499', '84.213348', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4300284', 4300284, '605.249023', '330.830811', '-303.486786', 114, 0, 0, 0, 0, 6, 0, 0, 662, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68668, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(155, 'r1f1', 'bnpc4300286', 4300286, '527.855225', '308.308502', '-299.702515', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69478, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300287', 4300287, '575.036316', '320.881805', '-289.906189', 115, 0, 0, 0, 1, 6, 0, 0, 661, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69218, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4300288', 4300288, '577.508118', '322.468903', '-294.789093', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68952, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(155, 'r1f1', 'bnpc4325155', 4325155, '215.504501', '360.039307', '-581.431030', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4406869', 4406869, '311.001099', '307.036499', '-422.752106', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126194, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406870', 4406870, '323.323395', '303.822296', '-391.989014', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125922, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406871', 4406871, '317.110413', '305.692505', '-418.385315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125650, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406872', 4406872, '351.343506', '312.029114', '-396.169098', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125378, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406873', 4406873, '350.968994', '315.450592', '-416.192993', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125106, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406874', 4406874, '48.752670', '311.224213', '-250.581207', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124834, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406875', 4406875, '44.907230', '311.238312', '-245.044693', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124562, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406876', 4406876, '66.984810', '300.472412', '-252.706802', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124290, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406877', 4406877, '-17.150419', '311.581512', '-255.273895', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124018, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406878', 4406878, '7.231910', '312.528687', '-245.321793', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123746, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406879', 4406879, '-6.278003', '305.376709', '-233.466095', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123474, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406880', 4406880, '-10.073550', '305.779694', '-236.697601', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123202, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406884', 4406884, '357.847992', '311.662201', '-388.165497', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122930, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406885', 4406885, '363.148010', '313.250488', '-391.308411', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122658, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406886', 4406886, '331.929413', '319.783203', '-430.502808', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122386, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406888', 4406888, '113.582199', '354.933685', '-335.568512', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406890', 4406890, '121.680801', '354.167114', '-326.125214', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406891', 4406891, '110.022797', '357.553314', '-311.841187', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406892', 4406892, '111.824799', '358.195190', '-382.551514', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406893', 4406893, '115.392303', '357.688690', '-387.074890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4406894', 4406894, '93.907928', '362.855194', '-349.329315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4600355', 4600355, '547.412170', '348.384613', '-748.106018', 1699, 0, 0, 0, 8, 6, 0, 0, 2162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4614331', 4614331, '530.815125', '348.686096', '-743.006226', 1700, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43556, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4614332', 4614332, '535.935608', '348.616394', '-737.220215', 2222, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43290, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4621624', 4621624, '-332.429199', '307.678406', '234.107803', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44948, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(155, 'r1f1', 'bnpc4890695', 4890695, '-188.798996', '226.035995', '400.288086', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(155, 'r1f1', 'bnpc4890696', 4890696, '-132.585098', '216.182098', '435.066193', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4291568', 4291568, '76.290123', '30.749250', '-733.599182', 1776, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(156, 'l1f1', 'bnpc4292672', 4292672, '-12.396590', '18.377340', '-670.928772', 1777, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22138, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(156, 'l1f1', 'bnpc4292673', 4292673, '91.670517', '20.458050', '-614.237122', 1778, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21872, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(156, 'l1f1', 'bnpc4295485', 4295485, '-266.791504', '-5.944477', '-526.778198', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295487', 4295487, '-276.140686', '-8.410786', '-516.253174', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295488', 4295488, '-298.914093', '-4.103804', '-550.291321', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295489', 4295489, '-103.196297', '1.542795', '-586.758179', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295490', 4295490, '-207.536301', '-2.690903', '-578.039001', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295491', 4295491, '-103.713898', '-0.832843', '-642.948425', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295492', 4295492, '-208.009796', '1.723610', '-616.185120', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71640, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295493', 4295493, '-172.408905', '4.990528', '-671.229126', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295495', 4295495, '-380.537506', '-16.898170', '-441.082001', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295496', 4295496, '-430.882507', '-16.898170', '-384.312195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295497', 4295497, '-390.139587', '-16.898170', '-350.704712', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70558, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295498', 4295498, '-398.062103', '-16.898170', '-358.104401', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70286, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295499', 4295499, '-336.279297', '-16.898170', '-437.756195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70014, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295500', 4295500, '-302.568298', '-16.898170', '-458.892609', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69742, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295501', 4295501, '-402.253601', '-16.898170', '-464.540710', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69470, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295503', 4295503, '-369.143799', '-16.898170', '-389.766815', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69198, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295505', 4295505, '-359.561707', '-16.042290', '-486.552094', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68932, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295506', 4295506, '-417.805786', '-6.910027', '-523.771912', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295507', 4295507, '-466.061310', '-9.446001', '-532.017029', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295508', 4295508, '-413.364410', '-2.492527', '-559.181519', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295514', 4295514, '-350.972809', '-6.607239', '-526.665222', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295515', 4295515, '-360.309296', '-4.290267', '-546.520813', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295516', 4295516, '-350.790710', '-3.296191', '-550.475586', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295520', 4295520, '-396.722198', '-14.513140', '-500.059692', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295524', 4295524, '-234.088699', '-4.989685', '-302.540588', 724, 0, 0, 0, 1, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4295525', 4295525, '-211.180405', '-2.844870', '-288.253998', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66496, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(156, 'l1f1', 'bnpc4295526', 4295526, '-257.312897', '1.113892', '-308.064392', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66230, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4295528', 4295528, '-212.115707', '-2.955642', '-289.682190', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65946, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(156, 'l1f1', 'bnpc4295529', 4295529, '-224.841705', '3.952026', '-259.540710', 725, 0, 0, 0, 1, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65680, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4295530', 4295530, '-203.875793', '24.704220', '-215.411697', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4295531', 4295531, '-234.943207', '21.774599', '-213.092300', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65136, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(156, 'l1f1', 'bnpc4295532', 4295532, '-235.959198', '22.114910', '-212.031006', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64858, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(156, 'l1f1', 'bnpc4295533', 4295533, '-234.301407', '21.966511', '-211.462402', 726, 0, 0, 0, 0, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(156, 'l1f1', 'bnpc4295534', 4295534, '-127.288002', '47.127460', '-188.580307', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295535', 4295535, '-140.871399', '45.053020', '-179.736603', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295536', 4295536, '-136.478302', '46.067551', '-193.959702', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295537', 4295537, '-143.537201', '44.052780', '-181.398193', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295538', 4295538, '-146.514297', '42.327431', '-204.108902', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295539', 4295539, '-129.866394', '46.678692', '-196.996994', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295540', 4295540, '-145.364395', '42.544418', '-202.550705', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295541', 4295541, '-144.789993', '44.556961', '-194.376297', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295659', 4295659, '-53.322418', '17.072929', '-621.681213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295665', 4295665, '-88.710228', '0.643335', '-625.828125', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295666', 4295666, '-207.395203', '8.290789', '-665.648376', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295668', 4295668, '-156.229294', '-1.918439', '-604.694275', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295669', 4295669, '-304.707489', '-15.793150', '-491.020111', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295670', 4295670, '-386.814087', '-6.319692', '-539.647400', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295674', 4295674, '-375.356689', '-13.229610', '-505.729797', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295679', 4295679, '-327.840393', '-2.384109', '-563.164490', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295691', 4295691, '482.994690', '-1.037749', '-792.622070', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59992, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295693', 4295693, '473.960388', '0.503479', '-803.097595', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59720, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295694', 4295694, '450.441315', '-4.905994', '-755.835999', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59448, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295695', 4295695, '500.877289', '-5.020264', '-757.289978', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59176, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295697', 4295697, '456.274902', '-4.258285', '-763.958801', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295698', 4295698, '550.072510', '-9.750549', '-735.286499', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295700', 4295700, '487.731598', '2.187441', '-809.306885', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58360, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295702', 4295702, '268.736298', '32.329670', '-657.612671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295704', 4295704, '272.319611', '32.540180', '-659.312988', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295705', 4295705, '285.744507', '34.969521', '-689.040283', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295709', 4295709, '298.145996', '20.340210', '-684.382385', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295710', 4295710, '348.251495', '21.030451', '-726.475220', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295711', 4295711, '352.642487', '20.319700', '-740.209778', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295712', 4295712, '369.140015', '21.089970', '-736.832886', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56462, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295715', 4295715, '363.363007', '-1.968445', '-698.451172', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56190, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295716', 4295716, '557.910828', '-5.547063', '-643.875671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55918, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295717', 4295717, '557.692322', '16.908760', '-525.262085', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55646, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295718', 4295718, '576.089783', '12.066130', '-514.577271', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55374, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295719', 4295719, '594.596985', '7.711907', '-478.120911', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295720', 4295720, '616.268982', '8.446064', '-482.073486', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(156, 'l1f1', 'bnpc4295726', 4295726, '356.740601', '-6.149414', '-463.218109', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295727', 4295727, '365.071991', '-14.602910', '-430.808014', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54298, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295728', 4295728, '350.667511', '-17.288509', '-404.379303', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295734', 4295734, '413.196686', '-20.564011', '-317.744904', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295735', 4295735, '387.892609', '-18.073410', '-346.505707', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53476, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295736', 4295736, '450.900513', '-17.914270', '-353.105286', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53210, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(156, 'l1f1', 'bnpc4295737', 4295737, '481.724091', '-12.428540', '-382.045105', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295738', 4295738, '511.909393', '-9.373532', '-382.464996', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52660, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295739', 4295739, '522.073730', '0.990242', '-453.501709', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295747', 4295747, '588.058716', '-2.946974', '-271.337891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295749', 4295749, '568.700012', '-2.429443', '-330.453400', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295751', 4295751, '582.843079', '-3.006616', '-272.419891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295755', 4295755, '214.220200', '-22.109159', '-425.877502', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51324, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295757', 4295757, '208.472198', '-22.096960', '-422.660797', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295759', 4295759, '162.350601', '-27.989771', '-429.755402', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295760', 4295760, '152.123001', '-27.048130', '-440.418915', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295761', 4295761, '177.396194', '-25.049320', '-444.224487', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295762', 4295762, '267.297211', '-21.872410', '-406.569397', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295763', 4295763, '306.843597', '-26.993231', '-409.628510', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295764', 4295764, '304.550415', '-25.764360', '-424.008301', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295769', 4295769, '306.531403', '-6.106912', '-519.224976', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49130, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295770', 4295770, '282.576813', '-0.225863', '-572.515686', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48852, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295771', 4295771, '310.969513', '6.158492', '-563.194397', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48592, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295809', 4295809, '156.994202', '14.383940', '-592.509216', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48290, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295811', 4295811, '223.296295', '19.340050', '-610.880798', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48018, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295812', 4295812, '201.983597', '-0.198364', '-555.107971', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295813', 4295813, '341.647797', '-7.563892', '-456.047089', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295816', 4295816, '408.980713', '-16.354401', '-360.560699', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295818', 4295818, '509.696991', '-9.567444', '-375.661896', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295820', 4295820, '496.853485', '0.344957', '-504.120392', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295823', 4295823, '601.499573', '8.072348', '-517.726685', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295825', 4295825, '570.526428', '-2.482952', '-625.752014', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295827', 4295827, '556.342102', '-7.876167', '-657.103516', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295829', 4295829, '554.863770', '-9.262268', '-749.843628', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295831', 4295831, '503.838013', '-2.956629', '-777.365173', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295834', 4295834, '482.706696', '1.341902', '-807.133728', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295835', 4295835, '486.772400', '5.215003', '-836.320984', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295836', 4295836, '471.659790', '3.490144', '-819.978882', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295837', 4295837, '484.345886', '5.375706', '-837.509583', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295840', 4295840, '412.710693', '-9.353821', '-747.005371', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295844', 4295844, '384.603485', '-4.196289', '-690.486023', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295846', 4295846, '332.112701', '4.562378', '-690.424988', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43394, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295850', 4295850, '316.341492', '26.032160', '-728.249573', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43122, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295851', 4295851, '297.774597', '15.475720', '-651.450989', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295855', 4295855, '598.748718', '-3.250244', '-301.930298', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295858', 4295858, '591.221985', '-1.360156', '-323.232788', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295862', 4295862, '-314.692108', '-15.474820', '-327.581299', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295866', 4295866, '-272.613800', '-8.061660', '-332.045013', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295867', 4295867, '-217.273193', '-1.571716', '-276.691895', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295870', 4295870, '-229.022598', '14.450200', '-236.072403', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295871', 4295871, '-188.372696', '33.340939', '-195.666504', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4295884', 4295884, '-562.005005', '-2.945007', '-452.323212', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40722, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4295886', 4295886, '-554.466980', '-3.768982', '-380.758392', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40456, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4295887', 4295887, '-568.932678', '-2.945007', '-424.124603', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40190, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4295889', 4295889, '-543.789124', '-3.866000', '-411.311401', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4296050', 4296050, '-471.824188', '-6.332520', '-433.737701', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39640, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(156, 'l1f1', 'bnpc4296052', 4296052, '-484.855499', '-6.027344', '-447.898102', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39368, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(156, 'l1f1', 'bnpc4296053', 4296053, '-445.975494', '-12.710820', '-466.361511', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32130, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4296054', 4296054, '-473.746887', '-4.409851', '-480.766113', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32432, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4296055', 4296055, '-471.580109', '-6.668213', '-449.912292', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39102, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4296056', 4296056, '-453.727112', '-10.818660', '-442.862610', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38842, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4296060', 4296060, '-455.741211', '-7.492188', '-484.428192', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38552, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(156, 'l1f1', 'bnpc4296081', 4296081, '-603.967285', '-3.891113', '-368.337494', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38298, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4296082', 4296082, '-640.680481', '-3.891113', '-370.046600', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38032, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4296091', 4296091, '-592.797729', '-2.945007', '-432.211792', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37736, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(156, 'l1f1', 'bnpc4296093', 4296093, '-635.341492', '-2.933044', '-396.278687', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37464, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(156, 'l1f1', 'bnpc4296094', 4296094, '-548.271912', '-1.937927', '-310.963593', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37204, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4296096', 4296096, '-498.711395', '-3.960067', '-255.747696', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36932, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(156, 'l1f1', 'bnpc4296098', 4296098, '-558.028809', '-3.683542', '-364.324585', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36648, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(156, 'l1f1', 'bnpc4296100', 4296100, '-489.250092', '-3.708008', '-282.124115', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36376, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(156, 'l1f1', 'bnpc4296103', 4296103, '-446.294891', '-4.000447', '-219.651199', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36104, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(156, 'l1f1', 'bnpc4296105', 4296105, '-437.867004', '-2.581742', '-273.708099', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35832, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(156, 'l1f1', 'bnpc4296108', 4296108, '-527.244995', '-2.670410', '-288.624512', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35554, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4296110', 4296110, '-560.845276', '-2.975586', '-327.595886', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35294, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4296111', 4296111, '-547.325928', '-1.754883', '-291.645691', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35016, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4296113', 4296113, '-527.817322', '-3.767937', '-323.068909', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4296115', 4296115, '-543.791321', '-3.216822', '-330.542389', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34496, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4296118', 4296118, '-473.824707', '-3.767937', '-273.987488', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34224, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4296119', 4296119, '-488.912994', '-3.958386', '-246.223602', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33946, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4296120', 4296120, '-461.660309', '-3.996136', '-252.041306', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33650, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4296121', 4296121, '-428.786102', '-3.945695', '-301.904114', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4296122', 4296122, '-429.702698', '-3.990123', '-245.654495', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33118, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4296344', 4296344, '-618.398071', '-3.216822', '-419.669586', 201, 0, 0, 0, 5, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32692, 1, 0, 0, 0, 0, 0, 4296333, 0, 0), +(156, 'l1f1', 'bnpc4331545', 4331545, '-431.193512', '-15.291800', '-426.211914', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31858, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4331546', 4331546, '-472.129791', '-5.294910', '-466.746185', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31586, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4331549', 4331549, '-455.329895', '-10.797180', '-446.420288', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4331550', 4331550, '-470.522400', '-4.822834', '-501.822296', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31072, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(156, 'l1f1', 'bnpc4621627', 4621627, '459.067596', '6.191762', '-845.122498', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22746, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3281765', 3281765, '183.632797', '32.275799', '-125.972099', 942, 0, 0, 0, 0, 6, 0, 0, 1209, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 46334, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3282344', 3282344, '-95.027527', '19.999880', '194.592300', 412, 0, 0, 0, 0, 6, 0, 0, 342, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 51326, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3425506', 3425506, '164.927307', '30.878901', '-125.409897', 942, 0, 0, 0, 0, 6, 0, 0, 1209, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 46062, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3425507', 3425507, '155.632202', '28.583900', '-76.621597', 942, 0, 0, 0, 0, 6, 0, 0, 1209, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45790, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3425508', 3425508, '126.573502', '29.443541', '-54.916161', 942, 0, 0, 0, 0, 6, 0, 0, 1209, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45518, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3425509', 3425509, '126.018204', '29.100130', '-96.673027', 942, 0, 0, 0, 0, 6, 0, 0, 1209, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45246, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3425510', 3425510, '98.967216', '27.253851', '-67.651604', 942, 0, 0, 0, 0, 6, 0, 0, 1209, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44974, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3637470', 3637470, '181.670898', '32.812641', '-127.665497', 269, 0, 0, 0, 0, 6, 0, 0, 1208, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47960, 1, 0, 0, 4208408, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3637472', 3637472, '166.059006', '31.401970', '-127.814102', 269, 0, 0, 0, 0, 6, 0, 0, 1208, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47688, 1, 0, 0, 4208409, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3637473', 3637473, '158.238495', '29.259871', '-76.402557', 269, 0, 0, 0, 0, 6, 0, 0, 1208, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47416, 1, 0, 0, 4208410, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3637474', 3637474, '125.692299', '29.951130', '-52.476830', 269, 0, 0, 0, 0, 6, 0, 0, 1208, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47144, 1, 0, 0, 4208411, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3637475', 3637475, '126.057098', '29.601589', '-99.214783', 269, 0, 0, 0, 0, 6, 0, 0, 1208, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 46872, 1, 0, 0, 4208412, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3637476', 3637476, '97.419167', '27.753550', '-69.753067', 269, 0, 0, 0, 0, 6, 0, 0, 1208, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 46600, 1, 0, 0, 4208413, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3725388', 3725388, '324.378510', '43.693790', '-222.837906', 1037, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 15, 0, 120, 1, 0, 100, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42700, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3725390', 3725390, '329.482605', '44.452869', '-210.422897', 1037, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 15, 0, 120, 1, 0, 100, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42428, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3725392', 3725392, '302.008209', '47.155479', '-168.970596', 1037, 0, 0, 0, 0, 6, 0, 0, 38, 0, '0.000000', 15, 0, 120, 1, 0, 101, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41884, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3725423', 3725423, '267.421997', '45.726028', '-206.636902', 1037, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 15, 0, 120, 1, 0, 102, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41612, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3725425', 3725425, '263.554291', '46.455059', '-196.807800', 1037, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 15, 0, 120, 1, 0, 102, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41340, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3725818', 3725818, '271.453613', '45.504711', '-200.075607', 1038, 0, 0, 0, 1, 6, 0, 0, 1210, 0, '0.000000', 15, 0, 120, 1, 0, 102, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41074, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3725820', 3725820, '228.315094', '43.871861', '-186.565399', 1038, 0, 0, 0, 1, 6, 0, 0, 1210, 0, '0.000000', 15, 0, 120, 1, 0, 103, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40802, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3725822', 3725822, '227.973007', '40.577389', '-177.101196', 1038, 0, 0, 0, 1, 6, 0, 0, 1210, 0, '0.000000', 15, 0, 120, 1, 0, 103, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40530, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3725935', 3725935, '180.372192', '26.274250', '-103.699097', 1039, 0, 0, 0, 1, 5, 0, 0, 1211, 0, '0.000000', 15, 0, 120, 1, 0, 104, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40160, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3726787', 3726787, '310.276093', '46.441952', '-163.621597', 1037, 0, 0, 0, 0, 6, 0, 0, 38, 0, '0.000000', 15, 0, 120, 1, 0, 101, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42156, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3796115', 3796115, '141.112305', '26.274771', '-68.933952', 1039, 0, 0, 0, 1, 5, 0, 0, 1211, 0, '0.000000', 15, 0, 120, 1, 0, 106, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39344, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3796116', 3796116, '127.513603', '26.274771', '-68.295486', 1040, 0, 0, 0, 1, 5, 0, 0, 1212, 0, '0.000000', 15, 0, 120, 1, 0, 106, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39078, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(157, 's1d1', 'bnpc3796117', 3796117, '123.784599', '26.881430', '-91.997864', 1038, 0, 0, 0, 1, 5, 0, 0, 1210, 0, '0.000000', 15, 0, 120, 1, 0, 106, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38522, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3796129', 3796129, '199.304504', '27.299391', '-96.726593', 1038, 0, 0, 0, 1, 5, 0, 0, 1210, 0, '0.000000', 15, 0, 120, 1, 0, 104, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38794, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3796131', 3796131, '152.863602', '28.559820', '-97.146278', 1039, 0, 0, 0, 1, 5, 0, 0, 1211, 0, '0.000000', 15, 0, 120, 1, 0, 105, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39888, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3796133', 3796133, '152.889496', '28.398470', '-99.580933', 1039, 0, 0, 0, 1, 5, 0, 0, 1211, 0, '0.000000', 15, 0, 120, 1, 0, 105, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39616, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3978761', 3978761, '-305.147888', '5.829985', '299.997803', 418, 0, 0, 0, 1, 6, 0, 0, 1207, 0, '0.000000', 15, 0, 120, 1, 0, 210, 0, 50, 4, 0, 1, 0, 0, 0, '0.000000', '1.000000', 50794, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3978770', 3978770, '-305.112915', '5.829985', '336.003815', 418, 0, 0, 0, 1, 6, 0, 0, 1207, 0, '0.000000', 15, 0, 120, 1, 0, 210, 0, 50, 4, 0, 1, 0, 0, 0, '0.000000', '1.000000', 50522, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3978771', 3978771, '-334.287415', '5.576682', '318.569000', 417, 0, 0, 0, 0, 6, 0, 0, 1206, 0, '0.000000', 15, 0, 120, 1, 0, 210, 0, 50, 4, 0, 1, 0, 0, 0, '0.000000', '1.000000', 51060, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3978776', 3978776, '-244.794693', '5.599948', '254.410202', 983, 0, 0, 0, 0, 6, 0, 0, 342, 0, '0.000000', 15, 0, 120, 1, 0, 200, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26834, 1, 3, 2000, 0, 0, 30072, 0, 0, 0), +(157, 's1d1', 'bnpc3978779', 3978779, '-233.386795', '5.691528', '262.104187', 1036, 0, 0, 0, 0, 6, 0, 0, 348, 0, '0.000000', 15, 0, 120, 1, 0, 200, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26502, 1, 3, 2000, 0, 0, 30075, 0, 0, 0), +(157, 's1d1', 'bnpc3978783', 3978783, '-272.779785', '5.813663', '265.839813', 1036, 0, 0, 0, 0, 6, 0, 0, 348, 0, '0.000000', 15, 0, 120, 1, 0, 201, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26230, 1, 3, 2000, 0, 0, 30078, 4138183, 0, 0), +(157, 's1d1', 'bnpc3978784', 3978784, '-250.590607', '7.624407', '273.832611', 982, 0, 0, 0, 0, 6, 0, 0, 344, 0, '0.000000', 15, 0, 120, 1, 0, 201, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25952, 1, 3, 2000, 0, 0, 30075, 0, 0, 0), +(157, 's1d1', 'bnpc3978786', 3978786, '-277.424286', '5.813660', '257.160187', 985, 0, 0, 0, 0, 6, 0, 0, 346, 0, '0.000000', 15, 0, 120, 1, 0, 201, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25710, 1, 3, 2000, 0, 0, 30075, 0, 0, 0), +(157, 's1d1', 'bnpc3978788', 3978788, '-301.951202', '5.822161', '273.337402', 985, 0, 0, 0, 2, 6, 0, 0, 346, 0, '0.000000', 15, 0, 120, 1, 0, 202, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25438, 1, 3, 2000, 0, 0, 0, 4195910, 0, 0), +(157, 's1d1', 'bnpc3978789', 3978789, '-302.235504', '5.569519', '276.050903', 1033, 0, 0, 0, 0, 6, 0, 0, 346, 0, '0.000000', 15, 0, 120, 1, 0, 202, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25268, 1, 3, 2000, 0, 0, 30075, 0, 0, 0), +(157, 's1d1', 'bnpc3978790', 3978790, '-297.133789', '5.576686', '276.317413', 981, 0, 0, 0, 0, 6, 0, 0, 346, 0, '0.000000', 15, 0, 120, 1, 0, 202, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24882, 1, 3, 2000, 0, 0, 30065, 0, 0, 0), +(157, 's1d1', 'bnpc3978791', 3978791, '-272.791687', '5.642195', '243.106201', 1035, 0, 0, 0, 0, 6, 0, 0, 342, 0, '0.000000', 15, 0, 120, 1, 0, 203, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24332, 1, 3, 2000, 0, 0, 30075, 0, 0, 0), +(157, 's1d1', 'bnpc3978792', 3978792, '-284.443512', '5.813660', '244.342697', 987, 0, 0, 0, 0, 6, 0, 0, 342, 0, '0.000000', 15, 0, 120, 1, 0, 203, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24126, 1, 3, 2000, 0, 0, 30075, 0, 0, 0), +(157, 's1d1', 'bnpc3978793', 3978793, '-311.885590', '6.057800', '247.429901', 1033, 0, 0, 0, 0, 6, 0, 0, 346, 0, '0.000000', 15, 0, 120, 1, 0, 204, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23636, 1, 3, 2000, 0, 0, 30068, 0, 0, 0), +(157, 's1d1', 'bnpc3978794', 3978794, '-308.433594', '5.243466', '250.738998', 981, 0, 0, 0, 0, 6, 0, 0, 346, 0, '0.000000', 15, 0, 120, 1, 0, 204, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23250, 1, 3, 2000, 0, 0, 30073, 0, 0, 0), +(157, 's1d1', 'bnpc3978795', 3978795, '-310.736908', '4.794249', '252.141403', 1034, 0, 0, 0, 0, 6, 0, 0, 344, 0, '0.000000', 15, 0, 120, 1, 0, 204, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23800, 1, 3, 2000, 0, 0, 30072, 0, 0, 0), +(157, 's1d1', 'bnpc3978797', 3978797, '-180.102295', '6.118835', '246.295807', 1006, 0, 0, 0, 0, 6, 0, 0, 342, 0, '0.000000', 15, 0, 120, 1, 0, 180, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28570, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3981843', 3981843, '-128.587799', '15.793030', '152.788605', 983, 0, 0, 0, 0, 6, 0, 0, 342, 0, '0.000000', 15, 0, 120, 1, 0, 161, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32402, 1, 3, 2000, 0, 0, 30075, 0, 0, 0), +(157, 's1d1', 'bnpc3981860', 3981860, '-89.860413', '15.548890', '122.209503', 1036, 0, 0, 0, 0, 6, 0, 0, 348, 0, '0.000000', 15, 0, 120, 1, 0, 153, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36694, 1, 3, 2000, 0, 0, 30079, 0, 0, 0), +(157, 's1d1', 'bnpc3981862', 3981862, '-89.219543', '15.548890', '119.127197', 981, 0, 0, 0, 0, 6, 0, 0, 346, 0, '0.000000', 15, 0, 120, 1, 0, 153, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36434, 1, 3, 2000, 0, 0, 30077, 0, 0, 0), +(157, 's1d1', 'bnpc3981864', 3981864, '-128.343704', '16.037170', '157.915604', 983, 0, 0, 0, 0, 6, 0, 0, 342, 0, '0.000000', 15, 0, 120, 1, 0, 161, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32674, 1, 3, 2000, 0, 0, 30096, 0, 0, 0), +(157, 's1d1', 'bnpc3981865', 3981865, '-89.237518', '15.600010', '128.545593', 1035, 0, 0, 0, 0, 6, 0, 0, 342, 0, '0.000000', 15, 0, 120, 1, 0, 153, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36972, 1, 3, 2000, 0, 0, 30077, 0, 0, 0), +(157, 's1d1', 'bnpc3981872', 3981872, '-105.091698', '15.701480', '120.740402', 982, 0, 0, 0, 0, 6, 0, 0, 344, 0, '0.000000', 15, 0, 120, 1, 0, 154, 0, 0, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35872, 1, 3, 2000, 0, 0, 30066, 0, 0, 0), +(157, 's1d1', 'bnpc3981878', 3981878, '-95.561737', '13.870360', '147.650299', 1069, 0, 0, 0, 0, 6, 0, 0, 346, 0, '0.000000', 15, 0, 120, 1, 0, 160, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32940, 1, 3, 2000, 0, 0, 30075, 0, 0, 0), +(157, 's1d1', 'bnpc3981883', 3981883, '-97.489929', '19.668819', '170.000702', 983, 0, 0, 0, 0, 6, 0, 0, 342, 0, '0.000000', 15, 0, 120, 1, 0, 162, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32130, 1, 3, 2000, 0, 0, 30096, 0, 0, 0), +(157, 's1d1', 'bnpc3981884', 3981884, '-97.964218', '19.577271', '65.212860', 1034, 0, 0, 0, 0, 6, 0, 0, 344, 0, '0.000000', 15, 0, 120, 1, 0, 159, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35624, 1, 3, 2000, 0, 0, 30069, 4138355, 0, 0), +(157, 's1d1', 'bnpc3981886', 3981886, '-93.186890', '19.302610', '168.383301', 983, 0, 0, 0, 0, 6, 0, 0, 342, 0, '0.000000', 15, 0, 120, 1, 0, 162, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31858, 1, 3, 2000, 0, 0, 30075, 0, 0, 0), +(157, 's1d1', 'bnpc3981887', 3981887, '-30.289249', '23.421921', '55.710571', 1006, 0, 0, 0, 0, 6, 0, 0, 342, 0, '0.000000', 15, 0, 120, 1, 0, 151, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34282, 1, 3, 2000, 0, 0, 30075, 0, 0, 0), +(157, 's1d1', 'bnpc3981888', 3981888, '-27.817200', '23.248880', '60.746090', 1006, 0, 0, 0, 0, 6, 0, 0, 342, 0, '0.000000', 15, 0, 120, 1, 0, 151, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34554, 1, 3, 2000, 0, 0, 30075, 0, 0, 0), +(157, 's1d1', 'bnpc3981889', 3981889, '-4.969838', '24.008780', '3.728717', 982, 0, 0, 0, 2, 6, 0, 0, 344, 0, '0.000000', 15, 0, 120, 1, 0, 150, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37504, 1, 3, 2000, 0, 0, 30096, 4138167, 0, 0), +(157, 's1d1', 'bnpc3982023', 3982023, '6.764060', '23.950741', '1.784049', 1065, 0, 0, 0, 2, 6, 0, 0, 1205, 0, '0.000000', 15, 0, 120, 1, 0, 150, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34016, 1, 3, 2000, 0, 0, 0, 4138319, 0, 0), +(157, 's1d1', 'bnpc3982024', 3982024, '13.757630', '23.428280', '1.114482', 1065, 0, 0, 0, 2, 6, 0, 0, 1205, 0, '0.000000', 15, 0, 120, 1, 0, 150, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33744, 1, 3, 2000, 0, 0, 0, 4138323, 0, 0), +(157, 's1d1', 'bnpc3988322', 3988322, '-138.984695', '8.091434', '256.912689', 414, 0, 0, 0, 1, 6, 0, 0, 1205, 0, '0.000000', 15, 0, 120, 1, 0, 181, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28104, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3988323', 3988323, '-129.686493', '7.919373', '250.751495', 415, 0, 0, 0, 1, 6, 0, 0, 1205, 0, '0.000000', 15, 0, 120, 1, 0, 181, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27566, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3988324', 3988324, '-185.137802', '6.515503', '242.084396', 1006, 0, 0, 0, 0, 6, 0, 0, 342, 0, '0.000000', 15, 0, 120, 1, 0, 180, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28842, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc3988325', 3988325, '-31.510839', '23.739281', '58.971420', 413, 0, 0, 0, 0, 6, 0, 0, 1382, 0, '0.000000', 15, 0, 120, 1, 0, 151, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49712, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4035011', 4035011, '68.714020', '31.262911', '-44.236469', 411, 0, 0, 0, 0, 6, 0, 0, 1204, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 51592, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4035056', 4035056, '-185.757904', '6.681276', '247.768204', 416, 0, 0, 0, 0, 6, 0, 0, 1382, 0, '0.000000', 15, 0, 120, 1, 0, 180, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49446, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4056165', 4056165, '-37.895260', '15.988620', '160.056198', 984, 0, 0, 0, 0, 6, 0, 0, 348, 0, '0.000000', 15, 0, 120, 1, 0, 158, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35092, 1, 3, 2000, 0, 0, 30075, 0, 0, 0), +(157, 's1d1', 'bnpc4056166', 4056166, '-40.062069', '16.037821', '160.880096', 985, 0, 0, 0, 0, 6, 0, 0, 346, 0, '0.000000', 15, 0, 120, 1, 0, 158, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35358, 1, 3, 2000, 0, 0, 30075, 0, 0, 0), +(157, 's1d1', 'bnpc4056170', 4056170, '-157.396805', '19.577271', '129.899994', 987, 0, 0, 0, 0, 6, 0, 0, 342, 0, '0.000000', 15, 0, 120, 1, 0, 164, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30782, 1, 3, 2000, 0, 0, 30077, 0, 0, 0), +(157, 's1d1', 'bnpc4056171', 4056171, '-158.587006', '19.302610', '126.420898', 988, 0, 0, 0, 0, 6, 0, 0, 348, 0, '0.000000', 15, 0, 120, 1, 0, 164, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31048, 1, 3, 2000, 0, 0, 30077, 0, 0, 0), +(157, 's1d1', 'bnpc4056179', 4056179, '-101.077003', '19.577271', '66.322502', 1036, 0, 0, 0, 0, 6, 0, 0, 348, 0, '0.000000', 15, 0, 120, 1, 0, 159, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34790, 1, 3, 2000, 0, 0, 30075, 4138399, 0, 0), +(157, 's1d1', 'bnpc4056186', 4056186, '-157.915604', '16.128719', '92.851067', 982, 0, 0, 0, 0, 6, 0, 0, 344, 0, '0.000000', 15, 0, 120, 1, 0, 163, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31248, 1, 3, 2000, 0, 0, 30082, 0, 0, 0), +(157, 's1d1', 'bnpc4056188', 4056188, '-163.958298', '16.037170', '96.513313', 1036, 0, 0, 0, 0, 6, 0, 0, 348, 0, '0.000000', 15, 0, 120, 1, 0, 163, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31526, 1, 3, 2000, 0, 0, 30078, 0, 0, 0), +(157, 's1d1', 'bnpc4064937', 4064937, '-334.837402', '5.829985', '300.000000', 418, 0, 0, 0, 1, 6, 0, 0, 1207, 0, '0.000000', 15, 0, 120, 1, 0, 210, 0, 50, 4, 0, 1, 0, 0, 0, '0.000000', '1.000000', 50250, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4064938', 4064938, '-335.071198', '5.829985', '336.013885', 418, 0, 0, 0, 1, 6, 0, 0, 1207, 0, '0.000000', 15, 0, 120, 1, 0, 210, 0, 50, 4, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49978, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4087814', 4087814, '-131.944794', '7.644714', '258.899811', 414, 0, 0, 0, 1, 6, 0, 0, 1205, 0, '0.000000', 15, 0, 120, 1, 0, 181, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27832, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4087815', 4087815, '-146.868195', '8.102478', '254.779800', 414, 0, 0, 0, 1, 6, 0, 0, 1205, 0, '0.000000', 15, 0, 120, 1, 0, 181, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28376, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4106354', 4106354, '-101.859703', '13.900010', '112.156197', 1036, 0, 0, 0, 0, 6, 0, 0, 348, 0, '0.000000', 15, 0, 120, 1, 0, 156, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37238, 1, 3, 2000, 0, 0, 30072, 0, 0, 0), +(157, 's1d1', 'bnpc4106627', 4106627, '-75.700012', '13.687320', '104.936302', 982, 0, 0, 0, 5, 6, 0, 0, 344, 0, '0.000000', 15, 0, 120, 1, 0, 152, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36144, 1, 3, 2000, 0, 0, 0, 4138410, 0, 0), +(157, 's1d1', 'bnpc4106638', 4106638, '-101.213097', '14.267150', '152.269806', 1066, 0, 0, 0, 2, 6, 0, 0, 1205, 0, '0.000000', 15, 0, 120, 1, 0, 160, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33478, 1, 3, 2000, 0, 0, 0, 4176432, 0, 0), +(157, 's1d1', 'bnpc4106641', 4106641, '-101.782204', '13.900010', '110.397301', 1066, 0, 0, 0, 0, 6, 0, 0, 1205, 0, '0.000000', 15, 0, 120, 1, 0, 156, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33206, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4125433', 4125433, '-237.200104', '6.183418', '260.470612', 1065, 0, 0, 0, 2, 6, 0, 0, 1205, 0, '0.000000', 15, 0, 120, 1, 0, 200, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27088, 1, 3, 2000, 0, 0, 0, 4195909, 0, 0), +(157, 's1d1', 'bnpc4125434', 4125434, '-288.162109', '5.813660', '235.370300', 1065, 0, 0, 0, 0, 6, 0, 0, 1205, 0, '0.000000', 15, 0, 120, 1, 0, 203, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24640, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4138739', 4138739, '-7.217590', '20.096069', '120.744598', 1318, 0, 0, 0, 0, 6, 0, 0, 346, 0, '0.000000', 15, 0, 120, 1, 0, 170, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30516, 1, 3, 2000, 0, 0, 30071, 0, 0, 0), +(157, 's1d1', 'bnpc4142091', 4142091, '-8.590881', '20.096069', '111.345100', 1319, 0, 0, 0, 0, 6, 0, 0, 344, 0, '0.000000', 15, 0, 120, 1, 0, 170, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30250, 1, 3, 2000, 0, 0, 30077, 0, 0, 0), +(157, 's1d1', 'bnpc4142092', 4142092, '-9.720032', '20.096069', '119.401703', 1322, 0, 0, 0, 0, 6, 0, 0, 344, 0, '0.000000', 15, 0, 120, 1, 0, 170, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29984, 1, 3, 2000, 0, 0, 30079, 0, 0, 0), +(157, 's1d1', 'bnpc4142094', 4142094, '-14.908140', '20.096069', '105.821297', 1320, 0, 0, 0, 0, 6, 0, 0, 346, 0, '0.000000', 15, 0, 120, 1, 0, 171, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29718, 1, 3, 2000, 0, 0, 30077, 0, 0, 0), +(157, 's1d1', 'bnpc4142095', 4142095, '-7.339661', '20.096069', '106.645302', 1321, 0, 0, 0, 0, 6, 0, 0, 344, 0, '0.000000', 15, 0, 120, 1, 0, 171, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29452, 1, 3, 2000, 0, 0, 30077, 0, 0, 0), +(157, 's1d1', 'bnpc4142096', 4142096, '-16.006710', '20.096069', '107.255600', 1323, 0, 0, 0, 0, 6, 0, 0, 344, 0, '0.000000', 15, 0, 120, 1, 0, 171, 0, 50, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29186, 1, 3, 2000, 0, 0, 30071, 0, 0, 0), +(157, 's1d1', 'bnpc4191890', 4191890, '152.271500', '28.746571', '-76.725807', 942, 0, 0, 0, 1, 6, 0, 0, 1209, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44702, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4191892', 4191892, '125.529999', '28.599390', '-56.754070', 942, 0, 0, 0, 1, 6, 0, 0, 1209, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44430, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4191893', 4191893, '128.253204', '28.390051', '-57.906219', 942, 0, 0, 0, 1, 6, 0, 0, 1209, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44158, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4191894', 4191894, '103.016296', '26.274509', '-59.874500', 942, 0, 0, 0, 1, 6, 0, 0, 1209, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43886, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4191895', 4191895, '103.476097', '26.793550', '-63.028950', 942, 0, 0, 0, 1, 6, 0, 0, 1209, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43614, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4191896', 4191896, '100.404602', '26.773880', '-64.967346', 942, 0, 0, 0, 1, 6, 0, 0, 1209, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43342, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4191897', 4191897, '103.563103', '27.706770', '-68.121803', 942, 0, 0, 0, 1, 6, 0, 0, 1209, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43070, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4192074', 4192074, '-33.692268', '24.716360', '59.039989', 1436, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 48914, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4192083', 4192083, '-186.889099', '8.390895', '248.130493', 1436, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 48642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4217967', 4217967, '76.820900', '29.097620', '-51.588470', 1038, 0, 0, 0, 1, 5, 0, 0, 1210, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38250, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4217968', 4217968, '76.820900', '29.097620', '-51.588470', 1038, 0, 0, 0, 1, 5, 0, 0, 1210, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37978, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4334189', 4334189, '-318.370789', '5.576687', '306.648712', 2281, 0, 0, 0, 0, 6, 0, 0, 1382, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49180, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(157, 's1d1', 'bnpc4334190', 4334190, '-317.320709', '5.576687', '307.102997', 1436, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 48370, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977672', 3977672, '97.520393', '0.287726', '13.748350', 1043, 0, 0, 0, 1, 6, 0, 0, 1289, 0, '0.000000', 32, 0, 120, 1, 0, 13, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33520, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977673', 3977673, '108.297798', '0.293726', '17.257500', 1043, 0, 0, 0, 1, 6, 0, 0, 1289, 0, '0.000000', 32, 0, 120, 1, 0, 13, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33248, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977676', 3977676, '100.989700', '0.436343', '22.582060', 1042, 0, 0, 0, 1, 6, 0, 0, 1288, 0, '0.000000', 32, 0, 120, 1, 0, 13, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43028, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977691', 3977691, '78.213097', '4.929524', '-99.461769', 1044, 0, 0, 0, 1, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 22, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33786, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977692', 3977692, '80.103203', '4.722785', '-104.218300', 1044, 0, 0, 0, 1, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 22, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42762, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977696', 3977696, '32.425419', '8.590759', '-148.180405', 1044, 0, 0, 0, 1, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 24, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32970, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977697', 3977697, '37.186161', '8.595814', '-150.469193', 1044, 0, 0, 0, 1, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 24, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42490, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977698', 3977698, '33.707150', '8.595814', '-143.175400', 1044, 0, 0, 0, 1, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 24, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42218, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977699', 3977699, '23.117371', '15.952280', '-66.331047', 1044, 0, 0, 0, 1, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 25, 0, 27, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41946, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977700', 3977700, '22.934271', '15.640440', '-58.640499', 1044, 0, 0, 0, 1, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 25, 0, 27, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32154, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977701', 3977701, '25.741940', '15.793750', '-62.973999', 1044, 0, 0, 0, 1, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 25, 0, 27, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41674, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977704', 3977704, '61.173340', '3.250122', '-64.866089', 1044, 0, 0, 0, 1, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 23, 0, 18, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41402, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977705', 3977705, '68.711304', '3.189148', '-64.744080', 1044, 0, 0, 0, 1, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 23, 0, 18, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41130, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977761', 3977761, '-70.105309', '14.825160', '-124.754997', 1044, 0, 0, 0, 1, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 41, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40858, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977762', 3977762, '-77.073799', '14.511750', '-125.274002', 1045, 0, 0, 0, 0, 6, 0, 0, 1292, 0, '0.000000', 32, 0, 120, 1, 0, 41, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36276, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc3977763', 3977763, '-81.197220', '15.043590', '-130.498001', 1044, 0, 0, 0, 1, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 41, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40586, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977766', 3977766, '-106.836700', '20.669861', '-178.534805', 1046, 0, 0, 0, 1, 6, 0, 0, 1291, 0, '0.000000', 32, 0, 120, 1, 0, 43, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34656, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc3977768', 3977768, '-45.842869', '17.988859', '-137.550507', 1044, 0, 0, 0, 2, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40314, 1, 3, 2000, 0, 0, 0, 4214257, 0, 0), +(158, 's1d2', 'bnpc3977769', 3977769, '-65.923759', '16.352461', '-148.533295', 1044, 0, 0, 0, 1, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 42, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31882, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977773', 3977773, '-66.567711', '16.407789', '-155.580200', 1046, 0, 0, 0, 1, 6, 0, 0, 1291, 0, '0.000000', 32, 0, 120, 1, 0, 42, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34384, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc3977774', 3977774, '-95.263458', '20.629009', '-175.365097', 1045, 0, 0, 0, 1, 6, 0, 0, 1292, 0, '0.000000', 32, 0, 120, 1, 0, 43, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36004, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc3977776', 3977776, '-159.868805', '6.332458', '-124.010101', 1051, 0, 0, 0, 0, 6, 0, 0, 1297, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37358, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977791', 3977791, '-27.268761', '35.282909', '-235.270493', 428, 0, 0, 0, 0, 6, 0, 0, 1279, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26658, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3977798', 3977798, '-112.300499', '-2.182068', '-43.974129', 429, 0, 0, 0, 0, 6, 0, 0, 1279, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24264, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3992762', 3992762, '52.447781', '1.109499', '17.061590', 1043, 0, 0, 0, 1, 6, 0, 0, 1289, 0, '0.000000', 32, 0, 120, 1, 0, 12, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39504, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3992763', 3992763, '61.445389', '1.054245', '16.847620', 1043, 0, 0, 0, 1, 6, 0, 0, 1289, 0, '0.000000', 32, 0, 120, 1, 0, 12, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39232, 1, 3, 2000, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(158, 's1d2', 'bnpc3992765', 3992765, '113.551804', '-2.835140', '-17.770380', 423, 0, 0, 0, 0, 6, 0, 0, 1280, 0, '0.000000', 32, 0, 120, 1, 0, 51, 0, 30, 20, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26126, 1, 6, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc3992769', 3992769, '87.937737', '4.959106', '-71.427551', 1046, 0, 0, 0, 1, 6, 0, 0, 1291, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34112, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc3992779', 3992779, '-51.762589', '-2.182068', '-3.089748', 1049, 0, 0, 0, 2, 6, 0, 0, 1295, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38434, 1, 3, 2000, 0, 0, 0, 4217046, 0, 0), +(158, 's1d2', 'bnpc3992780', 3992780, '-20.953110', '-2.123103', '-12.249960', 1049, 0, 0, 0, 2, 6, 0, 0, 1295, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38162, 1, 3, 2000, 0, 0, 0, 4214247, 0, 0), +(158, 's1d2', 'bnpc3992785', 3992785, '-62.908871', '-0.327094', '35.666851', 1047, 0, 0, 0, 1, 6, 0, 0, 1293, 0, '0.000000', 32, 0, 120, 1, 0, 31, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38966, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3992786', 3992786, '-73.746483', '-0.856528', '28.139391', 1043, 0, 0, 0, 1, 6, 0, 0, 1289, 0, '0.000000', 32, 0, 120, 1, 0, 31, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35152, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3992787', 3992787, '-49.111660', '-1.614816', '40.973171', 1043, 0, 0, 0, 1, 6, 0, 0, 1289, 0, '0.000000', 32, 0, 120, 1, 0, 31, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34880, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3992793', 3992793, '-55.191891', '-0.045776', '125.291702', 1041, 0, 0, 0, 1, 6, 0, 0, 1287, 0, '0.000000', 32, 0, 120, 1, 0, 36, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36826, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3992795', 3992795, '-58.457340', '-0.045776', '119.707001', 1050, 0, 0, 0, 1, 6, 0, 0, 1296, 0, '0.000000', 32, 0, 120, 1, 0, 36, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37896, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc3992796', 3992796, '17.227421', '-0.045776', '75.486328', 1050, 0, 0, 0, 1, 6, 0, 0, 1296, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37624, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc3992800', 3992800, '-116.634697', '16.291809', '-147.608704', 1044, 0, 0, 0, 1, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 44, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40042, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3992801', 3992801, '-105.815102', '16.401449', '-141.775101', 1044, 0, 0, 0, 1, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 44, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39770, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3992803', 3992803, '-116.258499', '12.954900', '-134.935501', 1045, 0, 0, 0, 1, 6, 0, 0, 1292, 0, '0.000000', 32, 0, 120, 1, 0, 44, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31652, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc3992822', 3992822, '79.248779', '0.821177', '34.816509', 989, 0, 0, 0, 0, 6, 0, 0, 1279, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26392, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3997317', 3997317, '40.085331', '5.569519', '-107.682999', 1045, 0, 0, 0, 1, 6, 0, 0, 1292, 0, '0.000000', 32, 0, 120, 1, 0, 26, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37092, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc3997318', 3997318, '37.949100', '5.538940', '-98.374939', 1044, 0, 0, 0, 1, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 26, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32698, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3997319', 3997319, '46.829960', '5.416931', '-102.800102', 1044, 0, 0, 0, 1, 6, 0, 0, 1290, 0, '0.000000', 32, 0, 120, 1, 0, 26, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32426, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3997341', 3997341, '-57.487980', '-2.182068', '-7.864814', 1049, 0, 0, 0, 1, 6, 0, 0, 1295, 0, '0.000000', 32, 0, 120, 1, 0, 37, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27554, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3997347', 3997347, '-106.279198', '-1.632751', '-5.081299', 1048, 0, 0, 0, 1, 6, 0, 0, 1294, 0, '0.000000', 32, 0, 120, 1, 0, 34, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38700, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc3997350', 3997350, '-102.037102', '-1.388611', '8.712891', 1047, 0, 0, 0, 1, 6, 0, 0, 1293, 0, '0.000000', 32, 0, 120, 1, 0, 34, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36518, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc3997806', 3997806, '-110.221603', '-2.123396', '-33.575729', 427, 0, 0, 0, 0, 6, 0, 0, 1286, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24530, 1, 6, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc4000410', 4000410, '65.577408', '3.145686', '-59.710510', 421, 0, 0, 0, 0, 6, 0, 0, 1299, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc4000412', 4000412, '39.656231', '8.595772', '-145.727905', 421, 0, 0, 0, 0, 6, 0, 0, 1299, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc4000414', 4000414, '19.353861', '15.795010', '-62.765930', 421, 0, 0, 0, 0, 6, 0, 0, 1299, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc4102260', 4102260, '113.537300', '-3.185392', '-25.684139', 424, 0, 0, 0, 0, 2, 0, 0, 1281, 0, '0.000000', 32, 0, 120, 1, 0, 51, 0, 30, 20, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25860, 1, 0, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc4102269', 4102269, '119.004997', '-3.036560', '-25.528379', 425, 0, 0, 0, 0, 2, 0, 0, 1282, 0, '0.000000', 32, 0, 120, 1, 0, 51, 0, 30, 20, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25594, 1, 0, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc4102276', 4102276, '107.942802', '-3.061967', '-25.528780', 426, 0, 0, 0, 0, 2, 0, 0, 1283, 0, '0.000000', 32, 0, 120, 1, 0, 51, 0, 30, 20, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25328, 1, 0, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc4102288', 4102288, '110.316597', '-1.703055', '2.589147', 420, 0, 0, 0, 0, 6, 0, 0, 1298, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23560, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc4102292', 4102292, '4.995600', '5.767900', '-68.457802', 422, 0, 0, 0, 0, 6, 0, 0, 1300, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22484, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc4102301', 4102301, '-9.101870', '5.742157', '-91.092461', 990, 0, 0, 0, 0, 6, 0, 0, 1284, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25062, 1, 6, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc4102303', 4102303, '5.329041', '5.756157', '-67.966362', 991, 0, 0, 0, 0, 6, 0, 0, 1285, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24796, 1, 6, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc4106998', 4106998, '-66.655838', '33.495232', '-236.746796', 421, 0, 0, 0, 0, 6, 0, 0, 1299, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc4107000', 4107000, '-66.650047', '33.912769', '-233.083893', 421, 0, 0, 0, 0, 6, 0, 0, 1299, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21934, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc4107001', 4107001, '-65.795357', '33.689079', '-234.933395', 422, 0, 0, 0, 0, 6, 0, 0, 1300, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21668, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc4107077', 4107077, '-108.938301', '-2.123102', '-26.876200', 1064, 0, 0, 0, 0, 6, 0, 0, 1383, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc4127147', 4127147, '-112.574402', '-2.123102', '-32.610691', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc4155136', 4155136, '64.922188', '18.324110', '-87.180801', 421, 0, 0, 0, 0, 6, 0, 0, 1299, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21390, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc4186437', 4186437, '86.059662', '-0.952379', '47.998631', 1041, 0, 0, 0, 1, 6, 0, 0, 1287, 0, '0.000000', 32, 0, 120, 1, 0, 11, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35738, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc4186440', 4186440, '56.333248', '1.279437', '26.136770', 1041, 0, 0, 0, 1, 6, 0, 0, 1287, 0, '0.000000', 32, 0, 120, 1, 0, 12, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35466, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc4214237', 4214237, '76.918411', '0.091562', '52.322651', 1043, 0, 0, 0, 1, 6, 0, 0, 1289, 0, '0.000000', 32, 0, 120, 1, 0, 11, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31344, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc4214240', 4214240, '-61.706638', '-2.182068', '-18.010590', 1048, 0, 0, 0, 1, 6, 0, 0, 1294, 0, '0.000000', 32, 0, 120, 1, 0, 37, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31084, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc4214272', 4214272, '-5.478088', '-2.182068', '16.555969', 1049, 0, 0, 0, 2, 6, 0, 0, 1295, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30818, 1, 3, 2000, 0, 0, 0, 4214248, 0, 0), +(158, 's1d2', 'bnpc4214276', 4214276, '-93.821114', '-2.182068', '57.410080', 1049, 0, 0, 0, 2, 6, 0, 0, 1295, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30546, 1, 3, 2000, 0, 0, 0, 4217061, 0, 0), +(158, 's1d2', 'bnpc4214277', 4214277, '-64.426163', '-2.182068', '58.594688', 1049, 0, 0, 0, 2, 6, 0, 0, 1295, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30274, 1, 3, 2000, 0, 0, 0, 4214249, 0, 0), +(158, 's1d2', 'bnpc4214278', 4214278, '-91.034813', '-2.182068', '13.468040', 1049, 0, 0, 0, 2, 6, 0, 0, 1295, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30002, 1, 3, 2000, 0, 0, 0, 4214254, 0, 0), +(158, 's1d2', 'bnpc4214279', 4214279, '-110.320297', '-2.182068', '25.453300', 1049, 0, 0, 0, 2, 6, 0, 0, 1295, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29730, 1, 3, 2000, 0, 0, 0, 4217073, 0, 0), +(158, 's1d2', 'bnpc4214283', 4214283, '-24.124571', '-2.182068', '16.922239', 1048, 0, 0, 0, 0, 6, 0, 0, 1294, 0, '0.000000', 32, 0, 120, 1, 0, 33, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29452, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc4214284', 4214284, '-15.701600', '-2.182068', '28.732670', 1048, 0, 0, 0, 1, 6, 0, 0, 1294, 0, '0.000000', 32, 0, 120, 1, 0, 33, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29180, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc4332695', 4332695, '-34.836399', '-2.182068', '-16.745260', 1048, 0, 0, 0, 1, 6, 0, 0, 1294, 0, '0.000000', 32, 0, 120, 1, 0, 32, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28908, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc4332696', 4332696, '-31.079800', '-2.182068', '-2.894458', 1048, 0, 0, 0, 1, 6, 0, 0, 1294, 0, '0.000000', 32, 0, 120, 1, 0, 32, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28636, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc4332698', 4332698, '-79.851120', '-2.182068', '-9.788231', 1049, 0, 0, 0, 1, 6, 0, 0, 1295, 0, '0.000000', 32, 0, 120, 1, 0, 38, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27282, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc4332699', 4332699, '-76.226997', '-2.182068', '3.850793', 1048, 0, 0, 0, 1, 6, 0, 0, 1294, 0, '0.000000', 32, 0, 120, 1, 0, 38, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28364, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(158, 's1d2', 'bnpc4332702', 4332702, '-81.730507', '-0.814644', '79.151787', 1043, 0, 0, 0, 1, 6, 0, 0, 1289, 0, '0.000000', 32, 0, 120, 1, 0, 39, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28080, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc4332703', 4332703, '-81.320953', '-1.326119', '67.601646', 1043, 0, 0, 0, 1, 6, 0, 0, 1289, 0, '0.000000', 32, 0, 120, 1, 0, 39, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27808, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(158, 's1d2', 'bnpc4332709', 4332709, '-116.898201', '-2.182068', '8.202514', 1049, 0, 0, 0, 1, 6, 0, 0, 1295, 0, '0.000000', 32, 0, 120, 1, 0, 34, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27010, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084012', 4084012, '179.888504', '-14.023070', '326.667511', 1063, 0, 0, 0, 0, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 105, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36788, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084013', 4084013, '129.197800', '-18.081970', '377.597900', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '5.000000', 50, 3, 120, 1, 0, 102, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39212, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084017', 4084017, '124.991203', '-11.999890', '98.268700', 1052, 0, 0, 0, 0, 6, 0, 0, 1548, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44246, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084019', 4084019, '43.260269', '-0.038252', '-243.015701', 1053, 0, 0, 0, 0, 6, 0, 0, 1549, 0, '0.000000', 50, 0, 120, 1, 0, 101, 0, 0, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43980, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084020', 4084020, '37.211861', '0.085123', '-238.371597', 1054, 0, 0, 0, 0, 6, 0, 0, 1551, 0, '0.000000', 50, 0, 120, 1, 0, 101, 0, 0, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43714, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084021', 4084021, '48.930859', '-0.038412', '-237.455994', 1055, 0, 0, 0, 0, 6, 0, 0, 1552, 0, '0.000000', 50, 0, 120, 1, 0, 101, 0, 0, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084022', 4084022, '32.664619', '-0.026817', '-233.183502', 1056, 0, 0, 0, 0, 6, 0, 0, 1553, 0, '0.000000', 50, 0, 120, 1, 0, 101, 0, 0, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084023', 4084023, '53.508499', '0.046601', '-232.481598', 1057, 0, 0, 0, 0, 6, 0, 0, 1554, 0, '0.000000', 50, 0, 120, 1, 0, 101, 0, 0, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42916, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084026', 4084026, '43.223949', '-0.056296', '-232.420593', 1058, 0, 0, 0, 0, 6, 0, 0, 1555, 0, '0.000000', 50, 0, 120, 1, 0, 101, 0, 0, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42650, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084028', 4084028, '73.001823', '6.050000', '-448.694305', 884, 0, 0, 0, 0, 6, 0, 0, 1547, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44512, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084036', 4084036, '75.822021', '-10.330380', '27.041380', 1072, 0, 0, 0, 1, 6, 0, 0, 1562, 0, '0.000000', 50, 0, 120, 1, 0, 112, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29004, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084037', 4084037, '78.843384', '-10.055730', '24.538940', 1072, 0, 0, 0, 1, 6, 0, 0, 1562, 0, '0.000000', 50, 0, 120, 1, 0, 112, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29276, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084408', 4084408, '132.218796', '-18.066629', '377.637299', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '5.000000', 50, 3, 120, 1, 0, 102, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38940, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084411', 4084411, '186.514603', '-18.020941', '371.556000', 1073, 0, 0, 0, 1, 6, 0, 0, 1563, 0, '0.000000', 50, 0, 120, 1, 0, 104, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38142, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084414', 4084414, '180.712494', '-18.020941', '378.561005', 1073, 0, 0, 0, 1, 6, 0, 0, 1563, 0, '0.000000', 50, 0, 120, 1, 0, 104, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31070, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084415', 4084415, '126.726196', '-14.053590', '226.673492', 1070, 0, 0, 0, 1, 6, 0, 0, 1560, 0, '0.000000', 50, 0, 120, 1, 0, 109, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34902, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084416', 4084416, '151.203003', '-14.049900', '264.766815', 1071, 0, 0, 0, 1, 5, 0, 0, 1561, 0, '0.000000', 50, 0, 120, 1, 0, 108, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35434, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084417', 4084417, '116.807701', '-14.023070', '281.208496', 890, 0, 0, 0, 6, 6, 0, 0, 35, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35676, 1, 3, 2000, 0, 0, 0, 4247545, 0, 0), +(159, 's1d3', 'bnpc4084433', 4084433, '125.108597', '-14.023070', '186.785599', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 111, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31596, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084435', 4084435, '183.521896', '-14.053590', '275.784698', 890, 0, 0, 0, 1, 6, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 106, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31324, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084444', 4084444, '107.774200', '-18.000010', '375.161194', 919, 0, 0, 0, 2, 6, 0, 0, 1556, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42384, 1, 3, 2000, 0, 0, 0, 4331109, 0, 0), +(159, 's1d3', 'bnpc4084457', 4084457, '122.606201', '-10.055730', '52.719849', 890, 0, 0, 0, 2, 6, 0, 0, 35, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30056, 1, 3, 2000, 0, 0, 0, 4247774, 0, 0), +(159, 's1d3', 'bnpc4084458', 4084458, '91.172607', '-10.055730', '27.267820', 890, 0, 0, 0, 2, 6, 0, 0, 35, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29784, 1, 3, 2000, 0, 0, 0, 4247775, 0, 0), +(159, 's1d3', 'bnpc4084459', 4084459, '37.333488', '-0.164260', '-16.769711', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 50, 2, 120, 1, 0, 113, 0, 100, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29512, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084465', 4084465, '110.761497', '-0.000034', '-51.805130', 919, 0, 0, 0, 2, 6, 0, 0, 1556, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42112, 1, 3, 2000, 0, 0, 0, 4331095, 0, 0), +(159, 's1d3', 'bnpc4084466', 4084466, '42.899948', '8.255061', '-114.172997', 919, 0, 0, 0, 2, 6, 0, 0, 1556, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41840, 1, 3, 2000, 0, 0, 0, 4331098, 0, 0), +(159, 's1d3', 'bnpc4084482', 4084482, '28.179529', '-0.000163', '-145.814606', 919, 0, 0, 0, 2, 6, 0, 0, 1556, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41568, 1, 3, 2000, 0, 0, 0, 4331100, 0, 0), +(159, 's1d3', 'bnpc4084488', 4084488, '37.997730', '0.000000', '-146.913101', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 119, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24072, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084489', 4084489, '48.068661', '0.000000', '-146.577393', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 119, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24344, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084493', 4084493, '5.142273', '7.980469', '-96.159912', 1075, 0, 0, 0, 1, 6, 0, 0, 1565, 0, '0.000000', 50, 0, 120, 1, 0, 117, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26308, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(159, 's1d3', 'bnpc4084494', 4084494, '5.355835', '7.980469', '-89.140808', 1062, 0, 0, 0, 1, 6, 0, 0, 1558, 0, '0.000000', 50, 0, 120, 1, 0, 117, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26586, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084497', 4084497, '81.589973', '7.950102', '-96.495667', 1075, 0, 0, 0, 1, 6, 0, 0, 1565, 0, '0.000000', 50, 0, 120, 1, 0, 115, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27668, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(159, 's1d3', 'bnpc4084534', 4084534, '45.975342', '7.827881', '-98.008789', 1075, 0, 0, 0, 1, 6, 0, 0, 1565, 0, '0.000000', 50, 0, 120, 1, 0, 116, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26852, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(159, 's1d3', 'bnpc4084573', 4084573, '42.979328', '-0.040156', '-260.770386', 919, 0, 0, 0, 2, 6, 0, 0, 1556, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41024, 1, 3, 2000, 0, 0, 0, 4247834, 0, 0), +(159, 's1d3', 'bnpc4084578', 4084578, '45.033428', '0.000001', '-279.235504', 1061, 0, 0, 0, 1, 5, 0, 0, 1557, 0, '0.000000', 50, 0, 120, 1, 0, 121, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 20228, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084581', 4084581, '45.334469', '-0.045776', '-282.978607', 1061, 0, 0, 0, 1, 5, 0, 0, 1557, 0, '0.000000', 50, 0, 120, 1, 0, 121, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 20500, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084583', 4084583, '40.394760', '-0.045097', '-281.951599', 1062, 0, 0, 0, 1, 5, 0, 0, 1558, 0, '0.000000', 50, 0, 120, 1, 0, 121, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 19950, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084590', 4084590, '74.096893', '9.933594', '-376.446594', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 123, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 21244, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4084591', 4084591, '68.897972', '9.933594', '-319.045197', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 122, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 20972, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4087552', 4087552, '75.254829', '6.000000', '-435.065704', 931, 0, 0, 0, 1, 6, 0, 0, 1550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40214, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4101303', 4101303, '129.869507', '-18.081970', '375.221710', 1452, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39478, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4101304', 4101304, '149.854904', '-18.051510', '375.815796', 1060, 0, 0, 0, 0, 6, 0, 0, 1566, 0, '0.000000', 50, 0, 120, 1, 0, 103, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38674, 1, 0, 2000, 0, 0, 0, 4254773, 0, 0), +(159, 's1d3', 'bnpc4101306', 4101306, '148.014206', '-18.051510', '374.528687', 1512, 0, 0, 0, 0, 6, 0, 0, 1566, 0, '0.000000', 50, 0, 120, 1, 0, 103, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38408, 1, 0, 2000, 0, 0, 0, 4254774, 0, 0), +(159, 's1d3', 'bnpc4101977', 4101977, '111.863800', '-0.167908', '-38.725040', 1511, 0, 0, 0, 0, 6, 0, 0, 1566, 0, '0.000000', 50, 0, 120, 1, 0, 114, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28200, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4101978', 4101978, '110.032799', '-0.167908', '-37.748470', 1510, 0, 0, 0, 0, 6, 0, 0, 1566, 0, '0.000000', 50, 0, 120, 1, 0, 114, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27934, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4246781', 4246781, '111.147598', '-0.000166', '-107.654503', 919, 0, 0, 0, 2, 6, 0, 0, 1556, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41296, 1, 3, 2000, 0, 0, 0, 4331102, 0, 0), +(159, 's1d3', 'bnpc4246782', 4246782, '42.520988', '4.950057', '-317.772614', 919, 0, 0, 0, 2, 6, 0, 0, 1556, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40752, 1, 3, 2000, 0, 0, 0, 4247839, 0, 0), +(159, 's1d3', 'bnpc4246783', 4246783, '73.336823', '9.012489', '-318.880493', 919, 0, 0, 0, 2, 6, 0, 0, 1556, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40480, 1, 3, 2000, 0, 0, 0, 4330770, 0, 0), +(159, 's1d3', 'bnpc4248246', 4248246, '148.663803', '-14.049900', '266.914093', 1072, 0, 0, 0, 1, 5, 0, 0, 1562, 0, '0.000000', 50, 0, 120, 1, 0, 108, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35168, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4248248', 4248248, '124.284698', '-14.053590', '211.365997', 1072, 0, 0, 0, 1, 6, 0, 0, 1562, 0, '0.000000', 50, 0, 120, 1, 0, 109, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34624, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4248255', 4248255, '180.590500', '-14.114620', '280.811615', 1073, 0, 0, 0, 1, 6, 0, 0, 1563, 0, '0.000000', 50, 0, 120, 1, 0, 106, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35966, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4248256', 4248256, '186.480499', '-14.114620', '271.442688', 1073, 0, 0, 0, 1, 6, 0, 0, 1563, 0, '0.000000', 50, 0, 120, 1, 0, 106, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36238, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4248288', 4248288, '41.567841', '-0.167908', '-13.809450', 1071, 0, 0, 0, 1, 6, 0, 0, 1561, 0, '0.000000', 50, 0, 120, 1, 0, 113, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28726, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4248292', 4248292, '46.097530', '7.827881', '-94.438171', 1075, 0, 0, 0, 1, 6, 0, 0, 1565, 0, '0.000000', 50, 0, 120, 1, 0, 116, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27124, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(159, 's1d3', 'bnpc4248295', 4248295, '81.620483', '7.980469', '-89.232361', 1062, 0, 0, 0, 1, 6, 0, 0, 1558, 0, '0.000000', 50, 0, 120, 1, 0, 115, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27402, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4248296', 4248296, '108.232201', '-0.167908', '-148.864594', 1075, 0, 0, 0, 1, 6, 0, 0, 1565, 0, '0.000000', 50, 0, 120, 1, 0, 120, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23588, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(159, 's1d3', 'bnpc4248302', 4248302, '109.025597', '-0.167908', '-138.933502', 1061, 0, 0, 0, 1, 6, 0, 0, 1557, 0, '0.000000', 50, 0, 120, 1, 0, 120, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23872, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4248311', 4248311, '69.702148', '9.994568', '-316.407715', 1075, 0, 0, 0, 0, 6, 0, 0, 1565, 0, '0.000000', 50, 0, 120, 1, 0, 122, 0, 100, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21848, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4248312', 4248312, '66.962502', '9.933594', '-321.467010', 1075, 0, 0, 0, 1, 10, 0, 0, 1565, 0, '0.000000', 50, 0, 120, 1, 0, 122, 0, 100, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21576, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250458', 4250458, '106.279099', '-14.023070', '265.478912', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 110, 0, 100, 7, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33252, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250586', 4250586, '-35.599300', '-0.167908', '-146.514694', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 118, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24912, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250643', 4250643, '179.410294', '-14.023070', '325.202606', 1063, 0, 0, 0, 0, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 105, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36516, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250645', 4250645, '179.897995', '-14.023070', '323.792389', 1063, 0, 0, 0, 0, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 105, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37060, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250646', 4250646, '189.929001', '-14.023070', '326.698090', 1063, 0, 0, 0, 0, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 105, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37332, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250647', 4250647, '190.537994', '-14.023070', '325.416290', 1063, 0, 0, 0, 0, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 105, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37604, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250648', 4250648, '189.885193', '-14.023070', '324.047089', 1063, 0, 0, 0, 0, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 105, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37876, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250658', 4250658, '106.309601', '-14.023070', '268.378113', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 110, 0, 100, 7, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33796, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250659', 4250659, '115.190300', '-14.023070', '248.188004', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 110, 0, 100, 7, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32980, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250660', 4250660, '116.929802', '-14.023070', '285.925903', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 110, 0, 100, 7, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32708, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250661', 4250661, '143.755203', '-14.023070', '260.840088', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 110, 0, 100, 7, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33524, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250662', 4250662, '143.724594', '-14.023070', '257.239014', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 110, 0, 100, 7, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31892, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250663', 4250663, '143.816299', '-14.114620', '273.334808', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 110, 0, 100, 7, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32164, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250664', 4250664, '143.846802', '-14.114620', '276.600189', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 110, 0, 100, 7, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32436, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250683', 4250683, '-35.599300', '-0.167908', '-144.225906', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 118, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25184, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250684', 4250684, '-35.599300', '-0.167908', '-147.826996', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 118, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26000, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250685', 4250685, '-35.599300', '-0.167908', '-143.035599', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 118, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25728, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250686', 4250686, '-35.568851', '-0.167908', '-149.078201', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 118, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25456, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250687', 4250687, '-35.599300', '-0.167908', '-141.723404', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 118, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24640, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250786', 4250786, '38.982391', '5.000000', '-322.761200', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 120, 0, 0, 1, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22332, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4250787', 4250787, '44.063000', '4.950058', '-317.588409', 890, 0, 0, 0, 1, 10, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 120, 0, 0, 1, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22060, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4329484', 4329484, '153.623398', '-14.049900', '268.394714', 1071, 0, 0, 0, 1, 5, 0, 0, 1561, 0, '0.000000', 50, 0, 120, 1, 0, 108, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34346, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4329485', 4329485, '122.789299', '-14.053590', '218.989105', 1070, 0, 0, 0, 1, 6, 0, 0, 1560, 0, '0.000000', 50, 0, 120, 1, 0, 109, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34086, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4329508', 4329508, '41.501999', '-0.167908', '-21.988279', 1071, 0, 0, 0, 1, 6, 0, 0, 1561, 0, '0.000000', 50, 0, 120, 1, 0, 113, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28454, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4329515', 4329515, '72.097458', '9.933594', '-376.475311', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 123, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 20700, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4330603', 4330603, '70.817139', '5.996765', '-435.080505', 2261, 0, 0, 0, 1, 6, 0, 0, 2180, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39948, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4406921', 4406921, '130.418793', '-14.053590', '194.252396', 1072, 0, 0, 0, 1, 6, 0, 0, 1562, 0, '0.000000', 50, 0, 120, 1, 0, 111, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30816, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4406922', 4406922, '120.247498', '-14.053590', '193.993393', 1070, 0, 0, 0, 1, 6, 0, 0, 1560, 0, '0.000000', 50, 0, 120, 1, 0, 111, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30550, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4406924', 4406924, '48.535030', '7.827881', '-97.298958', 1075, 0, 0, 0, 1, 6, 0, 0, 1565, 0, '0.000000', 50, 0, 120, 1, 0, 116, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23316, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(159, 's1d3', 'bnpc4406926', 4406926, '17.563339', '9.237017', '-118.370499', 1061, 0, 0, 0, 1, 6, 0, 0, 1557, 0, '0.000000', 50, 0, 120, 1, 0, 200, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23056, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(159, 's1d3', 'bnpc4406927', 4406927, '20.600620', '9.237017', '-116.369698', 1061, 0, 0, 0, 1, 6, 0, 0, 1557, 0, '0.000000', 50, 0, 120, 1, 0, 200, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 22784, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4375393', 4375393, '0.167786', '0.289917', '45.853390', 2314, 0, 0, 0, 1, 6, 0, 0, 2247, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 65632, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4375402', 4375402, '-9.852335', '1.404441', '-20.383860', 2301, 0, 0, 0, 1, 6, 0, 0, 2256, 0, '0.000000', 50, 0, 120, 1, 0, 15, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 67656, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4375404', 4375404, '-0.015320', '0.289917', '9.079041', 2315, 0, 0, 0, 2, 6, 0, 0, 2248, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 66314, 1, 3, 2000, 0, 0, 0, 4375407, 0, 0), +(160, 's1d4', 'bnpc4375408', 4375408, '45.192341', '29.999969', '-16.743481', 2301, 0, 0, 0, 1, 6, 0, 0, 2256, 0, '0.000000', 50, 0, 120, 1, 0, 16, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 68200, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4375409', 4375409, '44.113899', '29.999950', '-26.688049', 2306, 0, 0, 0, 1, 6, 0, 0, 2257, 0, '0.000000', 50, 0, 120, 1, 0, 16, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 67390, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4375596', 4375596, '-47.716221', '30.000420', '65.384293', 2303, 0, 0, 0, 1, 6, 0, 0, 2251, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 61782, 1, 3, 2000, 0, 0, 0, 4375599, 0, 0), +(160, 's1d4', 'bnpc4375609', 4375609, '33.707150', '81.895142', '-27.512020', 2317, 0, 0, 0, 1, 6, 0, 0, 2255, 0, '0.000000', 50, 0, 120, 1, 0, 28, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 58808, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4375615', 4375615, '33.707150', '82.383423', '-24.185551', 2317, 0, 0, 0, 1, 6, 0, 0, 2255, 0, '0.000000', 50, 0, 120, 1, 0, 28, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 59080, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4375617', 4375617, '42.313229', '59.952641', '-9.323303', 2316, 0, 0, 0, 5, 6, 0, 0, 2250, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59340, 1, 3, 2000, 0, 0, 0, 4375616, 0, 0), +(160, 's1d4', 'bnpc4378133', 4378133, '41.977539', '29.984011', '-65.293404', 2299, 0, 0, 0, 0, 6, 0, 0, 2259, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17364, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4378134', 4378134, '-14.938600', '90.139862', '-0.015320', 2292, 0, 0, 0, 0, 6, 0, 0, 2261, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11188, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4378135', 4378135, '-14.877620', '193.987900', '-0.015320', 2287, 0, 0, 0, 0, 6, 0, 0, 2265, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49174, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4378204', 4378204, '-35.480030', '30.000629', '-56.205639', 434, 0, 0, 0, 0, 6, 0, 0, 2154, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43764, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4378205', 4378205, '-44.602112', '29.984011', '-51.743408', 434, 0, 0, 0, 0, 6, 0, 0, 2154, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43492, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4378206', 4378206, '-10.058140', '30.000010', '11.610050', 434, 0, 0, 0, 0, 6, 0, 0, 2154, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43220, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4378207', 4378207, '10.176570', '30.000010', '-5.806796', 434, 0, 0, 0, 0, 6, 0, 0, 2154, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42948, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4378208', 4378208, '-18.183210', '36.201000', '-21.081181', 434, 0, 0, 0, 0, 6, 0, 0, 2154, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42676, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4378209', 4378209, '13.830180', '43.105461', '-23.522539', 434, 0, 0, 0, 0, 6, 0, 0, 2154, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4378210', 4378210, '25.634890', '47.473190', '-16.012030', 434, 0, 0, 0, 0, 6, 0, 0, 2154, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4378211', 4378211, '24.823700', '50.448231', '6.520932', 434, 0, 0, 0, 0, 6, 0, 0, 2154, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41860, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4378212', 4378212, '24.112820', '54.177811', '18.100599', 434, 0, 0, 0, 0, 6, 0, 0, 2154, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41588, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4378213', 4378213, '12.667040', '58.146931', '23.120920', 434, 0, 0, 0, 0, 6, 0, 0, 2154, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41316, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4378214', 4378214, '-40.529640', '30.000700', '49.487751', 434, 0, 0, 0, 0, 6, 0, 0, 2154, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41044, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4378215', 4378215, '-44.100391', '30.000790', '58.387291', 434, 0, 0, 0, 0, 6, 0, 0, 2154, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4390603', 4390603, '-0.015320', '139.970901', '-8.896057', 2328, 0, 0, 0, 0, 6, 0, 0, 2264, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2756, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4391141', 4391141, '0.297156', '120.000000', '-36.425961', 2329, 0, 0, 0, 0, 18, 0, 0, 2258, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32906, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4391174', 4391174, '-8.314253', '1.388489', '-27.008930', 2301, 0, 0, 0, 1, 6, 0, 0, 2256, 0, '0.000000', 50, 0, 120, 1, 0, 15, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 68472, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4391178', 4391178, '39.463699', '29.999950', '-22.733330', 2301, 0, 0, 0, 1, 6, 0, 0, 2256, 0, '0.000000', 50, 0, 120, 1, 0, 16, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 67928, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4391181', 4391181, '-25.772520', '30.000860', '-57.785950', 2301, 0, 0, 0, 1, 6, 0, 0, 2256, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 64188, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4391182', 4391182, '-25.680969', '29.984011', '-3.311279', 2306, 0, 0, 0, 1, 6, 0, 0, 2257, 0, '0.000000', 50, 0, 120, 1, 0, 23, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 62562, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4391185', 4391185, '-24.673830', '30.001150', '-55.619141', 2301, 0, 0, 0, 1, 6, 0, 0, 2256, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 64460, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4391187', 4391187, '-27.206909', '29.984011', '0.137329', 2301, 0, 0, 0, 1, 6, 0, 0, 2256, 0, '0.000000', 50, 0, 120, 1, 0, 23, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 63100, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4391188', 4391188, '-21.469481', '29.984011', '0.442505', 2301, 0, 0, 0, 1, 6, 0, 0, 2256, 0, '0.000000', 50, 0, 120, 1, 0, 23, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 63916, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4391201', 4391201, '26.840580', '52.231571', '12.954900', 2305, 0, 0, 0, 1, 6, 0, 0, 2249, 0, '0.000000', 50, 0, 120, 1, 0, 25, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 60706, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4391449', 4391449, '46.258221', '30.000521', '-64.488441', 2300, 0, 0, 0, 0, 6, 0, 0, 2260, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17098, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4391497', 4391497, '-13.046510', '89.982422', '6.027222', 2293, 0, 0, 0, 0, 6, 0, 0, 2262, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10124, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4391498', 4391498, '-12.191960', '89.982422', '-5.355957', 2294, 0, 0, 0, 0, 6, 0, 0, 2263, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9858, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4391499', 4391499, '-8.957031', '90.135010', '1.419067', 2295, 0, 0, 0, 0, 6, 0, 0, 2267, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10656, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4391501', 4391501, '-8.957031', '90.135010', '-1.175049', 2296, 0, 0, 0, 0, 6, 0, 0, 2267, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10390, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4391521', 4391521, '0.000000', '90.000008', '0.000000', 2298, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10922, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4391530', 4391530, '-13.626340', '193.987900', '3.982544', 2288, 0, 0, 0, 0, 6, 0, 0, 2266, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 48908, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4391532', 4391532, '-12.980800', '194.000000', '-3.098743', 2289, 0, 0, 0, 0, 6, 0, 0, 2513, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 48642, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4392443', 4392443, '30.820681', '81.428574', '-29.068480', 2297, 0, 0, 0, 0, 6, 0, 0, 2261, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8344, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4392947', 4392947, '39.047729', '0.289917', '67.734741', 2304, 0, 0, 0, 1, 6, 0, 0, 2245, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 67124, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4392950', 4392950, '2.574573', '0.300000', '47.218609', 2304, 0, 0, 0, 1, 6, 0, 0, 2245, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 66580, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4392951', 4392951, '-1.748563', '0.300000', '48.561260', 2304, 0, 0, 0, 1, 6, 0, 0, 2245, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 66852, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4392970', 4392970, '-30.959980', '30.000811', '-56.218811', 2302, 0, 0, 0, 1, 6, 0, 0, 2252, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 62320, 1, 3, 2000, 0, 0, 0, 4375599, 0, 0), +(160, 's1d4', 'bnpc4392971', 4392971, '-49.687431', '30.000521', '68.229492', 2303, 0, 0, 0, 1, 6, 0, 0, 2251, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 62054, 1, 3, 2000, 0, 0, 0, 4375599, 0, 0), +(160, 's1d4', 'bnpc4392973', 4392973, '-43.196529', '30.001181', '-39.130070', 2316, 0, 0, 0, 5, 6, 0, 0, 2250, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 61516, 1, 3, 2000, 0, 0, 0, 4375599, 0, 0), +(160, 's1d4', 'bnpc4392974', 4392974, '-52.506351', '29.984011', '64.286247', 2302, 0, 0, 0, 1, 6, 0, 0, 2252, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 61232, 1, 3, 2000, 0, 0, 0, 4375599, 0, 0), +(160, 's1d4', 'bnpc4392977', 4392977, '33.196899', '59.997459', '24.935730', 2302, 0, 0, 0, 1, 6, 0, 0, 2252, 0, '0.000000', 50, 0, 120, 1, 0, 26, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 60144, 1, 3, 2000, 0, 0, 0, 4375599, 0, 0), +(160, 's1d4', 'bnpc4392978', 4392978, '36.004570', '60.000031', '24.447451', 2303, 0, 0, 0, 1, 6, 0, 0, 2251, 0, '0.000000', 50, 0, 120, 1, 0, 26, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 59606, 1, 3, 2000, 0, 0, 0, 4375599, 0, 0), +(160, 's1d4', 'bnpc4392979', 4392979, '34.753349', '60.410919', '27.132990', 2303, 0, 0, 0, 1, 6, 0, 0, 2251, 0, '0.000000', 50, 0, 120, 1, 0, 26, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 59878, 1, 3, 2000, 0, 0, 0, 4375599, 0, 0), +(160, 's1d4', 'bnpc4392980', 4392980, '0.264218', '140.000000', '38.594528', 2318, 0, 0, 0, 1, 6, 0, 0, 2253, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56922, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4392982', 4392982, '-37.360989', '130.450104', '-0.089406', 2318, 0, 0, 0, 1, 6, 0, 0, 2253, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 56378, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4393544', 4393544, '-29.403660', '60.000038', '32.629478', 2301, 0, 0, 0, 1, 6, 0, 0, 2256, 0, '0.000000', 50, 0, 120, 1, 0, 27, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 63372, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4393545', 4393545, '-35.575680', '60.000038', '28.098850', 2306, 0, 0, 0, 1, 6, 0, 0, 2257, 0, '0.000000', 50, 0, 120, 1, 0, 27, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 62834, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4393547', 4393547, '-29.356340', '60.000031', '25.312611', 2301, 0, 0, 0, 1, 6, 0, 0, 2256, 0, '0.000000', 50, 0, 120, 1, 0, 27, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 63644, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4407107', 4407107, '39.525162', '30.000259', '-63.655979', 434, 0, 0, 0, 0, 6, 0, 0, 2154, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4489395', 4489395, '-0.076355', '139.970901', '0.106751', 2330, 0, 0, 0, 1, 6, 0, 0, 2256, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7270, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4489396', 4489396, '2.528203', '140.000000', '-0.346407', 2329, 0, 0, 0, 0, 6, 0, 0, 2258, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4490951', 4490951, '11.929710', '42.018360', '-25.979019', 2305, 0, 0, 0, 1, 6, 0, 0, 2249, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 60978, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4490952', 4490952, '26.199711', '53.391361', '17.318970', 2305, 0, 0, 0, 1, 6, 0, 0, 2249, 0, '0.000000', 50, 0, 120, 1, 0, 25, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 60434, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4490981', 4490981, '-3.280701', '139.970901', '39.414059', 2318, 0, 0, 0, 1, 6, 0, 0, 2253, 0, '0.000000', 50, 0, 120, 1, 0, 34, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 56106, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4490989', 4490989, '-41.070690', '130.000000', '0.744106', 2327, 0, 0, 0, 1, 6, 0, 0, 2254, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56656, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4491007', 4491007, '-0.015320', '0.289917', '27.939211', 2315, 0, 0, 0, 5, 6, 0, 0, 2248, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 65898, 1, 3, 2000, 0, 0, 0, 4491004, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(160, 's1d4', 'bnpc4504875', 4504875, '-6.382652', '194.019699', '0.000000', 434, 0, 0, 0, 0, 6, 0, 0, 2265, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 48064, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4507696', 4507696, '-34.681839', '30.000299', '58.121239', 2316, 0, 0, 0, 2, 6, 0, 0, 2250, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58348, 1, 3, 2000, 0, 0, 0, 4507685, 0, 0), +(160, 's1d4', 'bnpc4507788', 4507788, '0.167786', '119.951202', '-52.933590', 2316, 0, 0, 0, 5, 6, 0, 0, 2250, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55816, 1, 3, 2000, 0, 0, 0, 4507791, 0, 0), +(160, 's1d4', 'bnpc4507797', 4507797, '-38.132389', '129.991592', '4.776001', 2316, 0, 0, 0, 5, 6, 0, 0, 2250, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55192, 1, 3, 2000, 0, 0, 0, 4507795, 0, 0), +(160, 's1d4', 'bnpc4579878', 4579878, '37.485168', '0.300000', '70.503273', 2313, 0, 0, 0, 1, 6, 0, 0, 2246, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 65270, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4588095', 4588095, '17.594650', '44.629681', '-19.907209', 2305, 0, 0, 0, 1, 6, 0, 0, 2249, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 58082, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4588096', 4588096, '14.239240', '42.577259', '-27.470079', 2305, 0, 0, 0, 1, 6, 0, 0, 2249, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 57810, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(160, 's1d4', 'bnpc4588102', 4588102, '-15.987990', '60.000031', '42.125141', 2316, 0, 0, 0, 5, 6, 0, 0, 2250, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57276, 1, 3, 2000, 0, 0, 0, 4588097, 0, 0), +(161, 'w1d1', 'bnpc2790179', 2790179, '21.634279', '0.352226', '-92.859917', 107, 0, 0, 0, 0, 6, 0, 0, 548, 0, '0.000000', 17, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22006, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc2790234', 2790234, '93.156250', '-42.099731', '41.763920', 1400, 0, 0, 0, 1, 6, 0, 0, 1303, 0, '0.000000', 17, 2, 120, 1, 0, 11, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29960, 1, 3, 46, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc2790237', 2790237, '16.739140', '-42.313290', '39.658199', 1400, 0, 0, 0, 1, 6, 0, 0, 1303, 0, '0.000000', 17, 2, 120, 1, 0, 10, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30232, 1, 3, 41, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc2790250', 2790250, '27.634029', '-37.866180', '107.342102', 948, 0, 0, 0, 1, 6, 0, 0, 554, 0, '0.000000', 17, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20400, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc2790304', 2790304, '-102.494904', '-58.503761', '15.314880', 112, 0, 0, 0, 0, 48, 0, 0, 101, 0, '1.600000', 17, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23076, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc3445126', 3445126, '-74.565086', '-55.419930', '1.988244', 433, 0, 0, 0, 0, 6, 0, 0, 1262, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22272, 1, 0, 0, 3163462, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc3445130', 3445130, '-122.915604', '-55.471889', '34.680359', 433, 0, 0, 0, 3, 6, 0, 0, 1262, 0, '0.000000', 19, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22544, 1, 0, 0, 3163472, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc3632936', 3632936, '-58.760300', '-52.695068', '-2.555375', 267, 0, 0, 0, 6, 48, 0, 0, 988, 0, '0.000000', 17, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20858, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc3632937', 3632937, '-136.112000', '-54.436810', '40.601940', 267, 0, 0, 0, 1, 24, 0, 0, 988, 0, '0.000000', 17, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22810, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4021731', 4021731, '-216.205093', '24.002439', '-212.878693', 1396, 0, 0, 0, 1, 6, 0, 0, 631, 0, '0.000000', 17, 0, 120, 1, 0, 1, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38122, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(161, 'w1d1', 'bnpc4021732', 4021732, '-215.960907', '22.903749', '-200.427307', 1395, 0, 0, 0, 1, 6, 0, 0, 629, 0, '0.000000', 17, 0, 120, 1, 0, 1, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38660, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(161, 'w1d1', 'bnpc4021733', 4021733, '-221.606796', '23.819269', '-209.613205', 1395, 0, 0, 0, 1, 6, 0, 0, 629, 0, '0.000000', 17, 0, 120, 1, 0, 1, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38388, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(161, 'w1d1', 'bnpc4023381', 4023381, '-146.166199', '-9.231750', '-205.706894', 1396, 0, 0, 0, 1, 6, 0, 0, 631, 0, '0.000000', 17, 0, 120, 1, 0, 2, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33590, 1, 3, 30, 0, 0, 30246, 0, 0, 0), +(161, 'w1d1', 'bnpc4023383', 4023383, '-145.860992', '-8.468750', '-200.213699', 1396, 0, 0, 0, 1, 6, 0, 0, 631, 0, '0.000000', 17, 0, 120, 1, 0, 2, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33862, 1, 3, 31, 0, 0, 30246, 0, 0, 0), +(161, 'w1d1', 'bnpc4023399', 4023399, '-124.040604', '-4.623535', '-184.405304', 1395, 0, 0, 0, 1, 6, 0, 0, 629, 0, '0.000000', 17, 0, 120, 1, 0, 3, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37120, 1, 3, 55, 0, 0, 30246, 0, 0, 0), +(161, 'w1d1', 'bnpc4023402', 4023402, '-126.878799', '-4.684570', '-177.447205', 1396, 0, 0, 0, 1, 6, 0, 0, 631, 0, '0.000000', 17, 0, 120, 1, 0, 3, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30582, 1, 3, 56, 0, 0, 30246, 0, 0, 0), +(161, 'w1d1', 'bnpc4023404', 4023404, '-64.274094', '-5.396020', '-167.070999', 1395, 0, 0, 0, 1, 3, 0, 0, 629, 0, '0.000000', 17, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37392, 1, 3, 112, 0, 0, 30246, 0, 0, 0), +(161, 'w1d1', 'bnpc4023421', 4023421, '-77.286987', '-6.032864', '-156.912903', 1398, 0, 0, 0, 0, 6, 0, 0, 97, 0, '0.000000', 17, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34690, 1, 3, 110, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023428', 4023428, '-143.322205', '-3.081284', '-140.752197', 1421, 0, 0, 0, 2, 6, 0, 0, 1342, 0, '0.000000', 17, 0, 120, 1, 0, 0, 0, 16, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31694, 1, 3, 33, 0, 0, 0, 4185233, 0, 0), +(161, 'w1d1', 'bnpc4023431', 4023431, '-142.412506', '-3.524841', '-150.865997', 1396, 0, 0, 0, 1, 6, 0, 0, 631, 0, '0.000000', 17, 0, 120, 1, 0, 4, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36038, 1, 3, 62, 0, 0, 30246, 0, 0, 0), +(161, 'w1d1', 'bnpc4023437', 4023437, '-141.537201', '-3.453618', '-154.343002', 1396, 0, 0, 0, 1, 6, 0, 0, 631, 0, '0.000000', 17, 0, 120, 1, 0, 4, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36310, 1, 3, 60, 0, 0, 30246, 0, 0, 0), +(161, 'w1d1', 'bnpc4023443', 4023443, '-57.877499', '-3.189148', '-197.344894', 1397, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 17, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35772, 1, 3, 118, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023453', 4023453, '-26.108219', '-6.820801', '-227.191605', 1397, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 17, 0, 120, 1, 0, 5, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35500, 1, 3, 150, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023455', 4023455, '17.440981', '-6.973389', '-210.864395', 1397, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 17, 0, 120, 1, 0, 6, 10, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35228, 1, 3, 194, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023457', 4023457, '17.624149', '-6.973389', '-198.229996', 1397, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 17, 0, 120, 1, 0, 6, 10, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34956, 1, 3, 195, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023474', 4023474, '0.045776', '-9.994690', '-144.914902', 1421, 0, 0, 0, 2, 6, 0, 0, 1342, 0, '0.000000', 17, 0, 120, 1, 0, 0, 0, 16, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32238, 1, 3, 144, 0, 0, 0, 4185238, 0, 0), +(161, 'w1d1', 'bnpc4023477', 4023477, '8.255066', '-10.055730', '-141.008698', 1395, 0, 0, 0, 1, 6, 0, 0, 629, 0, '0.000000', 17, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36848, 1, 3, 144, 0, 0, 30246, 0, 0, 0), +(161, 'w1d1', 'bnpc4023509', 4023509, '19.150089', '-42.404850', '40.970459', 1396, 0, 0, 0, 1, 6, 0, 0, 631, 0, '0.000000', 17, 0, 120, 1, 0, 10, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28010, 1, 3, 41, 0, 0, 30246, 0, 0, 0), +(161, 'w1d1', 'bnpc4023510', 4023510, '19.455200', '-43.625549', '52.567261', 1399, 0, 0, 0, 1, 6, 0, 0, 984, 0, '0.000000', 17, 0, 120, 1, 0, 10, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28300, 1, 3, 47, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023511', 4023511, '90.897949', '-42.069149', '46.951900', 1399, 0, 0, 0, 1, 6, 0, 0, 984, 0, '0.000000', 17, 0, 120, 1, 0, 11, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27756, 1, 3, 39, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023519', 4023519, '44.571529', '-9.964172', '-30.380739', 1399, 0, 0, 0, 1, 6, 0, 0, 984, 0, '0.000000', 17, 0, 120, 1, 0, 7, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34152, 1, 3, 28, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023521', 4023521, '48.799690', '-9.964172', '-28.939390', 1399, 0, 0, 0, 1, 6, 0, 0, 984, 0, '0.000000', 17, 0, 120, 1, 0, 7, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34424, 1, 3, 29, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023534', 4023534, '59.388741', '-38.564640', '37.886181', 1421, 0, 0, 0, 2, 6, 0, 0, 1342, 0, '0.000000', 17, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28578, 1, 3, 22, 0, 0, 0, 4185499, 0, 0), +(161, 'w1d1', 'bnpc4023537', 4023537, '58.518311', '-38.620670', '45.090328', 1399, 0, 0, 0, 1, 6, 0, 0, 984, 0, '0.000000', 17, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29404, 1, 3, 30, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023554', 4023554, '-26.226200', '-38.847931', '115.678596', 1402, 0, 0, 0, 1, 2, 0, 0, 986, 0, '0.000000', 17, 0, 120, 1, 0, 20, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25204, 1, 3, 131, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023556', 4023556, '-23.220060', '-38.633099', '105.317902', 1401, 0, 0, 0, 1, 6, 0, 0, 987, 0, '0.000000', 17, 0, 120, 1, 0, 20, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24938, 1, 3, 121, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023557', 4023557, '-34.409180', '-41.702999', '132.616104', 1402, 0, 0, 0, 1, 3, 0, 0, 986, 0, '0.000000', 17, 0, 120, 1, 0, 24, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26836, 1, 3, 150, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023558', 4023558, '-52.589142', '-41.700001', '152.572906', 1402, 0, 0, 0, 1, 3, 0, 0, 986, 0, '0.000000', 17, 0, 120, 1, 0, 21, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27108, 1, 3, 176, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023559', 4023559, '-38.814510', '-41.700001', '159.015594', 1399, 0, 0, 0, 1, 3, 0, 0, 984, 0, '0.000000', 17, 0, 120, 1, 0, 21, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25996, 1, 3, 174, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023560', 4023560, '-54.795170', '-37.521969', '88.853271', 1403, 0, 0, 0, 0, 12, 0, 0, 1302, 0, '2.200000', 17, 3, 120, 1, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27374, 1, 3, 132, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023566', 4023566, '-51.163509', '-39.932919', '111.650299', 1401, 0, 0, 0, 1, 6, 0, 0, 987, 0, '0.000000', 17, 0, 120, 1, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26298, 1, 3, 145, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023568', 4023568, '-58.091129', '-39.322510', '105.668701', 1401, 0, 0, 0, 1, 6, 0, 0, 987, 0, '0.000000', 17, 0, 120, 1, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26570, 1, 3, 145, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023570', 4023570, '-75.837784', '-36.297039', '115.968102', 1401, 0, 0, 0, 0, 6, 0, 0, 987, 0, '0.000000', 17, 0, 120, 1, 0, 13, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25482, 1, 3, 167, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4023571', 4023571, '-94.468628', '-38.406979', '113.481300', 1399, 0, 0, 0, 1, 6, 0, 0, 984, 0, '0.000000', 17, 0, 120, 1, 0, 13, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25724, 1, 3, 180, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4056604', 4056604, '34.836300', '-39.444641', '67.276978', 1396, 0, 0, 0, 1, 6, 0, 0, 631, 0, '0.000000', 17, 0, 120, 1, 0, 12, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29114, 1, 3, 55, 0, 0, 30246, 0, 0, 0), +(161, 'w1d1', 'bnpc4056605', 4056605, '41.428219', '-40.268620', '64.530403', 1399, 0, 0, 0, 1, 6, 0, 0, 984, 0, '0.000000', 17, 0, 120, 1, 0, 12, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29676, 1, 3, 51, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4086956', 4086956, '29.977940', '0.374311', '-91.676529', 944, 0, 0, 0, 1, 6, 0, 0, 716, 0, '0.000000', 17, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4086957', 4086957, '30.563841', '0.381470', '-92.210327', 945, 0, 0, 0, 1, 6, 0, 0, 983, 0, '0.000000', 17, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4086968', 4086968, '24.551571', '-37.953899', '111.619598', 949, 0, 0, 0, 1, 6, 0, 0, 554, 0, '0.000000', 17, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20134, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4086969', 4086969, '21.451080', '-38.048481', '112.504799', 950, 0, 0, 0, 1, 6, 0, 0, 554, 0, '0.000000', 17, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19868, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4086970', 4086970, '23.470831', '-38.018730', '113.420303', 951, 0, 0, 0, 1, 6, 0, 0, 554, 0, '0.000000', 17, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19602, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4086971', 4086971, '33.817921', '-37.971001', '113.580399', 947, 0, 0, 0, 1, 6, 0, 0, 555, 0, '0.000000', 17, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18538, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4086973', 4086973, '49.064171', '-38.007839', '113.725502', 946, 0, 0, 0, 1, 6, 0, 0, 985, 0, '0.000000', 17, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4087098', 4087098, '47.135010', '-9.353821', '-92.576477', 944, 0, 0, 0, 1, 3, 0, 0, 716, 0, '0.000000', 17, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16732, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4088761', 4088761, '-94.804321', '-6.515625', '-196.093704', 1421, 0, 0, 0, 5, 6, 0, 0, 1342, 0, '0.000000', 17, 0, 120, 1, 0, 0, 0, 16, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31966, 1, 3, 75, 0, 0, 0, 4185237, 0, 0), +(161, 'w1d1', 'bnpc4088763', 4088763, '-32.028690', '-6.820801', '-228.168198', 1395, 0, 0, 0, 1, 6, 0, 0, 629, 0, '0.000000', 17, 0, 120, 1, 0, 5, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37664, 1, 3, 144, 0, 0, 30246, 0, 0, 0), +(161, 'w1d1', 'bnpc4088765', 4088765, '7.705750', '-9.994690', '-150.286102', 1396, 0, 0, 0, 1, 6, 0, 0, 631, 0, '0.000000', 17, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36582, 1, 3, 152, 0, 0, 30246, 0, 0, 0), +(161, 'w1d1', 'bnpc4127514', 4127514, '35.971081', '-9.091773', '-110.740097', 944, 0, 0, 0, 1, 6, 0, 0, 716, 0, '0.000000', 17, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4127515', 4127515, '59.643059', '-9.049066', '-77.428169', 944, 0, 0, 0, 1, 6, 0, 0, 716, 0, '0.000000', 17, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17596, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4185232', 4185232, '-40.878910', '-6.820801', '-224.811203', 1421, 0, 0, 0, 5, 6, 0, 0, 1342, 0, '0.000000', 17, 0, 120, 1, 0, 0, 0, 16, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31422, 1, 3, 135, 0, 0, 0, 4185305, 0, 0), +(161, 'w1d1', 'bnpc4185504', 4185504, '5.477966', '-6.973389', '-178.912003', 1421, 0, 0, 0, 5, 6, 0, 0, 1342, 0, '0.000000', 17, 0, 120, 1, 0, 0, 0, 16, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32510, 1, 3, 135, 0, 0, 0, 4185305, 0, 0), +(161, 'w1d1', 'bnpc4203109', 4203109, '-29.750641', '-6.841095', '-234.490097', 1421, 0, 0, 0, 5, 6, 0, 0, 1342, 0, '0.000000', 17, 0, 120, 1, 0, 0, 0, 16, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31150, 1, 3, 75, 0, 0, 0, 4185237, 0, 0), +(161, 'w1d1', 'bnpc4203110', 4203110, '-87.813980', '-6.637791', '-207.030899', 1395, 0, 0, 0, 1, 6, 0, 0, 629, 0, '0.000000', 17, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30848, 1, 3, 55, 0, 0, 30246, 0, 0, 0), +(161, 'w1d1', 'bnpc4203111', 4203111, '-72.739807', '-41.031559', '150.011398', 1402, 0, 0, 0, 1, 3, 0, 0, 986, 0, '0.000000', 17, 0, 120, 1, 0, 23, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24660, 1, 3, 188, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4203112', 4203112, '-66.331047', '-41.702999', '164.232803', 1399, 0, 0, 0, 1, 6, 0, 0, 984, 0, '0.000000', 17, 0, 120, 1, 0, 23, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24364, 1, 3, 194, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4203113', 4203113, '-69.291260', '-41.702999', '160.357101', 1399, 0, 0, 0, 1, 6, 0, 0, 984, 0, '0.000000', 17, 0, 120, 1, 0, 23, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24092, 1, 3, 194, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4219558', 4219558, '-29.842501', '-37.835350', '109.152100', 1401, 0, 0, 0, 1, 6, 0, 0, 987, 0, '0.000000', 17, 0, 120, 1, 0, 20, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23850, 1, 3, 128, 0, 0, 0, 0, 0, 0), +(161, 'w1d1', 'bnpc4219559', 4219559, '-31.695419', '-41.700008', '129.802200', 1402, 0, 0, 0, 1, 3, 0, 0, 986, 0, '0.000000', 17, 0, 120, 1, 0, 24, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23572, 1, 3, 147, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3985408', 3985408, '188.372604', '6.271411', '-36.606441', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 11, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52794, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3985409', 3985409, '190.630905', '6.240893', '-34.012409', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 11, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52528, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(162, 'w1d2', 'bnpc3985410', 3985410, '146.990097', '-1.236023', '-43.839230', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 18, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51984, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(162, 'w1d2', 'bnpc3985412', 3985412, '148.546494', '-1.236023', '-38.040829', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 18, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 54154, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3985416', 3985416, '104.265602', '-3.711910', '55.363880', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 14, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53338, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3985471', 3985471, '109.147697', '-3.738525', '84.183960', 1415, 0, 0, 0, 5, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54420, 1, 3, 2000, 0, 0, 0, 4099481, 0, 0), +(162, 'w1d2', 'bnpc3985472', 3985472, '94.773682', '-3.738525', '36.209591', 1415, 0, 0, 0, 5, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54692, 1, 3, 2000, 0, 0, 0, 4099479, 0, 0), +(162, 'w1d2', 'bnpc3987549', 3987549, '135.484894', '-1.693787', '-6.088379', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 12, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53066, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3987550', 3987550, '137.804199', '-1.663330', '-8.773987', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 12, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52256, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(162, 'w1d2', 'bnpc3987551', 3987551, '139.879395', '-1.663330', '-5.996826', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 12, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51712, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(162, 'w1d2', 'bnpc3987552', 3987552, '165.056793', '6.210388', '-65.232361', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 19, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53882, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3987553', 3987553, '163.744507', '6.240893', '-68.040024', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 19, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51168, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(162, 'w1d2', 'bnpc3987555', 3987555, '104.997200', '-3.738525', '58.518311', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 14, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51440, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(162, 'w1d2', 'bnpc3987556', 3987556, '77.012230', '-10.879730', '-96.665947', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 21, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47108, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3987557', 3987557, '73.227997', '-10.879730', '-95.811440', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 21, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46564, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3987558', 3987558, '48.477859', '-10.910250', '-85.771004', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46020, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3987559', 3987559, '44.235859', '-10.910250', '-92.484978', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46292, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3987560', 3987560, '48.569420', '-10.940770', '-90.867523', 1412, 0, 0, 0, 1, 6, 0, 0, 1190, 0, '0.000000', 20, 0, 120, 1, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48734, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3987562', 3987562, '-5.882465', '-2.500548', '-112.894798', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 23, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45748, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3987563', 3987563, '-12.134020', '-1.660716', '-116.404404', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 23, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45476, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3987564', 3987564, '9.079041', '-11.062810', '-182.909897', 1412, 0, 0, 0, 1, 6, 0, 0, 1190, 0, '0.000000', 20, 0, 120, 1, 0, 24, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48190, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3987565', 3987565, '12.466550', '-11.062810', '-180.743195', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 24, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47652, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3987566', 3987566, '12.313960', '-11.062810', '-187.060394', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 24, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47924, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3987572', 3987572, '-83.115967', '-10.818660', '-97.581482', 1412, 0, 0, 0, 1, 6, 0, 0, 1190, 0, '0.000000', 20, 0, 120, 1, 0, 26, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48462, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3987624', 3987624, '-82.963379', '-10.788150', '-91.050659', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 26, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47380, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3987626', 3987626, '-10.551780', '-1.897295', '-112.223503', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 23, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46836, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3987628', 3987628, '21.628969', '0.927666', '135.966904', 973, 0, 0, 0, 0, 6, 0, 0, 1194, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28462, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3998626', 3998626, '57.816410', '9.140137', '107.225098', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 15, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53610, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc3998629', 3998629, '-131.242905', '3.646851', '-31.540409', 1413, 0, 0, 0, 1, 6, 0, 0, 1191, 0, '0.000000', 20, 0, 120, 1, 0, 31, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42994, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(162, 'w1d2', 'bnpc3998632', 3998632, '-153.490494', '9.384277', '11.093260', 1413, 0, 0, 0, 1, 6, 0, 0, 1191, 0, '0.000000', 20, 0, 120, 1, 0, 32, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42722, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(162, 'w1d2', 'bnpc3998633', 3998633, '-158.801300', '9.416150', '4.597439', 1413, 0, 0, 0, 1, 6, 0, 0, 1191, 0, '0.000000', 20, 0, 120, 1, 0, 32, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42450, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(162, 'w1d2', 'bnpc4101016', 4101016, '-179.701599', '-15.010420', '-135.818604', 975, 0, 0, 0, 0, 6, 0, 0, 1196, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24020, 1, 6, 2000, 0, 0, 30246, 0, 0, 0), +(162, 'w1d2', 'bnpc4101020', 4101020, '-271.131409', '17.225630', '19.957199', 979, 0, 0, 0, 0, 6, 0, 0, 1197, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39450, 1, 2, 2000, 0, 0, 30246, 0, 0, 0), +(162, 'w1d2', 'bnpc4101025', 4101025, '74.758507', '-11.019170', '-106.685204', 980, 0, 0, 0, 0, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12102, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101034', 4101034, '42.389832', '-10.958640', '-84.790253', 980, 0, 0, 0, 0, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11830, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101041', 4101041, '17.399370', '-11.009910', '-190.064896', 980, 0, 0, 0, 0, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11558, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101069', 4101069, '-38.694679', '-11.068510', '-128.949997', 980, 0, 0, 0, 0, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11286, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101077', 4101077, '-82.434219', '-10.965880', '-112.949203', 980, 0, 0, 0, 0, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11014, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101086', 4101086, '76.646004', '-11.093380', '-106.126503', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 51, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 7928, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101092', 4101092, '73.380623', '-10.879700', '-108.445900', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 51, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 8744, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101093', 4101093, '73.672859', '-11.132110', '-105.518997', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 51, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 9560, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101094', 4101094, '41.112499', '-10.851840', '-83.733414', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 52, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 8472, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101095', 4101095, '40.833912', '-10.910920', '-86.653191', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 52, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 8200, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101096', 4101096, '44.106239', '-11.004630', '-84.335793', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 52, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 9016, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101102', 4101102, '16.404329', '-11.333980', '-188.701797', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 53, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 9832, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101103', 4101103, '16.125740', '-11.264760', '-191.621597', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 53, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 10104, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101104', 4101104, '19.398069', '-11.096800', '-189.304199', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 53, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 9288, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101105', 4101105, '-37.876389', '-11.062810', '-127.699898', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 54, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 6296, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101106', 4101106, '-38.241859', '-10.987660', '-130.443604', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 54, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 7656, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101107', 4101107, '-40.016979', '-10.960150', '-128.126099', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 54, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 7384, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101109', 4101109, '-81.944260', '-11.055860', '-111.718002', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 55, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 6568, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101110', 4101110, '-80.835564', '-10.933210', '-113.694901', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 55, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 7112, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101111', 4101111, '-84.084839', '-11.002010', '-112.144203', 1416, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 55, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 6840, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101127', 4101127, '-125.108803', '9.811523', '-0.320496', 1414, 0, 0, 0, 0, 6, 0, 0, 1192, 0, '0.000000', 20, 0, 120, 1, 0, 35, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41640, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101177', 4101177, '-108.254402', '10.234440', '3.719265', 1413, 0, 0, 0, 1, 6, 0, 0, 1191, 0, '0.000000', 20, 0, 120, 1, 0, 33, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42178, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(162, 'w1d2', 'bnpc4101178', 4101178, '-111.794998', '9.833187', '-3.942090', 1413, 0, 0, 0, 1, 6, 0, 0, 1191, 0, '0.000000', 20, 0, 120, 1, 0, 33, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41906, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(162, 'w1d2', 'bnpc4101380', 4101380, '-19.621960', '2.187741', '152.235504', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28196, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101382', 4101382, '-19.622000', '2.187700', '152.235504', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27924, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101387', 4101387, '-19.622000', '2.187700', '152.235504', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27652, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101388', 4101388, '-19.622000', '2.187700', '152.235504', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27380, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101392', 4101392, '24.526211', '2.233568', '180.544693', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27108, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101393', 4101393, '24.526171', '2.233568', '180.544601', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26836, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101394', 4101394, '24.526171', '2.233568', '180.544601', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26564, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101395', 4101395, '24.526171', '2.233568', '180.544601', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26292, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101398', 4101398, '88.949608', '2.247609', '139.983795', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26020, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101399', 4101399, '88.949562', '2.247609', '139.983795', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25748, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101400', 4101400, '88.949562', '2.247609', '139.983795', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25476, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101401', 4101401, '88.949562', '2.247609', '139.983795', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25204, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101405', 4101405, '-19.622000', '2.187700', '152.235504', 972, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24938, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101408', 4101408, '24.526199', '2.233600', '180.544601', 972, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24666, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101409', 4101409, '88.944817', '2.243042', '139.970901', 972, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24394, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101411', 4101411, '-176.216599', '-15.010410', '-132.392700', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23754, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101413', 4101413, '-175.270493', '-15.010420', '-133.125107', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23482, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101414', 4101414, '-175.941895', '-15.010400', '-131.416107', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23210, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101415', 4101415, '-175.112595', '-15.010410', '-131.973206', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22938, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101416', 4101416, '-175.112595', '-15.010410', '-131.973206', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22666, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101417', 4101417, '-175.117905', '-15.010410', '-131.996002', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22394, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101418', 4101418, '-175.112595', '-15.010410', '-131.973206', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22122, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101419', 4101419, '-175.112595', '-15.010410', '-131.973206', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21850, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101420', 4101420, '-175.112595', '-15.010410', '-131.973206', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21578, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101424', 4101424, '-277.452209', '17.568609', '40.437000', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39184, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101447', 4101447, '-277.452209', '17.568600', '40.437000', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38912, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101448', 4101448, '-277.452209', '17.568600', '40.437000', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38640, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101449', 4101449, '-277.452209', '17.568600', '40.437000', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38368, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101450', 4101450, '-255.683197', '17.570080', '47.316502', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38096, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101451', 4101451, '-255.683197', '17.570080', '47.316502', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37824, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101452', 4101452, '-255.683197', '17.570080', '47.316502', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37552, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101453', 4101453, '-255.683197', '17.570080', '47.316502', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37280, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101456', 4101456, '-237.304703', '17.604349', '38.752121', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37008, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101457', 4101457, '-237.304703', '17.604349', '38.752110', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36736, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101458', 4101458, '-237.304703', '17.604349', '38.752110', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36464, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101459', 4101459, '-237.304703', '17.604349', '38.752110', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36192, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101460', 4101460, '-278.928406', '17.555901', '-2.495306', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35920, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101461', 4101461, '-278.928497', '17.555901', '-2.495310', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35648, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101462', 4101462, '-278.928497', '17.555901', '-2.495310', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35376, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101463', 4101463, '-278.928497', '17.555901', '-2.495310', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35104, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101465', 4101465, '-261.221313', '17.568060', '-10.768690', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34832, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101466', 4101466, '-261.221313', '17.568060', '-10.768700', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34560, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101467', 4101467, '-261.221313', '17.568060', '-10.768700', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34288, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101468', 4101468, '-261.221313', '17.568060', '-10.768700', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34016, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101469', 4101469, '-239.437195', '17.568661', '-4.146132', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33744, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101470', 4101470, '-239.437195', '17.568661', '-4.146136', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33472, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101471', 4101471, '-239.437195', '17.568661', '-4.146136', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33200, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101472', 4101472, '-239.437195', '17.568661', '-4.146136', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32928, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101474', 4101474, '-277.452209', '17.568600', '40.437000', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32662, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101476', 4101476, '-255.683197', '17.570101', '47.316502', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32390, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101477', 4101477, '-237.304703', '17.604401', '38.752102', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32118, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101478', 4101478, '-278.928497', '17.555901', '-2.495300', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31846, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101498', 4101498, '-261.221313', '17.568100', '-10.768700', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31574, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101503', 4101503, '-239.437195', '17.568701', '-4.146100', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31302, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101506', 4101506, '-238.260498', '17.225630', '16.361401', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31036, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101509', 4101509, '-237.357101', '17.270950', '17.146231', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30764, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101510', 4101510, '-237.269501', '17.225630', '15.551390', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30492, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101511', 4101511, '-237.011200', '17.225630', '16.393320', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30220, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101512', 4101512, '-237.011200', '17.225630', '16.393270', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29948, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101513', 4101513, '-237.011200', '17.225630', '16.393270', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29676, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101514', 4101514, '-237.011200', '17.225630', '16.393270', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29404, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101515', 4101515, '-237.011200', '17.225630', '16.393270', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29132, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4101516', 4101516, '-237.011200', '17.225630', '16.393270', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28860, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4145049', 4145049, '-126.115898', '9.811523', '2.945007', 1414, 0, 0, 0, 0, 6, 0, 0, 1192, 0, '0.000000', 20, 0, 120, 1, 0, 35, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41368, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4184459', 4184459, '151.811905', '-1.236023', '-42.374329', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 18, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50896, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(162, 'w1d2', 'bnpc4184460', 4184460, '100.752899', '-3.711910', '56.330582', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 14, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50624, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(162, 'w1d2', 'bnpc4186800', 4186800, '54.306759', '9.140137', '108.995102', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 15, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50352, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(162, 'w1d2', 'bnpc4186801', 4186801, '53.818481', '9.140137', '105.546600', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 15, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50080, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(162, 'w1d2', 'bnpc4195685', 4195685, '-78.782349', '-10.727110', '-92.668091', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 26, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45204, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4195704', 4195704, '-140.581406', '9.414734', '26.657471', 1415, 0, 0, 0, 2, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40676, 1, 3, 2000, 0, 0, 0, 4195689, 0, 0), +(162, 'w1d2', 'bnpc4195708', 4195708, '-117.237000', '9.870837', '-16.448339', 1415, 0, 0, 0, 2, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40404, 1, 3, 2000, 0, 0, 0, 4195703, 0, 0), +(162, 'w1d2', 'bnpc4205320', 4205320, '-14.206180', '-11.123840', '-149.065399', 1412, 0, 0, 0, 1, 6, 0, 0, 1190, 0, '0.000000', 20, 0, 120, 1, 0, 25, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44926, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4205321', 4205321, '-10.959080', '-11.071360', '-153.204498', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 25, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44660, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4205322', 4205322, '-10.806490', '-11.287730', '-146.887207', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 25, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44388, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4205423', 4205423, '-1.384451', '-11.093320', '-189.403397', 1411, 0, 0, 0, 2, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43908, 1, 3, 2000, 0, 0, 0, 4205333, 0, 0), +(162, 'w1d2', 'bnpc4223448', 4223448, '143.410599', '-1.641949', '-48.361370', 1415, 0, 0, 0, 2, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49620, 1, 3, 2000, 0, 0, 0, 4222729, 0, 0), +(162, 'w1d2', 'bnpc4223455', 4223455, '32.704960', '5.047771', '95.782066', 1415, 0, 0, 0, 5, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49140, 1, 3, 2000, 0, 0, 0, 4223451, 0, 0), +(162, 'w1d2', 'bnpc4223458', 4223458, '0.564514', '-11.032290', '-175.127808', 1412, 0, 0, 0, 5, 6, 0, 0, 1190, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43374, 1, 3, 2000, 0, 0, 0, 4223456, 0, 0), +(162, 'w1d2', 'bnpc4223460', 4223460, '-124.084900', '2.072251', '-33.390331', 1415, 0, 0, 0, 5, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39908, 1, 3, 2000, 0, 0, 0, 4223459, 0, 0), +(162, 'w1d2', 'bnpc4600278', 4600278, '-274.195587', '17.225630', '18.911619', 1697, 0, 0, 0, 8, 6, 0, 0, 2161, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20584, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(162, 'w1d2', 'bnpc4614872', 4614872, '-261.326599', '17.225630', '-3.968693', 1698, 0, 0, 0, 8, 6, 0, 0, 656, 0, '80.000000', 49, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20178, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4614873', 4614873, '-265.108704', '17.327801', '34.212910', 1698, 0, 0, 0, 8, 6, 0, 0, 656, 0, '80.000000', 49, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19906, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4614874', 4614874, '-239.788300', '17.225630', '27.443600', 1698, 0, 0, 0, 8, 6, 0, 0, 656, 0, '80.000000', 49, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19634, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4614883', 4614883, '-257.017609', '17.206200', '17.462620', 2043, 0, 0, 0, 3, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4614886', 4614886, '-259.853485', '17.225630', '10.268560', 1993, 0, 0, 0, 3, 6, 0, 0, 0, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19102, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(162, 'w1d2', 'bnpc4614887', 4614887, '-260.101105', '17.232479', '22.606119', 1994, 0, 0, 0, 3, 6, 0, 0, 0, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002707', 4002707, '-147.346207', '11.978280', '0.016660', 1762, 0, 0, 0, 1, 6, 0, 0, 1574, 0, '0.000000', 35, 0, 120, 1, 0, 11, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38844, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002717', 4002717, '-134.935501', '-8.278116', '68.009399', 1762, 0, 0, 0, 1, 6, 0, 0, 1574, 0, '0.000000', 35, 0, 120, 1, 0, 12, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38300, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002718', 4002718, '-146.410294', '-9.000017', '61.997311', 1764, 0, 0, 0, 0, 6, 0, 0, 1576, 0, '0.000000', 35, 0, 120, 1, 0, 12, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36952, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(163, 'w1d3', 'bnpc4002719', 4002719, '-135.942703', '-9.000010', '55.954830', 1762, 0, 0, 0, 1, 6, 0, 0, 1574, 0, '0.000000', 35, 0, 120, 1, 0, 12, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38572, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002722', 4002722, '-132.066895', '-17.988871', '11.672100', 1762, 0, 0, 0, 1, 6, 0, 0, 1574, 0, '0.000000', 35, 0, 120, 1, 0, 13, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38028, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002725', 4002725, '-142.146805', '-18.626310', '11.975880', 1762, 0, 0, 0, 1, 6, 0, 0, 1574, 0, '0.000000', 35, 0, 120, 1, 0, 13, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36668, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002730', 4002730, '-137.911804', '-17.813480', '-14.153670', 1759, 0, 0, 0, 1, 6, 0, 0, 1573, 0, '0.000000', 35, 0, 120, 1, 0, 14, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23510, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002734', 4002734, '-146.318802', '-11.220560', '-62.272160', 1764, 0, 0, 0, 0, 6, 0, 0, 1576, 0, '0.000000', 35, 0, 120, 1, 0, 15, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36408, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(163, 'w1d3', 'bnpc4002736', 4002736, '-131.700607', '-9.545068', '-55.832821', 1762, 0, 0, 0, 1, 6, 0, 0, 1574, 0, '0.000000', 35, 0, 120, 1, 0, 15, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36124, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002742', 4002742, '-70.000000', '-11.997100', '-62.000000', 1753, 0, 0, 0, 0, 6, 0, 0, 1567, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27918, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002746', 4002746, '-63.000000', '-11.997100', '-67.000000', 1754, 0, 0, 0, 0, 6, 0, 0, 1568, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27652, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002765', 4002765, '-20.250000', '-17.621950', '0.000000', 1758, 0, 0, 0, 0, 6, 0, 0, 1572, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24864, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002774', 4002774, '-28.000000', '-18.081970', '0.000000', 1765, 0, 0, 0, 1, 6, 0, 0, 1577, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34930, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002776', 4002776, '8.987488', '-18.922461', '-11.500000', 1758, 0, 0, 0, 0, 6, 0, 0, 1572, 0, '2.900000', 35, 0, 120, 1, 0, 22, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24592, 1, 3, 40, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002777', 4002777, '8.987488', '-18.600830', '11.500000', 1758, 0, 0, 0, 0, 6, 0, 0, 1572, 0, '0.000000', 35, 0, 120, 1, 0, 22, 0, 50, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24320, 1, 3, 40, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002786', 4002786, '9.196899', '-19.028080', '-49.214989', 1764, 0, 0, 0, 0, 6, 0, 0, 1576, 0, '0.000000', 35, 0, 120, 1, 0, 23, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35196, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(163, 'w1d3', 'bnpc4002787', 4002787, '-0.545858', '-19.024570', '-37.716679', 1768, 0, 0, 0, 1, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 23, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33582, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002791', 4002791, '8.813293', '-19.028080', '48.712448', 1764, 0, 0, 0, 0, 6, 0, 0, 1576, 0, '0.000000', 35, 0, 120, 1, 0, 24, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35740, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(163, 'w1d3', 'bnpc4002792', 4002792, '-0.428451', '-19.000450', '48.619450', 1768, 0, 0, 0, 1, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 24, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33310, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002793', 4002793, '-0.335656', '-19.028080', '37.991692', 1764, 0, 0, 0, 1, 6, 0, 0, 1576, 0, '0.000000', 35, 0, 120, 1, 0, 24, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35468, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(163, 'w1d3', 'bnpc4002797', 4002797, '33.000000', '-18.027229', '-57.000000', 1765, 0, 0, 0, 1, 6, 0, 0, 1577, 0, '0.000000', 35, 0, 120, 1, 0, 25, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34658, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002804', 4002804, '48.320580', '-18.000839', '-83.763870', 1759, 0, 0, 0, 0, 6, 0, 0, 1573, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23238, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002805', 4002805, '80.745369', '-40.149670', '-52.630291', 1766, 0, 0, 0, 1, 6, 0, 0, 1578, 0, '0.000000', 35, 0, 120, 1, 0, 26, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34392, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(163, 'w1d3', 'bnpc4002807', 4002807, '68.216698', '-42.748901', '-44.738400', 1766, 0, 0, 0, 1, 6, 0, 0, 1578, 0, '0.000000', 35, 0, 120, 1, 0, 26, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34120, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(163, 'w1d3', 'bnpc4002808', 4002808, '67.612030', '-39.112598', '-61.225559', 1766, 0, 0, 0, 1, 6, 0, 0, 1578, 0, '0.000000', 35, 0, 120, 1, 0, 26, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33848, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(163, 'w1d3', 'bnpc4002814', 4002814, '53.517841', '-49.595589', '1.221717', 1755, 0, 0, 0, 0, 6, 0, 0, 1569, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27386, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002816', 4002816, '68.879700', '-37.787449', '63.340820', 1766, 0, 0, 0, 1, 6, 0, 0, 1578, 0, '0.000000', 35, 0, 120, 1, 0, 31, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29916, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(163, 'w1d3', 'bnpc4002819', 4002819, '33.000000', '-18.020941', '46.000000', 1765, 0, 0, 0, 1, 6, 0, 0, 1577, 0, '0.000000', 35, 0, 120, 1, 0, 32, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30182, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002823', 4002823, '57.846920', '-18.051510', '-0.015320', 1767, 0, 0, 0, 1, 6, 0, 0, 1579, 0, '0.000000', 35, 0, 120, 1, 0, 33, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30744, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002824', 4002824, '45.743599', '-18.953079', '0.000000', 1758, 0, 0, 0, 0, 6, 0, 0, 1572, 0, '0.000000', 35, 0, 120, 1, 0, 33, 0, 40, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24048, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002825', 4002825, '113.664398', '-4.013123', '0.000000', 1767, 0, 0, 0, 1, 6, 0, 0, 1579, 0, '0.000000', 35, 0, 120, 1, 0, 34, 0, 40, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30472, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002827', 4002827, '120.000000', '-3.951783', '0.000000', 1758, 0, 0, 0, 0, 6, 0, 0, 1572, 0, '0.000000', 35, 0, 120, 1, 0, 34, 0, 40, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23776, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002828', 4002828, '82.825897', '-9.046533', '-9.759582', 1759, 0, 0, 0, 0, 6, 0, 0, 1573, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22694, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002830', 4002830, '166.273804', '-4.013123', '0.000000', 1767, 0, 0, 0, 1, 6, 0, 0, 1579, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28840, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002831', 4002831, '178.734695', '-4.013204', '-0.390108', 1768, 0, 0, 0, 2, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31826, 1, 3, 2000, 0, 0, 0, 4332625, 0, 0), +(163, 'w1d3', 'bnpc4002832', 4002832, '151.275696', '-4.074219', '0.000000', 1768, 0, 0, 0, 2, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31554, 1, 3, 2000, 0, 0, 0, 4332618, 0, 0), +(163, 'w1d3', 'bnpc4002834', 4002834, '196.000000', '-4.013123', '-6.000000', 1767, 0, 0, 0, 1, 6, 0, 0, 1579, 0, '0.000000', 35, 0, 120, 1, 0, 36, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31016, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4002835', 4002835, '196.000000', '-4.013123', '6.000000', 1767, 0, 0, 0, 1, 6, 0, 0, 1579, 0, '0.000000', 35, 0, 120, 1, 0, 36, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31288, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4003470', 4003470, '184.000000', '-4.013123', '0.000000', 1764, 0, 0, 0, 1, 6, 0, 0, 1576, 0, '0.000000', 35, 0, 120, 1, 0, 36, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28544, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(163, 'w1d3', 'bnpc4003473', 4003473, '180.937698', '-4.001004', '0.064171', 1768, 0, 0, 0, 0, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 41, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 22234, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4003474', 4003474, '186.061096', '-4.000186', '-8.931304', 1768, 0, 0, 0, 0, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 41, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 21962, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4003475', 4003475, '186.610107', '-4.001005', '8.805372', 1768, 0, 0, 0, 0, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 41, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 21690, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4003478', 4003478, '243.000000', '-3.999998', '0.000000', 1756, 0, 0, 0, 0, 6, 0, 0, 1570, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27120, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4003480', 4003480, '252.877594', '-4.000015', '6.734541', 1761, 0, 0, 0, 0, 6, 0, 0, 1571, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26854, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4011583', 4011583, '-146.233093', '11.999800', '7.654619', 1762, 0, 0, 0, 1, 6, 0, 0, 1574, 0, '0.000000', 35, 0, 120, 1, 0, 11, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39388, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4011584', 4011584, '-146.542801', '11.978270', '-8.025117', 1762, 0, 0, 0, 1, 6, 0, 0, 1574, 0, '0.000000', 35, 0, 120, 1, 0, 11, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39116, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4011591', 4011591, '-138.444199', '-17.230869', '-18.199520', 1763, 0, 0, 0, 6, 6, 0, 0, 1575, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37762, 1, 3, 2000, 0, 0, 0, 4332609, 0, 0), +(163, 'w1d3', 'bnpc4011595', 4011595, '-133.491302', '-17.970011', '-15.460410', 1763, 0, 0, 0, 1, 6, 0, 0, 1575, 0, '0.000000', 35, 0, 120, 1, 0, 14, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37490, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4011596', 4011596, '-132.585602', '-8.475674', '-68.162109', 1763, 0, 0, 0, 1, 6, 0, 0, 1575, 0, '0.000000', 35, 0, 120, 1, 0, 15, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37218, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4011604', 4011604, '54.152130', '-18.174520', '-18.615360', 1768, 0, 0, 0, 0, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 42, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 21418, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4011605', 4011605, '58.126888', '-18.000191', '-15.000000', 1768, 0, 0, 0, 0, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 42, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 21146, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4011606', 4011606, '63.461189', '-18.000311', '-13.667890', 1768, 0, 0, 0, 0, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 42, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 20874, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4011610', 4011610, '54.165680', '-18.755880', '18.643330', 1768, 0, 0, 0, 0, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 43, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 20602, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4011611', 4011611, '58.115639', '-18.000130', '15.000000', 1768, 0, 0, 0, 0, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 43, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 20330, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4011612', 4011612, '63.466549', '-18.000500', '13.569460', 1768, 0, 0, 0, 0, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 43, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 20058, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4011619', 4011619, '107.965698', '-5.726979', '-20.812799', 1768, 0, 0, 0, 0, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 44, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 19786, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4011620', 4011620, '110.063400', '-4.000200', '-17.000000', 1768, 0, 0, 0, 0, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 44, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 19514, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4011621', 4011621, '114.438301', '-4.000540', '-13.863970', 1768, 0, 0, 0, 0, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 44, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 19242, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4011624', 4011624, '108.340302', '-3.915164', '20.762831', 1768, 0, 0, 0, 0, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 45, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 18970, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4011625', 4011625, '110.928802', '-4.000152', '17.000000', 1768, 0, 0, 0, 0, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 45, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 18698, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4011627', 4011627, '114.880402', '-4.000068', '13.893520', 1768, 0, 0, 0, 0, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 45, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 18426, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4064830', 4064830, '48.503819', '-19.000010', '20.675900', 1759, 0, 0, 0, 0, 6, 0, 0, 1573, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22966, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4295752', 4295752, '255.189194', '-3.999998', '3.680801', 1757, 0, 0, 0, 0, 6, 0, 0, 1798, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26588, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4305530', 4305530, '78.394257', '-36.884949', '62.154678', 1766, 0, 0, 0, 1, 6, 0, 0, 1578, 0, '0.000000', 35, 0, 120, 1, 0, 31, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29644, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(163, 'w1d3', 'bnpc4305531', 4305531, '85.525063', '-33.694248', '69.055977', 1766, 0, 0, 0, 1, 6, 0, 0, 1578, 0, '0.000000', 35, 0, 120, 1, 0, 31, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29372, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(163, 'w1d3', 'bnpc4305539', 4305539, '44.000000', '-18.051510', '46.000000', 1765, 0, 0, 0, 1, 6, 0, 0, 1577, 0, '0.000000', 35, 0, 120, 1, 0, 32, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29094, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4305912', 4305912, '-59.814259', '-12.008860', '-18.139240', 1763, 0, 0, 0, 6, 6, 0, 0, 1575, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32742, 1, 3, 2000, 0, 0, 0, 4332610, 0, 0), +(163, 'w1d3', 'bnpc4305915', 4305915, '-34.903019', '-17.999990', '6.347915', 1763, 0, 0, 0, 6, 6, 0, 0, 1575, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33014, 1, 3, 2000, 0, 0, 0, 4332611, 0, 0), +(163, 'w1d3', 'bnpc4312326', 4312326, '53.517799', '-49.595600', '1.221700', 2042, 0, 0, 0, 0, 6, 0, 0, 1490, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26322, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4323645', 4323645, '228.750000', '-4.000000', '-9.250000', 1757, 0, 0, 0, 0, 6, 0, 0, 1798, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26044, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4323648', 4323648, '247.250000', '-4.000000', '-9.250000', 1757, 0, 0, 0, 0, 6, 0, 0, 1798, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25772, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4323653', 4323653, '228.750000', '-4.000000', '9.250000', 1757, 0, 0, 0, 0, 6, 0, 0, 1798, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25500, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4323654', 4323654, '247.250000', '-4.000000', '9.250000', 1757, 0, 0, 0, 0, 6, 0, 0, 1798, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25228, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4332646', 4332646, '44.000000', '-18.020941', '-57.000000', 1765, 0, 0, 0, 1, 6, 0, 0, 1577, 0, '0.000000', 35, 0, 120, 1, 0, 25, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32482, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(163, 'w1d3', 'bnpc4332648', 4332648, '96.882927', '-44.059731', '-23.655331', 1768, 0, 0, 0, 2, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32222, 1, 3, 2000, 0, 0, 0, 4332612, 0, 0), +(163, 'w1d3', 'bnpc4332650', 4332650, '61.519970', '-41.309139', '49.972599', 1768, 0, 0, 0, 2, 6, 0, 0, 1580, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28290, 1, 3, 2000, 0, 0, 0, 4334440, 0, 0), +(164, 'f1d1', 'bnpc1332316', 1332316, '-48.829159', '14.045880', '-13.919290', 76, 0, 0, 0, 0, 0, 0, 0, 73, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 21588, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc1334952', 1334952, '-7.879776', '30.829121', '-16.246740', 82, 0, 0, 0, 0, 0, 0, 0, 79, 0, '0.000000', 16, 0, 0, 0, 0, 1, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 18620, 1, 6, 2000, 0, 0, 30111, 0, 0, 0), +(164, 'f1d1', 'bnpc1334953', 1334953, '-5.509180', '29.614531', '-18.574800', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 1, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 15652, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc1334954', 1334954, '-5.502441', '29.720200', '-14.650200', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 1, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 15380, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc1334955', 1334955, '-23.165661', '24.713131', '20.988779', 83, 0, 0, 0, 0, 0, 0, 0, 79, 0, '0.000000', 16, 0, 0, 0, 0, 2, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 18354, 1, 6, 2000, 0, 0, 30111, 0, 0, 0), +(164, 'f1d1', 'bnpc1334956', 1334956, '-20.111259', '23.654711', '21.363100', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 2, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 15108, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc1334957', 1334957, '-23.262150', '23.700979', '23.572571', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 2, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 14836, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc1334959', 1334959, '-21.286381', '23.605650', '22.873230', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 2, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 14564, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc1334960', 1334960, '-95.201912', '14.906600', '3.900912', 137, 0, 0, 0, 0, 0, 0, 0, 119, 0, '0.000000', 16, 0, 0, 0, 0, 3, 0, 30, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 18088, 1, 6, 2000, 0, 0, 30111, 0, 0, 0), +(164, 'f1d1', 'bnpc1334961', 1334961, '-92.004013', '13.656780', '12.243930', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 3, 0, 30, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 14292, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc1334962', 1334962, '-94.882767', '13.839910', '6.681185', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 3, 0, 30, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 14020, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc1334963', 1334963, '-92.223839', '13.656800', '15.158940', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 3, 0, 30, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 13748, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc1334965', 1334965, '-97.796120', '13.656800', '4.496320', 1345, 0, 0, 0, 0, 6, 0, 0, 109, 0, '0.500000', 16, 0, 0, 0, 0, 3, 0, 30, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 13476, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc1334967', 1334967, '-52.977772', '14.391350', '-24.628670', 126, 0, 0, 0, 0, 0, 0, 0, 110, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 20784, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc1334968', 1334968, '-50.477921', '14.391350', '-23.966190', 126, 0, 0, 0, 0, 0, 0, 0, 110, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 20512, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc1334969', 1334969, '-41.627171', '14.048270', '-18.482430', 126, 0, 0, 0, 0, 0, 0, 0, 110, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 20240, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc1334970', 1334970, '-40.026581', '14.391350', '-16.062910', 126, 0, 0, 0, 0, 0, 0, 0, 110, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 19968, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc1334971', 1334971, '-40.237289', '14.391350', '-6.984694', 126, 0, 0, 0, 0, 0, 0, 0, 110, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 19696, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc1334972', 1334972, '-41.977619', '14.389210', '-5.233891', 126, 0, 0, 0, 0, 0, 0, 0, 110, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 19424, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc1334973', 1334973, '-37.568890', '14.686780', '-11.828650', 125, 0, 0, 0, 0, 0, 0, 0, 456, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 21050, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc1334974', 1334974, '-45.151489', '14.053510', '-24.673880', 125, 0, 0, 0, 0, 0, 0, 0, 456, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 21322, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc1334975', 1334975, '-39.749802', '14.022990', '-17.898880', 127, 0, 0, 0, 0, 0, 0, 0, 111, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 18886, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc1334976', 1334976, '-51.377171', '14.297660', '-25.040100', 127, 0, 0, 0, 0, 0, 0, 0, 111, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 19158, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc2029061', 2029061, '-43.534031', '14.053510', '0.167802', 125, 0, 0, 0, 0, 0, 0, 0, 456, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 17786, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc2029064', 2029064, '-58.609951', '14.053510', '2.273547', 125, 0, 0, 0, 0, 0, 0, 0, 456, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 17514, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc2029065', 2029065, '-67.399147', '13.992480', '-16.250900', 125, 0, 0, 0, 0, 0, 0, 0, 456, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 17242, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc2029067', 2029067, '-58.518391', '14.053510', '-26.108231', 125, 0, 0, 0, 0, 0, 0, 0, 456, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 16970, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc2029118', 2029118, '-39.963421', '14.022990', '-5.142337', 127, 0, 0, 0, 0, 0, 0, 0, 111, 0, '0.000000', 16, 0, 0, 0, 0, 4, 0, 50, 15, 0, 1, 0, 1, 1, '0.000000', '1.000000', 16710, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc2372233', 2372233, '40.470921', '32.851158', '-29.631550', 1346, 0, 0, 0, 2, 0, 0, 0, 143, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33170, 1, 3, 2000, 0, 0, 0, 4217087, 0, 0), +(164, 'f1d1', 'bnpc2372238', 2372238, '64.605553', '35.355011', '-41.091770', 1346, 0, 0, 0, 1, 0, 0, 0, 143, 0, '0.000000', 16, 0, 120, 1, 0, 15, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32898, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc2372239', 2372239, '69.126572', '35.354961', '-42.002979', 1346, 0, 0, 0, 1, 6, 0, 0, 143, 0, '0.000000', 16, 0, 120, 1, 0, 15, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33442, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc2372249', 2372249, '81.677719', '40.937019', '-87.882561', 1352, 0, 0, 0, 2, 6, 0, 0, 147, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33708, 1, 3, 2000, 0, 0, 0, 4217086, 0, 0), +(164, 'f1d1', 'bnpc2372328', 2372328, '12.680240', '41.092529', '-88.731262', 1348, 0, 0, 0, 1, 6, 0, 0, 145, 0, '0.000000', 16, 0, 120, 1, 0, 13, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34512, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc2372348', 2372348, '59.586430', '40.115971', '-81.406921', 1348, 0, 0, 0, 1, 6, 0, 0, 145, 0, '0.000000', 16, 0, 120, 1, 0, 14, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34784, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc2372998', 2372998, '12.928850', '23.384501', '75.450447', 1350, 0, 0, 0, 1, 6, 0, 0, 111, 0, '0.000000', 16, 0, 120, 1, 0, 24, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30074, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc2372999', 2372999, '14.970920', '23.453131', '68.173920', 1350, 0, 0, 0, 1, 6, 0, 0, 111, 0, '0.000000', 16, 0, 120, 1, 0, 24, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29802, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc2373649', 2373649, '33.138599', '23.572519', '39.973331', 1347, 0, 0, 0, 2, 6, 0, 0, 144, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30612, 1, 3, 2000, 0, 0, 0, 4217089, 0, 0), +(164, 'f1d1', 'bnpc2373653', 2373653, '67.364571', '23.706730', '9.159799', 1350, 0, 0, 0, 1, 6, 0, 0, 111, 0, '0.000000', 16, 0, 120, 1, 0, 23, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30346, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc2373657', 2373657, '31.414961', '23.535040', '34.148060', 1349, 0, 0, 0, 1, 6, 0, 0, 146, 0, '0.000000', 16, 0, 120, 1, 0, 22, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30866, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc2373663', 2373663, '-110.948402', '13.778870', '15.976140', 1347, 0, 0, 0, 1, 6, 0, 0, 144, 0, '0.000000', 16, 0, 120, 1, 0, 36, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25836, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc2373664', 2373664, '-106.498497', '13.782470', '16.511530', 1346, 0, 0, 0, 2, 6, 0, 0, 143, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26374, 1, 3, 2000, 0, 0, 0, 4217097, 0, 0), +(164, 'f1d1', 'bnpc2373665', 2373665, '-171.587799', '12.649660', '-4.409851', 1388, 0, 0, 0, 0, 6, 0, 0, 1271, 0, '0.000000', 16, 0, 120, 1, 0, 41, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 22312, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc2373666', 2373666, '-171.831894', '12.649660', '-7.309082', 1346, 0, 0, 0, 0, 6, 0, 0, 143, 0, '0.000000', 16, 0, 120, 1, 0, 41, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 22022, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc2373667', 2373667, '-174.395401', '12.527650', '-3.097595', 1347, 0, 0, 0, 0, 6, 0, 0, 144, 0, '0.000000', 16, 0, 120, 1, 0, 41, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26108, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc2373676', 2373676, '-146.990204', '15.915160', '107.927002', 1352, 0, 0, 0, 2, 6, 0, 0, 147, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27456, 1, 3, 2000, 0, 0, 0, 4217145, 0, 0), +(164, 'f1d1', 'bnpc2373677', 2373677, '-150.957504', '15.976140', '99.320923', 1352, 0, 0, 0, 2, 6, 0, 0, 147, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27184, 1, 3, 2000, 0, 0, 0, 4217145, 0, 0), +(164, 'f1d1', 'bnpc2373715', 2373715, '-122.514702', '15.976140', '67.399048', 1351, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 16, 0, 120, 1, 0, 35, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26942, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc2380805', 2380805, '16.449720', '41.094021', '-86.946388', 1349, 0, 0, 0, 1, 6, 0, 0, 146, 0, '0.000000', 16, 0, 120, 1, 0, 13, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33974, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc2380810', 2380810, '-17.783590', '41.350811', '-71.202271', 1349, 0, 0, 0, 1, 6, 0, 0, 146, 0, '0.000000', 16, 0, 120, 1, 0, 12, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34246, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc2380906', 2380906, '21.159510', '23.392019', '74.739922', 1350, 0, 0, 0, 1, 6, 0, 0, 111, 0, '0.000000', 16, 0, 120, 1, 0, 24, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29258, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc2380915', 2380915, '8.138228', '29.253321', '14.000250', 1350, 0, 0, 0, 1, 6, 0, 0, 111, 0, '0.000000', 16, 0, 120, 1, 0, 21, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29530, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc2380939', 2380939, '-116.838402', '15.945620', '65.842651', 1351, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 16, 0, 120, 1, 0, 35, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26670, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc2380947', 2380947, '-174.700607', '12.649660', '-7.888916', 1347, 0, 0, 0, 0, 6, 0, 0, 144, 0, '0.000000', 16, 0, 120, 1, 0, 41, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25564, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc3859972', 3859972, '-6.003298', '30.123409', '-16.575911', 567, 0, 0, 0, 0, 6, 0, 0, 455, 0, '0.000000', 16, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16462, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc3859980', 3859980, '-21.867100', '24.093081', '22.095341', 567, 0, 0, 0, 0, 6, 0, 0, 455, 0, '0.000000', 16, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16190, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc3859984', 3859984, '-91.435806', '13.839910', '8.472486', 567, 0, 0, 0, 0, 6, 0, 0, 455, 0, '0.000000', 16, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15918, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc4174607', 4174607, '-57.175598', '44.296879', '-81.000000', 1346, 0, 0, 0, 0, 6, 0, 0, 143, 0, '0.000000', 16, 0, 120, 1, 0, 11, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32626, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc4174608', 4174608, '-52.406731', '44.357910', '-81.000000', 1346, 0, 0, 0, 0, 0, 0, 0, 143, 0, '0.000000', 16, 0, 120, 1, 0, 11, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32354, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc4174609', 4174609, '29.039829', '41.000000', '-89.874382', 1346, 0, 0, 0, 2, 0, 0, 0, 143, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32082, 1, 3, 2000, 0, 0, 0, 4217084, 0, 0), +(164, 'f1d1', 'bnpc4174646', 4174646, '69.138550', '23.727720', '5.813660', 1352, 0, 0, 0, 1, 6, 0, 0, 147, 0, '0.000000', 16, 0, 120, 1, 0, 23, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28968, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc4174678', 4174678, '-19.363770', '18.478640', '83.848267', 1388, 0, 0, 0, 2, 0, 0, 0, 1271, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25304, 1, 3, 2000, 0, 0, 0, 4217095, 0, 0), +(164, 'f1d1', 'bnpc4174715', 4174715, '-43.778141', '18.631229', '91.935547', 1351, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 16, 0, 120, 1, 0, 33, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25038, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc4174716', 4174716, '-49.499729', '18.298790', '93.392548', 1351, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 16, 0, 120, 1, 0, 33, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24766, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc4174717', 4174717, '-34.967670', '22.459360', '44.253990', 1351, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 16, 0, 120, 1, 0, 31, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24494, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc4174720', 4174720, '-107.621902', '13.778870', '21.225281', 1388, 0, 0, 0, 1, 0, 0, 0, 1271, 0, '0.000000', 16, 0, 120, 1, 0, 36, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24216, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc4217124', 4217124, '-14.097060', '41.316799', '-69.614777', 1349, 0, 0, 0, 1, 6, 0, 0, 146, 0, '0.000000', 16, 0, 120, 1, 0, 12, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31798, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc4217125', 4217125, '56.482510', '40.030540', '-76.111214', 1348, 0, 0, 0, 1, 6, 0, 0, 145, 0, '0.000000', 16, 0, 120, 1, 0, 14, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31520, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc4217126', 4217126, '96.232140', '40.815369', '-92.025398', 1352, 0, 0, 0, 2, 6, 0, 0, 147, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31260, 1, 3, 2000, 0, 0, 0, 4217086, 0, 0), +(164, 'f1d1', 'bnpc4217128', 4217128, '16.734699', '28.361031', '19.855450', 1388, 0, 0, 0, 2, 6, 0, 0, 1271, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28720, 1, 3, 2000, 0, 0, 0, 4217088, 0, 0), +(164, 'f1d1', 'bnpc4217129', 4217129, '5.583970', '31.072531', '10.059360', 1350, 0, 0, 0, 1, 6, 0, 0, 111, 0, '0.000000', 16, 0, 120, 1, 0, 21, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28442, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc4217130', 4217130, '34.267551', '23.549999', '30.522020', 1348, 0, 0, 0, 1, 6, 0, 0, 145, 0, '0.000000', 16, 0, 120, 1, 0, 22, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28140, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc4217131', 4217131, '35.855000', '23.514099', '34.362549', 1348, 0, 0, 0, 1, 6, 0, 0, 145, 0, '0.000000', 16, 0, 120, 1, 0, 22, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27868, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc4217134', 4217134, '-36.365040', '22.427361', '47.503910', 1351, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 16, 0, 120, 1, 0, 31, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23950, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(164, 'f1d1', 'bnpc4217140', 4217140, '-23.116039', '18.237049', '89.044937', 1349, 0, 0, 0, 1, 6, 0, 0, 146, 0, '0.000000', 16, 0, 120, 1, 0, 32, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23642, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc4217141', 4217141, '-21.102160', '18.475571', '84.030884', 1349, 0, 0, 0, 1, 6, 0, 0, 146, 0, '0.000000', 16, 0, 120, 1, 0, 32, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23370, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc4217142', 4217142, '-126.203102', '15.986050', '93.396667', 1347, 0, 0, 0, 1, 6, 0, 0, 144, 0, '0.000000', 16, 0, 120, 1, 0, 34, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23116, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc4217143', 4217143, '-128.609100', '15.956230', '88.970192', 1388, 0, 0, 0, 1, 0, 0, 0, 1271, 0, '0.000000', 16, 0, 120, 1, 0, 34, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 22856, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(164, 'f1d1', 'bnpc4217144', 4217144, '-125.389297', '16.065760', '89.869827', 1347, 0, 0, 0, 2, 6, 0, 0, 144, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22572, 1, 3, 2000, 0, 0, 0, 4217096, 0, 0), +(166, 'f1d2', 'bnpc3632938', 3632938, '-17.549959', '16.999559', '-0.015306', 255, 0, 0, 0, 0, 6, 0, 0, 422, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22936, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3632939', 3632939, '-11.642680', '16.952730', '16.952730', 256, 0, 0, 0, 0, 6, 0, 0, 424, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22670, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3632940', 3632940, '-11.764750', '16.952730', '5.386387', 256, 0, 0, 0, 0, 6, 0, 0, 424, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22398, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3632941', 3632941, '-3.933290', '16.999910', '-13.396540', 268, 0, 0, 0, 1, 6, 0, 0, 430, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20784, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3632942', 3632942, '-2.395713', '16.983240', '-13.034760', 268, 0, 0, 0, 1, 6, 0, 0, 430, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20512, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3632943', 3632943, '-2.670376', '16.983240', '-11.900090', 268, 0, 0, 0, 1, 6, 0, 0, 430, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20240, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3632944', 3632944, '-10.757660', '16.952730', '-5.722180', 256, 0, 0, 0, 1, 6, 0, 0, 424, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22126, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3632945', 3632945, '15.735680', '16.999950', '0.982255', 258, 0, 0, 0, 0, 6, 0, 0, 428, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21860, 1, 1, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3632946', 3632946, '-8.500743', '16.999990', '13.100490', 257, 0, 0, 0, 1, 6, 0, 0, 425, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21594, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3632947', 3632947, '-4.820143', '16.999701', '13.056220', 257, 0, 0, 0, 1, 6, 0, 0, 425, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21322, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3632949', 3632949, '-0.607302', '16.999680', '13.118200', 257, 0, 0, 0, 1, 6, 0, 0, 425, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21050, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3633631', 3633631, '17.230471', '-18.856701', '4.000000', 273, 0, 0, 0, 0, 6, 0, 0, 426, 0, '0.000000', 28, 0, 120, 1, 0, 20, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36842, 1, 6, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3633633', 3633633, '17.230471', '-18.814421', '-4.000000', 274, 0, 0, 0, 0, 6, 0, 0, 427, 0, '0.000000', 28, 0, 120, 1, 0, 20, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36576, 1, 6, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3633689', 3633689, '30.945589', '17.000000', '-0.020543', 275, 0, 0, 0, 1, 6, 0, 0, 428, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36310, 1, 6, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3633770', 3633770, '10.496440', '0.000000', '0.000000', 272, 0, 0, 0, 0, 6, 0, 0, 423, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36044, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3759943', 3759943, '-24.491131', '17.000000', '21.988319', 434, 0, 0, 0, 3, 6, 0, 0, 148, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16438, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3759975', 3759975, '-24.499519', '17.000000', '-13.997830', 434, 0, 0, 0, 3, 6, 0, 0, 148, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16166, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3759978', 3759978, '19.492319', '17.000000', '-14.006760', 434, 0, 0, 0, 3, 6, 0, 0, 148, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15894, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3760036', 3760036, '19.498489', '16.999981', '22.002020', 434, 0, 0, 0, 3, 6, 0, 0, 148, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15622, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3765532', 3765532, '3.343092', '16.999680', '13.074220', 257, 0, 0, 0, 1, 6, 0, 0, 425, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19962, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3765535', 3765535, '3.643092', '16.999680', '8.569304', 257, 0, 0, 0, 1, 6, 0, 0, 425, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19690, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3765536', 3765536, '-8.200743', '16.999990', '8.595573', 257, 0, 0, 0, 1, 6, 0, 0, 425, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19418, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3765537', 3765537, '-4.520143', '16.999701', '8.551302', 257, 0, 0, 0, 1, 6, 0, 0, 425, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19146, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3765538', 3765538, '-0.307302', '16.999680', '8.613277', 257, 0, 0, 0, 1, 6, 0, 0, 425, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18874, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3765547', 3765547, '-0.307302', '16.999680', '4.026476', 257, 0, 0, 0, 1, 6, 0, 0, 425, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18602, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3765548', 3765548, '-0.007302', '16.999680', '-0.478443', 257, 0, 0, 0, 1, 6, 0, 0, 425, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18330, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3765549', 3765549, '-4.520143', '16.999701', '3.964502', 257, 0, 0, 0, 1, 6, 0, 0, 425, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18058, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3765550', 3765550, '3.643092', '16.999680', '3.982503', 257, 0, 0, 0, 1, 6, 0, 0, 425, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17786, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3765551', 3765551, '3.943092', '16.999680', '-0.522416', 257, 0, 0, 0, 1, 6, 0, 0, 425, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17514, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3765552', 3765552, '-8.200743', '16.999990', '4.008773', 257, 0, 0, 0, 1, 6, 0, 0, 425, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17242, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3765553', 3765553, '-7.900743', '16.999990', '-0.496146', 257, 0, 0, 0, 1, 6, 0, 0, 425, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16970, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3765554', 3765554, '-4.220142', '16.999701', '-0.540418', 257, 0, 0, 0, 1, 6, 0, 0, 425, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16698, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3829865', 3829865, '-14.603660', '0.000000', '100.777496', 1365, 0, 0, 0, 1, 6, 0, 0, 433, 0, '0.000000', 28, 0, 120, 1, 0, 3, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32050, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3829880', 3829880, '44.061779', '0.000000', '67.954918', 1364, 0, 0, 0, 1, 6, 0, 0, 432, 0, '0.000000', 28, 0, 120, 1, 0, 2, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33780, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3829881', 3829881, '41.101528', '0.000000', '68.809433', 1364, 0, 0, 0, 1, 6, 0, 0, 432, 0, '0.000000', 28, 0, 120, 1, 0, 2, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34052, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3830293', 3830293, '42.810539', '0.000000', '71.067757', 1362, 0, 0, 0, 1, 6, 0, 0, 430, 0, '0.000000', 28, 0, 120, 1, 0, 2, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35134, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3830301', 3830301, '-12.955690', '0.000000', '100.289200', 1362, 0, 0, 0, 1, 6, 0, 0, 430, 0, '0.000000', 28, 0, 120, 1, 0, 3, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31766, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3830302', 3830302, '-40.353050', '0.000000', '38.128288', 1362, 0, 0, 0, 1, 6, 0, 0, 430, 0, '0.000000', 28, 0, 120, 1, 0, 4, 0, 20, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31222, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3830312', 3830312, '64.133621', '-0.198414', '34.897339', 1364, 0, 0, 0, 1, 6, 0, 0, 432, 0, '0.000000', 28, 0, 120, 1, 0, 1, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34324, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3830727', 3830727, '67.002312', '-0.198414', '34.683708', 1362, 0, 0, 0, 1, 6, 0, 0, 430, 0, '0.000000', 28, 0, 120, 1, 0, 1, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34862, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3847698', 3847698, '-83.273140', '-11.000400', '-4.425170', 1362, 0, 0, 0, 1, 6, 0, 0, 430, 0, '0.000000', 28, 0, 120, 1, 0, 6, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26990, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3847703', 3847703, '-82.749718', '-11.001800', '-7.522745', 1367, 0, 0, 0, 1, 6, 0, 0, 435, 0, '0.000000', 28, 0, 120, 1, 0, 6, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26742, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3847705', 3847705, '-61.661751', '-16.769711', '3.067016', 1367, 0, 0, 0, 1, 6, 0, 0, 435, 0, '0.000000', 28, 0, 120, 1, 0, 7, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25382, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3847709', 3847709, '-60.837761', '-16.830750', '5.661050', 1366, 0, 0, 0, 1, 6, 0, 0, 434, 0, '0.000000', 28, 0, 120, 1, 0, 7, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28912, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3847712', 3847712, '-58.915131', '-16.830750', '2.609246', 1366, 0, 0, 0, 1, 6, 0, 0, 434, 0, '0.000000', 28, 0, 120, 1, 0, 7, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29184, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3847719', 3847719, '-81.742622', '-11.001800', '-6.027360', 1366, 0, 0, 0, 1, 6, 0, 0, 434, 0, '0.000000', 28, 0, 120, 1, 0, 6, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27824, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3847732', 3847732, '-7.126010', '-18.875460', '-29.007450', 1366, 0, 0, 0, 1, 6, 0, 0, 434, 0, '0.000000', 28, 0, 120, 1, 0, 9, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28368, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3847733', 3847733, '-5.691662', '-18.844940', '-27.817240', 1366, 0, 0, 0, 1, 6, 0, 0, 434, 0, '0.000000', 28, 0, 120, 1, 0, 9, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28096, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3847742', 3847742, '36.850491', '-18.814421', '-49.332458', 1362, 0, 0, 0, 1, 6, 0, 0, 430, 0, '0.000000', 28, 0, 120, 1, 0, 10, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27534, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3847743', 3847743, '45.303989', '-18.905970', '9.323215', 1366, 0, 0, 0, 1, 6, 0, 0, 434, 0, '0.000000', 28, 0, 120, 1, 0, 11, 0, 20, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30272, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3847744', 3847744, '43.930679', '-18.905970', '11.795180', 1366, 0, 0, 0, 1, 6, 0, 0, 434, 0, '0.000000', 28, 0, 120, 1, 0, 11, 0, 20, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30544, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3847746', 3847746, '45.120880', '-18.905970', '14.572320', 1362, 0, 0, 0, 1, 6, 0, 0, 430, 0, '0.000000', 28, 0, 120, 1, 0, 11, 0, 20, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27262, 1, 3, 2000, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(166, 'f1d2', 'bnpc3847757', 3847757, '3.585823', '-19.211149', '48.294750', 1366, 0, 0, 0, 1, 6, 0, 0, 434, 0, '0.000000', 28, 0, 120, 1, 0, 12, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30816, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3847758', 3847758, '1.205416', '-19.180639', '47.043510', 1366, 0, 0, 0, 1, 6, 0, 0, 434, 0, '0.000000', 28, 0, 120, 1, 0, 12, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29456, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3847759', 3847759, '6.027267', '-18.875460', '46.616261', 1366, 0, 0, 0, 1, 6, 0, 0, 434, 0, '0.000000', 28, 0, 120, 1, 0, 12, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28640, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3847762', 3847762, '45.792271', '-18.814421', '13.168490', 1366, 0, 0, 0, 1, 6, 0, 0, 434, 0, '0.000000', 28, 0, 120, 1, 0, 11, 0, 20, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29728, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3847765', 3847765, '-40.512749', '-18.905970', '43.442390', 1366, 0, 0, 0, 1, 6, 0, 0, 434, 0, '0.000000', 28, 0, 120, 1, 0, 8, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30000, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3847803', 3847803, '-1.174992', '-18.844940', '-27.817240', 1367, 0, 0, 0, 1, 6, 0, 0, 435, 0, '0.000000', 28, 0, 120, 1, 0, 9, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26470, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3847806', 3847806, '33.524021', '-19.119600', '-47.165680', 1367, 0, 0, 0, 1, 6, 0, 0, 435, 0, '0.000000', 28, 0, 120, 1, 0, 10, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26198, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3847808', 3847808, '31.387760', '-19.180639', '-49.698681', 1367, 0, 0, 0, 1, 6, 0, 0, 435, 0, '0.000000', 28, 0, 120, 1, 0, 10, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25926, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3847818', 3847818, '-36.392811', '-18.875460', '47.562321', 1367, 0, 0, 0, 1, 6, 0, 0, 435, 0, '0.000000', 28, 0, 120, 1, 0, 8, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25654, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3847946', 3847946, '43.320309', '16.555990', '56.141708', 1363, 0, 0, 0, 1, 6, 0, 0, 431, 0, '0.000000', 28, 0, 120, 1, 0, 13, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23394, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3847947', 3847947, '39.017269', '16.464439', '57.694309', 1363, 0, 0, 0, 1, 6, 0, 0, 431, 0, '0.000000', 28, 0, 120, 1, 0, 13, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23666, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3847990', 3847990, '40.512650', '16.678061', '53.787998', 1368, 0, 0, 0, 1, 6, 0, 0, 625, 0, '0.000000', 28, 0, 120, 1, 0, 13, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24476, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3883210', 3883210, '8.651818', '16.922211', '-5.447517', 256, 0, 0, 0, 1, 6, 0, 0, 424, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15326, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3883211', 3883211, '7.644722', '16.922211', '5.630532', 256, 0, 0, 0, 0, 6, 0, 0, 424, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15054, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3883212', 3883212, '7.766795', '16.922211', '17.227390', 256, 0, 0, 0, 0, 6, 0, 0, 424, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14782, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3910736', 3910736, '8.005100', '0.000000', '50.934299', 1362, 0, 0, 0, 1, 6, 0, 0, 430, 0, '0.000000', 28, 0, 120, 1, 0, 21, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35678, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3910738', 3910738, '-41.702950', '-0.106860', '34.958370', 1362, 0, 0, 0, 1, 6, 0, 0, 430, 0, '0.000000', 28, 0, 120, 1, 0, 4, 0, 20, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31494, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3910739', 3910739, '-42.191238', '-0.198414', '36.697899', 1365, 0, 0, 0, 1, 6, 0, 0, 433, 0, '0.000000', 28, 0, 120, 1, 0, 4, 0, 20, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32322, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3910740', 3910740, '-40.604301', '-0.228932', '34.988892', 1365, 0, 0, 0, 1, 6, 0, 0, 433, 0, '0.000000', 28, 0, 120, 1, 0, 4, 0, 20, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33410, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3910741', 3910741, '-41.214661', '-0.198414', '-23.483681', 1365, 0, 0, 0, 1, 6, 0, 0, 433, 0, '0.000000', 28, 0, 120, 1, 0, 5, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32594, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3910742', 3910742, '-40.238091', '-0.228932', '-26.504971', 1365, 0, 0, 0, 1, 6, 0, 0, 433, 0, '0.000000', 28, 0, 120, 1, 0, 5, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32866, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3910743', 3910743, '-41.977619', '-0.259450', '-28.152941', 1365, 0, 0, 0, 1, 6, 0, 0, 433, 0, '0.000000', 28, 0, 120, 1, 0, 5, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33138, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3910744', 3910744, '8.010939', '16.678061', '99.412483', 1368, 0, 0, 0, 1, 6, 0, 0, 625, 0, '0.000000', 28, 0, 120, 1, 0, 14, 0, 20, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24204, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3910745', 3910745, '10.269270', '16.678061', '101.152000', 1368, 0, 0, 0, 1, 6, 0, 0, 625, 0, '0.000000', 28, 0, 120, 1, 0, 14, 0, 20, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24748, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3910746', 3910746, '24.826380', '16.678061', '96.482742', 1368, 0, 0, 0, 1, 6, 0, 0, 625, 0, '0.000000', 28, 0, 120, 1, 0, 14, 0, 20, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25020, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3910747', 3910747, '21.591471', '16.464439', '101.823402', 1363, 0, 0, 0, 1, 6, 0, 0, 431, 0, '0.000000', 28, 0, 120, 1, 0, 14, 0, 20, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23938, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(166, 'f1d2', 'bnpc3915161', 3915161, '10.111340', '0.000000', '56.711811', 1362, 0, 0, 0, 1, 6, 0, 0, 430, 0, '0.000000', 28, 0, 120, 1, 0, 21, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35406, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc3915162', 3915162, '8.402333', '0.000000', '54.453480', 1364, 0, 0, 0, 1, 6, 0, 0, 432, 0, '0.000000', 28, 0, 120, 1, 0, 21, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34596, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(166, 'f1d2', 'bnpc4090802', 4090802, '41.397709', '-0.015320', '76.981689', 276, 0, 0, 0, 5, 6, 0, 0, 633, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40664, 1, 3, 2000, 0, 0, 0, 4090791, 0, 0), +(166, 'f1d2', 'bnpc4090855', 4090855, '66.971802', '-0.015320', '29.984011', 276, 0, 0, 0, 5, 6, 0, 0, 633, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40296, 1, 3, 2000, 0, 0, 0, 4090851, 0, 0), +(166, 'f1d2', 'bnpc4090987', 4090987, '16.573429', '0.000000', '97.002113', 276, 0, 0, 0, 5, 6, 0, 0, 633, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39912, 1, 3, 2000, 0, 0, 0, 4090977, 0, 0), +(166, 'f1d2', 'bnpc4091011', 4091011, '-27.250710', '0.000000', '62.152168', 276, 0, 0, 0, 5, 6, 0, 0, 633, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39544, 1, 3, 2000, 0, 0, 0, 4091007, 0, 0), +(166, 'f1d2', 'bnpc4091013', 4091013, '-40.848450', '-0.015320', '47.470699', 276, 0, 0, 0, 5, 6, 0, 0, 633, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39272, 1, 3, 2000, 0, 0, 0, 4091021, 0, 0), +(166, 'f1d2', 'bnpc4091042', 4091042, '-31.601500', '-0.015320', '11.917240', 276, 0, 0, 0, 5, 6, 0, 0, 633, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38808, 1, 3, 2000, 0, 0, 0, 4091025, 0, 0), +(166, 'f1d2', 'bnpc4091061', 4091061, '-42.130192', '-0.015320', '47.710388', 276, 0, 0, 0, 5, 6, 0, 0, 633, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38536, 1, 3, 2000, 0, 0, 0, 4091606, 0, 0), +(166, 'f1d2', 'bnpc4091159', 4091159, '-24.063540', '-18.814390', '28.030760', 276, 0, 0, 0, 2, 6, 0, 0, 633, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37896, 1, 3, 2000, 0, 0, 0, 4178235, 0, 0), +(166, 'f1d2', 'bnpc4091293', 4091293, '24.521240', '-18.814390', '-28.000311', 276, 0, 0, 0, 2, 6, 0, 0, 633, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37624, 1, 3, 2000, 0, 0, 0, 4091133, 0, 0), +(167, 'f1d3', 'bnpc3995243', 3995243, '-94.895866', '-2.822998', '-0.045776', 1503, 0, 0, 0, 5, 6, 0, 0, 29, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 51020, 1, 3, 2000, 0, 0, 0, 4303717, 0, 0), +(167, 'f1d3', 'bnpc3995253', 3995253, '-196.612503', '-4.135254', '1.968323', 1496, 0, 0, 0, 0, 6, 0, 0, 1681, 0, '1.200000', 50, 0, 120, 1, 0, 14, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50488, 1, 3, 2000, 0, 0, 30265, 0, 0, 0), +(167, 'f1d3', 'bnpc3995255', 3995255, '-196.368301', '-4.013123', '0.198364', 1493, 0, 0, 0, 0, 6, 0, 0, 1681, 0, '1.200000', 50, 0, 120, 1, 0, 14, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50754, 1, 3, 2000, 0, 0, 30265, 0, 0, 0), +(167, 'f1d3', 'bnpc3995259', 3995259, '-25.711491', '0.198364', '0.076233', 1488, 0, 0, 0, 0, 6, 0, 0, 1689, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9582, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc3995263', 3995263, '-23.270020', '21.957701', '-27.206909', 1497, 0, 0, 0, 1, 6, 0, 0, 1682, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41598, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc3995265', 3995265, '-19.363770', '21.957701', '-23.453131', 1498, 0, 0, 0, 1, 6, 0, 0, 1683, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41332, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc3995267', 3995267, '179.807693', '21.999990', '-0.267257', 1499, 0, 0, 0, 0, 6, 0, 0, 1684, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39162, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc3995303', 3995303, '200.488297', '21.988159', '-0.015320', 1503, 0, 0, 0, 5, 6, 0, 0, 29, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41828, 1, 3, 2000, 0, 0, 0, 4306042, 0, 0), +(167, 'f1d3', 'bnpc3995389', 3995389, '225.589493', '44.199989', '-18.240000', 1503, 0, 0, 0, 5, 6, 0, 0, 29, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37496, 1, 3, 2000, 0, 0, 0, 4306044, 0, 0), +(167, 'f1d3', 'bnpc3995390', 3995390, '147.600494', '43.991699', '1.358032', 1503, 0, 0, 0, 5, 6, 0, 0, 29, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37224, 1, 3, 2000, 0, 0, 0, 4306063, 0, 0), +(167, 'f1d3', 'bnpc3995394', 3995394, '-0.045776', '47.989620', '0.000000', 1484, 0, 0, 0, 0, 6, 0, 0, 1696, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31852, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc3995506', 3995506, '200.000000', '21.988159', '-152.025604', 643, 0, 0, 0, 0, 6, 0, 0, 1694, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6480, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248623', 4248623, '-98.191833', '-0.015320', '84.519653', 1740, 0, 0, 0, 1, 6, 0, 0, 1688, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46944, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(167, 'f1d3', 'bnpc4248624', 4248624, '-96.940666', '-0.015320', '88.639526', 1740, 0, 0, 0, 1, 6, 0, 0, 1688, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46672, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(167, 'f1d3', 'bnpc4248635', 4248635, '-125.011497', '-2.000000', '45.935741', 1493, 0, 0, 0, 0, 6, 0, 0, 1681, 0, '0.000000', 50, 0, 120, 1, 0, 15, 0, 32, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 50210, 1, 3, 2000, 0, 0, 30265, 0, 0, 0), +(167, 'f1d3', 'bnpc4248636', 4248636, '-123.119301', '-2.000000', '45.294868', 1496, 0, 0, 0, 0, 6, 0, 0, 1681, 0, '0.000000', 50, 0, 120, 1, 0, 15, 0, 32, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49944, 1, 3, 2000, 0, 0, 30265, 0, 0, 0), +(167, 'f1d3', 'bnpc4248637', 4248637, '-124.553703', '-2.000000', '43.921581', 1494, 0, 0, 0, 0, 6, 0, 0, 1681, 0, '0.000000', 50, 0, 120, 1, 0, 15, 0, 32, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49678, 1, 3, 2000, 0, 0, 30265, 0, 0, 0), +(167, 'f1d3', 'bnpc4248642', 4248642, '-101.226501', '-2.000000', '-30.710079', 1493, 0, 0, 0, 0, 6, 0, 0, 1681, 0, '0.000000', 50, 0, 120, 1, 0, 17, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49394, 1, 3, 2000, 0, 0, 30265, 0, 0, 0), +(167, 'f1d3', 'bnpc4248643', 4248643, '-101.548798', '-2.029480', '-28.915890', 1495, 0, 0, 0, 0, 6, 0, 0, 1681, 0, '0.000000', 50, 0, 120, 1, 0, 17, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49140, 1, 3, 2000, 0, 0, 30265, 0, 0, 0), +(167, 'f1d3', 'bnpc4248644', 4248644, '-102.844002', '-2.000000', '-29.947201', 1496, 0, 0, 0, 0, 6, 0, 0, 1681, 0, '0.000000', 50, 0, 120, 1, 0, 17, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48856, 1, 3, 2000, 0, 0, 30265, 0, 0, 0), +(167, 'f1d3', 'bnpc4248646', 4248646, '-83.268547', '-0.015320', '-1.236023', 1494, 0, 0, 0, 0, 6, 0, 0, 1681, 0, '0.000000', 50, 0, 120, 1, 0, 16, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48590, 1, 3, 2000, 0, 0, 30111, 0, 0, 0), +(167, 'f1d3', 'bnpc4248647', 4248647, '-84.061951', '-0.015320', '0.198364', 1493, 0, 0, 0, 0, 6, 0, 0, 1681, 0, '0.000000', 50, 0, 120, 1, 0, 16, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48306, 1, 3, 2000, 0, 0, 30111, 0, 0, 0), +(167, 'f1d3', 'bnpc4248648', 4248648, '-83.421143', '-0.015320', '1.327454', 1496, 0, 0, 0, 0, 6, 0, 0, 1681, 0, '0.000000', 50, 0, 120, 1, 0, 16, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48040, 1, 3, 2000, 0, 0, 30111, 0, 0, 0), +(167, 'f1d3', 'bnpc4248687', 4248687, '-87.976212', '-1.587277', '0.189259', 1500, 0, 0, 0, 1, 6, 0, 0, 1685, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47786, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248702', 4248702, '-17.502140', '21.988159', '-27.420469', 1498, 0, 0, 0, 1, 6, 0, 0, 1683, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41060, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248706', 4248706, '163.805496', '20.798031', '48.874630', 1498, 0, 0, 0, 1, 6, 0, 0, 1683, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40788, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248707', 4248707, '159.899307', '20.889589', '45.120972', 1497, 0, 0, 0, 1, 6, 0, 0, 1682, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40510, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248708', 4248708, '165.667099', '20.798031', '44.907230', 1498, 0, 0, 0, 1, 6, 0, 0, 1683, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40244, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248715', 4248715, '250.109406', '21.999990', '-4.843838', 1497, 0, 0, 0, 1, 6, 0, 0, 1682, 0, '0.000000', 50, 0, 120, 1, 0, 24, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39966, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248717', 4248717, '254.015701', '21.999990', '-1.090054', 1498, 0, 0, 0, 1, 6, 0, 0, 1683, 0, '0.000000', 50, 0, 120, 1, 0, 24, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39700, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248728', 4248728, '199.945999', '22.128679', '84.789299', 1503, 0, 0, 0, 5, 6, 0, 0, 29, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39380, 1, 3, 2000, 0, 0, 0, 4306036, 0, 0), +(167, 'f1d3', 'bnpc4248757', 4248757, '213.488998', '44.083248', '-33.188351', 1502, 0, 0, 0, 1, 6, 0, 0, 1687, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37012, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248758', 4248758, '215.777802', '43.991699', '-37.796692', 1500, 0, 0, 0, 1, 6, 0, 0, 1685, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34806, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248759', 4248759, '213.397293', '43.991699', '-42.313290', 1500, 0, 0, 0, 1, 6, 0, 0, 1685, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35350, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248763', 4248763, '292.453094', '44.000031', '5.885651', 1501, 0, 0, 0, 1, 6, 0, 0, 1686, 0, '0.000000', 50, 0, 120, 1, 0, 33, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34298, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(167, 'f1d3', 'bnpc4248765', 4248765, '294.727905', '43.991699', '1.266479', 1500, 0, 0, 0, 1, 6, 0, 0, 1685, 0, '0.000000', 50, 0, 120, 1, 0, 33, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36166, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248767', 4248767, '231.982895', '43.991699', '14.938600', 1502, 0, 0, 0, 1, 6, 0, 0, 1687, 0, '0.000000', 50, 0, 120, 1, 0, 34, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36740, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248769', 4248769, '238.452805', '43.991699', '15.548890', 1500, 0, 0, 0, 1, 6, 0, 0, 1685, 0, '0.000000', 50, 0, 120, 1, 0, 34, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35622, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248774', 4248774, '178.087997', '43.991699', '23.636169', 1501, 0, 0, 0, 1, 6, 0, 0, 1686, 0, '0.000000', 50, 0, 120, 1, 0, 35, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34570, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(167, 'f1d3', 'bnpc4248776', 4248776, '180.397095', '43.999989', '19.029421', 1500, 0, 0, 0, 1, 6, 0, 0, 1685, 0, '0.000000', 50, 0, 120, 1, 0, 35, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35894, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248792', 4248792, '145.562500', '44.000000', '2.760544', 1500, 0, 0, 0, 1, 6, 0, 0, 1685, 0, '0.000000', 50, 0, 120, 1, 0, 36, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35078, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248793', 4248793, '137.729706', '44.000000', '-2.604836', 1502, 0, 0, 0, 1, 6, 0, 0, 1687, 0, '0.000000', 50, 0, 120, 1, 0, 36, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36468, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248828', 4248828, '-8.016767', '48.000000', '-9.433253', 1485, 0, 0, 0, 1, 6, 0, 0, 1697, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31586, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4248835', 4248835, '206.370697', '22.000000', '-141.053299', 1487, 0, 0, 0, 1, 6, 0, 0, 1695, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6214, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4265065', 4265065, '194.595001', '22.000000', '-141.053299', 1487, 0, 0, 0, 1, 6, 0, 0, 1695, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5942, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4265066', 4265066, '200.000000', '22.000000', '-152.025604', 410, 0, 0, 0, 0, 6, 0, 0, 1694, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4265600', 4265600, '12.323910', '48.000011', '0.062773', 1486, 0, 0, 0, 0, 6, 0, 0, 1698, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4270132', 4270132, '-26.277420', '0.000000', '-22.733410', 1490, 0, 0, 0, 0, 6, 0, 0, 1691, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9316, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4270133', 4270133, '-27.148970', '0.054968', '23.241230', 1491, 0, 0, 0, 0, 6, 0, 0, 1692, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9050, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4270134', 4270134, '8.857988', '0.605719', '-0.426426', 1492, 0, 0, 0, 0, 6, 0, 0, 1693, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8784, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4270171', 4270171, '-33.379841', '0.100000', '0.076233', 1489, 0, 0, 0, 0, 6, 0, 0, 1690, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6958, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4303738', 4303738, '-143.198700', '-2.800003', '-0.263433', 1503, 0, 0, 0, 2, 6, 0, 0, 29, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47180, 1, 3, 2000, 0, 0, 0, 4303720, 0, 0), +(167, 'f1d3', 'bnpc4304019', 4304019, '-179.217300', '-4.013123', '77.103760', 1740, 0, 0, 0, 1, 6, 0, 0, 1688, 0, '0.000000', 50, 0, 120, 1, 0, 18, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46400, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(167, 'f1d3', 'bnpc4304020', 4304020, '-170.427994', '-3.830017', '75.059082', 1740, 0, 0, 0, 1, 6, 0, 0, 1688, 0, '0.000000', 50, 0, 120, 1, 0, 18, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46128, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(167, 'f1d3', 'bnpc4306240', 4306240, '207.000000', '22.000000', '-152.025604', 410, 0, 0, 0, 0, 6, 0, 0, 1694, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4306242', 4306242, '193.000000', '22.000000', '-152.025604', 410, 0, 0, 0, 0, 6, 0, 0, 1694, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4323284', 4323284, '-18.964451', '0.000000', '86.288437', 1503, 0, 0, 0, 5, 6, 0, 0, 29, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45580, 1, 3, 2000, 0, 0, 0, 4323283, 0, 0), +(167, 'f1d3', 'bnpc4323288', 4323288, '240.913193', '44.000000', '12.414400', 1498, 0, 0, 0, 1, 6, 0, 0, 1683, 0, '0.000000', 50, 0, 120, 1, 0, 34, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33576, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4323291', 4323291, '143.059097', '44.000000', '-3.338936', 1498, 0, 0, 0, 1, 6, 0, 0, 1683, 0, '0.000000', 50, 0, 120, 1, 0, 36, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33304, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4323292', 4323292, '138.908600', '44.000000', '1.208244', 1498, 0, 0, 0, 1, 6, 0, 0, 1683, 0, '0.000000', 50, 0, 120, 1, 0, 36, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33032, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4328413', 4328413, '-169.970306', '-4.013123', '86.503304', 1740, 0, 0, 0, 1, 6, 0, 0, 1688, 0, '0.000000', 50, 0, 120, 1, 0, 18, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45344, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(167, 'f1d3', 'bnpc4388373', 4388373, '-36.804951', '0.000000', '75.904633', 1503, 0, 0, 0, 5, 6, 0, 0, 29, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44876, 1, 3, 2000, 0, 0, 0, 4388282, 0, 0), +(167, 'f1d3', 'bnpc4388375', 4388375, '-71.842796', '-2.000000', '-50.315510', 1503, 0, 0, 0, 5, 6, 0, 0, 29, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44412, 1, 3, 2000, 0, 0, 0, 4388374, 0, 0), +(167, 'f1d3', 'bnpc4388376', 4388376, '-149.523193', '-2.029480', '-26.993231', 1740, 0, 0, 0, 1, 6, 0, 0, 1688, 0, '0.000000', 50, 0, 120, 1, 0, 9, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44176, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(167, 'f1d3', 'bnpc4388378', 4388378, '-154.680695', '-2.029480', '-21.377930', 1740, 0, 0, 0, 1, 6, 0, 0, 1688, 0, '0.000000', 50, 0, 120, 1, 0, 9, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43904, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(167, 'f1d3', 'bnpc4388379', 4388379, '-134.277206', '-2.029480', '-52.438610', 1740, 0, 0, 0, 1, 6, 0, 0, 1688, 0, '0.000000', 50, 0, 120, 1, 0, 8, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43632, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(167, 'f1d3', 'bnpc4388380', 4388380, '-125.151299', '-2.000000', '-51.991371', 1740, 0, 0, 0, 1, 6, 0, 0, 1688, 0, '0.000000', 50, 0, 120, 1, 0, 8, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43360, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(167, 'f1d3', 'bnpc4388381', 4388381, '-104.570099', '-2.029480', '22.384890', 1740, 0, 0, 0, 1, 6, 0, 0, 1688, 0, '0.000000', 50, 0, 120, 1, 0, 7, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43088, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(167, 'f1d3', 'bnpc4388399', 4388399, '-17.302200', '0.000000', '93.760948', 1740, 0, 0, 0, 1, 6, 0, 0, 1688, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42816, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(167, 'f1d3', 'bnpc4388400', 4388400, '-13.329700', '0.199951', '98.791550', 1740, 0, 0, 0, 1, 6, 0, 0, 1688, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42544, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(167, 'f1d3', 'bnpc4388401', 4388401, '-32.929298', '0.000000', '99.568550', 1740, 0, 0, 0, 1, 6, 0, 0, 1688, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42272, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(167, 'f1d3', 'bnpc4388480', 4388480, '211.782303', '21.999889', '-87.304337', 1503, 0, 0, 0, 5, 6, 0, 0, 29, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38468, 1, 3, 2000, 0, 0, 0, 4388479, 0, 0), +(167, 'f1d3', 'bnpc4388481', 4388481, '190.498703', '22.099991', '-76.614517', 1497, 0, 0, 0, 1, 6, 0, 0, 1682, 0, '0.000000', 50, 0, 120, 1, 0, 29, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38238, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4388482', 4388482, '187.074600', '21.999990', '-71.081169', 1498, 0, 0, 0, 1, 6, 0, 0, 1683, 0, '0.000000', 50, 0, 120, 1, 0, 29, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37972, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(167, 'f1d3', 'bnpc4388485', 4388485, '106.528603', '44.075939', '-25.110710', 1503, 0, 0, 0, 5, 6, 0, 0, 29, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32440, 1, 3, 2000, 0, 0, 0, 4388483, 0, 0), +(167, 'f1d3', 'bnpc4388486', 4388486, '79.034203', '48.000000', '26.665680', 1503, 0, 0, 0, 5, 6, 0, 0, 29, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32168, 1, 3, 2000, 0, 0, 0, 4388484, 0, 0), +(168, 'r1d1', 'bnpc4000945', 4000945, '3.311157', '7.919373', '265.064514', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 11, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41938, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4000948', 4000948, '-2.334717', '7.919373', '263.904785', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 11, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41666, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4000951', 4000951, '31.143681', '7.919373', '214.923203', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 12, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42482, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4000952', 4000952, '34.103882', '8.010925', '211.901993', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 12, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42210, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4000956', 4000956, '-30.380739', '7.919373', '181.933197', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 15, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40850, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4000959', 4000959, '1.762962', '8.166472', '215.679092', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 13, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41394, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4000961', 4000961, '-5.144640', '7.999600', '210.596497', 1463, 0, 0, 0, 1, 6, 0, 0, 1673, 0, '0.000000', 41, 0, 120, 1, 0, 13, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44108, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(168, 'r1d1', 'bnpc4000968', 4000968, '-33.249451', '8.010184', '184.070007', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 15, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41122, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4000969', 4000969, '0.000000', '0.012429', '107.176598', 1461, 0, 0, 0, 0, 6, 0, 0, 1677, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12182, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4000974', 4000974, '-44.541142', '-4.013123', '15.854060', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 23, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38274, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4000975', 4000975, '-0.256117', '0.000006', '25.029449', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 24, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38002, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4000987', 4000987, '0.350891', '0.045776', '-59.342350', 1464, 0, 0, 0, 1, 6, 0, 0, 1674, 0, '0.000000', 41, 0, 120, 1, 0, 26, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37464, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(168, 'r1d1', 'bnpc4000988', 4000988, '3.097534', '0.045776', '-53.971191', 1464, 0, 0, 0, 1, 6, 0, 0, 1674, 0, '0.000000', 41, 0, 120, 1, 0, 26, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36920, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(168, 'r1d1', 'bnpc4000995', 4000995, '-2.667117', '-0.044386', '-182.049500', 1466, 0, 0, 0, 1, 6, 0, 0, 1675, 0, '0.000000', 41, 0, 120, 1, 0, 33, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35190, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4000998', 4000998, '-2.751518', '0.000000', '-102.450500', 1466, 0, 0, 0, 1, 6, 0, 0, 1675, 0, '0.000000', 41, 0, 120, 1, 0, 31, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35462, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4001001', 4001001, '-2.356584', '0.027601', '-145.189606', 1466, 0, 0, 0, 1, 6, 0, 0, 1675, 0, '0.000000', 41, 0, 120, 1, 0, 32, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34646, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4001002', 4001002, '-15.025510', '0.000000', '-136.971497', 1466, 0, 0, 0, 1, 6, 0, 0, 1675, 0, '0.000000', 41, 0, 120, 1, 0, 32, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34918, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4001003', 4001003, '-14.389340', '-0.015320', '-147.203903', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 41, 0, 120, 1, 0, 32, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33564, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4001006', 4001006, '2.110611', '0.000001', '-185.206802', 1466, 0, 0, 0, 1, 6, 0, 0, 1675, 0, '0.000000', 41, 0, 120, 1, 0, 33, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34374, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4001014', 4001014, '-0.015320', '0.076233', '-262.775604', 1455, 0, 0, 0, 0, 6, 0, 0, 1680, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28406, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4001054', 4001054, '-1.936363', '0.076233', '-56.107422', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 26, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37730, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4001086', 4001086, '-32.242371', '7.919373', '179.400299', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 15, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43298, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4001087', 4001087, '0.320374', '7.919373', '266.925995', 1463, 0, 0, 0, 1, 6, 0, 0, 1673, 0, '0.000000', 41, 0, 120, 1, 0, 11, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43836, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(168, 'r1d1', 'bnpc4001090', 4001090, '3.899192', '8.194417', '212.932404', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 13, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43026, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4002732', 4002732, '-50.553162', '7.980469', '232.990005', 1463, 0, 0, 0, 1, 6, 0, 0, 1673, 0, '0.000000', 41, 0, 120, 1, 0, 14, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43564, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(168, 'r1d1', 'bnpc4002733', 4002733, '-53.147221', '7.980469', '229.724503', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 14, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42754, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4002738', 4002738, '42.038570', '4.043579', '44.296879', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 21, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39090, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4002743', 4002743, '-46.528118', '-4.050001', '46.768921', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 22, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39362, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4002744', 4002744, '-45.002178', '-4.028306', '48.661011', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 22, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39634, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4002745', 4002745, '46.341671', '4.043579', '49.576542', 1464, 0, 0, 0, 1, 6, 0, 0, 1674, 0, '0.000000', 41, 0, 120, 1, 0, 21, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36376, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(168, 'r1d1', 'bnpc4002749', 4002749, '-3.368910', '0.000014', '24.113859', 1464, 0, 0, 0, 1, 6, 0, 0, 1674, 0, '0.000000', 41, 0, 120, 1, 0, 24, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36648, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(168, 'r1d1', 'bnpc4002750', 4002750, '-48.600040', '-4.013123', '23.880310', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 23, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38546, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4002751', 4002751, '-48.264339', '-4.013123', '15.060610', 1464, 0, 0, 0, 1, 6, 0, 0, 1674, 0, '0.000000', 41, 0, 120, 1, 0, 23, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37192, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(168, 'r1d1', 'bnpc4002759', 4002759, '23.575130', '-0.015320', '-117.998001', 1465, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17498, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4002764', 4002764, '25.406250', '-0.015320', '-118.730499', 1465, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18314, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4002766', 4002766, '24.368530', '-0.412048', '-119.890198', 1465, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19130, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4002767', 4002767, '22.995300', '0.045776', '-168.169693', 1465, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19402, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4002769', 4002769, '24.032961', '-0.015320', '-166.369095', 1465, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18586, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4002810', 4002810, '-5.941562', '0.000013', '21.332199', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 24, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38818, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4004499', 4004499, '24.554560', '-0.000003', '-17.219450', 1465, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18042, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4005249', 4005249, '26.189930', '-0.000002', '-15.276260', 1465, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17770, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4005250', 4005250, '23.560631', '-0.000001', '-14.076650', 1465, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17226, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4240155', 4240155, '24.673830', '-0.076355', '-169.329407', 1465, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18858, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4240164', 4240164, '54.672970', '4.989685', '-79.942078', 1457, 0, 0, 0, 0, 6, 0, 0, 1678, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10604, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4240177', 4240177, '79.728394', '-2.500000', '-95.903023', 1456, 0, 0, 0, 0, 6, 0, 0, 1680, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10338, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4240179', 4240179, '81.315308', '-2.500000', '-79.911499', 1456, 0, 0, 0, 0, 6, 0, 0, 1680, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10066, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4240180', 4240180, '78.934937', '-2.500000', '-63.645390', 1456, 0, 0, 0, 0, 6, 0, 0, 1680, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9794, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4240190', 4240190, '32.574669', '7.949980', '230.756699', 1460, 0, 0, 0, 0, 6, 0, 0, 1676, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16116, 1, 1, 0, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4240192', 4240192, '-13.995130', '8.076465', '167.834000', 1460, 0, 0, 0, 0, 6, 0, 0, 1676, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15844, 1, 1, 0, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4240197', 4240197, '-32.353222', '-1.938284', '48.294800', 1460, 0, 0, 0, 0, 6, 0, 0, 1676, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15572, 1, 1, 0, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4240201', 4240201, '-23.001631', '-1.368269', '23.971861', 1460, 0, 0, 0, 0, 6, 0, 0, 1676, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15300, 1, 1, 0, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4248984', 4248984, '59.392101', '4.984131', '-87.771400', 1459, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4248991', 4248991, '61.996849', '4.886539', '-79.850456', 1459, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4248994', 4248994, '59.259899', '5.055897', '-72.047981', 1459, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4257042', 4257042, '44.151241', '3.999991', '-79.535767', 1458, 0, 0, 0, 0, 6, 0, 0, 1678, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8718, 1, 1, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4270034', 4270034, '-0.961365', '0.015198', '-247.852402', 434, 0, 0, 0, 0, 6, 0, 0, 1680, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28140, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4314021', 4314021, '-0.475531', '0.000000', '-18.793051', 1464, 0, 0, 0, 1, 6, 0, 0, 1674, 0, '0.000000', 41, 0, 120, 1, 0, 25, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36104, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(168, 'r1d1', 'bnpc4314023', 4314023, '-0.475531', '0.000000', '-14.535770', 1464, 0, 0, 0, 1, 6, 0, 0, 1674, 0, '0.000000', 41, 0, 120, 1, 0, 25, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35832, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(168, 'r1d1', 'bnpc4314027', 4314027, '-7.675354', '0.137329', '-135.210297', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 41, 0, 120, 1, 0, 32, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33836, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4323147', 4323147, '3.438789', '7.913165', '166.077103', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 16, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40306, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4323148', 4323148, '5.300422', '7.949617', '168.610001', 1462, 0, 0, 0, 1, 6, 0, 0, 1672, 0, '0.000000', 41, 0, 120, 1, 0, 16, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40578, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4323150', 4323150, '51.129059', '8.000000', '201.255005', 1463, 0, 0, 0, 1, 6, 0, 0, 1673, 0, '0.000000', 41, 0, 120, 1, 0, 17, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40028, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(168, 'r1d1', 'bnpc4323157', 4323157, '0.228821', '8.064402', '200.075394', 1466, 0, 0, 0, 2, 6, 0, 0, 1675, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32498, 1, 3, 2000, 0, 0, 0, 4323154, 0, 0), +(168, 'r1d1', 'bnpc4323158', 4323158, '-50.797371', '8.000000', '200.075394', 1466, 0, 0, 0, 5, 6, 0, 0, 1675, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32226, 1, 3, 2000, 0, 0, 0, 4323156, 0, 0), +(168, 'r1d1', 'bnpc4323219', 4323219, '0.228821', '8.130883', '224.121902', 1466, 0, 0, 0, 2, 6, 0, 0, 1675, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31746, 1, 3, 2000, 0, 0, 0, 4323217, 0, 0), +(168, 'r1d1', 'bnpc4323228', 4323228, '50.138458', '8.000000', '232.188705', 1466, 0, 0, 0, 5, 6, 0, 0, 1675, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31314, 1, 3, 2000, 0, 0, 0, 4323220, 0, 0), +(168, 'r1d1', 'bnpc4323231', 4323231, '-51.499271', '-4.013123', '3.311157', 1466, 0, 0, 0, 2, 6, 0, 0, 1675, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30834, 1, 3, 2000, 0, 0, 0, 4323230, 0, 0), +(168, 'r1d1', 'bnpc4323236', 4323236, '3.992447', '-0.050008', '-57.146820', 1466, 0, 0, 0, 5, 6, 0, 0, 1675, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30418, 1, 3, 2000, 0, 0, 0, 4323232, 0, 0), +(168, 'r1d1', 'bnpc4323253', 4323253, '1.477910', '0.000000', '-104.355797', 1466, 0, 0, 0, 1, 6, 0, 0, 1675, 0, '0.000000', 41, 0, 120, 1, 0, 31, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34102, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4323257', 4323257, '-4.322776', '-0.042078', '-188.942993', 1466, 0, 0, 0, 1, 6, 0, 0, 1675, 0, '0.000000', 41, 0, 120, 1, 0, 33, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33286, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(168, 'r1d1', 'bnpc4323261', 4323261, '2.403702', '-0.000002', '-144.052200', 1466, 0, 0, 0, 5, 6, 0, 0, 1675, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29890, 1, 3, 2000, 0, 0, 0, 4323260, 0, 0), +(168, 'r1d1', 'bnpc4323262', 4323262, '3.384232', '-0.028601', '-183.906204', 1466, 0, 0, 0, 5, 6, 0, 0, 1675, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29618, 1, 3, 2000, 0, 0, 0, 4323254, 0, 0), +(168, 'r1d1', 'bnpc4323268', 4323268, '24.310390', '-0.021251', '-139.170303', 1466, 0, 0, 0, 5, 6, 0, 0, 1675, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29202, 1, 3, 2000, 0, 0, 0, 4323266, 0, 0), +(168, 'r1d1', 'bnpc4323272', 4323272, '24.210590', '0.000000', '-8.231507', 1466, 0, 0, 0, 5, 6, 0, 0, 1675, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28786, 1, 3, 2000, 0, 0, 0, 4323269, 0, 0), +(169, 'f1r1', 'bnpc1513273', 1513273, '-264.240509', '4.348816', '-76.737671', 1354, 0, 0, 0, 1, 6, 0, 0, 153, 0, '1.000000', 24, 0, 0, 0, 0, 1, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46674, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513274', 1513274, '-271.198608', '4.287720', '-76.157837', 1354, 0, 0, 0, 1, 6, 0, 0, 153, 0, '1.000000', 24, 0, 0, 0, 0, 1, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46946, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513276', 1513276, '-206.042603', '-1.205505', '-86.839172', 1354, 0, 0, 0, 1, 6, 0, 0, 153, 0, '1.000000', 24, 0, 0, 0, 0, 2, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47218, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513280', 1513280, '-144.304596', '-0.076355', '50.186890', 1354, 0, 0, 0, 1, 6, 0, 0, 153, 0, '1.000000', 24, 0, 0, 0, 0, 5, 0, 32, 0, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46402, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513281', 1513281, '-180.895706', '0.625610', '-21.133789', 1354, 0, 0, 0, 1, 6, 0, 0, 153, 0, '1.000000', 24, 0, 0, 0, 0, 6, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45586, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513285', 1513285, '-73.807922', '-7.003906', '20.218201', 1360, 0, 0, 0, 0, 6, 0, 0, 155, 0, '1.000000', 24, 0, 0, 0, 0, 17, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39210, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513288', 1513288, '-211.413803', '0.289917', '-16.739140', 1354, 0, 0, 0, 1, 6, 0, 0, 153, 0, '1.000000', 24, 0, 0, 0, 0, 4, 0, 32, 0, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47490, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513293', 1513293, '-50.339539', '-9.323303', '45.944950', 1354, 0, 0, 0, 1, 6, 0, 0, 153, 0, '1.000000', 24, 0, 0, 0, 0, 18, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37814, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513563', 1513563, '-11.947810', '-7.888916', '134.416702', 1356, 0, 0, 0, 1, 6, 0, 0, 158, 0, '1.000000', 24, 0, 0, 0, 0, 11, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38110, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513570', 1513570, '-201.678497', '-1.144470', '-77.958366', 1359, 0, 0, 0, 0, 0, 0, 0, 154, 0, '1.000000', 24, 0, 0, 0, 0, 2, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45320, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513584', 1513584, '-140.276199', '-0.015320', '44.296879', 1359, 0, 0, 0, 0, 0, 0, 0, 154, 0, '1.000000', 24, 0, 0, 0, 0, 5, 0, 32, 0, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45048, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513616', 1513616, '-125.200302', '-10.818660', '-85.740479', 1358, 0, 0, 0, 1, 6, 0, 0, 117, 0, '1.000000', 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37460, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513617', 1513617, '17.624121', '-12.466670', '-78.202530', 1358, 0, 0, 0, 1, 6, 0, 0, 117, 0, '1.000000', 24, 0, 0, 0, 0, 24, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36916, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513620', 1513620, '148.120102', '-30.139420', '-144.993500', 1358, 0, 0, 0, 1, 6, 0, 0, 117, 0, '1.000000', 24, 0, 0, 0, 0, 0, 0, 15, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37188, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513624', 1513624, '-35.899860', '-12.918840', '-110.154999', 1361, 0, 0, 0, 1, 6, 0, 0, 157, 0, '1.000000', 24, 0, 0, 0, 0, 21, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36070, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(169, 'f1r1', 'bnpc1513625', 1513625, '-17.013849', '-13.199100', '-119.005203', 1361, 0, 0, 0, 1, 6, 0, 0, 157, 0, '1.000000', 24, 0, 0, 0, 0, 21, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34710, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(169, 'f1r1', 'bnpc1513629', 1513629, '130.205200', '-24.063520', '-116.044899', 1361, 0, 0, 0, 0, 6, 0, 0, 157, 0, '1.000000', 24, 0, 0, 0, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35254, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(169, 'f1r1', 'bnpc1513630', 1513630, '147.004898', '-27.683849', '-124.054604', 1361, 0, 0, 0, 1, 6, 0, 0, 157, 0, '1.000000', 24, 0, 0, 0, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34982, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(169, 'f1r1', 'bnpc1513631', 1513631, '160.662094', '-32.059269', '-144.457199', 1361, 0, 0, 0, 1, 6, 0, 0, 157, 0, '1.000000', 24, 0, 0, 0, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33894, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(169, 'f1r1', 'bnpc1513689', 1513689, '8.255066', '-9.079163', '-51.407650', 1359, 0, 0, 0, 0, 0, 0, 0, 154, 0, '1.000000', 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39452, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513702', 1513702, '-10.330380', '-13.199100', '-120.500504', 1360, 0, 0, 0, 0, 0, 0, 0, 155, 0, '1.000000', 24, 0, 0, 0, 0, 0, 0, 15, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36638, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513707', 1513707, '-208.026199', '-5.447510', '88.578613', 1353, 0, 0, 0, 1, 3, 0, 0, 151, 0, '1.000000', 24, 0, 0, 0, 0, 8, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48300, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513708', 1513708, '-203.204498', '-4.776123', '102.098099', 1353, 0, 0, 0, 1, 3, 0, 0, 151, 0, '1.000000', 24, 0, 0, 0, 0, 8, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50204, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513709', 1513709, '-197.528107', '-4.959229', '107.713402', 1353, 0, 0, 0, 1, 3, 0, 0, 151, 0, '1.000000', 24, 0, 0, 0, 0, 8, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49388, 1, 3, 2000, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(169, 'f1r1', 'bnpc1513711', 1513711, '-183.428802', '-5.539063', '109.391800', 1353, 0, 0, 0, 1, 3, 0, 0, 151, 0, '1.000000', 24, 0, 0, 0, 0, 8, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49660, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc1513724', 1513724, '32.404301', '-6.950220', '160.048401', 102, 0, 0, 0, 0, 6, 0, 0, 92, 0, '1.500000', 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33390, 1, 1, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3446839', 3446839, '231.993805', '-39.291759', '-144.297806', 259, 0, 0, 0, 0, 6, 0, 0, 444, 0, '2.200000', 24, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31822, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3641660', 3641660, '-72.190491', '-5.111816', '114.793602', 1355, 0, 0, 0, 1, 5, 0, 0, 441, 0, '1.000000', 24, 0, 120, 1, 0, 10, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41912, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3641683', 3641683, '-55.252991', '-3.463867', '112.230103', 1355, 0, 0, 0, 1, 6, 0, 0, 441, 0, '1.000000', 24, 0, 120, 1, 0, 10, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43272, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3641690', 3641690, '45.120972', '-17.532650', '54.703609', 1355, 0, 0, 0, 1, 6, 0, 0, 441, 0, '1.000000', 24, 0, 120, 1, 0, 13, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42456, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3641691', 3641691, '40.848389', '-17.013849', '40.390629', 1355, 0, 0, 0, 1, 8, 0, 0, 441, 0, '1.000000', 24, 0, 120, 1, 0, 13, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42728, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3641692', 3641692, '52.140011', '-16.983280', '43.198238', 1355, 0, 0, 0, 1, 8, 0, 0, 441, 0, '1.000000', 24, 0, 120, 1, 0, 13, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43000, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3641701', 3641701, '17.410521', '-16.006710', '1.937866', 1355, 0, 0, 0, 1, 8, 0, 0, 441, 0, '1.000000', 24, 0, 120, 1, 0, 15, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43544, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3641702', 3641702, '15.457340', '-16.006710', '31.204710', 1355, 0, 0, 0, 1, 6, 0, 0, 441, 0, '1.000000', 24, 0, 120, 1, 0, 15, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42184, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3641706', 3641706, '14.328190', '-15.213320', '11.825680', 1355, 0, 0, 0, 1, 6, 0, 0, 441, 0, '1.000000', 24, 0, 120, 1, 0, 15, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41640, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3642507', 3642507, '-234.790604', '-0.076355', '-125.993797', 1361, 0, 0, 0, 0, 14, 0, 0, 157, 0, '1.000000', 24, 2, 0, 0, 0, 3, 0, 32, 10, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44510, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3642508', 3642508, '-251.483994', '-0.228943', '-118.913597', 1361, 0, 0, 0, 0, 6, 0, 0, 157, 0, '1.000000', 24, 2, 0, 0, 0, 3, 0, 32, 10, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43966, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3642509', 3642509, '-233.547394', '-0.619643', '-104.547401', 1361, 0, 0, 0, 0, 6, 0, 0, 157, 0, '1.000000', 24, 2, 0, 0, 0, 3, 0, 32, 10, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44238, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3642517', 3642517, '-41.397770', '-9.079163', '-52.750488', 1361, 0, 0, 0, 1, 6, 0, 0, 157, 0, '1.000000', 24, 0, 0, 0, 0, 16, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38642, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3642518', 3642518, '-43.472961', '-8.926575', '-41.428280', 1361, 0, 0, 0, 0, 6, 0, 0, 157, 0, '1.000000', 24, 0, 0, 0, 0, 16, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38914, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3642519', 3642519, '-52.567379', '-9.567444', '-52.903080', 1361, 0, 0, 0, 1, 6, 0, 0, 157, 0, '1.000000', 24, 0, 0, 0, 0, 16, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38370, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3642524', 3642524, '-109.514000', '-13.138060', '-124.284798', 1361, 0, 0, 0, 1, 6, 0, 0, 157, 0, '1.000000', 24, 0, 0, 0, 0, 20, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35798, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(169, 'f1r1', 'bnpc3642525', 3642525, '-109.453003', '-13.199100', '-130.144196', 1361, 0, 0, 0, 1, 6, 0, 0, 157, 0, '1.000000', 24, 0, 0, 0, 0, 20, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34438, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(169, 'f1r1', 'bnpc3642527', 3642527, '-111.611504', '-12.115200', '-95.362778', 1361, 0, 0, 0, 1, 6, 0, 0, 157, 0, '1.000000', 24, 0, 0, 0, 0, 20, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34166, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(169, 'f1r1', 'bnpc3642541', 3642541, '-109.327400', '-4.132326', '111.918999', 270, 0, 0, 0, 0, 6, 0, 0, 442, 0, '0.000000', 24, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32812, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3642543', 3642543, '-78.141479', '-8.133057', '-48.050720', 270, 0, 0, 0, 0, 6, 0, 0, 442, 0, '0.850000', 24, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '-6.000000', '1.000000', 32228, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3656506', 3656506, '-238.804092', '-0.132353', '-112.046997', 434, 0, 0, 0, 3, 20, 0, 0, 157, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20722, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3656507', 3656507, '15.247480', '-11.849700', '-45.375599', 434, 0, 0, 0, 3, 20, 0, 0, 157, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20450, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3656508', 3656508, '-109.708199', '-11.922720', '-77.375580', 434, 0, 0, 0, 3, 20, 0, 0, 157, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20178, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3656509', 3656509, '-48.525810', '-12.893920', '-121.933502', 434, 0, 0, 0, 3, 20, 0, 0, 157, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19906, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3656510', 3656510, '141.283493', '-25.861160', '-112.462502', 434, 0, 0, 0, 3, 20, 0, 0, 157, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19634, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3656521', 3656521, '226.961594', '-39.251751', '-142.169495', 572, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3656529', 3656529, '-93.385307', '-8.154387', '-47.443680', 271, 0, 0, 0, 1, 6, 0, 0, 441, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25332, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3679648', 3679648, '-106.133904', '-13.080430', '-126.654503', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3679663', 3679663, '-46.921509', '-12.954960', '-118.242203', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3679664', 3679664, '-111.192497', '-11.306980', '-82.780243', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14678, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3679665', 3679665, '-64.621437', '-13.186680', '-141.530304', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14406, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3679666', 3679666, '-88.823807', '-13.252130', '-139.945694', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3822043', 3822043, '-27.267920', '-13.157610', '-107.957603', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3822046', 3822046, '-12.344590', '-12.948000', '-122.850403', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3822058', 3822058, '19.577280', '-12.540510', '-135.210205', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3822060', 3822060, '9.262178', '-13.749430', '-78.324600', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3822061', 3822061, '19.058470', '-13.264620', '-83.421112', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3822068', 3822068, '11.154300', '-13.071770', '-107.713501', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3822074', 3822074, '56.168411', '-19.613621', '-105.333099', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3822079', 3822079, '79.545227', '-20.974630', '-113.878098', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3822087', 3822087, '139.779694', '-25.778391', '-113.359299', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3822090', 3822090, '140.830795', '-29.216480', '-135.822906', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11414, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3853665', 3853665, '230.243301', '-39.719280', '-125.878502', 572, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29326, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3853667', 3853667, '236.787094', '-39.704700', '-133.746597', 572, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30414, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3853673', 3853673, '238.772400', '-39.705509', '-140.019302', 572, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29870, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3853675', 3853675, '232.443497', '-39.729900', '-160.673492', 572, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29054, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3853678', 3853678, '238.585907', '-39.594360', '-136.048706', 572, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28782, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3853684', 3853684, '230.309296', '-39.720909', '-163.469498', 572, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28510, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3853686', 3853686, '212.451294', '-39.719280', '-163.866699', 572, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29598, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3853694', 3853694, '214.496002', '-39.719280', '-162.249207', 572, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30142, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3853697', 3853697, '213.772995', '-39.711109', '-160.129501', 572, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27422, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3853698', 3853698, '206.487701', '-39.694191', '-128.512497', 572, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28238, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3853699', 3853699, '208.697601', '-39.719280', '-125.993797', 572, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27966, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3853700', 3853700, '211.230698', '-39.704399', '-124.592003', 572, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27694, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3862492', 3862492, '226.705505', '-39.264542', '-146.167999', 260, 0, 0, 0, 1, 6, 0, 0, 443, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31264, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3877515', 3877515, '207.839203', '-35.476410', '-143.774307', 434, 0, 0, 0, 0, 0, 0, 0, 444, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19362, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3905926', 3905926, '50.431019', '-19.100090', '-110.521103', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11142, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3905928', 3905928, '82.504402', '-20.130501', '-124.829597', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10870, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3907016', 3907016, '151.384705', '-30.655420', '-141.893707', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10598, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3908202', 3908202, '-42.505741', '-13.162030', '-112.350800', 1361, 0, 0, 0, 0, 6, 0, 0, 157, 0, '1.000000', 24, 0, 0, 0, 0, 21, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35526, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(169, 'f1r1', 'bnpc3908734', 3908734, '-215.960907', '0.930786', '-13.382200', 1359, 0, 0, 0, 0, 0, 0, 0, 154, 0, '1.000000', 24, 0, 0, 0, 0, 4, 0, 32, 0, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44776, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3908742', 3908742, '-208.056793', '-6.149414', '47.257198', 1354, 0, 0, 0, 1, 6, 0, 0, 153, 0, '1.000000', 24, 0, 0, 0, 0, 7, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48034, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3908753', 3908753, '-212.573395', '-5.508545', '42.435299', 1354, 0, 0, 0, 1, 6, 0, 0, 153, 0, '1.000000', 24, 0, 0, 0, 0, 7, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47762, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3908842', 3908842, '-22.293461', '-9.018127', '136.278198', 1357, 0, 0, 0, 1, 6, 0, 0, 438, 0, '1.000000', 24, 0, 0, 0, 0, 11, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40292, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(169, 'f1r1', 'bnpc3909167', 3909167, '11.886720', '-13.046510', '80.308228', 1356, 0, 0, 0, 1, 6, 0, 0, 158, 0, '1.000000', 24, 0, 0, 0, 0, 12, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40830, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3909168', 3909168, '16.403440', '-13.046510', '84.580688', 1356, 0, 0, 0, 1, 6, 0, 0, 158, 0, '1.000000', 24, 0, 0, 0, 0, 12, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41374, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3909171', 3909171, '8.163529', '-13.064790', '-139.208099', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10326, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3909172', 3909172, '-112.593102', '-12.229700', '-97.747887', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10054, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3910749', 3910749, '75.150627', '-15.213320', '14.663880', 1356, 0, 0, 0, 1, 6, 0, 0, 158, 0, '1.000000', 24, 0, 0, 0, 0, 14, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41102, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3910755', 3910755, '-42.984680', '-9.018127', '51.773800', 1357, 0, 0, 0, 1, 6, 0, 0, 438, 0, '1.000000', 24, 0, 0, 0, 0, 18, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39748, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(169, 'f1r1', 'bnpc3910779', 3910779, '-180.926300', '-0.930908', '-12.466670', 1354, 0, 0, 0, 1, 6, 0, 0, 153, 0, '1.000000', 24, 0, 0, 0, 0, 6, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46130, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3910780', 3910780, '-167.650894', '-1.144470', '-20.767580', 1354, 0, 0, 0, 1, 6, 0, 0, 153, 0, '1.000000', 24, 0, 0, 0, 0, 6, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45858, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3910781', 3910781, '-209.063904', '-5.181117', '75.528267', 1353, 0, 0, 0, 1, 3, 0, 0, 151, 0, '1.000000', 24, 0, 0, 0, 0, 8, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48572, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3910782', 3910782, '-147.905701', '-5.189941', '110.521103', 1353, 0, 0, 0, 1, 3, 0, 0, 151, 0, '1.000000', 24, 0, 0, 0, 0, 8, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48844, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3910784', 3910784, '-150.560806', '-5.000095', '119.462898', 1353, 0, 0, 0, 1, 3, 0, 0, 151, 0, '1.000000', 24, 0, 0, 0, 0, 8, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49116, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3910785', 3910785, '-160.265305', '-4.125085', '110.795700', 1353, 0, 0, 0, 1, 3, 0, 0, 151, 0, '1.000000', 24, 0, 0, 0, 0, 8, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49932, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3910790', 3910790, '0.808655', '-12.924500', '-71.244377', 1360, 0, 0, 0, 0, 0, 0, 0, 155, 0, '1.000000', 24, 0, 0, 0, 0, 24, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36366, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3910791', 3910791, '-98.481644', '-11.873360', '-70.251900', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9782, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3910792', 3910792, '-99.759163', '-10.914090', '-84.818153', 261, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9510, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3910801', 3910801, '90.012939', '-16.006710', '25.009520', 1357, 0, 0, 0, 1, 6, 0, 0, 438, 0, '1.000000', 24, 0, 0, 0, 0, 14, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40020, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(169, 'f1r1', 'bnpc3911096', 3911096, '-223.992706', '-0.137390', '-112.016502', 599, 0, 0, 0, 3, 6, 0, 0, 439, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17888, 1, 0, 0, 3302276, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3911098', 3911098, '15.976140', '-12.100400', '-31.993019', 599, 0, 0, 0, 3, 6, 0, 0, 439, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17616, 1, 0, 0, 3302281, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3911100', 3911100, '-66.358513', '-8.073122', '-47.991699', 599, 0, 0, 0, 3, 6, 0, 0, 439, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17344, 1, 0, 0, 3302282, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3911103', 3911103, '-111.997002', '-12.125070', '-63.992321', 599, 0, 0, 0, 3, 6, 0, 0, 439, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17072, 1, 0, 0, 3302277, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3911106', 3911106, '-103.144897', '-12.624360', '-138.061600', 599, 0, 0, 0, 3, 6, 0, 0, 439, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16800, 1, 0, 0, 3302278, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3911107', 3911107, '-54.189281', '-12.640220', '-135.437805', 599, 0, 0, 0, 3, 6, 0, 0, 439, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16528, 1, 0, 0, 3302279, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3911109', 3911109, '-7.133959', '-12.743460', '-138.065201', 599, 0, 0, 0, 3, 6, 0, 0, 439, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16256, 1, 0, 0, 3302280, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3911110', 3911110, '127.989998', '-24.093990', '-112.003098', 599, 0, 0, 0, 3, 6, 0, 0, 439, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15984, 1, 0, 0, 3302283, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3911111', 3911111, '175.994507', '-33.911060', '-140.002899', 599, 0, 0, 0, 3, 6, 0, 0, 439, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15712, 1, 0, 0, 3302275, 0, 0, 0, 0, 0), +(169, 'f1r1', 'bnpc3921258', 3921258, '-75.638977', '-6.973389', '20.492800', 1357, 0, 0, 0, 1, 6, 0, 0, 438, 0, '1.000000', 24, 0, 0, 0, 0, 17, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40564, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(169, 'f1r1', 'bnpc3925378', 3925378, '226.699707', '-39.705330', '-126.518799', 572, 0, 0, 0, 0, 6, 0, 0, 437, 0, '1.100000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27082, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4090078', 4090078, '-144.507095', '-4.900004', '153.311005', 1334, 0, 0, 0, 0, 6, 0, 0, 1589, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34730, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4090098', 4090098, '-180.913193', '-4.928711', '-210.636093', 1612, 0, 0, 0, 0, 6, 0, 0, 1590, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33932, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270024', 4270024, '269.549011', '-2.074284', '85.926857', 1615, 0, 0, 0, 1, 6, 0, 0, 1592, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47562, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270026', 4270026, '257.715607', '-3.952148', '96.621063', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 11, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 54072, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270028', 4270028, '265.894501', '-4.130882', '102.518303', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 11, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53800, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270030', 4270030, '248.864395', '-2.483665', '110.047302', 1615, 0, 0, 0, 1, 6, 0, 0, 1592, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47834, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270040', 4270040, '282.337585', '0.106751', '82.505493', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 12, 0, 100, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53528, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270041', 4270041, '232.898407', '0.106751', '85.587769', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 12, 0, 100, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53256, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270042', 4270042, '233.475998', '-0.139376', '109.749100', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 12, 0, 100, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52984, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270043', 4270043, '288.288696', '-3.799561', '105.363503', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 12, 0, 100, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52712, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270054', 4270054, '87.300453', '-4.232649', '163.166504', 1617, 0, 0, 0, 1, 6, 0, 0, 1593, 0, '0.000000', 38, 0, 120, 1, 0, 13, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52446, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270055', 4270055, '87.265152', '-4.502538', '174.865005', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 13, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52168, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270056', 4270056, '98.045227', '-4.921893', '166.423599', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 13, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51896, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270064', 4270064, '97.599060', '-0.747276', '144.439499', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 14, 0, 100, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51624, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270065', 4270065, '120.157700', '-0.055491', '158.451401', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 14, 0, 100, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51352, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270067', 4270067, '70.485283', '-0.776460', '168.820404', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 14, 0, 100, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51080, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270070', 4270070, '78.373550', '0.319204', '192.106506', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 14, 0, 100, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50808, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270071', 4270071, '73.768806', '3.288369', '145.569305', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 14, 0, 100, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50536, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270080', 4270080, '12.233560', '-1.318931', '131.516006', 1618, 0, 0, 0, 1, 6, 0, 0, 1799, 0, '0.000000', 38, 0, 120, 1, 0, 15, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50276, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270081', 4270081, '14.938600', '-0.228943', '121.293800', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 15, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49992, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270083', 4270083, '14.511290', '-1.510742', '138.170395', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 15, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49720, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270110', 4270110, '-36.413910', '-0.027591', '143.941406', 1617, 0, 0, 0, 1, 6, 0, 0, 1593, 0, '0.000000', 38, 0, 120, 1, 0, 17, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49454, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270112', 4270112, '-45.498619', '1.089698', '139.967102', 1618, 0, 0, 0, 1, 6, 0, 0, 1799, 0, '0.000000', 38, 0, 120, 1, 0, 17, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49188, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270114', 4270114, '-29.136499', '-0.597348', '139.408905', 1618, 0, 0, 0, 1, 6, 0, 0, 1799, 0, '0.000000', 38, 0, 120, 1, 0, 17, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48916, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270138', 4270138, '-66.242943', '-0.581671', '108.346397', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 18, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48632, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270139', 4270139, '-59.451149', '-1.358872', '115.116096', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 18, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48360, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270140', 4270140, '-67.338127', '-0.473083', '115.464996', 1616, 0, 0, 0, 1, 6, 0, 0, 1591, 0, '0.000000', 38, 0, 120, 1, 0, 18, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48088, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270147', 4270147, '257.697205', '-1.351029', '-56.777142', 1619, 0, 0, 0, 1, 6, 0, 0, 1596, 0, '1.400000', 38, 0, 120, 1, 0, 21, 0, 40, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46868, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270148', 4270148, '272.532715', '-2.792419', '-46.895432', 1619, 0, 0, 0, 1, 6, 0, 0, 1596, 0, '1.400000', 38, 0, 120, 1, 0, 21, 0, 40, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46596, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270149', 4270149, '241.800201', '-0.531303', '-46.594440', 1619, 0, 0, 0, 1, 6, 0, 0, 1596, 0, '1.400000', 38, 0, 120, 1, 0, 21, 0, 40, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46324, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270155', 4270155, '333.341614', '-1.645383', '-47.092510', 1620, 0, 0, 0, 1, 6, 0, 0, 1597, 0, '0.000000', 38, 0, 120, 1, 0, 22, 0, 40, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46058, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270156', 4270156, '330.356293', '-2.792419', '-63.651680', 1620, 0, 0, 0, 0, 6, 0, 0, 1597, 0, '0.000000', 38, 0, 120, 1, 0, 22, 0, 40, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45786, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270157', 4270157, '346.364502', '-1.388611', '-55.252991', 1620, 0, 0, 0, 0, 6, 0, 0, 1597, 0, '0.000000', 38, 0, 120, 1, 0, 22, 0, 40, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45514, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270202', 4270202, '258.921387', '-0.276851', '-13.998210', 1622, 0, 0, 0, 6, 6, 0, 0, 1594, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45248, 1, 3, 2000, 0, 0, 0, 4328835, 0, 0), +(170, 'w1r1', 'bnpc4270205', 4270205, '317.097687', '-1.815857', '-35.904541', 1622, 0, 0, 0, 6, 6, 0, 0, 1594, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44976, 1, 3, 2000, 0, 0, 0, 4328844, 0, 0), +(170, 'w1r1', 'bnpc4270220', 4270220, '273.061798', '0.376721', '-106.383102', 1622, 0, 0, 0, 6, 6, 0, 0, 1594, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44704, 1, 3, 2000, 0, 0, 0, 4328851, 0, 0), +(170, 'w1r1', 'bnpc4270231', 4270231, '300.594208', '-2.429013', '-212.593094', 1620, 0, 0, 0, 1, 6, 0, 0, 1597, 0, '0.000000', 38, 0, 120, 1, 0, 27, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44426, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270232', 4270232, '305.609894', '-2.761902', '-205.211197', 1620, 0, 0, 0, 1, 6, 0, 0, 1597, 0, '0.000000', 38, 0, 120, 1, 0, 27, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44154, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270233', 4270233, '292.174011', '-1.339204', '-219.866501', 1621, 0, 0, 0, 1, 6, 0, 0, 1595, 0, '0.000000', 38, 0, 120, 1, 0, 27, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43894, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270241', 4270241, '332.585785', '-2.737000', '-209.891800', 1620, 0, 0, 0, 1, 6, 0, 0, 1597, 0, '0.000000', 38, 0, 120, 1, 0, 29, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43610, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270242', 4270242, '344.343506', '-2.509510', '-207.858704', 1620, 0, 0, 0, 1, 6, 0, 0, 1597, 0, '0.000000', 38, 0, 120, 1, 0, 29, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43338, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270243', 4270243, '345.656586', '-1.357894', '-219.570801', 1621, 0, 0, 0, 1, 6, 0, 0, 1595, 0, '0.000000', 38, 0, 120, 1, 0, 29, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43078, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270247', 4270247, '282.796509', '0.037887', '-187.224396', 1619, 0, 0, 0, 1, 6, 0, 0, 1596, 0, '0.000000', 38, 0, 120, 1, 0, 30, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42788, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270248', 4270248, '287.793488', '-0.605409', '-174.587997', 1619, 0, 0, 0, 1, 6, 0, 0, 1596, 0, '0.000000', 38, 0, 120, 1, 0, 30, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42516, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270249', 4270249, '299.803986', '-2.761902', '-182.871902', 1619, 0, 0, 0, 1, 6, 0, 0, 1596, 0, '0.000000', 38, 0, 120, 1, 0, 30, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42244, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4270259', 4270259, '351.179993', '-1.465573', '-183.953598', 1622, 0, 0, 0, 6, 6, 0, 0, 1594, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41984, 1, 3, 2000, 0, 0, 0, 4328862, 0, 0), +(170, 'w1r1', 'bnpc4270261', 4270261, '287.094086', '-1.005114', '-168.990097', 1622, 0, 0, 0, 6, 6, 0, 0, 1594, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41712, 1, 3, 2000, 0, 0, 0, 4328856, 0, 0), +(170, 'w1r1', 'bnpc4271523', 4271523, '-10.360960', '-4.538070', '-156.817001', 1623, 0, 0, 0, 1, 6, 0, 0, 1599, 0, '0.000000', 38, 0, 120, 1, 0, 41, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40772, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4271525', 4271525, '-13.229610', '-3.825844', '-148.302399', 1623, 0, 0, 0, 1, 6, 0, 0, 1599, 0, '0.000000', 38, 0, 120, 1, 0, 41, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40500, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4271535', 4271535, '-58.575890', '-4.001184', '-172.983795', 1626, 0, 0, 0, 0, 6, 0, 0, 1601, 0, '0.000000', 38, 0, 120, 1, 0, 42, 0, 30, 0, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40234, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4271546', 4271546, '-53.977600', '-4.084390', '-182.914703', 1628, 0, 0, 0, 0, 6, 0, 0, 1806, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8308, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4271564', 4271564, '-91.784653', '-3.473932', '-201.447495', 1624, 0, 0, 0, 1, 6, 0, 0, 1598, 0, '0.000000', 38, 0, 120, 1, 0, 43, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39968, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(170, 'w1r1', 'bnpc4271565', 4271565, '-94.610367', '-3.439945', '-194.046799', 1623, 0, 0, 0, 1, 6, 0, 0, 1599, 0, '0.000000', 38, 0, 120, 1, 0, 43, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39684, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4271566', 4271566, '-87.747887', '-4.673203', '-194.719604', 1623, 0, 0, 0, 1, 6, 0, 0, 1599, 0, '0.000000', 38, 0, 120, 1, 0, 43, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39412, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4271567', 4271567, '-56.138771', '5.870819', '-136.781906', 1628, 0, 0, 0, 0, 6, 0, 0, 1806, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8036, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4271580', 4271580, '-55.741268', '8.621277', '-118.028603', 1626, 0, 0, 0, 1, 6, 0, 0, 1601, 0, '0.000000', 38, 0, 120, 1, 0, 44, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39146, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4271582', 4271582, '-47.524731', '8.934116', '-113.675499', 1625, 0, 0, 0, 1, 6, 0, 0, 1600, 0, '0.000000', 38, 0, 120, 1, 0, 44, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38886, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(170, 'w1r1', 'bnpc4271596', 4271596, '-174.131897', '0.742128', '-140.585297', 1626, 0, 0, 0, 1, 6, 0, 0, 1601, 0, '0.000000', 38, 0, 120, 1, 0, 45, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38602, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4271597', 4271597, '-161.431198', '-0.418736', '-145.185394', 1625, 0, 0, 0, 1, 6, 0, 0, 1600, 0, '0.000000', 38, 0, 120, 1, 0, 45, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38342, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(170, 'w1r1', 'bnpc4271598', 4271598, '-163.237503', '-0.376722', '-140.352295', 1625, 0, 0, 0, 1, 6, 0, 0, 1600, 0, '0.000000', 38, 0, 120, 1, 0, 45, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38070, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(170, 'w1r1', 'bnpc4271630', 4271630, '-78.954369', '0.340690', '-82.838783', 1628, 0, 0, 0, 0, 6, 0, 0, 1806, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7764, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4271635', 4271635, '-164.458099', '-3.285083', '-95.380966', 1628, 0, 0, 0, 0, 6, 0, 0, 1806, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7492, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4271644', 4271644, '-166.639999', '-5.682338', '-114.675301', 1628, 0, 0, 0, 0, 6, 0, 0, 1806, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7220, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4271646', 4271646, '-120.333801', '-4.030427', '-68.317963', 1623, 0, 0, 0, 1, 6, 0, 0, 1599, 0, '0.000000', 38, 0, 120, 1, 0, 47, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36420, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4271648', 4271648, '-109.074501', '-5.250711', '-70.313942', 1623, 0, 0, 0, 1, 6, 0, 0, 1599, 0, '0.000000', 38, 0, 120, 1, 0, 47, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36692, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4271649', 4271649, '-115.944504', '-5.231832', '-74.447868', 1624, 0, 0, 0, 1, 6, 0, 0, 1598, 0, '0.000000', 38, 0, 120, 1, 0, 47, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37792, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(170, 'w1r1', 'bnpc4272302', 4272302, '-211.330597', '-4.454144', '-87.092644', 1623, 0, 0, 0, 1, 6, 0, 0, 1599, 0, '0.000000', 38, 0, 120, 1, 0, 48, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37508, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4272303', 4272303, '-210.706802', '-3.808806', '-79.983810', 1623, 0, 0, 0, 1, 6, 0, 0, 1599, 0, '0.000000', 38, 0, 120, 1, 0, 48, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37236, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4272304', 4272304, '-202.643799', '-3.757984', '-80.168457', 1624, 0, 0, 0, 1, 6, 0, 0, 1598, 0, '0.000000', 38, 0, 120, 1, 0, 48, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36976, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(170, 'w1r1', 'bnpc4272307', 4272307, '-17.881680', '-9.609415', '206.321701', 1606, 0, 0, 0, 0, 6, 0, 0, 1585, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36060, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4272313', 4272313, '-25.242439', '-12.117350', '201.200302', 1607, 0, 0, 0, 0, 6, 0, 0, 1586, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35794, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4272314', 4272314, '-18.042830', '-9.498359', '195.305298', 1608, 0, 0, 0, 0, 6, 0, 0, 1587, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35528, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4272315', 4272315, '-33.656422', '-9.992202', '199.901306', 1609, 0, 0, 0, 0, 6, 0, 0, 1588, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35262, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4272317', 4272317, '-15.254610', '-9.348215', '204.173798', 1565, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34996, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4272319', 4272319, '-138.488297', '-4.900002', '153.215897', 1610, 0, 0, 0, 0, 6, 0, 0, 1589, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34464, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4272320', 4272320, '-150.651199', '-4.877595', '153.731293', 1611, 0, 0, 0, 0, 6, 0, 0, 1589, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34198, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4272333', 4272333, '-174.312393', '-4.832601', '-209.756500', 1613, 0, 0, 0, 0, 6, 0, 0, 1848, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33666, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4272586', 4272586, '-75.156616', '0.688202', '112.473701', 1615, 0, 0, 0, 1, 6, 0, 0, 1592, 0, '0.000000', 38, 0, 120, 1, 0, 18, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47290, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4301642', 4301642, '95.880836', '-4.900007', '169.887497', 1629, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4301643', 4301643, '262.439911', '-4.013123', '101.060402', 1565, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4313479', 4313479, '96.944160', '-4.811168', '175.721893', 1565, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4313486', 4313486, '-5.922855', '0.340397', '113.326599', 1565, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4313489', 4313489, '6.373053', '-1.590077', '140.234894', 1629, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4313491', 4313491, '-49.128590', '2.960764', '143.775406', 1629, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4313494', 4313494, '-51.850460', '-1.708716', '120.540802', 1629, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4313498', 4313498, '2.969836', '-0.617786', '113.133499', 1629, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4317182', 4317182, '268.610687', '-4.089732', '104.917397', 1630, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4317184', 4317184, '250.254807', '-3.751575', '99.675140', 1630, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4317185', 4317185, '268.589386', '-2.608964', '88.017647', 1630, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4317190', 4317190, '116.819603', '-0.613962', '179.620300', 1630, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4317194', 4317194, '119.166603', '0.307967', '155.483704', 1630, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29578, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4317195', 4317195, '105.129799', '-0.534215', '147.850800', 1630, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29306, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4317196', 4317196, '72.064873', '0.259763', '157.992203', 1630, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29034, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4317197', 4317197, '73.898628', '0.574642', '187.497803', 1630, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28762, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4317199', 4317199, '103.312500', '-0.406301', '194.717194', 1630, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28490, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4317201', 4317201, '15.180990', '-0.706052', '126.443100', 1630, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28218, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4317202', 4317202, '-11.408720', '-1.184632', '148.053894', 1630, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27946, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4317223', 4317223, '-24.331551', '-1.221598', '145.870697', 1630, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27674, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4317224', 4317224, '-46.669270', '0.651814', '135.550003', 1630, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27402, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4317231', 4317231, '-92.665848', '4.399469', '112.625504', 1630, 0, 0, 0, 0, 6, 0, 0, 1805, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27130, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4328818', 4328818, '350.201202', '-1.189742', '-171.039398', 1621, 0, 0, 0, 1, 6, 0, 0, 1595, 0, '0.000000', 38, 0, 120, 1, 0, 28, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41446, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(170, 'w1r1', 'bnpc4328819', 4328819, '339.892395', '-2.761902', '-177.661407', 1620, 0, 0, 0, 1, 6, 0, 0, 1597, 0, '0.000000', 38, 0, 120, 1, 0, 28, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41162, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4000401', 4000401, '-34.175522', '-8.053716', '266.261688', 1540, 0, 0, 0, 0, 6, 0, 0, 1397, 0, '0.001000', 44, 0, 120, 1, 0, 113, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54902, 1, 1, 0, 0, 0, 0, 4235920, 0, 0), +(171, 'r1r1', 'bnpc4000416', 4000416, '1.628299', '4.745027', '240.772095', 1549, 0, 0, 0, 1, 6, 0, 0, 1657, 0, '0.000000', 44, 0, 120, 1, 0, 1, 0, 24, 10, 0, 1, 0, 1, 0, '0.000000', '1.000000', 56256, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(171, 'r1r1', 'bnpc4000417', 4000417, '3.910811', '5.714906', '243.669403', 1549, 0, 0, 0, 1, 6, 0, 0, 1657, 0, '0.000000', 44, 0, 120, 1, 0, 1, 0, 24, 10, 0, 1, 0, 1, 0, '0.000000', '1.000000', 55712, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(171, 'r1r1', 'bnpc4000420', 4000420, '42.496342', '7.339539', '207.659897', 1549, 0, 0, 0, 1, 6, 0, 0, 1657, 0, '0.000000', 44, 0, 120, 1, 0, 2, 0, 32, 3, 0, 1, 0, 1, 0, '-3.000000', '1.000000', 55440, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(171, 'r1r1', 'bnpc4000422', 4000422, '36.087521', '7.858337', '209.063797', 1549, 0, 0, 0, 1, 6, 0, 0, 1657, 0, '0.000000', 44, 0, 120, 1, 0, 2, 0, 32, 3, 0, 1, 0, 1, 0, '-3.000000', '1.000000', 55984, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(171, 'r1r1', 'bnpc4000438', 4000438, '-213.183807', '-15.732120', '3.311157', 1556, 0, 0, 0, 9, 6, 0, 0, 1653, 0, '1.200000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '-2.000000', 42478, 1, 3, 2000, 0, 0, 30246, 4329689, 0, 0), +(171, 'r1r1', 'bnpc4000446', 4000446, '81.376343', '0.992321', '169.438095', 1552, 0, 0, 0, 1, 6, 0, 0, 1655, 0, '0.000000', 44, 0, 120, 1, 0, 7, 0, 48, 3, 0, 1, 0, 1, 0, '0.000000', '-5.000000', 57066, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4000470', 4000470, '73.508911', '0.564481', '129.899994', 1552, 0, 0, 0, 1, 6, 0, 0, 1655, 0, '0.000000', 44, 0, 120, 1, 0, 6, 0, 48, 2, 0, 1, 0, 1, 0, '-3.000000', '1.000000', 56522, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4000472', 4000472, '88.468079', '0.057967', '132.622696', 1552, 0, 0, 0, 1, 6, 0, 0, 1655, 0, '0.000000', 44, 0, 120, 1, 0, 6, 0, 48, 2, 0, 1, 0, 1, 0, '-3.000000', '1.000000', 56794, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4000475', 4000475, '87.288841', '-0.250022', '175.262100', 1549, 0, 0, 0, 1, 6, 0, 0, 1657, 0, '0.000000', 44, 0, 120, 1, 0, 7, 0, 48, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 55168, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(171, 'r1r1', 'bnpc4000493', 4000493, '-208.453598', '-18.081970', '-47.989620', 1556, 0, 0, 0, 1, 6, 0, 0, 1653, 0, '1.200000', 44, 0, 120, 1, 0, 20, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42750, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(171, 'r1r1', 'bnpc4000635', 4000635, '144.626404', '-9.121642', '132.279694', 1553, 0, 0, 0, 0, 3, 0, 0, 1656, 0, '0.000000', 44, 0, 120, 1, 0, 8, 0, 24, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 57604, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4000636', 4000636, '144.629501', '-9.400391', '130.287201', 1553, 0, 0, 0, 0, 3, 0, 0, 1656, 0, '0.000000', 44, 0, 120, 1, 0, 8, 0, 24, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 57876, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4000637', 4000637, '41.407490', '8.449408', '202.994400', 1553, 0, 0, 0, 1, 6, 0, 0, 1656, 0, '0.000000', 44, 0, 120, 1, 0, 2, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 57332, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4001140', 4001140, '-218.280304', '-49.515560', '14.419740', 1550, 0, 0, 0, 1, 6, 0, 0, 2152, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43276, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4002230', 4002230, '-220.538696', '-18.020941', '19.150089', 1551, 0, 0, 0, 1, 3, 0, 0, 1654, 0, '0.000000', 44, 0, 120, 1, 0, 22, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43016, 1, 3, 0, 0, 0, 0, 4329689, 0, 0), +(171, 'r1r1', 'bnpc4002250', 4002250, '-64.577362', '-24.033020', '-49.515560', 1544, 0, 0, 0, 0, 6, 0, 0, 1415, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26168, 1, 6, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(171, 'r1r1', 'bnpc4002265', 4002265, '-204.791306', '-17.746281', '-43.595089', 1550, 0, 0, 0, 1, 6, 0, 0, 2152, 0, '0.000000', 44, 0, 120, 1, 0, 20, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43548, 1, 3, 0, 0, 0, 0, 4329619, 0, 0), +(171, 'r1r1', 'bnpc4002652', 4002652, '-22.049320', '-16.617130', '-178.454300', 1550, 0, 0, 0, 1, 6, 0, 0, 2152, 0, '0.000000', 44, 0, 120, 1, 0, 31, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35512, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4002653', 4002653, '-17.807310', '-17.105410', '-175.951797', 1551, 0, 0, 0, 1, 6, 0, 0, 1654, 0, '0.000000', 44, 0, 120, 1, 0, 31, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35252, 1, 3, 0, 0, 0, 0, 4329691, 0, 0), +(171, 'r1r1', 'bnpc4002658', 4002658, '50.827759', '-31.967649', '-124.254204', 1555, 0, 0, 0, 5, 6, 0, 0, 1449, 0, '0.000000', 44, 0, 120, 1, 0, 42, 3, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34188, 1, 3, 0, 0, 0, 0, 4329692, 0, 0), +(171, 'r1r1', 'bnpc4002659', 4002659, '1.527614', '-17.552820', '-143.999405', 1555, 0, 0, 0, 5, 6, 0, 0, 1449, 0, '0.000000', 44, 0, 120, 1, 0, 40, 1, 32, 2, 0, 1, 1, 1, 0, '0.000000', '-2.000000', 34460, 1, 3, 0, 0, 0, 0, 4329691, 0, 0), +(171, 'r1r1', 'bnpc4002660', 4002660, '11.795230', '-20.065670', '-175.066803', 1555, 0, 0, 0, 5, 6, 0, 0, 1449, 0, '0.000000', 44, 0, 120, 1, 0, 41, 2, 32, 2, 0, 1, 1, 1, 0, '0.000000', '1.000000', 33644, 1, 3, 0, 0, 0, 0, 4333810, 0, 0), +(171, 'r1r1', 'bnpc4002661', 4002661, '49.423950', '-30.899540', '-121.446602', 1555, 0, 0, 0, 5, 6, 0, 0, 1449, 0, '0.000000', 44, 0, 120, 1, 0, 42, 3, 32, 3, 0, 1, 1, 1, 0, '0.000000', '1.000000', 33372, 1, 3, 0, 0, 0, 0, 4329692, 0, 0), +(171, 'r1r1', 'bnpc4002663', 4002663, '15.640440', '-19.333250', '-172.259201', 1555, 0, 0, 0, 5, 6, 0, 0, 1449, 0, '0.000000', 44, 0, 120, 1, 0, 41, 2, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33916, 1, 3, 0, 0, 0, 0, 4333810, 0, 0), +(171, 'r1r1', 'bnpc4002674', 4002674, '86.628220', '-39.069370', '-176.692795', 1546, 0, 0, 0, 0, 6, 0, 0, 1396, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30810, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4234652', 4234652, '49.864941', '-14.586390', '75.207100', 1541, 0, 0, 0, 0, 6, 0, 0, 1397, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30544, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4236330', 4236330, '-262.915985', '-24.743231', '-36.669750', 1547, 0, 0, 0, 3, 6, 0, 0, 2154, 0, '0.000000', 44, 0, 120, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44914, 1, 0, 18, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4236334', 4236334, '-262.000000', '-25.672649', '-17.989130', 1547, 0, 0, 0, 3, 6, 0, 0, 2154, 0, '0.000000', 44, 0, 120, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44098, 1, 0, 18, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4236337', 4236337, '-240.916504', '-22.897470', '-32.599701', 1547, 0, 0, 0, 3, 6, 0, 0, 2154, 0, '0.000000', 44, 0, 120, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44370, 1, 0, 18, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4236340', 4236340, '-237.641495', '-47.675850', '-0.476017', 1547, 0, 0, 0, 3, 6, 0, 0, 2154, 0, '0.000000', 44, 0, 120, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44642, 1, 0, 18, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4236342', 4236342, '-219.287399', '-17.135990', '20.981079', 1547, 0, 0, 0, 3, 6, 0, 0, 2154, 0, '0.000000', 44, 0, 120, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45458, 1, 0, 18, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4236343', 4236343, '-166.826904', '-33.274071', '50.978561', 1547, 0, 0, 0, 3, 6, 0, 0, 2154, 0, '0.000000', 44, 0, 120, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45730, 1, 0, 18, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4236345', 4236345, '-166.369095', '-33.133209', '40.491562', 1547, 0, 0, 0, 3, 6, 0, 0, 2154, 0, '0.000000', 44, 0, 120, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45186, 1, 0, 18, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4236346', 4236346, '-134.000198', '-24.279181', '10.151040', 1547, 0, 0, 0, 3, 6, 0, 0, 2154, 0, '0.000000', 44, 0, 120, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43826, 1, 0, 18, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4236592', 4236592, '-48.131111', '-18.927719', '-177.963806', 1547, 0, 0, 0, 3, 6, 0, 0, 2154, 0, '0.000000', 44, 0, 120, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36062, 1, 0, 18, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4236596', 4236596, '-12.905530', '-20.460190', '-147.539093', 1547, 0, 0, 0, 3, 6, 0, 0, 2154, 0, '0.000000', 44, 0, 120, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36334, 1, 0, 18, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4236597', 4236597, '-19.347429', '-15.715690', '-181.001602', 1547, 0, 0, 0, 3, 6, 0, 0, 2154, 0, '0.000000', 44, 0, 120, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35790, 1, 0, 18, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4236599', 4236599, '26.756210', '-23.062281', '-107.432198', 1547, 0, 0, 0, 3, 6, 0, 0, 2154, 0, '0.000000', 44, 0, 120, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36878, 1, 0, 18, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4236601', 4236601, '22.468870', '-21.037550', '-114.238098', 1547, 0, 0, 0, 3, 6, 0, 0, 2154, 0, '0.000000', 44, 0, 120, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36606, 1, 0, 18, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4236602', 4236602, '64.840607', '-38.260960', '-171.659897', 1548, 0, 0, 0, 3, 6, 0, 0, 2154, 0, '0.000000', 44, 0, 120, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37446, 1, 0, 18, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4236603', 4236603, '71.885246', '-36.934731', '-204.155197', 1548, 0, 0, 0, 3, 6, 0, 0, 2154, 0, '0.000000', 44, 0, 120, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37718, 1, 0, 18, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4236604', 4236604, '104.264801', '-37.588291', '-159.882095', 1548, 0, 0, 0, 3, 6, 0, 0, 2154, 0, '0.000000', 44, 0, 120, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37174, 1, 0, 18, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4238883', 4238883, '3.893133', '-17.024031', '-143.694199', 1555, 0, 0, 0, 5, 6, 0, 0, 1449, 0, '0.000000', 44, 0, 120, 1, 0, 40, 1, 32, 2, 0, 1, 0, 1, 0, '0.000000', '-2.000000', 34732, 1, 3, 0, 0, 0, 0, 4329691, 0, 0), +(171, 'r1r1', 'bnpc4238885', 4238885, '47.165649', '-31.784550', '-124.132202', 1555, 0, 0, 0, 5, 6, 0, 0, 1449, 0, '0.000000', 44, 0, 120, 1, 0, 42, 3, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35004, 1, 3, 0, 0, 0, 0, 4329692, 0, 0), +(171, 'r1r1', 'bnpc4257047', 4257047, '58.001991', '-14.718480', '74.382172', 1542, 0, 0, 0, 0, 6, 0, 0, 1497, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30278, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4257050', 4257050, '42.848412', '-14.617630', '75.425034', 1543, 0, 0, 0, 0, 6, 0, 0, 1498, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30012, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4257123', 4257123, '-68.147781', '-23.893730', '-50.972279', 1545, 0, 0, 0, 0, 6, 0, 0, 1499, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29746, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4267763', 4267763, '-66.458054', '-23.979210', '-50.431091', 1545, 0, 0, 0, 0, 6, 0, 0, 1499, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4267764', 4267764, '-68.406250', '-24.002501', '-48.569462', 1545, 0, 0, 0, 0, 6, 0, 0, 1499, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26706, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4267765', 4267765, '-65.230583', '-23.937241', '-48.652679', 1545, 0, 0, 0, 0, 6, 0, 0, 1499, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26434, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4290060', 4290060, '84.844704', '-38.781490', '-183.759399', 1716, 0, 0, 0, 3, 6, 0, 0, 2153, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21846, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4321601', 4321601, '-9.933039', '9.868011', '169.408096', 1550, 0, 0, 0, 1, 6, 0, 0, 2152, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 24, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48084, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4321686', 4321686, '137.737900', '-7.791891', '142.853806', 1552, 0, 0, 0, 2, 6, 0, 0, 1655, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '-3.000000', '1.000000', 47794, 1, 3, 2000, 0, 0, 0, 4235924, 0, 0), +(171, 'r1r1', 'bnpc4321690', 4321690, '67.490601', '7.766785', '239.215607', 1550, 0, 0, 0, 1, 6, 0, 0, 2152, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 24, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47540, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4321692', 4321692, '-237.948303', '-49.142311', '-12.183710', 1552, 0, 0, 0, 1, 6, 0, 0, 1655, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '-3.000000', '1.000000', 42170, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(171, 'r1r1', 'bnpc4321697', 4321697, '-245.075195', '-48.193630', '-0.208480', 1552, 0, 0, 0, 1, 6, 0, 0, 1655, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '-3.000000', '1.000000', 41898, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(171, 'r1r1', 'bnpc4321740', 4321740, '-138.536697', '-25.314760', '13.626220', 1551, 0, 0, 0, 1, 6, 0, 0, 1654, 0, '0.000000', 44, 0, 120, 1, 0, 24, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41656, 1, 3, 0, 0, 0, 0, 4329785, 0, 0), +(171, 'r1r1', 'bnpc4321741', 4321741, '-127.397598', '-24.948549', '13.015930', 1554, 0, 0, 0, 1, 6, 0, 0, 1652, 0, '0.000000', 44, 0, 120, 1, 0, 24, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41396, 1, 3, 0, 0, 0, 30246, 0, 0, 0), +(171, 'r1r1', 'bnpc4321780', 4321780, '-214.068802', '-16.037291', '-2.700867', 1552, 0, 0, 0, 1, 6, 0, 0, 1655, 0, '0.000000', 44, 0, 120, 1, 0, 21, 0, 32, 2, 0, 1, 0, 1, 0, '-3.000000', '1.000000', 41082, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4333770', 4333770, '107.626404', '-1.854376', '177.233505', 1550, 0, 0, 0, 1, 6, 0, 0, 2152, 0, '0.000000', 44, 0, 120, 1, 0, 7, 0, 48, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47268, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4333771', 4333771, '113.487099', '-10.743400', '121.450203', 1549, 0, 0, 0, 2, 6, 0, 0, 1657, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 46984, 1, 3, 2000, 0, 0, 30246, 4235924, 0, 0), +(171, 'r1r1', 'bnpc4333772', 4333772, '125.230698', '-7.309082', '128.007797', 1550, 0, 0, 0, 1, 6, 0, 0, 2152, 0, '0.000000', 44, 0, 120, 1, 0, 3, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46724, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4333773', 4333773, '122.179001', '-14.389340', '127.061897', 1553, 0, 0, 0, 1, 3, 0, 0, 1656, 0, '0.000000', 44, 0, 120, 1, 0, 3, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46428, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4333774', 4333774, '-209.369095', '-14.847050', '-2.182068', 1549, 0, 0, 0, 1, 6, 0, 0, 1657, 0, '0.000000', 44, 0, 120, 1, 0, 21, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40560, 1, 3, 2000, 0, 0, 30246, 4235924, 0, 0), +(171, 'r1r1', 'bnpc4333795', 4333795, '-242.206497', '-49.301998', '-6.332520', 1556, 0, 0, 0, 9, 6, 0, 0, 1653, 0, '1.200000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '-2.000000', 40318, 1, 3, 2000, 0, 0, 30246, 4329689, 0, 0), +(171, 'r1r1', 'bnpc4333798', 4333798, '-222.064606', '-18.783939', '22.873230', 1549, 0, 0, 0, 1, 6, 0, 0, 1657, 0, '0.000000', 44, 0, 120, 1, 0, 22, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40016, 1, 3, 2000, 0, 0, 30246, 4235924, 0, 0), +(171, 'r1r1', 'bnpc4333799', 4333799, '-225.940399', '-18.814390', '19.668819', 1549, 0, 0, 0, 1, 6, 0, 0, 1657, 0, '0.000000', 44, 0, 120, 1, 0, 22, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39744, 1, 3, 2000, 0, 0, 30246, 4235924, 0, 0), +(171, 'r1r1', 'bnpc4333800', 4333800, '-164.927399', '-33.209530', '44.929352', 1551, 0, 0, 0, 1, 6, 0, 0, 1654, 0, '0.000000', 44, 0, 120, 1, 0, 23, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39496, 1, 3, 0, 0, 0, 0, 4329689, 0, 0), +(171, 'r1r1', 'bnpc4333801', 4333801, '-166.441498', '-33.497131', '48.671558', 1549, 0, 0, 0, 1, 6, 0, 0, 1657, 0, '0.000000', 44, 0, 120, 1, 0, 23, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39200, 1, 3, 2000, 0, 0, 30246, 4235924, 0, 0), +(171, 'r1r1', 'bnpc4333802', 4333802, '-169.521896', '-34.219391', '47.985451', 1550, 0, 0, 0, 1, 6, 0, 0, 2152, 0, '0.000000', 44, 0, 120, 1, 0, 23, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38940, 1, 3, 0, 0, 0, 0, 4329619, 0, 0), +(171, 'r1r1', 'bnpc4333803', 4333803, '-137.101196', '-25.405910', '17.429590', 1553, 0, 0, 0, 1, 6, 0, 0, 1656, 0, '0.000000', 44, 0, 120, 1, 0, 24, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38644, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4333805', 4333805, '-12.222530', '-21.225340', '-144.792892', 1554, 0, 0, 0, 1, 6, 0, 0, 1652, 0, '0.000000', 44, 0, 120, 1, 0, 30, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32784, 1, 3, 0, 0, 0, 30246, 0, 0, 0), +(171, 'r1r1', 'bnpc4333806', 4333806, '-17.532650', '-21.164310', '-144.853897', 1551, 0, 0, 0, 1, 6, 0, 0, 1654, 0, '0.000000', 44, 0, 120, 1, 0, 30, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32500, 1, 3, 0, 0, 0, 0, 4329691, 0, 0), +(171, 'r1r1', 'bnpc4333807', 4333807, '24.627270', '-22.475981', '-112.910698', 1554, 0, 0, 0, 1, 6, 0, 0, 1652, 0, '0.000000', 44, 0, 120, 1, 0, 32, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32240, 1, 3, 0, 0, 0, 30246, 0, 0, 0), +(171, 'r1r1', 'bnpc4333808', 4333808, '24.927271', '-22.756651', '-108.795898', 1554, 0, 0, 0, 1, 6, 0, 0, 1652, 0, '0.000000', 44, 0, 120, 1, 0, 32, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31968, 1, 3, 0, 0, 0, 30246, 0, 0, 0), +(171, 'r1r1', 'bnpc4333941', 4333941, '125.030296', '-14.255640', '125.929398', 1549, 0, 0, 0, 1, 6, 0, 0, 1657, 0, '0.000000', 44, 0, 120, 1, 0, 3, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46168, 1, 3, 2000, 0, 0, 30246, 4235924, 0, 0), +(171, 'r1r1', 'bnpc4333942', 4333942, '-175.692596', '-16.081390', '-3.028740', 1552, 0, 0, 0, 1, 6, 0, 0, 1655, 0, '0.000000', 44, 0, 120, 1, 0, 25, 0, 32, 2, 0, 1, 0, 1, 0, '-3.000000', '1.000000', 38378, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(171, 'r1r1', 'bnpc4333943', 4333943, '-177.513596', '-14.334530', '7.694996', 1550, 0, 0, 0, 1, 6, 0, 0, 2152, 0, '0.000000', 44, 0, 120, 1, 0, 25, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38124, 1, 3, 0, 0, 0, 0, 4329619, 0, 0), +(172, 'r1r2', 'bnpc3748957', 3748957, '-341.920990', '-30.383989', '-151.140701', 1472, 0, 0, 0, 1, 5, 0, 0, 1538, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59934, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(172, 'r1r2', 'bnpc3748961', 3748961, '-411.459503', '-33.296501', '-126.848297', 943, 0, 0, 0, 0, 0, 0, 0, 1532, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 61004, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc3757607', 3757607, '-169.176804', '-29.738070', '-141.863205', 1470, 0, 0, 0, 0, 0, 0, 0, 1533, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60472, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc3759899', 3759899, '-112.334801', '-31.143681', '-138.776794', 1480, 0, 0, 0, 1, 5, 0, 0, 1545, 0, '0.000000', 47, 0, 120, 1, 0, 123, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47936, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(172, 'r1r2', 'bnpc3759900', 3759900, '-95.903023', '-30.075560', '-122.758904', 1479, 0, 0, 0, 1, 5, 0, 0, 1544, 0, '0.000000', 47, 0, 120, 1, 0, 121, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48746, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(172, 'r1r2', 'bnpc3760248', 3760248, '128.099503', '-9.140198', '-7.705872', 1477, 0, 0, 0, 1, 5, 0, 0, 1542, 0, '0.000000', 47, 0, 120, 1, 0, 104, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 55196, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc3760254', 3760254, '101.914902', '-9.506409', '8.010925', 1477, 0, 0, 0, 0, 5, 0, 0, 1542, 0, '0.000000', 47, 0, 120, 1, 0, 105, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 54652, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc3760773', 3760773, '118.028397', '-9.506409', '21.042179', 1478, 0, 0, 0, 1, 20, 0, 0, 1543, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52754, 1, 3, 50, 0, 0, 30246, 0, 0, 0), +(172, 'r1r2', 'bnpc3760776', 3760776, '88.772034', '-9.500000', '0.336824', 1478, 0, 0, 0, 1, 20, 0, 0, 1543, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 53026, 1, 3, 50, 0, 0, 30246, 0, 0, 0), +(172, 'r1r2', 'bnpc3760834', 3760834, '-214.038300', '-30.502810', '-195.513901', 1481, 0, 0, 0, 2, 6, 0, 0, 1546, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50094, 1, 3, 2000, 0, 0, 0, 4258964, 0, 0), +(172, 'r1r2', 'bnpc3760836', 3760836, '-267.010986', '-24.155090', '-154.291397', 1481, 0, 0, 0, 2, 6, 0, 0, 1546, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49822, 1, 3, 2000, 0, 0, 0, 4258977, 0, 0), +(172, 'r1r2', 'bnpc3760871', 3760871, '-117.387703', '-30.826559', '-135.118698', 1479, 0, 0, 0, 1, 5, 0, 0, 1544, 0, '0.000000', 47, 0, 120, 1, 0, 123, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47658, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(172, 'r1r2', 'bnpc3760892', 3760892, '-93.858276', '-30.411249', '-159.685699', 1480, 0, 0, 0, 1, 5, 0, 0, 1545, 0, '0.000000', 47, 0, 120, 1, 0, 122, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48208, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(172, 'r1r2', 'bnpc4017850', 4017850, '-37.583012', '-17.227421', '-95.658867', 1472, 0, 0, 0, 1, 5, 0, 0, 1538, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60206, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(172, 'r1r2', 'bnpc4021158', 4021158, '27.511959', '-9.256967', '2.822876', 1471, 0, 0, 0, 0, 0, 0, 0, 1534, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60738, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4026419', 4026419, '106.981003', '-9.414856', '4.379272', 1477, 0, 0, 0, 0, 5, 0, 0, 1542, 0, '0.000000', 47, 0, 120, 1, 0, 105, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 54924, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4026426', 4026426, '80.857422', '-7.980469', '14.419740', 1477, 0, 0, 0, 1, 5, 0, 0, 1542, 0, '0.000000', 47, 0, 120, 1, 0, 103, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 55740, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4026468', 4026468, '95.963989', '-9.140198', '-34.348080', 1476, 0, 0, 0, 1, 5, 0, 0, 1541, 0, '0.000000', 47, 0, 120, 1, 0, 107, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53286, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4026469', 4026469, '97.734009', '-8.743469', '-28.976870', 1476, 0, 0, 0, 1, 5, 0, 0, 1541, 0, '0.000000', 47, 0, 120, 1, 0, 107, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53830, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4026470', 4026470, '92.027100', '-9.262268', '-30.380739', 1476, 0, 0, 0, 1, 5, 0, 0, 1541, 0, '0.000000', 47, 0, 120, 1, 0, 107, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53558, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4026565', 4026565, '-88.807617', '-30.716431', '-140.742905', 1475, 0, 0, 0, 2, 5, 0, 0, 1540, 0, '0.000000', 47, 0, 120, 1, 0, 120, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49544, 1, 3, 2000, 0, 0, 0, 4333294, 0, 0), +(172, 'r1r2', 'bnpc4026566', 4026566, '-89.326363', '-30.960569', '-144.984894', 1475, 0, 0, 0, 2, 5, 0, 0, 1540, 0, '0.000000', 47, 0, 120, 1, 0, 120, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49272, 1, 3, 2000, 0, 0, 0, 4333294, 0, 0), +(172, 'r1r2', 'bnpc4026576', 4026576, '-332.528595', '-32.136822', '-143.958298', 1473, 0, 0, 0, 1, 5, 0, 0, 1535, 0, '0.000000', 47, 0, 120, 1, 0, 201, 0, 20, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45058, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4026577', 4026577, '-333.060394', '-32.570419', '-141.942001', 1473, 0, 0, 0, 1, 5, 0, 0, 1535, 0, '0.000000', 47, 0, 120, 1, 0, 201, 0, 20, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44786, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4026578', 4026578, '-335.898499', '-32.101521', '-146.382507', 1473, 0, 0, 0, 1, 5, 0, 0, 1535, 0, '0.000000', 47, 0, 120, 1, 0, 201, 0, 20, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44514, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4030329', 4030329, '-395.345703', '-32.608822', '-132.634399', 1468, 0, 0, 0, 0, 0, 0, 0, 1536, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58858, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4030332', 4030332, '-394.919098', '-32.619869', '-124.696404', 1467, 0, 0, 0, 1, 5, 0, 0, 1535, 0, '30.000000', 47, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57788, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4249186', 4249186, '-393.278900', '-32.653660', '-124.833900', 1469, 0, 0, 0, 0, 0, 0, 0, 1537, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58592, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4249491', 4249491, '-37.694160', '-16.546160', '-104.030098', 1473, 0, 0, 0, 1, 5, 0, 0, 1535, 0, '30.000000', 47, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58326, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4249492', 4249492, '-334.554108', '-31.967649', '-137.682205', 1473, 0, 0, 0, 1, 5, 0, 0, 1535, 0, '30.000000', 47, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58054, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4249496', 4249496, '-40.299068', '-16.495001', '-102.738998', 573, 0, 0, 0, 0, 0, 0, 0, 1536, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59396, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4249497', 4249497, '-334.035309', '-33.065979', '-126.634598', 573, 0, 0, 0, 0, 0, 0, 0, 1536, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59124, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4249548', 4249548, '-221.071793', '-30.319700', '-193.696701', 1480, 0, 0, 0, 1, 5, 0, 0, 1545, 0, '0.000000', 47, 0, 120, 1, 0, 124, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46848, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(172, 'r1r2', 'bnpc4249549', 4249549, '-225.018494', '-29.892460', '-196.453201', 1479, 0, 0, 0, 1, 5, 0, 0, 1544, 0, '0.000000', 47, 0, 120, 1, 0, 124, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47114, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(172, 'r1r2', 'bnpc4258836', 4258836, '94.316040', '-9.109680', '35.416142', 1476, 0, 0, 0, 1, 5, 0, 0, 1541, 0, '0.000000', 47, 0, 120, 1, 0, 102, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 56278, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4258837', 4258837, '97.611938', '-9.201294', '32.333858', 1476, 0, 0, 0, 1, 5, 0, 0, 1541, 0, '0.000000', 47, 0, 120, 1, 0, 102, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 56822, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4258838', 4258838, '92.942627', '-9.109680', '30.716431', 1476, 0, 0, 0, 1, 5, 0, 0, 1541, 0, '0.000000', 47, 0, 120, 1, 0, 102, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 56550, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4258840', 4258840, '124.132103', '-8.590881', '-10.574520', 1477, 0, 0, 0, 1, 5, 0, 0, 1542, 0, '0.000000', 47, 0, 120, 1, 0, 104, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 55468, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4258841', 4258841, '76.972412', '-8.094756', '11.989300', 1477, 0, 0, 0, 1, 5, 0, 0, 1542, 0, '0.000000', 47, 0, 120, 1, 0, 103, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 56012, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4258859', 4258859, '-337.625885', '-33.855572', '-119.882599', 1472, 0, 0, 0, 1, 5, 0, 0, 1538, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59662, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(172, 'r1r2', 'bnpc4258938', 4258938, '-267.444885', '-23.241400', '-143.938400', 1480, 0, 0, 0, 1, 5, 0, 0, 1545, 0, '0.000000', 47, 0, 120, 1, 0, 125, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46032, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(172, 'r1r2', 'bnpc4258939', 4258939, '-267.902588', '-24.033020', '-149.095901', 1479, 0, 0, 0, 1, 5, 0, 0, 1544, 0, '0.000000', 47, 0, 120, 1, 0, 125, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46298, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(172, 'r1r2', 'bnpc4264600', 4264600, '109.634300', '-10.176090', '32.673328', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4264601', 4264601, '78.532303', '-10.176090', '1.080335', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4264602', 4264602, '110.711502', '-10.176090', '0.498785', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4264625', 4264625, '-26.838631', '-16.375280', '-74.629433', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25634, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4264626', 4264626, '-35.950920', '-14.600000', '-109.137802', 1539, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25368, 1, 0, 0, 4264564, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4264641', 4264641, '-407.371399', '-32.277149', '-141.154907', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 4658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4264643', 4264643, '-381.764008', '-32.415310', '-124.443703', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 4386, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4264647', 4264647, '-387.628387', '-33.449589', '-136.865204', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 5474, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4264648', 4264648, '-421.939301', '-33.499592', '-112.653198', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 5202, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4264649', 4264649, '-375.909302', '-33.499981', '-120.552803', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 4930, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4269198', 4269198, '128.651505', '-8.742720', '31.359840', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32874, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4269199', 4269199, '93.369377', '-8.487606', '32.654781', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32602, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4269200', 4269200, '104.710999', '-8.076521', '-16.250690', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32330, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4269201', 4269201, '127.965401', '-8.753260', '-0.296691', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32058, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4269202', 4269202, '96.036598', '-8.691914', '-0.244118', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31786, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4269203', 4269203, '80.514038', '-7.664603', '-13.104930', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4269204', 4269204, '98.873398', '-8.658838', '-28.939470', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31242, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4274638', 4274638, '100.367302', '-7.336526', '45.780701', 1539, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30368, 1, 0, 0, 4274628, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4274639', 4274639, '119.347397', '-5.791709', '-14.300760', 1539, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30096, 1, 0, 0, 4274632, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4274640', 4274640, '80.109177', '-6.300752', '18.540051', 1539, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29824, 1, 0, 0, 4274635, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4274641', 4274641, '82.427750', '-6.467789', '-21.928080', 1539, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29552, 1, 0, 0, 4274637, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4279895', 4279895, '34.932800', '-10.176090', '20.520241', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28086, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4279896', 4279896, '46.484779', '-7.444160', '-15.563230', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4279897', 4279897, '27.972870', '-8.846580', '-36.956360', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27542, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4279898', 4279898, '26.751051', '-8.465195', '-21.565849', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27270, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4279899', 4279899, '47.899731', '-8.113922', '8.933550', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4279901', 4279901, '45.561562', '-6.472215', '23.705000', 1539, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26732, 1, 0, 0, 4264554, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4279929', 4279929, '17.746460', '-6.455016', '3.823650', 1539, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26460, 1, 0, 0, 4264552, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4286880', 4286880, '-45.303699', '-15.261790', '-71.489601', 1539, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4288612', 4288612, '-406.885101', '-28.415609', '-104.427902', 1539, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 4120, 1, 0, 0, 4264630, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4288613', 4288613, '-380.267395', '-27.450729', '-142.767303', 1539, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 3848, 1, 0, 0, 4264637, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4301584', 4301584, '-141.071106', '-29.104971', '-120.474403', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21238, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4301585', 4301585, '-141.764496', '-29.666679', '-163.307907', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20966, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4301586', 4301586, '-158.009399', '-29.905991', '-158.749496', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20694, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4301587', 4301587, '-144.099106', '-29.517981', '-134.692795', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20422, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4301588', 4301588, '-156.424500', '-29.693710', '-127.714798', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20150, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4301589', 4301589, '-154.344406', '-30.153320', '-146.367706', 1482, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19878, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4301590', 4301590, '-176.368393', '-24.133869', '-113.977501', 1539, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19612, 1, 0, 0, 4301576, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4301591', 4301591, '-128.593796', '-27.532261', '-169.764404', 1539, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19340, 1, 0, 0, 4301575, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4301592', 4301592, '-174.139297', '-27.550610', '-156.096893', 1539, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19068, 1, 0, 0, 4301579, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4301593', 4301593, '-125.819199', '-27.783001', '-148.406906', 1539, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18796, 1, 0, 0, 4301578, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4301594', 4301594, '-127.764297', '-27.897190', '-127.245003', 1539, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18524, 1, 0, 0, 4301577, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4329609', 4329609, '111.201897', '-9.500000', '-3.726892', 1475, 0, 0, 0, 2, 10, 0, 0, 1540, 0, '0.000000', 47, 0, 120, 1, 0, 108, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52488, 1, 3, 2000, 0, 0, 0, 4329625, 0, 0), +(172, 'r1r2', 'bnpc4329630', 4329630, '-224.217499', '-30.228149', '-191.178894', 1479, 0, 0, 0, 1, 5, 0, 0, 1544, 0, '0.000000', 47, 0, 120, 1, 0, 124, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46570, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(172, 'r1r2', 'bnpc4329641', 4329641, '-217.486893', '-29.984011', '-189.440796', 1475, 0, 0, 0, 2, 0, 0, 0, 1540, 0, '0.000000', 47, 0, 120, 1, 0, 126, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45736, 1, 3, 0, 0, 0, 0, 4329633, 0, 0), +(172, 'r1r2', 'bnpc4329644', 4329644, '-216.723907', '-30.136600', '-187.853806', 1475, 0, 0, 0, 2, 0, 0, 0, 1540, 0, '0.000000', 47, 0, 120, 1, 0, 126, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45464, 1, 3, 0, 0, 0, 0, 4329633, 0, 0), +(172, 'r1r2', 'bnpc4331307', 4331307, '137.224396', '-9.231750', '22.049259', 1476, 0, 0, 0, 1, 5, 0, 0, 1541, 0, '0.000000', 47, 0, 120, 1, 0, 101, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 57094, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4331308', 4331308, '134.111496', '-8.926575', '20.248659', 1476, 0, 0, 0, 1, 5, 0, 0, 1541, 0, '0.000000', 47, 0, 120, 1, 0, 101, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 57366, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4331309', 4331309, '78.660156', '-7.827942', '-15.152280', 1477, 0, 0, 0, 1, 5, 0, 0, 1542, 0, '0.000000', 47, 0, 120, 1, 0, 106, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 54108, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4331310', 4331310, '75.333740', '-7.888916', '-12.710820', 1477, 0, 0, 0, 1, 5, 0, 0, 1542, 0, '0.000000', 47, 0, 120, 1, 0, 106, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 54380, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4331313', 4331313, '107.901703', '-9.500000', '-2.629781', 1475, 0, 0, 0, 2, 6, 0, 0, 1540, 0, '0.000000', 47, 0, 120, 1, 100, 108, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52216, 1, 3, 2000, 0, 0, 0, 4329625, 0, 0), +(172, 'r1r2', 'bnpc4331322', 4331322, '-37.916599', '-16.718519', '-80.690666', 1473, 0, 0, 0, 1, 5, 0, 0, 1535, 0, '0.000000', 47, 0, 120, 1, 0, 112, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51286, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4331323', 4331323, '-38.912628', '-16.997749', '-77.451477', 1473, 0, 0, 0, 1, 5, 0, 0, 1535, 0, '0.000000', 47, 0, 120, 1, 0, 112, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51014, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4331325', 4331325, '-24.375919', '-16.984699', '-72.902031', 1473, 0, 0, 0, 1, 5, 0, 0, 1535, 0, '0.000000', 47, 0, 120, 1, 0, 111, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50742, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4331326', 4331326, '-22.861450', '-17.449539', '-69.294479', 1473, 0, 0, 0, 1, 5, 0, 0, 1535, 0, '0.000000', 47, 0, 120, 1, 0, 111, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50470, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4331331', 4331331, '-97.825623', '-29.984011', '-158.312393', 1474, 0, 0, 0, 1, 5, 0, 0, 1539, 0, '0.000000', 47, 0, 120, 1, 0, 122, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48468, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4331332', 4331332, '-100.450203', '-28.397030', '-122.697800', 1474, 0, 0, 0, 1, 5, 0, 0, 1539, 0, '0.000000', 47, 0, 120, 1, 0, 121, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49012, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4331336', 4331336, '-330.955597', '-31.777781', '-148.692398', 1473, 0, 0, 0, 1, 5, 0, 0, 1535, 0, '0.000000', 47, 0, 120, 1, 0, 201, 0, 20, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44242, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4331337', 4331337, '-328.822296', '-32.006062', '-142.297195', 1473, 0, 0, 0, 1, 5, 0, 0, 1535, 0, '0.000000', 47, 0, 120, 1, 0, 201, 0, 20, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43970, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4331343', 4331343, '-360.799591', '-32.120239', '-172.991592', 1479, 0, 0, 0, 1, 5, 0, 0, 1544, 0, '0.000000', 47, 0, 120, 1, 0, 202, 0, 20, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43746, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4331344', 4331344, '-366.476013', '-32.089779', '-174.334396', 1480, 0, 0, 0, 1, 5, 0, 0, 1545, 0, '0.000000', 47, 0, 120, 1, 0, 202, 0, 20, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43480, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4331345', 4331345, '-362.508606', '-31.174259', '-179.675003', 1480, 0, 0, 0, 1, 5, 0, 0, 1545, 0, '0.000000', 47, 0, 120, 1, 0, 202, 0, 20, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43208, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(172, 'r1r2', 'bnpc4333275', 4333275, '84.629471', '-9.500000', '-4.893989', 1475, 0, 0, 0, 6, 6, 0, 0, 1540, 0, '0.000000', 47, 0, 120, 1, 100, 109, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51944, 1, 3, 2000, 0, 0, 0, 4333290, 0, 0), +(172, 'r1r2', 'bnpc4333276', 4333276, '84.152473', '-9.448235', '-6.674214', 1475, 0, 0, 0, 6, 10, 0, 0, 1540, 0, '0.000000', 47, 0, 120, 1, 0, 109, 0, 20, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51672, 1, 3, 2000, 0, 0, 0, 4333290, 0, 0), +(172, 'r1r2', 'bnpc4333293', 4333293, '-113.607597', '-30.411249', '-131.469803', 1480, 0, 0, 0, 1, 5, 0, 0, 1545, 0, '0.000000', 47, 0, 120, 1, 0, 123, 0, 20, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47392, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(172, 'r1r2', 'bnpc4333349', 4333349, '-365.658905', '-32.120239', '-179.351807', 1479, 0, 0, 0, 1, 5, 0, 0, 1544, 0, '0.000000', 47, 0, 120, 1, 0, 202, 0, 20, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42930, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4314819', 4314819, '-450.966187', '26.296740', '20.098280', 2347, 0, 0, 0, 0, 6, 0, 0, 706, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 63318, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4314849', 4314849, '453.972687', '66.163116', '284.959686', 2352, 0, 0, 0, 0, 6, 0, 0, 711, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56554, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4314853', 4314853, '480.383514', '67.451271', '279.952301', 2353, 0, 0, 0, 0, 6, 0, 0, 712, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56288, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4314854', 4314854, '452.530212', '66.163116', '280.986206', 2351, 0, 0, 0, 0, 6, 0, 0, 710, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56820, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4314855', 4314855, '440.438110', '66.266403', '279.917999', 2350, 0, 0, 0, 0, 6, 0, 0, 710, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57086, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4314882', 4314882, '-109.937103', '68.333641', '-379.789612', 2354, 0, 0, 0, 0, 6, 0, 0, 727, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45698, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4314888', 4314888, '-109.941299', '68.223022', '-368.337494', 2356, 0, 0, 0, 0, 6, 0, 0, 728, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45166, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4314889', 4314889, '-105.743202', '68.116257', '-380.410492', 2355, 0, 0, 0, 0, 6, 0, 0, 727, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45432, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4314890', 4314890, '-110.034500', '650.928223', '181.515503', 2360, 0, 0, 0, 0, 6, 0, 0, 732, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34188, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4314894', 4314894, '-105.010002', '650.928406', '183.334702', 2362, 0, 0, 0, 0, 6, 0, 0, 733, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33656, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4314895', 4314895, '-112.497200', '650.928223', '182.785294', 2361, 0, 0, 0, 0, 6, 0, 0, 732, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33922, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4330318', 4330318, '420.424103', '67.451286', '314.612305', 2353, 0, 0, 0, 0, 6, 0, 0, 712, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56016, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4330319', 4330319, '420.454987', '67.451286', '245.454803', 2353, 0, 0, 0, 0, 6, 0, 0, 712, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55744, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4491830', 4491830, '-448.929291', '26.300249', '20.027781', 2348, 0, 0, 0, 0, 6, 0, 0, 706, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 63052, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4491836', 4491836, '-453.391388', '26.291260', '20.279169', 2349, 0, 0, 0, 0, 6, 0, 0, 707, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 62786, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4491852', 4491852, '-117.929802', '68.098053', '-379.122986', 2357, 0, 0, 0, 0, 6, 0, 0, 730, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44900, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4491853', 4491853, '-101.810699', '68.098053', '-380.171387', 2358, 0, 0, 0, 0, 6, 0, 0, 731, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44634, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4491854', 4491854, '-85.100998', '71.963287', '-393.307404', 2359, 0, 0, 0, 0, 6, 0, 0, 2510, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44368, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494631', 4494631, '250.612701', '50.656780', '285.010101', 2404, 0, 0, 0, 1, 6, 0, 0, 820, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58262, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494638', 4494638, '251.087204', '50.644650', '274.799713', 2405, 0, 0, 0, 1, 6, 0, 0, 822, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57996, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494639', 4494639, '246.417801', '50.736210', '279.804688', 2406, 0, 0, 0, 1, 6, 0, 0, 1864, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57730, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494643', 4494643, '-394.583099', '41.977539', '294.850098', 2398, 0, 0, 0, 1, 6, 0, 0, 820, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 40, 7, 0, 1, 0, 0, 0, '0.000000', '1.000000', 66120, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494649', 4494649, '-436.453888', '41.947021', '203.082306', 2402, 0, 0, 0, 1, 6, 0, 0, 1871, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 40, 1, 0, 1, 0, 0, 0, '0.000000', '1.000000', 68828, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494650', 4494650, '-109.881897', '44.168140', '-186.805893', 2410, 0, 0, 0, 0, 6, 0, 0, 1876, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52656, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494653', 4494653, '-110.201302', '44.168140', '-165.366104', 2407, 0, 0, 0, 0, 6, 0, 0, 1873, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 53788, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494654', 4494654, '-109.968002', '44.168140', '-157.214600', 2409, 0, 0, 0, 0, 6, 0, 0, 1875, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 53522, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494655', 4494655, '253.779602', '51.066399', '279.883514', 2403, 0, 0, 0, 0, 6, 0, 0, 1872, 0, '3.160000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59072, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494656', 4494656, '253.877304', '51.066399', '244.670105', 2403, 0, 0, 0, 0, 6, 0, 0, 1872, 0, '3.160000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58800, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494657', 4494657, '253.873993', '51.066399', '315.127594', 2403, 0, 0, 0, 0, 6, 0, 0, 1872, 0, '3.160000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58528, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494658', 4494658, '-451.651794', '42.374271', '263.446899', 2399, 0, 0, 0, 1, 6, 0, 0, 821, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 40, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 68290, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494659', 4494659, '-447.143188', '42.350288', '262.934601', 2399, 0, 0, 0, 1, 6, 0, 0, 821, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 40, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 68562, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494660', 4494660, '-452.964111', '42.343750', '292.957886', 2399, 0, 0, 0, 1, 6, 0, 0, 821, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 40, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67746, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494661', 4494661, '-396.688812', '41.947021', '281.910400', 2396, 0, 0, 0, 1, 6, 0, 0, 740, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 40, 7, 0, 1, 0, 0, 0, '0.000000', '1.000000', 69094, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494662', 4494662, '-446.799408', '42.374271', '293.537689', 2399, 0, 0, 0, 1, 6, 0, 0, 821, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 40, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 66930, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494663', 4494663, '-465.262909', '42.374271', '280.109894', 2399, 0, 0, 0, 1, 6, 0, 0, 821, 0, '0.000000', 50, 0, 120, 1, 0, 4, 0, 40, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67202, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494665', 4494665, '-393.942200', '41.153561', '277.332611', 2394, 0, 0, 0, 1, 6, 0, 0, 738, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 40, 7, 0, 1, 0, 0, 0, '0.000000', '1.000000', 69626, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494667', 4494667, '-383.627106', '41.123051', '281.544189', 2395, 0, 0, 0, 1, 6, 0, 0, 739, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 40, 7, 0, 1, 0, 0, 0, '0.000000', '1.000000', 69892, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494668', 4494668, '-461.234406', '41.062012', '269.703094', 2399, 0, 0, 0, 1, 6, 0, 0, 821, 0, '0.000000', 50, 0, 120, 1, 0, 4, 0, 40, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67474, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494671', 4494671, '-387.197693', '41.550289', '275.806793', 2392, 0, 0, 0, 1, 6, 0, 0, 736, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 40, 7, 0, 1, 0, 0, 0, '0.000000', '1.000000', 69360, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494679', 4494679, '-401.113892', '41.947021', '274.647095', 2397, 0, 0, 0, 1, 6, 0, 0, 741, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 40, 7, 0, 1, 0, 0, 0, '0.000000', '1.000000', 65316, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494681', 4494681, '-389.120392', '42.374271', '283.741486', 2393, 0, 0, 0, 1, 6, 0, 0, 737, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 40, 7, 0, 1, 0, 0, 0, '0.000000', '1.000000', 65050, 1, 0, 2000, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(174, 'l1r1', 'bnpc4494686', 4494686, '-450.522614', '42.374271', '296.986298', 2400, 0, 0, 0, 1, 6, 0, 0, 822, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 40, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 65582, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494692', 4494692, '-450.431091', '42.374271', '261.066498', 2400, 0, 0, 0, 1, 6, 0, 0, 822, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 40, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 65854, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494693', 4494693, '-395.346008', '42.771000', '263.721588', 2398, 0, 0, 0, 1, 6, 0, 0, 820, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 40, 7, 0, 1, 0, 0, 0, '0.000000', '1.000000', 66392, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494695', 4494695, '-467.948395', '42.587891', '273.579010', 2399, 0, 0, 0, 1, 6, 0, 0, 821, 0, '0.000000', 50, 0, 120, 1, 0, 4, 0, 40, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 66658, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494701', 4494701, '-457.663910', '42.374271', '280.384491', 2399, 0, 0, 0, 1, 6, 0, 0, 821, 0, '0.000000', 50, 0, 120, 1, 0, 4, 0, 40, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 68018, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494702', 4494702, '-440.451691', '41.977539', '194.232101', 2401, 0, 0, 0, 1, 6, 0, 0, 1864, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 40, 1, 0, 1, 0, 0, 0, '0.000000', '1.000000', 63968, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494703', 4494703, '-461.936401', '41.977539', '192.553604', 2401, 0, 0, 0, 1, 6, 0, 0, 1864, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 40, 1, 0, 1, 0, 0, 0, '0.000000', '1.000000', 64240, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4494706', 4494706, '-455.497101', '41.550289', '187.609604', 2401, 0, 0, 0, 1, 6, 0, 0, 1864, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 40, 1, 0, 1, 0, 0, 0, '0.000000', '1.000000', 63696, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4496957', 4496957, '-128.294601', '44.168140', '-154.986298', 2410, 0, 0, 0, 0, 6, 0, 0, 1876, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52384, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4496958', 4496958, '-91.676697', '44.168140', '-154.963501', 2410, 0, 0, 0, 0, 6, 0, 0, 1876, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52112, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4496981', 4496981, '-134.837402', '71.642502', '-393.237213', 2359, 0, 0, 0, 0, 6, 0, 0, 2510, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44096, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4496982', 4496982, '-85.137222', '70.452599', '-343.497406', 2359, 0, 0, 0, 0, 6, 0, 0, 2510, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43824, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4496983', 4496983, '-134.859894', '71.642517', '-343.494598', 2359, 0, 0, 0, 0, 6, 0, 0, 2510, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43552, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4498270', 4498270, '-113.529701', '44.168140', '-158.593704', 2408, 0, 0, 0, 0, 6, 0, 0, 1874, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 53256, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4498271', 4498271, '-106.108803', '44.168140', '-157.009598', 2411, 0, 0, 0, 0, 6, 0, 0, 1871, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52990, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4504842', 4504842, '-450.980408', '25.528200', '25.253660', 2434, 0, 0, 0, 0, 6, 0, 0, 913, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60648, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4506124', 4506124, '443.434692', '66.209160', '284.595886', 2435, 0, 0, 0, 0, 6, 0, 0, 2000, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55166, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4506767', 4506767, '-104.709999', '650.819580', '185.434692', 2436, 0, 0, 0, 0, 6, 0, 0, 730, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32454, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4534372', 4534372, '-122.858803', '68.098053', '-375.005493', 2444, 0, 0, 0, 0, 6, 0, 0, 727, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4534403', 4534403, '-449.759705', '41.550289', '191.241302', 2402, 0, 0, 0, 1, 6, 0, 0, 1871, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 40, 1, 0, 1, 0, 0, 0, '0.000000', '1.000000', 64748, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4534404', 4534404, '-464.133698', '41.947021', '198.352097', 2402, 0, 0, 0, 1, 6, 0, 0, 1871, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 40, 1, 0, 1, 0, 0, 0, '0.000000', '1.000000', 64476, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4545609', 4545609, '-447.692505', '25.506430', '21.981461', 2664, 0, 0, 0, 0, 6, 0, 0, 707, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60382, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(174, 'l1r1', 'bnpc4584210', 4584210, '243.536896', '50.759949', '279.812195', 2445, 0, 0, 0, 1, 6, 0, 0, 730, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57464, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814948', 2814948, '110.277000', '23.605650', '-612.115723', 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34884, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814949', 2814949, '113.238602', '23.607740', '-612.232422', 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34612, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814952', 2814952, '45.401741', '23.520571', '-738.022583', 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34340, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814953', 2814953, '49.056969', '23.479090', '-738.310486', 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34068, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814956', 2814956, '125.655403', '23.332590', '-720.434692', 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33796, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814958', 2814958, '126.027397', '23.528891', '-716.605408', 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33524, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814959', 2814959, '123.335297', '24.111179', '-715.039612', 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33252, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814960', 2814960, '122.829903', '24.176411', '-721.965210', 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32980, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814963', 2814963, '179.367203', '23.644270', '-643.441711', 2, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32708, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814964', 2814964, '173.567703', '23.885700', '-643.233398', 2, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32436, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814965', 2814965, '173.492706', '24.805450', '-645.949890', 2, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32164, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814966', 2814966, '179.938599', '24.128510', '-646.818604', 2, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31892, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814968', 2814968, '219.743896', '21.668949', '-597.828430', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31588, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814969', 2814969, '224.665207', '21.489120', '-599.825989', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31316, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814970', 2814970, '212.328598', '24.061720', '-592.069397', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31044, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814971', 2814971, '213.743103', '23.057211', '-588.350891', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814972', 2814972, '214.443100', '23.136209', '-594.038330', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814973', 2814973, '211.407898', '23.471350', '-587.490173', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30228, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814974', 2814974, '216.601196', '22.318830', '-599.648804', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814975', 2814975, '227.137405', '21.547720', '-600.464783', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814976', 2814976, '230.325806', '22.214239', '-594.779114', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814977', 2814977, '233.022598', '23.435221', '-590.906799', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814978', 2814978, '230.522095', '21.769470', '-586.837280', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814979', 2814979, '230.497803', '22.280220', '-592.141724', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28596, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814980', 2814980, '229.057205', '21.380760', '-580.463013', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28324, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814981', 2814981, '220.652405', '21.268190', '-579.902893', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814982', 2814982, '224.434601', '21.299841', '-579.601196', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814983', 2814983, '215.952393', '21.829670', '-581.185974', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27508, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814984', 2814984, '220.055298', '21.624020', '-597.523926', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23300, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814985', 2814985, '224.965195', '21.470369', '-599.526001', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23844, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814986', 2814986, '212.628601', '23.976170', '-591.769287', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23572, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814987', 2814987, '214.043198', '22.886690', '-588.050903', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814988', 2814988, '214.738998', '22.981199', '-593.739014', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27108, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814989', 2814989, '211.707901', '23.226761', '-587.190186', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814990', 2814990, '216.901199', '22.299160', '-599.348816', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814991', 2814991, '227.437393', '21.589239', '-600.164795', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26292, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814992', 2814992, '230.625793', '22.337589', '-594.479126', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26020, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814993', 2814993, '233.322601', '23.534229', '-590.606812', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814994', 2814994, '230.822205', '21.784060', '-586.537292', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25476, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814995', 2814995, '230.797806', '22.351339', '-591.841675', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25204, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814996', 2814996, '229.357193', '21.307800', '-580.163025', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24932, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814997', 2814997, '220.952393', '21.263281', '-579.602905', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24660, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814998', 2814998, '224.734604', '21.337351', '-579.301086', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24388, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2814999', 2814999, '216.252396', '21.750050', '-580.885986', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24116, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2815000', 2815000, '215.013504', '22.981199', '-593.464172', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2815001', 2815001, '212.007904', '23.226761', '-586.890076', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22356, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2815002', 2815002, '217.201202', '22.299160', '-599.048828', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22084, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2815003', 2815003, '227.737396', '21.589239', '-599.864685', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21812, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2815004', 2815004, '230.925797', '22.337589', '-594.179077', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21540, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2815005', 2815005, '233.622604', '23.534229', '-590.306824', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21268, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2815006', 2815006, '231.122192', '21.784060', '-586.237305', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20996, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2815007', 2815007, '231.097794', '22.351339', '-591.541687', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20724, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2815008', 2815008, '229.657196', '21.307800', '-579.862976', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20452, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2815009', 2815009, '221.252396', '21.263281', '-579.302917', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20180, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2815010', 2815010, '225.034607', '21.337351', '-579.001221', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19908, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2815011', 2815011, '216.552399', '21.750050', '-580.585876', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19636, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2815012', 2815012, '225.265198', '21.470369', '-599.226013', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19364, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2815013', 2815013, '212.928604', '23.976170', '-591.469421', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19092, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2815014', 2815014, '220.355301', '21.624020', '-597.223877', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18820, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc2815015', 2815015, '214.343201', '22.886690', '-587.750916', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18548, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126437', 4126437, '-350.774414', '60.171631', '-114.217003', 65, 0, 0, 0, 1, 6, 0, 0, 62, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126772', 4126772, '-352.653290', '55.848209', '-94.491707', 65, 0, 0, 0, 1, 6, 0, 0, 62, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81536, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126774', 4126774, '-320.438599', '53.743549', '-96.806549', 65, 0, 0, 0, 1, 6, 0, 0, 62, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81264, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126775', 4126775, '-320.138611', '60.230400', '-127.837799', 65, 0, 0, 0, 1, 6, 0, 0, 62, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80992, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126776', 4126776, '-317.718689', '59.229080', '-124.074898', 65, 0, 0, 0, 1, 6, 0, 0, 62, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126778', 4126778, '-342.451508', '64.508537', '-161.939301', 65, 0, 0, 0, 1, 6, 0, 0, 62, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80448, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126779', 4126779, '-340.071991', '64.500938', '-156.101807', 65, 0, 0, 0, 1, 6, 0, 0, 62, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80176, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126781', 4126781, '-303.273102', '62.302608', '-149.981003', 13, 0, 0, 0, 1, 6, 0, 0, 398, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126790', 4126790, '-302.025085', '63.145451', '-181.170395', 13, 0, 0, 0, 1, 6, 0, 0, 398, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126791', 4126791, '-252.109604', '63.981121', '-185.517593', 13, 0, 0, 0, 1, 6, 0, 0, 398, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126793', 4126793, '-247.891998', '63.959759', '-187.246796', 13, 0, 0, 0, 1, 6, 0, 0, 398, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79094, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126797', 4126797, '-212.220093', '67.001152', '-238.484497', 13, 0, 0, 0, 1, 6, 0, 0, 398, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126798', 4126798, '-234.424393', '64.164063', '-246.631607', 13, 0, 0, 0, 1, 6, 0, 0, 398, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126800', 4126800, '-265.156189', '63.779259', '-249.456497', 13, 0, 0, 0, 1, 6, 0, 0, 398, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78278, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126802', 4126802, '-211.217896', '67.209122', '-240.810501', 13, 0, 0, 0, 1, 6, 0, 0, 398, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78006, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126809', 4126809, '-193.176697', '71.634018', '-272.623596', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126812', 4126812, '-164.668396', '79.828140', '-263.318298', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126813', 4126813, '-127.923798', '82.259918', '-325.613312', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77196, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126828', 4126828, '-140.334305', '81.612297', '-316.766205', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126829', 4126829, '-124.052200', '79.229347', '-291.640015', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76652, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126830', 4126830, '-50.246071', '64.465584', '-307.680511', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76380, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126832', 4126832, '-54.884800', '64.472954', '-305.849396', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76108, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126839', 4126839, '-47.205139', '63.834221', '-271.118011', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126840', 4126840, '-9.166920', '67.539864', '-213.059998', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126843', 4126843, '20.694170', '71.412910', '-188.727600', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75292, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126848', 4126848, '-320.332611', '55.375000', '-223.437897', 30, 0, 0, 0, 1, 6, 0, 0, 365, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75026, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126851', 4126851, '-335.856598', '50.124779', '-293.071106', 30, 0, 0, 0, 1, 6, 0, 0, 365, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74754, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126853', 4126853, '-291.706696', '54.062618', '-289.723114', 30, 0, 0, 0, 1, 6, 0, 0, 365, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126854', 4126854, '-350.974792', '51.937672', '-265.973114', 30, 0, 0, 0, 1, 6, 0, 0, 365, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126856', 4126856, '-394.270294', '47.225811', '-265.673096', 30, 0, 0, 0, 1, 6, 0, 0, 365, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126857', 4126857, '-380.974609', '48.795952', '-318.552704', 30, 0, 0, 0, 1, 6, 0, 0, 365, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126859', 4126859, '-403.050812', '46.469891', '-308.322906', 30, 0, 0, 0, 1, 6, 0, 0, 365, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126864', 4126864, '-252.033295', '64.316650', '-320.058014', 2269, 0, 0, 0, 1, 6, 0, 0, 2192, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66618, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126867', 4126867, '-302.418610', '67.307503', '-302.326996', 2269, 0, 0, 0, 1, 6, 0, 0, 2192, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66074, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126870', 4126870, '-371.969208', '60.471439', '-353.597412', 117, 0, 0, 0, 1, 6, 0, 0, 106, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126872', 4126872, '-373.159393', '60.013672', '-369.466705', 117, 0, 0, 0, 1, 6, 0, 0, 106, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72856, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126876', 4126876, '-364.485809', '64.772636', '-305.346100', 117, 0, 0, 0, 1, 6, 0, 0, 106, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126877', 4126877, '-289.906189', '70.603394', '-268.879211', 117, 0, 0, 0, 1, 6, 0, 0, 106, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72312, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126883', 4126883, '-267.841705', '64.469360', '-327.412811', 2269, 0, 0, 0, 1, 6, 0, 0, 2192, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66346, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126885', 4126885, '-307.302704', '32.962261', '-455.989990', 6, 0, 0, 0, 1, 6, 0, 0, 407, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126888', 4126888, '-310.050690', '32.641781', '-441.091614', 6, 0, 0, 0, 1, 6, 0, 0, 407, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126889', 4126889, '-308.762909', '32.686890', '-438.783905', 6, 0, 0, 0, 1, 6, 0, 0, 407, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126891', 4126891, '-293.472809', '32.249420', '-445.536591', 6, 0, 0, 0, 1, 6, 0, 0, 407, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126894', 4126894, '-324.815308', '33.758869', '-447.159790', 6, 0, 0, 0, 1, 6, 0, 0, 407, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126896', 4126896, '-337.932007', '21.784920', '-514.140076', 6, 0, 0, 0, 1, 6, 0, 0, 407, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126897', 4126897, '-289.174194', '16.068911', '-525.213928', 6, 0, 0, 0, 1, 6, 0, 0, 407, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4126898', 4126898, '-283.628113', '15.642390', '-526.527771', 6, 0, 0, 0, 1, 6, 0, 0, 407, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127166', 4127166, '-357.878510', '61.652580', '-120.536697', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69876, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127167', 4127167, '-345.085114', '63.068939', '-130.748306', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69604, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127168', 4127168, '-326.303711', '64.375679', '-183.813004', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127170', 4127170, '-270.283112', '62.668701', '-222.644394', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127171', 4127171, '-169.899994', '78.435280', '-264.339996', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127172', 4127172, '-149.763107', '81.401901', '-310.291107', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127175', 4127175, '-293.792908', '54.872101', '-262.400299', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127178', 4127178, '-354.115814', '52.784729', '-241.254807', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127180', 4127180, '-378.213013', '52.894810', '-295.929199', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127181', 4127181, '-389.473297', '50.199680', '-340.988098', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127183', 4127183, '-333.614197', '63.203400', '-339.065613', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67156, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127184', 4127184, '-311.483185', '64.156174', '-313.589203', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66884, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127399', 4127399, '193.652206', '64.744019', '-256.824585', 755, 0, 0, 0, 0, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65508, 2, 0, 0, 0, 39, 30060, 0, 0, 0), +(180, 's1f6', 'bnpc4127400', 4127400, '196.185196', '64.744019', '-255.054596', 756, 0, 0, 0, 0, 6, 0, 0, 562, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65242, 2, 0, 0, 0, 39, 30060, 0, 0, 0), +(180, 's1f6', 'bnpc4127401', 4127401, '184.893402', '64.621948', '-259.540710', 757, 0, 0, 0, 1, 6, 0, 0, 375, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64976, 2, 0, 0, 0, 39, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127404', 4127404, '194.659302', '64.591431', '-234.760101', 756, 0, 0, 0, 1, 6, 0, 0, 562, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64698, 2, 0, 0, 0, 39, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127405', 4127405, '193.255493', '64.072510', '-206.164703', 755, 0, 0, 0, 1, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64420, 2, 0, 0, 0, 39, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127406', 4127406, '194.720306', '64.652344', '-240.711105', 757, 0, 0, 0, 1, 6, 0, 0, 375, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64160, 2, 0, 0, 0, 39, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127408', 4127408, '188.769302', '64.225220', '-283.039612', 755, 0, 0, 0, 1, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63876, 2, 0, 0, 0, 39, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127409', 4127409, '192.187393', '63.797970', '-284.504486', 757, 0, 0, 0, 1, 6, 0, 0, 375, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63616, 2, 0, 0, 0, 39, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127410', 4127410, '144.182495', '70.359253', '-264.820313', 756, 0, 0, 0, 1, 6, 0, 0, 562, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63338, 2, 0, 0, 0, 39, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127411', 4127411, '71.641113', '66.514038', '-263.721710', 756, 0, 0, 0, 1, 6, 0, 0, 562, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63066, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127412', 4127412, '61.875240', '65.812134', '-240.528000', 757, 0, 0, 0, 1, 6, 0, 0, 375, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62800, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127413', 4127413, '79.789307', '67.826286', '-250.385300', 755, 0, 0, 0, 0, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62516, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(180, 's1f6', 'bnpc4127415', 4127415, '66.242851', '48.572620', '-363.161499', 757, 0, 0, 0, 1, 6, 0, 0, 375, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62256, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127416', 4127416, '16.586550', '48.386349', '-372.640594', 756, 0, 0, 0, 1, 6, 0, 0, 562, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61978, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127417', 4127417, '23.453131', '48.477909', '-367.849213', 755, 0, 0, 0, 1, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61700, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127418', 4127418, '-17.715820', '48.355709', '-302.571198', 757, 0, 0, 0, 1, 6, 0, 0, 375, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61440, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127419', 4127419, '-3.524841', '48.325321', '-324.818787', 756, 0, 0, 0, 1, 6, 0, 0, 562, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61162, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127420', 4127420, '-4.867676', '48.325321', '-320.820892', 755, 0, 0, 0, 1, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60884, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127422', 4127422, '43.717041', '48.416870', '-344.197815', 757, 0, 0, 0, 0, 6, 0, 0, 375, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60624, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(180, 's1f6', 'bnpc4127423', 4127423, '46.616211', '48.294800', '-346.456085', 756, 0, 0, 0, 0, 6, 0, 0, 562, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60346, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(180, 's1f6', 'bnpc4127424', 4127424, '73.006866', '57.422729', '-306.696289', 755, 0, 0, 0, 1, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60068, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127426', 4127426, '76.829102', '48.447269', '-395.132385', 757, 0, 0, 0, 1, 6, 0, 0, 375, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59808, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127427', 4127427, '71.335938', '48.508419', '-408.346710', 756, 0, 0, 0, 0, 6, 0, 0, 562, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59530, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(180, 's1f6', 'bnpc4127428', 4127428, '74.143547', '48.569462', '-406.118896', 755, 0, 0, 0, 0, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59252, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(180, 's1f6', 'bnpc4127429', 4127429, '73.258537', '55.588619', '-459.098206', 757, 0, 0, 0, 1, 6, 0, 0, 375, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58992, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127430', 4127430, '61.299801', '55.422451', '-506.939392', 756, 0, 0, 0, 0, 6, 0, 0, 562, 0, '0.000000', 44, 0, 120, 1, 0, 13, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 58714, 2, 0, 0, 0, 0, 30406, 0, 0, 0), +(180, 's1f6', 'bnpc4127431', 4127431, '71.572182', '55.522911', '-505.706207', 755, 0, 0, 0, 1, 6, 0, 0, 377, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58436, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127432', 4127432, '53.985661', '55.599010', '-492.126312', 757, 0, 0, 0, 0, 6, 0, 0, 375, 0, '0.000000', 44, 0, 120, 1, 0, 11, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 58176, 2, 0, 0, 0, 0, 30406, 0, 0, 0), +(180, 's1f6', 'bnpc4127433', 4127433, '53.829788', '55.176491', '-510.031586', 756, 0, 0, 0, 0, 6, 0, 0, 562, 0, '0.000000', 44, 0, 120, 1, 0, 12, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 57898, 2, 0, 0, 0, 0, 30406, 0, 0, 0), +(180, 's1f6', 'bnpc4127434', 4127434, '47.135010', '56.961788', '-498.527496', 755, 0, 0, 0, 0, 6, 0, 0, 377, 0, '0.000000', 44, 0, 120, 1, 0, 14, 0, 16, 2, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57620, 2, 0, 0, 0, 0, 30406, 0, 0, 0), +(180, 's1f6', 'bnpc4127436', 4127436, '4.565907', '48.924049', '-305.236511', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57366, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127440', 4127440, '-4.979307', '49.903141', '-348.367401', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57094, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127441', 4127441, '-3.104779', '49.903141', '-346.222290', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56822, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127442', 4127442, '19.638371', '48.996700', '-333.150299', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56550, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127443', 4127443, '48.050659', '48.172729', '-360.189209', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56278, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127444', 4127444, '88.884468', '56.055801', '-453.066589', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56006, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127445', 4127445, '57.083981', '48.172729', '-382.833588', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55734, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127447', 4127447, '59.189701', '48.172729', '-384.481598', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55462, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127449', 4127449, '56.408760', '56.256931', '-477.200592', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55190, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127450', 4127450, '54.048340', '55.394890', '-501.484192', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54918, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127451', 4127451, '182.757202', '60.685059', '-158.617599', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127453', 4127453, '181.444901', '60.379879', '-152.727600', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127454', 4127454, '186.205795', '60.013672', '-148.607697', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54108, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127455', 4127455, '193.804794', '61.478519', '-160.479202', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53836, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127456', 4127456, '191.729599', '61.356449', '-163.164795', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53564, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127457', 4127457, '172.228500', '60.715580', '-159.716202', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53292, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127458', 4127458, '191.088593', '60.074711', '-148.546600', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53020, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127459', 4127459, '179.858002', '60.318851', '-151.354294', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52748, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4127504', 4127504, '-28.430149', '54.872589', '-343.271301', 758, 0, 0, 0, 1, 6, 0, 0, 371, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52482, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127505', 4127505, '42.459599', '48.215618', '-395.711212', 758, 0, 0, 0, 1, 6, 0, 0, 371, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52210, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4127506', 4127506, '98.225403', '55.508629', '-465.979492', 758, 0, 0, 0, 1, 6, 0, 0, 371, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51938, 2, 0, 0, 0, 0, 30061, 0, 0, 0), +(180, 's1f6', 'bnpc4313099', 4313099, '177.686096', '23.920490', '-654.072205', 755, 0, 0, 0, 0, 6, 0, 0, 2518, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49452, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(180, 's1f6', 'bnpc4313100', 4313100, '167.681305', '21.744020', '-713.588074', 756, 0, 0, 0, 1, 6, 0, 0, 2519, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49186, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4313101', 4313101, '158.525894', '21.622009', '-698.329224', 757, 0, 0, 0, 0, 6, 0, 0, 2521, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48920, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(180, 's1f6', 'bnpc4313102', 4313102, '155.508408', '21.852791', '-697.356995', 758, 0, 0, 0, 0, 6, 0, 0, 2520, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48666, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(180, 's1f6', 'bnpc4313104', 4313104, '81.315308', '39.322510', '-575.951782', 757, 0, 0, 0, 1, 6, 0, 0, 1834, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41304, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4313105', 4313105, '117.540199', '24.338131', '-605.890015', 755, 0, 0, 0, 0, 6, 0, 0, 1832, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44828, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(180, 's1f6', 'bnpc4313106', 4313106, '105.720299', '22.417379', '-652.046082', 758, 0, 0, 0, 0, 6, 0, 0, 1835, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48394, 2, 0, 0, 0, 46, 30060, 0, 0, 0), +(180, 's1f6', 'bnpc4313107', 4313107, '86.533943', '22.171329', '-650.598877', 757, 0, 0, 0, 1, 6, 0, 0, 1834, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48104, 2, 0, 0, 0, 46, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4313108', 4313108, '108.436302', '22.716089', '-649.299500', 755, 0, 0, 0, 0, 6, 0, 0, 1832, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47820, 2, 0, 0, 0, 46, 30060, 0, 0, 0), +(180, 's1f6', 'bnpc4313109', 4313109, '74.762131', '25.395679', '-678.056274', 756, 0, 0, 0, 0, 6, 0, 0, 1833, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41842, 2, 0, 0, 0, 0, 30061, 0, 0, 0), +(180, 's1f6', 'bnpc4313111', 4313111, '15.157670', '24.357340', '-602.802673', 758, 0, 0, 0, 1, 6, 0, 0, 1835, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47578, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4313113', 4313113, '57.968990', '24.124390', '-720.912476', 757, 0, 0, 0, 1, 6, 0, 0, 1834, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47288, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4313116', 4313116, '30.990971', '22.995300', '-758.266602', 758, 0, 0, 0, 0, 6, 0, 0, 1835, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47034, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(180, 's1f6', 'bnpc4313117', 4313117, '26.596439', '21.469419', '-778.408508', 757, 0, 0, 0, 1, 6, 0, 0, 1834, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46744, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4313118', 4313118, '28.824221', '21.469419', '-780.575317', 756, 0, 0, 0, 1, 6, 0, 0, 1833, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41026, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4313119', 4313119, '8.132996', '21.683041', '-791.897522', 758, 0, 0, 0, 1, 6, 0, 0, 1835, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40778, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4313121', 4313121, '118.760902', '23.636169', '-718.165894', 755, 0, 0, 0, 0, 6, 0, 0, 1832, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45100, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(180, 's1f6', 'bnpc4313235', 4313235, '34.154140', '24.129841', '-623.851013', 756, 0, 0, 0, 1, 6, 0, 0, 1833, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44562, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4313247', 4313247, '223.987198', '23.392031', '-653.345581', 756, 0, 0, 0, 1, 6, 0, 0, 2519, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46466, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4313251', 4313251, '175.829697', '23.483580', '-792.629883', 755, 0, 0, 0, 0, 6, 0, 0, 2518, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46188, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(180, 's1f6', 'bnpc4313253', 4313253, '176.165405', '22.751160', '-781.368713', 757, 0, 0, 0, 1, 6, 0, 0, 2521, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41576, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4313254', 4313254, '150.774307', '25.406250', '-753.932983', 756, 0, 0, 0, 1, 6, 0, 0, 2519, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45922, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4313257', 4313257, '134.355606', '23.941410', '-656.183716', 758, 0, 0, 0, 1, 6, 0, 0, 2520, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45674, 2, 0, 0, 0, 0, 30063, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(180, 's1f6', 'bnpc4313258', 4313258, '144.212906', '26.169189', '-626.703186', 755, 0, 0, 0, 0, 6, 0, 0, 2518, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45372, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(180, 's1f6', 'bnpc4313458', 4313458, '59.114868', '23.909389', '-624.353394', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44326, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(180, 's1f6', 'bnpc4313461', 4313461, '16.525450', '24.093990', '-606.225708', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44054, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(180, 's1f6', 'bnpc4313463', 4313463, '16.495001', '21.499880', '-769.832886', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43782, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(180, 's1f6', 'bnpc4313465', 4313465, '22.885611', '26.030411', '-798.416687', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43510, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(180, 's1f6', 'bnpc4313467', 4313467, '83.440170', '23.678129', '-711.246216', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43238, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(180, 's1f6', 'bnpc4313469', 4313469, '209.796295', '23.269960', '-686.884888', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42966, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(180, 's1f6', 'bnpc4313470', 4313470, '206.103500', '22.873230', '-681.574829', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42694, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(180, 's1f6', 'bnpc4313471', 4313471, '207.601898', '23.979940', '-743.415222', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42422, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(180, 's1f6', 'bnpc4313472', 4313472, '174.547897', '23.605650', '-678.583984', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42150, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(180, 's1f6', 'bnpc4621617', 4621617, '-293.118896', '4.716263', '-591.364014', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 13194, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4621619', 4621619, '90.922218', '50.569962', '-370.084991', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 12928, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4634057', 4634057, '66.335922', '57.498440', '-320.802185', 755, 0, 0, 0, 1, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51636, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4634058', 4634058, '34.751041', '48.305031', '-377.871490', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51382, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4634061', 4634061, '80.979736', '49.537529', '-371.567688', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51110, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4634101', 4634101, '47.787540', '24.000000', '-671.779602', 756, 0, 0, 0, 1, 6, 0, 0, 1833, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40482, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4634102', 4634102, '112.947899', '23.665751', '-753.267578', 756, 0, 0, 0, 1, 6, 0, 0, 1833, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40210, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4634103', 4634103, '17.829220', '22.967340', '-655.728821', 757, 0, 0, 0, 1, 6, 0, 0, 1834, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39944, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4634105', 4634105, '117.893402', '23.059460', '-785.317871', 758, 0, 0, 0, 0, 6, 0, 0, 1835, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39690, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(180, 's1f6', 'bnpc4634112', 4634112, '83.363541', '24.900320', '-818.427979', 755, 0, 0, 0, 1, 6, 0, 0, 1832, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39388, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4634115', 4634115, '48.438782', '24.181250', '-583.040222', 755, 0, 0, 0, 1, 6, 0, 0, 1832, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39116, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4634128', 4634128, '279.447388', '21.881470', '-807.844788', 757, 0, 0, 0, 0, 6, 0, 0, 2521, 0, '0.000000', 49, 0, 120, 1, 0, 23, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 38856, 2, 0, 0, 0, 0, 30406, 0, 0, 0), +(180, 's1f6', 'bnpc4634130', 4634130, '254.602600', '21.611750', '-797.892212', 758, 0, 0, 0, 1, 6, 0, 0, 2520, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38602, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4634147', 4634147, '306.611389', '22.334221', '-728.344421', 2838, 0, 0, 0, 1, 6, 0, 0, 2522, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38348, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4634149', 4634149, '245.748596', '24.521351', '-839.557800', 2838, 0, 0, 0, 1, 6, 0, 0, 2522, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38076, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4634150', 4634150, '255.938904', '21.608480', '-819.697388', 2838, 0, 0, 0, 1, 6, 0, 0, 2522, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37804, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4634151', 4634151, '284.750702', '21.642660', '-703.160583', 2838, 0, 0, 0, 1, 6, 0, 0, 2522, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37532, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4634153', 4634153, '278.747314', '23.306129', '-734.708130', 2838, 0, 0, 0, 1, 6, 0, 0, 2522, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37260, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4664779', 4664779, '51.481640', '55.599010', '-491.209015', 2833, 0, 0, 0, 0, 6, 0, 0, 2528, 0, '0.000000', 44, 1, 120, 1, 0, 11, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50856, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4664780', 4664780, '50.868221', '55.176491', '-509.842285', 2833, 0, 0, 0, 0, 6, 0, 0, 2528, 0, '0.000000', 44, 1, 120, 1, 0, 12, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50584, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4664781', 4664781, '61.290409', '55.318249', '-509.565887', 2833, 0, 0, 0, 0, 6, 0, 0, 2528, 0, '0.000000', 44, 1, 120, 1, 0, 13, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50312, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4664782', 4664782, '285.487915', '22.096889', '-798.198914', 2834, 0, 0, 0, 0, 6, 0, 0, 2529, 0, '0.000000', 48, 1, 120, 1, 0, 21, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 36994, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4664783', 4664783, '280.820007', '21.850000', '-818.599976', 2834, 0, 0, 0, 0, 6, 0, 0, 2529, 0, '0.000000', 48, 1, 120, 1, 0, 22, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 36722, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4664784', 4664784, '282.380005', '22.062380', '-807.590027', 2834, 0, 0, 0, 0, 6, 0, 0, 2529, 0, '0.000000', 48, 1, 120, 1, 0, 23, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 36450, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4666224', 4666224, '283.243195', '22.311359', '-796.170898', 756, 0, 0, 0, 0, 6, 0, 0, 2519, 0, '0.000000', 49, 0, 120, 1, 0, 21, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 36130, 2, 0, 0, 0, 0, 30406, 0, 0, 0), +(180, 's1f6', 'bnpc4666225', 4666225, '281.156311', '21.832199', '-815.852112', 755, 0, 0, 0, 0, 6, 0, 0, 2518, 0, '0.000000', 49, 0, 120, 1, 0, 22, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 35852, 2, 0, 0, 0, 0, 30406, 0, 0, 0), +(180, 's1f6', 'bnpc4681187', 4681187, '47.109711', '56.992210', '-500.873199', 2833, 0, 0, 0, 0, 6, 0, 0, 2528, 0, '0.000000', 44, 1, 120, 1, 0, 14, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50040, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(180, 's1f6', 'bnpc4681310', 4681310, '-14.819780', '24.425871', '-666.209473', 755, 0, 0, 0, 1, 6, 0, 0, 1832, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35580, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(180, 's1f6', 'bnpc4681311', 4681311, '86.037354', '24.478621', '-699.376709', 756, 0, 0, 0, 0, 6, 0, 0, 1833, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35314, 2, 0, 0, 0, 0, 30061, 0, 0, 0), +(190, 'go002', 'bnpc1132780', 1132780, '42.705971', '6.489012', '-222.119598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132784', 1132784, '43.994171', '7.081282', '-226.261307', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132785', 1132785, '46.368141', '6.532326', '-222.363800', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230902, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132786', 1132786, '50.249649', '8.663927', '-237.583603', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132810', 1132810, '119.142403', '17.274370', '-264.585907', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132815', 1132815, '53.141479', '4.367238', '-208.718597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132818', 1132818, '57.950279', '4.701855', '-181.906006', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132819', 1132819, '53.380199', '3.647015', '-170.941803', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132823', 1132823, '85.892982', '4.386182', '-186.633102', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132827', 1132827, '136.440002', '-0.215091', '-142.126297', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132829', 1132829, '139.586502', '1.436886', '-162.906296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132833', 1132833, '144.692596', '1.594073', '-161.313507', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132834', 1132834, '169.345306', '-0.575563', '-143.321701', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132835', 1132835, '132.885803', '4.471908', '-182.040894', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132836', 1132836, '127.652000', '2.679112', '-179.060898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132837', 1132837, '133.402802', '5.498395', '-185.220093', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132842', 1132842, '104.130501', '4.751109', '-199.651596', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132988', 1132988, '145.939301', '0.761501', '-119.501801', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132990', 1132990, '165.896698', '-0.582151', '-142.284103', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132991', 1132991, '196.646301', '-2.798964', '-155.795898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132992', 1132992, '159.011398', '0.196450', '-113.407997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226012, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1132993', 1132993, '162.856598', '-0.357008', '-115.116997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225740, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133000', 1133000, '202.288803', '-2.206049', '-168.963196', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225468, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133001', 1133001, '223.772705', '-6.852091', '-140.217407', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225196, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133002', 1133002, '206.683395', '-2.759299', '-171.221497', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224924, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133005', 1133005, '231.146698', '-5.044106', '-178.307693', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224652, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133007', 1133007, '242.902496', '-0.494766', '-191.458496', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224380, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133008', 1133008, '239.977493', '-0.588080', '-191.828400', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224108, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133010', 1133010, '221.392303', '-6.460419', '-138.050598', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223836, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133022', 1133022, '332.788513', '-3.345333', '-151.251495', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201534, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133023', 1133023, '298.603699', '-6.332541', '-125.749603', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133029', 1133029, '302.693298', '-3.341390', '-184.143005', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133031', 1133031, '328.386993', '-0.505648', '-187.936401', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133032', 1133032, '342.892487', '-1.328422', '-175.218201', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133035', 1133035, '358.327515', '-2.255364', '-175.310898', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133036', 1133036, '335.507294', '0.561625', '-194.418793', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133042', 1133042, '439.946808', '10.149250', '-108.177101', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169468, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133044', 1133044, '458.584900', '14.997390', '-90.379593', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169740, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133047', 1133047, '463.401215', '25.778530', '-35.324680', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168380, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133049', 1133049, '445.243591', '31.812080', '-9.685579', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168652, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133052', 1133052, '486.745514', '31.609249', '-44.177990', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168924, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133053', 1133053, '487.618011', '31.024900', '-55.958771', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170012, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133054', 1133054, '483.304291', '30.900890', '-51.161331', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172188, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133056', 1133056, '482.511993', '23.910801', '-88.545013', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173276, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133057', 1133057, '480.679291', '24.104330', '-120.189201', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169196, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133063', 1133063, '504.435913', '29.146271', '-83.562149', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173004, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133064', 1133064, '482.169495', '24.010910', '-92.475502', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172732, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133065', 1133065, '459.642914', '24.454941', '-39.719559', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172460, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133066', 1133066, '453.938690', '26.000799', '-33.810230', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170828, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133070', 1133070, '351.512787', '3.052480', '46.861389', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133071', 1133071, '341.298492', '3.983801', '67.704231', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133072', 1133072, '348.626495', '0.976962', '28.015940', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133073', 1133073, '342.183502', '0.098491', '27.298340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133077', 1133077, '309.071411', '-2.609340', '63.065491', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133080', 1133080, '281.574707', '-7.184652', '26.169170', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133098', 1133098, '289.254913', '-5.168305', '48.585239', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133100', 1133100, '291.498688', '-5.368438', '47.821369', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133126', 1133126, '-82.030632', '1.519239', '-141.488693', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148770, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133128', 1133128, '-77.317497', '1.083344', '-136.644608', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148498, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133130', 1133130, '-63.375290', '0.643326', '-166.887497', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148226, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133131', 1133131, '-64.313164', '0.965167', '-162.181503', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147954, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133132', 1133132, '-75.591331', '1.176651', '-142.404297', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147682, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133138', 1133138, '-33.189919', '-4.914308', '-94.149628', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147410, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133148', 1133148, '86.244072', '-19.783070', '210.247406', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133152', 1133152, '70.510750', '-17.727341', '188.296799', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133156', 1133156, '56.609531', '-22.226370', '292.790710', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133163', 1133163, '25.970390', '-24.061230', '233.649994', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133165', 1133165, '37.231960', '-26.765560', '260.079498', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133167', 1133167, '36.484268', '-25.833570', '242.542099', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133172', 1133172, '94.585983', '-24.244490', '288.477509', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133176', 1133176, '98.126083', '-23.363501', '294.977814', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133177', 1133177, '85.597298', '-27.953020', '268.263000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133178', 1133178, '89.747749', '-28.194380', '266.065704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133179', 1133179, '141.949905', '-28.936390', '333.222290', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133181', 1133181, '160.046402', '-31.802570', '350.789795', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133185', 1133185, '164.906906', '-32.018280', '333.485504', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133186', 1133186, '146.226807', '-28.810591', '357.818298', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133187', 1133187, '196.479996', '-32.228100', '370.754303', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133189', 1133189, '179.687897', '-32.476631', '364.163086', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133193', 1133193, '213.929794', '-29.694580', '421.080688', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133194', 1133194, '210.157394', '-29.179230', '422.919312', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133195', 1133195, '202.300293', '-31.331381', '415.743286', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133196', 1133196, '197.350098', '-27.568890', '432.363586', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133197', 1133197, '127.580299', '-21.390261', '452.635986', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133198', 1133198, '140.825500', '-23.697309', '449.881714', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133199', 1133199, '140.459198', '-23.605749', '454.489899', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133202', 1133202, '12.397950', '-27.619690', '294.880493', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133205', 1133205, '-18.143021', '-24.734921', '265.369598', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133206', 1133206, '-12.771850', '-24.094040', '262.958710', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133207', 1133207, '-9.199866', '-28.976500', '329.645294', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140338, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133209', 1133209, '-28.712330', '-27.396271', '280.689209', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140066, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133235', 1133235, '-294.825012', '66.698837', '-219.308807', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94446, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133239', 1133239, '-293.659912', '67.460083', '-222.491806', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94174, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133246', 1133246, '-302.510101', '60.959740', '-159.319504', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93902, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133248', 1133248, '-302.700409', '62.132381', '-166.402496', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133255', 1133255, '-356.364685', '65.308533', '-258.518585', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133257', 1133257, '-369.039490', '65.567993', '-232.715393', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133258', 1133258, '-392.416290', '67.276978', '-249.713898', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1133287', 1133287, '197.283798', '-8.773984', '-27.176359', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133291', 1133291, '211.352707', '-8.651912', '-43.106781', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133293', 1133293, '157.305206', '-7.888961', '-17.929399', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133294', 1133294, '157.244202', '-8.163623', '-11.917340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133298', 1133298, '120.449799', '-4.840655', '13.528090', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1133303', 1133303, '104.203796', '-7.003938', '47.562321', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135577', 1135577, '335.133911', '-4.725379', '-24.794729', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196916, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135582', 1135582, '371.054596', '0.844982', '-35.208488', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196644, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135586', 1135586, '374.433105', '1.702958', '-25.284241', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135591', 1135591, '345.784607', '-2.975556', '-32.761169', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135593', 1135593, '332.478790', '-3.372291', '3.097534', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135605', 1135605, '395.773193', '2.548209', '-44.693722', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135606', 1135606, '415.025085', '5.625315', '-64.068764', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135607', 1135607, '388.509888', '0.304810', '-66.453087', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135612', 1135612, '394.000214', '3.556523', '-87.144318', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135613', 1135613, '375.936493', '0.686609', '-85.923592', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135614', 1135614, '343.831512', '-5.020265', '-80.094650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135616', 1135616, '409.009888', '5.209702', '-112.078003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135617', 1135617, '417.517700', '5.755183', '-68.232597', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135618', 1135618, '412.284607', '5.636008', '-106.424400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135619', 1135619, '406.314209', '5.571515', '-103.380302', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135624', 1135624, '386.668915', '4.336706', '-103.087303', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135625', 1135625, '364.309509', '0.784262', '-125.017197', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135627', 1135627, '359.853485', '-2.578822', '-152.483398', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135628', 1135628, '350.999207', '-2.118987', '-128.300003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135629', 1135629, '316.613586', '8.015758', '128.187897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135632', 1135632, '323.190002', '9.736116', '132.826904', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135633', 1135633, '322.078613', '10.136940', '134.004807', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135639', 1135639, '288.849091', '17.952721', '161.725601', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135643', 1135643, '286.915314', '19.626829', '172.441101', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135645', 1135645, '295.765594', '16.383280', '167.437195', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1135646', 1135646, '318.979004', '13.831220', '155.957001', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1135647', 1135647, '290.314087', '17.922770', '159.804199', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1135651', 1135651, '-262.056305', '55.970860', '36.748020', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135671', 1135671, '-462.059692', '64.698357', '68.829857', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1135673', 1135673, '-398.458893', '51.156910', '68.804077', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83602, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1135685', 1135685, '-418.844910', '58.274151', '-34.409142', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135687', 1135687, '-520.153870', '65.239517', '61.102520', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80888, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1135688', 1135688, '-508.781586', '65.293297', '40.634731', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81432, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1135931', 1135931, '272.581390', '23.939560', '195.025894', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135933', 1135933, '241.474594', '24.000601', '179.914902', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135937', 1135937, '-101.839104', '-40.043732', '299.745911', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1135938', 1135938, '-105.816902', '-40.028461', '306.239807', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1135939', 1135939, '-90.198776', '-40.129551', '324.673096', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1135940', 1135940, '-94.585022', '-40.032150', '311.676514', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1135941', 1135941, '-114.854698', '-40.054981', '302.937286', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135942', 1135942, '-97.734077', '-40.054981', '304.310608', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135943', 1135943, '-102.695999', '-40.032539', '320.445892', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1135944', 1135944, '-83.087273', '-39.867889', '327.616211', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162337', 1162337, '283.977112', '-6.509701', '-148.452805', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162338', 1162338, '281.871399', '-6.690229', '-150.039703', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162341', 1162341, '315.751801', '-4.718813', '-109.327103', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162344', 1162344, '309.980103', '1.983368', '92.979958', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162345', 1162345, '337.067413', '3.266761', '71.050873', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162348', 1162348, '130.357803', '-6.759793', '57.419651', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162351', 1162351, '222.430695', '-7.827925', '-60.441029', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162352', 1162352, '227.527206', '-7.187046', '-66.727753', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162353', 1162353, '203.082306', '-7.339636', '-68.925049', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162354', 1162354, '221.484604', '-7.400672', '-64.011642', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162358', 1162358, '-19.657080', '0.269221', '-140.150803', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1162368', 1162368, '112.853699', '-26.954611', '251.195801', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162369', 1162369, '89.158417', '-24.246630', '236.957306', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162371', 1162371, '217.547806', '-31.967699', '395.895294', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162374', 1162374, '-2.485424', '-31.687981', '451.364502', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162376', 1162376, '-10.696620', '-34.134480', '443.381287', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162378', 1162378, '-23.636271', '-35.911461', '462.485596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162380', 1162380, '-61.417610', '-36.118149', '490.745300', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162384', 1162384, '-4.128872', '-28.294901', '327.096588', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1162385', 1162385, '-48.920349', '-35.910400', '310.262909', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1162386', 1162386, '-66.916382', '-32.083370', '343.644196', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1162387', 1162387, '-65.420998', '-31.630421', '353.013306', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1162390', 1162390, '-298.542786', '20.650921', '132.768707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162391', 1162391, '-294.392303', '20.060690', '130.388306', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162392', 1162392, '-296.020508', '20.999870', '168.359299', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162393', 1162393, '-297.016907', '20.876789', '122.239998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162394', 1162394, '-208.026505', '3.601872', '2.164479', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162398', 1162398, '-396.566711', '63.980961', '-218.615997', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1162399', 1162399, '-347.955994', '66.968529', '-220.251999', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1162402', 1162402, '-291.152710', '61.247379', '-168.828796', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93358, 1, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(190, 'go002', 'bnpc1162403', 1162403, '-351.183289', '63.740372', '-153.645599', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162412', 1162412, '-365.503204', '62.324249', '-85.497841', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162413', 1162413, '-365.240814', '62.204288', '-87.690971', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162416', 1162416, '-353.685791', '63.380310', '-149.922501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1162426', 1162426, '-501.091003', '65.293297', '90.318100', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1162427', 1162427, '-534.918823', '65.381104', '43.912449', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81160, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1180878', 1180878, '104.639297', '-8.000016', '-91.168152', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1180879', 1180879, '105.168701', '-8.000016', '-94.222618', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1180880', 1180880, '106.210297', '-8.000016', '-96.527153', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1183451', 1183451, '104.347603', '-8.000016', '-88.522499', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1183452', 1183452, '101.512100', '-8.064646', '-97.812950', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1183453', 1183453, '100.580399', '-8.000016', '-95.459229', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1183454', 1183454, '99.803108', '-8.184623', '-92.716454', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1183455', 1183455, '99.192757', '-8.361253', '-89.878258', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234346, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1183456', 1183456, '96.327393', '-8.500061', '-99.385361', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1183458', 1183458, '95.550194', '-8.460118', '-96.840134', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1183459', 1183459, '94.825958', '-8.500061', '-93.978119', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1183460', 1183460, '94.179993', '-8.500061', '-90.982887', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1408325', 1408325, '107.492897', '15.984340', '-270.054596', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1408329', 1408329, '119.554398', '17.410500', '-259.693298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1408332', 1408332, '111.600800', '16.549120', '-248.298096', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1408334', 1408334, '117.813103', '17.697479', '-247.780807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1408341', 1408341, '111.814400', '16.758829', '-244.880096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1408351', 1408351, '86.796638', '15.940370', '-262.601105', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1408352', 1408352, '68.921707', '16.132620', '-262.037811', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1408353', 1408353, '68.168861', '16.760660', '-264.307190', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1408357', 1408357, '72.243088', '10.935070', '-243.492706', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1408358', 1408358, '87.101822', '15.245950', '-260.648010', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221122, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410560', 1410560, '103.350998', '14.389260', '-254.875107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410688', 1410688, '50.217388', '6.559038', '-223.468399', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410689', 1410689, '39.352970', '4.053384', '-182.513199', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410690', 1410690, '37.860909', '3.934789', '-183.153900', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410691', 1410691, '55.661430', '4.710185', '-183.981201', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1410693', 1410693, '-1.083989', '1.339663', '-188.567398', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219478, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1410694', 1410694, '0.474049', '1.531124', '-191.204697', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219206, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1410695', 1410695, '8.437746', '1.980624', '-176.756195', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218934, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1410696', 1410696, '-15.013690', '1.551492', '-198.619598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218662, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1410698', 1410698, '7.450444', '1.514552', '-190.764694', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410699', 1410699, '8.438234', '3.222636', '-146.234497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410700', 1410700, '14.477130', '3.104484', '-138.479904', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410701', 1410701, '16.068541', '3.373573', '-139.535202', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217574, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1410703', 1410703, '-15.113390', '3.146425', '-233.722000', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217302, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1410704', 1410704, '-4.948251', '4.778366', '-234.155304', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217030, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1410705', 1410705, '8.210199', '5.748120', '-247.337402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1410707', 1410707, '9.591916', '5.570471', '-251.132996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216498, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410708', 1410708, '5.815275', '5.237663', '-249.501099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216226, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410709', 1410709, '-9.906527', '3.594761', '-217.097595', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215954, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410712', 1410712, '-13.648660', '3.344659', '-231.383408', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215682, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410714', 1410714, '-30.136610', '0.909592', '-224.200897', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1410715', 1410715, '48.355789', '9.194451', '-243.366196', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1410716', 1410716, '74.908539', '4.285552', '-211.076706', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1410851', 1410851, '88.732697', '4.082766', '-185.738998', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215138, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410853', 1410853, '130.975204', '4.971314', '-185.109497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214866, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410976', 1410976, '131.470093', '2.068069', '-173.581100', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214594, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410977', 1410977, '107.495903', '0.653863', '-168.558304', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214322, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410978', 1410978, '142.190598', '1.204836', '-160.400803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214050, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410979', 1410979, '148.032898', '0.649221', '-123.475403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213778, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410982', 1410982, '166.648804', '-1.181116', '-137.457901', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213506, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410983', 1410983, '178.145996', '-1.608972', '-140.621307', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213228, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1410984', 1410984, '168.844696', '2.701761', '-163.503296', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212962, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410990', 1410990, '199.114899', '-0.803801', '-174.853195', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212684, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1410996', 1410996, '202.197205', '-1.697314', '-172.655899', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212418, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410998', 1410998, '239.098404', '-2.190103', '-187.159805', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212146, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1410999', 1410999, '221.515396', '-6.264487', '-154.155502', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211874, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411000', 1411000, '227.837204', '-8.126032', '-125.948700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211602, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411003', 1411003, '174.579300', '-1.892151', '-102.278099', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411004', 1411004, '182.699707', '-4.339209', '-88.384857', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211058, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411005', 1411005, '161.154007', '4.078132', '-169.399704', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411032', 1411032, '271.173798', '-9.203460', '-119.877403', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411034', 1411034, '330.082886', '-2.640436', '-152.968796', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173790, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411036', 1411036, '305.867188', '-2.983790', '-188.262894', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411037', 1411037, '302.815399', '-3.417479', '-190.063507', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411038', 1411038, '283.192108', '-6.780017', '-171.401596', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411042', 1411042, '287.338715', '-5.114256', '-195.320007', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411049', 1411049, '276.640594', '-8.026556', '-141.155594', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411065', 1411065, '308.725311', '-4.528103', '-80.785583', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411066', 1411066, '311.802795', '-5.117999', '-76.683037', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411069', 1411069, '291.112213', '-5.409167', '-79.667397', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411071', 1411071, '346.714203', '-3.206666', '-41.466160', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411078', 1411078, '264.779999', '-11.621630', '-65.637466', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183878, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411084', 1411084, '234.546997', '-11.793010', '-2.134793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183606, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411085', 1411085, '250.625107', '-8.387555', '28.634951', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183334, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411086', 1411086, '313.420288', '-6.097115', '16.095341', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183038, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411087', 1411087, '314.703308', '-5.599903', '20.012140', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182766, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411119', 1411119, '309.285095', '2.975462', '97.764503', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182494, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411120', 1411120, '326.314087', '2.426137', '90.012917', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182222, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411121', 1411121, '371.612488', '7.304699', '55.979481', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411124', 1411124, '375.810211', '7.175481', '51.219879', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411135', 1411135, '420.071991', '5.244238', '-35.509991', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411136', 1411136, '417.919312', '5.091386', '-39.660309', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411137', 1411137, '425.005402', '6.439638', '-41.263420', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411148', 1411148, '449.318512', '32.509201', '-8.551085', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170556, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411152', 1411152, '505.440613', '42.969250', '-25.847120', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170284, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411155', 1411155, '511.920410', '44.121750', '-42.307079', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171644, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411157', 1411157, '502.891510', '43.241459', '-46.006001', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171372, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411159', 1411159, '481.475494', '41.105301', '-9.940406', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171100, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411160', 1411160, '484.982300', '41.536228', '-12.749530', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171916, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411162', 1411162, '201.709000', '-7.309118', '-73.014473', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181134, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411163', 1411163, '206.805496', '-9.964188', '-16.037279', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180862, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411164', 1411164, '183.550705', '-8.560358', '-4.379386', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180590, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411167', 1411167, '127.300301', '-5.901662', '12.460290', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180318, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411170', 1411170, '92.851097', '-4.928711', '4.867581', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180046, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411171', 1411171, '127.489098', '-7.126010', '58.609852', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179774, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411173', 1411173, '216.815399', '-9.170719', '-44.144390', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411174', 1411174, '218.066605', '-9.475899', '-42.282791', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411176', 1411176, '184.252594', '-8.621394', '-0.259450', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411178', 1411178, '102.749901', '-11.800030', '112.244499', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411179', 1411179, '107.205597', '-7.793041', '74.349869', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411180', 1411180, '84.061897', '-6.851347', '16.464439', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411181', 1411181, '84.336563', '-6.698757', '13.137970', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411182', 1411182, '275.292297', '23.606110', '190.161697', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411186', 1411186, '288.694397', '21.579050', '187.354996', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177344, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411187', 1411187, '286.440796', '21.978689', '190.167206', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177072, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411193', 1411193, '237.018204', '23.458019', '156.614304', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176800, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411197', 1411197, '211.473099', '23.453070', '169.805405', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176528, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411198', 1411198, '209.800598', '23.457560', '211.348297', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176256, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411202', 1411202, '205.811798', '24.000139', '204.175003', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175984, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411203', 1411203, '226.011993', '23.536930', '175.448105', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175712, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411206', 1411206, '227.024994', '24.063431', '228.666702', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175440, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411207', 1411207, '224.858200', '23.422550', '230.009598', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175168, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411208', 1411208, '234.736603', '23.544621', '214.365707', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411210', 1411210, '233.020493', '23.453070', '214.312897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411213', 1411213, '213.946701', '23.453070', '226.459106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411214', 1411214, '211.749405', '23.453070', '228.168106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411218', 1411218, '228.444595', '23.457581', '165.045898', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411220', 1411220, '382.833496', '13.565220', '79.972481', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159876, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411222', 1411222, '374.288513', '12.161390', '84.031380', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158516, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411223', 1411223, '409.964111', '18.326040', '60.501968', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159604, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411225', 1411225, '411.001709', '26.138660', '123.399696', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158788, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411227', 1411227, '436.179108', '32.211750', '101.823402', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159060, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411228', 1411228, '439.383514', '32.761070', '98.649529', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157972, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411233', 1411233, '-58.666859', '-4.080153', '-116.513397', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134082, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411234', 1411234, '-111.996201', '6.549166', '-145.525208', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411235', 1411235, '-123.994698', '12.085680', '-163.495407', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411236', 1411236, '-120.946297', '10.817430', '-167.745193', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411237', 1411237, '-179.948700', '2.732331', '-103.572197', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1411238', 1411238, '-212.568405', '1.504992', '-84.178993', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97676, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(190, 'go002', 'bnpc1411240', 1411240, '-212.756607', '1.846313', '-94.163452', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96316, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(190, 'go002', 'bnpc1411241', 1411241, '-214.172699', '1.359615', '-82.278023', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96044, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(190, 'go002', 'bnpc1411242', 1411242, '-213.856293', '1.439267', '-83.871033', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96588, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(190, 'go002', 'bnpc1411244', 1411244, '-193.905304', '2.125694', '-41.069290', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97948, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(190, 'go002', 'bnpc1411253', 1411253, '-56.382130', '-4.928711', '-94.529694', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411254', 1411254, '-20.293131', '-2.590379', '-100.341103', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411255', 1411255, '-23.246990', '0.393718', '-138.153305', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411256', 1411256, '-59.128750', '0.758792', '-164.202393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411655', 1411655, '-92.954361', '1.786075', '-122.393898', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411656', 1411656, '-93.869904', '1.736482', '-119.067497', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411657', 1411657, '-109.805397', '6.718060', '-150.029800', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411658', 1411658, '-176.756607', '2.961861', '-114.443398', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1411659', 1411659, '-205.790604', '2.068845', '-61.951530', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412058', 1412058, '-196.154800', '1.939114', '-25.589430', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412059', 1412059, '-163.822601', '0.087921', '-11.411790', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412062', 1412062, '71.492859', '-11.893120', '161.389404', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412463', 1412463, '107.728401', '-8.259025', '159.304703', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412464', 1412464, '108.796501', '-7.985859', '156.375000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412465', 1412465, '45.309830', '-13.145570', '164.612595', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412467', 1412467, '86.263412', '-10.238450', '166.918396', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412470', 1412470, '43.860840', '-19.453880', '194.128098', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412471', 1412471, '40.686970', '-20.436541', '199.194107', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412474', 1412474, '83.274986', '-19.705959', '207.342194', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412475', 1412475, '56.498798', '-24.125010', '265.742401', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412476', 1412476, '56.595661', '-23.666790', '269.184387', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412477', 1412477, '67.313408', '-23.280479', '279.101715', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412478', 1412478, '130.256897', '-28.458679', '285.610504', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412480', 1412480, '84.874817', '-11.151300', '170.539902', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412482', 1412482, '48.863239', '-15.723400', '175.131393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412483', 1412483, '91.596550', '-15.216650', '191.087204', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412484', 1412484, '40.536888', '-24.919319', '239.885193', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412486', 1412486, '12.541730', '-30.409491', '274.885712', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412488', 1412488, '84.885887', '-24.795959', '238.330597', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412489', 1412489, '100.537003', '-25.090691', '289.606689', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412890', 1412890, '192.974106', '-32.093040', '371.993805', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412891', 1412891, '174.770096', '-30.985760', '392.154999', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412892', 1412892, '169.164200', '-29.940310', '393.395111', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412893', 1412893, '172.161407', '-30.924379', '389.056885', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412894', 1412894, '171.285507', '-29.285271', '402.230988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412895', 1412895, '154.779907', '-26.129629', '405.514008', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412896', 1412896, '168.913696', '-28.561871', '440.527588', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412897', 1412897, '173.811401', '-24.163700', '462.640015', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412898', 1412898, '172.581100', '-23.212021', '466.157715', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412900', 1412900, '157.804596', '-31.533340', '347.603088', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412901', 1412901, '181.335403', '-32.472290', '364.442596', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412902', 1412902, '173.037506', '-29.813890', '400.369385', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412903', 1412903, '215.503098', '-32.150810', '397.756897', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412904', 1412904, '151.140594', '-25.314760', '448.172699', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1412905', 1412905, '174.771194', '-22.925610', '465.693207', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413304', 1413304, '-10.375770', '-30.070101', '357.174011', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120482, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1413305', 1413305, '-73.187973', '-29.638651', '377.182007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120210, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1413306', 1413306, '7.099501', '-28.323009', '389.698700', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119938, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1413307', 1413307, '-25.474409', '-30.239300', '288.173004', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413309', 1413309, '2.871708', '-26.996679', '314.962891', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413310', 1413310, '-43.682961', '-31.251160', '365.171295', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413311', 1413311, '-60.904331', '-32.109970', '348.252411', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413312', 1413312, '-26.264040', '-32.967579', '411.424805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413711', 1413711, '1.843092', '-32.621689', '440.420288', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413712', 1413712, '-47.684052', '-34.975368', '436.820007', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413713', 1413713, '-62.874069', '-35.826691', '451.367706', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413714', 1413714, '-36.040771', '-30.235821', '405.258087', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413715', 1413715, '-77.531143', '-35.740108', '463.920013', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413716', 1413716, '-81.834183', '-35.561951', '465.537415', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413717', 1413717, '-81.132263', '-36.687901', '482.108704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413718', 1413718, '-64.000313', '-36.181229', '492.846497', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413719', 1413719, '-45.209900', '-36.768280', '469.442810', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413721', 1413721, '-49.479870', '-31.658331', '420.700195', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413723', 1413723, '-61.146591', '-34.546021', '439.197601', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413724', 1413724, '-12.636190', '-34.818890', '433.701904', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413725', 1413725, '-21.261789', '-35.776421', '463.813293', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1413726', 1413726, '-80.766037', '-35.860481', '467.917786', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1414923', 1414923, '-251.624496', '8.046767', '9.209213', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1414924', 1414924, '-237.355103', '14.172800', '56.681469', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1414925', 1414925, '-240.865097', '13.064570', '51.144550', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1414928', 1414928, '-261.738007', '16.472500', '59.800060', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1414929', 1414929, '-271.273499', '19.264000', '95.431259', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1414931', 1414931, '-299.224915', '20.999870', '171.197403', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1414932', 1414932, '-335.657013', '21.199930', '166.262405', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1414935', 1414935, '-333.186493', '21.314899', '161.005798', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1414936', 1414936, '-351.155914', '21.194731', '192.767197', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112334, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(190, 'go002', 'bnpc1414938', 1414938, '-239.843002', '7.295271', '0.194433', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1415337', 1415337, '-263.631592', '17.193020', '61.247459', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1415339', 1415339, '-340.596497', '21.199930', '161.368500', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1415340', 1415340, '-332.306000', '21.000000', '208.378098', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1415341', 1415341, '-328.043915', '21.000000', '211.118393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1415342', 1415342, '-292.652802', '20.981110', '203.265396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1415343', 1415343, '-87.174072', '-39.921982', '291.489105', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1415344', 1415344, '-112.985397', '-40.020420', '312.799713', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1415345', 1415345, '-86.737244', '-40.184792', '302.023285', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1415346', 1415346, '-116.616600', '-40.014709', '309.506805', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1415347', 1415347, '-244.678497', '66.147812', '-179.125702', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1415348', 1415348, '-241.352005', '66.788689', '-178.362701', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1415352', 1415352, '-351.735809', '67.765259', '-226.093002', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1415353', 1415353, '-354.085602', '67.313278', '-222.043106', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1415354', 1415354, '-354.115387', '66.529556', '-254.235596', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1415358', 1415358, '-429.221008', '60.624039', '-145.159103', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1415359', 1415359, '-431.571014', '61.023251', '-141.100204', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1415360', 1415360, '-409.323303', '61.264919', '-120.927803', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1415361', 1415361, '-290.298706', '60.229500', '-115.695396', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1415364', 1415364, '-313.710297', '62.882381', '-46.982571', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1415365', 1415365, '-308.186493', '62.943420', '-50.370079', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72208, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1415367', 1415367, '-304.768494', '62.180470', '-99.076874', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72480, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1415368', 1415368, '-275.257507', '60.807152', '-84.214577', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71664, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1415375', 1415375, '-262.012695', '62.577202', '-39.993938', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1415376', 1415376, '-417.990387', '64.377762', '-51.102509', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1415377', 1415377, '-416.159302', '65.476410', '-55.924358', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1415378', 1415378, '-446.097504', '57.907940', '-22.476589', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1415379', 1415379, '-454.154297', '61.631142', '-28.213980', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1415381', 1415381, '-285.852814', '61.458679', '25.148211', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1415382', 1415382, '-414.267212', '60.471451', '-98.405472', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1415383', 1415383, '-462.152802', '62.699409', '-106.490501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1415384', 1415384, '-465.866913', '62.824699', '-107.035797', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1416355', 1416355, '184.649399', '-7.461709', '-54.703640', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173518, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc1418012', 1418012, '397.388092', '18.876289', '87.758537', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149848, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc1418013', 1418013, '272.692596', '-2.411928', '61.854092', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150120, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154901', 2154901, '-288.593994', '59.581390', '-121.735901', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64604, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2154903', 2154903, '-303.822388', '59.830570', '-130.571503', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2154910', 2154910, '-290.943787', '61.814331', '-175.341400', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64876, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2154912', 2154912, '-384.725800', '64.377808', '-230.792694', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2154914', 2154914, '-416.247894', '61.594559', '-135.801102', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2154915', 2154915, '-397.116089', '56.778770', '-87.632607', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2154916', 2154916, '-408.031494', '53.104481', '35.133572', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2154917', 2154917, '-274.891388', '62.760250', '-48.600040', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2154925', 2154925, '-365.255188', '56.015820', '61.905800', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2154932', 2154932, '-452.140106', '63.523258', '-235.614594', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92276, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154933', 2154933, '-486.564514', '58.060532', '-222.186707', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154938', 2154938, '-449.027313', '55.863232', '-205.401703', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91732, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154939', 2154939, '-453.788086', '56.259960', '-203.845306', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91460, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154940', 2154940, '-449.607086', '55.100281', '-200.518799', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91188, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154941', 2154941, '-459.128693', '64.652428', '-264.026886', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154943', 2154943, '-483.543213', '58.182598', '-215.136993', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90112, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154944', 2154944, '-488.316101', '67.415604', '-265.598907', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154945', 2154945, '-487.007385', '67.617432', '-267.616608', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90916, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154950', 2154950, '-508.114197', '73.937157', '-289.616486', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154952', 2154952, '-505.210999', '72.800743', '-287.708893', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154954', 2154954, '-475.800293', '75.099243', '-316.311890', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88486, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154959', 2154959, '-474.076904', '71.450668', '-300.198914', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154963', 2154963, '-481.180389', '74.270866', '-319.393005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88752, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154965', 2154965, '-509.328613', '51.460609', '-230.011002', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154966', 2154966, '-530.510376', '48.020088', '-245.654999', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87670, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154968', 2154968, '-550.774414', '46.775639', '-245.014099', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154969', 2154969, '-546.684998', '46.860470', '-244.251205', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154970', 2154970, '-545.647400', '50.522579', '-203.540100', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154971', 2154971, '-547.356384', '51.163448', '-199.786407', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154973', 2154973, '-572.310486', '49.567921', '-226.453506', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90644, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154974', 2154974, '-564.080322', '50.297001', '-211.993607', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154976', 2154976, '-508.251099', '57.374981', '-255.303207', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154978', 2154978, '-533.645081', '43.546291', '-230.397507', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2154980', 2154980, '-468.316010', '57.494301', '-212.252502', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2154982', 2154982, '-485.247803', '68.405968', '-274.754211', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2154983', 2154983, '-505.135406', '73.043167', '-290.313904', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2154985', 2154985, '-528.526672', '48.142170', '-244.495300', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2154986', 2154986, '-568.407227', '50.556568', '-214.304596', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320574', 2320574, '261.921387', '1.753539', '-223.409698', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210786, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320575', 2320575, '261.238495', '0.534709', '-243.419296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320576', 2320576, '263.797699', '1.764011', '-223.470901', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320577', 2320577, '259.453186', '1.043279', '-240.840607', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320579', 2320579, '274.919800', '-1.072963', '-256.170593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209698, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320580', 2320580, '300.060089', '-0.888014', '-307.572510', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320581', 2320581, '324.245514', '-1.093548', '-288.072113', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320582', 2320582, '298.274811', '-0.855762', '-304.993805', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320583', 2320583, '325.011292', '-1.286943', '-316.835388', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208610, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320584', 2320584, '287.788513', '-0.475198', '-298.277313', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208338, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320585', 2320585, '329.843903', '-0.745502', '-290.159698', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320586', 2320586, '325.924103', '-0.928046', '-285.067993', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320587', 2320587, '327.193207', '-1.286943', '-313.833496', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207522, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320588', 2320588, '337.177185', '0.441468', '-264.191803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207250, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320589', 2320589, '332.682892', '0.959346', '-254.439896', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206978, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320590', 2320590, '329.305206', '0.991071', '-252.106293', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206706, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320591', 2320591, '304.253815', '-0.643113', '-258.978912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320596', 2320596, '346.493591', '-0.483981', '-328.131287', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206162, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320597', 2320597, '302.790710', '-1.010156', '-352.830505', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320598', 2320598, '273.957489', '-0.689871', '-328.818512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205618, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320599', 2320599, '268.469910', '-0.593068', '-327.086395', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205346, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320600', 2320600, '267.525513', '-0.806307', '-329.538208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205074, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320601', 2320601, '276.737091', '0.547026', '-314.840912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320610', 2320610, '288.781494', '-1.187131', '-281.665588', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320612', 2320612, '330.290802', '-1.286943', '-344.531311', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320617', 2320617, '92.850220', '-10.902450', '173.235596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320637', 2320637, '-108.605698', '-30.528610', '272.296295', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320638', 2320638, '-138.649902', '-23.382610', '264.698212', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320639', 2320639, '-99.474327', '-30.263571', '271.854614', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320641', 2320641, '-170.286606', '-27.619471', '297.813995', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320642', 2320642, '-171.781998', '-27.505461', '288.445007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320643', 2320643, '-165.769897', '-27.707670', '293.053192', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320645', 2320645, '-125.383400', '-25.040100', '360.402802', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320646', 2320646, '-137.475906', '-27.672729', '336.516113', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320647', 2320647, '-141.819901', '-30.193661', '309.942688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320649', 2320649, '-59.102539', '-28.549570', '296.388702', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320650', 2320650, '277.147400', '-31.644880', '389.827209', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320651', 2320651, '250.690399', '-30.350241', '408.346588', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106362, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320652', 2320652, '274.666290', '-31.273550', '391.993988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320654', 2320654, '299.640686', '-31.632290', '402.348511', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320655', 2320655, '300.434814', '-32.791679', '411.978302', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320656', 2320656, '342.732788', '-31.784590', '408.346588', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320658', 2320658, '308.735687', '-32.272881', '398.214600', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320659', 2320659, '329.910309', '-31.601860', '408.307800', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320660', 2320660, '332.175415', '-31.647480', '410.657013', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320661', 2320661, '344.838593', '-31.113190', '440.115906', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320664', 2320664, '144.316299', '-22.573250', '513.925293', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320665', 2320665, '141.166702', '-21.478600', '518.533508', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320666', 2320666, '165.008896', '-23.196131', '497.355591', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320667', 2320667, '137.956802', '-21.858990', '489.646698', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103642, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320668', 2320668, '130.324295', '-19.810080', '417.345490', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320669', 2320669, '98.407799', '-20.697760', '221.536407', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320671', 2320671, '97.314743', '-11.800020', '101.237198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320675', 2320675, '135.972794', '-11.800140', '133.207794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320678', 2320678, '185.468796', '-11.800210', '106.268402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320683', 2320683, '188.220001', '-11.825790', '62.851860', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320688', 2320688, '201.678406', '-11.795270', '23.117371', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320694', 2320694, '260.142914', '-12.002980', '-90.756157', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320695', 2320695, '258.451996', '-12.002920', '-92.319710', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320696', 2320696, '257.085999', '-12.006830', '-154.938705', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320697', 2320697, '264.474091', '-12.313630', '-187.969193', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320721', 2320721, '396.475098', '20.645411', '107.225098', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159332, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320722', 2320722, '419.413391', '27.114370', '102.443001', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158244, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320725', 2320725, '-159.887802', '18.109520', '-68.195572', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320727', 2320727, '-170.536102', '27.551260', '-85.891403', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320728', 2320728, '-170.885803', '27.966640', '-89.178688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320732', 2320732, '-547.753174', '19.485781', '-191.943298', 30, 0, 0, 0, 2, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63894, 1, 0, 0, 0, 0, 0, 4302234, 0, 0), +(190, 'go002', 'bnpc2320790', 2320790, '-439.475098', '48.996670', '43.930679', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320791', 2320791, '-432.144196', '49.318508', '-4.165760', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2320793', 2320793, '-242.034393', '58.664711', '38.845100', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320794', 2320794, '-206.227997', '57.382519', '52.006420', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320797', 2320797, '-193.570099', '74.743111', '21.367661', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320800', 2320800, '-238.635895', '62.272018', '25.375710', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2320801', 2320801, '-219.805405', '67.608017', '9.079071', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2341782', 2341782, '345.014008', '-1.078350', '-177.896896', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2341783', 2341783, '319.296997', '-0.849605', '-171.347198', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2341784', 2341784, '292.707397', '-6.651216', '-123.136101', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2341785', 2341785, '347.310486', '6.679530', '84.092422', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2341786', 2341786, '354.267487', '5.193762', '60.841671', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2341787', 2341787, '348.283203', '3.086715', '49.707630', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2603191', 2603191, '256.015594', '-11.793030', '-185.891006', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164850, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2603192', 2603192, '260.232605', '-11.793140', '-180.095505', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164578, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612552', 2612552, '252.195404', '-11.793090', '-145.885406', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164306, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612553', 2612553, '254.433395', '-11.793010', '-113.328796', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164034, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612554', 2612554, '258.838715', '-11.793140', '-73.879280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163762, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612555', 2612555, '233.580307', '-11.793010', '-18.570280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163490, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612556', 2612556, '216.695099', '-11.793000', '8.959249', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163218, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612557', 2612557, '212.512299', '-11.795270', '12.741240', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162946, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612559', 2612559, '120.048798', '-11.800060', '124.326401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162680, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612561', 2612561, '191.515900', '-11.856310', '51.102409', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162408, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612562', 2612562, '189.768997', '-11.800210', '71.478256', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162136, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612563', 2612563, '192.239395', '-11.800030', '91.385788', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161864, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612564', 2612564, '179.480606', '-11.800260', '106.735802', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161592, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612565', 2612565, '165.069794', '-11.800630', '119.881798', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161320, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612566', 2612566, '146.988297', '-11.800000', '126.311401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161048, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612569', 2612569, '132.474792', '-11.800090', '139.979294', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160776, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612570', 2612570, '250.133804', '-11.793030', '-55.898849', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160498, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612571', 2612571, '205.980301', '-11.772920', '33.134300', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160226, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612573', 2612573, '421.064514', '24.757450', '78.823257', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2612574', 2612574, '428.320709', '31.721590', '124.805603', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157428, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2615184', 2615184, '360.341705', '-32.028728', '435.294006', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2615186', 2615186, '375.478699', '-32.089771', '448.966095', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2615187', 2615187, '382.955597', '-31.998211', '440.878815', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc2615503', 2615503, '253.211594', '-11.793080', '-161.360504', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154514, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc2615504', 2615504, '253.937607', '-11.793030', '-68.861298', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154242, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3693097', 3693097, '-224.085602', '1.055553', '-69.316994', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(190, 'go002', 'bnpc3693102', 3693102, '-195.941101', '2.945007', '-104.081802', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96860, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(190, 'go002', 'bnpc3693103', 3693103, '-189.283005', '2.362727', '-83.005783', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97404, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(190, 'go002', 'bnpc3693105', 3693105, '-210.620300', '1.998901', '-96.299683', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95500, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(190, 'go002', 'bnpc3693109', 3693109, '-195.513901', '2.216981', '-40.186169', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95228, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(190, 'go002', 'bnpc3693111', 3693111, '-200.096695', '2.060742', '-67.256340', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(190, 'go002', 'bnpc3693121', 3693121, '368.459503', '-32.364429', '413.199005', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3693136', 3693136, '242.206406', '-30.411280', '402.182007', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3693138', 3693138, '225.451996', '-28.488640', '423.605713', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3693140', 3693140, '215.350494', '-32.486500', '387.777496', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3693173', 3693173, '-508.842590', '40.237991', '-79.606361', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3693174', 3693174, '-516.899414', '40.146439', '-74.967621', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3693175', 3693175, '-514.549500', '40.207470', '-77.103882', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85228, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3693176', 3693176, '-520.866821', '40.146439', '-64.255783', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3693177', 3693177, '-515.685120', '40.359970', '-54.677021', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3693178', 3693178, '-503.929199', '41.000938', '-56.107471', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3693179', 3693179, '-483.658691', '45.245129', '-60.343559', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3693180', 3693180, '-481.533905', '45.933941', '-62.817669', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3693183', 3693183, '-378.957794', '51.132931', '52.109509', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3693184', 3693184, '-397.512787', '49.301849', '10.055650', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3693185', 3693185, '-433.121094', '49.318531', '34.558170', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3693188', 3693188, '-322.396393', '57.338970', '-6.726664', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65686, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3693623', 3693623, '-184.619797', '78.429970', '42.778721', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3693624', 3693624, '-191.994202', '77.183746', '37.510250', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72746, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3694403', 3694403, '-314.266113', '63.832611', '57.746510', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3742079', 3742079, '-530.733887', '65.311684', '98.466423', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3742133', 3742133, '-526.186829', '65.311691', '102.647400', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3742194', 3742194, '48.050610', '-11.800030', '-40.915428', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153976, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3742195', 3742195, '22.187790', '-11.800000', '-69.750504', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153704, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3742196', 3742196, '15.168640', '-11.800000', '-75.762558', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153432, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3742197', 3742197, '6.348711', '-11.800040', '-110.540199', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153160, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3742198', 3742198, '-54.153049', '-3.500003', '-186.530106', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152888, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3742199', 3742199, '-50.919399', '-3.500001', '-182.895996', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152616, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3742200', 3742200, '-69.779549', '-3.500144', '-196.820496', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152344, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3742201', 3742201, '-62.272110', '-3.500066', '-207.843399', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152072, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3742202', 3742202, '2.735321', '-11.800110', '-122.937599', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151782, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3742203', 3742203, '-6.886642', '-3.500000', '-135.990402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151510, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(190, 'go002', 'bnpc3742204', 3742204, '-6.586641', '-3.500000', '-139.267899', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3742205', 3742205, '-36.719379', '-3.500000', '-180.416794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150966, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3742206', 3742206, '-48.687111', '-3.500072', '-207.096298', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150694, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3746465', 3746465, '-208.691696', '52.495350', '-42.669102', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71120, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3746466', 3746466, '-219.824799', '58.286751', '-60.483898', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3746467', 3746467, '-215.491898', '57.635231', '-71.491089', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70576, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3869502', 3869502, '125.699600', '25.160120', '-311.621185', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41108, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(190, 'go002', 'bnpc3869509', 3869509, '-307.502899', '63.448620', '-285.687714', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40842, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(190, 'go002', 'bnpc3869525', 3869525, '-206.130997', '53.564651', '-126.977600', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40564, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(190, 'go002', 'bnpc3869531', 3869531, '96.403351', '-6.334397', '-121.433502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40298, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(190, 'go002', 'bnpc3869540', 3869540, '164.007095', '-6.013201', '-52.486290', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.750000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40020, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(190, 'go002', 'bnpc3869598', 3869598, '-4.837158', '-7.919495', '-22.201900', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39760, 5, 0, 20, 0, 0, 30055, 0, 0, 0), +(190, 'go002', 'bnpc3869604', 3869604, '85.465698', '-6.089244', '60.991131', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39482, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(190, 'go002', 'bnpc3869607', 3869607, '14.362120', '-8.102512', '100.498901', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39204, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(190, 'go002', 'bnpc3877513', 3877513, '121.019203', '24.917931', '-304.463287', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204518, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc3884907', 3884907, '-419.228607', '55.416000', '66.506737', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3897658', 3897658, '117.021400', '25.101040', '-311.604492', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204258, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc3898007', 3898007, '132.524597', '24.948450', '-305.562012', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203974, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc4083772', 4083772, '-327.757690', '21.357790', '204.228699', 58, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 5782, 1, 0, 0, 0, 0, 0, 4083771, 0, 0), +(190, 'go002', 'bnpc4083778', 4083778, '-297.044800', '21.140360', '151.049896', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 8174, 1, 0, 0, 0, 0, 0, 4083775, 0, 0), +(190, 'go002', 'bnpc4083795', 4083795, '-327.840088', '21.103210', '206.835907', 58, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6054, 1, 0, 0, 0, 0, 0, 4083794, 0, 0), +(190, 'go002', 'bnpc4083796', 4083796, '-296.744812', '21.145109', '151.349899', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7662, 1, 0, 0, 0, 0, 0, 4083797, 0, 0), +(190, 'go002', 'bnpc4083798', 4083798, '-296.444794', '21.149870', '151.649902', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7278, 1, 0, 0, 0, 0, 0, 4083799, 0, 0), +(190, 'go002', 'bnpc4083800', 4083800, '-296.144806', '21.154619', '151.949905', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6894, 1, 0, 0, 0, 0, 0, 4083801, 0, 0), +(190, 'go002', 'bnpc4083802', 4083802, '-295.844788', '21.159370', '152.249893', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6510, 1, 0, 0, 0, 0, 0, 4083803, 0, 0), +(190, 'go002', 'bnpc4083871', 4083871, '127.641701', '-6.332520', '-100.389198', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38544, 8, 0, 0, 4295658, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4295672', 4295672, '132.951797', '-6.332520', '-100.114502', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37512, 8, 0, 0, 4295661, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4295673', 4295673, '137.910706', '-6.438695', '-96.608414', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37240, 8, 0, 0, 4295662, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4295675', 4295675, '126.695297', '-6.948534', '-90.459633', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36968, 8, 0, 0, 4295663, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4295677', 4295677, '126.418900', '-6.971872', '-84.529358', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36696, 8, 0, 0, 4295664, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4296957', 4296957, '95.628906', '-2.029270', '-42.382439', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35816, 1, 0, 0, 2280260, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4296958', 4296958, '98.693558', '-2.029731', '-43.942860', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35544, 1, 0, 0, 2280261, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4296959', 4296959, '101.467598', '-2.005454', '-46.176739', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35272, 1, 0, 0, 2280262, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4296960', 4296960, '104.146896', '-1.968804', '-48.332958', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35000, 1, 0, 0, 2280263, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302206', 4302206, '-555.148071', '29.067560', '-230.785706', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302207', 4302207, '-516.437683', '22.056881', '-221.606796', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302208', 4302208, '-524.244812', '24.477020', '-253.274597', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302209', 4302209, '-527.577820', '24.719191', '-254.932404', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302212', 4302212, '-582.818420', '21.723471', '-238.845596', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302213', 4302213, '-596.266602', '20.622200', '-226.349106', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302214', 4302214, '-579.272827', '21.076719', '-214.966003', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302215', 4302215, '-581.780823', '21.842831', '-241.897293', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302216', 4302216, '-528.772888', '19.922779', '-195.839096', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61374, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302217', 4302217, '-537.197327', '20.139130', '-199.348495', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302218', 4302218, '-563.208191', '18.867491', '-186.546005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302219', 4302219, '-527.765808', '20.129919', '-200.682007', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302220', 4302220, '-569.817627', '10.940670', '-130.235794', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302221', 4302221, '-617.120605', '21.896610', '-197.436493', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302222', 4302222, '-575.432983', '11.001710', '-129.716995', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302223', 4302223, '-568.810608', '10.910160', '-133.318100', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302225', 4302225, '-502.711792', '17.279470', '-157.029495', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59204, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302226', 4302226, '-496.089386', '16.799740', '-160.630707', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58938, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302228', 4302228, '-481.979004', '18.189381', '-229.549103', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302229', 4302229, '-555.941528', '25.463579', '-260.210693', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4302351', 4302351, '-572.925293', '18.257090', '-181.740707', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57718, 1, 0, 0, 0, 0, 0, 4302260, 0, 0), +(190, 'go002', 'bnpc4302353', 4302353, '-513.667175', '23.842480', '-245.333893', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57446, 1, 0, 0, 0, 0, 0, 4302268, 0, 0), +(190, 'go002', 'bnpc4333043', 4333043, '-309.205597', '57.338970', '-10.110600', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(190, 'go002', 'bnpc4333385', 4333385, '-348.321503', '67.616417', '-233.774200', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4510293', 4510293, '213.253204', '-32.025242', '324.145386', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38950, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(190, 'go002', 'bnpc4621046', 4621046, '370.051086', '-32.295422', '411.821198', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42124, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(190, 'go002', 'bnpc4621047', 4621047, '-538.803589', '50.907551', '-203.075394', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41858, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136062', 1136062, '-505.795593', '9.752348', '104.621803', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205580, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136063', 1136063, '-515.044922', '11.400910', '112.794899', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205308, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136064', 1136064, '-501.586090', '9.603134', '109.964401', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205036, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136065', 1136065, '-475.682312', '6.895020', '108.614403', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204764, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136067', 1136067, '-478.398712', '7.440553', '105.715897', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204492, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136074', 1136074, '-391.806000', '9.109558', '308.461090', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186842, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc1136075', 1136075, '-414.835693', '4.099017', '268.726593', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136076', 1136076, '-390.326385', '4.860912', '278.225494', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136077', 1136077, '-430.838715', '8.406867', '277.241089', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136078', 1136078, '-459.421692', '5.690572', '240.230301', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136079', 1136079, '-450.953796', '11.975280', '268.649994', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136080', 1136080, '-390.585205', '9.262146', '310.566895', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187114, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc1136081', 1136081, '-461.788513', '5.891314', '238.861206', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136082', 1136082, '-473.594299', '10.086170', '246.936707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136085', 1136085, '-435.743011', '1.967827', '88.564453', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202328, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1136086', 1136086, '-390.760986', '0.834163', '111.607300', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202056, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1136087', 1136087, '-418.825409', '0.336109', '91.913406', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201784, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1136089', 1136089, '-414.658203', '0.079596', '95.602753', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201512, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1136091', 1136091, '-415.322693', '-0.226261', '151.930603', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201240, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1136092', 1136092, '-421.841888', '0.864481', '141.020401', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200968, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1136093', 1136093, '-381.670593', '0.762653', '137.407394', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200696, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1136094', 1136094, '-430.745300', '0.804663', '164.744202', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200424, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1136097', 1136097, '-431.509888', '2.089151', '233.463394', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136098', 1136098, '-446.728088', '0.504031', '188.779205', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136099', 1136099, '-432.335907', '1.523763', '185.544998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136100', 1136100, '-400.007599', '-0.063123', '184.140106', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136101', 1136101, '-403.100311', '-0.089608', '188.898804', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136102', 1136102, '-360.642303', '0.164527', '231.393402', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136103', 1136103, '-384.551605', '0.763345', '233.278397', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136104', 1136104, '-386.850494', '0.112991', '227.897705', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136130', 1136130, '-325.468597', '10.213140', '333.038086', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136131', 1136131, '-242.241394', '-5.472987', '226.931595', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136132', 1136132, '-328.277710', '4.935143', '305.884399', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136134', 1136134, '-321.859711', '9.391951', '328.320587', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136136', 1136136, '-268.451996', '-2.822966', '243.274506', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136137', 1136137, '-184.086700', '-8.314297', '238.537598', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136139', 1136139, '-95.525383', '-7.421386', '293.721008', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136140', 1136140, '-126.314003', '-8.479818', '267.845093', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136141', 1136141, '-103.592903', '-7.979246', '256.096588', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136142', 1136142, '-128.252106', '-6.729275', '293.324097', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136143', 1136143, '-124.302597', '-8.155410', '276.504700', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136158', 1136158, '-113.634003', '-4.072056', '313.771210', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136161', 1136161, '-133.257095', '-0.167896', '343.312714', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163548, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1136162', 1136162, '-92.474274', '0.803288', '352.180786', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163820, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1136163', 1136163, '-74.857803', '4.447460', '383.016602', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136164', 1136164, '-32.537300', '7.616392', '412.410797', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136165', 1136165, '-64.080299', '11.043260', '430.339905', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136167', 1136167, '-5.813734', '2.975462', '373.769714', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136168', 1136168, '37.950851', '7.949909', '464.214691', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136170', 1136170, '78.733383', '6.701904', '382.834015', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158676, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136172', 1136172, '-27.413450', '-5.802525', '309.247986', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136173', 1136173, '4.164327', '-4.588222', '319.364899', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136174', 1136174, '-5.613925', '-6.047291', '306.725403', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136175', 1136175, '-60.686939', '-2.369054', '328.478394', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136177', 1136177, '-22.903839', '-5.355963', '311.696014', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136178', 1136178, '-138.536697', '-2.761930', '180.468399', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1136179', 1136179, '-156.542297', '2.639764', '135.026993', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1136180', 1136180, '-150.621796', '2.365101', '138.292496', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1136182', 1136182, '-172.930496', '-0.839293', '164.965195', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1136190', 1136190, '-288.410797', '11.764660', '-25.711500', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146696, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136191', 1136191, '-269.916901', '12.741240', '-45.975479', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139388, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136192', 1136192, '-305.683990', '11.673100', '-35.629860', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139116, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136194', 1136194, '-253.040405', '11.428960', '-3.524881', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136196', 1136196, '-216.479797', '5.813640', '85.984543', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148316, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1136197', 1136197, '-296.681213', '8.743372', '66.361427', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147772, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1136198', 1136198, '-280.833405', '6.822407', '95.059250', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148044, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1136224', 1136224, '68.558739', '11.184820', '-24.826481', 762, 0, 0, 0, 0, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119934, 2, 0, 0, 0, 0, 30122, 0, 0, 0), +(191, 'go005', 'bnpc1136225', 1136225, '69.687866', '11.001710', '-24.643370', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118308, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(191, 'go005', 'bnpc1136228', 1136228, '333.638397', '-4.043701', '-37.918701', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116138, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc1136229', 1136229, '349.049408', '-2.892388', '-51.221401', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116410, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc1136230', 1136230, '507.865997', '-11.795270', '4.501364', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136231', 1136231, '537.636780', '-12.274270', '-13.554320', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136232', 1136232, '536.101196', '-12.090500', '-2.388316', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136233', 1136233, '530.091492', '-12.161830', '-4.477412', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136234', 1136234, '514.392822', '-12.155740', '-30.914129', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1136235', 1136235, '594.192078', '-12.117190', '-6.794415', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1162438', 1162438, '234.721100', '4.423762', '180.467896', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1162439', 1162439, '236.722900', '4.611117', '188.587906', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1162445', 1162445, '199.757599', '6.240894', '156.164093', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130156, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1162451', 1162451, '252.094193', '0.076233', '155.870804', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126994, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1162452', 1162452, '286.884094', '0.589654', '176.855103', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127538, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1162453', 1162453, '298.563293', '-0.085100', '171.096207', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127266, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1162458', 1162458, '203.268799', '1.655764', '106.938103', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126722, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1162460', 1162460, '243.554703', '-3.339902', '84.717239', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126178, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1162461', 1162461, '279.461212', '-4.218416', '42.329281', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129884, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1162462', 1162462, '294.178589', '-5.478088', '38.284790', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129612, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1162463', 1162463, '301.736115', '-5.423965', '50.006149', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125018, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1162467', 1162467, '241.840195', '-1.764643', '99.107300', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126450, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1162469', 1162469, '274.593109', '-5.942087', '11.604580', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124746, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1162472', 1162472, '227.649307', '-3.036592', '-15.976240', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129340, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1162476', 1162476, '220.935303', '-2.975586', '-22.720699', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129068, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1162477', 1162477, '207.324203', '-4.013123', '-42.343868', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125834, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc1162479', 1162479, '154.222900', '0.015198', '7.949890', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120206, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc1162480', 1162480, '176.019806', '-4.055645', '-3.018583', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117492, 2, 0, 0, 0, 0, 30120, 0, 0, 0), +(191, 'go005', 'bnpc1162481', 1162481, '178.942505', '-0.503601', '60.196781', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115594, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc1162482', 1162482, '181.322906', '-0.473083', '58.762451', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120478, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc1162483', 1162483, '356.642700', '-2.987466', '-35.734451', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121566, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc1162484', 1162484, '333.913086', '-4.135254', '-40.177059', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118580, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc1162486', 1162486, '111.986000', '6.118835', '-40.909481', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119124, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc1162487', 1162487, '74.814934', '10.482900', '-18.448200', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115866, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc1162490', 1162490, '-9.318063', '19.332541', '-19.108101', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120750, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc1162492', 1162492, '-20.523430', '17.990339', '11.642590', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119396, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1185226', 1185226, '256.488800', '-24.255501', '-358.053009', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68326, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186102', 1186102, '185.839600', '-21.471359', '-442.130188', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68054, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186104', 1186104, '139.593506', '-25.435749', '-371.665588', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186105', 1186105, '133.317993', '-24.199471', '-327.840088', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186106', 1186106, '85.221588', '-28.236040', '-263.782715', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186107', 1186107, '112.138496', '-30.215771', '-200.427307', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186108', 1186108, '171.129898', '-31.077660', '-212.573502', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44874, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186113', 1186113, '269.977814', '-10.584900', '-100.442299', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73786, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186119', 1186119, '301.000702', '-14.170150', '-179.921906', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186121', 1186121, '299.316498', '-13.980780', '-177.154099', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72426, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186122', 1186122, '210.285797', '-6.827882', '-189.363602', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76258, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186126', 1186126, '195.813797', '-6.409023', '-148.998001', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77074, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186127', 1186127, '198.768997', '-5.217091', '-147.382904', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76802, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186128', 1186128, '264.066498', '-11.720200', '-141.711304', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72970, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186130', 1186130, '255.084595', '-10.365080', '-135.648193', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72698, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186131', 1186131, '262.121887', '-11.356690', '-170.924500', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74880, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186134', 1186134, '257.526489', '-11.230880', '-163.622498', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75152, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186135', 1186135, '289.600891', '-14.023210', '-132.829803', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186142', 1186142, '321.177094', '-17.145399', '-141.817795', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75424, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186146', 1186146, '357.922394', '-18.371901', '-147.675705', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72154, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186157', 1186157, '339.864105', '-20.256371', '-163.073196', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75986, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186160', 1186160, '325.512207', '-18.022200', '-210.406693', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186163', 1186163, '334.967590', '-18.257030', '-188.068497', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186165', 1186165, '357.646301', '-21.037640', '-172.919998', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186166', 1186166, '355.845795', '-21.195030', '-175.910797', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186167', 1186167, '354.167297', '-20.996559', '-172.828506', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186168', 1186168, '327.501495', '-18.763630', '-170.766296', 16, 0, 0, 0, 1, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186169', 1186169, '357.691193', '-18.922649', '-152.895798', 16, 0, 0, 0, 1, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186173', 1186173, '362.066711', '-19.066210', '-226.023697', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186174', 1186174, '367.605011', '-19.394260', '-223.926193', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69736, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1186185', 1186185, '432.333801', '-18.556009', '-200.427307', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335118', 1335118, '259.814606', '-9.041327', '-75.930794', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82388, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335120', 1335120, '258.747192', '-9.339743', '-77.470100', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335121', 1335121, '271.628510', '-12.409580', '-119.495102', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335122', 1335122, '268.973389', '-11.585720', '-119.678200', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335125', 1335125, '299.467896', '-15.161890', '-151.066498', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335126', 1335126, '300.071503', '-15.260950', '-157.970398', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335127', 1335127, '305.104095', '-16.013350', '-153.873703', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80762, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335128', 1335128, '362.569489', '-19.896090', '-195.239197', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335129', 1335129, '359.914490', '-20.141609', '-198.291000', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335131', 1335131, '376.912994', '-17.746290', '-239.673492', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79940, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335132', 1335132, '378.265808', '-17.184210', '-245.818802', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79668, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335133', 1335133, '373.817291', '-17.567560', '-244.927200', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79396, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335135', 1335135, '382.244812', '-18.581270', '-213.006607', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335136', 1335136, '384.289612', '-18.812380', '-216.180496', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78852, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335137', 1335137, '365.346710', '-17.380070', '-235.889297', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78586, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335142', 1335142, '325.117188', '-17.441219', '-261.926086', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335147', 1335147, '382.083588', '-15.505330', '-274.037415', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335148', 1335148, '379.490387', '-15.238400', '-273.274506', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335150', 1335150, '393.739594', '-17.082621', '-246.185501', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335151', 1335151, '395.540100', '-17.610670', '-243.194702', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73242, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335152', 1335152, '374.262207', '-16.275169', '-255.869507', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74058, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(191, 'go005', 'bnpc1335154', 1335154, '445.548096', '-18.953011', '-239.643005', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75714, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335155', 1335155, '410.055603', '-15.113950', '-262.409393', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335156', 1335156, '409.262085', '-14.690550', '-264.759308', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335171', 1335171, '283.910095', '-19.542110', '-281.001801', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335172', 1335172, '309.847809', '-19.112881', '-260.545685', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49406, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335179', 1335179, '308.749512', '-18.382240', '-278.268188', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335180', 1335180, '305.850189', '-18.505501', '-275.399506', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335181', 1335181, '287.464691', '-20.370840', '-267.414398', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335182', 1335182, '221.773499', '-20.304710', '-402.104889', 73, 0, 0, 0, 1, 6, 0, 0, 70, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335186', 1335186, '260.100708', '-22.595980', '-282.093597', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335187', 1335187, '257.170898', '-22.925730', '-282.856506', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335188', 1335188, '258.178009', '-22.527321', '-280.506592', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335189', 1335189, '259.124115', '-22.919470', '-284.351898', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335191', 1335191, '252.674103', '-25.158079', '-319.881500', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55650, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335245', 1335245, '264.071289', '-23.086901', '-377.431885', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335247', 1335247, '251.044693', '-24.157169', '-429.172791', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56484, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335250', 1335250, '213.636093', '-21.692980', '-416.299286', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335254', 1335254, '250.182205', '-23.049110', '-398.827515', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335255', 1335255, '235.164795', '-22.033070', '-382.140289', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51310, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335257', 1335257, '250.975601', '-23.342621', '-395.073792', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335258', 1335258, '233.840302', '-22.782070', '-408.640991', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335259', 1335259, '228.651703', '-20.932440', '-399.771088', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335260', 1335260, '285.551605', '-20.191130', '-266.194702', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335261', 1335261, '233.309006', '-22.290220', '-403.706696', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335262', 1335262, '226.586807', '-21.579840', '-408.344208', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335263', 1335263, '251.797501', '-24.329281', '-417.166504', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335265', 1335265, '239.352707', '-23.325970', '-417.493805', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335266', 1335266, '234.393204', '-23.440660', '-419.117004', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335269', 1335269, '208.094101', '-20.046240', '-400.359314', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335270', 1335270, '205.635300', '-20.583099', '-405.028595', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335271', 1335271, '214.649200', '-21.421610', '-437.417206', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335272', 1335272, '220.603699', '-19.557770', '-394.169189', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335273', 1335273, '237.537292', '-23.111750', '-434.553314', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335274', 1335274, '201.154007', '-21.053610', '-424.056702', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335275', 1335275, '199.896194', '-21.481091', '-433.825592', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64542, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335276', 1335276, '199.035995', '-21.532829', '-428.054504', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335277', 1335277, '204.574905', '-21.963341', '-430.374695', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335278', 1335278, '203.919998', '-21.381781', '-436.120514', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335279', 1335279, '158.464905', '-25.742020', '-514.580017', 78, 0, 0, 0, 0, 6, 0, 0, 75, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63864, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335280', 1335280, '156.163498', '-25.174259', '-507.993713', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335281', 1335281, '162.755295', '-25.392191', '-508.512512', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335282', 1335282, '160.374893', '-26.243521', '-521.635315', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53064, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335283', 1335283, '153.783005', '-25.787460', '-521.116516', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53880, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335284', 1335284, '164.681107', '-23.516750', '-451.796112', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335287', 1335287, '161.309204', '-24.113899', '-454.393097', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335290', 1335290, '178.249100', '-21.930130', '-465.361603', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335294', 1335294, '176.568298', '-23.836981', '-493.324188', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335295', 1335295, '175.158295', '-24.210711', '-495.597809', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335298', 1335298, '146.524597', '-23.827370', '-466.589294', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49678, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335299', 1335299, '136.972305', '-23.003241', '-490.722107', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335310', 1335310, '139.252106', '-23.121799', '-488.640411', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335313', 1335313, '169.940796', '-26.606640', '-538.220520', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335317', 1335317, '176.719406', '-26.248819', '-529.080017', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335318', 1335318, '175.681793', '-26.337879', '-531.124695', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57300, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335326', 1335326, '135.813904', '-23.796021', '-507.744904', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57572, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335327', 1335327, '143.479095', '-24.673691', '-543.979187', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56756, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335328', 1335328, '142.868698', '-24.722940', '-547.854980', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55940, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335329', 1335329, '145.279694', '-25.150471', '-548.343323', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56212, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335330', 1335330, '167.576401', '-23.605841', '-478.499115', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335331', 1335331, '172.550903', '-23.232599', '-481.184692', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335332', 1335332, '136.520096', '-23.013941', '-481.370514', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60310, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335333', 1335333, '170.445099', '-23.299061', '-477.888702', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1335344', 1335344, '163.126495', '-26.834591', '-547.864319', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347955', 1347955, '185.057404', '-22.517530', '-393.153900', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347956', 1347956, '186.735901', '-22.314060', '-389.308685', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63170, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347958', 1347958, '180.601807', '-22.849991', '-388.088013', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62904, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347959', 1347959, '182.982193', '-22.808430', '-387.447113', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347960', 1347960, '181.853104', '-22.416210', '-391.109192', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347961', 1347961, '163.818802', '-23.941280', '-382.930786', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347964', 1347964, '136.015106', '-25.067890', '-394.922394', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347965', 1347965, '135.952805', '-25.463390', '-380.858490', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347966', 1347966, '159.892807', '-23.691389', '-387.543396', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347967', 1347967, '134.539597', '-25.153410', '-393.304901', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347968', 1347968, '148.660599', '-24.933149', '-382.747192', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62082, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347969', 1347969, '149.210007', '-24.847401', '-385.554901', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347970', 1347970, '145.273102', '-24.985941', '-383.815399', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61544, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347971', 1347971, '146.677002', '-25.017750', '-386.012695', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61278, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347974', 1347974, '119.340797', '-26.901699', '-370.321198', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347976', 1347976, '110.948303', '-27.082211', '-355.214813', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44626, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347977', 1347977, '116.650902', '-26.851940', '-355.502686', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347979', 1347979, '115.985397', '-25.590910', '-330.770813', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347980', 1347980, '96.825470', '-26.731310', '-337.443909', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347981', 1347981, '94.966377', '-26.840120', '-343.493591', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347982', 1347982, '112.341904', '-27.148821', '-352.201202', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347984', 1347984, '127.403000', '-25.039721', '-339.740387', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39306, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347987', 1347987, '128.043900', '-25.102480', '-341.174805', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39578, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347990', 1347990, '103.868103', '-27.830070', '-370.201294', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30578, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347993', 1347993, '104.585403', '-27.703699', '-374.422699', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347994', 1347994, '100.785797', '-27.626970', '-369.774109', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30306, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347996', 1347996, '115.281898', '-25.507601', '-321.858612', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36296, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1347999', 1347999, '95.705887', '-27.105480', '-316.640686', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38496, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348000', 1348000, '92.348900', '-26.525320', '-318.288696', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348001', 1348001, '106.853699', '-27.461729', '-348.520905', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348002', 1348002, '106.675797', '-26.863291', '-353.933014', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43538, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348003', 1348003, '111.067200', '-27.419359', '-348.093689', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43266, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348005', 1348005, '147.925797', '-23.963091', '-316.955292', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348006', 1348006, '139.153000', '-23.312229', '-308.514313', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348007', 1348007, '138.078796', '-23.392130', '-312.001312', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348010', 1348010, '95.115891', '-27.238010', '-299.027893', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35734, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348011', 1348011, '133.297394', '-23.149731', '-303.661987', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348012', 1348012, '93.072998', '-26.876440', '-282.357300', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348013', 1348013, '90.519493', '-27.035959', '-280.262787', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42722, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348014', 1348014, '91.113632', '-26.633659', '-283.826508', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348015', 1348015, '138.584198', '-29.894171', '-214.306305', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348016', 1348016, '133.174103', '-29.752001', '-213.771896', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39034, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348018', 1348018, '125.171204', '-28.822081', '-241.728302', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348019', 1348019, '133.407806', '-29.766630', '-245.194504', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348020', 1348020, '157.760696', '-30.241409', '-209.753799', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348021', 1348021, '110.126297', '-29.295731', '-223.210403', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1348022', 1348022, '159.280807', '-29.889629', '-205.386993', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349415', 1349415, '107.675301', '-28.766970', '-247.061798', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34918, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349419', 1349419, '144.273102', '-29.321350', '-228.200500', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42166, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349420', 1349420, '141.345703', '-29.379709', '-233.926895', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41894, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349421', 1349421, '147.630997', '-28.915890', '-231.464096', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349422', 1349422, '140.337204', '-29.188551', '-230.123901', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41356, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349423', 1349423, '142.912903', '-29.360870', '-232.045303', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41090, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349426', 1349426, '117.321800', '-29.940710', '-208.257904', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349428', 1349428, '119.702202', '-29.857460', '-208.563095', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349429', 1349429, '152.550797', '-29.560490', '-240.746399', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349430', 1349430, '153.238297', '-29.591810', '-244.188797', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349434', 1349434, '153.856705', '-29.735661', '-202.044800', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36568, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349444', 1349444, '163.936996', '-29.950470', '-221.893097', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38224, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349446', 1349446, '170.162399', '-30.332001', '-205.375504', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35190, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349448', 1349448, '92.027107', '-29.617809', '-158.983795', 74, 0, 0, 0, 0, 6, 0, 0, 71, 0, '0.000000', 57, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40962, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349450', 1349450, '88.622063', '-30.374201', '-172.160995', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349453', 1349453, '79.946991', '-30.373859', '-158.627106', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28300, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349454', 1349454, '84.076393', '-30.374201', '-170.842606', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349455', 1349455, '87.641907', '-30.374201', '-169.239105', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349456', 1349456, '97.735252', '-30.373690', '-149.205994', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349457', 1349457, '92.410156', '-30.373690', '-146.716202', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349458', 1349458, '93.722427', '-30.289921', '-150.469894', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349460', 1349460, '102.193199', '-30.374161', '-167.326401', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349462', 1349462, '104.695702', '-30.374050', '-164.732300', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27756, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349463', 1349463, '108.756897', '-30.549700', '-139.678604', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349466', 1349466, '70.533546', '-30.081551', '-177.695999', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349469', 1349469, '67.079147', '-29.548901', '-153.771606', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349471', 1349471, '66.987991', '-29.454809', '-150.085007', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36840, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349475', 1349475, '100.944000', '-30.141479', '-182.035095', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349476', 1349476, '103.423500', '-30.255220', '-183.818893', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc1349477', 1349477, '117.287300', '-30.394251', '-176.134903', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313925', 2313925, '-482.564789', '6.955613', '61.610111', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313933', 2313933, '-429.003693', '2.320748', '236.438400', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313934', 2313934, '-409.316101', '1.057956', '244.817902', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313935', 2313935, '-442.272491', '2.403773', '206.166901', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313937', 2313937, '-428.366699', '7.934575', '277.541107', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313938', 2313938, '-418.558289', '9.127686', '293.699799', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313939', 2313939, '-424.849213', '10.891960', '297.223694', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313940', 2313940, '-380.392212', '6.912290', '296.833710', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313942', 2313942, '-357.351105', '2.181993', '273.792603', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313943', 2313943, '-347.798889', '4.318256', '294.331207', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313944', 2313944, '-351.491608', '4.226702', '289.814514', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313946', 2313946, '-350.392914', '9.353733', '319.966400', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313948', 2313948, '-347.768402', '-0.140188', '238.560394', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313949', 2313949, '-334.432007', '0.900235', '197.100693', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313952', 2313952, '-512.518005', '10.681730', '106.017303', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313954', 2313954, '-466.272797', '4.568396', '120.049896', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313955', 2313955, '-503.845398', '11.240590', '124.209396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313959', 2313959, '-429.545593', '1.312407', '120.378799', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313963', 2313963, '-417.238586', '0.076732', '65.064568', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313964', 2313964, '-397.897705', '-0.211857', '75.408188', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313967', 2313967, '-395.162506', '-0.289825', '72.009888', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313971', 2313971, '-435.869385', '1.346877', '216.851196', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313974', 2313974, '-381.439911', '-0.122663', '184.500702', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313980', 2313980, '-464.159210', '9.409202', '251.654099', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313982', 2313982, '-452.844788', '11.917580', '265.924805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313984', 2313984, '-436.512909', '7.460858', '266.224792', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313985', 2313985, '-410.069000', '6.296681', '281.448486', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313988', 2313988, '-425.559387', '12.804490', '309.608093', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313989', 2313989, '-371.467285', '4.569370', '282.813202', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313991', 2313991, '-342.802002', '1.347080', '267.457001', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313993', 2313993, '-365.310303', '-0.244142', '207.010696', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2313994', 2313994, '-370.665497', '1.130038', '238.255402', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314003', 2314003, '-253.246994', '-4.236800', '221.935196', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314004', 2314004, '-227.049805', '-5.537235', '202.864395', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314005', 2314005, '-197.435196', '-7.994266', '221.269196', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314006', 2314006, '-200.220596', '-8.231664', '224.271805', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314009', 2314009, '-125.018700', '-7.681337', '231.549805', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176048, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314010', 2314010, '-129.776001', '-7.944516', '225.414200', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175776, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314034', 2314034, '-112.974503', '2.718925', '356.892609', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164364, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc2314035', 2314035, '-118.974602', '1.573215', '349.996094', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164092, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc2314041', 2314041, '-43.174789', '-3.827868', '319.130188', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314043', 2314043, '-31.562269', '-4.485572', '194.662094', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157322, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc2314047', 2314047, '-33.348999', '-6.685591', '211.045303', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157050, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc2314048', 2314048, '-54.297371', '-4.774252', '197.991501', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157594, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc2314070', 2314070, '-59.919048', '11.628480', '435.431305', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314088', 2314088, '-35.123161', '16.027519', '447.688507', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314102', 2314102, '-45.542999', '11.092310', '429.655396', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314107', 2314107, '-24.940210', '7.788889', '415.915497', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314112', 2314112, '2.340681', '1.029590', '360.915588', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314133', 2314133, '-1.470222', '0.327971', '355.323486', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314135', 2314135, '-2.340280', '16.406719', '467.504791', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173600, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314136', 2314136, '1.744962', '15.965160', '463.338013', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173328, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314137', 2314137, '67.368530', '7.949890', '446.280609', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173056, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314138', 2314138, '46.122662', '7.817679', '439.927185', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172784, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314139', 2314139, '108.354301', '9.109589', '407.461609', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159220, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314140', 2314140, '104.234299', '8.804408', '412.466614', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159764, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314141', 2314141, '123.021004', '12.317820', '423.590515', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159492, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314142', 2314142, '109.849602', '10.971190', '457.846893', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158948, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314144', 2314144, '68.332771', '7.866884', '474.070587', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314145', 2314145, '42.399090', '7.746444', '460.622803', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314146', 2314146, '97.762482', '7.782855', '392.593201', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314147', 2314147, '82.413742', '7.833769', '430.187286', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314148', 2314148, '4.571571', '14.724090', '481.634888', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314149', 2314149, '115.912598', '11.103390', '432.906311', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314150', 2314150, '2.013238', '9.902340', '432.648193', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314151', 2314151, '-58.361721', '5.610658', '400.360504', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314152', 2314152, '-85.923592', '7.095398', '408.499207', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314153', 2314153, '-89.646797', '6.881772', '406.576599', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314154', 2314154, '-6.062557', '1.064418', '360.585297', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314155', 2314155, '5.446085', '-3.557740', '326.017792', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314156', 2314156, '4.316917', '-3.595564', '325.071686', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314157', 2314157, '-28.881241', '-5.070975', '313.819092', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314159', 2314159, '-46.860470', '-8.011047', '221.606705', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314160', 2314160, '-69.568810', '-5.347832', '198.726303', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314161', 2314161, '-58.732021', '-3.341773', '321.766907', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314163', 2314163, '-122.044701', '1.863278', '351.901215', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167894, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(191, 'go005', 'bnpc2314164', 2314164, '-134.686493', '5.714658', '377.345215', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314165', 2314165, '-91.805458', '-7.624840', '295.133911', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314166', 2314166, '-113.416000', '-7.987957', '278.087799', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314173', 2314173, '-122.484200', '-7.126010', '289.814514', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314174', 2314174, '-230.604599', '-5.478079', '208.442703', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314175', 2314175, '-207.367706', '-5.861229', '204.890305', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314177', 2314177, '-255.068893', '-4.175101', '226.840500', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314180', 2314180, '-330.692505', '7.278777', '313.762604', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314181', 2314181, '-317.594910', '9.477072', '339.549591', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314192', 2314192, '-345.082794', '6.485037', '63.248600', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147228, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc2314196', 2314196, '-237.055405', '3.071132', '110.837601', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148588, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc2314197', 2314197, '-241.022705', '2.939748', '114.865997', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147500, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc2314228', 2314228, '-134.111603', '-2.151569', '175.158295', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc2314253', 2314253, '-336.507202', '6.607109', '55.985298', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314258', 2314258, '-287.312195', '8.499228', '64.072594', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314261', 2314261, '-285.236908', '7.675241', '65.262787', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314262', 2314262, '-249.378204', '7.888867', '63.401192', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314265', 2314265, '-295.246887', '5.966230', '120.439400', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314267', 2314267, '-244.488403', '4.113512', '102.499100', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314270', 2314270, '-200.428696', '4.427309', '103.759300', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314275', 2314275, '-199.511703', '13.382110', '47.836979', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314276', 2314276, '-226.188293', '11.478340', '8.346189', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148860, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc2314280', 2314280, '-188.377304', '27.717520', '-44.157928', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314286', 2314286, '-183.089706', '31.517771', '-61.713600', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314288', 2314288, '-189.410294', '46.463669', '-104.997398', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314290', 2314290, '-191.485504', '47.196110', '-107.194702', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314302', 2314302, '-182.177505', '1.937849', '136.217194', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314304', 2314304, '-186.236404', '2.212511', '133.592697', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314305', 2314305, '-141.374893', '-2.090533', '175.005707', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314308', 2314308, '-187.396103', '-1.052920', '170.153305', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314309', 2314309, '-129.839096', '0.320392', '156.450699', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314314', 2314314, '-186.266907', '-0.961365', '166.521698', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314362', 2314362, '-5.424891', '19.709511', '-18.332621', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 116682, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc2314363', 2314363, '-6.294857', '20.221451', '15.311720', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121022, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc2314364', 2314364, '80.094597', '9.658875', '14.206050', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117764, 2, 0, 0, 0, 0, 30124, 0, 0, 0), +(191, 'go005', 'bnpc2314365', 2314365, '111.406097', '6.393494', '-42.557430', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116954, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc2314366', 2314366, '113.664398', '5.874695', '-41.245178', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119662, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc2314369', 2314369, '176.512604', '-4.252202', '-4.205355', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118036, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(191, 'go005', 'bnpc2314398', 2314398, '350.148193', '-2.774287', '-52.136921', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117226, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(191, 'go005', 'bnpc2314451', 2314451, '-12.582740', '19.341261', '-16.372990', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314457', 2314457, '-8.483642', '19.834230', '12.296340', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314458', 2314458, '60.166260', '13.473630', '9.872559', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314460', 2314460, '90.726227', '9.726084', '-48.813629', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314462', 2314462, '184.311996', '-2.061695', '22.900990', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314464', 2314464, '212.298294', '-3.300554', '68.344177', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314465', 2314465, '254.499100', '-0.309484', '161.274002', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314466', 2314466, '216.507706', '0.515230', '114.319603', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314610', 2314610, '306.118286', '-6.238892', '11.614130', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314612', 2314612, '236.715302', '-5.231476', '-56.311989', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314613', 2314613, '213.666504', '-2.576396', '-14.211420', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314617', 2314617, '332.661499', '-4.732603', '-51.060032', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314621', 2314621, '364.126007', '-2.822966', '-30.502831', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314623', 2314623, '361.654114', '-2.670410', '-53.025211', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314626', 2314626, '519.135681', '-12.154410', '-35.360329', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314632', 2314632, '562.935120', '-12.088730', '-2.092934', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314634', 2314634, '546.164124', '-11.988440', '-64.370163', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314640', 2314640, '622.314026', '-13.134470', '-6.901284', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314642', 2314642, '619.809082', '-12.711930', '-6.546345', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2314715', 2314715, '570.641479', '-12.100450', '-40.116009', 63, 0, 0, 0, 1, 6, 0, 0, 60, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133220, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(191, 'go005', 'bnpc2314717', 2314717, '566.063782', '-11.947860', '-47.776039', 64, 0, 0, 0, 0, 6, 0, 0, 61, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132954, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(191, 'go005', 'bnpc2314726', 2314726, '556.389587', '-12.008900', '-42.404869', 55, 0, 0, 0, 1, 6, 0, 0, 53, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132688, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2319905', 2319905, '133.538803', '-23.850300', '-524.211304', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2319906', 2319906, '135.644501', '-24.169041', '-527.507324', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2319916', 2319916, '176.574203', '-26.295950', '-563.569885', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2319917', 2319917, '177.984299', '-26.445820', '-561.296326', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2319918', 2319918, '128.970001', '-22.921940', '-557.568481', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2320483', 2320483, '376.638397', '-2.304138', '-39.993961', 61, 0, 0, 0, 1, 6, 0, 0, 58, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128886, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(191, 'go005', 'bnpc2320484', 2320484, '381.979004', '-2.517761', '-36.209721', 62, 0, 0, 0, 0, 6, 0, 0, 59, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128620, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(191, 'go005', 'bnpc2320487', 2320487, '378.164307', '-2.273621', '-37.033691', 55, 0, 0, 0, 1, 6, 0, 0, 53, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2320488', 2320488, '413.927094', '-11.864880', '-0.202001', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2320489', 2320489, '450.408203', '-11.066550', '-6.123241', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127708, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2341765', 2341765, '66.095573', '7.840286', '477.260101', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2341766', 2341766, '43.036430', '7.860031', '467.247192', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2341767', 2341767, '24.573021', '9.672716', '473.677795', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2350399', 2350399, '-284.382385', '11.856210', '-27.054291', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146424, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2350400', 2350400, '-260.730988', '11.703620', '-32.242359', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146152, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2350401', 2350401, '-287.373199', '11.490000', '-7.705853', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139660, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2350402', 2350402, '-285.664215', '12.558130', '-52.719971', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145880, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc2350715', 2350715, '350.270203', '-2.804400', '-50.397419', 762, 0, 0, 0, 0, 6, 0, 0, 64, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121294, 2, 0, 0, 0, 0, 30120, 0, 0, 0), +(191, 'go005', 'bnpc2350717', 2350717, '364.079590', '-4.248232', '-7.079392', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118852, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc2499386', 2499386, '-228.497696', '12.354860', '2.668262', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3694733', 3694733, '-401.218414', '11.367920', '318.654388', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186570, 5, 0, 0, 0, 0, 30059, 0, 0, 0), +(191, 'go005', 'bnpc3694734', 3694734, '-406.210388', '11.893380', '317.922485', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186298, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc3694735', 3694735, '-390.079987', '10.675150', '320.996399', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186026, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc3694736', 3694736, '-405.569611', '9.872559', '309.346100', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185754, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc3694737', 3694737, '-399.718811', '10.832540', '315.967102', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185482, 5, 0, 0, 0, 0, 30059, 0, 0, 0), +(191, 'go005', 'bnpc3694738', 3694738, '-398.236786', '11.123780', '318.544708', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185210, 5, 0, 0, 0, 0, 30060, 0, 0, 0), +(191, 'go005', 'bnpc3694900', 3694900, '-355.928314', '-0.308188', '209.458206', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3694901', 3694901, '-358.039886', '-0.389206', '203.009705', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3694902', 3694902, '-359.232910', '-0.298962', '198.263794', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3694903', 3694903, '-364.384613', '-0.113241', '212.442200', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3694904', 3694904, '-376.390198', '-0.538467', '203.341293', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3694905', 3694905, '-364.056610', '-0.145500', '194.541702', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3694906', 3694906, '-378.323914', '-0.373772', '200.093002', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3694907', 3694907, '-368.149506', '-0.318695', '203.149994', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3694908', 3694908, '-401.144989', '0.532858', '100.339798', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184400, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3694909', 3694909, '-394.740112', '-0.280364', '154.306000', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184128, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3694910', 3694910, '-391.653412', '-0.503595', '210.406601', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184672, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3695051', 3695051, '-419.371887', '0.232080', '192.587006', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183856, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3695053', 3695053, '-421.990997', '0.316387', '76.746277', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184944, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3696616', 3696616, '-96.760498', '3.493882', '366.300812', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163276, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3696617', 3696617, '-93.824730', '3.873965', '372.828613', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163004, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3696618', 3696618, '-127.003799', '2.972143', '361.243103', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3696619', 3696619, '-133.940903', '6.157478', '379.316498', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3696870', 3696870, '-90.013023', '12.924340', '438.193298', 311, 0, 0, 0, 1, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162194, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3696872', 3696872, '-97.337341', '11.276370', '431.967590', 311, 0, 0, 0, 1, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161922, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(191, 'go005', 'bnpc3696873', 3696873, '-91.318466', '10.895230', '429.915894', 311, 0, 0, 0, 0, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161650, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(191, 'go005', 'bnpc3696876', 3696876, '-81.651070', '11.886730', '434.470093', 79, 0, 0, 0, 1, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(191, 'go005', 'bnpc3696877', 3696877, '-91.226921', '11.092580', '430.953491', 79, 0, 0, 0, 0, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161112, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(191, 'go005', 'bnpc3696878', 3696878, '-87.327423', '11.154300', '431.082611', 79, 0, 0, 0, 0, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160840, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(191, 'go005', 'bnpc3696879', 3696879, '-90.402939', '11.068160', '430.739899', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160574, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(191, 'go005', 'bnpc3697774', 3697774, '-88.120903', '11.001710', '430.441711', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160302, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(191, 'go005', 'bnpc3697775', 3697775, '-88.426071', '11.490000', '427.695099', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160030, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(191, 'go005', 'bnpc3697778', 3697778, '92.364197', '7.706964', '389.248596', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3697779', 3697779, '108.716797', '9.727629', '431.794403', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3697780', 3697780, '80.686493', '7.961041', '421.256897', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157860, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3698022', 3698022, '-75.550377', '-5.582465', '200.264694', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156778, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3698023', 3698023, '-38.882149', '-4.081942', '191.941605', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156506, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3698921', 3698921, '-37.577309', '-8.258268', '242.908295', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156234, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3700086', 3700086, '-37.311859', '-8.389291', '259.427307', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155962, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3701093', 3701093, '-28.851320', '-7.961150', '249.751205', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155690, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3726783', 3726783, '-306.845306', '7.615899', '107.505699', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145342, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3726785', 3726785, '-258.686188', '7.797313', '66.056259', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145070, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3726788', 3726788, '-219.973602', '2.520791', '114.552399', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144798, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3726789', 3726789, '-199.571198', '6.403381', '88.836418', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144526, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3727336', 3727336, '-233.240204', '11.494870', '34.787762', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144254, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3727339', 3727339, '-197.756302', '14.999770', '41.853489', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143982, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3727712', 3727712, '-313.497192', '11.569130', '-31.583179', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3727713', 3727713, '-314.589386', '11.902390', '-35.298470', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3727714', 3727714, '-306.619385', '11.253370', '-13.814930', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3727715', 3727715, '-278.890808', '12.580250', '-40.299412', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3727717', 3727717, '-267.242004', '11.943940', '-40.949741', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3727718', 3727718, '-273.701111', '11.886720', '-21.286381', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc3727732', 3727732, '-134.691406', '15.243710', '-3.646973', 70, 0, 0, 0, 0, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142090, 1, 0, 0, 0, 17, 30120, 0, 0, 0), +(191, 'go005', 'bnpc3727734', 3727734, '-137.071793', '14.908020', '-3.555420', 71, 0, 0, 0, 1, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141824, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(191, 'go005', 'bnpc3727735', 3727735, '-134.325195', '15.182740', '-2.365173', 72, 0, 0, 0, 0, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141558, 1, 0, 0, 0, 17, 30119, 0, 0, 0), +(191, 'go005', 'bnpc3727738', 3727738, '-101.701401', '19.180540', '10.727050', 70, 0, 0, 0, 1, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141274, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(191, 'go005', 'bnpc3727739', 3727739, '-69.779541', '17.349430', '6.759644', 71, 0, 0, 0, 0, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141008, 1, 0, 0, 0, 17, 30058, 0, 0, 0), +(191, 'go005', 'bnpc3727740', 3727740, '-74.509888', '17.685120', '8.499207', 72, 0, 0, 0, 1, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140742, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(191, 'go005', 'bnpc3727743', 3727743, '-106.065498', '18.173450', '14.633350', 71, 0, 0, 0, 0, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140464, 1, 0, 0, 0, 17, 30121, 0, 0, 0), +(191, 'go005', 'bnpc3727744', 3727744, '-104.844803', '18.509150', '14.328170', 72, 0, 0, 0, 0, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140198, 1, 0, 0, 0, 17, 30120, 0, 0, 0), +(191, 'go005', 'bnpc3727745', 3727745, '-105.729797', '18.387070', '12.954860', 70, 0, 0, 0, 0, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139914, 1, 0, 0, 0, 17, 30119, 0, 0, 0), +(191, 'go005', 'bnpc3727746', 3727746, '246.108398', '-4.984168', '-31.182381', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125562, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3727747', 3727747, '221.653900', '-5.011750', '-51.817490', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125290, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3729074', 3729074, '76.092232', '11.110100', '-47.602612', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124552, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3729746', 3729746, '86.654007', '8.922870', '-28.246519', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124280, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3729747', 3729747, '108.261803', '6.031532', '-26.458651', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124008, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3729748', 3729748, '115.837196', '4.964785', '13.643280', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123736, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3729749', 3729749, '71.684547', '11.649810', '-44.096661', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123464, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc3741023', 3741023, '381.093994', '-2.365173', '-37.277828', 55, 0, 0, 0, 0, 6, 0, 0, 53, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123168, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(191, 'go005', 'bnpc3741027', 3741027, '379.934296', '-2.304138', '-35.904541', 62, 0, 0, 0, 0, 6, 0, 0, 59, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122908, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(191, 'go005', 'bnpc3741028', 3741028, '378.072815', '-2.426208', '-33.066349', 61, 0, 0, 0, 1, 6, 0, 0, 58, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122630, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(191, 'go005', 'bnpc3741029', 3741029, '565.056824', '-11.978380', '-48.966251', 55, 0, 0, 0, 0, 6, 0, 0, 53, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122352, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(191, 'go005', 'bnpc3741030', 3741030, '546.837524', '-12.436150', '-46.677391', 64, 0, 0, 0, 1, 6, 0, 0, 61, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122074, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(191, 'go005', 'bnpc3741031', 3741031, '549.614624', '-12.436150', '-49.210388', 63, 0, 0, 0, 1, 6, 0, 0, 60, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121796, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(191, 'go005', 'bnpc3870165', 3870165, '-530.557922', '11.925130', '70.277603', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22788, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(191, 'go005', 'bnpc3870175', 3870175, '-197.120804', '-1.760828', '261.203003', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22522, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(191, 'go005', 'bnpc3870206', 3870206, '-273.557404', '0.846183', '289.320587', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22244, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(191, 'go005', 'bnpc4317800', 4317800, '498.771515', '-17.898861', '-313.954407', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110750, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317801', 4317801, '451.322998', '-15.501170', '-279.865692', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110484, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc4317802', 4317802, '514.823975', '-20.341690', '-358.783813', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 110218, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc4317803', 4317803, '260.486694', '-11.080910', '-154.824493', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109958, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4317804', 4317804, '357.625610', '-18.265079', '-146.196701', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109686, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4317805', 4317805, '327.286591', '-17.372709', '-188.968796', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109414, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4317817', 4317817, '294.575806', '-12.980530', '-180.587906', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109142, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4317818', 4317818, '388.959412', '-18.823000', '-212.157593', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108876, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4317819', 4317819, '314.365814', '-18.527800', '-289.215912', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108604, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4317820', 4317820, '329.818115', '-17.597429', '-223.296097', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108332, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4317821', 4317821, '370.788086', '-17.580059', '-245.788101', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108060, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4317822', 4317822, '291.974792', '-19.793560', '-289.794800', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107788, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4317826', 4317826, '253.924606', '-23.493771', '-397.838715', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107522, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4317827', 4317827, '253.467499', '-24.551821', '-431.753998', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107250, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4317829', 4317829, '213.044601', '-20.737579', '-407.032990', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106978, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4317830', 4317830, '215.188202', '-20.979630', '-409.962799', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106706, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4317832', 4317832, '145.520706', '-23.570749', '-477.912994', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106314, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4317833', 4317833, '133.494904', '-23.758650', '-547.963074', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106042, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4317834', 4317834, '173.863693', '-25.574671', '-517.082520', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105770, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4317836', 4317836, '-10.175820', '-35.238060', '-550.143311', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105498, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4317838', 4317838, '-52.048519', '-35.202579', '-528.496216', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105226, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4317839', 4317839, '186.907700', '-23.727840', '-376.882599', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105074, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4317840', 4317840, '126.817703', '-25.925110', '-347.127502', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104808, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4317842', 4317842, '115.994499', '-26.717680', '-354.423096', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104536, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4317844', 4317844, '88.409050', '-26.293819', '-339.833893', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104264, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4317849', 4317849, '137.315903', '-23.270020', '-304.951599', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103992, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4317852', 4317852, '155.825104', '-29.775539', '-226.307693', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103564, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4317853', 4317853, '113.237198', '-29.434690', '-221.118500', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103292, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4317854', 4317854, '146.903900', '-29.527519', '-215.189804', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103020, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4317855', 4317855, '129.991104', '-29.535959', '-245.124496', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102748, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4317863', 4317863, '207.402206', '-6.915606', '-189.063599', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102596, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317864', 4317864, '351.494507', '-15.727020', '-259.491211', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 102330, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc4317873', 4317873, '284.544312', '-19.539360', '-291.495911', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 102046, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc4317874', 4317874, '368.856201', '-20.248779', '-184.771500', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101780, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(191, 'go005', 'bnpc4317875', 4317875, '368.581512', '-20.218201', '-183.856003', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101514, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(191, 'go005', 'bnpc4317885', 4317885, '366.659302', '-17.544319', '-237.723404', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101236, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317886', 4317886, '443.139709', '-18.693390', '-238.559097', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100970, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317887', 4317887, '249.626694', '-24.511021', '-435.444397', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 100698, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc4317891', 4317891, '131.792099', '-25.070620', '-394.277893', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100420, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317893', 4317893, '112.708099', '-30.261940', '-194.688599', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100154, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc4317894', 4317894, '193.408096', '-31.479370', '-219.684097', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99870, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc4317897', 4317897, '129.072906', '-22.173210', '-564.551880', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 99604, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc4317899', 4317899, '253.498001', '-23.239559', '-517.052002', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99338, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317900', 4317900, '165.575607', '-26.840639', '-542.717712', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99060, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(191, 'go005', 'bnpc4317901', 4317901, '166.460602', '-26.871220', '-543.541626', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98782, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(191, 'go005', 'bnpc4317902', 4317902, '156.908401', '-24.429689', '-455.588593', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98522, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc4317903', 4317903, '-37.241699', '-35.085869', '-537.987976', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98250, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317904', 4317904, '-33.412891', '-35.156620', '-549.607971', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97972, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317905', 4317905, '-27.481510', '-34.836430', '-541.802124', 762, 0, 0, 0, 1, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97694, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317909', 4317909, '143.718704', '-29.336210', '-230.073807', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97434, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317911', 4317911, '119.399300', '-26.408409', '-346.557190', 762, 0, 0, 0, 1, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97150, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317912', 4317912, '139.559601', '-29.771700', '-244.522903', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 96884, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc4317916', 4317916, '565.405212', '-22.088120', '-350.810913', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96606, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc4317917', 4317917, '558.970886', '-22.530359', '-353.985687', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96346, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317918', 4317918, '561.280518', '-22.530359', '-344.947998', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96068, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317920', 4317920, '553.652527', '-24.130871', '-379.476715', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95790, 2, 0, 0, 0, 0, 30060, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(191, 'go005', 'bnpc4317921', 4317921, '528.888000', '-24.002501', '-316.121185', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95530, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317922', 4317922, '552.422424', '-24.124571', '-379.629211', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95252, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(191, 'go005', 'bnpc4317923', 4317923, '516.716187', '-20.340330', '-366.170807', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94986, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317924', 4317924, '544.539673', '-24.024820', '-352.536011', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94702, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317925', 4317925, '573.032776', '-24.048040', '-372.673492', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94436, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317927', 4317927, '408.712799', '-28.427610', '-401.419098', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94164, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317930', 4317930, '335.927399', '-28.671749', '-421.042206', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93886, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(191, 'go005', 'bnpc4317931', 4317931, '335.683105', '-28.763309', '-419.913086', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93620, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(191, 'go005', 'bnpc4317932', 4317932, '349.965607', '-28.000311', '-412.710785', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93354, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317933', 4317933, '339.902313', '-28.306200', '-487.054108', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93070, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317934', 4317934, '370.887909', '-34.493279', '-462.935608', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 92804, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc4317935', 4317935, '351.582886', '-28.032480', '-484.519714', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92538, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317936', 4317936, '425.497803', '-28.366579', '-482.505615', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92254, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317937', 4317937, '424.521210', '-27.908751', '-463.431793', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91988, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317938', 4317938, '358.322601', '-28.245850', '-509.974213', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91722, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc4317939', 4317939, '388.815186', '-34.042912', '-418.204010', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91438, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317940', 4317940, '413.626190', '-34.042912', '-447.318207', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91172, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317943', 4317943, '383.576294', '-27.500000', '-515.033020', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90906, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(191, 'go005', 'bnpc4317944', 4317944, '403.162109', '-27.877609', '-499.533905', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 90628, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc4317945', 4317945, '384.859497', '-27.500000', '-514.937012', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90350, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(191, 'go005', 'bnpc4317946', 4317946, '391.422485', '-17.924709', '-377.696991', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90090, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4317948', 4317948, '450.847504', '-28.334009', '-441.002411', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89806, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4516039', 4516039, '201.957901', '-6.015132', '-140.727798', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89558, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4516054', 4516054, '302.846893', '-13.662720', '-70.995468', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89286, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4516060', 4516060, '90.040314', '-26.979679', '-315.730499', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89032, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4516061', 4516061, '118.730499', '-25.303860', '-328.093414', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88760, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4516069', 4516069, '76.916473', '-30.135340', '-176.278107', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88332, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4516071', 4516071, '109.801003', '-30.350300', '-144.088104', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88060, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4516076', 4516076, '178.212997', '-26.243820', '-569.578918', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87818, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4526138', 4526138, '207.189499', '-4.405000', '-55.771381', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4526153', 4526153, '101.728302', '6.775696', '-29.255630', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4526159', 4526159, '-5.661133', '19.302610', '-20.096189', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 114784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4526163', 4526163, '295.063599', '0.717163', '180.926102', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4526170', 4526170, '243.762802', '-2.334717', '93.644531', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4526175', 4526175, '514.976685', '-20.248779', '-360.982697', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4526185', 4526185, '349.873993', '-15.610050', '-260.578400', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4526186', 4526186, '405.020111', '-28.000311', '-500.633209', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4526187', 4526187, '370.778900', '-34.470150', '-460.959808', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4526188', 4526188, '286.335602', '-19.760500', '-293.202087', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4526189', 4526189, '126.848099', '-22.110350', '-563.561523', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4526190', 4526190, '138.658707', '-23.403219', '-470.115204', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4526191', 4526191, '252.338394', '-24.643370', '-435.141510', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85780, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4526192', 4526192, '119.127197', '-25.162230', '-324.086395', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4526193', 4526193, '137.078705', '-29.800461', '-246.062698', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4526240', 4526240, '214.825394', '-19.554331', '-398.094788', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84946, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4553457', 4553457, '345.774902', '-15.417000', '-261.117798', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84668, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4553459', 4553459, '361.297913', '-25.751591', '-438.400085', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84378, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4553469', 4553469, '139.198593', '-23.542650', '-467.790009', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84094, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc4588198', 4588198, '119.859596', '-21.530519', '-297.352600', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83828, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4588199', 4588199, '116.324303', '-25.430050', '-324.881592', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83550, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(191, 'go005', 'bnpc4588205', 4588205, '443.598206', '-24.245310', '-392.653687', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83278, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4592960', 4592960, '291.767700', '-13.992610', '-129.503403', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83006, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(191, 'go005', 'bnpc4618294', 4618294, '99.668091', '8.096478', '-41.502491', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4618295', 4618295, '114.137100', '6.064597', '-18.577110', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4618296', 4618296, '119.902702', '5.962872', '-52.469212', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4618297', 4618297, '273.146088', '-0.359490', '138.990295', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113122, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4618298', 4618298, '194.044495', '3.506398', '122.434998', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112850, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4618299', 4618299, '301.813202', '-6.703927', '30.420111', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112506, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4618300', 4618300, '344.534210', '-4.776098', '-14.875460', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112234, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(191, 'go005', 'bnpc4618301', 4618301, '198.657104', '2.212463', '118.242104', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112064, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4618302', 4618302, '280.378998', '-4.542100', '48.923759', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111792, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4618303', 4618303, '221.648804', '-2.880372', '-13.690810', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111520, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4621091', 4621091, '-46.489208', '15.602010', '3.201886', 2771, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23396, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(191, 'go005', 'bnpc4621093', 4621093, '622.978821', '-12.883850', '-12.418940', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23130, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1139214', 1139214, '-268.574097', '7.064880', '631.738708', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1139231', 1139231, '-15.879850', '-0.100045', '376.413208', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1139247', 1139247, '-122.621803', '1.180372', '288.650391', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1139253', 1139253, '-116.636803', '1.401093', '293.862488', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1139295', 1139295, '-239.337799', '0.869717', '266.651306', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1139296', 1139296, '-242.175995', '0.625573', '262.958710', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1139314', 1139314, '-234.854004', '-0.100137', '305.762085', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1139319', 1139319, '-284.558105', '1.846295', '342.205505', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1139327', 1139327, '-178.824295', '0.141551', '253.664703', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160176, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1139344', 1139344, '-179.793198', '0.669785', '323.976196', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159904, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1139407', 1139407, '-279.011292', '6.027267', '564.782104', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159632, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1139408', 1139408, '-254.932495', '6.759699', '578.911987', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159360, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1139409', 1139409, '-258.136902', '7.827831', '603.051819', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159088, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1139410', 1139410, '-257.221405', '6.637627', '578.881470', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1139423', 1139423, '-276.386688', '5.966230', '538.170288', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158544, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1139425', 1139425, '-266.529388', '5.020171', '542.473389', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1139430', 1139430, '-220.569199', '3.982558', '556.969482', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158000, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1140323', 1140323, '48.412201', '22.379660', '245.108307', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124060, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140341', 1140341, '148.210800', '18.142929', '63.034969', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134118, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140355', 1140355, '-167.689697', '4.657228', '188.189499', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1140356', 1140356, '-140.886597', '6.118821', '203.173798', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1140376', 1140376, '-173.095795', '7.162746', '110.695396', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119830, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140378', 1140378, '-169.298904', '4.379292', '134.294601', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119558, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140379', 1140379, '-176.483307', '6.579963', '113.899696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119286, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140393', 1140393, '-213.883896', '11.384410', '78.615593', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119014, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140405', 1140405, '-204.099792', '10.836050', '82.086967', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118742, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140418', 1140418, '-170.832901', '8.611761', '46.359402', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118470, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140419', 1140419, '-163.073196', '7.441800', '53.057159', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118198, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140420', 1140420, '-208.158096', '10.773990', '72.948898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117926, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140429', 1140429, '-210.742401', '9.567359', '0.839199', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117654, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140430', 1140430, '-217.212204', '9.475805', '3.250124', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117382, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140459', 1140459, '-87.514954', '0.030696', '53.398781', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97846, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140460', 1140460, '-83.185509', '0.030617', '55.136490', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98118, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140461', 1140461, '-100.175499', '1.815776', '55.405460', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97302, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140462', 1140462, '-87.013252', '0.030600', '71.372276', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97574, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140539', 1140539, '-119.476097', '5.647681', '112.526497', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117110, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140540', 1140540, '-126.604202', '5.923794', '94.623161', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116838, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140541', 1140541, '-126.329498', '5.844177', '109.056198', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116566, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140980', 1140980, '-313.130402', '25.345190', '-208.453506', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116294, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140981', 1140981, '-326.970612', '26.883949', '-216.976898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116022, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140982', 1140982, '-329.696594', '21.078899', '-165.243500', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115750, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140983', 1140983, '-338.267395', '24.724110', '-191.433197', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115478, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1140984', 1140984, '-323.896515', '19.876869', '-162.956696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115206, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1144407', 1144407, '-272.144714', '17.696960', '57.133450', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105716, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1144408', 1144408, '-257.479095', '14.942520', '80.117462', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1144457', 1144457, '-241.510406', '16.161341', '12.992840', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105444, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1144491', 1144491, '-78.316467', '3.566922', '-36.424759', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106260, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1144547', 1144547, '-106.571297', '7.155371', '-106.524399', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1144577', 1144577, '-127.875000', '6.779816', '-22.488760', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105172, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1144585', 1144585, '-91.407356', '7.599404', '-74.910507', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104900, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1144597', 1144597, '-58.182690', '6.881772', '-97.795113', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1144598', 1144598, '-132.427704', '9.336102', '-104.286499', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1144629', 1144629, '-152.086700', '11.093260', '-140.581406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1144631', 1144631, '-151.639099', '11.652820', '-128.275406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1144632', 1144632, '-167.772995', '9.292697', '-129.167694', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1144653', 1144653, '-78.954659', '4.479653', '-126.207397', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1144691', 1144691, '-129.860199', '13.845340', '-129.543701', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1144692', 1144692, '-205.706894', '9.018035', '-138.750305', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1144694', 1144694, '-208.087296', '9.353733', '-141.039200', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1144747', 1144747, '2.112435', '6.781407', '-26.549141', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107620, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1144748', 1144748, '17.348650', '6.534479', '-18.517111', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107892, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1144786', 1144786, '30.609501', '4.094535', '43.754768', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108164, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1144790', 1144790, '42.343739', '4.165666', '68.558739', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1144793', 1144793, '142.320801', '4.196184', '25.833481', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1144799', 1144799, '40.001209', '4.166452', '71.521370', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1144800', 1144800, '70.561348', '4.166210', '66.426353', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145309', 1145309, '99.839729', '6.729181', '-55.405548', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93954, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145310', 1145310, '104.112297', '7.125916', '-59.922218', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93682, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145311', 1145311, '111.009300', '12.405540', '-76.890251', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93410, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145312', 1145312, '53.134991', '10.581870', '-71.978127', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93138, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145330', 1145330, '33.785549', '7.920002', '-96.910088', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92866, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145331', 1145331, '30.485310', '6.219395', '-100.848801', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92594, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145342', 1145342, '7.202258', '5.720373', '-72.371872', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92322, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145343', 1145343, '0.456908', '5.833508', '-87.359497', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92050, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145344', 1145344, '9.624027', '5.417103', '-76.025612', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91778, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145371', 1145371, '323.490204', '5.164718', '-43.671810', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91506, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145380', 1145380, '267.748199', '4.639788', '9.815885', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91234, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145382', 1145382, '262.290802', '3.068853', '19.805670', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90962, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145556', 1145556, '396.724701', '3.565628', '167.813797', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68950, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145558', 1145558, '440.238007', '1.174898', '187.579102', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68678, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145559', 1145559, '499.565002', '1.571632', '166.216507', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68406, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145562', 1145562, '455.435913', '3.250124', '198.748703', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68134, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145578', 1145578, '484.519714', '3.768931', '199.908401', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67862, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145579', 1145579, '528.374084', '7.553168', '195.361206', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67590, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145581', 1145581, '509.391815', '4.440328', '204.577698', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67318, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145595', 1145595, '513.939880', '14.256400', '137.989304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1145607', 1145607, '549.889282', '11.612070', '204.730194', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66774, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145610', 1145610, '538.797913', '21.846140', '123.039803', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1145612', 1145612, '542.038208', '13.673390', '165.126495', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1145613', 1145613, '504.953491', '14.256390', '115.266296', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1145625', 1145625, '557.183105', '21.846149', '129.558304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1145628', 1145628, '553.643005', '21.683020', '99.412483', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1145631', 1145631, '575.402405', '21.683020', '111.314499', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc1145702', 1145702, '284.107697', '3.982544', '49.240841', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90690, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc1145703', 1145703, '342.275299', '7.889330', '-41.286991', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90418, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299623', 2299623, '-290.183014', '-0.100012', '465.039612', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299626', 2299626, '-303.145111', '-0.100187', '410.650696', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299628', 2299628, '-315.270905', '0.279321', '442.690002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299630', 2299630, '-290.338806', '-0.100002', '403.924103', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299631', 2299631, '-260.457001', '-0.100012', '454.819794', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299632', 2299632, '-166.141800', '-0.100048', '463.106415', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139002, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299636', 2299636, '-85.984627', '-0.137378', '426.901611', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299637', 2299637, '-105.242203', '-0.100010', '441.452209', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299638', 2299638, '-127.139801', '-0.100007', '331.296906', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299640', 2299640, '-106.279099', '-0.167896', '335.835785', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299642', 2299642, '-76.920776', '0.228838', '434.653198', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299644', 2299644, '-121.995903', '-0.106860', '397.177002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299647', 2299647, '-213.092300', '-0.106860', '435.019409', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299670', 2299670, '105.271896', '19.668831', '117.021400', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299672', 2299672, '179.124298', '15.917120', '38.983059', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299676', 2299676, '67.215942', '23.941410', '138.414597', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133302, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299677', 2299677, '92.332291', '22.476490', '171.373993', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124332, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299678', 2299678, '68.223038', '21.438881', '171.709702', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123788, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299681', 2299681, '27.293150', '20.375059', '193.801193', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299682', 2299682, '76.646019', '20.096081', '218.799103', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123516, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299685', 2299685, '222.992401', '6.174502', '28.347420', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132764, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299686', 2299686, '218.930206', '7.861652', '25.101040', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132492, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299687', 2299687, '219.145096', '9.429937', '43.394890', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132220, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299688', 2299688, '242.878006', '5.513403', '43.686531', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131948, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299693', 2299693, '203.440796', '11.769820', '11.092830', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131676, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299695', 2299695, '183.372894', '13.534710', '15.091120', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131404, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299696', 2299696, '190.876602', '14.557230', '16.119829', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131132, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299697', 2299697, '181.536499', '14.175580', '17.074800', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130860, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299701', 2299701, '46.014000', '24.951891', '129.998001', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299707', 2299707, '62.549999', '18.461660', '250.313202', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299711', 2299711, '-240.650101', '6.790217', '647.669128', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153932, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299712', 2299712, '-268.177307', '7.461614', '616.082886', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299713', 2299713, '-298.512299', '10.330310', '645.349670', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299714', 2299714, '-301.838715', '11.032230', '612.298706', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299716', 2299716, '-278.400909', '7.095398', '588.036926', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299719', 2299719, '-256.092194', '6.362965', '575.310913', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299720', 2299720, '-249.805496', '4.135148', '533.104370', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299722', 2299722, '-243.854507', '-0.167896', '489.982391', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299723', 2299723, '-273.384796', '-0.100012', '454.524109', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299725', 2299725, '-301.158295', '1.302513', '475.886902', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299729', 2299729, '-220.495697', '-0.100054', '427.954590', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151212, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299730', 2299730, '-295.158295', '-0.100004', '416.955688', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299731', 2299731, '-158.892197', '-0.137378', '438.498413', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150668, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299732', 2299732, '-97.367859', '-0.137378', '460.166290', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299733', 2299733, '-102.128700', '-0.106860', '387.319702', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299734', 2299734, '-103.898697', '-0.106860', '385.000305', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299735', 2299735, '-73.472237', '-0.100006', '383.004608', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299736', 2299736, '-119.829102', '-0.106860', '335.713715', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299737', 2299737, '-25.762659', '-0.100045', '385.324402', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299738', 2299738, '-12.145770', '-0.100007', '340.874298', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299739', 2299739, '-36.646210', '-0.100007', '330.899811', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299740', 2299740, '-69.291260', '-0.100006', '346.480591', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299741', 2299741, '-29.965321', '-0.106860', '383.686096', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299742', 2299742, '-152.754807', '-0.100000', '285.928711', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299746', 2299746, '-188.861404', '-0.100036', '279.196106', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299747', 2299747, '-138.628296', '-0.106860', '247.516495', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147132, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(192, 'go006', 'bnpc2299748', 2299748, '-207.352600', '-0.100011', '323.235504', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299751', 2299751, '-240.541595', '-0.100076', '309.201599', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299754', 2299754, '-282.546997', '2.068284', '344.383087', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299756', 2299756, '-165.855804', '3.695794', '214.781403', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299762', 2299762, '190.512695', '15.940850', '25.798840', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299764', 2299764, '193.374695', '15.528740', '58.982250', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299765', 2299765, '192.796906', '15.253090', '57.661560', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299767', 2299767, '162.554993', '16.909040', '69.378082', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299768', 2299768, '118.356201', '19.249180', '84.129753', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299769', 2299769, '119.667503', '18.832991', '86.148743', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299771', 2299771, '205.228104', '12.477170', '36.627281', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299772', 2299772, '218.183899', '10.623910', '45.217682', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299775', 2299775, '206.333893', '12.854360', '17.317181', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299777', 2299777, '114.394302', '18.347380', '106.921097', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299779', 2299779, '125.780098', '24.673790', '178.210098', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299781', 2299781, '135.240707', '28.061291', '166.094406', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299782', 2299782, '132.860199', '26.962641', '168.596893', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299783', 2299783, '145.372696', '31.326719', '173.479797', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299785', 2299785, '52.078991', '24.582239', '146.288193', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299786', 2299786, '52.109509', '24.917931', '143.633102', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299788', 2299788, '54.687038', '18.847170', '222.674896', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299789', 2299789, '71.783401', '22.789841', '205.433395', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299791', 2299791, '52.628319', '11.490000', '281.025391', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299792', 2299792, '55.405460', '12.252950', '279.835114', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299799', 2299799, '-333.285889', '20.722960', '-154.265701', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114934, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299800', 2299800, '-287.157501', '15.489150', '-84.197617', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299802', 2299802, '-262.604095', '12.804420', '-65.742996', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106532, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299803', 2299803, '-258.117889', '10.828210', '-67.787712', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299804', 2299804, '-235.706100', '8.377155', '-31.937180', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299812', 2299812, '-156.572906', '6.393483', '12.436060', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114662, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299820', 2299820, '-231.464096', '9.353733', '-146.379807', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299822', 2299822, '-119.740601', '2.027413', '-74.048714', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299823', 2299823, '-98.963509', '2.027430', '-27.024349', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299882', 2299882, '-305.844391', '25.145599', '-209.288696', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299886', 2299886, '-345.664215', '23.928289', '-176.087097', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299887', 2299887, '-347.161285', '24.534389', '-177.381302', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299895', 2299895, '-261.350800', '12.694290', '-76.165604', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299901', 2299901, '-279.804291', '19.410770', '50.600639', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299908', 2299908, '-263.922089', '15.508790', '89.442383', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299911', 2299911, '-145.702393', '6.826308', '-14.807010', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299914', 2299914, '-186.113998', '9.086921', '28.118750', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299915', 2299915, '-149.863907', '4.337313', '105.397102', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299916', 2299916, '-212.124496', '12.717620', '104.362198', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299930', 2299930, '-56.242779', '6.495965', '-71.791733', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299933', 2299933, '-107.042099', '5.264315', '-76.487633', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299936', 2299936, '-66.982857', '5.925140', '-114.246902', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299938', 2299938, '-139.531906', '11.537960', '-122.054199', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299941', 2299941, '-121.466599', '10.386180', '-143.292297', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299945', 2299945, '0.868353', '6.550388', '-34.652611', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299949', 2299949, '57.447720', '3.129161', '-49.835171', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299951', 2299951, '20.675930', '4.623436', '23.544621', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109772, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2299953', 2299953, '102.866203', '4.166452', '53.437038', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2299954', 2299954, '105.180397', '4.165666', '50.461540', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2300024', 2300024, '124.376198', '19.407740', '-146.837601', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90098, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(192, 'go006', 'bnpc2300025', 2300025, '124.414299', '19.130779', '-145.398300', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89832, 1, 0, 0, 0, 0, 30067, 0, 0, 0), +(192, 'go006', 'bnpc2300029', 2300029, '83.634644', '9.048584', '-90.501282', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89566, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(192, 'go006', 'bnpc2300030', 2300030, '71.000183', '18.234480', '-159.014297', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89282, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(192, 'go006', 'bnpc2300031', 2300031, '71.760773', '18.225830', '-160.113007', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89016, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(192, 'go006', 'bnpc2300041', 2300041, '179.222198', '18.223680', '-145.087006', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88744, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(192, 'go006', 'bnpc2300042', 2300042, '170.907196', '17.193430', '-151.395401', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88466, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(192, 'go006', 'bnpc2300044', 2300044, '121.843201', '20.218161', '-96.971130', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88200, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(192, 'go006', 'bnpc2300045', 2300045, '123.185997', '20.370750', '-97.032173', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87922, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(192, 'go006', 'bnpc2300047', 2300047, '131.347900', '20.830030', '-112.115501', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87650, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(192, 'go006', 'bnpc2300048', 2300048, '136.095200', '18.936399', '-149.187500', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87378, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(192, 'go006', 'bnpc2300050', 2300050, '99.198853', '17.898781', '-160.631805', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87118, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(192, 'go006', 'bnpc2300051', 2300051, '171.717804', '17.307770', '-150.139297', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86846, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(192, 'go006', 'bnpc2300067', 2300067, '435.940704', '-0.982693', '5.487583', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76704, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(192, 'go006', 'bnpc2300068', 2300068, '440.817810', '-1.144474', '-14.663970', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86520, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(192, 'go006', 'bnpc2300072', 2300072, '438.040710', '-0.412041', '-42.984711', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71530, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(192, 'go006', 'bnpc2300074', 2300074, '441.568298', '0.782855', '-28.634399', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(192, 'go006', 'bnpc2300077', 2300077, '426.413208', '-0.717224', '-50.309021', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72346, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(192, 'go006', 'bnpc2300080', 2300080, '399.968506', '4.262952', '-41.852612', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74800, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(192, 'go006', 'bnpc2300084', 2300084, '360.969208', '1.840043', '-6.628087', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75616, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(192, 'go006', 'bnpc2300091', 2300091, '376.814392', '4.773165', '-33.204460', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71258, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(192, 'go006', 'bnpc2300092', 2300092, '356.160797', '2.687235', '2.700800', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86248, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(192, 'go006', 'bnpc2300095', 2300095, '366.384308', '1.052825', '12.741240', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76160, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(192, 'go006', 'bnpc2300098', 2300098, '387.472290', '-0.900329', '20.340231', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85976, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(192, 'go006', 'bnpc2300099', 2300099, '387.075500', '-1.022401', '21.408360', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75888, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(192, 'go006', 'bnpc2300103', 2300103, '403.433197', '-2.121051', '16.250811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85704, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(192, 'go006', 'bnpc2300104', 2300104, '436.545288', '-1.022401', '4.501364', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72074, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(192, 'go006', 'bnpc2300105', 2300105, '435.723999', '-1.106398', '3.907724', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75344, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(192, 'go006', 'bnpc2300115', 2300115, '389.150787', '4.287738', '-36.392811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(192, 'go006', 'bnpc2300119', 2300119, '397.360107', '0.381429', '115.953300', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64870, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2300123', 2300123, '371.755493', '-3.015678', '139.708099', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2300126', 2300126, '360.794006', '0.882443', '141.705902', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64326, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2300129', 2300129, '415.670990', '3.677377', '157.396805', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64054, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2300135', 2300135, '458.854004', '3.829967', '201.098602', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63782, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2300137', 2300137, '476.584991', '0.595055', '149.950302', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2300147', 2300147, '552.727478', '9.658914', '216.571198', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2300183', 2300183, '383.639801', '-2.278431', '92.591690', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300184', 2300184, '382.528412', '-2.487267', '93.400421', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300186', 2300186, '375.396393', '-4.129155', '77.561340', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300187', 2300187, '364.309113', '-4.655180', '71.455116', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300189', 2300189, '365.917114', '-5.088186', '65.510399', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300192', 2300192, '411.093201', '3.616341', '129.442200', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300193', 2300193, '410.513397', '4.074111', '156.633804', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300197', 2300197, '458.426697', '0.625573', '163.103607', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300199', 2300199, '458.792908', '0.625573', '164.843201', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300201', 2300201, '504.417389', '3.433233', '169.054596', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300202', 2300202, '512.107971', '5.050689', '209.033295', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300204', 2300204, '495.841888', '5.844158', '182.604706', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300205', 2300205, '544.090881', '10.452380', '201.525803', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300207', 2300207, '540.215088', '16.250811', '152.025604', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300211', 2300211, '525.902100', '19.058470', '105.821297', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300212', 2300212, '526.207275', '19.119511', '106.095901', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300214', 2300214, '570.489014', '22.507010', '119.554398', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300215', 2300215, '558.794128', '21.835609', '103.813599', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300217', 2300217, '592.919678', '25.558809', '131.029205', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300218', 2300218, '595.269714', '25.497780', '132.829697', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300222', 2300222, '158.947800', '16.443180', '-139.791306', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300223', 2300223, '162.681396', '16.443199', '-145.830505', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300229', 2300229, '47.617500', '4.166452', '66.536598', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300236', 2300236, '296.403412', '-0.256715', '-3.540742', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300237', 2300237, '307.939301', '-0.256714', '-0.769719', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2300241', 2300241, '306.026306', '-0.256723', '1.577364', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2308368', 2308368, '-332.770508', '11.416920', '613.476685', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145778, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(192, 'go006', 'bnpc2308369', 2308369, '-343.075592', '12.112200', '626.433289', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144424, 1, 0, 0, 0, 41, 30083, 0, 0, 0), +(192, 'go006', 'bnpc2308372', 2308372, '-345.601593', '15.548900', '608.209290', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143880, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(192, 'go006', 'bnpc2308373', 2308373, '-344.072388', '20.119520', '620.861877', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145506, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(192, 'go006', 'bnpc2308806', 2308806, '-332.725800', '11.426350', '614.251526', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143608, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(192, 'go006', 'bnpc2308807', 2308807, '-333.646912', '11.427370', '613.129211', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144152, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(192, 'go006', 'bnpc2308808', 2308808, '-325.795410', '11.581550', '623.895630', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144696, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(192, 'go006', 'bnpc2308809', 2308809, '-333.211304', '11.428960', '605.065918', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145234, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(192, 'go006', 'bnpc2308811', 2308811, '-314.290100', '11.306890', '604.882813', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144962, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(192, 'go006', 'bnpc2308812', 2308812, '-302.510101', '16.006670', '74.845451', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109506, 1, 0, 0, 0, 8, 30065, 0, 0, 0), +(192, 'go006', 'bnpc2308813', 2308813, '-305.806091', '17.837749', '80.064034', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109240, 1, 0, 0, 0, 8, 30072, 0, 0, 0), +(192, 'go006', 'bnpc2308814', 2308814, '-302.204987', '16.159260', '76.035652', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108974, 1, 0, 0, 0, 8, 30079, 0, 0, 0), +(192, 'go006', 'bnpc2308815', 2308815, '-306.242096', '16.501289', '63.830650', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108702, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(192, 'go006', 'bnpc2308816', 2308816, '-295.566986', '17.347191', '79.688187', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108418, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(192, 'go006', 'bnpc2308817', 2308817, '73.624763', '7.705750', '-111.894501', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83570, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(192, 'go006', 'bnpc2308818', 2308818, '74.906487', '7.766785', '-112.382797', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83304, 1, 0, 0, 0, 0, 30074, 0, 0, 0), +(192, 'go006', 'bnpc2308819', 2308819, '68.253563', '7.766795', '-107.438797', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83038, 1, 0, 0, 0, 0, 30081, 0, 0, 0), +(192, 'go006', 'bnpc2308820', 2308820, '72.922729', '7.614197', '-102.708603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82766, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(192, 'go006', 'bnpc2308822', 2308822, '80.979607', '7.614197', '-109.636101', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82488, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(192, 'go006', 'bnpc2310066', 2310066, '447.442291', '0.685165', '-106.462196', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82168, 1, 0, 0, 0, 5, 30073, 0, 0, 0), +(192, 'go006', 'bnpc2310068', 2310068, '439.536102', '-0.228932', '-82.414017', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71802, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(192, 'go006', 'bnpc2310072', 2310072, '447.196014', '-0.473083', '-64.896667', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81896, 1, 0, 0, 0, 5, 30079, 0, 0, 0), +(192, 'go006', 'bnpc2310073', 2310073, '448.172607', '-0.473083', '-65.140808', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75072, 1, 0, 0, 0, 5, 30077, 0, 0, 0), +(192, 'go006', 'bnpc2310077', 2310077, '606.902283', '21.846050', '94.322968', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310079', 2310079, '628.601990', '21.846140', '96.549973', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310080', 2310080, '634.544983', '21.846140', '87.894997', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310081', 2310081, '632.357971', '21.846130', '64.279701', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56692, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310082', 2310082, '626.666382', '21.845909', '61.769680', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56420, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310083', 2310083, '607.055603', '21.845909', '87.877663', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56148, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310084', 2310084, '607.202271', '21.845900', '69.260597', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55876, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310086', 2310086, '647.131470', '21.845940', '74.024300', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55604, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310087', 2310087, '631.244385', '21.845980', '119.611702', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310088', 2310088, '589.967102', '21.846029', '111.639000', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310106', 2310106, '62.454399', '22.173260', '-183.847000', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54504, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310110', 2310110, '11.996420', '22.107401', '-194.509094', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54232, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310121', 2310121, '43.552151', '31.746559', '-242.757904', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310129', 2310129, '80.701881', '31.247450', '-236.730392', 77, 0, 0, 0, 1, 6, 0, 0, 74, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310142', 2310142, '1.488476', '42.615070', '-238.873703', 85, 0, 0, 0, 1, 6, 0, 0, 81, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310155', 2310155, '14.401670', '41.170448', '-236.977097', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310157', 2310157, '13.745920', '41.247570', '-234.937393', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310158', 2310158, '26.641451', '40.972401', '-238.464600', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52606, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310159', 2310159, '23.036869', '41.356541', '-231.651596', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310160', 2310160, '34.532631', '34.329281', '-248.540298', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310161', 2310161, '18.166571', '40.736420', '-243.886398', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310162', 2310162, '36.185360', '34.339809', '-251.152893', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51518, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310163', 2310163, '32.022099', '35.938412', '-251.996597', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310164', 2310164, '2.683093', '41.323040', '-231.439301', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50974, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310165', 2310165, '2.481253', '41.289459', '-247.178207', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310166', 2310166, '3.023275', '41.244370', '-229.524307', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310168', 2310168, '26.339149', '41.310089', '-228.982193', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310169', 2310169, '43.691368', '23.807100', '-197.954498', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49886, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310170', 2310170, '47.955181', '23.796989', '-201.803207', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49614, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310171', 2310171, '27.500080', '23.900030', '-176.426407', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310173', 2310173, '8.713860', '24.977810', '-183.468903', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310174', 2310174, '25.766741', '25.453140', '-197.692993', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310175', 2310175, '21.326250', '25.217710', '-213.513397', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310176', 2310176, '56.209671', '30.207701', '-208.221603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310177', 2310177, '50.222309', '30.207741', '-208.816299', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310178', 2310178, '55.211819', '31.096901', '-223.299698', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310179', 2310179, '44.478668', '30.061560', '-213.305893', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47426, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310180', 2310180, '27.629330', '25.414169', '-203.556198', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47154, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310181', 2310181, '11.799320', '24.994440', '-208.841293', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310182', 2310182, '57.392250', '31.250860', '-237.443100', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310183', 2310183, '56.381592', '31.081989', '-222.324799', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310184', 2310184, '41.846550', '31.327400', '-233.639603', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310185', 2310185, '49.764519', '31.322470', '-239.490097', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310186', 2310186, '45.229160', '30.849199', '-225.986694', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310187', 2310187, '54.603119', '30.526270', '-215.684494', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310188', 2310188, '26.807720', '25.469440', '-208.795700', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310191', 2310191, '53.416069', '23.647209', '-198.466995', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310192', 2310192, '16.458969', '23.952860', '-182.981705', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310193', 2310193, '34.354580', '23.728510', '-188.906204', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310194', 2310194, '24.826321', '38.422710', '-248.892502', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310195', 2310195, '19.778610', '41.225639', '-235.194595', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2310196', 2310196, '10.671480', '41.230179', '-245.656906', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2313233', 2313233, '320.515686', '2.215992', '-18.509239', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81726, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(192, 'go006', 'bnpc2313234', 2313234, '320.698792', '2.227228', '-15.091220', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81454, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(192, 'go006', 'bnpc2313235', 2313235, '318.658691', '2.299638', '-15.389510', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81182, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(192, 'go006', 'bnpc2313237', 2313237, '303.089905', '1.571632', '-19.974110', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80910, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(192, 'go006', 'bnpc2313238', 2313238, '331.471710', '1.907331', '-17.807329', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80638, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(192, 'go006', 'bnpc2320820', 2320820, '241.483994', '17.276871', '-145.913101', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80354, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2320821', 2320821, '252.963196', '12.221980', '-153.075394', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80082, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2320822', 2320822, '246.929703', '9.238781', '-175.852005', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79810, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2320826', 2320826, '292.604004', '10.691710', '-162.803802', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79538, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2320827', 2320827, '290.235687', '9.507468', '-185.479797', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79266, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2320828', 2320828, '295.598389', '11.637060', '-160.074707', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78994, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2320830', 2320830, '279.377411', '8.641194', '-170.115997', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78722, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2320832', 2320832, '250.518402', '10.279540', '-169.884796', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78450, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2351462', 2351462, '48.281940', '25.165770', '125.730797', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2351466', 2351466, '33.028351', '19.801689', '204.600204', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2351468', 2351468, '17.664570', '21.473511', '187.304001', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2351469', 2351469, '15.638560', '21.324190', '188.309006', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2351473', 2351473, '48.142170', '19.912979', '204.211395', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125142, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc2351480', 2351480, '31.650410', '24.598419', '125.582100', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc2763397', 2763397, '318.018890', '0.478852', '12.307590', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78190, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(192, 'go006', 'bnpc2763398', 2763398, '317.199188', '0.290855', '13.417520', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77918, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(192, 'go006', 'bnpc2763399', 2763399, '313.945190', '0.195134', '8.234367', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77646, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(192, 'go006', 'bnpc2763400', 2763400, '289.082001', '0.747620', '16.617001', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77374, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(192, 'go006', 'bnpc2763402', 2763402, '292.225494', '0.411926', '13.809330', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77102, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(192, 'go006', 'bnpc3739171', 3739171, '-272.839386', '22.280479', '-182.574203', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104362, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(192, 'go006', 'bnpc3739176', 3739176, '-271.384399', '22.233410', '-181.710205', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104090, 1, 0, 0, 0, 0, 30060, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(192, 'go006', 'bnpc3739178', 3739178, '-270.221985', '22.171329', '-172.442307', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103818, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(192, 'go006', 'bnpc3739189', 3739189, '-286.671295', '22.598570', '-178.942596', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103546, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(192, 'go006', 'bnpc3739195', 3739195, '-285.084290', '23.636169', '-193.682800', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103274, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(192, 'go006', 'bnpc3739197', 3739197, '-302.441498', '24.263420', '-202.146301', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103002, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(192, 'go006', 'bnpc3739198', 3739198, '-301.991302', '24.106640', '-200.335693', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102730, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(192, 'go006', 'bnpc3739200', 3739200, '-307.179413', '23.056339', '-191.149796', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102458, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(192, 'go006', 'bnpc3739223', 3739223, '-306.875397', '9.692472', '-137.887207', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3739241', 3739241, '-102.205200', '2.027415', '-36.144821', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3739247', 3739247, '-101.905197', '2.027430', '-31.359751', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3739298', 3739298, '-64.469414', '0.015212', '63.034969', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97030, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3739305', 3739305, '-142.689407', '0.030637', '161.735504', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96758, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3739308', 3739308, '-173.166397', '0.030539', '149.329895', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96486, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3739310', 3739310, '-183.418106', '0.030539', '144.544296', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96214, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3739417', 3739417, '151.785294', '4.236084', '20.237249', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3739423', 3739423, '152.085297', '4.236084', '15.201380', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3740607', 3740607, '-135.541595', '-0.100001', '467.027588', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138730, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3740609', 3740609, '-138.985397', '-0.100003', '461.260590', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138458, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3740611', 3740611, '-176.964996', '-0.100092', '482.156586', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138186, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3740613', 3740613, '-197.264099', '-0.100169', '480.240295', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3740615', 3740615, '-183.840607', '-0.100061', '448.882111', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3740617', 3740617, '-178.071396', '-0.100048', '447.029205', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3740619', 3740619, '-182.900406', '-0.100169', '476.189514', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3740632', 3740632, '-358.518585', '1.158285', '453.619598', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc3740634', 3740634, '-362.075012', '0.968366', '458.185486', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc3740635', 3740635, '-336.208405', '-0.100018', '460.011810', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc3740636', 3740636, '-362.780701', '1.532029', '454.955414', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc3740637', 3740637, '-338.199493', '-0.100187', '433.127808', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc3740638', 3740638, '-334.106689', '-0.100003', '437.684113', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc3740639', 3740639, '-345.628906', '-0.100008', '453.583313', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc3740640', 3740640, '-333.997498', '-0.100017', '457.273987', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc3740644', 3740644, '-79.519012', '-0.100045', '377.072388', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3740645', 3740645, '-20.504120', '-0.106860', '365.133087', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3740646', 3740646, '-52.782280', '-0.106860', '324.177887', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3740647', 3740647, '-59.319771', '-0.100007', '331.135590', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3740648', 3740648, '-4.964393', '-0.100007', '339.615601', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3740649', 3740649, '-18.177540', '-0.100615', '322.254089', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3740651', 3740651, '-42.146980', '-0.100005', '396.759399', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3740823', 3740823, '52.433182', '8.970453', '290.451111', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124604, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3740824', 3740824, '34.042301', '6.188347', '297.895691', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123244, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(192, 'go006', 'bnpc3740991', 3740991, '83.869347', '23.640280', '197.587494', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc3740992', 3740992, '83.668243', '23.758640', '201.089493', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc3740993', 3740993, '92.752083', '22.594500', '147.751404', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc3740994', 3740994, '69.937286', '22.357740', '174.791397', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc3870245', 3870245, '-201.828995', '8.309389', '-77.948196', 584, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27764, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(192, 'go006', 'bnpc3870249', 3870249, '-144.314499', '6.941079', '-45.049019', 585, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27498, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(192, 'go006', 'bnpc3870258', 3870258, '-169.371506', '8.963833', '-15.339670', 586, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27232, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(192, 'go006', 'bnpc3870312', 3870312, '213.284805', '9.756709', '-77.238258', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26966, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(192, 'go006', 'bnpc3870333', 3870333, '150.590805', '8.698524', '-47.601891', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26700, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(192, 'go006', 'bnpc3870347', 3870347, '213.854004', '6.490500', '-15.706390', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 36, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26434, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(192, 'go006', 'bnpc3870372', 3870372, '-149.487900', '0.750592', '229.198502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26156, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(192, 'go006', 'bnpc3870375', 3870375, '-161.511307', '0.485998', '346.191010', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(192, 'go006', 'bnpc3870382', 3870382, '-231.008896', '0.795779', '399.749115', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25606, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(192, 'go006', 'bnpc3870387', 3870387, '-228.300903', '0.984585', '517.848816', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25334, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(192, 'go006', 'bnpc3878991', 3878991, '400.476288', '4.241707', '-40.787842', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70986, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(192, 'go006', 'bnpc3879006', 3879006, '442.368011', '0.843470', '-27.738720', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70714, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(192, 'go006', 'bnpc3879018', 3879018, '447.624695', '0.635267', '-105.764603', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70442, 1, 0, 0, 0, 5, 30074, 0, 0, 0), +(192, 'go006', 'bnpc3879051', 3879051, '431.967712', '-0.747742', '-65.507080', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70176, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(192, 'go006', 'bnpc3879065', 3879065, '356.771088', '2.792354', '1.937849', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69898, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(192, 'go006', 'bnpc3879339', 3879339, '-343.618011', '11.367920', '624.658508', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(192, 'go006', 'bnpc3879341', 3879341, '-324.269501', '11.551030', '603.662109', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136536, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(192, 'go006', 'bnpc3879343', 3879343, '-320.241089', '11.612060', '616.174377', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136288, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(192, 'go006', 'bnpc3879346', 3879346, '-319.234009', '11.551030', '602.227722', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136016, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(192, 'go006', 'bnpc3879348', 3879348, '-324.879913', '11.551030', '603.082275', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135744, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(192, 'go006', 'bnpc3879351', 3879351, '-324.330505', '11.520510', '609.063782', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135448, 1, 0, 0, 0, 41, 0, 0, 0, 0), +(192, 'go006', 'bnpc3879352', 3879352, '-342.671906', '20.065571', '624.475403', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135176, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(192, 'go006', 'bnpc3879353', 3879353, '-343.556885', '20.065571', '624.811096', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134928, 1, 0, 0, 0, 41, 30073, 0, 0, 0), +(192, 'go006', 'bnpc3879398', 3879398, '-335.561188', '11.520510', '620.843811', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134626, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(192, 'go006', 'bnpc3884509', 3884509, '125.859001', '4.166452', '44.953560', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc3917184', 3917184, '-60.455681', '3.894856', '-39.952641', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc3939726', 3939726, '436.760712', '0.574082', '-105.544098', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69360, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(192, 'go006', 'bnpc4329476', 4329476, '-188.220093', '9.170593', '94.010742', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95676, 6, 1, 0, 0, 0, 30246, 4329477, 0, 0), +(192, 'go006', 'bnpc4333062', 4333062, '-159.767395', '3.700634', '137.279205', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94652, 6, 1, 0, 0, 0, 30246, 4333061, 0, 0), +(192, 'go006', 'bnpc4621322', 4621322, '28.233730', '25.315451', '115.697998', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28790, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(192, 'go006', 'bnpc4621339', 4621339, '-337.105499', '20.119471', '615.520508', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28518, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(194, 'w1b2', 'bnpc4894012', 4894012, '76.334343', '78.539719', '270.316010', 3164, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 15548, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(194, 'w1b2', 'bnpc4894013', 4894013, '63.802368', '73.063782', '255.980606', 3171, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 1160, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(194, 'w1b2', 'bnpc4894014', 4894014, '68.774292', '73.977997', '257.573914', 3172, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 894, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(194, 'w1b2', 'bnpc4894015', 4894015, '67.922241', '75.149597', '264.556091', 3173, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(194, 'w1b2', 'bnpc4894016', 4894016, '73.563263', '75.876534', '261.894714', 3174, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 362, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(194, 'w1b2', 'bnpc4894017', 4894017, '74.664429', '74.030830', '253.839005', 3145, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 15282, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(194, 'w1b2', 'bnpc4894022', 4894022, '67.059158', '78.708313', '271.921112', 2010, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 15016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(194, 'w1b2', 'bnpc4894023', 4894023, '72.740196', '79.628868', '273.961395', 2011, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 14750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(194, 'w1b2', 'bnpc4894024', 4894024, '69.950539', '80.146248', '276.701385', 2012, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 14484, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(194, 'w1b2', 'bnpc4894025', 4894025, '66.335327', '76.200653', '269.042297', 2014, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 14218, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(194, 'w1b2', 'bnpc4894026', 4894026, '65.457687', '79.523811', '275.495392', 2015, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 13952, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(194, 'w1b2', 'bnpc4894027', 4894027, '71.570251', '77.188499', '266.236786', 2184, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 13686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(194, 'w1b2', 'bnpc4894028', 4894028, '68.869003', '76.325577', '263.640594', 3170, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 13420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(194, 'w1b2', 'bnpc4895912', 4895912, '0.122102', '-4.962998', '-14.686910', 1697, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, '0.000000', '1.000000', 13082, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(195, 'w1b3', 'bnpc4895915', 4895915, '-0.285680', '-53.235001', '-174.085693', 386, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, '0.000000', '1.000000', 1316, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(196, 'w1b4', 'bnpc4895917', 4895917, '449.897400', '0.000000', '-12.465150', 2021, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, '0.000000', '1.000000', 1316, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc3292760', 3292760, '15.000000', '0.000000', '0.000000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20954, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc3640608', 3640608, '21.000000', '0.000000', '0.000000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20682, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc3640609', 3640609, '14.850000', '0.000000', '14.850000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20410, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc3640610', 3640610, '0.000000', '0.000000', '21.000000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20138, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc3640611', 3640611, '-14.850000', '0.000000', '14.850000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc3640612', 3640612, '-21.000000', '0.000000', '0.000000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19594, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc3640613', 3640613, '-14.850000', '0.000000', '-14.850000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19322, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc3640614', 3640614, '0.000000', '0.000000', '-21.000000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19050, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc3640615', 3640615, '14.850000', '0.000000', '-14.850000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc3668270', 3668270, '0.000000', '0.000000', '10.000000', 210, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18512, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc3668271', 3668271, '0.000000', '0.000000', '-10.000000', 210, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18240, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4082426', 4082426, '36.000000', '0.000000', '0.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17974, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4126276', 4126276, '15.000000', '0.000000', '0.000000', 207, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 20, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4126281', 4126281, '0.000000', '0.000000', '0.000000', 208, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4126284', 4126284, '36.299999', '0.000000', '0.000000', 401, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4265974', 4265974, '15.000000', '0.000000', '0.000000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17000, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4265977', 4265977, '21.000000', '0.000000', '0.300000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4265978', 4265978, '14.850000', '0.000000', '14.850000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4265979', 4265979, '0.000000', '0.000000', '21.000000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4265980', 4265980, '-14.850000', '0.000000', '14.850000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4265981', 4265981, '-21.000000', '0.000000', '0.000000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4265982', 4265982, '-14.850000', '0.000000', '-14.850000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4265983', 4265983, '0.000000', '0.000000', '-21.000000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4265984', 4265984, '14.850000', '0.000000', '-14.850000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4265990', 4265990, '0.000000', '0.000000', '-13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14558, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4265991', 4265991, '13.000000', '0.000000', '0.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4265992', 4265992, '36.000000', '0.000000', '0.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14002, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4266579', 4266579, '10.000000', '0.000000', '0.000000', 210, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17696, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4266580', 4266580, '-10.000000', '0.000000', '0.000000', 210, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17424, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4266590', 4266590, '0.000000', '0.000000', '13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13470, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4266591', 4266591, '-13.000000', '0.000000', '0.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13198, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4404192', 4404192, '0.778013', '0.000000', '1.057422', 2312, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13748, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4404193', 4404193, '0.000000', '0.000000', '-19.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12926, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4404194', 4404194, '14.000000', '0.000000', '-13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4404196', 4404196, '19.000000', '0.000000', '0.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12382, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4404199', 4404199, '14.000000', '0.000000', '13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4404200', 4404200, '0.000000', '0.000000', '19.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4404202', 4404202, '-14.000000', '0.000000', '13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4404204', 4404204, '-19.000000', '0.000000', '0.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4404206', 4404206, '-14.000000', '0.000000', '-13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(202, 'w1fa', 'bnpc4404209', 4404209, '0.000000', '0.000000', '0.000000', 2331, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10762, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4039257', 4039257, '0.000000', '0.000000', '-16.000000', 246, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27088, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4145873', 4145873, '0.000000', '0.000000', '-16.000000', 247, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26090, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4145879', 4145879, '0.000000', '0.000000', '-20.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4145900', 4145900, '0.000000', '-0.000013', '-20.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4249552', 4249552, '0.000000', '0.000000', '-15.000000', 1444, 0, 0, 0, 0, 6, 0, 0, 1804, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256008', 4256008, '0.000000', '0.000000', '-16.000000', 248, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17124, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256118', 4256118, '0.000000', '-0.000024', '-20.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256180', 4256180, '0.000000', '0.000000', '-15.000000', 1506, 0, 0, 0, 0, 6, 0, 0, 1804, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16586, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256192', 4256192, '0.000000', '0.000000', '-15.000000', 1505, 0, 0, 0, 0, 6, 0, 0, 1804, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256198', 4256198, '0.000000', '0.000000', '-14.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256208', 4256208, '9.899000', '0.000000', '-9.899000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25014, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256211', 4256211, '14.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24742, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256213', 4256213, '9.899000', '0.000000', '9.899000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24470, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256214', 4256214, '0.000000', '0.000000', '14.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24198, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256215', 4256215, '-9.899000', '0.000000', '9.899000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23926, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256217', 4256217, '-14.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256218', 4256218, '-9.899000', '0.000000', '-9.899000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23382, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256219', 4256219, '0.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256220', 4256220, '0.000000', '0.000000', '-12.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256224', 4256224, '8.485000', '0.000000', '-8.485000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256226', 4256226, '12.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256228', 4256228, '8.485000', '0.000000', '8.485000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256229', 4256229, '0.000000', '0.000000', '12.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256231', 4256231, '-8.485000', '0.000000', '8.485000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256232', 4256232, '-12.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4256233', 4256233, '-8.485000', '0.000000', '-8.485000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20934, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4292876', 4292876, '0.000000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14144, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4292877', 4292877, '0.000000', '0.000000', '-12.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16320, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4292878', 4292878, '8.485000', '0.000000', '-8.485000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16048, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4292879', 4292879, '12.000000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15776, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4292880', 4292880, '8.485000', '0.000000', '8.485000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15504, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4292881', 4292881, '0.000000', '0.000000', '12.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15232, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4292882', 4292882, '-8.485000', '0.000000', '8.485000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4292883', 4292883, '-12.000000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14688, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4292884', 4292884, '-8.485000', '0.000022', '-8.485000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14416, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4317325', 4317325, '0.000000', '0.000000', '-6.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20662, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4317326', 4317326, '6.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20390, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4317327', 4317327, '0.000000', '0.000000', '6.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4317328', 4317328, '-6.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19846, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4317331', 4317331, '0.000000', '0.000000', '-4.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4317332', 4317332, '4.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4317333', 4317333, '0.000000', '0.000000', '4.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4317334', 4317334, '-4.000000', '0.000014', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4317336', 4317336, '0.000000', '0.000000', '-10.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4317357', 4317357, '10.000000', '-0.000001', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4317359', 4317359, '0.000000', '0.000000', '10.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4317361', 4317361, '-10.000000', '0.000014', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378613', 4378613, '2.000000', '0.000000', '-3.464100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13872, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378614', 4378614, '2.000000', '0.000000', '3.464100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13600, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378615', 4378615, '-4.000000', '0.000000', '0.300000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13328, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378616', 4378616, '3.764100', '0.000000', '-2.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13056, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378617', 4378617, '0.000000', '0.000000', '4.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12784, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378618', 4378618, '-3.764100', '0.000000', '-2.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12512, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378619', 4378619, '4.000000', '-0.000002', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12240, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378620', 4378620, '-2.000000', '0.000000', '3.764100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11968, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378621', 4378621, '-2.000000', '0.000000', '-3.764100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11696, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378622', 4378622, '0.000000', '-0.000003', '-4.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11424, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378623', 4378623, '3.764100', '0.000000', '2.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11152, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378624', 4378624, '-3.764100', '0.000000', '2.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10880, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378625', 4378625, '0.000000', '0.000000', '-11.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378626', 4378626, '9.526200', '-0.000046', '-5.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378627', 4378627, '9.526200', '0.000000', '5.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10064, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378628', 4378628, '0.000000', '0.000000', '11.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9792, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378629', 4378629, '-9.526200', '0.000000', '5.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9520, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378630', 4378630, '-9.526200', '0.000000', '-5.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9248, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378631', 4378631, '0.000000', '0.000000', '-7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8976, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378632', 4378632, '7.778100', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8704, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378633', 4378633, '0.000000', '0.000000', '7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8432, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378634', 4378634, '-7.778100', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8160, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378635', 4378635, '0.000000', '0.000000', '-8.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7888, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378636', 4378636, '5.750000', '0.000000', '-5.750000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7616, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378638', 4378638, '8.500000', '-0.000002', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378639', 4378639, '5.750000', '-0.000002', '5.750000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7072, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378643', 4378643, '0.000000', '-0.000003', '8.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378644', 4378644, '-5.750000', '-0.000004', '5.750000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378645', 4378645, '-8.500000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378646', 4378646, '-5.750000', '0.000014', '-5.750000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378652', 4378652, '-8.000000', '0.000000', '0.000000', 2290, 0, 0, 0, 0, 6, 0, 0, 2325, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4378653', 4378653, '8.000000', '0.000000', '0.000000', 2290, 0, 0, 0, 0, 6, 0, 0, 2325, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4388877', 4388877, '0.000000', '0.000000', '-11.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4388878', 4388878, '7.778100', '0.000000', '-7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4388879', 4388879, '11.000000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4388880', 4388880, '7.778100', '0.000000', '7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4388881', 4388881, '0.000000', '0.000000', '11.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4388882', 4388882, '-7.778100', '0.000000', '7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4388883', 4388883, '-11.000000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3536, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(206, 's1fa', 'bnpc4388884', 4388884, '-7.778100', '0.000024', '-7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4550248', 4550248, '3.039408', '0.000000', '-6.313390', 2286, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 3004, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4553208', 4553208, '0.000000', '0.000000', '-16.000000', 2666, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2386, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4553209', 4553209, '0.300000', '-0.000013', '-20.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2598, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(206, 's1fa', 'bnpc4553210', 4553210, '0.300000', '0.000000', '-15.000000', 2668, 0, 0, 0, 0, 6, 0, 0, 1804, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4405787', 4405787, '0.000000', '0.000000', '-10.000000', 221, 0, 0, 0, 8, 6, 0, 0, 718, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19580, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4405789', 4405789, '-15.000000', '0.000000', '13.000000', 222, 0, 0, 0, 8, 6, 0, 0, 719, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19314, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4405791', 4405791, '-21.000000', '0.000000', '0.000000', 223, 0, 0, 0, 8, 6, 0, 0, 720, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19048, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4405792', 4405792, '0.000000', '0.000000', '-21.000000', 224, 0, 0, 0, 8, 6, 0, 0, 721, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18782, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4405794', 4405794, '16.000000', '0.000000', '0.000000', 225, 0, 0, 0, 8, 6, 0, 0, 722, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18516, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4405795', 4405795, '0.000000', '0.000000', '0.000000', 226, 0, 0, 0, 8, 6, 0, 0, 723, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18250, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4405797', 4405797, '0.000000', '-0.000003', '21.000000', 227, 0, 0, 0, 8, 6, 0, 0, 724, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17984, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4405798', 4405798, '0.000000', '0.000000', '0.000000', 228, 0, 0, 0, 8, 6, 0, 0, 725, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17718, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4406218', 4406218, '-0.121937', '0.000000', '3.948129', 2946, 0, 0, 0, 8, 6, 0, 0, 721, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 17186, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4440620', 4440620, '2.148135', '0.000000', '3.522915', 2286, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17452, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4493420', 4493420, '-1.239345', '0.000000', '2.318576', 2946, 0, 0, 0, 8, 6, 0, 0, 722, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16914, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4493421', 4493421, '0.559351', '0.000000', '2.318576', 2946, 0, 0, 0, 8, 6, 0, 0, 725, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16642, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4620975', 4620975, '-2.000000', '0.000000', '-3.000000', 229, 0, 0, 0, 0, 6, 0, 0, 718, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16260, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4620976', 4620976, '2.000000', '0.000000', '3.000000', 230, 0, 0, 0, 0, 6, 0, 0, 719, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15994, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4620977', 4620977, '2.000000', '0.000000', '-3.000000', 231, 0, 0, 0, 0, 6, 0, 0, 720, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15728, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4620978', 4620978, '-4.000000', '0.000000', '0.000000', 232, 0, 0, 0, 0, 6, 0, 0, 721, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15462, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4620979', 4620979, '4.000000', '0.000000', '0.000000', 233, 0, 0, 0, 0, 6, 0, 0, 722, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15196, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4620980', 4620980, '-2.000000', '0.000000', '3.000000', 234, 0, 0, 0, 0, 6, 0, 0, 723, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14930, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4620981', 4620981, '0.000000', '0.000000', '4.000000', 235, 0, 0, 0, 0, 6, 0, 0, 724, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14664, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4620982', 4620982, '0.000000', '0.000000', '-8.000000', 236, 0, 0, 0, 0, 6, 0, 0, 2752, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14398, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4620983', 4620983, '8.853262', '0.000000', '-4.575181', 2946, 0, 0, 0, 0, 6, 0, 0, 720, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14078, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4620984', 4620984, '8.853262', '0.000000', '-0.780932', 2946, 0, 0, 0, 0, 6, 0, 0, 721, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13806, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4620985', 4620985, '8.853262', '0.000000', '2.281526', 2946, 0, 0, 0, 0, 6, 0, 0, 722, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13534, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(207, 'f1fa', 'bnpc4660347', 4660347, '9.008945', '0.000000', '4.349893', 2947, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13316, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4246138', 4246138, '-4.867000', '-1.838936', '5.020000', 237, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4246139', 4246139, '7.907000', '-1.805731', '6.310000', 237, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34312, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4246140', 4246140, '-6.369000', '-1.830306', '-6.360000', 237, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34040, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4246141', 4246141, '5.828000', '-1.855612', '-5.600000', 237, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4246177', 4246177, '1.144171', '-1.945755', '-18.000000', 239, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33502, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4246290', 4246290, '-18.705700', '-0.947082', '-28.606661', 238, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33236, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4246291', 4246291, '-22.962111', '-0.969582', '-28.392599', 688, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32970, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4246418', 4246418, '-18.315870', '-1.038592', '-26.613710', 1571, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31240, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4246419', 4246419, '-21.552139', '-0.780132', '-26.515720', 1570, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32704, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261604', 4261604, '-4.867000', '-1.838900', '5.020000', 240, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32322, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261605', 4261605, '7.907000', '-1.805700', '6.310000', 240, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32050, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261606', 4261606, '-6.369000', '-1.830300', '-6.360000', 240, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261607', 4261607, '5.828000', '-1.855600', '-5.600000', 240, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31506, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261623', 4261623, '1.144200', '-1.945800', '-18.000000', 242, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29378, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261625', 4261625, '-18.405701', '-0.969582', '-28.306660', 241, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30974, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261626', 4261626, '-22.662109', '-0.996960', '-28.092600', 1534, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30708, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261627', 4261627, '-21.252140', '-0.817303', '-26.215719', 1572, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261629', 4261629, '-21.414070', '1.523027', '-26.817900', 1535, 0, 0, 0, 0, 6, 0, 0, 1648, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30176, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261631', 4261631, '-24.530930', '1.801132', '-24.986460', 1566, 0, 0, 0, 0, 6, 0, 0, 1646, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29910, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261632', 4261632, '-23.328560', '1.094606', '-23.104679', 1567, 0, 0, 0, 0, 6, 0, 0, 1645, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29644, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261645', 4261645, '-7.000000', '-1.871653', '7.000000', 243, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261646', 4261646, '7.000000', '-1.823288', '7.000000', 243, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261647', 4261647, '-7.000000', '-1.825691', '-7.000000', 243, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261648', 4261648, '7.000000', '-1.851377', '-7.000000', 243, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261649', 4261649, '-18.015869', '-1.174013', '-26.313709', 1573, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261650', 4261650, '0.000000', '-2.033095', '-18.000000', 245, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27636, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261651', 4261651, '-18.105700', '-0.992081', '-28.006660', 244, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27370, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261652', 4261652, '-22.362110', '-1.034364', '-27.792601', 1536, 0, 0, 0, 0, 6, 0, 0, 2091, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27104, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261653', 4261653, '-20.952141', '-0.853879', '-25.915720', 1574, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261654', 4261654, '-21.114071', '1.387607', '-26.517900', 1537, 0, 0, 0, 0, 6, 0, 0, 1648, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26572, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261655', 4261655, '-24.230930', '1.663378', '-24.686460', 1568, 0, 0, 0, 0, 6, 0, 0, 1646, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26306, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4261656', 4261656, '-23.028561', '0.956851', '-22.804680', 1569, 0, 0, 0, 0, 6, 0, 0, 1645, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26040, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4406566', 4406566, '0.033980', '-1.803072', '-0.779799', 434, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25774, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4527499', 4527499, '0.947333', '-1.798869', '0.131422', 434, 0, 0, 0, 0, 6, 0, 0, 1646, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25502, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(208, 'r1fa', 'bnpc4527500', 4527500, '-0.905001', '-1.798869', '0.131422', 434, 0, 0, 0, 0, 6, 0, 0, 1645, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25230, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929298', 3929298, '2.578727', '46.242130', '89.066856', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106598, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929300', 3929300, '154.466995', '46.291969', '133.531601', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106870, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929301', 3929301, '-32.773281', '40.774231', '67.215347', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62568, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929303', 3929303, '-28.213820', '41.179878', '64.173943', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62296, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929305', 3929305, '8.662592', '42.689850', '45.686710', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62024, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929306', 3929306, '13.183170', '42.815102', '41.155972', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61752, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929307', 3929307, '12.633850', '42.762321', '45.031761', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61480, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929308', 3929308, '83.202133', '43.374279', '33.127289', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61208, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929310', 3929310, '107.530296', '44.219631', '32.892910', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60936, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929311', 3929311, '110.185303', '44.303749', '30.939760', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60664, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929313', 3929313, '-41.367249', '44.463268', '115.983803', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134868, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929315', 3929315, '-64.483994', '44.221882', '108.658401', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 0, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134596, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929319', 3929319, '-62.882469', '44.443130', '110.643097', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929320', 3929320, '-67.124481', '43.839500', '114.061096', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134052, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929322', 3929322, '-84.184067', '44.665230', '140.856003', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133780, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929323', 3929323, '-86.198257', '45.235828', '143.511002', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929326', 3929326, '-72.007370', '42.584850', '150.499695', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929327', 3929327, '9.933576', '43.348518', '109.513901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929330', 3929330, '-16.098310', '44.986568', '99.015739', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132692, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929331', 3929331, '-18.173540', '45.462231', '95.170471', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929332', 3929332, '5.935712', '46.903179', '76.340843', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929333', 3929333, '31.174129', '43.952351', '145.616806', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929334', 3929334, '39.963329', '44.737961', '148.119293', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131604, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929335', 3929335, '31.357241', '44.031109', '155.077393', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131332, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929336', 3929336, '38.651051', '44.626740', '146.440796', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929338', 3929338, '38.895199', '44.219131', '96.910004', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929339', 3929339, '42.160629', '44.387291', '96.482742', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130516, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929340', 3929340, '6.515503', '32.613819', '167.589798', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130244, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929342', 3929342, '-15.976240', '28.111290', '180.102203', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129972, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929343', 3929343, '-17.563181', '28.060829', '182.726700', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129700, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929344', 3929344, '-5.020265', '23.736271', '199.389603', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929345', 3929345, '-3.494363', '24.235390', '196.307297', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129156, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929346', 3929346, '-1.510690', '23.913940', '198.748703', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929347', 3929347, '17.227421', '29.147539', '192.309402', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128612, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929353', 3929353, '76.584961', '46.652691', '118.364098', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128340, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929355', 3929355, '100.907799', '48.208359', '64.560791', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128068, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929356', 3929356, '103.440804', '48.287861', '69.260620', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929357', 3929357, '97.886597', '48.162868', '66.422493', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127524, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929358', 3929358, '75.394783', '47.995930', '57.511230', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127252, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929359', 3929359, '72.770264', '48.021091', '55.741089', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126980, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929361', 3929361, '97.978149', '47.044201', '84.183960', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126708, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929362', 3929362, '133.287506', '48.588211', '77.775269', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126436, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929363', 3929363, '135.271103', '48.582859', '78.843384', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126164, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929364', 3929364, '134.172607', '48.281239', '57.785889', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125892, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929366', 3929366, '131.364899', '46.312809', '110.704102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125620, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929367', 3929367, '134.965897', '46.384861', '111.589203', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125348, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929369', 3929369, '133.928497', '46.630039', '108.415298', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125076, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929370', 3929370, '160.601196', '47.107681', '107.804901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124804, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929371', 3929371, '158.648102', '47.043930', '108.811996', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124532, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929373', 3929373, '87.449463', '46.439480', '122.392601', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124260, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929374', 3929374, '89.402588', '46.291409', '119.066002', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123988, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929379', 3929379, '79.026489', '46.295200', '172.747299', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123722, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929381', 3929381, '55.313839', '47.580700', '188.036896', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123450, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929382', 3929382, '59.983150', '48.833561', '191.790604', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123178, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929383', 3929383, '55.496948', '49.485981', '193.255493', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122906, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929384', 3929384, '40.207520', '50.527809', '210.284500', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122634, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929385', 3929385, '37.171730', '50.727009', '213.792206', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122362, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929386', 3929386, '68.163307', '56.521938', '225.312607', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122090, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929387', 3929387, '54.398369', '56.626060', '241.565506', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121818, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929388', 3929388, '72.589951', '56.790089', '227.695297', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121546, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929389', 3929389, '116.563599', '50.650009', '183.367706', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121274, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929390', 3929390, '120.317299', '49.333080', '176.928299', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121002, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929391', 3929391, '112.138496', '57.097969', '213.153198', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120730, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929392', 3929392, '127.885902', '49.931992', '177.782806', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120458, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929394', 3929394, '115.251297', '57.518108', '214.251801', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120186, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929396', 3929396, '125.779999', '52.105469', '187.182404', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119914, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929397', 3929397, '108.506798', '46.810520', '148.088699', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119642, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929398', 3929398, '105.393997', '46.639080', '146.959595', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119370, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929400', 3929400, '175.585602', '47.639019', '147.630997', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119098, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929401', 3929401, '183.975204', '48.843269', '153.229202', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118826, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929403', 3929403, '178.149002', '47.405022', '144.853806', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118554, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929404', 3929404, '186.666794', '55.711109', '189.380295', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118282, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929405', 3929405, '183.897797', '55.522209', '192.259796', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118010, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929406', 3929406, '188.514496', '58.364479', '196.141098', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117738, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929407', 3929407, '190.993103', '63.780270', '212.770905', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117466, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929408', 3929408, '167.906097', '54.582249', '207.555405', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117194, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929409', 3929409, '142.684006', '57.000031', '221.431396', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116922, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929410', 3929410, '137.517303', '57.770241', '224.725601', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116650, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929412', 3929412, '140.714096', '57.641670', '227.264099', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116378, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929413', 3929413, '147.277206', '57.573250', '230.267700', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116106, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929415', 3929415, '132.701004', '59.887051', '252.613098', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115834, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929416', 3929416, '155.349503', '60.722469', '262.394104', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115562, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929417', 3929417, '152.622498', '60.751789', '265.042389', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115290, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929420', 3929420, '54.698360', '61.151402', '279.140015', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115018, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929421', 3929421, '56.888519', '60.853931', '277.569885', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114746, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929423', 3929423, '74.967529', '46.674271', '133.257004', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107142, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929428', 3929428, '-79.240143', '44.199680', '141.771500', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114480, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929431', 3929431, '-49.668159', '44.146759', '101.335098', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114208, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929432', 3929432, '-5.630626', '46.383801', '88.914268', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113936, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929433', 3929433, '38.284840', '47.256828', '61.997360', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113664, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929435', 3929435, '37.766029', '44.173309', '103.105202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113392, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929438', 3929438, '33.798679', '44.230461', '150.377594', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113120, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929439', 3929439, '23.575130', '32.314270', '182.543701', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112848, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929440', 3929440, '24.704220', '32.888840', '184.801895', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112576, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929441', 3929441, '-7.156528', '28.523640', '176.836700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112304, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929442', 3929442, '8.926480', '28.079479', '213.183701', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112032, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929443', 3929443, '107.194603', '45.562160', '101.762497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111760, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929444', 3929444, '107.499802', '45.309570', '104.722702', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111488, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929445', 3929445, '96.330078', '47.994221', '51.621220', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111216, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929446', 3929446, '136.522293', '48.535961', '75.516853', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110944, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929489', 3929489, '104.234398', '46.884571', '152.330795', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110672, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929492', 3929492, '92.393311', '56.364761', '218.402298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929494', 3929494, '37.064091', '49.279091', '203.295898', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110128, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929495', 3929495, '86.381348', '47.170170', '181.353394', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109856, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929497', 3929497, '83.939819', '47.040508', '183.794907', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109584, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929498', 3929498, '91.314941', '60.775452', '256.840088', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109312, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929500', 3929500, '134.705704', '59.571301', '250.694107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109040, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929501', 3929501, '131.525299', '61.218529', '277.023590', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108768, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929502', 3929502, '200.545807', '49.630661', '148.869003', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108496, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929504', 3929504, '198.987793', '50.079350', '152.091995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108224, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929505', 3929505, '178.837997', '53.123459', '189.309799', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107952, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929506', 3929506, '181.171707', '59.001560', '223.100006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107680, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929507', 3929507, '126.924500', '58.802368', '223.399994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107408, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929728', 3929728, '57.677570', '57.037601', '-252.600006', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60392, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929730', 3929730, '16.799730', '54.286369', '-250.227097', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60120, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929731', 3929731, '21.166161', '54.789558', '-247.635101', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59848, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929733', 3929733, '-38.999229', '46.458340', '-213.513901', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59576, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929734', 3929734, '-72.817390', '45.500000', '-170.936401', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59304, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929735', 3929735, '-68.148132', '45.500000', '-172.858994', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59032, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929736', 3929736, '-70.620087', '45.500000', '-166.297607', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58760, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929737', 3929737, '-110.856796', '44.284451', '-131.487106', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58488, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929738', 3929738, '-101.976097', '45.015499', '-129.716995', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58216, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929740', 3929740, '-167.498306', '40.500000', '-61.966919', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57944, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929741', 3929741, '-167.193100', '40.500000', '-66.147888', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57672, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929742', 3929742, '-183.581406', '41.007771', '-109.056297', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929746', 3929746, '80.869362', '49.270599', '7.434502', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105496, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929747', 3929747, '29.012220', '49.028271', '-3.487470', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105224, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929748', 3929748, '77.311432', '49.709980', '3.491879', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104952, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929749', 3929749, '81.834106', '54.978149', '-65.232361', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104680, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929750', 3929750, '87.083130', '55.954830', '-70.298401', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104408, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929751', 3929751, '106.034897', '57.114498', '-51.468689', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104136, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929752', 3929752, '105.891502', '62.411079', '-101.484497', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103864, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929753', 3929753, '109.310799', '62.695950', '-97.230469', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103592, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929754', 3929754, '112.249298', '64.482712', '-105.898697', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103320, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929756', 3929756, '11.047700', '51.170399', '-56.780079', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103048, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929757', 3929757, '7.333039', '50.839249', '-59.004021', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102776, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929758', 3929758, '-9.942499', '48.132980', '-25.451969', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102504, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929759', 3929759, '-5.731009', '48.580139', '-23.376751', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102232, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929761', 3929761, '-0.174012', '53.131248', '-111.148903', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101960, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929762', 3929762, '-7.256910', '48.664841', '-31.555580', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101688, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929763', 3929763, '-0.610147', '46.842758', '24.196171', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101416, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929764', 3929764, '-16.474920', '49.226559', '-89.968887', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101144, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929765', 3929765, '-27.792070', '47.072651', '8.583298', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53810, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929767', 3929767, '76.915253', '51.330029', '-32.258850', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53538, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929769', 3929769, '-43.220982', '46.402618', '25.789110', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100872, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929770', 3929770, '3.832037', '53.483231', '-114.631203', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100600, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929771', 3929771, '12.344500', '52.316029', '-102.067596', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100328, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929772', 3929772, '-38.788712', '46.775139', '22.066339', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100056, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929773', 3929773, '-37.919960', '46.459820', '29.848379', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99784, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929774', 3929774, '-80.033630', '42.496342', '35.263550', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99512, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929776', 3929776, '-91.857826', '43.085781', '-23.419170', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99240, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929777', 3929777, '-87.681976', '42.651001', '-20.729090', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98968, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(214, 'go001', 'bnpc3929778', 3929778, '-153.286896', '41.687149', '-29.617990', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98696, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929779', 3929779, '-149.248505', '42.913052', '-34.195511', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98424, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929780', 3929780, '-146.114700', '41.510841', '-23.279819', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98152, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929781', 3929781, '-91.557831', '45.832359', '-74.574440', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97880, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929782', 3929782, '-94.882561', '46.208530', '-79.633614', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97608, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929783', 3929783, '-87.110580', '46.547352', '-86.619080', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97336, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929786', 3929786, '-96.894127', '45.010529', '-44.811169', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97064, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929787', 3929787, '-62.452171', '48.231701', '-104.740601', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96792, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929794', 3929794, '-178.942596', '43.561249', '-181.994400', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96520, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929795', 3929795, '-126.848297', '47.734409', '-169.207306', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96248, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929796', 3929796, '-194.842499', '42.180161', '-142.809296', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95976, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929800', 3929800, '-192.279007', '41.889690', '-147.600601', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95704, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929801', 3929801, '-122.087502', '48.332630', '-170.000793', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95432, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929802', 3929802, '-123.918503', '48.047798', '-161.486298', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95160, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929803', 3929803, '-229.663605', '39.878719', '-179.980194', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94888, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929804', 3929804, '-181.170395', '41.225609', '-251.667099', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94616, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929805', 3929805, '-185.351303', '41.346439', '-247.821793', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94344, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929806', 3929806, '-195.330795', '40.334259', '-258.991394', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94072, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929808', 3929808, '131.630295', '52.191109', '0.493474', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54414, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(214, 'go001', 'bnpc3929810', 3929810, '132.709000', '52.181438', '1.958378', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55230, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(214, 'go001', 'bnpc3929812', 3929812, '115.385597', '49.234230', '11.315280', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54686, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(214, 'go001', 'bnpc3929813', 3929813, '117.565399', '49.175140', '13.275840', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56046, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(214, 'go001', 'bnpc3929815', 3929815, '118.431900', '49.488010', '10.180580', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56318, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(214, 'go001', 'bnpc3929817', 3929817, '106.367798', '48.645981', '15.557140', 769, 0, 0, 0, 1, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55502, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(214, 'go001', 'bnpc3929818', 3929818, '120.948303', '51.064060', '-0.143817', 769, 0, 0, 0, 1, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55774, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(214, 'go001', 'bnpc3929820', 3929820, '134.218094', '51.528179', '9.775265', 769, 0, 0, 0, 1, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54958, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(214, 'go001', 'bnpc3929826', 3929826, '-13.135430', '48.986919', '-86.472923', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93800, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929828', 3929828, '54.727501', '50.161850', '-32.944271', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93528, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929829', 3929829, '64.597313', '54.990398', '-122.676598', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929831', 3929831, '66.026863', '55.127190', '-121.580200', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929832', 3929832, '64.993713', '54.756149', '-119.316101', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929834', 3929834, '-11.130180', '54.068581', '-151.851303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929835', 3929835, '19.661039', '55.244888', '-153.973495', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929836', 3929836, '18.231480', '55.455791', '-155.069901', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929838', 3929838, '-9.406013', '54.140652', '-151.402298', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929839', 3929839, '-10.487150', '54.255268', '-153.170502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929843', 3929843, '24.606649', '60.413231', '-187.828293', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929844', 3929844, '26.036209', '60.638901', '-186.731903', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929845', 3929845, '28.305441', '61.087551', '-194.048996', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929846', 3929846, '-13.216780', '58.348202', '-191.121994', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929847', 3929847, '-11.787220', '58.581120', '-190.025604', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929849', 3929849, '51.002171', '62.513901', '-171.321503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929850', 3929850, '52.431728', '62.561481', '-170.225098', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929851', 3929851, '50.250092', '61.812469', '-168.366302', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929856', 3929856, '56.742020', '62.683529', '-167.113602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929857', 3929857, '91.871223', '65.801552', '-162.567993', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929858', 3929858, '91.084763', '66.005180', '-164.451996', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88366, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929859', 3929859, '119.531303', '72.554298', '-168.638596', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929861', 3929861, '119.737503', '69.204010', '-146.898697', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929862', 3929862, '118.303101', '68.822662', '-147.997299', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929863', 3929863, '117.112900', '68.311539', '-134.325195', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929864', 3929864, '117.540199', '68.388046', '-145.037003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929873', 3929873, '118.584702', '77.068329', '-192.023804', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929874', 3929874, '119.371101', '77.166290', '-190.139801', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929875', 3929875, '96.033737', '71.784462', '-206.070999', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929876', 3929876, '147.231293', '84.770142', '-179.634399', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85918, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929878', 3929878, '131.732498', '84.239113', '-214.769608', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85646, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929879', 3929879, '129.449295', '83.200447', '-214.469604', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85374, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929880', 3929880, '117.078697', '76.359550', '-189.839798', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929886', 3929886, '-9.820036', '57.888222', '-265.562714', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929888', 3929888, '-8.463858', '57.920422', '-266.546692', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929892', 3929892, '-36.288441', '54.051159', '-264.804810', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929895', 3929895, '-37.718620', '55.539761', '-246.754105', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929896', 3929896, '-36.105400', '55.795471', '-247.488297', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929897', 3929897, '-35.805401', '55.647850', '-244.752502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929898', 3929898, '-72.558617', '52.311829', '-247.421906', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929899', 3929899, '-72.858627', '52.571899', '-250.157700', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929900', 3929900, '-74.471848', '52.134220', '-249.423401', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929902', 3929902, '-74.133102', '52.444199', '-251.412003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929903', 3929903, '-61.128719', '54.917782', '-276.469696', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929905', 3929905, '-62.202911', '55.073421', '-276.169708', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929906', 3929906, '-87.521019', '49.709011', '-267.128387', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929907', 3929907, '-103.837601', '46.340569', '-243.640900', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929908', 3929908, '-102.189697', '46.624069', '-244.434296', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929910', 3929910, '-89.931953', '49.147942', '-266.121399', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929911', 3929911, '-88.406036', '49.520420', '-265.144806', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80478, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929913', 3929913, '-94.834862', '44.620140', '-289.814606', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929914', 3929914, '-93.431030', '44.502659', '-291.523712', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929918', 3929918, '-156.328705', '41.211071', '-257.953796', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929919', 3929919, '-154.711197', '41.244331', '-258.686310', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929921', 3929921, '-122.943001', '43.252022', '-286.232788', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929922', 3929922, '-109.323997', '40.309811', '-324.737396', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929923', 3929923, '-110.727898', '40.159351', '-323.028412', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929924', 3929924, '-108.366302', '40.562851', '-322.496002', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929925', 3929925, '-68.430206', '45.267422', '-308.626495', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929926', 3929926, '-51.165970', '45.726879', '-353.049713', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929927', 3929927, '-49.648022', '45.907570', '-352.084595', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77486, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929928', 3929928, '-48.759708', '45.997150', '-354.053986', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77214, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929929', 3929929, '-54.654140', '45.340069', '-370.533600', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76942, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929930', 3929930, '-54.354141', '45.342510', '-373.142303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76670, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929931', 3929931, '-90.540337', '39.280819', '-353.994690', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76398, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929932', 3929932, '-90.840347', '39.428822', '-351.385986', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76126, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929933', 3929933, '-60.107460', '55.697620', '-260.511414', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54082, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929934', 3929934, '-164.141403', '44.110901', '-217.517303', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75860, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929935', 3929935, '-144.975998', '45.815300', '-200.640900', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75588, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929936', 3929936, '-136.644501', '45.374001', '-218.646606', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75316, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929937', 3929937, '-131.304001', '45.701130', '-214.709702', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75044, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3929938', 3929938, '-66.976334', '25.431820', '-148.179199', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929940', 3929940, '-57.442081', '24.957350', '-153.725693', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929941', 3929941, '-53.170090', '26.263571', '-128.472107', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929942', 3929942, '-67.405273', '26.238400', '-132.898193', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929943', 3929943, '-55.497108', '26.236170', '-126.848297', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929944', 3929944, '-58.530079', '27.712959', '-111.586197', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929945', 3929945, '-55.685059', '24.922501', '-155.193802', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929948', 3929948, '-46.655151', '25.719770', '-144.661301', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3929954', 3929954, '-58.565269', '51.362320', '-226.270996', 348, 0, 0, 0, 0, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72608, 3, 0, 0, 0, 0, 30073, 0, 0, 0), +(214, 'go001', 'bnpc3929955', 3929955, '-56.209209', '52.730179', '-234.378098', 349, 0, 0, 0, 1, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72342, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(214, 'go001', 'bnpc3929957', 3929957, '-64.286301', '51.072021', '-224.902802', 349, 0, 0, 0, 1, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72070, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(214, 'go001', 'bnpc3929959', 3929959, '-60.089680', '51.823978', '-230.541000', 349, 0, 0, 0, 1, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71798, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(214, 'go001', 'bnpc3929960', 3929960, '-64.276390', '50.332390', '-220.639801', 349, 0, 0, 0, 0, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71526, 3, 0, 0, 0, 0, 30079, 0, 0, 0), +(214, 'go001', 'bnpc3929962', 3929962, '-63.299820', '50.321152', '-220.334595', 348, 0, 0, 0, 0, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71248, 3, 0, 0, 0, 0, 30082, 0, 0, 0), +(214, 'go001', 'bnpc3929963', 3929963, '-66.534210', '51.498051', '-231.124802', 348, 0, 0, 0, 1, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70976, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(214, 'go001', 'bnpc3929964', 3929964, '-71.434937', '49.349220', '-217.996902', 348, 0, 0, 0, 1, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70704, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(214, 'go001', 'bnpc3929966', 3929966, '-57.328251', '51.480759', '-227.008499', 350, 0, 0, 0, 0, 6, 0, 0, 419, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70444, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(214, 'go001', 'bnpc3930079', 3930079, '2.853394', '47.348751', '19.333130', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70178, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930083', 3930083, '98.893677', '51.255001', '-19.302670', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930087', 3930087, '79.819946', '55.375000', '-73.319641', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930089', 3930089, '11.367920', '50.858280', '-64.957703', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930092', 3930092, '-19.729919', '46.707760', '-29.587280', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69090, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930094', 3930094, '-25.955629', '51.285519', '-122.240097', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930097', 3930097, '-27.878300', '50.766720', '-117.967499', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68546, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930100', 3930100, '81.406860', '64.560791', '-160.418198', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68274, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930105', 3930105, '131.548004', '84.245003', '-218.036194', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68002, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930109', 3930109, '111.113503', '74.884857', '-194.245605', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67730, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930110', 3930110, '28.519039', '61.112301', '-189.013504', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67458, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930112', 3930112, '-4.593018', '58.915039', '-205.523697', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67186, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930113', 3930113, '3.555298', '56.168461', '-161.730392', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930118', 3930118, '-122.117996', '45.761719', '-79.270630', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66642, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930123', 3930123, '-118.181198', '42.313229', '-6.424072', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930124', 3930124, '-40.451721', '45.426029', '43.106689', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930125', 3930125, '-56.534729', '45.853390', '3.311157', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930127', 3930127, '-76.127258', '43.228760', '-43.289860', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65554, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930128', 3930128, '-213.427994', '39.292461', '-150.652298', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930129', 3930129, '-174.792099', '43.778080', '-200.488297', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930130', 3930130, '-178.332199', '41.714760', '-243.854507', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930132', 3930132, '-82.078308', '51.346561', '-266.498810', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930133', 3930133, '-48.081181', '54.215328', '-241.352005', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64194, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930138', 3930138, '-142.076797', '40.268429', '-293.263092', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63922, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930141', 3930141, '-140.245697', '40.848389', '-289.845215', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63650, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930143', 3930143, '-44.602112', '46.372070', '-358.907501', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63378, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930147', 3930147, '-57.785950', '46.097530', '-316.426300', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63106, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930151', 3930151, '-55.863281', '46.250000', '-314.839508', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62834, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930182', 3930182, '-304.707397', '13.931440', '-297.352600', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52976, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930185', 3930185, '-317.921814', '14.511280', '-319.874908', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52704, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930186', 3930186, '-356.069305', '13.626260', '-315.358185', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52432, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930188', 3930188, '-346.212006', '15.915110', '-343.556885', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52160, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930190', 3930190, '-357.564697', '16.983240', '-350.606598', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51888, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930192', 3930192, '-365.224701', '24.277060', '-387.899597', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51616, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930193', 3930193, '-372.335388', '24.032909', '-383.108307', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51344, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930194', 3930194, '-242.989197', '12.764750', '-304.178589', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51072, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930195', 3930195, '-245.276901', '15.323140', '-347.073608', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50800, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930196', 3930196, '-241.837601', '15.504950', '-360.820190', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50528, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930197', 3930197, '-231.249405', '14.674970', '-351.945709', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50256, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930198', 3930198, '-279.758698', '23.224979', '-379.012512', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49984, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930199', 3930199, '-287.296814', '23.576111', '-386.822815', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49712, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930200', 3930200, '-300.179901', '19.009211', '-361.576294', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49440, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930203', 3930203, '-344.047791', '28.847330', '-431.588806', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49168, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930207', 3930207, '-327.870605', '22.171310', '-400.259399', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48896, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930213', 3930213, '-179.705505', '16.617029', '-403.463806', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930216', 3930216, '-146.990204', '14.297660', '-392.843506', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930219', 3930219, '-175.310898', '16.525471', '-404.928711', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930224', 3930224, '-229.388901', '22.812189', '-440.299103', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930227', 3930227, '-197.039795', '24.795860', '-452.140106', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930229', 3930229, '-216.937500', '26.810061', '-472.739807', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47270, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930231', 3930231, '-222.980103', '23.453070', '-442.618500', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46998, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930232', 3930232, '-283.527893', '22.018740', '-432.181305', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46726, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930233', 3930233, '-250.629501', '24.917971', '-481.406891', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46454, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930234', 3930234, '-223.682007', '32.577961', '-507.713501', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46182, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930235', 3930235, '-228.229202', '31.876051', '-511.985992', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45910, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930236', 3930236, '-213.031204', '32.272781', '-537.346497', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45638, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930237', 3930237, '-249.988602', '30.502741', '-572.350586', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45366, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930240', 3930240, '-252.735199', '33.310398', '-597.344971', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930241', 3930241, '-255.390305', '33.768169', '-600.732422', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930242', 3930242, '-284.290894', '30.136520', '-561.608276', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930245', 3930245, '-317.302002', '35.589191', '-591.171570', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930246', 3930246, '-321.442505', '33.511250', '-583.939514', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930247', 3930247, '-331.995605', '36.578739', '-597.355713', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930248', 3930248, '-354.800690', '33.443390', '-535.994385', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43462, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930250', 3930250, '-367.069611', '33.580250', '-493.158600', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43190, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930252', 3930252, '-374.167297', '34.022141', '-483.473907', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42918, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930253', 3930253, '-370.490387', '33.450420', '-481.198914', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42646, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930254', 3930254, '-325.906097', '27.601170', '-476.435211', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42374, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930255', 3930255, '-322.883911', '27.180950', '-472.301392', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930258', 3930258, '-323.219299', '26.630880', '-526.640625', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(214, 'go001', 'bnpc3930270', 3930270, '-365.179810', '12.493070', '-307.350189', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41564, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930271', 3930271, '-422.502197', '12.677160', '-307.390991', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41292, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930274', 3930274, '-425.462402', '12.762100', '-310.618195', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41020, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930277', 3930277, '-222.915207', '12.294620', '-317.636810', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40748, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930278', 3930278, '-226.158997', '12.534600', '-317.995789', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40476, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930280', 3930280, '-196.398895', '12.222430', '-355.031708', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40204, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930281', 3930281, '-74.238098', '12.130030', '-410.146606', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39932, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930283', 3930283, '-21.098070', '11.319840', '-436.355804', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930284', 3930284, '-3.859158', '14.732280', '-457.622314', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930285', 3930285, '-24.365191', '12.386510', '-452.972687', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39116, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3930286', 3930286, '-6.057117', '14.506850', '-455.250793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38844, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3931787', 3931787, '-269.609711', '22.980930', '-390.658813', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3931791', 3931791, '-271.683899', '13.930550', '-319.410187', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3931792', 3931792, '-269.811615', '14.350880', '-322.618713', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3931793', 3931793, '-312.711609', '13.906600', '-302.460907', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3931795', 3931795, '-204.028397', '13.900940', '-394.735687', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3931796', 3931796, '-231.464203', '25.436769', '-471.122314', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3931798', 3931798, '-201.647995', '24.643311', '-457.297699', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3931799', 3931799, '-243.150803', '26.919580', '-525.615479', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3932161', 3932161, '-207.015305', '32.560860', '-562.758789', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3932162', 3932162, '-244.633408', '29.896629', '-566.727112', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3932164', 3932164, '-269.969910', '33.304001', '-589.321411', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3932166', 3932166, '-286.629089', '24.500669', '-532.985291', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3932167', 3932167, '-284.197998', '25.013651', '-536.186523', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3932168', 3932168, '-357.327911', '32.973610', '-562.442871', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3932170', 3932170, '-331.616302', '28.746330', '-468.081787', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3932171', 3932171, '-298.664886', '23.056339', '-406.912415', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3932173', 3932173, '-377.859802', '25.497511', '-389.074188', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3932175', 3932175, '-350.521088', '18.624069', '-355.627014', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc3932176', 3932176, '-379.679993', '13.370460', '-319.535095', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4024349', 4024349, '-95.414726', '47.931198', '-199.847397', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57086, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(214, 'go001', 'bnpc4024350', 4024350, '-97.032097', '47.837219', '-199.084503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4024351', 4024351, '-95.109558', '48.244461', '-196.093704', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4056974', 4056974, '-10.772860', '41.723129', '131.511597', 783, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20370, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(214, 'go001', 'bnpc4296703', 4296703, '220.339401', '103.033401', '-192.118607', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19236, 8, 0, 0, 4296693, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4296705', 4296705, '244.738297', '105.634201', '-204.802994', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18964, 8, 0, 0, 4296689, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4296707', 4296707, '249.144104', '105.712402', '-208.740204', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18692, 8, 0, 0, 4296690, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4296708', 4296708, '253.558899', '105.985802', '-214.094299', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18420, 8, 0, 0, 4296691, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4296709', 4296709, '226.015106', '103.203697', '-193.008301', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18148, 8, 0, 0, 4296694, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4621598', 4621598, '-494.667999', '21.636040', '-302.079010', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29960, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4867876', 4867876, '28.213869', '50.827759', '-87.998840', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29486, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4867877', 4867877, '41.707401', '51.156799', '-86.539299', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29214, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4867878', 4867878, '39.668598', '51.736500', '-101.188400', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28942, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4867879', 4867879, '34.538631', '50.845268', '-83.984108', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28676, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4867880', 4867880, '24.472219', '51.118671', '-92.466171', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28404, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4867881', 4867881, '24.319870', '52.536991', '-109.234901', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28132, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4867882', 4867882, '55.329231', '53.690331', '-96.379692', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27860, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4867883', 4867883, '35.340740', '52.012718', '-113.983498', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27588, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4867884', 4867884, '20.250629', '52.350960', '-103.253700', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27316, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4867885', 4867885, '51.540489', '52.848961', '-79.500076', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27044, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4867886', 4867886, '41.456211', '51.357250', '-93.443268', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26772, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4867887', 4867887, '35.558880', '51.834862', '-105.446701', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26500, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4867888', 4867888, '23.570000', '50.670292', '-81.777740', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26228, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4867889', 4867889, '51.948132', '52.700432', '-106.025299', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25956, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4867890', 4867890, '27.729429', '51.344398', '-95.375870', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25684, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4892334', 4892334, '136.626007', '48.560169', '61.895821', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24494, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4892335', 4892335, '131.496002', '48.619511', '79.100121', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24228, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4892336', 4892336, '121.429604', '48.684132', '70.618050', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23956, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4892337', 4892337, '121.277298', '47.602539', '53.849319', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23684, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4892338', 4892338, '138.664795', '48.539879', '76.544930', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23406, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4892339', 4892339, '117.208000', '48.099979', '59.830521', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23140, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4892340', 4892340, '132.298096', '47.763882', '49.100731', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22868, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4892341', 4892341, '152.286697', '49.492531', '66.704536', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22596, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4892342', 4892342, '125.171303', '48.678471', '75.085381', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22318, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4892343', 4892343, '120.527397', '48.525890', '81.306480', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22052, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4892344', 4892344, '148.497894', '48.561459', '83.584137', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21780, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4892345', 4892345, '148.905502', '49.877151', '57.058929', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21508, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4892346', 4892346, '124.762199', '48.546471', '67.801064', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21236, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4892347', 4892347, '132.516296', '48.171822', '57.637520', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20964, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(214, 'go001', 'bnpc4892348', 4892348, '138.413605', '48.645409', '69.640953', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20692, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926308', 3926308, '376.795502', '84.142036', '107.708504', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154812, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926338', 3926338, '375.147491', '84.022469', '106.274200', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154540, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926351', 3926351, '405.431488', '88.082703', '99.945763', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154268, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926354', 3926354, '409.251190', '88.844963', '97.093102', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153996, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926358', 3926358, '378.901215', '84.631958', '104.412598', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153724, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926365', 3926365, '407.170990', '88.157288', '101.532700', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153452, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926371', 3926371, '392.339203', '86.636040', '181.099197', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153180, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926372', 3926372, '396.068207', '86.811653', '179.238007', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152908, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926373', 3926373, '393.988495', '86.897270', '182.527893', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152636, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926381', 3926381, '411.703613', '88.297813', '162.003098', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152364, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926382', 3926382, '410.055603', '88.039360', '160.599197', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152092, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926386', 3926386, '394.559601', '85.026733', '153.758499', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151820, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926391', 3926391, '410.144012', '88.683350', '189.622894', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151548, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926417', 3926417, '417.375885', '87.742783', '131.569901', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926439', 3926439, '345.812805', '76.219322', '212.725998', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926440', 3926440, '344.548309', '75.438789', '207.299393', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926441', 3926441, '348.012512', '76.039337', '211.108795', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926464', 3926464, '356.043793', '74.743179', '151.343094', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926465', 3926465, '352.759186', '74.743149', '149.888596', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926467', 3926467, '367.410095', '80.423607', '133.246597', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926481', 3926481, '353.852814', '80.577820', '117.643204', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926484', 3926484, '351.360199', '79.902428', '120.108704', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926487', 3926487, '355.985199', '80.082771', '121.892502', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926490', 3926490, '373.090698', '84.220062', '99.076653', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926522', 3926522, '406.246887', '86.759048', '111.752296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926526', 3926526, '325.732788', '66.676826', '171.598495', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926537', 3926537, '328.927612', '68.512451', '191.103607', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926539', 3926539, '326.017792', '67.722847', '188.876999', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926541', 3926541, '342.366608', '72.409378', '178.265305', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926543', 3926543, '340.851105', '72.117889', '182.389893', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926545', 3926545, '339.368805', '71.684380', '180.432800', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926547', 3926547, '329.747711', '68.403687', '149.117706', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926548', 3926548, '327.065491', '67.092491', '170.001404', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926552', 3926552, '319.223511', '67.064529', '203.825699', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926557', 3926557, '307.153687', '65.648338', '183.776306', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926564', 3926564, '315.245087', '65.419243', '134.686005', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926565', 3926565, '313.912415', '65.218117', '136.283096', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926572', 3926572, '310.648285', '65.000732', '131.124893', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926578', 3926578, '301.380890', '64.171013', '142.769608', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926601', 3926601, '261.503296', '53.867599', '124.334000', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926644', 3926644, '295.185699', '60.044201', '169.695496', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926653', 3926653, '293.079987', '59.372799', '172.716797', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132792, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926658', 3926658, '296.070709', '60.135750', '174.090103', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133064, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926660', 3926660, '257.465393', '54.488819', '176.080399', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134152, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926665', 3926665, '279.163788', '55.806110', '134.904999', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133336, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926667', 3926667, '277.598999', '55.429420', '137.030197', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131976, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926670', 3926670, '269.266907', '56.155140', '106.412498', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132520, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926677', 3926677, '260.700409', '54.871441', '108.842598', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132248, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926683', 3926683, '261.666290', '55.104469', '106.238503', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134696, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926716', 3926716, '257.191193', '55.945511', '220.022095', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926717', 3926717, '258.076202', '55.964081', '224.416702', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926718', 3926718, '255.085403', '55.855000', '223.043396', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134424, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926733', 3926733, '243.941101', '55.670811', '235.884598', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133608, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926750', 3926750, '258.564087', '54.697350', '178.949097', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133880, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926769', 3926769, '413.944397', '89.309250', '158.034897', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148018, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926800', 3926800, '407.416199', '87.761620', '175.019302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147746, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926801', 3926801, '406.609985', '87.629570', '176.598602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147474, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926804', 3926804, '392.991699', '87.757637', '191.946198', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147202, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926805', 3926805, '387.339111', '84.919083', '134.093994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146930, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926808', 3926808, '354.084900', '81.902718', '100.424797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146658, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926810', 3926810, '422.356903', '89.050278', '114.571297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146386, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926812', 3926812, '421.045013', '88.772667', '115.796600', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146114, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926815', 3926815, '403.283386', '86.085800', '113.897499', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145842, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926821', 3926821, '370.507996', '82.400093', '117.661697', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145570, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926825', 3926825, '367.792389', '81.913681', '118.807602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926829', 3926829, '360.534485', '74.935432', '148.181396', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145026, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926837', 3926837, '378.317413', '79.842934', '162.415802', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144754, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926847', 3926847, '376.053986', '78.965889', '164.143707', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926848', 3926848, '369.552399', '77.052002', '192.962997', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144210, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926854', 3926854, '346.371490', '75.720573', '208.895203', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143938, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926858', 3926858, '363.167694', '77.767464', '219.355392', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143666, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926860', 3926860, '371.780212', '77.339363', '194.397400', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926868', 3926868, '369.826996', '77.102577', '196.960907', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143116, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3926883', 3926883, '344.452301', '72.995819', '181.059906', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926890', 3926890, '328.520813', '67.640129', '172.850403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926891', 3926891, '311.090302', '65.890671', '189.672195', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926896', 3926896, '309.819885', '64.657661', '145.602493', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926898', 3926898, '328.420197', '67.645653', '147.350800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141762, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926899', 3926899, '317.188690', '65.970573', '128.639603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141490, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926902', 3926902, '318.570007', '65.981651', '129.865601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141218, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926912', 3926912, '275.386810', '55.162628', '134.854202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140946, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926915', 3926915, '264.207703', '55.231709', '109.226501', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140674, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926917', 3926917, '260.486694', '54.760460', '176.782303', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926928', 3926928, '254.790497', '55.815201', '226.529297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926929', 3926929, '242.801407', '55.684689', '237.647995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3926930', 3926930, '241.351593', '55.604931', '235.930405', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139586, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927149', 3927149, '27.696630', '50.949940', '203.695496', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130588, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927150', 3927150, '15.640450', '53.696449', '252.796204', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927151', 3927151, '-61.356571', '57.144989', '351.064209', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927152', 3927152, '173.737106', '54.352638', '226.520096', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130316, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927153', 3927153, '183.533401', '54.215019', '225.513000', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130044, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927154', 3927154, '99.898514', '49.255638', '188.131607', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129772, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927156', 3927156, '128.718903', '50.518780', '195.651794', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129500, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927158', 3927158, '115.929298', '48.682110', '176.508408', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129228, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927162', 3927162, '108.506699', '47.551449', '175.644897', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128956, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927163', 3927163, '32.919010', '50.990910', '198.741592', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128684, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927164', 3927164, '31.915621', '47.200191', '163.456696', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128412, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927165', 3927165, '65.425613', '51.619080', '219.897705', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128140, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927166', 3927166, '70.552643', '50.994259', '212.756500', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127868, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927168', 3927168, '60.756340', '51.112720', '213.427902', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127596, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927169', 3927169, '1.910973', '44.523701', '152.350204', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127324, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927170', 3927170, '6.149339', '47.714909', '180.407394', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127052, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927171', 3927171, '175.777206', '50.666649', '65.453201', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126780, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927172', 3927172, '170.246994', '50.547649', '69.196983', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126508, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927174', 3927174, '240.923996', '51.465309', '71.654427', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126236, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927175', 3927175, '249.684906', '51.468151', '78.309212', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125964, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927176', 3927176, '255.227203', '51.199020', '67.745193', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125692, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927178', 3927178, '253.462494', '51.509102', '19.847630', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125420, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927179', 3927179, '201.886398', '51.465870', '22.835030', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125148, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927182', 3927182, '111.507797', '59.949421', '283.252502', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927185', 3927185, '98.313828', '59.311771', '302.754211', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124610, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927186', 3927186, '110.092697', '60.098831', '287.907593', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124338, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927187', 3927187, '128.731201', '60.436340', '298.911407', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124066, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927188', 3927188, '83.256920', '55.503361', '283.185394', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123794, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927189', 3927189, '91.296028', '55.644341', '266.384308', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123522, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927190', 3927190, '82.101891', '55.164581', '275.573212', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123250, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927191', 3927191, '115.385597', '59.492580', '287.027496', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122978, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927192', 3927192, '178.888199', '53.984070', '219.121597', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927194', 3927194, '131.716507', '57.952309', '278.151306', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122434, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927197', 3927197, '-22.751249', '56.290482', '304.371613', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927200', 3927200, '-18.722870', '56.046341', '317.952209', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927201', 3927201, '-14.837500', '56.125702', '314.598206', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927203', 3927203, '8.417153', '55.567989', '320.395599', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927204', 3927204, '20.042080', '57.618370', '350.774109', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927205', 3927205, '26.145691', '57.755730', '356.084290', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927206', 3927206, '22.476490', '58.182598', '359.426208', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927209', 3927209, '49.869179', '57.280979', '352.553101', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120264, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927211', 3927211, '21.927170', '54.917171', '311.085602', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119992, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927213', 3927213, '25.229980', '54.764481', '306.841705', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119720, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927218', 3927218, '-21.114670', '53.540970', '264.998993', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119448, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927220', 3927220, '-5.313622', '54.065811', '256.266205', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119176, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927221', 3927221, '-23.334700', '53.561840', '260.473511', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118904, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927222', 3927222, '5.204782', '54.084610', '236.687195', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118632, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927224', 3927224, '8.561768', '54.060150', '238.457199', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118360, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927226', 3927226, '-8.821225', '50.881729', '201.391602', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927229', 3927229, '-6.608897', '50.901840', '203.446304', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927230', 3927230, '-18.636290', '51.201260', '221.737701', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927231', 3927231, '-35.276581', '49.465691', '214.633698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927236', 3927236, '-11.411140', '50.721111', '205.313904', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927239', 3927239, '-38.801102', '49.907009', '218.520004', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927240', 3927240, '6.279222', '50.975891', '212.108902', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927241', 3927241, '-35.700180', '46.975208', '193.506195', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927246', 3927246, '-141.250000', '50.637089', '227.672501', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97168, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(215, 'go003', 'bnpc3927250', 3927250, '-140.879105', '50.598660', '225.798996', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97440, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(215, 'go003', 'bnpc3927252', 3927252, '-133.580704', '50.071732', '219.991806', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96624, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(215, 'go003', 'bnpc3927255', 3927255, '-132.305801', '49.998920', '219.510193', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96896, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(215, 'go003', 'bnpc3927256', 3927256, '-130.444595', '50.881111', '227.569397', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98256, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(215, 'go003', 'bnpc3927333', 3927333, '-125.582298', '49.131699', '207.139694', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98528, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(215, 'go003', 'bnpc3927334', 3927334, '-153.431595', '49.478130', '221.025101', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97712, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(215, 'go003', 'bnpc3927339', 3927339, '-121.896698', '49.490898', '212.546097', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97984, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(215, 'go003', 'bnpc3927343', 3927343, '-45.193470', '62.185181', '363.152100', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115912, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927345', 3927345, '-79.881020', '55.100281', '361.379395', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115640, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927346', 3927346, '-83.391731', '54.977058', '365.606995', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115368, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927347', 3927347, '-54.476139', '65.540337', '392.423004', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115096, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927349', 3927349, '-51.241718', '65.802643', '390.513214', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114824, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927352', 3927352, '-1.297064', '68.802879', '377.553894', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114552, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927353', 3927353, '2.885915', '68.536720', '372.786896', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114280, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927354', 3927354, '-109.941299', '48.966148', '357.015289', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114008, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927356', 3927356, '-125.981003', '51.453751', '311.388885', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113736, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927357', 3927357, '-130.879105', '51.717690', '309.097412', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113464, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927358', 3927358, '-131.425293', '51.394489', '312.798096', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113192, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927359', 3927359, '-118.158401', '53.802921', '271.080597', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112920, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927360', 3927360, '-115.932800', '53.461861', '267.407501', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112648, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927361', 3927361, '-95.500458', '52.359612', '245.109894', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112376, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927364', 3927364, '-138.997604', '45.849251', '391.546814', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112104, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927366', 3927366, '-131.347107', '47.246719', '398.411713', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111832, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927367', 3927367, '-141.612305', '45.939159', '395.010193', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111560, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927368', 3927368, '-175.499496', '39.137119', '393.656799', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111288, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927370', 3927370, '-156.301407', '40.866211', '345.757813', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111016, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927371', 3927371, '-162.614700', '39.951931', '342.568695', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110744, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927373', 3927373, '-157.533707', '40.302212', '350.198212', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110472, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927375', 3927375, '28.610620', '55.466499', '328.511414', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927379', 3927379, '37.804600', '58.140781', '363.465912', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927382', 3927382, '32.272758', '55.471779', '329.481689', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927384', 3927384, '6.784028', '54.128811', '253.378204', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927387', 3927387, '-20.690559', '53.685650', '251.224396', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109124, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(215, 'go003', 'bnpc3927388', 3927388, '45.252361', '48.095360', '180.655197', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927394', 3927394, '69.706589', '56.137440', '318.697693', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927398', 3927398, '104.150002', '56.064339', '263.215607', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927403', 3927403, '156.664307', '54.703541', '236.652100', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927404', 3927404, '44.327412', '52.658840', '244.800400', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927408', 3927408, '-26.490999', '44.862301', '177.075394', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927413', 3927413, '152.993607', '50.116879', '72.775887', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927414', 3927414, '220.945801', '50.242329', '4.633916', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927417', 3927417, '219.309296', '49.916939', '6.135899', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927424', 3927424, '-14.541890', '67.307503', '362.722107', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927425', 3927425, '-65.254753', '64.638290', '395.066498', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927431', 3927431, '-117.631798', '47.959061', '380.300507', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927432', 3927432, '-172.127304', '40.469398', '398.069092', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927433', 3927433, '-189.330597', '36.909599', '341.340210', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927435', 3927435, '-140.326401', '45.201859', '337.794006', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927436', 3927436, '-110.657700', '52.097160', '290.219696', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927437', 3927437, '-145.151993', '56.686409', '288.573792', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927730', 3927730, '120.638901', '17.207850', '96.590080', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104234, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927734', 3927734, '123.778503', '17.206751', '88.372543', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103962, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927735', 3927735, '128.407593', '16.559820', '98.111130', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103690, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927736', 3927736, '78.465424', '21.109140', '92.377060', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103418, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927737', 3927737, '100.497498', '16.583630', '126.907097', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103146, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927739', 3927739, '-25.650459', '22.079760', '105.851799', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102874, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927742', 3927742, '-20.340321', '21.438881', '108.873100', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102602, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927745', 3927745, '78.228539', '22.345881', '63.241020', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102330, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927746', 3927746, '86.209900', '22.246161', '56.213009', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102058, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927748', 3927748, '127.763702', '25.986071', '49.240810', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101786, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927750', 3927750, '70.167282', '16.789490', '139.201706', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927760', 3927760, '95.818649', '15.165110', '168.324600', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927771', 3927771, '96.919411', '15.051520', '166.152405', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927776', 3927776, '126.695602', '15.793040', '128.007904', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100692, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927784', 3927784, '58.284618', '22.640039', '59.899170', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100420, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927789', 3927789, '14.317140', '20.384331', '98.519272', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100148, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927870', 3927870, '123.073700', '18.194111', '18.950350', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99882, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927874', 3927874, '164.476593', '18.193741', '-3.313263', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99610, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927875', 3927875, '161.316605', '18.193520', '6.161218', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99338, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927880', 3927880, '179.117905', '18.193710', '3.609651', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99066, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3927883', 3927883, '103.653801', '19.374020', '93.697792', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98788, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927890', 3927890, '122.968102', '56.939259', '-36.773190', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95074, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927910', 3927910, '123.268097', '55.511478', '-56.716091', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94802, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927911', 3927911, '129.320206', '55.924271', '-51.987530', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927912', 3927912, '154.660400', '55.357391', '-41.330311', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94258, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927919', 3927919, '189.631897', '50.414280', '-25.954390', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93986, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927923', 3927923, '183.639099', '52.017891', '-84.284233', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93714, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927925', 3927925, '153.890793', '52.284729', '-77.195427', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927934', 3927934, '191.650803', '52.446129', '-77.491463', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93170, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3927952', 3927952, '199.298004', '52.109509', '-110.399101', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92898, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928005', 3928005, '249.801102', '63.548111', '-129.309692', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92626, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928007', 3928007, '233.766098', '63.274509', '-115.512901', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92354, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928013', 3928013, '75.352249', '58.717110', '35.270901', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92088, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928021', 3928021, '86.804192', '58.856110', '31.969290', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91816, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928022', 3928022, '84.852730', '58.771778', '28.421551', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91544, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928152', 3928152, '58.122269', '59.502029', '1.331460', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928154', 3928154, '99.899971', '53.697948', '21.844801', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928157', 3928157, '28.599730', '59.945721', '27.529560', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928160', 3928160, '25.558041', '59.878441', '30.178419', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928161', 3928161, '14.973360', '62.347179', '18.278700', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928165', 3928165, '6.374675', '59.338470', '42.109829', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928314', 3928314, '319.607910', '63.456242', '-187.854004', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928315', 3928315, '318.191406', '63.387531', '-186.084000', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928317', 3928317, '311.617798', '62.671181', '-255.173492', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928319', 3928319, '306.148010', '62.678329', '-255.381195', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928320', 3928320, '310.641205', '62.731220', '-257.553894', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928321', 3928321, '288.386597', '62.264820', '-212.191498', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928323', 3928323, '281.432892', '62.276360', '-175.724792', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928324', 3928324, '294.345215', '62.536160', '-229.177994', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87700, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928326', 3928326, '324.076385', '63.986629', '-248.880295', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87428, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928327', 3928327, '294.358307', '62.940811', '-234.107498', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87156, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928328', 3928328, '298.334686', '62.391232', '-190.659805', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86884, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928329', 3928329, '288.392303', '62.534901', '-229.239197', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86612, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928331', 3928331, '298.725800', '62.141201', '-195.515305', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86340, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928332', 3928332, '265.782898', '63.307018', '-219.574600', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86068, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928335', 3928335, '316.656586', '63.109501', '-200.695007', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85796, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928360', 3928360, '-105.641998', '14.974850', '-248.369598', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928364', 3928364, '-110.496902', '14.974860', '-245.931396', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928366', 3928366, '-96.993607', '14.974790', '-263.062500', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928370', 3928370, '-134.325607', '14.974520', '-268.556091', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928372', 3928372, '-137.674500', '14.974520', '-281.872009', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84484, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928373', 3928373, '-140.064697', '14.974790', '-279.290314', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84212, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928374', 3928374, '-183.464493', '14.974900', '-240.699707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83940, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928376', 3928376, '-180.748398', '14.974890', '-244.758606', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83668, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928378', 3928378, '-186.089096', '14.974890', '-243.232697', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83396, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928379', 3928379, '-147.631104', '14.969050', '-274.158905', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83124, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928383', 3928383, '-224.475494', '14.969050', '-348.714386', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928386', 3928386, '-209.268402', '14.974940', '-344.686401', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928387', 3928387, '-206.509598', '14.974940', '-340.343994', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928388', 3928388, '-218.735199', '14.974420', '-379.859985', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928389', 3928389, '-223.490601', '14.974420', '-382.159912', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928391', 3928391, '-258.752411', '14.974870', '-325.427490', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928392', 3928392, '-264.535492', '14.974880', '-327.510101', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928394', 3928394, '-281.808807', '14.974920', '-208.237701', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928519', 3928519, '-253.182007', '14.974930', '-267.783295', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928520', 3928520, '-255.348694', '14.974930', '-265.372406', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928523', 3928523, '-283.110809', '14.974940', '-291.602112', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928524', 3928524, '-282.531006', '14.974940', '-294.806488', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928525', 3928525, '-286.528809', '14.974940', '-293.707794', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928527', 3928527, '-298.754211', '14.974940', '-221.860397', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928528', 3928528, '-295.336212', '14.974940', '-225.644699', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928531', 3928531, '-217.611801', '14.974770', '-304.205109', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928534', 3928534, '-250.701904', '14.974930', '-243.696503', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928783', 3928783, '-182.680801', '14.974910', '-276.838287', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78228, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928784', 3928784, '-170.103302', '14.974860', '-253.832504', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77956, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928788', 3928788, '-212.801102', '14.974940', '-333.462799', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928795', 3928795, '-266.258698', '15.546460', '-234.426102', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77370, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928796', 3928796, '-219.789307', '14.974930', '-267.238892', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77098, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928797', 3928797, '-285.191498', '14.974940', '-268.444397', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76826, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928798', 3928798, '-203.762299', '14.974910', '-250.822205', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76554, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928799', 3928799, '-278.737915', '14.974940', '-262.906189', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76282, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928800', 3928800, '-277.257599', '14.974940', '-267.571411', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76010, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928801', 3928801, '-256.085907', '14.974930', '-289.433411', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75738, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928802', 3928802, '-224.033401', '14.974930', '-264.018097', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75466, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928803', 3928803, '146.532303', '54.459400', '-51.499241', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928804', 3928804, '102.067497', '53.818520', '-56.137989', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928805', 3928805, '78.182693', '57.105598', '-30.773781', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928806', 3928806, '76.842499', '57.456390', '-29.140619', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928807', 3928807, '86.645050', '57.952759', '6.113357', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928808', 3928808, '22.705441', '61.685020', '19.656160', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928809', 3928809, '10.100620', '59.973881', '35.668980', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928810', 3928810, '166.031296', '50.849098', '-100.283997', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928811', 3928811, '186.388901', '51.621220', '-160.082397', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928812', 3928812, '238.300095', '63.248600', '-122.148499', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928813', 3928813, '184.099701', '52.311790', '-57.823231', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928814', 3928814, '179.929794', '52.482571', '-55.958038', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928815', 3928815, '142.056702', '53.278130', '-130.908096', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928816', 3928816, '268.193207', '63.254810', '-222.082703', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928822', 3928822, '302.263489', '62.065739', '-193.318497', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928825', 3928825, '-123.838997', '14.974520', '-263.543488', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928831', 3928831, '-176.301498', '14.974870', '-250.083099', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928832', 3928832, '-144.984497', '14.974770', '-287.996185', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928833', 3928833, '-185.416595', '14.974910', '-280.625488', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928834', 3928834, '-244.850296', '14.974930', '-244.881104', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928835', 3928835, '-244.690704', '15.599670', '-289.695801', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928836', 3928836, '-287.953003', '14.974940', '-254.367096', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928837', 3928837, '-288.296387', '14.974940', '-221.930298', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928838', 3928838, '-242.570297', '14.974810', '-341.476898', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928839', 3928839, '-294.252502', '14.974850', '-321.210785', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928840', 3928840, '-213.266998', '14.974420', '-364.787292', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928841', 3928841, '-196.042206', '14.974940', '-319.922791', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928894', 3928894, '-427.363312', '23.320280', '-482.444489', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67692, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928895', 3928895, '-414.236694', '24.246580', '-480.094604', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67420, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928896', 3928896, '-399.069214', '24.662140', '-486.445496', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67148, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928897', 3928897, '-426.661407', '23.254721', '-480.735504', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66876, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928898', 3928898, '-385.109589', '24.366320', '-508.717590', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66604, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928899', 3928899, '-383.622498', '24.283310', '-510.090912', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66332, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928900', 3928900, '-397.867401', '24.621420', '-483.869110', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66060, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928902', 3928902, '-395.742706', '24.800859', '-486.720215', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65788, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928905', 3928905, '-372.182800', '14.915100', '-682.187012', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65438, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928915', 3928915, '-343.109711', '14.951240', '-708.646729', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65166, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928916', 3928916, '-336.488098', '15.011050', '-702.973022', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64894, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928917', 3928917, '-342.475098', '14.886180', '-699.100403', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64622, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928918', 3928918, '-346.725800', '15.000050', '-648.932983', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64350, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928919', 3928919, '-360.611603', '15.143860', '-728.342285', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64078, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928920', 3928920, '-369.109985', '17.086229', '-625.858582', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63806, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928921', 3928921, '-368.551208', '14.932670', '-677.304016', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63534, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928922', 3928922, '-289.976898', '15.036210', '-766.856018', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928923', 3928923, '-329.499603', '13.228890', '-734.741028', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63074, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928924', 3928924, '-308.522186', '13.199010', '-741.054382', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62802, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928926', 3928926, '-330.769806', '14.999570', '-781.734985', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928927', 3928927, '-282.568512', '14.996440', '-714.049622', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928928', 3928928, '-288.031189', '15.033810', '-704.314270', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928929', 3928929, '-340.138885', '14.999570', '-765.682495', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928930', 3928930, '-375.273102', '24.057680', '-530.949707', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61364, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928931', 3928931, '-376.594513', '24.104771', '-528.967224', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61092, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928932', 3928932, '-385.780304', '23.495701', '-548.185181', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60820, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928933', 3928933, '-388.991913', '23.634899', '-551.127014', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60548, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928934', 3928934, '-380.102814', '23.848009', '-554.942871', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60276, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928935', 3928935, '-383.823486', '24.014250', '-580.209229', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60004, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928936', 3928936, '-384.645203', '22.916321', '-600.375427', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928937', 3928937, '-382.814087', '22.623171', '-601.962280', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc3928938', 3928938, '-160.448700', '15.121640', '-740.138916', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928939', 3928939, '-163.418106', '15.126450', '-733.144714', 109, 0, 0, 0, 1, 6, 0, 0, 310, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59006, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928940', 3928940, '-154.855392', '15.126450', '-735.291016', 111, 0, 0, 0, 1, 6, 0, 0, 312, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928941', 3928941, '-184.969193', '15.126200', '-748.799011', 111, 0, 0, 0, 1, 6, 0, 0, 312, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928942', 3928942, '-245.304596', '14.639280', '-736.399902', 109, 0, 0, 0, 1, 6, 0, 0, 310, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58190, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928943', 3928943, '-208.907501', '15.126340', '-737.954224', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928944', 3928944, '-177.706696', '15.126430', '-724.218872', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928945', 3928945, '129.798294', '53.983780', '241.581604', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc3928946', 3928946, '358.728088', '75.113953', '188.477402', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4057505', 4057505, '425.836700', '93.949097', '147.345596', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.500000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23758, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(215, 'go003', 'bnpc4057530', 4057530, '246.828796', '52.038040', '143.148804', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.800000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23492, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(215, 'go003', 'bnpc4057532', 4057532, '209.687393', '52.005539', '110.727303', 797, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23226, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(215, 'go003', 'bnpc4057541', 4057541, '192.848099', '52.038040', '162.149994', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22942, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(215, 'go003', 'bnpc4057553', 4057553, '108.028297', '49.844238', '-189.682297', 798, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22688, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(215, 'go003', 'bnpc4057563', 4057563, '-82.688713', '15.467950', '-260.648010', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(215, 'go003', 'bnpc4057572', 4057572, '-436.003998', '23.000170', '-484.805511', 791, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22150, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(215, 'go003', 'bnpc4190759', 4190759, '-345.540588', '14.999600', '-775.448181', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57362, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(215, 'go003', 'bnpc4267191', 4267191, '-707.860779', '67.740463', '-822.422119', 1439, 0, 0, 0, 0, 6, 0, 0, 2160, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57014, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4267197', 4267197, '-665.501282', '62.452560', '-807.101318', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56748, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4267200', 4267200, '-665.515930', '62.330540', '-804.663086', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56476, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4267201', 4267201, '-678.426575', '63.899670', '-816.868713', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56204, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4267202', 4267202, '-697.547180', '65.602493', '-808.171204', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55932, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4267203', 4267203, '-691.117920', '65.001953', '-800.783875', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55660, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4267204', 4267204, '-707.367920', '67.125900', '-815.833374', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55388, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4267205', 4267205, '-691.542114', '65.307541', '-815.101807', 434, 0, 0, 0, 0, 6, 0, 0, 2160, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4296870', 4296870, '242.172607', '52.038120', '112.691498', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20750, 8, 0, 0, 4296864, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4296871', 4296871, '246.709503', '52.038120', '124.038902', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20478, 8, 0, 0, 4296863, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4296872', 4296872, '237.477707', '52.017941', '108.608101', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20206, 8, 0, 0, 4296858, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4296873', 4296873, '244.254303', '52.038120', '162.449799', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19934, 8, 0, 0, 4296867, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4296874', 4296874, '244.299103', '52.038120', '166.290298', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19662, 8, 0, 0, 4296868, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4308066', 4308066, '-421.159485', '44.462021', '-712.226013', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54672, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(215, 'go003', 'bnpc4308069', 4308069, '-514.378784', '51.624359', '-759.622498', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54400, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(215, 'go003', 'bnpc4308070', 4308070, '-599.843384', '57.051182', '-784.518921', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54128, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(215, 'go003', 'bnpc4308071', 4308071, '-656.681274', '62.116219', '-804.503601', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53856, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(215, 'go003', 'bnpc4308072', 4308072, '-492.048187', '50.155430', '-704.991577', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53590, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(215, 'go003', 'bnpc4308073', 4308073, '-517.815491', '50.450741', '-713.017395', 63, 0, 0, 0, 0, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53324, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(215, 'go003', 'bnpc4308074', 4308074, '-456.002014', '51.014610', '-752.579285', 55, 0, 0, 0, 0, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53058, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(215, 'go003', 'bnpc4308075', 4308075, '-495.700897', '50.855309', '-742.115417', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52792, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(215, 'go003', 'bnpc4308082', 4308082, '-441.168610', '50.899448', '-705.323914', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52514, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(215, 'go003', 'bnpc4308083', 4308083, '-518.314270', '50.452862', '-714.412109', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52224, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(215, 'go003', 'bnpc4308084', 4308084, '-479.211487', '51.372540', '-761.453186', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51964, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(215, 'go003', 'bnpc4308085', 4308085, '-402.046509', '49.868610', '-739.848206', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51704, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(215, 'go003', 'bnpc4308086', 4308086, '-454.328613', '50.848831', '-752.713074', 64, 0, 0, 0, 0, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51414, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(215, 'go003', 'bnpc4308091', 4308091, '-536.909607', '51.647678', '-772.339600', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51154, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(215, 'go003', 'bnpc4308092', 4308092, '-566.559387', '53.197552', '-772.416382', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50870, 1, 0, 0, 0, 0, 30096, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(215, 'go003', 'bnpc4308093', 4308093, '-534.190186', '55.472980', '-738.915771', 62, 0, 0, 0, 1, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50592, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(215, 'go003', 'bnpc4308094', 4308094, '-570.383728', '53.322189', '-740.588013', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(215, 'go003', 'bnpc4308095', 4308095, '-576.705811', '54.865730', '-790.850830', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50060, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(215, 'go003', 'bnpc4308096', 4308096, '-598.254211', '63.233582', '-755.445496', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49788, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(215, 'go003', 'bnpc4308097', 4308097, '-601.317322', '62.751640', '-757.922485', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49510, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(215, 'go003', 'bnpc4308098', 4308098, '-621.487915', '61.777660', '-742.445374', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49256, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(215, 'go003', 'bnpc4308099', 4308099, '-621.786072', '58.863022', '-795.647095', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48978, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(215, 'go003', 'bnpc4308100', 4308100, '-646.074890', '61.267559', '-800.385315', 62, 0, 0, 0, 1, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48688, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(215, 'go003', 'bnpc4308102', 4308102, '-555.229980', '53.299679', '-753.444702', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4308104', 4308104, '-410.261810', '51.000069', '-758.953003', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48174, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4308105', 4308105, '-468.451904', '50.148300', '-723.755676', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4308109', 4308109, '-626.947510', '60.044189', '-813.534790', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47630, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4308112', 4308112, '-635.044800', '58.894249', '-777.102417', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4308164', 4308164, '-544.952698', '55.549671', '-803.447388', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47086, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(215, 'go003', 'bnpc4510228', 4510228, '320.279907', '67.275337', '234.176498', 793, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21884, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(215, 'go003', 'bnpc4621821', 4621821, '-91.708687', '15.670890', '217.180496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24120, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc1368411', 1368411, '-66.155998', '-12.582840', '-8.814363', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc1368412', 1368412, '-64.537338', '-12.499180', '-8.712757', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc1368413', 1368413, '-62.951370', '-12.426580', '-8.677147', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc1368414', 1368414, '-61.258369', '-12.364150', '-8.589471', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc1368416', 1368416, '-66.693230', '-12.961350', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212726, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc1368417', 1368417, '-64.495934', '-12.860610', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc1368418', 1368418, '-62.481739', '-12.772990', '-13.472360', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc1368419', 1368419, '-60.162369', '-12.662670', '-13.441840', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc1368420', 1368420, '-69.467598', '-13.149620', '-18.035919', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211644, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc1368440', 1368440, '-65.325943', '-13.142030', '-18.046921', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211372, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc1368441', 1368441, '-61.416431', '-13.052980', '-18.065041', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211100, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc1368442', 1368442, '-57.492748', '-12.665620', '-17.741350', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210828, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746473', 3746473, '-134.012207', '9.916103', '267.132690', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208458, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746474', 3746474, '-139.248093', '11.343600', '270.767487', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208186, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746475', 3746475, '-116.714996', '8.743372', '266.243988', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207914, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746477', 3746477, '-123.143700', '11.980280', '281.311798', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207642, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746478', 3746478, '-128.526794', '6.043580', '250.778503', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207370, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746481', 3746481, '-87.065170', '8.131585', '270.853210', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207098, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746484', 3746484, '-77.385406', '9.277164', '278.146301', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206826, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746485', 3746485, '-79.850502', '9.815605', '280.807892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206554, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746486', 3746486, '-57.801540', '7.714478', '280.245697', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206282, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746487', 3746487, '-32.103970', '8.045358', '306.695404', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206010, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746488', 3746488, '-33.263660', '8.805240', '310.174408', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205738, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746489', 3746489, '-23.206301', '7.924604', '316.282593', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205466, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746490', 3746490, '-1.823452', '12.616180', '355.344391', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205194, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746491', 3746491, '1.058939', '11.460450', '352.323212', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204922, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746492', 3746492, '-1.840275', '11.813140', '350.644714', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204650, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746493', 3746493, '-56.592079', '0.108709', '220.398895', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204378, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746494', 3746494, '-56.292080', '3.881968', '249.628098', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204106, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746495', 3746495, '-31.334530', '2.359202', '278.398193', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203834, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746496', 3746496, '-104.320801', '1.025299', '207.824005', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203562, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746498', 3746498, '7.768722', '1.031246', '256.953094', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203290, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746499', 3746499, '-123.605797', '2.842937', '210.266296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203018, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746500', 3746500, '30.048519', '10.050760', '356.964386', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202746, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746501', 3746501, '-97.688263', '-3.294564', '184.145203', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202474, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746503', 3746503, '-99.971313', '-3.426347', '180.765198', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202202, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746505', 3746505, '-87.144318', '-1.876907', '198.901306', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201930, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746506', 3746506, '-47.697250', '-4.439452', '201.516296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201658, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746507', 3746507, '-14.522570', '0.676844', '242.620300', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201386, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746508', 3746508, '-11.261070', '0.694751', '245.484695', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201114, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746514', 3746514, '-119.246803', '8.981372', '268.429688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155702, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746519', 3746519, '-132.127899', '6.316744', '252.007797', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155974, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746522', 3746522, '-155.544296', '14.321210', '274.575500', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156246, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746523', 3746523, '-155.193604', '7.549813', '251.117706', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155430, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746524', 3746524, '-92.355728', '5.076609', '248.889801', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154614, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746525', 3746525, '-107.799896', '1.451139', '209.227798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154886, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746526', 3746526, '-114.793701', '4.013075', '226.245499', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155158, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746527', 3746527, '28.597651', '13.168800', '391.636688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157606, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746528', 3746528, '-93.669998', '-2.292831', '193.599503', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157878, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746529', 3746529, '-86.737587', '1.982069', '218.821899', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158150, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746530', 3746530, '-94.103600', '-4.710398', '174.915298', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157334, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746532', 3746532, '-55.083771', '1.032392', '224.458603', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156518, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746533', 3746533, '-52.324100', '-0.635104', '220.185806', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156790, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746534', 3746534, '-52.024101', '-4.438385', '196.025299', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157062, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746535', 3746535, '-23.599480', '-4.862183', '218.164505', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162774, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746536', 3746536, '-2.930916', '14.263170', '364.690308', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165222, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746538', 3746538, '-40.705959', '2.362750', '241.470093', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165494, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746539', 3746539, '-66.280632', '6.869143', '269.246704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165766, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746541', 3746541, '4.373672', '4.711559', '297.562012', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164950, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746542', 3746542, '-63.836632', '11.354730', '293.474915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164134, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746543', 3746543, '-67.036057', '11.719290', '294.869385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164406, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746544', 3746544, '-40.587990', '10.584770', '307.244690', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164678, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746545', 3746545, '-18.006081', '5.176353', '307.655609', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159510, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746547', 3746547, '13.581710', '5.033936', '280.057404', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746557', 3746557, '59.891609', '12.558130', '450.125793', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746560', 3746560, '49.054600', '13.360080', '439.790100', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746579', 3746579, '-107.428101', '5.098667', '239.118896', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746589', 3746589, '15.346860', '15.164520', '392.385712', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200842, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746592', 3746592, '14.522880', '15.407670', '396.017303', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200570, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746594', 3746594, '34.258789', '14.106760', '421.936798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159782, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746595', 3746595, '60.659401', '11.900060', '438.181702', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160054, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746616', 3746616, '55.188671', '13.295150', '508.984802', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159238, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746617', 3746617, '66.524231', '10.880620', '515.488220', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200298, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746618', 3746618, '49.532551', '14.712430', '506.886414', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200026, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746619', 3746619, '50.356541', '14.371650', '503.254791', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199754, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746620', 3746620, '59.248550', '11.443580', '491.395813', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199482, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746621', 3746621, '87.897888', '3.259133', '489.249908', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158422, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746622', 3746622, '84.418831', '4.091218', '486.350708', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158694, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746623', 3746623, '46.372120', '15.609930', '520.347778', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158966, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746624', 3746624, '84.031380', '8.407674', '556.939026', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199210, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746625', 3746625, '89.244087', '6.908536', '552.574890', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198938, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746626', 3746626, '105.598701', '4.370574', '521.843201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198666, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746628', 3746628, '107.891403', '6.906938', '609.728882', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161414, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746629', 3746629, '160.979904', '10.423200', '445.205414', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746630', 3746630, '189.060593', '11.863390', '607.536072', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746688', 3746688, '86.533859', '11.154300', '622.308594', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198394, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746689', 3746689, '77.714149', '12.588650', '626.672729', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198122, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746690', 3746690, '81.986671', '11.825690', '632.593201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197850, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746691', 3746691, '42.256569', '15.522670', '621.038330', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197578, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746692', 3746692, '36.528320', '15.730630', '626.060913', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197306, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746693', 3746693, '33.963001', '15.853820', '622.955627', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197034, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746694', 3746694, '54.517780', '14.477480', '614.387390', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160870, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746695', 3746695, '75.144310', '14.202080', '664.210083', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160598, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746697', 3746697, '71.776787', '14.357050', '666.349792', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196762, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746699', 3746699, '110.074799', '9.705235', '672.023499', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196490, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746700', 3746700, '105.802299', '9.833974', '666.103027', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196218, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746701', 3746701, '114.622002', '9.802178', '661.738892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195946, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746702', 3746702, '102.630096', '9.930755', '678.326416', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160326, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746703', 3746703, '124.601700', '9.267537', '672.118774', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161142, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746704', 3746704, '139.915802', '3.409252', '629.204895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161958, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746706', 3746706, '148.317993', '4.103824', '654.705994', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195674, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746707', 3746707, '140.430801', '4.620288', '650.824585', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195402, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746708', 3746708, '144.703293', '4.162472', '656.745178', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195130, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3746728', 3746728, '105.175301', '7.446661', '611.285278', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161686, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746741', 3746741, '123.709900', '4.546344', '401.381409', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746744', 3746744, '119.896500', '4.229595', '400.430603', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746745', 3746745, '121.385498', '4.562400', '415.457306', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746747', 3746747, '94.951797', '4.409234', '415.757996', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746748', 3746748, '98.573242', '3.713897', '402.903290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746753', 3746753, '105.931702', '3.887046', '438.676788', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746754', 3746754, '103.130402', '3.837232', '441.897888', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746756', 3746756, '101.549301', '2.579426', '385.163391', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746757', 3746757, '126.748802', '2.272390', '326.781708', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746762', 3746762, '128.648804', '2.609246', '322.621399', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746767', 3746767, '115.312401', '0.839199', '310.200592', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746769', 3746769, '60.052872', '2.658700', '301.575806', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746771', 3746771, '66.487648', '2.270967', '295.222290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746772', 3746772, '59.572800', '2.550388', '279.994904', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746773', 3746773, '39.864429', '5.507329', '295.432587', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746775', 3746775, '28.239599', '1.102737', '258.417786', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746782', 3746782, '33.012630', '-0.000074', '236.507797', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746783', 3746783, '30.472219', '1.540232', '261.602997', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746790', 3746790, '40.329552', '0.198320', '191.668503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746791', 3746791, '42.740471', '0.381429', '188.281006', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189696, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746792', 3746792, '21.316620', '-1.942127', '212.041397', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189424, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746795', 3746795, '33.488029', '0.135540', '209.757507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189152, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746800', 3746800, '79.875580', '17.322849', '153.453400', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188880, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746801', 3746801, '86.274673', '14.097900', '174.830002', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188608, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746802', 3746802, '82.595718', '17.371531', '156.113602', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188336, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746803', 3746803, '68.047150', '12.851960', '169.148697', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188064, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746805', 3746805, '145.186905', '14.265870', '303.993011', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187792, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746806', 3746806, '134.595795', '15.951970', '271.548492', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187520, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746807', 3746807, '129.378799', '14.996020', '276.045807', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187248, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746808', 3746808, '102.709000', '6.216220', '218.986298', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186976, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746815', 3746815, '104.478500', '3.524787', '410.177704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162502, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746820', 3746820, '134.782898', '6.790217', '393.331787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162230, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746821', 3746821, '109.756599', '2.337350', '358.451385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163046, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746826', 3746826, '100.612602', '0.927920', '320.347412', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163862, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746828', 3746828, '122.748901', '1.776996', '318.298187', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163590, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746831', 3746831, '90.791931', '1.666962', '266.808197', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163318, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746834', 3746834, '115.643402', '6.086327', '252.986206', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153254, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746835', 3746835, '116.878197', '7.099676', '249.317596', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152982, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746839', 3746839, '134.754898', '15.738220', '277.605591', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152710, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746842', 3746842, '138.416901', '14.910950', '291.298401', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153526, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746843', 3746843, '69.640907', '10.773730', '192.122192', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154342, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746844', 3746844, '80.370789', '14.464900', '168.592697', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154070, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746845', 3746845, '58.563480', '13.422550', '142.645203', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153798, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746846', 3746846, '84.523247', '19.105749', '150.735306', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151350, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746847', 3746847, '44.427238', '1.305627', '214.361099', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151078, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746848', 3746848, '17.726910', '-2.276831', '214.661102', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150806, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746850', 3746850, '23.742001', '2.113425', '263.454895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151622, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746857', 3746857, '39.223301', '5.294607', '322.688812', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152438, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746859', 3746859, '72.028061', '7.308271', '404.591492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152166, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746861', 3746861, '127.672203', '6.607109', '430.716309', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151894, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746864', 3746864, '165.074600', '12.246150', '482.778503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186704, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746867', 3746867, '168.492706', '12.057270', '478.475494', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186432, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746868', 3746868, '162.989304', '12.037260', '478.563507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186160, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746870', 3746870, '159.288895', '10.574450', '408.590790', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185888, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746871', 3746871, '163.653000', '10.757560', '411.825714', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185616, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746872', 3746872, '180.336197', '12.793920', '406.002014', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185344, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746873', 3746873, '161.736893', '16.236589', '388.045105', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185072, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746876', 3746876, '133.837296', '9.269427', '459.531403', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184800, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746878', 3746878, '131.557098', '8.976067', '457.624695', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184528, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746880', 3746880, '120.227203', '8.368025', '485.318115', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184256, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746885', 3746885, '134.445908', '12.144460', '507.273987', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183984, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746887', 3746887, '131.554993', '12.056210', '504.412415', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183712, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746889', 3746889, '140.997406', '11.949580', '487.139313', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183440, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746891', 3746891, '177.389404', '11.185200', '525.833618', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183168, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746894', 3746894, '180.637207', '11.258170', '523.414673', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182896, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746896', 3746896, '163.836105', '12.375020', '511.253387', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182624, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746898', 3746898, '147.262100', '7.242397', '543.931824', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182352, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746902', 3746902, '159.838196', '8.834927', '539.787781', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182080, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746905', 3746905, '155.880402', '7.197376', '556.779175', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181808, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746908', 3746908, '158.138794', '8.079927', '559.495300', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181536, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746910', 3746910, '143.386200', '7.563845', '583.138916', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181264, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746911', 3746911, '141.779205', '7.213043', '585.132019', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180992, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746913', 3746913, '138.754898', '6.737441', '570.297424', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180720, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746914', 3746914, '149.117798', '6.128607', '602.883972', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180448, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746915', 3746915, '169.704697', '11.348940', '603.184021', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180176, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746916', 3746916, '180.008804', '11.209140', '617.096130', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179904, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746917', 3746917, '182.074905', '11.129530', '618.747620', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179632, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746918', 3746918, '203.008896', '12.064710', '597.300476', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179360, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746919', 3746919, '222.377304', '10.658940', '600.289978', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179088, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746920', 3746920, '219.857101', '10.195060', '606.104126', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178816, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746921', 3746921, '216.053207', '12.886560', '579.694885', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178544, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746922', 3746922, '254.440308', '11.644550', '583.224670', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178272, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746923', 3746923, '187.395996', '12.680200', '480.674408', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178000, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746925', 3746925, '122.484100', '8.621300', '468.558685', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174198, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746927', 3746927, '152.697006', '11.123780', '465.049103', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173382, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746928', 3746928, '200.189301', '12.546850', '452.841888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173654, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746929', 3746929, '184.320801', '12.674630', '482.649414', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174470, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746930', 3746930, '161.638794', '12.497090', '508.781494', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175286, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746932', 3746932, '134.477707', '12.039320', '494.041290', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175558, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746933', 3746933, '157.244202', '8.895963', '538.017822', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174742, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746934', 3746934, '145.677795', '11.978280', '517.051880', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175014, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746937', 3746937, '112.465202', '5.551401', '523.979492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168486, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746941', 3746941, '164.965195', '10.635490', '582.482483', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168214, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746945', 3746945, '140.062500', '7.095398', '581.505981', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167942, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746946', 3746946, '126.004097', '4.418174', '596.074219', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169302, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746951', 3746951, '205.096497', '11.978280', '595.452820', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169030, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(216, 'go004', 'bnpc3746954', 3746954, '201.556396', '10.391350', '620.202881', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168758, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746956', 3746956, '223.407303', '9.658914', '609.063782', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167670, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746958', 3746958, '230.853699', '7.095398', '629.480286', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166582, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746959', 3746959, '228.412201', '6.607109', '632.684814', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166310, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746960', 3746960, '250.843002', '10.543940', '603.967285', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166038, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746962', 3746962, '251.148193', '11.947770', '580.346313', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167398, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746963', 3746963, '236.801498', '16.670509', '560.962524', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167126, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746965', 3746965, '239.996399', '16.684830', '564.761475', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166854, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746966', 3746966, '219.876907', '16.677370', '559.278870', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169574, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746967', 3746967, '255.603806', '16.647539', '552.574890', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172294, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746968', 3746968, '261.768494', '13.412630', '571.068787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172022, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746969', 3746969, '261.341187', '16.678061', '523.765930', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171750, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746970', 3746970, '263.263885', '16.647539', '520.866577', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173110, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746971', 3746971, '247.730194', '16.647539', '499.259888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172838, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746972', 3746972, '210.126297', '16.670370', '499.584686', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172566, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746973', 3746973, '206.265198', '16.709129', '502.872498', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171478, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746974', 3746974, '201.359299', '16.670370', '525.525696', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170390, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746975', 3746975, '199.202896', '16.634470', '546.190796', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170118, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746976', 3746976, '201.042099', '16.670389', '547.166199', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169846, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3746983', 3746983, '47.837040', '20.883829', '-297.468597', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79320, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3746984', 3746984, '30.218941', '19.809231', '-261.464111', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80402, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(216, 'go004', 'bnpc3746985', 3746985, '45.726398', '19.952000', '-251.705505', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79048, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3746988', 3746988, '37.782612', '19.928471', '-277.190186', 736, 0, 0, 0, 1, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80130, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3746992', 3746992, '32.101620', '19.979660', '-229.510406', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79858, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(216, 'go004', 'bnpc3746993', 3746993, '32.891548', '19.908630', '-233.898605', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78776, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(216, 'go004', 'bnpc3746997', 3746997, '-40.889229', '-6.750034', '159.270004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88278, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747003', 3747003, '-38.858761', '-6.750058', '155.119003', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88550, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747004', 3747004, '-21.989389', '-6.750032', '151.563995', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87190, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747006', 3747006, '-1.016211', '-6.750022', '160.127197', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89638, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747009', 3747009, '3.375875', '-6.751163', '164.669601', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89910, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747010', 3747010, '5.926142', '-6.750027', '161.728195', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89366, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747012', 3747012, '22.984619', '-6.750012', '165.561600', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89094, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747015', 3747015, '30.818211', '-6.750096', '148.130096', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88822, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747018', 3747018, '-6.179034', '-6.750058', '138.765106', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90182, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747019', 3747019, '-2.610643', '-6.750058', '141.990707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87734, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747021', 3747021, '-15.651240', '-6.750003', '122.209503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87462, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747022', 3747022, '-52.276199', '-6.750027', '169.793900', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88006, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747028', 3747028, '-73.794739', '-6.750006', '155.086899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91814, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747033', 3747033, '-84.128677', '-6.750047', '148.117004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90454, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747034', 3747034, '-88.289063', '-6.750033', '145.505707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90998, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747037', 3747037, '-81.662231', '-6.750007', '162.451996', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91542, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747042', 3747042, '-100.621399', '-6.750030', '133.779007', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91270, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747078', 3747078, '174.099396', '10.387860', '561.876526', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177728, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747306', 3747306, '166.825607', '12.296140', '403.792114', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171206, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747310', 3747310, '155.935303', '9.673933', '431.016296', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170934, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747330', 3747330, '-88.883842', '-0.106860', '109.147697', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747331', 3747331, '-61.120312', '0.636424', '88.682060', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747332', 3747332, '-80.643967', '-0.473077', '67.368530', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747333', 3747333, '-86.717056', '0.991789', '72.831261', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747336', 3747336, '-36.911621', '-3.830061', '32.700039', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747337', 3747337, '-40.695862', '-4.928711', '25.589331', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747338', 3747338, '-11.550680', '0.488563', '-28.281300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747339', 3747339, '17.013760', '3.036498', '-38.223900', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747340', 3747340, '-58.237549', '-4.110259', '-107.568703', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110020, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747341', 3747341, '-67.615173', '-4.777174', '-101.631897', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109476, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747342', 3747342, '-91.142181', '-0.778257', '-101.335197', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109748, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747344', 3747344, '-126.726303', '9.466410', '-79.290817', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110564, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747345', 3747345, '-162.798492', '10.177720', '-67.887444', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114644, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747347', 3747347, '-162.133194', '17.720350', '-97.090424', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114916, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747349', 3747349, '-170.820297', '17.510420', '-95.798119', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114372, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747353', 3747353, '-144.544800', '8.164017', '-26.941380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113828, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747356', 3747356, '-176.280701', '8.164456', '-26.641380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114100, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747358', 3747358, '-181.261993', '6.912290', '-21.225349', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116004, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747359', 3747359, '-207.415894', '10.971190', '-31.418369', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116276, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747362', 3747362, '-142.900803', '6.271411', '-160.784302', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115732, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747363', 3747363, '-153.948898', '13.420070', '-190.044296', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115188, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747364', 3747364, '-199.122604', '1.060047', '7.769498', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112468, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747365', 3747365, '-100.182404', '-4.169586', '5.823180', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112196, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747366', 3747366, '-162.648407', '1.476818', '27.867500', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112740, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747368', 3747368, '-228.292801', '1.271454', '31.448839', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113284, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747369', 3747369, '-281.000000', '1.547629', '6.098617', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113012, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747370', 3747370, '-292.305786', '1.883296', '3.669711', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110292, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747371', 3747371, '-289.186615', '0.923461', '44.489441', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111108, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747372', 3747372, '-331.967499', '-0.344346', '37.288601', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110836, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747373', 3747373, '-367.222809', '14.331700', '37.588600', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111380, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747374', 3747374, '-362.704590', '17.228571', '24.585470', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111924, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747376', 3747376, '-337.512299', '2.239006', '84.820068', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111652, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747380', 3747380, '-350.515015', '5.752604', '108.384804', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113556, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747385', 3747385, '-374.964294', '1.092578', '72.868820', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115460, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747388', 3747388, '-52.163811', '-2.028311', '119.953003', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147810, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747389', 3747389, '-86.052368', '0.110645', '102.987396', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147538, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747390', 3747390, '-74.317467', '-4.983451', '25.989620', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147266, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747391', 3747391, '-33.861969', '-6.175569', '6.276085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146994, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747393', 3747393, '13.815840', '0.849448', '-43.540058', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146722, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747394', 3747394, '-25.443001', '-6.505634', '-66.767128', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146450, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747395', 3747395, '-66.218620', '-2.263651', '-110.189796', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146178, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747396', 3747396, '-92.423927', '2.517692', '-129.686493', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747397', 3747397, '-120.059502', '11.096300', '-65.332710', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747398', 3747398, '-123.346199', '11.132750', '-62.877190', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747399', 3747399, '-135.404602', '3.017960', '-134.773499', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145090, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747400', 3747400, '-155.932007', '14.084030', '-185.687103', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747401', 3747401, '-176.806305', '20.096081', '-127.183998', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144546, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747402', 3747402, '-182.692200', '11.068910', '-54.575550', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144274, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747403', 3747403, '-188.219101', '8.602026', '-26.668791', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144002, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747404', 3747404, '-125.142403', '-1.327417', '12.701530', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143730, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747405', 3747405, '-142.871094', '-0.211552', '-0.011758', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143458, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747406', 3747406, '-188.977707', '1.185343', '0.288242', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143186, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747407', 3747407, '-196.063202', '-0.991883', '44.632591', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747408', 3747408, '-198.598099', '-1.427130', '46.344830', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142642, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747409', 3747409, '-265.374908', '-0.871808', '46.644829', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747410', 3747410, '-245.222107', '0.679796', '27.065580', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747411', 3747411, '-236.532196', '4.119698', '-11.326280', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747413', 3747413, '-237.229904', '7.081615', '-22.989599', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141554, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747414', 3747414, '-238.542206', '7.219037', '-24.718719', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747415', 3747415, '-245.215302', '6.500818', '-25.125641', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747417', 3747417, '-335.459198', '7.751451', '2.210185', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747419', 3747419, '-332.434692', '-0.635067', '45.192638', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747420', 3747420, '-338.391815', '2.787159', '90.300163', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140194, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747635', 3747635, '-101.580002', '3.185857', '-122.629700', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747636', 3747636, '-113.067703', '0.190863', '-235.496902', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747637', 3747637, '-8.689189', '-2.987621', '-71.427528', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747853', 3747853, '-210.928299', '22.971910', '-101.417801', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82028, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3747854', 3747854, '-210.061996', '22.349720', '-98.801086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82844, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3747855', 3747855, '-199.564606', '24.777719', '-122.897400', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82572, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3747856', 3747856, '-217.284500', '27.674749', '-122.597397', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81756, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(216, 'go004', 'bnpc3747858', 3747858, '-217.212097', '28.120930', '-124.432098', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81212, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(216, 'go004', 'bnpc3747859', 3747859, '-208.813400', '29.458891', '-133.137894', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80940, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3747860', 3747860, '-223.520599', '24.171949', '-95.828552', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81484, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3747864', 3747864, '-228.529297', '20.575800', '-76.218086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85564, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3747865', 3747865, '-241.385498', '18.354990', '-63.139381', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85292, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3747867', 3747867, '-243.216904', '18.379009', '-62.623611', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86380, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3747868', 3747868, '-255.936401', '24.723961', '-77.803009', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86108, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3747869', 3747869, '-267.446411', '25.988930', '-78.509064', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85836, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(216, 'go004', 'bnpc3747870', 3747870, '-266.262207', '26.413910', '-80.013046', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86924, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(216, 'go004', 'bnpc3747873', 3747873, '-288.302704', '28.840969', '-91.487991', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86652, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3747874', 3747874, '-273.846008', '27.999920', '-103.128998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83660, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3747876', 3747876, '-257.572906', '27.938169', '-88.810738', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83932, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3747877', 3747877, '-234.919403', '27.970850', '-103.431198', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84476, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(216, 'go004', 'bnpc3747880', 3747880, '-245.382996', '27.999990', '-107.453003', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83116, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3747881', 3747881, '-254.081406', '28.000000', '-102.002197', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84204, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(216, 'go004', 'bnpc3747883', 3747883, '-258.959106', '28.000000', '-105.536201', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82300, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3747884', 3747884, '-251.270294', '27.969730', '-102.616898', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85020, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(216, 'go004', 'bnpc3747886', 3747886, '-248.655701', '28.000000', '-96.725998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84748, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3747889', 3747889, '-248.153000', '28.470831', '-127.263100', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83388, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(216, 'go004', 'bnpc3747891', 3747891, '-234.992294', '9.310618', '-37.905788', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139922, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747893', 3747893, '-237.711700', '8.873294', '-42.033760', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139650, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747899', 3747899, '-214.038300', '-30.502831', '123.735397', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139384, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747900', 3747900, '-250.516998', '-31.060820', '85.115646', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139118, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747904', 3747904, '-201.968796', '-30.857059', '117.357803', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138840, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747905', 3747905, '-183.124893', '-31.750071', '106.885902', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138568, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747906', 3747906, '-185.311996', '-31.750059', '109.415100', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138296, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747907', 3747907, '-152.843002', '-31.750000', '109.715103', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138024, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747908', 3747908, '-166.101105', '-31.750000', '110.540100', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137758, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747909', 3747909, '-169.604507', '-27.712351', '77.843430', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137486, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747910', 3747910, '-167.071503', '-27.177780', '76.317528', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137214, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747911', 3747911, '-210.234406', '-30.382589', '95.879173', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136942, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747913', 3747913, '-195.861603', '-27.444660', '129.920502', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136670, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747914', 3747914, '-224.566406', '-31.750071', '110.176003', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136398, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747915', 3747915, '-263.312103', '-31.750090', '97.519081', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136126, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747916', 3747916, '-255.968094', '-31.750130', '95.789261', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135848, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747919', 3747919, '-211.436401', '-30.614429', '97.981651', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135576, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747921', 3747921, '-244.620895', '-28.275660', '117.486801', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135304, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747922', 3747922, '-225.970795', '-15.579620', '71.709572', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135026, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747923', 3747923, '-170.891495', '-26.165300', '72.662949', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134754, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747924', 3747924, '-154.802902', '-29.800900', '94.071899', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134482, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747925', 3747925, '-164.402603', '-31.750019', '112.296303', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747927', 3747927, '-213.131393', '-30.063490', '125.099403', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747928', 3747928, '-234.579193', '-29.342421', '117.079697', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747930', 3747930, '-206.002899', '-30.332180', '97.422249', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747931', 3747931, '-258.774902', '-31.750071', '93.732712', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747933', 3747933, '-124.520401', '25.876591', '-384.084900', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117364, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747935', 3747935, '-120.378502', '25.406219', '-376.089111', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117636, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747936', 3747936, '-71.168182', '15.618890', '-341.319214', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117908, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747937', 3747937, '-140.945007', '34.283039', '-443.520813', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116548, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747945', 3747945, '-104.844803', '10.208240', '-322.407898', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116820, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747953', 3747953, '-68.964897', '24.845461', '-295.047913', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117092, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747955', 3747955, '-30.148661', '20.242010', '-347.723907', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118180, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747958', 3747958, '-20.706499', '20.599291', '-342.888702', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118724, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747963', 3747963, '20.322849', '15.975690', '-350.654205', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118996, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747965', 3747965, '39.420231', '19.301970', '-356.003815', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119268, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3747975', 3747975, '-138.811401', '27.237310', '-416.372986', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747994', 3747994, '-93.431030', '7.583686', '-301.106293', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3747997', 3747997, '-65.966766', '21.859249', '-305.947601', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748004', 3748004, '-66.655212', '20.943001', '-309.725586', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748006', 3748006, '-38.712181', '21.255770', '-344.167297', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748009', 3748009, '-93.684303', '18.821621', '-371.862793', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748015', 3748015, '-113.144402', '27.605829', '-397.741913', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131490, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748017', 3748017, '-112.844398', '28.132500', '-450.977997', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748018', 3748018, '-108.119003', '27.149870', '-454.027008', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748020', 3748020, '-152.178299', '27.511971', '-419.668915', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748022', 3748022, '35.132519', '17.855400', '-352.433105', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748394', 3748394, '65.413780', '20.079309', '-340.723206', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748396', 3748396, '-140.276199', '-3.219701', '-317.433502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748397', 3748397, '-147.234299', '-4.593012', '-324.147400', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748399', 3748399, '-210.589798', '1.083344', '-288.624390', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748402', 3748402, '-72.186493', '11.340310', '-240.295197', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748407', 3748407, '-77.690918', '8.765988', '-234.389694', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748409', 3748409, '-50.269390', '11.709270', '-222.062698', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748410', 3748410, '-65.652512', '8.342214', '-211.891998', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748411', 3748411, '-21.376921', '8.231496', '-242.911896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748412', 3748412, '-16.418360', '6.341013', '-249.044601', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748413', 3748413, '-6.975120', '11.175980', '-282.658691', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106490, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748414', 3748414, '10.056190', '8.215180', '-250.173004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748415', 3748415, '5.360405', '-0.923770', '-218.657303', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748416', 3748416, '48.714218', '0.699683', '-174.900604', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748417', 3748417, '95.936577', '1.386500', '-186.119995', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748418', 3748418, '31.585911', '8.951487', '-139.193497', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748419', 3748419, '35.112041', '16.424919', '-113.143204', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748420', 3748420, '34.363049', '8.229201', '-145.052994', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748421', 3748421, '90.860474', '1.763928', '-189.065002', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748422', 3748422, '113.054001', '1.174898', '-202.746704', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748423', 3748423, '130.461395', '1.093745', '-233.497101', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748424', 3748424, '124.484100', '0.743076', '-229.449493', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748425', 3748425, '89.422256', '3.504610', '-218.853806', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748428', 3748428, '-184.704300', '-4.704755', '-317.082306', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748429', 3748429, '-177.061203', '-3.447654', '-291.626190', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748430', 3748430, '-168.688507', '-1.968461', '-348.439789', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102954, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748431', 3748431, '-142.835693', '-1.140769', '-353.109894', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748433', 3748433, '-167.528793', '6.179857', '-382.681000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748434', 3748434, '-192.189301', '-4.726788', '-315.063293', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97242, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748436', 3748436, '-213.360901', '-4.497713', '-340.979004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748437', 3748437, '-234.150696', '5.014801', '-286.084686', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98602, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748438', 3748438, '-218.334900', '17.160500', '-255.482300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748443', 3748443, '-212.971405', '13.338840', '-260.496307', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748479', 3748479, '-151.282501', '-4.870804', '-286.887787', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96698, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(216, 'go004', 'bnpc3748499', 3748499, '-178.949402', '6.440631', '-256.865692', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748520', 3748520, '-148.505096', '-5.306737', '-314.775085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748524', 3748524, '-185.881104', '-4.844985', '-310.895508', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748526', 3748526, '-164.369003', '1.507254', '-251.882507', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748528', 3748528, '-207.412399', '17.160610', '-247.635193', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748530', 3748530, '-229.519104', '3.459191', '-289.959412', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748532', 3748532, '-163.010803', '-1.945551', '-356.094696', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748534', 3748534, '-173.595505', '5.841309', '-388.489685', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748537', 3748537, '-232.440796', '-2.339301', '-322.417908', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127954, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748538', 3748538, '-251.794006', '-1.267901', '-386.990295', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748542', 3748542, '-234.040207', '-0.107224', '-383.030914', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748543', 3748543, '-272.222107', '0.687642', '-325.399811', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748545', 3748545, '-263.308685', '4.237235', '-309.758392', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748546', 3748546, '-252.162598', '0.152196', '-318.392395', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748548', 3748548, '-251.430496', '-2.982757', '-348.143311', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748549', 3748549, '-240.737198', '1.345172', '-393.418396', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748550', 3748550, '-242.828506', '-3.567687', '-364.035309', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748551', 3748551, '-250.630707', '-3.725200', '-363.735291', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748552', 3748552, '-213.087494', '1.112077', '-382.537415', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748553', 3748553, '-255.836105', '7.531438', '-290.196289', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748554', 3748554, '-246.018097', '-2.631598', '-372.254608', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748555', 3748555, '-236.562103', '3.655112', '-396.309387', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748557', 3748557, '-203.850494', '16.277430', '-409.920593', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748559', 3748559, '-242.042892', '18.601339', '-425.242401', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748564', 3748564, '-177.168198', '14.656220', '-411.592987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748565', 3748565, '-215.900406', '16.573481', '-408.014008', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748566', 3748566, '-221.473297', '17.321730', '-412.786896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748567', 3748567, '-236.289001', '19.116409', '-424.877502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748570', 3748570, '-254.304306', '22.347059', '-449.055695', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748654', 3748654, '-205.192398', '19.296721', '-445.294189', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748657', 3748657, '-207.202301', '25.558809', '-115.343002', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748660', 3748660, '-222.657104', '20.702950', '-78.345047', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748662', 3748662, '-247.438400', '20.240339', '-67.748871', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748663', 3748663, '-230.727005', '26.739140', '-98.761307', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748670', 3748670, '-271.961609', '27.969740', '-98.954803', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748672', 3748672, '-271.661285', '23.599831', '-70.352722', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748674', 3748674, '-231.617004', '30.324150', '-133.076996', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748726', 3748726, '33.854542', '6.542700', '-211.889801', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748728', 3748728, '55.167561', '0.798945', '-193.606598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748729', 3748729, '69.255318', '0.046956', '-152.350906', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748730', 3748730, '10.055020', '5.968488', '-132.156097', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123602, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748732', 3748732, '50.175282', '14.921620', '-128.489700', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748734', 3748734, '76.929573', '3.883048', '-205.706406', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748736', 3748736, '79.198738', '3.548813', '-202.087204', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748737', 3748737, '106.461601', '1.818933', '-204.985199', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748738', 3748738, '140.354401', '0.554754', '-232.614304', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122242, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748739', 3748739, '111.391197', '0.776695', '-238.240707', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748749', 3748749, '145.884293', '-1.750025', '-212.434097', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3748752', 3748752, '136.108398', '-1.750136', '-190.396194', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3748753', 3748753, '149.821106', '-1.750019', '-214.231293', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54188, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3748755', 3748755, '84.854179', '-1.750136', '-139.436905', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53916, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3748758', 3748758, '72.003227', '-1.750024', '-104.510002', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53644, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3748760', 3748760, '68.467178', '-1.754834', '-99.778793', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53372, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3748763', 3748763, '78.693497', '-3.269199', '-32.994751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53100, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3748765', 3748765, '68.721947', '-2.620518', '-49.466751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52828, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3748770', 3748770, '166.277496', '-1.754834', '-241.382507', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52556, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3748772', 3748772, '187.884293', '-1.754834', '-278.858704', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52284, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3748773', 3748773, '194.766006', '-1.750224', '-280.991394', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52012, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3748775', 3748775, '71.615707', '-3.621419', '-26.438259', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51740, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3748850', 3748850, '12.774460', '-6.750232', '111.257401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90726, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3748852', 3748852, '9.592600', '-6.750232', '107.837402', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92086, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3748876', 3748876, '11.520510', '1.022307', '-111.986000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748879', 3748879, '-129.259201', '2.487174', '-193.926895', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118452, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3748904', 3748904, '176.132706', '4.710299', '-187.304703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748905', 3748905, '158.969894', '2.732193', '-177.146698', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748906', 3748906, '191.563705', '2.176362', '-156.220703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748907', 3748907, '196.388000', '3.012704', '-160.659393', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748908', 3748908, '239.061295', '5.923066', '-187.296494', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748910', 3748910, '269.473785', '9.044052', '-198.574799', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748913', 3748913, '263.650208', '11.289570', '-202.903397', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748915', 3748915, '227.710297', '-1.205510', '-113.847603', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748923', 3748923, '231.280899', '-1.632762', '-106.462196', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748926', 3748926, '200.610306', '-1.358100', '-103.471497', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748930', 3748930, '207.171707', '-1.144474', '-84.519768', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748932', 3748932, '173.937500', '1.205416', '-81.071228', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73736, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748934', 3748934, '148.809097', '3.036994', '-133.465897', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73464, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748937', 3748937, '169.787094', '0.045730', '-115.892303', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73192, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748941', 3748941, '145.535507', '4.850001', '-129.478104', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72920, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748942', 3748942, '119.305603', '3.909301', '-132.622696', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72648, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748943', 3748943, '109.916496', '3.556486', '-129.240601', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748944', 3748944, '224.505905', '-2.975556', '-56.412651', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72104, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748945', 3748945, '175.332993', '6.489766', '-41.243931', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748946', 3748946, '186.449905', '4.165666', '-17.319040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748947', 3748947, '281.825989', '-9.100459', '2.598387', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71832, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748949', 3748949, '288.471710', '-11.734230', '-3.952133', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71560, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748950', 3748950, '278.492310', '-14.114640', '-37.338871', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71288, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748953', 3748953, '324.544098', '-13.504280', '-33.615669', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748954', 3748954, '329.030212', '-13.565320', '-29.770399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748955', 3748955, '356.861603', '-15.283880', '-44.573921', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748956', 3748956, '347.890411', '-17.502140', '8.102493', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748962', 3748962, '150.469193', '19.150021', '-76.524040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748963', 3748963, '146.044098', '19.581060', '-88.241302', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748964', 3748964, '117.082397', '20.462299', '-97.062683', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748967', 3748967, '142.873703', '16.403400', '-46.097549', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748968', 3748968, '400.991608', '-12.783140', '-32.000870', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748969', 3748969, '366.536896', '-16.189871', '-58.854092', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748970', 3748970, '415.234192', '-14.170130', '-62.547722', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748972', 3748972, '432.695709', '-16.065250', '-112.148399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748974', 3748974, '436.729889', '-14.846640', '-118.392700', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68840, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748976', 3748976, '441.284088', '-15.576560', '-96.939430', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68568, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748980', 3748980, '384.960602', '-17.809891', '-96.639427', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68296, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748986', 3748986, '389.761108', '-17.502140', '-101.701401', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3748990', 3748990, '391.353210', '-17.460060', '-135.489304', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749004', 3749004, '172.667496', '7.527369', '-42.066410', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749018', 3749018, '187.591705', '4.184689', '-15.078180', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749020', 3749020, '183.022797', '5.398401', '-15.566580', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749031', 3749031, '202.090393', '0.810960', '-15.619060', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749036', 3749036, '199.896393', '1.465439', '-15.630680', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749047', 3749047, '143.173706', '15.773830', '-43.893311', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749053', 3749053, '153.171097', '16.202070', '-56.630402', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749059', 3749059, '151.803696', '19.216890', '-78.848953', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749061', 3749061, '153.666504', '19.040461', '-76.088043', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749071', 3749071, '144.894501', '19.988741', '-106.295998', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749073', 3749073, '142.185501', '20.171949', '-108.059097', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749080', 3749080, '115.432404', '20.583151', '-99.077271', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749083', 3749083, '114.653099', '20.724030', '-96.549553', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749168', 3749168, '312.979492', '-19.718349', '-75.451233', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62252, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749170', 3749170, '261.730194', '-19.718349', '-82.128349', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61980, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749172', 3749172, '274.699402', '-19.718349', '-117.167198', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61708, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749173', 3749173, '291.363098', '-19.718349', '-136.065598', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749174', 3749174, '342.729797', '-19.718349', '-131.071106', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749175', 3749175, '353.724091', '-19.718349', '-85.215424', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749176', 3749176, '333.410095', '-19.718349', '-136.385498', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60620, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749177', 3749177, '319.949188', '-19.718349', '-179.156403', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60348, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749178', 3749178, '308.689301', '-19.718349', '-60.698299', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60142, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749180', 3749180, '311.695190', '-19.718349', '-58.346031', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59870, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749183', 3749183, '330.312012', '-19.729959', '-70.267838', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59598, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749186', 3749186, '296.119995', '-19.718349', '-90.360474', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59326, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749187', 3749187, '293.415802', '-19.718349', '-93.414520', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59054, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749188', 3749188, '290.216614', '-19.718349', '-87.193253', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58782, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749189', 3749189, '258.481415', '-19.718349', '-104.208000', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58510, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749190', 3749190, '252.984802', '-19.718349', '-103.640099', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58238, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749191', 3749191, '257.907715', '-19.718349', '-125.303101', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57966, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749192', 3749192, '286.451904', '-19.718349', '-129.699097', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57694, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749193', 3749193, '282.557892', '-19.718349', '-147.388199', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57422, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749195', 3749195, '310.290314', '-19.718349', '-172.318802', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57150, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749196', 3749196, '313.118591', '-19.718349', '-169.401993', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56878, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749197', 3749197, '310.587006', '-19.718349', '-142.173401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56606, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749199', 3749199, '350.892212', '-19.718349', '-150.816696', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56334, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749200', 3749200, '368.409302', '-19.718349', '-144.276596', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56062, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749201', 3749201, '364.918213', '-19.718349', '-140.378006', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55790, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749202', 3749202, '359.256592', '-19.718349', '-116.557503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55518, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749203', 3749203, '346.291199', '-19.718349', '-105.267899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55246, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749204', 3749204, '371.776215', '-19.718349', '-104.967796', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54974, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(216, 'go004', 'bnpc3749211', 3749211, '123.998703', '28.662880', '-17.350370', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51474, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(216, 'go004', 'bnpc3749213', 3749213, '121.332397', '28.612700', '-23.583090', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51208, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(216, 'go004', 'bnpc3749215', 3749215, '161.791397', '28.213881', '-14.786040', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50936, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(216, 'go004', 'bnpc3749218', 3749218, '137.021805', '28.624880', '-23.498341', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50658, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(216, 'go004', 'bnpc3749219', 3749219, '107.272903', '29.216610', '-36.643101', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749222', 3749222, '149.401093', '28.610600', '-15.610050', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50120, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(216, 'go004', 'bnpc3749223', 3749223, '148.790604', '28.610600', '-15.152280', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49842, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(216, 'go004', 'bnpc3749225', 3749225, '122.827698', '28.633169', '-37.359280', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749226', 3749226, '104.128304', '29.031771', '-49.110481', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49304, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(216, 'go004', 'bnpc3749235', 3749235, '93.149368', '29.525270', '-84.964371', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749239', 3749239, '67.895287', '30.429380', '-70.394157', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749240', 3749240, '65.047180', '30.255060', '-77.079674', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749241', 3749241, '44.682369', '28.535789', '-84.546478', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749242', 3749242, '66.806038', '29.155720', '-109.342300', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749245', 3749245, '204.538101', '7.350389', '-181.293304', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749246', 3749246, '174.853104', '5.172761', '-202.929794', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749247', 3749247, '263.069611', '8.545942', '-196.205307', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749252', 3749252, '231.435593', '1.119558', '-165.006302', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749253', 3749253, '173.375305', '2.771811', '-168.286102', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749255', 3749255, '157.126694', '3.796749', '-121.347397', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749257', 3749257, '115.770103', '4.592918', '-127.306099', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749275', 3749275, '161.730301', '-1.754834', '-239.398804', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749277', 3749277, '185.534393', '-1.754834', '-265.705414', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749279', 3749279, '210.539902', '-1.750040', '-309.299408', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749284', 3749284, '211.839401', '-1.750030', '-306.582611', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749290', 3749290, '143.733002', '-1.750026', '-193.558701', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749297', 3749297, '144.345306', '0.955883', '-165.104004', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749310', 3749310, '216.777496', '0.994229', '-97.056053', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749312', 3749312, '169.933899', '2.409006', '-84.351593', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749314', 3749314, '219.378906', '-3.433327', '-46.921539', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749321', 3749321, '277.040192', '-7.191899', '-0.686294', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749327', 3749327, '331.429810', '-13.937110', '-37.954071', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749332', 3749332, '384.322205', '-19.359289', '-5.627488', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749336', 3749336, '382.853088', '-20.412571', '-0.889114', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749338', 3749338, '359.951508', '-16.405090', '-60.846310', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749343', 3749343, '451.404602', '-11.420970', '-118.535599', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749351', 3749351, '384.249603', '-17.667879', '-125.562897', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749357', 3749357, '297.316589', '-19.718349', '-70.108559', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749359', 3749359, '289.558197', '-19.718349', '-103.097801', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749362', 3749362, '240.405807', '-18.104980', '-89.540627', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749364', 3749364, '283.065491', '-19.718349', '-125.167999', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749367', 3749367, '267.129913', '-18.000000', '-169.891296', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749369', 3749369, '264.685486', '-18.000000', '-168.247101', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749370', 3749370, '316.532898', '-19.718349', '-157.003693', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749371', 3749371, '353.619995', '-19.718349', '-109.615997', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749373', 3749373, '339.318695', '-19.718349', '-85.941147', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749376', 3749376, '165.671799', '11.656820', '-52.356880', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749380', 3749380, '172.813995', '6.716133', '-26.881840', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749388', 3749388, '191.772202', '-0.202088', '-35.283329', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749390', 3749390, '136.510300', '18.512560', '-57.480461', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749392', 3749392, '133.468002', '19.606770', '-81.872276', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749396', 3749396, '128.184402', '20.219101', '-102.714104', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749397', 3749397, '116.821999', '23.443171', '-63.701351', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749399', 3749399, '86.653412', '30.354231', '-83.224442', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749402', 3749402, '86.953407', '29.540970', '-103.119400', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3749404', 3749404, '58.939091', '30.914900', '-69.530090', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3751223', 3751223, '27.075630', '19.825541', '-258.167999', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79592, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(216, 'go004', 'bnpc3751224', 3751224, '25.641180', '19.827999', '-262.593201', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80674, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(216, 'go004', 'bnpc3751325', 3751325, '-86.401451', '-0.314426', '-202.187195', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3751326', 3751326, '-89.241432', '-0.377375', '-203.793503', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3751327', 3751327, '-54.347431', '10.746100', '-226.743500', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3751329', 3751329, '14.423480', '6.148088', '-236.752106', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3751331', 3751331, '-1.214684', '-0.950067', '-207.831497', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3751332', 3751332, '-12.497190', '11.337410', '-273.731598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3751350', 3751350, '12.680810', '9.512568', '-296.489288', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3751353', 3751353, '-5.330978', '16.424870', '-314.262909', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3751354', 3751354, '-110.742599', '-1.464606', '-173.727402', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3782203', 3782203, '-10.133880', '-3.109667', '-92.309822', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3782206', 3782206, '-5.820518', '-2.317021', '-88.935387', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3782208', 3782208, '-16.094000', '-4.734633', '-82.939987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3782210', 3782210, '-16.866150', '-3.490384', '-51.955761', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3782566', 3782566, '219.465393', '20.017179', '421.855988', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177456, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(216, 'go004', 'bnpc3782567', 3782567, '215.101303', '19.951290', '418.621094', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177184, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3782571', 3782571, '276.496490', '14.358410', '504.494598', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176912, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3782572', 3782572, '274.299194', '14.525580', '502.022614', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170662, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3782576', 3782576, '223.506195', '14.214930', '465.799103', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176640, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3782578', 3782578, '228.904907', '14.555940', '463.312805', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176368, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3782579', 3782579, '240.208405', '14.734180', '473.802307', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176096, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3782581', 3782581, '203.301804', '12.792270', '451.523285', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175824, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc3782585', 3782585, '230.220703', '14.451260', '471.293915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173926, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(216, 'go004', 'bnpc4057631', 4057631, '-117.387497', '15.659340', '316.159485', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22414, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(216, 'go004', 'bnpc4057642', 4057642, '32.356911', '15.912200', '575.715027', 797, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22148, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(216, 'go004', 'bnpc4057659', 4057659, '-26.174540', '-2.337916', '-130.147400', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21882, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(216, 'go004', 'bnpc4057662', 4057662, '7.597365', '-2.072273', '-178.519897', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21610, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(216, 'go004', 'bnpc4621827', 4621827, '-293.653107', '18.424400', '-380.671600', 2770, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22760, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4248208', 4248208, '200.152603', '90.897949', '-84.794373', 1881, 0, 0, 0, 5, 6, 0, 0, 2114, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 73148, 1, 3, 2000, 0, 0, 0, 4248173, 0, 0), +(217, 'w1d4', 'bnpc4248209', 4248209, '197.016907', '91.490990', '-85.078880', 1865, 0, 0, 0, 0, 6, 0, 0, 2105, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 68530, 1, 3, 2000, 0, 0, 0, 4324054, 0, 0), +(217, 'w1d4', 'bnpc4248210', 4248210, '180.956696', '93.736214', '-98.527527', 1865, 0, 0, 0, 0, 6, 0, 0, 2105, 0, '0.000000', 50, 0, 120, 1, 0, 8, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 68258, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4248211', 4248211, '167.282196', '94.429123', '-96.705147', 1869, 0, 0, 0, 0, 6, 0, 0, 2109, 0, '0.000000', 50, 0, 120, 1, 0, 8, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 66650, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4248212', 4248212, '193.225006', '91.691406', '-98.252930', 1867, 0, 0, 0, 0, 6, 0, 0, 2107, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 67720, 1, 3, 2000, 0, 0, 30332, 0, 0, 0), +(217, 'w1d4', 'bnpc4248226', 4248226, '11.781790', '70.172447', '-38.637451', 1882, 0, 0, 0, 0, 6, 0, 0, 557, 0, '0.000000', 50, 2, 120, 1, 0, 60, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28036, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4248324', 4248324, '-17.257999', '63.053680', '251.331299', 2248, 0, 0, 0, 5, 6, 0, 0, 2092, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59954, 1, 3, 2000, 0, 0, 0, 4248317, 0, 0), +(217, 'w1d4', 'bnpc4248336', 4248336, '199.908401', '90.836906', '-102.525398', 1881, 0, 0, 0, 5, 6, 0, 0, 2114, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 72876, 1, 3, 2000, 0, 0, 0, 4248173, 0, 0), +(217, 'w1d4', 'bnpc4248341', 4248341, '215.604996', '89.445168', '-125.969597', 1865, 0, 0, 0, 2, 6, 0, 0, 2105, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67986, 1, 3, 2000, 0, 0, 0, 4331535, 0, 0), +(217, 'w1d4', 'bnpc4248342', 4248342, '186.178802', '93.077904', '-95.772423', 1869, 0, 0, 0, 5, 6, 0, 0, 2109, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 66922, 1, 3, 2000, 0, 0, 30331, 4324084, 0, 0), +(217, 'w1d4', 'bnpc4248343', 4248343, '189.117493', '92.601891', '-91.636559', 1871, 0, 0, 0, 0, 6, 0, 0, 2111, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 67188, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4248344', 4248344, '194.506699', '91.569344', '-87.419006', 1867, 0, 0, 0, 0, 6, 0, 0, 2107, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 67448, 1, 3, 2000, 0, 0, 30333, 0, 0, 0), +(217, 'w1d4', 'bnpc4248518', 4248518, '47.067310', '66.647369', '86.619652', 2248, 0, 0, 0, 5, 6, 0, 0, 2092, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59682, 1, 3, 2000, 0, 0, 0, 4248513, 0, 0), +(217, 'w1d4', 'bnpc4248524', 4248524, '-34.284389', '74.002251', '120.436203', 1881, 0, 0, 0, 0, 6, 0, 0, 2114, 0, '0.000000', 50, 2, 120, 1, 0, 25, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 61804, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4248525', 4248525, '-29.922970', '74.096703', '118.364098', 2248, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 2, 120, 1, 0, 25, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 60770, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4248526', 4248526, '-33.737728', '74.085487', '114.946198', 2248, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 2, 120, 1, 0, 25, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 59138, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4248527', 4248527, '-33.135941', '74.082520', '120.957802', 1865, 0, 0, 0, 0, 6, 0, 0, 2105, 0, '0.000000', 50, 2, 120, 1, 0, 26, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 58818, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4248528', 4248528, '-29.526251', '74.079773', '114.091698', 1865, 0, 0, 0, 0, 6, 0, 0, 2105, 0, '0.000000', 50, 2, 120, 1, 0, 26, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 58546, 1, 3, 2000, 0, 0, 30331, 0, 0, 0), +(217, 'w1d4', 'bnpc4248530', 4248530, '25.087330', '68.782761', '74.894669', 2041, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20412, 1, 0, 2000, 0, 0, 0, 4248532, 0, 0), +(217, 'w1d4', 'bnpc4248602', 4248602, '107.102097', '64.711517', '109.316902', 1869, 0, 0, 0, 0, 6, 0, 0, 2109, 0, '0.000000', 50, 2, 120, 1, 0, 16, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 66186, 1, 3, 2000, 0, 0, 30332, 0, 0, 0), +(217, 'w1d4', 'bnpc4248606', 4248606, '103.406097', '64.908417', '107.422798', 2248, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 2, 120, 1, 0, 15, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 61314, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4248840', 4248840, '-10.688230', '69.716011', '26.927771', 1883, 0, 0, 0, 0, 6, 0, 0, 2116, 0, '0.000000', 50, 2, 120, 1, 0, 56, 0, 99, 10, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25914, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249164', 4249164, '0.869751', '70.176270', '25.497801', 1995, 0, 0, 0, 0, 6, 0, 0, 1486, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18598, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249188', 4249188, '6.401333', '72.591377', '-73.182808', 1996, 0, 0, 0, 0, 6, 0, 0, 2208, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249190', 4249190, '8.627052', '71.909126', '-105.055397', 1871, 0, 0, 0, 0, 6, 0, 0, 2111, 0, '0.000000', 50, 2, 120, 1, 0, 31, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49392, 1, 3, 2000, 0, 0, 0, 4325044, 0, 0), +(217, 'w1d4', 'bnpc4249191', 4249191, '4.354530', '71.388893', '-99.989388', 1868, 0, 0, 0, 0, 6, 0, 0, 2108, 0, '0.000000', 50, 2, 120, 1, 0, 31, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 57594, 1, 3, 2000, 0, 0, 0, 4325044, 0, 0), +(217, 'w1d4', 'bnpc4249192', 4249192, '6.795936', '71.757172', '-103.712601', 2248, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 2, 120, 1, 0, 31, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 54862, 1, 3, 2000, 0, 0, 0, 4325044, 0, 0), +(217, 'w1d4', 'bnpc4249434', 4249434, '4.288818', '74.619926', '-135.243698', 1866, 0, 0, 0, 0, 6, 0, 0, 2106, 0, '0.000000', 50, 2, 120, 1, 0, 32, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 57020, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249435', 4249435, '10.025150', '74.692871', '-134.843994', 1866, 0, 0, 0, 0, 6, 0, 0, 2106, 0, '0.000000', 50, 2, 120, 1, 0, 32, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 56748, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249436', 4249436, '3.768982', '74.570801', '-138.384094', 2248, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 2, 120, 1, 0, 32, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 54046, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249437', 4249437, '6.572028', '74.601318', '-136.969101', 1869, 0, 0, 0, 0, 6, 0, 0, 2109, 0, '0.000000', 50, 2, 120, 1, 0, 32, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 57286, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249438', 4249438, '12.039500', '74.326660', '-136.506302', 2248, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 2, 120, 1, 0, 32, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 54318, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249439', 4249439, '5.327912', '75.427567', '-151.819504', 1885, 0, 0, 0, 0, 6, 0, 0, 2206, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17316, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249441', 4249441, '84.721748', '84.276421', '-229.488403', 1879, 0, 0, 0, 0, 6, 0, 0, 269, 0, '0.000000', 50, 2, 120, 1, 0, 33, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50504, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249449', 4249449, '94.896027', '84.276421', '-227.580002', 2250, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 2, 120, 1, 0, 33, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52148, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249452', 4249452, '87.144318', '84.276421', '-227.641098', 2250, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 2, 120, 1, 0, 33, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51876, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249453', 4249453, '90.144676', '83.798767', '-234.894699', 2248, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 2, 120, 1, 0, 33, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52414, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249467', 4249467, '-32.822201', '85.252083', '-271.015503', 1879, 0, 0, 0, 0, 6, 0, 0, 269, 0, '0.000000', 50, 2, 120, 1, 0, 37, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 55128, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249469', 4249469, '-31.845640', '85.252083', '-280.048798', 1879, 0, 0, 0, 0, 6, 0, 0, 269, 0, '0.000000', 50, 2, 120, 1, 0, 37, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 55400, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249470', 4249470, '-36.514889', '85.252083', '-272.480408', 1871, 0, 0, 0, 0, 6, 0, 0, 2111, 0, '0.000000', 50, 2, 120, 1, 0, 37, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 55920, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249471', 4249471, '-37.705078', '85.252083', '-277.058014', 1871, 0, 0, 0, 0, 6, 0, 0, 2111, 0, '0.000000', 50, 2, 120, 1, 0, 37, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 55648, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249473', 4249473, '-90.863007', '85.282593', '-260.674713', 1884, 0, 0, 0, 0, 6, 0, 0, 2117, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33416, 1, 6, 20000, 0, 0, 0, 4326313, 0, 0), +(217, 'w1d4', 'bnpc4249645', 4249645, '-68.334488', '69.373703', '-44.131840', 2249, 0, 0, 0, 0, 6, 0, 0, 297, 0, '0.000000', 50, 2, 120, 1, 0, 43, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45476, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249646', 4249646, '-62.124451', '68.345993', '-45.325001', 2249, 0, 0, 0, 0, 6, 0, 0, 297, 0, '0.000000', 50, 2, 120, 1, 0, 44, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45204, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249647', 4249647, '-56.261711', '68.284058', '-46.921108', 2249, 0, 0, 0, 0, 6, 0, 0, 297, 0, '0.000000', 50, 2, 120, 1, 0, 45, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44932, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249648', 4249648, '-66.765427', '69.138550', '-50.596882', 1881, 0, 0, 0, 0, 6, 0, 0, 2114, 0, '0.000000', 50, 2, 120, 1, 0, 43, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48668, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249649', 4249649, '-60.015629', '68.375610', '-50.527039', 1881, 0, 0, 0, 0, 6, 0, 0, 2114, 0, '0.000000', 50, 2, 120, 1, 0, 44, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48396, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249650', 4249650, '-54.480621', '68.365189', '-52.380779', 1881, 0, 0, 0, 0, 6, 0, 0, 2114, 0, '0.000000', 50, 2, 120, 1, 0, 45, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48124, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249660', 4249660, '-52.574501', '69.241966', '-42.916611', 434, 0, 0, 0, 0, 6, 0, 0, 510, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249662', 4249662, '-55.249409', '69.797211', '-23.540840', 434, 0, 0, 0, 0, 6, 0, 0, 510, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13242, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249663', 4249663, '-62.902790', '69.110283', '-59.307381', 434, 0, 0, 0, 0, 6, 0, 0, 510, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12970, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4249676', 4249676, '-102.886703', '70.350082', '-31.598110', 2027, 0, 0, 0, 0, 6, 0, 0, 2118, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42322, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4296199', 4296199, '-2.014338', '73.990967', '91.866203', 2250, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60504, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4296207', 4296207, '4.175434', '74.082520', '91.430931', 2250, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60232, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4296215', 4296215, '-16.356461', '80.934509', '-191.073196', 2250, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 2, 120, 1, 0, 36, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51332, 1, 3, 2000, 0, 0, 0, 4325039, 0, 0), +(217, 'w1d4', 'bnpc4296216', 4296216, '-12.814020', '80.510269', '-188.579407', 2250, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 2, 120, 1, 0, 36, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50788, 1, 3, 2000, 0, 0, 0, 4325039, 0, 0), +(217, 'w1d4', 'bnpc4296217', 4296217, '-10.038270', '80.875420', '-191.030304', 2250, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 2, 120, 1, 0, 36, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51060, 1, 3, 2000, 0, 0, 0, 4325039, 0, 0), +(217, 'w1d4', 'bnpc4296218', 4296218, '-10.971250', '78.782227', '-178.942596', 1879, 0, 0, 0, 0, 6, 0, 0, 269, 0, '0.000000', 50, 2, 120, 1, 0, 36, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51592, 1, 3, 2000, 0, 0, 0, 4325039, 0, 0), +(217, 'w1d4', 'bnpc4302686', 4302686, '-91.667549', '70.350082', '-8.355627', 1950, 0, 0, 0, 0, 6, 0, 0, 2115, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35812, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4302687', 4302687, '-100.313103', '70.328857', '-19.000999', 1950, 0, 0, 0, 0, 6, 0, 0, 2115, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35540, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4302689', 4302689, '-105.128304', '70.328857', '-46.280399', 1950, 0, 0, 0, 0, 6, 0, 0, 2115, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35268, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4302690', 4302690, '-100.914803', '70.350082', '-59.638889', 1950, 0, 0, 0, 0, 6, 0, 0, 2115, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34996, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4302710', 4302710, '-102.886703', '70.350098', '-31.598101', 1438, 0, 0, 0, 0, 6, 0, 0, 2118, 0, '0.000000', 50, 2, 120, 1, 0, 55, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41920, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4302712', 4302712, '-107.849899', '70.350082', '-32.132629', 2031, 0, 0, 0, 0, 6, 0, 0, 297, 0, '0.000000', 50, 2, 120, 1, 0, 55, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41654, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4302717', 4302717, '-97.027634', '70.324600', '-64.546303', 2028, 0, 0, 0, 0, 6, 0, 0, 2119, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40850, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4302719', 4302719, '-79.290359', '70.350082', '-46.865620', 2029, 0, 0, 0, 0, 6, 0, 0, 2120, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39768, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4302720', 4302720, '-76.149742', '70.350082', '-26.929150', 2028, 0, 0, 0, 0, 6, 0, 0, 2119, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40578, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4302721', 4302721, '-85.402939', '70.350067', '-9.306347', 2029, 0, 0, 0, 0, 6, 0, 0, 2120, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39496, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4302723', 4302723, '-100.758003', '70.350082', '-10.850840', 2028, 0, 0, 0, 0, 6, 0, 0, 2119, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40306, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4302724', 4302724, '-115.047501', '70.350082', '-20.536091', 2029, 0, 0, 0, 0, 6, 0, 0, 2120, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39224, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4302725', 4302725, '-119.124100', '70.350082', '-39.954529', 2028, 0, 0, 0, 0, 6, 0, 0, 2119, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40034, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4302726', 4302726, '-108.131104', '70.350067', '-52.383961', 2029, 0, 0, 0, 0, 6, 0, 0, 2120, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38952, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4302729', 4302729, '-106.636002', '70.350082', '-11.548340', 1960, 0, 0, 0, 0, 6, 0, 0, 2205, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41116, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4302731', 4302731, '-113.734703', '70.350082', '-50.811749', 1960, 0, 0, 0, 0, 6, 0, 0, 2205, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41388, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4308645', 4308645, '-66.190620', '69.597099', '-20.610861', 2244, 0, 0, 0, 0, 6, 0, 0, 630, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12794, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4308649', 4308649, '-70.044823', '69.123894', '-64.993080', 2244, 0, 0, 0, 0, 6, 0, 0, 630, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12522, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4308651', 4308651, '-44.737339', '67.998756', '-39.345459', 2244, 0, 0, 0, 0, 6, 0, 0, 630, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12250, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4312520', 4312520, '-65.183800', '81.494324', '-217.648102', 1996, 0, 0, 0, 0, 6, 0, 0, 2209, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18058, 1, 0, 0, 3169186, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4317265', 4317265, '-66.677460', '69.398872', '-35.428951', 2249, 0, 0, 0, 0, 6, 0, 0, 297, 0, '0.000000', 50, 2, 120, 1, 0, 46, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46292, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4317266', 4317266, '-60.630322', '68.345093', '-36.208439', 2249, 0, 0, 0, 0, 6, 0, 0, 297, 0, '0.000000', 50, 2, 120, 1, 0, 47, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46020, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4317267', 4317267, '-54.217030', '67.978882', '-37.460480', 2249, 0, 0, 0, 0, 6, 0, 0, 297, 0, '0.000000', 50, 2, 120, 1, 0, 48, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45748, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4317268', 4317268, '-63.879490', '68.894409', '-31.990801', 1881, 0, 0, 0, 0, 6, 0, 0, 2114, 0, '0.000000', 50, 2, 120, 1, 0, 46, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47852, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4317269', 4317269, '-57.210411', '68.295723', '-33.141621', 1881, 0, 0, 0, 0, 6, 0, 0, 2114, 0, '0.000000', 50, 2, 120, 1, 0, 47, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47580, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4317270', 4317270, '-51.288109', '68.072952', '-34.381409', 1881, 0, 0, 0, 0, 6, 0, 0, 2114, 0, '0.000000', 50, 2, 120, 1, 0, 48, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47308, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4317422', 4317422, '50.918571', '77.319160', '-159.391098', 2250, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 35, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53780, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4317424', 4317424, '57.021950', '77.365547', '-151.754196', 2250, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 35, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53508, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4317425', 4317425, '58.933319', '77.622223', '-160.193298', 2248, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 0, 120, 1, 0, 35, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52958, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4317426', 4317426, '64.237633', '77.706078', '-155.838501', 2248, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 0, 120, 1, 0, 35, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52686, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4323012', 4323012, '112.504799', '64.866089', '63.065552', 2248, 0, 0, 0, 1, 6, 0, 0, 2092, 0, '0.000000', 50, 0, 120, 1, 0, 17, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 58322, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4323013', 4323013, '122.566101', '61.084099', '83.251930', 1866, 0, 0, 0, 0, 6, 0, 0, 2106, 0, '0.000000', 50, 0, 120, 1, 0, 18, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 65920, 1, 3, 2000, 0, 0, 30332, 0, 0, 0), +(217, 'w1d4', 'bnpc4324040', 4324040, '195.819000', '92.576424', '-154.009293', 1865, 0, 0, 0, 0, 6, 0, 0, 2105, 0, '0.000000', 50, 0, 120, 1, 0, 4, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 72610, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324042', 4324042, '198.443497', '92.698486', '-156.298203', 1865, 0, 0, 0, 0, 6, 0, 0, 2105, 0, '0.000000', 50, 0, 120, 1, 0, 4, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 72338, 1, 3, 2000, 0, 0, 30332, 0, 0, 0), +(217, 'w1d4', 'bnpc4324043', 4324043, '202.136200', '92.274323', '-150.011505', 1878, 0, 0, 0, 1, 6, 0, 0, 2113, 0, '0.000000', 50, 0, 120, 1, 0, 4, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 69358, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324045', 4324045, '214.526505', '89.097412', '-104.539597', 1867, 0, 0, 0, 0, 6, 0, 0, 2107, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 70712, 1, 3, 2000, 0, 0, 30331, 0, 0, 0), +(217, 'w1d4', 'bnpc4324046', 4324046, '213.031097', '89.158447', '-109.880203', 1867, 0, 0, 0, 0, 6, 0, 0, 2107, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 70984, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324048', 4324048, '204.089401', '90.196037', '-75.944153', 1867, 0, 0, 0, 0, 6, 0, 0, 2107, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 70440, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324049', 4324049, '205.401596', '90.043457', '-81.681580', 1867, 0, 0, 0, 0, 6, 0, 0, 2107, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 70168, 1, 3, 2000, 0, 0, 30332, 0, 0, 0), +(217, 'w1d4', 'bnpc4324059', 4324059, '204.821793', '92.454353', '-155.352097', 1865, 0, 0, 0, 2, 6, 0, 0, 2105, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 72066, 1, 3, 2000, 0, 0, 0, 4331535, 0, 0), +(217, 'w1d4', 'bnpc4324065', 4324065, '157.738602', '93.736214', '-87.120903', 1865, 0, 0, 0, 1, 6, 0, 0, 2105, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 71794, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324066', 4324066, '159.688599', '94.376251', '-93.840881', 1865, 0, 0, 0, 0, 6, 0, 0, 2105, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 71522, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324068', 4324068, '172.655807', '94.457558', '-89.494263', 1865, 0, 0, 0, 5, 6, 0, 0, 2105, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 71250, 1, 3, 2000, 0, 0, 0, 4324084, 0, 0), +(217, 'w1d4', 'bnpc4324069', 4324069, '35.562729', '71.952538', '-50.770290', 1867, 0, 0, 0, 0, 6, 0, 0, 2107, 0, '0.000000', 50, 0, 120, 1, 0, 9, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 69624, 1, 3, 2000, 0, 0, 30331, 0, 0, 1), +(217, 'w1d4', 'bnpc4324070', 4324070, '36.075890', '71.816101', '-41.503651', 1867, 0, 0, 0, 0, 6, 0, 0, 2107, 0, '0.000000', 50, 0, 120, 1, 0, 9, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 69896, 1, 3, 2000, 0, 0, 30332, 0, 0, 0), +(217, 'w1d4', 'bnpc4324083', 4324083, '95.567261', '82.749634', '-67.368591', 1878, 0, 0, 0, 5, 6, 0, 0, 2113, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 68814, 1, 3, 2000, 0, 0, 0, 4324084, 0, 0), +(217, 'w1d4', 'bnpc4324090', 4324090, '51.255001', '74.601318', '-48.600040', 1878, 0, 0, 0, 1, 6, 0, 0, 2113, 0, '0.000000', 50, 0, 120, 1, 0, 9, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 69086, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324096', 4324096, '-73.383537', '74.455093', '144.733597', 1867, 0, 0, 0, 0, 6, 0, 0, 2107, 0, '0.000000', 50, 0, 120, 1, 0, 19, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 65624, 1, 3, 2000, 0, 0, 30331, 0, 0, 0), +(217, 'w1d4', 'bnpc4324099', 4324099, '-81.313133', '78.622162', '129.048401', 1865, 0, 0, 0, 0, 6, 0, 0, 2105, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 65346, 1, 3, 2000, 0, 0, 30332, 0, 0, 0), +(217, 'w1d4', 'bnpc4324100', 4324100, '-80.318893', '78.560791', '131.548401', 1865, 0, 0, 0, 0, 6, 0, 0, 2105, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 65074, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324101', 4324101, '-75.103149', '78.287437', '121.838203', 1878, 0, 0, 0, 1, 6, 0, 0, 2113, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 64814, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324102', 4324102, '-62.716671', '77.329292', '111.883400', 1878, 0, 0, 0, 1, 6, 0, 0, 2113, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 64542, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324104', 4324104, '100.869202', '68.300079', '42.847179', 1870, 0, 0, 0, 5, 6, 0, 0, 2110, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 64294, 1, 3, 2000, 0, 0, 0, 4324094, 0, 0), +(217, 'w1d4', 'bnpc4324105', 4324105, '-2.697702', '70.557198', '56.171539', 1867, 0, 0, 0, 0, 6, 0, 0, 2120, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 63992, 1, 3, 2000, 0, 0, 30333, 0, 0, 0), +(217, 'w1d4', 'bnpc4324106', 4324106, '-12.160010', '70.720734', '58.698509', 1867, 0, 0, 0, 0, 6, 0, 0, 2120, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 63720, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324107', 4324107, '-7.461731', '70.908691', '61.112301', 2250, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 61048, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324108', 4324108, '46.585819', '67.124390', '85.313232', 1879, 0, 0, 0, 0, 6, 0, 0, 269, 0, '0.000000', 50, 0, 120, 1, 0, 24, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 63484, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324128', 4324128, '9.049142', '73.930542', '118.751602', 1867, 0, 0, 0, 0, 6, 0, 0, 2120, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 63176, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324130', 4324130, '2.287571', '73.846336', '119.504097', 1871, 0, 0, 0, 0, 6, 0, 0, 2111, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 62916, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324134', 4324134, '-22.313810', '74.004356', '102.628502', 1879, 0, 0, 0, 0, 6, 0, 0, 269, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 61580, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324135', 4324135, '-62.082230', '73.620590', '150.468506', 2248, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 0, 120, 1, 0, 19, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 59410, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324141', 4324141, '42.159222', '66.919739', '90.188232', 1870, 0, 0, 0, 1, 6, 0, 0, 2110, 0, '0.000000', 50, 0, 120, 1, 0, 24, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 62662, 1, 3, 2000, 0, 0, 30333, 0, 0, 0), +(217, 'w1d4', 'bnpc4324142', 4324142, '41.519779', '66.971802', '79.911499', 1866, 0, 0, 0, 0, 6, 0, 0, 2106, 0, '0.000000', 50, 0, 120, 1, 0, 24, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 62384, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4324143', 4324143, '45.548100', '66.605591', '90.623291', 1867, 0, 0, 0, 0, 6, 0, 0, 2120, 0, '0.000000', 50, 0, 120, 1, 0, 24, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 62088, 1, 3, 2000, 0, 0, 30331, 0, 0, 0), +(217, 'w1d4', 'bnpc4325036', 4325036, '22.354429', '76.071007', '-154.009293', 1867, 0, 0, 0, 0, 6, 0, 0, 2107, 0, '0.000000', 50, 0, 120, 1, 0, 34, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 56452, 1, 3, 2000, 0, 0, 30332, 0, 0, 0), +(217, 'w1d4', 'bnpc4325037', 4325037, '31.246080', '75.974609', '-153.869904', 2250, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 34, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53236, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4325038', 4325038, '26.840580', '76.157707', '-153.551605', 1869, 0, 0, 0, 0, 6, 0, 0, 2109, 0, '0.000000', 50, 0, 120, 1, 0, 34, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 56198, 1, 3, 2000, 0, 0, 30331, 0, 0, 0), +(217, 'w1d4', 'bnpc4325050', 4325050, '-56.109459', '68.648308', '-95.183907', 2249, 0, 0, 0, 0, 6, 0, 0, 297, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54608, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4325061', 4325061, '-26.749081', '79.728394', '-45.304081', 2248, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 0, 120, 1, 0, 42, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44370, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4325062', 4325062, '-23.666809', '79.728394', '-51.834961', 2250, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 42, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44648, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4325063', 4325063, '-30.720030', '79.754509', '-53.105850', 1867, 0, 0, 0, 0, 6, 0, 0, 2107, 0, '0.000000', 50, 0, 120, 1, 0, 42, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46776, 1, 3, 2000, 0, 0, 30332, 0, 0, 0), +(217, 'w1d4', 'bnpc4325064', 4325064, '-33.548100', '79.754509', '-52.435970', 1867, 0, 0, 0, 0, 6, 0, 0, 2107, 0, '0.000000', 50, 0, 120, 1, 0, 42, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47048, 1, 3, 2000, 0, 0, 30331, 0, 0, 0), +(217, 'w1d4', 'bnpc4325066', 4325066, '-22.058241', '79.728394', '-11.349450', 2248, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 0, 120, 1, 0, 41, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43554, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4325067', 4325067, '-27.725710', '79.728394', '-17.471680', 2250, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 41, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44104, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4325068', 4325068, '-25.192690', '79.728394', '-18.051510', 2250, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 41, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43832, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4325069', 4325069, '-16.701120', '79.754509', '-10.025420', 1870, 0, 0, 0, 0, 6, 0, 0, 2110, 0, '0.000000', 50, 0, 120, 1, 0, 41, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46534, 1, 3, 2000, 0, 0, 30331, 0, 0, 0), +(217, 'w1d4', 'bnpc4328911', 4328911, '-15.898290', '69.582603', '29.696720', 2276, 0, 0, 0, 0, 6, 0, 0, 2105, 0, '0.000000', 50, 0, 120, 1, 0, 56, 0, 99, 10, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24082, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4328912', 4328912, '-4.613508', '69.933861', '29.120199', 2254, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 0, 120, 1, 0, 56, 0, 99, 10, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24712, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4328916', 4328916, '-71.055977', '81.798767', '-243.247101', 2256, 0, 0, 0, 1, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32390, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4328918', 4328918, '-70.518097', '81.798767', '-223.255905', 2256, 0, 0, 0, 1, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31846, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4328920', 4328920, '-42.697121', '81.798767', '-223.185898', 2256, 0, 0, 0, 1, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4328922', 4328922, '-42.526791', '81.798767', '-241.438400', 2256, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4328924', 4328924, '-62.725739', '81.798767', '-216.673904', 1995, 0, 0, 0, 0, 6, 0, 0, 1486, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32922, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4328925', 4328925, '-67.987373', '81.798767', '-241.408997', 2279, 0, 0, 0, 0, 6, 0, 0, 2106, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30996, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4328926', 4328926, '-67.971199', '81.798767', '-224.559296', 2280, 0, 0, 0, 0, 6, 0, 0, 2111, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29914, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4328927', 4328927, '-44.921600', '81.798767', '-225.121399', 2279, 0, 0, 0, 0, 6, 0, 0, 2106, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30724, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4328928', 4328928, '-44.777458', '81.798767', '-239.679794', 2280, 0, 0, 0, 0, 6, 0, 0, 2111, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29642, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4329200', 4329200, '-95.898483', '70.347656', '-63.508701', 2030, 0, 0, 0, 0, 6, 0, 0, 2158, 0, '0.000000', 50, 2, 120, 1, 0, 55, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38686, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4329201', 4329201, '-78.669159', '70.350082', '-46.394161', 2030, 0, 0, 0, 0, 6, 0, 0, 2158, 0, '0.000000', 50, 2, 120, 1, 0, 55, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38414, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4329202', 4329202, '-75.963501', '70.350082', '-26.396690', 2030, 0, 0, 0, 0, 6, 0, 0, 2158, 0, '0.000000', 50, 2, 120, 1, 0, 55, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38142, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4329203', 4329203, '-85.564148', '70.350082', '-8.583899', 2030, 0, 0, 0, 0, 6, 0, 0, 2158, 0, '0.000000', 50, 2, 120, 1, 0, 55, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37870, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4329205', 4329205, '-101.398903', '70.350082', '-10.789810', 2030, 0, 0, 0, 0, 6, 0, 0, 2158, 0, '0.000000', 50, 2, 120, 1, 0, 55, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37598, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4329206', 4329206, '-114.543999', '70.350067', '-19.730169', 2030, 0, 0, 0, 0, 6, 0, 0, 2158, 0, '0.000000', 50, 2, 120, 1, 0, 55, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37326, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4329207', 4329207, '-119.676598', '70.328857', '-39.108952', 2030, 0, 0, 0, 0, 6, 0, 0, 2158, 0, '0.000000', 50, 2, 120, 1, 0, 55, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37054, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4329208', 4329208, '-108.833000', '70.350067', '-52.017811', 2030, 0, 0, 0, 0, 6, 0, 0, 2158, 0, '0.000000', 50, 2, 120, 1, 0, 55, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36782, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4329766', 4329766, '16.983280', '74.509773', '-135.820602', 2249, 0, 0, 0, 5, 6, 0, 0, 297, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49168, 1, 3, 2000, 0, 0, 0, 4329761, 0, 0), +(217, 'w1d4', 'bnpc4329901', 4329901, '-69.855888', '81.798767', '-241.388596', 2279, 0, 0, 0, 0, 6, 0, 0, 2106, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30452, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4329902', 4329902, '-69.008087', '81.798767', '-222.671097', 2280, 0, 0, 0, 0, 6, 0, 0, 2111, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29370, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4329903', 4329903, '-43.441280', '81.798767', '-225.070801', 2279, 0, 0, 0, 0, 6, 0, 0, 2106, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30180, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4329904', 4329904, '-43.467201', '81.798767', '-239.417999', 2280, 0, 0, 0, 0, 6, 0, 0, 2111, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29098, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4329905', 4329905, '-13.242160', '81.798767', '-203.770294', 2255, 0, 0, 0, 0, 6, 0, 0, 2089, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32656, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4330353', 4330353, '-74.387756', '74.143547', '157.183105', 1871, 0, 0, 0, 0, 6, 0, 0, 2111, 0, '0.000000', 50, 0, 120, 1, 0, 19, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 58020, 1, 3, 2000, 0, 0, 30332, 0, 0, 0), +(217, 'w1d4', 'bnpc4332706', 4332706, '11.759810', '70.172447', '-35.468559', 1878, 0, 0, 0, 0, 6, 0, 0, 2113, 0, '0.000000', 50, 0, 120, 1, 0, 60, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27386, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4332707', 4332707, '10.108260', '70.172447', '-40.998070', 1866, 0, 0, 0, 0, 6, 0, 0, 2106, 0, '0.000000', 50, 0, 120, 1, 0, 60, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27132, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4332708', 4332708, '11.698560', '70.172447', '-41.283581', 1869, 0, 0, 0, 0, 6, 0, 0, 2109, 0, '0.000000', 50, 0, 120, 1, 0, 60, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26854, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4333046', 4333046, '-4.873594', '71.348000', '66.981987', 2041, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19936, 1, 0, 2000, 0, 0, 0, 4333044, 0, 0), +(217, 'w1d4', 'bnpc4333047', 4333047, '-25.720909', '74.215500', '94.010902', 2041, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19664, 1, 0, 2000, 0, 0, 0, 4333045, 0, 0), +(217, 'w1d4', 'bnpc4333390', 4333390, '-85.676903', '83.155533', '-253.740997', 2250, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 38, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50244, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4333391', 4333391, '-82.219063', '83.342987', '-254.383698', 2250, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 38, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49972, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4333392', 4333392, '-78.766312', '83.622749', '-255.342896', 2250, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 38, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 49700, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4333766', 4333766, '-16.840860', '69.552834', '29.933109', 2277, 0, 0, 0, 0, 6, 0, 0, 2109, 0, '0.000000', 50, 0, 120, 1, 0, 56, 0, 99, 10, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23816, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4333767', 4333767, '-17.859159', '69.533493', '30.154600', 2278, 0, 0, 0, 0, 6, 0, 0, 2110, 0, '0.000000', 50, 0, 120, 1, 0, 56, 0, 99, 10, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23550, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4334948', 4334948, '10.845390', '75.663948', '-151.727295', 1885, 0, 0, 0, 0, 6, 0, 0, 2206, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16840, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4334949', 4334949, '13.663070', '75.680023', '-151.539398', 1885, 0, 0, 0, 0, 6, 0, 0, 2206, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16568, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4334950', 4334950, '8.137141', '75.597427', '-151.798203', 1885, 0, 0, 0, 0, 6, 0, 0, 2206, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16296, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4334951', 4334951, '95.858757', '82.798767', '-211.724197', 1885, 0, 0, 0, 0, 6, 0, 0, 2206, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11888, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4334955', 4334955, '83.871681', '82.798767', '-211.698807', 1885, 0, 0, 0, 0, 6, 0, 0, 2206, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11616, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4334956', 4334956, '69.510757', '82.798767', '-213.467804', 1885, 0, 0, 0, 0, 6, 0, 0, 2206, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4334957', 4334957, '69.136879', '83.798767', '-222.300400', 1885, 0, 0, 0, 0, 6, 0, 0, 2206, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11072, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4334959', 4334959, '-46.780060', '85.298767', '-264.692902', 1885, 0, 0, 0, 0, 6, 0, 0, 2206, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15864, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4334960', 4334960, '-38.873699', '85.298782', '-283.526093', 1885, 0, 0, 0, 0, 6, 0, 0, 2206, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15592, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4334961', 4334961, '-49.388870', '85.298782', '-282.641296', 1885, 0, 0, 0, 0, 6, 0, 0, 2206, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15320, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4334962', 4334962, '-42.007610', '85.298767', '-264.782013', 1885, 0, 0, 0, 0, 6, 0, 0, 2206, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15048, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(217, 'w1d4', 'bnpc4373183', 4373183, '-39.321560', '68.468193', '4.780949', 2249, 0, 0, 0, 5, 6, 0, 0, 297, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43300, 1, 3, 2000, 0, 0, 0, 4373186, 0, 0), +(217, 'w1d4', 'bnpc4373184', 4373184, '-55.178249', '68.536552', '-76.189827', 2249, 0, 0, 0, 5, 6, 0, 0, 297, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43028, 1, 3, 2000, 0, 0, 0, 4373187, 0, 0), +(217, 'w1d4', 'bnpc4374571', 4374571, '-101.687202', '70.350082', '-32.285381', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34282, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143752', 1143752, '468.733612', '-3.633345', '230.358597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161672, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143755', 1143755, '465.781586', '-3.677471', '229.602402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161400, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143766', 1143766, '444.779510', '-3.136452', '238.420898', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128760, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143773', 1143773, '465.263000', '-2.447129', '258.256592', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161128, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143778', 1143778, '428.447205', '-1.594615', '201.428604', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160856, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143785', 1143785, '418.397888', '-1.449695', '197.651093', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160584, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143787', 1143787, '419.881805', '-4.161774', '286.077789', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160312, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143790', 1143790, '437.705414', '-3.238991', '267.530212', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160040, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143793', 1143793, '423.775085', '-3.337628', '259.160889', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159768, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143797', 1143797, '424.763611', '-3.434183', '264.063385', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159496, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143811', 1143811, '449.264099', '-2.694139', '278.273193', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159224, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143813', 1143813, '447.361511', '-2.361451', '283.012695', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158952, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143833', 1143833, '324.665100', '-5.350893', '263.034088', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158680, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143834', 1143834, '326.416687', '-5.326731', '264.652008', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158408, 7, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(218, 'b251', 'bnpc1143836', 1143836, '228.076508', '-27.969830', '314.808807', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158142, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143844', 1143844, '226.947403', '-28.244499', '321.583801', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157870, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143846', 1143846, '232.074402', '-27.023769', '316.945099', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157598, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143852', 1143852, '245.166595', '-23.941450', '329.304901', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157326, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143853', 1143853, '243.701797', '-24.673880', '332.020996', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157054, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143858', 1143858, '238.841797', '-23.981850', '361.571594', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156782, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143859', 1143859, '234.742996', '-25.153990', '359.183594', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156510, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143860', 1143860, '184.706299', '-37.785229', '360.952393', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156238, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143861', 1143861, '217.364700', '-28.025049', '344.838593', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143862', 1143862, '218.412994', '-28.201860', '349.321411', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155966, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143865', 1143865, '215.228394', '-28.379271', '347.279999', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155694, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143866', 1143866, '185.345001', '-32.188919', '312.603790', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155422, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143868', 1143868, '188.006302', '-32.639091', '314.137390', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155150, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143873', 1143873, '209.412994', '-25.172079', '366.151306', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154878, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143875', 1143875, '178.562500', '-38.966068', '338.296814', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154606, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143876', 1143876, '144.823303', '-31.479410', '305.622894', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154334, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143877', 1143877, '146.196594', '-30.899561', '302.754211', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154062, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143878', 1143878, '152.851395', '-42.255760', '352.426392', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153790, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143879', 1143879, '149.193604', '-43.619991', '356.343506', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153518, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143881', 1143881, '158.525894', '-36.057110', '323.933685', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153246, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143882', 1143882, '163.927597', '-36.881100', '326.466705', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152974, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143885', 1143885, '159.594101', '-36.820061', '328.267303', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152702, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143886', 1143886, '172.482895', '-27.390930', '279.472900', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152430, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143887', 1143887, '176.999496', '-26.747681', '281.731201', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152158, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143889', 1143889, '171.282501', '-27.115330', '283.741486', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151886, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143891', 1143891, '197.201508', '-28.186390', '271.644287', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151614, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143892', 1143892, '200.589005', '-27.467010', '274.696106', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151342, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143895', 1143895, '197.110001', '-27.467581', '277.015503', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151070, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143897', 1143897, '246.082199', '-21.335920', '271.557007', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150798, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143900', 1143900, '229.912994', '-24.472389', '284.220306', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150526, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143904', 1143904, '243.488205', '-22.337280', '276.104187', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150254, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143905', 1143905, '237.018402', '-23.084021', '269.268188', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149982, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143907', 1143907, '242.685898', '-23.822359', '245.136795', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149710, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143911', 1143911, '224.510498', '-25.336050', '241.230103', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149438, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143915', 1143915, '241.148895', '-25.036400', '235.342697', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149166, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143916', 1143916, '236.107697', '-26.824610', '216.055893', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148894, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143919', 1143919, '246.995605', '-24.468109', '240.298096', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146718, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143920', 1143920, '265.723907', '-25.564400', '226.344604', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148622, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143921', 1143921, '265.719299', '-26.269621', '219.037994', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148350, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143923', 1143923, '268.421387', '-21.408449', '246.509399', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148078, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143924', 1143924, '264.054688', '-19.323090', '252.478806', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147806, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143925', 1143925, '295.377899', '-18.290230', '266.437103', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147534, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1143934', 1143934, '316.585999', '-16.832951', '187.871704', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143935', 1143935, '314.021301', '-17.296310', '192.256302', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143936', 1143936, '311.854492', '-17.875420', '189.936905', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143938', 1143938, '283.100586', '-25.497869', '192.706100', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143941', 1143941, '280.262390', '-25.619940', '193.316498', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143944', 1143944, '273.152496', '-20.649960', '128.760193', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110300, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143945', 1143945, '303.365509', '-8.872850', '95.128830', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143946', 1143946, '296.499603', '-11.734670', '103.927902', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109756, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143949', 1143949, '301.016296', '-10.037700', '103.164902', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110028, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143952', 1143952, '274.860687', '-13.992570', '103.746002', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143953', 1143953, '277.363190', '-13.962050', '102.250702', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143962', 1143962, '297.610199', '-23.044500', '220.886002', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143963', 1143963, '309.994110', '-18.136681', '184.117996', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143966', 1143966, '299.197113', '-21.964729', '223.815796', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143969', 1143969, '297.872894', '-12.140140', '107.895203', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143970', 1143970, '276.631500', '-19.656750', '126.440804', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143971', 1143971, '297.779785', '-22.690210', '161.913406', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98332, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143972', 1143972, '371.881592', '-6.723549', '84.641747', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98604, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143973', 1143973, '376.154114', '-6.318017', '85.862457', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97788, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143974', 1143974, '371.085114', '-5.840127', '88.055183', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98060, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143983', 1143983, '419.912994', '-4.654048', '77.439484', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98876, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143984', 1143984, '424.551697', '-3.646953', '81.803574', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99692, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143985', 1143985, '428.493103', '-1.675420', '69.168533', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143987', 1143987, '401.540802', '-6.912460', '58.247761', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143988', 1143988, '403.463715', '-6.369321', '60.898708', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99148, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143989', 1143989, '378.988312', '-7.187046', '68.955467', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99420, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143990', 1143990, '405.752197', '-6.460996', '59.106491', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97516, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143991', 1143991, '387.045013', '-4.837157', '93.705597', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97244, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1143998', 1143998, '390.177887', '-4.509761', '93.888512', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96972, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144003', 1144003, '223.302307', '-22.244350', '140.968201', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91864, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144004', 1144004, '217.578293', '-21.988300', '138.200897', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90504, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144007', 1144007, '185.015701', '-24.153931', '154.465500', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90232, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144008', 1144008, '179.410904', '-23.832951', '152.981903', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91592, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144009', 1144009, '167.197998', '-27.995230', '192.997803', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91320, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144011', 1144011, '177.798798', '-24.733610', '159.351395', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91048, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144015', 1144015, '138.902802', '-27.603621', '237.109894', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92680, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144017', 1144017, '88.530487', '-27.058380', '290.765411', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92136, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144019', 1144019, '84.896217', '-28.451370', '271.261688', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92408, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144027', 1144027, '-15.138880', '-52.068508', '438.953705', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144028', 1144028, '-12.361740', '-51.361629', '435.444214', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73126, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144030', 1144030, '-9.676152', '-51.078831', '436.725891', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144031', 1144031, '-21.414761', '-45.509689', '411.041412', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70950, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144042', 1144042, '9.536865', '-48.508480', '474.235107', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67964, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144043', 1144043, '3.205714', '-47.435299', '471.491486', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67420, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144045', 1144045, '-11.876680', '-52.218342', '458.182587', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68236, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144047', 1144047, '-30.001869', '-55.355400', '500.188385', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71222, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144049', 1144049, '-35.678230', '-53.471958', '498.265686', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144050', 1144050, '-16.922300', '-53.971210', '467.582214', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144051', 1144051, '-30.825859', '-54.086170', '495.671692', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144066', 1144066, '-215.322098', '-30.287540', '345.076813', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144067', 1144067, '-217.336304', '-30.232090', '345.381989', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72582, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144068', 1144068, '-241.359406', '-30.546400', '355.281891', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72854, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144074', 1144074, '-187.557999', '-30.827459', '327.431396', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144076', 1144076, '-189.083893', '-30.732161', '329.140411', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144079', 1144079, '-207.943893', '-30.040119', '327.783203', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144085', 1144085, '-207.568497', '-30.624901', '298.084900', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71494, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144088', 1144088, '-217.678604', '-29.217609', '281.772491', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144089', 1144089, '-232.330093', '-26.492390', '293.040802', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144090', 1144090, '-230.365494', '-26.618240', '295.168701', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144095', 1144095, '-236.490906', '-26.792789', '270.853088', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144102', 1144102, '-269.982300', '-15.041580', '257.233795', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88056, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144103', 1144103, '-256.205414', '-24.029810', '238.507599', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88328, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144108', 1144108, '-250.331604', '-26.539511', '245.353897', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87512, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144111', 1144111, '-247.374802', '-26.295010', '199.152298', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87784, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144115', 1144115, '-145.718704', '-44.456711', '245.994507', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89144, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144117', 1144117, '-194.954300', '-56.667259', '298.548615', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89688, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144124', 1144124, '-88.115013', '-50.887539', '355.110413', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144132', 1144132, '-180.289703', '-58.090000', '341.292908', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144134', 1144134, '-173.453705', '-58.488270', '346.267395', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144136', 1144136, '-248.384903', '-70.863403', '400.043610', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144155', 1144155, '-265.522308', '-78.660339', '495.811401', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64452, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1144156', 1144156, '94.651657', '-28.693371', '205.296204', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52672, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144157', 1144157, '58.451691', '-24.165310', '201.325806', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144161', 1144161, '142.662994', '-27.379681', '171.947693', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51584, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144163', 1144163, '72.983849', '-14.541890', '160.479095', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53216, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144165', 1144165, '28.954960', '-9.060006', '115.734299', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53760, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144166', 1144166, '62.516159', '-10.939160', '113.847504', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53488, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144167', 1144167, '33.890240', '-7.635654', '75.669441', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1144171', 1144171, '38.681568', '-7.743955', '37.247219', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1145781', 1145781, '314.148712', '-9.873041', '137.315598', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1145783', 1145783, '316.563904', '-11.553430', '155.556900', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102140, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1145785', 1145785, '310.839111', '-10.058590', '146.018997', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101868, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1145786', 1145786, '335.961487', '-6.303717', '151.505005', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1145792', 1145792, '334.663391', '-4.191054', '173.662903', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1145794', 1145794, '342.177307', '-3.911723', '174.273193', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100780, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1145797', 1145797, '356.749786', '-1.121761', '182.588501', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368415', 1368415, '451.260101', '-3.443870', '238.795807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147256, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1368437', 1368437, '390.890289', '-7.586338', '269.886292', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146984, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1368491', 1368491, '313.954803', '-6.875740', '27.206791', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368493', 1368493, '318.414001', '-7.856604', '-8.765156', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368494', 1368494, '337.636292', '-5.691662', '26.687981', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368495', 1368495, '360.321503', '-3.134459', '15.892390', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368496', 1368496, '364.258301', '-3.572027', '19.096781', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368497', 1368497, '353.728394', '-5.753780', '25.100679', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368498', 1368498, '321.866913', '-7.314247', '-15.243810', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114918, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368499', 1368499, '317.799591', '-6.363059', '23.605659', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114646, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368501', 1368501, '310.197205', '-8.609804', '2.999502', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368502', 1368502, '307.043396', '-8.701551', '-1.767205', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114374, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368503', 1368503, '307.209808', '-7.736371', '-25.314760', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368506', 1368506, '279.991913', '-7.195922', '-25.793631', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368507', 1368507, '275.332886', '-6.079346', '-51.364719', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117366, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368508', 1368508, '268.817902', '-7.622407', '-26.344280', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368509', 1368509, '276.584106', '-5.971716', '-40.277569', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368513', 1368513, '273.210785', '-9.038651', '1.056271', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368515', 1368515, '271.523804', '-11.769340', '30.395180', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368516', 1368516, '255.359695', '-9.109683', '4.562400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368517', 1368517, '251.891006', '-8.924417', '10.996560', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368519', 1368519, '238.113907', '-10.699850', '39.986820', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368520', 1368520, '236.666702', '-11.041180', '47.762650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368521', 1368521, '216.099899', '-5.217842', '15.486120', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368522', 1368522, '219.648102', '-5.708765', '19.837851', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368527', 1368527, '226.886307', '-11.459570', '69.291168', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368528', 1368528, '232.117203', '-11.721460', '66.985252', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368530', 1368530, '217.647400', '-9.632435', '55.535179', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368531', 1368531, '262.570892', '-13.984700', '50.050228', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368532', 1368532, '253.925293', '-13.748430', '50.339458', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368537', 1368537, '36.721581', '-13.599010', '-35.811329', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368539', 1368539, '45.805561', '-2.063314', '-62.499821', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368540', 1368540, '43.942150', '-1.029362', '-68.421707', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368542', 1368542, '19.448151', '-0.446853', '-89.062424', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368546', 1368546, '57.928291', '9.733817', '-102.176399', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48054, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368548', 1368548, '55.925640', '6.821295', '-37.389530', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48326, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368554', 1368554, '68.129494', '7.053471', '-60.042889', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49142, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368555', 1368555, '94.406288', '8.411647', '-78.379066', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48598, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368556', 1368556, '145.311600', '6.469276', '-59.126930', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48870, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368560', 1368560, '117.309502', '6.760285', '-52.052681', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368561', 1368561, '160.460007', '3.641483', '-40.868118', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368562', 1368562, '-193.135696', '-32.369289', '261.702515', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368569', 1368569, '-19.247980', '-45.409012', '412.262085', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368570', 1368570, '-46.799500', '-47.531921', '426.291290', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368571', 1368571, '-36.310310', '-47.774849', '409.386902', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368577', 1368577, '354.033691', '-1.282395', '183.656601', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122256, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368578', 1368578, '338.217590', '-3.919866', '175.769104', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123072, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368579', 1368579, '320.962494', '-8.541780', '134.309296', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119264, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368580', 1368580, '311.398987', '-9.954162', '140.459198', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123344, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368582', 1368582, '313.089508', '-17.740789', '185.998001', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118176, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368583', 1368583, '274.723297', '-26.291660', '183.940598', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124160, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368584', 1368584, '304.162506', '-21.746981', '213.237000', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122800, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368587', 1368587, '273.532806', '-13.660890', '101.165001', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124976, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368590', 1368590, '303.309204', '-10.197260', '107.375298', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121984, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368591', 1368591, '372.633514', '-5.472790', '90.196060', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123888, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368594', 1368594, '376.821503', '-7.339636', '68.955467', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123616, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368596', 1368596, '410.155609', '-6.183658', '55.648460', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121440, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368597', 1368597, '412.797699', '-4.115298', '93.821388', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121168, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368598', 1368598, '362.752686', '-7.221369', '55.588570', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120624, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368600', 1368600, '330.403503', '-5.478035', '19.729870', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120080, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368601', 1368601, '340.436401', '-5.850005', '23.485689', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118720, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368602', 1368602, '334.164093', '-4.736384', '-1.168072', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120352, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368604', 1368604, '280.384491', '-6.088397', '-46.768951', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121712, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368605', 1368605, '246.078796', '-5.873863', '-10.449420', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122528, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368606', 1368606, '275.931305', '-10.226560', '7.661325', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118448, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368607', 1368607, '279.562286', '-10.758130', '40.909191', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118992, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368608', 1368608, '281.362915', '-10.660460', '38.721069', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119536, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368610', 1368610, '219.226303', '-10.849210', '70.298264', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125792, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368612', 1368612, '233.086899', '-9.948204', '40.259239', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124432, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368613', 1368613, '213.180206', '-3.941148', '-4.296664', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124704, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368614', 1368614, '207.285202', '-5.140594', '20.525330', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119808, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368616', 1368616, '239.936707', '-7.773538', '10.082270', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125520, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1368727', 1368727, '278.431305', '-15.600310', '291.462494', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1368728', 1368728, '265.339111', '-16.501490', '289.234711', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1369057', 1369057, '450.064789', '-3.280736', '237.567703', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145908, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369058', 1369058, '417.631012', '-3.443490', '258.794006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145636, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369059', 1369059, '431.584900', '-2.734727', '225.736801', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145364, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369060', 1369060, '433.904297', '-2.631201', '225.675797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145092, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369063', 1369063, '420.105713', '-3.826969', '244.376099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144820, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369064', 1369064, '420.595215', '-1.434317', '198.139404', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144548, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369066', 1369066, '420.503693', '-1.383187', '195.789505', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144264, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1369067', 1369067, '327.321198', '-5.054865', '262.409302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144004, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369069', 1369069, '418.255005', '-3.347633', '257.236389', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143720, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1369078', 1369078, '405.129486', '-6.796501', '230.618896', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143448, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1369079', 1369079, '379.850403', '-9.137354', '273.382690', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143188, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369081', 1369081, '282.579498', '-14.737670', '288.410797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142916, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369082', 1369082, '297.790985', '-17.412251', '269.611206', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142644, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369083', 1369083, '268.697693', '-19.984810', '251.224106', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142372, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369084', 1369084, '289.845093', '-14.468090', '305.104095', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142100, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369085', 1369085, '324.574585', '-14.779820', '286.915314', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141828, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(218, 'b251', 'bnpc1369086', 1369086, '329.182800', '-13.956880', '285.480988', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141556, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369087', 1369087, '345.143799', '-11.551130', '289.967102', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141272, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1369088', 1369088, '252.741592', '-21.175320', '288.406799', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141012, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369089', 1369089, '218.890594', '-26.504971', '301.258789', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140740, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369090', 1369090, '219.501007', '-26.810150', '303.212006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140468, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369091', 1369091, '241.351898', '-22.922640', '271.923187', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140196, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369092', 1369092, '194.140503', '-27.267920', '297.596588', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139924, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369093', 1369093, '196.285995', '-27.929461', '274.390991', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139652, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369095', 1369095, '185.564896', '-32.730652', '315.266602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139380, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369096', 1369096, '161.730301', '-36.392811', '324.788208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139108, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369097', 1369097, '167.315094', '-27.481541', '282.978485', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138836, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369098', 1369098, '142.931198', '-30.685940', '303.578186', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138564, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369099', 1369099, '172.080307', '-41.270390', '355.679108', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138292, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369101', 1369101, '217.456299', '-28.130699', '347.341095', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138020, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369102', 1369102, '216.124100', '-28.447210', '349.443512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137748, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369103', 1369103, '185.566101', '-37.807560', '358.326202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137476, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369104', 1369104, '238.333801', '-24.868570', '356.358398', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137204, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369105', 1369105, '230.975800', '-27.237400', '321.187103', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136932, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369109', 1369109, '262.285889', '-26.207680', '223.339996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136660, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369112', 1369112, '226.922302', '-24.500299', '282.846985', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136388, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369113', 1369113, '270.740814', '-25.894609', '219.684097', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136116, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369114', 1369114, '226.555206', '-25.225269', '239.887299', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135844, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369116', 1369116, '282.357086', '-23.535101', '244.795303', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135572, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369121', 1369121, '333.561310', '2.185390', '242.975006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135300, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369126', 1369126, '391.683807', '0.442465', '197.375397', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135016, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1369127', 1369127, '374.291687', '0.069733', '177.932404', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125248, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369128', 1369128, '340.926086', '-4.172237', '171.404495', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103228, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369129', 1369129, '274.308289', '-21.454750', '133.409195', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101052, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369131', 1369131, '284.565399', '-25.650459', '196.215698', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101324, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369135', 1369135, '164.769394', '-24.938990', '163.613800', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92952, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1369136', 1369136, '126.420898', '-26.382891', '167.406693', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369137', 1369137, '128.709793', '-25.925119', '164.324402', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57556, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369138', 1369138, '131.686401', '-24.799540', '198.020599', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369139', 1369139, '74.797401', '-28.214760', '204.149094', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58372, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369140', 1369140, '71.341454', '-16.064501', '165.951599', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57828, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369141', 1369141, '69.103951', '-17.105560', '168.596893', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58100, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369142', 1369142, '48.614868', '-17.861691', '162.486298', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369143', 1369143, '69.590843', '-13.496570', '146.253998', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369146', 1369146, '39.957119', '-8.666501', '105.835701', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369147', 1369147, '52.015511', '-8.974514', '78.552917', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369148', 1369148, '45.149349', '-13.324360', '7.012329', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369149', 1369149, '17.379999', '-13.717900', '-20.370790', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369150', 1369150, '35.561901', '-13.693350', '-33.797138', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369151', 1369151, '44.338890', '-1.270125', '-66.438026', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369152', 1369152, '14.275760', '-0.570236', '-87.355873', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369153', 1369153, '31.780800', '-0.130703', '-85.079163', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369154', 1369154, '64.954559', '6.905480', '-85.581947', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369157', 1369157, '46.957291', '12.114440', '-121.487297', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369160', 1369160, '68.467163', '6.973328', '-53.543949', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369161', 1369161, '82.078217', '7.186952', '-63.706459', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58916, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369162', 1369162, '91.386230', '8.010939', '-78.294083', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58644, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369163', 1369163, '141.008499', '6.515503', '-53.391361', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369166', 1369166, '163.313705', '6.032107', '-46.804680', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369169', 1369169, '-31.436220', '-54.130669', '497.960510', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369174', 1369174, '21.103210', '-49.546139', '475.272614', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369177', 1369177, '-15.233060', '-53.066551', '466.036011', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369180', 1369180, '-48.539001', '-47.348751', '424.643188', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369183', 1369183, '-11.764770', '-51.560242', '438.742706', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369184', 1369184, '-91.746658', '-51.122200', '356.392212', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369185', 1369185, '-89.732468', '-51.292042', '358.650513', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369186', 1369186, '-116.542198', '-54.847111', '366.704803', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369187', 1369187, '-215.533707', '-63.035099', '360.219604', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369188', 1369188, '-179.797104', '-59.525509', '348.256592', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369189', 1369189, '-217.090103', '-64.042107', '364.888885', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369190', 1369190, '-255.542892', '-74.143631', '419.790894', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369191', 1369191, '-297.823914', '-79.049583', '481.552887', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369194', 1369194, '-267.105286', '-78.933182', '492.746185', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369197', 1369197, '-195.056107', '-32.913761', '285.816711', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63370, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369203', 1369203, '-194.417404', '-31.711460', '260.054596', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63914, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369206', 1369206, '-219.511200', '-30.548080', '332.944885', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63642, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369210', 1369210, '-169.922607', '-51.790081', '281.324493', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369225', 1369225, '415.314301', '-4.384437', '279.848297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134484, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369226', 1369226, '417.664215', '-4.268155', '279.787292', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134200, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1369227', 1369227, '416.351898', '-4.344605', '282.320313', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133928, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1369245', 1369245, '106.026802', '-24.064631', '188.681503', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52944, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1369266', 1369266, '110.856796', '6.893584', '-48.683529', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369268', 1369268, '106.950401', '7.553162', '-65.018799', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369270', 1369270, '448.720703', '-3.422734', '241.608597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133656, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1369283', 1369283, '400.411896', '-3.097628', '212.787003', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133396, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1369346', 1369346, '72.281059', '-23.743839', '185.561203', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1373459', 1373459, '443.619507', '-3.181869', '264.612488', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127146, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1373461', 1373461, '448.051788', '-2.900265', '234.756104', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133112, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1373462', 1373462, '416.268707', '-3.808599', '263.633698', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132840, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1373464', 1373464, '474.141296', '-3.220261', '248.381897', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132568, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1373465', 1373465, '472.096588', '-3.385255', '246.489807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132296, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1373466', 1373466, '475.150604', '-3.341773', '246.356903', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132036, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1373468', 1373468, '274.396088', '-14.909590', '275.718201', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127690, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1373469', 1373469, '166.918396', '-41.534370', '347.432587', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126874, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1373472', 1373472, '315.059814', '-12.244580', '158.583603', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101596, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1373473', 1373473, '320.444611', '-9.346396', '146.037094', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1373474', 1373474, '315.725800', '-9.276663', '126.870499', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1373475', 1373475, '321.508789', '-8.653498', '126.646599', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1373476', 1373476, '336.930115', '-3.588053', '182.083405', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1373477', 1373477, '323.688599', '-14.094800', '192.991898', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1373479', 1373479, '170.224701', '-26.854139', '298.491211', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1373480', 1373480, '259.386292', '-22.771570', '242.221405', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131486, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1373481', 1373481, '296.304993', '-24.768950', '202.106201', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1373482', 1373482, '160.660004', '-38.959309', '337.590302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131220, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1373497', 1373497, '335.683197', '-4.748982', '10.208240', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126602, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1373500', 1373500, '232.074402', '-6.008647', '2.020233', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127418, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1373502', 1373502, '393.522491', '-5.844142', '73.170151', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1373503', 1373503, '411.140686', '-5.930238', '61.455570', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1373504', 1373504, '347.812195', '-6.402293', '271.350494', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130936, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1373505', 1373505, '346.218903', '-6.677882', '272.394409', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130676, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1373507', 1373507, '292.224792', '-18.765341', '132.923004', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1373508', 1373508, '307.241913', '-8.558214', '101.772003', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1417935', 1417935, '204.363998', '-30.869049', '325.184998', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1417936', 1417936, '206.500305', '-30.502831', '322.743500', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130126, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1417937', 1417937, '206.591797', '-30.411280', '325.246002', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129860, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1417940', 1417940, '-165.340302', '-39.282860', '193.438599', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88872, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1417946', 1417946, '-298.084991', '-79.301208', '470.145599', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64724, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1417947', 1417947, '-302.235504', '-79.240173', '463.034912', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64180, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1417948', 1417948, '-232.433594', '-26.853029', '279.165588', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78554, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1417949', 1417949, '-298.420685', '-54.795170', '303.761414', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1417950', 1417950, '-300.953705', '-54.459469', '309.101898', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79370, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1417951', 1417951, '-271.875885', '-52.291519', '281.696686', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78282, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1417952', 1417952, '-278.400909', '-54.097359', '324.329590', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79098, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1417953', 1417953, '-275.976593', '-51.020748', '335.645813', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1417954', 1417954, '-252.932907', '-58.400982', '302.113312', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78826, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1417955', 1417955, '-229.778000', '-27.208941', '284.492401', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78010, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1417956', 1417956, '-202.834305', '-30.699909', '342.864288', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77466, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1417957', 1417957, '-191.225204', '-44.687611', '220.141800', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1417958', 1417958, '-264.080414', '-22.174829', '238.910095', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1417959', 1417959, '-229.297394', '-35.111050', '231.403000', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1417960', 1417960, '-174.044495', '-40.534210', '200.048401', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89416, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1417961', 1417961, '-149.616501', '-45.683731', '252.513397', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc1417968', 1417968, '-35.348652', '-13.415600', '-78.564903', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45346, 1, 0, 0, 0, 40, 30119, 0, 0, 0), +(218, 'b251', 'bnpc1417973', 1417973, '-116.777298', '-9.689575', '-86.778084', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45074, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(218, 'b251', 'bnpc1417975', 1417975, '-66.605652', '-8.194153', '-62.211121', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43714, 1, 0, 0, 0, 40, 30125, 0, 0, 0), +(218, 'b251', 'bnpc1417976', 1417976, '-38.827709', '-13.552420', '-78.398163', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42904, 1, 0, 0, 0, 40, 30057, 0, 0, 0), +(218, 'b251', 'bnpc1417977', 1417977, '-64.164253', '-8.163635', '-66.880310', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43986, 1, 0, 0, 0, 40, 30119, 0, 0, 0), +(218, 'b251', 'bnpc1417978', 1417978, '-10.940770', '-10.482990', '-42.618488', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43176, 1, 0, 0, 0, 0, 30124, 0, 0, 0), +(218, 'b251', 'bnpc1417979', 1417979, '-110.368500', '-9.353821', '-74.723450', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42632, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(218, 'b251', 'bnpc1417981', 1417981, '-130.923203', '-9.875401', '-94.172653', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44802, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(218, 'b251', 'bnpc1417982', 1417982, '-128.984497', '-10.045940', '-97.250549', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42088, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(218, 'b251', 'bnpc1417983', 1417983, '-119.401901', '-9.597961', '-63.828548', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44530, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(218, 'b251', 'bnpc1417984', 1417984, '-25.987261', '-7.826045', '-143.341904', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(218, 'b251', 'bnpc1417985', 1417985, '-46.618172', '-8.729055', '-147.223099', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44258, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(218, 'b251', 'bnpc1417986', 1417986, '-28.136749', '-8.067919', '-139.809906', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42360, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(218, 'b251', 'bnpc1417987', 1417987, '-37.033691', '-9.445435', '-137.254898', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41816, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(218, 'b251', 'bnpc1417988', 1417988, '-28.400631', '-7.899245', '-144.824905', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45618, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(218, 'b251', 'bnpc1417991', 1417991, '59.539070', '-37.771149', '294.833313', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88600, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc1418004', 1418004, '315.449707', '-8.316214', '-13.626350', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120896, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc2315589', 2315589, '-77.122833', '-6.427255', '-71.078758', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55386, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(218, 'b251', 'bnpc2315590', 2315590, '-133.217896', '-9.529019', '-60.232140', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55930, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(218, 'b251', 'bnpc2315591', 2315591, '-106.534103', '-12.212950', '-111.347603', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55658, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(218, 'b251', 'bnpc2315592', 2315592, '-105.572998', '-9.525784', '-86.103401', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54570, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(218, 'b251', 'bnpc2315593', 2315593, '-77.411713', '-13.583240', '-132.304901', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54298, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(218, 'b251', 'bnpc2315595', 2315595, '-37.583012', '-11.337520', '-125.597000', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55114, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(218, 'b251', 'bnpc2315596', 2315596, '-4.898193', '-11.638100', '-36.911621', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc2320968', 2320968, '417.338806', '-2.166638', '180.231598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129576, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc2320969', 2320969, '422.079498', '-2.088056', '179.054596', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129316, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc2320970', 2320970, '421.093597', '-1.981825', '181.915405', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129032, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc2321008', 2321008, '38.345871', '11.978280', '-107.103104', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49414, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc2321010', 2321010, '-46.306919', '-9.823078', '-139.634399', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54842, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(218, 'b251', 'bnpc2321012', 2321012, '205.010406', '-24.383320', '145.800797', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89960, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc2321013', 2321013, '115.746803', '-26.867279', '252.730103', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90776, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc2321016', 2321016, '14.364810', '-47.184280', '446.981415', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81268, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(218, 'b251', 'bnpc2321017', 2321017, '8.855011', '-47.052078', '437.906494', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80996, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(218, 'b251', 'bnpc2321018', 2321018, '23.615641', '-45.878761', '447.495605', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79908, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(218, 'b251', 'bnpc2321019', 2321019, '-29.630119', '-53.701389', '454.788208', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc2342034', 2342034, '-104.783699', '-51.407688', '385.580200', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc2615829', 2615829, '247.882797', '-28.305531', '212.390305', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93998, 4, 0, 0, 0, 0, 30126, 0, 0, 0), +(218, 'b251', 'bnpc2615830', 2615830, '219.897705', '-25.925119', '230.212799', 744, 0, 0, 0, 1, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95624, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc2615831', 2615831, '251.972198', '-28.702271', '209.338501', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95890, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc2615832', 2615832, '213.214203', '-27.298441', '257.099213', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96434, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc2615833', 2615833, '215.472595', '-27.237400', '253.040298', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94542, 4, 0, 0, 0, 0, 30119, 0, 0, 0), +(218, 'b251', 'bnpc2615834', 2615834, '212.019608', '-27.601471', '252.518906', 744, 0, 0, 0, 0, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95080, 4, 0, 0, 0, 0, 30057, 0, 0, 0), +(218, 'b251', 'bnpc2615835', 2615835, '223.315704', '-26.199789', '217.486801', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93726, 4, 0, 0, 0, 0, 30125, 0, 0, 0), +(218, 'b251', 'bnpc2615836', 2615836, '230.090698', '-25.436840', '224.750107', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96162, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc2615837', 2615837, '251.606003', '-27.756210', '214.862198', 744, 0, 0, 0, 1, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94808, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc2849611', 2849611, '245.960098', '-27.145849', '217.639404', 743, 0, 0, 0, 1, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94270, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc2849612', 2849612, '221.789795', '-25.833570', '222.369705', 745, 0, 0, 0, 0, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96706, 4, 0, 0, 0, 0, 30119, 0, 0, 0), +(218, 'b251', 'bnpc2849614', 2849614, '218.411407', '-26.477131', '218.507996', 744, 0, 0, 0, 0, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95352, 4, 0, 0, 0, 0, 30120, 0, 0, 0), +(218, 'b251', 'bnpc3741110', 3741110, '73.289063', '-41.763981', '357.900299', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65534, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(218, 'b251', 'bnpc3741111', 3741111, '90.043427', '-40.634819', '352.315491', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66072, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(218, 'b251', 'bnpc3741112', 3741112, '85.557281', '-40.634819', '351.460999', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66610, 1, 0, 0, 0, 0, 30125, 0, 0, 0), +(218, 'b251', 'bnpc3741117', 3741117, '73.065964', '-38.481918', '332.600189', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65262, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(218, 'b251', 'bnpc3741118', 3741118, '52.970268', '-40.324650', '335.009186', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66344, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(218, 'b251', 'bnpc3741119', 3741119, '68.443611', '-40.187721', '343.554413', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67154, 1, 0, 0, 0, 0, 30057, 0, 0, 0), +(218, 'b251', 'bnpc3741122', 3741122, '53.208130', '-40.756901', '339.009613', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65800, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(218, 'b251', 'bnpc3741123', 3741123, '50.547020', '-40.461750', '336.659790', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66882, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(218, 'b251', 'bnpc3741124', 3741124, '53.528259', '-38.479301', '320.227112', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64990, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(218, 'b251', 'bnpc3741132', 3741132, '-284.870697', '-49.925079', '340.580109', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77738, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc3741133', 3741133, '21.243629', '-45.595200', '442.469513', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80724, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(218, 'b251', 'bnpc3741134', 3741134, '10.489580', '-47.098289', '439.071106', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81540, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(218, 'b251', 'bnpc3741135', 3741135, '23.118601', '-45.096272', '440.785797', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80180, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(218, 'b251', 'bnpc3741136', 3741136, '14.816470', '-45.761841', '435.965515', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79636, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(218, 'b251', 'bnpc3741137', 3741137, '21.488041', '-45.079990', '439.112488', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80452, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(218, 'b251', 'bnpc3741144', 3741144, '30.237329', '-47.804062', '466.828094', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69052, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc3741148', 3741148, '3.116203', '-49.230431', '481.867706', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69324, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc3741173', 3741173, '-41.599140', '-53.307251', '487.071014', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68508, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc3741178', 3741178, '28.775129', '-50.812210', '483.936310', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67692, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc3741198', 3741198, '-42.711262', '-52.666340', '491.020508', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68780, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc3741238', 3741238, '106.088799', '-22.112341', '171.394897', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc3741243', 3741243, '90.759720', '-19.997610', '170.030807', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46156, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc3741245', 3741245, '112.405098', '-22.569309', '167.395905', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45884, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc3741251', 3741251, '98.788353', '-23.465191', '165.496506', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc3741254', 3741254, '99.891838', '-23.128969', '165.796494', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc3741257', 3741257, '104.599197', '-23.865101', '164.789703', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc3741264', 3741264, '112.733398', '-22.251949', '161.306900', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc3741271', 3741271, '111.878098', '-22.535490', '167.695908', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc3870413', 3870413, '454.933990', '-1.199433', '198.847107', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21300, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(218, 'b251', 'bnpc3870422', 3870422, '355.536987', '-9.878284', '296.848114', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21034, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(218, 'b251', 'bnpc3870434', 3870434, '313.523193', '-6.315191', '-66.822891', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20768, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(218, 'b251', 'bnpc3870455', 3870455, '187.612900', '-2.180824', '-4.180596', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 49, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20484, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(218, 'b251', 'bnpc3870460', 3870460, '107.120598', '-28.211399', '276.198486', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20230, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(218, 'b251', 'bnpc3870467', 3870467, '52.319149', '-39.485619', '244.958893', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19952, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(218, 'b251', 'bnpc3870476', 3870476, '-125.156197', '-45.844360', '225.082901', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19680, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(218, 'b251', 'bnpc3870506', 3870506, '-54.058109', '-47.078789', '320.834991', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19396, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(218, 'b251', 'bnpc3871285', 3871285, '245.121399', '-27.767639', '161.763901', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19130, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(218, 'b251', 'bnpc3877610', 3877610, '460.799194', '-1.088999', '205.124603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128500, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc3897788', 3897788, '454.380188', '-1.495000', '207.570404', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128216, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(218, 'b251', 'bnpc3898013', 3898013, '448.109894', '-1.597685', '204.794403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127956, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(218, 'b251', 'bnpc4621558', 4621558, '-39.931252', '-7.787434', '-153.907501', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22586, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1132780', 1132780, '42.705971', '6.489012', '-222.119598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231446, 7, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(219, 'go008', 'bnpc1132784', 1132784, '43.994171', '7.081282', '-226.261307', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132785', 1132785, '46.368141', '6.532326', '-222.363800', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230902, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132786', 1132786, '50.249649', '8.663927', '-237.583603', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132810', 1132810, '119.142403', '17.274370', '-264.585907', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132815', 1132815, '53.141479', '4.367238', '-208.718597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132818', 1132818, '57.950279', '4.701855', '-181.906006', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132819', 1132819, '53.380199', '3.647015', '-170.941803', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132823', 1132823, '85.892982', '4.386182', '-186.633102', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132827', 1132827, '136.440002', '-0.215091', '-142.126297', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132829', 1132829, '139.586502', '1.436886', '-162.906296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132833', 1132833, '144.692596', '1.594073', '-161.313507', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132834', 1132834, '169.345306', '-0.575563', '-143.321701', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132835', 1132835, '132.885803', '4.471908', '-182.040894', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132836', 1132836, '127.652000', '2.679112', '-179.060898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132837', 1132837, '133.402802', '5.498395', '-185.220093', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132842', 1132842, '104.130501', '4.751109', '-199.651596', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132988', 1132988, '145.939301', '0.761501', '-119.501801', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132990', 1132990, '165.896698', '-0.582151', '-142.284103', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132991', 1132991, '196.646301', '-2.798964', '-155.795898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132992', 1132992, '159.011398', '0.196450', '-113.407997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226012, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1132993', 1132993, '162.856598', '-0.357008', '-115.116997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225740, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133000', 1133000, '202.288803', '-2.206049', '-168.963196', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225468, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133001', 1133001, '223.772705', '-6.852091', '-140.217407', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225196, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133002', 1133002, '206.683395', '-2.759299', '-171.221497', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224924, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133005', 1133005, '231.146698', '-5.044106', '-178.307693', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224652, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133007', 1133007, '242.902496', '-0.494766', '-191.458496', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224380, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133008', 1133008, '239.977493', '-0.588080', '-191.828400', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224108, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133010', 1133010, '221.392303', '-6.460419', '-138.050598', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223836, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133022', 1133022, '332.788513', '-3.345333', '-151.251495', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201534, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133023', 1133023, '298.603699', '-6.332541', '-125.749603', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133029', 1133029, '302.693298', '-3.341390', '-184.143005', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133031', 1133031, '328.386993', '-0.505648', '-187.936401', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133032', 1133032, '342.892487', '-1.328422', '-175.218201', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133035', 1133035, '358.327515', '-2.255364', '-175.310898', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133036', 1133036, '335.507294', '0.561625', '-194.418793', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133042', 1133042, '439.946808', '10.149250', '-108.177101', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169468, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133044', 1133044, '458.584900', '14.997390', '-90.379593', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169740, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133047', 1133047, '463.401215', '25.778530', '-35.324680', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168380, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133049', 1133049, '445.243591', '31.812080', '-9.685579', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168652, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133052', 1133052, '486.745514', '31.609249', '-44.177990', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168924, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133053', 1133053, '487.618011', '31.024900', '-55.958771', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170012, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133054', 1133054, '483.304291', '30.900890', '-51.161331', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172188, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133056', 1133056, '482.511993', '23.910801', '-88.545013', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173276, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133057', 1133057, '480.679291', '24.104330', '-120.189201', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169196, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133063', 1133063, '504.435913', '29.146271', '-83.562149', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173004, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133064', 1133064, '482.169495', '24.010910', '-92.475502', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172732, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133065', 1133065, '459.642914', '24.454941', '-39.719559', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172460, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133066', 1133066, '453.938690', '26.000799', '-33.810230', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170828, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133070', 1133070, '351.512787', '3.052480', '46.861389', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133071', 1133071, '341.298492', '3.983801', '67.704231', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133072', 1133072, '348.626495', '0.976962', '28.015940', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133073', 1133073, '342.183502', '0.098491', '27.298340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133077', 1133077, '309.071411', '-2.609340', '63.065491', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133080', 1133080, '281.574707', '-7.184652', '26.169170', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133098', 1133098, '289.254913', '-5.168305', '48.585239', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133100', 1133100, '291.498688', '-5.368438', '47.821369', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133126', 1133126, '-82.030632', '1.519239', '-141.488693', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148770, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133128', 1133128, '-77.317497', '1.083344', '-136.644608', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148498, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133130', 1133130, '-63.375290', '0.643326', '-166.887497', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148226, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133131', 1133131, '-64.313164', '0.965167', '-162.181503', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147954, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133132', 1133132, '-75.591331', '1.176651', '-142.404297', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147682, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133138', 1133138, '-33.189919', '-4.914308', '-94.149628', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147410, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133148', 1133148, '86.244072', '-19.783070', '210.247406', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133152', 1133152, '70.510750', '-17.727341', '188.296799', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133156', 1133156, '56.609531', '-22.226370', '292.790710', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133163', 1133163, '25.970390', '-24.061230', '233.649994', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133165', 1133165, '37.231960', '-26.765560', '260.079498', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133167', 1133167, '36.484268', '-25.833570', '242.542099', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133172', 1133172, '94.585983', '-24.244490', '288.477509', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133176', 1133176, '98.126083', '-23.363501', '294.977814', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133177', 1133177, '85.597298', '-27.953020', '268.263000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133178', 1133178, '89.747749', '-28.194380', '266.065704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133179', 1133179, '141.949905', '-28.936390', '333.222290', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133181', 1133181, '160.046402', '-31.802570', '350.789795', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133185', 1133185, '164.906906', '-32.018280', '333.485504', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133186', 1133186, '146.226807', '-28.810591', '357.818298', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133187', 1133187, '196.479996', '-32.228100', '370.754303', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133189', 1133189, '179.687897', '-32.476631', '364.163086', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133193', 1133193, '213.929794', '-29.694580', '421.080688', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133194', 1133194, '210.157394', '-29.179230', '422.919312', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133195', 1133195, '202.300293', '-31.331381', '415.743286', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133196', 1133196, '197.350098', '-27.568890', '432.363586', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133197', 1133197, '127.580299', '-21.390261', '452.635986', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133198', 1133198, '140.825500', '-23.697309', '449.881714', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133199', 1133199, '140.459198', '-23.605749', '454.489899', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133202', 1133202, '12.397950', '-27.619690', '294.880493', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133205', 1133205, '-18.143021', '-24.734921', '265.369598', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133206', 1133206, '-12.771850', '-24.094040', '262.958710', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133207', 1133207, '-9.199866', '-28.976500', '329.645294', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140338, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133209', 1133209, '-28.712330', '-27.396271', '280.689209', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140066, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133235', 1133235, '-294.825012', '66.698837', '-219.308807', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94446, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133239', 1133239, '-293.659912', '67.460083', '-222.491806', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94174, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133246', 1133246, '-302.510101', '60.959740', '-159.319504', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93902, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133248', 1133248, '-302.700409', '62.132381', '-166.402496', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133255', 1133255, '-356.364685', '65.308533', '-258.518585', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133257', 1133257, '-369.039490', '65.567993', '-232.715393', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133258', 1133258, '-392.416290', '67.276978', '-249.713898', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1133287', 1133287, '197.283798', '-8.773984', '-27.176359', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133291', 1133291, '211.352707', '-8.651912', '-43.106781', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133293', 1133293, '157.305206', '-7.888961', '-17.929399', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133294', 1133294, '157.244202', '-8.163623', '-11.917340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133298', 1133298, '120.449799', '-4.840655', '13.528090', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1133303', 1133303, '104.203796', '-7.003938', '47.562321', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135577', 1135577, '335.133911', '-4.725379', '-24.794729', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196916, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135582', 1135582, '371.054596', '0.844982', '-35.208488', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196644, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135586', 1135586, '374.433105', '1.702958', '-25.284241', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135591', 1135591, '345.784607', '-2.975556', '-32.761169', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135593', 1135593, '332.478790', '-3.372291', '3.097534', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135605', 1135605, '395.773193', '2.548209', '-44.693722', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135606', 1135606, '415.025085', '5.625315', '-64.068764', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135607', 1135607, '388.509888', '0.304810', '-66.453087', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135612', 1135612, '394.000214', '3.556523', '-87.144318', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135613', 1135613, '375.936493', '0.686609', '-85.923592', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135614', 1135614, '343.831512', '-5.020265', '-80.094650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135616', 1135616, '409.009888', '5.209702', '-112.078003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135617', 1135617, '417.517700', '5.755183', '-68.232597', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135618', 1135618, '412.284607', '5.636008', '-106.424400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135619', 1135619, '406.314209', '5.571515', '-103.380302', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135624', 1135624, '386.668915', '4.336706', '-103.087303', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135625', 1135625, '364.309509', '0.784262', '-125.017197', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135627', 1135627, '359.853485', '-2.578822', '-152.483398', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135628', 1135628, '350.999207', '-2.118987', '-128.300003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135629', 1135629, '316.613586', '8.015758', '128.187897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135632', 1135632, '323.190002', '9.736116', '132.826904', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135633', 1135633, '322.078613', '10.136940', '134.004807', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135639', 1135639, '288.849091', '17.952721', '161.725601', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135643', 1135643, '286.915314', '19.626829', '172.441101', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135645', 1135645, '295.765594', '16.383280', '167.437195', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1135646', 1135646, '318.979004', '13.831220', '155.957001', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1135647', 1135647, '290.314087', '17.922770', '159.804199', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1135651', 1135651, '-262.056305', '55.970860', '36.748020', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135671', 1135671, '-462.059692', '64.698357', '68.829857', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1135673', 1135673, '-398.458893', '51.156910', '68.804077', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83602, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1135685', 1135685, '-418.844910', '58.274151', '-34.409142', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135687', 1135687, '-520.153870', '65.239517', '61.102520', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80888, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1135688', 1135688, '-508.781586', '65.293297', '40.634731', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81432, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1135931', 1135931, '272.581390', '23.939560', '195.025894', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135933', 1135933, '241.474594', '24.000601', '179.914902', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135937', 1135937, '-101.839104', '-40.043732', '299.745911', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1135938', 1135938, '-105.816902', '-40.028461', '306.239807', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1135939', 1135939, '-90.198776', '-40.129551', '324.673096', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1135940', 1135940, '-94.585022', '-40.032150', '311.676514', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1135941', 1135941, '-114.854698', '-40.054981', '302.937286', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135942', 1135942, '-97.734077', '-40.054981', '304.310608', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135943', 1135943, '-102.695999', '-40.032539', '320.445892', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1135944', 1135944, '-83.087273', '-39.867889', '327.616211', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162337', 1162337, '283.977112', '-6.509701', '-148.452805', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162338', 1162338, '281.871399', '-6.690229', '-150.039703', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162341', 1162341, '315.751801', '-4.718813', '-109.327103', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162344', 1162344, '309.980103', '1.983368', '92.979958', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162345', 1162345, '337.067413', '3.266761', '71.050873', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162348', 1162348, '130.357803', '-6.759793', '57.419651', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162351', 1162351, '222.430695', '-7.827925', '-60.441029', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162352', 1162352, '227.527206', '-7.187046', '-66.727753', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162353', 1162353, '203.082306', '-7.339636', '-68.925049', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162354', 1162354, '221.484604', '-7.400672', '-64.011642', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162358', 1162358, '-19.657080', '0.269221', '-140.150803', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1162368', 1162368, '112.853699', '-26.954611', '251.195801', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162369', 1162369, '89.158417', '-24.246630', '236.957306', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162371', 1162371, '217.547806', '-31.967699', '395.895294', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162374', 1162374, '-2.485424', '-31.687981', '451.364502', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162376', 1162376, '-10.696620', '-34.134480', '443.381287', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162378', 1162378, '-23.636271', '-35.911461', '462.485596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162380', 1162380, '-61.417610', '-36.118149', '490.745300', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162384', 1162384, '-4.128872', '-28.294901', '327.096588', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1162385', 1162385, '-48.920349', '-35.910400', '310.262909', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1162386', 1162386, '-66.916382', '-32.083370', '343.644196', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1162387', 1162387, '-65.420998', '-31.630421', '353.013306', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1162390', 1162390, '-298.542786', '20.650921', '132.768707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162391', 1162391, '-294.392303', '20.060690', '130.388306', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162392', 1162392, '-296.020508', '20.999870', '168.359299', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162393', 1162393, '-297.016907', '20.876789', '122.239998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162394', 1162394, '-208.026505', '3.601872', '2.164479', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162398', 1162398, '-396.566711', '63.980961', '-218.615997', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1162399', 1162399, '-347.955994', '66.968529', '-220.251999', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1162402', 1162402, '-291.152710', '61.247379', '-168.828796', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1162403', 1162403, '-351.183289', '63.740372', '-153.645599', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162412', 1162412, '-365.503204', '62.324249', '-85.497841', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162413', 1162413, '-365.240814', '62.204288', '-87.690971', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162416', 1162416, '-353.685791', '63.380310', '-149.922501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1162426', 1162426, '-501.091003', '65.293297', '90.318100', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1162427', 1162427, '-534.918823', '65.381104', '43.912449', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81160, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1180878', 1180878, '104.639297', '-8.000016', '-91.168152', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1180879', 1180879, '105.168701', '-8.000016', '-94.222618', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1180880', 1180880, '106.210297', '-8.000016', '-96.527153', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1183451', 1183451, '104.347603', '-8.000016', '-88.522499', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1183452', 1183452, '101.512100', '-8.064646', '-97.812950', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1183453', 1183453, '100.580399', '-8.000016', '-95.459229', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1183454', 1183454, '99.803108', '-8.184623', '-92.716454', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1183455', 1183455, '99.192757', '-8.361253', '-89.878258', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234346, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1183456', 1183456, '96.327393', '-8.500061', '-99.385361', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1183458', 1183458, '95.550194', '-8.460118', '-96.840134', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1183459', 1183459, '94.825958', '-8.500061', '-93.978119', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1183460', 1183460, '94.179993', '-8.500061', '-90.982887', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1408325', 1408325, '107.492897', '15.984340', '-270.054596', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1408329', 1408329, '119.554398', '17.410500', '-259.693298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1408332', 1408332, '111.600800', '16.549120', '-248.298096', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1408334', 1408334, '117.813103', '17.697479', '-247.780807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1408341', 1408341, '111.814400', '16.758829', '-244.880096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1408351', 1408351, '86.796638', '15.940370', '-262.601105', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1408352', 1408352, '68.921707', '16.132620', '-262.037811', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1408353', 1408353, '68.168861', '16.760660', '-264.307190', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1408357', 1408357, '72.243088', '10.935070', '-243.492706', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1408358', 1408358, '87.101822', '15.245950', '-260.648010', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221122, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410560', 1410560, '103.350998', '14.389260', '-254.875107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410688', 1410688, '50.217388', '6.559038', '-223.468399', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410689', 1410689, '39.352970', '4.053384', '-182.513199', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410690', 1410690, '37.860909', '3.934789', '-183.153900', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410691', 1410691, '55.661430', '4.710185', '-183.981201', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1410693', 1410693, '-1.083989', '1.339663', '-188.567398', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219478, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1410694', 1410694, '0.474049', '1.531124', '-191.204697', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219206, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1410695', 1410695, '8.437746', '1.980624', '-176.756195', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218934, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1410696', 1410696, '-15.013690', '1.551492', '-198.619598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218662, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1410698', 1410698, '7.450444', '1.514552', '-190.764694', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410699', 1410699, '8.438234', '3.222636', '-146.234497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410700', 1410700, '14.477130', '3.104484', '-138.479904', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410701', 1410701, '16.068541', '3.373573', '-139.535202', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217574, 7, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(219, 'go008', 'bnpc1410703', 1410703, '-15.113390', '3.146425', '-233.722000', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217302, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1410704', 1410704, '-4.948251', '4.778366', '-234.155304', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217030, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1410705', 1410705, '8.210199', '5.748120', '-247.337402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1410707', 1410707, '9.591916', '5.570471', '-251.132996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216498, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410708', 1410708, '5.815275', '5.237663', '-249.501099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216226, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410709', 1410709, '-9.906527', '3.594761', '-217.097595', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215954, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410712', 1410712, '-13.648660', '3.344659', '-231.383408', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215682, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410714', 1410714, '-30.136610', '0.909592', '-224.200897', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1410715', 1410715, '48.355789', '9.194451', '-243.366196', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1410716', 1410716, '74.908539', '4.285552', '-211.076706', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1410851', 1410851, '88.732697', '4.082766', '-185.738998', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215138, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410853', 1410853, '130.975204', '4.971314', '-185.109497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214866, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410976', 1410976, '131.470093', '2.068069', '-173.581100', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214594, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410977', 1410977, '107.495903', '0.653863', '-168.558304', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214322, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410978', 1410978, '142.190598', '1.204836', '-160.400803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214050, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410979', 1410979, '148.032898', '0.649221', '-123.475403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213778, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410982', 1410982, '166.648804', '-1.181116', '-137.457901', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213506, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410983', 1410983, '178.145996', '-1.608972', '-140.621307', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213228, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1410984', 1410984, '168.844696', '2.701761', '-163.503296', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212962, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410990', 1410990, '199.114899', '-0.803801', '-174.853195', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212684, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1410996', 1410996, '202.197205', '-1.697314', '-172.655899', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212418, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410998', 1410998, '239.098404', '-2.190103', '-187.159805', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212146, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1410999', 1410999, '221.515396', '-6.264487', '-154.155502', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211874, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411000', 1411000, '227.837204', '-8.126032', '-125.948700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211602, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411003', 1411003, '174.579300', '-1.892151', '-102.278099', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411004', 1411004, '182.699707', '-4.339209', '-88.384857', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211058, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411005', 1411005, '161.154007', '4.078132', '-169.399704', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411032', 1411032, '271.173798', '-9.203460', '-119.877403', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411034', 1411034, '330.082886', '-2.640436', '-152.968796', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173790, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411036', 1411036, '305.867188', '-2.983790', '-188.262894', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411037', 1411037, '302.815399', '-3.417479', '-190.063507', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411038', 1411038, '283.192108', '-6.780017', '-171.401596', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411042', 1411042, '287.338715', '-5.114256', '-195.320007', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411049', 1411049, '276.640594', '-8.026556', '-141.155594', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411065', 1411065, '308.725311', '-4.528103', '-80.785583', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411066', 1411066, '311.802795', '-5.117999', '-76.683037', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411069', 1411069, '291.112213', '-5.409167', '-79.667397', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411071', 1411071, '346.714203', '-3.206666', '-41.466160', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411078', 1411078, '264.779999', '-11.621630', '-65.637466', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183878, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411084', 1411084, '234.546997', '-11.793010', '-2.134793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183606, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411085', 1411085, '250.625107', '-8.387555', '28.634951', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183334, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411086', 1411086, '313.420288', '-6.097115', '16.095341', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183038, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411087', 1411087, '314.703308', '-5.599903', '20.012140', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182766, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411119', 1411119, '309.285095', '2.975462', '97.764503', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182494, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411120', 1411120, '326.314087', '2.426137', '90.012917', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182222, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411121', 1411121, '371.612488', '7.304699', '55.979481', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411124', 1411124, '375.810211', '7.175481', '51.219879', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411135', 1411135, '420.071991', '5.244238', '-35.509991', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411136', 1411136, '417.919312', '5.091386', '-39.660309', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411137', 1411137, '425.005402', '6.439638', '-41.263420', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411148', 1411148, '449.318512', '32.509201', '-8.551085', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170556, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411152', 1411152, '505.440613', '42.969250', '-25.847120', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170284, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411155', 1411155, '511.920410', '44.121750', '-42.307079', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171644, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411157', 1411157, '502.891510', '43.241459', '-46.006001', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171372, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411159', 1411159, '481.475494', '41.105301', '-9.940406', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171100, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411160', 1411160, '484.982300', '41.536228', '-12.749530', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171916, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411162', 1411162, '201.709000', '-7.309118', '-73.014473', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181134, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411163', 1411163, '206.805496', '-9.964188', '-16.037279', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180862, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411164', 1411164, '183.550705', '-8.560358', '-4.379386', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180590, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411167', 1411167, '127.300301', '-5.901662', '12.460290', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180318, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411170', 1411170, '92.851097', '-4.928711', '4.867581', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180046, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411171', 1411171, '127.489098', '-7.126010', '58.609852', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179774, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411173', 1411173, '216.815399', '-9.170719', '-44.144390', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411174', 1411174, '218.066605', '-9.475899', '-42.282791', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411176', 1411176, '184.252594', '-8.621394', '-0.259450', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411178', 1411178, '102.749901', '-11.800030', '112.244499', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411179', 1411179, '107.205597', '-7.793041', '74.349869', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411180', 1411180, '84.061897', '-6.851347', '16.464439', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411181', 1411181, '84.336563', '-6.698757', '13.137970', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411182', 1411182, '275.292297', '23.606110', '190.161697', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411186', 1411186, '288.694397', '21.579050', '187.354996', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177344, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411187', 1411187, '286.440796', '21.978689', '190.167206', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177072, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411193', 1411193, '237.018204', '23.458019', '156.614304', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176800, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411197', 1411197, '211.473099', '23.453070', '169.805405', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176528, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411198', 1411198, '209.800598', '23.457560', '211.348297', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176256, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411202', 1411202, '205.811798', '24.000139', '204.175003', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175984, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411203', 1411203, '226.011993', '23.536930', '175.448105', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175712, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411206', 1411206, '227.024994', '24.063431', '228.666702', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175440, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411207', 1411207, '224.858200', '23.422550', '230.009598', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175168, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411208', 1411208, '234.736603', '23.544621', '214.365707', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411210', 1411210, '233.020493', '23.453070', '214.312897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411213', 1411213, '213.946701', '23.453070', '226.459106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411214', 1411214, '211.749405', '23.453070', '228.168106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411218', 1411218, '228.444595', '23.457581', '165.045898', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411220', 1411220, '382.833496', '13.565220', '79.972481', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159876, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411222', 1411222, '374.288513', '12.161390', '84.031380', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158516, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411223', 1411223, '409.964111', '18.326040', '60.501968', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159604, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411225', 1411225, '411.001709', '26.138660', '123.399696', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158788, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411227', 1411227, '436.179108', '32.211750', '101.823402', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159060, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411228', 1411228, '439.383514', '32.761070', '98.649529', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157972, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411233', 1411233, '-58.666859', '-4.080153', '-116.513397', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134082, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411234', 1411234, '-111.996201', '6.549166', '-145.525208', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411235', 1411235, '-123.994698', '12.085680', '-163.495407', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411236', 1411236, '-120.946297', '10.817430', '-167.745193', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411237', 1411237, '-179.948700', '2.732331', '-103.572197', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1411238', 1411238, '-212.568405', '1.504992', '-84.178993', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97676, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(219, 'go008', 'bnpc1411240', 1411240, '-212.756607', '1.846313', '-94.163452', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96316, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(219, 'go008', 'bnpc1411241', 1411241, '-214.172699', '1.359615', '-82.278023', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96044, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(219, 'go008', 'bnpc1411242', 1411242, '-213.856293', '1.439267', '-83.871033', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96588, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(219, 'go008', 'bnpc1411244', 1411244, '-193.905304', '2.125694', '-41.069290', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97948, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(219, 'go008', 'bnpc1411253', 1411253, '-56.382130', '-4.928711', '-94.529694', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411254', 1411254, '-20.293131', '-2.590379', '-100.341103', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411255', 1411255, '-23.246990', '0.393718', '-138.153305', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411256', 1411256, '-59.128750', '0.758792', '-164.202393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411655', 1411655, '-92.954361', '1.786075', '-122.393898', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411656', 1411656, '-93.869904', '1.736482', '-119.067497', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411657', 1411657, '-109.805397', '6.718060', '-150.029800', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411658', 1411658, '-176.756607', '2.961861', '-114.443398', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1411659', 1411659, '-205.790604', '2.068845', '-61.951530', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412058', 1412058, '-196.154800', '1.939114', '-25.589430', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412059', 1412059, '-163.822601', '0.087921', '-11.411790', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412062', 1412062, '71.492859', '-11.893120', '161.389404', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412463', 1412463, '107.728401', '-8.259025', '159.304703', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412464', 1412464, '108.796501', '-7.985859', '156.375000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412465', 1412465, '45.309830', '-13.145570', '164.612595', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412467', 1412467, '86.263412', '-10.238450', '166.918396', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412470', 1412470, '43.860840', '-19.453880', '194.128098', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412471', 1412471, '40.686970', '-20.436541', '199.194107', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412474', 1412474, '83.274986', '-19.705959', '207.342194', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412475', 1412475, '56.498798', '-24.125010', '265.742401', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412476', 1412476, '56.595661', '-23.666790', '269.184387', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412477', 1412477, '67.313408', '-23.280479', '279.101715', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412478', 1412478, '130.256897', '-28.458679', '285.610504', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412480', 1412480, '84.874817', '-11.151300', '170.539902', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412482', 1412482, '48.863239', '-15.723400', '175.131393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412483', 1412483, '91.596550', '-15.216650', '191.087204', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412484', 1412484, '40.536888', '-24.919319', '239.885193', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412486', 1412486, '12.541730', '-30.409491', '274.885712', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412488', 1412488, '84.885887', '-24.795959', '238.330597', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412489', 1412489, '100.537003', '-25.090691', '289.606689', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412890', 1412890, '192.974106', '-32.093040', '371.993805', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412891', 1412891, '174.770096', '-30.985760', '392.154999', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412892', 1412892, '169.164200', '-29.940310', '393.395111', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412893', 1412893, '172.161407', '-30.924379', '389.056885', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412894', 1412894, '171.285507', '-29.285271', '402.230988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412895', 1412895, '154.779907', '-26.129629', '405.514008', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412896', 1412896, '168.913696', '-28.561871', '440.527588', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412897', 1412897, '173.811401', '-24.163700', '462.640015', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412898', 1412898, '172.581100', '-23.212021', '466.157715', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412900', 1412900, '157.804596', '-31.533340', '347.603088', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412901', 1412901, '181.335403', '-32.472290', '364.442596', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412902', 1412902, '173.037506', '-29.813890', '400.369385', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412903', 1412903, '215.503098', '-32.150810', '397.756897', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412904', 1412904, '151.140594', '-25.314760', '448.172699', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1412905', 1412905, '174.771194', '-22.925610', '465.693207', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413304', 1413304, '-10.375770', '-30.070101', '357.174011', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120482, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1413305', 1413305, '-73.187973', '-29.638651', '377.182007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120210, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1413306', 1413306, '7.099501', '-28.323009', '389.698700', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119938, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1413307', 1413307, '-25.474409', '-30.239300', '288.173004', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413309', 1413309, '2.871708', '-26.996679', '314.962891', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413310', 1413310, '-43.682961', '-31.251160', '365.171295', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413311', 1413311, '-60.904331', '-32.109970', '348.252411', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413312', 1413312, '-26.264040', '-32.967579', '411.424805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413711', 1413711, '1.843092', '-32.621689', '440.420288', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413712', 1413712, '-47.684052', '-34.975368', '436.820007', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413713', 1413713, '-62.874069', '-35.826691', '451.367706', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413714', 1413714, '-36.040771', '-30.235821', '405.258087', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413715', 1413715, '-77.531143', '-35.740108', '463.920013', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413716', 1413716, '-81.834183', '-35.561951', '465.537415', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413717', 1413717, '-81.132263', '-36.687901', '482.108704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413718', 1413718, '-64.000313', '-36.181229', '492.846497', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413719', 1413719, '-45.209900', '-36.768280', '469.442810', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413721', 1413721, '-49.479870', '-31.658331', '420.700195', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413723', 1413723, '-61.146591', '-34.546021', '439.197601', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413724', 1413724, '-12.636190', '-34.818890', '433.701904', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413725', 1413725, '-21.261789', '-35.776421', '463.813293', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1413726', 1413726, '-80.766037', '-35.860481', '467.917786', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1414923', 1414923, '-251.624496', '8.046767', '9.209213', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1414924', 1414924, '-237.355103', '14.172800', '56.681469', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1414925', 1414925, '-240.865097', '13.064570', '51.144550', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1414928', 1414928, '-261.738007', '16.472500', '59.800060', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1414929', 1414929, '-271.273499', '19.264000', '95.431259', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1414931', 1414931, '-299.224915', '20.999870', '171.197403', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1414932', 1414932, '-335.657013', '21.199930', '166.262405', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1414935', 1414935, '-333.186493', '21.314899', '161.005798', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1414936', 1414936, '-351.155914', '21.194731', '192.767197', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1414938', 1414938, '-239.843002', '7.295271', '0.194433', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1415337', 1415337, '-263.631592', '17.193020', '61.247459', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1415339', 1415339, '-340.596497', '21.199930', '161.368500', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1415340', 1415340, '-332.306000', '21.000000', '208.378098', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1415341', 1415341, '-328.043915', '21.000000', '211.118393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1415342', 1415342, '-292.652802', '20.981110', '203.265396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1415343', 1415343, '-87.174072', '-39.921982', '291.489105', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1415344', 1415344, '-112.985397', '-40.020420', '312.799713', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1415345', 1415345, '-86.737244', '-40.184792', '302.023285', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1415346', 1415346, '-116.616600', '-40.014709', '309.506805', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1415347', 1415347, '-244.678497', '66.147812', '-179.125702', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1415348', 1415348, '-241.352005', '66.788689', '-178.362701', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1415352', 1415352, '-351.735809', '67.765259', '-226.093002', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1415353', 1415353, '-354.085602', '67.313278', '-222.043106', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1415354', 1415354, '-354.115387', '66.529556', '-254.235596', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1415358', 1415358, '-429.221008', '60.624039', '-145.159103', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1415359', 1415359, '-431.571014', '61.023251', '-141.100204', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1415360', 1415360, '-409.323303', '61.264919', '-120.927803', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1415361', 1415361, '-290.298706', '60.229500', '-115.695396', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1415364', 1415364, '-313.710297', '62.882381', '-46.982571', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1415365', 1415365, '-308.186493', '62.943420', '-50.370079', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72208, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1415367', 1415367, '-304.768494', '62.180470', '-99.076874', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72480, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1415368', 1415368, '-275.257507', '60.807152', '-84.214577', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71664, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1415375', 1415375, '-262.012695', '62.577202', '-39.993938', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1415376', 1415376, '-417.990387', '64.377762', '-51.102509', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1415377', 1415377, '-416.159302', '65.476410', '-55.924358', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1415378', 1415378, '-446.097504', '57.907940', '-22.476589', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1415379', 1415379, '-454.154297', '61.631142', '-28.213980', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1415381', 1415381, '-285.852814', '61.458679', '25.148211', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1415382', 1415382, '-414.267212', '60.471451', '-98.405472', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1415383', 1415383, '-462.152802', '62.699409', '-106.490501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1415384', 1415384, '-465.866913', '62.824699', '-107.035797', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1416355', 1416355, '184.649399', '-7.461709', '-54.703640', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173518, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc1418012', 1418012, '397.388092', '18.876289', '87.758537', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149848, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc1418013', 1418013, '272.692596', '-2.411928', '61.854092', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150120, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154901', 2154901, '-288.593994', '59.581390', '-121.735901', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64604, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2154903', 2154903, '-303.822388', '59.830570', '-130.571503', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2154910', 2154910, '-290.943787', '61.814331', '-175.341400', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64876, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2154912', 2154912, '-384.725800', '64.377808', '-230.792694', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2154914', 2154914, '-416.247894', '61.594559', '-135.801102', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2154915', 2154915, '-397.116089', '56.778770', '-87.632607', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77364, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(219, 'go008', 'bnpc2154916', 2154916, '-408.031494', '53.104481', '35.133572', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2154917', 2154917, '-274.891388', '62.760250', '-48.600040', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2154925', 2154925, '-365.255188', '56.015820', '61.905800', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2154932', 2154932, '-452.140106', '63.523258', '-235.614594', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92276, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154933', 2154933, '-486.564514', '58.060532', '-222.186707', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154938', 2154938, '-449.027313', '55.863232', '-205.401703', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91732, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154939', 2154939, '-453.788086', '56.259960', '-203.845306', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91460, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154940', 2154940, '-449.607086', '55.100281', '-200.518799', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91188, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154941', 2154941, '-459.128693', '64.652428', '-264.026886', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154943', 2154943, '-483.543213', '58.182598', '-215.136993', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90112, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154944', 2154944, '-488.316101', '67.415604', '-265.598907', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154945', 2154945, '-487.007385', '67.617432', '-267.616608', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90916, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154950', 2154950, '-508.114197', '73.937157', '-289.616486', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154952', 2154952, '-505.210999', '72.800743', '-287.708893', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154954', 2154954, '-475.800293', '75.099243', '-316.311890', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88486, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154959', 2154959, '-474.076904', '71.450668', '-300.198914', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154963', 2154963, '-481.180389', '74.270866', '-319.393005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88752, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154965', 2154965, '-509.328613', '51.460609', '-230.011002', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154966', 2154966, '-530.510376', '48.020088', '-245.654999', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87670, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154968', 2154968, '-550.774414', '46.775639', '-245.014099', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154969', 2154969, '-546.684998', '46.860470', '-244.251205', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154970', 2154970, '-545.647400', '50.522579', '-203.540100', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154971', 2154971, '-547.356384', '51.163448', '-199.786407', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154973', 2154973, '-572.310486', '49.567921', '-226.453506', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90644, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154974', 2154974, '-564.080322', '50.297001', '-211.993607', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154976', 2154976, '-508.251099', '57.374981', '-255.303207', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154978', 2154978, '-533.645081', '43.546291', '-230.397507', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2154980', 2154980, '-468.316010', '57.494301', '-212.252502', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2154982', 2154982, '-485.247803', '68.405968', '-274.754211', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2154983', 2154983, '-505.135406', '73.043167', '-290.313904', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2154985', 2154985, '-528.526672', '48.142170', '-244.495300', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2154986', 2154986, '-568.407227', '50.556568', '-214.304596', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320574', 2320574, '261.921387', '1.753539', '-223.409698', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210786, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320575', 2320575, '261.238495', '0.534709', '-243.419296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320576', 2320576, '263.797699', '1.764011', '-223.470901', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320577', 2320577, '259.453186', '1.043279', '-240.840607', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320579', 2320579, '274.919800', '-1.072963', '-256.170593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209698, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320580', 2320580, '300.060089', '-0.888014', '-307.572510', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320581', 2320581, '324.245514', '-1.093548', '-288.072113', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320582', 2320582, '298.274811', '-0.855762', '-304.993805', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320583', 2320583, '325.011292', '-1.286943', '-316.835388', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208610, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320584', 2320584, '287.788513', '-0.475198', '-298.277313', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208338, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320585', 2320585, '329.843903', '-0.745502', '-290.159698', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320586', 2320586, '325.924103', '-0.928046', '-285.067993', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320587', 2320587, '327.193207', '-1.286943', '-313.833496', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207522, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320588', 2320588, '337.177185', '0.441468', '-264.191803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207250, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320589', 2320589, '332.682892', '0.959346', '-254.439896', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206978, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320590', 2320590, '329.305206', '0.991071', '-252.106293', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206706, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320591', 2320591, '304.253815', '-0.643113', '-258.978912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320596', 2320596, '346.493591', '-0.483981', '-328.131287', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206162, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320597', 2320597, '302.790710', '-1.010156', '-352.830505', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320598', 2320598, '273.957489', '-0.689871', '-328.818512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205618, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320599', 2320599, '268.469910', '-0.593068', '-327.086395', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205346, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320600', 2320600, '267.525513', '-0.806307', '-329.538208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205074, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320601', 2320601, '276.737091', '0.547026', '-314.840912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320610', 2320610, '288.781494', '-1.187131', '-281.665588', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320612', 2320612, '330.290802', '-1.286943', '-344.531311', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320617', 2320617, '92.850220', '-10.902450', '173.235596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320637', 2320637, '-108.605698', '-30.528610', '272.296295', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320638', 2320638, '-138.649902', '-23.382610', '264.698212', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320639', 2320639, '-99.474327', '-30.263571', '271.854614', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320641', 2320641, '-170.286606', '-27.619471', '297.813995', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320642', 2320642, '-171.781998', '-27.505461', '288.445007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320643', 2320643, '-165.769897', '-27.707670', '293.053192', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320645', 2320645, '-125.383400', '-25.040100', '360.402802', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320646', 2320646, '-137.475906', '-27.672729', '336.516113', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320647', 2320647, '-141.819901', '-30.193661', '309.942688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320649', 2320649, '-59.102539', '-28.549570', '296.388702', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320650', 2320650, '277.147400', '-31.644880', '389.827209', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320651', 2320651, '250.690399', '-30.350241', '408.346588', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106362, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320652', 2320652, '274.666290', '-31.273550', '391.993988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320654', 2320654, '299.640686', '-31.632290', '402.348511', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320655', 2320655, '300.434814', '-32.791679', '411.978302', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320656', 2320656, '342.732788', '-31.784590', '408.346588', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320658', 2320658, '308.735687', '-32.272881', '398.214600', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320659', 2320659, '329.910309', '-31.601860', '408.307800', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320660', 2320660, '332.175415', '-31.647480', '410.657013', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320661', 2320661, '344.838593', '-31.113190', '440.115906', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320664', 2320664, '144.316299', '-22.573250', '513.925293', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320665', 2320665, '141.166702', '-21.478600', '518.533508', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320666', 2320666, '165.008896', '-23.196131', '497.355591', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320667', 2320667, '137.956802', '-21.858990', '489.646698', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103642, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320668', 2320668, '130.324295', '-19.810080', '417.345490', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320669', 2320669, '98.407799', '-20.697760', '221.536407', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320671', 2320671, '97.314743', '-11.800020', '101.237198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320675', 2320675, '135.972794', '-11.800140', '133.207794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320678', 2320678, '185.468796', '-11.800210', '106.268402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320683', 2320683, '188.220001', '-11.825790', '62.851860', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320688', 2320688, '201.678406', '-11.795270', '23.117371', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320694', 2320694, '260.142914', '-12.002980', '-90.756157', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320695', 2320695, '258.451996', '-12.002920', '-92.319710', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320696', 2320696, '257.085999', '-12.006830', '-154.938705', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320697', 2320697, '264.474091', '-12.313630', '-187.969193', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320721', 2320721, '396.475098', '20.645411', '107.225098', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159332, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320722', 2320722, '419.413391', '27.114370', '102.443001', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158244, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320725', 2320725, '-159.887802', '18.109520', '-68.195572', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320727', 2320727, '-170.536102', '27.551260', '-85.891403', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320728', 2320728, '-170.885803', '27.966640', '-89.178688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320732', 2320732, '-547.753174', '19.485781', '-191.943298', 30, 0, 0, 0, 2, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63894, 1, 0, 0, 0, 0, 0, 4302234, 0, 0), +(219, 'go008', 'bnpc2320790', 2320790, '-439.475098', '48.996670', '43.930679', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320791', 2320791, '-432.144196', '49.318508', '-4.165760', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2320793', 2320793, '-242.034393', '58.664711', '38.845100', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320794', 2320794, '-206.227997', '57.382519', '52.006420', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320797', 2320797, '-193.570099', '74.743111', '21.367661', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320800', 2320800, '-238.635895', '62.272018', '25.375710', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2320801', 2320801, '-219.805405', '67.608017', '9.079071', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2341782', 2341782, '345.014008', '-1.078350', '-177.896896', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2341783', 2341783, '319.296997', '-0.849605', '-171.347198', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2341784', 2341784, '292.707397', '-6.651216', '-123.136101', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2341785', 2341785, '347.310486', '6.679530', '84.092422', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2341786', 2341786, '354.267487', '5.193762', '60.841671', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2341787', 2341787, '348.283203', '3.086715', '49.707630', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2603191', 2603191, '256.015594', '-11.793030', '-185.891006', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164850, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2603192', 2603192, '260.232605', '-11.793140', '-180.095505', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164578, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612552', 2612552, '252.195404', '-11.793090', '-145.885406', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164306, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612553', 2612553, '254.433395', '-11.793010', '-113.328796', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164034, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612554', 2612554, '258.838715', '-11.793140', '-73.879280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163762, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612555', 2612555, '233.580307', '-11.793010', '-18.570280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163490, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612556', 2612556, '216.695099', '-11.793000', '8.959249', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163218, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612557', 2612557, '212.512299', '-11.795270', '12.741240', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162946, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612559', 2612559, '120.048798', '-11.800060', '124.326401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162680, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612561', 2612561, '191.515900', '-11.856310', '51.102409', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162408, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612562', 2612562, '189.768997', '-11.800210', '71.478256', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162136, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612563', 2612563, '192.239395', '-11.800030', '91.385788', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161864, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612564', 2612564, '179.480606', '-11.800260', '106.735802', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161592, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612565', 2612565, '165.069794', '-11.800630', '119.881798', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161320, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612566', 2612566, '146.988297', '-11.800000', '126.311401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161048, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612569', 2612569, '132.474792', '-11.800090', '139.979294', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160776, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612570', 2612570, '250.133804', '-11.793030', '-55.898849', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160498, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612571', 2612571, '205.980301', '-11.772920', '33.134300', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160226, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612573', 2612573, '421.064514', '24.757450', '78.823257', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2612574', 2612574, '428.320709', '31.721590', '124.805603', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157428, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2615184', 2615184, '360.341705', '-32.028728', '435.294006', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2615186', 2615186, '375.478699', '-32.089771', '448.966095', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2615187', 2615187, '382.955597', '-31.998211', '440.878815', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc2615503', 2615503, '253.211594', '-11.793080', '-161.360504', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154514, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc2615504', 2615504, '253.937607', '-11.793030', '-68.861298', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154242, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3693097', 3693097, '-224.085602', '1.055553', '-69.316994', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(219, 'go008', 'bnpc3693102', 3693102, '-195.941101', '2.945007', '-104.081802', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96860, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(219, 'go008', 'bnpc3693103', 3693103, '-189.283005', '2.362727', '-83.005783', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97404, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(219, 'go008', 'bnpc3693105', 3693105, '-210.620300', '1.998901', '-96.299683', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95500, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(219, 'go008', 'bnpc3693109', 3693109, '-195.513901', '2.216981', '-40.186169', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95228, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(219, 'go008', 'bnpc3693111', 3693111, '-200.096695', '2.060742', '-67.256340', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(219, 'go008', 'bnpc3693121', 3693121, '368.459503', '-32.364429', '413.199005', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3693136', 3693136, '242.206406', '-30.411280', '402.182007', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3693138', 3693138, '225.451996', '-28.488640', '423.605713', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3693140', 3693140, '215.350494', '-32.486500', '387.777496', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3693173', 3693173, '-508.842590', '40.237991', '-79.606361', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3693174', 3693174, '-516.899414', '40.146439', '-74.967621', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3693175', 3693175, '-514.549500', '40.207470', '-77.103882', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85228, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3693176', 3693176, '-520.866821', '40.146439', '-64.255783', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3693177', 3693177, '-515.685120', '40.359970', '-54.677021', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3693178', 3693178, '-503.929199', '41.000938', '-56.107471', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3693179', 3693179, '-483.658691', '45.245129', '-60.343559', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3693180', 3693180, '-481.533905', '45.933941', '-62.817669', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3693183', 3693183, '-378.957794', '51.132931', '52.109509', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3693184', 3693184, '-397.512787', '49.301849', '10.055650', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3693185', 3693185, '-433.121094', '49.318531', '34.558170', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3693188', 3693188, '-322.396393', '57.338970', '-6.726664', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65686, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3693623', 3693623, '-184.619797', '78.429970', '42.778721', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3693624', 3693624, '-191.994202', '77.183746', '37.510250', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72746, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3694403', 3694403, '-314.266113', '63.832611', '57.746510', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3742079', 3742079, '-530.733887', '65.311684', '98.466423', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3742133', 3742133, '-526.186829', '65.311691', '102.647400', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3742194', 3742194, '48.050610', '-11.800030', '-40.915428', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153976, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3742195', 3742195, '22.187790', '-11.800000', '-69.750504', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153704, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3742196', 3742196, '15.168640', '-11.800000', '-75.762558', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153432, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3742197', 3742197, '6.348711', '-11.800040', '-110.540199', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153160, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3742198', 3742198, '-54.153049', '-3.500003', '-186.530106', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152888, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3742199', 3742199, '-50.919399', '-3.500001', '-182.895996', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152616, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3742200', 3742200, '-69.779549', '-3.500144', '-196.820496', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152344, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3742201', 3742201, '-62.272110', '-3.500066', '-207.843399', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152072, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3742202', 3742202, '2.735321', '-11.800110', '-122.937599', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151782, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3742203', 3742203, '-6.886642', '-3.500000', '-135.990402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3742204', 3742204, '-6.586641', '-3.500000', '-139.267899', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3742205', 3742205, '-36.719379', '-3.500000', '-180.416794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150966, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3742206', 3742206, '-48.687111', '-3.500072', '-207.096298', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150694, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3746465', 3746465, '-208.691696', '52.495350', '-42.669102', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71120, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3746466', 3746466, '-219.824799', '58.286751', '-60.483898', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3746467', 3746467, '-215.491898', '57.635231', '-71.491089', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70576, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3869502', 3869502, '125.699600', '25.160120', '-311.621185', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41108, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(219, 'go008', 'bnpc3869509', 3869509, '-307.502899', '63.448620', '-285.687714', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40842, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(219, 'go008', 'bnpc3869525', 3869525, '-206.130997', '53.564651', '-126.977600', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40564, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(219, 'go008', 'bnpc3869531', 3869531, '96.403351', '-6.334397', '-121.433502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40298, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(219, 'go008', 'bnpc3869540', 3869540, '164.007095', '-6.013201', '-52.486290', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.750000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40020, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(219, 'go008', 'bnpc3869598', 3869598, '-4.837158', '-7.919495', '-22.201900', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39760, 5, 0, 20, 0, 0, 30055, 0, 0, 0), +(219, 'go008', 'bnpc3869604', 3869604, '85.465698', '-6.089244', '60.991131', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39482, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(219, 'go008', 'bnpc3869607', 3869607, '14.362120', '-8.102512', '100.498901', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39204, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(219, 'go008', 'bnpc3877513', 3877513, '121.019203', '24.917931', '-304.463287', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204518, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc3884907', 3884907, '-419.228607', '55.416000', '66.506737', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3897658', 3897658, '117.021400', '25.101040', '-311.604492', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204258, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc3898007', 3898007, '132.524597', '24.948450', '-305.562012', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203974, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc4083772', 4083772, '-327.757690', '21.357790', '204.228699', 58, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 5782, 1, 0, 0, 0, 0, 0, 4083771, 0, 0), +(219, 'go008', 'bnpc4083778', 4083778, '-297.044800', '21.140360', '151.049896', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 8174, 1, 0, 0, 0, 0, 0, 4083775, 0, 0), +(219, 'go008', 'bnpc4083795', 4083795, '-327.840088', '21.103210', '206.835907', 58, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6054, 1, 0, 0, 0, 0, 0, 4083794, 0, 0), +(219, 'go008', 'bnpc4083796', 4083796, '-296.744812', '21.145109', '151.349899', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7662, 1, 0, 0, 0, 0, 0, 4083797, 0, 0), +(219, 'go008', 'bnpc4083798', 4083798, '-296.444794', '21.149870', '151.649902', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7278, 1, 0, 0, 0, 0, 0, 4083799, 0, 0), +(219, 'go008', 'bnpc4083800', 4083800, '-296.144806', '21.154619', '151.949905', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6894, 1, 0, 0, 0, 0, 0, 4083801, 0, 0), +(219, 'go008', 'bnpc4083802', 4083802, '-295.844788', '21.159370', '152.249893', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6510, 1, 0, 0, 0, 0, 0, 4083803, 0, 0), +(219, 'go008', 'bnpc4083871', 4083871, '127.641701', '-6.332520', '-100.389198', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38544, 8, 0, 0, 4295658, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4295672', 4295672, '132.951797', '-6.332520', '-100.114502', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37512, 8, 0, 0, 4295661, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4295673', 4295673, '137.910706', '-6.438695', '-96.608414', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37240, 8, 0, 0, 4295662, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4295675', 4295675, '126.695297', '-6.948534', '-90.459633', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36968, 8, 0, 0, 4295663, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4295677', 4295677, '126.418900', '-6.971872', '-84.529358', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36696, 8, 0, 0, 4295664, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4296957', 4296957, '95.628906', '-2.029270', '-42.382439', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35816, 1, 0, 0, 2280260, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4296958', 4296958, '98.693558', '-2.029731', '-43.942860', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35544, 1, 0, 0, 2280261, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4296959', 4296959, '101.467598', '-2.005454', '-46.176739', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35272, 1, 0, 0, 2280262, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4296960', 4296960, '104.146896', '-1.968804', '-48.332958', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35000, 1, 0, 0, 2280263, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302206', 4302206, '-555.148071', '29.067560', '-230.785706', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302207', 4302207, '-516.437683', '22.056881', '-221.606796', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302208', 4302208, '-524.244812', '24.477020', '-253.274597', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302209', 4302209, '-527.577820', '24.719191', '-254.932404', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302212', 4302212, '-582.818420', '21.723471', '-238.845596', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302213', 4302213, '-596.266602', '20.622200', '-226.349106', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62184, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(219, 'go008', 'bnpc4302214', 4302214, '-579.272827', '21.076719', '-214.966003', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302215', 4302215, '-581.780823', '21.842831', '-241.897293', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302216', 4302216, '-528.772888', '19.922779', '-195.839096', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61374, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302217', 4302217, '-537.197327', '20.139130', '-199.348495', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302218', 4302218, '-563.208191', '18.867491', '-186.546005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302219', 4302219, '-527.765808', '20.129919', '-200.682007', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302220', 4302220, '-569.817627', '10.940670', '-130.235794', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302221', 4302221, '-617.120605', '21.896610', '-197.436493', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302222', 4302222, '-575.432983', '11.001710', '-129.716995', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302223', 4302223, '-568.810608', '10.910160', '-133.318100', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302225', 4302225, '-502.711792', '17.279470', '-157.029495', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59204, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302226', 4302226, '-496.089386', '16.799740', '-160.630707', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58938, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302228', 4302228, '-481.979004', '18.189381', '-229.549103', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302229', 4302229, '-555.941528', '25.463579', '-260.210693', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4302351', 4302351, '-572.925293', '18.257090', '-181.740707', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57718, 1, 0, 0, 0, 0, 0, 4302260, 0, 0), +(219, 'go008', 'bnpc4302353', 4302353, '-513.667175', '23.842480', '-245.333893', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57446, 1, 0, 0, 0, 0, 0, 4302268, 0, 0), +(219, 'go008', 'bnpc4333043', 4333043, '-309.205597', '57.338970', '-10.110600', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(219, 'go008', 'bnpc4333385', 4333385, '-348.321503', '67.616417', '-233.774200', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4510293', 4510293, '213.253204', '-32.025242', '324.145386', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38950, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(219, 'go008', 'bnpc4621046', 4621046, '370.051086', '-32.295422', '411.821198', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42124, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(219, 'go008', 'bnpc4621047', 4621047, '-538.803589', '50.907551', '-203.075394', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41858, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1139214', 1139214, '-268.574097', '7.064880', '631.738708', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1139231', 1139231, '-15.879850', '-0.100045', '376.413208', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1139247', 1139247, '-122.621803', '1.180372', '288.650391', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1139253', 1139253, '-116.636803', '1.401093', '293.862488', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1139295', 1139295, '-239.337799', '0.869717', '266.651306', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1139296', 1139296, '-242.175995', '0.625573', '262.958710', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1139314', 1139314, '-234.854004', '-0.100137', '305.762085', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1139319', 1139319, '-284.558105', '1.846295', '342.205505', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1139327', 1139327, '-178.824295', '0.141551', '253.664703', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160176, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1139344', 1139344, '-179.793198', '0.669785', '323.976196', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159904, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1139407', 1139407, '-279.011292', '6.027267', '564.782104', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159632, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1139408', 1139408, '-254.932495', '6.759699', '578.911987', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159360, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1139409', 1139409, '-258.136902', '7.827831', '603.051819', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159088, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1139410', 1139410, '-257.221405', '6.637627', '578.881470', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1139423', 1139423, '-276.386688', '5.966230', '538.170288', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158544, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1139425', 1139425, '-266.529388', '5.020171', '542.473389', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1139430', 1139430, '-220.569199', '3.982558', '556.969482', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158000, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1140323', 1140323, '48.412201', '22.379660', '245.108307', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124060, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140341', 1140341, '148.210800', '18.142929', '63.034969', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134118, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140355', 1140355, '-167.689697', '4.657228', '188.189499', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1140356', 1140356, '-140.886597', '6.118821', '203.173798', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1140376', 1140376, '-173.095795', '7.162746', '110.695396', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119830, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140378', 1140378, '-169.298904', '4.379292', '134.294601', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119558, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140379', 1140379, '-176.483307', '6.579963', '113.899696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119286, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140393', 1140393, '-213.883896', '11.384410', '78.615593', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119014, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140405', 1140405, '-204.099792', '10.836050', '82.086967', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118742, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140418', 1140418, '-170.832901', '8.611761', '46.359402', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118470, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140419', 1140419, '-163.073196', '7.441800', '53.057159', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118198, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140420', 1140420, '-208.158096', '10.773990', '72.948898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117926, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140429', 1140429, '-210.742401', '9.567359', '0.839199', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117654, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140430', 1140430, '-217.212204', '9.475805', '3.250124', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117382, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140459', 1140459, '-87.514954', '0.030696', '53.398781', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97846, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140460', 1140460, '-83.185509', '0.030617', '55.136490', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98118, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140461', 1140461, '-100.175499', '1.815776', '55.405460', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97302, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140462', 1140462, '-87.013252', '0.030600', '71.372276', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97574, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140539', 1140539, '-119.476097', '5.647681', '112.526497', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117110, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140540', 1140540, '-126.604202', '5.923794', '94.623161', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116838, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140541', 1140541, '-126.329498', '5.844177', '109.056198', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116566, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140980', 1140980, '-313.130402', '25.345190', '-208.453506', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116294, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140981', 1140981, '-326.970612', '26.883949', '-216.976898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116022, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140982', 1140982, '-329.696594', '21.078899', '-165.243500', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115750, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140983', 1140983, '-338.267395', '24.724110', '-191.433197', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115478, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1140984', 1140984, '-323.896515', '19.876869', '-162.956696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115206, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1144407', 1144407, '-272.144714', '17.696960', '57.133450', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105716, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1144408', 1144408, '-257.479095', '14.942520', '80.117462', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1144457', 1144457, '-241.510406', '16.161341', '12.992840', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105444, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1144491', 1144491, '-78.316467', '3.566922', '-36.424759', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106260, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1144547', 1144547, '-106.571297', '7.155371', '-106.524399', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1144577', 1144577, '-127.875000', '6.779816', '-22.488760', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105172, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1144585', 1144585, '-91.407356', '7.599404', '-74.910507', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104900, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1144597', 1144597, '-58.182690', '6.881772', '-97.795113', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1144598', 1144598, '-132.427704', '9.336102', '-104.286499', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1144629', 1144629, '-152.086700', '11.093260', '-140.581406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1144631', 1144631, '-151.639099', '11.652820', '-128.275406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1144632', 1144632, '-167.772995', '9.292697', '-129.167694', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1144653', 1144653, '-78.954659', '4.479653', '-126.207397', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1144691', 1144691, '-129.860199', '13.845340', '-129.543701', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1144692', 1144692, '-205.706894', '9.018035', '-138.750305', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1144694', 1144694, '-208.087296', '9.353733', '-141.039200', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1144747', 1144747, '2.112435', '6.781407', '-26.549141', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107620, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1144748', 1144748, '17.348650', '6.534479', '-18.517111', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107892, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1144786', 1144786, '30.609501', '4.094535', '43.754768', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108164, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1144790', 1144790, '42.343739', '4.165666', '68.558739', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1144793', 1144793, '142.320801', '4.196184', '25.833481', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1144799', 1144799, '40.001209', '4.166452', '71.521370', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1144800', 1144800, '70.561348', '4.166210', '66.426353', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145309', 1145309, '99.839729', '6.729181', '-55.405548', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93954, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145310', 1145310, '104.112297', '7.125916', '-59.922218', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93682, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145311', 1145311, '111.009300', '12.405540', '-76.890251', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93410, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145312', 1145312, '53.134991', '10.581870', '-71.978127', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93138, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145330', 1145330, '33.785549', '7.920002', '-96.910088', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92866, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145331', 1145331, '30.485310', '6.219395', '-100.848801', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92594, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145342', 1145342, '7.202258', '5.720373', '-72.371872', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92322, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145343', 1145343, '0.456908', '5.833508', '-87.359497', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92050, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145344', 1145344, '9.624027', '5.417103', '-76.025612', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91778, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145371', 1145371, '323.490204', '5.164718', '-43.671810', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91506, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145380', 1145380, '267.748199', '4.639788', '9.815885', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91234, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145382', 1145382, '262.290802', '3.068853', '19.805670', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90962, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145556', 1145556, '396.724701', '3.565628', '167.813797', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68950, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145558', 1145558, '440.238007', '1.174898', '187.579102', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68678, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145559', 1145559, '499.565002', '1.571632', '166.216507', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68406, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145562', 1145562, '455.435913', '3.250124', '198.748703', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68134, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145578', 1145578, '484.519714', '3.768931', '199.908401', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67862, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145579', 1145579, '528.374084', '7.553168', '195.361206', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67590, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145581', 1145581, '509.391815', '4.440328', '204.577698', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67318, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145595', 1145595, '513.939880', '14.256400', '137.989304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1145607', 1145607, '549.889282', '11.612070', '204.730194', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66774, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145610', 1145610, '538.797913', '21.846140', '123.039803', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1145612', 1145612, '542.038208', '13.673390', '165.126495', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1145613', 1145613, '504.953491', '14.256390', '115.266296', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1145625', 1145625, '557.183105', '21.846149', '129.558304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1145628', 1145628, '553.643005', '21.683020', '99.412483', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1145631', 1145631, '575.402405', '21.683020', '111.314499', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc1145702', 1145702, '284.107697', '3.982544', '49.240841', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90690, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc1145703', 1145703, '342.275299', '7.889330', '-41.286991', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90418, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299623', 2299623, '-290.183014', '-0.100012', '465.039612', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299626', 2299626, '-303.145111', '-0.100187', '410.650696', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299628', 2299628, '-315.270905', '0.279321', '442.690002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299630', 2299630, '-290.338806', '-0.100002', '403.924103', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299631', 2299631, '-260.457001', '-0.100012', '454.819794', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299632', 2299632, '-166.141800', '-0.100048', '463.106415', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139002, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299636', 2299636, '-85.984627', '-0.137378', '426.901611', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299637', 2299637, '-105.242203', '-0.100010', '441.452209', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299638', 2299638, '-127.139801', '-0.100007', '331.296906', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299640', 2299640, '-106.279099', '-0.167896', '335.835785', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299642', 2299642, '-76.920776', '0.228838', '434.653198', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299644', 2299644, '-121.995903', '-0.106860', '397.177002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299647', 2299647, '-213.092300', '-0.106860', '435.019409', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299670', 2299670, '105.271896', '19.668831', '117.021400', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299672', 2299672, '179.124298', '15.917120', '38.983059', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299676', 2299676, '67.215942', '23.941410', '138.414597', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133302, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299677', 2299677, '92.332291', '22.476490', '171.373993', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124332, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299678', 2299678, '68.223038', '21.438881', '171.709702', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123788, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299681', 2299681, '27.293150', '20.375059', '193.801193', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299682', 2299682, '76.646019', '20.096081', '218.799103', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123516, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299685', 2299685, '222.992401', '6.174502', '28.347420', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132764, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299686', 2299686, '218.930206', '7.861652', '25.101040', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132492, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299687', 2299687, '219.145096', '9.429937', '43.394890', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132220, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299688', 2299688, '242.878006', '5.513403', '43.686531', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131948, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299693', 2299693, '203.440796', '11.769820', '11.092830', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131676, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299695', 2299695, '183.372894', '13.534710', '15.091120', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131404, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299696', 2299696, '190.876602', '14.557230', '16.119829', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131132, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299697', 2299697, '181.536499', '14.175580', '17.074800', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130860, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299701', 2299701, '46.014000', '24.951891', '129.998001', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299707', 2299707, '62.549999', '18.461660', '250.313202', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299711', 2299711, '-240.650101', '6.790217', '647.669128', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153932, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299712', 2299712, '-268.177307', '7.461614', '616.082886', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299713', 2299713, '-298.512299', '10.330310', '645.349670', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299714', 2299714, '-301.838715', '11.032230', '612.298706', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299716', 2299716, '-278.400909', '7.095398', '588.036926', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299719', 2299719, '-256.092194', '6.362965', '575.310913', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299720', 2299720, '-249.805496', '4.135148', '533.104370', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299722', 2299722, '-243.854507', '-0.167896', '489.982391', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299723', 2299723, '-273.384796', '-0.100012', '454.524109', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299725', 2299725, '-301.158295', '1.302513', '475.886902', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299729', 2299729, '-220.495697', '-0.100054', '427.954590', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151212, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299730', 2299730, '-295.158295', '-0.100004', '416.955688', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299731', 2299731, '-158.892197', '-0.137378', '438.498413', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150668, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299732', 2299732, '-97.367859', '-0.137378', '460.166290', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299733', 2299733, '-102.128700', '-0.106860', '387.319702', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299734', 2299734, '-103.898697', '-0.106860', '385.000305', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299735', 2299735, '-73.472237', '-0.100006', '383.004608', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299736', 2299736, '-119.829102', '-0.106860', '335.713715', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299737', 2299737, '-25.762659', '-0.100045', '385.324402', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299738', 2299738, '-12.145770', '-0.100007', '340.874298', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299739', 2299739, '-36.646210', '-0.100007', '330.899811', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299740', 2299740, '-69.291260', '-0.100006', '346.480591', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299741', 2299741, '-29.965321', '-0.106860', '383.686096', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299742', 2299742, '-152.754807', '-0.100000', '285.928711', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299746', 2299746, '-188.861404', '-0.100036', '279.196106', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299747', 2299747, '-138.628296', '-0.106860', '247.516495', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299748', 2299748, '-207.352600', '-0.100011', '323.235504', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299751', 2299751, '-240.541595', '-0.100076', '309.201599', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299754', 2299754, '-282.546997', '2.068284', '344.383087', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299756', 2299756, '-165.855804', '3.695794', '214.781403', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299762', 2299762, '190.512695', '15.940850', '25.798840', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299764', 2299764, '193.374695', '15.528740', '58.982250', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299765', 2299765, '192.796906', '15.253090', '57.661560', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299767', 2299767, '162.554993', '16.909040', '69.378082', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299768', 2299768, '118.356201', '19.249180', '84.129753', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299769', 2299769, '119.667503', '18.832991', '86.148743', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299771', 2299771, '205.228104', '12.477170', '36.627281', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299772', 2299772, '218.183899', '10.623910', '45.217682', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299775', 2299775, '206.333893', '12.854360', '17.317181', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299777', 2299777, '114.394302', '18.347380', '106.921097', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299779', 2299779, '125.780098', '24.673790', '178.210098', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299781', 2299781, '135.240707', '28.061291', '166.094406', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299782', 2299782, '132.860199', '26.962641', '168.596893', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299783', 2299783, '145.372696', '31.326719', '173.479797', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299785', 2299785, '52.078991', '24.582239', '146.288193', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299786', 2299786, '52.109509', '24.917931', '143.633102', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299788', 2299788, '54.687038', '18.847170', '222.674896', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299789', 2299789, '71.783401', '22.789841', '205.433395', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299791', 2299791, '52.628319', '11.490000', '281.025391', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299792', 2299792, '55.405460', '12.252950', '279.835114', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299799', 2299799, '-333.285889', '20.722960', '-154.265701', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114934, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299800', 2299800, '-287.157501', '15.489150', '-84.197617', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299802', 2299802, '-262.604095', '12.804420', '-65.742996', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106532, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299803', 2299803, '-258.117889', '10.828210', '-67.787712', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299804', 2299804, '-235.706100', '8.377155', '-31.937180', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299812', 2299812, '-156.572906', '6.393483', '12.436060', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114662, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299820', 2299820, '-231.464096', '9.353733', '-146.379807', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299822', 2299822, '-119.740601', '2.027413', '-74.048714', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299823', 2299823, '-98.963509', '2.027430', '-27.024349', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299882', 2299882, '-305.844391', '25.145599', '-209.288696', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299886', 2299886, '-345.664215', '23.928289', '-176.087097', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299887', 2299887, '-347.161285', '24.534389', '-177.381302', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299895', 2299895, '-261.350800', '12.694290', '-76.165604', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299901', 2299901, '-279.804291', '19.410770', '50.600639', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299908', 2299908, '-263.922089', '15.508790', '89.442383', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299911', 2299911, '-145.702393', '6.826308', '-14.807010', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299914', 2299914, '-186.113998', '9.086921', '28.118750', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299915', 2299915, '-149.863907', '4.337313', '105.397102', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299916', 2299916, '-212.124496', '12.717620', '104.362198', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299930', 2299930, '-56.242779', '6.495965', '-71.791733', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111676, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(220, 'go007', 'bnpc2299933', 2299933, '-107.042099', '5.264315', '-76.487633', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299936', 2299936, '-66.982857', '5.925140', '-114.246902', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299938', 2299938, '-139.531906', '11.537960', '-122.054199', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299941', 2299941, '-121.466599', '10.386180', '-143.292297', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299945', 2299945, '0.868353', '6.550388', '-34.652611', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299949', 2299949, '57.447720', '3.129161', '-49.835171', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299951', 2299951, '20.675930', '4.623436', '23.544621', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109772, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2299953', 2299953, '102.866203', '4.166452', '53.437038', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2299954', 2299954, '105.180397', '4.165666', '50.461540', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2300024', 2300024, '124.376198', '19.407740', '-146.837601', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90098, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(220, 'go007', 'bnpc2300025', 2300025, '124.414299', '19.130779', '-145.398300', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89832, 1, 0, 0, 0, 0, 30067, 0, 0, 0), +(220, 'go007', 'bnpc2300029', 2300029, '83.634644', '9.048584', '-90.501282', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89566, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(220, 'go007', 'bnpc2300030', 2300030, '71.000183', '18.234480', '-159.014297', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89282, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(220, 'go007', 'bnpc2300031', 2300031, '71.760773', '18.225830', '-160.113007', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89016, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(220, 'go007', 'bnpc2300041', 2300041, '179.222198', '18.223680', '-145.087006', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88744, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(220, 'go007', 'bnpc2300042', 2300042, '170.907196', '17.193430', '-151.395401', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88466, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(220, 'go007', 'bnpc2300044', 2300044, '121.843201', '20.218161', '-96.971130', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88200, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(220, 'go007', 'bnpc2300045', 2300045, '123.185997', '20.370750', '-97.032173', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87922, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(220, 'go007', 'bnpc2300047', 2300047, '131.347900', '20.830030', '-112.115501', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87650, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(220, 'go007', 'bnpc2300048', 2300048, '136.095200', '18.936399', '-149.187500', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87378, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(220, 'go007', 'bnpc2300050', 2300050, '99.198853', '17.898781', '-160.631805', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87118, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(220, 'go007', 'bnpc2300051', 2300051, '171.717804', '17.307770', '-150.139297', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86846, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(220, 'go007', 'bnpc2300067', 2300067, '435.940704', '-0.982693', '5.487583', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76704, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(220, 'go007', 'bnpc2300068', 2300068, '440.817810', '-1.144474', '-14.663970', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86520, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(220, 'go007', 'bnpc2300072', 2300072, '438.040710', '-0.412041', '-42.984711', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71530, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(220, 'go007', 'bnpc2300074', 2300074, '441.568298', '0.782855', '-28.634399', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(220, 'go007', 'bnpc2300077', 2300077, '426.413208', '-0.717224', '-50.309021', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72346, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(220, 'go007', 'bnpc2300080', 2300080, '399.968506', '4.262952', '-41.852612', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74800, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(220, 'go007', 'bnpc2300084', 2300084, '360.969208', '1.840043', '-6.628087', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75616, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(220, 'go007', 'bnpc2300091', 2300091, '376.814392', '4.773165', '-33.204460', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71258, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(220, 'go007', 'bnpc2300092', 2300092, '356.160797', '2.687235', '2.700800', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86248, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(220, 'go007', 'bnpc2300095', 2300095, '366.384308', '1.052825', '12.741240', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76160, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(220, 'go007', 'bnpc2300098', 2300098, '387.472290', '-0.900329', '20.340231', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85976, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(220, 'go007', 'bnpc2300099', 2300099, '387.075500', '-1.022401', '21.408360', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75888, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(220, 'go007', 'bnpc2300103', 2300103, '403.433197', '-2.121051', '16.250811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85704, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(220, 'go007', 'bnpc2300104', 2300104, '436.545288', '-1.022401', '4.501364', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72074, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(220, 'go007', 'bnpc2300105', 2300105, '435.723999', '-1.106398', '3.907724', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75344, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(220, 'go007', 'bnpc2300115', 2300115, '389.150787', '4.287738', '-36.392811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(220, 'go007', 'bnpc2300119', 2300119, '397.360107', '0.381429', '115.953300', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64870, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2300123', 2300123, '371.755493', '-3.015678', '139.708099', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2300126', 2300126, '360.794006', '0.882443', '141.705902', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64326, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2300129', 2300129, '415.670990', '3.677377', '157.396805', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64054, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2300135', 2300135, '458.854004', '3.829967', '201.098602', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63782, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2300137', 2300137, '476.584991', '0.595055', '149.950302', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2300147', 2300147, '552.727478', '9.658914', '216.571198', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2300183', 2300183, '383.639801', '-2.278431', '92.591690', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300184', 2300184, '382.528412', '-2.487267', '93.400421', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300186', 2300186, '375.396393', '-4.129155', '77.561340', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300187', 2300187, '364.309113', '-4.655180', '71.455116', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300189', 2300189, '365.917114', '-5.088186', '65.510399', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300192', 2300192, '411.093201', '3.616341', '129.442200', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300193', 2300193, '410.513397', '4.074111', '156.633804', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300197', 2300197, '458.426697', '0.625573', '163.103607', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300199', 2300199, '458.792908', '0.625573', '164.843201', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300201', 2300201, '504.417389', '3.433233', '169.054596', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300202', 2300202, '512.107971', '5.050689', '209.033295', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300204', 2300204, '495.841888', '5.844158', '182.604706', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300205', 2300205, '544.090881', '10.452380', '201.525803', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300207', 2300207, '540.215088', '16.250811', '152.025604', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300211', 2300211, '525.902100', '19.058470', '105.821297', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300212', 2300212, '526.207275', '19.119511', '106.095901', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300214', 2300214, '570.489014', '22.507010', '119.554398', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300215', 2300215, '558.794128', '21.835609', '103.813599', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300217', 2300217, '592.919678', '25.558809', '131.029205', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300218', 2300218, '595.269714', '25.497780', '132.829697', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300222', 2300222, '158.947800', '16.443180', '-139.791306', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300223', 2300223, '162.681396', '16.443199', '-145.830505', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300229', 2300229, '47.617500', '4.166452', '66.536598', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300236', 2300236, '296.403412', '-0.256715', '-3.540742', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300237', 2300237, '307.939301', '-0.256714', '-0.769719', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2300241', 2300241, '306.026306', '-0.256723', '1.577364', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2308368', 2308368, '-332.770508', '11.416920', '613.476685', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145778, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(220, 'go007', 'bnpc2308369', 2308369, '-343.075592', '12.112200', '626.433289', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144424, 1, 0, 0, 0, 41, 30083, 0, 0, 0), +(220, 'go007', 'bnpc2308372', 2308372, '-345.601593', '15.548900', '608.209290', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143880, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(220, 'go007', 'bnpc2308373', 2308373, '-344.072388', '20.119520', '620.861877', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145506, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(220, 'go007', 'bnpc2308806', 2308806, '-332.725800', '11.426350', '614.251526', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143608, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(220, 'go007', 'bnpc2308807', 2308807, '-333.646912', '11.427370', '613.129211', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144152, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(220, 'go007', 'bnpc2308808', 2308808, '-325.795410', '11.581550', '623.895630', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144696, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(220, 'go007', 'bnpc2308809', 2308809, '-333.211304', '11.428960', '605.065918', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145234, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(220, 'go007', 'bnpc2308811', 2308811, '-314.290100', '11.306890', '604.882813', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144962, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(220, 'go007', 'bnpc2308812', 2308812, '-302.510101', '16.006670', '74.845451', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109506, 1, 0, 0, 0, 8, 30065, 0, 0, 0), +(220, 'go007', 'bnpc2308813', 2308813, '-305.806091', '17.837749', '80.064034', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109240, 1, 0, 0, 0, 8, 30072, 0, 0, 0), +(220, 'go007', 'bnpc2308814', 2308814, '-302.204987', '16.159260', '76.035652', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108974, 1, 0, 0, 0, 8, 30079, 0, 0, 0), +(220, 'go007', 'bnpc2308815', 2308815, '-306.242096', '16.501289', '63.830650', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108702, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(220, 'go007', 'bnpc2308816', 2308816, '-295.566986', '17.347191', '79.688187', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108418, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(220, 'go007', 'bnpc2308817', 2308817, '73.624763', '7.705750', '-111.894501', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83570, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(220, 'go007', 'bnpc2308818', 2308818, '74.906487', '7.766785', '-112.382797', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83304, 1, 0, 0, 0, 0, 30074, 0, 0, 0), +(220, 'go007', 'bnpc2308819', 2308819, '68.253563', '7.766795', '-107.438797', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83038, 1, 0, 0, 0, 0, 30081, 0, 0, 0), +(220, 'go007', 'bnpc2308820', 2308820, '72.922729', '7.614197', '-102.708603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82766, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(220, 'go007', 'bnpc2308822', 2308822, '80.979607', '7.614197', '-109.636101', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82488, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(220, 'go007', 'bnpc2310066', 2310066, '447.442291', '0.685165', '-106.462196', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82168, 1, 0, 0, 0, 5, 30073, 0, 0, 0), +(220, 'go007', 'bnpc2310068', 2310068, '439.536102', '-0.228932', '-82.414017', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71802, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(220, 'go007', 'bnpc2310072', 2310072, '447.196014', '-0.473083', '-64.896667', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81896, 1, 0, 0, 0, 5, 30079, 0, 0, 0), +(220, 'go007', 'bnpc2310073', 2310073, '448.172607', '-0.473083', '-65.140808', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75072, 1, 0, 0, 0, 5, 30077, 0, 0, 0), +(220, 'go007', 'bnpc2310077', 2310077, '606.902283', '21.846050', '94.322968', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310079', 2310079, '628.601990', '21.846140', '96.549973', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310080', 2310080, '634.544983', '21.846140', '87.894997', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310081', 2310081, '632.357971', '21.846130', '64.279701', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56692, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310082', 2310082, '626.666382', '21.845909', '61.769680', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56420, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310083', 2310083, '607.055603', '21.845909', '87.877663', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56148, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310084', 2310084, '607.202271', '21.845900', '69.260597', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55876, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310086', 2310086, '647.131470', '21.845940', '74.024300', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55604, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310087', 2310087, '631.244385', '21.845980', '119.611702', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310088', 2310088, '589.967102', '21.846029', '111.639000', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310106', 2310106, '62.454399', '22.173260', '-183.847000', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54504, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310110', 2310110, '11.996420', '22.107401', '-194.509094', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54232, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310121', 2310121, '43.552151', '31.746559', '-242.757904', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310129', 2310129, '80.701881', '31.247450', '-236.730392', 77, 0, 0, 0, 1, 6, 0, 0, 74, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310142', 2310142, '1.488476', '42.615070', '-238.873703', 85, 0, 0, 0, 1, 6, 0, 0, 81, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310155', 2310155, '14.401670', '41.170448', '-236.977097', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310157', 2310157, '13.745920', '41.247570', '-234.937393', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310158', 2310158, '26.641451', '40.972401', '-238.464600', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52606, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310159', 2310159, '23.036869', '41.356541', '-231.651596', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310160', 2310160, '34.532631', '34.329281', '-248.540298', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310161', 2310161, '18.166571', '40.736420', '-243.886398', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310162', 2310162, '36.185360', '34.339809', '-251.152893', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51518, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310163', 2310163, '32.022099', '35.938412', '-251.996597', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310164', 2310164, '2.683093', '41.323040', '-231.439301', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50974, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310165', 2310165, '2.481253', '41.289459', '-247.178207', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310166', 2310166, '3.023275', '41.244370', '-229.524307', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310168', 2310168, '26.339149', '41.310089', '-228.982193', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310169', 2310169, '43.691368', '23.807100', '-197.954498', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49886, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310170', 2310170, '47.955181', '23.796989', '-201.803207', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49614, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310171', 2310171, '27.500080', '23.900030', '-176.426407', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310173', 2310173, '8.713860', '24.977810', '-183.468903', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310174', 2310174, '25.766741', '25.453140', '-197.692993', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310175', 2310175, '21.326250', '25.217710', '-213.513397', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310176', 2310176, '56.209671', '30.207701', '-208.221603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310177', 2310177, '50.222309', '30.207741', '-208.816299', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310178', 2310178, '55.211819', '31.096901', '-223.299698', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310179', 2310179, '44.478668', '30.061560', '-213.305893', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47426, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310180', 2310180, '27.629330', '25.414169', '-203.556198', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47154, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310181', 2310181, '11.799320', '24.994440', '-208.841293', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310182', 2310182, '57.392250', '31.250860', '-237.443100', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310183', 2310183, '56.381592', '31.081989', '-222.324799', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310184', 2310184, '41.846550', '31.327400', '-233.639603', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310185', 2310185, '49.764519', '31.322470', '-239.490097', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310186', 2310186, '45.229160', '30.849199', '-225.986694', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310187', 2310187, '54.603119', '30.526270', '-215.684494', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310188', 2310188, '26.807720', '25.469440', '-208.795700', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310191', 2310191, '53.416069', '23.647209', '-198.466995', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310192', 2310192, '16.458969', '23.952860', '-182.981705', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310193', 2310193, '34.354580', '23.728510', '-188.906204', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310194', 2310194, '24.826321', '38.422710', '-248.892502', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310195', 2310195, '19.778610', '41.225639', '-235.194595', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2310196', 2310196, '10.671480', '41.230179', '-245.656906', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2313233', 2313233, '320.515686', '2.215992', '-18.509239', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81726, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(220, 'go007', 'bnpc2313234', 2313234, '320.698792', '2.227228', '-15.091220', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81454, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(220, 'go007', 'bnpc2313235', 2313235, '318.658691', '2.299638', '-15.389510', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81182, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(220, 'go007', 'bnpc2313237', 2313237, '303.089905', '1.571632', '-19.974110', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80910, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(220, 'go007', 'bnpc2313238', 2313238, '331.471710', '1.907331', '-17.807329', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80638, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(220, 'go007', 'bnpc2320820', 2320820, '241.483994', '17.276871', '-145.913101', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80354, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2320821', 2320821, '252.963196', '12.221980', '-153.075394', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80082, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2320822', 2320822, '246.929703', '9.238781', '-175.852005', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79810, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2320826', 2320826, '292.604004', '10.691710', '-162.803802', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79538, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2320827', 2320827, '290.235687', '9.507468', '-185.479797', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79266, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2320828', 2320828, '295.598389', '11.637060', '-160.074707', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78994, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2320830', 2320830, '279.377411', '8.641194', '-170.115997', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78722, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2320832', 2320832, '250.518402', '10.279540', '-169.884796', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78450, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2351462', 2351462, '48.281940', '25.165770', '125.730797', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2351466', 2351466, '33.028351', '19.801689', '204.600204', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2351468', 2351468, '17.664570', '21.473511', '187.304001', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2351469', 2351469, '15.638560', '21.324190', '188.309006', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2351473', 2351473, '48.142170', '19.912979', '204.211395', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125142, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc2351480', 2351480, '31.650410', '24.598419', '125.582100', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc2763397', 2763397, '318.018890', '0.478852', '12.307590', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78190, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(220, 'go007', 'bnpc2763398', 2763398, '317.199188', '0.290855', '13.417520', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77918, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(220, 'go007', 'bnpc2763399', 2763399, '313.945190', '0.195134', '8.234367', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77646, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(220, 'go007', 'bnpc2763400', 2763400, '289.082001', '0.747620', '16.617001', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77374, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(220, 'go007', 'bnpc2763402', 2763402, '292.225494', '0.411926', '13.809330', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77102, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(220, 'go007', 'bnpc3739171', 3739171, '-272.839386', '22.280479', '-182.574203', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104362, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(220, 'go007', 'bnpc3739176', 3739176, '-271.384399', '22.233410', '-181.710205', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104090, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(220, 'go007', 'bnpc3739178', 3739178, '-270.221985', '22.171329', '-172.442307', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103818, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(220, 'go007', 'bnpc3739189', 3739189, '-286.671295', '22.598570', '-178.942596', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103546, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(220, 'go007', 'bnpc3739195', 3739195, '-285.084290', '23.636169', '-193.682800', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103274, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(220, 'go007', 'bnpc3739197', 3739197, '-302.441498', '24.263420', '-202.146301', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103002, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(220, 'go007', 'bnpc3739198', 3739198, '-301.991302', '24.106640', '-200.335693', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102730, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(220, 'go007', 'bnpc3739200', 3739200, '-307.179413', '23.056339', '-191.149796', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102458, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(220, 'go007', 'bnpc3739223', 3739223, '-306.875397', '9.692472', '-137.887207', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3739241', 3739241, '-102.205200', '2.027415', '-36.144821', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3739247', 3739247, '-101.905197', '2.027430', '-31.359751', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3739298', 3739298, '-64.469414', '0.015212', '63.034969', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97030, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3739305', 3739305, '-142.689407', '0.030637', '161.735504', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96758, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3739308', 3739308, '-173.166397', '0.030539', '149.329895', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96486, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3739310', 3739310, '-183.418106', '0.030539', '144.544296', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96214, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3739417', 3739417, '151.785294', '4.236084', '20.237249', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3739423', 3739423, '152.085297', '4.236084', '15.201380', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3740607', 3740607, '-135.541595', '-0.100001', '467.027588', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138730, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3740609', 3740609, '-138.985397', '-0.100003', '461.260590', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138458, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3740611', 3740611, '-176.964996', '-0.100092', '482.156586', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138186, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3740613', 3740613, '-197.264099', '-0.100169', '480.240295', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3740615', 3740615, '-183.840607', '-0.100061', '448.882111', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3740617', 3740617, '-178.071396', '-0.100048', '447.029205', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3740619', 3740619, '-182.900406', '-0.100169', '476.189514', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3740632', 3740632, '-358.518585', '1.158285', '453.619598', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc3740634', 3740634, '-362.075012', '0.968366', '458.185486', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc3740635', 3740635, '-336.208405', '-0.100018', '460.011810', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc3740636', 3740636, '-362.780701', '1.532029', '454.955414', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc3740637', 3740637, '-338.199493', '-0.100187', '433.127808', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc3740638', 3740638, '-334.106689', '-0.100003', '437.684113', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc3740639', 3740639, '-345.628906', '-0.100008', '453.583313', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc3740640', 3740640, '-333.997498', '-0.100017', '457.273987', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc3740644', 3740644, '-79.519012', '-0.100045', '377.072388', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3740645', 3740645, '-20.504120', '-0.106860', '365.133087', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3740646', 3740646, '-52.782280', '-0.106860', '324.177887', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3740647', 3740647, '-59.319771', '-0.100007', '331.135590', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3740648', 3740648, '-4.964393', '-0.100007', '339.615601', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3740649', 3740649, '-18.177540', '-0.100615', '322.254089', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3740651', 3740651, '-42.146980', '-0.100005', '396.759399', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3740823', 3740823, '52.433182', '8.970453', '290.451111', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124604, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3740824', 3740824, '34.042301', '6.188347', '297.895691', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123244, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(220, 'go007', 'bnpc3740991', 3740991, '83.869347', '23.640280', '197.587494', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc3740992', 3740992, '83.668243', '23.758640', '201.089493', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc3740993', 3740993, '92.752083', '22.594500', '147.751404', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc3740994', 3740994, '69.937286', '22.357740', '174.791397', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(220, 'go007', 'bnpc3870245', 3870245, '-201.828995', '8.309389', '-77.948196', 584, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27764, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(220, 'go007', 'bnpc3870249', 3870249, '-144.314499', '6.941079', '-45.049019', 585, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27498, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(220, 'go007', 'bnpc3870258', 3870258, '-169.371506', '8.963833', '-15.339670', 586, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27232, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(220, 'go007', 'bnpc3870312', 3870312, '213.284805', '9.756709', '-77.238258', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26966, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(220, 'go007', 'bnpc3870333', 3870333, '150.590805', '8.698524', '-47.601891', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26700, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(220, 'go007', 'bnpc3870347', 3870347, '213.854004', '6.490500', '-15.706390', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 36, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26434, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(220, 'go007', 'bnpc3870372', 3870372, '-149.487900', '0.750592', '229.198502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26156, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(220, 'go007', 'bnpc3870375', 3870375, '-161.511307', '0.485998', '346.191010', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(220, 'go007', 'bnpc3870382', 3870382, '-231.008896', '0.795779', '399.749115', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25606, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(220, 'go007', 'bnpc3870387', 3870387, '-228.300903', '0.984585', '517.848816', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25334, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(220, 'go007', 'bnpc3878991', 3878991, '400.476288', '4.241707', '-40.787842', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70986, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(220, 'go007', 'bnpc3879006', 3879006, '442.368011', '0.843470', '-27.738720', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70714, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(220, 'go007', 'bnpc3879018', 3879018, '447.624695', '0.635267', '-105.764603', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70442, 1, 0, 0, 0, 5, 30074, 0, 0, 0), +(220, 'go007', 'bnpc3879051', 3879051, '431.967712', '-0.747742', '-65.507080', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70176, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(220, 'go007', 'bnpc3879065', 3879065, '356.771088', '2.792354', '1.937849', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69898, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(220, 'go007', 'bnpc3879339', 3879339, '-343.618011', '11.367920', '624.658508', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(220, 'go007', 'bnpc3879341', 3879341, '-324.269501', '11.551030', '603.662109', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136536, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(220, 'go007', 'bnpc3879343', 3879343, '-320.241089', '11.612060', '616.174377', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136288, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(220, 'go007', 'bnpc3879346', 3879346, '-319.234009', '11.551030', '602.227722', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136016, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(220, 'go007', 'bnpc3879348', 3879348, '-324.879913', '11.551030', '603.082275', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135744, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(220, 'go007', 'bnpc3879351', 3879351, '-324.330505', '11.520510', '609.063782', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135448, 1, 0, 0, 0, 41, 0, 0, 0, 0), +(220, 'go007', 'bnpc3879352', 3879352, '-342.671906', '20.065571', '624.475403', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135176, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(220, 'go007', 'bnpc3879353', 3879353, '-343.556885', '20.065571', '624.811096', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134928, 1, 0, 0, 0, 41, 30073, 0, 0, 0), +(220, 'go007', 'bnpc3879398', 3879398, '-335.561188', '11.520510', '620.843811', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134626, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(220, 'go007', 'bnpc3884509', 3884509, '125.859001', '4.166452', '44.953560', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc3917184', 3917184, '-60.455681', '3.894856', '-39.952641', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc3939726', 3939726, '436.760712', '0.574082', '-105.544098', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69360, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(220, 'go007', 'bnpc4329476', 4329476, '-188.220093', '9.170593', '94.010742', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95676, 6, 1, 0, 0, 0, 30246, 4329477, 0, 0), +(220, 'go007', 'bnpc4333062', 4333062, '-159.767395', '3.700634', '137.279205', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94652, 6, 1, 0, 0, 0, 30246, 4333061, 0, 0), +(220, 'go007', 'bnpc4621322', 4621322, '28.233730', '25.315451', '115.697998', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28790, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(220, 'go007', 'bnpc4621339', 4621339, '-337.105499', '20.119471', '615.520508', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28518, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4057424', 4057424, '373.678802', '0.422750', '77.136467', 787, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 13576, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(221, 'go009', 'bnpc4125683', 4125683, '-430.132813', '-4.460994', '252.733902', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70376, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4125744', 4125744, '-425.421906', '-5.333291', '249.054504', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70104, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4125745', 4125745, '-466.306793', '-7.092595', '232.199203', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69832, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4125747', 4125747, '-443.584503', '-13.024020', '208.694595', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69560, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4125750', 4125750, '-384.939392', '-2.456726', '215.991302', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69288, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4125752', 4125752, '-401.977203', '-3.269313', '175.769104', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69016, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4125755', 4125755, '-369.548309', '0.004147', '192.516693', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68744, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4125756', 4125756, '-398.737305', '-2.894251', '174.231705', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68472, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4125763', 4125763, '-396.099915', '-3.100000', '145.190201', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125766', 4125766, '-393.865906', '-3.100000', '143.932800', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125767', 4125767, '-386.391907', '-3.100003', '157.227005', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125768', 4125768, '-378.088715', '-3.100000', '148.268097', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125769', 4125769, '-406.202789', '-3.100000', '152.051300', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125772', 4125772, '-405.765289', '-3.100000', '141.705704', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125778', 4125778, '-366.663391', '-1.920207', '156.406006', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125779', 4125779, '-420.247314', '-1.484060', '141.641296', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125784', 4125784, '-410.220001', '-3.100000', '26.344061', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66036, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4125795', 4125795, '-409.830414', '-3.100000', '41.699661', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65764, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4125797', 4125797, '-431.816986', '-3.100000', '23.416639', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65492, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4125801', 4125801, '-433.412598', '-3.100000', '18.522329', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65220, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4125802', 4125802, '-479.417297', '-3.100000', '-1.863089', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64948, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4125803', 4125803, '-512.265808', '-3.100000', '-6.092242', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64676, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4125804', 4125804, '-518.534912', '-3.100008', '-9.719651', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64404, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4125808', 4125808, '-593.263123', '-2.203172', '-36.779171', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64138, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125810', 4125810, '-564.081787', '-1.780965', '-9.216994', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125812', 4125812, '-595.108887', '-1.485892', '9.388672', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63594, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125815', 4125815, '-650.354675', '-3.100002', '5.733859', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63322, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125820', 4125820, '-627.241516', '-3.100004', '-1.093794', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63050, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125822', 4125822, '-593.917175', '-1.481592', '-0.002720', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125843', 4125843, '-400.381500', '43.564449', '-4.135254', 328, 0, 0, 0, 1, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62512, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(221, 'go009', 'bnpc4125844', 4125844, '-391.328400', '44.270889', '-5.423687', 329, 0, 0, 0, 0, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62246, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(221, 'go009', 'bnpc4125848', 4125848, '-440.943298', '31.565310', '58.753658', 328, 0, 0, 0, 1, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61968, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(221, 'go009', 'bnpc4125849', 4125849, '-428.585693', '37.782028', '19.815300', 329, 0, 0, 0, 1, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61702, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(221, 'go009', 'bnpc4125851', 4125851, '-404.069885', '36.076439', '36.532841', 328, 0, 0, 0, 0, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61424, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(221, 'go009', 'bnpc4125852', 4125852, '-402.817291', '36.137718', '33.293110', 329, 0, 0, 0, 0, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61158, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(221, 'go009', 'bnpc4125853', 4125853, '-478.698395', '28.016800', '54.543690', 329, 0, 0, 0, 1, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60886, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(221, 'go009', 'bnpc4125854', 4125854, '-378.043213', '38.659840', '29.684401', 328, 0, 0, 0, 1, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60608, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(221, 'go009', 'bnpc4125855', 4125855, '-482.932800', '26.474369', '57.663818', 329, 0, 0, 0, 1, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125856', 4125856, '-465.260010', '36.882080', '31.197201', 328, 0, 0, 0, 1, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60064, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125938', 4125938, '-477.459015', '-2.084961', '31.291599', 329, 0, 0, 0, 1, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59798, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(221, 'go009', 'bnpc4125940', 4125940, '-486.273987', '-2.193239', '25.343540', 328, 0, 0, 0, 1, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59520, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(221, 'go009', 'bnpc4125942', 4125942, '-489.859711', '-2.618297', '38.082218', 328, 0, 0, 0, 0, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59248, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(221, 'go009', 'bnpc4125943', 4125943, '-491.041992', '-2.412468', '34.461601', 329, 0, 0, 0, 0, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58982, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(221, 'go009', 'bnpc4125949', 4125949, '-467.209808', '-2.220885', '253.157806', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125951', 4125951, '-468.934601', '-2.134753', '251.403000', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125952', 4125952, '-435.089508', '-7.852676', '240.201996', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125953', 4125953, '-421.885315', '-7.810967', '200.294296', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125954', 4125954, '-385.569489', '-1.927866', '179.288498', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125955', 4125955, '-355.833588', '-0.654633', '170.008102', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125957', 4125957, '-414.132385', '-3.313842', '165.281601', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125959', 4125959, '-438.587494', '-1.647789', '125.521599', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125961', 4125961, '-439.676910', '-1.549295', '123.968102', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125964', 4125964, '-425.339294', '-2.050552', '105.144096', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125968', 4125968, '-430.014313', '-2.101961', '59.509911', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 22, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125972', 4125972, '-479.200195', '-2.255513', '23.531839', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 22, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125974', 4125974, '-553.856689', '-2.609314', '1.632629', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 23, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125977', 4125977, '-585.334229', '-2.232086', '-15.587410', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 23, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125978', 4125978, '-586.275085', '-2.093815', '-14.228230', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 23, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125981', 4125981, '-429.866486', '34.005150', '42.804970', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125985', 4125985, '-469.631805', '31.277020', '45.936749', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4125986', 4125986, '-382.392395', '40.251968', '10.964420', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126060', 4126060, '590.199829', '-3.100000', '139.805496', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53466, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126064', 4126064, '637.447083', '-3.100000', '169.287994', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53194, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126065', 4126065, '624.633972', '-3.100000', '133.809998', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52922, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126066', 4126066, '576.989380', '-3.128174', '128.160400', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52650, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126068', 4126068, '585.121216', '-3.100000', '167.812897', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52378, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126069', 4126069, '574.338806', '-3.100000', '131.902802', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52106, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126070', 4126070, '640.462585', '-3.100000', '171.417999', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51834, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126071', 4126071, '633.408691', '-3.100000', '187.767105', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51562, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126072', 4126072, '564.760071', '-3.100325', '203.277802', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51290, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126110', 4126110, '420.178009', '-3.100000', '155.939606', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51024, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126111', 4126111, '446.875000', '-3.100000', '175.658096', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126112', 4126112, '437.292786', '-3.100000', '194.681793', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126113', 4126113, '401.780914', '-3.100000', '183.057205', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126114', 4126114, '394.433014', '-3.100000', '141.594101', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126115', 4126115, '390.221100', '-3.100000', '144.688904', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49664, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126116', 4126116, '369.374298', '-3.100012', '127.962303', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49392, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126117', 4126117, '380.599792', '-3.100016', '17.808519', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49120, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126118', 4126118, '376.532288', '-3.100016', '22.182360', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48848, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126119', 4126119, '358.780792', '-3.100016', '33.644321', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48576, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126120', 4126120, '440.921600', '-3.100000', '192.138596', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48304, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126121', 4126121, '299.763397', '-3.100003', '155.110306', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4126122', 4126122, '328.125793', '-3.100003', '150.720703', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4126124', 4126124, '287.582489', '-3.100012', '33.655041', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40724, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4126125', 4126125, '327.775513', '-3.100016', '30.262211', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40452, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4126127', 4126127, '293.655487', '-3.100016', '37.213219', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40180, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4126129', 4126129, '272.029205', '-3.100012', '83.103783', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39908, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4126131', 4126131, '303.497009', '-3.100003', '149.039093', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39636, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(221, 'go009', 'bnpc4126133', 4126133, '338.338287', '-0.869812', '206.256104', 343, 0, 0, 0, 1, 6, 0, 0, 414, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126134', 4126134, '342.366699', '-1.510742', '208.392303', 344, 0, 0, 0, 1, 6, 0, 0, 413, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126135', 4126135, '363.240997', '-1.083435', '209.918304', 345, 0, 0, 0, 1, 6, 0, 0, 416, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47506, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126136', 4126136, '352.468109', '-2.426208', '192.339798', 346, 0, 0, 0, 1, 6, 0, 0, 415, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47240, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126137', 4126137, '323.811615', '-2.517761', '78.690804', 344, 0, 0, 0, 1, 6, 0, 0, 413, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126138', 4126138, '334.004608', '-2.517761', '104.631104', 345, 0, 0, 0, 1, 6, 0, 0, 416, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126139', 4126139, '301.655487', '-2.548279', '92.088127', 346, 0, 0, 0, 1, 6, 0, 0, 415, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46424, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126140', 4126140, '299.427704', '-2.548279', '95.109383', 343, 0, 0, 0, 1, 6, 0, 0, 414, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126141', 4126141, '595.239075', '-2.517761', '216.113495', 343, 0, 0, 0, 1, 6, 0, 0, 414, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126142', 4126142, '590.905579', '-1.602234', '208.758698', 345, 0, 0, 0, 1, 6, 0, 0, 416, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45602, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126143', 4126143, '571.892822', '-2.517761', '189.532196', 344, 0, 0, 0, 1, 6, 0, 0, 413, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45324, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126144', 4126144, '614.526489', '-2.548279', '199.420197', 346, 0, 0, 0, 1, 6, 0, 0, 415, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45064, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126145', 4126145, '377.982513', '3.082690', '-10.971560', 344, 0, 0, 0, 1, 6, 0, 0, 413, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126146', 4126146, '358.682709', '1.620175', '-3.517888', 345, 0, 0, 0, 1, 6, 0, 0, 416, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126147', 4126147, '356.030396', '0.471913', '-0.493977', 346, 0, 0, 0, 1, 6, 0, 0, 415, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44248, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126148', 4126148, '321.975311', '-2.309778', '2.777854', 343, 0, 0, 0, 1, 6, 0, 0, 414, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126149', 4126149, '369.527588', '23.636169', '-126.329498', 328, 0, 0, 0, 1, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43656, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(221, 'go009', 'bnpc4126150', 4126150, '365.261505', '24.531950', '-141.892105', 329, 0, 0, 0, 0, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43390, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(221, 'go009', 'bnpc4126151', 4126151, '376.211090', '23.514099', '-136.919296', 330, 0, 0, 0, 1, 6, 0, 0, 376, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43166, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(221, 'go009', 'bnpc4126152', 4126152, '262.362488', '26.421909', '-92.842506', 329, 0, 0, 0, 0, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42846, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(221, 'go009', 'bnpc4126153', 4126153, '259.484711', '26.393141', '-94.860497', 330, 0, 0, 0, 0, 6, 0, 0, 376, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42622, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(221, 'go009', 'bnpc4126154', 4126154, '289.894501', '21.974110', '-95.414726', 328, 0, 0, 0, 1, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42296, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(221, 'go009', 'bnpc4126155', 4126155, '342.356110', '27.484810', '-150.423996', 328, 0, 0, 0, 1, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42024, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(221, 'go009', 'bnpc4126156', 4126156, '336.954010', '12.465180', '-69.307114', 329, 0, 0, 0, 1, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41758, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(221, 'go009', 'bnpc4126157', 4126157, '263.538513', '33.493530', '-145.616898', 330, 0, 0, 0, 1, 6, 0, 0, 376, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41534, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(221, 'go009', 'bnpc4126201', 4126201, '687.981384', '-0.741994', '125.134102', 345, 0, 0, 0, 1, 6, 0, 0, 416, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39346, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126202', 4126202, '665.960205', '-1.478390', '135.026901', 343, 0, 0, 0, 1, 6, 0, 0, 414, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39062, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126203', 4126203, '704.842712', '-0.435132', '136.984604', 346, 0, 0, 0, 1, 6, 0, 0, 415, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126204', 4126204, '700.169128', '-0.449296', '142.053299', 344, 0, 0, 0, 1, 6, 0, 0, 413, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38524, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126250', 4126250, '663.416870', '-3.100000', '163.420700', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126251', 4126251, '601.270325', '-3.100000', '130.947296', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38010, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126253', 4126253, '620.669922', '-3.051413', '181.877808', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37738, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126254', 4126254, '541.538879', '-3.100000', '155.849396', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37466, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126256', 4126256, '538.999573', '-3.100000', '152.828400', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37194, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126259', 4126259, '390.150787', '-3.100000', '175.607697', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36922, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126266', 4126266, '359.669403', '-3.100003', '142.000702', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36650, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126267', 4126267, '359.969391', '-3.100016', '53.416809', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36378, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126268', 4126268, '325.831085', '-3.128174', '90.616592', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36106, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126270', 4126270, '250.098404', '-3.100526', '79.563713', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35834, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126271', 4126271, '302.732788', '-3.100012', '124.098297', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35562, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126273', 4126273, '273.024994', '-3.100202', '221.399399', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 33, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35290, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126274', 4126274, '249.098404', '-3.100000', '249.991501', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 33, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35018, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126275', 4126275, '271.496887', '-3.100202', '223.957397', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 33, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126277', 4126277, '246.158798', '-3.100526', '39.638111', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126278', 4126278, '246.458801', '-3.100526', '81.666367', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4126279', 4126279, '308.674408', '-3.100016', '18.911890', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4621610', 4621610, '488.661896', '8.812365', '96.352119', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 14176, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(221, 'go009', 'bnpc4621612', 4621612, '-355.266296', '10.754760', '92.445412', 2771, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 13910, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3760882', 3760882, '7.760897', '64.944183', '95.225662', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760883', 3760883, '11.569650', '64.269142', '103.174004', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760884', 3760884, '27.212851', '64.259323', '68.436661', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121286, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760886', 3760886, '35.300129', '63.748798', '70.756027', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122102, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760887', 3760887, '29.623779', '63.785370', '72.434517', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122918, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760888', 3760888, '12.674300', '64.363640', '96.110687', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122646, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760889', 3760889, '37.375351', '64.107178', '66.758171', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122374, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760890', 3760890, '35.361160', '64.320633', '64.408279', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760896', 3760896, '20.935301', '61.990829', '147.102097', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760898', 3760898, '32.574959', '59.535831', '128.579605', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119382, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760901', 3760901, '3.688727', '65.262871', '139.257401', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119110, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760902', 3760902, '1.674536', '65.722069', '135.412201', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760911', 3760911, '66.135712', '56.046421', '111.429703', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760912', 3760912, '62.577202', '57.663799', '106.370598', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120470, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760913', 3760913, '64.103104', '57.114471', '107.652298', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760917', 3760917, '60.457890', '61.337429', '74.236450', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121830, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760922', 3760922, '96.288940', '49.550621', '73.985641', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126182, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760923', 3760923, '110.317703', '42.549389', '102.239700', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125366, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760925', 3760925, '121.477097', '40.913620', '141.046600', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125638, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760927', 3760927, '99.690933', '44.016190', '125.932701', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126998, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760933', 3760933, '86.244019', '47.554829', '160.082397', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126726, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760937', 3760937, '87.891998', '47.433571', '161.638794', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123190, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760948', 3760948, '68.406143', '53.661510', '183.326599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123462, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760950', 3760950, '62.399029', '56.000351', '191.517303', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125910, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760952', 3760952, '63.992779', '55.493610', '189.245102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124550, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760958', 3760958, '51.348160', '55.864281', '150.438599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124278, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760961', 3760961, '56.546551', '56.041698', '186.103394', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125094, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3760965', 3760965, '53.117081', '55.406071', '151.622894', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124822, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761027', 3761027, '-7.343534', '67.714622', '93.888710', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153092, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761030', 3761030, '15.512480', '63.992210', '99.894920', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152820, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761031', 3761031, '78.979568', '53.555161', '86.569473', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124006, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761032', 3761032, '80.505470', '52.852570', '87.851227', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123734, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761033', 3761033, '31.698999', '64.077950', '68.192520', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152548, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761034', 3761034, '111.202797', '42.291870', '104.620102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126454, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761035', 3761035, '112.698097', '41.971249', '105.901901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127270, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761036', 3761036, '16.824760', '63.905472', '97.575546', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152276, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761039', 3761039, '11.941870', '64.628357', '91.990753', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152004, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761041', 3761041, '54.459400', '59.806961', '102.917297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151732, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761042', 3761042, '30.722420', '63.595020', '74.784416', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151460, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761044', 3761044, '19.068230', '62.294941', '149.492599', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151188, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761045', 3761045, '22.420271', '61.734470', '145.882996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150916, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761046', 3761046, '31.079571', '59.608490', '125.924500', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150644, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761048', 3761048, '66.227257', '56.978741', '104.868301', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150372, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761049', 3761049, '81.546333', '52.845501', '84.585800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150100, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761050', 3761050, '62.755970', '60.386440', '76.019211', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149828, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761051', 3761051, '109.737900', '42.563049', '105.962898', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149556, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761052', 3761052, '98.714363', '44.085449', '129.594803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149284, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(222, 'go010', 'bnpc3761053', 3761053, '98.425201', '49.276859', '70.598137', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149012, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761054', 3761054, '99.981613', '48.315552', '73.649940', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148740, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761080', 3761080, '100.606499', '43.794998', '128.557205', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148468, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761081', 3761081, '89.814621', '46.770222', '157.976593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148196, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761084', 3761084, '51.818901', '55.815891', '145.346603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147924, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761085', 3761085, '70.215584', '52.939968', '181.270401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147652, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761086', 3761086, '60.924660', '55.885761', '189.770996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147380, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761088', 3761088, '48.845680', '56.451950', '150.896393', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147108, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761089', 3761089, '50.420841', '56.054260', '153.244995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146836, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761096', 3761096, '199.256302', '27.059620', '91.574173', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146570, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761097', 3761097, '66.501930', '57.215820', '101.480797', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761099', 3761099, '111.690498', '36.582958', '4.053726', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146298, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761100', 3761100, '67.783684', '56.291199', '107.065697', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761102', 3761102, '156.633804', '34.653191', '70.542397', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146026, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761103', 3761103, '23.832260', '61.353020', '150.988007', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761104', 3761104, '24.717279', '61.225311', '149.156906', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761105', 3761105, '167.377899', '33.443420', '75.522820', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145754, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761108', 3761108, '124.488503', '36.345482', '15.758260', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145482, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761109', 3761109, '159.302094', '33.928551', '78.777786', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145210, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761111', 3761111, '108.955002', '36.663021', '9.387772', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144938, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761112', 3761112, '131.578506', '35.965469', '45.853310', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144666, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761123', 3761123, '237.190399', '36.611149', '66.717194', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761124', 3761124, '242.137604', '44.361130', '44.958832', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144128, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761125', 3761125, '242.718903', '43.673290', '46.873840', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143856, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761128', 3761128, '187.436096', '42.116020', '51.900459', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143584, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761129', 3761129, '223.247696', '51.849850', '26.116220', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143312, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761130', 3761130, '223.430801', '52.761440', '22.759239', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143040, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761131', 3761131, '217.449295', '51.875561', '27.520050', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142768, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761134', 3761134, '223.010498', '31.021540', '165.483994', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142496, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761135', 3761135, '227.779602', '33.454979', '203.906296', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142224, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761136', 3761136, '242.318497', '38.158321', '234.873306', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141952, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761137', 3761137, '227.626999', '34.365898', '207.232697', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141680, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761139', 3761139, '245.897202', '37.488659', '235.919693', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141408, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761141', 3761141, '195.561203', '47.715080', '226.776001', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141136, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761142', 3761142, '197.033997', '48.159161', '228.423004', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761143', 3761143, '222.161804', '50.249969', '256.272888', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761145', 3761145, '180.566803', '43.422722', '197.741592', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761146', 3761146, '181.211105', '43.103500', '194.872894', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761147', 3761147, '150.769104', '55.568981', '248.645706', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761149', 3761149, '148.855896', '56.596169', '250.553299', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761150', 3761150, '152.127594', '64.016029', '312.689392', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761151', 3761151, '154.979797', '64.179688', '314.660492', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761152', 3761152, '153.705307', '64.400146', '315.376495', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761155', 3761155, '115.122803', '68.518044', '293.763489', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761164', 3761164, '69.781052', '51.086330', '157.761703', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761169', 3761169, '97.733994', '47.043510', '88.944794', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761303', 3761303, '204.358505', '46.098690', '45.780960', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761362', 3761362, '198.245804', '51.531582', '242.749405', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3761367', 3761367, '182.543594', '41.458710', '51.590698', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761369', 3761369, '186.119797', '42.655750', '49.950859', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761370', 3761370, '285.549408', '42.548729', '57.964470', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761371', 3761371, '285.078796', '44.421532', '49.076550', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761372', 3761372, '239.723694', '36.528450', '66.898483', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761373', 3761373, '148.845200', '38.711102', '41.285278', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761374', 3761374, '152.171600', '39.307671', '41.468391', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761375', 3761375, '182.186905', '54.291470', '262.783508', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761376', 3761376, '184.506195', '55.134689', '266.109985', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761475', 3761475, '201.696899', '32.601101', '76.500427', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135684, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761552', 3761552, '150.981400', '38.858120', '42.405491', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135412, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761553', 3761553, '185.442902', '41.123051', '53.604858', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135140, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761554', 3761554, '206.775299', '43.330341', '53.446110', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134868, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761555', 3761555, '208.241592', '43.763321', '52.334370', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134596, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761556', 3761556, '239.497803', '36.005562', '68.131721', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134324, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761557', 3761557, '215.528305', '44.498230', '50.226871', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134052, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761572', 3761572, '223.339294', '51.412380', '27.733681', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133780, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761576', 3761576, '283.996399', '43.243752', '55.750099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133508, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761580', 3761580, '272.696899', '45.167171', '32.535080', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133236, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761585', 3761585, '215.465607', '53.837990', '20.867121', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132964, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761592', 3761592, '217.212097', '32.425369', '164.537994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132692, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761607', 3761607, '218.341293', '32.455891', '165.972305', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132420, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761622', 3761622, '202.532898', '37.857590', '176.104294', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132148, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761626', 3761626, '183.154007', '42.709949', '197.436401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131876, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761716', 3761716, '184.920502', '44.981480', '218.420700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131604, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761718', 3761718, '224.420395', '35.250660', '205.197601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131332, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761720', 3761720, '242.515396', '37.441879', '232.829803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131060, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761721', 3761721, '215.690094', '51.411850', '255.712601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130788, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761722', 3761722, '217.734802', '50.606812', '253.454300', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130516, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761723', 3761723, '185.971100', '54.557800', '262.936096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130244, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761726', 3761726, '152.777603', '58.215248', '280.103607', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129972, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761727', 3761727, '152.238602', '58.132370', '277.662201', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129700, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761728', 3761728, '118.327202', '67.511993', '294.840210', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129428, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761730', 3761730, '114.320396', '68.359100', '296.500885', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129156, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3761731', 3761731, '153.412399', '63.654282', '311.208801', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128884, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766328', 3766328, '444.374390', '64.694489', '-36.484081', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766391', 3766391, '446.046112', '65.017601', '-33.594650', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766399', 3766399, '453.421814', '56.259960', '-0.534113', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766401', 3766401, '455.924286', '55.802189', '3.341679', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766402', 3766402, '448.874603', '55.222351', '4.837063', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766575', 3766575, '366.619385', '51.659290', '-12.188280', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766577', 3766577, '364.147400', '52.146080', '-17.895161', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766579', 3766579, '370.878113', '59.451641', '-59.303612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766580', 3766580, '368.924988', '58.367748', '-54.695389', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766581', 3766581, '373.350098', '58.395641', '-53.596741', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766584', 3766584, '363.439606', '63.704231', '-82.801590', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766586', 3766586, '341.616302', '51.478588', '-30.833561', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766588', 3766588, '305.806000', '47.806469', '0.503501', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766589', 3766589, '308.552612', '48.569420', '-3.769025', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766591', 3766591, '409.158112', '63.702721', '-82.786118', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766592', 3766592, '412.649689', '63.919991', '-86.564484', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766596', 3766596, '450.583588', '66.468239', '-76.957558', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766603', 3766603, '394.502594', '67.135857', '-121.089203', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766604', 3766604, '391.786499', '67.793007', '-123.530602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3766605', 3766605, '395.113007', '67.180733', '-122.828697', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767081', 3767081, '473.143494', '66.440041', '-148.859894', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767082', 3767082, '437.091309', '65.055496', '-127.757103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767083', 3767083, '438.506500', '65.198730', '-126.336800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767118', 3767118, '437.011108', '65.003197', '-124.078499', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767119', 3767119, '474.052002', '66.418793', '-147.307800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767127', 3767127, '371.903290', '67.982323', '-110.760803', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3767131', 3767131, '460.464600', '68.698967', '-124.371498', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3767137', 3767137, '564.060181', '84.658661', '-310.397614', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3767139', 3767139, '425.864014', '78.873833', '-349.813110', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3767149', 3767149, '418.543213', '65.856056', '-158.386795', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767152', 3767152, '380.575195', '71.228844', '-138.534103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767155', 3767155, '353.131409', '70.227692', '-126.119904', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767158', 3767158, '355.969604', '70.540512', '-125.082298', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767160', 3767160, '354.321594', '69.995934', '-123.739502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767163', 3767163, '385.091888', '70.103569', '-139.968506', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767164', 3767164, '383.413391', '70.520859', '-137.771194', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767165', 3767165, '382.223206', '70.816437', '-140.151596', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767230', 3767230, '338.126892', '68.759033', '-132.386398', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767240', 3767240, '525.678589', '69.218857', '-235.317993', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91168, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767241', 3767241, '529.279724', '69.670998', '-238.980103', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90352, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767242', 3767242, '523.878113', '69.910103', '-240.231400', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90624, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767246', 3767246, '503.511597', '77.082458', '-297.441315', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767247', 3767247, '490.567688', '72.273407', '-273.391388', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767248', 3767248, '499.222992', '76.478897', '-297.574799', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767251', 3767251, '561.724976', '68.563721', '-232.711105', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90896, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767262', 3767262, '609.164307', '70.799339', '-269.442291', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767263', 3767263, '607.699524', '69.742554', '-262.681885', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767264', 3767264, '611.178528', '70.073822', '-266.496613', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767271', 3767271, '583.442871', '78.270691', '-293.369995', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767272', 3767272, '582.626099', '82.811012', '-321.008209', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767273', 3767273, '586.291077', '77.487671', '-291.515594', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767374', 3767374, '436.361908', '73.251167', '-304.983185', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767375', 3767375, '432.991608', '72.276894', '-303.043610', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767376', 3767376, '349.804901', '74.911560', '-321.936798', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767377', 3767377, '435.671997', '72.056473', '-300.979401', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104478, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767388', 3767388, '361.665588', '75.651962', '-325.562408', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767390', 3767390, '363.221985', '75.155243', '-322.388489', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767391', 3767391, '358.186493', '73.581299', '-315.714813', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767393', 3767393, '395.641113', '76.023048', '-328.902496', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767394', 3767394, '397.399597', '76.429916', '-332.825500', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767395', 3767395, '393.430298', '76.446228', '-331.738098', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767396', 3767396, '392.678711', '86.886810', '-395.321106', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767399', 3767399, '470.368805', '87.249977', '-348.957306', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767400', 3767400, '454.939209', '84.293327', '-350.549591', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767401', 3767401, '458.387787', '84.602448', '-346.643188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767402', 3767402, '428.051086', '76.420769', '-330.744385', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767425', 3767425, '422.176910', '67.247093', '-159.579803', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767426', 3767426, '420.543213', '66.332741', '-157.321503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767435', 3767435, '384.954498', '71.312561', '-255.829102', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767436', 3767436, '381.795898', '71.738327', '-257.517487', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767437', 3767437, '387.359314', '69.869453', '-264.137299', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767445', 3767445, '628.911987', '66.716454', '-231.728607', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767446', 3767446, '630.792603', '66.280296', '-209.603195', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767447', 3767447, '629.602417', '66.422333', '-211.983597', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767448', 3767448, '627.954529', '66.392159', '-210.335602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767449', 3767449, '632.471130', '66.334442', '-211.800507', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767450', 3767450, '630.285278', '66.806633', '-233.987000', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767455', 3767455, '662.184509', '66.885223', '-232.532303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767456', 3767456, '663.832520', '66.880669', '-235.767197', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767457', 3767457, '660.994324', '67.126022', '-234.912704', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767458', 3767458, '679.883301', '64.783623', '-225.588394', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767462', 3767462, '683.051575', '64.449142', '-221.445694', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767463', 3767463, '686.133911', '64.440773', '-225.077301', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767464', 3767464, '682.532776', '64.535759', '-223.856598', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767465', 3767465, '680.213379', '64.599297', '-222.178101', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767466', 3767466, '644.667419', '61.202068', '-179.041107', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98228, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767467', 3767467, '646.345825', '61.561089', '-181.268906', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767468', 3767468, '625.297607', '63.148769', '-175.494003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767469', 3767469, '624.534729', '62.919571', '-173.449295', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767472', 3767472, '612.920227', '62.437519', '-154.581299', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97140, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767473', 3767473, '618.413513', '60.995640', '-154.157501', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96868, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767474', 3767474, '611.729980', '62.836342', '-156.961700', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96596, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767475', 3767475, '610.081970', '62.919849', '-155.313705', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96324, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767480', 3767480, '599.736572', '66.081619', '-200.660995', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96052, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767481', 3767481, '603.400085', '66.248016', '-212.652893', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95780, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767482', 3767482, '600.591125', '66.117447', '-203.224594', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767487', 3767487, '582.119629', '63.525211', '-162.909500', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767488', 3767488, '583.554016', '63.640011', '-161.566696', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767504', 3767504, '384.336212', '81.769058', '-374.104706', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767505', 3767505, '386.960785', '82.047218', '-374.979614', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92250, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767508', 3767508, '420.230408', '83.041237', '-377.818695', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91978, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767509', 3767509, '416.202087', '83.456848', '-380.199188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91706, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767510', 3767510, '414.218414', '82.361076', '-374.217590', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91434, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767538', 3767538, '559.649475', '74.212418', '-273.297485', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90080, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767539', 3767539, '565.844971', '73.504051', '-271.077698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89808, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767541', 3767541, '530.575989', '78.841171', '-292.050598', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89536, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767542', 3767542, '536.018616', '73.912933', '-270.240601', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89264, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767543', 3767543, '527.257324', '78.277519', '-291.082397', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88992, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767550', 3767550, '559.405579', '68.352837', '-230.727402', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88720, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767551', 3767551, '504.920990', '71.617661', '-255.737900', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88448, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767552', 3767552, '562.426697', '74.626442', '-275.098114', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88176, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767553', 3767553, '515.106079', '86.958946', '-357.724792', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87886, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767554', 3767554, '555.815430', '86.288918', '-333.674286', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87614, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767555', 3767555, '550.172974', '86.038811', '-337.105713', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87342, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767556', 3767556, '556.703918', '86.005051', '-341.164612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87070, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767558', 3767558, '595.652222', '100.886101', '-481.113007', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86798, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767559', 3767559, '565.758728', '90.501213', '-411.795288', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767560', 3767560, '593.128418', '99.817238', '-476.295013', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767561', 3767561, '597.171326', '86.616676', '-366.082886', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767562', 3767562, '592.898621', '86.573059', '-364.752991', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767565', 3767565, '659.080383', '68.157593', '-282.327087', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767566', 3767566, '655.601379', '67.872910', '-278.542786', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767568', 3767568, '696.297791', '66.817932', '-301.967896', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767583', 3767583, '629.275208', '76.769440', '-316.382690', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84622, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767584', 3767584, '635.718506', '76.129578', '-319.129303', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84350, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767675', 3767675, '637.937683', '75.470261', '-314.178314', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84078, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767694', 3767694, '274.187408', '73.498833', '-235.511505', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767702', 3767702, '282.131287', '73.968918', '-250.520294', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767704', 3767704, '283.459686', '74.239098', '-252.146103', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767705', 3767705, '285.161987', '73.984657', '-268.017487', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767706', 3767706, '277.286194', '74.210907', '-280.408813', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767707', 3767707, '277.586212', '74.130417', '-281.519714', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767709', 3767709, '268.511505', '73.750023', '-310.081207', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767710', 3767710, '290.727997', '75.783447', '-320.191986', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81926, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(222, 'go010', 'bnpc3767711', 3767711, '291.566193', '75.961906', '-321.088593', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767712', 3767712, '240.649994', '74.570793', '-328.847198', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767715', 3767715, '221.796799', '75.280907', '-305.122711', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767716', 3767716, '234.573196', '72.438171', '-271.531403', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767717', 3767717, '235.577301', '72.991150', '-274.815186', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767721', 3767721, '341.847809', '47.013062', '1.602173', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80300, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767722', 3767722, '413.717804', '55.405399', '-18.570250', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80028, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767725', 3767725, '414.877411', '56.473511', '-20.889650', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79756, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767729', 3767729, '340.932404', '58.884521', '-68.986153', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767730', 3767730, '349.904510', '70.939087', '-141.039200', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767735', 3767735, '351.399994', '71.122192', '-139.177597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767772', 3767772, '385.992096', '79.489769', '-359.438690', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767779', 3767779, '406.035400', '88.015427', '-400.377411', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767782', 3767782, '403.608612', '88.645103', '-402.194885', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767814', 3767814, '635.174072', '71.616203', '-284.468597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767845', 3767845, '633.182922', '72.289650', '-286.197998', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767846', 3767846, '635.372375', '67.114166', '-231.371002', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767853', 3767853, '622.306885', '64.499603', '-174.464905', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767854', 3767854, '645.827026', '60.818569', '-177.759293', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767857', 3767857, '725.192871', '64.427238', '-240.193405', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767859', 3767859, '617.085510', '62.126339', '-147.285202', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767860', 3767860, '673.612427', '64.732903', '-189.639206', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767863', 3767863, '676.003723', '64.536713', '-188.308105', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767872', 3767872, '678.086914', '64.518532', '-207.618896', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767901', 3767901, '653.968079', '78.578423', '-360.327515', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767906', 3767906, '656.550293', '77.457336', '-356.077393', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767907', 3767907, '657.869080', '77.894173', '-358.050293', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3767910', 3767910, '590.645020', '90.549652', '-389.681702', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3768115', 3768115, '530.515381', '91.184883', '-383.319305', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3768118', 3768118, '533.323120', '90.657288', '-380.765015', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3768152', 3768152, '508.880707', '96.069290', '-437.340302', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71342, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(222, 'go010', 'bnpc3768153', 3768153, '519.773071', '96.615059', '-445.083588', 752, 0, 0, 0, 0, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71608, 3, 0, 0, 0, 16, 30059, 0, 0, 0), +(222, 'go010', 'bnpc3768154', 3768154, '523.339417', '94.818977', '-429.381287', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72962, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(222, 'go010', 'bnpc3768156', 3768156, '535.457581', '96.545937', '-468.044800', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72690, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(222, 'go010', 'bnpc3768157', 3768157, '520.360107', '95.886787', '-460.180389', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72424, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(222, 'go010', 'bnpc3768158', 3768158, '535.493225', '94.402260', '-439.778015', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70526, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(222, 'go010', 'bnpc3768159', 3768159, '502.875793', '97.415413', '-416.738495', 754, 0, 0, 0, 0, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73234, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(222, 'go010', 'bnpc3768160', 3768160, '521.578979', '94.382271', '-413.852905', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72152, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(222, 'go010', 'bnpc3768161', 3768161, '509.317200', '94.366043', '-398.691711', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71070, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(222, 'go010', 'bnpc3768165', 3768165, '517.667175', '95.947739', '-463.471588', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73506, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(222, 'go010', 'bnpc3768166', 3768166, '501.819092', '97.276329', '-413.591797', 751, 0, 0, 0, 0, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70798, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(222, 'go010', 'bnpc3768167', 3768167, '534.916016', '94.227654', '-435.617798', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71880, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(222, 'go010', 'bnpc3873220', 3873220, '-19.011200', '59.577240', '478.601715', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68768, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873222', 3873222, '-57.635151', '54.398960', '509.264313', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68496, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873223', 3873223, '-72.043533', '60.186852', '494.941803', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68224, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873226', 3873226, '-82.569511', '59.009541', '500.667694', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67952, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873227', 3873227, '-85.215538', '58.176079', '495.797913', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67680, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873232', 3873232, '-26.285730', '45.126209', '554.549622', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67408, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873233', 3873233, '-80.450127', '53.830681', '543.885925', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67136, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873235', 3873235, '-77.768517', '54.979061', '539.636902', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66864, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873237', 3873237, '-49.665508', '40.839931', '590.425781', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66592, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873238', 3873238, '-51.547249', '40.978630', '596.975098', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66320, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873240', 3873240, '-56.989220', '40.385479', '595.949585', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66048, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873243', 3873243, '73.494881', '48.720230', '629.534424', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65776, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873244', 3873244, '83.244293', '50.021931', '641.594727', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65504, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873246', 3873246, '77.347931', '48.172680', '641.229797', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65232, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873247', 3873247, '77.649078', '56.774830', '716.941528', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64960, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873249', 3873249, '79.648613', '56.806110', '720.165710', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64688, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873250', 3873250, '52.669842', '55.384899', '724.728516', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873255', 3873255, '48.538898', '36.148571', '656.885620', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64144, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873256', 3873256, '46.513409', '36.839489', '684.859314', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63872, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873257', 3873257, '41.888302', '35.921108', '686.955078', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63600, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873265', 3873265, '34.495090', '45.667789', '819.153381', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63328, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873271', 3873271, '-18.570280', '43.203621', '763.671082', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63056, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873272', 3873272, '-24.521290', '43.172451', '761.992676', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62784, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873275', 3873275, '37.190269', '46.111851', '822.446777', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62512, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873324', 3873324, '79.270752', '49.720821', '871.732483', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62240, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873328', 3873328, '31.098160', '46.232330', '851.456421', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61968, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873329', 3873329, '-90.470787', '8.590782', '680.567627', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61702, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873330', 3873330, '-224.494995', '-0.300003', '686.536377', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61430, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873331', 3873331, '-215.466797', '-0.252817', '694.899719', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61158, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873332', 3873332, '-120.012199', '3.585823', '702.235413', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60886, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873333', 3873333, '-207.511307', '-0.292601', '666.813293', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60614, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873334', 3873334, '-171.158203', '-0.710317', '738.778076', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60342, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873335', 3873335, '-132.077698', '0.394896', '752.015930', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60070, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873336', 3873336, '-122.561096', '0.570598', '756.478577', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59798, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873337', 3873337, '-78.064957', '2.435715', '762.539001', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59526, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873339', 3873339, '-81.966408', '2.959849', '802.456604', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59254, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873340', 3873340, '-17.237820', '8.762830', '808.010925', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58982, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873343', 3873343, '91.020012', '21.945419', '806.005371', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58710, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873345', 3873345, '127.519600', '23.025820', '809.445313', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58438, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873348', 3873348, '121.338402', '24.555710', '817.927795', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58166, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873353', 3873353, '213.397400', '25.314671', '805.691528', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57894, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873359', 3873359, '80.472221', '24.632441', '756.982178', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57622, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873362', 3873362, '24.652531', '14.575950', '784.440430', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57350, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873363', 3873363, '139.838699', '21.711720', '778.939575', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57078, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(222, 'go010', 'bnpc3873367', 3873367, '251.139801', '6.797970', '788.702271', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873368', 3873368, '253.283096', '6.540766', '787.524292', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873369', 3873369, '254.565994', '6.283995', '780.385681', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873371', 3873371, '246.057800', '9.008336', '801.580994', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873374', 3873374, '248.002304', '6.721136', '783.831970', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873375', 3873375, '248.302399', '6.265314', '767.472473', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873376', 3873376, '246.801407', '6.267453', '768.374390', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873379', 3873379, '-3.098505', '41.687851', '623.973083', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54914, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873381', 3873381, '-0.691058', '42.488289', '627.270020', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873382', 3873382, '-6.383020', '41.661289', '631.828674', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873385', 3873385, '-12.702990', '41.812180', '707.756409', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873386', 3873386, '-10.462590', '41.960880', '705.075378', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873387', 3873387, '-52.108768', '38.325489', '665.766113', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873388', 3873388, '-55.987579', '36.343479', '670.810486', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873389', 3873389, '-59.405991', '38.476730', '658.650818', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53010, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873390', 3873390, '-59.105999', '36.026340', '668.374023', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52738, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873396', 3873396, '-160.952896', '1.569027', '667.861206', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48398, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(222, 'go010', 'bnpc3873398', 3873398, '-161.990494', '1.669328', '666.421692', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48126, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(222, 'go010', 'bnpc3873399', 3873399, '-150.636902', '5.134464', '653.424011', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47854, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(222, 'go010', 'bnpc3873401', 3873401, '-144.836700', '4.701064', '665.153870', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47582, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(222, 'go010', 'bnpc3873402', 3873402, '-149.620605', '3.102985', '669.616089', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47310, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(222, 'go010', 'bnpc3873403', 3873403, '-155.732605', '1.144920', '679.460327', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47038, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(222, 'go010', 'bnpc3873404', 3873404, '-142.607895', '1.054965', '712.663025', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46766, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(222, 'go010', 'bnpc3873405', 3873405, '-148.567505', '0.750069', '714.199524', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46494, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(222, 'go010', 'bnpc3873406', 3873406, '-149.139404', '0.759766', '712.362000', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46222, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(222, 'go010', 'bnpc3873420', 3873420, '-59.783230', '40.755260', '572.130127', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873421', 3873421, '-58.553791', '40.657639', '574.646973', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873422', 3873422, '-25.335461', '55.583641', '513.424194', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873425', 3873425, '142.979706', '22.710770', '829.297302', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51656, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873426', 3873426, '220.695999', '20.348419', '790.027283', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51384, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873427', 3873427, '69.222389', '20.622999', '778.105286', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51112, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873428', 3873428, '70.471992', '21.233120', '776.341980', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50840, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873430', 3873430, '66.086601', '57.020870', '725.806213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50568, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873431', 3873431, '79.195717', '52.007320', '685.675415', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50296, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873432', 3873432, '79.268204', '51.686298', '683.238892', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50024, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873433', 3873433, '-129.812698', '8.744282', '655.901672', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873434', 3873434, '-127.513100', '8.619234', '660.065491', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873435', 3873435, '-70.867996', '3.471146', '805.643616', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873461', 3873461, '18.223940', '44.911652', '832.339600', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc3873463', 3873463, '129.763306', '48.053009', '868.938477', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48664, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc4057136', 4057136, '-29.171040', '70.937523', '112.141998', 784, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23136, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(222, 'go010', 'bnpc4057153', 4057153, '-33.309830', '59.142609', '456.249786', 785, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22870, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(222, 'go010', 'bnpc4057178', 4057178, '-0.370673', '36.202759', '591.413818', 786, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22604, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(222, 'go010', 'bnpc4057204', 4057204, '126.070801', '23.201380', '735.619629', 788, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22338, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(222, 'go010', 'bnpc4510193', 4510193, '600.272400', '61.718521', '-115.521301', 787, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22072, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(222, 'go010', 'bnpc4621602', 4621602, '205.951904', '73.024078', '-291.708496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26712, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc4867727', 4867727, '-103.902603', '2.225230', '731.826416', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26326, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc4867728', 4867728, '-115.780197', '1.850056', '725.665710', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26054, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc4867729', 4867729, '-96.687714', '2.097239', '744.887817', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25782, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc4867730', 4867730, '-98.053673', '1.671072', '759.716797', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25510, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(222, 'go010', 'bnpc4867731', 4867731, '-109.169701', '1.535632', '746.508301', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23746, 8, 0, 0, 0, 0, 0, 4867752, 0, 0), +(222, 'go010', 'bnpc4867733', 4867733, '-113.730499', '0.984999', '755.556274', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24018, 8, 0, 0, 0, 0, 0, 4867753, 0, 0), +(222, 'go010', 'bnpc4867735', 4867735, '-122.788597', '0.819352', '748.165283', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25244, 8, 0, 0, 0, 0, 0, 4867761, 0, 0), +(222, 'go010', 'bnpc4867736', 4867736, '-111.623299', '1.689789', '738.438904', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24972, 8, 0, 0, 0, 0, 0, 4867748, 0, 0), +(222, 'go010', 'bnpc4867737', 4867737, '-123.906197', '0.960864', '734.838501', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23474, 8, 0, 0, 0, 0, 0, 4867754, 0, 0), +(223, 'go011', 'bnpc4291453', 4291453, '155.132599', '222.009995', '348.043488', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41428, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(223, 'go011', 'bnpc4291457', 4291457, '272.663513', '222.247696', '334.248901', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41156, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(223, 'go011', 'bnpc4291464', 4291464, '220.038406', '302.644592', '-149.387497', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(223, 'go011', 'bnpc4291467', 4291467, '177.878494', '301.664612', '-190.712402', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40618, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(223, 'go011', 'bnpc4291540', 4291540, '264.301514', '302.632202', '-284.870697', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40346, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(223, 'go011', 'bnpc4291544', 4291544, '-136.888702', '304.096985', '-285.084290', 1775, 0, 0, 0, 0, 6, 0, 0, 1583, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40080, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(223, 'go011', 'bnpc4291545', 4291545, '-494.600586', '204.213104', '-188.481094', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39796, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(223, 'go011', 'bnpc4291549', 4291549, '-535.141113', '204.035507', '-287.671906', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39524, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(223, 'go011', 'bnpc4296962', 4296962, '6.586450', '224.231003', '359.448090', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4296996', 4296996, '16.820339', '216.422195', '389.762604', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4296997', 4296997, '31.967649', '236.529999', '323.628510', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4296998', 4296998, '72.035683', '242.920105', '316.766113', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4296999', 4296999, '79.061470', '241.243393', '319.846802', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297000', 4297000, '112.809898', '239.429306', '294.575287', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163724, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297001', 4297001, '58.960991', '253.937698', '281.400696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163452, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297003', 4297003, '10.569400', '224.790207', '357.938599', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163180, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297008', 4297008, '354.657288', '224.892807', '300.765289', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297010', 4297010, '417.257904', '226.214996', '374.532593', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297011', 4297011, '421.699005', '227.744202', '370.285492', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297012', 4297012, '330.572113', '223.491394', '369.867493', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297013', 4297013, '429.534393', '217.970001', '417.141296', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161826, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297015', 4297015, '417.746185', '217.952194', '480.668488', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161554, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297016', 4297016, '422.541687', '219.795303', '494.286896', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161282, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297019', 4297019, '411.649689', '220.784195', '484.018890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161010, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297021', 4297021, '181.170303', '242.354599', '223.538406', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160744, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297025', 4297025, '342.033508', '264.985504', '103.754501', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160472, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297026', 4297026, '88.700684', '244.067993', '303.089813', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297027', 4297027, '88.700684', '222.003494', '420.492798', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297028', 4297028, '-25.009581', '205.387497', '480.682007', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297029', 4297029, '398.841614', '224.765701', '381.022705', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297232', 4297232, '-397.424805', '210.788193', '-238.255402', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38242, 8, 0, 0, 4128002, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4297234', 4297234, '-397.352997', '210.788193', '-233.666794', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37970, 8, 0, 0, 4128001, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4297235', 4297235, '-397.251587', '210.788193', '-228.848999', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37698, 8, 0, 0, 4128000, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4297236', 4297236, '-423.044800', '210.788193', '-221.963104', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37426, 8, 0, 0, 4297227, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4297238', 4297238, '-413.101990', '210.788193', '-212.035004', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37154, 8, 0, 0, 4297228, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4297239', 4297239, '-417.529114', '210.788193', '-217.341202', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36882, 8, 0, 0, 4297229, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4297336', 4297336, '168.169693', '276.447601', '-48.600040', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159112, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297337', 4297337, '264.687988', '294.602692', '-93.670403', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158840, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4297346', 4297346, '280.170807', '253.192902', '147.692001', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4297350', 4297350, '334.350311', '248.434402', '184.154297', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4297353', 4297353, '327.623993', '256.382294', '132.340805', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4297354', 4297354, '291.785187', '269.499786', '39.650711', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4297356', 4297356, '192.950302', '271.137512', '3.646851', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4297359', 4297359, '285.844391', '267.842712', '44.338120', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4297363', 4297363, '173.391296', '272.125793', '-12.465330', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4297364', 4297364, '249.355698', '270.133301', '26.395069', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4297365', 4297365, '203.100204', '254.232300', '149.502304', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298567', 4298567, '157.396698', '293.324097', '-98.374939', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298571', 4298571, '159.523300', '293.493011', '-99.299156', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298572', 4298572, '135.779297', '299.755890', '-101.941704', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298573', 4298573, '136.228699', '283.407715', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298574', 4298574, '258.647614', '289.809692', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298575', 4298575, '254.634094', '287.557098', '-64.855118', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298576', 4298576, '268.831512', '284.212891', '-40.760189', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298741', 4298741, '251.759094', '294.415894', '-111.584099', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298744', 4298744, '288.151489', '302.427002', '-86.886337', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153938, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298765', 4298765, '321.597290', '303.200989', '-338.780914', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298767', 4298767, '346.691895', '304.562286', '-319.108887', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298770', 4298770, '357.329712', '304.360687', '-356.956696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298772', 4298772, '407.769012', '305.618500', '-327.457397', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298773', 4298773, '412.865387', '304.484802', '-333.469391', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298780', 4298780, '365.239410', '319.169586', '-254.025299', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298781', 4298781, '388.845612', '321.034485', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298784', 4298784, '476.218811', '327.076996', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298787', 4298787, '494.638214', '304.602112', '-349.542206', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298790', 4298790, '182.909805', '336.140900', '-467.124512', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151236, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298792', 4298792, '150.108704', '345.173309', '-380.467590', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150964, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298794', 4298794, '146.329498', '347.075287', '-385.583313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150692, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298812', 4298812, '253.761307', '343.590393', '-494.726715', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150420, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298813', 4298813, '294.270294', '329.274292', '-477.805786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298814', 4298814, '212.636703', '327.759796', '-433.014313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298815', 4298815, '412.045288', '353.824188', '-499.736786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149604, 1, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(223, 'go011', 'bnpc4298816', 4298816, '394.674591', '355.184204', '-555.809875', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298823', 4298823, '260.181488', '356.282806', '-541.374878', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298824', 4298824, '188.311493', '357.747803', '-557.427429', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298825', 4298825, '285.877686', '359.578705', '-569.421021', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148522, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298835', 4298835, '126.756599', '376.088989', '-671.473328', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148250, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298837', 4298837, '356.375610', '356.320007', '-595.291321', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298842', 4298842, '468.223511', '349.470490', '-668.565430', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147700, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298844', 4298844, '531.422729', '348.817993', '-732.418884', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147428, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298845', 4298845, '539.850708', '348.653900', '-745.830627', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147156, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4298846', 4298846, '96.262070', '375.573090', '-645.236084', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298847', 4298847, '618.677002', '325.703705', '-430.685913', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298848', 4298848, '626.867126', '322.872803', '-394.244293', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298849', 4298849, '673.548279', '293.690308', '-320.820892', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298851', 4298851, '584.470276', '282.391998', '-315.705292', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298852', 4298852, '599.206482', '281.914215', '-300.226898', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298853', 4298853, '564.033630', '282.951599', '-300.851807', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298854', 4298854, '684.587830', '306.511292', '-363.764191', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298855', 4298855, '562.945190', '342.102997', '-474.200287', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298858', 4298858, '463.976410', '249.572906', '-308.802399', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298859', 4298859, '473.929901', '247.699707', '-302.357513', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298860', 4298860, '490.206787', '271.288086', '-298.332397', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298861', 4298861, '397.627808', '248.461594', '-320.859192', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298862', 4298862, '283.789703', '236.298401', '-325.220306', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298863', 4298863, '291.652496', '235.940796', '-331.188995', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143094, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298864', 4298864, '296.253906', '234.759995', '-368.673309', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298866', 4298866, '473.213501', '248.114304', '-259.048889', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298871', 4298871, '614.450012', '323.410309', '-400.318604', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298873', 4298873, '668.683716', '306.076996', '-365.426788', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298882', 4298882, '683.369995', '295.457611', '-324.276794', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298884', 4298884, '681.273376', '295.122589', '-325.174805', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298886', 4298886, '581.921387', '282.296997', '-294.985413', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298888', 4298888, '584.498718', '282.204895', '-290.600891', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298891', 4298891, '598.967285', '282.223602', '-314.123505', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298892', 4298892, '570.297485', '282.771301', '-310.753998', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298900', 4298900, '532.146484', '235.205200', '301.718414', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140114, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4298901', 4298901, '548.790588', '235.278793', '308.827301', 114, 0, 0, 0, 1, 6, 0, 0, 662, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139848, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4298902', 4298902, '539.909912', '235.309296', '290.943695', 115, 0, 0, 0, 0, 6, 0, 0, 661, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139582, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(223, 'go011', 'bnpc4298903', 4298903, '543.114685', '235.512100', '292.484009', 116, 0, 0, 0, 0, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139316, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(223, 'go011', 'bnpc4298911', 4298911, '465.921387', '232.736298', '321.428497', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4298914', 4298914, '485.744812', '233.755707', '315.057404', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4298917', 4298917, '8.385859', '200.822098', '514.171082', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298919', 4298919, '3.468143', '219.127502', '377.671387', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298921', 4298921, '56.439899', '213.878601', '395.393188', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298922', 4298922, '32.688740', '261.800201', '264.078491', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298924', 4298924, '31.549110', '262.086487', '260.424103', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298925', 4298925, '97.214867', '251.860901', '270.377808', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298926', 4298926, '65.567993', '240.283707', '329.732208', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298928', 4298928, '173.567596', '231.665298', '266.478912', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298932', 4298932, '267.711090', '226.465698', '281.598785', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298933', 4298933, '349.538513', '232.623795', '259.540588', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298934', 4298934, '353.841400', '234.302200', '255.420700', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298937', 4298937, '398.091797', '226.637100', '344.024994', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298938', 4298938, '278.828003', '242.816803', '203.601105', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298941', 4298941, '191.013199', '256.839386', '104.428802', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4298943', 4298943, '248.318405', '261.876587', '67.776207', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299053', 4299053, '152.027496', '277.941711', '34.020439', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299054', 4299054, '235.312393', '277.402405', '-48.467419', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299057', 4299057, '191.224899', '284.341797', '-81.645477', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299063', 4299063, '374.380005', '306.477386', '-331.197113', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299079', 4299079, '343.678802', '311.085602', '-403.738495', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299081', 4299081, '278.156586', '313.466095', '-429.770386', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299082', 4299082, '347.909790', '309.989197', '-275.124512', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299084', 4299084, '404.743988', '318.417908', '-277.971985', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299088', 4299088, '457.550507', '305.113708', '-285.144989', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299091', 4299091, '458.811310', '305.676910', '-289.211914', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299093', 4299093, '502.242096', '302.581390', '-245.190903', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299094', 4299094, '502.391815', '308.429413', '-356.438385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299096', 4299096, '502.046387', '342.161713', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299098', 4299098, '424.421387', '339.137909', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299099', 4299099, '429.241394', '341.024200', '-436.179199', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299100', 4299100, '218.158203', '330.586700', '-473.045013', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299102', 4299102, '173.367004', '339.026001', '-390.899200', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299103', 4299103, '119.335899', '353.367310', '-336.673615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299106', 4299106, '166.454803', '348.701294', '-492.608795', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299107', 4299107, '432.587189', '365.876801', '-537.769714', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299110', 4299110, '418.305603', '349.797699', '-685.625427', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299112', 4299112, '485.808594', '353.806305', '-658.057312', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299114', 4299114, '298.678589', '345.167297', '-521.747192', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128442, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299115', 4299115, '198.874802', '362.118011', '-601.265076', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299116', 4299116, '138.675293', '374.013306', '-661.681824', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299117', 4299117, '324.054291', '360.242188', '-582.895081', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299119', 4299119, '283.839905', '362.149506', '-625.782288', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299120', 4299120, '210.687897', '361.424805', '-658.411926', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299121', 4299121, '205.782394', '360.548187', '-666.505615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299188', 4299188, '105.119400', '289.448395', '-164.568604', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120116, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299192', 4299192, '62.638309', '289.814606', '-219.226395', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299194', 4299194, '-1.358093', '310.902496', '-142.015701', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299195', 4299195, '-58.910789', '304.604401', '-272.412598', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299197', 4299197, '-86.450127', '300.163605', '-170.834900', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299198', 4299198, '137.090607', '290.130798', '-258.218414', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299208', 4299208, '-115.231300', '298.469788', '-208.100098', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299210', 4299210, '-205.664902', '281.635010', '-192.517700', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118284, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299213', 4299213, '-107.621902', '300.038086', '-137.041306', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118012, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299215', 4299215, '-158.759003', '292.966492', '-201.171295', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299216', 4299216, '-162.136307', '291.173187', '-194.256607', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299217', 4299217, '-205.676498', '283.894012', '-114.763100', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117196, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299218', 4299218, '-212.088394', '285.828400', '-56.427200', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299219', 4299219, '-290.402100', '261.601898', '-157.738800', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116652, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299227', 4299227, '-318.632690', '255.833298', '-42.884541', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101716, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299230', 4299230, '-340.376007', '259.605804', '-64.511017', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101444, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299231', 4299231, '-317.614502', '256.207092', '-97.947693', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299233', 4299233, '-257.298615', '264.585693', '-65.689346', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299235', 4299235, '-249.965302', '269.336914', '-76.447701', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299236', 4299236, '-353.139587', '237.921494', '-157.603195', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299238', 4299238, '-423.544708', '240.253296', '-111.314598', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299241', 4299241, '-359.502197', '233.804596', '-160.537003', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299242', 4299242, '-578.240723', '227.008408', '-125.078201', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116386, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299244', 4299244, '-499.116089', '237.639496', '-97.965683', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116114, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299247', 4299247, '-655.179871', '229.729202', '-54.205719', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115842, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299249', 4299249, '-483.586609', '226.184692', '-125.489799', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299250', 4299250, '-477.837402', '228.009293', '-122.481400', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299252', 4299252, '-573.938416', '231.500397', '-73.804337', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299254', 4299254, '-600.372192', '209.926697', '-352.855804', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299256', 4299256, '-623.961182', '211.311707', '-374.720001', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299257', 4299257, '-624.778992', '210.859299', '-381.588593', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299258', 4299258, '-586.229492', '201.455200', '-440.921997', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299259', 4299259, '-583.154114', '188.738800', '-477.195404', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299260', 4299260, '-653.461182', '211.102798', '-435.622009', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299422', 4299422, '-650.603027', '204.070007', '-488.214691', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299424', 4299424, '-551.951416', '206.791595', '-350.856995', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112856, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299425', 4299425, '-612.623779', '216.144806', '-319.243988', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299426', 4299426, '-853.938416', '226.438599', '25.457430', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299427', 4299427, '-879.604614', '229.180099', '-15.122490', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299428', 4299428, '-894.004272', '228.026398', '0.443500', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299429', 4299429, '-907.681885', '249.338104', '26.397079', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299430', 4299430, '-907.681885', '247.122192', '-24.585300', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299431', 4299431, '-938.982971', '269.272095', '1.981136', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299433', 4299433, '-951.375916', '276.008698', '-32.272030', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299593', 4299593, '117.442703', '288.131500', '-217.671204', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299595', 4299595, '61.837181', '292.037506', '-153.092804', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299596', 4299596, '58.310040', '291.422913', '-157.591202', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299597', 4299597, '-17.296480', '300.204010', '-215.268906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299598', 4299598, '-102.796997', '298.673889', '-164.088501', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299599', 4299599, '-144.174805', '292.303986', '-187.728806', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299600', 4299600, '-141.522705', '298.377014', '-239.075500', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299602', 4299602, '-187.987900', '287.198914', '-119.562897', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299603', 4299603, '-250.437195', '273.614410', '-139.801193', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299604', 4299604, '-287.381409', '260.165009', '-74.592461', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299605', 4299605, '-249.896500', '264.386505', '-56.690639', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299606', 4299606, '-316.963898', '249.190399', '0.375132', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299607', 4299607, '-353.362305', '249.890305', '-112.803703', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107126, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299608', 4299608, '-317.082214', '255.914795', '-163.691803', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106854, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299610', 4299610, '-540.337280', '216.113495', '-165.331497', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106582, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299612', 4299612, '-494.751099', '227.817902', '-119.577698', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299614', 4299614, '-538.078918', '224.933197', '-115.343002', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299615', 4299615, '-679.120911', '223.608002', '-24.397600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299617', 4299617, '-748.989075', '226.855804', '-70.359383', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105494, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299618', 4299618, '-763.556213', '240.848099', '-149.583405', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105222, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299620', 4299620, '-791.189026', '244.109695', '-171.737000', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104950, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299628', 4299628, '-802.041016', '225.578995', '14.979860', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299805', 4299805, '-869.248901', '228.169098', '24.666691', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299806', 4299806, '-916.034790', '242.289902', '5.756409', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299808', 4299808, '-898.861877', '250.815994', '-36.228569', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299809', 4299809, '-932.563721', '262.462097', '18.376640', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299833', 4299833, '-528.303406', '207.486404', '-361.926514', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299835', 4299835, '-635.674072', '220.452301', '-338.610809', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299836', 4299836, '-582.583984', '206.158493', '-384.262085', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299839', 4299839, '-524.189880', '192.377594', '-420.327301', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299840', 4299840, '-649.544922', '206.868103', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299842', 4299842, '-652.836792', '207.443604', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299844', 4299844, '-459.800110', '286.182892', '196.642899', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99194, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299846', 4299846, '-523.050415', '277.612488', '197.807800', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98922, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299847', 4299847, '-532.402588', '240.741592', '331.532806', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98650, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299850', 4299850, '-475.198303', '237.443207', '403.405304', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299852', 4299852, '-369.299286', '237.950699', '382.602814', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98106, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299853', 4299853, '-350.165009', '237.914505', '384.625702', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97834, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299854', 4299854, '-269.214996', '226.703201', '429.251587', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97562, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299856', 4299856, '-231.006302', '225.146896', '420.889496', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299858', 4299858, '-634.704590', '244.070801', '300.718811', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97018, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299859', 4299859, '-706.643005', '237.401398', '303.170288', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96746, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299861', 4299861, '-766.720093', '254.688202', '421.683014', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96474, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299862', 4299862, '-743.321777', '254.701202', '428.467499', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299872', 4299872, '-358.874786', '272.546112', '253.455994', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299873', 4299873, '-357.118988', '248.051895', '290.108185', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299874', 4299874, '-401.256805', '239.983307', '278.980713', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299876', 4299876, '-288.120392', '293.587006', '256.741089', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299877', 4299877, '-277.870697', '258.656494', '334.187714', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299878', 4299878, '-321.083313', '262.754395', '217.010696', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299879', 4299879, '-440.215912', '244.465805', '319.074097', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94316, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299880', 4299880, '-394.308411', '303.990997', '193.089905', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299881', 4299881, '-460.690186', '270.367493', '260.074188', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4299886', 4299886, '-254.901993', '224.367096', '523.252625', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299887', 4299887, '-247.943405', '224.715195', '514.518921', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93096, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299888', 4299888, '-282.529114', '224.717606', '503.718506', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92824, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299889', 4299889, '-393.453888', '238.452805', '503.715515', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92552, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299909', 4299909, '-485.722290', '243.436295', '460.457214', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92280, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299910', 4299910, '-491.588287', '245.377701', '463.765594', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92008, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299912', 4299912, '-305.548096', '226.398407', '559.785400', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91736, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299914', 4299914, '-212.225906', '229.780594', '563.407715', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91464, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299915', 4299915, '-252.616806', '224.743301', '626.013428', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91192, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299917', 4299917, '-120.126801', '205.896805', '472.541412', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299933', 4299933, '-167.451797', '212.509293', '469.950714', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299935', 4299935, '-192.431595', '215.960907', '481.742401', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299937', 4299937, '-254.539902', '221.577606', '466.534088', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299939', 4299939, '-261.479614', '221.984207', '460.971405', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89970, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299940', 4299940, '-327.888702', '223.177307', '446.066895', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89698, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299942', 4299942, '-452.292694', '231.075394', '433.657410', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299943', 4299943, '-556.198486', '235.399994', '407.330414', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299944', 4299944, '-563.418518', '235.399994', '398.974304', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4299945', 4299945, '-533.244080', '235.399994', '407.132111', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4300046', 4300046, '-699.997925', '253.759995', '507.272186', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88344, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300048', 4300048, '-688.471802', '253.697205', '509.426910', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88072, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300049', 4300049, '-698.510803', '253.838196', '499.010101', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87800, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300050', 4300050, '-705.378479', '253.881699', '505.406494', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87528, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300051', 4300051, '-699.795776', '253.759995', '514.230591', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300052', 4300052, '-688.023315', '253.529099', '507.670410', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300053', 4300053, '-688.742798', '253.351105', '499.477112', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300054', 4300054, '-677.956787', '254.053894', '498.299103', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300056', 4300056, '-493.539612', '282.080109', '191.529907', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300057', 4300057, '-521.202393', '242.145401', '299.671906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300059', 4300059, '-521.172913', '237.402893', '377.595398', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300061', 4300061, '-438.483398', '245.206894', '362.585205', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85286, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(223, 'go011', 'bnpc4300062', 4300062, '-248.297302', '227.611099', '410.760986', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300064', 4300064, '-153.368500', '221.118393', '416.250702', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300066', 4300066, '-98.785767', '213.591293', '426.872589', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300069', 4300069, '-272.282501', '264.869385', '321.059906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300070', 4300070, '-390.265106', '233.670807', '321.964600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83926, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300072', 4300072, '-383.889404', '248.725204', '219.890106', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83654, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300074', 4300074, '-416.929291', '233.443802', '461.940796', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300078', 4300078, '-295.979309', '224.444901', '485.191010', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300080', 4300080, '-346.028900', '236.543396', '518.089478', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300081', 4300081, '-227.039001', '229.327805', '547.600525', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300083', 4300083, '-286.249908', '221.550095', '669.298584', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300084', 4300084, '-282.240204', '222.570007', '672.355286', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300085', 4300085, '-254.344894', '224.215302', '580.497681', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300087', 4300087, '-149.461502', '217.410095', '485.622894', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300089', 4300089, '-604.956787', '244.740799', '337.663788', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300090', 4300090, '-649.166504', '245.258606', '286.166504', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300091', 4300091, '-748.151123', '238.541107', '350.326385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300171', 4300171, '566.598206', '289.624603', '98.502197', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4300176', 4300176, '527.275391', '303.059296', '-162.340805', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79372, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(223, 'go011', 'bnpc4300177', 4300177, '586.301575', '302.701202', '-115.328102', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79100, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(223, 'go011', 'bnpc4300178', 4300178, '654.442383', '298.421295', '-12.551030', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78828, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(223, 'go011', 'bnpc4300179', 4300179, '669.497986', '301.708099', '-29.924919', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78556, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(223, 'go011', 'bnpc4300180', 4300180, '602.427917', '290.487396', '-0.884406', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78284, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(223, 'go011', 'bnpc4300181', 4300181, '664.371399', '287.443909', '73.074158', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78012, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(223, 'go011', 'bnpc4300182', 4300182, '601.759216', '287.400208', '127.919098', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77740, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(223, 'go011', 'bnpc4300183', 4300183, '565.585571', '287.455109', '154.665298', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77468, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(223, 'go011', 'bnpc4300184', 4300184, '558.831116', '300.043915', '59.949520', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77196, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(223, 'go011', 'bnpc4300191', 4300191, '511.356689', '303.173004', '-206.740097', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76930, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(223, 'go011', 'bnpc4300194', 4300194, '494.438110', '303.700287', '-197.619598', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76646, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300196', 4300196, '508.591888', '303.338898', '-205.656296', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76392, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(223, 'go011', 'bnpc4300198', 4300198, '523.491211', '302.387909', '-191.363495', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76120, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300200', 4300200, '559.439514', '303.965698', '-151.707001', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75836, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300201', 4300201, '555.992920', '301.960693', '-163.683502', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75570, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300203', 4300203, '593.473511', '302.708496', '-99.112923', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75304, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300204', 4300204, '642.703979', '303.166687', '-43.589840', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300205', 4300205, '650.994812', '303.095612', '-38.070992', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74742, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300206', 4300206, '625.239319', '302.690613', '-97.402184', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74476, 1, 0, 0, 0, 45, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300209', 4300209, '635.367188', '303.307190', '-92.580772', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74198, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(223, 'go011', 'bnpc4300210', 4300210, '636.402405', '303.397003', '-95.636833', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73938, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(223, 'go011', 'bnpc4300212', 4300212, '640.141296', '289.793488', '15.564350', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73654, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300213', 4300213, '632.201416', '287.460602', '83.472313', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73394, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300214', 4300214, '694.667114', '302.802002', '-25.909540', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73116, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300215', 4300215, '668.584900', '286.359985', '53.434738', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72856, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300219', 4300219, '653.565674', '286.929688', '35.585339', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72566, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(223, 'go011', 'bnpc4300220', 4300220, '654.409180', '286.791412', '37.999821', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72312, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(223, 'go011', 'bnpc4300221', 4300221, '655.671082', '286.824310', '34.141949', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72034, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(223, 'go011', 'bnpc4300222', 4300222, '657.228088', '286.375885', '36.471931', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71756, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(223, 'go011', 'bnpc4300226', 4300226, '639.859619', '286.099091', '135.124603', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71478, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(223, 'go011', 'bnpc4300227', 4300227, '642.707703', '286.175110', '132.877899', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71212, 1, 0, 0, 0, 0, 30120, 0, 0, 0), +(223, 'go011', 'bnpc4300229', 4300229, '708.942505', '286.232513', '46.920448', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70946, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300230', 4300230, '711.298828', '285.307404', '75.698997', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70680, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300232', 4300232, '613.615784', '284.572296', '166.852005', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70408, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300233', 4300233, '590.029480', '285.689209', '176.024506', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70130, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300234', 4300234, '646.990784', '285.135101', '149.341507', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69852, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300236', 4300236, '586.167297', '288.737610', '-28.609209', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4300238', 4300238, '582.383789', '289.517700', '-46.738300', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4300239', 4300239, '559.963928', '292.885193', '-35.993568', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65790, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4300241', 4300241, '576.693481', '289.831787', '-46.195572', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4300242', 4300242, '498.254486', '308.702209', '-165.574203', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4300244', 4300244, '507.927002', '303.303497', '-229.236298', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4300246', 4300246, '630.399292', '300.341187', '-66.790810', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65518, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4300250', 4300250, '684.486816', '291.013214', '7.434129', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4300253', 4300253, '639.507080', '287.656799', '38.046551', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66062, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4300254', 4300254, '630.756226', '286.750000', '109.616798', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4300256', 4300256, '570.830383', '286.569214', '120.215103', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4300257', 4300257, '555.228516', '297.855499', '84.213348', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4300284', 4300284, '605.249023', '330.830811', '-303.486786', 114, 0, 0, 0, 0, 6, 0, 0, 662, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68668, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(223, 'go011', 'bnpc4300286', 4300286, '527.855225', '308.308502', '-299.702515', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69478, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300287', 4300287, '575.036316', '320.881805', '-289.906189', 115, 0, 0, 0, 1, 6, 0, 0, 661, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69218, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4300288', 4300288, '577.508118', '322.468903', '-294.789093', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68952, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(223, 'go011', 'bnpc4325155', 4325155, '215.504501', '360.039307', '-581.431030', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4406869', 4406869, '311.001099', '307.036499', '-422.752106', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126194, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406870', 4406870, '323.323395', '303.822296', '-391.989014', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125922, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406871', 4406871, '317.110413', '305.692505', '-418.385315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125650, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406872', 4406872, '351.343506', '312.029114', '-396.169098', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125378, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406873', 4406873, '350.968994', '315.450592', '-416.192993', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125106, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406874', 4406874, '48.752670', '311.224213', '-250.581207', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124834, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406875', 4406875, '44.907230', '311.238312', '-245.044693', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124562, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406876', 4406876, '66.984810', '300.472412', '-252.706802', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124290, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406877', 4406877, '-17.150419', '311.581512', '-255.273895', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124018, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406878', 4406878, '7.231910', '312.528687', '-245.321793', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123746, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406879', 4406879, '-6.278003', '305.376709', '-233.466095', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123474, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406880', 4406880, '-10.073550', '305.779694', '-236.697601', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123202, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406884', 4406884, '357.847992', '311.662201', '-388.165497', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122930, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406885', 4406885, '363.148010', '313.250488', '-391.308411', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122658, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406886', 4406886, '331.929413', '319.783203', '-430.502808', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122386, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406888', 4406888, '113.582199', '354.933685', '-335.568512', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406890', 4406890, '121.680801', '354.167114', '-326.125214', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406891', 4406891, '110.022797', '357.553314', '-311.841187', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406892', 4406892, '111.824799', '358.195190', '-382.551514', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406893', 4406893, '115.392303', '357.688690', '-387.074890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4406894', 4406894, '93.907928', '362.855194', '-349.329315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4600355', 4600355, '547.412170', '348.384613', '-748.106018', 1699, 0, 0, 0, 8, 6, 0, 0, 2162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4614331', 4614331, '530.815125', '348.686096', '-743.006226', 1700, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43556, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4614332', 4614332, '535.935608', '348.616394', '-737.220215', 2222, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43290, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4621624', 4621624, '-332.429199', '307.678406', '234.107803', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44948, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(223, 'go011', 'bnpc4890695', 4890695, '-188.798996', '226.035995', '400.288086', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(223, 'go011', 'bnpc4890696', 4890696, '-132.585098', '216.182098', '435.066193', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(224, 'w1d5', 'bnpc4301783', 4301783, '149.594604', '187.039200', '-4.479455', 1968, 0, 0, 0, 0, 6, 0, 0, 1486, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34650, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4301923', 4301923, '221.535904', '155.596207', '25.140970', 1955, 0, 0, 0, 0, 6, 0, 0, 2127, 0, '0.000000', 50, 2, 120, 1, 0, 8, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 104406, 1, 3, 2000, 0, 0, 30323, 0, 0, 0), +(224, 'w1d5', 'bnpc4301925', 4301925, '236.962296', '155.500000', '5.642570', 1951, 0, 0, 0, 0, 6, 0, 0, 2123, 0, '0.000000', 50, 2, 120, 1, 0, 9, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 109266, 1, 3, 2000, 0, 0, 30331, 0, 0, 0), +(224, 'w1d5', 'bnpc4301926', 4301926, '222.298203', '155.500000', '23.745911', 1954, 0, 0, 0, 9, 6, 0, 0, 2126, 0, '0.000000', 50, 2, 120, 1, 0, 8, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 106836, 1, 3, 2000, 0, 0, 30331, 4334573, 0, 0), +(224, 'w1d5', 'bnpc4301927', 4301927, '234.212097', '156.000000', '5.032503', 2251, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 2, 120, 1, 0, 9, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 108728, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4301928', 4301928, '230.386703', '155.815094', '12.074980', 1954, 0, 0, 0, 0, 6, 0, 0, 2126, 0, '0.000000', 50, 2, 120, 1, 0, 9, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 107108, 1, 3, 2000, 0, 0, 30323, 0, 0, 0), +(224, 'w1d5', 'bnpc4301950', 4301950, '215.480301', '154.131302', '-70.202370', 434, 0, 0, 0, 4, 6, 0, 0, 510, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35512, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4303042', 4303042, '193.234604', '70.890808', '-76.261009', 2251, 0, 0, 0, 5, 6, 0, 0, 2092, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 101756, 1, 3, 2000, 0, 0, 0, 4325146, 0, 0), +(224, 'w1d5', 'bnpc4303059', 4303059, '269.385986', '67.003952', '-51.442150', 1952, 0, 0, 0, 0, 6, 0, 0, 2124, 0, '0.000000', 50, 2, 120, 1, 0, 19, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 100988, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4303061', 4303061, '269.599915', '67.003952', '-52.883511', 1954, 0, 0, 0, 0, 6, 0, 0, 2126, 0, '0.000000', 50, 2, 120, 1, 0, 19, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 100680, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4303062', 4303062, '270.998505', '67.003952', '-50.509480', 1955, 0, 0, 0, 0, 6, 0, 0, 2127, 0, '0.000000', 50, 2, 120, 1, 0, 19, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 103690, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4303063', 4303063, '269.621796', '66.361450', '-61.925018', 1951, 0, 0, 0, 1, 6, 0, 0, 2123, 0, '0.000000', 50, 2, 120, 1, 0, 20, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 101206, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4303067', 4303067, '267.545288', '66.361450', '-64.352768', 1966, 0, 0, 0, 0, 6, 0, 0, 2089, 0, '0.000000', 50, 2, 120, 1, 0, 20, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 101526, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4303120', 4303120, '149.436096', '154.149002', '-61.378880', 434, 0, 0, 0, 0, 6, 0, 0, 510, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35240, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4303132', 4303132, '235.167892', '71.999992', '-5.435642', 1967, 0, 0, 0, 0, 6, 0, 0, 2130, 0, '0.000000', 50, 2, 120, 1, 0, 21, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 103424, 1, 3, 2000, 0, 0, 30331, 0, 0, 0), +(224, 'w1d5', 'bnpc4303136', 4303136, '237.634506', '71.488533', '-4.405932', 1953, 0, 0, 0, 0, 6, 0, 0, 2125, 0, '0.000000', 50, 2, 120, 1, 0, 21, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 103104, 1, 3, 2000, 0, 0, 30332, 0, 0, 0), +(224, 'w1d5', 'bnpc4303137', 4303137, '237.506607', '71.976807', '-6.790344', 1957, 0, 0, 0, 0, 6, 0, 0, 2129, 0, '0.000000', 50, 2, 120, 1, 0, 21, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 100420, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4304853', 4304853, '192.034805', '75.974609', '-0.076355', 1972, 0, 0, 0, 0, 6, 0, 0, 2134, 0, '0.000000', 50, 0, 120, 1, 0, 45, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53984, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4304969', 4304969, '143.877197', '45.975342', '-53.696529', 1967, 0, 0, 0, 0, 6, 0, 0, 2130, 0, '0.000000', 50, 0, 120, 1, 0, 25, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 96520, 1, 3, 50, 0, 0, 30331, 0, 0, 0), +(224, 'w1d5', 'bnpc4304974', 4304974, '143.907806', '45.944950', '-52.475830', 1957, 0, 0, 0, 0, 6, 0, 0, 2129, 0, '0.000000', 50, 0, 120, 1, 0, 25, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 96236, 1, 3, 2000, 0, 0, 30332, 0, 0, 0), +(224, 'w1d5', 'bnpc4304975', 4304975, '148.038193', '45.975342', '-52.721230', 2253, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 25, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 94314, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4305186', 4305186, '266.674988', '66.383034', '-62.530300', 434, 0, 0, 0, 0, 6, 0, 0, 510, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30524, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4305196', 4305196, '99.725250', '67.003952', '0.022499', 434, 0, 0, 0, 0, 6, 0, 0, 510, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30252, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4305200', 4305200, '154.400497', '67.003937', '86.513809', 434, 0, 0, 0, 0, 6, 0, 0, 510, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29980, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4305204', 4305204, '207.343201', '41.111000', '-0.033741', 1969, 0, 0, 0, 3, 6, 0, 0, 2131, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25180, 1, 0, 1, 4119481, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4305246', 4305246, '83.482063', '-107.408302', '-47.715031', 1971, 0, 0, 0, 0, 6, 0, 0, 2133, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 93944, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4305285', 4305285, '36.048161', '-107.400002', '-72.727814', 1971, 0, 0, 0, 0, 6, 0, 0, 2133, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 93672, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4305328', 4305328, '-36.599522', '-103.410400', '1.281346', 1971, 0, 0, 0, 1, 6, 0, 0, 2133, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 93400, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4305330', 4305330, '-36.081821', '-103.400002', '-1.023186', 1971, 0, 0, 0, 1, 6, 0, 0, 2133, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 93128, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4305338', 4305338, '-69.181778', '-102.842400', '-0.015382', 1970, 0, 0, 0, 3, 6, 0, 0, 2132, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20494, 1, 0, 0, 4189149, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4305469', 4305469, '-168.627502', '-104.448097', '-0.198364', 1437, 0, 0, 0, 0, 6, 0, 0, 2135, 0, '0.000000', 50, 2, 120, 1, 0, 46, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44414, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4305650', 4305650, '-569.532471', '-268.000000', '220.067902', 1441, 0, 0, 0, 0, 6, 0, 0, 2136, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52250, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4305689', 4305689, '-781.031616', '-399.931610', '-599.739990', 1974, 0, 0, 0, 0, 6, 0, 0, 2137, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 87830, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4305719', 4305719, '-719.309204', '-185.534500', '478.721313', 1975, 0, 0, 0, 0, 6, 0, 0, 2137, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 72920, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4305720', 4305720, '-703.970520', '-185.654999', '479.980286', 1976, 0, 0, 0, 0, 6, 0, 0, 2143, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 72654, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4305727', 4305727, '-703.997314', '-185.204605', '461.343811', 434, 0, 0, 0, 0, 6, 0, 0, 510, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 74412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4305728', 4305728, '-722.865601', '-185.731598', '479.696014', 434, 0, 0, 0, 0, 6, 0, 0, 510, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 74140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4305730', 4305730, '-703.996277', '-185.302505', '498.473297', 434, 0, 0, 0, 0, 6, 0, 0, 510, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 73868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4308529', 4308529, '214.943604', '66.382843', '95.103996', 434, 0, 0, 0, 0, 6, 0, 0, 510, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29708, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4311172', 4311172, '-776.930298', '-399.931610', '-606.273987', 2036, 0, 0, 0, 0, 6, 0, 0, 2138, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 86098, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4311176', 4311176, '-771.906372', '-400.149994', '-618.300171', 2038, 0, 0, 0, 0, 6, 0, 0, 2139, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 86896, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4311177', 4311177, '-790.772095', '-400.131592', '-600.571228', 2039, 0, 0, 0, 0, 6, 0, 0, 2140, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 86630, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4311178', 4311178, '-772.436279', '-400.150787', '-581.839417', 2040, 0, 0, 0, 0, 6, 0, 0, 2141, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 86364, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4311184', 4311184, '-714.199524', '-185.531601', '472.930511', 2037, 0, 0, 0, 0, 6, 0, 0, 2142, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 73602, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4311512', 4311512, '-712.898010', '-185.531601', '485.942413', 2036, 0, 0, 0, 0, 6, 0, 0, 2138, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 73294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4312515', 4312515, '-572.021179', '-268.000000', '219.393204', 2032, 0, 0, 0, 0, 6, 0, 0, 2136, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 51984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4323533', 4323533, '193.803497', '45.975342', '-42.184139', 2252, 0, 0, 0, 5, 6, 0, 0, 297, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 95994, 1, 3, 2000, 0, 0, 0, 4323538, 0, 0), +(224, 'w1d5', 'bnpc4323708', 4323708, '-780.554993', '-399.931610', '-608.390015', 2233, 0, 0, 0, 0, 6, 0, 0, 2140, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 76518, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4323731', 4323731, '-777.876709', '-399.931610', '-592.591614', 410, 0, 0, 0, 0, 6, 0, 0, 2137, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 79280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4323950', 4323950, '-781.622375', '-399.931610', '-612.801086', 2232, 0, 0, 0, 0, 6, 0, 0, 2140, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 76252, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4325116', 4325116, '198.715500', '186.500000', '-12.123560', 1951, 0, 0, 0, 0, 6, 0, 0, 2123, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 107906, 1, 3, 2000, 0, 0, 30331, 0, 0, 0), +(224, 'w1d5', 'bnpc4325119', 4325119, '204.590103', '186.177704', '-15.991930', 1953, 0, 0, 0, 0, 6, 0, 0, 2125, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 109532, 1, 3, 2000, 0, 0, 30337, 0, 0, 0), +(224, 'w1d5', 'bnpc4325120', 4325120, '199.981995', '186.219696', '-18.555470', 1954, 0, 0, 0, 0, 6, 0, 0, 2126, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 107652, 1, 3, 2000, 0, 0, 30332, 0, 0, 0), +(224, 'w1d5', 'bnpc4325136', 4325136, '196.304001', '120.000000', '-60.021450', 1955, 0, 0, 0, 0, 6, 0, 0, 2127, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 104134, 1, 3, 2000, 0, 0, 30333, 0, 0, 0), +(224, 'w1d5', 'bnpc4325137', 4325137, '189.781906', '120.000000', '-62.748810', 2251, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 109000, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4325138', 4325138, '186.991104', '120.000000', '-60.489658', 1954, 0, 0, 0, 0, 6, 0, 0, 2126, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 104660, 1, 3, 2000, 0, 0, 30332, 0, 0, 0), +(224, 'w1d5', 'bnpc4325336', 4325336, '-782.261414', '-399.931610', '-589.945374', 2234, 0, 0, 0, 1, 6, 0, 0, 2183, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 75986, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4326208', 4326208, '-169.792404', '-104.221901', '3.180098', 1973, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 46, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44148, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4326287', 4326287, '81.633591', '-108.000000', '-39.412441', 2253, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 30, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 91986, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4326288', 4326288, '51.879669', '-107.988197', '-76.178917', 2252, 0, 0, 0, 0, 6, 0, 0, 297, 0, '0.000000', 50, 0, 120, 1, 0, 35, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 92306, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4326290', 4326290, '4.864758', '-106.029999', '-26.696051', 1966, 0, 0, 0, 0, 6, 0, 0, 2089, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 90390, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4326293', 4326293, '54.794991', '-107.988197', '-70.603867', 2253, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 34, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 92530, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4326294', 4326294, '55.368198', '-107.988197', '-79.189568', 2253, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 34, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 92802, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4326296', 4326296, '18.517410', '-106.029999', '-26.434719', 1966, 0, 0, 0, 0, 6, 0, 0, 2089, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 90662, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4329244', 4329244, '101.121498', '67.002319', '-11.795230', 2251, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 0, 120, 1, 0, 17, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 102844, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4329245', 4329245, '93.614014', '66.361450', '-12.375120', 2251, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 0, 120, 1, 0, 17, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 102572, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4329247', 4329247, '91.660889', '66.361450', '-11.947810', 1952, 0, 0, 0, 0, 6, 0, 0, 2124, 0, '0.000000', 50, 0, 120, 1, 0, 17, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 99628, 1, 3, 150, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4329251', 4329251, '225.960007', '67.003937', '86.756622', 1966, 0, 0, 0, 0, 6, 0, 0, 2089, 0, '0.000000', 50, 0, 120, 1, 0, 16, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 102342, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4329252', 4329252, '239.886993', '66.361450', '90.653809', 1966, 0, 0, 0, 0, 6, 0, 0, 2089, 0, '0.000000', 50, 0, 120, 1, 0, 16, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 102070, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4329501', 4329501, '-562.246704', '-268.000000', '213.464905', 410, 0, 0, 0, 1, 6, 0, 0, 2136, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40716, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4329522', 4329522, '180.498795', '76.089233', '-0.419468', 1972, 0, 0, 0, 0, 6, 0, 0, 2134, 0, '0.000000', 50, 0, 120, 1, 0, 45, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40492, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4331547', 4331547, '223.949097', '45.999939', '15.407630', 1955, 0, 0, 0, 5, 6, 0, 0, 2127, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 94610, 1, 3, 2000, 0, 0, 0, 4326273, 0, 0), +(224, 'w1d5', 'bnpc4331588', 4331588, '-718.236328', '-185.731598', '479.262299', 434, 0, 0, 0, 0, 6, 0, 0, 2143, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67228, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4333007', 4333007, '225.635101', '185.992203', '-15.121770', 1954, 0, 0, 0, 5, 6, 0, 0, 2126, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 107380, 1, 3, 2000, 0, 0, 0, 4333006, 0, 0), +(224, 'w1d5', 'bnpc4333068', 4333068, '157.897095', '153.884293', '-65.291397', 2253, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 108462, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4333070', 4333070, '164.585602', '155.770905', '-59.471901', 1951, 0, 0, 0, 0, 6, 0, 0, 2123, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 106002, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4333071', 4333071, '162.218597', '153.276901', '-69.565979', 1953, 0, 0, 0, 0, 6, 0, 0, 2125, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 105724, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4333075', 4333075, '229.388794', '154.100800', '-62.729858', 2253, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 108190, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4334406', 4334406, '-716.550110', '-185.531601', '477.699097', 434, 0, 0, 0, 0, 6, 0, 0, 2137, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 63960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4335326', 4335326, '-703.970520', '-185.654999', '479.980286', 2234, 0, 0, 0, 1, 6, 0, 0, 2183, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 63602, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373878', 4373878, '227.727493', '155.774902', '-54.870541', 1956, 0, 0, 0, 0, 6, 0, 0, 2128, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 106570, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373879', 4373879, '233.705399', '153.826202', '-61.168442', 1956, 0, 0, 0, 0, 6, 0, 0, 2128, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 106298, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373880', 4373880, '159.319397', '155.129700', '-59.973400', 1957, 0, 0, 0, 0, 6, 0, 0, 2129, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 105488, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373882', 4373882, '255.179794', '155.064407', '-27.091520', 1954, 0, 0, 0, 5, 6, 0, 0, 2126, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 105204, 1, 3, 2000, 0, 0, 0, 4373881, 0, 0), +(224, 'w1d5', 'bnpc4373883', 4373883, '190.178604', '120.000000', '-58.537319', 2251, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 104920, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373886', 4373886, '240.319000', '71.976807', '-4.574103', 1953, 0, 0, 0, 0, 6, 0, 0, 2125, 0, '0.000000', 50, 2, 120, 1, 0, 22, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 100112, 1, 3, 2000, 0, 0, 30333, 0, 0, 0), +(224, 'w1d5', 'bnpc4373887', 4373887, '233.491104', '72.000000', '6.896567', 1955, 0, 0, 0, 0, 6, 0, 0, 2127, 0, '0.000000', 50, 2, 120, 1, 0, 22, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 96890, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373888', 4373888, '236.143097', '71.976807', '-0.041304', 2253, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 2, 120, 1, 0, 22, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 99858, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373890', 4373890, '179.556396', '45.999939', '26.913670', 1952, 0, 0, 0, 5, 6, 0, 0, 2124, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 95716, 1, 3, 20, 0, 0, 0, 4373889, 0, 0), +(224, 'w1d5', 'bnpc4373891', 4373891, '153.981705', '45.998940', '-44.740681', 1966, 0, 0, 0, 0, 6, 0, 0, 2089, 0, '0.000000', 50, 0, 120, 1, 0, 26, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 95438, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373892', 4373892, '159.328796', '46.000000', '-58.130508', 1953, 0, 0, 0, 0, 6, 0, 0, 2125, 0, '0.000000', 50, 0, 120, 1, 0, 26, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 95112, 1, 3, 50, 0, 0, 30073, 0, 0, 0), +(224, 'w1d5', 'bnpc4373893', 4373893, '159.715805', '46.000000', '-56.775921', 1952, 0, 0, 0, 0, 6, 0, 0, 2124, 0, '0.000000', 50, 0, 120, 1, 0, 26, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 94900, 1, 3, 50, 0, 0, 30332, 0, 0, 0), +(224, 'w1d5', 'bnpc4373895', 4373895, '95.333267', '66.383270', '-6.397083', 1952, 0, 0, 0, 0, 6, 0, 0, 2124, 0, '0.000000', 50, 0, 120, 1, 0, 17, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 99356, 1, 3, 150, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373896', 4373896, '94.548332', '66.382942', '5.668620', 1966, 0, 0, 0, 0, 6, 0, 0, 2089, 0, '0.000000', 50, 0, 120, 1, 0, 18, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 99078, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373899', 4373899, '90.745361', '66.381287', '1.968323', 1953, 0, 0, 0, 0, 6, 0, 0, 2125, 0, '0.000000', 50, 0, 120, 1, 0, 18, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 98752, 1, 3, 150, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373900', 4373900, '98.839462', '67.003937', '2.321835', 1953, 0, 0, 0, 0, 6, 0, 0, 2125, 0, '0.000000', 50, 0, 120, 1, 0, 18, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 98480, 1, 3, 150, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373901', 4373901, '105.781898', '67.003952', '32.023251', 2251, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 0, 120, 1, 0, 23, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 98220, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373902', 4373902, '98.563217', '66.382050', '34.486679', 2251, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 0, 120, 1, 0, 23, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 97948, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373903', 4373903, '93.644531', '66.579041', '29.648319', 2251, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 0, 120, 1, 0, 23, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 97676, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373904', 4373904, '207.293701', '66.361450', '100.175400', 2251, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 0, 120, 1, 0, 15, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 97404, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373905', 4373905, '208.351395', '67.003937', '90.155197', 2251, 0, 0, 0, 0, 6, 0, 0, 2092, 0, '0.000000', 50, 0, 120, 1, 0, 15, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 97132, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373908', 4373908, '86.233932', '-107.994202', '-39.396591', 2253, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 30, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 91714, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373909', 4373909, '52.431000', '-107.987396', '-68.118469', 2252, 0, 0, 0, 0, 6, 0, 0, 297, 0, '0.000000', 50, 0, 120, 1, 0, 35, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 91490, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373910', 4373910, '54.600090', '-107.988197', '-66.260567', 2253, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 34, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 91170, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373911', 4373911, '54.746101', '-107.981003', '-75.051682', 2253, 0, 0, 0, 0, 6, 0, 0, 2121, 0, '0.000000', 50, 0, 120, 1, 0, 34, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 90898, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373912', 4373912, '11.854660', '-106.029999', '-24.789351', 1966, 0, 0, 0, 0, 6, 0, 0, 2089, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 90118, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373913', 4373913, '15.331230', '-104.000000', '-13.823400', 1966, 0, 0, 0, 0, 6, 0, 0, 2089, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 89846, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373914', 4373914, '7.509180', '-103.800003', '-14.866620', 1966, 0, 0, 0, 0, 6, 0, 0, 2089, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 89574, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373915', 4373915, '11.031520', '-103.996696', '-10.225560', 2252, 0, 0, 0, 0, 6, 0, 0, 297, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 89314, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373916', 4373916, '18.016670', '-103.974403', '-0.417293', 2252, 0, 0, 0, 0, 6, 0, 0, 297, 0, '0.000000', 50, 0, 120, 1, 0, 33, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 89042, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373917', 4373917, '11.099470', '-103.815598', '-0.485309', 2252, 0, 0, 0, 0, 6, 0, 0, 297, 0, '0.000000', 50, 0, 120, 1, 0, 33, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 88770, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(224, 'w1d5', 'bnpc4373918', 4373918, '4.037630', '-104.000000', '-0.468032', 2252, 0, 0, 0, 0, 6, 0, 0, 297, 0, '0.000000', 50, 0, 120, 1, 0, 33, 0, 99, 6, 0, 1, 0, 1, 0, '0.000000', '1.000000', 88498, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1132780', 1132780, '42.705971', '6.489012', '-222.119598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231446, 7, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(225, 'e0002', 'bnpc1132784', 1132784, '43.994171', '7.081282', '-226.261307', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132785', 1132785, '46.368141', '6.532326', '-222.363800', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230902, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132786', 1132786, '50.249649', '8.663927', '-237.583603', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132810', 1132810, '119.142403', '17.274370', '-264.585907', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132815', 1132815, '53.141479', '4.367238', '-208.718597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132818', 1132818, '57.950279', '4.701855', '-181.906006', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132819', 1132819, '53.380199', '3.647015', '-170.941803', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132823', 1132823, '85.892982', '4.386182', '-186.633102', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132827', 1132827, '136.440002', '-0.215091', '-142.126297', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132829', 1132829, '139.586502', '1.436886', '-162.906296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132833', 1132833, '144.692596', '1.594073', '-161.313507', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132834', 1132834, '169.345306', '-0.575563', '-143.321701', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132835', 1132835, '132.885803', '4.471908', '-182.040894', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132836', 1132836, '127.652000', '2.679112', '-179.060898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132837', 1132837, '133.402802', '5.498395', '-185.220093', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132842', 1132842, '104.130501', '4.751109', '-199.651596', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132988', 1132988, '145.939301', '0.761501', '-119.501801', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132990', 1132990, '165.896698', '-0.582151', '-142.284103', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132991', 1132991, '196.646301', '-2.798964', '-155.795898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132992', 1132992, '159.011398', '0.196450', '-113.407997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226012, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1132993', 1132993, '162.856598', '-0.357008', '-115.116997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225740, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133000', 1133000, '202.288803', '-2.206049', '-168.963196', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225468, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133001', 1133001, '223.772705', '-6.852091', '-140.217407', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225196, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133002', 1133002, '206.683395', '-2.759299', '-171.221497', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224924, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133005', 1133005, '231.146698', '-5.044106', '-178.307693', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224652, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133007', 1133007, '242.902496', '-0.494766', '-191.458496', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224380, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133008', 1133008, '239.977493', '-0.588080', '-191.828400', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224108, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133010', 1133010, '221.392303', '-6.460419', '-138.050598', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223836, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133022', 1133022, '332.788513', '-3.345333', '-151.251495', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201534, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133023', 1133023, '298.603699', '-6.332541', '-125.749603', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133029', 1133029, '302.693298', '-3.341390', '-184.143005', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133031', 1133031, '328.386993', '-0.505648', '-187.936401', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133032', 1133032, '342.892487', '-1.328422', '-175.218201', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133035', 1133035, '358.327515', '-2.255364', '-175.310898', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133036', 1133036, '335.507294', '0.561625', '-194.418793', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133042', 1133042, '439.946808', '10.149250', '-108.177101', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169468, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133044', 1133044, '458.584900', '14.997390', '-90.379593', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169740, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133047', 1133047, '463.401215', '25.778530', '-35.324680', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168380, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133049', 1133049, '445.243591', '31.812080', '-9.685579', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168652, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133052', 1133052, '486.745514', '31.609249', '-44.177990', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168924, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133053', 1133053, '487.618011', '31.024900', '-55.958771', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170012, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133054', 1133054, '483.304291', '30.900890', '-51.161331', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172188, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133056', 1133056, '482.511993', '23.910801', '-88.545013', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173276, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133057', 1133057, '480.679291', '24.104330', '-120.189201', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169196, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133063', 1133063, '504.435913', '29.146271', '-83.562149', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173004, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133064', 1133064, '482.169495', '24.010910', '-92.475502', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172732, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133065', 1133065, '459.642914', '24.454941', '-39.719559', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172460, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133066', 1133066, '453.938690', '26.000799', '-33.810230', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170828, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133070', 1133070, '351.512787', '3.052480', '46.861389', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133071', 1133071, '341.298492', '3.983801', '67.704231', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133072', 1133072, '348.626495', '0.976962', '28.015940', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133073', 1133073, '342.183502', '0.098491', '27.298340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133077', 1133077, '309.071411', '-2.609340', '63.065491', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133080', 1133080, '281.574707', '-7.184652', '26.169170', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133098', 1133098, '289.254913', '-5.168305', '48.585239', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133100', 1133100, '291.498688', '-5.368438', '47.821369', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133126', 1133126, '-82.030632', '1.519239', '-141.488693', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148770, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133128', 1133128, '-77.317497', '1.083344', '-136.644608', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148498, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133130', 1133130, '-63.375290', '0.643326', '-166.887497', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148226, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133131', 1133131, '-64.313164', '0.965167', '-162.181503', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147954, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133132', 1133132, '-75.591331', '1.176651', '-142.404297', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147682, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133138', 1133138, '-33.189919', '-4.914308', '-94.149628', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147410, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133148', 1133148, '86.244072', '-19.783070', '210.247406', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133152', 1133152, '70.510750', '-17.727341', '188.296799', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133156', 1133156, '56.609531', '-22.226370', '292.790710', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133163', 1133163, '25.970390', '-24.061230', '233.649994', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133165', 1133165, '37.231960', '-26.765560', '260.079498', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133167', 1133167, '36.484268', '-25.833570', '242.542099', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133172', 1133172, '94.585983', '-24.244490', '288.477509', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133176', 1133176, '98.126083', '-23.363501', '294.977814', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133177', 1133177, '85.597298', '-27.953020', '268.263000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133178', 1133178, '89.747749', '-28.194380', '266.065704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133179', 1133179, '141.949905', '-28.936390', '333.222290', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133181', 1133181, '160.046402', '-31.802570', '350.789795', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133185', 1133185, '164.906906', '-32.018280', '333.485504', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133186', 1133186, '146.226807', '-28.810591', '357.818298', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133187', 1133187, '196.479996', '-32.228100', '370.754303', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133189', 1133189, '179.687897', '-32.476631', '364.163086', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133193', 1133193, '213.929794', '-29.694580', '421.080688', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133194', 1133194, '210.157394', '-29.179230', '422.919312', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133195', 1133195, '202.300293', '-31.331381', '415.743286', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133196', 1133196, '197.350098', '-27.568890', '432.363586', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133197', 1133197, '127.580299', '-21.390261', '452.635986', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133198', 1133198, '140.825500', '-23.697309', '449.881714', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133199', 1133199, '140.459198', '-23.605749', '454.489899', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133202', 1133202, '12.397950', '-27.619690', '294.880493', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133205', 1133205, '-18.143021', '-24.734921', '265.369598', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133206', 1133206, '-12.771850', '-24.094040', '262.958710', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133207', 1133207, '-9.199866', '-28.976500', '329.645294', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140338, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133209', 1133209, '-28.712330', '-27.396271', '280.689209', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140066, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133235', 1133235, '-294.825012', '66.698837', '-219.308807', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94446, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133239', 1133239, '-293.659912', '67.460083', '-222.491806', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94174, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133246', 1133246, '-302.510101', '60.959740', '-159.319504', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93902, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133248', 1133248, '-302.700409', '62.132381', '-166.402496', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133255', 1133255, '-356.364685', '65.308533', '-258.518585', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133257', 1133257, '-369.039490', '65.567993', '-232.715393', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133258', 1133258, '-392.416290', '67.276978', '-249.713898', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1133287', 1133287, '197.283798', '-8.773984', '-27.176359', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133291', 1133291, '211.352707', '-8.651912', '-43.106781', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133293', 1133293, '157.305206', '-7.888961', '-17.929399', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133294', 1133294, '157.244202', '-8.163623', '-11.917340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133298', 1133298, '120.449799', '-4.840655', '13.528090', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1133303', 1133303, '104.203796', '-7.003938', '47.562321', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135577', 1135577, '335.133911', '-4.725379', '-24.794729', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196916, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135582', 1135582, '371.054596', '0.844982', '-35.208488', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196644, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135586', 1135586, '374.433105', '1.702958', '-25.284241', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135591', 1135591, '345.784607', '-2.975556', '-32.761169', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135593', 1135593, '332.478790', '-3.372291', '3.097534', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135605', 1135605, '395.773193', '2.548209', '-44.693722', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135606', 1135606, '415.025085', '5.625315', '-64.068764', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135607', 1135607, '388.509888', '0.304810', '-66.453087', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135612', 1135612, '394.000214', '3.556523', '-87.144318', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135613', 1135613, '375.936493', '0.686609', '-85.923592', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135614', 1135614, '343.831512', '-5.020265', '-80.094650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135616', 1135616, '409.009888', '5.209702', '-112.078003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135617', 1135617, '417.517700', '5.755183', '-68.232597', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135618', 1135618, '412.284607', '5.636008', '-106.424400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135619', 1135619, '406.314209', '5.571515', '-103.380302', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135624', 1135624, '386.668915', '4.336706', '-103.087303', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135625', 1135625, '364.309509', '0.784262', '-125.017197', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135627', 1135627, '359.853485', '-2.578822', '-152.483398', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135628', 1135628, '350.999207', '-2.118987', '-128.300003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135629', 1135629, '316.613586', '8.015758', '128.187897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135632', 1135632, '323.190002', '9.736116', '132.826904', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135633', 1135633, '322.078613', '10.136940', '134.004807', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135639', 1135639, '288.849091', '17.952721', '161.725601', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135643', 1135643, '286.915314', '19.626829', '172.441101', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135645', 1135645, '295.765594', '16.383280', '167.437195', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1135646', 1135646, '318.979004', '13.831220', '155.957001', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1135647', 1135647, '290.314087', '17.922770', '159.804199', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1135651', 1135651, '-262.056305', '55.970860', '36.748020', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135671', 1135671, '-462.059692', '64.698357', '68.829857', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1135673', 1135673, '-398.458893', '51.156910', '68.804077', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83602, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1135685', 1135685, '-418.844910', '58.274151', '-34.409142', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135687', 1135687, '-520.153870', '65.239517', '61.102520', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80888, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1135688', 1135688, '-508.781586', '65.293297', '40.634731', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81432, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1135931', 1135931, '272.581390', '23.939560', '195.025894', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135933', 1135933, '241.474594', '24.000601', '179.914902', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135937', 1135937, '-101.839104', '-40.043732', '299.745911', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1135938', 1135938, '-105.816902', '-40.028461', '306.239807', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1135939', 1135939, '-90.198776', '-40.129551', '324.673096', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1135940', 1135940, '-94.585022', '-40.032150', '311.676514', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1135941', 1135941, '-114.854698', '-40.054981', '302.937286', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135942', 1135942, '-97.734077', '-40.054981', '304.310608', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135943', 1135943, '-102.695999', '-40.032539', '320.445892', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1135944', 1135944, '-83.087273', '-39.867889', '327.616211', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162337', 1162337, '283.977112', '-6.509701', '-148.452805', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162338', 1162338, '281.871399', '-6.690229', '-150.039703', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162341', 1162341, '315.751801', '-4.718813', '-109.327103', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162344', 1162344, '309.980103', '1.983368', '92.979958', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162345', 1162345, '337.067413', '3.266761', '71.050873', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162348', 1162348, '130.357803', '-6.759793', '57.419651', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162351', 1162351, '222.430695', '-7.827925', '-60.441029', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162352', 1162352, '227.527206', '-7.187046', '-66.727753', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162353', 1162353, '203.082306', '-7.339636', '-68.925049', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162354', 1162354, '221.484604', '-7.400672', '-64.011642', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162358', 1162358, '-19.657080', '0.269221', '-140.150803', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1162368', 1162368, '112.853699', '-26.954611', '251.195801', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162369', 1162369, '89.158417', '-24.246630', '236.957306', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162371', 1162371, '217.547806', '-31.967699', '395.895294', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162374', 1162374, '-2.485424', '-31.687981', '451.364502', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162376', 1162376, '-10.696620', '-34.134480', '443.381287', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162378', 1162378, '-23.636271', '-35.911461', '462.485596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162380', 1162380, '-61.417610', '-36.118149', '490.745300', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162384', 1162384, '-4.128872', '-28.294901', '327.096588', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1162385', 1162385, '-48.920349', '-35.910400', '310.262909', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1162386', 1162386, '-66.916382', '-32.083370', '343.644196', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1162387', 1162387, '-65.420998', '-31.630421', '353.013306', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1162390', 1162390, '-298.542786', '20.650921', '132.768707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162391', 1162391, '-294.392303', '20.060690', '130.388306', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162392', 1162392, '-296.020508', '20.999870', '168.359299', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162393', 1162393, '-297.016907', '20.876789', '122.239998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162394', 1162394, '-208.026505', '3.601872', '2.164479', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162398', 1162398, '-396.566711', '63.980961', '-218.615997', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1162399', 1162399, '-347.955994', '66.968529', '-220.251999', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1162402', 1162402, '-291.152710', '61.247379', '-168.828796', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1162403', 1162403, '-351.183289', '63.740372', '-153.645599', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162412', 1162412, '-365.503204', '62.324249', '-85.497841', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162413', 1162413, '-365.240814', '62.204288', '-87.690971', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162416', 1162416, '-353.685791', '63.380310', '-149.922501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1162426', 1162426, '-501.091003', '65.293297', '90.318100', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1162427', 1162427, '-534.918823', '65.381104', '43.912449', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81160, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1180878', 1180878, '104.639297', '-8.000016', '-91.168152', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1180879', 1180879, '105.168701', '-8.000016', '-94.222618', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1180880', 1180880, '106.210297', '-8.000016', '-96.527153', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1183451', 1183451, '104.347603', '-8.000016', '-88.522499', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1183452', 1183452, '101.512100', '-8.064646', '-97.812950', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1183453', 1183453, '100.580399', '-8.000016', '-95.459229', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1183454', 1183454, '99.803108', '-8.184623', '-92.716454', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1183455', 1183455, '99.192757', '-8.361253', '-89.878258', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234346, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1183456', 1183456, '96.327393', '-8.500061', '-99.385361', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1183458', 1183458, '95.550194', '-8.460118', '-96.840134', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1183459', 1183459, '94.825958', '-8.500061', '-93.978119', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1183460', 1183460, '94.179993', '-8.500061', '-90.982887', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1408325', 1408325, '107.492897', '15.984340', '-270.054596', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1408329', 1408329, '119.554398', '17.410500', '-259.693298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1408332', 1408332, '111.600800', '16.549120', '-248.298096', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1408334', 1408334, '117.813103', '17.697479', '-247.780807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1408341', 1408341, '111.814400', '16.758829', '-244.880096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1408351', 1408351, '86.796638', '15.940370', '-262.601105', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1408352', 1408352, '68.921707', '16.132620', '-262.037811', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1408353', 1408353, '68.168861', '16.760660', '-264.307190', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1408357', 1408357, '72.243088', '10.935070', '-243.492706', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1408358', 1408358, '87.101822', '15.245950', '-260.648010', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221122, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410560', 1410560, '103.350998', '14.389260', '-254.875107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410688', 1410688, '50.217388', '6.559038', '-223.468399', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410689', 1410689, '39.352970', '4.053384', '-182.513199', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410690', 1410690, '37.860909', '3.934789', '-183.153900', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410691', 1410691, '55.661430', '4.710185', '-183.981201', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1410693', 1410693, '-1.083989', '1.339663', '-188.567398', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219478, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1410694', 1410694, '0.474049', '1.531124', '-191.204697', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219206, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1410695', 1410695, '8.437746', '1.980624', '-176.756195', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218934, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1410696', 1410696, '-15.013690', '1.551492', '-198.619598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218662, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1410698', 1410698, '7.450444', '1.514552', '-190.764694', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410699', 1410699, '8.438234', '3.222636', '-146.234497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410700', 1410700, '14.477130', '3.104484', '-138.479904', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410701', 1410701, '16.068541', '3.373573', '-139.535202', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217574, 7, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(225, 'e0002', 'bnpc1410703', 1410703, '-15.113390', '3.146425', '-233.722000', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217302, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1410704', 1410704, '-4.948251', '4.778366', '-234.155304', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217030, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1410705', 1410705, '8.210199', '5.748120', '-247.337402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1410707', 1410707, '9.591916', '5.570471', '-251.132996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216498, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410708', 1410708, '5.815275', '5.237663', '-249.501099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216226, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410709', 1410709, '-9.906527', '3.594761', '-217.097595', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215954, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410712', 1410712, '-13.648660', '3.344659', '-231.383408', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215682, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410714', 1410714, '-30.136610', '0.909592', '-224.200897', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1410715', 1410715, '48.355789', '9.194451', '-243.366196', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1410716', 1410716, '74.908539', '4.285552', '-211.076706', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1410851', 1410851, '88.732697', '4.082766', '-185.738998', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215138, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410853', 1410853, '130.975204', '4.971314', '-185.109497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214866, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410976', 1410976, '131.470093', '2.068069', '-173.581100', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214594, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410977', 1410977, '107.495903', '0.653863', '-168.558304', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214322, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410978', 1410978, '142.190598', '1.204836', '-160.400803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214050, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410979', 1410979, '148.032898', '0.649221', '-123.475403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213778, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410982', 1410982, '166.648804', '-1.181116', '-137.457901', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213506, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410983', 1410983, '178.145996', '-1.608972', '-140.621307', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213228, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1410984', 1410984, '168.844696', '2.701761', '-163.503296', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212962, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410990', 1410990, '199.114899', '-0.803801', '-174.853195', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212684, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1410996', 1410996, '202.197205', '-1.697314', '-172.655899', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212418, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410998', 1410998, '239.098404', '-2.190103', '-187.159805', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212146, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1410999', 1410999, '221.515396', '-6.264487', '-154.155502', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211874, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411000', 1411000, '227.837204', '-8.126032', '-125.948700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211602, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411003', 1411003, '174.579300', '-1.892151', '-102.278099', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411004', 1411004, '182.699707', '-4.339209', '-88.384857', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211058, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411005', 1411005, '161.154007', '4.078132', '-169.399704', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411032', 1411032, '271.173798', '-9.203460', '-119.877403', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411034', 1411034, '330.082886', '-2.640436', '-152.968796', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173790, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411036', 1411036, '305.867188', '-2.983790', '-188.262894', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411037', 1411037, '302.815399', '-3.417479', '-190.063507', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411038', 1411038, '283.192108', '-6.780017', '-171.401596', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411042', 1411042, '287.338715', '-5.114256', '-195.320007', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411049', 1411049, '276.640594', '-8.026556', '-141.155594', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411065', 1411065, '308.725311', '-4.528103', '-80.785583', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411066', 1411066, '311.802795', '-5.117999', '-76.683037', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411069', 1411069, '291.112213', '-5.409167', '-79.667397', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411071', 1411071, '346.714203', '-3.206666', '-41.466160', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411078', 1411078, '264.779999', '-11.621630', '-65.637466', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183878, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411084', 1411084, '234.546997', '-11.793010', '-2.134793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183606, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411085', 1411085, '250.625107', '-8.387555', '28.634951', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183334, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411086', 1411086, '313.420288', '-6.097115', '16.095341', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183038, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411087', 1411087, '314.703308', '-5.599903', '20.012140', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182766, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411119', 1411119, '309.285095', '2.975462', '97.764503', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182494, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411120', 1411120, '326.314087', '2.426137', '90.012917', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182222, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411121', 1411121, '371.612488', '7.304699', '55.979481', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411124', 1411124, '375.810211', '7.175481', '51.219879', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411135', 1411135, '420.071991', '5.244238', '-35.509991', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411136', 1411136, '417.919312', '5.091386', '-39.660309', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411137', 1411137, '425.005402', '6.439638', '-41.263420', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411148', 1411148, '449.318512', '32.509201', '-8.551085', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170556, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411152', 1411152, '505.440613', '42.969250', '-25.847120', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170284, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411155', 1411155, '511.920410', '44.121750', '-42.307079', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171644, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411157', 1411157, '502.891510', '43.241459', '-46.006001', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171372, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411159', 1411159, '481.475494', '41.105301', '-9.940406', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171100, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411160', 1411160, '484.982300', '41.536228', '-12.749530', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171916, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411162', 1411162, '201.709000', '-7.309118', '-73.014473', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181134, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411163', 1411163, '206.805496', '-9.964188', '-16.037279', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180862, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411164', 1411164, '183.550705', '-8.560358', '-4.379386', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180590, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411167', 1411167, '127.300301', '-5.901662', '12.460290', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180318, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411170', 1411170, '92.851097', '-4.928711', '4.867581', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180046, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411171', 1411171, '127.489098', '-7.126010', '58.609852', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179774, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411173', 1411173, '216.815399', '-9.170719', '-44.144390', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411174', 1411174, '218.066605', '-9.475899', '-42.282791', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411176', 1411176, '184.252594', '-8.621394', '-0.259450', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411178', 1411178, '102.749901', '-11.800030', '112.244499', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411179', 1411179, '107.205597', '-7.793041', '74.349869', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411180', 1411180, '84.061897', '-6.851347', '16.464439', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411181', 1411181, '84.336563', '-6.698757', '13.137970', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411182', 1411182, '275.292297', '23.606110', '190.161697', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411186', 1411186, '288.694397', '21.579050', '187.354996', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177344, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411187', 1411187, '286.440796', '21.978689', '190.167206', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177072, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411193', 1411193, '237.018204', '23.458019', '156.614304', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176800, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411197', 1411197, '211.473099', '23.453070', '169.805405', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176528, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411198', 1411198, '209.800598', '23.457560', '211.348297', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176256, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411202', 1411202, '205.811798', '24.000139', '204.175003', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175984, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411203', 1411203, '226.011993', '23.536930', '175.448105', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175712, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411206', 1411206, '227.024994', '24.063431', '228.666702', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175440, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411207', 1411207, '224.858200', '23.422550', '230.009598', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175168, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411208', 1411208, '234.736603', '23.544621', '214.365707', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411210', 1411210, '233.020493', '23.453070', '214.312897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411213', 1411213, '213.946701', '23.453070', '226.459106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411214', 1411214, '211.749405', '23.453070', '228.168106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411218', 1411218, '228.444595', '23.457581', '165.045898', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411220', 1411220, '382.833496', '13.565220', '79.972481', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159876, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411222', 1411222, '374.288513', '12.161390', '84.031380', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158516, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411223', 1411223, '409.964111', '18.326040', '60.501968', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159604, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411225', 1411225, '411.001709', '26.138660', '123.399696', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158788, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411227', 1411227, '436.179108', '32.211750', '101.823402', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159060, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411228', 1411228, '439.383514', '32.761070', '98.649529', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157972, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411233', 1411233, '-58.666859', '-4.080153', '-116.513397', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134082, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411234', 1411234, '-111.996201', '6.549166', '-145.525208', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411235', 1411235, '-123.994698', '12.085680', '-163.495407', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411236', 1411236, '-120.946297', '10.817430', '-167.745193', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411237', 1411237, '-179.948700', '2.732331', '-103.572197', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1411238', 1411238, '-212.568405', '1.504992', '-84.178993', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97676, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(225, 'e0002', 'bnpc1411240', 1411240, '-212.756607', '1.846313', '-94.163452', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96316, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(225, 'e0002', 'bnpc1411241', 1411241, '-214.172699', '1.359615', '-82.278023', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96044, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(225, 'e0002', 'bnpc1411242', 1411242, '-213.856293', '1.439267', '-83.871033', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96588, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(225, 'e0002', 'bnpc1411244', 1411244, '-193.905304', '2.125694', '-41.069290', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97948, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(225, 'e0002', 'bnpc1411253', 1411253, '-56.382130', '-4.928711', '-94.529694', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411254', 1411254, '-20.293131', '-2.590379', '-100.341103', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411255', 1411255, '-23.246990', '0.393718', '-138.153305', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411256', 1411256, '-59.128750', '0.758792', '-164.202393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411655', 1411655, '-92.954361', '1.786075', '-122.393898', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411656', 1411656, '-93.869904', '1.736482', '-119.067497', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411657', 1411657, '-109.805397', '6.718060', '-150.029800', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411658', 1411658, '-176.756607', '2.961861', '-114.443398', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1411659', 1411659, '-205.790604', '2.068845', '-61.951530', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412058', 1412058, '-196.154800', '1.939114', '-25.589430', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412059', 1412059, '-163.822601', '0.087921', '-11.411790', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412062', 1412062, '71.492859', '-11.893120', '161.389404', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412463', 1412463, '107.728401', '-8.259025', '159.304703', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412464', 1412464, '108.796501', '-7.985859', '156.375000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412465', 1412465, '45.309830', '-13.145570', '164.612595', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412467', 1412467, '86.263412', '-10.238450', '166.918396', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412470', 1412470, '43.860840', '-19.453880', '194.128098', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412471', 1412471, '40.686970', '-20.436541', '199.194107', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412474', 1412474, '83.274986', '-19.705959', '207.342194', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412475', 1412475, '56.498798', '-24.125010', '265.742401', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412476', 1412476, '56.595661', '-23.666790', '269.184387', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412477', 1412477, '67.313408', '-23.280479', '279.101715', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412478', 1412478, '130.256897', '-28.458679', '285.610504', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412480', 1412480, '84.874817', '-11.151300', '170.539902', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412482', 1412482, '48.863239', '-15.723400', '175.131393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412483', 1412483, '91.596550', '-15.216650', '191.087204', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412484', 1412484, '40.536888', '-24.919319', '239.885193', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412486', 1412486, '12.541730', '-30.409491', '274.885712', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412488', 1412488, '84.885887', '-24.795959', '238.330597', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412489', 1412489, '100.537003', '-25.090691', '289.606689', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412890', 1412890, '192.974106', '-32.093040', '371.993805', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412891', 1412891, '174.770096', '-30.985760', '392.154999', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412892', 1412892, '169.164200', '-29.940310', '393.395111', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412893', 1412893, '172.161407', '-30.924379', '389.056885', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412894', 1412894, '171.285507', '-29.285271', '402.230988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412895', 1412895, '154.779907', '-26.129629', '405.514008', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412896', 1412896, '168.913696', '-28.561871', '440.527588', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412897', 1412897, '173.811401', '-24.163700', '462.640015', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412898', 1412898, '172.581100', '-23.212021', '466.157715', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412900', 1412900, '157.804596', '-31.533340', '347.603088', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412901', 1412901, '181.335403', '-32.472290', '364.442596', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412902', 1412902, '173.037506', '-29.813890', '400.369385', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412903', 1412903, '215.503098', '-32.150810', '397.756897', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412904', 1412904, '151.140594', '-25.314760', '448.172699', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1412905', 1412905, '174.771194', '-22.925610', '465.693207', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413304', 1413304, '-10.375770', '-30.070101', '357.174011', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120482, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1413305', 1413305, '-73.187973', '-29.638651', '377.182007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120210, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1413306', 1413306, '7.099501', '-28.323009', '389.698700', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119938, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1413307', 1413307, '-25.474409', '-30.239300', '288.173004', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413309', 1413309, '2.871708', '-26.996679', '314.962891', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413310', 1413310, '-43.682961', '-31.251160', '365.171295', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413311', 1413311, '-60.904331', '-32.109970', '348.252411', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413312', 1413312, '-26.264040', '-32.967579', '411.424805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413711', 1413711, '1.843092', '-32.621689', '440.420288', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413712', 1413712, '-47.684052', '-34.975368', '436.820007', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413713', 1413713, '-62.874069', '-35.826691', '451.367706', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413714', 1413714, '-36.040771', '-30.235821', '405.258087', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413715', 1413715, '-77.531143', '-35.740108', '463.920013', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413716', 1413716, '-81.834183', '-35.561951', '465.537415', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413717', 1413717, '-81.132263', '-36.687901', '482.108704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413718', 1413718, '-64.000313', '-36.181229', '492.846497', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413719', 1413719, '-45.209900', '-36.768280', '469.442810', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413721', 1413721, '-49.479870', '-31.658331', '420.700195', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413723', 1413723, '-61.146591', '-34.546021', '439.197601', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413724', 1413724, '-12.636190', '-34.818890', '433.701904', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413725', 1413725, '-21.261789', '-35.776421', '463.813293', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1413726', 1413726, '-80.766037', '-35.860481', '467.917786', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1414923', 1414923, '-251.624496', '8.046767', '9.209213', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1414924', 1414924, '-237.355103', '14.172800', '56.681469', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1414925', 1414925, '-240.865097', '13.064570', '51.144550', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1414928', 1414928, '-261.738007', '16.472500', '59.800060', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1414929', 1414929, '-271.273499', '19.264000', '95.431259', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1414931', 1414931, '-299.224915', '20.999870', '171.197403', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1414932', 1414932, '-335.657013', '21.199930', '166.262405', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1414935', 1414935, '-333.186493', '21.314899', '161.005798', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1414936', 1414936, '-351.155914', '21.194731', '192.767197', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1414938', 1414938, '-239.843002', '7.295271', '0.194433', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1415337', 1415337, '-263.631592', '17.193020', '61.247459', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1415339', 1415339, '-340.596497', '21.199930', '161.368500', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1415340', 1415340, '-332.306000', '21.000000', '208.378098', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1415341', 1415341, '-328.043915', '21.000000', '211.118393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1415342', 1415342, '-292.652802', '20.981110', '203.265396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1415343', 1415343, '-87.174072', '-39.921982', '291.489105', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1415344', 1415344, '-112.985397', '-40.020420', '312.799713', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1415345', 1415345, '-86.737244', '-40.184792', '302.023285', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1415346', 1415346, '-116.616600', '-40.014709', '309.506805', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1415347', 1415347, '-244.678497', '66.147812', '-179.125702', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1415348', 1415348, '-241.352005', '66.788689', '-178.362701', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1415352', 1415352, '-351.735809', '67.765259', '-226.093002', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1415353', 1415353, '-354.085602', '67.313278', '-222.043106', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1415354', 1415354, '-354.115387', '66.529556', '-254.235596', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1415358', 1415358, '-429.221008', '60.624039', '-145.159103', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1415359', 1415359, '-431.571014', '61.023251', '-141.100204', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1415360', 1415360, '-409.323303', '61.264919', '-120.927803', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1415361', 1415361, '-290.298706', '60.229500', '-115.695396', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1415364', 1415364, '-313.710297', '62.882381', '-46.982571', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1415365', 1415365, '-308.186493', '62.943420', '-50.370079', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72208, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1415367', 1415367, '-304.768494', '62.180470', '-99.076874', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72480, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1415368', 1415368, '-275.257507', '60.807152', '-84.214577', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71664, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1415375', 1415375, '-262.012695', '62.577202', '-39.993938', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1415376', 1415376, '-417.990387', '64.377762', '-51.102509', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1415377', 1415377, '-416.159302', '65.476410', '-55.924358', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1415378', 1415378, '-446.097504', '57.907940', '-22.476589', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1415379', 1415379, '-454.154297', '61.631142', '-28.213980', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1415381', 1415381, '-285.852814', '61.458679', '25.148211', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1415382', 1415382, '-414.267212', '60.471451', '-98.405472', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1415383', 1415383, '-462.152802', '62.699409', '-106.490501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1415384', 1415384, '-465.866913', '62.824699', '-107.035797', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1416355', 1416355, '184.649399', '-7.461709', '-54.703640', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173518, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc1418012', 1418012, '397.388092', '18.876289', '87.758537', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149848, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc1418013', 1418013, '272.692596', '-2.411928', '61.854092', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150120, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154901', 2154901, '-288.593994', '59.581390', '-121.735901', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64604, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2154903', 2154903, '-303.822388', '59.830570', '-130.571503', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2154910', 2154910, '-290.943787', '61.814331', '-175.341400', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64876, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2154912', 2154912, '-384.725800', '64.377808', '-230.792694', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2154914', 2154914, '-416.247894', '61.594559', '-135.801102', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2154915', 2154915, '-397.116089', '56.778770', '-87.632607', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77364, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(225, 'e0002', 'bnpc2154916', 2154916, '-408.031494', '53.104481', '35.133572', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2154917', 2154917, '-274.891388', '62.760250', '-48.600040', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2154925', 2154925, '-365.255188', '56.015820', '61.905800', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2154932', 2154932, '-452.140106', '63.523258', '-235.614594', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92276, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154933', 2154933, '-486.564514', '58.060532', '-222.186707', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154938', 2154938, '-449.027313', '55.863232', '-205.401703', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91732, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154939', 2154939, '-453.788086', '56.259960', '-203.845306', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91460, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154940', 2154940, '-449.607086', '55.100281', '-200.518799', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91188, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154941', 2154941, '-459.128693', '64.652428', '-264.026886', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154943', 2154943, '-483.543213', '58.182598', '-215.136993', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90112, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154944', 2154944, '-488.316101', '67.415604', '-265.598907', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154945', 2154945, '-487.007385', '67.617432', '-267.616608', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90916, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154950', 2154950, '-508.114197', '73.937157', '-289.616486', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154952', 2154952, '-505.210999', '72.800743', '-287.708893', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154954', 2154954, '-475.800293', '75.099243', '-316.311890', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88486, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154959', 2154959, '-474.076904', '71.450668', '-300.198914', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154963', 2154963, '-481.180389', '74.270866', '-319.393005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88752, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154965', 2154965, '-509.328613', '51.460609', '-230.011002', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154966', 2154966, '-530.510376', '48.020088', '-245.654999', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87670, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154968', 2154968, '-550.774414', '46.775639', '-245.014099', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154969', 2154969, '-546.684998', '46.860470', '-244.251205', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154970', 2154970, '-545.647400', '50.522579', '-203.540100', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154971', 2154971, '-547.356384', '51.163448', '-199.786407', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154973', 2154973, '-572.310486', '49.567921', '-226.453506', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90644, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154974', 2154974, '-564.080322', '50.297001', '-211.993607', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154976', 2154976, '-508.251099', '57.374981', '-255.303207', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154978', 2154978, '-533.645081', '43.546291', '-230.397507', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2154980', 2154980, '-468.316010', '57.494301', '-212.252502', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2154982', 2154982, '-485.247803', '68.405968', '-274.754211', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2154983', 2154983, '-505.135406', '73.043167', '-290.313904', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2154985', 2154985, '-528.526672', '48.142170', '-244.495300', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2154986', 2154986, '-568.407227', '50.556568', '-214.304596', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320574', 2320574, '261.921387', '1.753539', '-223.409698', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210786, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320575', 2320575, '261.238495', '0.534709', '-243.419296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320576', 2320576, '263.797699', '1.764011', '-223.470901', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320577', 2320577, '259.453186', '1.043279', '-240.840607', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320579', 2320579, '274.919800', '-1.072963', '-256.170593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209698, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320580', 2320580, '300.060089', '-0.888014', '-307.572510', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320581', 2320581, '324.245514', '-1.093548', '-288.072113', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320582', 2320582, '298.274811', '-0.855762', '-304.993805', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320583', 2320583, '325.011292', '-1.286943', '-316.835388', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208610, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320584', 2320584, '287.788513', '-0.475198', '-298.277313', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208338, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320585', 2320585, '329.843903', '-0.745502', '-290.159698', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320586', 2320586, '325.924103', '-0.928046', '-285.067993', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320587', 2320587, '327.193207', '-1.286943', '-313.833496', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207522, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320588', 2320588, '337.177185', '0.441468', '-264.191803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207250, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320589', 2320589, '332.682892', '0.959346', '-254.439896', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206978, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320590', 2320590, '329.305206', '0.991071', '-252.106293', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206706, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320591', 2320591, '304.253815', '-0.643113', '-258.978912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320596', 2320596, '346.493591', '-0.483981', '-328.131287', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206162, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320597', 2320597, '302.790710', '-1.010156', '-352.830505', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320598', 2320598, '273.957489', '-0.689871', '-328.818512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205618, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320599', 2320599, '268.469910', '-0.593068', '-327.086395', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205346, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320600', 2320600, '267.525513', '-0.806307', '-329.538208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205074, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320601', 2320601, '276.737091', '0.547026', '-314.840912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320610', 2320610, '288.781494', '-1.187131', '-281.665588', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320612', 2320612, '330.290802', '-1.286943', '-344.531311', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320617', 2320617, '92.850220', '-10.902450', '173.235596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320637', 2320637, '-108.605698', '-30.528610', '272.296295', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320638', 2320638, '-138.649902', '-23.382610', '264.698212', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320639', 2320639, '-99.474327', '-30.263571', '271.854614', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320641', 2320641, '-170.286606', '-27.619471', '297.813995', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320642', 2320642, '-171.781998', '-27.505461', '288.445007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320643', 2320643, '-165.769897', '-27.707670', '293.053192', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320645', 2320645, '-125.383400', '-25.040100', '360.402802', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320646', 2320646, '-137.475906', '-27.672729', '336.516113', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320647', 2320647, '-141.819901', '-30.193661', '309.942688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320649', 2320649, '-59.102539', '-28.549570', '296.388702', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320650', 2320650, '277.147400', '-31.644880', '389.827209', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320651', 2320651, '250.690399', '-30.350241', '408.346588', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106362, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320652', 2320652, '274.666290', '-31.273550', '391.993988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320654', 2320654, '299.640686', '-31.632290', '402.348511', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320655', 2320655, '300.434814', '-32.791679', '411.978302', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320656', 2320656, '342.732788', '-31.784590', '408.346588', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320658', 2320658, '308.735687', '-32.272881', '398.214600', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320659', 2320659, '329.910309', '-31.601860', '408.307800', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320660', 2320660, '332.175415', '-31.647480', '410.657013', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320661', 2320661, '344.838593', '-31.113190', '440.115906', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320664', 2320664, '144.316299', '-22.573250', '513.925293', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320665', 2320665, '141.166702', '-21.478600', '518.533508', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320666', 2320666, '165.008896', '-23.196131', '497.355591', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320667', 2320667, '137.956802', '-21.858990', '489.646698', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103642, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320668', 2320668, '130.324295', '-19.810080', '417.345490', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320669', 2320669, '98.407799', '-20.697760', '221.536407', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320671', 2320671, '97.314743', '-11.800020', '101.237198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320675', 2320675, '135.972794', '-11.800140', '133.207794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320678', 2320678, '185.468796', '-11.800210', '106.268402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320683', 2320683, '188.220001', '-11.825790', '62.851860', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320688', 2320688, '201.678406', '-11.795270', '23.117371', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320694', 2320694, '260.142914', '-12.002980', '-90.756157', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320695', 2320695, '258.451996', '-12.002920', '-92.319710', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320696', 2320696, '257.085999', '-12.006830', '-154.938705', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320697', 2320697, '264.474091', '-12.313630', '-187.969193', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320721', 2320721, '396.475098', '20.645411', '107.225098', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159332, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320722', 2320722, '419.413391', '27.114370', '102.443001', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158244, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320725', 2320725, '-159.887802', '18.109520', '-68.195572', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320727', 2320727, '-170.536102', '27.551260', '-85.891403', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320728', 2320728, '-170.885803', '27.966640', '-89.178688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320732', 2320732, '-547.753174', '19.485781', '-191.943298', 30, 0, 0, 0, 2, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63894, 1, 0, 0, 0, 0, 0, 4302234, 0, 0), +(225, 'e0002', 'bnpc2320790', 2320790, '-439.475098', '48.996670', '43.930679', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320791', 2320791, '-432.144196', '49.318508', '-4.165760', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2320793', 2320793, '-242.034393', '58.664711', '38.845100', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320794', 2320794, '-206.227997', '57.382519', '52.006420', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320797', 2320797, '-193.570099', '74.743111', '21.367661', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320800', 2320800, '-238.635895', '62.272018', '25.375710', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2320801', 2320801, '-219.805405', '67.608017', '9.079071', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2341782', 2341782, '345.014008', '-1.078350', '-177.896896', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2341783', 2341783, '319.296997', '-0.849605', '-171.347198', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2341784', 2341784, '292.707397', '-6.651216', '-123.136101', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2341785', 2341785, '347.310486', '6.679530', '84.092422', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2341786', 2341786, '354.267487', '5.193762', '60.841671', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2341787', 2341787, '348.283203', '3.086715', '49.707630', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2603191', 2603191, '256.015594', '-11.793030', '-185.891006', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164850, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2603192', 2603192, '260.232605', '-11.793140', '-180.095505', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164578, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612552', 2612552, '252.195404', '-11.793090', '-145.885406', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164306, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612553', 2612553, '254.433395', '-11.793010', '-113.328796', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164034, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612554', 2612554, '258.838715', '-11.793140', '-73.879280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163762, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612555', 2612555, '233.580307', '-11.793010', '-18.570280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163490, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612556', 2612556, '216.695099', '-11.793000', '8.959249', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163218, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612557', 2612557, '212.512299', '-11.795270', '12.741240', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162946, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612559', 2612559, '120.048798', '-11.800060', '124.326401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162680, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612561', 2612561, '191.515900', '-11.856310', '51.102409', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162408, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612562', 2612562, '189.768997', '-11.800210', '71.478256', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162136, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612563', 2612563, '192.239395', '-11.800030', '91.385788', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161864, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612564', 2612564, '179.480606', '-11.800260', '106.735802', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161592, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612565', 2612565, '165.069794', '-11.800630', '119.881798', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161320, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612566', 2612566, '146.988297', '-11.800000', '126.311401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161048, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612569', 2612569, '132.474792', '-11.800090', '139.979294', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160776, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612570', 2612570, '250.133804', '-11.793030', '-55.898849', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160498, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612571', 2612571, '205.980301', '-11.772920', '33.134300', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160226, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612573', 2612573, '421.064514', '24.757450', '78.823257', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2612574', 2612574, '428.320709', '31.721590', '124.805603', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157428, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2615184', 2615184, '360.341705', '-32.028728', '435.294006', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2615186', 2615186, '375.478699', '-32.089771', '448.966095', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2615187', 2615187, '382.955597', '-31.998211', '440.878815', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc2615503', 2615503, '253.211594', '-11.793080', '-161.360504', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154514, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc2615504', 2615504, '253.937607', '-11.793030', '-68.861298', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154242, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3693097', 3693097, '-224.085602', '1.055553', '-69.316994', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(225, 'e0002', 'bnpc3693102', 3693102, '-195.941101', '2.945007', '-104.081802', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96860, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(225, 'e0002', 'bnpc3693103', 3693103, '-189.283005', '2.362727', '-83.005783', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97404, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(225, 'e0002', 'bnpc3693105', 3693105, '-210.620300', '1.998901', '-96.299683', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95500, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(225, 'e0002', 'bnpc3693109', 3693109, '-195.513901', '2.216981', '-40.186169', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95228, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(225, 'e0002', 'bnpc3693111', 3693111, '-200.096695', '2.060742', '-67.256340', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(225, 'e0002', 'bnpc3693121', 3693121, '368.459503', '-32.364429', '413.199005', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3693136', 3693136, '242.206406', '-30.411280', '402.182007', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3693138', 3693138, '225.451996', '-28.488640', '423.605713', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3693140', 3693140, '215.350494', '-32.486500', '387.777496', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3693173', 3693173, '-508.842590', '40.237991', '-79.606361', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3693174', 3693174, '-516.899414', '40.146439', '-74.967621', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3693175', 3693175, '-514.549500', '40.207470', '-77.103882', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85228, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3693176', 3693176, '-520.866821', '40.146439', '-64.255783', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3693177', 3693177, '-515.685120', '40.359970', '-54.677021', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3693178', 3693178, '-503.929199', '41.000938', '-56.107471', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3693179', 3693179, '-483.658691', '45.245129', '-60.343559', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3693180', 3693180, '-481.533905', '45.933941', '-62.817669', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3693183', 3693183, '-378.957794', '51.132931', '52.109509', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3693184', 3693184, '-397.512787', '49.301849', '10.055650', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3693185', 3693185, '-433.121094', '49.318531', '34.558170', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3693188', 3693188, '-322.396393', '57.338970', '-6.726664', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65686, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3693623', 3693623, '-184.619797', '78.429970', '42.778721', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3693624', 3693624, '-191.994202', '77.183746', '37.510250', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72746, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3694403', 3694403, '-314.266113', '63.832611', '57.746510', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3742079', 3742079, '-530.733887', '65.311684', '98.466423', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3742133', 3742133, '-526.186829', '65.311691', '102.647400', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3742194', 3742194, '48.050610', '-11.800030', '-40.915428', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153976, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3742195', 3742195, '22.187790', '-11.800000', '-69.750504', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153704, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3742196', 3742196, '15.168640', '-11.800000', '-75.762558', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153432, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3742197', 3742197, '6.348711', '-11.800040', '-110.540199', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153160, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3742198', 3742198, '-54.153049', '-3.500003', '-186.530106', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152888, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3742199', 3742199, '-50.919399', '-3.500001', '-182.895996', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152616, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3742200', 3742200, '-69.779549', '-3.500144', '-196.820496', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152344, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3742201', 3742201, '-62.272110', '-3.500066', '-207.843399', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152072, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3742202', 3742202, '2.735321', '-11.800110', '-122.937599', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151782, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3742203', 3742203, '-6.886642', '-3.500000', '-135.990402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3742204', 3742204, '-6.586641', '-3.500000', '-139.267899', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3742205', 3742205, '-36.719379', '-3.500000', '-180.416794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150966, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3742206', 3742206, '-48.687111', '-3.500072', '-207.096298', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150694, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3746465', 3746465, '-208.691696', '52.495350', '-42.669102', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71120, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3746466', 3746466, '-219.824799', '58.286751', '-60.483898', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3746467', 3746467, '-215.491898', '57.635231', '-71.491089', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70576, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3869502', 3869502, '125.699600', '25.160120', '-311.621185', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41108, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(225, 'e0002', 'bnpc3869509', 3869509, '-307.502899', '63.448620', '-285.687714', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40842, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(225, 'e0002', 'bnpc3869525', 3869525, '-206.130997', '53.564651', '-126.977600', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40564, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(225, 'e0002', 'bnpc3869531', 3869531, '96.403351', '-6.334397', '-121.433502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40298, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(225, 'e0002', 'bnpc3869540', 3869540, '164.007095', '-6.013201', '-52.486290', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.750000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40020, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(225, 'e0002', 'bnpc3869598', 3869598, '-4.837158', '-7.919495', '-22.201900', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39760, 5, 0, 20, 0, 0, 30055, 0, 0, 0), +(225, 'e0002', 'bnpc3869604', 3869604, '85.465698', '-6.089244', '60.991131', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39482, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(225, 'e0002', 'bnpc3869607', 3869607, '14.362120', '-8.102512', '100.498901', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39204, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(225, 'e0002', 'bnpc3877513', 3877513, '121.019203', '24.917931', '-304.463287', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204518, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc3884907', 3884907, '-419.228607', '55.416000', '66.506737', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3897658', 3897658, '117.021400', '25.101040', '-311.604492', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204258, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc3898007', 3898007, '132.524597', '24.948450', '-305.562012', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203974, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc4083772', 4083772, '-327.757690', '21.357790', '204.228699', 58, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 5782, 1, 0, 0, 0, 0, 0, 4083771, 0, 0), +(225, 'e0002', 'bnpc4083778', 4083778, '-297.044800', '21.140360', '151.049896', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 8174, 1, 0, 0, 0, 0, 0, 4083775, 0, 0), +(225, 'e0002', 'bnpc4083795', 4083795, '-327.840088', '21.103210', '206.835907', 58, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6054, 1, 0, 0, 0, 0, 0, 4083794, 0, 0), +(225, 'e0002', 'bnpc4083796', 4083796, '-296.744812', '21.145109', '151.349899', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7662, 1, 0, 0, 0, 0, 0, 4083797, 0, 0), +(225, 'e0002', 'bnpc4083798', 4083798, '-296.444794', '21.149870', '151.649902', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7278, 1, 0, 0, 0, 0, 0, 4083799, 0, 0), +(225, 'e0002', 'bnpc4083800', 4083800, '-296.144806', '21.154619', '151.949905', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6894, 1, 0, 0, 0, 0, 0, 4083801, 0, 0), +(225, 'e0002', 'bnpc4083802', 4083802, '-295.844788', '21.159370', '152.249893', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6510, 1, 0, 0, 0, 0, 0, 4083803, 0, 0), +(225, 'e0002', 'bnpc4083871', 4083871, '127.641701', '-6.332520', '-100.389198', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38544, 8, 0, 0, 4295658, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4295672', 4295672, '132.951797', '-6.332520', '-100.114502', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37512, 8, 0, 0, 4295661, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4295673', 4295673, '137.910706', '-6.438695', '-96.608414', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37240, 8, 0, 0, 4295662, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4295675', 4295675, '126.695297', '-6.948534', '-90.459633', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36968, 8, 0, 0, 4295663, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4295677', 4295677, '126.418900', '-6.971872', '-84.529358', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36696, 8, 0, 0, 4295664, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4296957', 4296957, '95.628906', '-2.029270', '-42.382439', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35816, 1, 0, 0, 2280260, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4296958', 4296958, '98.693558', '-2.029731', '-43.942860', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35544, 1, 0, 0, 2280261, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4296959', 4296959, '101.467598', '-2.005454', '-46.176739', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35272, 1, 0, 0, 2280262, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4296960', 4296960, '104.146896', '-1.968804', '-48.332958', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35000, 1, 0, 0, 2280263, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302206', 4302206, '-555.148071', '29.067560', '-230.785706', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302207', 4302207, '-516.437683', '22.056881', '-221.606796', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302208', 4302208, '-524.244812', '24.477020', '-253.274597', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302209', 4302209, '-527.577820', '24.719191', '-254.932404', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302212', 4302212, '-582.818420', '21.723471', '-238.845596', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302213', 4302213, '-596.266602', '20.622200', '-226.349106', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62184, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(225, 'e0002', 'bnpc4302214', 4302214, '-579.272827', '21.076719', '-214.966003', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302215', 4302215, '-581.780823', '21.842831', '-241.897293', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302216', 4302216, '-528.772888', '19.922779', '-195.839096', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61374, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302217', 4302217, '-537.197327', '20.139130', '-199.348495', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302218', 4302218, '-563.208191', '18.867491', '-186.546005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302219', 4302219, '-527.765808', '20.129919', '-200.682007', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302220', 4302220, '-569.817627', '10.940670', '-130.235794', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302221', 4302221, '-617.120605', '21.896610', '-197.436493', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302222', 4302222, '-575.432983', '11.001710', '-129.716995', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302223', 4302223, '-568.810608', '10.910160', '-133.318100', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302225', 4302225, '-502.711792', '17.279470', '-157.029495', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59204, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302226', 4302226, '-496.089386', '16.799740', '-160.630707', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58938, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302228', 4302228, '-481.979004', '18.189381', '-229.549103', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302229', 4302229, '-555.941528', '25.463579', '-260.210693', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4302351', 4302351, '-572.925293', '18.257090', '-181.740707', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57718, 1, 0, 0, 0, 0, 0, 4302260, 0, 0), +(225, 'e0002', 'bnpc4302353', 4302353, '-513.667175', '23.842480', '-245.333893', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57446, 1, 0, 0, 0, 0, 0, 4302268, 0, 0), +(225, 'e0002', 'bnpc4333043', 4333043, '-309.205597', '57.338970', '-10.110600', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(225, 'e0002', 'bnpc4333385', 4333385, '-348.321503', '67.616417', '-233.774200', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4510293', 4510293, '213.253204', '-32.025242', '324.145386', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38950, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(225, 'e0002', 'bnpc4621046', 4621046, '370.051086', '-32.295422', '411.821198', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42124, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(225, 'e0002', 'bnpc4621047', 4621047, '-538.803589', '50.907551', '-203.075394', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41858, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1132780', 1132780, '42.705971', '6.489012', '-222.119598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132784', 1132784, '43.994171', '7.081282', '-226.261307', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132785', 1132785, '46.368141', '6.532326', '-222.363800', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230902, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132786', 1132786, '50.249649', '8.663927', '-237.583603', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132810', 1132810, '119.142403', '17.274370', '-264.585907', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132815', 1132815, '53.141479', '4.367238', '-208.718597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132818', 1132818, '57.950279', '4.701855', '-181.906006', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132819', 1132819, '53.380199', '3.647015', '-170.941803', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132823', 1132823, '85.892982', '4.386182', '-186.633102', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132827', 1132827, '136.440002', '-0.215091', '-142.126297', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132829', 1132829, '139.586502', '1.436886', '-162.906296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132833', 1132833, '144.692596', '1.594073', '-161.313507', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132834', 1132834, '169.345306', '-0.575563', '-143.321701', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132835', 1132835, '132.885803', '4.471908', '-182.040894', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132836', 1132836, '127.652000', '2.679112', '-179.060898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132837', 1132837, '133.402802', '5.498395', '-185.220093', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132842', 1132842, '104.130501', '4.751109', '-199.651596', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132988', 1132988, '145.939301', '0.761501', '-119.501801', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132990', 1132990, '165.896698', '-0.582151', '-142.284103', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132991', 1132991, '196.646301', '-2.798964', '-155.795898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132992', 1132992, '159.011398', '0.196450', '-113.407997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226012, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1132993', 1132993, '162.856598', '-0.357008', '-115.116997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225740, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133000', 1133000, '202.288803', '-2.206049', '-168.963196', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225468, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133001', 1133001, '223.772705', '-6.852091', '-140.217407', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225196, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133002', 1133002, '206.683395', '-2.759299', '-171.221497', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224924, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133005', 1133005, '231.146698', '-5.044106', '-178.307693', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224652, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133007', 1133007, '242.902496', '-0.494766', '-191.458496', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224380, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133008', 1133008, '239.977493', '-0.588080', '-191.828400', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224108, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133010', 1133010, '221.392303', '-6.460419', '-138.050598', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223836, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133022', 1133022, '332.788513', '-3.345333', '-151.251495', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201534, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133023', 1133023, '298.603699', '-6.332541', '-125.749603', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133029', 1133029, '302.693298', '-3.341390', '-184.143005', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133031', 1133031, '328.386993', '-0.505648', '-187.936401', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133032', 1133032, '342.892487', '-1.328422', '-175.218201', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133035', 1133035, '358.327515', '-2.255364', '-175.310898', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133036', 1133036, '335.507294', '0.561625', '-194.418793', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133042', 1133042, '439.946808', '10.149250', '-108.177101', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169468, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133044', 1133044, '458.584900', '14.997390', '-90.379593', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169740, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133047', 1133047, '463.401215', '25.778530', '-35.324680', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168380, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133049', 1133049, '445.243591', '31.812080', '-9.685579', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168652, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133052', 1133052, '486.745514', '31.609249', '-44.177990', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168924, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133053', 1133053, '487.618011', '31.024900', '-55.958771', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170012, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133054', 1133054, '483.304291', '30.900890', '-51.161331', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172188, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133056', 1133056, '482.511993', '23.910801', '-88.545013', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173276, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133057', 1133057, '480.679291', '24.104330', '-120.189201', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169196, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133063', 1133063, '504.435913', '29.146271', '-83.562149', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173004, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133064', 1133064, '482.169495', '24.010910', '-92.475502', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172732, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133065', 1133065, '459.642914', '24.454941', '-39.719559', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172460, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133066', 1133066, '453.938690', '26.000799', '-33.810230', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170828, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133070', 1133070, '351.512787', '3.052480', '46.861389', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133071', 1133071, '341.298492', '3.983801', '67.704231', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133072', 1133072, '348.626495', '0.976962', '28.015940', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133073', 1133073, '342.183502', '0.098491', '27.298340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133077', 1133077, '309.071411', '-2.609340', '63.065491', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133080', 1133080, '281.574707', '-7.184652', '26.169170', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133098', 1133098, '289.254913', '-5.168305', '48.585239', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133100', 1133100, '291.498688', '-5.368438', '47.821369', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133126', 1133126, '-82.030632', '1.519239', '-141.488693', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148770, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133128', 1133128, '-77.317497', '1.083344', '-136.644608', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148498, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133130', 1133130, '-63.375290', '0.643326', '-166.887497', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148226, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133131', 1133131, '-64.313164', '0.965167', '-162.181503', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147954, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133132', 1133132, '-75.591331', '1.176651', '-142.404297', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147682, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133138', 1133138, '-33.189919', '-4.914308', '-94.149628', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147410, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133148', 1133148, '86.244072', '-19.783070', '210.247406', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133152', 1133152, '70.510750', '-17.727341', '188.296799', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133156', 1133156, '56.609531', '-22.226370', '292.790710', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133163', 1133163, '25.970390', '-24.061230', '233.649994', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133165', 1133165, '37.231960', '-26.765560', '260.079498', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133167', 1133167, '36.484268', '-25.833570', '242.542099', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133172', 1133172, '94.585983', '-24.244490', '288.477509', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133176', 1133176, '98.126083', '-23.363501', '294.977814', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133177', 1133177, '85.597298', '-27.953020', '268.263000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133178', 1133178, '89.747749', '-28.194380', '266.065704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133179', 1133179, '141.949905', '-28.936390', '333.222290', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133181', 1133181, '160.046402', '-31.802570', '350.789795', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133185', 1133185, '164.906906', '-32.018280', '333.485504', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133186', 1133186, '146.226807', '-28.810591', '357.818298', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133187', 1133187, '196.479996', '-32.228100', '370.754303', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133189', 1133189, '179.687897', '-32.476631', '364.163086', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133193', 1133193, '213.929794', '-29.694580', '421.080688', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133194', 1133194, '210.157394', '-29.179230', '422.919312', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133195', 1133195, '202.300293', '-31.331381', '415.743286', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133196', 1133196, '197.350098', '-27.568890', '432.363586', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133197', 1133197, '127.580299', '-21.390261', '452.635986', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133198', 1133198, '140.825500', '-23.697309', '449.881714', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133199', 1133199, '140.459198', '-23.605749', '454.489899', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133202', 1133202, '12.397950', '-27.619690', '294.880493', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133205', 1133205, '-18.143021', '-24.734921', '265.369598', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133206', 1133206, '-12.771850', '-24.094040', '262.958710', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133207', 1133207, '-9.199866', '-28.976500', '329.645294', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140338, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133209', 1133209, '-28.712330', '-27.396271', '280.689209', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140066, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133235', 1133235, '-294.825012', '66.698837', '-219.308807', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94446, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133239', 1133239, '-293.659912', '67.460083', '-222.491806', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94174, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133246', 1133246, '-302.510101', '60.959740', '-159.319504', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93902, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133248', 1133248, '-302.700409', '62.132381', '-166.402496', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133255', 1133255, '-356.364685', '65.308533', '-258.518585', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133257', 1133257, '-369.039490', '65.567993', '-232.715393', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133258', 1133258, '-392.416290', '67.276978', '-249.713898', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1133287', 1133287, '197.283798', '-8.773984', '-27.176359', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133291', 1133291, '211.352707', '-8.651912', '-43.106781', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133293', 1133293, '157.305206', '-7.888961', '-17.929399', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133294', 1133294, '157.244202', '-8.163623', '-11.917340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133298', 1133298, '120.449799', '-4.840655', '13.528090', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1133303', 1133303, '104.203796', '-7.003938', '47.562321', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135577', 1135577, '335.133911', '-4.725379', '-24.794729', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196916, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135582', 1135582, '371.054596', '0.844982', '-35.208488', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196644, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135586', 1135586, '374.433105', '1.702958', '-25.284241', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135591', 1135591, '345.784607', '-2.975556', '-32.761169', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135593', 1135593, '332.478790', '-3.372291', '3.097534', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135605', 1135605, '395.773193', '2.548209', '-44.693722', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135606', 1135606, '415.025085', '5.625315', '-64.068764', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135607', 1135607, '388.509888', '0.304810', '-66.453087', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135612', 1135612, '394.000214', '3.556523', '-87.144318', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135613', 1135613, '375.936493', '0.686609', '-85.923592', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135614', 1135614, '343.831512', '-5.020265', '-80.094650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135616', 1135616, '409.009888', '5.209702', '-112.078003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135617', 1135617, '417.517700', '5.755183', '-68.232597', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135618', 1135618, '412.284607', '5.636008', '-106.424400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135619', 1135619, '406.314209', '5.571515', '-103.380302', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135624', 1135624, '386.668915', '4.336706', '-103.087303', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135625', 1135625, '364.309509', '0.784262', '-125.017197', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135627', 1135627, '359.853485', '-2.578822', '-152.483398', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135628', 1135628, '350.999207', '-2.118987', '-128.300003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135629', 1135629, '316.613586', '8.015758', '128.187897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135632', 1135632, '323.190002', '9.736116', '132.826904', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135633', 1135633, '322.078613', '10.136940', '134.004807', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135639', 1135639, '288.849091', '17.952721', '161.725601', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135643', 1135643, '286.915314', '19.626829', '172.441101', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135645', 1135645, '295.765594', '16.383280', '167.437195', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1135646', 1135646, '318.979004', '13.831220', '155.957001', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1135647', 1135647, '290.314087', '17.922770', '159.804199', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1135651', 1135651, '-262.056305', '55.970860', '36.748020', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135671', 1135671, '-462.059692', '64.698357', '68.829857', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1135673', 1135673, '-398.458893', '51.156910', '68.804077', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83602, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1135685', 1135685, '-418.844910', '58.274151', '-34.409142', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135687', 1135687, '-520.153870', '65.239517', '61.102520', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80888, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1135688', 1135688, '-508.781586', '65.293297', '40.634731', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81432, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1135931', 1135931, '272.581390', '23.939560', '195.025894', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135933', 1135933, '241.474594', '24.000601', '179.914902', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135937', 1135937, '-101.839104', '-40.043732', '299.745911', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1135938', 1135938, '-105.816902', '-40.028461', '306.239807', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1135939', 1135939, '-90.198776', '-40.129551', '324.673096', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1135940', 1135940, '-94.585022', '-40.032150', '311.676514', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1135941', 1135941, '-114.854698', '-40.054981', '302.937286', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135942', 1135942, '-97.734077', '-40.054981', '304.310608', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135943', 1135943, '-102.695999', '-40.032539', '320.445892', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1135944', 1135944, '-83.087273', '-39.867889', '327.616211', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162337', 1162337, '283.977112', '-6.509701', '-148.452805', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162338', 1162338, '281.871399', '-6.690229', '-150.039703', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162341', 1162341, '315.751801', '-4.718813', '-109.327103', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162344', 1162344, '309.980103', '1.983368', '92.979958', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162345', 1162345, '337.067413', '3.266761', '71.050873', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162348', 1162348, '130.357803', '-6.759793', '57.419651', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162351', 1162351, '222.430695', '-7.827925', '-60.441029', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162352', 1162352, '227.527206', '-7.187046', '-66.727753', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162353', 1162353, '203.082306', '-7.339636', '-68.925049', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162354', 1162354, '221.484604', '-7.400672', '-64.011642', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162358', 1162358, '-19.657080', '0.269221', '-140.150803', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1162368', 1162368, '112.853699', '-26.954611', '251.195801', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162369', 1162369, '89.158417', '-24.246630', '236.957306', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162371', 1162371, '217.547806', '-31.967699', '395.895294', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162374', 1162374, '-2.485424', '-31.687981', '451.364502', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162376', 1162376, '-10.696620', '-34.134480', '443.381287', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162378', 1162378, '-23.636271', '-35.911461', '462.485596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162380', 1162380, '-61.417610', '-36.118149', '490.745300', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162384', 1162384, '-4.128872', '-28.294901', '327.096588', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1162385', 1162385, '-48.920349', '-35.910400', '310.262909', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1162386', 1162386, '-66.916382', '-32.083370', '343.644196', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1162387', 1162387, '-65.420998', '-31.630421', '353.013306', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1162390', 1162390, '-298.542786', '20.650921', '132.768707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162391', 1162391, '-294.392303', '20.060690', '130.388306', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162392', 1162392, '-296.020508', '20.999870', '168.359299', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162393', 1162393, '-297.016907', '20.876789', '122.239998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162394', 1162394, '-208.026505', '3.601872', '2.164479', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162398', 1162398, '-396.566711', '63.980961', '-218.615997', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1162399', 1162399, '-347.955994', '66.968529', '-220.251999', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1162402', 1162402, '-291.152710', '61.247379', '-168.828796', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1162403', 1162403, '-351.183289', '63.740372', '-153.645599', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162412', 1162412, '-365.503204', '62.324249', '-85.497841', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162413', 1162413, '-365.240814', '62.204288', '-87.690971', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162416', 1162416, '-353.685791', '63.380310', '-149.922501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1162426', 1162426, '-501.091003', '65.293297', '90.318100', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1162427', 1162427, '-534.918823', '65.381104', '43.912449', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81160, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1180878', 1180878, '104.639297', '-8.000016', '-91.168152', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1180879', 1180879, '105.168701', '-8.000016', '-94.222618', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1180880', 1180880, '106.210297', '-8.000016', '-96.527153', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1183451', 1183451, '104.347603', '-8.000016', '-88.522499', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1183452', 1183452, '101.512100', '-8.064646', '-97.812950', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1183453', 1183453, '100.580399', '-8.000016', '-95.459229', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1183454', 1183454, '99.803108', '-8.184623', '-92.716454', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1183455', 1183455, '99.192757', '-8.361253', '-89.878258', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234346, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1183456', 1183456, '96.327393', '-8.500061', '-99.385361', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1183458', 1183458, '95.550194', '-8.460118', '-96.840134', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1183459', 1183459, '94.825958', '-8.500061', '-93.978119', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1183460', 1183460, '94.179993', '-8.500061', '-90.982887', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233264, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(226, 'e0003', 'bnpc1408325', 1408325, '107.492897', '15.984340', '-270.054596', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1408329', 1408329, '119.554398', '17.410500', '-259.693298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1408332', 1408332, '111.600800', '16.549120', '-248.298096', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1408334', 1408334, '117.813103', '17.697479', '-247.780807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1408341', 1408341, '111.814400', '16.758829', '-244.880096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1408351', 1408351, '86.796638', '15.940370', '-262.601105', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1408352', 1408352, '68.921707', '16.132620', '-262.037811', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1408353', 1408353, '68.168861', '16.760660', '-264.307190', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1408357', 1408357, '72.243088', '10.935070', '-243.492706', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1408358', 1408358, '87.101822', '15.245950', '-260.648010', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221122, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410560', 1410560, '103.350998', '14.389260', '-254.875107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410688', 1410688, '50.217388', '6.559038', '-223.468399', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410689', 1410689, '39.352970', '4.053384', '-182.513199', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410690', 1410690, '37.860909', '3.934789', '-183.153900', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410691', 1410691, '55.661430', '4.710185', '-183.981201', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1410693', 1410693, '-1.083989', '1.339663', '-188.567398', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219478, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1410694', 1410694, '0.474049', '1.531124', '-191.204697', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219206, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1410695', 1410695, '8.437746', '1.980624', '-176.756195', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218934, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1410696', 1410696, '-15.013690', '1.551492', '-198.619598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218662, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1410698', 1410698, '7.450444', '1.514552', '-190.764694', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410699', 1410699, '8.438234', '3.222636', '-146.234497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410700', 1410700, '14.477130', '3.104484', '-138.479904', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410701', 1410701, '16.068541', '3.373573', '-139.535202', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217574, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1410703', 1410703, '-15.113390', '3.146425', '-233.722000', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217302, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1410704', 1410704, '-4.948251', '4.778366', '-234.155304', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217030, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1410705', 1410705, '8.210199', '5.748120', '-247.337402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1410707', 1410707, '9.591916', '5.570471', '-251.132996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216498, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410708', 1410708, '5.815275', '5.237663', '-249.501099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216226, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410709', 1410709, '-9.906527', '3.594761', '-217.097595', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215954, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410712', 1410712, '-13.648660', '3.344659', '-231.383408', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215682, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410714', 1410714, '-30.136610', '0.909592', '-224.200897', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1410715', 1410715, '48.355789', '9.194451', '-243.366196', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1410716', 1410716, '74.908539', '4.285552', '-211.076706', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1410851', 1410851, '88.732697', '4.082766', '-185.738998', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215138, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410853', 1410853, '130.975204', '4.971314', '-185.109497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214866, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410976', 1410976, '131.470093', '2.068069', '-173.581100', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214594, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410977', 1410977, '107.495903', '0.653863', '-168.558304', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214322, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410978', 1410978, '142.190598', '1.204836', '-160.400803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214050, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410979', 1410979, '148.032898', '0.649221', '-123.475403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213778, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410982', 1410982, '166.648804', '-1.181116', '-137.457901', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213506, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410983', 1410983, '178.145996', '-1.608972', '-140.621307', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213228, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1410984', 1410984, '168.844696', '2.701761', '-163.503296', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212962, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410990', 1410990, '199.114899', '-0.803801', '-174.853195', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212684, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1410996', 1410996, '202.197205', '-1.697314', '-172.655899', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212418, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410998', 1410998, '239.098404', '-2.190103', '-187.159805', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212146, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1410999', 1410999, '221.515396', '-6.264487', '-154.155502', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211874, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411000', 1411000, '227.837204', '-8.126032', '-125.948700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211602, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411003', 1411003, '174.579300', '-1.892151', '-102.278099', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411004', 1411004, '182.699707', '-4.339209', '-88.384857', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211058, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411005', 1411005, '161.154007', '4.078132', '-169.399704', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411032', 1411032, '271.173798', '-9.203460', '-119.877403', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411034', 1411034, '330.082886', '-2.640436', '-152.968796', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173790, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411036', 1411036, '305.867188', '-2.983790', '-188.262894', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411037', 1411037, '302.815399', '-3.417479', '-190.063507', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411038', 1411038, '283.192108', '-6.780017', '-171.401596', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411042', 1411042, '287.338715', '-5.114256', '-195.320007', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411049', 1411049, '276.640594', '-8.026556', '-141.155594', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411065', 1411065, '308.725311', '-4.528103', '-80.785583', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411066', 1411066, '311.802795', '-5.117999', '-76.683037', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411069', 1411069, '291.112213', '-5.409167', '-79.667397', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411071', 1411071, '346.714203', '-3.206666', '-41.466160', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411078', 1411078, '264.779999', '-11.621630', '-65.637466', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183878, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411084', 1411084, '234.546997', '-11.793010', '-2.134793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183606, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411085', 1411085, '250.625107', '-8.387555', '28.634951', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183334, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411086', 1411086, '313.420288', '-6.097115', '16.095341', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183038, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411087', 1411087, '314.703308', '-5.599903', '20.012140', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182766, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411119', 1411119, '309.285095', '2.975462', '97.764503', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182494, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411120', 1411120, '326.314087', '2.426137', '90.012917', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182222, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411121', 1411121, '371.612488', '7.304699', '55.979481', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411124', 1411124, '375.810211', '7.175481', '51.219879', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411135', 1411135, '420.071991', '5.244238', '-35.509991', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411136', 1411136, '417.919312', '5.091386', '-39.660309', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411137', 1411137, '425.005402', '6.439638', '-41.263420', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411148', 1411148, '449.318512', '32.509201', '-8.551085', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170556, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411152', 1411152, '505.440613', '42.969250', '-25.847120', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170284, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411155', 1411155, '511.920410', '44.121750', '-42.307079', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171644, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411157', 1411157, '502.891510', '43.241459', '-46.006001', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171372, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411159', 1411159, '481.475494', '41.105301', '-9.940406', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171100, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411160', 1411160, '484.982300', '41.536228', '-12.749530', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171916, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411162', 1411162, '201.709000', '-7.309118', '-73.014473', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181134, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411163', 1411163, '206.805496', '-9.964188', '-16.037279', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180862, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411164', 1411164, '183.550705', '-8.560358', '-4.379386', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180590, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411167', 1411167, '127.300301', '-5.901662', '12.460290', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180318, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411170', 1411170, '92.851097', '-4.928711', '4.867581', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180046, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411171', 1411171, '127.489098', '-7.126010', '58.609852', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179774, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411173', 1411173, '216.815399', '-9.170719', '-44.144390', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411174', 1411174, '218.066605', '-9.475899', '-42.282791', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411176', 1411176, '184.252594', '-8.621394', '-0.259450', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411178', 1411178, '102.749901', '-11.800030', '112.244499', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411179', 1411179, '107.205597', '-7.793041', '74.349869', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411180', 1411180, '84.061897', '-6.851347', '16.464439', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411181', 1411181, '84.336563', '-6.698757', '13.137970', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411182', 1411182, '275.292297', '23.606110', '190.161697', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411186', 1411186, '288.694397', '21.579050', '187.354996', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177344, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411187', 1411187, '286.440796', '21.978689', '190.167206', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177072, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411193', 1411193, '237.018204', '23.458019', '156.614304', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176800, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411197', 1411197, '211.473099', '23.453070', '169.805405', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176528, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411198', 1411198, '209.800598', '23.457560', '211.348297', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176256, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411202', 1411202, '205.811798', '24.000139', '204.175003', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175984, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411203', 1411203, '226.011993', '23.536930', '175.448105', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175712, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411206', 1411206, '227.024994', '24.063431', '228.666702', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175440, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411207', 1411207, '224.858200', '23.422550', '230.009598', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175168, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411208', 1411208, '234.736603', '23.544621', '214.365707', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411210', 1411210, '233.020493', '23.453070', '214.312897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411213', 1411213, '213.946701', '23.453070', '226.459106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411214', 1411214, '211.749405', '23.453070', '228.168106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411218', 1411218, '228.444595', '23.457581', '165.045898', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411220', 1411220, '382.833496', '13.565220', '79.972481', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159876, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411222', 1411222, '374.288513', '12.161390', '84.031380', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158516, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411223', 1411223, '409.964111', '18.326040', '60.501968', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159604, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411225', 1411225, '411.001709', '26.138660', '123.399696', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158788, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411227', 1411227, '436.179108', '32.211750', '101.823402', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159060, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411228', 1411228, '439.383514', '32.761070', '98.649529', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157972, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411233', 1411233, '-58.666859', '-4.080153', '-116.513397', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134082, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411234', 1411234, '-111.996201', '6.549166', '-145.525208', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411235', 1411235, '-123.994698', '12.085680', '-163.495407', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411236', 1411236, '-120.946297', '10.817430', '-167.745193', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411237', 1411237, '-179.948700', '2.732331', '-103.572197', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1411238', 1411238, '-212.568405', '1.504992', '-84.178993', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97676, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(226, 'e0003', 'bnpc1411240', 1411240, '-212.756607', '1.846313', '-94.163452', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96316, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(226, 'e0003', 'bnpc1411241', 1411241, '-214.172699', '1.359615', '-82.278023', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96044, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(226, 'e0003', 'bnpc1411242', 1411242, '-213.856293', '1.439267', '-83.871033', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96588, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(226, 'e0003', 'bnpc1411244', 1411244, '-193.905304', '2.125694', '-41.069290', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97948, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(226, 'e0003', 'bnpc1411253', 1411253, '-56.382130', '-4.928711', '-94.529694', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411254', 1411254, '-20.293131', '-2.590379', '-100.341103', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411255', 1411255, '-23.246990', '0.393718', '-138.153305', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411256', 1411256, '-59.128750', '0.758792', '-164.202393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411655', 1411655, '-92.954361', '1.786075', '-122.393898', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411656', 1411656, '-93.869904', '1.736482', '-119.067497', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411657', 1411657, '-109.805397', '6.718060', '-150.029800', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411658', 1411658, '-176.756607', '2.961861', '-114.443398', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1411659', 1411659, '-205.790604', '2.068845', '-61.951530', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412058', 1412058, '-196.154800', '1.939114', '-25.589430', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412059', 1412059, '-163.822601', '0.087921', '-11.411790', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412062', 1412062, '71.492859', '-11.893120', '161.389404', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412463', 1412463, '107.728401', '-8.259025', '159.304703', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412464', 1412464, '108.796501', '-7.985859', '156.375000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412465', 1412465, '45.309830', '-13.145570', '164.612595', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412467', 1412467, '86.263412', '-10.238450', '166.918396', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412470', 1412470, '43.860840', '-19.453880', '194.128098', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412471', 1412471, '40.686970', '-20.436541', '199.194107', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412474', 1412474, '83.274986', '-19.705959', '207.342194', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412475', 1412475, '56.498798', '-24.125010', '265.742401', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412476', 1412476, '56.595661', '-23.666790', '269.184387', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412477', 1412477, '67.313408', '-23.280479', '279.101715', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412478', 1412478, '130.256897', '-28.458679', '285.610504', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412480', 1412480, '84.874817', '-11.151300', '170.539902', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412482', 1412482, '48.863239', '-15.723400', '175.131393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412483', 1412483, '91.596550', '-15.216650', '191.087204', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412484', 1412484, '40.536888', '-24.919319', '239.885193', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412486', 1412486, '12.541730', '-30.409491', '274.885712', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412488', 1412488, '84.885887', '-24.795959', '238.330597', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412489', 1412489, '100.537003', '-25.090691', '289.606689', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412890', 1412890, '192.974106', '-32.093040', '371.993805', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412891', 1412891, '174.770096', '-30.985760', '392.154999', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412892', 1412892, '169.164200', '-29.940310', '393.395111', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412893', 1412893, '172.161407', '-30.924379', '389.056885', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412894', 1412894, '171.285507', '-29.285271', '402.230988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412895', 1412895, '154.779907', '-26.129629', '405.514008', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412896', 1412896, '168.913696', '-28.561871', '440.527588', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412897', 1412897, '173.811401', '-24.163700', '462.640015', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412898', 1412898, '172.581100', '-23.212021', '466.157715', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412900', 1412900, '157.804596', '-31.533340', '347.603088', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412901', 1412901, '181.335403', '-32.472290', '364.442596', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412902', 1412902, '173.037506', '-29.813890', '400.369385', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412903', 1412903, '215.503098', '-32.150810', '397.756897', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412904', 1412904, '151.140594', '-25.314760', '448.172699', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1412905', 1412905, '174.771194', '-22.925610', '465.693207', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413304', 1413304, '-10.375770', '-30.070101', '357.174011', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120482, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1413305', 1413305, '-73.187973', '-29.638651', '377.182007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120210, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1413306', 1413306, '7.099501', '-28.323009', '389.698700', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119938, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1413307', 1413307, '-25.474409', '-30.239300', '288.173004', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413309', 1413309, '2.871708', '-26.996679', '314.962891', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413310', 1413310, '-43.682961', '-31.251160', '365.171295', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413311', 1413311, '-60.904331', '-32.109970', '348.252411', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413312', 1413312, '-26.264040', '-32.967579', '411.424805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413711', 1413711, '1.843092', '-32.621689', '440.420288', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413712', 1413712, '-47.684052', '-34.975368', '436.820007', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413713', 1413713, '-62.874069', '-35.826691', '451.367706', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413714', 1413714, '-36.040771', '-30.235821', '405.258087', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413715', 1413715, '-77.531143', '-35.740108', '463.920013', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413716', 1413716, '-81.834183', '-35.561951', '465.537415', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413717', 1413717, '-81.132263', '-36.687901', '482.108704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413718', 1413718, '-64.000313', '-36.181229', '492.846497', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413719', 1413719, '-45.209900', '-36.768280', '469.442810', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413721', 1413721, '-49.479870', '-31.658331', '420.700195', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413723', 1413723, '-61.146591', '-34.546021', '439.197601', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413724', 1413724, '-12.636190', '-34.818890', '433.701904', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413725', 1413725, '-21.261789', '-35.776421', '463.813293', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1413726', 1413726, '-80.766037', '-35.860481', '467.917786', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1414923', 1414923, '-251.624496', '8.046767', '9.209213', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1414924', 1414924, '-237.355103', '14.172800', '56.681469', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1414925', 1414925, '-240.865097', '13.064570', '51.144550', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1414928', 1414928, '-261.738007', '16.472500', '59.800060', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1414929', 1414929, '-271.273499', '19.264000', '95.431259', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1414931', 1414931, '-299.224915', '20.999870', '171.197403', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1414932', 1414932, '-335.657013', '21.199930', '166.262405', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1414935', 1414935, '-333.186493', '21.314899', '161.005798', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1414936', 1414936, '-351.155914', '21.194731', '192.767197', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1414938', 1414938, '-239.843002', '7.295271', '0.194433', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1415337', 1415337, '-263.631592', '17.193020', '61.247459', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1415339', 1415339, '-340.596497', '21.199930', '161.368500', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1415340', 1415340, '-332.306000', '21.000000', '208.378098', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1415341', 1415341, '-328.043915', '21.000000', '211.118393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1415342', 1415342, '-292.652802', '20.981110', '203.265396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1415343', 1415343, '-87.174072', '-39.921982', '291.489105', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1415344', 1415344, '-112.985397', '-40.020420', '312.799713', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1415345', 1415345, '-86.737244', '-40.184792', '302.023285', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1415346', 1415346, '-116.616600', '-40.014709', '309.506805', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1415347', 1415347, '-244.678497', '66.147812', '-179.125702', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1415348', 1415348, '-241.352005', '66.788689', '-178.362701', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1415352', 1415352, '-351.735809', '67.765259', '-226.093002', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1415353', 1415353, '-354.085602', '67.313278', '-222.043106', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1415354', 1415354, '-354.115387', '66.529556', '-254.235596', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1415358', 1415358, '-429.221008', '60.624039', '-145.159103', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1415359', 1415359, '-431.571014', '61.023251', '-141.100204', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1415360', 1415360, '-409.323303', '61.264919', '-120.927803', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67022, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(226, 'e0003', 'bnpc1415361', 1415361, '-290.298706', '60.229500', '-115.695396', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1415364', 1415364, '-313.710297', '62.882381', '-46.982571', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1415365', 1415365, '-308.186493', '62.943420', '-50.370079', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72208, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1415367', 1415367, '-304.768494', '62.180470', '-99.076874', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72480, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1415368', 1415368, '-275.257507', '60.807152', '-84.214577', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71664, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1415375', 1415375, '-262.012695', '62.577202', '-39.993938', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1415376', 1415376, '-417.990387', '64.377762', '-51.102509', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1415377', 1415377, '-416.159302', '65.476410', '-55.924358', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1415378', 1415378, '-446.097504', '57.907940', '-22.476589', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1415379', 1415379, '-454.154297', '61.631142', '-28.213980', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1415381', 1415381, '-285.852814', '61.458679', '25.148211', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1415382', 1415382, '-414.267212', '60.471451', '-98.405472', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1415383', 1415383, '-462.152802', '62.699409', '-106.490501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1415384', 1415384, '-465.866913', '62.824699', '-107.035797', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1416355', 1416355, '184.649399', '-7.461709', '-54.703640', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173518, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc1418012', 1418012, '397.388092', '18.876289', '87.758537', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149848, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc1418013', 1418013, '272.692596', '-2.411928', '61.854092', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150120, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154901', 2154901, '-288.593994', '59.581390', '-121.735901', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64604, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2154903', 2154903, '-303.822388', '59.830570', '-130.571503', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2154910', 2154910, '-290.943787', '61.814331', '-175.341400', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64876, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2154912', 2154912, '-384.725800', '64.377808', '-230.792694', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2154914', 2154914, '-416.247894', '61.594559', '-135.801102', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2154915', 2154915, '-397.116089', '56.778770', '-87.632607', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2154916', 2154916, '-408.031494', '53.104481', '35.133572', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2154917', 2154917, '-274.891388', '62.760250', '-48.600040', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2154925', 2154925, '-365.255188', '56.015820', '61.905800', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2154932', 2154932, '-452.140106', '63.523258', '-235.614594', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92276, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154933', 2154933, '-486.564514', '58.060532', '-222.186707', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154938', 2154938, '-449.027313', '55.863232', '-205.401703', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91732, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154939', 2154939, '-453.788086', '56.259960', '-203.845306', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91460, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154940', 2154940, '-449.607086', '55.100281', '-200.518799', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91188, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154941', 2154941, '-459.128693', '64.652428', '-264.026886', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154943', 2154943, '-483.543213', '58.182598', '-215.136993', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90112, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154944', 2154944, '-488.316101', '67.415604', '-265.598907', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154945', 2154945, '-487.007385', '67.617432', '-267.616608', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90916, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154950', 2154950, '-508.114197', '73.937157', '-289.616486', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154952', 2154952, '-505.210999', '72.800743', '-287.708893', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154954', 2154954, '-475.800293', '75.099243', '-316.311890', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88486, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154959', 2154959, '-474.076904', '71.450668', '-300.198914', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154963', 2154963, '-481.180389', '74.270866', '-319.393005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88752, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154965', 2154965, '-509.328613', '51.460609', '-230.011002', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154966', 2154966, '-530.510376', '48.020088', '-245.654999', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87670, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154968', 2154968, '-550.774414', '46.775639', '-245.014099', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154969', 2154969, '-546.684998', '46.860470', '-244.251205', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154970', 2154970, '-545.647400', '50.522579', '-203.540100', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154971', 2154971, '-547.356384', '51.163448', '-199.786407', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154973', 2154973, '-572.310486', '49.567921', '-226.453506', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90644, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154974', 2154974, '-564.080322', '50.297001', '-211.993607', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154976', 2154976, '-508.251099', '57.374981', '-255.303207', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154978', 2154978, '-533.645081', '43.546291', '-230.397507', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2154980', 2154980, '-468.316010', '57.494301', '-212.252502', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2154982', 2154982, '-485.247803', '68.405968', '-274.754211', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2154983', 2154983, '-505.135406', '73.043167', '-290.313904', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2154985', 2154985, '-528.526672', '48.142170', '-244.495300', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2154986', 2154986, '-568.407227', '50.556568', '-214.304596', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320574', 2320574, '261.921387', '1.753539', '-223.409698', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210786, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320575', 2320575, '261.238495', '0.534709', '-243.419296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320576', 2320576, '263.797699', '1.764011', '-223.470901', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320577', 2320577, '259.453186', '1.043279', '-240.840607', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320579', 2320579, '274.919800', '-1.072963', '-256.170593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209698, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320580', 2320580, '300.060089', '-0.888014', '-307.572510', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320581', 2320581, '324.245514', '-1.093548', '-288.072113', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320582', 2320582, '298.274811', '-0.855762', '-304.993805', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320583', 2320583, '325.011292', '-1.286943', '-316.835388', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208610, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320584', 2320584, '287.788513', '-0.475198', '-298.277313', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208338, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320585', 2320585, '329.843903', '-0.745502', '-290.159698', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320586', 2320586, '325.924103', '-0.928046', '-285.067993', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320587', 2320587, '327.193207', '-1.286943', '-313.833496', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207522, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320588', 2320588, '337.177185', '0.441468', '-264.191803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207250, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320589', 2320589, '332.682892', '0.959346', '-254.439896', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206978, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320590', 2320590, '329.305206', '0.991071', '-252.106293', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206706, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320591', 2320591, '304.253815', '-0.643113', '-258.978912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320596', 2320596, '346.493591', '-0.483981', '-328.131287', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206162, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320597', 2320597, '302.790710', '-1.010156', '-352.830505', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320598', 2320598, '273.957489', '-0.689871', '-328.818512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205618, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320599', 2320599, '268.469910', '-0.593068', '-327.086395', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205346, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320600', 2320600, '267.525513', '-0.806307', '-329.538208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205074, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320601', 2320601, '276.737091', '0.547026', '-314.840912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320610', 2320610, '288.781494', '-1.187131', '-281.665588', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320612', 2320612, '330.290802', '-1.286943', '-344.531311', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320617', 2320617, '92.850220', '-10.902450', '173.235596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320637', 2320637, '-108.605698', '-30.528610', '272.296295', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320638', 2320638, '-138.649902', '-23.382610', '264.698212', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320639', 2320639, '-99.474327', '-30.263571', '271.854614', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320641', 2320641, '-170.286606', '-27.619471', '297.813995', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320642', 2320642, '-171.781998', '-27.505461', '288.445007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320643', 2320643, '-165.769897', '-27.707670', '293.053192', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320645', 2320645, '-125.383400', '-25.040100', '360.402802', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320646', 2320646, '-137.475906', '-27.672729', '336.516113', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320647', 2320647, '-141.819901', '-30.193661', '309.942688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320649', 2320649, '-59.102539', '-28.549570', '296.388702', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320650', 2320650, '277.147400', '-31.644880', '389.827209', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320651', 2320651, '250.690399', '-30.350241', '408.346588', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106362, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320652', 2320652, '274.666290', '-31.273550', '391.993988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320654', 2320654, '299.640686', '-31.632290', '402.348511', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320655', 2320655, '300.434814', '-32.791679', '411.978302', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320656', 2320656, '342.732788', '-31.784590', '408.346588', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320658', 2320658, '308.735687', '-32.272881', '398.214600', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320659', 2320659, '329.910309', '-31.601860', '408.307800', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320660', 2320660, '332.175415', '-31.647480', '410.657013', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320661', 2320661, '344.838593', '-31.113190', '440.115906', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320664', 2320664, '144.316299', '-22.573250', '513.925293', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320665', 2320665, '141.166702', '-21.478600', '518.533508', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320666', 2320666, '165.008896', '-23.196131', '497.355591', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320667', 2320667, '137.956802', '-21.858990', '489.646698', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103642, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320668', 2320668, '130.324295', '-19.810080', '417.345490', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320669', 2320669, '98.407799', '-20.697760', '221.536407', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320671', 2320671, '97.314743', '-11.800020', '101.237198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320675', 2320675, '135.972794', '-11.800140', '133.207794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320678', 2320678, '185.468796', '-11.800210', '106.268402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320683', 2320683, '188.220001', '-11.825790', '62.851860', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320688', 2320688, '201.678406', '-11.795270', '23.117371', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320694', 2320694, '260.142914', '-12.002980', '-90.756157', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320695', 2320695, '258.451996', '-12.002920', '-92.319710', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320696', 2320696, '257.085999', '-12.006830', '-154.938705', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320697', 2320697, '264.474091', '-12.313630', '-187.969193', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320721', 2320721, '396.475098', '20.645411', '107.225098', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159332, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320722', 2320722, '419.413391', '27.114370', '102.443001', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158244, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320725', 2320725, '-159.887802', '18.109520', '-68.195572', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320727', 2320727, '-170.536102', '27.551260', '-85.891403', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320728', 2320728, '-170.885803', '27.966640', '-89.178688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320732', 2320732, '-547.753174', '19.485781', '-191.943298', 30, 0, 0, 0, 2, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63894, 1, 0, 0, 0, 0, 0, 4302234, 0, 0), +(226, 'e0003', 'bnpc2320790', 2320790, '-439.475098', '48.996670', '43.930679', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320791', 2320791, '-432.144196', '49.318508', '-4.165760', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2320793', 2320793, '-242.034393', '58.664711', '38.845100', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320794', 2320794, '-206.227997', '57.382519', '52.006420', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320797', 2320797, '-193.570099', '74.743111', '21.367661', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320800', 2320800, '-238.635895', '62.272018', '25.375710', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2320801', 2320801, '-219.805405', '67.608017', '9.079071', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2341782', 2341782, '345.014008', '-1.078350', '-177.896896', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2341783', 2341783, '319.296997', '-0.849605', '-171.347198', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2341784', 2341784, '292.707397', '-6.651216', '-123.136101', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2341785', 2341785, '347.310486', '6.679530', '84.092422', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2341786', 2341786, '354.267487', '5.193762', '60.841671', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2341787', 2341787, '348.283203', '3.086715', '49.707630', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2603191', 2603191, '256.015594', '-11.793030', '-185.891006', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164850, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2603192', 2603192, '260.232605', '-11.793140', '-180.095505', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164578, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612552', 2612552, '252.195404', '-11.793090', '-145.885406', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164306, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612553', 2612553, '254.433395', '-11.793010', '-113.328796', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164034, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612554', 2612554, '258.838715', '-11.793140', '-73.879280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163762, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612555', 2612555, '233.580307', '-11.793010', '-18.570280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163490, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612556', 2612556, '216.695099', '-11.793000', '8.959249', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163218, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612557', 2612557, '212.512299', '-11.795270', '12.741240', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162946, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612559', 2612559, '120.048798', '-11.800060', '124.326401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162680, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612561', 2612561, '191.515900', '-11.856310', '51.102409', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162408, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612562', 2612562, '189.768997', '-11.800210', '71.478256', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162136, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612563', 2612563, '192.239395', '-11.800030', '91.385788', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161864, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612564', 2612564, '179.480606', '-11.800260', '106.735802', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161592, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612565', 2612565, '165.069794', '-11.800630', '119.881798', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161320, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612566', 2612566, '146.988297', '-11.800000', '126.311401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161048, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612569', 2612569, '132.474792', '-11.800090', '139.979294', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160776, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612570', 2612570, '250.133804', '-11.793030', '-55.898849', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160498, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612571', 2612571, '205.980301', '-11.772920', '33.134300', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160226, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612573', 2612573, '421.064514', '24.757450', '78.823257', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2612574', 2612574, '428.320709', '31.721590', '124.805603', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157428, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2615184', 2615184, '360.341705', '-32.028728', '435.294006', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2615186', 2615186, '375.478699', '-32.089771', '448.966095', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2615187', 2615187, '382.955597', '-31.998211', '440.878815', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc2615503', 2615503, '253.211594', '-11.793080', '-161.360504', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154514, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc2615504', 2615504, '253.937607', '-11.793030', '-68.861298', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154242, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3693097', 3693097, '-224.085602', '1.055553', '-69.316994', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(226, 'e0003', 'bnpc3693102', 3693102, '-195.941101', '2.945007', '-104.081802', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96860, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(226, 'e0003', 'bnpc3693103', 3693103, '-189.283005', '2.362727', '-83.005783', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97404, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(226, 'e0003', 'bnpc3693105', 3693105, '-210.620300', '1.998901', '-96.299683', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95500, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(226, 'e0003', 'bnpc3693109', 3693109, '-195.513901', '2.216981', '-40.186169', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95228, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(226, 'e0003', 'bnpc3693111', 3693111, '-200.096695', '2.060742', '-67.256340', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(226, 'e0003', 'bnpc3693121', 3693121, '368.459503', '-32.364429', '413.199005', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3693136', 3693136, '242.206406', '-30.411280', '402.182007', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3693138', 3693138, '225.451996', '-28.488640', '423.605713', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3693140', 3693140, '215.350494', '-32.486500', '387.777496', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3693173', 3693173, '-508.842590', '40.237991', '-79.606361', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3693174', 3693174, '-516.899414', '40.146439', '-74.967621', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3693175', 3693175, '-514.549500', '40.207470', '-77.103882', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85228, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3693176', 3693176, '-520.866821', '40.146439', '-64.255783', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3693177', 3693177, '-515.685120', '40.359970', '-54.677021', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3693178', 3693178, '-503.929199', '41.000938', '-56.107471', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3693179', 3693179, '-483.658691', '45.245129', '-60.343559', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3693180', 3693180, '-481.533905', '45.933941', '-62.817669', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3693183', 3693183, '-378.957794', '51.132931', '52.109509', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3693184', 3693184, '-397.512787', '49.301849', '10.055650', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3693185', 3693185, '-433.121094', '49.318531', '34.558170', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3693188', 3693188, '-322.396393', '57.338970', '-6.726664', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65686, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3693623', 3693623, '-184.619797', '78.429970', '42.778721', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3693624', 3693624, '-191.994202', '77.183746', '37.510250', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72746, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3694403', 3694403, '-314.266113', '63.832611', '57.746510', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3742079', 3742079, '-530.733887', '65.311684', '98.466423', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3742133', 3742133, '-526.186829', '65.311691', '102.647400', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3742194', 3742194, '48.050610', '-11.800030', '-40.915428', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153976, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3742195', 3742195, '22.187790', '-11.800000', '-69.750504', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153704, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3742196', 3742196, '15.168640', '-11.800000', '-75.762558', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153432, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3742197', 3742197, '6.348711', '-11.800040', '-110.540199', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153160, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3742198', 3742198, '-54.153049', '-3.500003', '-186.530106', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152888, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3742199', 3742199, '-50.919399', '-3.500001', '-182.895996', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152616, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3742200', 3742200, '-69.779549', '-3.500144', '-196.820496', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152344, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3742201', 3742201, '-62.272110', '-3.500066', '-207.843399', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152072, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3742202', 3742202, '2.735321', '-11.800110', '-122.937599', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151782, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3742203', 3742203, '-6.886642', '-3.500000', '-135.990402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3742204', 3742204, '-6.586641', '-3.500000', '-139.267899', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3742205', 3742205, '-36.719379', '-3.500000', '-180.416794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150966, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3742206', 3742206, '-48.687111', '-3.500072', '-207.096298', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150694, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3746465', 3746465, '-208.691696', '52.495350', '-42.669102', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71120, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3746466', 3746466, '-219.824799', '58.286751', '-60.483898', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3746467', 3746467, '-215.491898', '57.635231', '-71.491089', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70576, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3869502', 3869502, '125.699600', '25.160120', '-311.621185', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41108, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(226, 'e0003', 'bnpc3869509', 3869509, '-307.502899', '63.448620', '-285.687714', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40842, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(226, 'e0003', 'bnpc3869525', 3869525, '-206.130997', '53.564651', '-126.977600', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40564, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(226, 'e0003', 'bnpc3869531', 3869531, '96.403351', '-6.334397', '-121.433502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40298, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(226, 'e0003', 'bnpc3869540', 3869540, '164.007095', '-6.013201', '-52.486290', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.750000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40020, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(226, 'e0003', 'bnpc3869598', 3869598, '-4.837158', '-7.919495', '-22.201900', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39760, 5, 0, 20, 0, 0, 30055, 0, 0, 0), +(226, 'e0003', 'bnpc3869604', 3869604, '85.465698', '-6.089244', '60.991131', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39482, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(226, 'e0003', 'bnpc3869607', 3869607, '14.362120', '-8.102512', '100.498901', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39204, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(226, 'e0003', 'bnpc3877513', 3877513, '121.019203', '24.917931', '-304.463287', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204518, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc3884907', 3884907, '-419.228607', '55.416000', '66.506737', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3897658', 3897658, '117.021400', '25.101040', '-311.604492', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204258, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc3898007', 3898007, '132.524597', '24.948450', '-305.562012', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203974, 9, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(226, 'e0003', 'bnpc4083772', 4083772, '-327.757690', '21.357790', '204.228699', 58, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 5782, 1, 0, 0, 0, 0, 0, 4083771, 0, 0), +(226, 'e0003', 'bnpc4083778', 4083778, '-297.044800', '21.140360', '151.049896', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 8174, 1, 0, 0, 0, 0, 0, 4083775, 0, 0), +(226, 'e0003', 'bnpc4083795', 4083795, '-327.840088', '21.103210', '206.835907', 58, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6054, 1, 0, 0, 0, 0, 0, 4083794, 0, 0), +(226, 'e0003', 'bnpc4083796', 4083796, '-296.744812', '21.145109', '151.349899', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7662, 1, 0, 0, 0, 0, 0, 4083797, 0, 0), +(226, 'e0003', 'bnpc4083798', 4083798, '-296.444794', '21.149870', '151.649902', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7278, 1, 0, 0, 0, 0, 0, 4083799, 0, 0), +(226, 'e0003', 'bnpc4083800', 4083800, '-296.144806', '21.154619', '151.949905', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6894, 1, 0, 0, 0, 0, 0, 4083801, 0, 0), +(226, 'e0003', 'bnpc4083802', 4083802, '-295.844788', '21.159370', '152.249893', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6510, 1, 0, 0, 0, 0, 0, 4083803, 0, 0), +(226, 'e0003', 'bnpc4083871', 4083871, '127.641701', '-6.332520', '-100.389198', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38544, 8, 0, 0, 4295658, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4295672', 4295672, '132.951797', '-6.332520', '-100.114502', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37512, 8, 0, 0, 4295661, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4295673', 4295673, '137.910706', '-6.438695', '-96.608414', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37240, 8, 0, 0, 4295662, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4295675', 4295675, '126.695297', '-6.948534', '-90.459633', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36968, 8, 0, 0, 4295663, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4295677', 4295677, '126.418900', '-6.971872', '-84.529358', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36696, 8, 0, 0, 4295664, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4296957', 4296957, '95.628906', '-2.029270', '-42.382439', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35816, 1, 0, 0, 2280260, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4296958', 4296958, '98.693558', '-2.029731', '-43.942860', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35544, 1, 0, 0, 2280261, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4296959', 4296959, '101.467598', '-2.005454', '-46.176739', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35272, 1, 0, 0, 2280262, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4296960', 4296960, '104.146896', '-1.968804', '-48.332958', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35000, 1, 0, 0, 2280263, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302206', 4302206, '-555.148071', '29.067560', '-230.785706', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302207', 4302207, '-516.437683', '22.056881', '-221.606796', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302208', 4302208, '-524.244812', '24.477020', '-253.274597', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302209', 4302209, '-527.577820', '24.719191', '-254.932404', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302212', 4302212, '-582.818420', '21.723471', '-238.845596', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302213', 4302213, '-596.266602', '20.622200', '-226.349106', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302214', 4302214, '-579.272827', '21.076719', '-214.966003', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302215', 4302215, '-581.780823', '21.842831', '-241.897293', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302216', 4302216, '-528.772888', '19.922779', '-195.839096', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61374, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302217', 4302217, '-537.197327', '20.139130', '-199.348495', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302218', 4302218, '-563.208191', '18.867491', '-186.546005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302219', 4302219, '-527.765808', '20.129919', '-200.682007', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302220', 4302220, '-569.817627', '10.940670', '-130.235794', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302221', 4302221, '-617.120605', '21.896610', '-197.436493', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302222', 4302222, '-575.432983', '11.001710', '-129.716995', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302223', 4302223, '-568.810608', '10.910160', '-133.318100', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302225', 4302225, '-502.711792', '17.279470', '-157.029495', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59204, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302226', 4302226, '-496.089386', '16.799740', '-160.630707', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58938, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302228', 4302228, '-481.979004', '18.189381', '-229.549103', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302229', 4302229, '-555.941528', '25.463579', '-260.210693', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4302351', 4302351, '-572.925293', '18.257090', '-181.740707', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57718, 1, 0, 0, 0, 0, 0, 4302260, 0, 0), +(226, 'e0003', 'bnpc4302353', 4302353, '-513.667175', '23.842480', '-245.333893', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57446, 1, 0, 0, 0, 0, 0, 4302268, 0, 0), +(226, 'e0003', 'bnpc4333043', 4333043, '-309.205597', '57.338970', '-10.110600', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(226, 'e0003', 'bnpc4333385', 4333385, '-348.321503', '67.616417', '-233.774200', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4510293', 4510293, '213.253204', '-32.025242', '324.145386', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38950, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(226, 'e0003', 'bnpc4621046', 4621046, '370.051086', '-32.295422', '411.821198', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42124, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(226, 'e0003', 'bnpc4621047', 4621047, '-538.803589', '50.907551', '-203.075394', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41858, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1132780', 1132780, '42.705971', '6.489012', '-222.119598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132784', 1132784, '43.994171', '7.081282', '-226.261307', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132785', 1132785, '46.368141', '6.532326', '-222.363800', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230902, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132786', 1132786, '50.249649', '8.663927', '-237.583603', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132810', 1132810, '119.142403', '17.274370', '-264.585907', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132815', 1132815, '53.141479', '4.367238', '-208.718597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132818', 1132818, '57.950279', '4.701855', '-181.906006', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132819', 1132819, '53.380199', '3.647015', '-170.941803', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132823', 1132823, '85.892982', '4.386182', '-186.633102', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132827', 1132827, '136.440002', '-0.215091', '-142.126297', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132829', 1132829, '139.586502', '1.436886', '-162.906296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132833', 1132833, '144.692596', '1.594073', '-161.313507', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132834', 1132834, '169.345306', '-0.575563', '-143.321701', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132835', 1132835, '132.885803', '4.471908', '-182.040894', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132836', 1132836, '127.652000', '2.679112', '-179.060898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132837', 1132837, '133.402802', '5.498395', '-185.220093', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132842', 1132842, '104.130501', '4.751109', '-199.651596', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132988', 1132988, '145.939301', '0.761501', '-119.501801', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132990', 1132990, '165.896698', '-0.582151', '-142.284103', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132991', 1132991, '196.646301', '-2.798964', '-155.795898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132992', 1132992, '159.011398', '0.196450', '-113.407997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226012, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1132993', 1132993, '162.856598', '-0.357008', '-115.116997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225740, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133000', 1133000, '202.288803', '-2.206049', '-168.963196', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225468, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133001', 1133001, '223.772705', '-6.852091', '-140.217407', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225196, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133002', 1133002, '206.683395', '-2.759299', '-171.221497', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224924, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133005', 1133005, '231.146698', '-5.044106', '-178.307693', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224652, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133007', 1133007, '242.902496', '-0.494766', '-191.458496', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224380, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133008', 1133008, '239.977493', '-0.588080', '-191.828400', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224108, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133010', 1133010, '221.392303', '-6.460419', '-138.050598', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223836, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133022', 1133022, '332.788513', '-3.345333', '-151.251495', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201534, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133023', 1133023, '298.603699', '-6.332541', '-125.749603', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133029', 1133029, '302.693298', '-3.341390', '-184.143005', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133031', 1133031, '328.386993', '-0.505648', '-187.936401', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133032', 1133032, '342.892487', '-1.328422', '-175.218201', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133035', 1133035, '358.327515', '-2.255364', '-175.310898', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133036', 1133036, '335.507294', '0.561625', '-194.418793', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133042', 1133042, '439.946808', '10.149250', '-108.177101', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169468, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133044', 1133044, '458.584900', '14.997390', '-90.379593', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169740, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133047', 1133047, '463.401215', '25.778530', '-35.324680', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168380, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133049', 1133049, '445.243591', '31.812080', '-9.685579', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168652, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133052', 1133052, '486.745514', '31.609249', '-44.177990', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168924, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133053', 1133053, '487.618011', '31.024900', '-55.958771', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170012, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133054', 1133054, '483.304291', '30.900890', '-51.161331', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172188, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133056', 1133056, '482.511993', '23.910801', '-88.545013', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173276, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133057', 1133057, '480.679291', '24.104330', '-120.189201', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169196, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133063', 1133063, '504.435913', '29.146271', '-83.562149', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173004, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133064', 1133064, '482.169495', '24.010910', '-92.475502', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172732, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133065', 1133065, '459.642914', '24.454941', '-39.719559', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172460, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133066', 1133066, '453.938690', '26.000799', '-33.810230', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170828, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133070', 1133070, '351.512787', '3.052480', '46.861389', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133071', 1133071, '341.298492', '3.983801', '67.704231', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133072', 1133072, '348.626495', '0.976962', '28.015940', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133073', 1133073, '342.183502', '0.098491', '27.298340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133077', 1133077, '309.071411', '-2.609340', '63.065491', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133080', 1133080, '281.574707', '-7.184652', '26.169170', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133098', 1133098, '289.254913', '-5.168305', '48.585239', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133100', 1133100, '291.498688', '-5.368438', '47.821369', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133126', 1133126, '-82.030632', '1.519239', '-141.488693', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148770, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133128', 1133128, '-77.317497', '1.083344', '-136.644608', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148498, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133130', 1133130, '-63.375290', '0.643326', '-166.887497', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148226, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133131', 1133131, '-64.313164', '0.965167', '-162.181503', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147954, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133132', 1133132, '-75.591331', '1.176651', '-142.404297', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147682, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133138', 1133138, '-33.189919', '-4.914308', '-94.149628', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147410, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133148', 1133148, '86.244072', '-19.783070', '210.247406', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133152', 1133152, '70.510750', '-17.727341', '188.296799', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133156', 1133156, '56.609531', '-22.226370', '292.790710', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133163', 1133163, '25.970390', '-24.061230', '233.649994', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133165', 1133165, '37.231960', '-26.765560', '260.079498', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133167', 1133167, '36.484268', '-25.833570', '242.542099', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133172', 1133172, '94.585983', '-24.244490', '288.477509', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133176', 1133176, '98.126083', '-23.363501', '294.977814', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133177', 1133177, '85.597298', '-27.953020', '268.263000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133178', 1133178, '89.747749', '-28.194380', '266.065704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133179', 1133179, '141.949905', '-28.936390', '333.222290', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133181', 1133181, '160.046402', '-31.802570', '350.789795', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133185', 1133185, '164.906906', '-32.018280', '333.485504', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133186', 1133186, '146.226807', '-28.810591', '357.818298', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133187', 1133187, '196.479996', '-32.228100', '370.754303', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133189', 1133189, '179.687897', '-32.476631', '364.163086', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133193', 1133193, '213.929794', '-29.694580', '421.080688', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133194', 1133194, '210.157394', '-29.179230', '422.919312', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133195', 1133195, '202.300293', '-31.331381', '415.743286', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133196', 1133196, '197.350098', '-27.568890', '432.363586', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133197', 1133197, '127.580299', '-21.390261', '452.635986', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133198', 1133198, '140.825500', '-23.697309', '449.881714', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133199', 1133199, '140.459198', '-23.605749', '454.489899', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133202', 1133202, '12.397950', '-27.619690', '294.880493', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133205', 1133205, '-18.143021', '-24.734921', '265.369598', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133206', 1133206, '-12.771850', '-24.094040', '262.958710', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133207', 1133207, '-9.199866', '-28.976500', '329.645294', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140338, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133209', 1133209, '-28.712330', '-27.396271', '280.689209', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140066, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133235', 1133235, '-294.825012', '66.698837', '-219.308807', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94446, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133239', 1133239, '-293.659912', '67.460083', '-222.491806', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94174, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133246', 1133246, '-302.510101', '60.959740', '-159.319504', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93902, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133248', 1133248, '-302.700409', '62.132381', '-166.402496', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133255', 1133255, '-356.364685', '65.308533', '-258.518585', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133257', 1133257, '-369.039490', '65.567993', '-232.715393', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133258', 1133258, '-392.416290', '67.276978', '-249.713898', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1133287', 1133287, '197.283798', '-8.773984', '-27.176359', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133291', 1133291, '211.352707', '-8.651912', '-43.106781', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133293', 1133293, '157.305206', '-7.888961', '-17.929399', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133294', 1133294, '157.244202', '-8.163623', '-11.917340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133298', 1133298, '120.449799', '-4.840655', '13.528090', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1133303', 1133303, '104.203796', '-7.003938', '47.562321', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135577', 1135577, '335.133911', '-4.725379', '-24.794729', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196916, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135582', 1135582, '371.054596', '0.844982', '-35.208488', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196644, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135586', 1135586, '374.433105', '1.702958', '-25.284241', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135591', 1135591, '345.784607', '-2.975556', '-32.761169', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135593', 1135593, '332.478790', '-3.372291', '3.097534', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135605', 1135605, '395.773193', '2.548209', '-44.693722', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135606', 1135606, '415.025085', '5.625315', '-64.068764', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135607', 1135607, '388.509888', '0.304810', '-66.453087', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135612', 1135612, '394.000214', '3.556523', '-87.144318', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135613', 1135613, '375.936493', '0.686609', '-85.923592', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135614', 1135614, '343.831512', '-5.020265', '-80.094650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135616', 1135616, '409.009888', '5.209702', '-112.078003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135617', 1135617, '417.517700', '5.755183', '-68.232597', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135618', 1135618, '412.284607', '5.636008', '-106.424400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135619', 1135619, '406.314209', '5.571515', '-103.380302', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135624', 1135624, '386.668915', '4.336706', '-103.087303', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135625', 1135625, '364.309509', '0.784262', '-125.017197', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135627', 1135627, '359.853485', '-2.578822', '-152.483398', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135628', 1135628, '350.999207', '-2.118987', '-128.300003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135629', 1135629, '316.613586', '8.015758', '128.187897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135632', 1135632, '323.190002', '9.736116', '132.826904', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135633', 1135633, '322.078613', '10.136940', '134.004807', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135639', 1135639, '288.849091', '17.952721', '161.725601', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135643', 1135643, '286.915314', '19.626829', '172.441101', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135645', 1135645, '295.765594', '16.383280', '167.437195', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1135646', 1135646, '318.979004', '13.831220', '155.957001', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1135647', 1135647, '290.314087', '17.922770', '159.804199', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1135651', 1135651, '-262.056305', '55.970860', '36.748020', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135671', 1135671, '-462.059692', '64.698357', '68.829857', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1135673', 1135673, '-398.458893', '51.156910', '68.804077', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83602, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1135685', 1135685, '-418.844910', '58.274151', '-34.409142', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135687', 1135687, '-520.153870', '65.239517', '61.102520', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80888, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1135688', 1135688, '-508.781586', '65.293297', '40.634731', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81432, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1135931', 1135931, '272.581390', '23.939560', '195.025894', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135933', 1135933, '241.474594', '24.000601', '179.914902', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135937', 1135937, '-101.839104', '-40.043732', '299.745911', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1135938', 1135938, '-105.816902', '-40.028461', '306.239807', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1135939', 1135939, '-90.198776', '-40.129551', '324.673096', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1135940', 1135940, '-94.585022', '-40.032150', '311.676514', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1135941', 1135941, '-114.854698', '-40.054981', '302.937286', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135942', 1135942, '-97.734077', '-40.054981', '304.310608', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135943', 1135943, '-102.695999', '-40.032539', '320.445892', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1135944', 1135944, '-83.087273', '-39.867889', '327.616211', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162337', 1162337, '283.977112', '-6.509701', '-148.452805', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162338', 1162338, '281.871399', '-6.690229', '-150.039703', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162341', 1162341, '315.751801', '-4.718813', '-109.327103', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162344', 1162344, '309.980103', '1.983368', '92.979958', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162345', 1162345, '337.067413', '3.266761', '71.050873', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162348', 1162348, '130.357803', '-6.759793', '57.419651', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162351', 1162351, '222.430695', '-7.827925', '-60.441029', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162352', 1162352, '227.527206', '-7.187046', '-66.727753', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162353', 1162353, '203.082306', '-7.339636', '-68.925049', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162354', 1162354, '221.484604', '-7.400672', '-64.011642', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162358', 1162358, '-19.657080', '0.269221', '-140.150803', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1162368', 1162368, '112.853699', '-26.954611', '251.195801', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162369', 1162369, '89.158417', '-24.246630', '236.957306', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162371', 1162371, '217.547806', '-31.967699', '395.895294', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162374', 1162374, '-2.485424', '-31.687981', '451.364502', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162376', 1162376, '-10.696620', '-34.134480', '443.381287', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162378', 1162378, '-23.636271', '-35.911461', '462.485596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162380', 1162380, '-61.417610', '-36.118149', '490.745300', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162384', 1162384, '-4.128872', '-28.294901', '327.096588', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1162385', 1162385, '-48.920349', '-35.910400', '310.262909', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1162386', 1162386, '-66.916382', '-32.083370', '343.644196', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1162387', 1162387, '-65.420998', '-31.630421', '353.013306', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1162390', 1162390, '-298.542786', '20.650921', '132.768707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162391', 1162391, '-294.392303', '20.060690', '130.388306', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162392', 1162392, '-296.020508', '20.999870', '168.359299', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162393', 1162393, '-297.016907', '20.876789', '122.239998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134638, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(227, 'e0004', 'bnpc1162394', 1162394, '-208.026505', '3.601872', '2.164479', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162398', 1162398, '-396.566711', '63.980961', '-218.615997', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1162399', 1162399, '-347.955994', '66.968529', '-220.251999', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1162402', 1162402, '-291.152710', '61.247379', '-168.828796', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1162403', 1162403, '-351.183289', '63.740372', '-153.645599', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162412', 1162412, '-365.503204', '62.324249', '-85.497841', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162413', 1162413, '-365.240814', '62.204288', '-87.690971', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162416', 1162416, '-353.685791', '63.380310', '-149.922501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1162426', 1162426, '-501.091003', '65.293297', '90.318100', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1162427', 1162427, '-534.918823', '65.381104', '43.912449', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81160, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1180878', 1180878, '104.639297', '-8.000016', '-91.168152', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1180879', 1180879, '105.168701', '-8.000016', '-94.222618', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1180880', 1180880, '106.210297', '-8.000016', '-96.527153', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1183451', 1183451, '104.347603', '-8.000016', '-88.522499', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1183452', 1183452, '101.512100', '-8.064646', '-97.812950', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1183453', 1183453, '100.580399', '-8.000016', '-95.459229', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1183454', 1183454, '99.803108', '-8.184623', '-92.716454', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1183455', 1183455, '99.192757', '-8.361253', '-89.878258', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234346, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1183456', 1183456, '96.327393', '-8.500061', '-99.385361', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1183458', 1183458, '95.550194', '-8.460118', '-96.840134', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1183459', 1183459, '94.825958', '-8.500061', '-93.978119', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1183460', 1183460, '94.179993', '-8.500061', '-90.982887', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1408325', 1408325, '107.492897', '15.984340', '-270.054596', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1408329', 1408329, '119.554398', '17.410500', '-259.693298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1408332', 1408332, '111.600800', '16.549120', '-248.298096', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1408334', 1408334, '117.813103', '17.697479', '-247.780807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1408341', 1408341, '111.814400', '16.758829', '-244.880096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1408351', 1408351, '86.796638', '15.940370', '-262.601105', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1408352', 1408352, '68.921707', '16.132620', '-262.037811', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1408353', 1408353, '68.168861', '16.760660', '-264.307190', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1408357', 1408357, '72.243088', '10.935070', '-243.492706', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1408358', 1408358, '87.101822', '15.245950', '-260.648010', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221122, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410560', 1410560, '103.350998', '14.389260', '-254.875107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410688', 1410688, '50.217388', '6.559038', '-223.468399', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410689', 1410689, '39.352970', '4.053384', '-182.513199', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410690', 1410690, '37.860909', '3.934789', '-183.153900', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410691', 1410691, '55.661430', '4.710185', '-183.981201', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1410693', 1410693, '-1.083989', '1.339663', '-188.567398', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219478, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1410694', 1410694, '0.474049', '1.531124', '-191.204697', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219206, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1410695', 1410695, '8.437746', '1.980624', '-176.756195', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218934, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1410696', 1410696, '-15.013690', '1.551492', '-198.619598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218662, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1410698', 1410698, '7.450444', '1.514552', '-190.764694', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410699', 1410699, '8.438234', '3.222636', '-146.234497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410700', 1410700, '14.477130', '3.104484', '-138.479904', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410701', 1410701, '16.068541', '3.373573', '-139.535202', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217574, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1410703', 1410703, '-15.113390', '3.146425', '-233.722000', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217302, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1410704', 1410704, '-4.948251', '4.778366', '-234.155304', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217030, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1410705', 1410705, '8.210199', '5.748120', '-247.337402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1410707', 1410707, '9.591916', '5.570471', '-251.132996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216498, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410708', 1410708, '5.815275', '5.237663', '-249.501099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216226, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410709', 1410709, '-9.906527', '3.594761', '-217.097595', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215954, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410712', 1410712, '-13.648660', '3.344659', '-231.383408', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215682, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410714', 1410714, '-30.136610', '0.909592', '-224.200897', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1410715', 1410715, '48.355789', '9.194451', '-243.366196', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1410716', 1410716, '74.908539', '4.285552', '-211.076706', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1410851', 1410851, '88.732697', '4.082766', '-185.738998', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215138, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410853', 1410853, '130.975204', '4.971314', '-185.109497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214866, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410976', 1410976, '131.470093', '2.068069', '-173.581100', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214594, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410977', 1410977, '107.495903', '0.653863', '-168.558304', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214322, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410978', 1410978, '142.190598', '1.204836', '-160.400803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214050, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410979', 1410979, '148.032898', '0.649221', '-123.475403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213778, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410982', 1410982, '166.648804', '-1.181116', '-137.457901', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213506, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410983', 1410983, '178.145996', '-1.608972', '-140.621307', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213228, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1410984', 1410984, '168.844696', '2.701761', '-163.503296', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212962, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410990', 1410990, '199.114899', '-0.803801', '-174.853195', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212684, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1410996', 1410996, '202.197205', '-1.697314', '-172.655899', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212418, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410998', 1410998, '239.098404', '-2.190103', '-187.159805', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212146, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1410999', 1410999, '221.515396', '-6.264487', '-154.155502', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211874, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411000', 1411000, '227.837204', '-8.126032', '-125.948700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211602, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411003', 1411003, '174.579300', '-1.892151', '-102.278099', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411004', 1411004, '182.699707', '-4.339209', '-88.384857', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211058, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411005', 1411005, '161.154007', '4.078132', '-169.399704', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411032', 1411032, '271.173798', '-9.203460', '-119.877403', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411034', 1411034, '330.082886', '-2.640436', '-152.968796', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173790, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411036', 1411036, '305.867188', '-2.983790', '-188.262894', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411037', 1411037, '302.815399', '-3.417479', '-190.063507', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411038', 1411038, '283.192108', '-6.780017', '-171.401596', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411042', 1411042, '287.338715', '-5.114256', '-195.320007', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411049', 1411049, '276.640594', '-8.026556', '-141.155594', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411065', 1411065, '308.725311', '-4.528103', '-80.785583', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411066', 1411066, '311.802795', '-5.117999', '-76.683037', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411069', 1411069, '291.112213', '-5.409167', '-79.667397', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411071', 1411071, '346.714203', '-3.206666', '-41.466160', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411078', 1411078, '264.779999', '-11.621630', '-65.637466', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183878, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411084', 1411084, '234.546997', '-11.793010', '-2.134793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183606, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411085', 1411085, '250.625107', '-8.387555', '28.634951', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183334, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411086', 1411086, '313.420288', '-6.097115', '16.095341', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183038, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411087', 1411087, '314.703308', '-5.599903', '20.012140', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182766, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411119', 1411119, '309.285095', '2.975462', '97.764503', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182494, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411120', 1411120, '326.314087', '2.426137', '90.012917', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182222, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411121', 1411121, '371.612488', '7.304699', '55.979481', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411124', 1411124, '375.810211', '7.175481', '51.219879', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411135', 1411135, '420.071991', '5.244238', '-35.509991', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411136', 1411136, '417.919312', '5.091386', '-39.660309', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411137', 1411137, '425.005402', '6.439638', '-41.263420', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411148', 1411148, '449.318512', '32.509201', '-8.551085', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170556, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411152', 1411152, '505.440613', '42.969250', '-25.847120', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170284, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411155', 1411155, '511.920410', '44.121750', '-42.307079', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171644, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411157', 1411157, '502.891510', '43.241459', '-46.006001', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171372, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411159', 1411159, '481.475494', '41.105301', '-9.940406', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171100, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411160', 1411160, '484.982300', '41.536228', '-12.749530', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171916, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411162', 1411162, '201.709000', '-7.309118', '-73.014473', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181134, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411163', 1411163, '206.805496', '-9.964188', '-16.037279', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180862, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411164', 1411164, '183.550705', '-8.560358', '-4.379386', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180590, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411167', 1411167, '127.300301', '-5.901662', '12.460290', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180318, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411170', 1411170, '92.851097', '-4.928711', '4.867581', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180046, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411171', 1411171, '127.489098', '-7.126010', '58.609852', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179774, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411173', 1411173, '216.815399', '-9.170719', '-44.144390', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411174', 1411174, '218.066605', '-9.475899', '-42.282791', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411176', 1411176, '184.252594', '-8.621394', '-0.259450', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411178', 1411178, '102.749901', '-11.800030', '112.244499', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411179', 1411179, '107.205597', '-7.793041', '74.349869', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411180', 1411180, '84.061897', '-6.851347', '16.464439', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411181', 1411181, '84.336563', '-6.698757', '13.137970', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411182', 1411182, '275.292297', '23.606110', '190.161697', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411186', 1411186, '288.694397', '21.579050', '187.354996', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177344, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411187', 1411187, '286.440796', '21.978689', '190.167206', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177072, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411193', 1411193, '237.018204', '23.458019', '156.614304', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176800, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411197', 1411197, '211.473099', '23.453070', '169.805405', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176528, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411198', 1411198, '209.800598', '23.457560', '211.348297', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176256, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411202', 1411202, '205.811798', '24.000139', '204.175003', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175984, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411203', 1411203, '226.011993', '23.536930', '175.448105', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175712, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411206', 1411206, '227.024994', '24.063431', '228.666702', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175440, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411207', 1411207, '224.858200', '23.422550', '230.009598', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175168, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411208', 1411208, '234.736603', '23.544621', '214.365707', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411210', 1411210, '233.020493', '23.453070', '214.312897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411213', 1411213, '213.946701', '23.453070', '226.459106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411214', 1411214, '211.749405', '23.453070', '228.168106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411218', 1411218, '228.444595', '23.457581', '165.045898', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411220', 1411220, '382.833496', '13.565220', '79.972481', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159876, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411222', 1411222, '374.288513', '12.161390', '84.031380', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158516, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411223', 1411223, '409.964111', '18.326040', '60.501968', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159604, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411225', 1411225, '411.001709', '26.138660', '123.399696', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158788, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411227', 1411227, '436.179108', '32.211750', '101.823402', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159060, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411228', 1411228, '439.383514', '32.761070', '98.649529', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157972, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411233', 1411233, '-58.666859', '-4.080153', '-116.513397', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134082, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411234', 1411234, '-111.996201', '6.549166', '-145.525208', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411235', 1411235, '-123.994698', '12.085680', '-163.495407', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411236', 1411236, '-120.946297', '10.817430', '-167.745193', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411237', 1411237, '-179.948700', '2.732331', '-103.572197', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1411238', 1411238, '-212.568405', '1.504992', '-84.178993', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97676, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(227, 'e0004', 'bnpc1411240', 1411240, '-212.756607', '1.846313', '-94.163452', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96316, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(227, 'e0004', 'bnpc1411241', 1411241, '-214.172699', '1.359615', '-82.278023', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96044, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(227, 'e0004', 'bnpc1411242', 1411242, '-213.856293', '1.439267', '-83.871033', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96588, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(227, 'e0004', 'bnpc1411244', 1411244, '-193.905304', '2.125694', '-41.069290', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97948, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(227, 'e0004', 'bnpc1411253', 1411253, '-56.382130', '-4.928711', '-94.529694', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411254', 1411254, '-20.293131', '-2.590379', '-100.341103', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411255', 1411255, '-23.246990', '0.393718', '-138.153305', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411256', 1411256, '-59.128750', '0.758792', '-164.202393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411655', 1411655, '-92.954361', '1.786075', '-122.393898', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411656', 1411656, '-93.869904', '1.736482', '-119.067497', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411657', 1411657, '-109.805397', '6.718060', '-150.029800', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411658', 1411658, '-176.756607', '2.961861', '-114.443398', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1411659', 1411659, '-205.790604', '2.068845', '-61.951530', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412058', 1412058, '-196.154800', '1.939114', '-25.589430', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412059', 1412059, '-163.822601', '0.087921', '-11.411790', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412062', 1412062, '71.492859', '-11.893120', '161.389404', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412463', 1412463, '107.728401', '-8.259025', '159.304703', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412464', 1412464, '108.796501', '-7.985859', '156.375000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412465', 1412465, '45.309830', '-13.145570', '164.612595', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412467', 1412467, '86.263412', '-10.238450', '166.918396', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412470', 1412470, '43.860840', '-19.453880', '194.128098', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412471', 1412471, '40.686970', '-20.436541', '199.194107', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412474', 1412474, '83.274986', '-19.705959', '207.342194', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412475', 1412475, '56.498798', '-24.125010', '265.742401', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412476', 1412476, '56.595661', '-23.666790', '269.184387', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412477', 1412477, '67.313408', '-23.280479', '279.101715', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412478', 1412478, '130.256897', '-28.458679', '285.610504', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412480', 1412480, '84.874817', '-11.151300', '170.539902', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412482', 1412482, '48.863239', '-15.723400', '175.131393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412483', 1412483, '91.596550', '-15.216650', '191.087204', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412484', 1412484, '40.536888', '-24.919319', '239.885193', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412486', 1412486, '12.541730', '-30.409491', '274.885712', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412488', 1412488, '84.885887', '-24.795959', '238.330597', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412489', 1412489, '100.537003', '-25.090691', '289.606689', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412890', 1412890, '192.974106', '-32.093040', '371.993805', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412891', 1412891, '174.770096', '-30.985760', '392.154999', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412892', 1412892, '169.164200', '-29.940310', '393.395111', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412893', 1412893, '172.161407', '-30.924379', '389.056885', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412894', 1412894, '171.285507', '-29.285271', '402.230988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412895', 1412895, '154.779907', '-26.129629', '405.514008', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412896', 1412896, '168.913696', '-28.561871', '440.527588', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412897', 1412897, '173.811401', '-24.163700', '462.640015', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412898', 1412898, '172.581100', '-23.212021', '466.157715', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412900', 1412900, '157.804596', '-31.533340', '347.603088', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412901', 1412901, '181.335403', '-32.472290', '364.442596', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412902', 1412902, '173.037506', '-29.813890', '400.369385', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412903', 1412903, '215.503098', '-32.150810', '397.756897', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412904', 1412904, '151.140594', '-25.314760', '448.172699', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1412905', 1412905, '174.771194', '-22.925610', '465.693207', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413304', 1413304, '-10.375770', '-30.070101', '357.174011', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120482, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1413305', 1413305, '-73.187973', '-29.638651', '377.182007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120210, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1413306', 1413306, '7.099501', '-28.323009', '389.698700', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119938, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1413307', 1413307, '-25.474409', '-30.239300', '288.173004', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413309', 1413309, '2.871708', '-26.996679', '314.962891', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413310', 1413310, '-43.682961', '-31.251160', '365.171295', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413311', 1413311, '-60.904331', '-32.109970', '348.252411', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413312', 1413312, '-26.264040', '-32.967579', '411.424805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413711', 1413711, '1.843092', '-32.621689', '440.420288', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413712', 1413712, '-47.684052', '-34.975368', '436.820007', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413713', 1413713, '-62.874069', '-35.826691', '451.367706', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413714', 1413714, '-36.040771', '-30.235821', '405.258087', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413715', 1413715, '-77.531143', '-35.740108', '463.920013', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413716', 1413716, '-81.834183', '-35.561951', '465.537415', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413717', 1413717, '-81.132263', '-36.687901', '482.108704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413718', 1413718, '-64.000313', '-36.181229', '492.846497', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413719', 1413719, '-45.209900', '-36.768280', '469.442810', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413721', 1413721, '-49.479870', '-31.658331', '420.700195', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413723', 1413723, '-61.146591', '-34.546021', '439.197601', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413724', 1413724, '-12.636190', '-34.818890', '433.701904', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413725', 1413725, '-21.261789', '-35.776421', '463.813293', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1413726', 1413726, '-80.766037', '-35.860481', '467.917786', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1414923', 1414923, '-251.624496', '8.046767', '9.209213', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1414924', 1414924, '-237.355103', '14.172800', '56.681469', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1414925', 1414925, '-240.865097', '13.064570', '51.144550', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1414928', 1414928, '-261.738007', '16.472500', '59.800060', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1414929', 1414929, '-271.273499', '19.264000', '95.431259', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113422, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(227, 'e0004', 'bnpc1414931', 1414931, '-299.224915', '20.999870', '171.197403', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1414932', 1414932, '-335.657013', '21.199930', '166.262405', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1414935', 1414935, '-333.186493', '21.314899', '161.005798', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1414936', 1414936, '-351.155914', '21.194731', '192.767197', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1414938', 1414938, '-239.843002', '7.295271', '0.194433', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1415337', 1415337, '-263.631592', '17.193020', '61.247459', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1415339', 1415339, '-340.596497', '21.199930', '161.368500', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1415340', 1415340, '-332.306000', '21.000000', '208.378098', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1415341', 1415341, '-328.043915', '21.000000', '211.118393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1415342', 1415342, '-292.652802', '20.981110', '203.265396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1415343', 1415343, '-87.174072', '-39.921982', '291.489105', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1415344', 1415344, '-112.985397', '-40.020420', '312.799713', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1415345', 1415345, '-86.737244', '-40.184792', '302.023285', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1415346', 1415346, '-116.616600', '-40.014709', '309.506805', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1415347', 1415347, '-244.678497', '66.147812', '-179.125702', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1415348', 1415348, '-241.352005', '66.788689', '-178.362701', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1415352', 1415352, '-351.735809', '67.765259', '-226.093002', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1415353', 1415353, '-354.085602', '67.313278', '-222.043106', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1415354', 1415354, '-354.115387', '66.529556', '-254.235596', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1415358', 1415358, '-429.221008', '60.624039', '-145.159103', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1415359', 1415359, '-431.571014', '61.023251', '-141.100204', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1415360', 1415360, '-409.323303', '61.264919', '-120.927803', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1415361', 1415361, '-290.298706', '60.229500', '-115.695396', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1415364', 1415364, '-313.710297', '62.882381', '-46.982571', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1415365', 1415365, '-308.186493', '62.943420', '-50.370079', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72208, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1415367', 1415367, '-304.768494', '62.180470', '-99.076874', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72480, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1415368', 1415368, '-275.257507', '60.807152', '-84.214577', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71664, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1415375', 1415375, '-262.012695', '62.577202', '-39.993938', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1415376', 1415376, '-417.990387', '64.377762', '-51.102509', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1415377', 1415377, '-416.159302', '65.476410', '-55.924358', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1415378', 1415378, '-446.097504', '57.907940', '-22.476589', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1415379', 1415379, '-454.154297', '61.631142', '-28.213980', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1415381', 1415381, '-285.852814', '61.458679', '25.148211', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1415382', 1415382, '-414.267212', '60.471451', '-98.405472', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1415383', 1415383, '-462.152802', '62.699409', '-106.490501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1415384', 1415384, '-465.866913', '62.824699', '-107.035797', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1416355', 1416355, '184.649399', '-7.461709', '-54.703640', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173518, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc1418012', 1418012, '397.388092', '18.876289', '87.758537', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149848, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc1418013', 1418013, '272.692596', '-2.411928', '61.854092', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150120, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154901', 2154901, '-288.593994', '59.581390', '-121.735901', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64604, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2154903', 2154903, '-303.822388', '59.830570', '-130.571503', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2154910', 2154910, '-290.943787', '61.814331', '-175.341400', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64876, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2154912', 2154912, '-384.725800', '64.377808', '-230.792694', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2154914', 2154914, '-416.247894', '61.594559', '-135.801102', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2154915', 2154915, '-397.116089', '56.778770', '-87.632607', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2154916', 2154916, '-408.031494', '53.104481', '35.133572', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2154917', 2154917, '-274.891388', '62.760250', '-48.600040', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2154925', 2154925, '-365.255188', '56.015820', '61.905800', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2154932', 2154932, '-452.140106', '63.523258', '-235.614594', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92276, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154933', 2154933, '-486.564514', '58.060532', '-222.186707', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154938', 2154938, '-449.027313', '55.863232', '-205.401703', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91732, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154939', 2154939, '-453.788086', '56.259960', '-203.845306', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91460, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154940', 2154940, '-449.607086', '55.100281', '-200.518799', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91188, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154941', 2154941, '-459.128693', '64.652428', '-264.026886', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154943', 2154943, '-483.543213', '58.182598', '-215.136993', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90112, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154944', 2154944, '-488.316101', '67.415604', '-265.598907', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154945', 2154945, '-487.007385', '67.617432', '-267.616608', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90916, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154950', 2154950, '-508.114197', '73.937157', '-289.616486', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154952', 2154952, '-505.210999', '72.800743', '-287.708893', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154954', 2154954, '-475.800293', '75.099243', '-316.311890', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88486, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154959', 2154959, '-474.076904', '71.450668', '-300.198914', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154963', 2154963, '-481.180389', '74.270866', '-319.393005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88752, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154965', 2154965, '-509.328613', '51.460609', '-230.011002', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154966', 2154966, '-530.510376', '48.020088', '-245.654999', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87670, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154968', 2154968, '-550.774414', '46.775639', '-245.014099', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154969', 2154969, '-546.684998', '46.860470', '-244.251205', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154970', 2154970, '-545.647400', '50.522579', '-203.540100', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154971', 2154971, '-547.356384', '51.163448', '-199.786407', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154973', 2154973, '-572.310486', '49.567921', '-226.453506', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90644, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154974', 2154974, '-564.080322', '50.297001', '-211.993607', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154976', 2154976, '-508.251099', '57.374981', '-255.303207', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154978', 2154978, '-533.645081', '43.546291', '-230.397507', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2154980', 2154980, '-468.316010', '57.494301', '-212.252502', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2154982', 2154982, '-485.247803', '68.405968', '-274.754211', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2154983', 2154983, '-505.135406', '73.043167', '-290.313904', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2154985', 2154985, '-528.526672', '48.142170', '-244.495300', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2154986', 2154986, '-568.407227', '50.556568', '-214.304596', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320574', 2320574, '261.921387', '1.753539', '-223.409698', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210786, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320575', 2320575, '261.238495', '0.534709', '-243.419296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320576', 2320576, '263.797699', '1.764011', '-223.470901', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320577', 2320577, '259.453186', '1.043279', '-240.840607', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320579', 2320579, '274.919800', '-1.072963', '-256.170593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209698, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320580', 2320580, '300.060089', '-0.888014', '-307.572510', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320581', 2320581, '324.245514', '-1.093548', '-288.072113', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320582', 2320582, '298.274811', '-0.855762', '-304.993805', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320583', 2320583, '325.011292', '-1.286943', '-316.835388', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208610, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320584', 2320584, '287.788513', '-0.475198', '-298.277313', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208338, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320585', 2320585, '329.843903', '-0.745502', '-290.159698', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320586', 2320586, '325.924103', '-0.928046', '-285.067993', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320587', 2320587, '327.193207', '-1.286943', '-313.833496', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207522, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320588', 2320588, '337.177185', '0.441468', '-264.191803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207250, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320589', 2320589, '332.682892', '0.959346', '-254.439896', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206978, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320590', 2320590, '329.305206', '0.991071', '-252.106293', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206706, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320591', 2320591, '304.253815', '-0.643113', '-258.978912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320596', 2320596, '346.493591', '-0.483981', '-328.131287', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206162, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320597', 2320597, '302.790710', '-1.010156', '-352.830505', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320598', 2320598, '273.957489', '-0.689871', '-328.818512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205618, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320599', 2320599, '268.469910', '-0.593068', '-327.086395', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205346, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320600', 2320600, '267.525513', '-0.806307', '-329.538208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205074, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320601', 2320601, '276.737091', '0.547026', '-314.840912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320610', 2320610, '288.781494', '-1.187131', '-281.665588', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320612', 2320612, '330.290802', '-1.286943', '-344.531311', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320617', 2320617, '92.850220', '-10.902450', '173.235596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320637', 2320637, '-108.605698', '-30.528610', '272.296295', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320638', 2320638, '-138.649902', '-23.382610', '264.698212', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320639', 2320639, '-99.474327', '-30.263571', '271.854614', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320641', 2320641, '-170.286606', '-27.619471', '297.813995', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320642', 2320642, '-171.781998', '-27.505461', '288.445007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320643', 2320643, '-165.769897', '-27.707670', '293.053192', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320645', 2320645, '-125.383400', '-25.040100', '360.402802', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320646', 2320646, '-137.475906', '-27.672729', '336.516113', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320647', 2320647, '-141.819901', '-30.193661', '309.942688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320649', 2320649, '-59.102539', '-28.549570', '296.388702', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320650', 2320650, '277.147400', '-31.644880', '389.827209', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320651', 2320651, '250.690399', '-30.350241', '408.346588', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106362, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320652', 2320652, '274.666290', '-31.273550', '391.993988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320654', 2320654, '299.640686', '-31.632290', '402.348511', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320655', 2320655, '300.434814', '-32.791679', '411.978302', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320656', 2320656, '342.732788', '-31.784590', '408.346588', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320658', 2320658, '308.735687', '-32.272881', '398.214600', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320659', 2320659, '329.910309', '-31.601860', '408.307800', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320660', 2320660, '332.175415', '-31.647480', '410.657013', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320661', 2320661, '344.838593', '-31.113190', '440.115906', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320664', 2320664, '144.316299', '-22.573250', '513.925293', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320665', 2320665, '141.166702', '-21.478600', '518.533508', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320666', 2320666, '165.008896', '-23.196131', '497.355591', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320667', 2320667, '137.956802', '-21.858990', '489.646698', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103642, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320668', 2320668, '130.324295', '-19.810080', '417.345490', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320669', 2320669, '98.407799', '-20.697760', '221.536407', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320671', 2320671, '97.314743', '-11.800020', '101.237198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320675', 2320675, '135.972794', '-11.800140', '133.207794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320678', 2320678, '185.468796', '-11.800210', '106.268402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320683', 2320683, '188.220001', '-11.825790', '62.851860', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320688', 2320688, '201.678406', '-11.795270', '23.117371', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320694', 2320694, '260.142914', '-12.002980', '-90.756157', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320695', 2320695, '258.451996', '-12.002920', '-92.319710', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320696', 2320696, '257.085999', '-12.006830', '-154.938705', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320697', 2320697, '264.474091', '-12.313630', '-187.969193', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320721', 2320721, '396.475098', '20.645411', '107.225098', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159332, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320722', 2320722, '419.413391', '27.114370', '102.443001', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158244, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320725', 2320725, '-159.887802', '18.109520', '-68.195572', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320727', 2320727, '-170.536102', '27.551260', '-85.891403', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320728', 2320728, '-170.885803', '27.966640', '-89.178688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320732', 2320732, '-547.753174', '19.485781', '-191.943298', 30, 0, 0, 0, 2, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63894, 1, 0, 0, 0, 0, 0, 4302234, 0, 0), +(227, 'e0004', 'bnpc2320790', 2320790, '-439.475098', '48.996670', '43.930679', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320791', 2320791, '-432.144196', '49.318508', '-4.165760', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2320793', 2320793, '-242.034393', '58.664711', '38.845100', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320794', 2320794, '-206.227997', '57.382519', '52.006420', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320797', 2320797, '-193.570099', '74.743111', '21.367661', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320800', 2320800, '-238.635895', '62.272018', '25.375710', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2320801', 2320801, '-219.805405', '67.608017', '9.079071', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2341782', 2341782, '345.014008', '-1.078350', '-177.896896', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2341783', 2341783, '319.296997', '-0.849605', '-171.347198', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2341784', 2341784, '292.707397', '-6.651216', '-123.136101', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2341785', 2341785, '347.310486', '6.679530', '84.092422', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2341786', 2341786, '354.267487', '5.193762', '60.841671', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2341787', 2341787, '348.283203', '3.086715', '49.707630', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2603191', 2603191, '256.015594', '-11.793030', '-185.891006', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164850, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2603192', 2603192, '260.232605', '-11.793140', '-180.095505', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164578, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612552', 2612552, '252.195404', '-11.793090', '-145.885406', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164306, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612553', 2612553, '254.433395', '-11.793010', '-113.328796', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164034, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612554', 2612554, '258.838715', '-11.793140', '-73.879280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163762, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612555', 2612555, '233.580307', '-11.793010', '-18.570280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163490, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612556', 2612556, '216.695099', '-11.793000', '8.959249', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163218, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612557', 2612557, '212.512299', '-11.795270', '12.741240', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162946, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612559', 2612559, '120.048798', '-11.800060', '124.326401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162680, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612561', 2612561, '191.515900', '-11.856310', '51.102409', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162408, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612562', 2612562, '189.768997', '-11.800210', '71.478256', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162136, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612563', 2612563, '192.239395', '-11.800030', '91.385788', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161864, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612564', 2612564, '179.480606', '-11.800260', '106.735802', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161592, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612565', 2612565, '165.069794', '-11.800630', '119.881798', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161320, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612566', 2612566, '146.988297', '-11.800000', '126.311401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161048, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612569', 2612569, '132.474792', '-11.800090', '139.979294', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160776, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612570', 2612570, '250.133804', '-11.793030', '-55.898849', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160498, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612571', 2612571, '205.980301', '-11.772920', '33.134300', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160226, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612573', 2612573, '421.064514', '24.757450', '78.823257', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2612574', 2612574, '428.320709', '31.721590', '124.805603', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157428, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2615184', 2615184, '360.341705', '-32.028728', '435.294006', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2615186', 2615186, '375.478699', '-32.089771', '448.966095', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2615187', 2615187, '382.955597', '-31.998211', '440.878815', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc2615503', 2615503, '253.211594', '-11.793080', '-161.360504', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154514, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc2615504', 2615504, '253.937607', '-11.793030', '-68.861298', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154242, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3693097', 3693097, '-224.085602', '1.055553', '-69.316994', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(227, 'e0004', 'bnpc3693102', 3693102, '-195.941101', '2.945007', '-104.081802', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96860, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(227, 'e0004', 'bnpc3693103', 3693103, '-189.283005', '2.362727', '-83.005783', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97404, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(227, 'e0004', 'bnpc3693105', 3693105, '-210.620300', '1.998901', '-96.299683', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95500, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(227, 'e0004', 'bnpc3693109', 3693109, '-195.513901', '2.216981', '-40.186169', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95228, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(227, 'e0004', 'bnpc3693111', 3693111, '-200.096695', '2.060742', '-67.256340', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(227, 'e0004', 'bnpc3693121', 3693121, '368.459503', '-32.364429', '413.199005', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3693136', 3693136, '242.206406', '-30.411280', '402.182007', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3693138', 3693138, '225.451996', '-28.488640', '423.605713', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3693140', 3693140, '215.350494', '-32.486500', '387.777496', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3693173', 3693173, '-508.842590', '40.237991', '-79.606361', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3693174', 3693174, '-516.899414', '40.146439', '-74.967621', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3693175', 3693175, '-514.549500', '40.207470', '-77.103882', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85228, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3693176', 3693176, '-520.866821', '40.146439', '-64.255783', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3693177', 3693177, '-515.685120', '40.359970', '-54.677021', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3693178', 3693178, '-503.929199', '41.000938', '-56.107471', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3693179', 3693179, '-483.658691', '45.245129', '-60.343559', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3693180', 3693180, '-481.533905', '45.933941', '-62.817669', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3693183', 3693183, '-378.957794', '51.132931', '52.109509', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3693184', 3693184, '-397.512787', '49.301849', '10.055650', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3693185', 3693185, '-433.121094', '49.318531', '34.558170', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3693188', 3693188, '-322.396393', '57.338970', '-6.726664', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65686, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3693623', 3693623, '-184.619797', '78.429970', '42.778721', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3693624', 3693624, '-191.994202', '77.183746', '37.510250', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72746, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3694403', 3694403, '-314.266113', '63.832611', '57.746510', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3742079', 3742079, '-530.733887', '65.311684', '98.466423', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3742133', 3742133, '-526.186829', '65.311691', '102.647400', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3742194', 3742194, '48.050610', '-11.800030', '-40.915428', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153976, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3742195', 3742195, '22.187790', '-11.800000', '-69.750504', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153704, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3742196', 3742196, '15.168640', '-11.800000', '-75.762558', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153432, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3742197', 3742197, '6.348711', '-11.800040', '-110.540199', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153160, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3742198', 3742198, '-54.153049', '-3.500003', '-186.530106', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152888, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3742199', 3742199, '-50.919399', '-3.500001', '-182.895996', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152616, 3, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(227, 'e0004', 'bnpc3742200', 3742200, '-69.779549', '-3.500144', '-196.820496', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152344, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3742201', 3742201, '-62.272110', '-3.500066', '-207.843399', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152072, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3742202', 3742202, '2.735321', '-11.800110', '-122.937599', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151782, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3742203', 3742203, '-6.886642', '-3.500000', '-135.990402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3742204', 3742204, '-6.586641', '-3.500000', '-139.267899', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3742205', 3742205, '-36.719379', '-3.500000', '-180.416794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150966, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3742206', 3742206, '-48.687111', '-3.500072', '-207.096298', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150694, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3746465', 3746465, '-208.691696', '52.495350', '-42.669102', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71120, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3746466', 3746466, '-219.824799', '58.286751', '-60.483898', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3746467', 3746467, '-215.491898', '57.635231', '-71.491089', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70576, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3869502', 3869502, '125.699600', '25.160120', '-311.621185', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41108, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(227, 'e0004', 'bnpc3869509', 3869509, '-307.502899', '63.448620', '-285.687714', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40842, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(227, 'e0004', 'bnpc3869525', 3869525, '-206.130997', '53.564651', '-126.977600', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40564, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(227, 'e0004', 'bnpc3869531', 3869531, '96.403351', '-6.334397', '-121.433502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40298, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(227, 'e0004', 'bnpc3869540', 3869540, '164.007095', '-6.013201', '-52.486290', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.750000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40020, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(227, 'e0004', 'bnpc3869598', 3869598, '-4.837158', '-7.919495', '-22.201900', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39760, 5, 0, 20, 0, 0, 30055, 0, 0, 0), +(227, 'e0004', 'bnpc3869604', 3869604, '85.465698', '-6.089244', '60.991131', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39482, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(227, 'e0004', 'bnpc3869607', 3869607, '14.362120', '-8.102512', '100.498901', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39204, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(227, 'e0004', 'bnpc3877513', 3877513, '121.019203', '24.917931', '-304.463287', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204518, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc3884907', 3884907, '-419.228607', '55.416000', '66.506737', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3897658', 3897658, '117.021400', '25.101040', '-311.604492', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204258, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc3898007', 3898007, '132.524597', '24.948450', '-305.562012', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203974, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc4083772', 4083772, '-327.757690', '21.357790', '204.228699', 58, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 5782, 1, 0, 0, 0, 0, 0, 4083771, 0, 0), +(227, 'e0004', 'bnpc4083778', 4083778, '-297.044800', '21.140360', '151.049896', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 8174, 1, 0, 0, 0, 0, 0, 4083775, 0, 0), +(227, 'e0004', 'bnpc4083795', 4083795, '-327.840088', '21.103210', '206.835907', 58, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6054, 1, 0, 0, 0, 0, 0, 4083794, 0, 0), +(227, 'e0004', 'bnpc4083796', 4083796, '-296.744812', '21.145109', '151.349899', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7662, 1, 0, 0, 0, 0, 0, 4083797, 0, 0), +(227, 'e0004', 'bnpc4083798', 4083798, '-296.444794', '21.149870', '151.649902', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7278, 1, 0, 0, 0, 0, 0, 4083799, 0, 0), +(227, 'e0004', 'bnpc4083800', 4083800, '-296.144806', '21.154619', '151.949905', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6894, 1, 0, 0, 0, 0, 0, 4083801, 0, 0), +(227, 'e0004', 'bnpc4083802', 4083802, '-295.844788', '21.159370', '152.249893', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6510, 1, 0, 0, 0, 0, 0, 4083803, 0, 0), +(227, 'e0004', 'bnpc4083871', 4083871, '127.641701', '-6.332520', '-100.389198', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38544, 8, 0, 0, 4295658, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4295672', 4295672, '132.951797', '-6.332520', '-100.114502', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37512, 8, 0, 0, 4295661, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4295673', 4295673, '137.910706', '-6.438695', '-96.608414', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37240, 8, 0, 0, 4295662, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4295675', 4295675, '126.695297', '-6.948534', '-90.459633', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36968, 8, 0, 0, 4295663, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4295677', 4295677, '126.418900', '-6.971872', '-84.529358', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36696, 8, 0, 0, 4295664, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4296957', 4296957, '95.628906', '-2.029270', '-42.382439', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35816, 1, 0, 0, 2280260, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4296958', 4296958, '98.693558', '-2.029731', '-43.942860', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35544, 1, 0, 0, 2280261, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4296959', 4296959, '101.467598', '-2.005454', '-46.176739', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35272, 1, 0, 0, 2280262, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4296960', 4296960, '104.146896', '-1.968804', '-48.332958', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35000, 1, 0, 0, 2280263, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302206', 4302206, '-555.148071', '29.067560', '-230.785706', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302207', 4302207, '-516.437683', '22.056881', '-221.606796', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302208', 4302208, '-524.244812', '24.477020', '-253.274597', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302209', 4302209, '-527.577820', '24.719191', '-254.932404', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302212', 4302212, '-582.818420', '21.723471', '-238.845596', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302213', 4302213, '-596.266602', '20.622200', '-226.349106', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302214', 4302214, '-579.272827', '21.076719', '-214.966003', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302215', 4302215, '-581.780823', '21.842831', '-241.897293', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302216', 4302216, '-528.772888', '19.922779', '-195.839096', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61374, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302217', 4302217, '-537.197327', '20.139130', '-199.348495', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302218', 4302218, '-563.208191', '18.867491', '-186.546005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302219', 4302219, '-527.765808', '20.129919', '-200.682007', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302220', 4302220, '-569.817627', '10.940670', '-130.235794', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302221', 4302221, '-617.120605', '21.896610', '-197.436493', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302222', 4302222, '-575.432983', '11.001710', '-129.716995', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302223', 4302223, '-568.810608', '10.910160', '-133.318100', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302225', 4302225, '-502.711792', '17.279470', '-157.029495', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59204, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302226', 4302226, '-496.089386', '16.799740', '-160.630707', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58938, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302228', 4302228, '-481.979004', '18.189381', '-229.549103', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302229', 4302229, '-555.941528', '25.463579', '-260.210693', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4302351', 4302351, '-572.925293', '18.257090', '-181.740707', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57718, 1, 0, 0, 0, 0, 0, 4302260, 0, 0), +(227, 'e0004', 'bnpc4302353', 4302353, '-513.667175', '23.842480', '-245.333893', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57446, 1, 0, 0, 0, 0, 0, 4302268, 0, 0), +(227, 'e0004', 'bnpc4333043', 4333043, '-309.205597', '57.338970', '-10.110600', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(227, 'e0004', 'bnpc4333385', 4333385, '-348.321503', '67.616417', '-233.774200', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4510293', 4510293, '213.253204', '-32.025242', '324.145386', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38950, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(227, 'e0004', 'bnpc4621046', 4621046, '370.051086', '-32.295422', '411.821198', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42124, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(227, 'e0004', 'bnpc4621047', 4621047, '-538.803589', '50.907551', '-203.075394', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41858, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143752', 1143752, '468.733612', '-3.633345', '230.358597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161672, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143755', 1143755, '465.781586', '-3.677471', '229.602402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161400, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143766', 1143766, '444.779510', '-3.136452', '238.420898', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128760, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143773', 1143773, '465.263000', '-2.447129', '258.256592', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161128, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143778', 1143778, '428.447205', '-1.594615', '201.428604', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160856, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143785', 1143785, '418.397888', '-1.449695', '197.651093', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160584, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143787', 1143787, '419.881805', '-4.161774', '286.077789', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160312, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143790', 1143790, '437.705414', '-3.238991', '267.530212', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160040, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143793', 1143793, '423.775085', '-3.337628', '259.160889', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159768, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143797', 1143797, '424.763611', '-3.434183', '264.063385', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159496, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143811', 1143811, '449.264099', '-2.694139', '278.273193', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159224, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143813', 1143813, '447.361511', '-2.361451', '283.012695', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158952, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143833', 1143833, '324.665100', '-5.350893', '263.034088', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158680, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143834', 1143834, '326.416687', '-5.326731', '264.652008', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158408, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143836', 1143836, '228.076508', '-27.969830', '314.808807', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158142, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143844', 1143844, '226.947403', '-28.244499', '321.583801', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157870, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143846', 1143846, '232.074402', '-27.023769', '316.945099', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157598, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143852', 1143852, '245.166595', '-23.941450', '329.304901', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157326, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143853', 1143853, '243.701797', '-24.673880', '332.020996', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157054, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143858', 1143858, '238.841797', '-23.981850', '361.571594', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156782, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143859', 1143859, '234.742996', '-25.153990', '359.183594', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156510, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143860', 1143860, '184.706299', '-37.785229', '360.952393', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156238, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143861', 1143861, '217.364700', '-28.025049', '344.838593', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143862', 1143862, '218.412994', '-28.201860', '349.321411', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155966, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143865', 1143865, '215.228394', '-28.379271', '347.279999', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155694, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143866', 1143866, '185.345001', '-32.188919', '312.603790', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155422, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143868', 1143868, '188.006302', '-32.639091', '314.137390', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155150, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143873', 1143873, '209.412994', '-25.172079', '366.151306', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154878, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143875', 1143875, '178.562500', '-38.966068', '338.296814', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154606, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143876', 1143876, '144.823303', '-31.479410', '305.622894', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154334, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143877', 1143877, '146.196594', '-30.899561', '302.754211', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154062, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143878', 1143878, '152.851395', '-42.255760', '352.426392', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153790, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143879', 1143879, '149.193604', '-43.619991', '356.343506', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153518, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143881', 1143881, '158.525894', '-36.057110', '323.933685', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153246, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143882', 1143882, '163.927597', '-36.881100', '326.466705', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152974, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143885', 1143885, '159.594101', '-36.820061', '328.267303', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152702, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143886', 1143886, '172.482895', '-27.390930', '279.472900', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152430, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143887', 1143887, '176.999496', '-26.747681', '281.731201', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152158, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143889', 1143889, '171.282501', '-27.115330', '283.741486', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151886, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143891', 1143891, '197.201508', '-28.186390', '271.644287', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151614, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143892', 1143892, '200.589005', '-27.467010', '274.696106', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151342, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143895', 1143895, '197.110001', '-27.467581', '277.015503', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151070, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143897', 1143897, '246.082199', '-21.335920', '271.557007', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150798, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143900', 1143900, '229.912994', '-24.472389', '284.220306', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150526, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143904', 1143904, '243.488205', '-22.337280', '276.104187', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150254, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143905', 1143905, '237.018402', '-23.084021', '269.268188', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149982, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143907', 1143907, '242.685898', '-23.822359', '245.136795', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149710, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143911', 1143911, '224.510498', '-25.336050', '241.230103', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149438, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143915', 1143915, '241.148895', '-25.036400', '235.342697', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149166, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143916', 1143916, '236.107697', '-26.824610', '216.055893', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148894, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143919', 1143919, '246.995605', '-24.468109', '240.298096', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146718, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143920', 1143920, '265.723907', '-25.564400', '226.344604', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148622, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143921', 1143921, '265.719299', '-26.269621', '219.037994', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148350, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143923', 1143923, '268.421387', '-21.408449', '246.509399', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148078, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143924', 1143924, '264.054688', '-19.323090', '252.478806', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147806, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143925', 1143925, '295.377899', '-18.290230', '266.437103', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147534, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1143934', 1143934, '316.585999', '-16.832951', '187.871704', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143935', 1143935, '314.021301', '-17.296310', '192.256302', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143936', 1143936, '311.854492', '-17.875420', '189.936905', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143938', 1143938, '283.100586', '-25.497869', '192.706100', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143941', 1143941, '280.262390', '-25.619940', '193.316498', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143944', 1143944, '273.152496', '-20.649960', '128.760193', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110300, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143945', 1143945, '303.365509', '-8.872850', '95.128830', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143946', 1143946, '296.499603', '-11.734670', '103.927902', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109756, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143949', 1143949, '301.016296', '-10.037700', '103.164902', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110028, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143952', 1143952, '274.860687', '-13.992570', '103.746002', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143953', 1143953, '277.363190', '-13.962050', '102.250702', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143962', 1143962, '297.610199', '-23.044500', '220.886002', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143963', 1143963, '309.994110', '-18.136681', '184.117996', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143966', 1143966, '299.197113', '-21.964729', '223.815796', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143969', 1143969, '297.872894', '-12.140140', '107.895203', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143970', 1143970, '276.631500', '-19.656750', '126.440804', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143971', 1143971, '297.779785', '-22.690210', '161.913406', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98332, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143972', 1143972, '371.881592', '-6.723549', '84.641747', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98604, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143973', 1143973, '376.154114', '-6.318017', '85.862457', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97788, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143974', 1143974, '371.085114', '-5.840127', '88.055183', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98060, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143983', 1143983, '419.912994', '-4.654048', '77.439484', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98876, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143984', 1143984, '424.551697', '-3.646953', '81.803574', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99692, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143985', 1143985, '428.493103', '-1.675420', '69.168533', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143987', 1143987, '401.540802', '-6.912460', '58.247761', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143988', 1143988, '403.463715', '-6.369321', '60.898708', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99148, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143989', 1143989, '378.988312', '-7.187046', '68.955467', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99420, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143990', 1143990, '405.752197', '-6.460996', '59.106491', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97516, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143991', 1143991, '387.045013', '-4.837157', '93.705597', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97244, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1143998', 1143998, '390.177887', '-4.509761', '93.888512', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96972, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144003', 1144003, '223.302307', '-22.244350', '140.968201', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91864, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144004', 1144004, '217.578293', '-21.988300', '138.200897', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90504, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144007', 1144007, '185.015701', '-24.153931', '154.465500', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90232, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144008', 1144008, '179.410904', '-23.832951', '152.981903', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91592, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144009', 1144009, '167.197998', '-27.995230', '192.997803', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91320, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144011', 1144011, '177.798798', '-24.733610', '159.351395', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91048, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144015', 1144015, '138.902802', '-27.603621', '237.109894', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92680, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144017', 1144017, '88.530487', '-27.058380', '290.765411', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92136, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144019', 1144019, '84.896217', '-28.451370', '271.261688', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92408, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144027', 1144027, '-15.138880', '-52.068508', '438.953705', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144028', 1144028, '-12.361740', '-51.361629', '435.444214', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73126, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144030', 1144030, '-9.676152', '-51.078831', '436.725891', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144031', 1144031, '-21.414761', '-45.509689', '411.041412', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70950, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144042', 1144042, '9.536865', '-48.508480', '474.235107', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67964, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144043', 1144043, '3.205714', '-47.435299', '471.491486', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67420, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144045', 1144045, '-11.876680', '-52.218342', '458.182587', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68236, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144047', 1144047, '-30.001869', '-55.355400', '500.188385', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71222, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144049', 1144049, '-35.678230', '-53.471958', '498.265686', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144050', 1144050, '-16.922300', '-53.971210', '467.582214', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144051', 1144051, '-30.825859', '-54.086170', '495.671692', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144066', 1144066, '-215.322098', '-30.287540', '345.076813', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144067', 1144067, '-217.336304', '-30.232090', '345.381989', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72582, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144068', 1144068, '-241.359406', '-30.546400', '355.281891', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72854, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144074', 1144074, '-187.557999', '-30.827459', '327.431396', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144076', 1144076, '-189.083893', '-30.732161', '329.140411', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144079', 1144079, '-207.943893', '-30.040119', '327.783203', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144085', 1144085, '-207.568497', '-30.624901', '298.084900', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71494, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144088', 1144088, '-217.678604', '-29.217609', '281.772491', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144089', 1144089, '-232.330093', '-26.492390', '293.040802', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144090', 1144090, '-230.365494', '-26.618240', '295.168701', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144095', 1144095, '-236.490906', '-26.792789', '270.853088', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144102', 1144102, '-269.982300', '-15.041580', '257.233795', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88056, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144103', 1144103, '-256.205414', '-24.029810', '238.507599', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88328, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144108', 1144108, '-250.331604', '-26.539511', '245.353897', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87512, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144111', 1144111, '-247.374802', '-26.295010', '199.152298', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87784, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144115', 1144115, '-145.718704', '-44.456711', '245.994507', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89144, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144117', 1144117, '-194.954300', '-56.667259', '298.548615', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89688, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144124', 1144124, '-88.115013', '-50.887539', '355.110413', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144132', 1144132, '-180.289703', '-58.090000', '341.292908', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144134', 1144134, '-173.453705', '-58.488270', '346.267395', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144136', 1144136, '-248.384903', '-70.863403', '400.043610', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144155', 1144155, '-265.522308', '-78.660339', '495.811401', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64452, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1144156', 1144156, '94.651657', '-28.693371', '205.296204', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52672, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144157', 1144157, '58.451691', '-24.165310', '201.325806', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144161', 1144161, '142.662994', '-27.379681', '171.947693', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51584, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144163', 1144163, '72.983849', '-14.541890', '160.479095', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53216, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144165', 1144165, '28.954960', '-9.060006', '115.734299', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53760, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144166', 1144166, '62.516159', '-10.939160', '113.847504', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53488, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144167', 1144167, '33.890240', '-7.635654', '75.669441', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1144171', 1144171, '38.681568', '-7.743955', '37.247219', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1145781', 1145781, '314.148712', '-9.873041', '137.315598', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1145783', 1145783, '316.563904', '-11.553430', '155.556900', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102140, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1145785', 1145785, '310.839111', '-10.058590', '146.018997', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101868, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1145786', 1145786, '335.961487', '-6.303717', '151.505005', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1145792', 1145792, '334.663391', '-4.191054', '173.662903', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1145794', 1145794, '342.177307', '-3.911723', '174.273193', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100780, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1145797', 1145797, '356.749786', '-1.121761', '182.588501', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368415', 1368415, '451.260101', '-3.443870', '238.795807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147256, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1368437', 1368437, '390.890289', '-7.586338', '269.886292', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146984, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1368491', 1368491, '313.954803', '-6.875740', '27.206791', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368493', 1368493, '318.414001', '-7.856604', '-8.765156', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368494', 1368494, '337.636292', '-5.691662', '26.687981', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368495', 1368495, '360.321503', '-3.134459', '15.892390', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368496', 1368496, '364.258301', '-3.572027', '19.096781', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368497', 1368497, '353.728394', '-5.753780', '25.100679', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368498', 1368498, '321.866913', '-7.314247', '-15.243810', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114918, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(228, 'e0007', 'bnpc1368499', 1368499, '317.799591', '-6.363059', '23.605659', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114646, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368501', 1368501, '310.197205', '-8.609804', '2.999502', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368502', 1368502, '307.043396', '-8.701551', '-1.767205', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114374, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368503', 1368503, '307.209808', '-7.736371', '-25.314760', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368506', 1368506, '279.991913', '-7.195922', '-25.793631', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368507', 1368507, '275.332886', '-6.079346', '-51.364719', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117366, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368508', 1368508, '268.817902', '-7.622407', '-26.344280', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368509', 1368509, '276.584106', '-5.971716', '-40.277569', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368513', 1368513, '273.210785', '-9.038651', '1.056271', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368515', 1368515, '271.523804', '-11.769340', '30.395180', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368516', 1368516, '255.359695', '-9.109683', '4.562400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368517', 1368517, '251.891006', '-8.924417', '10.996560', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368519', 1368519, '238.113907', '-10.699850', '39.986820', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368520', 1368520, '236.666702', '-11.041180', '47.762650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368521', 1368521, '216.099899', '-5.217842', '15.486120', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368522', 1368522, '219.648102', '-5.708765', '19.837851', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368527', 1368527, '226.886307', '-11.459570', '69.291168', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368528', 1368528, '232.117203', '-11.721460', '66.985252', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368530', 1368530, '217.647400', '-9.632435', '55.535179', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368531', 1368531, '262.570892', '-13.984700', '50.050228', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368532', 1368532, '253.925293', '-13.748430', '50.339458', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368537', 1368537, '36.721581', '-13.599010', '-35.811329', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368539', 1368539, '45.805561', '-2.063314', '-62.499821', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368540', 1368540, '43.942150', '-1.029362', '-68.421707', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368542', 1368542, '19.448151', '-0.446853', '-89.062424', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368546', 1368546, '57.928291', '9.733817', '-102.176399', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48054, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368548', 1368548, '55.925640', '6.821295', '-37.389530', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48326, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368554', 1368554, '68.129494', '7.053471', '-60.042889', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49142, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368555', 1368555, '94.406288', '8.411647', '-78.379066', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48598, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368556', 1368556, '145.311600', '6.469276', '-59.126930', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48870, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368560', 1368560, '117.309502', '6.760285', '-52.052681', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368561', 1368561, '160.460007', '3.641483', '-40.868118', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368562', 1368562, '-193.135696', '-32.369289', '261.702515', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368569', 1368569, '-19.247980', '-45.409012', '412.262085', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368570', 1368570, '-46.799500', '-47.531921', '426.291290', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368571', 1368571, '-36.310310', '-47.774849', '409.386902', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368577', 1368577, '354.033691', '-1.282395', '183.656601', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122256, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368578', 1368578, '338.217590', '-3.919866', '175.769104', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123072, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368579', 1368579, '320.962494', '-8.541780', '134.309296', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119264, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368580', 1368580, '311.398987', '-9.954162', '140.459198', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123344, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368582', 1368582, '313.089508', '-17.740789', '185.998001', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118176, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368583', 1368583, '274.723297', '-26.291660', '183.940598', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124160, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368584', 1368584, '304.162506', '-21.746981', '213.237000', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122800, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368587', 1368587, '273.532806', '-13.660890', '101.165001', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124976, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368590', 1368590, '303.309204', '-10.197260', '107.375298', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121984, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368591', 1368591, '372.633514', '-5.472790', '90.196060', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123888, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368594', 1368594, '376.821503', '-7.339636', '68.955467', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123616, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368596', 1368596, '410.155609', '-6.183658', '55.648460', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121440, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368597', 1368597, '412.797699', '-4.115298', '93.821388', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121168, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368598', 1368598, '362.752686', '-7.221369', '55.588570', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120624, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368600', 1368600, '330.403503', '-5.478035', '19.729870', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120080, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368601', 1368601, '340.436401', '-5.850005', '23.485689', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118720, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368602', 1368602, '334.164093', '-4.736384', '-1.168072', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120352, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368604', 1368604, '280.384491', '-6.088397', '-46.768951', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121712, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368605', 1368605, '246.078796', '-5.873863', '-10.449420', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122528, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368606', 1368606, '275.931305', '-10.226560', '7.661325', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118448, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368607', 1368607, '279.562286', '-10.758130', '40.909191', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118992, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368608', 1368608, '281.362915', '-10.660460', '38.721069', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119536, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368610', 1368610, '219.226303', '-10.849210', '70.298264', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125792, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368612', 1368612, '233.086899', '-9.948204', '40.259239', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124432, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368613', 1368613, '213.180206', '-3.941148', '-4.296664', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124704, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368614', 1368614, '207.285202', '-5.140594', '20.525330', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119808, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368616', 1368616, '239.936707', '-7.773538', '10.082270', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125520, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1368727', 1368727, '278.431305', '-15.600310', '291.462494', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1368728', 1368728, '265.339111', '-16.501490', '289.234711', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1369057', 1369057, '450.064789', '-3.280736', '237.567703', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145908, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369058', 1369058, '417.631012', '-3.443490', '258.794006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145636, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369059', 1369059, '431.584900', '-2.734727', '225.736801', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145364, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369060', 1369060, '433.904297', '-2.631201', '225.675797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145092, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369063', 1369063, '420.105713', '-3.826969', '244.376099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144820, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369064', 1369064, '420.595215', '-1.434317', '198.139404', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144548, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369066', 1369066, '420.503693', '-1.383187', '195.789505', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144264, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1369067', 1369067, '327.321198', '-5.054865', '262.409302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144004, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369069', 1369069, '418.255005', '-3.347633', '257.236389', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143720, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1369078', 1369078, '405.129486', '-6.796501', '230.618896', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143448, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1369079', 1369079, '379.850403', '-9.137354', '273.382690', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143188, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369081', 1369081, '282.579498', '-14.737670', '288.410797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142916, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369082', 1369082, '297.790985', '-17.412251', '269.611206', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142644, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369083', 1369083, '268.697693', '-19.984810', '251.224106', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142372, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369084', 1369084, '289.845093', '-14.468090', '305.104095', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142100, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369085', 1369085, '324.574585', '-14.779820', '286.915314', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141828, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369086', 1369086, '329.182800', '-13.956880', '285.480988', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141556, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369087', 1369087, '345.143799', '-11.551130', '289.967102', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141272, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1369088', 1369088, '252.741592', '-21.175320', '288.406799', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141012, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369089', 1369089, '218.890594', '-26.504971', '301.258789', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140740, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369090', 1369090, '219.501007', '-26.810150', '303.212006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140468, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369091', 1369091, '241.351898', '-22.922640', '271.923187', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140196, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369092', 1369092, '194.140503', '-27.267920', '297.596588', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139924, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369093', 1369093, '196.285995', '-27.929461', '274.390991', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139652, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369095', 1369095, '185.564896', '-32.730652', '315.266602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139380, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369096', 1369096, '161.730301', '-36.392811', '324.788208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139108, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369097', 1369097, '167.315094', '-27.481541', '282.978485', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138836, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369098', 1369098, '142.931198', '-30.685940', '303.578186', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138564, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369099', 1369099, '172.080307', '-41.270390', '355.679108', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138292, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369101', 1369101, '217.456299', '-28.130699', '347.341095', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138020, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369102', 1369102, '216.124100', '-28.447210', '349.443512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137748, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369103', 1369103, '185.566101', '-37.807560', '358.326202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137476, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369104', 1369104, '238.333801', '-24.868570', '356.358398', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137204, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369105', 1369105, '230.975800', '-27.237400', '321.187103', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136932, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369109', 1369109, '262.285889', '-26.207680', '223.339996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136660, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369112', 1369112, '226.922302', '-24.500299', '282.846985', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136388, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369113', 1369113, '270.740814', '-25.894609', '219.684097', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136116, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369114', 1369114, '226.555206', '-25.225269', '239.887299', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135844, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369116', 1369116, '282.357086', '-23.535101', '244.795303', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135572, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369121', 1369121, '333.561310', '2.185390', '242.975006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135300, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369126', 1369126, '391.683807', '0.442465', '197.375397', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135016, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1369127', 1369127, '374.291687', '0.069733', '177.932404', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125248, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369128', 1369128, '340.926086', '-4.172237', '171.404495', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103228, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369129', 1369129, '274.308289', '-21.454750', '133.409195', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101052, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369131', 1369131, '284.565399', '-25.650459', '196.215698', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101324, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369135', 1369135, '164.769394', '-24.938990', '163.613800', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92952, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1369136', 1369136, '126.420898', '-26.382891', '167.406693', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369137', 1369137, '128.709793', '-25.925119', '164.324402', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57556, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369138', 1369138, '131.686401', '-24.799540', '198.020599', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369139', 1369139, '74.797401', '-28.214760', '204.149094', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58372, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369140', 1369140, '71.341454', '-16.064501', '165.951599', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57828, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369141', 1369141, '69.103951', '-17.105560', '168.596893', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58100, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369142', 1369142, '48.614868', '-17.861691', '162.486298', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369143', 1369143, '69.590843', '-13.496570', '146.253998', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369146', 1369146, '39.957119', '-8.666501', '105.835701', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369147', 1369147, '52.015511', '-8.974514', '78.552917', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369148', 1369148, '45.149349', '-13.324360', '7.012329', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369149', 1369149, '17.379999', '-13.717900', '-20.370790', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369150', 1369150, '35.561901', '-13.693350', '-33.797138', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369151', 1369151, '44.338890', '-1.270125', '-66.438026', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369152', 1369152, '14.275760', '-0.570236', '-87.355873', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369153', 1369153, '31.780800', '-0.130703', '-85.079163', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369154', 1369154, '64.954559', '6.905480', '-85.581947', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369157', 1369157, '46.957291', '12.114440', '-121.487297', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369160', 1369160, '68.467163', '6.973328', '-53.543949', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369161', 1369161, '82.078217', '7.186952', '-63.706459', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58916, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369162', 1369162, '91.386230', '8.010939', '-78.294083', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58644, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369163', 1369163, '141.008499', '6.515503', '-53.391361', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369166', 1369166, '163.313705', '6.032107', '-46.804680', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369169', 1369169, '-31.436220', '-54.130669', '497.960510', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369174', 1369174, '21.103210', '-49.546139', '475.272614', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369177', 1369177, '-15.233060', '-53.066551', '466.036011', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369180', 1369180, '-48.539001', '-47.348751', '424.643188', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369183', 1369183, '-11.764770', '-51.560242', '438.742706', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369184', 1369184, '-91.746658', '-51.122200', '356.392212', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369185', 1369185, '-89.732468', '-51.292042', '358.650513', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369186', 1369186, '-116.542198', '-54.847111', '366.704803', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369187', 1369187, '-215.533707', '-63.035099', '360.219604', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369188', 1369188, '-179.797104', '-59.525509', '348.256592', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369189', 1369189, '-217.090103', '-64.042107', '364.888885', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369190', 1369190, '-255.542892', '-74.143631', '419.790894', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369191', 1369191, '-297.823914', '-79.049583', '481.552887', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369194', 1369194, '-267.105286', '-78.933182', '492.746185', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369197', 1369197, '-195.056107', '-32.913761', '285.816711', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63370, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369203', 1369203, '-194.417404', '-31.711460', '260.054596', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63914, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369206', 1369206, '-219.511200', '-30.548080', '332.944885', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63642, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369210', 1369210, '-169.922607', '-51.790081', '281.324493', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369225', 1369225, '415.314301', '-4.384437', '279.848297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134484, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369226', 1369226, '417.664215', '-4.268155', '279.787292', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134200, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1369227', 1369227, '416.351898', '-4.344605', '282.320313', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133928, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1369245', 1369245, '106.026802', '-24.064631', '188.681503', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52944, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1369266', 1369266, '110.856796', '6.893584', '-48.683529', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369268', 1369268, '106.950401', '7.553162', '-65.018799', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369270', 1369270, '448.720703', '-3.422734', '241.608597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133656, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1369283', 1369283, '400.411896', '-3.097628', '212.787003', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133396, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1369346', 1369346, '72.281059', '-23.743839', '185.561203', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1373459', 1373459, '443.619507', '-3.181869', '264.612488', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127146, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1373461', 1373461, '448.051788', '-2.900265', '234.756104', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133112, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1373462', 1373462, '416.268707', '-3.808599', '263.633698', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132840, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1373464', 1373464, '474.141296', '-3.220261', '248.381897', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132568, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1373465', 1373465, '472.096588', '-3.385255', '246.489807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132296, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1373466', 1373466, '475.150604', '-3.341773', '246.356903', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132036, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1373468', 1373468, '274.396088', '-14.909590', '275.718201', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127690, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1373469', 1373469, '166.918396', '-41.534370', '347.432587', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126874, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1373472', 1373472, '315.059814', '-12.244580', '158.583603', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101596, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1373473', 1373473, '320.444611', '-9.346396', '146.037094', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1373474', 1373474, '315.725800', '-9.276663', '126.870499', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1373475', 1373475, '321.508789', '-8.653498', '126.646599', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1373476', 1373476, '336.930115', '-3.588053', '182.083405', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1373477', 1373477, '323.688599', '-14.094800', '192.991898', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1373479', 1373479, '170.224701', '-26.854139', '298.491211', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1373480', 1373480, '259.386292', '-22.771570', '242.221405', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131486, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1373481', 1373481, '296.304993', '-24.768950', '202.106201', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1373482', 1373482, '160.660004', '-38.959309', '337.590302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131220, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1373497', 1373497, '335.683197', '-4.748982', '10.208240', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126602, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1373500', 1373500, '232.074402', '-6.008647', '2.020233', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127418, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1373502', 1373502, '393.522491', '-5.844142', '73.170151', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1373503', 1373503, '411.140686', '-5.930238', '61.455570', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1373504', 1373504, '347.812195', '-6.402293', '271.350494', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130936, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1373505', 1373505, '346.218903', '-6.677882', '272.394409', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130676, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1373507', 1373507, '292.224792', '-18.765341', '132.923004', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1373508', 1373508, '307.241913', '-8.558214', '101.772003', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1417935', 1417935, '204.363998', '-30.869049', '325.184998', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1417936', 1417936, '206.500305', '-30.502831', '322.743500', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130126, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1417937', 1417937, '206.591797', '-30.411280', '325.246002', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129860, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1417940', 1417940, '-165.340302', '-39.282860', '193.438599', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88872, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1417946', 1417946, '-298.084991', '-79.301208', '470.145599', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64724, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1417947', 1417947, '-302.235504', '-79.240173', '463.034912', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64180, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1417948', 1417948, '-232.433594', '-26.853029', '279.165588', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78554, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1417949', 1417949, '-298.420685', '-54.795170', '303.761414', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1417950', 1417950, '-300.953705', '-54.459469', '309.101898', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79370, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1417951', 1417951, '-271.875885', '-52.291519', '281.696686', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78282, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1417952', 1417952, '-278.400909', '-54.097359', '324.329590', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79098, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1417953', 1417953, '-275.976593', '-51.020748', '335.645813', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1417954', 1417954, '-252.932907', '-58.400982', '302.113312', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78826, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1417955', 1417955, '-229.778000', '-27.208941', '284.492401', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78010, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1417956', 1417956, '-202.834305', '-30.699909', '342.864288', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77466, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1417957', 1417957, '-191.225204', '-44.687611', '220.141800', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1417958', 1417958, '-264.080414', '-22.174829', '238.910095', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1417959', 1417959, '-229.297394', '-35.111050', '231.403000', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1417960', 1417960, '-174.044495', '-40.534210', '200.048401', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89416, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1417961', 1417961, '-149.616501', '-45.683731', '252.513397', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc1417968', 1417968, '-35.348652', '-13.415600', '-78.564903', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45346, 1, 0, 0, 0, 40, 30119, 0, 0, 0), +(228, 'e0007', 'bnpc1417973', 1417973, '-116.777298', '-9.689575', '-86.778084', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45074, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(228, 'e0007', 'bnpc1417975', 1417975, '-66.605652', '-8.194153', '-62.211121', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43714, 1, 0, 0, 0, 40, 30125, 0, 0, 0), +(228, 'e0007', 'bnpc1417976', 1417976, '-38.827709', '-13.552420', '-78.398163', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42904, 1, 0, 0, 0, 40, 30057, 0, 0, 0), +(228, 'e0007', 'bnpc1417977', 1417977, '-64.164253', '-8.163635', '-66.880310', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43986, 1, 0, 0, 0, 40, 30119, 0, 0, 0), +(228, 'e0007', 'bnpc1417978', 1417978, '-10.940770', '-10.482990', '-42.618488', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43176, 1, 0, 0, 0, 0, 30124, 0, 0, 0), +(228, 'e0007', 'bnpc1417979', 1417979, '-110.368500', '-9.353821', '-74.723450', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42632, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(228, 'e0007', 'bnpc1417981', 1417981, '-130.923203', '-9.875401', '-94.172653', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44802, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(228, 'e0007', 'bnpc1417982', 1417982, '-128.984497', '-10.045940', '-97.250549', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42088, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(228, 'e0007', 'bnpc1417983', 1417983, '-119.401901', '-9.597961', '-63.828548', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44530, 1, 0, 0, 0, 40, 30063, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(228, 'e0007', 'bnpc1417984', 1417984, '-25.987261', '-7.826045', '-143.341904', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(228, 'e0007', 'bnpc1417985', 1417985, '-46.618172', '-8.729055', '-147.223099', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44258, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(228, 'e0007', 'bnpc1417986', 1417986, '-28.136749', '-8.067919', '-139.809906', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42360, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(228, 'e0007', 'bnpc1417987', 1417987, '-37.033691', '-9.445435', '-137.254898', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41816, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(228, 'e0007', 'bnpc1417988', 1417988, '-28.400631', '-7.899245', '-144.824905', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45618, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(228, 'e0007', 'bnpc1417991', 1417991, '59.539070', '-37.771149', '294.833313', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88600, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc1418004', 1418004, '315.449707', '-8.316214', '-13.626350', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120896, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc2315589', 2315589, '-77.122833', '-6.427255', '-71.078758', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55386, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc2315590', 2315590, '-133.217896', '-9.529019', '-60.232140', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55930, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc2315591', 2315591, '-106.534103', '-12.212950', '-111.347603', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55658, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc2315592', 2315592, '-105.572998', '-9.525784', '-86.103401', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54570, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc2315593', 2315593, '-77.411713', '-13.583240', '-132.304901', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54298, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc2315595', 2315595, '-37.583012', '-11.337520', '-125.597000', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55114, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc2315596', 2315596, '-4.898193', '-11.638100', '-36.911621', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc2320968', 2320968, '417.338806', '-2.166638', '180.231598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129576, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc2320969', 2320969, '422.079498', '-2.088056', '179.054596', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129316, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc2320970', 2320970, '421.093597', '-1.981825', '181.915405', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129032, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc2321008', 2321008, '38.345871', '11.978280', '-107.103104', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49414, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc2321010', 2321010, '-46.306919', '-9.823078', '-139.634399', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54842, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc2321012', 2321012, '205.010406', '-24.383320', '145.800797', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89960, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc2321013', 2321013, '115.746803', '-26.867279', '252.730103', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90776, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc2321016', 2321016, '14.364810', '-47.184280', '446.981415', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81268, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(228, 'e0007', 'bnpc2321017', 2321017, '8.855011', '-47.052078', '437.906494', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80996, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(228, 'e0007', 'bnpc2321018', 2321018, '23.615641', '-45.878761', '447.495605', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79908, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(228, 'e0007', 'bnpc2321019', 2321019, '-29.630119', '-53.701389', '454.788208', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc2342034', 2342034, '-104.783699', '-51.407688', '385.580200', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc2615829', 2615829, '247.882797', '-28.305531', '212.390305', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93998, 4, 0, 0, 0, 0, 30126, 0, 0, 0), +(228, 'e0007', 'bnpc2615830', 2615830, '219.897705', '-25.925119', '230.212799', 744, 0, 0, 0, 1, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95624, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc2615831', 2615831, '251.972198', '-28.702271', '209.338501', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95890, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc2615832', 2615832, '213.214203', '-27.298441', '257.099213', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96434, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc2615833', 2615833, '215.472595', '-27.237400', '253.040298', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94542, 4, 0, 0, 0, 0, 30119, 0, 0, 0), +(228, 'e0007', 'bnpc2615834', 2615834, '212.019608', '-27.601471', '252.518906', 744, 0, 0, 0, 0, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95080, 4, 0, 0, 0, 0, 30057, 0, 0, 0), +(228, 'e0007', 'bnpc2615835', 2615835, '223.315704', '-26.199789', '217.486801', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93726, 4, 0, 0, 0, 0, 30125, 0, 0, 0), +(228, 'e0007', 'bnpc2615836', 2615836, '230.090698', '-25.436840', '224.750107', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96162, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc2615837', 2615837, '251.606003', '-27.756210', '214.862198', 744, 0, 0, 0, 1, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94808, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc2849611', 2849611, '245.960098', '-27.145849', '217.639404', 743, 0, 0, 0, 1, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94270, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc2849612', 2849612, '221.789795', '-25.833570', '222.369705', 745, 0, 0, 0, 0, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96706, 4, 0, 0, 0, 0, 30119, 0, 0, 0), +(228, 'e0007', 'bnpc2849614', 2849614, '218.411407', '-26.477131', '218.507996', 744, 0, 0, 0, 0, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95352, 4, 0, 0, 0, 0, 30120, 0, 0, 0), +(228, 'e0007', 'bnpc3741110', 3741110, '73.289063', '-41.763981', '357.900299', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65534, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(228, 'e0007', 'bnpc3741111', 3741111, '90.043427', '-40.634819', '352.315491', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66072, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(228, 'e0007', 'bnpc3741112', 3741112, '85.557281', '-40.634819', '351.460999', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66610, 1, 0, 0, 0, 0, 30125, 0, 0, 0), +(228, 'e0007', 'bnpc3741117', 3741117, '73.065964', '-38.481918', '332.600189', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65262, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(228, 'e0007', 'bnpc3741118', 3741118, '52.970268', '-40.324650', '335.009186', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66344, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(228, 'e0007', 'bnpc3741119', 3741119, '68.443611', '-40.187721', '343.554413', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67154, 1, 0, 0, 0, 0, 30057, 0, 0, 0), +(228, 'e0007', 'bnpc3741122', 3741122, '53.208130', '-40.756901', '339.009613', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65800, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(228, 'e0007', 'bnpc3741123', 3741123, '50.547020', '-40.461750', '336.659790', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66882, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(228, 'e0007', 'bnpc3741124', 3741124, '53.528259', '-38.479301', '320.227112', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64990, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(228, 'e0007', 'bnpc3741132', 3741132, '-284.870697', '-49.925079', '340.580109', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77738, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc3741133', 3741133, '21.243629', '-45.595200', '442.469513', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80724, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(228, 'e0007', 'bnpc3741134', 3741134, '10.489580', '-47.098289', '439.071106', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81540, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(228, 'e0007', 'bnpc3741135', 3741135, '23.118601', '-45.096272', '440.785797', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80180, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(228, 'e0007', 'bnpc3741136', 3741136, '14.816470', '-45.761841', '435.965515', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79636, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(228, 'e0007', 'bnpc3741137', 3741137, '21.488041', '-45.079990', '439.112488', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80452, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(228, 'e0007', 'bnpc3741144', 3741144, '30.237329', '-47.804062', '466.828094', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69052, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc3741148', 3741148, '3.116203', '-49.230431', '481.867706', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69324, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc3741173', 3741173, '-41.599140', '-53.307251', '487.071014', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68508, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc3741178', 3741178, '28.775129', '-50.812210', '483.936310', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67692, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc3741198', 3741198, '-42.711262', '-52.666340', '491.020508', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68780, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc3741238', 3741238, '106.088799', '-22.112341', '171.394897', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc3741243', 3741243, '90.759720', '-19.997610', '170.030807', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46156, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc3741245', 3741245, '112.405098', '-22.569309', '167.395905', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45884, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc3741251', 3741251, '98.788353', '-23.465191', '165.496506', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc3741254', 3741254, '99.891838', '-23.128969', '165.796494', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc3741257', 3741257, '104.599197', '-23.865101', '164.789703', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc3741264', 3741264, '112.733398', '-22.251949', '161.306900', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc3741271', 3741271, '111.878098', '-22.535490', '167.695908', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc3870413', 3870413, '454.933990', '-1.199433', '198.847107', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21300, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(228, 'e0007', 'bnpc3870422', 3870422, '355.536987', '-9.878284', '296.848114', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21034, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(228, 'e0007', 'bnpc3870434', 3870434, '313.523193', '-6.315191', '-66.822891', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20768, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(228, 'e0007', 'bnpc3870455', 3870455, '187.612900', '-2.180824', '-4.180596', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 49, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20484, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(228, 'e0007', 'bnpc3870460', 3870460, '107.120598', '-28.211399', '276.198486', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20230, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(228, 'e0007', 'bnpc3870467', 3870467, '52.319149', '-39.485619', '244.958893', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19952, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(228, 'e0007', 'bnpc3870476', 3870476, '-125.156197', '-45.844360', '225.082901', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19680, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(228, 'e0007', 'bnpc3870506', 3870506, '-54.058109', '-47.078789', '320.834991', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19396, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(228, 'e0007', 'bnpc3871285', 3871285, '245.121399', '-27.767639', '161.763901', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19130, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(228, 'e0007', 'bnpc3877610', 3877610, '460.799194', '-1.088999', '205.124603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128500, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc3897788', 3897788, '454.380188', '-1.495000', '207.570404', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128216, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(228, 'e0007', 'bnpc3898013', 3898013, '448.109894', '-1.597685', '204.794403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127956, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(228, 'e0007', 'bnpc4621558', 4621558, '-39.931252', '-7.787434', '-153.907501', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22586, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1139214', 1139214, '-268.574097', '7.064880', '631.738708', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1139231', 1139231, '-15.879850', '-0.100045', '376.413208', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1139247', 1139247, '-122.621803', '1.180372', '288.650391', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1139253', 1139253, '-116.636803', '1.401093', '293.862488', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1139295', 1139295, '-239.337799', '0.869717', '266.651306', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1139296', 1139296, '-242.175995', '0.625573', '262.958710', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1139314', 1139314, '-234.854004', '-0.100137', '305.762085', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1139319', 1139319, '-284.558105', '1.846295', '342.205505', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1139327', 1139327, '-178.824295', '0.141551', '253.664703', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160176, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1139344', 1139344, '-179.793198', '0.669785', '323.976196', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159904, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1139407', 1139407, '-279.011292', '6.027267', '564.782104', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159632, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1139408', 1139408, '-254.932495', '6.759699', '578.911987', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159360, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1139409', 1139409, '-258.136902', '7.827831', '603.051819', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159088, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1139410', 1139410, '-257.221405', '6.637627', '578.881470', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1139423', 1139423, '-276.386688', '5.966230', '538.170288', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158544, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1139425', 1139425, '-266.529388', '5.020171', '542.473389', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1139430', 1139430, '-220.569199', '3.982558', '556.969482', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158000, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1140323', 1140323, '48.412201', '22.379660', '245.108307', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124060, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140341', 1140341, '148.210800', '18.142929', '63.034969', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134118, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140355', 1140355, '-167.689697', '4.657228', '188.189499', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1140356', 1140356, '-140.886597', '6.118821', '203.173798', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1140376', 1140376, '-173.095795', '7.162746', '110.695396', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119830, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140378', 1140378, '-169.298904', '4.379292', '134.294601', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119558, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140379', 1140379, '-176.483307', '6.579963', '113.899696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119286, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140393', 1140393, '-213.883896', '11.384410', '78.615593', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119014, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140405', 1140405, '-204.099792', '10.836050', '82.086967', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118742, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140418', 1140418, '-170.832901', '8.611761', '46.359402', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118470, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140419', 1140419, '-163.073196', '7.441800', '53.057159', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118198, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140420', 1140420, '-208.158096', '10.773990', '72.948898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117926, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140429', 1140429, '-210.742401', '9.567359', '0.839199', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117654, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140430', 1140430, '-217.212204', '9.475805', '3.250124', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117382, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140459', 1140459, '-87.514954', '0.030696', '53.398781', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97846, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140460', 1140460, '-83.185509', '0.030617', '55.136490', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98118, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140461', 1140461, '-100.175499', '1.815776', '55.405460', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97302, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140462', 1140462, '-87.013252', '0.030600', '71.372276', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97574, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140539', 1140539, '-119.476097', '5.647681', '112.526497', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117110, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140540', 1140540, '-126.604202', '5.923794', '94.623161', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116838, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140541', 1140541, '-126.329498', '5.844177', '109.056198', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116566, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140980', 1140980, '-313.130402', '25.345190', '-208.453506', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116294, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140981', 1140981, '-326.970612', '26.883949', '-216.976898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116022, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140982', 1140982, '-329.696594', '21.078899', '-165.243500', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115750, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140983', 1140983, '-338.267395', '24.724110', '-191.433197', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115478, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1140984', 1140984, '-323.896515', '19.876869', '-162.956696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115206, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1144407', 1144407, '-272.144714', '17.696960', '57.133450', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105716, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1144408', 1144408, '-257.479095', '14.942520', '80.117462', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1144457', 1144457, '-241.510406', '16.161341', '12.992840', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105444, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1144491', 1144491, '-78.316467', '3.566922', '-36.424759', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106260, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1144547', 1144547, '-106.571297', '7.155371', '-106.524399', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1144577', 1144577, '-127.875000', '6.779816', '-22.488760', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105172, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1144585', 1144585, '-91.407356', '7.599404', '-74.910507', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104900, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1144597', 1144597, '-58.182690', '6.881772', '-97.795113', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1144598', 1144598, '-132.427704', '9.336102', '-104.286499', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1144629', 1144629, '-152.086700', '11.093260', '-140.581406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1144631', 1144631, '-151.639099', '11.652820', '-128.275406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1144632', 1144632, '-167.772995', '9.292697', '-129.167694', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1144653', 1144653, '-78.954659', '4.479653', '-126.207397', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1144691', 1144691, '-129.860199', '13.845340', '-129.543701', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1144692', 1144692, '-205.706894', '9.018035', '-138.750305', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1144694', 1144694, '-208.087296', '9.353733', '-141.039200', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1144747', 1144747, '2.112435', '6.781407', '-26.549141', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107620, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1144748', 1144748, '17.348650', '6.534479', '-18.517111', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107892, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1144786', 1144786, '30.609501', '4.094535', '43.754768', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108164, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1144790', 1144790, '42.343739', '4.165666', '68.558739', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1144793', 1144793, '142.320801', '4.196184', '25.833481', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1144799', 1144799, '40.001209', '4.166452', '71.521370', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1144800', 1144800, '70.561348', '4.166210', '66.426353', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145309', 1145309, '99.839729', '6.729181', '-55.405548', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93954, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145310', 1145310, '104.112297', '7.125916', '-59.922218', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93682, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145311', 1145311, '111.009300', '12.405540', '-76.890251', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93410, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145312', 1145312, '53.134991', '10.581870', '-71.978127', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93138, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145330', 1145330, '33.785549', '7.920002', '-96.910088', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92866, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145331', 1145331, '30.485310', '6.219395', '-100.848801', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92594, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145342', 1145342, '7.202258', '5.720373', '-72.371872', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92322, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145343', 1145343, '0.456908', '5.833508', '-87.359497', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92050, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145344', 1145344, '9.624027', '5.417103', '-76.025612', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91778, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145371', 1145371, '323.490204', '5.164718', '-43.671810', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91506, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145380', 1145380, '267.748199', '4.639788', '9.815885', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91234, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145382', 1145382, '262.290802', '3.068853', '19.805670', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90962, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145556', 1145556, '396.724701', '3.565628', '167.813797', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68950, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145558', 1145558, '440.238007', '1.174898', '187.579102', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68678, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145559', 1145559, '499.565002', '1.571632', '166.216507', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68406, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145562', 1145562, '455.435913', '3.250124', '198.748703', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68134, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145578', 1145578, '484.519714', '3.768931', '199.908401', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67862, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145579', 1145579, '528.374084', '7.553168', '195.361206', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67590, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145581', 1145581, '509.391815', '4.440328', '204.577698', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67318, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145595', 1145595, '513.939880', '14.256400', '137.989304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1145607', 1145607, '549.889282', '11.612070', '204.730194', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66774, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145610', 1145610, '538.797913', '21.846140', '123.039803', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1145612', 1145612, '542.038208', '13.673390', '165.126495', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1145613', 1145613, '504.953491', '14.256390', '115.266296', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1145625', 1145625, '557.183105', '21.846149', '129.558304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1145628', 1145628, '553.643005', '21.683020', '99.412483', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1145631', 1145631, '575.402405', '21.683020', '111.314499', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc1145702', 1145702, '284.107697', '3.982544', '49.240841', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90690, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc1145703', 1145703, '342.275299', '7.889330', '-41.286991', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90418, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299623', 2299623, '-290.183014', '-0.100012', '465.039612', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299626', 2299626, '-303.145111', '-0.100187', '410.650696', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299628', 2299628, '-315.270905', '0.279321', '442.690002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299630', 2299630, '-290.338806', '-0.100002', '403.924103', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299631', 2299631, '-260.457001', '-0.100012', '454.819794', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299632', 2299632, '-166.141800', '-0.100048', '463.106415', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139002, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299636', 2299636, '-85.984627', '-0.137378', '426.901611', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299637', 2299637, '-105.242203', '-0.100010', '441.452209', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299638', 2299638, '-127.139801', '-0.100007', '331.296906', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299640', 2299640, '-106.279099', '-0.167896', '335.835785', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299642', 2299642, '-76.920776', '0.228838', '434.653198', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299644', 2299644, '-121.995903', '-0.106860', '397.177002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299647', 2299647, '-213.092300', '-0.106860', '435.019409', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299670', 2299670, '105.271896', '19.668831', '117.021400', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299672', 2299672, '179.124298', '15.917120', '38.983059', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299676', 2299676, '67.215942', '23.941410', '138.414597', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133302, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299677', 2299677, '92.332291', '22.476490', '171.373993', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124332, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299678', 2299678, '68.223038', '21.438881', '171.709702', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123788, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299681', 2299681, '27.293150', '20.375059', '193.801193', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299682', 2299682, '76.646019', '20.096081', '218.799103', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123516, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299685', 2299685, '222.992401', '6.174502', '28.347420', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132764, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299686', 2299686, '218.930206', '7.861652', '25.101040', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132492, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299687', 2299687, '219.145096', '9.429937', '43.394890', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132220, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299688', 2299688, '242.878006', '5.513403', '43.686531', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131948, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299693', 2299693, '203.440796', '11.769820', '11.092830', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131676, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299695', 2299695, '183.372894', '13.534710', '15.091120', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131404, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299696', 2299696, '190.876602', '14.557230', '16.119829', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131132, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299697', 2299697, '181.536499', '14.175580', '17.074800', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130860, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299701', 2299701, '46.014000', '24.951891', '129.998001', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299707', 2299707, '62.549999', '18.461660', '250.313202', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299711', 2299711, '-240.650101', '6.790217', '647.669128', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153932, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299712', 2299712, '-268.177307', '7.461614', '616.082886', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299713', 2299713, '-298.512299', '10.330310', '645.349670', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299714', 2299714, '-301.838715', '11.032230', '612.298706', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299716', 2299716, '-278.400909', '7.095398', '588.036926', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299719', 2299719, '-256.092194', '6.362965', '575.310913', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299720', 2299720, '-249.805496', '4.135148', '533.104370', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299722', 2299722, '-243.854507', '-0.167896', '489.982391', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299723', 2299723, '-273.384796', '-0.100012', '454.524109', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299725', 2299725, '-301.158295', '1.302513', '475.886902', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299729', 2299729, '-220.495697', '-0.100054', '427.954590', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151212, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(229, 'e0008', 'bnpc2299730', 2299730, '-295.158295', '-0.100004', '416.955688', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299731', 2299731, '-158.892197', '-0.137378', '438.498413', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150668, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299732', 2299732, '-97.367859', '-0.137378', '460.166290', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299733', 2299733, '-102.128700', '-0.106860', '387.319702', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299734', 2299734, '-103.898697', '-0.106860', '385.000305', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299735', 2299735, '-73.472237', '-0.100006', '383.004608', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299736', 2299736, '-119.829102', '-0.106860', '335.713715', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299737', 2299737, '-25.762659', '-0.100045', '385.324402', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299738', 2299738, '-12.145770', '-0.100007', '340.874298', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299739', 2299739, '-36.646210', '-0.100007', '330.899811', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299740', 2299740, '-69.291260', '-0.100006', '346.480591', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299741', 2299741, '-29.965321', '-0.106860', '383.686096', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299742', 2299742, '-152.754807', '-0.100000', '285.928711', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299746', 2299746, '-188.861404', '-0.100036', '279.196106', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299747', 2299747, '-138.628296', '-0.106860', '247.516495', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299748', 2299748, '-207.352600', '-0.100011', '323.235504', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299751', 2299751, '-240.541595', '-0.100076', '309.201599', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299754', 2299754, '-282.546997', '2.068284', '344.383087', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299756', 2299756, '-165.855804', '3.695794', '214.781403', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299762', 2299762, '190.512695', '15.940850', '25.798840', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299764', 2299764, '193.374695', '15.528740', '58.982250', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299765', 2299765, '192.796906', '15.253090', '57.661560', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299767', 2299767, '162.554993', '16.909040', '69.378082', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299768', 2299768, '118.356201', '19.249180', '84.129753', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299769', 2299769, '119.667503', '18.832991', '86.148743', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299771', 2299771, '205.228104', '12.477170', '36.627281', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299772', 2299772, '218.183899', '10.623910', '45.217682', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299775', 2299775, '206.333893', '12.854360', '17.317181', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299777', 2299777, '114.394302', '18.347380', '106.921097', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299779', 2299779, '125.780098', '24.673790', '178.210098', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299781', 2299781, '135.240707', '28.061291', '166.094406', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299782', 2299782, '132.860199', '26.962641', '168.596893', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299783', 2299783, '145.372696', '31.326719', '173.479797', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299785', 2299785, '52.078991', '24.582239', '146.288193', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299786', 2299786, '52.109509', '24.917931', '143.633102', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299788', 2299788, '54.687038', '18.847170', '222.674896', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299789', 2299789, '71.783401', '22.789841', '205.433395', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299791', 2299791, '52.628319', '11.490000', '281.025391', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299792', 2299792, '55.405460', '12.252950', '279.835114', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299799', 2299799, '-333.285889', '20.722960', '-154.265701', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114934, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299800', 2299800, '-287.157501', '15.489150', '-84.197617', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299802', 2299802, '-262.604095', '12.804420', '-65.742996', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106532, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299803', 2299803, '-258.117889', '10.828210', '-67.787712', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299804', 2299804, '-235.706100', '8.377155', '-31.937180', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299812', 2299812, '-156.572906', '6.393483', '12.436060', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114662, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299820', 2299820, '-231.464096', '9.353733', '-146.379807', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299822', 2299822, '-119.740601', '2.027413', '-74.048714', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299823', 2299823, '-98.963509', '2.027430', '-27.024349', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299882', 2299882, '-305.844391', '25.145599', '-209.288696', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299886', 2299886, '-345.664215', '23.928289', '-176.087097', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299887', 2299887, '-347.161285', '24.534389', '-177.381302', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299895', 2299895, '-261.350800', '12.694290', '-76.165604', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299901', 2299901, '-279.804291', '19.410770', '50.600639', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299908', 2299908, '-263.922089', '15.508790', '89.442383', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299911', 2299911, '-145.702393', '6.826308', '-14.807010', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299914', 2299914, '-186.113998', '9.086921', '28.118750', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299915', 2299915, '-149.863907', '4.337313', '105.397102', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299916', 2299916, '-212.124496', '12.717620', '104.362198', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299930', 2299930, '-56.242779', '6.495965', '-71.791733', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299933', 2299933, '-107.042099', '5.264315', '-76.487633', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299936', 2299936, '-66.982857', '5.925140', '-114.246902', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299938', 2299938, '-139.531906', '11.537960', '-122.054199', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299941', 2299941, '-121.466599', '10.386180', '-143.292297', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299945', 2299945, '0.868353', '6.550388', '-34.652611', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299949', 2299949, '57.447720', '3.129161', '-49.835171', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299951', 2299951, '20.675930', '4.623436', '23.544621', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109772, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2299953', 2299953, '102.866203', '4.166452', '53.437038', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2299954', 2299954, '105.180397', '4.165666', '50.461540', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2300024', 2300024, '124.376198', '19.407740', '-146.837601', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90098, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(229, 'e0008', 'bnpc2300025', 2300025, '124.414299', '19.130779', '-145.398300', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89832, 1, 0, 0, 0, 0, 30067, 0, 0, 0), +(229, 'e0008', 'bnpc2300029', 2300029, '83.634644', '9.048584', '-90.501282', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89566, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc2300030', 2300030, '71.000183', '18.234480', '-159.014297', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89282, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(229, 'e0008', 'bnpc2300031', 2300031, '71.760773', '18.225830', '-160.113007', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89016, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(229, 'e0008', 'bnpc2300041', 2300041, '179.222198', '18.223680', '-145.087006', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88744, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc2300042', 2300042, '170.907196', '17.193430', '-151.395401', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88466, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(229, 'e0008', 'bnpc2300044', 2300044, '121.843201', '20.218161', '-96.971130', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88200, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(229, 'e0008', 'bnpc2300045', 2300045, '123.185997', '20.370750', '-97.032173', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87922, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(229, 'e0008', 'bnpc2300047', 2300047, '131.347900', '20.830030', '-112.115501', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87650, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc2300048', 2300048, '136.095200', '18.936399', '-149.187500', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87378, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc2300050', 2300050, '99.198853', '17.898781', '-160.631805', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87118, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc2300051', 2300051, '171.717804', '17.307770', '-150.139297', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86846, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(229, 'e0008', 'bnpc2300067', 2300067, '435.940704', '-0.982693', '5.487583', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76704, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(229, 'e0008', 'bnpc2300068', 2300068, '440.817810', '-1.144474', '-14.663970', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86520, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc2300072', 2300072, '438.040710', '-0.412041', '-42.984711', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71530, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(229, 'e0008', 'bnpc2300074', 2300074, '441.568298', '0.782855', '-28.634399', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc2300077', 2300077, '426.413208', '-0.717224', '-50.309021', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72346, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(229, 'e0008', 'bnpc2300080', 2300080, '399.968506', '4.262952', '-41.852612', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74800, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(229, 'e0008', 'bnpc2300084', 2300084, '360.969208', '1.840043', '-6.628087', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75616, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc2300091', 2300091, '376.814392', '4.773165', '-33.204460', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71258, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(229, 'e0008', 'bnpc2300092', 2300092, '356.160797', '2.687235', '2.700800', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86248, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc2300095', 2300095, '366.384308', '1.052825', '12.741240', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76160, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(229, 'e0008', 'bnpc2300098', 2300098, '387.472290', '-0.900329', '20.340231', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85976, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(229, 'e0008', 'bnpc2300099', 2300099, '387.075500', '-1.022401', '21.408360', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75888, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(229, 'e0008', 'bnpc2300103', 2300103, '403.433197', '-2.121051', '16.250811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85704, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc2300104', 2300104, '436.545288', '-1.022401', '4.501364', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72074, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(229, 'e0008', 'bnpc2300105', 2300105, '435.723999', '-1.106398', '3.907724', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75344, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(229, 'e0008', 'bnpc2300115', 2300115, '389.150787', '4.287738', '-36.392811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc2300119', 2300119, '397.360107', '0.381429', '115.953300', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64870, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2300123', 2300123, '371.755493', '-3.015678', '139.708099', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2300126', 2300126, '360.794006', '0.882443', '141.705902', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64326, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2300129', 2300129, '415.670990', '3.677377', '157.396805', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64054, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2300135', 2300135, '458.854004', '3.829967', '201.098602', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63782, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2300137', 2300137, '476.584991', '0.595055', '149.950302', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2300147', 2300147, '552.727478', '9.658914', '216.571198', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2300183', 2300183, '383.639801', '-2.278431', '92.591690', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300184', 2300184, '382.528412', '-2.487267', '93.400421', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300186', 2300186, '375.396393', '-4.129155', '77.561340', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300187', 2300187, '364.309113', '-4.655180', '71.455116', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300189', 2300189, '365.917114', '-5.088186', '65.510399', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300192', 2300192, '411.093201', '3.616341', '129.442200', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300193', 2300193, '410.513397', '4.074111', '156.633804', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300197', 2300197, '458.426697', '0.625573', '163.103607', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300199', 2300199, '458.792908', '0.625573', '164.843201', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300201', 2300201, '504.417389', '3.433233', '169.054596', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300202', 2300202, '512.107971', '5.050689', '209.033295', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300204', 2300204, '495.841888', '5.844158', '182.604706', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300205', 2300205, '544.090881', '10.452380', '201.525803', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300207', 2300207, '540.215088', '16.250811', '152.025604', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300211', 2300211, '525.902100', '19.058470', '105.821297', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300212', 2300212, '526.207275', '19.119511', '106.095901', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300214', 2300214, '570.489014', '22.507010', '119.554398', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300215', 2300215, '558.794128', '21.835609', '103.813599', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300217', 2300217, '592.919678', '25.558809', '131.029205', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300218', 2300218, '595.269714', '25.497780', '132.829697', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300222', 2300222, '158.947800', '16.443180', '-139.791306', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300223', 2300223, '162.681396', '16.443199', '-145.830505', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300229', 2300229, '47.617500', '4.166452', '66.536598', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300236', 2300236, '296.403412', '-0.256715', '-3.540742', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300237', 2300237, '307.939301', '-0.256714', '-0.769719', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2300241', 2300241, '306.026306', '-0.256723', '1.577364', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2308368', 2308368, '-332.770508', '11.416920', '613.476685', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145778, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(229, 'e0008', 'bnpc2308369', 2308369, '-343.075592', '12.112200', '626.433289', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144424, 1, 0, 0, 0, 41, 30083, 0, 0, 0), +(229, 'e0008', 'bnpc2308372', 2308372, '-345.601593', '15.548900', '608.209290', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143880, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc2308373', 2308373, '-344.072388', '20.119520', '620.861877', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145506, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(229, 'e0008', 'bnpc2308806', 2308806, '-332.725800', '11.426350', '614.251526', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143608, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(229, 'e0008', 'bnpc2308807', 2308807, '-333.646912', '11.427370', '613.129211', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144152, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(229, 'e0008', 'bnpc2308808', 2308808, '-325.795410', '11.581550', '623.895630', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144696, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(229, 'e0008', 'bnpc2308809', 2308809, '-333.211304', '11.428960', '605.065918', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145234, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(229, 'e0008', 'bnpc2308811', 2308811, '-314.290100', '11.306890', '604.882813', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144962, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(229, 'e0008', 'bnpc2308812', 2308812, '-302.510101', '16.006670', '74.845451', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109506, 1, 0, 0, 0, 8, 30065, 0, 0, 0), +(229, 'e0008', 'bnpc2308813', 2308813, '-305.806091', '17.837749', '80.064034', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109240, 1, 0, 0, 0, 8, 30072, 0, 0, 0), +(229, 'e0008', 'bnpc2308814', 2308814, '-302.204987', '16.159260', '76.035652', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108974, 1, 0, 0, 0, 8, 30079, 0, 0, 0), +(229, 'e0008', 'bnpc2308815', 2308815, '-306.242096', '16.501289', '63.830650', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108702, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc2308816', 2308816, '-295.566986', '17.347191', '79.688187', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108418, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc2308817', 2308817, '73.624763', '7.705750', '-111.894501', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83570, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(229, 'e0008', 'bnpc2308818', 2308818, '74.906487', '7.766785', '-112.382797', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83304, 1, 0, 0, 0, 0, 30074, 0, 0, 0), +(229, 'e0008', 'bnpc2308819', 2308819, '68.253563', '7.766795', '-107.438797', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83038, 1, 0, 0, 0, 0, 30081, 0, 0, 0), +(229, 'e0008', 'bnpc2308820', 2308820, '72.922729', '7.614197', '-102.708603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82766, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc2308822', 2308822, '80.979607', '7.614197', '-109.636101', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82488, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc2310066', 2310066, '447.442291', '0.685165', '-106.462196', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82168, 1, 0, 0, 0, 5, 30073, 0, 0, 0), +(229, 'e0008', 'bnpc2310068', 2310068, '439.536102', '-0.228932', '-82.414017', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71802, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(229, 'e0008', 'bnpc2310072', 2310072, '447.196014', '-0.473083', '-64.896667', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81896, 1, 0, 0, 0, 5, 30079, 0, 0, 0), +(229, 'e0008', 'bnpc2310073', 2310073, '448.172607', '-0.473083', '-65.140808', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75072, 1, 0, 0, 0, 5, 30077, 0, 0, 0), +(229, 'e0008', 'bnpc2310077', 2310077, '606.902283', '21.846050', '94.322968', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310079', 2310079, '628.601990', '21.846140', '96.549973', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310080', 2310080, '634.544983', '21.846140', '87.894997', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310081', 2310081, '632.357971', '21.846130', '64.279701', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56692, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310082', 2310082, '626.666382', '21.845909', '61.769680', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56420, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310083', 2310083, '607.055603', '21.845909', '87.877663', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56148, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310084', 2310084, '607.202271', '21.845900', '69.260597', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55876, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310086', 2310086, '647.131470', '21.845940', '74.024300', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55604, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310087', 2310087, '631.244385', '21.845980', '119.611702', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310088', 2310088, '589.967102', '21.846029', '111.639000', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310106', 2310106, '62.454399', '22.173260', '-183.847000', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54504, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310110', 2310110, '11.996420', '22.107401', '-194.509094', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54232, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310121', 2310121, '43.552151', '31.746559', '-242.757904', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310129', 2310129, '80.701881', '31.247450', '-236.730392', 77, 0, 0, 0, 1, 6, 0, 0, 74, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310142', 2310142, '1.488476', '42.615070', '-238.873703', 85, 0, 0, 0, 1, 6, 0, 0, 81, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310155', 2310155, '14.401670', '41.170448', '-236.977097', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310157', 2310157, '13.745920', '41.247570', '-234.937393', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310158', 2310158, '26.641451', '40.972401', '-238.464600', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52606, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310159', 2310159, '23.036869', '41.356541', '-231.651596', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310160', 2310160, '34.532631', '34.329281', '-248.540298', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310161', 2310161, '18.166571', '40.736420', '-243.886398', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310162', 2310162, '36.185360', '34.339809', '-251.152893', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51518, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310163', 2310163, '32.022099', '35.938412', '-251.996597', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310164', 2310164, '2.683093', '41.323040', '-231.439301', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50974, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310165', 2310165, '2.481253', '41.289459', '-247.178207', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310166', 2310166, '3.023275', '41.244370', '-229.524307', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310168', 2310168, '26.339149', '41.310089', '-228.982193', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310169', 2310169, '43.691368', '23.807100', '-197.954498', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49886, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310170', 2310170, '47.955181', '23.796989', '-201.803207', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49614, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310171', 2310171, '27.500080', '23.900030', '-176.426407', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310173', 2310173, '8.713860', '24.977810', '-183.468903', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310174', 2310174, '25.766741', '25.453140', '-197.692993', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310175', 2310175, '21.326250', '25.217710', '-213.513397', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310176', 2310176, '56.209671', '30.207701', '-208.221603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310177', 2310177, '50.222309', '30.207741', '-208.816299', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310178', 2310178, '55.211819', '31.096901', '-223.299698', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310179', 2310179, '44.478668', '30.061560', '-213.305893', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47426, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310180', 2310180, '27.629330', '25.414169', '-203.556198', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47154, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310181', 2310181, '11.799320', '24.994440', '-208.841293', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310182', 2310182, '57.392250', '31.250860', '-237.443100', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310183', 2310183, '56.381592', '31.081989', '-222.324799', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310184', 2310184, '41.846550', '31.327400', '-233.639603', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310185', 2310185, '49.764519', '31.322470', '-239.490097', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310186', 2310186, '45.229160', '30.849199', '-225.986694', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310187', 2310187, '54.603119', '30.526270', '-215.684494', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310188', 2310188, '26.807720', '25.469440', '-208.795700', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310191', 2310191, '53.416069', '23.647209', '-198.466995', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310192', 2310192, '16.458969', '23.952860', '-182.981705', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310193', 2310193, '34.354580', '23.728510', '-188.906204', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310194', 2310194, '24.826321', '38.422710', '-248.892502', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310195', 2310195, '19.778610', '41.225639', '-235.194595', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2310196', 2310196, '10.671480', '41.230179', '-245.656906', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2313233', 2313233, '320.515686', '2.215992', '-18.509239', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81726, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(229, 'e0008', 'bnpc2313234', 2313234, '320.698792', '2.227228', '-15.091220', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81454, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(229, 'e0008', 'bnpc2313235', 2313235, '318.658691', '2.299638', '-15.389510', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81182, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(229, 'e0008', 'bnpc2313237', 2313237, '303.089905', '1.571632', '-19.974110', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80910, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(229, 'e0008', 'bnpc2313238', 2313238, '331.471710', '1.907331', '-17.807329', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80638, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(229, 'e0008', 'bnpc2320820', 2320820, '241.483994', '17.276871', '-145.913101', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80354, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2320821', 2320821, '252.963196', '12.221980', '-153.075394', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80082, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2320822', 2320822, '246.929703', '9.238781', '-175.852005', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79810, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2320826', 2320826, '292.604004', '10.691710', '-162.803802', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79538, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2320827', 2320827, '290.235687', '9.507468', '-185.479797', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79266, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2320828', 2320828, '295.598389', '11.637060', '-160.074707', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78994, 5, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(229, 'e0008', 'bnpc2320830', 2320830, '279.377411', '8.641194', '-170.115997', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78722, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2320832', 2320832, '250.518402', '10.279540', '-169.884796', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78450, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2351462', 2351462, '48.281940', '25.165770', '125.730797', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2351466', 2351466, '33.028351', '19.801689', '204.600204', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2351468', 2351468, '17.664570', '21.473511', '187.304001', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2351469', 2351469, '15.638560', '21.324190', '188.309006', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2351473', 2351473, '48.142170', '19.912979', '204.211395', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125142, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc2351480', 2351480, '31.650410', '24.598419', '125.582100', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc2763397', 2763397, '318.018890', '0.478852', '12.307590', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78190, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(229, 'e0008', 'bnpc2763398', 2763398, '317.199188', '0.290855', '13.417520', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77918, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(229, 'e0008', 'bnpc2763399', 2763399, '313.945190', '0.195134', '8.234367', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77646, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(229, 'e0008', 'bnpc2763400', 2763400, '289.082001', '0.747620', '16.617001', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77374, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(229, 'e0008', 'bnpc2763402', 2763402, '292.225494', '0.411926', '13.809330', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77102, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(229, 'e0008', 'bnpc3739171', 3739171, '-272.839386', '22.280479', '-182.574203', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104362, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(229, 'e0008', 'bnpc3739176', 3739176, '-271.384399', '22.233410', '-181.710205', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104090, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(229, 'e0008', 'bnpc3739178', 3739178, '-270.221985', '22.171329', '-172.442307', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103818, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(229, 'e0008', 'bnpc3739189', 3739189, '-286.671295', '22.598570', '-178.942596', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103546, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(229, 'e0008', 'bnpc3739195', 3739195, '-285.084290', '23.636169', '-193.682800', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103274, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(229, 'e0008', 'bnpc3739197', 3739197, '-302.441498', '24.263420', '-202.146301', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103002, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(229, 'e0008', 'bnpc3739198', 3739198, '-301.991302', '24.106640', '-200.335693', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102730, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(229, 'e0008', 'bnpc3739200', 3739200, '-307.179413', '23.056339', '-191.149796', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102458, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(229, 'e0008', 'bnpc3739223', 3739223, '-306.875397', '9.692472', '-137.887207', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3739241', 3739241, '-102.205200', '2.027415', '-36.144821', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3739247', 3739247, '-101.905197', '2.027430', '-31.359751', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3739298', 3739298, '-64.469414', '0.015212', '63.034969', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97030, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3739305', 3739305, '-142.689407', '0.030637', '161.735504', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96758, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3739308', 3739308, '-173.166397', '0.030539', '149.329895', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96486, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3739310', 3739310, '-183.418106', '0.030539', '144.544296', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96214, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3739417', 3739417, '151.785294', '4.236084', '20.237249', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3739423', 3739423, '152.085297', '4.236084', '15.201380', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3740607', 3740607, '-135.541595', '-0.100001', '467.027588', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138730, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3740609', 3740609, '-138.985397', '-0.100003', '461.260590', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138458, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3740611', 3740611, '-176.964996', '-0.100092', '482.156586', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138186, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3740613', 3740613, '-197.264099', '-0.100169', '480.240295', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3740615', 3740615, '-183.840607', '-0.100061', '448.882111', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3740617', 3740617, '-178.071396', '-0.100048', '447.029205', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3740619', 3740619, '-182.900406', '-0.100169', '476.189514', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3740632', 3740632, '-358.518585', '1.158285', '453.619598', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc3740634', 3740634, '-362.075012', '0.968366', '458.185486', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc3740635', 3740635, '-336.208405', '-0.100018', '460.011810', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc3740636', 3740636, '-362.780701', '1.532029', '454.955414', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc3740637', 3740637, '-338.199493', '-0.100187', '433.127808', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc3740638', 3740638, '-334.106689', '-0.100003', '437.684113', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc3740639', 3740639, '-345.628906', '-0.100008', '453.583313', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc3740640', 3740640, '-333.997498', '-0.100017', '457.273987', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc3740644', 3740644, '-79.519012', '-0.100045', '377.072388', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3740645', 3740645, '-20.504120', '-0.106860', '365.133087', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3740646', 3740646, '-52.782280', '-0.106860', '324.177887', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3740647', 3740647, '-59.319771', '-0.100007', '331.135590', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3740648', 3740648, '-4.964393', '-0.100007', '339.615601', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3740649', 3740649, '-18.177540', '-0.100615', '322.254089', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3740651', 3740651, '-42.146980', '-0.100005', '396.759399', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3740823', 3740823, '52.433182', '8.970453', '290.451111', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124604, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3740824', 3740824, '34.042301', '6.188347', '297.895691', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123244, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(229, 'e0008', 'bnpc3740991', 3740991, '83.869347', '23.640280', '197.587494', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc3740992', 3740992, '83.668243', '23.758640', '201.089493', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc3740993', 3740993, '92.752083', '22.594500', '147.751404', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc3740994', 3740994, '69.937286', '22.357740', '174.791397', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc3870245', 3870245, '-201.828995', '8.309389', '-77.948196', 584, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27764, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(229, 'e0008', 'bnpc3870249', 3870249, '-144.314499', '6.941079', '-45.049019', 585, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27498, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(229, 'e0008', 'bnpc3870258', 3870258, '-169.371506', '8.963833', '-15.339670', 586, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27232, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(229, 'e0008', 'bnpc3870312', 3870312, '213.284805', '9.756709', '-77.238258', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26966, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(229, 'e0008', 'bnpc3870333', 3870333, '150.590805', '8.698524', '-47.601891', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26700, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(229, 'e0008', 'bnpc3870347', 3870347, '213.854004', '6.490500', '-15.706390', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 36, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26434, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(229, 'e0008', 'bnpc3870372', 3870372, '-149.487900', '0.750592', '229.198502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26156, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(229, 'e0008', 'bnpc3870375', 3870375, '-161.511307', '0.485998', '346.191010', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(229, 'e0008', 'bnpc3870382', 3870382, '-231.008896', '0.795779', '399.749115', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25606, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(229, 'e0008', 'bnpc3870387', 3870387, '-228.300903', '0.984585', '517.848816', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25334, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(229, 'e0008', 'bnpc3878991', 3878991, '400.476288', '4.241707', '-40.787842', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70986, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(229, 'e0008', 'bnpc3879006', 3879006, '442.368011', '0.843470', '-27.738720', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70714, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc3879018', 3879018, '447.624695', '0.635267', '-105.764603', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70442, 1, 0, 0, 0, 5, 30074, 0, 0, 0), +(229, 'e0008', 'bnpc3879051', 3879051, '431.967712', '-0.747742', '-65.507080', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70176, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(229, 'e0008', 'bnpc3879065', 3879065, '356.771088', '2.792354', '1.937849', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69898, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(229, 'e0008', 'bnpc3879339', 3879339, '-343.618011', '11.367920', '624.658508', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(229, 'e0008', 'bnpc3879341', 3879341, '-324.269501', '11.551030', '603.662109', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136536, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(229, 'e0008', 'bnpc3879343', 3879343, '-320.241089', '11.612060', '616.174377', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136288, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc3879346', 3879346, '-319.234009', '11.551030', '602.227722', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136016, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(229, 'e0008', 'bnpc3879348', 3879348, '-324.879913', '11.551030', '603.082275', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135744, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(229, 'e0008', 'bnpc3879351', 3879351, '-324.330505', '11.520510', '609.063782', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135448, 1, 0, 0, 0, 41, 0, 0, 0, 0), +(229, 'e0008', 'bnpc3879352', 3879352, '-342.671906', '20.065571', '624.475403', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135176, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(229, 'e0008', 'bnpc3879353', 3879353, '-343.556885', '20.065571', '624.811096', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134928, 1, 0, 0, 0, 41, 30073, 0, 0, 0), +(229, 'e0008', 'bnpc3879398', 3879398, '-335.561188', '11.520510', '620.843811', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134626, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(229, 'e0008', 'bnpc3884509', 3884509, '125.859001', '4.166452', '44.953560', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc3917184', 3917184, '-60.455681', '3.894856', '-39.952641', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc3939726', 3939726, '436.760712', '0.574082', '-105.544098', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69360, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(229, 'e0008', 'bnpc4329476', 4329476, '-188.220093', '9.170593', '94.010742', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95676, 6, 1, 0, 0, 0, 30246, 4329477, 0, 0), +(229, 'e0008', 'bnpc4333062', 4333062, '-159.767395', '3.700634', '137.279205', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94652, 6, 1, 0, 0, 0, 30246, 4333061, 0, 0), +(229, 'e0008', 'bnpc4621322', 4621322, '28.233730', '25.315451', '115.697998', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28790, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(229, 'e0008', 'bnpc4621339', 4621339, '-337.105499', '20.119471', '615.520508', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28518, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1132780', 1132780, '42.705971', '6.489012', '-222.119598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132784', 1132784, '43.994171', '7.081282', '-226.261307', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132785', 1132785, '46.368141', '6.532326', '-222.363800', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230902, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132786', 1132786, '50.249649', '8.663927', '-237.583603', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132810', 1132810, '119.142403', '17.274370', '-264.585907', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132815', 1132815, '53.141479', '4.367238', '-208.718597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132818', 1132818, '57.950279', '4.701855', '-181.906006', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132819', 1132819, '53.380199', '3.647015', '-170.941803', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132823', 1132823, '85.892982', '4.386182', '-186.633102', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132827', 1132827, '136.440002', '-0.215091', '-142.126297', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132829', 1132829, '139.586502', '1.436886', '-162.906296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132833', 1132833, '144.692596', '1.594073', '-161.313507', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132834', 1132834, '169.345306', '-0.575563', '-143.321701', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132835', 1132835, '132.885803', '4.471908', '-182.040894', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132836', 1132836, '127.652000', '2.679112', '-179.060898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132837', 1132837, '133.402802', '5.498395', '-185.220093', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132842', 1132842, '104.130501', '4.751109', '-199.651596', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132988', 1132988, '145.939301', '0.761501', '-119.501801', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132990', 1132990, '165.896698', '-0.582151', '-142.284103', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132991', 1132991, '196.646301', '-2.798964', '-155.795898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132992', 1132992, '159.011398', '0.196450', '-113.407997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226012, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1132993', 1132993, '162.856598', '-0.357008', '-115.116997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225740, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133000', 1133000, '202.288803', '-2.206049', '-168.963196', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225468, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133001', 1133001, '223.772705', '-6.852091', '-140.217407', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225196, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133002', 1133002, '206.683395', '-2.759299', '-171.221497', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224924, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133005', 1133005, '231.146698', '-5.044106', '-178.307693', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224652, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133007', 1133007, '242.902496', '-0.494766', '-191.458496', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224380, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133008', 1133008, '239.977493', '-0.588080', '-191.828400', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224108, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133010', 1133010, '221.392303', '-6.460419', '-138.050598', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223836, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133022', 1133022, '332.788513', '-3.345333', '-151.251495', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201534, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133023', 1133023, '298.603699', '-6.332541', '-125.749603', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133029', 1133029, '302.693298', '-3.341390', '-184.143005', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133031', 1133031, '328.386993', '-0.505648', '-187.936401', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133032', 1133032, '342.892487', '-1.328422', '-175.218201', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133035', 1133035, '358.327515', '-2.255364', '-175.310898', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133036', 1133036, '335.507294', '0.561625', '-194.418793', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133042', 1133042, '439.946808', '10.149250', '-108.177101', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169468, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133044', 1133044, '458.584900', '14.997390', '-90.379593', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169740, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133047', 1133047, '463.401215', '25.778530', '-35.324680', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168380, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133049', 1133049, '445.243591', '31.812080', '-9.685579', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168652, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133052', 1133052, '486.745514', '31.609249', '-44.177990', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168924, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133053', 1133053, '487.618011', '31.024900', '-55.958771', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170012, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133054', 1133054, '483.304291', '30.900890', '-51.161331', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172188, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133056', 1133056, '482.511993', '23.910801', '-88.545013', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173276, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133057', 1133057, '480.679291', '24.104330', '-120.189201', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169196, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133063', 1133063, '504.435913', '29.146271', '-83.562149', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173004, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133064', 1133064, '482.169495', '24.010910', '-92.475502', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172732, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133065', 1133065, '459.642914', '24.454941', '-39.719559', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172460, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133066', 1133066, '453.938690', '26.000799', '-33.810230', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170828, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133070', 1133070, '351.512787', '3.052480', '46.861389', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133071', 1133071, '341.298492', '3.983801', '67.704231', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133072', 1133072, '348.626495', '0.976962', '28.015940', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133073', 1133073, '342.183502', '0.098491', '27.298340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133077', 1133077, '309.071411', '-2.609340', '63.065491', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133080', 1133080, '281.574707', '-7.184652', '26.169170', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133098', 1133098, '289.254913', '-5.168305', '48.585239', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133100', 1133100, '291.498688', '-5.368438', '47.821369', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133126', 1133126, '-82.030632', '1.519239', '-141.488693', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148770, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133128', 1133128, '-77.317497', '1.083344', '-136.644608', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148498, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133130', 1133130, '-63.375290', '0.643326', '-166.887497', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148226, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133131', 1133131, '-64.313164', '0.965167', '-162.181503', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147954, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133132', 1133132, '-75.591331', '1.176651', '-142.404297', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147682, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133138', 1133138, '-33.189919', '-4.914308', '-94.149628', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147410, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133148', 1133148, '86.244072', '-19.783070', '210.247406', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133152', 1133152, '70.510750', '-17.727341', '188.296799', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133156', 1133156, '56.609531', '-22.226370', '292.790710', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133163', 1133163, '25.970390', '-24.061230', '233.649994', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133165', 1133165, '37.231960', '-26.765560', '260.079498', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133167', 1133167, '36.484268', '-25.833570', '242.542099', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133172', 1133172, '94.585983', '-24.244490', '288.477509', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133176', 1133176, '98.126083', '-23.363501', '294.977814', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133177', 1133177, '85.597298', '-27.953020', '268.263000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133178', 1133178, '89.747749', '-28.194380', '266.065704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133179', 1133179, '141.949905', '-28.936390', '333.222290', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133181', 1133181, '160.046402', '-31.802570', '350.789795', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133185', 1133185, '164.906906', '-32.018280', '333.485504', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133186', 1133186, '146.226807', '-28.810591', '357.818298', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133187', 1133187, '196.479996', '-32.228100', '370.754303', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133189', 1133189, '179.687897', '-32.476631', '364.163086', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133193', 1133193, '213.929794', '-29.694580', '421.080688', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133194', 1133194, '210.157394', '-29.179230', '422.919312', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133195', 1133195, '202.300293', '-31.331381', '415.743286', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133196', 1133196, '197.350098', '-27.568890', '432.363586', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133197', 1133197, '127.580299', '-21.390261', '452.635986', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133198', 1133198, '140.825500', '-23.697309', '449.881714', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133199', 1133199, '140.459198', '-23.605749', '454.489899', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133202', 1133202, '12.397950', '-27.619690', '294.880493', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133205', 1133205, '-18.143021', '-24.734921', '265.369598', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133206', 1133206, '-12.771850', '-24.094040', '262.958710', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133207', 1133207, '-9.199866', '-28.976500', '329.645294', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140338, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133209', 1133209, '-28.712330', '-27.396271', '280.689209', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140066, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133235', 1133235, '-294.825012', '66.698837', '-219.308807', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94446, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133239', 1133239, '-293.659912', '67.460083', '-222.491806', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94174, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133246', 1133246, '-302.510101', '60.959740', '-159.319504', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93902, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133248', 1133248, '-302.700409', '62.132381', '-166.402496', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133255', 1133255, '-356.364685', '65.308533', '-258.518585', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133257', 1133257, '-369.039490', '65.567993', '-232.715393', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133258', 1133258, '-392.416290', '67.276978', '-249.713898', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1133287', 1133287, '197.283798', '-8.773984', '-27.176359', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133291', 1133291, '211.352707', '-8.651912', '-43.106781', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133293', 1133293, '157.305206', '-7.888961', '-17.929399', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133294', 1133294, '157.244202', '-8.163623', '-11.917340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133298', 1133298, '120.449799', '-4.840655', '13.528090', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1133303', 1133303, '104.203796', '-7.003938', '47.562321', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135577', 1135577, '335.133911', '-4.725379', '-24.794729', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196916, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135582', 1135582, '371.054596', '0.844982', '-35.208488', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196644, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135586', 1135586, '374.433105', '1.702958', '-25.284241', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135591', 1135591, '345.784607', '-2.975556', '-32.761169', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135593', 1135593, '332.478790', '-3.372291', '3.097534', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135605', 1135605, '395.773193', '2.548209', '-44.693722', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135606', 1135606, '415.025085', '5.625315', '-64.068764', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135607', 1135607, '388.509888', '0.304810', '-66.453087', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135612', 1135612, '394.000214', '3.556523', '-87.144318', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135613', 1135613, '375.936493', '0.686609', '-85.923592', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135614', 1135614, '343.831512', '-5.020265', '-80.094650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135616', 1135616, '409.009888', '5.209702', '-112.078003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135617', 1135617, '417.517700', '5.755183', '-68.232597', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135618', 1135618, '412.284607', '5.636008', '-106.424400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135619', 1135619, '406.314209', '5.571515', '-103.380302', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135624', 1135624, '386.668915', '4.336706', '-103.087303', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135625', 1135625, '364.309509', '0.784262', '-125.017197', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135627', 1135627, '359.853485', '-2.578822', '-152.483398', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135628', 1135628, '350.999207', '-2.118987', '-128.300003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135629', 1135629, '316.613586', '8.015758', '128.187897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135632', 1135632, '323.190002', '9.736116', '132.826904', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135633', 1135633, '322.078613', '10.136940', '134.004807', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191210, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(230, 'e0009', 'bnpc1135639', 1135639, '288.849091', '17.952721', '161.725601', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135643', 1135643, '286.915314', '19.626829', '172.441101', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135645', 1135645, '295.765594', '16.383280', '167.437195', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1135646', 1135646, '318.979004', '13.831220', '155.957001', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1135647', 1135647, '290.314087', '17.922770', '159.804199', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1135651', 1135651, '-262.056305', '55.970860', '36.748020', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135671', 1135671, '-462.059692', '64.698357', '68.829857', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1135673', 1135673, '-398.458893', '51.156910', '68.804077', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83602, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1135685', 1135685, '-418.844910', '58.274151', '-34.409142', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135687', 1135687, '-520.153870', '65.239517', '61.102520', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80888, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1135688', 1135688, '-508.781586', '65.293297', '40.634731', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81432, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1135931', 1135931, '272.581390', '23.939560', '195.025894', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135933', 1135933, '241.474594', '24.000601', '179.914902', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135937', 1135937, '-101.839104', '-40.043732', '299.745911', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1135938', 1135938, '-105.816902', '-40.028461', '306.239807', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1135939', 1135939, '-90.198776', '-40.129551', '324.673096', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1135940', 1135940, '-94.585022', '-40.032150', '311.676514', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1135941', 1135941, '-114.854698', '-40.054981', '302.937286', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135942', 1135942, '-97.734077', '-40.054981', '304.310608', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135943', 1135943, '-102.695999', '-40.032539', '320.445892', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1135944', 1135944, '-83.087273', '-39.867889', '327.616211', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162337', 1162337, '283.977112', '-6.509701', '-148.452805', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162338', 1162338, '281.871399', '-6.690229', '-150.039703', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162341', 1162341, '315.751801', '-4.718813', '-109.327103', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162344', 1162344, '309.980103', '1.983368', '92.979958', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162345', 1162345, '337.067413', '3.266761', '71.050873', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162348', 1162348, '130.357803', '-6.759793', '57.419651', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162351', 1162351, '222.430695', '-7.827925', '-60.441029', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162352', 1162352, '227.527206', '-7.187046', '-66.727753', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162353', 1162353, '203.082306', '-7.339636', '-68.925049', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162354', 1162354, '221.484604', '-7.400672', '-64.011642', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162358', 1162358, '-19.657080', '0.269221', '-140.150803', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1162368', 1162368, '112.853699', '-26.954611', '251.195801', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162369', 1162369, '89.158417', '-24.246630', '236.957306', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162371', 1162371, '217.547806', '-31.967699', '395.895294', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162374', 1162374, '-2.485424', '-31.687981', '451.364502', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162376', 1162376, '-10.696620', '-34.134480', '443.381287', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162378', 1162378, '-23.636271', '-35.911461', '462.485596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162380', 1162380, '-61.417610', '-36.118149', '490.745300', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162384', 1162384, '-4.128872', '-28.294901', '327.096588', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1162385', 1162385, '-48.920349', '-35.910400', '310.262909', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1162386', 1162386, '-66.916382', '-32.083370', '343.644196', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1162387', 1162387, '-65.420998', '-31.630421', '353.013306', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1162390', 1162390, '-298.542786', '20.650921', '132.768707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162391', 1162391, '-294.392303', '20.060690', '130.388306', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162392', 1162392, '-296.020508', '20.999870', '168.359299', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162393', 1162393, '-297.016907', '20.876789', '122.239998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162394', 1162394, '-208.026505', '3.601872', '2.164479', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162398', 1162398, '-396.566711', '63.980961', '-218.615997', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1162399', 1162399, '-347.955994', '66.968529', '-220.251999', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1162402', 1162402, '-291.152710', '61.247379', '-168.828796', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1162403', 1162403, '-351.183289', '63.740372', '-153.645599', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162412', 1162412, '-365.503204', '62.324249', '-85.497841', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162413', 1162413, '-365.240814', '62.204288', '-87.690971', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162416', 1162416, '-353.685791', '63.380310', '-149.922501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1162426', 1162426, '-501.091003', '65.293297', '90.318100', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1162427', 1162427, '-534.918823', '65.381104', '43.912449', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81160, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1180878', 1180878, '104.639297', '-8.000016', '-91.168152', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1180879', 1180879, '105.168701', '-8.000016', '-94.222618', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1180880', 1180880, '106.210297', '-8.000016', '-96.527153', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1183451', 1183451, '104.347603', '-8.000016', '-88.522499', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1183452', 1183452, '101.512100', '-8.064646', '-97.812950', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1183453', 1183453, '100.580399', '-8.000016', '-95.459229', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1183454', 1183454, '99.803108', '-8.184623', '-92.716454', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1183455', 1183455, '99.192757', '-8.361253', '-89.878258', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234346, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1183456', 1183456, '96.327393', '-8.500061', '-99.385361', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1183458', 1183458, '95.550194', '-8.460118', '-96.840134', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1183459', 1183459, '94.825958', '-8.500061', '-93.978119', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1183460', 1183460, '94.179993', '-8.500061', '-90.982887', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1408325', 1408325, '107.492897', '15.984340', '-270.054596', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1408329', 1408329, '119.554398', '17.410500', '-259.693298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1408332', 1408332, '111.600800', '16.549120', '-248.298096', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1408334', 1408334, '117.813103', '17.697479', '-247.780807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1408341', 1408341, '111.814400', '16.758829', '-244.880096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1408351', 1408351, '86.796638', '15.940370', '-262.601105', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1408352', 1408352, '68.921707', '16.132620', '-262.037811', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1408353', 1408353, '68.168861', '16.760660', '-264.307190', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1408357', 1408357, '72.243088', '10.935070', '-243.492706', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1408358', 1408358, '87.101822', '15.245950', '-260.648010', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221122, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410560', 1410560, '103.350998', '14.389260', '-254.875107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410688', 1410688, '50.217388', '6.559038', '-223.468399', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410689', 1410689, '39.352970', '4.053384', '-182.513199', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410690', 1410690, '37.860909', '3.934789', '-183.153900', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410691', 1410691, '55.661430', '4.710185', '-183.981201', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1410693', 1410693, '-1.083989', '1.339663', '-188.567398', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219478, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1410694', 1410694, '0.474049', '1.531124', '-191.204697', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219206, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1410695', 1410695, '8.437746', '1.980624', '-176.756195', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218934, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1410696', 1410696, '-15.013690', '1.551492', '-198.619598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218662, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1410698', 1410698, '7.450444', '1.514552', '-190.764694', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410699', 1410699, '8.438234', '3.222636', '-146.234497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410700', 1410700, '14.477130', '3.104484', '-138.479904', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410701', 1410701, '16.068541', '3.373573', '-139.535202', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217574, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1410703', 1410703, '-15.113390', '3.146425', '-233.722000', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217302, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1410704', 1410704, '-4.948251', '4.778366', '-234.155304', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217030, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1410705', 1410705, '8.210199', '5.748120', '-247.337402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1410707', 1410707, '9.591916', '5.570471', '-251.132996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216498, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410708', 1410708, '5.815275', '5.237663', '-249.501099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216226, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410709', 1410709, '-9.906527', '3.594761', '-217.097595', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215954, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410712', 1410712, '-13.648660', '3.344659', '-231.383408', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215682, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410714', 1410714, '-30.136610', '0.909592', '-224.200897', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1410715', 1410715, '48.355789', '9.194451', '-243.366196', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1410716', 1410716, '74.908539', '4.285552', '-211.076706', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1410851', 1410851, '88.732697', '4.082766', '-185.738998', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215138, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410853', 1410853, '130.975204', '4.971314', '-185.109497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214866, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410976', 1410976, '131.470093', '2.068069', '-173.581100', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214594, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410977', 1410977, '107.495903', '0.653863', '-168.558304', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214322, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410978', 1410978, '142.190598', '1.204836', '-160.400803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214050, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410979', 1410979, '148.032898', '0.649221', '-123.475403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213778, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410982', 1410982, '166.648804', '-1.181116', '-137.457901', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213506, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410983', 1410983, '178.145996', '-1.608972', '-140.621307', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213228, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1410984', 1410984, '168.844696', '2.701761', '-163.503296', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212962, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410990', 1410990, '199.114899', '-0.803801', '-174.853195', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212684, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1410996', 1410996, '202.197205', '-1.697314', '-172.655899', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212418, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410998', 1410998, '239.098404', '-2.190103', '-187.159805', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212146, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1410999', 1410999, '221.515396', '-6.264487', '-154.155502', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211874, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411000', 1411000, '227.837204', '-8.126032', '-125.948700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211602, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411003', 1411003, '174.579300', '-1.892151', '-102.278099', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411004', 1411004, '182.699707', '-4.339209', '-88.384857', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211058, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411005', 1411005, '161.154007', '4.078132', '-169.399704', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411032', 1411032, '271.173798', '-9.203460', '-119.877403', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411034', 1411034, '330.082886', '-2.640436', '-152.968796', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173790, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411036', 1411036, '305.867188', '-2.983790', '-188.262894', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411037', 1411037, '302.815399', '-3.417479', '-190.063507', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411038', 1411038, '283.192108', '-6.780017', '-171.401596', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411042', 1411042, '287.338715', '-5.114256', '-195.320007', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411049', 1411049, '276.640594', '-8.026556', '-141.155594', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411065', 1411065, '308.725311', '-4.528103', '-80.785583', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411066', 1411066, '311.802795', '-5.117999', '-76.683037', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411069', 1411069, '291.112213', '-5.409167', '-79.667397', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411071', 1411071, '346.714203', '-3.206666', '-41.466160', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411078', 1411078, '264.779999', '-11.621630', '-65.637466', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183878, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411084', 1411084, '234.546997', '-11.793010', '-2.134793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183606, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411085', 1411085, '250.625107', '-8.387555', '28.634951', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183334, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411086', 1411086, '313.420288', '-6.097115', '16.095341', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183038, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411087', 1411087, '314.703308', '-5.599903', '20.012140', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182766, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411119', 1411119, '309.285095', '2.975462', '97.764503', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182494, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411120', 1411120, '326.314087', '2.426137', '90.012917', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182222, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411121', 1411121, '371.612488', '7.304699', '55.979481', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411124', 1411124, '375.810211', '7.175481', '51.219879', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411135', 1411135, '420.071991', '5.244238', '-35.509991', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411136', 1411136, '417.919312', '5.091386', '-39.660309', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411137', 1411137, '425.005402', '6.439638', '-41.263420', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411148', 1411148, '449.318512', '32.509201', '-8.551085', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170556, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411152', 1411152, '505.440613', '42.969250', '-25.847120', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170284, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411155', 1411155, '511.920410', '44.121750', '-42.307079', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171644, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411157', 1411157, '502.891510', '43.241459', '-46.006001', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171372, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411159', 1411159, '481.475494', '41.105301', '-9.940406', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171100, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411160', 1411160, '484.982300', '41.536228', '-12.749530', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171916, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411162', 1411162, '201.709000', '-7.309118', '-73.014473', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181134, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411163', 1411163, '206.805496', '-9.964188', '-16.037279', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180862, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411164', 1411164, '183.550705', '-8.560358', '-4.379386', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180590, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411167', 1411167, '127.300301', '-5.901662', '12.460290', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180318, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411170', 1411170, '92.851097', '-4.928711', '4.867581', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180046, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411171', 1411171, '127.489098', '-7.126010', '58.609852', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179774, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411173', 1411173, '216.815399', '-9.170719', '-44.144390', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411174', 1411174, '218.066605', '-9.475899', '-42.282791', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411176', 1411176, '184.252594', '-8.621394', '-0.259450', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411178', 1411178, '102.749901', '-11.800030', '112.244499', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411179', 1411179, '107.205597', '-7.793041', '74.349869', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411180', 1411180, '84.061897', '-6.851347', '16.464439', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411181', 1411181, '84.336563', '-6.698757', '13.137970', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411182', 1411182, '275.292297', '23.606110', '190.161697', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411186', 1411186, '288.694397', '21.579050', '187.354996', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177344, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411187', 1411187, '286.440796', '21.978689', '190.167206', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177072, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411193', 1411193, '237.018204', '23.458019', '156.614304', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176800, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411197', 1411197, '211.473099', '23.453070', '169.805405', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176528, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411198', 1411198, '209.800598', '23.457560', '211.348297', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176256, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411202', 1411202, '205.811798', '24.000139', '204.175003', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175984, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411203', 1411203, '226.011993', '23.536930', '175.448105', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175712, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411206', 1411206, '227.024994', '24.063431', '228.666702', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175440, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411207', 1411207, '224.858200', '23.422550', '230.009598', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175168, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411208', 1411208, '234.736603', '23.544621', '214.365707', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411210', 1411210, '233.020493', '23.453070', '214.312897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411213', 1411213, '213.946701', '23.453070', '226.459106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411214', 1411214, '211.749405', '23.453070', '228.168106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411218', 1411218, '228.444595', '23.457581', '165.045898', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411220', 1411220, '382.833496', '13.565220', '79.972481', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159876, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411222', 1411222, '374.288513', '12.161390', '84.031380', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158516, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411223', 1411223, '409.964111', '18.326040', '60.501968', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159604, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411225', 1411225, '411.001709', '26.138660', '123.399696', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158788, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411227', 1411227, '436.179108', '32.211750', '101.823402', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159060, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411228', 1411228, '439.383514', '32.761070', '98.649529', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157972, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411233', 1411233, '-58.666859', '-4.080153', '-116.513397', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134082, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411234', 1411234, '-111.996201', '6.549166', '-145.525208', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411235', 1411235, '-123.994698', '12.085680', '-163.495407', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411236', 1411236, '-120.946297', '10.817430', '-167.745193', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411237', 1411237, '-179.948700', '2.732331', '-103.572197', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1411238', 1411238, '-212.568405', '1.504992', '-84.178993', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97676, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(230, 'e0009', 'bnpc1411240', 1411240, '-212.756607', '1.846313', '-94.163452', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96316, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(230, 'e0009', 'bnpc1411241', 1411241, '-214.172699', '1.359615', '-82.278023', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96044, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(230, 'e0009', 'bnpc1411242', 1411242, '-213.856293', '1.439267', '-83.871033', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96588, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(230, 'e0009', 'bnpc1411244', 1411244, '-193.905304', '2.125694', '-41.069290', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97948, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(230, 'e0009', 'bnpc1411253', 1411253, '-56.382130', '-4.928711', '-94.529694', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411254', 1411254, '-20.293131', '-2.590379', '-100.341103', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411255', 1411255, '-23.246990', '0.393718', '-138.153305', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411256', 1411256, '-59.128750', '0.758792', '-164.202393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411655', 1411655, '-92.954361', '1.786075', '-122.393898', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411656', 1411656, '-93.869904', '1.736482', '-119.067497', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411657', 1411657, '-109.805397', '6.718060', '-150.029800', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411658', 1411658, '-176.756607', '2.961861', '-114.443398', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1411659', 1411659, '-205.790604', '2.068845', '-61.951530', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412058', 1412058, '-196.154800', '1.939114', '-25.589430', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412059', 1412059, '-163.822601', '0.087921', '-11.411790', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412062', 1412062, '71.492859', '-11.893120', '161.389404', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412463', 1412463, '107.728401', '-8.259025', '159.304703', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412464', 1412464, '108.796501', '-7.985859', '156.375000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412465', 1412465, '45.309830', '-13.145570', '164.612595', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412467', 1412467, '86.263412', '-10.238450', '166.918396', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412470', 1412470, '43.860840', '-19.453880', '194.128098', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412471', 1412471, '40.686970', '-20.436541', '199.194107', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412474', 1412474, '83.274986', '-19.705959', '207.342194', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412475', 1412475, '56.498798', '-24.125010', '265.742401', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412476', 1412476, '56.595661', '-23.666790', '269.184387', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412477', 1412477, '67.313408', '-23.280479', '279.101715', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412478', 1412478, '130.256897', '-28.458679', '285.610504', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412480', 1412480, '84.874817', '-11.151300', '170.539902', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412482', 1412482, '48.863239', '-15.723400', '175.131393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126218, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(230, 'e0009', 'bnpc1412483', 1412483, '91.596550', '-15.216650', '191.087204', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412484', 1412484, '40.536888', '-24.919319', '239.885193', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412486', 1412486, '12.541730', '-30.409491', '274.885712', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412488', 1412488, '84.885887', '-24.795959', '238.330597', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412489', 1412489, '100.537003', '-25.090691', '289.606689', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412890', 1412890, '192.974106', '-32.093040', '371.993805', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412891', 1412891, '174.770096', '-30.985760', '392.154999', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412892', 1412892, '169.164200', '-29.940310', '393.395111', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412893', 1412893, '172.161407', '-30.924379', '389.056885', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412894', 1412894, '171.285507', '-29.285271', '402.230988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412895', 1412895, '154.779907', '-26.129629', '405.514008', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412896', 1412896, '168.913696', '-28.561871', '440.527588', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412897', 1412897, '173.811401', '-24.163700', '462.640015', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412898', 1412898, '172.581100', '-23.212021', '466.157715', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412900', 1412900, '157.804596', '-31.533340', '347.603088', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412901', 1412901, '181.335403', '-32.472290', '364.442596', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412902', 1412902, '173.037506', '-29.813890', '400.369385', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412903', 1412903, '215.503098', '-32.150810', '397.756897', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412904', 1412904, '151.140594', '-25.314760', '448.172699', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1412905', 1412905, '174.771194', '-22.925610', '465.693207', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413304', 1413304, '-10.375770', '-30.070101', '357.174011', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120482, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1413305', 1413305, '-73.187973', '-29.638651', '377.182007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120210, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1413306', 1413306, '7.099501', '-28.323009', '389.698700', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119938, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1413307', 1413307, '-25.474409', '-30.239300', '288.173004', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413309', 1413309, '2.871708', '-26.996679', '314.962891', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413310', 1413310, '-43.682961', '-31.251160', '365.171295', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413311', 1413311, '-60.904331', '-32.109970', '348.252411', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413312', 1413312, '-26.264040', '-32.967579', '411.424805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413711', 1413711, '1.843092', '-32.621689', '440.420288', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413712', 1413712, '-47.684052', '-34.975368', '436.820007', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413713', 1413713, '-62.874069', '-35.826691', '451.367706', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413714', 1413714, '-36.040771', '-30.235821', '405.258087', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413715', 1413715, '-77.531143', '-35.740108', '463.920013', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413716', 1413716, '-81.834183', '-35.561951', '465.537415', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413717', 1413717, '-81.132263', '-36.687901', '482.108704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413718', 1413718, '-64.000313', '-36.181229', '492.846497', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413719', 1413719, '-45.209900', '-36.768280', '469.442810', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413721', 1413721, '-49.479870', '-31.658331', '420.700195', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413723', 1413723, '-61.146591', '-34.546021', '439.197601', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413724', 1413724, '-12.636190', '-34.818890', '433.701904', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413725', 1413725, '-21.261789', '-35.776421', '463.813293', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1413726', 1413726, '-80.766037', '-35.860481', '467.917786', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1414923', 1414923, '-251.624496', '8.046767', '9.209213', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1414924', 1414924, '-237.355103', '14.172800', '56.681469', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1414925', 1414925, '-240.865097', '13.064570', '51.144550', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1414928', 1414928, '-261.738007', '16.472500', '59.800060', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1414929', 1414929, '-271.273499', '19.264000', '95.431259', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1414931', 1414931, '-299.224915', '20.999870', '171.197403', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1414932', 1414932, '-335.657013', '21.199930', '166.262405', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1414935', 1414935, '-333.186493', '21.314899', '161.005798', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1414936', 1414936, '-351.155914', '21.194731', '192.767197', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1414938', 1414938, '-239.843002', '7.295271', '0.194433', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1415337', 1415337, '-263.631592', '17.193020', '61.247459', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1415339', 1415339, '-340.596497', '21.199930', '161.368500', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1415340', 1415340, '-332.306000', '21.000000', '208.378098', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1415341', 1415341, '-328.043915', '21.000000', '211.118393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1415342', 1415342, '-292.652802', '20.981110', '203.265396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1415343', 1415343, '-87.174072', '-39.921982', '291.489105', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1415344', 1415344, '-112.985397', '-40.020420', '312.799713', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1415345', 1415345, '-86.737244', '-40.184792', '302.023285', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1415346', 1415346, '-116.616600', '-40.014709', '309.506805', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1415347', 1415347, '-244.678497', '66.147812', '-179.125702', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1415348', 1415348, '-241.352005', '66.788689', '-178.362701', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1415352', 1415352, '-351.735809', '67.765259', '-226.093002', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1415353', 1415353, '-354.085602', '67.313278', '-222.043106', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1415354', 1415354, '-354.115387', '66.529556', '-254.235596', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1415358', 1415358, '-429.221008', '60.624039', '-145.159103', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1415359', 1415359, '-431.571014', '61.023251', '-141.100204', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1415360', 1415360, '-409.323303', '61.264919', '-120.927803', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1415361', 1415361, '-290.298706', '60.229500', '-115.695396', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1415364', 1415364, '-313.710297', '62.882381', '-46.982571', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1415365', 1415365, '-308.186493', '62.943420', '-50.370079', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72208, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1415367', 1415367, '-304.768494', '62.180470', '-99.076874', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72480, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1415368', 1415368, '-275.257507', '60.807152', '-84.214577', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71664, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1415375', 1415375, '-262.012695', '62.577202', '-39.993938', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1415376', 1415376, '-417.990387', '64.377762', '-51.102509', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1415377', 1415377, '-416.159302', '65.476410', '-55.924358', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1415378', 1415378, '-446.097504', '57.907940', '-22.476589', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1415379', 1415379, '-454.154297', '61.631142', '-28.213980', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1415381', 1415381, '-285.852814', '61.458679', '25.148211', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1415382', 1415382, '-414.267212', '60.471451', '-98.405472', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1415383', 1415383, '-462.152802', '62.699409', '-106.490501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1415384', 1415384, '-465.866913', '62.824699', '-107.035797', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1416355', 1416355, '184.649399', '-7.461709', '-54.703640', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173518, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc1418012', 1418012, '397.388092', '18.876289', '87.758537', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149848, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc1418013', 1418013, '272.692596', '-2.411928', '61.854092', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150120, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154901', 2154901, '-288.593994', '59.581390', '-121.735901', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64604, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2154903', 2154903, '-303.822388', '59.830570', '-130.571503', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2154910', 2154910, '-290.943787', '61.814331', '-175.341400', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64876, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2154912', 2154912, '-384.725800', '64.377808', '-230.792694', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2154914', 2154914, '-416.247894', '61.594559', '-135.801102', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2154915', 2154915, '-397.116089', '56.778770', '-87.632607', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2154916', 2154916, '-408.031494', '53.104481', '35.133572', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2154917', 2154917, '-274.891388', '62.760250', '-48.600040', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2154925', 2154925, '-365.255188', '56.015820', '61.905800', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2154932', 2154932, '-452.140106', '63.523258', '-235.614594', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92276, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154933', 2154933, '-486.564514', '58.060532', '-222.186707', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154938', 2154938, '-449.027313', '55.863232', '-205.401703', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91732, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154939', 2154939, '-453.788086', '56.259960', '-203.845306', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91460, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154940', 2154940, '-449.607086', '55.100281', '-200.518799', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91188, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154941', 2154941, '-459.128693', '64.652428', '-264.026886', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154943', 2154943, '-483.543213', '58.182598', '-215.136993', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90112, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154944', 2154944, '-488.316101', '67.415604', '-265.598907', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154945', 2154945, '-487.007385', '67.617432', '-267.616608', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90916, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154950', 2154950, '-508.114197', '73.937157', '-289.616486', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154952', 2154952, '-505.210999', '72.800743', '-287.708893', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154954', 2154954, '-475.800293', '75.099243', '-316.311890', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88486, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154959', 2154959, '-474.076904', '71.450668', '-300.198914', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154963', 2154963, '-481.180389', '74.270866', '-319.393005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88752, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154965', 2154965, '-509.328613', '51.460609', '-230.011002', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154966', 2154966, '-530.510376', '48.020088', '-245.654999', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87670, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154968', 2154968, '-550.774414', '46.775639', '-245.014099', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154969', 2154969, '-546.684998', '46.860470', '-244.251205', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154970', 2154970, '-545.647400', '50.522579', '-203.540100', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154971', 2154971, '-547.356384', '51.163448', '-199.786407', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154973', 2154973, '-572.310486', '49.567921', '-226.453506', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90644, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154974', 2154974, '-564.080322', '50.297001', '-211.993607', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154976', 2154976, '-508.251099', '57.374981', '-255.303207', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154978', 2154978, '-533.645081', '43.546291', '-230.397507', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2154980', 2154980, '-468.316010', '57.494301', '-212.252502', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2154982', 2154982, '-485.247803', '68.405968', '-274.754211', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2154983', 2154983, '-505.135406', '73.043167', '-290.313904', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2154985', 2154985, '-528.526672', '48.142170', '-244.495300', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2154986', 2154986, '-568.407227', '50.556568', '-214.304596', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320574', 2320574, '261.921387', '1.753539', '-223.409698', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210786, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320575', 2320575, '261.238495', '0.534709', '-243.419296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320576', 2320576, '263.797699', '1.764011', '-223.470901', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320577', 2320577, '259.453186', '1.043279', '-240.840607', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320579', 2320579, '274.919800', '-1.072963', '-256.170593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209698, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320580', 2320580, '300.060089', '-0.888014', '-307.572510', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320581', 2320581, '324.245514', '-1.093548', '-288.072113', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320582', 2320582, '298.274811', '-0.855762', '-304.993805', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320583', 2320583, '325.011292', '-1.286943', '-316.835388', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208610, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320584', 2320584, '287.788513', '-0.475198', '-298.277313', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208338, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320585', 2320585, '329.843903', '-0.745502', '-290.159698', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320586', 2320586, '325.924103', '-0.928046', '-285.067993', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320587', 2320587, '327.193207', '-1.286943', '-313.833496', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207522, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320588', 2320588, '337.177185', '0.441468', '-264.191803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207250, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320589', 2320589, '332.682892', '0.959346', '-254.439896', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206978, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320590', 2320590, '329.305206', '0.991071', '-252.106293', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206706, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320591', 2320591, '304.253815', '-0.643113', '-258.978912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320596', 2320596, '346.493591', '-0.483981', '-328.131287', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206162, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320597', 2320597, '302.790710', '-1.010156', '-352.830505', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320598', 2320598, '273.957489', '-0.689871', '-328.818512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205618, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320599', 2320599, '268.469910', '-0.593068', '-327.086395', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205346, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320600', 2320600, '267.525513', '-0.806307', '-329.538208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205074, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320601', 2320601, '276.737091', '0.547026', '-314.840912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320610', 2320610, '288.781494', '-1.187131', '-281.665588', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320612', 2320612, '330.290802', '-1.286943', '-344.531311', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320617', 2320617, '92.850220', '-10.902450', '173.235596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320637', 2320637, '-108.605698', '-30.528610', '272.296295', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320638', 2320638, '-138.649902', '-23.382610', '264.698212', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320639', 2320639, '-99.474327', '-30.263571', '271.854614', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320641', 2320641, '-170.286606', '-27.619471', '297.813995', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320642', 2320642, '-171.781998', '-27.505461', '288.445007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320643', 2320643, '-165.769897', '-27.707670', '293.053192', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320645', 2320645, '-125.383400', '-25.040100', '360.402802', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320646', 2320646, '-137.475906', '-27.672729', '336.516113', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320647', 2320647, '-141.819901', '-30.193661', '309.942688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320649', 2320649, '-59.102539', '-28.549570', '296.388702', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320650', 2320650, '277.147400', '-31.644880', '389.827209', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320651', 2320651, '250.690399', '-30.350241', '408.346588', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106362, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320652', 2320652, '274.666290', '-31.273550', '391.993988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320654', 2320654, '299.640686', '-31.632290', '402.348511', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320655', 2320655, '300.434814', '-32.791679', '411.978302', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320656', 2320656, '342.732788', '-31.784590', '408.346588', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320658', 2320658, '308.735687', '-32.272881', '398.214600', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320659', 2320659, '329.910309', '-31.601860', '408.307800', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320660', 2320660, '332.175415', '-31.647480', '410.657013', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320661', 2320661, '344.838593', '-31.113190', '440.115906', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320664', 2320664, '144.316299', '-22.573250', '513.925293', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320665', 2320665, '141.166702', '-21.478600', '518.533508', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320666', 2320666, '165.008896', '-23.196131', '497.355591', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320667', 2320667, '137.956802', '-21.858990', '489.646698', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103642, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320668', 2320668, '130.324295', '-19.810080', '417.345490', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320669', 2320669, '98.407799', '-20.697760', '221.536407', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320671', 2320671, '97.314743', '-11.800020', '101.237198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320675', 2320675, '135.972794', '-11.800140', '133.207794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320678', 2320678, '185.468796', '-11.800210', '106.268402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320683', 2320683, '188.220001', '-11.825790', '62.851860', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320688', 2320688, '201.678406', '-11.795270', '23.117371', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320694', 2320694, '260.142914', '-12.002980', '-90.756157', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320695', 2320695, '258.451996', '-12.002920', '-92.319710', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320696', 2320696, '257.085999', '-12.006830', '-154.938705', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320697', 2320697, '264.474091', '-12.313630', '-187.969193', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320721', 2320721, '396.475098', '20.645411', '107.225098', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159332, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320722', 2320722, '419.413391', '27.114370', '102.443001', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158244, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320725', 2320725, '-159.887802', '18.109520', '-68.195572', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320727', 2320727, '-170.536102', '27.551260', '-85.891403', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320728', 2320728, '-170.885803', '27.966640', '-89.178688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320732', 2320732, '-547.753174', '19.485781', '-191.943298', 30, 0, 0, 0, 2, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63894, 1, 0, 0, 0, 0, 0, 4302234, 0, 0), +(230, 'e0009', 'bnpc2320790', 2320790, '-439.475098', '48.996670', '43.930679', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320791', 2320791, '-432.144196', '49.318508', '-4.165760', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2320793', 2320793, '-242.034393', '58.664711', '38.845100', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320794', 2320794, '-206.227997', '57.382519', '52.006420', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320797', 2320797, '-193.570099', '74.743111', '21.367661', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320800', 2320800, '-238.635895', '62.272018', '25.375710', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2320801', 2320801, '-219.805405', '67.608017', '9.079071', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2341782', 2341782, '345.014008', '-1.078350', '-177.896896', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2341783', 2341783, '319.296997', '-0.849605', '-171.347198', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2341784', 2341784, '292.707397', '-6.651216', '-123.136101', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2341785', 2341785, '347.310486', '6.679530', '84.092422', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2341786', 2341786, '354.267487', '5.193762', '60.841671', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2341787', 2341787, '348.283203', '3.086715', '49.707630', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2603191', 2603191, '256.015594', '-11.793030', '-185.891006', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164850, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2603192', 2603192, '260.232605', '-11.793140', '-180.095505', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164578, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2612552', 2612552, '252.195404', '-11.793090', '-145.885406', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164306, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2612553', 2612553, '254.433395', '-11.793010', '-113.328796', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164034, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2612554', 2612554, '258.838715', '-11.793140', '-73.879280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163762, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2612555', 2612555, '233.580307', '-11.793010', '-18.570280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163490, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2612556', 2612556, '216.695099', '-11.793000', '8.959249', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163218, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2612557', 2612557, '212.512299', '-11.795270', '12.741240', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162946, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2612559', 2612559, '120.048798', '-11.800060', '124.326401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162680, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2612561', 2612561, '191.515900', '-11.856310', '51.102409', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162408, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2612562', 2612562, '189.768997', '-11.800210', '71.478256', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162136, 3, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(230, 'e0009', 'bnpc2612563', 2612563, '192.239395', '-11.800030', '91.385788', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161864, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2612564', 2612564, '179.480606', '-11.800260', '106.735802', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161592, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2612565', 2612565, '165.069794', '-11.800630', '119.881798', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161320, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2612566', 2612566, '146.988297', '-11.800000', '126.311401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161048, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2612569', 2612569, '132.474792', '-11.800090', '139.979294', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160776, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2612570', 2612570, '250.133804', '-11.793030', '-55.898849', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160498, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2612571', 2612571, '205.980301', '-11.772920', '33.134300', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160226, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2612573', 2612573, '421.064514', '24.757450', '78.823257', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2612574', 2612574, '428.320709', '31.721590', '124.805603', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157428, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2615184', 2615184, '360.341705', '-32.028728', '435.294006', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2615186', 2615186, '375.478699', '-32.089771', '448.966095', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2615187', 2615187, '382.955597', '-31.998211', '440.878815', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc2615503', 2615503, '253.211594', '-11.793080', '-161.360504', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154514, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc2615504', 2615504, '253.937607', '-11.793030', '-68.861298', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154242, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3693097', 3693097, '-224.085602', '1.055553', '-69.316994', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(230, 'e0009', 'bnpc3693102', 3693102, '-195.941101', '2.945007', '-104.081802', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96860, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(230, 'e0009', 'bnpc3693103', 3693103, '-189.283005', '2.362727', '-83.005783', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97404, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(230, 'e0009', 'bnpc3693105', 3693105, '-210.620300', '1.998901', '-96.299683', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95500, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(230, 'e0009', 'bnpc3693109', 3693109, '-195.513901', '2.216981', '-40.186169', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95228, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(230, 'e0009', 'bnpc3693111', 3693111, '-200.096695', '2.060742', '-67.256340', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(230, 'e0009', 'bnpc3693121', 3693121, '368.459503', '-32.364429', '413.199005', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3693136', 3693136, '242.206406', '-30.411280', '402.182007', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3693138', 3693138, '225.451996', '-28.488640', '423.605713', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3693140', 3693140, '215.350494', '-32.486500', '387.777496', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3693173', 3693173, '-508.842590', '40.237991', '-79.606361', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3693174', 3693174, '-516.899414', '40.146439', '-74.967621', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3693175', 3693175, '-514.549500', '40.207470', '-77.103882', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85228, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3693176', 3693176, '-520.866821', '40.146439', '-64.255783', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3693177', 3693177, '-515.685120', '40.359970', '-54.677021', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3693178', 3693178, '-503.929199', '41.000938', '-56.107471', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3693179', 3693179, '-483.658691', '45.245129', '-60.343559', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3693180', 3693180, '-481.533905', '45.933941', '-62.817669', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3693183', 3693183, '-378.957794', '51.132931', '52.109509', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3693184', 3693184, '-397.512787', '49.301849', '10.055650', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3693185', 3693185, '-433.121094', '49.318531', '34.558170', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3693188', 3693188, '-322.396393', '57.338970', '-6.726664', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65686, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3693623', 3693623, '-184.619797', '78.429970', '42.778721', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3693624', 3693624, '-191.994202', '77.183746', '37.510250', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72746, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3694403', 3694403, '-314.266113', '63.832611', '57.746510', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3742079', 3742079, '-530.733887', '65.311684', '98.466423', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3742133', 3742133, '-526.186829', '65.311691', '102.647400', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3742194', 3742194, '48.050610', '-11.800030', '-40.915428', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153976, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3742195', 3742195, '22.187790', '-11.800000', '-69.750504', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153704, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3742196', 3742196, '15.168640', '-11.800000', '-75.762558', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153432, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3742197', 3742197, '6.348711', '-11.800040', '-110.540199', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153160, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3742198', 3742198, '-54.153049', '-3.500003', '-186.530106', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152888, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3742199', 3742199, '-50.919399', '-3.500001', '-182.895996', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152616, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3742200', 3742200, '-69.779549', '-3.500144', '-196.820496', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152344, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3742201', 3742201, '-62.272110', '-3.500066', '-207.843399', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152072, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3742202', 3742202, '2.735321', '-11.800110', '-122.937599', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151782, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3742203', 3742203, '-6.886642', '-3.500000', '-135.990402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3742204', 3742204, '-6.586641', '-3.500000', '-139.267899', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3742205', 3742205, '-36.719379', '-3.500000', '-180.416794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150966, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3742206', 3742206, '-48.687111', '-3.500072', '-207.096298', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150694, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3746465', 3746465, '-208.691696', '52.495350', '-42.669102', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71120, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3746466', 3746466, '-219.824799', '58.286751', '-60.483898', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3746467', 3746467, '-215.491898', '57.635231', '-71.491089', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70576, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3869502', 3869502, '125.699600', '25.160120', '-311.621185', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41108, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(230, 'e0009', 'bnpc3869509', 3869509, '-307.502899', '63.448620', '-285.687714', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40842, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(230, 'e0009', 'bnpc3869525', 3869525, '-206.130997', '53.564651', '-126.977600', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40564, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(230, 'e0009', 'bnpc3869531', 3869531, '96.403351', '-6.334397', '-121.433502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40298, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(230, 'e0009', 'bnpc3869540', 3869540, '164.007095', '-6.013201', '-52.486290', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.750000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40020, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(230, 'e0009', 'bnpc3869598', 3869598, '-4.837158', '-7.919495', '-22.201900', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39760, 5, 0, 20, 0, 0, 30055, 0, 0, 0), +(230, 'e0009', 'bnpc3869604', 3869604, '85.465698', '-6.089244', '60.991131', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39482, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(230, 'e0009', 'bnpc3869607', 3869607, '14.362120', '-8.102512', '100.498901', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39204, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(230, 'e0009', 'bnpc3877513', 3877513, '121.019203', '24.917931', '-304.463287', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204518, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc3884907', 3884907, '-419.228607', '55.416000', '66.506737', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3897658', 3897658, '117.021400', '25.101040', '-311.604492', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204258, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc3898007', 3898007, '132.524597', '24.948450', '-305.562012', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203974, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc4083772', 4083772, '-327.757690', '21.357790', '204.228699', 58, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 5782, 1, 0, 0, 0, 0, 0, 4083771, 0, 0), +(230, 'e0009', 'bnpc4083778', 4083778, '-297.044800', '21.140360', '151.049896', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 8174, 1, 0, 0, 0, 0, 0, 4083775, 0, 0), +(230, 'e0009', 'bnpc4083795', 4083795, '-327.840088', '21.103210', '206.835907', 58, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6054, 1, 0, 0, 0, 0, 0, 4083794, 0, 0), +(230, 'e0009', 'bnpc4083796', 4083796, '-296.744812', '21.145109', '151.349899', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7662, 1, 0, 0, 0, 0, 0, 4083797, 0, 0), +(230, 'e0009', 'bnpc4083798', 4083798, '-296.444794', '21.149870', '151.649902', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7278, 1, 0, 0, 0, 0, 0, 4083799, 0, 0), +(230, 'e0009', 'bnpc4083800', 4083800, '-296.144806', '21.154619', '151.949905', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6894, 1, 0, 0, 0, 0, 0, 4083801, 0, 0), +(230, 'e0009', 'bnpc4083802', 4083802, '-295.844788', '21.159370', '152.249893', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6510, 1, 0, 0, 0, 0, 0, 4083803, 0, 0), +(230, 'e0009', 'bnpc4083871', 4083871, '127.641701', '-6.332520', '-100.389198', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38544, 8, 0, 0, 4295658, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4295672', 4295672, '132.951797', '-6.332520', '-100.114502', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37512, 8, 0, 0, 4295661, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4295673', 4295673, '137.910706', '-6.438695', '-96.608414', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37240, 8, 0, 0, 4295662, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4295675', 4295675, '126.695297', '-6.948534', '-90.459633', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36968, 8, 0, 0, 4295663, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4295677', 4295677, '126.418900', '-6.971872', '-84.529358', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36696, 8, 0, 0, 4295664, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4296957', 4296957, '95.628906', '-2.029270', '-42.382439', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35816, 1, 0, 0, 2280260, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4296958', 4296958, '98.693558', '-2.029731', '-43.942860', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35544, 1, 0, 0, 2280261, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4296959', 4296959, '101.467598', '-2.005454', '-46.176739', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35272, 1, 0, 0, 2280262, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4296960', 4296960, '104.146896', '-1.968804', '-48.332958', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35000, 1, 0, 0, 2280263, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302206', 4302206, '-555.148071', '29.067560', '-230.785706', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302207', 4302207, '-516.437683', '22.056881', '-221.606796', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302208', 4302208, '-524.244812', '24.477020', '-253.274597', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302209', 4302209, '-527.577820', '24.719191', '-254.932404', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302212', 4302212, '-582.818420', '21.723471', '-238.845596', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302213', 4302213, '-596.266602', '20.622200', '-226.349106', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302214', 4302214, '-579.272827', '21.076719', '-214.966003', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302215', 4302215, '-581.780823', '21.842831', '-241.897293', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302216', 4302216, '-528.772888', '19.922779', '-195.839096', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61374, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302217', 4302217, '-537.197327', '20.139130', '-199.348495', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302218', 4302218, '-563.208191', '18.867491', '-186.546005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302219', 4302219, '-527.765808', '20.129919', '-200.682007', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302220', 4302220, '-569.817627', '10.940670', '-130.235794', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302221', 4302221, '-617.120605', '21.896610', '-197.436493', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302222', 4302222, '-575.432983', '11.001710', '-129.716995', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302223', 4302223, '-568.810608', '10.910160', '-133.318100', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302225', 4302225, '-502.711792', '17.279470', '-157.029495', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59204, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302226', 4302226, '-496.089386', '16.799740', '-160.630707', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58938, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302228', 4302228, '-481.979004', '18.189381', '-229.549103', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302229', 4302229, '-555.941528', '25.463579', '-260.210693', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4302351', 4302351, '-572.925293', '18.257090', '-181.740707', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57718, 1, 0, 0, 0, 0, 0, 4302260, 0, 0), +(230, 'e0009', 'bnpc4302353', 4302353, '-513.667175', '23.842480', '-245.333893', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57446, 1, 0, 0, 0, 0, 0, 4302268, 0, 0), +(230, 'e0009', 'bnpc4333043', 4333043, '-309.205597', '57.338970', '-10.110600', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(230, 'e0009', 'bnpc4333385', 4333385, '-348.321503', '67.616417', '-233.774200', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4510293', 4510293, '213.253204', '-32.025242', '324.145386', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38950, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(230, 'e0009', 'bnpc4621046', 4621046, '370.051086', '-32.295422', '411.821198', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42124, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(230, 'e0009', 'bnpc4621047', 4621047, '-538.803589', '50.907551', '-203.075394', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41858, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1139214', 1139214, '-268.574097', '7.064880', '631.738708', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1139231', 1139231, '-15.879850', '-0.100045', '376.413208', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1139247', 1139247, '-122.621803', '1.180372', '288.650391', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1139253', 1139253, '-116.636803', '1.401093', '293.862488', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1139295', 1139295, '-239.337799', '0.869717', '266.651306', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1139296', 1139296, '-242.175995', '0.625573', '262.958710', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1139314', 1139314, '-234.854004', '-0.100137', '305.762085', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1139319', 1139319, '-284.558105', '1.846295', '342.205505', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1139327', 1139327, '-178.824295', '0.141551', '253.664703', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160176, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1139344', 1139344, '-179.793198', '0.669785', '323.976196', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159904, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1139407', 1139407, '-279.011292', '6.027267', '564.782104', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159632, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1139408', 1139408, '-254.932495', '6.759699', '578.911987', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159360, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1139409', 1139409, '-258.136902', '7.827831', '603.051819', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159088, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1139410', 1139410, '-257.221405', '6.637627', '578.881470', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1139423', 1139423, '-276.386688', '5.966230', '538.170288', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158544, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1139425', 1139425, '-266.529388', '5.020171', '542.473389', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1139430', 1139430, '-220.569199', '3.982558', '556.969482', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158000, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1140323', 1140323, '48.412201', '22.379660', '245.108307', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124060, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140341', 1140341, '148.210800', '18.142929', '63.034969', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134118, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140355', 1140355, '-167.689697', '4.657228', '188.189499', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1140356', 1140356, '-140.886597', '6.118821', '203.173798', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1140376', 1140376, '-173.095795', '7.162746', '110.695396', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119830, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140378', 1140378, '-169.298904', '4.379292', '134.294601', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119558, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140379', 1140379, '-176.483307', '6.579963', '113.899696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119286, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140393', 1140393, '-213.883896', '11.384410', '78.615593', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119014, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140405', 1140405, '-204.099792', '10.836050', '82.086967', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118742, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140418', 1140418, '-170.832901', '8.611761', '46.359402', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118470, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140419', 1140419, '-163.073196', '7.441800', '53.057159', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118198, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140420', 1140420, '-208.158096', '10.773990', '72.948898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117926, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140429', 1140429, '-210.742401', '9.567359', '0.839199', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117654, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140430', 1140430, '-217.212204', '9.475805', '3.250124', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117382, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140459', 1140459, '-87.514954', '0.030696', '53.398781', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97846, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140460', 1140460, '-83.185509', '0.030617', '55.136490', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98118, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140461', 1140461, '-100.175499', '1.815776', '55.405460', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97302, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140462', 1140462, '-87.013252', '0.030600', '71.372276', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97574, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140539', 1140539, '-119.476097', '5.647681', '112.526497', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117110, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140540', 1140540, '-126.604202', '5.923794', '94.623161', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116838, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140541', 1140541, '-126.329498', '5.844177', '109.056198', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116566, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140980', 1140980, '-313.130402', '25.345190', '-208.453506', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116294, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140981', 1140981, '-326.970612', '26.883949', '-216.976898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116022, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140982', 1140982, '-329.696594', '21.078899', '-165.243500', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115750, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140983', 1140983, '-338.267395', '24.724110', '-191.433197', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115478, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1140984', 1140984, '-323.896515', '19.876869', '-162.956696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115206, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1144407', 1144407, '-272.144714', '17.696960', '57.133450', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105716, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1144408', 1144408, '-257.479095', '14.942520', '80.117462', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1144457', 1144457, '-241.510406', '16.161341', '12.992840', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105444, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1144491', 1144491, '-78.316467', '3.566922', '-36.424759', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106260, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1144547', 1144547, '-106.571297', '7.155371', '-106.524399', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1144577', 1144577, '-127.875000', '6.779816', '-22.488760', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105172, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1144585', 1144585, '-91.407356', '7.599404', '-74.910507', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104900, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1144597', 1144597, '-58.182690', '6.881772', '-97.795113', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1144598', 1144598, '-132.427704', '9.336102', '-104.286499', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1144629', 1144629, '-152.086700', '11.093260', '-140.581406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1144631', 1144631, '-151.639099', '11.652820', '-128.275406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1144632', 1144632, '-167.772995', '9.292697', '-129.167694', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1144653', 1144653, '-78.954659', '4.479653', '-126.207397', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1144691', 1144691, '-129.860199', '13.845340', '-129.543701', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1144692', 1144692, '-205.706894', '9.018035', '-138.750305', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1144694', 1144694, '-208.087296', '9.353733', '-141.039200', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1144747', 1144747, '2.112435', '6.781407', '-26.549141', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107620, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1144748', 1144748, '17.348650', '6.534479', '-18.517111', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107892, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1144786', 1144786, '30.609501', '4.094535', '43.754768', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108164, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1144790', 1144790, '42.343739', '4.165666', '68.558739', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1144793', 1144793, '142.320801', '4.196184', '25.833481', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1144799', 1144799, '40.001209', '4.166452', '71.521370', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1144800', 1144800, '70.561348', '4.166210', '66.426353', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145309', 1145309, '99.839729', '6.729181', '-55.405548', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93954, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145310', 1145310, '104.112297', '7.125916', '-59.922218', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93682, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145311', 1145311, '111.009300', '12.405540', '-76.890251', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93410, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145312', 1145312, '53.134991', '10.581870', '-71.978127', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93138, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145330', 1145330, '33.785549', '7.920002', '-96.910088', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92866, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145331', 1145331, '30.485310', '6.219395', '-100.848801', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92594, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145342', 1145342, '7.202258', '5.720373', '-72.371872', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92322, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145343', 1145343, '0.456908', '5.833508', '-87.359497', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92050, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145344', 1145344, '9.624027', '5.417103', '-76.025612', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91778, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145371', 1145371, '323.490204', '5.164718', '-43.671810', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91506, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145380', 1145380, '267.748199', '4.639788', '9.815885', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91234, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145382', 1145382, '262.290802', '3.068853', '19.805670', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90962, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145556', 1145556, '396.724701', '3.565628', '167.813797', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68950, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145558', 1145558, '440.238007', '1.174898', '187.579102', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68678, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145559', 1145559, '499.565002', '1.571632', '166.216507', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68406, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145562', 1145562, '455.435913', '3.250124', '198.748703', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68134, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145578', 1145578, '484.519714', '3.768931', '199.908401', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67862, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145579', 1145579, '528.374084', '7.553168', '195.361206', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67590, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145581', 1145581, '509.391815', '4.440328', '204.577698', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67318, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145595', 1145595, '513.939880', '14.256400', '137.989304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1145607', 1145607, '549.889282', '11.612070', '204.730194', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66774, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145610', 1145610, '538.797913', '21.846140', '123.039803', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1145612', 1145612, '542.038208', '13.673390', '165.126495', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1145613', 1145613, '504.953491', '14.256390', '115.266296', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1145625', 1145625, '557.183105', '21.846149', '129.558304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1145628', 1145628, '553.643005', '21.683020', '99.412483', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1145631', 1145631, '575.402405', '21.683020', '111.314499', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc1145702', 1145702, '284.107697', '3.982544', '49.240841', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90690, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc1145703', 1145703, '342.275299', '7.889330', '-41.286991', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90418, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299623', 2299623, '-290.183014', '-0.100012', '465.039612', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299626', 2299626, '-303.145111', '-0.100187', '410.650696', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299628', 2299628, '-315.270905', '0.279321', '442.690002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299630', 2299630, '-290.338806', '-0.100002', '403.924103', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299631', 2299631, '-260.457001', '-0.100012', '454.819794', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299632', 2299632, '-166.141800', '-0.100048', '463.106415', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139002, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299636', 2299636, '-85.984627', '-0.137378', '426.901611', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299637', 2299637, '-105.242203', '-0.100010', '441.452209', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155558, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(231, 'e0010', 'bnpc2299638', 2299638, '-127.139801', '-0.100007', '331.296906', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299640', 2299640, '-106.279099', '-0.167896', '335.835785', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299642', 2299642, '-76.920776', '0.228838', '434.653198', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299644', 2299644, '-121.995903', '-0.106860', '397.177002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299647', 2299647, '-213.092300', '-0.106860', '435.019409', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299670', 2299670, '105.271896', '19.668831', '117.021400', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299672', 2299672, '179.124298', '15.917120', '38.983059', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299676', 2299676, '67.215942', '23.941410', '138.414597', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133302, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299677', 2299677, '92.332291', '22.476490', '171.373993', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124332, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299678', 2299678, '68.223038', '21.438881', '171.709702', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123788, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299681', 2299681, '27.293150', '20.375059', '193.801193', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299682', 2299682, '76.646019', '20.096081', '218.799103', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123516, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299685', 2299685, '222.992401', '6.174502', '28.347420', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132764, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299686', 2299686, '218.930206', '7.861652', '25.101040', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132492, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299687', 2299687, '219.145096', '9.429937', '43.394890', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132220, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299688', 2299688, '242.878006', '5.513403', '43.686531', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131948, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299693', 2299693, '203.440796', '11.769820', '11.092830', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131676, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299695', 2299695, '183.372894', '13.534710', '15.091120', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131404, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299696', 2299696, '190.876602', '14.557230', '16.119829', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131132, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299697', 2299697, '181.536499', '14.175580', '17.074800', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130860, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299701', 2299701, '46.014000', '24.951891', '129.998001', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299707', 2299707, '62.549999', '18.461660', '250.313202', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299711', 2299711, '-240.650101', '6.790217', '647.669128', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153932, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299712', 2299712, '-268.177307', '7.461614', '616.082886', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299713', 2299713, '-298.512299', '10.330310', '645.349670', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299714', 2299714, '-301.838715', '11.032230', '612.298706', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299716', 2299716, '-278.400909', '7.095398', '588.036926', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299719', 2299719, '-256.092194', '6.362965', '575.310913', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299720', 2299720, '-249.805496', '4.135148', '533.104370', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299722', 2299722, '-243.854507', '-0.167896', '489.982391', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299723', 2299723, '-273.384796', '-0.100012', '454.524109', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299725', 2299725, '-301.158295', '1.302513', '475.886902', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299729', 2299729, '-220.495697', '-0.100054', '427.954590', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151212, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299730', 2299730, '-295.158295', '-0.100004', '416.955688', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299731', 2299731, '-158.892197', '-0.137378', '438.498413', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150668, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299732', 2299732, '-97.367859', '-0.137378', '460.166290', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299733', 2299733, '-102.128700', '-0.106860', '387.319702', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299734', 2299734, '-103.898697', '-0.106860', '385.000305', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299735', 2299735, '-73.472237', '-0.100006', '383.004608', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299736', 2299736, '-119.829102', '-0.106860', '335.713715', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299737', 2299737, '-25.762659', '-0.100045', '385.324402', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299738', 2299738, '-12.145770', '-0.100007', '340.874298', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299739', 2299739, '-36.646210', '-0.100007', '330.899811', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299740', 2299740, '-69.291260', '-0.100006', '346.480591', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299741', 2299741, '-29.965321', '-0.106860', '383.686096', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299742', 2299742, '-152.754807', '-0.100000', '285.928711', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299746', 2299746, '-188.861404', '-0.100036', '279.196106', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299747', 2299747, '-138.628296', '-0.106860', '247.516495', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299748', 2299748, '-207.352600', '-0.100011', '323.235504', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299751', 2299751, '-240.541595', '-0.100076', '309.201599', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299754', 2299754, '-282.546997', '2.068284', '344.383087', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299756', 2299756, '-165.855804', '3.695794', '214.781403', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299762', 2299762, '190.512695', '15.940850', '25.798840', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299764', 2299764, '193.374695', '15.528740', '58.982250', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299765', 2299765, '192.796906', '15.253090', '57.661560', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299767', 2299767, '162.554993', '16.909040', '69.378082', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299768', 2299768, '118.356201', '19.249180', '84.129753', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299769', 2299769, '119.667503', '18.832991', '86.148743', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299771', 2299771, '205.228104', '12.477170', '36.627281', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299772', 2299772, '218.183899', '10.623910', '45.217682', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299775', 2299775, '206.333893', '12.854360', '17.317181', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299777', 2299777, '114.394302', '18.347380', '106.921097', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299779', 2299779, '125.780098', '24.673790', '178.210098', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299781', 2299781, '135.240707', '28.061291', '166.094406', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299782', 2299782, '132.860199', '26.962641', '168.596893', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299783', 2299783, '145.372696', '31.326719', '173.479797', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299785', 2299785, '52.078991', '24.582239', '146.288193', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299786', 2299786, '52.109509', '24.917931', '143.633102', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299788', 2299788, '54.687038', '18.847170', '222.674896', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299789', 2299789, '71.783401', '22.789841', '205.433395', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299791', 2299791, '52.628319', '11.490000', '281.025391', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299792', 2299792, '55.405460', '12.252950', '279.835114', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299799', 2299799, '-333.285889', '20.722960', '-154.265701', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114934, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299800', 2299800, '-287.157501', '15.489150', '-84.197617', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299802', 2299802, '-262.604095', '12.804420', '-65.742996', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106532, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299803', 2299803, '-258.117889', '10.828210', '-67.787712', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299804', 2299804, '-235.706100', '8.377155', '-31.937180', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299812', 2299812, '-156.572906', '6.393483', '12.436060', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114662, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299820', 2299820, '-231.464096', '9.353733', '-146.379807', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299822', 2299822, '-119.740601', '2.027413', '-74.048714', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299823', 2299823, '-98.963509', '2.027430', '-27.024349', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299882', 2299882, '-305.844391', '25.145599', '-209.288696', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299886', 2299886, '-345.664215', '23.928289', '-176.087097', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299887', 2299887, '-347.161285', '24.534389', '-177.381302', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299895', 2299895, '-261.350800', '12.694290', '-76.165604', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299901', 2299901, '-279.804291', '19.410770', '50.600639', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299908', 2299908, '-263.922089', '15.508790', '89.442383', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299911', 2299911, '-145.702393', '6.826308', '-14.807010', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299914', 2299914, '-186.113998', '9.086921', '28.118750', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299915', 2299915, '-149.863907', '4.337313', '105.397102', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299916', 2299916, '-212.124496', '12.717620', '104.362198', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299930', 2299930, '-56.242779', '6.495965', '-71.791733', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299933', 2299933, '-107.042099', '5.264315', '-76.487633', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299936', 2299936, '-66.982857', '5.925140', '-114.246902', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299938', 2299938, '-139.531906', '11.537960', '-122.054199', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299941', 2299941, '-121.466599', '10.386180', '-143.292297', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299945', 2299945, '0.868353', '6.550388', '-34.652611', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299949', 2299949, '57.447720', '3.129161', '-49.835171', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299951', 2299951, '20.675930', '4.623436', '23.544621', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109772, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2299953', 2299953, '102.866203', '4.166452', '53.437038', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2299954', 2299954, '105.180397', '4.165666', '50.461540', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2300024', 2300024, '124.376198', '19.407740', '-146.837601', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90098, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(231, 'e0010', 'bnpc2300025', 2300025, '124.414299', '19.130779', '-145.398300', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89832, 1, 0, 0, 0, 0, 30067, 0, 0, 0), +(231, 'e0010', 'bnpc2300029', 2300029, '83.634644', '9.048584', '-90.501282', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89566, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc2300030', 2300030, '71.000183', '18.234480', '-159.014297', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89282, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(231, 'e0010', 'bnpc2300031', 2300031, '71.760773', '18.225830', '-160.113007', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89016, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(231, 'e0010', 'bnpc2300041', 2300041, '179.222198', '18.223680', '-145.087006', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88744, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc2300042', 2300042, '170.907196', '17.193430', '-151.395401', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88466, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(231, 'e0010', 'bnpc2300044', 2300044, '121.843201', '20.218161', '-96.971130', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88200, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(231, 'e0010', 'bnpc2300045', 2300045, '123.185997', '20.370750', '-97.032173', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87922, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(231, 'e0010', 'bnpc2300047', 2300047, '131.347900', '20.830030', '-112.115501', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87650, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc2300048', 2300048, '136.095200', '18.936399', '-149.187500', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87378, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc2300050', 2300050, '99.198853', '17.898781', '-160.631805', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87118, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc2300051', 2300051, '171.717804', '17.307770', '-150.139297', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86846, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(231, 'e0010', 'bnpc2300067', 2300067, '435.940704', '-0.982693', '5.487583', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76704, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(231, 'e0010', 'bnpc2300068', 2300068, '440.817810', '-1.144474', '-14.663970', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86520, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc2300072', 2300072, '438.040710', '-0.412041', '-42.984711', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71530, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(231, 'e0010', 'bnpc2300074', 2300074, '441.568298', '0.782855', '-28.634399', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc2300077', 2300077, '426.413208', '-0.717224', '-50.309021', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72346, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(231, 'e0010', 'bnpc2300080', 2300080, '399.968506', '4.262952', '-41.852612', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74800, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(231, 'e0010', 'bnpc2300084', 2300084, '360.969208', '1.840043', '-6.628087', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75616, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc2300091', 2300091, '376.814392', '4.773165', '-33.204460', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71258, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(231, 'e0010', 'bnpc2300092', 2300092, '356.160797', '2.687235', '2.700800', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86248, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc2300095', 2300095, '366.384308', '1.052825', '12.741240', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76160, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(231, 'e0010', 'bnpc2300098', 2300098, '387.472290', '-0.900329', '20.340231', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85976, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(231, 'e0010', 'bnpc2300099', 2300099, '387.075500', '-1.022401', '21.408360', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75888, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(231, 'e0010', 'bnpc2300103', 2300103, '403.433197', '-2.121051', '16.250811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85704, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc2300104', 2300104, '436.545288', '-1.022401', '4.501364', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72074, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(231, 'e0010', 'bnpc2300105', 2300105, '435.723999', '-1.106398', '3.907724', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75344, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(231, 'e0010', 'bnpc2300115', 2300115, '389.150787', '4.287738', '-36.392811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc2300119', 2300119, '397.360107', '0.381429', '115.953300', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64870, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2300123', 2300123, '371.755493', '-3.015678', '139.708099', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2300126', 2300126, '360.794006', '0.882443', '141.705902', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64326, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2300129', 2300129, '415.670990', '3.677377', '157.396805', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64054, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2300135', 2300135, '458.854004', '3.829967', '201.098602', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63782, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2300137', 2300137, '476.584991', '0.595055', '149.950302', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2300147', 2300147, '552.727478', '9.658914', '216.571198', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2300183', 2300183, '383.639801', '-2.278431', '92.591690', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300184', 2300184, '382.528412', '-2.487267', '93.400421', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300186', 2300186, '375.396393', '-4.129155', '77.561340', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300187', 2300187, '364.309113', '-4.655180', '71.455116', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300189', 2300189, '365.917114', '-5.088186', '65.510399', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300192', 2300192, '411.093201', '3.616341', '129.442200', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300193', 2300193, '410.513397', '4.074111', '156.633804', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300197', 2300197, '458.426697', '0.625573', '163.103607', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300199', 2300199, '458.792908', '0.625573', '164.843201', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300201', 2300201, '504.417389', '3.433233', '169.054596', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300202', 2300202, '512.107971', '5.050689', '209.033295', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300204', 2300204, '495.841888', '5.844158', '182.604706', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300205', 2300205, '544.090881', '10.452380', '201.525803', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300207', 2300207, '540.215088', '16.250811', '152.025604', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300211', 2300211, '525.902100', '19.058470', '105.821297', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300212', 2300212, '526.207275', '19.119511', '106.095901', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300214', 2300214, '570.489014', '22.507010', '119.554398', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300215', 2300215, '558.794128', '21.835609', '103.813599', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300217', 2300217, '592.919678', '25.558809', '131.029205', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300218', 2300218, '595.269714', '25.497780', '132.829697', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300222', 2300222, '158.947800', '16.443180', '-139.791306', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300223', 2300223, '162.681396', '16.443199', '-145.830505', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300229', 2300229, '47.617500', '4.166452', '66.536598', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300236', 2300236, '296.403412', '-0.256715', '-3.540742', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300237', 2300237, '307.939301', '-0.256714', '-0.769719', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2300241', 2300241, '306.026306', '-0.256723', '1.577364', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2308368', 2308368, '-332.770508', '11.416920', '613.476685', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145778, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(231, 'e0010', 'bnpc2308369', 2308369, '-343.075592', '12.112200', '626.433289', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144424, 1, 0, 0, 0, 41, 30083, 0, 0, 0), +(231, 'e0010', 'bnpc2308372', 2308372, '-345.601593', '15.548900', '608.209290', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143880, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc2308373', 2308373, '-344.072388', '20.119520', '620.861877', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145506, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(231, 'e0010', 'bnpc2308806', 2308806, '-332.725800', '11.426350', '614.251526', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143608, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(231, 'e0010', 'bnpc2308807', 2308807, '-333.646912', '11.427370', '613.129211', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144152, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(231, 'e0010', 'bnpc2308808', 2308808, '-325.795410', '11.581550', '623.895630', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144696, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(231, 'e0010', 'bnpc2308809', 2308809, '-333.211304', '11.428960', '605.065918', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145234, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(231, 'e0010', 'bnpc2308811', 2308811, '-314.290100', '11.306890', '604.882813', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144962, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(231, 'e0010', 'bnpc2308812', 2308812, '-302.510101', '16.006670', '74.845451', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109506, 1, 0, 0, 0, 8, 30065, 0, 0, 0), +(231, 'e0010', 'bnpc2308813', 2308813, '-305.806091', '17.837749', '80.064034', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109240, 1, 0, 0, 0, 8, 30072, 0, 0, 0), +(231, 'e0010', 'bnpc2308814', 2308814, '-302.204987', '16.159260', '76.035652', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108974, 1, 0, 0, 0, 8, 30079, 0, 0, 0), +(231, 'e0010', 'bnpc2308815', 2308815, '-306.242096', '16.501289', '63.830650', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108702, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc2308816', 2308816, '-295.566986', '17.347191', '79.688187', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108418, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc2308817', 2308817, '73.624763', '7.705750', '-111.894501', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83570, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(231, 'e0010', 'bnpc2308818', 2308818, '74.906487', '7.766785', '-112.382797', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83304, 1, 0, 0, 0, 0, 30074, 0, 0, 0), +(231, 'e0010', 'bnpc2308819', 2308819, '68.253563', '7.766795', '-107.438797', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83038, 1, 0, 0, 0, 0, 30081, 0, 0, 0), +(231, 'e0010', 'bnpc2308820', 2308820, '72.922729', '7.614197', '-102.708603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82766, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc2308822', 2308822, '80.979607', '7.614197', '-109.636101', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82488, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc2310066', 2310066, '447.442291', '0.685165', '-106.462196', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82168, 1, 0, 0, 0, 5, 30073, 0, 0, 0), +(231, 'e0010', 'bnpc2310068', 2310068, '439.536102', '-0.228932', '-82.414017', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71802, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(231, 'e0010', 'bnpc2310072', 2310072, '447.196014', '-0.473083', '-64.896667', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81896, 1, 0, 0, 0, 5, 30079, 0, 0, 0), +(231, 'e0010', 'bnpc2310073', 2310073, '448.172607', '-0.473083', '-65.140808', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75072, 1, 0, 0, 0, 5, 30077, 0, 0, 0), +(231, 'e0010', 'bnpc2310077', 2310077, '606.902283', '21.846050', '94.322968', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310079', 2310079, '628.601990', '21.846140', '96.549973', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310080', 2310080, '634.544983', '21.846140', '87.894997', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310081', 2310081, '632.357971', '21.846130', '64.279701', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56692, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310082', 2310082, '626.666382', '21.845909', '61.769680', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56420, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310083', 2310083, '607.055603', '21.845909', '87.877663', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56148, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310084', 2310084, '607.202271', '21.845900', '69.260597', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55876, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310086', 2310086, '647.131470', '21.845940', '74.024300', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55604, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310087', 2310087, '631.244385', '21.845980', '119.611702', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310088', 2310088, '589.967102', '21.846029', '111.639000', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310106', 2310106, '62.454399', '22.173260', '-183.847000', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54504, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310110', 2310110, '11.996420', '22.107401', '-194.509094', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54232, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310121', 2310121, '43.552151', '31.746559', '-242.757904', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310129', 2310129, '80.701881', '31.247450', '-236.730392', 77, 0, 0, 0, 1, 6, 0, 0, 74, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310142', 2310142, '1.488476', '42.615070', '-238.873703', 85, 0, 0, 0, 1, 6, 0, 0, 81, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310155', 2310155, '14.401670', '41.170448', '-236.977097', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310157', 2310157, '13.745920', '41.247570', '-234.937393', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310158', 2310158, '26.641451', '40.972401', '-238.464600', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52606, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310159', 2310159, '23.036869', '41.356541', '-231.651596', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310160', 2310160, '34.532631', '34.329281', '-248.540298', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310161', 2310161, '18.166571', '40.736420', '-243.886398', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310162', 2310162, '36.185360', '34.339809', '-251.152893', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51518, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310163', 2310163, '32.022099', '35.938412', '-251.996597', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310164', 2310164, '2.683093', '41.323040', '-231.439301', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50974, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310165', 2310165, '2.481253', '41.289459', '-247.178207', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310166', 2310166, '3.023275', '41.244370', '-229.524307', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310168', 2310168, '26.339149', '41.310089', '-228.982193', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310169', 2310169, '43.691368', '23.807100', '-197.954498', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49886, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310170', 2310170, '47.955181', '23.796989', '-201.803207', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49614, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310171', 2310171, '27.500080', '23.900030', '-176.426407', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49342, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(231, 'e0010', 'bnpc2310173', 2310173, '8.713860', '24.977810', '-183.468903', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310174', 2310174, '25.766741', '25.453140', '-197.692993', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310175', 2310175, '21.326250', '25.217710', '-213.513397', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310176', 2310176, '56.209671', '30.207701', '-208.221603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310177', 2310177, '50.222309', '30.207741', '-208.816299', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310178', 2310178, '55.211819', '31.096901', '-223.299698', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310179', 2310179, '44.478668', '30.061560', '-213.305893', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47426, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310180', 2310180, '27.629330', '25.414169', '-203.556198', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47154, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310181', 2310181, '11.799320', '24.994440', '-208.841293', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310182', 2310182, '57.392250', '31.250860', '-237.443100', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310183', 2310183, '56.381592', '31.081989', '-222.324799', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310184', 2310184, '41.846550', '31.327400', '-233.639603', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310185', 2310185, '49.764519', '31.322470', '-239.490097', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310186', 2310186, '45.229160', '30.849199', '-225.986694', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310187', 2310187, '54.603119', '30.526270', '-215.684494', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310188', 2310188, '26.807720', '25.469440', '-208.795700', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310191', 2310191, '53.416069', '23.647209', '-198.466995', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310192', 2310192, '16.458969', '23.952860', '-182.981705', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310193', 2310193, '34.354580', '23.728510', '-188.906204', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310194', 2310194, '24.826321', '38.422710', '-248.892502', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310195', 2310195, '19.778610', '41.225639', '-235.194595', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2310196', 2310196, '10.671480', '41.230179', '-245.656906', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2313233', 2313233, '320.515686', '2.215992', '-18.509239', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81726, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(231, 'e0010', 'bnpc2313234', 2313234, '320.698792', '2.227228', '-15.091220', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81454, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(231, 'e0010', 'bnpc2313235', 2313235, '318.658691', '2.299638', '-15.389510', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81182, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(231, 'e0010', 'bnpc2313237', 2313237, '303.089905', '1.571632', '-19.974110', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80910, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(231, 'e0010', 'bnpc2313238', 2313238, '331.471710', '1.907331', '-17.807329', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80638, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(231, 'e0010', 'bnpc2320820', 2320820, '241.483994', '17.276871', '-145.913101', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80354, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2320821', 2320821, '252.963196', '12.221980', '-153.075394', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80082, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2320822', 2320822, '246.929703', '9.238781', '-175.852005', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79810, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2320826', 2320826, '292.604004', '10.691710', '-162.803802', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79538, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2320827', 2320827, '290.235687', '9.507468', '-185.479797', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79266, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2320828', 2320828, '295.598389', '11.637060', '-160.074707', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78994, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2320830', 2320830, '279.377411', '8.641194', '-170.115997', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78722, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2320832', 2320832, '250.518402', '10.279540', '-169.884796', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78450, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2351462', 2351462, '48.281940', '25.165770', '125.730797', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2351466', 2351466, '33.028351', '19.801689', '204.600204', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2351468', 2351468, '17.664570', '21.473511', '187.304001', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2351469', 2351469, '15.638560', '21.324190', '188.309006', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2351473', 2351473, '48.142170', '19.912979', '204.211395', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125142, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc2351480', 2351480, '31.650410', '24.598419', '125.582100', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc2763397', 2763397, '318.018890', '0.478852', '12.307590', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78190, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(231, 'e0010', 'bnpc2763398', 2763398, '317.199188', '0.290855', '13.417520', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77918, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(231, 'e0010', 'bnpc2763399', 2763399, '313.945190', '0.195134', '8.234367', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77646, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(231, 'e0010', 'bnpc2763400', 2763400, '289.082001', '0.747620', '16.617001', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77374, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(231, 'e0010', 'bnpc2763402', 2763402, '292.225494', '0.411926', '13.809330', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77102, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(231, 'e0010', 'bnpc3739171', 3739171, '-272.839386', '22.280479', '-182.574203', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104362, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(231, 'e0010', 'bnpc3739176', 3739176, '-271.384399', '22.233410', '-181.710205', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104090, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(231, 'e0010', 'bnpc3739178', 3739178, '-270.221985', '22.171329', '-172.442307', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103818, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(231, 'e0010', 'bnpc3739189', 3739189, '-286.671295', '22.598570', '-178.942596', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103546, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(231, 'e0010', 'bnpc3739195', 3739195, '-285.084290', '23.636169', '-193.682800', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103274, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(231, 'e0010', 'bnpc3739197', 3739197, '-302.441498', '24.263420', '-202.146301', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103002, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(231, 'e0010', 'bnpc3739198', 3739198, '-301.991302', '24.106640', '-200.335693', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102730, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(231, 'e0010', 'bnpc3739200', 3739200, '-307.179413', '23.056339', '-191.149796', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102458, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(231, 'e0010', 'bnpc3739223', 3739223, '-306.875397', '9.692472', '-137.887207', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3739241', 3739241, '-102.205200', '2.027415', '-36.144821', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3739247', 3739247, '-101.905197', '2.027430', '-31.359751', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3739298', 3739298, '-64.469414', '0.015212', '63.034969', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97030, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3739305', 3739305, '-142.689407', '0.030637', '161.735504', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96758, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3739308', 3739308, '-173.166397', '0.030539', '149.329895', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96486, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3739310', 3739310, '-183.418106', '0.030539', '144.544296', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96214, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3739417', 3739417, '151.785294', '4.236084', '20.237249', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3739423', 3739423, '152.085297', '4.236084', '15.201380', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3740607', 3740607, '-135.541595', '-0.100001', '467.027588', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138730, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3740609', 3740609, '-138.985397', '-0.100003', '461.260590', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138458, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3740611', 3740611, '-176.964996', '-0.100092', '482.156586', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138186, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3740613', 3740613, '-197.264099', '-0.100169', '480.240295', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3740615', 3740615, '-183.840607', '-0.100061', '448.882111', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3740617', 3740617, '-178.071396', '-0.100048', '447.029205', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3740619', 3740619, '-182.900406', '-0.100169', '476.189514', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3740632', 3740632, '-358.518585', '1.158285', '453.619598', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc3740634', 3740634, '-362.075012', '0.968366', '458.185486', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc3740635', 3740635, '-336.208405', '-0.100018', '460.011810', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc3740636', 3740636, '-362.780701', '1.532029', '454.955414', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc3740637', 3740637, '-338.199493', '-0.100187', '433.127808', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc3740638', 3740638, '-334.106689', '-0.100003', '437.684113', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc3740639', 3740639, '-345.628906', '-0.100008', '453.583313', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc3740640', 3740640, '-333.997498', '-0.100017', '457.273987', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc3740644', 3740644, '-79.519012', '-0.100045', '377.072388', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3740645', 3740645, '-20.504120', '-0.106860', '365.133087', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3740646', 3740646, '-52.782280', '-0.106860', '324.177887', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3740647', 3740647, '-59.319771', '-0.100007', '331.135590', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3740648', 3740648, '-4.964393', '-0.100007', '339.615601', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3740649', 3740649, '-18.177540', '-0.100615', '322.254089', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3740651', 3740651, '-42.146980', '-0.100005', '396.759399', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3740823', 3740823, '52.433182', '8.970453', '290.451111', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124604, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3740824', 3740824, '34.042301', '6.188347', '297.895691', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123244, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(231, 'e0010', 'bnpc3740991', 3740991, '83.869347', '23.640280', '197.587494', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc3740992', 3740992, '83.668243', '23.758640', '201.089493', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc3740993', 3740993, '92.752083', '22.594500', '147.751404', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc3740994', 3740994, '69.937286', '22.357740', '174.791397', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc3870245', 3870245, '-201.828995', '8.309389', '-77.948196', 584, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27764, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(231, 'e0010', 'bnpc3870249', 3870249, '-144.314499', '6.941079', '-45.049019', 585, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27498, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(231, 'e0010', 'bnpc3870258', 3870258, '-169.371506', '8.963833', '-15.339670', 586, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27232, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(231, 'e0010', 'bnpc3870312', 3870312, '213.284805', '9.756709', '-77.238258', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26966, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(231, 'e0010', 'bnpc3870333', 3870333, '150.590805', '8.698524', '-47.601891', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26700, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(231, 'e0010', 'bnpc3870347', 3870347, '213.854004', '6.490500', '-15.706390', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 36, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26434, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(231, 'e0010', 'bnpc3870372', 3870372, '-149.487900', '0.750592', '229.198502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26156, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(231, 'e0010', 'bnpc3870375', 3870375, '-161.511307', '0.485998', '346.191010', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(231, 'e0010', 'bnpc3870382', 3870382, '-231.008896', '0.795779', '399.749115', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25606, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(231, 'e0010', 'bnpc3870387', 3870387, '-228.300903', '0.984585', '517.848816', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25334, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(231, 'e0010', 'bnpc3878991', 3878991, '400.476288', '4.241707', '-40.787842', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70986, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(231, 'e0010', 'bnpc3879006', 3879006, '442.368011', '0.843470', '-27.738720', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70714, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc3879018', 3879018, '447.624695', '0.635267', '-105.764603', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70442, 1, 0, 0, 0, 5, 30074, 0, 0, 0), +(231, 'e0010', 'bnpc3879051', 3879051, '431.967712', '-0.747742', '-65.507080', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70176, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(231, 'e0010', 'bnpc3879065', 3879065, '356.771088', '2.792354', '1.937849', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69898, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(231, 'e0010', 'bnpc3879339', 3879339, '-343.618011', '11.367920', '624.658508', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(231, 'e0010', 'bnpc3879341', 3879341, '-324.269501', '11.551030', '603.662109', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136536, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(231, 'e0010', 'bnpc3879343', 3879343, '-320.241089', '11.612060', '616.174377', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136288, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc3879346', 3879346, '-319.234009', '11.551030', '602.227722', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136016, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(231, 'e0010', 'bnpc3879348', 3879348, '-324.879913', '11.551030', '603.082275', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135744, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(231, 'e0010', 'bnpc3879351', 3879351, '-324.330505', '11.520510', '609.063782', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135448, 1, 0, 0, 0, 41, 0, 0, 0, 0), +(231, 'e0010', 'bnpc3879352', 3879352, '-342.671906', '20.065571', '624.475403', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135176, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(231, 'e0010', 'bnpc3879353', 3879353, '-343.556885', '20.065571', '624.811096', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134928, 1, 0, 0, 0, 41, 30073, 0, 0, 0), +(231, 'e0010', 'bnpc3879398', 3879398, '-335.561188', '11.520510', '620.843811', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134626, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(231, 'e0010', 'bnpc3884509', 3884509, '125.859001', '4.166452', '44.953560', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc3917184', 3917184, '-60.455681', '3.894856', '-39.952641', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc3939726', 3939726, '436.760712', '0.574082', '-105.544098', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69360, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(231, 'e0010', 'bnpc4329476', 4329476, '-188.220093', '9.170593', '94.010742', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95676, 6, 1, 0, 0, 0, 30246, 4329477, 0, 0), +(231, 'e0010', 'bnpc4333062', 4333062, '-159.767395', '3.700634', '137.279205', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94652, 6, 1, 0, 0, 0, 30246, 4333061, 0, 0), +(231, 'e0010', 'bnpc4621322', 4621322, '28.233730', '25.315451', '115.697998', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28790, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(231, 'e0010', 'bnpc4621339', 4621339, '-337.105499', '20.119471', '615.520508', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28518, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1139214', 1139214, '-268.574097', '7.064880', '631.738708', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1139231', 1139231, '-15.879850', '-0.100045', '376.413208', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1139247', 1139247, '-122.621803', '1.180372', '288.650391', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1139253', 1139253, '-116.636803', '1.401093', '293.862488', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1139295', 1139295, '-239.337799', '0.869717', '266.651306', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1139296', 1139296, '-242.175995', '0.625573', '262.958710', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1139314', 1139314, '-234.854004', '-0.100137', '305.762085', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1139319', 1139319, '-284.558105', '1.846295', '342.205505', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1139327', 1139327, '-178.824295', '0.141551', '253.664703', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160176, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1139344', 1139344, '-179.793198', '0.669785', '323.976196', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159904, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1139407', 1139407, '-279.011292', '6.027267', '564.782104', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159632, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1139408', 1139408, '-254.932495', '6.759699', '578.911987', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159360, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1139409', 1139409, '-258.136902', '7.827831', '603.051819', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159088, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1139410', 1139410, '-257.221405', '6.637627', '578.881470', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1139423', 1139423, '-276.386688', '5.966230', '538.170288', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158544, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1139425', 1139425, '-266.529388', '5.020171', '542.473389', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1139430', 1139430, '-220.569199', '3.982558', '556.969482', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158000, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1140323', 1140323, '48.412201', '22.379660', '245.108307', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124060, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140341', 1140341, '148.210800', '18.142929', '63.034969', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134118, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140355', 1140355, '-167.689697', '4.657228', '188.189499', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1140356', 1140356, '-140.886597', '6.118821', '203.173798', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1140376', 1140376, '-173.095795', '7.162746', '110.695396', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119830, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140378', 1140378, '-169.298904', '4.379292', '134.294601', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119558, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140379', 1140379, '-176.483307', '6.579963', '113.899696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119286, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140393', 1140393, '-213.883896', '11.384410', '78.615593', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119014, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140405', 1140405, '-204.099792', '10.836050', '82.086967', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118742, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140418', 1140418, '-170.832901', '8.611761', '46.359402', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118470, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140419', 1140419, '-163.073196', '7.441800', '53.057159', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118198, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140420', 1140420, '-208.158096', '10.773990', '72.948898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117926, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140429', 1140429, '-210.742401', '9.567359', '0.839199', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117654, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140430', 1140430, '-217.212204', '9.475805', '3.250124', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117382, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140459', 1140459, '-87.514954', '0.030696', '53.398781', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97846, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140460', 1140460, '-83.185509', '0.030617', '55.136490', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98118, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140461', 1140461, '-100.175499', '1.815776', '55.405460', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97302, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140462', 1140462, '-87.013252', '0.030600', '71.372276', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97574, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140539', 1140539, '-119.476097', '5.647681', '112.526497', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117110, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140540', 1140540, '-126.604202', '5.923794', '94.623161', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116838, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140541', 1140541, '-126.329498', '5.844177', '109.056198', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116566, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140980', 1140980, '-313.130402', '25.345190', '-208.453506', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116294, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140981', 1140981, '-326.970612', '26.883949', '-216.976898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116022, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140982', 1140982, '-329.696594', '21.078899', '-165.243500', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115750, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140983', 1140983, '-338.267395', '24.724110', '-191.433197', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115478, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1140984', 1140984, '-323.896515', '19.876869', '-162.956696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115206, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1144407', 1144407, '-272.144714', '17.696960', '57.133450', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105716, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1144408', 1144408, '-257.479095', '14.942520', '80.117462', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1144457', 1144457, '-241.510406', '16.161341', '12.992840', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105444, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1144491', 1144491, '-78.316467', '3.566922', '-36.424759', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106260, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1144547', 1144547, '-106.571297', '7.155371', '-106.524399', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1144577', 1144577, '-127.875000', '6.779816', '-22.488760', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105172, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1144585', 1144585, '-91.407356', '7.599404', '-74.910507', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104900, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1144597', 1144597, '-58.182690', '6.881772', '-97.795113', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1144598', 1144598, '-132.427704', '9.336102', '-104.286499', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1144629', 1144629, '-152.086700', '11.093260', '-140.581406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1144631', 1144631, '-151.639099', '11.652820', '-128.275406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1144632', 1144632, '-167.772995', '9.292697', '-129.167694', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1144653', 1144653, '-78.954659', '4.479653', '-126.207397', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1144691', 1144691, '-129.860199', '13.845340', '-129.543701', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1144692', 1144692, '-205.706894', '9.018035', '-138.750305', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1144694', 1144694, '-208.087296', '9.353733', '-141.039200', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1144747', 1144747, '2.112435', '6.781407', '-26.549141', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107620, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1144748', 1144748, '17.348650', '6.534479', '-18.517111', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107892, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1144786', 1144786, '30.609501', '4.094535', '43.754768', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108164, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1144790', 1144790, '42.343739', '4.165666', '68.558739', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1144793', 1144793, '142.320801', '4.196184', '25.833481', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1144799', 1144799, '40.001209', '4.166452', '71.521370', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1144800', 1144800, '70.561348', '4.166210', '66.426353', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145309', 1145309, '99.839729', '6.729181', '-55.405548', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93954, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145310', 1145310, '104.112297', '7.125916', '-59.922218', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93682, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145311', 1145311, '111.009300', '12.405540', '-76.890251', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93410, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145312', 1145312, '53.134991', '10.581870', '-71.978127', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93138, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145330', 1145330, '33.785549', '7.920002', '-96.910088', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92866, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145331', 1145331, '30.485310', '6.219395', '-100.848801', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92594, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145342', 1145342, '7.202258', '5.720373', '-72.371872', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92322, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145343', 1145343, '0.456908', '5.833508', '-87.359497', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92050, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145344', 1145344, '9.624027', '5.417103', '-76.025612', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91778, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145371', 1145371, '323.490204', '5.164718', '-43.671810', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91506, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145380', 1145380, '267.748199', '4.639788', '9.815885', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91234, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145382', 1145382, '262.290802', '3.068853', '19.805670', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90962, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145556', 1145556, '396.724701', '3.565628', '167.813797', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68950, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145558', 1145558, '440.238007', '1.174898', '187.579102', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68678, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145559', 1145559, '499.565002', '1.571632', '166.216507', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68406, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145562', 1145562, '455.435913', '3.250124', '198.748703', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68134, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145578', 1145578, '484.519714', '3.768931', '199.908401', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67862, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145579', 1145579, '528.374084', '7.553168', '195.361206', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67590, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145581', 1145581, '509.391815', '4.440328', '204.577698', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67318, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145595', 1145595, '513.939880', '14.256400', '137.989304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1145607', 1145607, '549.889282', '11.612070', '204.730194', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66774, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145610', 1145610, '538.797913', '21.846140', '123.039803', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1145612', 1145612, '542.038208', '13.673390', '165.126495', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1145613', 1145613, '504.953491', '14.256390', '115.266296', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1145625', 1145625, '557.183105', '21.846149', '129.558304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1145628', 1145628, '553.643005', '21.683020', '99.412483', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc1145631', 1145631, '575.402405', '21.683020', '111.314499', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65148, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(232, 'e0016', 'bnpc1145702', 1145702, '284.107697', '3.982544', '49.240841', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90690, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc1145703', 1145703, '342.275299', '7.889330', '-41.286991', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90418, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299623', 2299623, '-290.183014', '-0.100012', '465.039612', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299626', 2299626, '-303.145111', '-0.100187', '410.650696', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299628', 2299628, '-315.270905', '0.279321', '442.690002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299630', 2299630, '-290.338806', '-0.100002', '403.924103', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299631', 2299631, '-260.457001', '-0.100012', '454.819794', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299632', 2299632, '-166.141800', '-0.100048', '463.106415', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139002, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299636', 2299636, '-85.984627', '-0.137378', '426.901611', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299637', 2299637, '-105.242203', '-0.100010', '441.452209', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299638', 2299638, '-127.139801', '-0.100007', '331.296906', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299640', 2299640, '-106.279099', '-0.167896', '335.835785', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299642', 2299642, '-76.920776', '0.228838', '434.653198', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299644', 2299644, '-121.995903', '-0.106860', '397.177002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299647', 2299647, '-213.092300', '-0.106860', '435.019409', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299670', 2299670, '105.271896', '19.668831', '117.021400', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299672', 2299672, '179.124298', '15.917120', '38.983059', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299676', 2299676, '67.215942', '23.941410', '138.414597', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133302, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299677', 2299677, '92.332291', '22.476490', '171.373993', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124332, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299678', 2299678, '68.223038', '21.438881', '171.709702', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123788, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299681', 2299681, '27.293150', '20.375059', '193.801193', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299682', 2299682, '76.646019', '20.096081', '218.799103', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123516, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299685', 2299685, '222.992401', '6.174502', '28.347420', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132764, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299686', 2299686, '218.930206', '7.861652', '25.101040', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132492, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299687', 2299687, '219.145096', '9.429937', '43.394890', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132220, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299688', 2299688, '242.878006', '5.513403', '43.686531', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131948, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299693', 2299693, '203.440796', '11.769820', '11.092830', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131676, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299695', 2299695, '183.372894', '13.534710', '15.091120', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131404, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299696', 2299696, '190.876602', '14.557230', '16.119829', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131132, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299697', 2299697, '181.536499', '14.175580', '17.074800', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130860, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299701', 2299701, '46.014000', '24.951891', '129.998001', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299707', 2299707, '62.549999', '18.461660', '250.313202', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299711', 2299711, '-240.650101', '6.790217', '647.669128', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153932, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299712', 2299712, '-268.177307', '7.461614', '616.082886', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299713', 2299713, '-298.512299', '10.330310', '645.349670', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299714', 2299714, '-301.838715', '11.032230', '612.298706', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299716', 2299716, '-278.400909', '7.095398', '588.036926', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299719', 2299719, '-256.092194', '6.362965', '575.310913', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299720', 2299720, '-249.805496', '4.135148', '533.104370', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299722', 2299722, '-243.854507', '-0.167896', '489.982391', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299723', 2299723, '-273.384796', '-0.100012', '454.524109', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299725', 2299725, '-301.158295', '1.302513', '475.886902', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299729', 2299729, '-220.495697', '-0.100054', '427.954590', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151212, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299730', 2299730, '-295.158295', '-0.100004', '416.955688', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299731', 2299731, '-158.892197', '-0.137378', '438.498413', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150668, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299732', 2299732, '-97.367859', '-0.137378', '460.166290', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299733', 2299733, '-102.128700', '-0.106860', '387.319702', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299734', 2299734, '-103.898697', '-0.106860', '385.000305', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299735', 2299735, '-73.472237', '-0.100006', '383.004608', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299736', 2299736, '-119.829102', '-0.106860', '335.713715', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299737', 2299737, '-25.762659', '-0.100045', '385.324402', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299738', 2299738, '-12.145770', '-0.100007', '340.874298', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299739', 2299739, '-36.646210', '-0.100007', '330.899811', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299740', 2299740, '-69.291260', '-0.100006', '346.480591', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299741', 2299741, '-29.965321', '-0.106860', '383.686096', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299742', 2299742, '-152.754807', '-0.100000', '285.928711', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299746', 2299746, '-188.861404', '-0.100036', '279.196106', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299747', 2299747, '-138.628296', '-0.106860', '247.516495', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299748', 2299748, '-207.352600', '-0.100011', '323.235504', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299751', 2299751, '-240.541595', '-0.100076', '309.201599', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299754', 2299754, '-282.546997', '2.068284', '344.383087', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299756', 2299756, '-165.855804', '3.695794', '214.781403', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299762', 2299762, '190.512695', '15.940850', '25.798840', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299764', 2299764, '193.374695', '15.528740', '58.982250', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299765', 2299765, '192.796906', '15.253090', '57.661560', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299767', 2299767, '162.554993', '16.909040', '69.378082', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299768', 2299768, '118.356201', '19.249180', '84.129753', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299769', 2299769, '119.667503', '18.832991', '86.148743', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299771', 2299771, '205.228104', '12.477170', '36.627281', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299772', 2299772, '218.183899', '10.623910', '45.217682', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299775', 2299775, '206.333893', '12.854360', '17.317181', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299777', 2299777, '114.394302', '18.347380', '106.921097', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299779', 2299779, '125.780098', '24.673790', '178.210098', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299781', 2299781, '135.240707', '28.061291', '166.094406', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299782', 2299782, '132.860199', '26.962641', '168.596893', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299783', 2299783, '145.372696', '31.326719', '173.479797', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299785', 2299785, '52.078991', '24.582239', '146.288193', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299786', 2299786, '52.109509', '24.917931', '143.633102', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299788', 2299788, '54.687038', '18.847170', '222.674896', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299789', 2299789, '71.783401', '22.789841', '205.433395', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299791', 2299791, '52.628319', '11.490000', '281.025391', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299792', 2299792, '55.405460', '12.252950', '279.835114', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299799', 2299799, '-333.285889', '20.722960', '-154.265701', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114934, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299800', 2299800, '-287.157501', '15.489150', '-84.197617', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299802', 2299802, '-262.604095', '12.804420', '-65.742996', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106532, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299803', 2299803, '-258.117889', '10.828210', '-67.787712', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299804', 2299804, '-235.706100', '8.377155', '-31.937180', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299812', 2299812, '-156.572906', '6.393483', '12.436060', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114662, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299820', 2299820, '-231.464096', '9.353733', '-146.379807', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299822', 2299822, '-119.740601', '2.027413', '-74.048714', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299823', 2299823, '-98.963509', '2.027430', '-27.024349', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299882', 2299882, '-305.844391', '25.145599', '-209.288696', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299886', 2299886, '-345.664215', '23.928289', '-176.087097', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299887', 2299887, '-347.161285', '24.534389', '-177.381302', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299895', 2299895, '-261.350800', '12.694290', '-76.165604', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299901', 2299901, '-279.804291', '19.410770', '50.600639', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299908', 2299908, '-263.922089', '15.508790', '89.442383', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299911', 2299911, '-145.702393', '6.826308', '-14.807010', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299914', 2299914, '-186.113998', '9.086921', '28.118750', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299915', 2299915, '-149.863907', '4.337313', '105.397102', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299916', 2299916, '-212.124496', '12.717620', '104.362198', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299930', 2299930, '-56.242779', '6.495965', '-71.791733', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299933', 2299933, '-107.042099', '5.264315', '-76.487633', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299936', 2299936, '-66.982857', '5.925140', '-114.246902', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299938', 2299938, '-139.531906', '11.537960', '-122.054199', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299941', 2299941, '-121.466599', '10.386180', '-143.292297', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299945', 2299945, '0.868353', '6.550388', '-34.652611', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299949', 2299949, '57.447720', '3.129161', '-49.835171', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299951', 2299951, '20.675930', '4.623436', '23.544621', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109772, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2299953', 2299953, '102.866203', '4.166452', '53.437038', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2299954', 2299954, '105.180397', '4.165666', '50.461540', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2300024', 2300024, '124.376198', '19.407740', '-146.837601', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90098, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(232, 'e0016', 'bnpc2300025', 2300025, '124.414299', '19.130779', '-145.398300', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89832, 1, 0, 0, 0, 0, 30067, 0, 0, 0), +(232, 'e0016', 'bnpc2300029', 2300029, '83.634644', '9.048584', '-90.501282', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89566, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc2300030', 2300030, '71.000183', '18.234480', '-159.014297', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89282, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(232, 'e0016', 'bnpc2300031', 2300031, '71.760773', '18.225830', '-160.113007', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89016, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(232, 'e0016', 'bnpc2300041', 2300041, '179.222198', '18.223680', '-145.087006', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88744, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc2300042', 2300042, '170.907196', '17.193430', '-151.395401', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88466, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(232, 'e0016', 'bnpc2300044', 2300044, '121.843201', '20.218161', '-96.971130', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88200, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(232, 'e0016', 'bnpc2300045', 2300045, '123.185997', '20.370750', '-97.032173', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87922, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(232, 'e0016', 'bnpc2300047', 2300047, '131.347900', '20.830030', '-112.115501', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87650, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc2300048', 2300048, '136.095200', '18.936399', '-149.187500', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87378, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc2300050', 2300050, '99.198853', '17.898781', '-160.631805', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87118, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc2300051', 2300051, '171.717804', '17.307770', '-150.139297', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86846, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(232, 'e0016', 'bnpc2300067', 2300067, '435.940704', '-0.982693', '5.487583', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76704, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(232, 'e0016', 'bnpc2300068', 2300068, '440.817810', '-1.144474', '-14.663970', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86520, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc2300072', 2300072, '438.040710', '-0.412041', '-42.984711', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71530, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(232, 'e0016', 'bnpc2300074', 2300074, '441.568298', '0.782855', '-28.634399', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc2300077', 2300077, '426.413208', '-0.717224', '-50.309021', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72346, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(232, 'e0016', 'bnpc2300080', 2300080, '399.968506', '4.262952', '-41.852612', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74800, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(232, 'e0016', 'bnpc2300084', 2300084, '360.969208', '1.840043', '-6.628087', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75616, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc2300091', 2300091, '376.814392', '4.773165', '-33.204460', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71258, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(232, 'e0016', 'bnpc2300092', 2300092, '356.160797', '2.687235', '2.700800', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86248, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc2300095', 2300095, '366.384308', '1.052825', '12.741240', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76160, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(232, 'e0016', 'bnpc2300098', 2300098, '387.472290', '-0.900329', '20.340231', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85976, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(232, 'e0016', 'bnpc2300099', 2300099, '387.075500', '-1.022401', '21.408360', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75888, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(232, 'e0016', 'bnpc2300103', 2300103, '403.433197', '-2.121051', '16.250811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85704, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc2300104', 2300104, '436.545288', '-1.022401', '4.501364', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72074, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(232, 'e0016', 'bnpc2300105', 2300105, '435.723999', '-1.106398', '3.907724', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75344, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(232, 'e0016', 'bnpc2300115', 2300115, '389.150787', '4.287738', '-36.392811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc2300119', 2300119, '397.360107', '0.381429', '115.953300', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64870, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2300123', 2300123, '371.755493', '-3.015678', '139.708099', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2300126', 2300126, '360.794006', '0.882443', '141.705902', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64326, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2300129', 2300129, '415.670990', '3.677377', '157.396805', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64054, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2300135', 2300135, '458.854004', '3.829967', '201.098602', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63782, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2300137', 2300137, '476.584991', '0.595055', '149.950302', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2300147', 2300147, '552.727478', '9.658914', '216.571198', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2300183', 2300183, '383.639801', '-2.278431', '92.591690', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300184', 2300184, '382.528412', '-2.487267', '93.400421', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300186', 2300186, '375.396393', '-4.129155', '77.561340', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300187', 2300187, '364.309113', '-4.655180', '71.455116', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300189', 2300189, '365.917114', '-5.088186', '65.510399', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300192', 2300192, '411.093201', '3.616341', '129.442200', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300193', 2300193, '410.513397', '4.074111', '156.633804', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300197', 2300197, '458.426697', '0.625573', '163.103607', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300199', 2300199, '458.792908', '0.625573', '164.843201', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300201', 2300201, '504.417389', '3.433233', '169.054596', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300202', 2300202, '512.107971', '5.050689', '209.033295', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300204', 2300204, '495.841888', '5.844158', '182.604706', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300205', 2300205, '544.090881', '10.452380', '201.525803', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300207', 2300207, '540.215088', '16.250811', '152.025604', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300211', 2300211, '525.902100', '19.058470', '105.821297', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300212', 2300212, '526.207275', '19.119511', '106.095901', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300214', 2300214, '570.489014', '22.507010', '119.554398', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300215', 2300215, '558.794128', '21.835609', '103.813599', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300217', 2300217, '592.919678', '25.558809', '131.029205', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300218', 2300218, '595.269714', '25.497780', '132.829697', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300222', 2300222, '158.947800', '16.443180', '-139.791306', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300223', 2300223, '162.681396', '16.443199', '-145.830505', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300229', 2300229, '47.617500', '4.166452', '66.536598', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300236', 2300236, '296.403412', '-0.256715', '-3.540742', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300237', 2300237, '307.939301', '-0.256714', '-0.769719', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2300241', 2300241, '306.026306', '-0.256723', '1.577364', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2308368', 2308368, '-332.770508', '11.416920', '613.476685', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145778, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(232, 'e0016', 'bnpc2308369', 2308369, '-343.075592', '12.112200', '626.433289', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144424, 1, 0, 0, 0, 41, 30083, 0, 0, 0), +(232, 'e0016', 'bnpc2308372', 2308372, '-345.601593', '15.548900', '608.209290', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143880, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc2308373', 2308373, '-344.072388', '20.119520', '620.861877', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145506, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(232, 'e0016', 'bnpc2308806', 2308806, '-332.725800', '11.426350', '614.251526', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143608, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(232, 'e0016', 'bnpc2308807', 2308807, '-333.646912', '11.427370', '613.129211', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144152, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(232, 'e0016', 'bnpc2308808', 2308808, '-325.795410', '11.581550', '623.895630', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144696, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(232, 'e0016', 'bnpc2308809', 2308809, '-333.211304', '11.428960', '605.065918', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145234, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(232, 'e0016', 'bnpc2308811', 2308811, '-314.290100', '11.306890', '604.882813', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144962, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(232, 'e0016', 'bnpc2308812', 2308812, '-302.510101', '16.006670', '74.845451', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109506, 1, 0, 0, 0, 8, 30065, 0, 0, 0), +(232, 'e0016', 'bnpc2308813', 2308813, '-305.806091', '17.837749', '80.064034', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109240, 1, 0, 0, 0, 8, 30072, 0, 0, 0), +(232, 'e0016', 'bnpc2308814', 2308814, '-302.204987', '16.159260', '76.035652', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108974, 1, 0, 0, 0, 8, 30079, 0, 0, 0), +(232, 'e0016', 'bnpc2308815', 2308815, '-306.242096', '16.501289', '63.830650', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108702, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc2308816', 2308816, '-295.566986', '17.347191', '79.688187', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108418, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc2308817', 2308817, '73.624763', '7.705750', '-111.894501', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83570, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(232, 'e0016', 'bnpc2308818', 2308818, '74.906487', '7.766785', '-112.382797', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83304, 1, 0, 0, 0, 0, 30074, 0, 0, 0), +(232, 'e0016', 'bnpc2308819', 2308819, '68.253563', '7.766795', '-107.438797', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83038, 1, 0, 0, 0, 0, 30081, 0, 0, 0), +(232, 'e0016', 'bnpc2308820', 2308820, '72.922729', '7.614197', '-102.708603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82766, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc2308822', 2308822, '80.979607', '7.614197', '-109.636101', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82488, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc2310066', 2310066, '447.442291', '0.685165', '-106.462196', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82168, 1, 0, 0, 0, 5, 30073, 0, 0, 0), +(232, 'e0016', 'bnpc2310068', 2310068, '439.536102', '-0.228932', '-82.414017', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71802, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(232, 'e0016', 'bnpc2310072', 2310072, '447.196014', '-0.473083', '-64.896667', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81896, 1, 0, 0, 0, 5, 30079, 0, 0, 0), +(232, 'e0016', 'bnpc2310073', 2310073, '448.172607', '-0.473083', '-65.140808', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75072, 1, 0, 0, 0, 5, 30077, 0, 0, 0), +(232, 'e0016', 'bnpc2310077', 2310077, '606.902283', '21.846050', '94.322968', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310079', 2310079, '628.601990', '21.846140', '96.549973', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310080', 2310080, '634.544983', '21.846140', '87.894997', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310081', 2310081, '632.357971', '21.846130', '64.279701', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56692, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310082', 2310082, '626.666382', '21.845909', '61.769680', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56420, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310083', 2310083, '607.055603', '21.845909', '87.877663', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56148, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310084', 2310084, '607.202271', '21.845900', '69.260597', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55876, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310086', 2310086, '647.131470', '21.845940', '74.024300', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55604, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310087', 2310087, '631.244385', '21.845980', '119.611702', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310088', 2310088, '589.967102', '21.846029', '111.639000', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310106', 2310106, '62.454399', '22.173260', '-183.847000', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54504, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310110', 2310110, '11.996420', '22.107401', '-194.509094', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54232, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310121', 2310121, '43.552151', '31.746559', '-242.757904', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310129', 2310129, '80.701881', '31.247450', '-236.730392', 77, 0, 0, 0, 1, 6, 0, 0, 74, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310142', 2310142, '1.488476', '42.615070', '-238.873703', 85, 0, 0, 0, 1, 6, 0, 0, 81, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310155', 2310155, '14.401670', '41.170448', '-236.977097', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310157', 2310157, '13.745920', '41.247570', '-234.937393', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310158', 2310158, '26.641451', '40.972401', '-238.464600', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52606, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310159', 2310159, '23.036869', '41.356541', '-231.651596', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310160', 2310160, '34.532631', '34.329281', '-248.540298', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52146, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(232, 'e0016', 'bnpc2310161', 2310161, '18.166571', '40.736420', '-243.886398', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310162', 2310162, '36.185360', '34.339809', '-251.152893', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51518, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310163', 2310163, '32.022099', '35.938412', '-251.996597', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310164', 2310164, '2.683093', '41.323040', '-231.439301', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50974, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310165', 2310165, '2.481253', '41.289459', '-247.178207', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310166', 2310166, '3.023275', '41.244370', '-229.524307', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310168', 2310168, '26.339149', '41.310089', '-228.982193', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310169', 2310169, '43.691368', '23.807100', '-197.954498', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49886, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310170', 2310170, '47.955181', '23.796989', '-201.803207', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49614, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310171', 2310171, '27.500080', '23.900030', '-176.426407', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310173', 2310173, '8.713860', '24.977810', '-183.468903', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310174', 2310174, '25.766741', '25.453140', '-197.692993', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310175', 2310175, '21.326250', '25.217710', '-213.513397', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310176', 2310176, '56.209671', '30.207701', '-208.221603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310177', 2310177, '50.222309', '30.207741', '-208.816299', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310178', 2310178, '55.211819', '31.096901', '-223.299698', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310179', 2310179, '44.478668', '30.061560', '-213.305893', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47426, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310180', 2310180, '27.629330', '25.414169', '-203.556198', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47154, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310181', 2310181, '11.799320', '24.994440', '-208.841293', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310182', 2310182, '57.392250', '31.250860', '-237.443100', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310183', 2310183, '56.381592', '31.081989', '-222.324799', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310184', 2310184, '41.846550', '31.327400', '-233.639603', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310185', 2310185, '49.764519', '31.322470', '-239.490097', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310186', 2310186, '45.229160', '30.849199', '-225.986694', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310187', 2310187, '54.603119', '30.526270', '-215.684494', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310188', 2310188, '26.807720', '25.469440', '-208.795700', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310191', 2310191, '53.416069', '23.647209', '-198.466995', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310192', 2310192, '16.458969', '23.952860', '-182.981705', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310193', 2310193, '34.354580', '23.728510', '-188.906204', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310194', 2310194, '24.826321', '38.422710', '-248.892502', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310195', 2310195, '19.778610', '41.225639', '-235.194595', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2310196', 2310196, '10.671480', '41.230179', '-245.656906', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2313233', 2313233, '320.515686', '2.215992', '-18.509239', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81726, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(232, 'e0016', 'bnpc2313234', 2313234, '320.698792', '2.227228', '-15.091220', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81454, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(232, 'e0016', 'bnpc2313235', 2313235, '318.658691', '2.299638', '-15.389510', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81182, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(232, 'e0016', 'bnpc2313237', 2313237, '303.089905', '1.571632', '-19.974110', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80910, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(232, 'e0016', 'bnpc2313238', 2313238, '331.471710', '1.907331', '-17.807329', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80638, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(232, 'e0016', 'bnpc2320820', 2320820, '241.483994', '17.276871', '-145.913101', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80354, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2320821', 2320821, '252.963196', '12.221980', '-153.075394', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80082, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2320822', 2320822, '246.929703', '9.238781', '-175.852005', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79810, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2320826', 2320826, '292.604004', '10.691710', '-162.803802', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79538, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2320827', 2320827, '290.235687', '9.507468', '-185.479797', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79266, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2320828', 2320828, '295.598389', '11.637060', '-160.074707', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78994, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2320830', 2320830, '279.377411', '8.641194', '-170.115997', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78722, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2320832', 2320832, '250.518402', '10.279540', '-169.884796', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78450, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2351462', 2351462, '48.281940', '25.165770', '125.730797', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2351466', 2351466, '33.028351', '19.801689', '204.600204', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2351468', 2351468, '17.664570', '21.473511', '187.304001', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2351469', 2351469, '15.638560', '21.324190', '188.309006', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2351473', 2351473, '48.142170', '19.912979', '204.211395', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125142, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc2351480', 2351480, '31.650410', '24.598419', '125.582100', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc2763397', 2763397, '318.018890', '0.478852', '12.307590', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78190, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(232, 'e0016', 'bnpc2763398', 2763398, '317.199188', '0.290855', '13.417520', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77918, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(232, 'e0016', 'bnpc2763399', 2763399, '313.945190', '0.195134', '8.234367', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77646, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(232, 'e0016', 'bnpc2763400', 2763400, '289.082001', '0.747620', '16.617001', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77374, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(232, 'e0016', 'bnpc2763402', 2763402, '292.225494', '0.411926', '13.809330', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77102, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(232, 'e0016', 'bnpc3739171', 3739171, '-272.839386', '22.280479', '-182.574203', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104362, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(232, 'e0016', 'bnpc3739176', 3739176, '-271.384399', '22.233410', '-181.710205', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104090, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(232, 'e0016', 'bnpc3739178', 3739178, '-270.221985', '22.171329', '-172.442307', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103818, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(232, 'e0016', 'bnpc3739189', 3739189, '-286.671295', '22.598570', '-178.942596', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103546, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(232, 'e0016', 'bnpc3739195', 3739195, '-285.084290', '23.636169', '-193.682800', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103274, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(232, 'e0016', 'bnpc3739197', 3739197, '-302.441498', '24.263420', '-202.146301', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103002, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(232, 'e0016', 'bnpc3739198', 3739198, '-301.991302', '24.106640', '-200.335693', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102730, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(232, 'e0016', 'bnpc3739200', 3739200, '-307.179413', '23.056339', '-191.149796', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102458, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(232, 'e0016', 'bnpc3739223', 3739223, '-306.875397', '9.692472', '-137.887207', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3739241', 3739241, '-102.205200', '2.027415', '-36.144821', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3739247', 3739247, '-101.905197', '2.027430', '-31.359751', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3739298', 3739298, '-64.469414', '0.015212', '63.034969', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97030, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3739305', 3739305, '-142.689407', '0.030637', '161.735504', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96758, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3739308', 3739308, '-173.166397', '0.030539', '149.329895', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96486, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3739310', 3739310, '-183.418106', '0.030539', '144.544296', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96214, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3739417', 3739417, '151.785294', '4.236084', '20.237249', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3739423', 3739423, '152.085297', '4.236084', '15.201380', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3740607', 3740607, '-135.541595', '-0.100001', '467.027588', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138730, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3740609', 3740609, '-138.985397', '-0.100003', '461.260590', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138458, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3740611', 3740611, '-176.964996', '-0.100092', '482.156586', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138186, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3740613', 3740613, '-197.264099', '-0.100169', '480.240295', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3740615', 3740615, '-183.840607', '-0.100061', '448.882111', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3740617', 3740617, '-178.071396', '-0.100048', '447.029205', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3740619', 3740619, '-182.900406', '-0.100169', '476.189514', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3740632', 3740632, '-358.518585', '1.158285', '453.619598', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc3740634', 3740634, '-362.075012', '0.968366', '458.185486', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc3740635', 3740635, '-336.208405', '-0.100018', '460.011810', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc3740636', 3740636, '-362.780701', '1.532029', '454.955414', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc3740637', 3740637, '-338.199493', '-0.100187', '433.127808', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc3740638', 3740638, '-334.106689', '-0.100003', '437.684113', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc3740639', 3740639, '-345.628906', '-0.100008', '453.583313', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc3740640', 3740640, '-333.997498', '-0.100017', '457.273987', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc3740644', 3740644, '-79.519012', '-0.100045', '377.072388', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3740645', 3740645, '-20.504120', '-0.106860', '365.133087', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3740646', 3740646, '-52.782280', '-0.106860', '324.177887', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3740647', 3740647, '-59.319771', '-0.100007', '331.135590', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3740648', 3740648, '-4.964393', '-0.100007', '339.615601', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3740649', 3740649, '-18.177540', '-0.100615', '322.254089', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3740651', 3740651, '-42.146980', '-0.100005', '396.759399', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3740823', 3740823, '52.433182', '8.970453', '290.451111', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124604, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3740824', 3740824, '34.042301', '6.188347', '297.895691', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123244, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(232, 'e0016', 'bnpc3740991', 3740991, '83.869347', '23.640280', '197.587494', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc3740992', 3740992, '83.668243', '23.758640', '201.089493', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc3740993', 3740993, '92.752083', '22.594500', '147.751404', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc3740994', 3740994, '69.937286', '22.357740', '174.791397', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc3870245', 3870245, '-201.828995', '8.309389', '-77.948196', 584, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27764, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(232, 'e0016', 'bnpc3870249', 3870249, '-144.314499', '6.941079', '-45.049019', 585, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27498, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(232, 'e0016', 'bnpc3870258', 3870258, '-169.371506', '8.963833', '-15.339670', 586, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27232, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(232, 'e0016', 'bnpc3870312', 3870312, '213.284805', '9.756709', '-77.238258', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26966, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(232, 'e0016', 'bnpc3870333', 3870333, '150.590805', '8.698524', '-47.601891', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26700, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(232, 'e0016', 'bnpc3870347', 3870347, '213.854004', '6.490500', '-15.706390', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 36, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26434, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(232, 'e0016', 'bnpc3870372', 3870372, '-149.487900', '0.750592', '229.198502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26156, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(232, 'e0016', 'bnpc3870375', 3870375, '-161.511307', '0.485998', '346.191010', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(232, 'e0016', 'bnpc3870382', 3870382, '-231.008896', '0.795779', '399.749115', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25606, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(232, 'e0016', 'bnpc3870387', 3870387, '-228.300903', '0.984585', '517.848816', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25334, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(232, 'e0016', 'bnpc3878991', 3878991, '400.476288', '4.241707', '-40.787842', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70986, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(232, 'e0016', 'bnpc3879006', 3879006, '442.368011', '0.843470', '-27.738720', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70714, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc3879018', 3879018, '447.624695', '0.635267', '-105.764603', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70442, 1, 0, 0, 0, 5, 30074, 0, 0, 0), +(232, 'e0016', 'bnpc3879051', 3879051, '431.967712', '-0.747742', '-65.507080', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70176, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(232, 'e0016', 'bnpc3879065', 3879065, '356.771088', '2.792354', '1.937849', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69898, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(232, 'e0016', 'bnpc3879339', 3879339, '-343.618011', '11.367920', '624.658508', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(232, 'e0016', 'bnpc3879341', 3879341, '-324.269501', '11.551030', '603.662109', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136536, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(232, 'e0016', 'bnpc3879343', 3879343, '-320.241089', '11.612060', '616.174377', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136288, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc3879346', 3879346, '-319.234009', '11.551030', '602.227722', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136016, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(232, 'e0016', 'bnpc3879348', 3879348, '-324.879913', '11.551030', '603.082275', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135744, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(232, 'e0016', 'bnpc3879351', 3879351, '-324.330505', '11.520510', '609.063782', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135448, 1, 0, 0, 0, 41, 0, 0, 0, 0), +(232, 'e0016', 'bnpc3879352', 3879352, '-342.671906', '20.065571', '624.475403', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135176, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(232, 'e0016', 'bnpc3879353', 3879353, '-343.556885', '20.065571', '624.811096', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134928, 1, 0, 0, 0, 41, 30073, 0, 0, 0), +(232, 'e0016', 'bnpc3879398', 3879398, '-335.561188', '11.520510', '620.843811', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134626, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(232, 'e0016', 'bnpc3884509', 3884509, '125.859001', '4.166452', '44.953560', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc3917184', 3917184, '-60.455681', '3.894856', '-39.952641', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc3939726', 3939726, '436.760712', '0.574082', '-105.544098', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69360, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(232, 'e0016', 'bnpc4329476', 4329476, '-188.220093', '9.170593', '94.010742', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95676, 6, 1, 0, 0, 0, 30246, 4329477, 0, 0), +(232, 'e0016', 'bnpc4333062', 4333062, '-159.767395', '3.700634', '137.279205', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94652, 6, 1, 0, 0, 0, 30246, 4333061, 0, 0), +(232, 'e0016', 'bnpc4621322', 4621322, '28.233730', '25.315451', '115.697998', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28790, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(232, 'e0016', 'bnpc4621339', 4621339, '-337.105499', '20.119471', '615.520508', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28518, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1132780', 1132780, '42.705971', '6.489012', '-222.119598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132784', 1132784, '43.994171', '7.081282', '-226.261307', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132785', 1132785, '46.368141', '6.532326', '-222.363800', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230902, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132786', 1132786, '50.249649', '8.663927', '-237.583603', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132810', 1132810, '119.142403', '17.274370', '-264.585907', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132815', 1132815, '53.141479', '4.367238', '-208.718597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132818', 1132818, '57.950279', '4.701855', '-181.906006', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132819', 1132819, '53.380199', '3.647015', '-170.941803', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132823', 1132823, '85.892982', '4.386182', '-186.633102', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132827', 1132827, '136.440002', '-0.215091', '-142.126297', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132829', 1132829, '139.586502', '1.436886', '-162.906296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132833', 1132833, '144.692596', '1.594073', '-161.313507', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132834', 1132834, '169.345306', '-0.575563', '-143.321701', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132835', 1132835, '132.885803', '4.471908', '-182.040894', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132836', 1132836, '127.652000', '2.679112', '-179.060898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132837', 1132837, '133.402802', '5.498395', '-185.220093', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132842', 1132842, '104.130501', '4.751109', '-199.651596', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132988', 1132988, '145.939301', '0.761501', '-119.501801', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132990', 1132990, '165.896698', '-0.582151', '-142.284103', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132991', 1132991, '196.646301', '-2.798964', '-155.795898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132992', 1132992, '159.011398', '0.196450', '-113.407997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226012, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1132993', 1132993, '162.856598', '-0.357008', '-115.116997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225740, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133000', 1133000, '202.288803', '-2.206049', '-168.963196', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225468, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133001', 1133001, '223.772705', '-6.852091', '-140.217407', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225196, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133002', 1133002, '206.683395', '-2.759299', '-171.221497', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224924, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133005', 1133005, '231.146698', '-5.044106', '-178.307693', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224652, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133007', 1133007, '242.902496', '-0.494766', '-191.458496', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224380, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133008', 1133008, '239.977493', '-0.588080', '-191.828400', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224108, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133010', 1133010, '221.392303', '-6.460419', '-138.050598', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223836, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133022', 1133022, '332.788513', '-3.345333', '-151.251495', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201534, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133023', 1133023, '298.603699', '-6.332541', '-125.749603', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133029', 1133029, '302.693298', '-3.341390', '-184.143005', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133031', 1133031, '328.386993', '-0.505648', '-187.936401', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133032', 1133032, '342.892487', '-1.328422', '-175.218201', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133035', 1133035, '358.327515', '-2.255364', '-175.310898', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133036', 1133036, '335.507294', '0.561625', '-194.418793', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133042', 1133042, '439.946808', '10.149250', '-108.177101', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169468, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133044', 1133044, '458.584900', '14.997390', '-90.379593', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169740, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133047', 1133047, '463.401215', '25.778530', '-35.324680', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168380, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133049', 1133049, '445.243591', '31.812080', '-9.685579', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168652, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133052', 1133052, '486.745514', '31.609249', '-44.177990', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168924, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133053', 1133053, '487.618011', '31.024900', '-55.958771', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170012, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133054', 1133054, '483.304291', '30.900890', '-51.161331', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172188, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133056', 1133056, '482.511993', '23.910801', '-88.545013', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173276, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133057', 1133057, '480.679291', '24.104330', '-120.189201', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169196, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133063', 1133063, '504.435913', '29.146271', '-83.562149', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173004, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133064', 1133064, '482.169495', '24.010910', '-92.475502', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172732, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133065', 1133065, '459.642914', '24.454941', '-39.719559', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172460, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133066', 1133066, '453.938690', '26.000799', '-33.810230', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170828, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133070', 1133070, '351.512787', '3.052480', '46.861389', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133071', 1133071, '341.298492', '3.983801', '67.704231', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133072', 1133072, '348.626495', '0.976962', '28.015940', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133073', 1133073, '342.183502', '0.098491', '27.298340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133077', 1133077, '309.071411', '-2.609340', '63.065491', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133080', 1133080, '281.574707', '-7.184652', '26.169170', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133098', 1133098, '289.254913', '-5.168305', '48.585239', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133100', 1133100, '291.498688', '-5.368438', '47.821369', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133126', 1133126, '-82.030632', '1.519239', '-141.488693', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148770, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133128', 1133128, '-77.317497', '1.083344', '-136.644608', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148498, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133130', 1133130, '-63.375290', '0.643326', '-166.887497', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148226, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133131', 1133131, '-64.313164', '0.965167', '-162.181503', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147954, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133132', 1133132, '-75.591331', '1.176651', '-142.404297', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147682, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133138', 1133138, '-33.189919', '-4.914308', '-94.149628', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147410, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133148', 1133148, '86.244072', '-19.783070', '210.247406', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133152', 1133152, '70.510750', '-17.727341', '188.296799', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133156', 1133156, '56.609531', '-22.226370', '292.790710', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133163', 1133163, '25.970390', '-24.061230', '233.649994', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133165', 1133165, '37.231960', '-26.765560', '260.079498', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133167', 1133167, '36.484268', '-25.833570', '242.542099', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133172', 1133172, '94.585983', '-24.244490', '288.477509', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133176', 1133176, '98.126083', '-23.363501', '294.977814', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133177', 1133177, '85.597298', '-27.953020', '268.263000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133178', 1133178, '89.747749', '-28.194380', '266.065704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133179', 1133179, '141.949905', '-28.936390', '333.222290', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133181', 1133181, '160.046402', '-31.802570', '350.789795', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133185', 1133185, '164.906906', '-32.018280', '333.485504', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133186', 1133186, '146.226807', '-28.810591', '357.818298', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133187', 1133187, '196.479996', '-32.228100', '370.754303', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133189', 1133189, '179.687897', '-32.476631', '364.163086', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133193', 1133193, '213.929794', '-29.694580', '421.080688', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133194', 1133194, '210.157394', '-29.179230', '422.919312', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133195', 1133195, '202.300293', '-31.331381', '415.743286', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133196', 1133196, '197.350098', '-27.568890', '432.363586', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(233, 'e0001', 'bnpc1133197', 1133197, '127.580299', '-21.390261', '452.635986', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133198', 1133198, '140.825500', '-23.697309', '449.881714', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133199', 1133199, '140.459198', '-23.605749', '454.489899', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133202', 1133202, '12.397950', '-27.619690', '294.880493', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133205', 1133205, '-18.143021', '-24.734921', '265.369598', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133206', 1133206, '-12.771850', '-24.094040', '262.958710', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133207', 1133207, '-9.199866', '-28.976500', '329.645294', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140338, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133209', 1133209, '-28.712330', '-27.396271', '280.689209', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140066, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133235', 1133235, '-294.825012', '66.698837', '-219.308807', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94446, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133239', 1133239, '-293.659912', '67.460083', '-222.491806', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94174, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133246', 1133246, '-302.510101', '60.959740', '-159.319504', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93902, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133248', 1133248, '-302.700409', '62.132381', '-166.402496', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133255', 1133255, '-356.364685', '65.308533', '-258.518585', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133257', 1133257, '-369.039490', '65.567993', '-232.715393', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133258', 1133258, '-392.416290', '67.276978', '-249.713898', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1133287', 1133287, '197.283798', '-8.773984', '-27.176359', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133291', 1133291, '211.352707', '-8.651912', '-43.106781', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133293', 1133293, '157.305206', '-7.888961', '-17.929399', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133294', 1133294, '157.244202', '-8.163623', '-11.917340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133298', 1133298, '120.449799', '-4.840655', '13.528090', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1133303', 1133303, '104.203796', '-7.003938', '47.562321', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135577', 1135577, '335.133911', '-4.725379', '-24.794729', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196916, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135582', 1135582, '371.054596', '0.844982', '-35.208488', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196644, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135586', 1135586, '374.433105', '1.702958', '-25.284241', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135591', 1135591, '345.784607', '-2.975556', '-32.761169', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135593', 1135593, '332.478790', '-3.372291', '3.097534', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135605', 1135605, '395.773193', '2.548209', '-44.693722', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135606', 1135606, '415.025085', '5.625315', '-64.068764', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135607', 1135607, '388.509888', '0.304810', '-66.453087', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135612', 1135612, '394.000214', '3.556523', '-87.144318', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135613', 1135613, '375.936493', '0.686609', '-85.923592', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135614', 1135614, '343.831512', '-5.020265', '-80.094650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135616', 1135616, '409.009888', '5.209702', '-112.078003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135617', 1135617, '417.517700', '5.755183', '-68.232597', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135618', 1135618, '412.284607', '5.636008', '-106.424400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135619', 1135619, '406.314209', '5.571515', '-103.380302', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135624', 1135624, '386.668915', '4.336706', '-103.087303', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135625', 1135625, '364.309509', '0.784262', '-125.017197', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135627', 1135627, '359.853485', '-2.578822', '-152.483398', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135628', 1135628, '350.999207', '-2.118987', '-128.300003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135629', 1135629, '316.613586', '8.015758', '128.187897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135632', 1135632, '323.190002', '9.736116', '132.826904', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135633', 1135633, '322.078613', '10.136940', '134.004807', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135639', 1135639, '288.849091', '17.952721', '161.725601', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135643', 1135643, '286.915314', '19.626829', '172.441101', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135645', 1135645, '295.765594', '16.383280', '167.437195', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1135646', 1135646, '318.979004', '13.831220', '155.957001', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1135647', 1135647, '290.314087', '17.922770', '159.804199', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1135651', 1135651, '-262.056305', '55.970860', '36.748020', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135671', 1135671, '-462.059692', '64.698357', '68.829857', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1135673', 1135673, '-398.458893', '51.156910', '68.804077', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83602, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1135685', 1135685, '-418.844910', '58.274151', '-34.409142', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135687', 1135687, '-520.153870', '65.239517', '61.102520', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80888, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1135688', 1135688, '-508.781586', '65.293297', '40.634731', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81432, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1135931', 1135931, '272.581390', '23.939560', '195.025894', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135933', 1135933, '241.474594', '24.000601', '179.914902', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135937', 1135937, '-101.839104', '-40.043732', '299.745911', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1135938', 1135938, '-105.816902', '-40.028461', '306.239807', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1135939', 1135939, '-90.198776', '-40.129551', '324.673096', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1135940', 1135940, '-94.585022', '-40.032150', '311.676514', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1135941', 1135941, '-114.854698', '-40.054981', '302.937286', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135942', 1135942, '-97.734077', '-40.054981', '304.310608', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135943', 1135943, '-102.695999', '-40.032539', '320.445892', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1135944', 1135944, '-83.087273', '-39.867889', '327.616211', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162337', 1162337, '283.977112', '-6.509701', '-148.452805', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162338', 1162338, '281.871399', '-6.690229', '-150.039703', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162341', 1162341, '315.751801', '-4.718813', '-109.327103', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162344', 1162344, '309.980103', '1.983368', '92.979958', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162345', 1162345, '337.067413', '3.266761', '71.050873', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162348', 1162348, '130.357803', '-6.759793', '57.419651', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162351', 1162351, '222.430695', '-7.827925', '-60.441029', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162352', 1162352, '227.527206', '-7.187046', '-66.727753', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162353', 1162353, '203.082306', '-7.339636', '-68.925049', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162354', 1162354, '221.484604', '-7.400672', '-64.011642', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162358', 1162358, '-19.657080', '0.269221', '-140.150803', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1162368', 1162368, '112.853699', '-26.954611', '251.195801', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162369', 1162369, '89.158417', '-24.246630', '236.957306', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162371', 1162371, '217.547806', '-31.967699', '395.895294', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162374', 1162374, '-2.485424', '-31.687981', '451.364502', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162376', 1162376, '-10.696620', '-34.134480', '443.381287', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162378', 1162378, '-23.636271', '-35.911461', '462.485596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162380', 1162380, '-61.417610', '-36.118149', '490.745300', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162384', 1162384, '-4.128872', '-28.294901', '327.096588', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1162385', 1162385, '-48.920349', '-35.910400', '310.262909', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1162386', 1162386, '-66.916382', '-32.083370', '343.644196', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1162387', 1162387, '-65.420998', '-31.630421', '353.013306', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1162390', 1162390, '-298.542786', '20.650921', '132.768707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162391', 1162391, '-294.392303', '20.060690', '130.388306', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162392', 1162392, '-296.020508', '20.999870', '168.359299', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162393', 1162393, '-297.016907', '20.876789', '122.239998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162394', 1162394, '-208.026505', '3.601872', '2.164479', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162398', 1162398, '-396.566711', '63.980961', '-218.615997', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1162399', 1162399, '-347.955994', '66.968529', '-220.251999', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1162402', 1162402, '-291.152710', '61.247379', '-168.828796', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1162403', 1162403, '-351.183289', '63.740372', '-153.645599', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162412', 1162412, '-365.503204', '62.324249', '-85.497841', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162413', 1162413, '-365.240814', '62.204288', '-87.690971', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162416', 1162416, '-353.685791', '63.380310', '-149.922501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1162426', 1162426, '-501.091003', '65.293297', '90.318100', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1162427', 1162427, '-534.918823', '65.381104', '43.912449', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81160, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1180878', 1180878, '104.639297', '-8.000016', '-91.168152', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1180879', 1180879, '105.168701', '-8.000016', '-94.222618', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1180880', 1180880, '106.210297', '-8.000016', '-96.527153', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1183451', 1183451, '104.347603', '-8.000016', '-88.522499', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1183452', 1183452, '101.512100', '-8.064646', '-97.812950', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1183453', 1183453, '100.580399', '-8.000016', '-95.459229', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1183454', 1183454, '99.803108', '-8.184623', '-92.716454', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1183455', 1183455, '99.192757', '-8.361253', '-89.878258', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234346, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1183456', 1183456, '96.327393', '-8.500061', '-99.385361', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1183458', 1183458, '95.550194', '-8.460118', '-96.840134', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1183459', 1183459, '94.825958', '-8.500061', '-93.978119', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1183460', 1183460, '94.179993', '-8.500061', '-90.982887', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1408325', 1408325, '107.492897', '15.984340', '-270.054596', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1408329', 1408329, '119.554398', '17.410500', '-259.693298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1408332', 1408332, '111.600800', '16.549120', '-248.298096', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1408334', 1408334, '117.813103', '17.697479', '-247.780807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1408341', 1408341, '111.814400', '16.758829', '-244.880096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1408351', 1408351, '86.796638', '15.940370', '-262.601105', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1408352', 1408352, '68.921707', '16.132620', '-262.037811', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1408353', 1408353, '68.168861', '16.760660', '-264.307190', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1408357', 1408357, '72.243088', '10.935070', '-243.492706', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1408358', 1408358, '87.101822', '15.245950', '-260.648010', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221122, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410560', 1410560, '103.350998', '14.389260', '-254.875107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410688', 1410688, '50.217388', '6.559038', '-223.468399', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410689', 1410689, '39.352970', '4.053384', '-182.513199', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410690', 1410690, '37.860909', '3.934789', '-183.153900', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410691', 1410691, '55.661430', '4.710185', '-183.981201', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1410693', 1410693, '-1.083989', '1.339663', '-188.567398', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219478, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1410694', 1410694, '0.474049', '1.531124', '-191.204697', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219206, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1410695', 1410695, '8.437746', '1.980624', '-176.756195', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218934, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1410696', 1410696, '-15.013690', '1.551492', '-198.619598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218662, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1410698', 1410698, '7.450444', '1.514552', '-190.764694', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410699', 1410699, '8.438234', '3.222636', '-146.234497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410700', 1410700, '14.477130', '3.104484', '-138.479904', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410701', 1410701, '16.068541', '3.373573', '-139.535202', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217574, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1410703', 1410703, '-15.113390', '3.146425', '-233.722000', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217302, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1410704', 1410704, '-4.948251', '4.778366', '-234.155304', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217030, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1410705', 1410705, '8.210199', '5.748120', '-247.337402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1410707', 1410707, '9.591916', '5.570471', '-251.132996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216498, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410708', 1410708, '5.815275', '5.237663', '-249.501099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216226, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410709', 1410709, '-9.906527', '3.594761', '-217.097595', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215954, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410712', 1410712, '-13.648660', '3.344659', '-231.383408', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215682, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410714', 1410714, '-30.136610', '0.909592', '-224.200897', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1410715', 1410715, '48.355789', '9.194451', '-243.366196', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1410716', 1410716, '74.908539', '4.285552', '-211.076706', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1410851', 1410851, '88.732697', '4.082766', '-185.738998', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215138, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410853', 1410853, '130.975204', '4.971314', '-185.109497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214866, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410976', 1410976, '131.470093', '2.068069', '-173.581100', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214594, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410977', 1410977, '107.495903', '0.653863', '-168.558304', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214322, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410978', 1410978, '142.190598', '1.204836', '-160.400803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214050, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410979', 1410979, '148.032898', '0.649221', '-123.475403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213778, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410982', 1410982, '166.648804', '-1.181116', '-137.457901', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213506, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410983', 1410983, '178.145996', '-1.608972', '-140.621307', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213228, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1410984', 1410984, '168.844696', '2.701761', '-163.503296', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212962, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410990', 1410990, '199.114899', '-0.803801', '-174.853195', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212684, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1410996', 1410996, '202.197205', '-1.697314', '-172.655899', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212418, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410998', 1410998, '239.098404', '-2.190103', '-187.159805', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212146, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1410999', 1410999, '221.515396', '-6.264487', '-154.155502', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211874, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411000', 1411000, '227.837204', '-8.126032', '-125.948700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211602, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411003', 1411003, '174.579300', '-1.892151', '-102.278099', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411004', 1411004, '182.699707', '-4.339209', '-88.384857', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211058, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411005', 1411005, '161.154007', '4.078132', '-169.399704', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411032', 1411032, '271.173798', '-9.203460', '-119.877403', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411034', 1411034, '330.082886', '-2.640436', '-152.968796', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173790, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411036', 1411036, '305.867188', '-2.983790', '-188.262894', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411037', 1411037, '302.815399', '-3.417479', '-190.063507', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411038', 1411038, '283.192108', '-6.780017', '-171.401596', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411042', 1411042, '287.338715', '-5.114256', '-195.320007', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411049', 1411049, '276.640594', '-8.026556', '-141.155594', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411065', 1411065, '308.725311', '-4.528103', '-80.785583', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411066', 1411066, '311.802795', '-5.117999', '-76.683037', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411069', 1411069, '291.112213', '-5.409167', '-79.667397', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411071', 1411071, '346.714203', '-3.206666', '-41.466160', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411078', 1411078, '264.779999', '-11.621630', '-65.637466', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183878, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411084', 1411084, '234.546997', '-11.793010', '-2.134793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183606, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411085', 1411085, '250.625107', '-8.387555', '28.634951', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183334, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411086', 1411086, '313.420288', '-6.097115', '16.095341', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183038, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411087', 1411087, '314.703308', '-5.599903', '20.012140', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182766, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411119', 1411119, '309.285095', '2.975462', '97.764503', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182494, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411120', 1411120, '326.314087', '2.426137', '90.012917', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182222, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411121', 1411121, '371.612488', '7.304699', '55.979481', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411124', 1411124, '375.810211', '7.175481', '51.219879', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411135', 1411135, '420.071991', '5.244238', '-35.509991', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411136', 1411136, '417.919312', '5.091386', '-39.660309', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411137', 1411137, '425.005402', '6.439638', '-41.263420', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411148', 1411148, '449.318512', '32.509201', '-8.551085', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170556, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411152', 1411152, '505.440613', '42.969250', '-25.847120', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170284, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411155', 1411155, '511.920410', '44.121750', '-42.307079', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171644, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411157', 1411157, '502.891510', '43.241459', '-46.006001', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171372, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411159', 1411159, '481.475494', '41.105301', '-9.940406', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171100, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411160', 1411160, '484.982300', '41.536228', '-12.749530', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171916, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411162', 1411162, '201.709000', '-7.309118', '-73.014473', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181134, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411163', 1411163, '206.805496', '-9.964188', '-16.037279', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180862, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411164', 1411164, '183.550705', '-8.560358', '-4.379386', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180590, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411167', 1411167, '127.300301', '-5.901662', '12.460290', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180318, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411170', 1411170, '92.851097', '-4.928711', '4.867581', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180046, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411171', 1411171, '127.489098', '-7.126010', '58.609852', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179774, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411173', 1411173, '216.815399', '-9.170719', '-44.144390', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411174', 1411174, '218.066605', '-9.475899', '-42.282791', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411176', 1411176, '184.252594', '-8.621394', '-0.259450', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411178', 1411178, '102.749901', '-11.800030', '112.244499', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411179', 1411179, '107.205597', '-7.793041', '74.349869', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411180', 1411180, '84.061897', '-6.851347', '16.464439', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411181', 1411181, '84.336563', '-6.698757', '13.137970', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411182', 1411182, '275.292297', '23.606110', '190.161697', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411186', 1411186, '288.694397', '21.579050', '187.354996', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177344, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411187', 1411187, '286.440796', '21.978689', '190.167206', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177072, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411193', 1411193, '237.018204', '23.458019', '156.614304', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176800, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411197', 1411197, '211.473099', '23.453070', '169.805405', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176528, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411198', 1411198, '209.800598', '23.457560', '211.348297', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176256, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411202', 1411202, '205.811798', '24.000139', '204.175003', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175984, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411203', 1411203, '226.011993', '23.536930', '175.448105', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175712, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411206', 1411206, '227.024994', '24.063431', '228.666702', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175440, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411207', 1411207, '224.858200', '23.422550', '230.009598', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175168, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411208', 1411208, '234.736603', '23.544621', '214.365707', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411210', 1411210, '233.020493', '23.453070', '214.312897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411213', 1411213, '213.946701', '23.453070', '226.459106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174618, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(233, 'e0001', 'bnpc1411214', 1411214, '211.749405', '23.453070', '228.168106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411218', 1411218, '228.444595', '23.457581', '165.045898', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411220', 1411220, '382.833496', '13.565220', '79.972481', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159876, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411222', 1411222, '374.288513', '12.161390', '84.031380', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158516, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411223', 1411223, '409.964111', '18.326040', '60.501968', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159604, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411225', 1411225, '411.001709', '26.138660', '123.399696', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158788, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411227', 1411227, '436.179108', '32.211750', '101.823402', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159060, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411228', 1411228, '439.383514', '32.761070', '98.649529', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157972, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411233', 1411233, '-58.666859', '-4.080153', '-116.513397', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134082, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411234', 1411234, '-111.996201', '6.549166', '-145.525208', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411235', 1411235, '-123.994698', '12.085680', '-163.495407', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411236', 1411236, '-120.946297', '10.817430', '-167.745193', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411237', 1411237, '-179.948700', '2.732331', '-103.572197', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1411238', 1411238, '-212.568405', '1.504992', '-84.178993', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97676, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(233, 'e0001', 'bnpc1411240', 1411240, '-212.756607', '1.846313', '-94.163452', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96316, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(233, 'e0001', 'bnpc1411241', 1411241, '-214.172699', '1.359615', '-82.278023', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96044, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(233, 'e0001', 'bnpc1411242', 1411242, '-213.856293', '1.439267', '-83.871033', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96588, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(233, 'e0001', 'bnpc1411244', 1411244, '-193.905304', '2.125694', '-41.069290', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97948, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(233, 'e0001', 'bnpc1411253', 1411253, '-56.382130', '-4.928711', '-94.529694', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411254', 1411254, '-20.293131', '-2.590379', '-100.341103', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411255', 1411255, '-23.246990', '0.393718', '-138.153305', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411256', 1411256, '-59.128750', '0.758792', '-164.202393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411655', 1411655, '-92.954361', '1.786075', '-122.393898', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411656', 1411656, '-93.869904', '1.736482', '-119.067497', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411657', 1411657, '-109.805397', '6.718060', '-150.029800', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411658', 1411658, '-176.756607', '2.961861', '-114.443398', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1411659', 1411659, '-205.790604', '2.068845', '-61.951530', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412058', 1412058, '-196.154800', '1.939114', '-25.589430', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412059', 1412059, '-163.822601', '0.087921', '-11.411790', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412062', 1412062, '71.492859', '-11.893120', '161.389404', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412463', 1412463, '107.728401', '-8.259025', '159.304703', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412464', 1412464, '108.796501', '-7.985859', '156.375000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412465', 1412465, '45.309830', '-13.145570', '164.612595', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412467', 1412467, '86.263412', '-10.238450', '166.918396', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412470', 1412470, '43.860840', '-19.453880', '194.128098', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412471', 1412471, '40.686970', '-20.436541', '199.194107', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412474', 1412474, '83.274986', '-19.705959', '207.342194', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412475', 1412475, '56.498798', '-24.125010', '265.742401', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412476', 1412476, '56.595661', '-23.666790', '269.184387', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412477', 1412477, '67.313408', '-23.280479', '279.101715', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412478', 1412478, '130.256897', '-28.458679', '285.610504', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412480', 1412480, '84.874817', '-11.151300', '170.539902', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412482', 1412482, '48.863239', '-15.723400', '175.131393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412483', 1412483, '91.596550', '-15.216650', '191.087204', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412484', 1412484, '40.536888', '-24.919319', '239.885193', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412486', 1412486, '12.541730', '-30.409491', '274.885712', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412488', 1412488, '84.885887', '-24.795959', '238.330597', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412489', 1412489, '100.537003', '-25.090691', '289.606689', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412890', 1412890, '192.974106', '-32.093040', '371.993805', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412891', 1412891, '174.770096', '-30.985760', '392.154999', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412892', 1412892, '169.164200', '-29.940310', '393.395111', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412893', 1412893, '172.161407', '-30.924379', '389.056885', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412894', 1412894, '171.285507', '-29.285271', '402.230988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412895', 1412895, '154.779907', '-26.129629', '405.514008', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412896', 1412896, '168.913696', '-28.561871', '440.527588', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412897', 1412897, '173.811401', '-24.163700', '462.640015', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412898', 1412898, '172.581100', '-23.212021', '466.157715', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412900', 1412900, '157.804596', '-31.533340', '347.603088', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412901', 1412901, '181.335403', '-32.472290', '364.442596', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412902', 1412902, '173.037506', '-29.813890', '400.369385', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412903', 1412903, '215.503098', '-32.150810', '397.756897', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412904', 1412904, '151.140594', '-25.314760', '448.172699', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1412905', 1412905, '174.771194', '-22.925610', '465.693207', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413304', 1413304, '-10.375770', '-30.070101', '357.174011', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120482, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1413305', 1413305, '-73.187973', '-29.638651', '377.182007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120210, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1413306', 1413306, '7.099501', '-28.323009', '389.698700', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119938, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1413307', 1413307, '-25.474409', '-30.239300', '288.173004', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413309', 1413309, '2.871708', '-26.996679', '314.962891', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413310', 1413310, '-43.682961', '-31.251160', '365.171295', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413311', 1413311, '-60.904331', '-32.109970', '348.252411', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413312', 1413312, '-26.264040', '-32.967579', '411.424805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413711', 1413711, '1.843092', '-32.621689', '440.420288', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413712', 1413712, '-47.684052', '-34.975368', '436.820007', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413713', 1413713, '-62.874069', '-35.826691', '451.367706', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413714', 1413714, '-36.040771', '-30.235821', '405.258087', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413715', 1413715, '-77.531143', '-35.740108', '463.920013', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413716', 1413716, '-81.834183', '-35.561951', '465.537415', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413717', 1413717, '-81.132263', '-36.687901', '482.108704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413718', 1413718, '-64.000313', '-36.181229', '492.846497', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413719', 1413719, '-45.209900', '-36.768280', '469.442810', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413721', 1413721, '-49.479870', '-31.658331', '420.700195', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413723', 1413723, '-61.146591', '-34.546021', '439.197601', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413724', 1413724, '-12.636190', '-34.818890', '433.701904', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413725', 1413725, '-21.261789', '-35.776421', '463.813293', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1413726', 1413726, '-80.766037', '-35.860481', '467.917786', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1414923', 1414923, '-251.624496', '8.046767', '9.209213', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1414924', 1414924, '-237.355103', '14.172800', '56.681469', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1414925', 1414925, '-240.865097', '13.064570', '51.144550', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1414928', 1414928, '-261.738007', '16.472500', '59.800060', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1414929', 1414929, '-271.273499', '19.264000', '95.431259', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1414931', 1414931, '-299.224915', '20.999870', '171.197403', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1414932', 1414932, '-335.657013', '21.199930', '166.262405', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1414935', 1414935, '-333.186493', '21.314899', '161.005798', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1414936', 1414936, '-351.155914', '21.194731', '192.767197', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1414938', 1414938, '-239.843002', '7.295271', '0.194433', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1415337', 1415337, '-263.631592', '17.193020', '61.247459', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1415339', 1415339, '-340.596497', '21.199930', '161.368500', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1415340', 1415340, '-332.306000', '21.000000', '208.378098', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1415341', 1415341, '-328.043915', '21.000000', '211.118393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1415342', 1415342, '-292.652802', '20.981110', '203.265396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1415343', 1415343, '-87.174072', '-39.921982', '291.489105', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1415344', 1415344, '-112.985397', '-40.020420', '312.799713', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1415345', 1415345, '-86.737244', '-40.184792', '302.023285', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1415346', 1415346, '-116.616600', '-40.014709', '309.506805', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1415347', 1415347, '-244.678497', '66.147812', '-179.125702', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1415348', 1415348, '-241.352005', '66.788689', '-178.362701', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1415352', 1415352, '-351.735809', '67.765259', '-226.093002', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1415353', 1415353, '-354.085602', '67.313278', '-222.043106', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1415354', 1415354, '-354.115387', '66.529556', '-254.235596', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1415358', 1415358, '-429.221008', '60.624039', '-145.159103', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1415359', 1415359, '-431.571014', '61.023251', '-141.100204', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1415360', 1415360, '-409.323303', '61.264919', '-120.927803', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1415361', 1415361, '-290.298706', '60.229500', '-115.695396', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1415364', 1415364, '-313.710297', '62.882381', '-46.982571', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1415365', 1415365, '-308.186493', '62.943420', '-50.370079', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72208, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1415367', 1415367, '-304.768494', '62.180470', '-99.076874', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72480, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1415368', 1415368, '-275.257507', '60.807152', '-84.214577', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71664, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1415375', 1415375, '-262.012695', '62.577202', '-39.993938', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1415376', 1415376, '-417.990387', '64.377762', '-51.102509', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1415377', 1415377, '-416.159302', '65.476410', '-55.924358', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1415378', 1415378, '-446.097504', '57.907940', '-22.476589', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1415379', 1415379, '-454.154297', '61.631142', '-28.213980', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1415381', 1415381, '-285.852814', '61.458679', '25.148211', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1415382', 1415382, '-414.267212', '60.471451', '-98.405472', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1415383', 1415383, '-462.152802', '62.699409', '-106.490501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1415384', 1415384, '-465.866913', '62.824699', '-107.035797', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1416355', 1416355, '184.649399', '-7.461709', '-54.703640', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173518, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc1418012', 1418012, '397.388092', '18.876289', '87.758537', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149848, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc1418013', 1418013, '272.692596', '-2.411928', '61.854092', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150120, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154901', 2154901, '-288.593994', '59.581390', '-121.735901', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64604, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2154903', 2154903, '-303.822388', '59.830570', '-130.571503', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2154910', 2154910, '-290.943787', '61.814331', '-175.341400', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64876, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2154912', 2154912, '-384.725800', '64.377808', '-230.792694', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2154914', 2154914, '-416.247894', '61.594559', '-135.801102', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2154915', 2154915, '-397.116089', '56.778770', '-87.632607', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2154916', 2154916, '-408.031494', '53.104481', '35.133572', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2154917', 2154917, '-274.891388', '62.760250', '-48.600040', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2154925', 2154925, '-365.255188', '56.015820', '61.905800', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2154932', 2154932, '-452.140106', '63.523258', '-235.614594', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92276, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154933', 2154933, '-486.564514', '58.060532', '-222.186707', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154938', 2154938, '-449.027313', '55.863232', '-205.401703', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91732, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154939', 2154939, '-453.788086', '56.259960', '-203.845306', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91460, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154940', 2154940, '-449.607086', '55.100281', '-200.518799', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91188, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154941', 2154941, '-459.128693', '64.652428', '-264.026886', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154943', 2154943, '-483.543213', '58.182598', '-215.136993', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90112, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154944', 2154944, '-488.316101', '67.415604', '-265.598907', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154945', 2154945, '-487.007385', '67.617432', '-267.616608', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90916, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154950', 2154950, '-508.114197', '73.937157', '-289.616486', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154952', 2154952, '-505.210999', '72.800743', '-287.708893', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154954', 2154954, '-475.800293', '75.099243', '-316.311890', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88486, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154959', 2154959, '-474.076904', '71.450668', '-300.198914', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154963', 2154963, '-481.180389', '74.270866', '-319.393005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88752, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154965', 2154965, '-509.328613', '51.460609', '-230.011002', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154966', 2154966, '-530.510376', '48.020088', '-245.654999', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87670, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154968', 2154968, '-550.774414', '46.775639', '-245.014099', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154969', 2154969, '-546.684998', '46.860470', '-244.251205', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154970', 2154970, '-545.647400', '50.522579', '-203.540100', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154971', 2154971, '-547.356384', '51.163448', '-199.786407', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154973', 2154973, '-572.310486', '49.567921', '-226.453506', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90644, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154974', 2154974, '-564.080322', '50.297001', '-211.993607', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154976', 2154976, '-508.251099', '57.374981', '-255.303207', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154978', 2154978, '-533.645081', '43.546291', '-230.397507', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2154980', 2154980, '-468.316010', '57.494301', '-212.252502', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2154982', 2154982, '-485.247803', '68.405968', '-274.754211', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2154983', 2154983, '-505.135406', '73.043167', '-290.313904', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2154985', 2154985, '-528.526672', '48.142170', '-244.495300', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2154986', 2154986, '-568.407227', '50.556568', '-214.304596', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320574', 2320574, '261.921387', '1.753539', '-223.409698', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210786, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320575', 2320575, '261.238495', '0.534709', '-243.419296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320576', 2320576, '263.797699', '1.764011', '-223.470901', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320577', 2320577, '259.453186', '1.043279', '-240.840607', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320579', 2320579, '274.919800', '-1.072963', '-256.170593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209698, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320580', 2320580, '300.060089', '-0.888014', '-307.572510', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320581', 2320581, '324.245514', '-1.093548', '-288.072113', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320582', 2320582, '298.274811', '-0.855762', '-304.993805', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320583', 2320583, '325.011292', '-1.286943', '-316.835388', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208610, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320584', 2320584, '287.788513', '-0.475198', '-298.277313', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208338, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320585', 2320585, '329.843903', '-0.745502', '-290.159698', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320586', 2320586, '325.924103', '-0.928046', '-285.067993', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320587', 2320587, '327.193207', '-1.286943', '-313.833496', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207522, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320588', 2320588, '337.177185', '0.441468', '-264.191803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207250, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320589', 2320589, '332.682892', '0.959346', '-254.439896', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206978, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320590', 2320590, '329.305206', '0.991071', '-252.106293', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206706, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320591', 2320591, '304.253815', '-0.643113', '-258.978912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320596', 2320596, '346.493591', '-0.483981', '-328.131287', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206162, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320597', 2320597, '302.790710', '-1.010156', '-352.830505', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320598', 2320598, '273.957489', '-0.689871', '-328.818512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205618, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320599', 2320599, '268.469910', '-0.593068', '-327.086395', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205346, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320600', 2320600, '267.525513', '-0.806307', '-329.538208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205074, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320601', 2320601, '276.737091', '0.547026', '-314.840912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320610', 2320610, '288.781494', '-1.187131', '-281.665588', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320612', 2320612, '330.290802', '-1.286943', '-344.531311', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320617', 2320617, '92.850220', '-10.902450', '173.235596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320637', 2320637, '-108.605698', '-30.528610', '272.296295', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320638', 2320638, '-138.649902', '-23.382610', '264.698212', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320639', 2320639, '-99.474327', '-30.263571', '271.854614', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320641', 2320641, '-170.286606', '-27.619471', '297.813995', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320642', 2320642, '-171.781998', '-27.505461', '288.445007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320643', 2320643, '-165.769897', '-27.707670', '293.053192', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320645', 2320645, '-125.383400', '-25.040100', '360.402802', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320646', 2320646, '-137.475906', '-27.672729', '336.516113', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320647', 2320647, '-141.819901', '-30.193661', '309.942688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320649', 2320649, '-59.102539', '-28.549570', '296.388702', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320650', 2320650, '277.147400', '-31.644880', '389.827209', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320651', 2320651, '250.690399', '-30.350241', '408.346588', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106362, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320652', 2320652, '274.666290', '-31.273550', '391.993988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320654', 2320654, '299.640686', '-31.632290', '402.348511', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320655', 2320655, '300.434814', '-32.791679', '411.978302', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320656', 2320656, '342.732788', '-31.784590', '408.346588', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320658', 2320658, '308.735687', '-32.272881', '398.214600', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320659', 2320659, '329.910309', '-31.601860', '408.307800', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320660', 2320660, '332.175415', '-31.647480', '410.657013', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320661', 2320661, '344.838593', '-31.113190', '440.115906', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320664', 2320664, '144.316299', '-22.573250', '513.925293', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320665', 2320665, '141.166702', '-21.478600', '518.533508', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104174, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(233, 'e0001', 'bnpc2320666', 2320666, '165.008896', '-23.196131', '497.355591', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320667', 2320667, '137.956802', '-21.858990', '489.646698', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103642, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320668', 2320668, '130.324295', '-19.810080', '417.345490', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320669', 2320669, '98.407799', '-20.697760', '221.536407', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320671', 2320671, '97.314743', '-11.800020', '101.237198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320675', 2320675, '135.972794', '-11.800140', '133.207794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320678', 2320678, '185.468796', '-11.800210', '106.268402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320683', 2320683, '188.220001', '-11.825790', '62.851860', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320688', 2320688, '201.678406', '-11.795270', '23.117371', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320694', 2320694, '260.142914', '-12.002980', '-90.756157', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320695', 2320695, '258.451996', '-12.002920', '-92.319710', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320696', 2320696, '257.085999', '-12.006830', '-154.938705', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320697', 2320697, '264.474091', '-12.313630', '-187.969193', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320721', 2320721, '396.475098', '20.645411', '107.225098', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159332, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320722', 2320722, '419.413391', '27.114370', '102.443001', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158244, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320725', 2320725, '-159.887802', '18.109520', '-68.195572', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320727', 2320727, '-170.536102', '27.551260', '-85.891403', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320728', 2320728, '-170.885803', '27.966640', '-89.178688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320732', 2320732, '-547.753174', '19.485781', '-191.943298', 30, 0, 0, 0, 2, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63894, 1, 0, 0, 0, 0, 0, 4302234, 0, 0), +(233, 'e0001', 'bnpc2320790', 2320790, '-439.475098', '48.996670', '43.930679', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320791', 2320791, '-432.144196', '49.318508', '-4.165760', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2320793', 2320793, '-242.034393', '58.664711', '38.845100', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320794', 2320794, '-206.227997', '57.382519', '52.006420', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320797', 2320797, '-193.570099', '74.743111', '21.367661', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320800', 2320800, '-238.635895', '62.272018', '25.375710', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2320801', 2320801, '-219.805405', '67.608017', '9.079071', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2341782', 2341782, '345.014008', '-1.078350', '-177.896896', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2341783', 2341783, '319.296997', '-0.849605', '-171.347198', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2341784', 2341784, '292.707397', '-6.651216', '-123.136101', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2341785', 2341785, '347.310486', '6.679530', '84.092422', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2341786', 2341786, '354.267487', '5.193762', '60.841671', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2341787', 2341787, '348.283203', '3.086715', '49.707630', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2603191', 2603191, '256.015594', '-11.793030', '-185.891006', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164850, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2603192', 2603192, '260.232605', '-11.793140', '-180.095505', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164578, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612552', 2612552, '252.195404', '-11.793090', '-145.885406', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164306, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612553', 2612553, '254.433395', '-11.793010', '-113.328796', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164034, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612554', 2612554, '258.838715', '-11.793140', '-73.879280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163762, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612555', 2612555, '233.580307', '-11.793010', '-18.570280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163490, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612556', 2612556, '216.695099', '-11.793000', '8.959249', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163218, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612557', 2612557, '212.512299', '-11.795270', '12.741240', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162946, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612559', 2612559, '120.048798', '-11.800060', '124.326401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162680, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612561', 2612561, '191.515900', '-11.856310', '51.102409', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162408, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612562', 2612562, '189.768997', '-11.800210', '71.478256', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162136, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612563', 2612563, '192.239395', '-11.800030', '91.385788', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161864, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612564', 2612564, '179.480606', '-11.800260', '106.735802', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161592, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612565', 2612565, '165.069794', '-11.800630', '119.881798', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161320, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612566', 2612566, '146.988297', '-11.800000', '126.311401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161048, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612569', 2612569, '132.474792', '-11.800090', '139.979294', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160776, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612570', 2612570, '250.133804', '-11.793030', '-55.898849', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160498, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612571', 2612571, '205.980301', '-11.772920', '33.134300', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160226, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612573', 2612573, '421.064514', '24.757450', '78.823257', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2612574', 2612574, '428.320709', '31.721590', '124.805603', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157428, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2615184', 2615184, '360.341705', '-32.028728', '435.294006', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2615186', 2615186, '375.478699', '-32.089771', '448.966095', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2615187', 2615187, '382.955597', '-31.998211', '440.878815', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc2615503', 2615503, '253.211594', '-11.793080', '-161.360504', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154514, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc2615504', 2615504, '253.937607', '-11.793030', '-68.861298', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154242, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3693097', 3693097, '-224.085602', '1.055553', '-69.316994', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(233, 'e0001', 'bnpc3693102', 3693102, '-195.941101', '2.945007', '-104.081802', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96860, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(233, 'e0001', 'bnpc3693103', 3693103, '-189.283005', '2.362727', '-83.005783', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97404, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(233, 'e0001', 'bnpc3693105', 3693105, '-210.620300', '1.998901', '-96.299683', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95500, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(233, 'e0001', 'bnpc3693109', 3693109, '-195.513901', '2.216981', '-40.186169', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95228, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(233, 'e0001', 'bnpc3693111', 3693111, '-200.096695', '2.060742', '-67.256340', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(233, 'e0001', 'bnpc3693121', 3693121, '368.459503', '-32.364429', '413.199005', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3693136', 3693136, '242.206406', '-30.411280', '402.182007', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3693138', 3693138, '225.451996', '-28.488640', '423.605713', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3693140', 3693140, '215.350494', '-32.486500', '387.777496', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3693173', 3693173, '-508.842590', '40.237991', '-79.606361', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3693174', 3693174, '-516.899414', '40.146439', '-74.967621', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3693175', 3693175, '-514.549500', '40.207470', '-77.103882', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85228, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3693176', 3693176, '-520.866821', '40.146439', '-64.255783', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3693177', 3693177, '-515.685120', '40.359970', '-54.677021', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3693178', 3693178, '-503.929199', '41.000938', '-56.107471', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3693179', 3693179, '-483.658691', '45.245129', '-60.343559', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3693180', 3693180, '-481.533905', '45.933941', '-62.817669', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3693183', 3693183, '-378.957794', '51.132931', '52.109509', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3693184', 3693184, '-397.512787', '49.301849', '10.055650', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3693185', 3693185, '-433.121094', '49.318531', '34.558170', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3693188', 3693188, '-322.396393', '57.338970', '-6.726664', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65686, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3693623', 3693623, '-184.619797', '78.429970', '42.778721', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3693624', 3693624, '-191.994202', '77.183746', '37.510250', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72746, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3694403', 3694403, '-314.266113', '63.832611', '57.746510', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3742079', 3742079, '-530.733887', '65.311684', '98.466423', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3742133', 3742133, '-526.186829', '65.311691', '102.647400', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3742194', 3742194, '48.050610', '-11.800030', '-40.915428', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153976, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3742195', 3742195, '22.187790', '-11.800000', '-69.750504', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153704, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3742196', 3742196, '15.168640', '-11.800000', '-75.762558', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153432, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3742197', 3742197, '6.348711', '-11.800040', '-110.540199', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153160, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3742198', 3742198, '-54.153049', '-3.500003', '-186.530106', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152888, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3742199', 3742199, '-50.919399', '-3.500001', '-182.895996', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152616, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3742200', 3742200, '-69.779549', '-3.500144', '-196.820496', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152344, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3742201', 3742201, '-62.272110', '-3.500066', '-207.843399', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152072, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3742202', 3742202, '2.735321', '-11.800110', '-122.937599', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151782, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3742203', 3742203, '-6.886642', '-3.500000', '-135.990402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3742204', 3742204, '-6.586641', '-3.500000', '-139.267899', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3742205', 3742205, '-36.719379', '-3.500000', '-180.416794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150966, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3742206', 3742206, '-48.687111', '-3.500072', '-207.096298', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150694, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3746465', 3746465, '-208.691696', '52.495350', '-42.669102', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71120, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3746466', 3746466, '-219.824799', '58.286751', '-60.483898', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3746467', 3746467, '-215.491898', '57.635231', '-71.491089', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70576, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3869502', 3869502, '125.699600', '25.160120', '-311.621185', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41108, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(233, 'e0001', 'bnpc3869509', 3869509, '-307.502899', '63.448620', '-285.687714', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40842, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(233, 'e0001', 'bnpc3869525', 3869525, '-206.130997', '53.564651', '-126.977600', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40564, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(233, 'e0001', 'bnpc3869531', 3869531, '96.403351', '-6.334397', '-121.433502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40298, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(233, 'e0001', 'bnpc3869540', 3869540, '164.007095', '-6.013201', '-52.486290', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.750000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40020, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(233, 'e0001', 'bnpc3869598', 3869598, '-4.837158', '-7.919495', '-22.201900', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39760, 5, 0, 20, 0, 0, 30055, 0, 0, 0), +(233, 'e0001', 'bnpc3869604', 3869604, '85.465698', '-6.089244', '60.991131', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39482, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(233, 'e0001', 'bnpc3869607', 3869607, '14.362120', '-8.102512', '100.498901', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39204, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(233, 'e0001', 'bnpc3877513', 3877513, '121.019203', '24.917931', '-304.463287', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204518, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc3884907', 3884907, '-419.228607', '55.416000', '66.506737', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3897658', 3897658, '117.021400', '25.101040', '-311.604492', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204258, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc3898007', 3898007, '132.524597', '24.948450', '-305.562012', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203974, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc4083772', 4083772, '-327.757690', '21.357790', '204.228699', 58, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 5782, 1, 0, 0, 0, 0, 0, 4083771, 0, 0), +(233, 'e0001', 'bnpc4083778', 4083778, '-297.044800', '21.140360', '151.049896', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 8174, 1, 0, 0, 0, 0, 0, 4083775, 0, 0), +(233, 'e0001', 'bnpc4083795', 4083795, '-327.840088', '21.103210', '206.835907', 58, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6054, 1, 0, 0, 0, 0, 0, 4083794, 0, 0), +(233, 'e0001', 'bnpc4083796', 4083796, '-296.744812', '21.145109', '151.349899', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7662, 1, 0, 0, 0, 0, 0, 4083797, 0, 0), +(233, 'e0001', 'bnpc4083798', 4083798, '-296.444794', '21.149870', '151.649902', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7278, 1, 0, 0, 0, 0, 0, 4083799, 0, 0), +(233, 'e0001', 'bnpc4083800', 4083800, '-296.144806', '21.154619', '151.949905', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6894, 1, 0, 0, 0, 0, 0, 4083801, 0, 0), +(233, 'e0001', 'bnpc4083802', 4083802, '-295.844788', '21.159370', '152.249893', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6510, 1, 0, 0, 0, 0, 0, 4083803, 0, 0), +(233, 'e0001', 'bnpc4083871', 4083871, '127.641701', '-6.332520', '-100.389198', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38544, 8, 0, 0, 4295658, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4295672', 4295672, '132.951797', '-6.332520', '-100.114502', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37512, 8, 0, 0, 4295661, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4295673', 4295673, '137.910706', '-6.438695', '-96.608414', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37240, 8, 0, 0, 4295662, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4295675', 4295675, '126.695297', '-6.948534', '-90.459633', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36968, 8, 0, 0, 4295663, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4295677', 4295677, '126.418900', '-6.971872', '-84.529358', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36696, 8, 0, 0, 4295664, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4296957', 4296957, '95.628906', '-2.029270', '-42.382439', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35816, 1, 0, 0, 2280260, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4296958', 4296958, '98.693558', '-2.029731', '-43.942860', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35544, 1, 0, 0, 2280261, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4296959', 4296959, '101.467598', '-2.005454', '-46.176739', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35272, 1, 0, 0, 2280262, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4296960', 4296960, '104.146896', '-1.968804', '-48.332958', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35000, 1, 0, 0, 2280263, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302206', 4302206, '-555.148071', '29.067560', '-230.785706', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302207', 4302207, '-516.437683', '22.056881', '-221.606796', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302208', 4302208, '-524.244812', '24.477020', '-253.274597', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302209', 4302209, '-527.577820', '24.719191', '-254.932404', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302212', 4302212, '-582.818420', '21.723471', '-238.845596', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302213', 4302213, '-596.266602', '20.622200', '-226.349106', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302214', 4302214, '-579.272827', '21.076719', '-214.966003', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302215', 4302215, '-581.780823', '21.842831', '-241.897293', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302216', 4302216, '-528.772888', '19.922779', '-195.839096', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61374, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302217', 4302217, '-537.197327', '20.139130', '-199.348495', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302218', 4302218, '-563.208191', '18.867491', '-186.546005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302219', 4302219, '-527.765808', '20.129919', '-200.682007', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302220', 4302220, '-569.817627', '10.940670', '-130.235794', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302221', 4302221, '-617.120605', '21.896610', '-197.436493', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302222', 4302222, '-575.432983', '11.001710', '-129.716995', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302223', 4302223, '-568.810608', '10.910160', '-133.318100', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302225', 4302225, '-502.711792', '17.279470', '-157.029495', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59204, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302226', 4302226, '-496.089386', '16.799740', '-160.630707', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58938, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302228', 4302228, '-481.979004', '18.189381', '-229.549103', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302229', 4302229, '-555.941528', '25.463579', '-260.210693', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4302351', 4302351, '-572.925293', '18.257090', '-181.740707', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57718, 1, 0, 0, 0, 0, 0, 4302260, 0, 0), +(233, 'e0001', 'bnpc4302353', 4302353, '-513.667175', '23.842480', '-245.333893', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57446, 1, 0, 0, 0, 0, 0, 4302268, 0, 0), +(233, 'e0001', 'bnpc4333043', 4333043, '-309.205597', '57.338970', '-10.110600', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(233, 'e0001', 'bnpc4333385', 4333385, '-348.321503', '67.616417', '-233.774200', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4510293', 4510293, '213.253204', '-32.025242', '324.145386', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38950, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(233, 'e0001', 'bnpc4621046', 4621046, '370.051086', '-32.295422', '411.821198', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42124, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(233, 'e0001', 'bnpc4621047', 4621047, '-538.803589', '50.907551', '-203.075394', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41858, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136062', 1136062, '-505.795593', '9.752348', '104.621803', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205580, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136063', 1136063, '-515.044922', '11.400910', '112.794899', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205308, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136064', 1136064, '-501.586090', '9.603134', '109.964401', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205036, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136065', 1136065, '-475.682312', '6.895020', '108.614403', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204764, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136067', 1136067, '-478.398712', '7.440553', '105.715897', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204492, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136074', 1136074, '-391.806000', '9.109558', '308.461090', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186842, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc1136075', 1136075, '-414.835693', '4.099017', '268.726593', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136076', 1136076, '-390.326385', '4.860912', '278.225494', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136077', 1136077, '-430.838715', '8.406867', '277.241089', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136078', 1136078, '-459.421692', '5.690572', '240.230301', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136079', 1136079, '-450.953796', '11.975280', '268.649994', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136080', 1136080, '-390.585205', '9.262146', '310.566895', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187114, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc1136081', 1136081, '-461.788513', '5.891314', '238.861206', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136082', 1136082, '-473.594299', '10.086170', '246.936707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136085', 1136085, '-435.743011', '1.967827', '88.564453', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202328, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1136086', 1136086, '-390.760986', '0.834163', '111.607300', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202056, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1136087', 1136087, '-418.825409', '0.336109', '91.913406', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201784, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1136089', 1136089, '-414.658203', '0.079596', '95.602753', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201512, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1136091', 1136091, '-415.322693', '-0.226261', '151.930603', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201240, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1136092', 1136092, '-421.841888', '0.864481', '141.020401', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200968, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1136093', 1136093, '-381.670593', '0.762653', '137.407394', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200696, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1136094', 1136094, '-430.745300', '0.804663', '164.744202', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200424, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1136097', 1136097, '-431.509888', '2.089151', '233.463394', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136098', 1136098, '-446.728088', '0.504031', '188.779205', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136099', 1136099, '-432.335907', '1.523763', '185.544998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136100', 1136100, '-400.007599', '-0.063123', '184.140106', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136101', 1136101, '-403.100311', '-0.089608', '188.898804', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136102', 1136102, '-360.642303', '0.164527', '231.393402', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136103', 1136103, '-384.551605', '0.763345', '233.278397', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136104', 1136104, '-386.850494', '0.112991', '227.897705', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136130', 1136130, '-325.468597', '10.213140', '333.038086', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136131', 1136131, '-242.241394', '-5.472987', '226.931595', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136132', 1136132, '-328.277710', '4.935143', '305.884399', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136134', 1136134, '-321.859711', '9.391951', '328.320587', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136136', 1136136, '-268.451996', '-2.822966', '243.274506', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136137', 1136137, '-184.086700', '-8.314297', '238.537598', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136139', 1136139, '-95.525383', '-7.421386', '293.721008', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136140', 1136140, '-126.314003', '-8.479818', '267.845093', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136141', 1136141, '-103.592903', '-7.979246', '256.096588', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136142', 1136142, '-128.252106', '-6.729275', '293.324097', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136143', 1136143, '-124.302597', '-8.155410', '276.504700', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136158', 1136158, '-113.634003', '-4.072056', '313.771210', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136161', 1136161, '-133.257095', '-0.167896', '343.312714', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163548, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1136162', 1136162, '-92.474274', '0.803288', '352.180786', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163820, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1136163', 1136163, '-74.857803', '4.447460', '383.016602', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136164', 1136164, '-32.537300', '7.616392', '412.410797', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136165', 1136165, '-64.080299', '11.043260', '430.339905', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136167', 1136167, '-5.813734', '2.975462', '373.769714', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136168', 1136168, '37.950851', '7.949909', '464.214691', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136170', 1136170, '78.733383', '6.701904', '382.834015', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158676, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136172', 1136172, '-27.413450', '-5.802525', '309.247986', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136173', 1136173, '4.164327', '-4.588222', '319.364899', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136174', 1136174, '-5.613925', '-6.047291', '306.725403', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136175', 1136175, '-60.686939', '-2.369054', '328.478394', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136177', 1136177, '-22.903839', '-5.355963', '311.696014', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136178', 1136178, '-138.536697', '-2.761930', '180.468399', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1136179', 1136179, '-156.542297', '2.639764', '135.026993', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1136180', 1136180, '-150.621796', '2.365101', '138.292496', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1136182', 1136182, '-172.930496', '-0.839293', '164.965195', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1136190', 1136190, '-288.410797', '11.764660', '-25.711500', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146696, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(234, 'e0005', 'bnpc1136191', 1136191, '-269.916901', '12.741240', '-45.975479', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139388, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136192', 1136192, '-305.683990', '11.673100', '-35.629860', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139116, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136194', 1136194, '-253.040405', '11.428960', '-3.524881', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136196', 1136196, '-216.479797', '5.813640', '85.984543', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148316, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1136197', 1136197, '-296.681213', '8.743372', '66.361427', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147772, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1136198', 1136198, '-280.833405', '6.822407', '95.059250', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148044, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1136224', 1136224, '68.558739', '11.184820', '-24.826481', 762, 0, 0, 0, 0, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119934, 2, 0, 0, 0, 0, 30122, 0, 0, 0), +(234, 'e0005', 'bnpc1136225', 1136225, '69.687866', '11.001710', '-24.643370', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118308, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(234, 'e0005', 'bnpc1136228', 1136228, '333.638397', '-4.043701', '-37.918701', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116138, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc1136229', 1136229, '349.049408', '-2.892388', '-51.221401', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116410, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc1136230', 1136230, '507.865997', '-11.795270', '4.501364', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136231', 1136231, '537.636780', '-12.274270', '-13.554320', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136232', 1136232, '536.101196', '-12.090500', '-2.388316', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136233', 1136233, '530.091492', '-12.161830', '-4.477412', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136234', 1136234, '514.392822', '-12.155740', '-30.914129', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1136235', 1136235, '594.192078', '-12.117190', '-6.794415', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1162438', 1162438, '234.721100', '4.423762', '180.467896', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1162439', 1162439, '236.722900', '4.611117', '188.587906', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1162445', 1162445, '199.757599', '6.240894', '156.164093', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130156, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1162451', 1162451, '252.094193', '0.076233', '155.870804', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126994, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1162452', 1162452, '286.884094', '0.589654', '176.855103', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127538, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1162453', 1162453, '298.563293', '-0.085100', '171.096207', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127266, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1162458', 1162458, '203.268799', '1.655764', '106.938103', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126722, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1162460', 1162460, '243.554703', '-3.339902', '84.717239', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126178, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1162461', 1162461, '279.461212', '-4.218416', '42.329281', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129884, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1162462', 1162462, '294.178589', '-5.478088', '38.284790', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129612, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1162463', 1162463, '301.736115', '-5.423965', '50.006149', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125018, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1162467', 1162467, '241.840195', '-1.764643', '99.107300', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126450, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1162469', 1162469, '274.593109', '-5.942087', '11.604580', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124746, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1162472', 1162472, '227.649307', '-3.036592', '-15.976240', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129340, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1162476', 1162476, '220.935303', '-2.975586', '-22.720699', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129068, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1162477', 1162477, '207.324203', '-4.013123', '-42.343868', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125834, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc1162479', 1162479, '154.222900', '0.015198', '7.949890', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120206, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc1162480', 1162480, '176.019806', '-4.055645', '-3.018583', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117492, 2, 0, 0, 0, 0, 30120, 0, 0, 0), +(234, 'e0005', 'bnpc1162481', 1162481, '178.942505', '-0.503601', '60.196781', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115594, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc1162482', 1162482, '181.322906', '-0.473083', '58.762451', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120478, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc1162483', 1162483, '356.642700', '-2.987466', '-35.734451', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121566, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc1162484', 1162484, '333.913086', '-4.135254', '-40.177059', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118580, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc1162486', 1162486, '111.986000', '6.118835', '-40.909481', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119124, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc1162487', 1162487, '74.814934', '10.482900', '-18.448200', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115866, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc1162490', 1162490, '-9.318063', '19.332541', '-19.108101', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120750, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc1162492', 1162492, '-20.523430', '17.990339', '11.642590', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119396, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1185226', 1185226, '256.488800', '-24.255501', '-358.053009', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68326, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186102', 1186102, '185.839600', '-21.471359', '-442.130188', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68054, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186104', 1186104, '139.593506', '-25.435749', '-371.665588', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186105', 1186105, '133.317993', '-24.199471', '-327.840088', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186106', 1186106, '85.221588', '-28.236040', '-263.782715', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186107', 1186107, '112.138496', '-30.215771', '-200.427307', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186108', 1186108, '171.129898', '-31.077660', '-212.573502', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44874, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186113', 1186113, '269.977814', '-10.584900', '-100.442299', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73786, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186119', 1186119, '301.000702', '-14.170150', '-179.921906', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186121', 1186121, '299.316498', '-13.980780', '-177.154099', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72426, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186122', 1186122, '210.285797', '-6.827882', '-189.363602', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76258, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186126', 1186126, '195.813797', '-6.409023', '-148.998001', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77074, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186127', 1186127, '198.768997', '-5.217091', '-147.382904', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76802, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186128', 1186128, '264.066498', '-11.720200', '-141.711304', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72970, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186130', 1186130, '255.084595', '-10.365080', '-135.648193', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72698, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186131', 1186131, '262.121887', '-11.356690', '-170.924500', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74880, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186134', 1186134, '257.526489', '-11.230880', '-163.622498', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75152, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186135', 1186135, '289.600891', '-14.023210', '-132.829803', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186142', 1186142, '321.177094', '-17.145399', '-141.817795', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75424, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186146', 1186146, '357.922394', '-18.371901', '-147.675705', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72154, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186157', 1186157, '339.864105', '-20.256371', '-163.073196', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75986, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186160', 1186160, '325.512207', '-18.022200', '-210.406693', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186163', 1186163, '334.967590', '-18.257030', '-188.068497', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186165', 1186165, '357.646301', '-21.037640', '-172.919998', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186166', 1186166, '355.845795', '-21.195030', '-175.910797', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186167', 1186167, '354.167297', '-20.996559', '-172.828506', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186168', 1186168, '327.501495', '-18.763630', '-170.766296', 16, 0, 0, 0, 1, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186169', 1186169, '357.691193', '-18.922649', '-152.895798', 16, 0, 0, 0, 1, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186173', 1186173, '362.066711', '-19.066210', '-226.023697', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186174', 1186174, '367.605011', '-19.394260', '-223.926193', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69736, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1186185', 1186185, '432.333801', '-18.556009', '-200.427307', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335118', 1335118, '259.814606', '-9.041327', '-75.930794', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82388, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335120', 1335120, '258.747192', '-9.339743', '-77.470100', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335121', 1335121, '271.628510', '-12.409580', '-119.495102', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335122', 1335122, '268.973389', '-11.585720', '-119.678200', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335125', 1335125, '299.467896', '-15.161890', '-151.066498', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335126', 1335126, '300.071503', '-15.260950', '-157.970398', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335127', 1335127, '305.104095', '-16.013350', '-153.873703', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80762, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335128', 1335128, '362.569489', '-19.896090', '-195.239197', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335129', 1335129, '359.914490', '-20.141609', '-198.291000', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335131', 1335131, '376.912994', '-17.746290', '-239.673492', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79940, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335132', 1335132, '378.265808', '-17.184210', '-245.818802', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79668, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335133', 1335133, '373.817291', '-17.567560', '-244.927200', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79396, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335135', 1335135, '382.244812', '-18.581270', '-213.006607', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335136', 1335136, '384.289612', '-18.812380', '-216.180496', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78852, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335137', 1335137, '365.346710', '-17.380070', '-235.889297', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78586, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335142', 1335142, '325.117188', '-17.441219', '-261.926086', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335147', 1335147, '382.083588', '-15.505330', '-274.037415', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335148', 1335148, '379.490387', '-15.238400', '-273.274506', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335150', 1335150, '393.739594', '-17.082621', '-246.185501', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335151', 1335151, '395.540100', '-17.610670', '-243.194702', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73242, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335152', 1335152, '374.262207', '-16.275169', '-255.869507', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74058, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335154', 1335154, '445.548096', '-18.953011', '-239.643005', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75714, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335155', 1335155, '410.055603', '-15.113950', '-262.409393', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335156', 1335156, '409.262085', '-14.690550', '-264.759308', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335171', 1335171, '283.910095', '-19.542110', '-281.001801', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335172', 1335172, '309.847809', '-19.112881', '-260.545685', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49406, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335179', 1335179, '308.749512', '-18.382240', '-278.268188', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335180', 1335180, '305.850189', '-18.505501', '-275.399506', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335181', 1335181, '287.464691', '-20.370840', '-267.414398', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335182', 1335182, '221.773499', '-20.304710', '-402.104889', 73, 0, 0, 0, 1, 6, 0, 0, 70, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335186', 1335186, '260.100708', '-22.595980', '-282.093597', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335187', 1335187, '257.170898', '-22.925730', '-282.856506', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335188', 1335188, '258.178009', '-22.527321', '-280.506592', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335189', 1335189, '259.124115', '-22.919470', '-284.351898', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335191', 1335191, '252.674103', '-25.158079', '-319.881500', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55650, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335245', 1335245, '264.071289', '-23.086901', '-377.431885', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335247', 1335247, '251.044693', '-24.157169', '-429.172791', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56484, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335250', 1335250, '213.636093', '-21.692980', '-416.299286', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335254', 1335254, '250.182205', '-23.049110', '-398.827515', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335255', 1335255, '235.164795', '-22.033070', '-382.140289', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51310, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335257', 1335257, '250.975601', '-23.342621', '-395.073792', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335258', 1335258, '233.840302', '-22.782070', '-408.640991', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335259', 1335259, '228.651703', '-20.932440', '-399.771088', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335260', 1335260, '285.551605', '-20.191130', '-266.194702', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335261', 1335261, '233.309006', '-22.290220', '-403.706696', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335262', 1335262, '226.586807', '-21.579840', '-408.344208', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335263', 1335263, '251.797501', '-24.329281', '-417.166504', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335265', 1335265, '239.352707', '-23.325970', '-417.493805', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335266', 1335266, '234.393204', '-23.440660', '-419.117004', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335269', 1335269, '208.094101', '-20.046240', '-400.359314', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335270', 1335270, '205.635300', '-20.583099', '-405.028595', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335271', 1335271, '214.649200', '-21.421610', '-437.417206', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335272', 1335272, '220.603699', '-19.557770', '-394.169189', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335273', 1335273, '237.537292', '-23.111750', '-434.553314', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335274', 1335274, '201.154007', '-21.053610', '-424.056702', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335275', 1335275, '199.896194', '-21.481091', '-433.825592', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64542, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335276', 1335276, '199.035995', '-21.532829', '-428.054504', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335277', 1335277, '204.574905', '-21.963341', '-430.374695', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335278', 1335278, '203.919998', '-21.381781', '-436.120514', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335279', 1335279, '158.464905', '-25.742020', '-514.580017', 78, 0, 0, 0, 0, 6, 0, 0, 75, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63864, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335280', 1335280, '156.163498', '-25.174259', '-507.993713', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335281', 1335281, '162.755295', '-25.392191', '-508.512512', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335282', 1335282, '160.374893', '-26.243521', '-521.635315', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53064, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335283', 1335283, '153.783005', '-25.787460', '-521.116516', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53880, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335284', 1335284, '164.681107', '-23.516750', '-451.796112', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335287', 1335287, '161.309204', '-24.113899', '-454.393097', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335290', 1335290, '178.249100', '-21.930130', '-465.361603', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335294', 1335294, '176.568298', '-23.836981', '-493.324188', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335295', 1335295, '175.158295', '-24.210711', '-495.597809', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335298', 1335298, '146.524597', '-23.827370', '-466.589294', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49678, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335299', 1335299, '136.972305', '-23.003241', '-490.722107', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335310', 1335310, '139.252106', '-23.121799', '-488.640411', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335313', 1335313, '169.940796', '-26.606640', '-538.220520', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335317', 1335317, '176.719406', '-26.248819', '-529.080017', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335318', 1335318, '175.681793', '-26.337879', '-531.124695', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57300, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335326', 1335326, '135.813904', '-23.796021', '-507.744904', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57572, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335327', 1335327, '143.479095', '-24.673691', '-543.979187', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56756, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335328', 1335328, '142.868698', '-24.722940', '-547.854980', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55940, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335329', 1335329, '145.279694', '-25.150471', '-548.343323', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56212, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335330', 1335330, '167.576401', '-23.605841', '-478.499115', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335331', 1335331, '172.550903', '-23.232599', '-481.184692', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335332', 1335332, '136.520096', '-23.013941', '-481.370514', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60310, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335333', 1335333, '170.445099', '-23.299061', '-477.888702', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1335344', 1335344, '163.126495', '-26.834591', '-547.864319', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347955', 1347955, '185.057404', '-22.517530', '-393.153900', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347956', 1347956, '186.735901', '-22.314060', '-389.308685', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63170, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347958', 1347958, '180.601807', '-22.849991', '-388.088013', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62904, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347959', 1347959, '182.982193', '-22.808430', '-387.447113', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347960', 1347960, '181.853104', '-22.416210', '-391.109192', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347961', 1347961, '163.818802', '-23.941280', '-382.930786', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347964', 1347964, '136.015106', '-25.067890', '-394.922394', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347965', 1347965, '135.952805', '-25.463390', '-380.858490', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347966', 1347966, '159.892807', '-23.691389', '-387.543396', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347967', 1347967, '134.539597', '-25.153410', '-393.304901', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347968', 1347968, '148.660599', '-24.933149', '-382.747192', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62082, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347969', 1347969, '149.210007', '-24.847401', '-385.554901', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347970', 1347970, '145.273102', '-24.985941', '-383.815399', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61544, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347971', 1347971, '146.677002', '-25.017750', '-386.012695', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61278, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347974', 1347974, '119.340797', '-26.901699', '-370.321198', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347976', 1347976, '110.948303', '-27.082211', '-355.214813', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44626, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347977', 1347977, '116.650902', '-26.851940', '-355.502686', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347979', 1347979, '115.985397', '-25.590910', '-330.770813', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347980', 1347980, '96.825470', '-26.731310', '-337.443909', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347981', 1347981, '94.966377', '-26.840120', '-343.493591', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347982', 1347982, '112.341904', '-27.148821', '-352.201202', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347984', 1347984, '127.403000', '-25.039721', '-339.740387', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39306, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347987', 1347987, '128.043900', '-25.102480', '-341.174805', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39578, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347990', 1347990, '103.868103', '-27.830070', '-370.201294', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30578, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347993', 1347993, '104.585403', '-27.703699', '-374.422699', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347994', 1347994, '100.785797', '-27.626970', '-369.774109', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30306, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347996', 1347996, '115.281898', '-25.507601', '-321.858612', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36296, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1347999', 1347999, '95.705887', '-27.105480', '-316.640686', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38496, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348000', 1348000, '92.348900', '-26.525320', '-318.288696', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348001', 1348001, '106.853699', '-27.461729', '-348.520905', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348002', 1348002, '106.675797', '-26.863291', '-353.933014', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43538, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348003', 1348003, '111.067200', '-27.419359', '-348.093689', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43266, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348005', 1348005, '147.925797', '-23.963091', '-316.955292', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348006', 1348006, '139.153000', '-23.312229', '-308.514313', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348007', 1348007, '138.078796', '-23.392130', '-312.001312', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348010', 1348010, '95.115891', '-27.238010', '-299.027893', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35734, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348011', 1348011, '133.297394', '-23.149731', '-303.661987', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348012', 1348012, '93.072998', '-26.876440', '-282.357300', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348013', 1348013, '90.519493', '-27.035959', '-280.262787', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42722, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348014', 1348014, '91.113632', '-26.633659', '-283.826508', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348015', 1348015, '138.584198', '-29.894171', '-214.306305', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348016', 1348016, '133.174103', '-29.752001', '-213.771896', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39034, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348018', 1348018, '125.171204', '-28.822081', '-241.728302', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348019', 1348019, '133.407806', '-29.766630', '-245.194504', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348020', 1348020, '157.760696', '-30.241409', '-209.753799', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348021', 1348021, '110.126297', '-29.295731', '-223.210403', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1348022', 1348022, '159.280807', '-29.889629', '-205.386993', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349415', 1349415, '107.675301', '-28.766970', '-247.061798', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34918, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349419', 1349419, '144.273102', '-29.321350', '-228.200500', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42166, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349420', 1349420, '141.345703', '-29.379709', '-233.926895', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41894, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349421', 1349421, '147.630997', '-28.915890', '-231.464096', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349422', 1349422, '140.337204', '-29.188551', '-230.123901', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41356, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349423', 1349423, '142.912903', '-29.360870', '-232.045303', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41090, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349426', 1349426, '117.321800', '-29.940710', '-208.257904', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349428', 1349428, '119.702202', '-29.857460', '-208.563095', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349429', 1349429, '152.550797', '-29.560490', '-240.746399', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349430', 1349430, '153.238297', '-29.591810', '-244.188797', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349434', 1349434, '153.856705', '-29.735661', '-202.044800', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36568, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(234, 'e0005', 'bnpc1349444', 1349444, '163.936996', '-29.950470', '-221.893097', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38224, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349446', 1349446, '170.162399', '-30.332001', '-205.375504', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35190, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349448', 1349448, '92.027107', '-29.617809', '-158.983795', 74, 0, 0, 0, 0, 6, 0, 0, 71, 0, '0.000000', 57, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40962, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349450', 1349450, '88.622063', '-30.374201', '-172.160995', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349453', 1349453, '79.946991', '-30.373859', '-158.627106', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28300, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349454', 1349454, '84.076393', '-30.374201', '-170.842606', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349455', 1349455, '87.641907', '-30.374201', '-169.239105', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349456', 1349456, '97.735252', '-30.373690', '-149.205994', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349457', 1349457, '92.410156', '-30.373690', '-146.716202', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349458', 1349458, '93.722427', '-30.289921', '-150.469894', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349460', 1349460, '102.193199', '-30.374161', '-167.326401', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349462', 1349462, '104.695702', '-30.374050', '-164.732300', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27756, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349463', 1349463, '108.756897', '-30.549700', '-139.678604', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349466', 1349466, '70.533546', '-30.081551', '-177.695999', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349469', 1349469, '67.079147', '-29.548901', '-153.771606', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349471', 1349471, '66.987991', '-29.454809', '-150.085007', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36840, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349475', 1349475, '100.944000', '-30.141479', '-182.035095', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349476', 1349476, '103.423500', '-30.255220', '-183.818893', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc1349477', 1349477, '117.287300', '-30.394251', '-176.134903', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313925', 2313925, '-482.564789', '6.955613', '61.610111', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313933', 2313933, '-429.003693', '2.320748', '236.438400', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313934', 2313934, '-409.316101', '1.057956', '244.817902', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313935', 2313935, '-442.272491', '2.403773', '206.166901', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313937', 2313937, '-428.366699', '7.934575', '277.541107', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313938', 2313938, '-418.558289', '9.127686', '293.699799', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313939', 2313939, '-424.849213', '10.891960', '297.223694', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313940', 2313940, '-380.392212', '6.912290', '296.833710', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313942', 2313942, '-357.351105', '2.181993', '273.792603', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313943', 2313943, '-347.798889', '4.318256', '294.331207', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313944', 2313944, '-351.491608', '4.226702', '289.814514', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313946', 2313946, '-350.392914', '9.353733', '319.966400', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313948', 2313948, '-347.768402', '-0.140188', '238.560394', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313949', 2313949, '-334.432007', '0.900235', '197.100693', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313952', 2313952, '-512.518005', '10.681730', '106.017303', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313954', 2313954, '-466.272797', '4.568396', '120.049896', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313955', 2313955, '-503.845398', '11.240590', '124.209396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313959', 2313959, '-429.545593', '1.312407', '120.378799', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313963', 2313963, '-417.238586', '0.076732', '65.064568', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313964', 2313964, '-397.897705', '-0.211857', '75.408188', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313967', 2313967, '-395.162506', '-0.289825', '72.009888', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313971', 2313971, '-435.869385', '1.346877', '216.851196', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313974', 2313974, '-381.439911', '-0.122663', '184.500702', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313980', 2313980, '-464.159210', '9.409202', '251.654099', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313982', 2313982, '-452.844788', '11.917580', '265.924805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313984', 2313984, '-436.512909', '7.460858', '266.224792', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313985', 2313985, '-410.069000', '6.296681', '281.448486', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313988', 2313988, '-425.559387', '12.804490', '309.608093', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313989', 2313989, '-371.467285', '4.569370', '282.813202', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313991', 2313991, '-342.802002', '1.347080', '267.457001', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313993', 2313993, '-365.310303', '-0.244142', '207.010696', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2313994', 2313994, '-370.665497', '1.130038', '238.255402', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314003', 2314003, '-253.246994', '-4.236800', '221.935196', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314004', 2314004, '-227.049805', '-5.537235', '202.864395', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314005', 2314005, '-197.435196', '-7.994266', '221.269196', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314006', 2314006, '-200.220596', '-8.231664', '224.271805', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314009', 2314009, '-125.018700', '-7.681337', '231.549805', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176048, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314010', 2314010, '-129.776001', '-7.944516', '225.414200', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175776, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314034', 2314034, '-112.974503', '2.718925', '356.892609', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164364, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc2314035', 2314035, '-118.974602', '1.573215', '349.996094', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164092, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc2314041', 2314041, '-43.174789', '-3.827868', '319.130188', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314043', 2314043, '-31.562269', '-4.485572', '194.662094', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157322, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc2314047', 2314047, '-33.348999', '-6.685591', '211.045303', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157050, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc2314048', 2314048, '-54.297371', '-4.774252', '197.991501', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157594, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc2314070', 2314070, '-59.919048', '11.628480', '435.431305', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314088', 2314088, '-35.123161', '16.027519', '447.688507', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314102', 2314102, '-45.542999', '11.092310', '429.655396', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314107', 2314107, '-24.940210', '7.788889', '415.915497', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314112', 2314112, '2.340681', '1.029590', '360.915588', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314133', 2314133, '-1.470222', '0.327971', '355.323486', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314135', 2314135, '-2.340280', '16.406719', '467.504791', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173600, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314136', 2314136, '1.744962', '15.965160', '463.338013', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173328, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314137', 2314137, '67.368530', '7.949890', '446.280609', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173056, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314138', 2314138, '46.122662', '7.817679', '439.927185', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172784, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314139', 2314139, '108.354301', '9.109589', '407.461609', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159220, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314140', 2314140, '104.234299', '8.804408', '412.466614', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159764, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314141', 2314141, '123.021004', '12.317820', '423.590515', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159492, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314142', 2314142, '109.849602', '10.971190', '457.846893', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158948, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314144', 2314144, '68.332771', '7.866884', '474.070587', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314145', 2314145, '42.399090', '7.746444', '460.622803', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314146', 2314146, '97.762482', '7.782855', '392.593201', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314147', 2314147, '82.413742', '7.833769', '430.187286', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314148', 2314148, '4.571571', '14.724090', '481.634888', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314149', 2314149, '115.912598', '11.103390', '432.906311', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314150', 2314150, '2.013238', '9.902340', '432.648193', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314151', 2314151, '-58.361721', '5.610658', '400.360504', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314152', 2314152, '-85.923592', '7.095398', '408.499207', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314153', 2314153, '-89.646797', '6.881772', '406.576599', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314154', 2314154, '-6.062557', '1.064418', '360.585297', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314155', 2314155, '5.446085', '-3.557740', '326.017792', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314156', 2314156, '4.316917', '-3.595564', '325.071686', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314157', 2314157, '-28.881241', '-5.070975', '313.819092', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314159', 2314159, '-46.860470', '-8.011047', '221.606705', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314160', 2314160, '-69.568810', '-5.347832', '198.726303', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314161', 2314161, '-58.732021', '-3.341773', '321.766907', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314163', 2314163, '-122.044701', '1.863278', '351.901215', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314164', 2314164, '-134.686493', '5.714658', '377.345215', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314165', 2314165, '-91.805458', '-7.624840', '295.133911', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314166', 2314166, '-113.416000', '-7.987957', '278.087799', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314173', 2314173, '-122.484200', '-7.126010', '289.814514', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314174', 2314174, '-230.604599', '-5.478079', '208.442703', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314175', 2314175, '-207.367706', '-5.861229', '204.890305', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314177', 2314177, '-255.068893', '-4.175101', '226.840500', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314180', 2314180, '-330.692505', '7.278777', '313.762604', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314181', 2314181, '-317.594910', '9.477072', '339.549591', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314192', 2314192, '-345.082794', '6.485037', '63.248600', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147228, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc2314196', 2314196, '-237.055405', '3.071132', '110.837601', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148588, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc2314197', 2314197, '-241.022705', '2.939748', '114.865997', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147500, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc2314228', 2314228, '-134.111603', '-2.151569', '175.158295', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc2314253', 2314253, '-336.507202', '6.607109', '55.985298', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314258', 2314258, '-287.312195', '8.499228', '64.072594', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314261', 2314261, '-285.236908', '7.675241', '65.262787', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314262', 2314262, '-249.378204', '7.888867', '63.401192', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314265', 2314265, '-295.246887', '5.966230', '120.439400', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314267', 2314267, '-244.488403', '4.113512', '102.499100', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314270', 2314270, '-200.428696', '4.427309', '103.759300', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314275', 2314275, '-199.511703', '13.382110', '47.836979', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314276', 2314276, '-226.188293', '11.478340', '8.346189', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148860, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc2314280', 2314280, '-188.377304', '27.717520', '-44.157928', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314286', 2314286, '-183.089706', '31.517771', '-61.713600', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314288', 2314288, '-189.410294', '46.463669', '-104.997398', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314290', 2314290, '-191.485504', '47.196110', '-107.194702', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314302', 2314302, '-182.177505', '1.937849', '136.217194', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314304', 2314304, '-186.236404', '2.212511', '133.592697', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314305', 2314305, '-141.374893', '-2.090533', '175.005707', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314308', 2314308, '-187.396103', '-1.052920', '170.153305', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314309', 2314309, '-129.839096', '0.320392', '156.450699', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314314', 2314314, '-186.266907', '-0.961365', '166.521698', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314362', 2314362, '-5.424891', '19.709511', '-18.332621', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 116682, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc2314363', 2314363, '-6.294857', '20.221451', '15.311720', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121022, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc2314364', 2314364, '80.094597', '9.658875', '14.206050', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117764, 2, 0, 0, 0, 0, 30124, 0, 0, 0), +(234, 'e0005', 'bnpc2314365', 2314365, '111.406097', '6.393494', '-42.557430', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116954, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc2314366', 2314366, '113.664398', '5.874695', '-41.245178', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119662, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc2314369', 2314369, '176.512604', '-4.252202', '-4.205355', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118036, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(234, 'e0005', 'bnpc2314398', 2314398, '350.148193', '-2.774287', '-52.136921', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117226, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(234, 'e0005', 'bnpc2314451', 2314451, '-12.582740', '19.341261', '-16.372990', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314457', 2314457, '-8.483642', '19.834230', '12.296340', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314458', 2314458, '60.166260', '13.473630', '9.872559', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314460', 2314460, '90.726227', '9.726084', '-48.813629', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314462', 2314462, '184.311996', '-2.061695', '22.900990', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314464', 2314464, '212.298294', '-3.300554', '68.344177', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314465', 2314465, '254.499100', '-0.309484', '161.274002', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314466', 2314466, '216.507706', '0.515230', '114.319603', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314610', 2314610, '306.118286', '-6.238892', '11.614130', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314612', 2314612, '236.715302', '-5.231476', '-56.311989', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314613', 2314613, '213.666504', '-2.576396', '-14.211420', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314617', 2314617, '332.661499', '-4.732603', '-51.060032', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314621', 2314621, '364.126007', '-2.822966', '-30.502831', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314623', 2314623, '361.654114', '-2.670410', '-53.025211', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314626', 2314626, '519.135681', '-12.154410', '-35.360329', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314632', 2314632, '562.935120', '-12.088730', '-2.092934', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314634', 2314634, '546.164124', '-11.988440', '-64.370163', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314640', 2314640, '622.314026', '-13.134470', '-6.901284', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314642', 2314642, '619.809082', '-12.711930', '-6.546345', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2314715', 2314715, '570.641479', '-12.100450', '-40.116009', 63, 0, 0, 0, 1, 6, 0, 0, 60, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133220, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(234, 'e0005', 'bnpc2314717', 2314717, '566.063782', '-11.947860', '-47.776039', 64, 0, 0, 0, 0, 6, 0, 0, 61, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132954, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(234, 'e0005', 'bnpc2314726', 2314726, '556.389587', '-12.008900', '-42.404869', 55, 0, 0, 0, 1, 6, 0, 0, 53, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132688, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2319905', 2319905, '133.538803', '-23.850300', '-524.211304', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2319906', 2319906, '135.644501', '-24.169041', '-527.507324', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2319916', 2319916, '176.574203', '-26.295950', '-563.569885', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2319917', 2319917, '177.984299', '-26.445820', '-561.296326', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2319918', 2319918, '128.970001', '-22.921940', '-557.568481', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2320483', 2320483, '376.638397', '-2.304138', '-39.993961', 61, 0, 0, 0, 1, 6, 0, 0, 58, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128886, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(234, 'e0005', 'bnpc2320484', 2320484, '381.979004', '-2.517761', '-36.209721', 62, 0, 0, 0, 0, 6, 0, 0, 59, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128620, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(234, 'e0005', 'bnpc2320487', 2320487, '378.164307', '-2.273621', '-37.033691', 55, 0, 0, 0, 1, 6, 0, 0, 53, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2320488', 2320488, '413.927094', '-11.864880', '-0.202001', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2320489', 2320489, '450.408203', '-11.066550', '-6.123241', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127708, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2341765', 2341765, '66.095573', '7.840286', '477.260101', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2341766', 2341766, '43.036430', '7.860031', '467.247192', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2341767', 2341767, '24.573021', '9.672716', '473.677795', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2350399', 2350399, '-284.382385', '11.856210', '-27.054291', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146424, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2350400', 2350400, '-260.730988', '11.703620', '-32.242359', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146152, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2350401', 2350401, '-287.373199', '11.490000', '-7.705853', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139660, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2350402', 2350402, '-285.664215', '12.558130', '-52.719971', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145880, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc2350715', 2350715, '350.270203', '-2.804400', '-50.397419', 762, 0, 0, 0, 0, 6, 0, 0, 64, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121294, 2, 0, 0, 0, 0, 30120, 0, 0, 0), +(234, 'e0005', 'bnpc2350717', 2350717, '364.079590', '-4.248232', '-7.079392', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118852, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc2499386', 2499386, '-228.497696', '12.354860', '2.668262', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3694733', 3694733, '-401.218414', '11.367920', '318.654388', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186570, 5, 0, 0, 0, 0, 30059, 0, 0, 0), +(234, 'e0005', 'bnpc3694734', 3694734, '-406.210388', '11.893380', '317.922485', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186298, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc3694735', 3694735, '-390.079987', '10.675150', '320.996399', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186026, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc3694736', 3694736, '-405.569611', '9.872559', '309.346100', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185754, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc3694737', 3694737, '-399.718811', '10.832540', '315.967102', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185482, 5, 0, 0, 0, 0, 30059, 0, 0, 0), +(234, 'e0005', 'bnpc3694738', 3694738, '-398.236786', '11.123780', '318.544708', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185210, 5, 0, 0, 0, 0, 30060, 0, 0, 0), +(234, 'e0005', 'bnpc3694900', 3694900, '-355.928314', '-0.308188', '209.458206', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3694901', 3694901, '-358.039886', '-0.389206', '203.009705', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3694902', 3694902, '-359.232910', '-0.298962', '198.263794', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3694903', 3694903, '-364.384613', '-0.113241', '212.442200', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3694904', 3694904, '-376.390198', '-0.538467', '203.341293', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3694905', 3694905, '-364.056610', '-0.145500', '194.541702', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3694906', 3694906, '-378.323914', '-0.373772', '200.093002', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3694907', 3694907, '-368.149506', '-0.318695', '203.149994', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3694908', 3694908, '-401.144989', '0.532858', '100.339798', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184400, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3694909', 3694909, '-394.740112', '-0.280364', '154.306000', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184128, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3694910', 3694910, '-391.653412', '-0.503595', '210.406601', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184672, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3695051', 3695051, '-419.371887', '0.232080', '192.587006', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183856, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3695053', 3695053, '-421.990997', '0.316387', '76.746277', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184944, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3696616', 3696616, '-96.760498', '3.493882', '366.300812', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163276, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3696617', 3696617, '-93.824730', '3.873965', '372.828613', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163004, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3696618', 3696618, '-127.003799', '2.972143', '361.243103', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3696619', 3696619, '-133.940903', '6.157478', '379.316498', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3696870', 3696870, '-90.013023', '12.924340', '438.193298', 311, 0, 0, 0, 1, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162194, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3696872', 3696872, '-97.337341', '11.276370', '431.967590', 311, 0, 0, 0, 1, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161922, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(234, 'e0005', 'bnpc3696873', 3696873, '-91.318466', '10.895230', '429.915894', 311, 0, 0, 0, 0, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161650, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(234, 'e0005', 'bnpc3696876', 3696876, '-81.651070', '11.886730', '434.470093', 79, 0, 0, 0, 1, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(234, 'e0005', 'bnpc3696877', 3696877, '-91.226921', '11.092580', '430.953491', 79, 0, 0, 0, 0, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161112, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(234, 'e0005', 'bnpc3696878', 3696878, '-87.327423', '11.154300', '431.082611', 79, 0, 0, 0, 0, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160840, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(234, 'e0005', 'bnpc3696879', 3696879, '-90.402939', '11.068160', '430.739899', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160574, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(234, 'e0005', 'bnpc3697774', 3697774, '-88.120903', '11.001710', '430.441711', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160302, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(234, 'e0005', 'bnpc3697775', 3697775, '-88.426071', '11.490000', '427.695099', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160030, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(234, 'e0005', 'bnpc3697778', 3697778, '92.364197', '7.706964', '389.248596', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3697779', 3697779, '108.716797', '9.727629', '431.794403', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3697780', 3697780, '80.686493', '7.961041', '421.256897', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157860, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3698022', 3698022, '-75.550377', '-5.582465', '200.264694', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156778, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3698023', 3698023, '-38.882149', '-4.081942', '191.941605', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156506, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3698921', 3698921, '-37.577309', '-8.258268', '242.908295', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156234, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3700086', 3700086, '-37.311859', '-8.389291', '259.427307', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155962, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3701093', 3701093, '-28.851320', '-7.961150', '249.751205', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155690, 1, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(234, 'e0005', 'bnpc3726783', 3726783, '-306.845306', '7.615899', '107.505699', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145342, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3726785', 3726785, '-258.686188', '7.797313', '66.056259', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145070, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3726788', 3726788, '-219.973602', '2.520791', '114.552399', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144798, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3726789', 3726789, '-199.571198', '6.403381', '88.836418', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144526, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3727336', 3727336, '-233.240204', '11.494870', '34.787762', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144254, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3727339', 3727339, '-197.756302', '14.999770', '41.853489', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143982, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3727712', 3727712, '-313.497192', '11.569130', '-31.583179', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3727713', 3727713, '-314.589386', '11.902390', '-35.298470', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3727714', 3727714, '-306.619385', '11.253370', '-13.814930', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3727715', 3727715, '-278.890808', '12.580250', '-40.299412', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3727717', 3727717, '-267.242004', '11.943940', '-40.949741', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3727718', 3727718, '-273.701111', '11.886720', '-21.286381', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc3727732', 3727732, '-134.691406', '15.243710', '-3.646973', 70, 0, 0, 0, 0, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142090, 1, 0, 0, 0, 17, 30120, 0, 0, 0), +(234, 'e0005', 'bnpc3727734', 3727734, '-137.071793', '14.908020', '-3.555420', 71, 0, 0, 0, 1, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141824, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc3727735', 3727735, '-134.325195', '15.182740', '-2.365173', 72, 0, 0, 0, 0, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141558, 1, 0, 0, 0, 17, 30119, 0, 0, 0), +(234, 'e0005', 'bnpc3727738', 3727738, '-101.701401', '19.180540', '10.727050', 70, 0, 0, 0, 1, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141274, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc3727739', 3727739, '-69.779541', '17.349430', '6.759644', 71, 0, 0, 0, 0, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141008, 1, 0, 0, 0, 17, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc3727740', 3727740, '-74.509888', '17.685120', '8.499207', 72, 0, 0, 0, 1, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140742, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc3727743', 3727743, '-106.065498', '18.173450', '14.633350', 71, 0, 0, 0, 0, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140464, 1, 0, 0, 0, 17, 30121, 0, 0, 0), +(234, 'e0005', 'bnpc3727744', 3727744, '-104.844803', '18.509150', '14.328170', 72, 0, 0, 0, 0, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140198, 1, 0, 0, 0, 17, 30120, 0, 0, 0), +(234, 'e0005', 'bnpc3727745', 3727745, '-105.729797', '18.387070', '12.954860', 70, 0, 0, 0, 0, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139914, 1, 0, 0, 0, 17, 30119, 0, 0, 0), +(234, 'e0005', 'bnpc3727746', 3727746, '246.108398', '-4.984168', '-31.182381', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125562, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3727747', 3727747, '221.653900', '-5.011750', '-51.817490', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125290, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3729074', 3729074, '76.092232', '11.110100', '-47.602612', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124552, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3729746', 3729746, '86.654007', '8.922870', '-28.246519', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124280, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3729747', 3729747, '108.261803', '6.031532', '-26.458651', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124008, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3729748', 3729748, '115.837196', '4.964785', '13.643280', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123736, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3729749', 3729749, '71.684547', '11.649810', '-44.096661', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123464, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc3741023', 3741023, '381.093994', '-2.365173', '-37.277828', 55, 0, 0, 0, 0, 6, 0, 0, 53, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123168, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(234, 'e0005', 'bnpc3741027', 3741027, '379.934296', '-2.304138', '-35.904541', 62, 0, 0, 0, 0, 6, 0, 0, 59, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122908, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(234, 'e0005', 'bnpc3741028', 3741028, '378.072815', '-2.426208', '-33.066349', 61, 0, 0, 0, 1, 6, 0, 0, 58, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122630, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(234, 'e0005', 'bnpc3741029', 3741029, '565.056824', '-11.978380', '-48.966251', 55, 0, 0, 0, 0, 6, 0, 0, 53, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122352, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(234, 'e0005', 'bnpc3741030', 3741030, '546.837524', '-12.436150', '-46.677391', 64, 0, 0, 0, 1, 6, 0, 0, 61, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122074, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(234, 'e0005', 'bnpc3741031', 3741031, '549.614624', '-12.436150', '-49.210388', 63, 0, 0, 0, 1, 6, 0, 0, 60, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121796, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(234, 'e0005', 'bnpc3870165', 3870165, '-530.557922', '11.925130', '70.277603', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22788, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(234, 'e0005', 'bnpc3870175', 3870175, '-197.120804', '-1.760828', '261.203003', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22522, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(234, 'e0005', 'bnpc3870206', 3870206, '-273.557404', '0.846183', '289.320587', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22244, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(234, 'e0005', 'bnpc4317800', 4317800, '498.771515', '-17.898861', '-313.954407', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110750, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317801', 4317801, '451.322998', '-15.501170', '-279.865692', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110484, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc4317802', 4317802, '514.823975', '-20.341690', '-358.783813', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 110218, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc4317803', 4317803, '260.486694', '-11.080910', '-154.824493', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109958, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4317804', 4317804, '357.625610', '-18.265079', '-146.196701', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109686, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4317805', 4317805, '327.286591', '-17.372709', '-188.968796', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109414, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4317817', 4317817, '294.575806', '-12.980530', '-180.587906', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109142, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4317818', 4317818, '388.959412', '-18.823000', '-212.157593', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108876, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4317819', 4317819, '314.365814', '-18.527800', '-289.215912', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108604, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4317820', 4317820, '329.818115', '-17.597429', '-223.296097', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108332, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4317821', 4317821, '370.788086', '-17.580059', '-245.788101', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108060, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4317822', 4317822, '291.974792', '-19.793560', '-289.794800', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107788, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4317826', 4317826, '253.924606', '-23.493771', '-397.838715', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107522, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4317827', 4317827, '253.467499', '-24.551821', '-431.753998', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107250, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4317829', 4317829, '213.044601', '-20.737579', '-407.032990', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106978, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4317830', 4317830, '215.188202', '-20.979630', '-409.962799', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106706, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4317832', 4317832, '145.520706', '-23.570749', '-477.912994', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106314, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4317833', 4317833, '133.494904', '-23.758650', '-547.963074', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106042, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4317834', 4317834, '173.863693', '-25.574671', '-517.082520', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105770, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4317836', 4317836, '-10.175820', '-35.238060', '-550.143311', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105498, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4317838', 4317838, '-52.048519', '-35.202579', '-528.496216', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105226, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4317839', 4317839, '186.907700', '-23.727840', '-376.882599', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105074, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4317840', 4317840, '126.817703', '-25.925110', '-347.127502', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104808, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4317842', 4317842, '115.994499', '-26.717680', '-354.423096', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104536, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4317844', 4317844, '88.409050', '-26.293819', '-339.833893', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104264, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4317849', 4317849, '137.315903', '-23.270020', '-304.951599', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103992, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4317852', 4317852, '155.825104', '-29.775539', '-226.307693', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103564, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4317853', 4317853, '113.237198', '-29.434690', '-221.118500', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103292, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4317854', 4317854, '146.903900', '-29.527519', '-215.189804', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103020, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4317855', 4317855, '129.991104', '-29.535959', '-245.124496', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102748, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4317863', 4317863, '207.402206', '-6.915606', '-189.063599', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102596, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317864', 4317864, '351.494507', '-15.727020', '-259.491211', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 102330, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc4317873', 4317873, '284.544312', '-19.539360', '-291.495911', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 102046, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc4317874', 4317874, '368.856201', '-20.248779', '-184.771500', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101780, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(234, 'e0005', 'bnpc4317875', 4317875, '368.581512', '-20.218201', '-183.856003', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101514, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(234, 'e0005', 'bnpc4317885', 4317885, '366.659302', '-17.544319', '-237.723404', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101236, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317886', 4317886, '443.139709', '-18.693390', '-238.559097', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100970, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317887', 4317887, '249.626694', '-24.511021', '-435.444397', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 100698, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc4317891', 4317891, '131.792099', '-25.070620', '-394.277893', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100420, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317893', 4317893, '112.708099', '-30.261940', '-194.688599', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100154, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc4317894', 4317894, '193.408096', '-31.479370', '-219.684097', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99870, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc4317897', 4317897, '129.072906', '-22.173210', '-564.551880', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 99604, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc4317899', 4317899, '253.498001', '-23.239559', '-517.052002', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99338, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317900', 4317900, '165.575607', '-26.840639', '-542.717712', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99060, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(234, 'e0005', 'bnpc4317901', 4317901, '166.460602', '-26.871220', '-543.541626', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98782, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(234, 'e0005', 'bnpc4317902', 4317902, '156.908401', '-24.429689', '-455.588593', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98522, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc4317903', 4317903, '-37.241699', '-35.085869', '-537.987976', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98250, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317904', 4317904, '-33.412891', '-35.156620', '-549.607971', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97972, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317905', 4317905, '-27.481510', '-34.836430', '-541.802124', 762, 0, 0, 0, 1, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97694, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317909', 4317909, '143.718704', '-29.336210', '-230.073807', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97434, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317911', 4317911, '119.399300', '-26.408409', '-346.557190', 762, 0, 0, 0, 1, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97150, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317912', 4317912, '139.559601', '-29.771700', '-244.522903', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 96884, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc4317916', 4317916, '565.405212', '-22.088120', '-350.810913', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96606, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc4317917', 4317917, '558.970886', '-22.530359', '-353.985687', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96346, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317918', 4317918, '561.280518', '-22.530359', '-344.947998', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96068, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317920', 4317920, '553.652527', '-24.130871', '-379.476715', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95790, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(234, 'e0005', 'bnpc4317921', 4317921, '528.888000', '-24.002501', '-316.121185', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95530, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317922', 4317922, '552.422424', '-24.124571', '-379.629211', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95252, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(234, 'e0005', 'bnpc4317923', 4317923, '516.716187', '-20.340330', '-366.170807', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94986, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317924', 4317924, '544.539673', '-24.024820', '-352.536011', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94702, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317925', 4317925, '573.032776', '-24.048040', '-372.673492', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94436, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317927', 4317927, '408.712799', '-28.427610', '-401.419098', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94164, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317930', 4317930, '335.927399', '-28.671749', '-421.042206', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93886, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(234, 'e0005', 'bnpc4317931', 4317931, '335.683105', '-28.763309', '-419.913086', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93620, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(234, 'e0005', 'bnpc4317932', 4317932, '349.965607', '-28.000311', '-412.710785', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93354, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317933', 4317933, '339.902313', '-28.306200', '-487.054108', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93070, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317934', 4317934, '370.887909', '-34.493279', '-462.935608', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 92804, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc4317935', 4317935, '351.582886', '-28.032480', '-484.519714', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92538, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317936', 4317936, '425.497803', '-28.366579', '-482.505615', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92254, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317937', 4317937, '424.521210', '-27.908751', '-463.431793', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91988, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317938', 4317938, '358.322601', '-28.245850', '-509.974213', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91722, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc4317939', 4317939, '388.815186', '-34.042912', '-418.204010', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91438, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317940', 4317940, '413.626190', '-34.042912', '-447.318207', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91172, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317943', 4317943, '383.576294', '-27.500000', '-515.033020', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90906, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(234, 'e0005', 'bnpc4317944', 4317944, '403.162109', '-27.877609', '-499.533905', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 90628, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc4317945', 4317945, '384.859497', '-27.500000', '-514.937012', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90350, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(234, 'e0005', 'bnpc4317946', 4317946, '391.422485', '-17.924709', '-377.696991', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90090, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4317948', 4317948, '450.847504', '-28.334009', '-441.002411', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89806, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4516039', 4516039, '201.957901', '-6.015132', '-140.727798', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89558, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4516054', 4516054, '302.846893', '-13.662720', '-70.995468', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89286, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4516060', 4516060, '90.040314', '-26.979679', '-315.730499', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89032, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4516061', 4516061, '118.730499', '-25.303860', '-328.093414', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88760, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4516069', 4516069, '76.916473', '-30.135340', '-176.278107', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88332, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4516071', 4516071, '109.801003', '-30.350300', '-144.088104', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88060, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4516076', 4516076, '178.212997', '-26.243820', '-569.578918', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87818, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4526138', 4526138, '207.189499', '-4.405000', '-55.771381', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4526153', 4526153, '101.728302', '6.775696', '-29.255630', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4526159', 4526159, '-5.661133', '19.302610', '-20.096189', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 114784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4526163', 4526163, '295.063599', '0.717163', '180.926102', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4526170', 4526170, '243.762802', '-2.334717', '93.644531', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4526175', 4526175, '514.976685', '-20.248779', '-360.982697', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4526185', 4526185, '349.873993', '-15.610050', '-260.578400', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4526186', 4526186, '405.020111', '-28.000311', '-500.633209', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4526187', 4526187, '370.778900', '-34.470150', '-460.959808', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4526188', 4526188, '286.335602', '-19.760500', '-293.202087', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4526189', 4526189, '126.848099', '-22.110350', '-563.561523', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4526190', 4526190, '138.658707', '-23.403219', '-470.115204', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4526191', 4526191, '252.338394', '-24.643370', '-435.141510', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85780, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4526192', 4526192, '119.127197', '-25.162230', '-324.086395', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4526193', 4526193, '137.078705', '-29.800461', '-246.062698', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4526240', 4526240, '214.825394', '-19.554331', '-398.094788', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84946, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4553457', 4553457, '345.774902', '-15.417000', '-261.117798', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84668, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4553459', 4553459, '361.297913', '-25.751591', '-438.400085', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84378, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4553469', 4553469, '139.198593', '-23.542650', '-467.790009', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84094, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc4588198', 4588198, '119.859596', '-21.530519', '-297.352600', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83828, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4588199', 4588199, '116.324303', '-25.430050', '-324.881592', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83550, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(234, 'e0005', 'bnpc4588205', 4588205, '443.598206', '-24.245310', '-392.653687', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83278, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4592960', 4592960, '291.767700', '-13.992610', '-129.503403', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83006, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(234, 'e0005', 'bnpc4618294', 4618294, '99.668091', '8.096478', '-41.502491', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4618295', 4618295, '114.137100', '6.064597', '-18.577110', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4618296', 4618296, '119.902702', '5.962872', '-52.469212', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4618297', 4618297, '273.146088', '-0.359490', '138.990295', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113122, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4618298', 4618298, '194.044495', '3.506398', '122.434998', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112850, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4618299', 4618299, '301.813202', '-6.703927', '30.420111', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112506, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4618300', 4618300, '344.534210', '-4.776098', '-14.875460', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112234, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(234, 'e0005', 'bnpc4618301', 4618301, '198.657104', '2.212463', '118.242104', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112064, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4618302', 4618302, '280.378998', '-4.542100', '48.923759', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111792, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4618303', 4618303, '221.648804', '-2.880372', '-13.690810', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111520, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4621091', 4621091, '-46.489208', '15.602010', '3.201886', 2771, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23396, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(234, 'e0005', 'bnpc4621093', 4621093, '622.978821', '-12.883850', '-12.418940', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23130, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1139214', 1139214, '-268.574097', '7.064880', '631.738708', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1139231', 1139231, '-15.879850', '-0.100045', '376.413208', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1139247', 1139247, '-122.621803', '1.180372', '288.650391', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1139253', 1139253, '-116.636803', '1.401093', '293.862488', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1139295', 1139295, '-239.337799', '0.869717', '266.651306', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1139296', 1139296, '-242.175995', '0.625573', '262.958710', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1139314', 1139314, '-234.854004', '-0.100137', '305.762085', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1139319', 1139319, '-284.558105', '1.846295', '342.205505', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1139327', 1139327, '-178.824295', '0.141551', '253.664703', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160176, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1139344', 1139344, '-179.793198', '0.669785', '323.976196', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159904, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1139407', 1139407, '-279.011292', '6.027267', '564.782104', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159632, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1139408', 1139408, '-254.932495', '6.759699', '578.911987', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159360, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1139409', 1139409, '-258.136902', '7.827831', '603.051819', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159088, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1139410', 1139410, '-257.221405', '6.637627', '578.881470', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1139423', 1139423, '-276.386688', '5.966230', '538.170288', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158544, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1139425', 1139425, '-266.529388', '5.020171', '542.473389', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1139430', 1139430, '-220.569199', '3.982558', '556.969482', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158000, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1140323', 1140323, '48.412201', '22.379660', '245.108307', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124060, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140341', 1140341, '148.210800', '18.142929', '63.034969', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134118, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140355', 1140355, '-167.689697', '4.657228', '188.189499', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1140356', 1140356, '-140.886597', '6.118821', '203.173798', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1140376', 1140376, '-173.095795', '7.162746', '110.695396', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119830, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140378', 1140378, '-169.298904', '4.379292', '134.294601', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119558, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140379', 1140379, '-176.483307', '6.579963', '113.899696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119286, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140393', 1140393, '-213.883896', '11.384410', '78.615593', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119014, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140405', 1140405, '-204.099792', '10.836050', '82.086967', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118742, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140418', 1140418, '-170.832901', '8.611761', '46.359402', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118470, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140419', 1140419, '-163.073196', '7.441800', '53.057159', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118198, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140420', 1140420, '-208.158096', '10.773990', '72.948898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117926, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140429', 1140429, '-210.742401', '9.567359', '0.839199', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117654, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140430', 1140430, '-217.212204', '9.475805', '3.250124', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117382, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140459', 1140459, '-87.514954', '0.030696', '53.398781', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97846, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140460', 1140460, '-83.185509', '0.030617', '55.136490', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98118, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140461', 1140461, '-100.175499', '1.815776', '55.405460', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97302, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140462', 1140462, '-87.013252', '0.030600', '71.372276', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97574, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140539', 1140539, '-119.476097', '5.647681', '112.526497', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117110, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140540', 1140540, '-126.604202', '5.923794', '94.623161', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116838, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140541', 1140541, '-126.329498', '5.844177', '109.056198', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116566, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140980', 1140980, '-313.130402', '25.345190', '-208.453506', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116294, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140981', 1140981, '-326.970612', '26.883949', '-216.976898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116022, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140982', 1140982, '-329.696594', '21.078899', '-165.243500', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115750, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140983', 1140983, '-338.267395', '24.724110', '-191.433197', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115478, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1140984', 1140984, '-323.896515', '19.876869', '-162.956696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115206, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1144407', 1144407, '-272.144714', '17.696960', '57.133450', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105716, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1144408', 1144408, '-257.479095', '14.942520', '80.117462', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1144457', 1144457, '-241.510406', '16.161341', '12.992840', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105444, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1144491', 1144491, '-78.316467', '3.566922', '-36.424759', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106260, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1144547', 1144547, '-106.571297', '7.155371', '-106.524399', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1144577', 1144577, '-127.875000', '6.779816', '-22.488760', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105172, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1144585', 1144585, '-91.407356', '7.599404', '-74.910507', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104900, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1144597', 1144597, '-58.182690', '6.881772', '-97.795113', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1144598', 1144598, '-132.427704', '9.336102', '-104.286499', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1144629', 1144629, '-152.086700', '11.093260', '-140.581406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1144631', 1144631, '-151.639099', '11.652820', '-128.275406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1144632', 1144632, '-167.772995', '9.292697', '-129.167694', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1144653', 1144653, '-78.954659', '4.479653', '-126.207397', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100016, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(235, 'e0006', 'bnpc1144691', 1144691, '-129.860199', '13.845340', '-129.543701', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1144692', 1144692, '-205.706894', '9.018035', '-138.750305', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1144694', 1144694, '-208.087296', '9.353733', '-141.039200', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1144747', 1144747, '2.112435', '6.781407', '-26.549141', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107620, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1144748', 1144748, '17.348650', '6.534479', '-18.517111', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107892, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1144786', 1144786, '30.609501', '4.094535', '43.754768', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108164, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1144790', 1144790, '42.343739', '4.165666', '68.558739', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1144793', 1144793, '142.320801', '4.196184', '25.833481', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1144799', 1144799, '40.001209', '4.166452', '71.521370', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1144800', 1144800, '70.561348', '4.166210', '66.426353', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145309', 1145309, '99.839729', '6.729181', '-55.405548', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93954, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145310', 1145310, '104.112297', '7.125916', '-59.922218', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93682, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145311', 1145311, '111.009300', '12.405540', '-76.890251', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93410, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145312', 1145312, '53.134991', '10.581870', '-71.978127', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93138, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145330', 1145330, '33.785549', '7.920002', '-96.910088', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92866, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145331', 1145331, '30.485310', '6.219395', '-100.848801', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92594, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145342', 1145342, '7.202258', '5.720373', '-72.371872', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92322, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145343', 1145343, '0.456908', '5.833508', '-87.359497', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92050, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145344', 1145344, '9.624027', '5.417103', '-76.025612', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91778, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145371', 1145371, '323.490204', '5.164718', '-43.671810', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91506, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145380', 1145380, '267.748199', '4.639788', '9.815885', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91234, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145382', 1145382, '262.290802', '3.068853', '19.805670', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90962, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145556', 1145556, '396.724701', '3.565628', '167.813797', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68950, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145558', 1145558, '440.238007', '1.174898', '187.579102', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68678, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145559', 1145559, '499.565002', '1.571632', '166.216507', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68406, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145562', 1145562, '455.435913', '3.250124', '198.748703', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68134, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145578', 1145578, '484.519714', '3.768931', '199.908401', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67862, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145579', 1145579, '528.374084', '7.553168', '195.361206', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67590, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145581', 1145581, '509.391815', '4.440328', '204.577698', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67318, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145595', 1145595, '513.939880', '14.256400', '137.989304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1145607', 1145607, '549.889282', '11.612070', '204.730194', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66774, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145610', 1145610, '538.797913', '21.846140', '123.039803', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1145612', 1145612, '542.038208', '13.673390', '165.126495', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1145613', 1145613, '504.953491', '14.256390', '115.266296', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1145625', 1145625, '557.183105', '21.846149', '129.558304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1145628', 1145628, '553.643005', '21.683020', '99.412483', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1145631', 1145631, '575.402405', '21.683020', '111.314499', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc1145702', 1145702, '284.107697', '3.982544', '49.240841', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90690, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc1145703', 1145703, '342.275299', '7.889330', '-41.286991', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90418, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299623', 2299623, '-290.183014', '-0.100012', '465.039612', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299626', 2299626, '-303.145111', '-0.100187', '410.650696', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299628', 2299628, '-315.270905', '0.279321', '442.690002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299630', 2299630, '-290.338806', '-0.100002', '403.924103', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299631', 2299631, '-260.457001', '-0.100012', '454.819794', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299632', 2299632, '-166.141800', '-0.100048', '463.106415', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139002, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299636', 2299636, '-85.984627', '-0.137378', '426.901611', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299637', 2299637, '-105.242203', '-0.100010', '441.452209', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299638', 2299638, '-127.139801', '-0.100007', '331.296906', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299640', 2299640, '-106.279099', '-0.167896', '335.835785', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299642', 2299642, '-76.920776', '0.228838', '434.653198', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299644', 2299644, '-121.995903', '-0.106860', '397.177002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299647', 2299647, '-213.092300', '-0.106860', '435.019409', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299670', 2299670, '105.271896', '19.668831', '117.021400', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299672', 2299672, '179.124298', '15.917120', '38.983059', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299676', 2299676, '67.215942', '23.941410', '138.414597', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133302, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299677', 2299677, '92.332291', '22.476490', '171.373993', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124332, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299678', 2299678, '68.223038', '21.438881', '171.709702', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123788, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299681', 2299681, '27.293150', '20.375059', '193.801193', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299682', 2299682, '76.646019', '20.096081', '218.799103', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123516, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299685', 2299685, '222.992401', '6.174502', '28.347420', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132764, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299686', 2299686, '218.930206', '7.861652', '25.101040', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132492, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299687', 2299687, '219.145096', '9.429937', '43.394890', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132220, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299688', 2299688, '242.878006', '5.513403', '43.686531', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131948, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299693', 2299693, '203.440796', '11.769820', '11.092830', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131676, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299695', 2299695, '183.372894', '13.534710', '15.091120', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131404, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299696', 2299696, '190.876602', '14.557230', '16.119829', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131132, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299697', 2299697, '181.536499', '14.175580', '17.074800', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130860, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299701', 2299701, '46.014000', '24.951891', '129.998001', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299707', 2299707, '62.549999', '18.461660', '250.313202', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299711', 2299711, '-240.650101', '6.790217', '647.669128', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153932, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299712', 2299712, '-268.177307', '7.461614', '616.082886', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299713', 2299713, '-298.512299', '10.330310', '645.349670', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299714', 2299714, '-301.838715', '11.032230', '612.298706', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299716', 2299716, '-278.400909', '7.095398', '588.036926', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299719', 2299719, '-256.092194', '6.362965', '575.310913', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299720', 2299720, '-249.805496', '4.135148', '533.104370', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299722', 2299722, '-243.854507', '-0.167896', '489.982391', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299723', 2299723, '-273.384796', '-0.100012', '454.524109', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299725', 2299725, '-301.158295', '1.302513', '475.886902', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299729', 2299729, '-220.495697', '-0.100054', '427.954590', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151212, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299730', 2299730, '-295.158295', '-0.100004', '416.955688', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299731', 2299731, '-158.892197', '-0.137378', '438.498413', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150668, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299732', 2299732, '-97.367859', '-0.137378', '460.166290', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299733', 2299733, '-102.128700', '-0.106860', '387.319702', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299734', 2299734, '-103.898697', '-0.106860', '385.000305', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299735', 2299735, '-73.472237', '-0.100006', '383.004608', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299736', 2299736, '-119.829102', '-0.106860', '335.713715', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299737', 2299737, '-25.762659', '-0.100045', '385.324402', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299738', 2299738, '-12.145770', '-0.100007', '340.874298', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299739', 2299739, '-36.646210', '-0.100007', '330.899811', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299740', 2299740, '-69.291260', '-0.100006', '346.480591', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299741', 2299741, '-29.965321', '-0.106860', '383.686096', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299742', 2299742, '-152.754807', '-0.100000', '285.928711', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299746', 2299746, '-188.861404', '-0.100036', '279.196106', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299747', 2299747, '-138.628296', '-0.106860', '247.516495', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299748', 2299748, '-207.352600', '-0.100011', '323.235504', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299751', 2299751, '-240.541595', '-0.100076', '309.201599', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299754', 2299754, '-282.546997', '2.068284', '344.383087', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299756', 2299756, '-165.855804', '3.695794', '214.781403', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299762', 2299762, '190.512695', '15.940850', '25.798840', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299764', 2299764, '193.374695', '15.528740', '58.982250', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299765', 2299765, '192.796906', '15.253090', '57.661560', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299767', 2299767, '162.554993', '16.909040', '69.378082', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299768', 2299768, '118.356201', '19.249180', '84.129753', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299769', 2299769, '119.667503', '18.832991', '86.148743', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299771', 2299771, '205.228104', '12.477170', '36.627281', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299772', 2299772, '218.183899', '10.623910', '45.217682', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299775', 2299775, '206.333893', '12.854360', '17.317181', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299777', 2299777, '114.394302', '18.347380', '106.921097', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299779', 2299779, '125.780098', '24.673790', '178.210098', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299781', 2299781, '135.240707', '28.061291', '166.094406', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299782', 2299782, '132.860199', '26.962641', '168.596893', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299783', 2299783, '145.372696', '31.326719', '173.479797', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299785', 2299785, '52.078991', '24.582239', '146.288193', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299786', 2299786, '52.109509', '24.917931', '143.633102', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299788', 2299788, '54.687038', '18.847170', '222.674896', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299789', 2299789, '71.783401', '22.789841', '205.433395', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299791', 2299791, '52.628319', '11.490000', '281.025391', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299792', 2299792, '55.405460', '12.252950', '279.835114', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299799', 2299799, '-333.285889', '20.722960', '-154.265701', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114934, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299800', 2299800, '-287.157501', '15.489150', '-84.197617', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299802', 2299802, '-262.604095', '12.804420', '-65.742996', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106532, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299803', 2299803, '-258.117889', '10.828210', '-67.787712', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299804', 2299804, '-235.706100', '8.377155', '-31.937180', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299812', 2299812, '-156.572906', '6.393483', '12.436060', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114662, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299820', 2299820, '-231.464096', '9.353733', '-146.379807', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299822', 2299822, '-119.740601', '2.027413', '-74.048714', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299823', 2299823, '-98.963509', '2.027430', '-27.024349', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299882', 2299882, '-305.844391', '25.145599', '-209.288696', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299886', 2299886, '-345.664215', '23.928289', '-176.087097', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299887', 2299887, '-347.161285', '24.534389', '-177.381302', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299895', 2299895, '-261.350800', '12.694290', '-76.165604', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299901', 2299901, '-279.804291', '19.410770', '50.600639', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299908', 2299908, '-263.922089', '15.508790', '89.442383', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299911', 2299911, '-145.702393', '6.826308', '-14.807010', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299914', 2299914, '-186.113998', '9.086921', '28.118750', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299915', 2299915, '-149.863907', '4.337313', '105.397102', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299916', 2299916, '-212.124496', '12.717620', '104.362198', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299930', 2299930, '-56.242779', '6.495965', '-71.791733', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299933', 2299933, '-107.042099', '5.264315', '-76.487633', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299936', 2299936, '-66.982857', '5.925140', '-114.246902', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299938', 2299938, '-139.531906', '11.537960', '-122.054199', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299941', 2299941, '-121.466599', '10.386180', '-143.292297', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299945', 2299945, '0.868353', '6.550388', '-34.652611', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299949', 2299949, '57.447720', '3.129161', '-49.835171', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299951', 2299951, '20.675930', '4.623436', '23.544621', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109772, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2299953', 2299953, '102.866203', '4.166452', '53.437038', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2299954', 2299954, '105.180397', '4.165666', '50.461540', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2300024', 2300024, '124.376198', '19.407740', '-146.837601', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90098, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(235, 'e0006', 'bnpc2300025', 2300025, '124.414299', '19.130779', '-145.398300', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89832, 1, 0, 0, 0, 0, 30067, 0, 0, 0), +(235, 'e0006', 'bnpc2300029', 2300029, '83.634644', '9.048584', '-90.501282', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89566, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc2300030', 2300030, '71.000183', '18.234480', '-159.014297', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89282, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(235, 'e0006', 'bnpc2300031', 2300031, '71.760773', '18.225830', '-160.113007', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89016, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(235, 'e0006', 'bnpc2300041', 2300041, '179.222198', '18.223680', '-145.087006', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88744, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc2300042', 2300042, '170.907196', '17.193430', '-151.395401', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88466, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(235, 'e0006', 'bnpc2300044', 2300044, '121.843201', '20.218161', '-96.971130', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88200, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(235, 'e0006', 'bnpc2300045', 2300045, '123.185997', '20.370750', '-97.032173', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87922, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(235, 'e0006', 'bnpc2300047', 2300047, '131.347900', '20.830030', '-112.115501', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87650, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc2300048', 2300048, '136.095200', '18.936399', '-149.187500', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87378, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc2300050', 2300050, '99.198853', '17.898781', '-160.631805', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87118, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc2300051', 2300051, '171.717804', '17.307770', '-150.139297', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86846, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(235, 'e0006', 'bnpc2300067', 2300067, '435.940704', '-0.982693', '5.487583', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76704, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(235, 'e0006', 'bnpc2300068', 2300068, '440.817810', '-1.144474', '-14.663970', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86520, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc2300072', 2300072, '438.040710', '-0.412041', '-42.984711', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71530, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(235, 'e0006', 'bnpc2300074', 2300074, '441.568298', '0.782855', '-28.634399', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc2300077', 2300077, '426.413208', '-0.717224', '-50.309021', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72346, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(235, 'e0006', 'bnpc2300080', 2300080, '399.968506', '4.262952', '-41.852612', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74800, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(235, 'e0006', 'bnpc2300084', 2300084, '360.969208', '1.840043', '-6.628087', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75616, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc2300091', 2300091, '376.814392', '4.773165', '-33.204460', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71258, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(235, 'e0006', 'bnpc2300092', 2300092, '356.160797', '2.687235', '2.700800', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86248, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc2300095', 2300095, '366.384308', '1.052825', '12.741240', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76160, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(235, 'e0006', 'bnpc2300098', 2300098, '387.472290', '-0.900329', '20.340231', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85976, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(235, 'e0006', 'bnpc2300099', 2300099, '387.075500', '-1.022401', '21.408360', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75888, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(235, 'e0006', 'bnpc2300103', 2300103, '403.433197', '-2.121051', '16.250811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85704, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc2300104', 2300104, '436.545288', '-1.022401', '4.501364', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72074, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(235, 'e0006', 'bnpc2300105', 2300105, '435.723999', '-1.106398', '3.907724', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75344, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(235, 'e0006', 'bnpc2300115', 2300115, '389.150787', '4.287738', '-36.392811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc2300119', 2300119, '397.360107', '0.381429', '115.953300', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64870, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2300123', 2300123, '371.755493', '-3.015678', '139.708099', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2300126', 2300126, '360.794006', '0.882443', '141.705902', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64326, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2300129', 2300129, '415.670990', '3.677377', '157.396805', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64054, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2300135', 2300135, '458.854004', '3.829967', '201.098602', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63782, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2300137', 2300137, '476.584991', '0.595055', '149.950302', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2300147', 2300147, '552.727478', '9.658914', '216.571198', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2300183', 2300183, '383.639801', '-2.278431', '92.591690', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300184', 2300184, '382.528412', '-2.487267', '93.400421', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300186', 2300186, '375.396393', '-4.129155', '77.561340', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300187', 2300187, '364.309113', '-4.655180', '71.455116', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300189', 2300189, '365.917114', '-5.088186', '65.510399', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300192', 2300192, '411.093201', '3.616341', '129.442200', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300193', 2300193, '410.513397', '4.074111', '156.633804', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300197', 2300197, '458.426697', '0.625573', '163.103607', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300199', 2300199, '458.792908', '0.625573', '164.843201', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300201', 2300201, '504.417389', '3.433233', '169.054596', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300202', 2300202, '512.107971', '5.050689', '209.033295', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300204', 2300204, '495.841888', '5.844158', '182.604706', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300205', 2300205, '544.090881', '10.452380', '201.525803', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300207', 2300207, '540.215088', '16.250811', '152.025604', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300211', 2300211, '525.902100', '19.058470', '105.821297', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300212', 2300212, '526.207275', '19.119511', '106.095901', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300214', 2300214, '570.489014', '22.507010', '119.554398', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300215', 2300215, '558.794128', '21.835609', '103.813599', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300217', 2300217, '592.919678', '25.558809', '131.029205', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300218', 2300218, '595.269714', '25.497780', '132.829697', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300222', 2300222, '158.947800', '16.443180', '-139.791306', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300223', 2300223, '162.681396', '16.443199', '-145.830505', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300229', 2300229, '47.617500', '4.166452', '66.536598', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300236', 2300236, '296.403412', '-0.256715', '-3.540742', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300237', 2300237, '307.939301', '-0.256714', '-0.769719', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2300241', 2300241, '306.026306', '-0.256723', '1.577364', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2308368', 2308368, '-332.770508', '11.416920', '613.476685', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145778, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(235, 'e0006', 'bnpc2308369', 2308369, '-343.075592', '12.112200', '626.433289', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144424, 1, 0, 0, 0, 41, 30083, 0, 0, 0), +(235, 'e0006', 'bnpc2308372', 2308372, '-345.601593', '15.548900', '608.209290', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143880, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc2308373', 2308373, '-344.072388', '20.119520', '620.861877', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145506, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(235, 'e0006', 'bnpc2308806', 2308806, '-332.725800', '11.426350', '614.251526', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143608, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(235, 'e0006', 'bnpc2308807', 2308807, '-333.646912', '11.427370', '613.129211', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144152, 1, 0, 0, 0, 41, 30077, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(235, 'e0006', 'bnpc2308808', 2308808, '-325.795410', '11.581550', '623.895630', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144696, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(235, 'e0006', 'bnpc2308809', 2308809, '-333.211304', '11.428960', '605.065918', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145234, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(235, 'e0006', 'bnpc2308811', 2308811, '-314.290100', '11.306890', '604.882813', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144962, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(235, 'e0006', 'bnpc2308812', 2308812, '-302.510101', '16.006670', '74.845451', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109506, 1, 0, 0, 0, 8, 30065, 0, 0, 0), +(235, 'e0006', 'bnpc2308813', 2308813, '-305.806091', '17.837749', '80.064034', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109240, 1, 0, 0, 0, 8, 30072, 0, 0, 0), +(235, 'e0006', 'bnpc2308814', 2308814, '-302.204987', '16.159260', '76.035652', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108974, 1, 0, 0, 0, 8, 30079, 0, 0, 0), +(235, 'e0006', 'bnpc2308815', 2308815, '-306.242096', '16.501289', '63.830650', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108702, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc2308816', 2308816, '-295.566986', '17.347191', '79.688187', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108418, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc2308817', 2308817, '73.624763', '7.705750', '-111.894501', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83570, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(235, 'e0006', 'bnpc2308818', 2308818, '74.906487', '7.766785', '-112.382797', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83304, 1, 0, 0, 0, 0, 30074, 0, 0, 0), +(235, 'e0006', 'bnpc2308819', 2308819, '68.253563', '7.766795', '-107.438797', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83038, 1, 0, 0, 0, 0, 30081, 0, 0, 0), +(235, 'e0006', 'bnpc2308820', 2308820, '72.922729', '7.614197', '-102.708603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82766, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc2308822', 2308822, '80.979607', '7.614197', '-109.636101', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82488, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc2310066', 2310066, '447.442291', '0.685165', '-106.462196', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82168, 1, 0, 0, 0, 5, 30073, 0, 0, 0), +(235, 'e0006', 'bnpc2310068', 2310068, '439.536102', '-0.228932', '-82.414017', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71802, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(235, 'e0006', 'bnpc2310072', 2310072, '447.196014', '-0.473083', '-64.896667', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81896, 1, 0, 0, 0, 5, 30079, 0, 0, 0), +(235, 'e0006', 'bnpc2310073', 2310073, '448.172607', '-0.473083', '-65.140808', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75072, 1, 0, 0, 0, 5, 30077, 0, 0, 0), +(235, 'e0006', 'bnpc2310077', 2310077, '606.902283', '21.846050', '94.322968', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310079', 2310079, '628.601990', '21.846140', '96.549973', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310080', 2310080, '634.544983', '21.846140', '87.894997', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310081', 2310081, '632.357971', '21.846130', '64.279701', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56692, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310082', 2310082, '626.666382', '21.845909', '61.769680', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56420, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310083', 2310083, '607.055603', '21.845909', '87.877663', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56148, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310084', 2310084, '607.202271', '21.845900', '69.260597', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55876, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310086', 2310086, '647.131470', '21.845940', '74.024300', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55604, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310087', 2310087, '631.244385', '21.845980', '119.611702', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310088', 2310088, '589.967102', '21.846029', '111.639000', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310106', 2310106, '62.454399', '22.173260', '-183.847000', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54504, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310110', 2310110, '11.996420', '22.107401', '-194.509094', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54232, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310121', 2310121, '43.552151', '31.746559', '-242.757904', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310129', 2310129, '80.701881', '31.247450', '-236.730392', 77, 0, 0, 0, 1, 6, 0, 0, 74, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310142', 2310142, '1.488476', '42.615070', '-238.873703', 85, 0, 0, 0, 1, 6, 0, 0, 81, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310155', 2310155, '14.401670', '41.170448', '-236.977097', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310157', 2310157, '13.745920', '41.247570', '-234.937393', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310158', 2310158, '26.641451', '40.972401', '-238.464600', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52606, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310159', 2310159, '23.036869', '41.356541', '-231.651596', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310160', 2310160, '34.532631', '34.329281', '-248.540298', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310161', 2310161, '18.166571', '40.736420', '-243.886398', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310162', 2310162, '36.185360', '34.339809', '-251.152893', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51518, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310163', 2310163, '32.022099', '35.938412', '-251.996597', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310164', 2310164, '2.683093', '41.323040', '-231.439301', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50974, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310165', 2310165, '2.481253', '41.289459', '-247.178207', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310166', 2310166, '3.023275', '41.244370', '-229.524307', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310168', 2310168, '26.339149', '41.310089', '-228.982193', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310169', 2310169, '43.691368', '23.807100', '-197.954498', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49886, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310170', 2310170, '47.955181', '23.796989', '-201.803207', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49614, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310171', 2310171, '27.500080', '23.900030', '-176.426407', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310173', 2310173, '8.713860', '24.977810', '-183.468903', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310174', 2310174, '25.766741', '25.453140', '-197.692993', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310175', 2310175, '21.326250', '25.217710', '-213.513397', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310176', 2310176, '56.209671', '30.207701', '-208.221603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310177', 2310177, '50.222309', '30.207741', '-208.816299', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310178', 2310178, '55.211819', '31.096901', '-223.299698', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310179', 2310179, '44.478668', '30.061560', '-213.305893', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47426, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310180', 2310180, '27.629330', '25.414169', '-203.556198', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47154, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310181', 2310181, '11.799320', '24.994440', '-208.841293', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310182', 2310182, '57.392250', '31.250860', '-237.443100', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310183', 2310183, '56.381592', '31.081989', '-222.324799', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310184', 2310184, '41.846550', '31.327400', '-233.639603', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310185', 2310185, '49.764519', '31.322470', '-239.490097', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310186', 2310186, '45.229160', '30.849199', '-225.986694', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310187', 2310187, '54.603119', '30.526270', '-215.684494', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310188', 2310188, '26.807720', '25.469440', '-208.795700', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310191', 2310191, '53.416069', '23.647209', '-198.466995', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310192', 2310192, '16.458969', '23.952860', '-182.981705', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310193', 2310193, '34.354580', '23.728510', '-188.906204', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310194', 2310194, '24.826321', '38.422710', '-248.892502', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310195', 2310195, '19.778610', '41.225639', '-235.194595', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2310196', 2310196, '10.671480', '41.230179', '-245.656906', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2313233', 2313233, '320.515686', '2.215992', '-18.509239', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81726, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(235, 'e0006', 'bnpc2313234', 2313234, '320.698792', '2.227228', '-15.091220', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81454, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(235, 'e0006', 'bnpc2313235', 2313235, '318.658691', '2.299638', '-15.389510', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81182, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(235, 'e0006', 'bnpc2313237', 2313237, '303.089905', '1.571632', '-19.974110', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80910, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(235, 'e0006', 'bnpc2313238', 2313238, '331.471710', '1.907331', '-17.807329', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80638, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(235, 'e0006', 'bnpc2320820', 2320820, '241.483994', '17.276871', '-145.913101', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80354, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2320821', 2320821, '252.963196', '12.221980', '-153.075394', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80082, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2320822', 2320822, '246.929703', '9.238781', '-175.852005', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79810, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2320826', 2320826, '292.604004', '10.691710', '-162.803802', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79538, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2320827', 2320827, '290.235687', '9.507468', '-185.479797', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79266, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2320828', 2320828, '295.598389', '11.637060', '-160.074707', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78994, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2320830', 2320830, '279.377411', '8.641194', '-170.115997', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78722, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2320832', 2320832, '250.518402', '10.279540', '-169.884796', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78450, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2351462', 2351462, '48.281940', '25.165770', '125.730797', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2351466', 2351466, '33.028351', '19.801689', '204.600204', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2351468', 2351468, '17.664570', '21.473511', '187.304001', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2351469', 2351469, '15.638560', '21.324190', '188.309006', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2351473', 2351473, '48.142170', '19.912979', '204.211395', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125142, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc2351480', 2351480, '31.650410', '24.598419', '125.582100', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc2763397', 2763397, '318.018890', '0.478852', '12.307590', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78190, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(235, 'e0006', 'bnpc2763398', 2763398, '317.199188', '0.290855', '13.417520', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77918, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(235, 'e0006', 'bnpc2763399', 2763399, '313.945190', '0.195134', '8.234367', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77646, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(235, 'e0006', 'bnpc2763400', 2763400, '289.082001', '0.747620', '16.617001', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77374, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(235, 'e0006', 'bnpc2763402', 2763402, '292.225494', '0.411926', '13.809330', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77102, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(235, 'e0006', 'bnpc3739171', 3739171, '-272.839386', '22.280479', '-182.574203', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104362, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(235, 'e0006', 'bnpc3739176', 3739176, '-271.384399', '22.233410', '-181.710205', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104090, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(235, 'e0006', 'bnpc3739178', 3739178, '-270.221985', '22.171329', '-172.442307', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103818, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(235, 'e0006', 'bnpc3739189', 3739189, '-286.671295', '22.598570', '-178.942596', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103546, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(235, 'e0006', 'bnpc3739195', 3739195, '-285.084290', '23.636169', '-193.682800', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103274, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(235, 'e0006', 'bnpc3739197', 3739197, '-302.441498', '24.263420', '-202.146301', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103002, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(235, 'e0006', 'bnpc3739198', 3739198, '-301.991302', '24.106640', '-200.335693', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102730, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(235, 'e0006', 'bnpc3739200', 3739200, '-307.179413', '23.056339', '-191.149796', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102458, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(235, 'e0006', 'bnpc3739223', 3739223, '-306.875397', '9.692472', '-137.887207', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3739241', 3739241, '-102.205200', '2.027415', '-36.144821', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3739247', 3739247, '-101.905197', '2.027430', '-31.359751', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3739298', 3739298, '-64.469414', '0.015212', '63.034969', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97030, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3739305', 3739305, '-142.689407', '0.030637', '161.735504', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96758, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3739308', 3739308, '-173.166397', '0.030539', '149.329895', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96486, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3739310', 3739310, '-183.418106', '0.030539', '144.544296', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96214, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3739417', 3739417, '151.785294', '4.236084', '20.237249', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3739423', 3739423, '152.085297', '4.236084', '15.201380', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3740607', 3740607, '-135.541595', '-0.100001', '467.027588', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138730, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3740609', 3740609, '-138.985397', '-0.100003', '461.260590', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138458, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3740611', 3740611, '-176.964996', '-0.100092', '482.156586', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138186, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3740613', 3740613, '-197.264099', '-0.100169', '480.240295', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3740615', 3740615, '-183.840607', '-0.100061', '448.882111', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3740617', 3740617, '-178.071396', '-0.100048', '447.029205', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3740619', 3740619, '-182.900406', '-0.100169', '476.189514', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3740632', 3740632, '-358.518585', '1.158285', '453.619598', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc3740634', 3740634, '-362.075012', '0.968366', '458.185486', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc3740635', 3740635, '-336.208405', '-0.100018', '460.011810', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc3740636', 3740636, '-362.780701', '1.532029', '454.955414', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc3740637', 3740637, '-338.199493', '-0.100187', '433.127808', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc3740638', 3740638, '-334.106689', '-0.100003', '437.684113', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc3740639', 3740639, '-345.628906', '-0.100008', '453.583313', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc3740640', 3740640, '-333.997498', '-0.100017', '457.273987', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc3740644', 3740644, '-79.519012', '-0.100045', '377.072388', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3740645', 3740645, '-20.504120', '-0.106860', '365.133087', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3740646', 3740646, '-52.782280', '-0.106860', '324.177887', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3740647', 3740647, '-59.319771', '-0.100007', '331.135590', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3740648', 3740648, '-4.964393', '-0.100007', '339.615601', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3740649', 3740649, '-18.177540', '-0.100615', '322.254089', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3740651', 3740651, '-42.146980', '-0.100005', '396.759399', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3740823', 3740823, '52.433182', '8.970453', '290.451111', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124604, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3740824', 3740824, '34.042301', '6.188347', '297.895691', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123244, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(235, 'e0006', 'bnpc3740991', 3740991, '83.869347', '23.640280', '197.587494', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc3740992', 3740992, '83.668243', '23.758640', '201.089493', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc3740993', 3740993, '92.752083', '22.594500', '147.751404', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc3740994', 3740994, '69.937286', '22.357740', '174.791397', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc3870245', 3870245, '-201.828995', '8.309389', '-77.948196', 584, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27764, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(235, 'e0006', 'bnpc3870249', 3870249, '-144.314499', '6.941079', '-45.049019', 585, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27498, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(235, 'e0006', 'bnpc3870258', 3870258, '-169.371506', '8.963833', '-15.339670', 586, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27232, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(235, 'e0006', 'bnpc3870312', 3870312, '213.284805', '9.756709', '-77.238258', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26966, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(235, 'e0006', 'bnpc3870333', 3870333, '150.590805', '8.698524', '-47.601891', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26700, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(235, 'e0006', 'bnpc3870347', 3870347, '213.854004', '6.490500', '-15.706390', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 36, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26434, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(235, 'e0006', 'bnpc3870372', 3870372, '-149.487900', '0.750592', '229.198502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26156, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(235, 'e0006', 'bnpc3870375', 3870375, '-161.511307', '0.485998', '346.191010', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(235, 'e0006', 'bnpc3870382', 3870382, '-231.008896', '0.795779', '399.749115', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25606, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(235, 'e0006', 'bnpc3870387', 3870387, '-228.300903', '0.984585', '517.848816', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25334, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(235, 'e0006', 'bnpc3878991', 3878991, '400.476288', '4.241707', '-40.787842', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70986, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(235, 'e0006', 'bnpc3879006', 3879006, '442.368011', '0.843470', '-27.738720', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70714, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc3879018', 3879018, '447.624695', '0.635267', '-105.764603', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70442, 1, 0, 0, 0, 5, 30074, 0, 0, 0), +(235, 'e0006', 'bnpc3879051', 3879051, '431.967712', '-0.747742', '-65.507080', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70176, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(235, 'e0006', 'bnpc3879065', 3879065, '356.771088', '2.792354', '1.937849', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69898, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(235, 'e0006', 'bnpc3879339', 3879339, '-343.618011', '11.367920', '624.658508', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(235, 'e0006', 'bnpc3879341', 3879341, '-324.269501', '11.551030', '603.662109', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136536, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(235, 'e0006', 'bnpc3879343', 3879343, '-320.241089', '11.612060', '616.174377', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136288, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc3879346', 3879346, '-319.234009', '11.551030', '602.227722', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136016, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(235, 'e0006', 'bnpc3879348', 3879348, '-324.879913', '11.551030', '603.082275', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135744, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(235, 'e0006', 'bnpc3879351', 3879351, '-324.330505', '11.520510', '609.063782', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135448, 1, 0, 0, 0, 41, 0, 0, 0, 0), +(235, 'e0006', 'bnpc3879352', 3879352, '-342.671906', '20.065571', '624.475403', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135176, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(235, 'e0006', 'bnpc3879353', 3879353, '-343.556885', '20.065571', '624.811096', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134928, 1, 0, 0, 0, 41, 30073, 0, 0, 0), +(235, 'e0006', 'bnpc3879398', 3879398, '-335.561188', '11.520510', '620.843811', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134626, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(235, 'e0006', 'bnpc3884509', 3884509, '125.859001', '4.166452', '44.953560', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc3917184', 3917184, '-60.455681', '3.894856', '-39.952641', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc3939726', 3939726, '436.760712', '0.574082', '-105.544098', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69360, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(235, 'e0006', 'bnpc4329476', 4329476, '-188.220093', '9.170593', '94.010742', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95676, 6, 1, 0, 0, 0, 30246, 4329477, 0, 0), +(235, 'e0006', 'bnpc4333062', 4333062, '-159.767395', '3.700634', '137.279205', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94652, 6, 1, 0, 0, 0, 30246, 4333061, 0, 0), +(235, 'e0006', 'bnpc4621322', 4621322, '28.233730', '25.315451', '115.697998', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28790, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(235, 'e0006', 'bnpc4621339', 4621339, '-337.105499', '20.119471', '615.520508', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28518, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1139214', 1139214, '-268.574097', '7.064880', '631.738708', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1139231', 1139231, '-15.879850', '-0.100045', '376.413208', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1139247', 1139247, '-122.621803', '1.180372', '288.650391', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1139253', 1139253, '-116.636803', '1.401093', '293.862488', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1139295', 1139295, '-239.337799', '0.869717', '266.651306', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1139296', 1139296, '-242.175995', '0.625573', '262.958710', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1139314', 1139314, '-234.854004', '-0.100137', '305.762085', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1139319', 1139319, '-284.558105', '1.846295', '342.205505', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1139327', 1139327, '-178.824295', '0.141551', '253.664703', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160176, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1139344', 1139344, '-179.793198', '0.669785', '323.976196', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159904, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1139407', 1139407, '-279.011292', '6.027267', '564.782104', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159632, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1139408', 1139408, '-254.932495', '6.759699', '578.911987', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159360, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1139409', 1139409, '-258.136902', '7.827831', '603.051819', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159088, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1139410', 1139410, '-257.221405', '6.637627', '578.881470', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1139423', 1139423, '-276.386688', '5.966230', '538.170288', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158544, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1139425', 1139425, '-266.529388', '5.020171', '542.473389', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1139430', 1139430, '-220.569199', '3.982558', '556.969482', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158000, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1140323', 1140323, '48.412201', '22.379660', '245.108307', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124060, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140341', 1140341, '148.210800', '18.142929', '63.034969', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134118, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140355', 1140355, '-167.689697', '4.657228', '188.189499', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1140356', 1140356, '-140.886597', '6.118821', '203.173798', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1140376', 1140376, '-173.095795', '7.162746', '110.695396', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119830, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140378', 1140378, '-169.298904', '4.379292', '134.294601', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119558, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140379', 1140379, '-176.483307', '6.579963', '113.899696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119286, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140393', 1140393, '-213.883896', '11.384410', '78.615593', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119014, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140405', 1140405, '-204.099792', '10.836050', '82.086967', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118742, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140418', 1140418, '-170.832901', '8.611761', '46.359402', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118470, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140419', 1140419, '-163.073196', '7.441800', '53.057159', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118198, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140420', 1140420, '-208.158096', '10.773990', '72.948898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117926, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140429', 1140429, '-210.742401', '9.567359', '0.839199', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117654, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140430', 1140430, '-217.212204', '9.475805', '3.250124', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117382, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140459', 1140459, '-87.514954', '0.030696', '53.398781', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97846, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140460', 1140460, '-83.185509', '0.030617', '55.136490', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98118, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140461', 1140461, '-100.175499', '1.815776', '55.405460', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97302, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140462', 1140462, '-87.013252', '0.030600', '71.372276', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97574, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140539', 1140539, '-119.476097', '5.647681', '112.526497', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117110, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140540', 1140540, '-126.604202', '5.923794', '94.623161', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116838, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140541', 1140541, '-126.329498', '5.844177', '109.056198', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116566, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140980', 1140980, '-313.130402', '25.345190', '-208.453506', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116294, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140981', 1140981, '-326.970612', '26.883949', '-216.976898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116022, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140982', 1140982, '-329.696594', '21.078899', '-165.243500', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115750, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140983', 1140983, '-338.267395', '24.724110', '-191.433197', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115478, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1140984', 1140984, '-323.896515', '19.876869', '-162.956696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115206, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1144407', 1144407, '-272.144714', '17.696960', '57.133450', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105716, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1144408', 1144408, '-257.479095', '14.942520', '80.117462', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1144457', 1144457, '-241.510406', '16.161341', '12.992840', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105444, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(236, 'e0011', 'bnpc1144491', 1144491, '-78.316467', '3.566922', '-36.424759', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106260, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1144547', 1144547, '-106.571297', '7.155371', '-106.524399', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1144577', 1144577, '-127.875000', '6.779816', '-22.488760', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105172, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1144585', 1144585, '-91.407356', '7.599404', '-74.910507', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104900, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1144597', 1144597, '-58.182690', '6.881772', '-97.795113', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1144598', 1144598, '-132.427704', '9.336102', '-104.286499', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1144629', 1144629, '-152.086700', '11.093260', '-140.581406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1144631', 1144631, '-151.639099', '11.652820', '-128.275406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1144632', 1144632, '-167.772995', '9.292697', '-129.167694', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1144653', 1144653, '-78.954659', '4.479653', '-126.207397', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1144691', 1144691, '-129.860199', '13.845340', '-129.543701', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1144692', 1144692, '-205.706894', '9.018035', '-138.750305', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1144694', 1144694, '-208.087296', '9.353733', '-141.039200', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1144747', 1144747, '2.112435', '6.781407', '-26.549141', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107620, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1144748', 1144748, '17.348650', '6.534479', '-18.517111', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107892, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1144786', 1144786, '30.609501', '4.094535', '43.754768', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108164, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1144790', 1144790, '42.343739', '4.165666', '68.558739', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1144793', 1144793, '142.320801', '4.196184', '25.833481', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1144799', 1144799, '40.001209', '4.166452', '71.521370', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1144800', 1144800, '70.561348', '4.166210', '66.426353', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145309', 1145309, '99.839729', '6.729181', '-55.405548', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93954, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145310', 1145310, '104.112297', '7.125916', '-59.922218', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93682, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145311', 1145311, '111.009300', '12.405540', '-76.890251', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93410, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145312', 1145312, '53.134991', '10.581870', '-71.978127', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93138, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145330', 1145330, '33.785549', '7.920002', '-96.910088', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92866, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145331', 1145331, '30.485310', '6.219395', '-100.848801', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92594, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145342', 1145342, '7.202258', '5.720373', '-72.371872', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92322, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145343', 1145343, '0.456908', '5.833508', '-87.359497', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92050, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145344', 1145344, '9.624027', '5.417103', '-76.025612', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91778, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145371', 1145371, '323.490204', '5.164718', '-43.671810', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91506, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145380', 1145380, '267.748199', '4.639788', '9.815885', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91234, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145382', 1145382, '262.290802', '3.068853', '19.805670', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90962, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145556', 1145556, '396.724701', '3.565628', '167.813797', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68950, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145558', 1145558, '440.238007', '1.174898', '187.579102', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68678, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145559', 1145559, '499.565002', '1.571632', '166.216507', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68406, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145562', 1145562, '455.435913', '3.250124', '198.748703', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68134, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145578', 1145578, '484.519714', '3.768931', '199.908401', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67862, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145579', 1145579, '528.374084', '7.553168', '195.361206', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67590, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145581', 1145581, '509.391815', '4.440328', '204.577698', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67318, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145595', 1145595, '513.939880', '14.256400', '137.989304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1145607', 1145607, '549.889282', '11.612070', '204.730194', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66774, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145610', 1145610, '538.797913', '21.846140', '123.039803', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1145612', 1145612, '542.038208', '13.673390', '165.126495', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1145613', 1145613, '504.953491', '14.256390', '115.266296', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1145625', 1145625, '557.183105', '21.846149', '129.558304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1145628', 1145628, '553.643005', '21.683020', '99.412483', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1145631', 1145631, '575.402405', '21.683020', '111.314499', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc1145702', 1145702, '284.107697', '3.982544', '49.240841', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90690, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc1145703', 1145703, '342.275299', '7.889330', '-41.286991', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90418, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299623', 2299623, '-290.183014', '-0.100012', '465.039612', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299626', 2299626, '-303.145111', '-0.100187', '410.650696', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299628', 2299628, '-315.270905', '0.279321', '442.690002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299630', 2299630, '-290.338806', '-0.100002', '403.924103', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299631', 2299631, '-260.457001', '-0.100012', '454.819794', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299632', 2299632, '-166.141800', '-0.100048', '463.106415', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139002, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299636', 2299636, '-85.984627', '-0.137378', '426.901611', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299637', 2299637, '-105.242203', '-0.100010', '441.452209', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299638', 2299638, '-127.139801', '-0.100007', '331.296906', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299640', 2299640, '-106.279099', '-0.167896', '335.835785', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299642', 2299642, '-76.920776', '0.228838', '434.653198', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299644', 2299644, '-121.995903', '-0.106860', '397.177002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299647', 2299647, '-213.092300', '-0.106860', '435.019409', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299670', 2299670, '105.271896', '19.668831', '117.021400', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299672', 2299672, '179.124298', '15.917120', '38.983059', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299676', 2299676, '67.215942', '23.941410', '138.414597', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133302, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299677', 2299677, '92.332291', '22.476490', '171.373993', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124332, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299678', 2299678, '68.223038', '21.438881', '171.709702', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123788, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299681', 2299681, '27.293150', '20.375059', '193.801193', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299682', 2299682, '76.646019', '20.096081', '218.799103', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123516, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299685', 2299685, '222.992401', '6.174502', '28.347420', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132764, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299686', 2299686, '218.930206', '7.861652', '25.101040', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132492, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299687', 2299687, '219.145096', '9.429937', '43.394890', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132220, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299688', 2299688, '242.878006', '5.513403', '43.686531', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131948, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299693', 2299693, '203.440796', '11.769820', '11.092830', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131676, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299695', 2299695, '183.372894', '13.534710', '15.091120', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131404, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299696', 2299696, '190.876602', '14.557230', '16.119829', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131132, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299697', 2299697, '181.536499', '14.175580', '17.074800', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130860, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299701', 2299701, '46.014000', '24.951891', '129.998001', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299707', 2299707, '62.549999', '18.461660', '250.313202', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299711', 2299711, '-240.650101', '6.790217', '647.669128', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153932, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299712', 2299712, '-268.177307', '7.461614', '616.082886', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299713', 2299713, '-298.512299', '10.330310', '645.349670', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299714', 2299714, '-301.838715', '11.032230', '612.298706', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299716', 2299716, '-278.400909', '7.095398', '588.036926', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299719', 2299719, '-256.092194', '6.362965', '575.310913', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299720', 2299720, '-249.805496', '4.135148', '533.104370', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299722', 2299722, '-243.854507', '-0.167896', '489.982391', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299723', 2299723, '-273.384796', '-0.100012', '454.524109', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299725', 2299725, '-301.158295', '1.302513', '475.886902', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299729', 2299729, '-220.495697', '-0.100054', '427.954590', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151212, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299730', 2299730, '-295.158295', '-0.100004', '416.955688', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299731', 2299731, '-158.892197', '-0.137378', '438.498413', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150668, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299732', 2299732, '-97.367859', '-0.137378', '460.166290', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299733', 2299733, '-102.128700', '-0.106860', '387.319702', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299734', 2299734, '-103.898697', '-0.106860', '385.000305', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299735', 2299735, '-73.472237', '-0.100006', '383.004608', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299736', 2299736, '-119.829102', '-0.106860', '335.713715', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299737', 2299737, '-25.762659', '-0.100045', '385.324402', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299738', 2299738, '-12.145770', '-0.100007', '340.874298', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299739', 2299739, '-36.646210', '-0.100007', '330.899811', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299740', 2299740, '-69.291260', '-0.100006', '346.480591', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299741', 2299741, '-29.965321', '-0.106860', '383.686096', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299742', 2299742, '-152.754807', '-0.100000', '285.928711', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299746', 2299746, '-188.861404', '-0.100036', '279.196106', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299747', 2299747, '-138.628296', '-0.106860', '247.516495', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299748', 2299748, '-207.352600', '-0.100011', '323.235504', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299751', 2299751, '-240.541595', '-0.100076', '309.201599', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299754', 2299754, '-282.546997', '2.068284', '344.383087', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299756', 2299756, '-165.855804', '3.695794', '214.781403', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299762', 2299762, '190.512695', '15.940850', '25.798840', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299764', 2299764, '193.374695', '15.528740', '58.982250', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299765', 2299765, '192.796906', '15.253090', '57.661560', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299767', 2299767, '162.554993', '16.909040', '69.378082', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299768', 2299768, '118.356201', '19.249180', '84.129753', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299769', 2299769, '119.667503', '18.832991', '86.148743', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299771', 2299771, '205.228104', '12.477170', '36.627281', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299772', 2299772, '218.183899', '10.623910', '45.217682', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299775', 2299775, '206.333893', '12.854360', '17.317181', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299777', 2299777, '114.394302', '18.347380', '106.921097', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299779', 2299779, '125.780098', '24.673790', '178.210098', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299781', 2299781, '135.240707', '28.061291', '166.094406', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299782', 2299782, '132.860199', '26.962641', '168.596893', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299783', 2299783, '145.372696', '31.326719', '173.479797', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299785', 2299785, '52.078991', '24.582239', '146.288193', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299786', 2299786, '52.109509', '24.917931', '143.633102', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299788', 2299788, '54.687038', '18.847170', '222.674896', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299789', 2299789, '71.783401', '22.789841', '205.433395', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299791', 2299791, '52.628319', '11.490000', '281.025391', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299792', 2299792, '55.405460', '12.252950', '279.835114', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299799', 2299799, '-333.285889', '20.722960', '-154.265701', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114934, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299800', 2299800, '-287.157501', '15.489150', '-84.197617', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299802', 2299802, '-262.604095', '12.804420', '-65.742996', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106532, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299803', 2299803, '-258.117889', '10.828210', '-67.787712', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299804', 2299804, '-235.706100', '8.377155', '-31.937180', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299812', 2299812, '-156.572906', '6.393483', '12.436060', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114662, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299820', 2299820, '-231.464096', '9.353733', '-146.379807', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299822', 2299822, '-119.740601', '2.027413', '-74.048714', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299823', 2299823, '-98.963509', '2.027430', '-27.024349', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299882', 2299882, '-305.844391', '25.145599', '-209.288696', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299886', 2299886, '-345.664215', '23.928289', '-176.087097', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299887', 2299887, '-347.161285', '24.534389', '-177.381302', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299895', 2299895, '-261.350800', '12.694290', '-76.165604', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299901', 2299901, '-279.804291', '19.410770', '50.600639', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299908', 2299908, '-263.922089', '15.508790', '89.442383', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299911', 2299911, '-145.702393', '6.826308', '-14.807010', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299914', 2299914, '-186.113998', '9.086921', '28.118750', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299915', 2299915, '-149.863907', '4.337313', '105.397102', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299916', 2299916, '-212.124496', '12.717620', '104.362198', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299930', 2299930, '-56.242779', '6.495965', '-71.791733', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299933', 2299933, '-107.042099', '5.264315', '-76.487633', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299936', 2299936, '-66.982857', '5.925140', '-114.246902', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299938', 2299938, '-139.531906', '11.537960', '-122.054199', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299941', 2299941, '-121.466599', '10.386180', '-143.292297', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299945', 2299945, '0.868353', '6.550388', '-34.652611', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299949', 2299949, '57.447720', '3.129161', '-49.835171', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299951', 2299951, '20.675930', '4.623436', '23.544621', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109772, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2299953', 2299953, '102.866203', '4.166452', '53.437038', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2299954', 2299954, '105.180397', '4.165666', '50.461540', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2300024', 2300024, '124.376198', '19.407740', '-146.837601', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90098, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(236, 'e0011', 'bnpc2300025', 2300025, '124.414299', '19.130779', '-145.398300', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89832, 1, 0, 0, 0, 0, 30067, 0, 0, 0), +(236, 'e0011', 'bnpc2300029', 2300029, '83.634644', '9.048584', '-90.501282', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89566, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc2300030', 2300030, '71.000183', '18.234480', '-159.014297', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89282, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(236, 'e0011', 'bnpc2300031', 2300031, '71.760773', '18.225830', '-160.113007', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89016, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(236, 'e0011', 'bnpc2300041', 2300041, '179.222198', '18.223680', '-145.087006', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88744, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc2300042', 2300042, '170.907196', '17.193430', '-151.395401', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88466, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(236, 'e0011', 'bnpc2300044', 2300044, '121.843201', '20.218161', '-96.971130', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88200, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(236, 'e0011', 'bnpc2300045', 2300045, '123.185997', '20.370750', '-97.032173', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87922, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(236, 'e0011', 'bnpc2300047', 2300047, '131.347900', '20.830030', '-112.115501', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87650, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc2300048', 2300048, '136.095200', '18.936399', '-149.187500', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87378, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc2300050', 2300050, '99.198853', '17.898781', '-160.631805', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87118, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc2300051', 2300051, '171.717804', '17.307770', '-150.139297', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86846, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(236, 'e0011', 'bnpc2300067', 2300067, '435.940704', '-0.982693', '5.487583', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76704, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(236, 'e0011', 'bnpc2300068', 2300068, '440.817810', '-1.144474', '-14.663970', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86520, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc2300072', 2300072, '438.040710', '-0.412041', '-42.984711', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71530, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(236, 'e0011', 'bnpc2300074', 2300074, '441.568298', '0.782855', '-28.634399', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc2300077', 2300077, '426.413208', '-0.717224', '-50.309021', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72346, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(236, 'e0011', 'bnpc2300080', 2300080, '399.968506', '4.262952', '-41.852612', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74800, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(236, 'e0011', 'bnpc2300084', 2300084, '360.969208', '1.840043', '-6.628087', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75616, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc2300091', 2300091, '376.814392', '4.773165', '-33.204460', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71258, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(236, 'e0011', 'bnpc2300092', 2300092, '356.160797', '2.687235', '2.700800', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86248, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc2300095', 2300095, '366.384308', '1.052825', '12.741240', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76160, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(236, 'e0011', 'bnpc2300098', 2300098, '387.472290', '-0.900329', '20.340231', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85976, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(236, 'e0011', 'bnpc2300099', 2300099, '387.075500', '-1.022401', '21.408360', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75888, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(236, 'e0011', 'bnpc2300103', 2300103, '403.433197', '-2.121051', '16.250811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85704, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc2300104', 2300104, '436.545288', '-1.022401', '4.501364', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72074, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(236, 'e0011', 'bnpc2300105', 2300105, '435.723999', '-1.106398', '3.907724', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75344, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(236, 'e0011', 'bnpc2300115', 2300115, '389.150787', '4.287738', '-36.392811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc2300119', 2300119, '397.360107', '0.381429', '115.953300', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64870, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2300123', 2300123, '371.755493', '-3.015678', '139.708099', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2300126', 2300126, '360.794006', '0.882443', '141.705902', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64326, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2300129', 2300129, '415.670990', '3.677377', '157.396805', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64054, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2300135', 2300135, '458.854004', '3.829967', '201.098602', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63782, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2300137', 2300137, '476.584991', '0.595055', '149.950302', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2300147', 2300147, '552.727478', '9.658914', '216.571198', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2300183', 2300183, '383.639801', '-2.278431', '92.591690', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300184', 2300184, '382.528412', '-2.487267', '93.400421', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300186', 2300186, '375.396393', '-4.129155', '77.561340', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300187', 2300187, '364.309113', '-4.655180', '71.455116', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300189', 2300189, '365.917114', '-5.088186', '65.510399', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300192', 2300192, '411.093201', '3.616341', '129.442200', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300193', 2300193, '410.513397', '4.074111', '156.633804', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300197', 2300197, '458.426697', '0.625573', '163.103607', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300199', 2300199, '458.792908', '0.625573', '164.843201', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300201', 2300201, '504.417389', '3.433233', '169.054596', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300202', 2300202, '512.107971', '5.050689', '209.033295', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300204', 2300204, '495.841888', '5.844158', '182.604706', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300205', 2300205, '544.090881', '10.452380', '201.525803', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300207', 2300207, '540.215088', '16.250811', '152.025604', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300211', 2300211, '525.902100', '19.058470', '105.821297', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300212', 2300212, '526.207275', '19.119511', '106.095901', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300214', 2300214, '570.489014', '22.507010', '119.554398', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300215', 2300215, '558.794128', '21.835609', '103.813599', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300217', 2300217, '592.919678', '25.558809', '131.029205', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300218', 2300218, '595.269714', '25.497780', '132.829697', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300222', 2300222, '158.947800', '16.443180', '-139.791306', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300223', 2300223, '162.681396', '16.443199', '-145.830505', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84984, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(236, 'e0011', 'bnpc2300229', 2300229, '47.617500', '4.166452', '66.536598', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300236', 2300236, '296.403412', '-0.256715', '-3.540742', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300237', 2300237, '307.939301', '-0.256714', '-0.769719', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2300241', 2300241, '306.026306', '-0.256723', '1.577364', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2308368', 2308368, '-332.770508', '11.416920', '613.476685', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145778, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(236, 'e0011', 'bnpc2308369', 2308369, '-343.075592', '12.112200', '626.433289', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144424, 1, 0, 0, 0, 41, 30083, 0, 0, 0), +(236, 'e0011', 'bnpc2308372', 2308372, '-345.601593', '15.548900', '608.209290', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143880, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc2308373', 2308373, '-344.072388', '20.119520', '620.861877', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145506, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(236, 'e0011', 'bnpc2308806', 2308806, '-332.725800', '11.426350', '614.251526', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143608, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(236, 'e0011', 'bnpc2308807', 2308807, '-333.646912', '11.427370', '613.129211', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144152, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(236, 'e0011', 'bnpc2308808', 2308808, '-325.795410', '11.581550', '623.895630', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144696, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(236, 'e0011', 'bnpc2308809', 2308809, '-333.211304', '11.428960', '605.065918', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145234, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(236, 'e0011', 'bnpc2308811', 2308811, '-314.290100', '11.306890', '604.882813', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144962, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(236, 'e0011', 'bnpc2308812', 2308812, '-302.510101', '16.006670', '74.845451', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109506, 1, 0, 0, 0, 8, 30065, 0, 0, 0), +(236, 'e0011', 'bnpc2308813', 2308813, '-305.806091', '17.837749', '80.064034', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109240, 1, 0, 0, 0, 8, 30072, 0, 0, 0), +(236, 'e0011', 'bnpc2308814', 2308814, '-302.204987', '16.159260', '76.035652', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108974, 1, 0, 0, 0, 8, 30079, 0, 0, 0), +(236, 'e0011', 'bnpc2308815', 2308815, '-306.242096', '16.501289', '63.830650', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108702, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc2308816', 2308816, '-295.566986', '17.347191', '79.688187', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108418, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc2308817', 2308817, '73.624763', '7.705750', '-111.894501', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83570, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(236, 'e0011', 'bnpc2308818', 2308818, '74.906487', '7.766785', '-112.382797', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83304, 1, 0, 0, 0, 0, 30074, 0, 0, 0), +(236, 'e0011', 'bnpc2308819', 2308819, '68.253563', '7.766795', '-107.438797', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83038, 1, 0, 0, 0, 0, 30081, 0, 0, 0), +(236, 'e0011', 'bnpc2308820', 2308820, '72.922729', '7.614197', '-102.708603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82766, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc2308822', 2308822, '80.979607', '7.614197', '-109.636101', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82488, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc2310066', 2310066, '447.442291', '0.685165', '-106.462196', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82168, 1, 0, 0, 0, 5, 30073, 0, 0, 0), +(236, 'e0011', 'bnpc2310068', 2310068, '439.536102', '-0.228932', '-82.414017', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71802, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(236, 'e0011', 'bnpc2310072', 2310072, '447.196014', '-0.473083', '-64.896667', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81896, 1, 0, 0, 0, 5, 30079, 0, 0, 0), +(236, 'e0011', 'bnpc2310073', 2310073, '448.172607', '-0.473083', '-65.140808', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75072, 1, 0, 0, 0, 5, 30077, 0, 0, 0), +(236, 'e0011', 'bnpc2310077', 2310077, '606.902283', '21.846050', '94.322968', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310079', 2310079, '628.601990', '21.846140', '96.549973', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310080', 2310080, '634.544983', '21.846140', '87.894997', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310081', 2310081, '632.357971', '21.846130', '64.279701', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56692, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310082', 2310082, '626.666382', '21.845909', '61.769680', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56420, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310083', 2310083, '607.055603', '21.845909', '87.877663', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56148, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310084', 2310084, '607.202271', '21.845900', '69.260597', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55876, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310086', 2310086, '647.131470', '21.845940', '74.024300', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55604, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310087', 2310087, '631.244385', '21.845980', '119.611702', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310088', 2310088, '589.967102', '21.846029', '111.639000', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310106', 2310106, '62.454399', '22.173260', '-183.847000', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54504, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310110', 2310110, '11.996420', '22.107401', '-194.509094', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54232, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310121', 2310121, '43.552151', '31.746559', '-242.757904', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310129', 2310129, '80.701881', '31.247450', '-236.730392', 77, 0, 0, 0, 1, 6, 0, 0, 74, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310142', 2310142, '1.488476', '42.615070', '-238.873703', 85, 0, 0, 0, 1, 6, 0, 0, 81, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310155', 2310155, '14.401670', '41.170448', '-236.977097', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310157', 2310157, '13.745920', '41.247570', '-234.937393', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310158', 2310158, '26.641451', '40.972401', '-238.464600', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52606, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310159', 2310159, '23.036869', '41.356541', '-231.651596', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310160', 2310160, '34.532631', '34.329281', '-248.540298', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310161', 2310161, '18.166571', '40.736420', '-243.886398', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310162', 2310162, '36.185360', '34.339809', '-251.152893', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51518, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310163', 2310163, '32.022099', '35.938412', '-251.996597', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310164', 2310164, '2.683093', '41.323040', '-231.439301', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50974, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310165', 2310165, '2.481253', '41.289459', '-247.178207', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310166', 2310166, '3.023275', '41.244370', '-229.524307', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310168', 2310168, '26.339149', '41.310089', '-228.982193', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310169', 2310169, '43.691368', '23.807100', '-197.954498', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49886, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310170', 2310170, '47.955181', '23.796989', '-201.803207', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49614, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310171', 2310171, '27.500080', '23.900030', '-176.426407', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310173', 2310173, '8.713860', '24.977810', '-183.468903', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310174', 2310174, '25.766741', '25.453140', '-197.692993', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310175', 2310175, '21.326250', '25.217710', '-213.513397', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310176', 2310176, '56.209671', '30.207701', '-208.221603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310177', 2310177, '50.222309', '30.207741', '-208.816299', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310178', 2310178, '55.211819', '31.096901', '-223.299698', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310179', 2310179, '44.478668', '30.061560', '-213.305893', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47426, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310180', 2310180, '27.629330', '25.414169', '-203.556198', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47154, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310181', 2310181, '11.799320', '24.994440', '-208.841293', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310182', 2310182, '57.392250', '31.250860', '-237.443100', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310183', 2310183, '56.381592', '31.081989', '-222.324799', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310184', 2310184, '41.846550', '31.327400', '-233.639603', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310185', 2310185, '49.764519', '31.322470', '-239.490097', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310186', 2310186, '45.229160', '30.849199', '-225.986694', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310187', 2310187, '54.603119', '30.526270', '-215.684494', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310188', 2310188, '26.807720', '25.469440', '-208.795700', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310191', 2310191, '53.416069', '23.647209', '-198.466995', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310192', 2310192, '16.458969', '23.952860', '-182.981705', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310193', 2310193, '34.354580', '23.728510', '-188.906204', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310194', 2310194, '24.826321', '38.422710', '-248.892502', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310195', 2310195, '19.778610', '41.225639', '-235.194595', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2310196', 2310196, '10.671480', '41.230179', '-245.656906', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2313233', 2313233, '320.515686', '2.215992', '-18.509239', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81726, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(236, 'e0011', 'bnpc2313234', 2313234, '320.698792', '2.227228', '-15.091220', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81454, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(236, 'e0011', 'bnpc2313235', 2313235, '318.658691', '2.299638', '-15.389510', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81182, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(236, 'e0011', 'bnpc2313237', 2313237, '303.089905', '1.571632', '-19.974110', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80910, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(236, 'e0011', 'bnpc2313238', 2313238, '331.471710', '1.907331', '-17.807329', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80638, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(236, 'e0011', 'bnpc2320820', 2320820, '241.483994', '17.276871', '-145.913101', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80354, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2320821', 2320821, '252.963196', '12.221980', '-153.075394', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80082, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2320822', 2320822, '246.929703', '9.238781', '-175.852005', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79810, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2320826', 2320826, '292.604004', '10.691710', '-162.803802', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79538, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2320827', 2320827, '290.235687', '9.507468', '-185.479797', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79266, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2320828', 2320828, '295.598389', '11.637060', '-160.074707', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78994, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2320830', 2320830, '279.377411', '8.641194', '-170.115997', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78722, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2320832', 2320832, '250.518402', '10.279540', '-169.884796', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78450, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2351462', 2351462, '48.281940', '25.165770', '125.730797', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2351466', 2351466, '33.028351', '19.801689', '204.600204', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2351468', 2351468, '17.664570', '21.473511', '187.304001', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2351469', 2351469, '15.638560', '21.324190', '188.309006', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2351473', 2351473, '48.142170', '19.912979', '204.211395', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125142, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc2351480', 2351480, '31.650410', '24.598419', '125.582100', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc2763397', 2763397, '318.018890', '0.478852', '12.307590', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78190, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(236, 'e0011', 'bnpc2763398', 2763398, '317.199188', '0.290855', '13.417520', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77918, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(236, 'e0011', 'bnpc2763399', 2763399, '313.945190', '0.195134', '8.234367', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77646, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(236, 'e0011', 'bnpc2763400', 2763400, '289.082001', '0.747620', '16.617001', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77374, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(236, 'e0011', 'bnpc2763402', 2763402, '292.225494', '0.411926', '13.809330', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77102, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(236, 'e0011', 'bnpc3739171', 3739171, '-272.839386', '22.280479', '-182.574203', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104362, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(236, 'e0011', 'bnpc3739176', 3739176, '-271.384399', '22.233410', '-181.710205', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104090, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(236, 'e0011', 'bnpc3739178', 3739178, '-270.221985', '22.171329', '-172.442307', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103818, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(236, 'e0011', 'bnpc3739189', 3739189, '-286.671295', '22.598570', '-178.942596', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103546, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(236, 'e0011', 'bnpc3739195', 3739195, '-285.084290', '23.636169', '-193.682800', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103274, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(236, 'e0011', 'bnpc3739197', 3739197, '-302.441498', '24.263420', '-202.146301', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103002, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(236, 'e0011', 'bnpc3739198', 3739198, '-301.991302', '24.106640', '-200.335693', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102730, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(236, 'e0011', 'bnpc3739200', 3739200, '-307.179413', '23.056339', '-191.149796', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102458, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(236, 'e0011', 'bnpc3739223', 3739223, '-306.875397', '9.692472', '-137.887207', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3739241', 3739241, '-102.205200', '2.027415', '-36.144821', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3739247', 3739247, '-101.905197', '2.027430', '-31.359751', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3739298', 3739298, '-64.469414', '0.015212', '63.034969', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97030, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3739305', 3739305, '-142.689407', '0.030637', '161.735504', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96758, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3739308', 3739308, '-173.166397', '0.030539', '149.329895', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96486, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3739310', 3739310, '-183.418106', '0.030539', '144.544296', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96214, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3739417', 3739417, '151.785294', '4.236084', '20.237249', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3739423', 3739423, '152.085297', '4.236084', '15.201380', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3740607', 3740607, '-135.541595', '-0.100001', '467.027588', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138730, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3740609', 3740609, '-138.985397', '-0.100003', '461.260590', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138458, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3740611', 3740611, '-176.964996', '-0.100092', '482.156586', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138186, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3740613', 3740613, '-197.264099', '-0.100169', '480.240295', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3740615', 3740615, '-183.840607', '-0.100061', '448.882111', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3740617', 3740617, '-178.071396', '-0.100048', '447.029205', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3740619', 3740619, '-182.900406', '-0.100169', '476.189514', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3740632', 3740632, '-358.518585', '1.158285', '453.619598', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc3740634', 3740634, '-362.075012', '0.968366', '458.185486', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc3740635', 3740635, '-336.208405', '-0.100018', '460.011810', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc3740636', 3740636, '-362.780701', '1.532029', '454.955414', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc3740637', 3740637, '-338.199493', '-0.100187', '433.127808', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc3740638', 3740638, '-334.106689', '-0.100003', '437.684113', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc3740639', 3740639, '-345.628906', '-0.100008', '453.583313', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc3740640', 3740640, '-333.997498', '-0.100017', '457.273987', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc3740644', 3740644, '-79.519012', '-0.100045', '377.072388', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3740645', 3740645, '-20.504120', '-0.106860', '365.133087', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3740646', 3740646, '-52.782280', '-0.106860', '324.177887', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3740647', 3740647, '-59.319771', '-0.100007', '331.135590', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3740648', 3740648, '-4.964393', '-0.100007', '339.615601', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3740649', 3740649, '-18.177540', '-0.100615', '322.254089', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3740651', 3740651, '-42.146980', '-0.100005', '396.759399', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3740823', 3740823, '52.433182', '8.970453', '290.451111', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124604, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3740824', 3740824, '34.042301', '6.188347', '297.895691', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123244, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(236, 'e0011', 'bnpc3740991', 3740991, '83.869347', '23.640280', '197.587494', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc3740992', 3740992, '83.668243', '23.758640', '201.089493', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc3740993', 3740993, '92.752083', '22.594500', '147.751404', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc3740994', 3740994, '69.937286', '22.357740', '174.791397', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc3870245', 3870245, '-201.828995', '8.309389', '-77.948196', 584, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27764, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(236, 'e0011', 'bnpc3870249', 3870249, '-144.314499', '6.941079', '-45.049019', 585, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27498, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(236, 'e0011', 'bnpc3870258', 3870258, '-169.371506', '8.963833', '-15.339670', 586, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27232, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(236, 'e0011', 'bnpc3870312', 3870312, '213.284805', '9.756709', '-77.238258', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26966, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(236, 'e0011', 'bnpc3870333', 3870333, '150.590805', '8.698524', '-47.601891', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26700, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(236, 'e0011', 'bnpc3870347', 3870347, '213.854004', '6.490500', '-15.706390', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 36, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26434, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(236, 'e0011', 'bnpc3870372', 3870372, '-149.487900', '0.750592', '229.198502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26156, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(236, 'e0011', 'bnpc3870375', 3870375, '-161.511307', '0.485998', '346.191010', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(236, 'e0011', 'bnpc3870382', 3870382, '-231.008896', '0.795779', '399.749115', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25606, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(236, 'e0011', 'bnpc3870387', 3870387, '-228.300903', '0.984585', '517.848816', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25334, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(236, 'e0011', 'bnpc3878991', 3878991, '400.476288', '4.241707', '-40.787842', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70986, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(236, 'e0011', 'bnpc3879006', 3879006, '442.368011', '0.843470', '-27.738720', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70714, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc3879018', 3879018, '447.624695', '0.635267', '-105.764603', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70442, 1, 0, 0, 0, 5, 30074, 0, 0, 0), +(236, 'e0011', 'bnpc3879051', 3879051, '431.967712', '-0.747742', '-65.507080', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70176, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(236, 'e0011', 'bnpc3879065', 3879065, '356.771088', '2.792354', '1.937849', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69898, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(236, 'e0011', 'bnpc3879339', 3879339, '-343.618011', '11.367920', '624.658508', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(236, 'e0011', 'bnpc3879341', 3879341, '-324.269501', '11.551030', '603.662109', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136536, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(236, 'e0011', 'bnpc3879343', 3879343, '-320.241089', '11.612060', '616.174377', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136288, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc3879346', 3879346, '-319.234009', '11.551030', '602.227722', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136016, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(236, 'e0011', 'bnpc3879348', 3879348, '-324.879913', '11.551030', '603.082275', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135744, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(236, 'e0011', 'bnpc3879351', 3879351, '-324.330505', '11.520510', '609.063782', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135448, 1, 0, 0, 0, 41, 0, 0, 0, 0), +(236, 'e0011', 'bnpc3879352', 3879352, '-342.671906', '20.065571', '624.475403', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135176, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(236, 'e0011', 'bnpc3879353', 3879353, '-343.556885', '20.065571', '624.811096', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134928, 1, 0, 0, 0, 41, 30073, 0, 0, 0), +(236, 'e0011', 'bnpc3879398', 3879398, '-335.561188', '11.520510', '620.843811', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134626, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(236, 'e0011', 'bnpc3884509', 3884509, '125.859001', '4.166452', '44.953560', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc3917184', 3917184, '-60.455681', '3.894856', '-39.952641', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc3939726', 3939726, '436.760712', '0.574082', '-105.544098', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69360, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(236, 'e0011', 'bnpc4329476', 4329476, '-188.220093', '9.170593', '94.010742', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95676, 6, 1, 0, 0, 0, 30246, 4329477, 0, 0), +(236, 'e0011', 'bnpc4333062', 4333062, '-159.767395', '3.700634', '137.279205', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94652, 6, 1, 0, 0, 0, 30246, 4333061, 0, 0), +(236, 'e0011', 'bnpc4621322', 4621322, '28.233730', '25.315451', '115.697998', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28790, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(236, 'e0011', 'bnpc4621339', 4621339, '-337.105499', '20.119471', '615.520508', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28518, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1132780', 1132780, '42.705971', '6.489012', '-222.119598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132784', 1132784, '43.994171', '7.081282', '-226.261307', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132785', 1132785, '46.368141', '6.532326', '-222.363800', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230902, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132786', 1132786, '50.249649', '8.663927', '-237.583603', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132810', 1132810, '119.142403', '17.274370', '-264.585907', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132815', 1132815, '53.141479', '4.367238', '-208.718597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132818', 1132818, '57.950279', '4.701855', '-181.906006', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132819', 1132819, '53.380199', '3.647015', '-170.941803', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132823', 1132823, '85.892982', '4.386182', '-186.633102', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132827', 1132827, '136.440002', '-0.215091', '-142.126297', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132829', 1132829, '139.586502', '1.436886', '-162.906296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132833', 1132833, '144.692596', '1.594073', '-161.313507', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132834', 1132834, '169.345306', '-0.575563', '-143.321701', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132835', 1132835, '132.885803', '4.471908', '-182.040894', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132836', 1132836, '127.652000', '2.679112', '-179.060898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132837', 1132837, '133.402802', '5.498395', '-185.220093', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132842', 1132842, '104.130501', '4.751109', '-199.651596', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132988', 1132988, '145.939301', '0.761501', '-119.501801', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132990', 1132990, '165.896698', '-0.582151', '-142.284103', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132991', 1132991, '196.646301', '-2.798964', '-155.795898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132992', 1132992, '159.011398', '0.196450', '-113.407997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226012, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1132993', 1132993, '162.856598', '-0.357008', '-115.116997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225740, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133000', 1133000, '202.288803', '-2.206049', '-168.963196', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225468, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133001', 1133001, '223.772705', '-6.852091', '-140.217407', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225196, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133002', 1133002, '206.683395', '-2.759299', '-171.221497', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224924, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133005', 1133005, '231.146698', '-5.044106', '-178.307693', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224652, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133007', 1133007, '242.902496', '-0.494766', '-191.458496', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224380, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133008', 1133008, '239.977493', '-0.588080', '-191.828400', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224108, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133010', 1133010, '221.392303', '-6.460419', '-138.050598', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223836, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133022', 1133022, '332.788513', '-3.345333', '-151.251495', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201534, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133023', 1133023, '298.603699', '-6.332541', '-125.749603', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133029', 1133029, '302.693298', '-3.341390', '-184.143005', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133031', 1133031, '328.386993', '-0.505648', '-187.936401', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133032', 1133032, '342.892487', '-1.328422', '-175.218201', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133035', 1133035, '358.327515', '-2.255364', '-175.310898', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133036', 1133036, '335.507294', '0.561625', '-194.418793', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199902, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(237, 'e0012', 'bnpc1133042', 1133042, '439.946808', '10.149250', '-108.177101', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169468, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133044', 1133044, '458.584900', '14.997390', '-90.379593', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169740, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133047', 1133047, '463.401215', '25.778530', '-35.324680', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168380, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133049', 1133049, '445.243591', '31.812080', '-9.685579', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168652, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133052', 1133052, '486.745514', '31.609249', '-44.177990', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168924, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133053', 1133053, '487.618011', '31.024900', '-55.958771', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170012, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133054', 1133054, '483.304291', '30.900890', '-51.161331', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172188, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133056', 1133056, '482.511993', '23.910801', '-88.545013', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173276, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133057', 1133057, '480.679291', '24.104330', '-120.189201', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169196, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133063', 1133063, '504.435913', '29.146271', '-83.562149', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173004, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133064', 1133064, '482.169495', '24.010910', '-92.475502', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172732, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133065', 1133065, '459.642914', '24.454941', '-39.719559', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172460, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133066', 1133066, '453.938690', '26.000799', '-33.810230', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170828, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133070', 1133070, '351.512787', '3.052480', '46.861389', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133071', 1133071, '341.298492', '3.983801', '67.704231', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133072', 1133072, '348.626495', '0.976962', '28.015940', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133073', 1133073, '342.183502', '0.098491', '27.298340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133077', 1133077, '309.071411', '-2.609340', '63.065491', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133080', 1133080, '281.574707', '-7.184652', '26.169170', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133098', 1133098, '289.254913', '-5.168305', '48.585239', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133100', 1133100, '291.498688', '-5.368438', '47.821369', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133126', 1133126, '-82.030632', '1.519239', '-141.488693', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148770, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133128', 1133128, '-77.317497', '1.083344', '-136.644608', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148498, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133130', 1133130, '-63.375290', '0.643326', '-166.887497', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148226, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133131', 1133131, '-64.313164', '0.965167', '-162.181503', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147954, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133132', 1133132, '-75.591331', '1.176651', '-142.404297', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147682, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133138', 1133138, '-33.189919', '-4.914308', '-94.149628', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147410, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133148', 1133148, '86.244072', '-19.783070', '210.247406', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133152', 1133152, '70.510750', '-17.727341', '188.296799', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133156', 1133156, '56.609531', '-22.226370', '292.790710', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133163', 1133163, '25.970390', '-24.061230', '233.649994', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133165', 1133165, '37.231960', '-26.765560', '260.079498', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133167', 1133167, '36.484268', '-25.833570', '242.542099', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133172', 1133172, '94.585983', '-24.244490', '288.477509', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133176', 1133176, '98.126083', '-23.363501', '294.977814', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133177', 1133177, '85.597298', '-27.953020', '268.263000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133178', 1133178, '89.747749', '-28.194380', '266.065704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133179', 1133179, '141.949905', '-28.936390', '333.222290', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133181', 1133181, '160.046402', '-31.802570', '350.789795', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133185', 1133185, '164.906906', '-32.018280', '333.485504', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133186', 1133186, '146.226807', '-28.810591', '357.818298', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133187', 1133187, '196.479996', '-32.228100', '370.754303', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133189', 1133189, '179.687897', '-32.476631', '364.163086', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133193', 1133193, '213.929794', '-29.694580', '421.080688', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133194', 1133194, '210.157394', '-29.179230', '422.919312', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133195', 1133195, '202.300293', '-31.331381', '415.743286', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133196', 1133196, '197.350098', '-27.568890', '432.363586', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133197', 1133197, '127.580299', '-21.390261', '452.635986', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133198', 1133198, '140.825500', '-23.697309', '449.881714', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133199', 1133199, '140.459198', '-23.605749', '454.489899', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133202', 1133202, '12.397950', '-27.619690', '294.880493', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133205', 1133205, '-18.143021', '-24.734921', '265.369598', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133206', 1133206, '-12.771850', '-24.094040', '262.958710', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133207', 1133207, '-9.199866', '-28.976500', '329.645294', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140338, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133209', 1133209, '-28.712330', '-27.396271', '280.689209', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140066, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133235', 1133235, '-294.825012', '66.698837', '-219.308807', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94446, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133239', 1133239, '-293.659912', '67.460083', '-222.491806', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94174, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133246', 1133246, '-302.510101', '60.959740', '-159.319504', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93902, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133248', 1133248, '-302.700409', '62.132381', '-166.402496', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133255', 1133255, '-356.364685', '65.308533', '-258.518585', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133257', 1133257, '-369.039490', '65.567993', '-232.715393', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133258', 1133258, '-392.416290', '67.276978', '-249.713898', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1133287', 1133287, '197.283798', '-8.773984', '-27.176359', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133291', 1133291, '211.352707', '-8.651912', '-43.106781', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133293', 1133293, '157.305206', '-7.888961', '-17.929399', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133294', 1133294, '157.244202', '-8.163623', '-11.917340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133298', 1133298, '120.449799', '-4.840655', '13.528090', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1133303', 1133303, '104.203796', '-7.003938', '47.562321', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135577', 1135577, '335.133911', '-4.725379', '-24.794729', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196916, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135582', 1135582, '371.054596', '0.844982', '-35.208488', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196644, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135586', 1135586, '374.433105', '1.702958', '-25.284241', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135591', 1135591, '345.784607', '-2.975556', '-32.761169', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135593', 1135593, '332.478790', '-3.372291', '3.097534', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135605', 1135605, '395.773193', '2.548209', '-44.693722', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135606', 1135606, '415.025085', '5.625315', '-64.068764', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135607', 1135607, '388.509888', '0.304810', '-66.453087', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135612', 1135612, '394.000214', '3.556523', '-87.144318', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135613', 1135613, '375.936493', '0.686609', '-85.923592', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135614', 1135614, '343.831512', '-5.020265', '-80.094650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135616', 1135616, '409.009888', '5.209702', '-112.078003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135617', 1135617, '417.517700', '5.755183', '-68.232597', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135618', 1135618, '412.284607', '5.636008', '-106.424400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135619', 1135619, '406.314209', '5.571515', '-103.380302', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135624', 1135624, '386.668915', '4.336706', '-103.087303', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135625', 1135625, '364.309509', '0.784262', '-125.017197', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135627', 1135627, '359.853485', '-2.578822', '-152.483398', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135628', 1135628, '350.999207', '-2.118987', '-128.300003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135629', 1135629, '316.613586', '8.015758', '128.187897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135632', 1135632, '323.190002', '9.736116', '132.826904', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135633', 1135633, '322.078613', '10.136940', '134.004807', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135639', 1135639, '288.849091', '17.952721', '161.725601', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135643', 1135643, '286.915314', '19.626829', '172.441101', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135645', 1135645, '295.765594', '16.383280', '167.437195', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1135646', 1135646, '318.979004', '13.831220', '155.957001', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1135647', 1135647, '290.314087', '17.922770', '159.804199', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1135651', 1135651, '-262.056305', '55.970860', '36.748020', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135671', 1135671, '-462.059692', '64.698357', '68.829857', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1135673', 1135673, '-398.458893', '51.156910', '68.804077', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83602, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1135685', 1135685, '-418.844910', '58.274151', '-34.409142', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135687', 1135687, '-520.153870', '65.239517', '61.102520', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80888, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1135688', 1135688, '-508.781586', '65.293297', '40.634731', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81432, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1135931', 1135931, '272.581390', '23.939560', '195.025894', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135933', 1135933, '241.474594', '24.000601', '179.914902', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135937', 1135937, '-101.839104', '-40.043732', '299.745911', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1135938', 1135938, '-105.816902', '-40.028461', '306.239807', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1135939', 1135939, '-90.198776', '-40.129551', '324.673096', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1135940', 1135940, '-94.585022', '-40.032150', '311.676514', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1135941', 1135941, '-114.854698', '-40.054981', '302.937286', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135942', 1135942, '-97.734077', '-40.054981', '304.310608', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135943', 1135943, '-102.695999', '-40.032539', '320.445892', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1135944', 1135944, '-83.087273', '-39.867889', '327.616211', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162337', 1162337, '283.977112', '-6.509701', '-148.452805', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162338', 1162338, '281.871399', '-6.690229', '-150.039703', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162341', 1162341, '315.751801', '-4.718813', '-109.327103', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162344', 1162344, '309.980103', '1.983368', '92.979958', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162345', 1162345, '337.067413', '3.266761', '71.050873', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162348', 1162348, '130.357803', '-6.759793', '57.419651', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162351', 1162351, '222.430695', '-7.827925', '-60.441029', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162352', 1162352, '227.527206', '-7.187046', '-66.727753', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162353', 1162353, '203.082306', '-7.339636', '-68.925049', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162354', 1162354, '221.484604', '-7.400672', '-64.011642', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162358', 1162358, '-19.657080', '0.269221', '-140.150803', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1162368', 1162368, '112.853699', '-26.954611', '251.195801', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162369', 1162369, '89.158417', '-24.246630', '236.957306', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162371', 1162371, '217.547806', '-31.967699', '395.895294', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162374', 1162374, '-2.485424', '-31.687981', '451.364502', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162376', 1162376, '-10.696620', '-34.134480', '443.381287', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162378', 1162378, '-23.636271', '-35.911461', '462.485596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162380', 1162380, '-61.417610', '-36.118149', '490.745300', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162384', 1162384, '-4.128872', '-28.294901', '327.096588', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1162385', 1162385, '-48.920349', '-35.910400', '310.262909', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1162386', 1162386, '-66.916382', '-32.083370', '343.644196', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1162387', 1162387, '-65.420998', '-31.630421', '353.013306', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1162390', 1162390, '-298.542786', '20.650921', '132.768707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162391', 1162391, '-294.392303', '20.060690', '130.388306', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162392', 1162392, '-296.020508', '20.999870', '168.359299', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162393', 1162393, '-297.016907', '20.876789', '122.239998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162394', 1162394, '-208.026505', '3.601872', '2.164479', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162398', 1162398, '-396.566711', '63.980961', '-218.615997', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1162399', 1162399, '-347.955994', '66.968529', '-220.251999', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1162402', 1162402, '-291.152710', '61.247379', '-168.828796', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1162403', 1162403, '-351.183289', '63.740372', '-153.645599', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162412', 1162412, '-365.503204', '62.324249', '-85.497841', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162413', 1162413, '-365.240814', '62.204288', '-87.690971', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162416', 1162416, '-353.685791', '63.380310', '-149.922501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1162426', 1162426, '-501.091003', '65.293297', '90.318100', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1162427', 1162427, '-534.918823', '65.381104', '43.912449', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81160, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1180878', 1180878, '104.639297', '-8.000016', '-91.168152', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1180879', 1180879, '105.168701', '-8.000016', '-94.222618', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1180880', 1180880, '106.210297', '-8.000016', '-96.527153', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1183451', 1183451, '104.347603', '-8.000016', '-88.522499', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1183452', 1183452, '101.512100', '-8.064646', '-97.812950', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1183453', 1183453, '100.580399', '-8.000016', '-95.459229', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1183454', 1183454, '99.803108', '-8.184623', '-92.716454', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1183455', 1183455, '99.192757', '-8.361253', '-89.878258', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234346, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1183456', 1183456, '96.327393', '-8.500061', '-99.385361', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1183458', 1183458, '95.550194', '-8.460118', '-96.840134', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1183459', 1183459, '94.825958', '-8.500061', '-93.978119', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1183460', 1183460, '94.179993', '-8.500061', '-90.982887', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1408325', 1408325, '107.492897', '15.984340', '-270.054596', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1408329', 1408329, '119.554398', '17.410500', '-259.693298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1408332', 1408332, '111.600800', '16.549120', '-248.298096', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1408334', 1408334, '117.813103', '17.697479', '-247.780807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1408341', 1408341, '111.814400', '16.758829', '-244.880096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1408351', 1408351, '86.796638', '15.940370', '-262.601105', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1408352', 1408352, '68.921707', '16.132620', '-262.037811', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1408353', 1408353, '68.168861', '16.760660', '-264.307190', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1408357', 1408357, '72.243088', '10.935070', '-243.492706', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1408358', 1408358, '87.101822', '15.245950', '-260.648010', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221122, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410560', 1410560, '103.350998', '14.389260', '-254.875107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410688', 1410688, '50.217388', '6.559038', '-223.468399', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410689', 1410689, '39.352970', '4.053384', '-182.513199', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410690', 1410690, '37.860909', '3.934789', '-183.153900', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410691', 1410691, '55.661430', '4.710185', '-183.981201', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1410693', 1410693, '-1.083989', '1.339663', '-188.567398', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219478, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1410694', 1410694, '0.474049', '1.531124', '-191.204697', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219206, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1410695', 1410695, '8.437746', '1.980624', '-176.756195', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218934, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1410696', 1410696, '-15.013690', '1.551492', '-198.619598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218662, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1410698', 1410698, '7.450444', '1.514552', '-190.764694', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410699', 1410699, '8.438234', '3.222636', '-146.234497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410700', 1410700, '14.477130', '3.104484', '-138.479904', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410701', 1410701, '16.068541', '3.373573', '-139.535202', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217574, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1410703', 1410703, '-15.113390', '3.146425', '-233.722000', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217302, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1410704', 1410704, '-4.948251', '4.778366', '-234.155304', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217030, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1410705', 1410705, '8.210199', '5.748120', '-247.337402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1410707', 1410707, '9.591916', '5.570471', '-251.132996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216498, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410708', 1410708, '5.815275', '5.237663', '-249.501099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216226, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410709', 1410709, '-9.906527', '3.594761', '-217.097595', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215954, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410712', 1410712, '-13.648660', '3.344659', '-231.383408', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215682, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410714', 1410714, '-30.136610', '0.909592', '-224.200897', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1410715', 1410715, '48.355789', '9.194451', '-243.366196', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1410716', 1410716, '74.908539', '4.285552', '-211.076706', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1410851', 1410851, '88.732697', '4.082766', '-185.738998', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215138, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410853', 1410853, '130.975204', '4.971314', '-185.109497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214866, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410976', 1410976, '131.470093', '2.068069', '-173.581100', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214594, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410977', 1410977, '107.495903', '0.653863', '-168.558304', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214322, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410978', 1410978, '142.190598', '1.204836', '-160.400803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214050, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410979', 1410979, '148.032898', '0.649221', '-123.475403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213778, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410982', 1410982, '166.648804', '-1.181116', '-137.457901', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213506, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410983', 1410983, '178.145996', '-1.608972', '-140.621307', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213228, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1410984', 1410984, '168.844696', '2.701761', '-163.503296', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212962, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410990', 1410990, '199.114899', '-0.803801', '-174.853195', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212684, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1410996', 1410996, '202.197205', '-1.697314', '-172.655899', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212418, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410998', 1410998, '239.098404', '-2.190103', '-187.159805', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212146, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1410999', 1410999, '221.515396', '-6.264487', '-154.155502', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211874, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411000', 1411000, '227.837204', '-8.126032', '-125.948700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211602, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411003', 1411003, '174.579300', '-1.892151', '-102.278099', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411004', 1411004, '182.699707', '-4.339209', '-88.384857', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211058, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411005', 1411005, '161.154007', '4.078132', '-169.399704', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411032', 1411032, '271.173798', '-9.203460', '-119.877403', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411034', 1411034, '330.082886', '-2.640436', '-152.968796', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173790, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411036', 1411036, '305.867188', '-2.983790', '-188.262894', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411037', 1411037, '302.815399', '-3.417479', '-190.063507', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411038', 1411038, '283.192108', '-6.780017', '-171.401596', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411042', 1411042, '287.338715', '-5.114256', '-195.320007', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411049', 1411049, '276.640594', '-8.026556', '-141.155594', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411065', 1411065, '308.725311', '-4.528103', '-80.785583', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184948, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(237, 'e0012', 'bnpc1411066', 1411066, '311.802795', '-5.117999', '-76.683037', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411069', 1411069, '291.112213', '-5.409167', '-79.667397', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411071', 1411071, '346.714203', '-3.206666', '-41.466160', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411078', 1411078, '264.779999', '-11.621630', '-65.637466', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183878, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411084', 1411084, '234.546997', '-11.793010', '-2.134793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183606, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411085', 1411085, '250.625107', '-8.387555', '28.634951', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183334, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411086', 1411086, '313.420288', '-6.097115', '16.095341', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183038, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411087', 1411087, '314.703308', '-5.599903', '20.012140', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182766, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411119', 1411119, '309.285095', '2.975462', '97.764503', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182494, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411120', 1411120, '326.314087', '2.426137', '90.012917', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182222, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411121', 1411121, '371.612488', '7.304699', '55.979481', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411124', 1411124, '375.810211', '7.175481', '51.219879', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411135', 1411135, '420.071991', '5.244238', '-35.509991', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411136', 1411136, '417.919312', '5.091386', '-39.660309', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411137', 1411137, '425.005402', '6.439638', '-41.263420', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411148', 1411148, '449.318512', '32.509201', '-8.551085', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170556, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411152', 1411152, '505.440613', '42.969250', '-25.847120', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170284, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411155', 1411155, '511.920410', '44.121750', '-42.307079', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171644, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411157', 1411157, '502.891510', '43.241459', '-46.006001', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171372, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411159', 1411159, '481.475494', '41.105301', '-9.940406', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171100, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411160', 1411160, '484.982300', '41.536228', '-12.749530', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171916, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411162', 1411162, '201.709000', '-7.309118', '-73.014473', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181134, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411163', 1411163, '206.805496', '-9.964188', '-16.037279', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180862, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411164', 1411164, '183.550705', '-8.560358', '-4.379386', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180590, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411167', 1411167, '127.300301', '-5.901662', '12.460290', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180318, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411170', 1411170, '92.851097', '-4.928711', '4.867581', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180046, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411171', 1411171, '127.489098', '-7.126010', '58.609852', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179774, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411173', 1411173, '216.815399', '-9.170719', '-44.144390', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411174', 1411174, '218.066605', '-9.475899', '-42.282791', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411176', 1411176, '184.252594', '-8.621394', '-0.259450', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411178', 1411178, '102.749901', '-11.800030', '112.244499', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411179', 1411179, '107.205597', '-7.793041', '74.349869', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411180', 1411180, '84.061897', '-6.851347', '16.464439', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411181', 1411181, '84.336563', '-6.698757', '13.137970', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411182', 1411182, '275.292297', '23.606110', '190.161697', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411186', 1411186, '288.694397', '21.579050', '187.354996', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177344, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411187', 1411187, '286.440796', '21.978689', '190.167206', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177072, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411193', 1411193, '237.018204', '23.458019', '156.614304', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176800, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411197', 1411197, '211.473099', '23.453070', '169.805405', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176528, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411198', 1411198, '209.800598', '23.457560', '211.348297', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176256, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411202', 1411202, '205.811798', '24.000139', '204.175003', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175984, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411203', 1411203, '226.011993', '23.536930', '175.448105', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175712, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411206', 1411206, '227.024994', '24.063431', '228.666702', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175440, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411207', 1411207, '224.858200', '23.422550', '230.009598', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175168, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411208', 1411208, '234.736603', '23.544621', '214.365707', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411210', 1411210, '233.020493', '23.453070', '214.312897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411213', 1411213, '213.946701', '23.453070', '226.459106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411214', 1411214, '211.749405', '23.453070', '228.168106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411218', 1411218, '228.444595', '23.457581', '165.045898', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411220', 1411220, '382.833496', '13.565220', '79.972481', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159876, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411222', 1411222, '374.288513', '12.161390', '84.031380', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158516, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411223', 1411223, '409.964111', '18.326040', '60.501968', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159604, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411225', 1411225, '411.001709', '26.138660', '123.399696', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158788, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411227', 1411227, '436.179108', '32.211750', '101.823402', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159060, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411228', 1411228, '439.383514', '32.761070', '98.649529', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157972, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411233', 1411233, '-58.666859', '-4.080153', '-116.513397', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134082, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411234', 1411234, '-111.996201', '6.549166', '-145.525208', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411235', 1411235, '-123.994698', '12.085680', '-163.495407', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411236', 1411236, '-120.946297', '10.817430', '-167.745193', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411237', 1411237, '-179.948700', '2.732331', '-103.572197', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1411238', 1411238, '-212.568405', '1.504992', '-84.178993', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97676, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(237, 'e0012', 'bnpc1411240', 1411240, '-212.756607', '1.846313', '-94.163452', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96316, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(237, 'e0012', 'bnpc1411241', 1411241, '-214.172699', '1.359615', '-82.278023', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96044, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(237, 'e0012', 'bnpc1411242', 1411242, '-213.856293', '1.439267', '-83.871033', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96588, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(237, 'e0012', 'bnpc1411244', 1411244, '-193.905304', '2.125694', '-41.069290', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97948, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(237, 'e0012', 'bnpc1411253', 1411253, '-56.382130', '-4.928711', '-94.529694', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411254', 1411254, '-20.293131', '-2.590379', '-100.341103', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411255', 1411255, '-23.246990', '0.393718', '-138.153305', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411256', 1411256, '-59.128750', '0.758792', '-164.202393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411655', 1411655, '-92.954361', '1.786075', '-122.393898', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411656', 1411656, '-93.869904', '1.736482', '-119.067497', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411657', 1411657, '-109.805397', '6.718060', '-150.029800', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411658', 1411658, '-176.756607', '2.961861', '-114.443398', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1411659', 1411659, '-205.790604', '2.068845', '-61.951530', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412058', 1412058, '-196.154800', '1.939114', '-25.589430', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412059', 1412059, '-163.822601', '0.087921', '-11.411790', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412062', 1412062, '71.492859', '-11.893120', '161.389404', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412463', 1412463, '107.728401', '-8.259025', '159.304703', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412464', 1412464, '108.796501', '-7.985859', '156.375000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412465', 1412465, '45.309830', '-13.145570', '164.612595', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412467', 1412467, '86.263412', '-10.238450', '166.918396', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412470', 1412470, '43.860840', '-19.453880', '194.128098', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412471', 1412471, '40.686970', '-20.436541', '199.194107', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412474', 1412474, '83.274986', '-19.705959', '207.342194', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412475', 1412475, '56.498798', '-24.125010', '265.742401', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412476', 1412476, '56.595661', '-23.666790', '269.184387', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412477', 1412477, '67.313408', '-23.280479', '279.101715', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412478', 1412478, '130.256897', '-28.458679', '285.610504', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412480', 1412480, '84.874817', '-11.151300', '170.539902', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412482', 1412482, '48.863239', '-15.723400', '175.131393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412483', 1412483, '91.596550', '-15.216650', '191.087204', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412484', 1412484, '40.536888', '-24.919319', '239.885193', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412486', 1412486, '12.541730', '-30.409491', '274.885712', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412488', 1412488, '84.885887', '-24.795959', '238.330597', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412489', 1412489, '100.537003', '-25.090691', '289.606689', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412890', 1412890, '192.974106', '-32.093040', '371.993805', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412891', 1412891, '174.770096', '-30.985760', '392.154999', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412892', 1412892, '169.164200', '-29.940310', '393.395111', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412893', 1412893, '172.161407', '-30.924379', '389.056885', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412894', 1412894, '171.285507', '-29.285271', '402.230988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412895', 1412895, '154.779907', '-26.129629', '405.514008', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412896', 1412896, '168.913696', '-28.561871', '440.527588', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412897', 1412897, '173.811401', '-24.163700', '462.640015', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412898', 1412898, '172.581100', '-23.212021', '466.157715', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412900', 1412900, '157.804596', '-31.533340', '347.603088', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412901', 1412901, '181.335403', '-32.472290', '364.442596', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412902', 1412902, '173.037506', '-29.813890', '400.369385', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412903', 1412903, '215.503098', '-32.150810', '397.756897', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412904', 1412904, '151.140594', '-25.314760', '448.172699', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1412905', 1412905, '174.771194', '-22.925610', '465.693207', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413304', 1413304, '-10.375770', '-30.070101', '357.174011', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120482, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1413305', 1413305, '-73.187973', '-29.638651', '377.182007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120210, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1413306', 1413306, '7.099501', '-28.323009', '389.698700', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119938, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1413307', 1413307, '-25.474409', '-30.239300', '288.173004', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413309', 1413309, '2.871708', '-26.996679', '314.962891', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413310', 1413310, '-43.682961', '-31.251160', '365.171295', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413311', 1413311, '-60.904331', '-32.109970', '348.252411', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413312', 1413312, '-26.264040', '-32.967579', '411.424805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413711', 1413711, '1.843092', '-32.621689', '440.420288', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413712', 1413712, '-47.684052', '-34.975368', '436.820007', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413713', 1413713, '-62.874069', '-35.826691', '451.367706', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413714', 1413714, '-36.040771', '-30.235821', '405.258087', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413715', 1413715, '-77.531143', '-35.740108', '463.920013', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413716', 1413716, '-81.834183', '-35.561951', '465.537415', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413717', 1413717, '-81.132263', '-36.687901', '482.108704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413718', 1413718, '-64.000313', '-36.181229', '492.846497', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413719', 1413719, '-45.209900', '-36.768280', '469.442810', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413721', 1413721, '-49.479870', '-31.658331', '420.700195', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413723', 1413723, '-61.146591', '-34.546021', '439.197601', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413724', 1413724, '-12.636190', '-34.818890', '433.701904', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413725', 1413725, '-21.261789', '-35.776421', '463.813293', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1413726', 1413726, '-80.766037', '-35.860481', '467.917786', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1414923', 1414923, '-251.624496', '8.046767', '9.209213', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1414924', 1414924, '-237.355103', '14.172800', '56.681469', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1414925', 1414925, '-240.865097', '13.064570', '51.144550', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1414928', 1414928, '-261.738007', '16.472500', '59.800060', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1414929', 1414929, '-271.273499', '19.264000', '95.431259', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1414931', 1414931, '-299.224915', '20.999870', '171.197403', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1414932', 1414932, '-335.657013', '21.199930', '166.262405', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1414935', 1414935, '-333.186493', '21.314899', '161.005798', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1414936', 1414936, '-351.155914', '21.194731', '192.767197', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1414938', 1414938, '-239.843002', '7.295271', '0.194433', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1415337', 1415337, '-263.631592', '17.193020', '61.247459', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1415339', 1415339, '-340.596497', '21.199930', '161.368500', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1415340', 1415340, '-332.306000', '21.000000', '208.378098', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1415341', 1415341, '-328.043915', '21.000000', '211.118393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1415342', 1415342, '-292.652802', '20.981110', '203.265396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1415343', 1415343, '-87.174072', '-39.921982', '291.489105', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1415344', 1415344, '-112.985397', '-40.020420', '312.799713', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1415345', 1415345, '-86.737244', '-40.184792', '302.023285', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1415346', 1415346, '-116.616600', '-40.014709', '309.506805', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1415347', 1415347, '-244.678497', '66.147812', '-179.125702', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1415348', 1415348, '-241.352005', '66.788689', '-178.362701', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1415352', 1415352, '-351.735809', '67.765259', '-226.093002', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1415353', 1415353, '-354.085602', '67.313278', '-222.043106', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1415354', 1415354, '-354.115387', '66.529556', '-254.235596', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1415358', 1415358, '-429.221008', '60.624039', '-145.159103', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1415359', 1415359, '-431.571014', '61.023251', '-141.100204', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1415360', 1415360, '-409.323303', '61.264919', '-120.927803', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1415361', 1415361, '-290.298706', '60.229500', '-115.695396', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1415364', 1415364, '-313.710297', '62.882381', '-46.982571', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1415365', 1415365, '-308.186493', '62.943420', '-50.370079', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72208, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1415367', 1415367, '-304.768494', '62.180470', '-99.076874', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72480, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1415368', 1415368, '-275.257507', '60.807152', '-84.214577', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71664, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1415375', 1415375, '-262.012695', '62.577202', '-39.993938', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1415376', 1415376, '-417.990387', '64.377762', '-51.102509', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1415377', 1415377, '-416.159302', '65.476410', '-55.924358', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1415378', 1415378, '-446.097504', '57.907940', '-22.476589', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1415379', 1415379, '-454.154297', '61.631142', '-28.213980', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1415381', 1415381, '-285.852814', '61.458679', '25.148211', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1415382', 1415382, '-414.267212', '60.471451', '-98.405472', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1415383', 1415383, '-462.152802', '62.699409', '-106.490501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1415384', 1415384, '-465.866913', '62.824699', '-107.035797', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1416355', 1416355, '184.649399', '-7.461709', '-54.703640', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173518, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc1418012', 1418012, '397.388092', '18.876289', '87.758537', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149848, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc1418013', 1418013, '272.692596', '-2.411928', '61.854092', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150120, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154901', 2154901, '-288.593994', '59.581390', '-121.735901', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64604, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2154903', 2154903, '-303.822388', '59.830570', '-130.571503', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2154910', 2154910, '-290.943787', '61.814331', '-175.341400', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64876, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2154912', 2154912, '-384.725800', '64.377808', '-230.792694', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2154914', 2154914, '-416.247894', '61.594559', '-135.801102', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2154915', 2154915, '-397.116089', '56.778770', '-87.632607', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2154916', 2154916, '-408.031494', '53.104481', '35.133572', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2154917', 2154917, '-274.891388', '62.760250', '-48.600040', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2154925', 2154925, '-365.255188', '56.015820', '61.905800', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2154932', 2154932, '-452.140106', '63.523258', '-235.614594', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92276, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154933', 2154933, '-486.564514', '58.060532', '-222.186707', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154938', 2154938, '-449.027313', '55.863232', '-205.401703', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91732, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154939', 2154939, '-453.788086', '56.259960', '-203.845306', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91460, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154940', 2154940, '-449.607086', '55.100281', '-200.518799', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91188, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154941', 2154941, '-459.128693', '64.652428', '-264.026886', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154943', 2154943, '-483.543213', '58.182598', '-215.136993', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90112, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154944', 2154944, '-488.316101', '67.415604', '-265.598907', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154945', 2154945, '-487.007385', '67.617432', '-267.616608', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90916, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154950', 2154950, '-508.114197', '73.937157', '-289.616486', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154952', 2154952, '-505.210999', '72.800743', '-287.708893', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154954', 2154954, '-475.800293', '75.099243', '-316.311890', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88486, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154959', 2154959, '-474.076904', '71.450668', '-300.198914', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154963', 2154963, '-481.180389', '74.270866', '-319.393005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88752, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154965', 2154965, '-509.328613', '51.460609', '-230.011002', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154966', 2154966, '-530.510376', '48.020088', '-245.654999', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87670, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154968', 2154968, '-550.774414', '46.775639', '-245.014099', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154969', 2154969, '-546.684998', '46.860470', '-244.251205', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154970', 2154970, '-545.647400', '50.522579', '-203.540100', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154971', 2154971, '-547.356384', '51.163448', '-199.786407', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154973', 2154973, '-572.310486', '49.567921', '-226.453506', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90644, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154974', 2154974, '-564.080322', '50.297001', '-211.993607', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154976', 2154976, '-508.251099', '57.374981', '-255.303207', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154978', 2154978, '-533.645081', '43.546291', '-230.397507', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2154980', 2154980, '-468.316010', '57.494301', '-212.252502', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2154982', 2154982, '-485.247803', '68.405968', '-274.754211', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2154983', 2154983, '-505.135406', '73.043167', '-290.313904', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2154985', 2154985, '-528.526672', '48.142170', '-244.495300', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2154986', 2154986, '-568.407227', '50.556568', '-214.304596', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320574', 2320574, '261.921387', '1.753539', '-223.409698', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210786, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320575', 2320575, '261.238495', '0.534709', '-243.419296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210508, 7, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(237, 'e0012', 'bnpc2320576', 2320576, '263.797699', '1.764011', '-223.470901', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320577', 2320577, '259.453186', '1.043279', '-240.840607', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320579', 2320579, '274.919800', '-1.072963', '-256.170593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209698, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320580', 2320580, '300.060089', '-0.888014', '-307.572510', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320581', 2320581, '324.245514', '-1.093548', '-288.072113', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320582', 2320582, '298.274811', '-0.855762', '-304.993805', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320583', 2320583, '325.011292', '-1.286943', '-316.835388', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208610, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320584', 2320584, '287.788513', '-0.475198', '-298.277313', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208338, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320585', 2320585, '329.843903', '-0.745502', '-290.159698', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320586', 2320586, '325.924103', '-0.928046', '-285.067993', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320587', 2320587, '327.193207', '-1.286943', '-313.833496', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207522, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320588', 2320588, '337.177185', '0.441468', '-264.191803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207250, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320589', 2320589, '332.682892', '0.959346', '-254.439896', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206978, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320590', 2320590, '329.305206', '0.991071', '-252.106293', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206706, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320591', 2320591, '304.253815', '-0.643113', '-258.978912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320596', 2320596, '346.493591', '-0.483981', '-328.131287', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206162, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320597', 2320597, '302.790710', '-1.010156', '-352.830505', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320598', 2320598, '273.957489', '-0.689871', '-328.818512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205618, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320599', 2320599, '268.469910', '-0.593068', '-327.086395', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205346, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320600', 2320600, '267.525513', '-0.806307', '-329.538208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205074, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320601', 2320601, '276.737091', '0.547026', '-314.840912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320610', 2320610, '288.781494', '-1.187131', '-281.665588', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320612', 2320612, '330.290802', '-1.286943', '-344.531311', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320617', 2320617, '92.850220', '-10.902450', '173.235596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320637', 2320637, '-108.605698', '-30.528610', '272.296295', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320638', 2320638, '-138.649902', '-23.382610', '264.698212', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320639', 2320639, '-99.474327', '-30.263571', '271.854614', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320641', 2320641, '-170.286606', '-27.619471', '297.813995', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320642', 2320642, '-171.781998', '-27.505461', '288.445007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320643', 2320643, '-165.769897', '-27.707670', '293.053192', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320645', 2320645, '-125.383400', '-25.040100', '360.402802', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320646', 2320646, '-137.475906', '-27.672729', '336.516113', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320647', 2320647, '-141.819901', '-30.193661', '309.942688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320649', 2320649, '-59.102539', '-28.549570', '296.388702', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320650', 2320650, '277.147400', '-31.644880', '389.827209', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320651', 2320651, '250.690399', '-30.350241', '408.346588', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106362, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320652', 2320652, '274.666290', '-31.273550', '391.993988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320654', 2320654, '299.640686', '-31.632290', '402.348511', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320655', 2320655, '300.434814', '-32.791679', '411.978302', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320656', 2320656, '342.732788', '-31.784590', '408.346588', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320658', 2320658, '308.735687', '-32.272881', '398.214600', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320659', 2320659, '329.910309', '-31.601860', '408.307800', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320660', 2320660, '332.175415', '-31.647480', '410.657013', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320661', 2320661, '344.838593', '-31.113190', '440.115906', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320664', 2320664, '144.316299', '-22.573250', '513.925293', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320665', 2320665, '141.166702', '-21.478600', '518.533508', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320666', 2320666, '165.008896', '-23.196131', '497.355591', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320667', 2320667, '137.956802', '-21.858990', '489.646698', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103642, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320668', 2320668, '130.324295', '-19.810080', '417.345490', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320669', 2320669, '98.407799', '-20.697760', '221.536407', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320671', 2320671, '97.314743', '-11.800020', '101.237198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320675', 2320675, '135.972794', '-11.800140', '133.207794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320678', 2320678, '185.468796', '-11.800210', '106.268402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320683', 2320683, '188.220001', '-11.825790', '62.851860', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320688', 2320688, '201.678406', '-11.795270', '23.117371', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320694', 2320694, '260.142914', '-12.002980', '-90.756157', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320695', 2320695, '258.451996', '-12.002920', '-92.319710', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320696', 2320696, '257.085999', '-12.006830', '-154.938705', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320697', 2320697, '264.474091', '-12.313630', '-187.969193', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320721', 2320721, '396.475098', '20.645411', '107.225098', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159332, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320722', 2320722, '419.413391', '27.114370', '102.443001', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158244, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320725', 2320725, '-159.887802', '18.109520', '-68.195572', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320727', 2320727, '-170.536102', '27.551260', '-85.891403', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320728', 2320728, '-170.885803', '27.966640', '-89.178688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320732', 2320732, '-547.753174', '19.485781', '-191.943298', 30, 0, 0, 0, 2, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63894, 1, 0, 0, 0, 0, 0, 4302234, 0, 0), +(237, 'e0012', 'bnpc2320790', 2320790, '-439.475098', '48.996670', '43.930679', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320791', 2320791, '-432.144196', '49.318508', '-4.165760', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2320793', 2320793, '-242.034393', '58.664711', '38.845100', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320794', 2320794, '-206.227997', '57.382519', '52.006420', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320797', 2320797, '-193.570099', '74.743111', '21.367661', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320800', 2320800, '-238.635895', '62.272018', '25.375710', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2320801', 2320801, '-219.805405', '67.608017', '9.079071', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2341782', 2341782, '345.014008', '-1.078350', '-177.896896', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2341783', 2341783, '319.296997', '-0.849605', '-171.347198', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2341784', 2341784, '292.707397', '-6.651216', '-123.136101', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2341785', 2341785, '347.310486', '6.679530', '84.092422', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2341786', 2341786, '354.267487', '5.193762', '60.841671', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2341787', 2341787, '348.283203', '3.086715', '49.707630', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2603191', 2603191, '256.015594', '-11.793030', '-185.891006', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164850, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2603192', 2603192, '260.232605', '-11.793140', '-180.095505', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164578, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612552', 2612552, '252.195404', '-11.793090', '-145.885406', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164306, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612553', 2612553, '254.433395', '-11.793010', '-113.328796', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164034, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612554', 2612554, '258.838715', '-11.793140', '-73.879280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163762, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612555', 2612555, '233.580307', '-11.793010', '-18.570280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163490, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612556', 2612556, '216.695099', '-11.793000', '8.959249', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163218, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612557', 2612557, '212.512299', '-11.795270', '12.741240', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162946, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612559', 2612559, '120.048798', '-11.800060', '124.326401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162680, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612561', 2612561, '191.515900', '-11.856310', '51.102409', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162408, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612562', 2612562, '189.768997', '-11.800210', '71.478256', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162136, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612563', 2612563, '192.239395', '-11.800030', '91.385788', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161864, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612564', 2612564, '179.480606', '-11.800260', '106.735802', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161592, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612565', 2612565, '165.069794', '-11.800630', '119.881798', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161320, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612566', 2612566, '146.988297', '-11.800000', '126.311401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161048, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612569', 2612569, '132.474792', '-11.800090', '139.979294', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160776, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612570', 2612570, '250.133804', '-11.793030', '-55.898849', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160498, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612571', 2612571, '205.980301', '-11.772920', '33.134300', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160226, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612573', 2612573, '421.064514', '24.757450', '78.823257', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2612574', 2612574, '428.320709', '31.721590', '124.805603', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157428, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2615184', 2615184, '360.341705', '-32.028728', '435.294006', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2615186', 2615186, '375.478699', '-32.089771', '448.966095', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2615187', 2615187, '382.955597', '-31.998211', '440.878815', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc2615503', 2615503, '253.211594', '-11.793080', '-161.360504', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154514, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc2615504', 2615504, '253.937607', '-11.793030', '-68.861298', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154242, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3693097', 3693097, '-224.085602', '1.055553', '-69.316994', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(237, 'e0012', 'bnpc3693102', 3693102, '-195.941101', '2.945007', '-104.081802', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96860, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(237, 'e0012', 'bnpc3693103', 3693103, '-189.283005', '2.362727', '-83.005783', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97404, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(237, 'e0012', 'bnpc3693105', 3693105, '-210.620300', '1.998901', '-96.299683', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95500, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(237, 'e0012', 'bnpc3693109', 3693109, '-195.513901', '2.216981', '-40.186169', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95228, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(237, 'e0012', 'bnpc3693111', 3693111, '-200.096695', '2.060742', '-67.256340', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(237, 'e0012', 'bnpc3693121', 3693121, '368.459503', '-32.364429', '413.199005', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3693136', 3693136, '242.206406', '-30.411280', '402.182007', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3693138', 3693138, '225.451996', '-28.488640', '423.605713', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3693140', 3693140, '215.350494', '-32.486500', '387.777496', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3693173', 3693173, '-508.842590', '40.237991', '-79.606361', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3693174', 3693174, '-516.899414', '40.146439', '-74.967621', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3693175', 3693175, '-514.549500', '40.207470', '-77.103882', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85228, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3693176', 3693176, '-520.866821', '40.146439', '-64.255783', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3693177', 3693177, '-515.685120', '40.359970', '-54.677021', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3693178', 3693178, '-503.929199', '41.000938', '-56.107471', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3693179', 3693179, '-483.658691', '45.245129', '-60.343559', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3693180', 3693180, '-481.533905', '45.933941', '-62.817669', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3693183', 3693183, '-378.957794', '51.132931', '52.109509', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3693184', 3693184, '-397.512787', '49.301849', '10.055650', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3693185', 3693185, '-433.121094', '49.318531', '34.558170', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3693188', 3693188, '-322.396393', '57.338970', '-6.726664', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65686, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3693623', 3693623, '-184.619797', '78.429970', '42.778721', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3693624', 3693624, '-191.994202', '77.183746', '37.510250', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72746, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3694403', 3694403, '-314.266113', '63.832611', '57.746510', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3742079', 3742079, '-530.733887', '65.311684', '98.466423', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3742133', 3742133, '-526.186829', '65.311691', '102.647400', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3742194', 3742194, '48.050610', '-11.800030', '-40.915428', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153976, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3742195', 3742195, '22.187790', '-11.800000', '-69.750504', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153704, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3742196', 3742196, '15.168640', '-11.800000', '-75.762558', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153432, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3742197', 3742197, '6.348711', '-11.800040', '-110.540199', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153160, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3742198', 3742198, '-54.153049', '-3.500003', '-186.530106', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152888, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3742199', 3742199, '-50.919399', '-3.500001', '-182.895996', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152616, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3742200', 3742200, '-69.779549', '-3.500144', '-196.820496', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152344, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3742201', 3742201, '-62.272110', '-3.500066', '-207.843399', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152072, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3742202', 3742202, '2.735321', '-11.800110', '-122.937599', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151782, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3742203', 3742203, '-6.886642', '-3.500000', '-135.990402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3742204', 3742204, '-6.586641', '-3.500000', '-139.267899', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3742205', 3742205, '-36.719379', '-3.500000', '-180.416794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150966, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3742206', 3742206, '-48.687111', '-3.500072', '-207.096298', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150694, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3746465', 3746465, '-208.691696', '52.495350', '-42.669102', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71120, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3746466', 3746466, '-219.824799', '58.286751', '-60.483898', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3746467', 3746467, '-215.491898', '57.635231', '-71.491089', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70576, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3869502', 3869502, '125.699600', '25.160120', '-311.621185', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41108, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(237, 'e0012', 'bnpc3869509', 3869509, '-307.502899', '63.448620', '-285.687714', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40842, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(237, 'e0012', 'bnpc3869525', 3869525, '-206.130997', '53.564651', '-126.977600', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40564, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(237, 'e0012', 'bnpc3869531', 3869531, '96.403351', '-6.334397', '-121.433502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40298, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(237, 'e0012', 'bnpc3869540', 3869540, '164.007095', '-6.013201', '-52.486290', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.750000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40020, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(237, 'e0012', 'bnpc3869598', 3869598, '-4.837158', '-7.919495', '-22.201900', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39760, 5, 0, 20, 0, 0, 30055, 0, 0, 0), +(237, 'e0012', 'bnpc3869604', 3869604, '85.465698', '-6.089244', '60.991131', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39482, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(237, 'e0012', 'bnpc3869607', 3869607, '14.362120', '-8.102512', '100.498901', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39204, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(237, 'e0012', 'bnpc3877513', 3877513, '121.019203', '24.917931', '-304.463287', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204518, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc3884907', 3884907, '-419.228607', '55.416000', '66.506737', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3897658', 3897658, '117.021400', '25.101040', '-311.604492', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204258, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc3898007', 3898007, '132.524597', '24.948450', '-305.562012', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203974, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc4083772', 4083772, '-327.757690', '21.357790', '204.228699', 58, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 5782, 1, 0, 0, 0, 0, 0, 4083771, 0, 0), +(237, 'e0012', 'bnpc4083778', 4083778, '-297.044800', '21.140360', '151.049896', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 8174, 1, 0, 0, 0, 0, 0, 4083775, 0, 0), +(237, 'e0012', 'bnpc4083795', 4083795, '-327.840088', '21.103210', '206.835907', 58, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6054, 1, 0, 0, 0, 0, 0, 4083794, 0, 0), +(237, 'e0012', 'bnpc4083796', 4083796, '-296.744812', '21.145109', '151.349899', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7662, 1, 0, 0, 0, 0, 0, 4083797, 0, 0), +(237, 'e0012', 'bnpc4083798', 4083798, '-296.444794', '21.149870', '151.649902', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7278, 1, 0, 0, 0, 0, 0, 4083799, 0, 0), +(237, 'e0012', 'bnpc4083800', 4083800, '-296.144806', '21.154619', '151.949905', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6894, 1, 0, 0, 0, 0, 0, 4083801, 0, 0), +(237, 'e0012', 'bnpc4083802', 4083802, '-295.844788', '21.159370', '152.249893', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6510, 1, 0, 0, 0, 0, 0, 4083803, 0, 0), +(237, 'e0012', 'bnpc4083871', 4083871, '127.641701', '-6.332520', '-100.389198', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38544, 8, 0, 0, 4295658, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4295672', 4295672, '132.951797', '-6.332520', '-100.114502', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37512, 8, 0, 0, 4295661, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4295673', 4295673, '137.910706', '-6.438695', '-96.608414', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37240, 8, 0, 0, 4295662, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4295675', 4295675, '126.695297', '-6.948534', '-90.459633', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36968, 8, 0, 0, 4295663, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4295677', 4295677, '126.418900', '-6.971872', '-84.529358', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36696, 8, 0, 0, 4295664, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4296957', 4296957, '95.628906', '-2.029270', '-42.382439', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35816, 1, 0, 0, 2280260, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4296958', 4296958, '98.693558', '-2.029731', '-43.942860', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35544, 1, 0, 0, 2280261, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4296959', 4296959, '101.467598', '-2.005454', '-46.176739', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35272, 1, 0, 0, 2280262, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4296960', 4296960, '104.146896', '-1.968804', '-48.332958', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35000, 1, 0, 0, 2280263, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302206', 4302206, '-555.148071', '29.067560', '-230.785706', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302207', 4302207, '-516.437683', '22.056881', '-221.606796', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302208', 4302208, '-524.244812', '24.477020', '-253.274597', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302209', 4302209, '-527.577820', '24.719191', '-254.932404', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302212', 4302212, '-582.818420', '21.723471', '-238.845596', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302213', 4302213, '-596.266602', '20.622200', '-226.349106', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302214', 4302214, '-579.272827', '21.076719', '-214.966003', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302215', 4302215, '-581.780823', '21.842831', '-241.897293', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302216', 4302216, '-528.772888', '19.922779', '-195.839096', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61374, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302217', 4302217, '-537.197327', '20.139130', '-199.348495', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302218', 4302218, '-563.208191', '18.867491', '-186.546005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302219', 4302219, '-527.765808', '20.129919', '-200.682007', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302220', 4302220, '-569.817627', '10.940670', '-130.235794', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302221', 4302221, '-617.120605', '21.896610', '-197.436493', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302222', 4302222, '-575.432983', '11.001710', '-129.716995', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302223', 4302223, '-568.810608', '10.910160', '-133.318100', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302225', 4302225, '-502.711792', '17.279470', '-157.029495', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59204, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302226', 4302226, '-496.089386', '16.799740', '-160.630707', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58938, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302228', 4302228, '-481.979004', '18.189381', '-229.549103', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302229', 4302229, '-555.941528', '25.463579', '-260.210693', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4302351', 4302351, '-572.925293', '18.257090', '-181.740707', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57718, 1, 0, 0, 0, 0, 0, 4302260, 0, 0), +(237, 'e0012', 'bnpc4302353', 4302353, '-513.667175', '23.842480', '-245.333893', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57446, 1, 0, 0, 0, 0, 0, 4302268, 0, 0), +(237, 'e0012', 'bnpc4333043', 4333043, '-309.205597', '57.338970', '-10.110600', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(237, 'e0012', 'bnpc4333385', 4333385, '-348.321503', '67.616417', '-233.774200', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4510293', 4510293, '213.253204', '-32.025242', '324.145386', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38950, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(237, 'e0012', 'bnpc4621046', 4621046, '370.051086', '-32.295422', '411.821198', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42124, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(237, 'e0012', 'bnpc4621047', 4621047, '-538.803589', '50.907551', '-203.075394', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41858, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1132780', 1132780, '42.705971', '6.489012', '-222.119598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132784', 1132784, '43.994171', '7.081282', '-226.261307', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132785', 1132785, '46.368141', '6.532326', '-222.363800', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230902, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132786', 1132786, '50.249649', '8.663927', '-237.583603', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132810', 1132810, '119.142403', '17.274370', '-264.585907', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132815', 1132815, '53.141479', '4.367238', '-208.718597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132818', 1132818, '57.950279', '4.701855', '-181.906006', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132819', 1132819, '53.380199', '3.647015', '-170.941803', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132823', 1132823, '85.892982', '4.386182', '-186.633102', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132827', 1132827, '136.440002', '-0.215091', '-142.126297', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132829', 1132829, '139.586502', '1.436886', '-162.906296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132833', 1132833, '144.692596', '1.594073', '-161.313507', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132834', 1132834, '169.345306', '-0.575563', '-143.321701', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132835', 1132835, '132.885803', '4.471908', '-182.040894', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227916, 7, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(239, 'e0014', 'bnpc1132836', 1132836, '127.652000', '2.679112', '-179.060898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132837', 1132837, '133.402802', '5.498395', '-185.220093', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132842', 1132842, '104.130501', '4.751109', '-199.651596', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132988', 1132988, '145.939301', '0.761501', '-119.501801', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132990', 1132990, '165.896698', '-0.582151', '-142.284103', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132991', 1132991, '196.646301', '-2.798964', '-155.795898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132992', 1132992, '159.011398', '0.196450', '-113.407997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226012, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1132993', 1132993, '162.856598', '-0.357008', '-115.116997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225740, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133000', 1133000, '202.288803', '-2.206049', '-168.963196', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225468, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133001', 1133001, '223.772705', '-6.852091', '-140.217407', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225196, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133002', 1133002, '206.683395', '-2.759299', '-171.221497', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224924, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133005', 1133005, '231.146698', '-5.044106', '-178.307693', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224652, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133007', 1133007, '242.902496', '-0.494766', '-191.458496', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224380, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133008', 1133008, '239.977493', '-0.588080', '-191.828400', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224108, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133010', 1133010, '221.392303', '-6.460419', '-138.050598', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223836, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133022', 1133022, '332.788513', '-3.345333', '-151.251495', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201534, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133023', 1133023, '298.603699', '-6.332541', '-125.749603', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133029', 1133029, '302.693298', '-3.341390', '-184.143005', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133031', 1133031, '328.386993', '-0.505648', '-187.936401', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133032', 1133032, '342.892487', '-1.328422', '-175.218201', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133035', 1133035, '358.327515', '-2.255364', '-175.310898', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133036', 1133036, '335.507294', '0.561625', '-194.418793', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133042', 1133042, '439.946808', '10.149250', '-108.177101', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169468, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133044', 1133044, '458.584900', '14.997390', '-90.379593', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169740, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133047', 1133047, '463.401215', '25.778530', '-35.324680', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168380, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133049', 1133049, '445.243591', '31.812080', '-9.685579', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168652, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133052', 1133052, '486.745514', '31.609249', '-44.177990', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168924, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133053', 1133053, '487.618011', '31.024900', '-55.958771', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170012, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133054', 1133054, '483.304291', '30.900890', '-51.161331', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172188, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133056', 1133056, '482.511993', '23.910801', '-88.545013', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173276, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133057', 1133057, '480.679291', '24.104330', '-120.189201', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169196, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133063', 1133063, '504.435913', '29.146271', '-83.562149', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173004, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133064', 1133064, '482.169495', '24.010910', '-92.475502', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172732, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133065', 1133065, '459.642914', '24.454941', '-39.719559', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172460, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133066', 1133066, '453.938690', '26.000799', '-33.810230', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170828, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133070', 1133070, '351.512787', '3.052480', '46.861389', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133071', 1133071, '341.298492', '3.983801', '67.704231', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133072', 1133072, '348.626495', '0.976962', '28.015940', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133073', 1133073, '342.183502', '0.098491', '27.298340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133077', 1133077, '309.071411', '-2.609340', '63.065491', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133080', 1133080, '281.574707', '-7.184652', '26.169170', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133098', 1133098, '289.254913', '-5.168305', '48.585239', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133100', 1133100, '291.498688', '-5.368438', '47.821369', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133126', 1133126, '-82.030632', '1.519239', '-141.488693', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148770, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133128', 1133128, '-77.317497', '1.083344', '-136.644608', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148498, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133130', 1133130, '-63.375290', '0.643326', '-166.887497', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148226, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133131', 1133131, '-64.313164', '0.965167', '-162.181503', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147954, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133132', 1133132, '-75.591331', '1.176651', '-142.404297', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147682, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133138', 1133138, '-33.189919', '-4.914308', '-94.149628', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147410, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133148', 1133148, '86.244072', '-19.783070', '210.247406', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133152', 1133152, '70.510750', '-17.727341', '188.296799', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133156', 1133156, '56.609531', '-22.226370', '292.790710', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133163', 1133163, '25.970390', '-24.061230', '233.649994', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133165', 1133165, '37.231960', '-26.765560', '260.079498', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133167', 1133167, '36.484268', '-25.833570', '242.542099', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133172', 1133172, '94.585983', '-24.244490', '288.477509', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133176', 1133176, '98.126083', '-23.363501', '294.977814', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133177', 1133177, '85.597298', '-27.953020', '268.263000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133178', 1133178, '89.747749', '-28.194380', '266.065704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133179', 1133179, '141.949905', '-28.936390', '333.222290', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133181', 1133181, '160.046402', '-31.802570', '350.789795', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133185', 1133185, '164.906906', '-32.018280', '333.485504', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133186', 1133186, '146.226807', '-28.810591', '357.818298', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133187', 1133187, '196.479996', '-32.228100', '370.754303', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133189', 1133189, '179.687897', '-32.476631', '364.163086', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133193', 1133193, '213.929794', '-29.694580', '421.080688', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133194', 1133194, '210.157394', '-29.179230', '422.919312', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133195', 1133195, '202.300293', '-31.331381', '415.743286', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133196', 1133196, '197.350098', '-27.568890', '432.363586', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133197', 1133197, '127.580299', '-21.390261', '452.635986', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133198', 1133198, '140.825500', '-23.697309', '449.881714', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133199', 1133199, '140.459198', '-23.605749', '454.489899', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133202', 1133202, '12.397950', '-27.619690', '294.880493', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133205', 1133205, '-18.143021', '-24.734921', '265.369598', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133206', 1133206, '-12.771850', '-24.094040', '262.958710', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133207', 1133207, '-9.199866', '-28.976500', '329.645294', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140338, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133209', 1133209, '-28.712330', '-27.396271', '280.689209', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140066, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133235', 1133235, '-294.825012', '66.698837', '-219.308807', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94446, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133239', 1133239, '-293.659912', '67.460083', '-222.491806', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94174, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133246', 1133246, '-302.510101', '60.959740', '-159.319504', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93902, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133248', 1133248, '-302.700409', '62.132381', '-166.402496', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133255', 1133255, '-356.364685', '65.308533', '-258.518585', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133257', 1133257, '-369.039490', '65.567993', '-232.715393', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133258', 1133258, '-392.416290', '67.276978', '-249.713898', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1133287', 1133287, '197.283798', '-8.773984', '-27.176359', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133291', 1133291, '211.352707', '-8.651912', '-43.106781', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133293', 1133293, '157.305206', '-7.888961', '-17.929399', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133294', 1133294, '157.244202', '-8.163623', '-11.917340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133298', 1133298, '120.449799', '-4.840655', '13.528090', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1133303', 1133303, '104.203796', '-7.003938', '47.562321', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135577', 1135577, '335.133911', '-4.725379', '-24.794729', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196916, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135582', 1135582, '371.054596', '0.844982', '-35.208488', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196644, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135586', 1135586, '374.433105', '1.702958', '-25.284241', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135591', 1135591, '345.784607', '-2.975556', '-32.761169', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135593', 1135593, '332.478790', '-3.372291', '3.097534', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135605', 1135605, '395.773193', '2.548209', '-44.693722', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135606', 1135606, '415.025085', '5.625315', '-64.068764', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135607', 1135607, '388.509888', '0.304810', '-66.453087', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135612', 1135612, '394.000214', '3.556523', '-87.144318', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135613', 1135613, '375.936493', '0.686609', '-85.923592', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135614', 1135614, '343.831512', '-5.020265', '-80.094650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135616', 1135616, '409.009888', '5.209702', '-112.078003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135617', 1135617, '417.517700', '5.755183', '-68.232597', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135618', 1135618, '412.284607', '5.636008', '-106.424400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135619', 1135619, '406.314209', '5.571515', '-103.380302', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135624', 1135624, '386.668915', '4.336706', '-103.087303', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135625', 1135625, '364.309509', '0.784262', '-125.017197', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135627', 1135627, '359.853485', '-2.578822', '-152.483398', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135628', 1135628, '350.999207', '-2.118987', '-128.300003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135629', 1135629, '316.613586', '8.015758', '128.187897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135632', 1135632, '323.190002', '9.736116', '132.826904', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135633', 1135633, '322.078613', '10.136940', '134.004807', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135639', 1135639, '288.849091', '17.952721', '161.725601', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135643', 1135643, '286.915314', '19.626829', '172.441101', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135645', 1135645, '295.765594', '16.383280', '167.437195', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1135646', 1135646, '318.979004', '13.831220', '155.957001', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1135647', 1135647, '290.314087', '17.922770', '159.804199', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1135651', 1135651, '-262.056305', '55.970860', '36.748020', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135671', 1135671, '-462.059692', '64.698357', '68.829857', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1135673', 1135673, '-398.458893', '51.156910', '68.804077', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83602, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1135685', 1135685, '-418.844910', '58.274151', '-34.409142', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135687', 1135687, '-520.153870', '65.239517', '61.102520', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80888, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1135688', 1135688, '-508.781586', '65.293297', '40.634731', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81432, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1135931', 1135931, '272.581390', '23.939560', '195.025894', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135933', 1135933, '241.474594', '24.000601', '179.914902', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135937', 1135937, '-101.839104', '-40.043732', '299.745911', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1135938', 1135938, '-105.816902', '-40.028461', '306.239807', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1135939', 1135939, '-90.198776', '-40.129551', '324.673096', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1135940', 1135940, '-94.585022', '-40.032150', '311.676514', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1135941', 1135941, '-114.854698', '-40.054981', '302.937286', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135942', 1135942, '-97.734077', '-40.054981', '304.310608', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135943', 1135943, '-102.695999', '-40.032539', '320.445892', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1135944', 1135944, '-83.087273', '-39.867889', '327.616211', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162337', 1162337, '283.977112', '-6.509701', '-148.452805', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162338', 1162338, '281.871399', '-6.690229', '-150.039703', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162341', 1162341, '315.751801', '-4.718813', '-109.327103', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162344', 1162344, '309.980103', '1.983368', '92.979958', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162345', 1162345, '337.067413', '3.266761', '71.050873', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162348', 1162348, '130.357803', '-6.759793', '57.419651', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162351', 1162351, '222.430695', '-7.827925', '-60.441029', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162352', 1162352, '227.527206', '-7.187046', '-66.727753', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162353', 1162353, '203.082306', '-7.339636', '-68.925049', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162354', 1162354, '221.484604', '-7.400672', '-64.011642', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162358', 1162358, '-19.657080', '0.269221', '-140.150803', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1162368', 1162368, '112.853699', '-26.954611', '251.195801', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162369', 1162369, '89.158417', '-24.246630', '236.957306', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162371', 1162371, '217.547806', '-31.967699', '395.895294', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162374', 1162374, '-2.485424', '-31.687981', '451.364502', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162376', 1162376, '-10.696620', '-34.134480', '443.381287', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162378', 1162378, '-23.636271', '-35.911461', '462.485596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162380', 1162380, '-61.417610', '-36.118149', '490.745300', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162384', 1162384, '-4.128872', '-28.294901', '327.096588', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1162385', 1162385, '-48.920349', '-35.910400', '310.262909', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1162386', 1162386, '-66.916382', '-32.083370', '343.644196', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1162387', 1162387, '-65.420998', '-31.630421', '353.013306', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1162390', 1162390, '-298.542786', '20.650921', '132.768707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162391', 1162391, '-294.392303', '20.060690', '130.388306', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162392', 1162392, '-296.020508', '20.999870', '168.359299', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162393', 1162393, '-297.016907', '20.876789', '122.239998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162394', 1162394, '-208.026505', '3.601872', '2.164479', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162398', 1162398, '-396.566711', '63.980961', '-218.615997', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1162399', 1162399, '-347.955994', '66.968529', '-220.251999', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1162402', 1162402, '-291.152710', '61.247379', '-168.828796', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1162403', 1162403, '-351.183289', '63.740372', '-153.645599', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162412', 1162412, '-365.503204', '62.324249', '-85.497841', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162413', 1162413, '-365.240814', '62.204288', '-87.690971', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162416', 1162416, '-353.685791', '63.380310', '-149.922501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1162426', 1162426, '-501.091003', '65.293297', '90.318100', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1162427', 1162427, '-534.918823', '65.381104', '43.912449', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81160, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1180878', 1180878, '104.639297', '-8.000016', '-91.168152', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1180879', 1180879, '105.168701', '-8.000016', '-94.222618', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1180880', 1180880, '106.210297', '-8.000016', '-96.527153', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1183451', 1183451, '104.347603', '-8.000016', '-88.522499', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1183452', 1183452, '101.512100', '-8.064646', '-97.812950', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1183453', 1183453, '100.580399', '-8.000016', '-95.459229', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1183454', 1183454, '99.803108', '-8.184623', '-92.716454', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1183455', 1183455, '99.192757', '-8.361253', '-89.878258', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234346, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1183456', 1183456, '96.327393', '-8.500061', '-99.385361', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1183458', 1183458, '95.550194', '-8.460118', '-96.840134', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1183459', 1183459, '94.825958', '-8.500061', '-93.978119', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1183460', 1183460, '94.179993', '-8.500061', '-90.982887', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1408325', 1408325, '107.492897', '15.984340', '-270.054596', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1408329', 1408329, '119.554398', '17.410500', '-259.693298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1408332', 1408332, '111.600800', '16.549120', '-248.298096', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1408334', 1408334, '117.813103', '17.697479', '-247.780807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1408341', 1408341, '111.814400', '16.758829', '-244.880096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1408351', 1408351, '86.796638', '15.940370', '-262.601105', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1408352', 1408352, '68.921707', '16.132620', '-262.037811', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1408353', 1408353, '68.168861', '16.760660', '-264.307190', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1408357', 1408357, '72.243088', '10.935070', '-243.492706', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1408358', 1408358, '87.101822', '15.245950', '-260.648010', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221122, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410560', 1410560, '103.350998', '14.389260', '-254.875107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410688', 1410688, '50.217388', '6.559038', '-223.468399', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410689', 1410689, '39.352970', '4.053384', '-182.513199', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410690', 1410690, '37.860909', '3.934789', '-183.153900', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410691', 1410691, '55.661430', '4.710185', '-183.981201', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1410693', 1410693, '-1.083989', '1.339663', '-188.567398', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219478, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1410694', 1410694, '0.474049', '1.531124', '-191.204697', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219206, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1410695', 1410695, '8.437746', '1.980624', '-176.756195', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218934, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1410696', 1410696, '-15.013690', '1.551492', '-198.619598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218662, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1410698', 1410698, '7.450444', '1.514552', '-190.764694', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410699', 1410699, '8.438234', '3.222636', '-146.234497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410700', 1410700, '14.477130', '3.104484', '-138.479904', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410701', 1410701, '16.068541', '3.373573', '-139.535202', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217574, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1410703', 1410703, '-15.113390', '3.146425', '-233.722000', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217302, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1410704', 1410704, '-4.948251', '4.778366', '-234.155304', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217030, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1410705', 1410705, '8.210199', '5.748120', '-247.337402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1410707', 1410707, '9.591916', '5.570471', '-251.132996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216498, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410708', 1410708, '5.815275', '5.237663', '-249.501099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216226, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410709', 1410709, '-9.906527', '3.594761', '-217.097595', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215954, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410712', 1410712, '-13.648660', '3.344659', '-231.383408', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215682, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410714', 1410714, '-30.136610', '0.909592', '-224.200897', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1410715', 1410715, '48.355789', '9.194451', '-243.366196', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1410716', 1410716, '74.908539', '4.285552', '-211.076706', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1410851', 1410851, '88.732697', '4.082766', '-185.738998', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215138, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410853', 1410853, '130.975204', '4.971314', '-185.109497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214866, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410976', 1410976, '131.470093', '2.068069', '-173.581100', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214594, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(239, 'e0014', 'bnpc1410977', 1410977, '107.495903', '0.653863', '-168.558304', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214322, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410978', 1410978, '142.190598', '1.204836', '-160.400803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214050, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410979', 1410979, '148.032898', '0.649221', '-123.475403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213778, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410982', 1410982, '166.648804', '-1.181116', '-137.457901', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213506, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410983', 1410983, '178.145996', '-1.608972', '-140.621307', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213228, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1410984', 1410984, '168.844696', '2.701761', '-163.503296', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212962, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410990', 1410990, '199.114899', '-0.803801', '-174.853195', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212684, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1410996', 1410996, '202.197205', '-1.697314', '-172.655899', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212418, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410998', 1410998, '239.098404', '-2.190103', '-187.159805', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212146, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1410999', 1410999, '221.515396', '-6.264487', '-154.155502', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211874, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411000', 1411000, '227.837204', '-8.126032', '-125.948700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211602, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411003', 1411003, '174.579300', '-1.892151', '-102.278099', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411004', 1411004, '182.699707', '-4.339209', '-88.384857', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211058, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411005', 1411005, '161.154007', '4.078132', '-169.399704', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411032', 1411032, '271.173798', '-9.203460', '-119.877403', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411034', 1411034, '330.082886', '-2.640436', '-152.968796', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173790, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411036', 1411036, '305.867188', '-2.983790', '-188.262894', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411037', 1411037, '302.815399', '-3.417479', '-190.063507', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411038', 1411038, '283.192108', '-6.780017', '-171.401596', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411042', 1411042, '287.338715', '-5.114256', '-195.320007', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411049', 1411049, '276.640594', '-8.026556', '-141.155594', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411065', 1411065, '308.725311', '-4.528103', '-80.785583', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411066', 1411066, '311.802795', '-5.117999', '-76.683037', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411069', 1411069, '291.112213', '-5.409167', '-79.667397', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411071', 1411071, '346.714203', '-3.206666', '-41.466160', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411078', 1411078, '264.779999', '-11.621630', '-65.637466', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183878, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411084', 1411084, '234.546997', '-11.793010', '-2.134793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183606, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411085', 1411085, '250.625107', '-8.387555', '28.634951', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183334, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411086', 1411086, '313.420288', '-6.097115', '16.095341', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183038, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411087', 1411087, '314.703308', '-5.599903', '20.012140', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182766, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411119', 1411119, '309.285095', '2.975462', '97.764503', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182494, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411120', 1411120, '326.314087', '2.426137', '90.012917', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182222, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411121', 1411121, '371.612488', '7.304699', '55.979481', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411124', 1411124, '375.810211', '7.175481', '51.219879', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411135', 1411135, '420.071991', '5.244238', '-35.509991', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411136', 1411136, '417.919312', '5.091386', '-39.660309', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411137', 1411137, '425.005402', '6.439638', '-41.263420', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411148', 1411148, '449.318512', '32.509201', '-8.551085', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170556, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411152', 1411152, '505.440613', '42.969250', '-25.847120', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170284, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411155', 1411155, '511.920410', '44.121750', '-42.307079', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171644, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411157', 1411157, '502.891510', '43.241459', '-46.006001', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171372, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411159', 1411159, '481.475494', '41.105301', '-9.940406', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171100, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411160', 1411160, '484.982300', '41.536228', '-12.749530', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171916, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411162', 1411162, '201.709000', '-7.309118', '-73.014473', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181134, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411163', 1411163, '206.805496', '-9.964188', '-16.037279', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180862, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411164', 1411164, '183.550705', '-8.560358', '-4.379386', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180590, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411167', 1411167, '127.300301', '-5.901662', '12.460290', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180318, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411170', 1411170, '92.851097', '-4.928711', '4.867581', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180046, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411171', 1411171, '127.489098', '-7.126010', '58.609852', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179774, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411173', 1411173, '216.815399', '-9.170719', '-44.144390', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411174', 1411174, '218.066605', '-9.475899', '-42.282791', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411176', 1411176, '184.252594', '-8.621394', '-0.259450', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411178', 1411178, '102.749901', '-11.800030', '112.244499', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411179', 1411179, '107.205597', '-7.793041', '74.349869', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411180', 1411180, '84.061897', '-6.851347', '16.464439', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411181', 1411181, '84.336563', '-6.698757', '13.137970', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411182', 1411182, '275.292297', '23.606110', '190.161697', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411186', 1411186, '288.694397', '21.579050', '187.354996', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177344, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411187', 1411187, '286.440796', '21.978689', '190.167206', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177072, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411193', 1411193, '237.018204', '23.458019', '156.614304', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176800, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411197', 1411197, '211.473099', '23.453070', '169.805405', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176528, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411198', 1411198, '209.800598', '23.457560', '211.348297', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176256, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411202', 1411202, '205.811798', '24.000139', '204.175003', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175984, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411203', 1411203, '226.011993', '23.536930', '175.448105', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175712, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411206', 1411206, '227.024994', '24.063431', '228.666702', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175440, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411207', 1411207, '224.858200', '23.422550', '230.009598', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175168, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411208', 1411208, '234.736603', '23.544621', '214.365707', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411210', 1411210, '233.020493', '23.453070', '214.312897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411213', 1411213, '213.946701', '23.453070', '226.459106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411214', 1411214, '211.749405', '23.453070', '228.168106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411218', 1411218, '228.444595', '23.457581', '165.045898', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411220', 1411220, '382.833496', '13.565220', '79.972481', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159876, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411222', 1411222, '374.288513', '12.161390', '84.031380', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158516, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411223', 1411223, '409.964111', '18.326040', '60.501968', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159604, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411225', 1411225, '411.001709', '26.138660', '123.399696', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158788, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411227', 1411227, '436.179108', '32.211750', '101.823402', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159060, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411228', 1411228, '439.383514', '32.761070', '98.649529', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157972, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411233', 1411233, '-58.666859', '-4.080153', '-116.513397', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134082, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411234', 1411234, '-111.996201', '6.549166', '-145.525208', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411235', 1411235, '-123.994698', '12.085680', '-163.495407', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411236', 1411236, '-120.946297', '10.817430', '-167.745193', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411237', 1411237, '-179.948700', '2.732331', '-103.572197', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1411238', 1411238, '-212.568405', '1.504992', '-84.178993', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97676, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(239, 'e0014', 'bnpc1411240', 1411240, '-212.756607', '1.846313', '-94.163452', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96316, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(239, 'e0014', 'bnpc1411241', 1411241, '-214.172699', '1.359615', '-82.278023', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96044, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(239, 'e0014', 'bnpc1411242', 1411242, '-213.856293', '1.439267', '-83.871033', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96588, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(239, 'e0014', 'bnpc1411244', 1411244, '-193.905304', '2.125694', '-41.069290', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97948, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(239, 'e0014', 'bnpc1411253', 1411253, '-56.382130', '-4.928711', '-94.529694', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411254', 1411254, '-20.293131', '-2.590379', '-100.341103', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411255', 1411255, '-23.246990', '0.393718', '-138.153305', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411256', 1411256, '-59.128750', '0.758792', '-164.202393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411655', 1411655, '-92.954361', '1.786075', '-122.393898', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411656', 1411656, '-93.869904', '1.736482', '-119.067497', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411657', 1411657, '-109.805397', '6.718060', '-150.029800', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411658', 1411658, '-176.756607', '2.961861', '-114.443398', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1411659', 1411659, '-205.790604', '2.068845', '-61.951530', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412058', 1412058, '-196.154800', '1.939114', '-25.589430', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412059', 1412059, '-163.822601', '0.087921', '-11.411790', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412062', 1412062, '71.492859', '-11.893120', '161.389404', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412463', 1412463, '107.728401', '-8.259025', '159.304703', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412464', 1412464, '108.796501', '-7.985859', '156.375000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412465', 1412465, '45.309830', '-13.145570', '164.612595', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412467', 1412467, '86.263412', '-10.238450', '166.918396', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412470', 1412470, '43.860840', '-19.453880', '194.128098', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412471', 1412471, '40.686970', '-20.436541', '199.194107', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412474', 1412474, '83.274986', '-19.705959', '207.342194', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412475', 1412475, '56.498798', '-24.125010', '265.742401', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412476', 1412476, '56.595661', '-23.666790', '269.184387', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412477', 1412477, '67.313408', '-23.280479', '279.101715', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412478', 1412478, '130.256897', '-28.458679', '285.610504', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412480', 1412480, '84.874817', '-11.151300', '170.539902', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412482', 1412482, '48.863239', '-15.723400', '175.131393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412483', 1412483, '91.596550', '-15.216650', '191.087204', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412484', 1412484, '40.536888', '-24.919319', '239.885193', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412486', 1412486, '12.541730', '-30.409491', '274.885712', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412488', 1412488, '84.885887', '-24.795959', '238.330597', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412489', 1412489, '100.537003', '-25.090691', '289.606689', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412890', 1412890, '192.974106', '-32.093040', '371.993805', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412891', 1412891, '174.770096', '-30.985760', '392.154999', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412892', 1412892, '169.164200', '-29.940310', '393.395111', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412893', 1412893, '172.161407', '-30.924379', '389.056885', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412894', 1412894, '171.285507', '-29.285271', '402.230988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412895', 1412895, '154.779907', '-26.129629', '405.514008', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412896', 1412896, '168.913696', '-28.561871', '440.527588', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412897', 1412897, '173.811401', '-24.163700', '462.640015', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412898', 1412898, '172.581100', '-23.212021', '466.157715', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412900', 1412900, '157.804596', '-31.533340', '347.603088', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412901', 1412901, '181.335403', '-32.472290', '364.442596', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412902', 1412902, '173.037506', '-29.813890', '400.369385', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412903', 1412903, '215.503098', '-32.150810', '397.756897', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412904', 1412904, '151.140594', '-25.314760', '448.172699', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1412905', 1412905, '174.771194', '-22.925610', '465.693207', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413304', 1413304, '-10.375770', '-30.070101', '357.174011', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120482, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1413305', 1413305, '-73.187973', '-29.638651', '377.182007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120210, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1413306', 1413306, '7.099501', '-28.323009', '389.698700', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119938, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1413307', 1413307, '-25.474409', '-30.239300', '288.173004', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413309', 1413309, '2.871708', '-26.996679', '314.962891', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413310', 1413310, '-43.682961', '-31.251160', '365.171295', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413311', 1413311, '-60.904331', '-32.109970', '348.252411', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413312', 1413312, '-26.264040', '-32.967579', '411.424805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413711', 1413711, '1.843092', '-32.621689', '440.420288', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413712', 1413712, '-47.684052', '-34.975368', '436.820007', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413713', 1413713, '-62.874069', '-35.826691', '451.367706', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413714', 1413714, '-36.040771', '-30.235821', '405.258087', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413715', 1413715, '-77.531143', '-35.740108', '463.920013', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413716', 1413716, '-81.834183', '-35.561951', '465.537415', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413717', 1413717, '-81.132263', '-36.687901', '482.108704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413718', 1413718, '-64.000313', '-36.181229', '492.846497', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413719', 1413719, '-45.209900', '-36.768280', '469.442810', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413721', 1413721, '-49.479870', '-31.658331', '420.700195', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413723', 1413723, '-61.146591', '-34.546021', '439.197601', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413724', 1413724, '-12.636190', '-34.818890', '433.701904', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413725', 1413725, '-21.261789', '-35.776421', '463.813293', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1413726', 1413726, '-80.766037', '-35.860481', '467.917786', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1414923', 1414923, '-251.624496', '8.046767', '9.209213', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1414924', 1414924, '-237.355103', '14.172800', '56.681469', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1414925', 1414925, '-240.865097', '13.064570', '51.144550', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1414928', 1414928, '-261.738007', '16.472500', '59.800060', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1414929', 1414929, '-271.273499', '19.264000', '95.431259', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1414931', 1414931, '-299.224915', '20.999870', '171.197403', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1414932', 1414932, '-335.657013', '21.199930', '166.262405', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1414935', 1414935, '-333.186493', '21.314899', '161.005798', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1414936', 1414936, '-351.155914', '21.194731', '192.767197', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1414938', 1414938, '-239.843002', '7.295271', '0.194433', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1415337', 1415337, '-263.631592', '17.193020', '61.247459', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1415339', 1415339, '-340.596497', '21.199930', '161.368500', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1415340', 1415340, '-332.306000', '21.000000', '208.378098', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1415341', 1415341, '-328.043915', '21.000000', '211.118393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1415342', 1415342, '-292.652802', '20.981110', '203.265396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1415343', 1415343, '-87.174072', '-39.921982', '291.489105', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1415344', 1415344, '-112.985397', '-40.020420', '312.799713', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1415345', 1415345, '-86.737244', '-40.184792', '302.023285', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1415346', 1415346, '-116.616600', '-40.014709', '309.506805', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1415347', 1415347, '-244.678497', '66.147812', '-179.125702', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1415348', 1415348, '-241.352005', '66.788689', '-178.362701', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1415352', 1415352, '-351.735809', '67.765259', '-226.093002', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1415353', 1415353, '-354.085602', '67.313278', '-222.043106', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1415354', 1415354, '-354.115387', '66.529556', '-254.235596', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1415358', 1415358, '-429.221008', '60.624039', '-145.159103', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1415359', 1415359, '-431.571014', '61.023251', '-141.100204', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1415360', 1415360, '-409.323303', '61.264919', '-120.927803', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1415361', 1415361, '-290.298706', '60.229500', '-115.695396', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1415364', 1415364, '-313.710297', '62.882381', '-46.982571', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1415365', 1415365, '-308.186493', '62.943420', '-50.370079', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72208, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1415367', 1415367, '-304.768494', '62.180470', '-99.076874', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72480, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1415368', 1415368, '-275.257507', '60.807152', '-84.214577', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71664, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1415375', 1415375, '-262.012695', '62.577202', '-39.993938', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1415376', 1415376, '-417.990387', '64.377762', '-51.102509', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1415377', 1415377, '-416.159302', '65.476410', '-55.924358', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1415378', 1415378, '-446.097504', '57.907940', '-22.476589', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1415379', 1415379, '-454.154297', '61.631142', '-28.213980', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1415381', 1415381, '-285.852814', '61.458679', '25.148211', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1415382', 1415382, '-414.267212', '60.471451', '-98.405472', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1415383', 1415383, '-462.152802', '62.699409', '-106.490501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1415384', 1415384, '-465.866913', '62.824699', '-107.035797', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1416355', 1416355, '184.649399', '-7.461709', '-54.703640', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173518, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc1418012', 1418012, '397.388092', '18.876289', '87.758537', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149848, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc1418013', 1418013, '272.692596', '-2.411928', '61.854092', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150120, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154901', 2154901, '-288.593994', '59.581390', '-121.735901', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64604, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2154903', 2154903, '-303.822388', '59.830570', '-130.571503', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2154910', 2154910, '-290.943787', '61.814331', '-175.341400', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64876, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2154912', 2154912, '-384.725800', '64.377808', '-230.792694', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2154914', 2154914, '-416.247894', '61.594559', '-135.801102', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2154915', 2154915, '-397.116089', '56.778770', '-87.632607', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2154916', 2154916, '-408.031494', '53.104481', '35.133572', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2154917', 2154917, '-274.891388', '62.760250', '-48.600040', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2154925', 2154925, '-365.255188', '56.015820', '61.905800', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2154932', 2154932, '-452.140106', '63.523258', '-235.614594', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92276, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154933', 2154933, '-486.564514', '58.060532', '-222.186707', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154938', 2154938, '-449.027313', '55.863232', '-205.401703', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91732, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154939', 2154939, '-453.788086', '56.259960', '-203.845306', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91460, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154940', 2154940, '-449.607086', '55.100281', '-200.518799', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91188, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154941', 2154941, '-459.128693', '64.652428', '-264.026886', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154943', 2154943, '-483.543213', '58.182598', '-215.136993', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90112, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154944', 2154944, '-488.316101', '67.415604', '-265.598907', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154945', 2154945, '-487.007385', '67.617432', '-267.616608', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90916, 1, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(239, 'e0014', 'bnpc2154950', 2154950, '-508.114197', '73.937157', '-289.616486', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154952', 2154952, '-505.210999', '72.800743', '-287.708893', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154954', 2154954, '-475.800293', '75.099243', '-316.311890', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88486, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154959', 2154959, '-474.076904', '71.450668', '-300.198914', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154963', 2154963, '-481.180389', '74.270866', '-319.393005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88752, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154965', 2154965, '-509.328613', '51.460609', '-230.011002', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154966', 2154966, '-530.510376', '48.020088', '-245.654999', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87670, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154968', 2154968, '-550.774414', '46.775639', '-245.014099', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154969', 2154969, '-546.684998', '46.860470', '-244.251205', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154970', 2154970, '-545.647400', '50.522579', '-203.540100', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154971', 2154971, '-547.356384', '51.163448', '-199.786407', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154973', 2154973, '-572.310486', '49.567921', '-226.453506', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90644, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154974', 2154974, '-564.080322', '50.297001', '-211.993607', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154976', 2154976, '-508.251099', '57.374981', '-255.303207', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154978', 2154978, '-533.645081', '43.546291', '-230.397507', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2154980', 2154980, '-468.316010', '57.494301', '-212.252502', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2154982', 2154982, '-485.247803', '68.405968', '-274.754211', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2154983', 2154983, '-505.135406', '73.043167', '-290.313904', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2154985', 2154985, '-528.526672', '48.142170', '-244.495300', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2154986', 2154986, '-568.407227', '50.556568', '-214.304596', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320574', 2320574, '261.921387', '1.753539', '-223.409698', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210786, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320575', 2320575, '261.238495', '0.534709', '-243.419296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320576', 2320576, '263.797699', '1.764011', '-223.470901', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320577', 2320577, '259.453186', '1.043279', '-240.840607', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320579', 2320579, '274.919800', '-1.072963', '-256.170593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209698, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320580', 2320580, '300.060089', '-0.888014', '-307.572510', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320581', 2320581, '324.245514', '-1.093548', '-288.072113', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320582', 2320582, '298.274811', '-0.855762', '-304.993805', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320583', 2320583, '325.011292', '-1.286943', '-316.835388', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208610, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320584', 2320584, '287.788513', '-0.475198', '-298.277313', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208338, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320585', 2320585, '329.843903', '-0.745502', '-290.159698', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320586', 2320586, '325.924103', '-0.928046', '-285.067993', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320587', 2320587, '327.193207', '-1.286943', '-313.833496', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207522, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320588', 2320588, '337.177185', '0.441468', '-264.191803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207250, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320589', 2320589, '332.682892', '0.959346', '-254.439896', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206978, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320590', 2320590, '329.305206', '0.991071', '-252.106293', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206706, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320591', 2320591, '304.253815', '-0.643113', '-258.978912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320596', 2320596, '346.493591', '-0.483981', '-328.131287', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206162, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320597', 2320597, '302.790710', '-1.010156', '-352.830505', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320598', 2320598, '273.957489', '-0.689871', '-328.818512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205618, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320599', 2320599, '268.469910', '-0.593068', '-327.086395', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205346, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320600', 2320600, '267.525513', '-0.806307', '-329.538208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205074, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320601', 2320601, '276.737091', '0.547026', '-314.840912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320610', 2320610, '288.781494', '-1.187131', '-281.665588', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320612', 2320612, '330.290802', '-1.286943', '-344.531311', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320617', 2320617, '92.850220', '-10.902450', '173.235596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320637', 2320637, '-108.605698', '-30.528610', '272.296295', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320638', 2320638, '-138.649902', '-23.382610', '264.698212', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320639', 2320639, '-99.474327', '-30.263571', '271.854614', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320641', 2320641, '-170.286606', '-27.619471', '297.813995', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320642', 2320642, '-171.781998', '-27.505461', '288.445007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320643', 2320643, '-165.769897', '-27.707670', '293.053192', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320645', 2320645, '-125.383400', '-25.040100', '360.402802', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320646', 2320646, '-137.475906', '-27.672729', '336.516113', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320647', 2320647, '-141.819901', '-30.193661', '309.942688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320649', 2320649, '-59.102539', '-28.549570', '296.388702', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320650', 2320650, '277.147400', '-31.644880', '389.827209', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320651', 2320651, '250.690399', '-30.350241', '408.346588', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106362, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320652', 2320652, '274.666290', '-31.273550', '391.993988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320654', 2320654, '299.640686', '-31.632290', '402.348511', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320655', 2320655, '300.434814', '-32.791679', '411.978302', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320656', 2320656, '342.732788', '-31.784590', '408.346588', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320658', 2320658, '308.735687', '-32.272881', '398.214600', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320659', 2320659, '329.910309', '-31.601860', '408.307800', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320660', 2320660, '332.175415', '-31.647480', '410.657013', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320661', 2320661, '344.838593', '-31.113190', '440.115906', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320664', 2320664, '144.316299', '-22.573250', '513.925293', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320665', 2320665, '141.166702', '-21.478600', '518.533508', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320666', 2320666, '165.008896', '-23.196131', '497.355591', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320667', 2320667, '137.956802', '-21.858990', '489.646698', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103642, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320668', 2320668, '130.324295', '-19.810080', '417.345490', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320669', 2320669, '98.407799', '-20.697760', '221.536407', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320671', 2320671, '97.314743', '-11.800020', '101.237198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320675', 2320675, '135.972794', '-11.800140', '133.207794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320678', 2320678, '185.468796', '-11.800210', '106.268402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320683', 2320683, '188.220001', '-11.825790', '62.851860', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320688', 2320688, '201.678406', '-11.795270', '23.117371', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320694', 2320694, '260.142914', '-12.002980', '-90.756157', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320695', 2320695, '258.451996', '-12.002920', '-92.319710', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320696', 2320696, '257.085999', '-12.006830', '-154.938705', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320697', 2320697, '264.474091', '-12.313630', '-187.969193', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320721', 2320721, '396.475098', '20.645411', '107.225098', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159332, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320722', 2320722, '419.413391', '27.114370', '102.443001', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158244, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320725', 2320725, '-159.887802', '18.109520', '-68.195572', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320727', 2320727, '-170.536102', '27.551260', '-85.891403', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320728', 2320728, '-170.885803', '27.966640', '-89.178688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320732', 2320732, '-547.753174', '19.485781', '-191.943298', 30, 0, 0, 0, 2, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63894, 1, 0, 0, 0, 0, 0, 4302234, 0, 0), +(239, 'e0014', 'bnpc2320790', 2320790, '-439.475098', '48.996670', '43.930679', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320791', 2320791, '-432.144196', '49.318508', '-4.165760', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2320793', 2320793, '-242.034393', '58.664711', '38.845100', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320794', 2320794, '-206.227997', '57.382519', '52.006420', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320797', 2320797, '-193.570099', '74.743111', '21.367661', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320800', 2320800, '-238.635895', '62.272018', '25.375710', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2320801', 2320801, '-219.805405', '67.608017', '9.079071', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2341782', 2341782, '345.014008', '-1.078350', '-177.896896', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2341783', 2341783, '319.296997', '-0.849605', '-171.347198', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2341784', 2341784, '292.707397', '-6.651216', '-123.136101', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2341785', 2341785, '347.310486', '6.679530', '84.092422', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2341786', 2341786, '354.267487', '5.193762', '60.841671', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2341787', 2341787, '348.283203', '3.086715', '49.707630', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2603191', 2603191, '256.015594', '-11.793030', '-185.891006', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164850, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2603192', 2603192, '260.232605', '-11.793140', '-180.095505', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164578, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612552', 2612552, '252.195404', '-11.793090', '-145.885406', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164306, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612553', 2612553, '254.433395', '-11.793010', '-113.328796', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164034, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612554', 2612554, '258.838715', '-11.793140', '-73.879280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163762, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612555', 2612555, '233.580307', '-11.793010', '-18.570280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163490, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612556', 2612556, '216.695099', '-11.793000', '8.959249', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163218, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612557', 2612557, '212.512299', '-11.795270', '12.741240', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162946, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612559', 2612559, '120.048798', '-11.800060', '124.326401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162680, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612561', 2612561, '191.515900', '-11.856310', '51.102409', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162408, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612562', 2612562, '189.768997', '-11.800210', '71.478256', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162136, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612563', 2612563, '192.239395', '-11.800030', '91.385788', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161864, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612564', 2612564, '179.480606', '-11.800260', '106.735802', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161592, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612565', 2612565, '165.069794', '-11.800630', '119.881798', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161320, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612566', 2612566, '146.988297', '-11.800000', '126.311401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161048, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612569', 2612569, '132.474792', '-11.800090', '139.979294', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160776, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612570', 2612570, '250.133804', '-11.793030', '-55.898849', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160498, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612571', 2612571, '205.980301', '-11.772920', '33.134300', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160226, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612573', 2612573, '421.064514', '24.757450', '78.823257', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2612574', 2612574, '428.320709', '31.721590', '124.805603', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157428, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2615184', 2615184, '360.341705', '-32.028728', '435.294006', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2615186', 2615186, '375.478699', '-32.089771', '448.966095', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2615187', 2615187, '382.955597', '-31.998211', '440.878815', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc2615503', 2615503, '253.211594', '-11.793080', '-161.360504', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154514, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc2615504', 2615504, '253.937607', '-11.793030', '-68.861298', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154242, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3693097', 3693097, '-224.085602', '1.055553', '-69.316994', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(239, 'e0014', 'bnpc3693102', 3693102, '-195.941101', '2.945007', '-104.081802', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96860, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(239, 'e0014', 'bnpc3693103', 3693103, '-189.283005', '2.362727', '-83.005783', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97404, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(239, 'e0014', 'bnpc3693105', 3693105, '-210.620300', '1.998901', '-96.299683', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95500, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(239, 'e0014', 'bnpc3693109', 3693109, '-195.513901', '2.216981', '-40.186169', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95228, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(239, 'e0014', 'bnpc3693111', 3693111, '-200.096695', '2.060742', '-67.256340', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(239, 'e0014', 'bnpc3693121', 3693121, '368.459503', '-32.364429', '413.199005', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3693136', 3693136, '242.206406', '-30.411280', '402.182007', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3693138', 3693138, '225.451996', '-28.488640', '423.605713', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3693140', 3693140, '215.350494', '-32.486500', '387.777496', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3693173', 3693173, '-508.842590', '40.237991', '-79.606361', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3693174', 3693174, '-516.899414', '40.146439', '-74.967621', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3693175', 3693175, '-514.549500', '40.207470', '-77.103882', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85228, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3693176', 3693176, '-520.866821', '40.146439', '-64.255783', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3693177', 3693177, '-515.685120', '40.359970', '-54.677021', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3693178', 3693178, '-503.929199', '41.000938', '-56.107471', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3693179', 3693179, '-483.658691', '45.245129', '-60.343559', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3693180', 3693180, '-481.533905', '45.933941', '-62.817669', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3693183', 3693183, '-378.957794', '51.132931', '52.109509', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3693184', 3693184, '-397.512787', '49.301849', '10.055650', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3693185', 3693185, '-433.121094', '49.318531', '34.558170', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3693188', 3693188, '-322.396393', '57.338970', '-6.726664', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65686, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3693623', 3693623, '-184.619797', '78.429970', '42.778721', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3693624', 3693624, '-191.994202', '77.183746', '37.510250', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72746, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3694403', 3694403, '-314.266113', '63.832611', '57.746510', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3742079', 3742079, '-530.733887', '65.311684', '98.466423', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3742133', 3742133, '-526.186829', '65.311691', '102.647400', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3742194', 3742194, '48.050610', '-11.800030', '-40.915428', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153976, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3742195', 3742195, '22.187790', '-11.800000', '-69.750504', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153704, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3742196', 3742196, '15.168640', '-11.800000', '-75.762558', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153432, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3742197', 3742197, '6.348711', '-11.800040', '-110.540199', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153160, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3742198', 3742198, '-54.153049', '-3.500003', '-186.530106', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152888, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3742199', 3742199, '-50.919399', '-3.500001', '-182.895996', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152616, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3742200', 3742200, '-69.779549', '-3.500144', '-196.820496', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152344, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3742201', 3742201, '-62.272110', '-3.500066', '-207.843399', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152072, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3742202', 3742202, '2.735321', '-11.800110', '-122.937599', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151782, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3742203', 3742203, '-6.886642', '-3.500000', '-135.990402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3742204', 3742204, '-6.586641', '-3.500000', '-139.267899', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3742205', 3742205, '-36.719379', '-3.500000', '-180.416794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150966, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3742206', 3742206, '-48.687111', '-3.500072', '-207.096298', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150694, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3746465', 3746465, '-208.691696', '52.495350', '-42.669102', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71120, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3746466', 3746466, '-219.824799', '58.286751', '-60.483898', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3746467', 3746467, '-215.491898', '57.635231', '-71.491089', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70576, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3869502', 3869502, '125.699600', '25.160120', '-311.621185', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41108, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(239, 'e0014', 'bnpc3869509', 3869509, '-307.502899', '63.448620', '-285.687714', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40842, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(239, 'e0014', 'bnpc3869525', 3869525, '-206.130997', '53.564651', '-126.977600', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40564, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(239, 'e0014', 'bnpc3869531', 3869531, '96.403351', '-6.334397', '-121.433502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40298, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(239, 'e0014', 'bnpc3869540', 3869540, '164.007095', '-6.013201', '-52.486290', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.750000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40020, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(239, 'e0014', 'bnpc3869598', 3869598, '-4.837158', '-7.919495', '-22.201900', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39760, 5, 0, 20, 0, 0, 30055, 0, 0, 0), +(239, 'e0014', 'bnpc3869604', 3869604, '85.465698', '-6.089244', '60.991131', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39482, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(239, 'e0014', 'bnpc3869607', 3869607, '14.362120', '-8.102512', '100.498901', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39204, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(239, 'e0014', 'bnpc3877513', 3877513, '121.019203', '24.917931', '-304.463287', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204518, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc3884907', 3884907, '-419.228607', '55.416000', '66.506737', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3897658', 3897658, '117.021400', '25.101040', '-311.604492', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204258, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc3898007', 3898007, '132.524597', '24.948450', '-305.562012', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203974, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc4083772', 4083772, '-327.757690', '21.357790', '204.228699', 58, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 5782, 1, 0, 0, 0, 0, 0, 4083771, 0, 0), +(239, 'e0014', 'bnpc4083778', 4083778, '-297.044800', '21.140360', '151.049896', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 8174, 1, 0, 0, 0, 0, 0, 4083775, 0, 0), +(239, 'e0014', 'bnpc4083795', 4083795, '-327.840088', '21.103210', '206.835907', 58, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6054, 1, 0, 0, 0, 0, 0, 4083794, 0, 0), +(239, 'e0014', 'bnpc4083796', 4083796, '-296.744812', '21.145109', '151.349899', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7662, 1, 0, 0, 0, 0, 0, 4083797, 0, 0), +(239, 'e0014', 'bnpc4083798', 4083798, '-296.444794', '21.149870', '151.649902', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7278, 1, 0, 0, 0, 0, 0, 4083799, 0, 0), +(239, 'e0014', 'bnpc4083800', 4083800, '-296.144806', '21.154619', '151.949905', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6894, 1, 0, 0, 0, 0, 0, 4083801, 0, 0), +(239, 'e0014', 'bnpc4083802', 4083802, '-295.844788', '21.159370', '152.249893', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6510, 1, 0, 0, 0, 0, 0, 4083803, 0, 0), +(239, 'e0014', 'bnpc4083871', 4083871, '127.641701', '-6.332520', '-100.389198', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38544, 8, 0, 0, 4295658, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4295672', 4295672, '132.951797', '-6.332520', '-100.114502', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37512, 8, 0, 0, 4295661, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4295673', 4295673, '137.910706', '-6.438695', '-96.608414', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37240, 8, 0, 0, 4295662, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4295675', 4295675, '126.695297', '-6.948534', '-90.459633', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36968, 8, 0, 0, 4295663, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4295677', 4295677, '126.418900', '-6.971872', '-84.529358', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36696, 8, 0, 0, 4295664, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4296957', 4296957, '95.628906', '-2.029270', '-42.382439', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35816, 1, 0, 0, 2280260, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4296958', 4296958, '98.693558', '-2.029731', '-43.942860', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35544, 1, 0, 0, 2280261, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4296959', 4296959, '101.467598', '-2.005454', '-46.176739', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35272, 1, 0, 0, 2280262, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4296960', 4296960, '104.146896', '-1.968804', '-48.332958', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35000, 1, 0, 0, 2280263, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302206', 4302206, '-555.148071', '29.067560', '-230.785706', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302207', 4302207, '-516.437683', '22.056881', '-221.606796', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302208', 4302208, '-524.244812', '24.477020', '-253.274597', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302209', 4302209, '-527.577820', '24.719191', '-254.932404', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302212', 4302212, '-582.818420', '21.723471', '-238.845596', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302213', 4302213, '-596.266602', '20.622200', '-226.349106', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302214', 4302214, '-579.272827', '21.076719', '-214.966003', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302215', 4302215, '-581.780823', '21.842831', '-241.897293', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302216', 4302216, '-528.772888', '19.922779', '-195.839096', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61374, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302217', 4302217, '-537.197327', '20.139130', '-199.348495', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302218', 4302218, '-563.208191', '18.867491', '-186.546005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302219', 4302219, '-527.765808', '20.129919', '-200.682007', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302220', 4302220, '-569.817627', '10.940670', '-130.235794', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302221', 4302221, '-617.120605', '21.896610', '-197.436493', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302222', 4302222, '-575.432983', '11.001710', '-129.716995', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302223', 4302223, '-568.810608', '10.910160', '-133.318100', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302225', 4302225, '-502.711792', '17.279470', '-157.029495', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59204, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302226', 4302226, '-496.089386', '16.799740', '-160.630707', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58938, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302228', 4302228, '-481.979004', '18.189381', '-229.549103', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58654, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(239, 'e0014', 'bnpc4302229', 4302229, '-555.941528', '25.463579', '-260.210693', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4302351', 4302351, '-572.925293', '18.257090', '-181.740707', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57718, 1, 0, 0, 0, 0, 0, 4302260, 0, 0), +(239, 'e0014', 'bnpc4302353', 4302353, '-513.667175', '23.842480', '-245.333893', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57446, 1, 0, 0, 0, 0, 0, 4302268, 0, 0), +(239, 'e0014', 'bnpc4333043', 4333043, '-309.205597', '57.338970', '-10.110600', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(239, 'e0014', 'bnpc4333385', 4333385, '-348.321503', '67.616417', '-233.774200', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4510293', 4510293, '213.253204', '-32.025242', '324.145386', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38950, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(239, 'e0014', 'bnpc4621046', 4621046, '370.051086', '-32.295422', '411.821198', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42124, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(239, 'e0014', 'bnpc4621047', 4621047, '-538.803589', '50.907551', '-203.075394', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41858, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143752', 1143752, '468.733612', '-3.633345', '230.358597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161672, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143755', 1143755, '465.781586', '-3.677471', '229.602402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161400, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143766', 1143766, '444.779510', '-3.136452', '238.420898', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128760, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143773', 1143773, '465.263000', '-2.447129', '258.256592', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161128, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143778', 1143778, '428.447205', '-1.594615', '201.428604', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160856, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143785', 1143785, '418.397888', '-1.449695', '197.651093', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160584, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143787', 1143787, '419.881805', '-4.161774', '286.077789', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160312, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143790', 1143790, '437.705414', '-3.238991', '267.530212', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160040, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143793', 1143793, '423.775085', '-3.337628', '259.160889', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159768, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143797', 1143797, '424.763611', '-3.434183', '264.063385', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159496, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143811', 1143811, '449.264099', '-2.694139', '278.273193', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159224, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143813', 1143813, '447.361511', '-2.361451', '283.012695', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158952, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143833', 1143833, '324.665100', '-5.350893', '263.034088', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158680, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143834', 1143834, '326.416687', '-5.326731', '264.652008', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158408, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143836', 1143836, '228.076508', '-27.969830', '314.808807', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158142, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143844', 1143844, '226.947403', '-28.244499', '321.583801', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157870, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143846', 1143846, '232.074402', '-27.023769', '316.945099', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157598, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143852', 1143852, '245.166595', '-23.941450', '329.304901', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157326, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143853', 1143853, '243.701797', '-24.673880', '332.020996', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157054, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143858', 1143858, '238.841797', '-23.981850', '361.571594', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156782, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143859', 1143859, '234.742996', '-25.153990', '359.183594', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156510, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143860', 1143860, '184.706299', '-37.785229', '360.952393', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156238, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143861', 1143861, '217.364700', '-28.025049', '344.838593', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143862', 1143862, '218.412994', '-28.201860', '349.321411', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155966, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143865', 1143865, '215.228394', '-28.379271', '347.279999', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155694, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143866', 1143866, '185.345001', '-32.188919', '312.603790', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155422, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143868', 1143868, '188.006302', '-32.639091', '314.137390', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155150, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143873', 1143873, '209.412994', '-25.172079', '366.151306', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154878, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143875', 1143875, '178.562500', '-38.966068', '338.296814', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154606, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143876', 1143876, '144.823303', '-31.479410', '305.622894', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154334, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143877', 1143877, '146.196594', '-30.899561', '302.754211', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154062, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143878', 1143878, '152.851395', '-42.255760', '352.426392', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153790, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143879', 1143879, '149.193604', '-43.619991', '356.343506', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153518, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143881', 1143881, '158.525894', '-36.057110', '323.933685', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153246, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143882', 1143882, '163.927597', '-36.881100', '326.466705', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152974, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143885', 1143885, '159.594101', '-36.820061', '328.267303', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152702, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143886', 1143886, '172.482895', '-27.390930', '279.472900', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152430, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143887', 1143887, '176.999496', '-26.747681', '281.731201', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152158, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143889', 1143889, '171.282501', '-27.115330', '283.741486', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151886, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143891', 1143891, '197.201508', '-28.186390', '271.644287', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151614, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143892', 1143892, '200.589005', '-27.467010', '274.696106', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151342, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143895', 1143895, '197.110001', '-27.467581', '277.015503', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151070, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143897', 1143897, '246.082199', '-21.335920', '271.557007', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150798, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143900', 1143900, '229.912994', '-24.472389', '284.220306', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150526, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143904', 1143904, '243.488205', '-22.337280', '276.104187', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150254, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143905', 1143905, '237.018402', '-23.084021', '269.268188', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149982, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143907', 1143907, '242.685898', '-23.822359', '245.136795', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149710, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143911', 1143911, '224.510498', '-25.336050', '241.230103', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149438, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143915', 1143915, '241.148895', '-25.036400', '235.342697', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149166, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143916', 1143916, '236.107697', '-26.824610', '216.055893', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148894, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143919', 1143919, '246.995605', '-24.468109', '240.298096', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146718, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143920', 1143920, '265.723907', '-25.564400', '226.344604', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148622, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143921', 1143921, '265.719299', '-26.269621', '219.037994', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148350, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143923', 1143923, '268.421387', '-21.408449', '246.509399', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148078, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143924', 1143924, '264.054688', '-19.323090', '252.478806', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147806, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143925', 1143925, '295.377899', '-18.290230', '266.437103', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147534, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1143934', 1143934, '316.585999', '-16.832951', '187.871704', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143935', 1143935, '314.021301', '-17.296310', '192.256302', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143936', 1143936, '311.854492', '-17.875420', '189.936905', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143938', 1143938, '283.100586', '-25.497869', '192.706100', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143941', 1143941, '280.262390', '-25.619940', '193.316498', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143944', 1143944, '273.152496', '-20.649960', '128.760193', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110300, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143945', 1143945, '303.365509', '-8.872850', '95.128830', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143946', 1143946, '296.499603', '-11.734670', '103.927902', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109756, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143949', 1143949, '301.016296', '-10.037700', '103.164902', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110028, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143952', 1143952, '274.860687', '-13.992570', '103.746002', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143953', 1143953, '277.363190', '-13.962050', '102.250702', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143962', 1143962, '297.610199', '-23.044500', '220.886002', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143963', 1143963, '309.994110', '-18.136681', '184.117996', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143966', 1143966, '299.197113', '-21.964729', '223.815796', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143969', 1143969, '297.872894', '-12.140140', '107.895203', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143970', 1143970, '276.631500', '-19.656750', '126.440804', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143971', 1143971, '297.779785', '-22.690210', '161.913406', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98332, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143972', 1143972, '371.881592', '-6.723549', '84.641747', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98604, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143973', 1143973, '376.154114', '-6.318017', '85.862457', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97788, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143974', 1143974, '371.085114', '-5.840127', '88.055183', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98060, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143983', 1143983, '419.912994', '-4.654048', '77.439484', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98876, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143984', 1143984, '424.551697', '-3.646953', '81.803574', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99692, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143985', 1143985, '428.493103', '-1.675420', '69.168533', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143987', 1143987, '401.540802', '-6.912460', '58.247761', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143988', 1143988, '403.463715', '-6.369321', '60.898708', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99148, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143989', 1143989, '378.988312', '-7.187046', '68.955467', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99420, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143990', 1143990, '405.752197', '-6.460996', '59.106491', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97516, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143991', 1143991, '387.045013', '-4.837157', '93.705597', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97244, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1143998', 1143998, '390.177887', '-4.509761', '93.888512', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96972, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144003', 1144003, '223.302307', '-22.244350', '140.968201', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91864, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144004', 1144004, '217.578293', '-21.988300', '138.200897', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90504, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144007', 1144007, '185.015701', '-24.153931', '154.465500', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90232, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144008', 1144008, '179.410904', '-23.832951', '152.981903', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91592, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144009', 1144009, '167.197998', '-27.995230', '192.997803', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91320, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144011', 1144011, '177.798798', '-24.733610', '159.351395', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91048, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144015', 1144015, '138.902802', '-27.603621', '237.109894', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92680, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144017', 1144017, '88.530487', '-27.058380', '290.765411', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92136, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144019', 1144019, '84.896217', '-28.451370', '271.261688', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92408, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144027', 1144027, '-15.138880', '-52.068508', '438.953705', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144028', 1144028, '-12.361740', '-51.361629', '435.444214', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73126, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144030', 1144030, '-9.676152', '-51.078831', '436.725891', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144031', 1144031, '-21.414761', '-45.509689', '411.041412', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70950, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144042', 1144042, '9.536865', '-48.508480', '474.235107', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67964, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144043', 1144043, '3.205714', '-47.435299', '471.491486', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67420, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144045', 1144045, '-11.876680', '-52.218342', '458.182587', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68236, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144047', 1144047, '-30.001869', '-55.355400', '500.188385', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71222, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144049', 1144049, '-35.678230', '-53.471958', '498.265686', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144050', 1144050, '-16.922300', '-53.971210', '467.582214', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144051', 1144051, '-30.825859', '-54.086170', '495.671692', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144066', 1144066, '-215.322098', '-30.287540', '345.076813', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144067', 1144067, '-217.336304', '-30.232090', '345.381989', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72582, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144068', 1144068, '-241.359406', '-30.546400', '355.281891', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72854, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144074', 1144074, '-187.557999', '-30.827459', '327.431396', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144076', 1144076, '-189.083893', '-30.732161', '329.140411', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144079', 1144079, '-207.943893', '-30.040119', '327.783203', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144085', 1144085, '-207.568497', '-30.624901', '298.084900', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71494, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144088', 1144088, '-217.678604', '-29.217609', '281.772491', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144089', 1144089, '-232.330093', '-26.492390', '293.040802', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144090', 1144090, '-230.365494', '-26.618240', '295.168701', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144095', 1144095, '-236.490906', '-26.792789', '270.853088', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144102', 1144102, '-269.982300', '-15.041580', '257.233795', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88056, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144103', 1144103, '-256.205414', '-24.029810', '238.507599', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88328, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144108', 1144108, '-250.331604', '-26.539511', '245.353897', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87512, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144111', 1144111, '-247.374802', '-26.295010', '199.152298', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87784, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144115', 1144115, '-145.718704', '-44.456711', '245.994507', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89144, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144117', 1144117, '-194.954300', '-56.667259', '298.548615', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89688, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144124', 1144124, '-88.115013', '-50.887539', '355.110413', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144132', 1144132, '-180.289703', '-58.090000', '341.292908', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144134', 1144134, '-173.453705', '-58.488270', '346.267395', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144136', 1144136, '-248.384903', '-70.863403', '400.043610', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144155', 1144155, '-265.522308', '-78.660339', '495.811401', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64452, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1144156', 1144156, '94.651657', '-28.693371', '205.296204', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52672, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144157', 1144157, '58.451691', '-24.165310', '201.325806', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144161', 1144161, '142.662994', '-27.379681', '171.947693', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51584, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144163', 1144163, '72.983849', '-14.541890', '160.479095', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53216, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144165', 1144165, '28.954960', '-9.060006', '115.734299', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53760, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144166', 1144166, '62.516159', '-10.939160', '113.847504', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53488, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144167', 1144167, '33.890240', '-7.635654', '75.669441', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1144171', 1144171, '38.681568', '-7.743955', '37.247219', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1145781', 1145781, '314.148712', '-9.873041', '137.315598', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1145783', 1145783, '316.563904', '-11.553430', '155.556900', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102140, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1145785', 1145785, '310.839111', '-10.058590', '146.018997', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101868, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1145786', 1145786, '335.961487', '-6.303717', '151.505005', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1145792', 1145792, '334.663391', '-4.191054', '173.662903', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1145794', 1145794, '342.177307', '-3.911723', '174.273193', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100780, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1145797', 1145797, '356.749786', '-1.121761', '182.588501', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368415', 1368415, '451.260101', '-3.443870', '238.795807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147256, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1368437', 1368437, '390.890289', '-7.586338', '269.886292', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146984, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1368491', 1368491, '313.954803', '-6.875740', '27.206791', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368493', 1368493, '318.414001', '-7.856604', '-8.765156', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368494', 1368494, '337.636292', '-5.691662', '26.687981', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368495', 1368495, '360.321503', '-3.134459', '15.892390', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368496', 1368496, '364.258301', '-3.572027', '19.096781', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368497', 1368497, '353.728394', '-5.753780', '25.100679', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368498', 1368498, '321.866913', '-7.314247', '-15.243810', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114918, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368499', 1368499, '317.799591', '-6.363059', '23.605659', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114646, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368501', 1368501, '310.197205', '-8.609804', '2.999502', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368502', 1368502, '307.043396', '-8.701551', '-1.767205', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114374, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368503', 1368503, '307.209808', '-7.736371', '-25.314760', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368506', 1368506, '279.991913', '-7.195922', '-25.793631', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368507', 1368507, '275.332886', '-6.079346', '-51.364719', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117366, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368508', 1368508, '268.817902', '-7.622407', '-26.344280', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368509', 1368509, '276.584106', '-5.971716', '-40.277569', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368513', 1368513, '273.210785', '-9.038651', '1.056271', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368515', 1368515, '271.523804', '-11.769340', '30.395180', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368516', 1368516, '255.359695', '-9.109683', '4.562400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368517', 1368517, '251.891006', '-8.924417', '10.996560', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368519', 1368519, '238.113907', '-10.699850', '39.986820', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368520', 1368520, '236.666702', '-11.041180', '47.762650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368521', 1368521, '216.099899', '-5.217842', '15.486120', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368522', 1368522, '219.648102', '-5.708765', '19.837851', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368527', 1368527, '226.886307', '-11.459570', '69.291168', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368528', 1368528, '232.117203', '-11.721460', '66.985252', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368530', 1368530, '217.647400', '-9.632435', '55.535179', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368531', 1368531, '262.570892', '-13.984700', '50.050228', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368532', 1368532, '253.925293', '-13.748430', '50.339458', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368537', 1368537, '36.721581', '-13.599010', '-35.811329', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368539', 1368539, '45.805561', '-2.063314', '-62.499821', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368540', 1368540, '43.942150', '-1.029362', '-68.421707', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368542', 1368542, '19.448151', '-0.446853', '-89.062424', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368546', 1368546, '57.928291', '9.733817', '-102.176399', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48054, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368548', 1368548, '55.925640', '6.821295', '-37.389530', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48326, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368554', 1368554, '68.129494', '7.053471', '-60.042889', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49142, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368555', 1368555, '94.406288', '8.411647', '-78.379066', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48598, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368556', 1368556, '145.311600', '6.469276', '-59.126930', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48870, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368560', 1368560, '117.309502', '6.760285', '-52.052681', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368561', 1368561, '160.460007', '3.641483', '-40.868118', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368562', 1368562, '-193.135696', '-32.369289', '261.702515', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368569', 1368569, '-19.247980', '-45.409012', '412.262085', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368570', 1368570, '-46.799500', '-47.531921', '426.291290', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368571', 1368571, '-36.310310', '-47.774849', '409.386902', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368577', 1368577, '354.033691', '-1.282395', '183.656601', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122256, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368578', 1368578, '338.217590', '-3.919866', '175.769104', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123072, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368579', 1368579, '320.962494', '-8.541780', '134.309296', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119264, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368580', 1368580, '311.398987', '-9.954162', '140.459198', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123344, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368582', 1368582, '313.089508', '-17.740789', '185.998001', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118176, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368583', 1368583, '274.723297', '-26.291660', '183.940598', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124160, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368584', 1368584, '304.162506', '-21.746981', '213.237000', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122800, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368587', 1368587, '273.532806', '-13.660890', '101.165001', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124976, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368590', 1368590, '303.309204', '-10.197260', '107.375298', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121984, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368591', 1368591, '372.633514', '-5.472790', '90.196060', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123888, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368594', 1368594, '376.821503', '-7.339636', '68.955467', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123616, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368596', 1368596, '410.155609', '-6.183658', '55.648460', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121440, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368597', 1368597, '412.797699', '-4.115298', '93.821388', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121168, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368598', 1368598, '362.752686', '-7.221369', '55.588570', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120624, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368600', 1368600, '330.403503', '-5.478035', '19.729870', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120080, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368601', 1368601, '340.436401', '-5.850005', '23.485689', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118720, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368602', 1368602, '334.164093', '-4.736384', '-1.168072', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120352, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368604', 1368604, '280.384491', '-6.088397', '-46.768951', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121712, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368605', 1368605, '246.078796', '-5.873863', '-10.449420', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122528, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368606', 1368606, '275.931305', '-10.226560', '7.661325', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118448, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368607', 1368607, '279.562286', '-10.758130', '40.909191', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118992, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368608', 1368608, '281.362915', '-10.660460', '38.721069', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119536, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(240, 'e0015', 'bnpc1368610', 1368610, '219.226303', '-10.849210', '70.298264', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125792, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368612', 1368612, '233.086899', '-9.948204', '40.259239', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124432, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368613', 1368613, '213.180206', '-3.941148', '-4.296664', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124704, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368614', 1368614, '207.285202', '-5.140594', '20.525330', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119808, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368616', 1368616, '239.936707', '-7.773538', '10.082270', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125520, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1368727', 1368727, '278.431305', '-15.600310', '291.462494', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1368728', 1368728, '265.339111', '-16.501490', '289.234711', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1369057', 1369057, '450.064789', '-3.280736', '237.567703', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145908, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369058', 1369058, '417.631012', '-3.443490', '258.794006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145636, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369059', 1369059, '431.584900', '-2.734727', '225.736801', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145364, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369060', 1369060, '433.904297', '-2.631201', '225.675797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145092, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369063', 1369063, '420.105713', '-3.826969', '244.376099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144820, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369064', 1369064, '420.595215', '-1.434317', '198.139404', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144548, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369066', 1369066, '420.503693', '-1.383187', '195.789505', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144264, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1369067', 1369067, '327.321198', '-5.054865', '262.409302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144004, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369069', 1369069, '418.255005', '-3.347633', '257.236389', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143720, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1369078', 1369078, '405.129486', '-6.796501', '230.618896', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143448, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1369079', 1369079, '379.850403', '-9.137354', '273.382690', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143188, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369081', 1369081, '282.579498', '-14.737670', '288.410797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142916, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369082', 1369082, '297.790985', '-17.412251', '269.611206', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142644, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369083', 1369083, '268.697693', '-19.984810', '251.224106', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142372, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369084', 1369084, '289.845093', '-14.468090', '305.104095', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142100, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369085', 1369085, '324.574585', '-14.779820', '286.915314', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141828, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369086', 1369086, '329.182800', '-13.956880', '285.480988', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141556, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369087', 1369087, '345.143799', '-11.551130', '289.967102', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141272, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1369088', 1369088, '252.741592', '-21.175320', '288.406799', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141012, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369089', 1369089, '218.890594', '-26.504971', '301.258789', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140740, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369090', 1369090, '219.501007', '-26.810150', '303.212006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140468, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369091', 1369091, '241.351898', '-22.922640', '271.923187', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140196, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369092', 1369092, '194.140503', '-27.267920', '297.596588', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139924, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369093', 1369093, '196.285995', '-27.929461', '274.390991', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139652, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369095', 1369095, '185.564896', '-32.730652', '315.266602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139380, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369096', 1369096, '161.730301', '-36.392811', '324.788208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139108, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369097', 1369097, '167.315094', '-27.481541', '282.978485', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138836, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369098', 1369098, '142.931198', '-30.685940', '303.578186', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138564, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369099', 1369099, '172.080307', '-41.270390', '355.679108', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138292, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369101', 1369101, '217.456299', '-28.130699', '347.341095', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138020, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369102', 1369102, '216.124100', '-28.447210', '349.443512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137748, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369103', 1369103, '185.566101', '-37.807560', '358.326202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137476, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369104', 1369104, '238.333801', '-24.868570', '356.358398', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137204, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369105', 1369105, '230.975800', '-27.237400', '321.187103', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136932, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369109', 1369109, '262.285889', '-26.207680', '223.339996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136660, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369112', 1369112, '226.922302', '-24.500299', '282.846985', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136388, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369113', 1369113, '270.740814', '-25.894609', '219.684097', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136116, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369114', 1369114, '226.555206', '-25.225269', '239.887299', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135844, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369116', 1369116, '282.357086', '-23.535101', '244.795303', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135572, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369121', 1369121, '333.561310', '2.185390', '242.975006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135300, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369126', 1369126, '391.683807', '0.442465', '197.375397', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135016, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1369127', 1369127, '374.291687', '0.069733', '177.932404', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125248, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369128', 1369128, '340.926086', '-4.172237', '171.404495', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103228, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369129', 1369129, '274.308289', '-21.454750', '133.409195', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101052, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369131', 1369131, '284.565399', '-25.650459', '196.215698', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101324, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369135', 1369135, '164.769394', '-24.938990', '163.613800', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92952, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1369136', 1369136, '126.420898', '-26.382891', '167.406693', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369137', 1369137, '128.709793', '-25.925119', '164.324402', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57556, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369138', 1369138, '131.686401', '-24.799540', '198.020599', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369139', 1369139, '74.797401', '-28.214760', '204.149094', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58372, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369140', 1369140, '71.341454', '-16.064501', '165.951599', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57828, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369141', 1369141, '69.103951', '-17.105560', '168.596893', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58100, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369142', 1369142, '48.614868', '-17.861691', '162.486298', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369143', 1369143, '69.590843', '-13.496570', '146.253998', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369146', 1369146, '39.957119', '-8.666501', '105.835701', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369147', 1369147, '52.015511', '-8.974514', '78.552917', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369148', 1369148, '45.149349', '-13.324360', '7.012329', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369149', 1369149, '17.379999', '-13.717900', '-20.370790', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369150', 1369150, '35.561901', '-13.693350', '-33.797138', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369151', 1369151, '44.338890', '-1.270125', '-66.438026', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369152', 1369152, '14.275760', '-0.570236', '-87.355873', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369153', 1369153, '31.780800', '-0.130703', '-85.079163', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369154', 1369154, '64.954559', '6.905480', '-85.581947', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369157', 1369157, '46.957291', '12.114440', '-121.487297', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369160', 1369160, '68.467163', '6.973328', '-53.543949', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369161', 1369161, '82.078217', '7.186952', '-63.706459', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58916, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369162', 1369162, '91.386230', '8.010939', '-78.294083', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58644, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369163', 1369163, '141.008499', '6.515503', '-53.391361', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369166', 1369166, '163.313705', '6.032107', '-46.804680', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369169', 1369169, '-31.436220', '-54.130669', '497.960510', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369174', 1369174, '21.103210', '-49.546139', '475.272614', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369177', 1369177, '-15.233060', '-53.066551', '466.036011', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369180', 1369180, '-48.539001', '-47.348751', '424.643188', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369183', 1369183, '-11.764770', '-51.560242', '438.742706', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369184', 1369184, '-91.746658', '-51.122200', '356.392212', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369185', 1369185, '-89.732468', '-51.292042', '358.650513', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369186', 1369186, '-116.542198', '-54.847111', '366.704803', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369187', 1369187, '-215.533707', '-63.035099', '360.219604', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369188', 1369188, '-179.797104', '-59.525509', '348.256592', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369189', 1369189, '-217.090103', '-64.042107', '364.888885', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369190', 1369190, '-255.542892', '-74.143631', '419.790894', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369191', 1369191, '-297.823914', '-79.049583', '481.552887', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369194', 1369194, '-267.105286', '-78.933182', '492.746185', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369197', 1369197, '-195.056107', '-32.913761', '285.816711', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63370, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369203', 1369203, '-194.417404', '-31.711460', '260.054596', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63914, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369206', 1369206, '-219.511200', '-30.548080', '332.944885', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63642, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369210', 1369210, '-169.922607', '-51.790081', '281.324493', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369225', 1369225, '415.314301', '-4.384437', '279.848297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134484, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369226', 1369226, '417.664215', '-4.268155', '279.787292', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134200, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1369227', 1369227, '416.351898', '-4.344605', '282.320313', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133928, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1369245', 1369245, '106.026802', '-24.064631', '188.681503', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52944, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1369266', 1369266, '110.856796', '6.893584', '-48.683529', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369268', 1369268, '106.950401', '7.553162', '-65.018799', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369270', 1369270, '448.720703', '-3.422734', '241.608597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133656, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1369283', 1369283, '400.411896', '-3.097628', '212.787003', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133396, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1369346', 1369346, '72.281059', '-23.743839', '185.561203', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1373459', 1373459, '443.619507', '-3.181869', '264.612488', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127146, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1373461', 1373461, '448.051788', '-2.900265', '234.756104', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133112, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1373462', 1373462, '416.268707', '-3.808599', '263.633698', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132840, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1373464', 1373464, '474.141296', '-3.220261', '248.381897', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132568, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1373465', 1373465, '472.096588', '-3.385255', '246.489807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132296, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1373466', 1373466, '475.150604', '-3.341773', '246.356903', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132036, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1373468', 1373468, '274.396088', '-14.909590', '275.718201', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127690, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1373469', 1373469, '166.918396', '-41.534370', '347.432587', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126874, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1373472', 1373472, '315.059814', '-12.244580', '158.583603', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101596, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1373473', 1373473, '320.444611', '-9.346396', '146.037094', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1373474', 1373474, '315.725800', '-9.276663', '126.870499', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1373475', 1373475, '321.508789', '-8.653498', '126.646599', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1373476', 1373476, '336.930115', '-3.588053', '182.083405', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1373477', 1373477, '323.688599', '-14.094800', '192.991898', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1373479', 1373479, '170.224701', '-26.854139', '298.491211', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1373480', 1373480, '259.386292', '-22.771570', '242.221405', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131486, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1373481', 1373481, '296.304993', '-24.768950', '202.106201', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1373482', 1373482, '160.660004', '-38.959309', '337.590302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131220, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1373497', 1373497, '335.683197', '-4.748982', '10.208240', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126602, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1373500', 1373500, '232.074402', '-6.008647', '2.020233', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127418, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1373502', 1373502, '393.522491', '-5.844142', '73.170151', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1373503', 1373503, '411.140686', '-5.930238', '61.455570', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1373504', 1373504, '347.812195', '-6.402293', '271.350494', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130936, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1373505', 1373505, '346.218903', '-6.677882', '272.394409', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130676, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1373507', 1373507, '292.224792', '-18.765341', '132.923004', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1373508', 1373508, '307.241913', '-8.558214', '101.772003', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1417935', 1417935, '204.363998', '-30.869049', '325.184998', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1417936', 1417936, '206.500305', '-30.502831', '322.743500', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130126, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1417937', 1417937, '206.591797', '-30.411280', '325.246002', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129860, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1417940', 1417940, '-165.340302', '-39.282860', '193.438599', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88872, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1417946', 1417946, '-298.084991', '-79.301208', '470.145599', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64724, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1417947', 1417947, '-302.235504', '-79.240173', '463.034912', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64180, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1417948', 1417948, '-232.433594', '-26.853029', '279.165588', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78554, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1417949', 1417949, '-298.420685', '-54.795170', '303.761414', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1417950', 1417950, '-300.953705', '-54.459469', '309.101898', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79370, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1417951', 1417951, '-271.875885', '-52.291519', '281.696686', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78282, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1417952', 1417952, '-278.400909', '-54.097359', '324.329590', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79098, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1417953', 1417953, '-275.976593', '-51.020748', '335.645813', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1417954', 1417954, '-252.932907', '-58.400982', '302.113312', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78826, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1417955', 1417955, '-229.778000', '-27.208941', '284.492401', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78010, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1417956', 1417956, '-202.834305', '-30.699909', '342.864288', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77466, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1417957', 1417957, '-191.225204', '-44.687611', '220.141800', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1417958', 1417958, '-264.080414', '-22.174829', '238.910095', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1417959', 1417959, '-229.297394', '-35.111050', '231.403000', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1417960', 1417960, '-174.044495', '-40.534210', '200.048401', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89416, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1417961', 1417961, '-149.616501', '-45.683731', '252.513397', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc1417968', 1417968, '-35.348652', '-13.415600', '-78.564903', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45346, 1, 0, 0, 0, 40, 30119, 0, 0, 0), +(240, 'e0015', 'bnpc1417973', 1417973, '-116.777298', '-9.689575', '-86.778084', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45074, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(240, 'e0015', 'bnpc1417975', 1417975, '-66.605652', '-8.194153', '-62.211121', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43714, 1, 0, 0, 0, 40, 30125, 0, 0, 0), +(240, 'e0015', 'bnpc1417976', 1417976, '-38.827709', '-13.552420', '-78.398163', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42904, 1, 0, 0, 0, 40, 30057, 0, 0, 0), +(240, 'e0015', 'bnpc1417977', 1417977, '-64.164253', '-8.163635', '-66.880310', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43986, 1, 0, 0, 0, 40, 30119, 0, 0, 0), +(240, 'e0015', 'bnpc1417978', 1417978, '-10.940770', '-10.482990', '-42.618488', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43176, 1, 0, 0, 0, 0, 30124, 0, 0, 0), +(240, 'e0015', 'bnpc1417979', 1417979, '-110.368500', '-9.353821', '-74.723450', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42632, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(240, 'e0015', 'bnpc1417981', 1417981, '-130.923203', '-9.875401', '-94.172653', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44802, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(240, 'e0015', 'bnpc1417982', 1417982, '-128.984497', '-10.045940', '-97.250549', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42088, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(240, 'e0015', 'bnpc1417983', 1417983, '-119.401901', '-9.597961', '-63.828548', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44530, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(240, 'e0015', 'bnpc1417984', 1417984, '-25.987261', '-7.826045', '-143.341904', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(240, 'e0015', 'bnpc1417985', 1417985, '-46.618172', '-8.729055', '-147.223099', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44258, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(240, 'e0015', 'bnpc1417986', 1417986, '-28.136749', '-8.067919', '-139.809906', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42360, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(240, 'e0015', 'bnpc1417987', 1417987, '-37.033691', '-9.445435', '-137.254898', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41816, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(240, 'e0015', 'bnpc1417988', 1417988, '-28.400631', '-7.899245', '-144.824905', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45618, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(240, 'e0015', 'bnpc1417991', 1417991, '59.539070', '-37.771149', '294.833313', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88600, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc1418004', 1418004, '315.449707', '-8.316214', '-13.626350', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120896, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc2315589', 2315589, '-77.122833', '-6.427255', '-71.078758', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55386, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc2315590', 2315590, '-133.217896', '-9.529019', '-60.232140', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55930, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc2315591', 2315591, '-106.534103', '-12.212950', '-111.347603', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55658, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc2315592', 2315592, '-105.572998', '-9.525784', '-86.103401', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54570, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc2315593', 2315593, '-77.411713', '-13.583240', '-132.304901', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54298, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc2315595', 2315595, '-37.583012', '-11.337520', '-125.597000', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55114, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc2315596', 2315596, '-4.898193', '-11.638100', '-36.911621', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc2320968', 2320968, '417.338806', '-2.166638', '180.231598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129576, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc2320969', 2320969, '422.079498', '-2.088056', '179.054596', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129316, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc2320970', 2320970, '421.093597', '-1.981825', '181.915405', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129032, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc2321008', 2321008, '38.345871', '11.978280', '-107.103104', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49414, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc2321010', 2321010, '-46.306919', '-9.823078', '-139.634399', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54842, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc2321012', 2321012, '205.010406', '-24.383320', '145.800797', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89960, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc2321013', 2321013, '115.746803', '-26.867279', '252.730103', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90776, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc2321016', 2321016, '14.364810', '-47.184280', '446.981415', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81268, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(240, 'e0015', 'bnpc2321017', 2321017, '8.855011', '-47.052078', '437.906494', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80996, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(240, 'e0015', 'bnpc2321018', 2321018, '23.615641', '-45.878761', '447.495605', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79908, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(240, 'e0015', 'bnpc2321019', 2321019, '-29.630119', '-53.701389', '454.788208', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc2342034', 2342034, '-104.783699', '-51.407688', '385.580200', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc2615829', 2615829, '247.882797', '-28.305531', '212.390305', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93998, 4, 0, 0, 0, 0, 30126, 0, 0, 0), +(240, 'e0015', 'bnpc2615830', 2615830, '219.897705', '-25.925119', '230.212799', 744, 0, 0, 0, 1, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95624, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc2615831', 2615831, '251.972198', '-28.702271', '209.338501', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95890, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc2615832', 2615832, '213.214203', '-27.298441', '257.099213', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96434, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc2615833', 2615833, '215.472595', '-27.237400', '253.040298', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94542, 4, 0, 0, 0, 0, 30119, 0, 0, 0), +(240, 'e0015', 'bnpc2615834', 2615834, '212.019608', '-27.601471', '252.518906', 744, 0, 0, 0, 0, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95080, 4, 0, 0, 0, 0, 30057, 0, 0, 0), +(240, 'e0015', 'bnpc2615835', 2615835, '223.315704', '-26.199789', '217.486801', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93726, 4, 0, 0, 0, 0, 30125, 0, 0, 0), +(240, 'e0015', 'bnpc2615836', 2615836, '230.090698', '-25.436840', '224.750107', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96162, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc2615837', 2615837, '251.606003', '-27.756210', '214.862198', 744, 0, 0, 0, 1, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94808, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc2849611', 2849611, '245.960098', '-27.145849', '217.639404', 743, 0, 0, 0, 1, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94270, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc2849612', 2849612, '221.789795', '-25.833570', '222.369705', 745, 0, 0, 0, 0, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96706, 4, 0, 0, 0, 0, 30119, 0, 0, 0), +(240, 'e0015', 'bnpc2849614', 2849614, '218.411407', '-26.477131', '218.507996', 744, 0, 0, 0, 0, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95352, 4, 0, 0, 0, 0, 30120, 0, 0, 0), +(240, 'e0015', 'bnpc3741110', 3741110, '73.289063', '-41.763981', '357.900299', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65534, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(240, 'e0015', 'bnpc3741111', 3741111, '90.043427', '-40.634819', '352.315491', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66072, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(240, 'e0015', 'bnpc3741112', 3741112, '85.557281', '-40.634819', '351.460999', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66610, 1, 0, 0, 0, 0, 30125, 0, 0, 0), +(240, 'e0015', 'bnpc3741117', 3741117, '73.065964', '-38.481918', '332.600189', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65262, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(240, 'e0015', 'bnpc3741118', 3741118, '52.970268', '-40.324650', '335.009186', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66344, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(240, 'e0015', 'bnpc3741119', 3741119, '68.443611', '-40.187721', '343.554413', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67154, 1, 0, 0, 0, 0, 30057, 0, 0, 0), +(240, 'e0015', 'bnpc3741122', 3741122, '53.208130', '-40.756901', '339.009613', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65800, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(240, 'e0015', 'bnpc3741123', 3741123, '50.547020', '-40.461750', '336.659790', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66882, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(240, 'e0015', 'bnpc3741124', 3741124, '53.528259', '-38.479301', '320.227112', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64990, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(240, 'e0015', 'bnpc3741132', 3741132, '-284.870697', '-49.925079', '340.580109', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77738, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc3741133', 3741133, '21.243629', '-45.595200', '442.469513', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80724, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(240, 'e0015', 'bnpc3741134', 3741134, '10.489580', '-47.098289', '439.071106', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81540, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(240, 'e0015', 'bnpc3741135', 3741135, '23.118601', '-45.096272', '440.785797', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80180, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(240, 'e0015', 'bnpc3741136', 3741136, '14.816470', '-45.761841', '435.965515', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79636, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(240, 'e0015', 'bnpc3741137', 3741137, '21.488041', '-45.079990', '439.112488', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80452, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(240, 'e0015', 'bnpc3741144', 3741144, '30.237329', '-47.804062', '466.828094', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69052, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc3741148', 3741148, '3.116203', '-49.230431', '481.867706', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69324, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc3741173', 3741173, '-41.599140', '-53.307251', '487.071014', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68508, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc3741178', 3741178, '28.775129', '-50.812210', '483.936310', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67692, 1, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(240, 'e0015', 'bnpc3741198', 3741198, '-42.711262', '-52.666340', '491.020508', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68780, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc3741238', 3741238, '106.088799', '-22.112341', '171.394897', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc3741243', 3741243, '90.759720', '-19.997610', '170.030807', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46156, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc3741245', 3741245, '112.405098', '-22.569309', '167.395905', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45884, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc3741251', 3741251, '98.788353', '-23.465191', '165.496506', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc3741254', 3741254, '99.891838', '-23.128969', '165.796494', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc3741257', 3741257, '104.599197', '-23.865101', '164.789703', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc3741264', 3741264, '112.733398', '-22.251949', '161.306900', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc3741271', 3741271, '111.878098', '-22.535490', '167.695908', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc3870413', 3870413, '454.933990', '-1.199433', '198.847107', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21300, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(240, 'e0015', 'bnpc3870422', 3870422, '355.536987', '-9.878284', '296.848114', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21034, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(240, 'e0015', 'bnpc3870434', 3870434, '313.523193', '-6.315191', '-66.822891', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20768, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(240, 'e0015', 'bnpc3870455', 3870455, '187.612900', '-2.180824', '-4.180596', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 49, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20484, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(240, 'e0015', 'bnpc3870460', 3870460, '107.120598', '-28.211399', '276.198486', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20230, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(240, 'e0015', 'bnpc3870467', 3870467, '52.319149', '-39.485619', '244.958893', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19952, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(240, 'e0015', 'bnpc3870476', 3870476, '-125.156197', '-45.844360', '225.082901', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19680, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(240, 'e0015', 'bnpc3870506', 3870506, '-54.058109', '-47.078789', '320.834991', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19396, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(240, 'e0015', 'bnpc3871285', 3871285, '245.121399', '-27.767639', '161.763901', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19130, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(240, 'e0015', 'bnpc3877610', 3877610, '460.799194', '-1.088999', '205.124603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128500, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc3897788', 3897788, '454.380188', '-1.495000', '207.570404', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128216, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(240, 'e0015', 'bnpc3898013', 3898013, '448.109894', '-1.597685', '204.794403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127956, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(240, 'e0015', 'bnpc4621558', 4621558, '-39.931252', '-7.787434', '-153.907501', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22586, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4293325', 4293325, '-2.556401', '12.090520', '0.138434', 2183, 0, 0, 0, 0, 6, 0, 0, 1459, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20748, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4293327', 4293327, '11.147130', '12.712400', '20.012110', 2184, 0, 0, 0, 1, 6, 0, 0, 1460, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20482, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4293619', 4293619, '46.559650', '20.492800', '-278.644989', 2005, 0, 0, 0, 9, 6, 0, 0, 1462, 0, '0.000000', 50, 0, 120, 1, 0, 30, 0, 24, 4, 0, 1, 0, 1, 1, '0.000000', '1.000000', 26416, 1, 4, 2000, 0, 0, 0, 4331740, 0, 0), +(241, 's1b1', 'bnpc4293622', 4293622, '-26.108219', '5.966248', '-149.401093', 2003, 0, 0, 0, 1, 6, 0, 0, 1463, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 2, 0, 1, 0, 1, 1, '0.000000', '-5.000000', 29706, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4293626', 4293626, '-24.887510', '5.996765', '-144.823395', 2006, 0, 0, 0, 9, 6, 0, 0, 1465, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 24, 4, 0, 1, 0, 0, 1, '0.000000', '-2.000000', 30244, 1, 4, 2000, 0, 0, 0, 4330157, 0, 0), +(241, 's1b1', 'bnpc4294161', 4294161, '-14.793430', '-0.300000', '-401.915314', 2007, 0, 0, 0, 0, 6, 0, 0, 1466, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14682, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4294168', 4294168, '-9.638420', '1.700000', '-411.533295', 2008, 0, 0, 0, 0, 6, 0, 0, 1467, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14416, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4311929', 4311929, '10.016740', '12.799160', '0.950731', 2185, 0, 0, 0, 1, 6, 0, 0, 1469, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20216, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4311930', 4311930, '-13.213200', '11.889580', '15.639900', 2186, 0, 0, 0, 1, 6, 0, 0, 1472, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19950, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4311944', 4311944, '-3.372393', '11.530870', '16.541981', 2284, 0, 0, 0, 0, 6, 0, 0, 1472, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19616, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4313799', 4313799, '49.521439', '2.882746', '-250.523193', 1998, 0, 0, 0, 1, 3, 0, 15, 1461, 0, '0.000000', 50, 0, 120, 1, 0, 20, 1, 24, 3, 0, 1, 1, 0, 0, '0.000000', '1.000000', 32008, 1, 4, 25, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4313806', 4313806, '44.235840', '1.052795', '-336.934387', 1998, 0, 0, 0, 1, 3, 0, 0, 1461, 0, '0.000000', 50, 0, 120, 1, 0, 50, 2, 24, 7, 0, 1, 1, 1, 0, '0.000000', '-2.000000', 25576, 1, 4, 25, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4329906', 4329906, '-30.680479', '0.100000', '-402.150513', 434, 0, 0, 0, 0, 6, 0, 0, 1466, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4330158', 4330158, '75.868713', '0.080066', '-319.222595', 1997, 0, 0, 0, 1, 6, 0, 0, 1464, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 24, 3, 0, 1, 0, 1, 1, '0.000000', '-2.000000', 27486, 1, 4, 2000, 0, 0, 0, 4330157, 0, 0), +(241, 's1b1', 'bnpc4330159', 4330159, '48.292480', '-0.965142', '-208.515900', 1997, 0, 0, 0, 1, 6, 0, 0, 1464, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 32, 4, 0, 1, 0, 1, 1, '-3.000000', '-2.000000', 29422, 1, 4, 2000, 0, 0, 0, 4330157, 0, 0), +(241, 's1b1', 'bnpc4330160', 4330160, '45.477150', '-1.371325', '-199.246704', 2003, 0, 0, 0, 1, 6, 0, 0, 1463, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 32, 4, 0, 1, 0, 1, 1, '0.000000', '-5.000000', 29978, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4330161', 4330161, '-29.117170', '5.915999', '-141.842606', 1997, 0, 0, 0, 1, 6, 0, 0, 1464, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 2, 0, 1, 0, 1, 1, '0.000000', '-2.000000', 31294, 1, 4, 2000, 0, 0, 0, 4330166, 0, 0), +(241, 's1b1', 'bnpc4330168', 4330168, '15.396300', '7.583679', '-213.550003', 2006, 0, 0, 0, 6, 6, 0, 0, 1465, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 24, 4, 0, 1, 0, 0, 1, '0.000000', '-2.000000', 30788, 1, 4, 2000, 0, 0, 0, 4330166, 0, 0), +(241, 's1b1', 'bnpc4330173', 4330173, '82.177711', '-2.067599', '-299.092102', 1997, 0, 0, 0, 1, 6, 0, 0, 1464, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 24, 3, 0, 1, 0, 1, 1, '0.000000', '-2.000000', 27214, 1, 4, 2000, 0, 0, 0, 4330194, 0, 0), +(241, 's1b1', 'bnpc4330187', 4330187, '123.704803', '4.470825', '-343.495789', 2004, 0, 0, 0, 1, 10, 0, 0, 1480, 0, '0.000000', 50, 0, 111, 1, 0, 30, 0, 32, 5, 0, 1, 0, 1, 1, '0.000000', '1.000000', 23330, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4330191', 4330191, '127.306000', '2.939391', '-366.186707', 2004, 0, 0, 0, 1, 10, 0, 0, 1480, 0, '0.000000', 50, 0, 111, 1, 0, 30, 0, 32, 5, 0, 1, 0, 1, 1, '0.000000', '1.000000', 22786, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4330192', 4330192, '128.266800', '4.498319', '-357.655090', 2004, 0, 0, 0, 1, 10, 0, 0, 1480, 0, '0.000000', 50, 0, 111, 1, 0, 30, 0, 32, 5, 0, 1, 0, 1, 1, '0.000000', '1.000000', 23874, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4330193', 4330193, '120.927696', '4.470825', '-349.630005', 2005, 0, 0, 0, 1, 6, 0, 0, 1462, 0, '0.000000', 50, 0, 120, 1, 0, 30, 0, 32, 5, 0, 1, 0, 1, 1, '0.000000', '1.000000', 23596, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4330195', 4330195, '94.919243', '6.184975', '-272.246399', 2006, 0, 0, 0, 6, 6, 0, 0, 1465, 0, '0.000000', 50, 0, 120, 1, 0, 30, 0, 24, 4, 0, 1, 0, 1, 1, '0.000000', '-2.000000', 26132, 1, 4, 2000, 0, 0, 0, 4330194, 0, 0), +(241, 's1b1', 'bnpc4330395', 4330395, '-3.067930', '11.772100', '9.784547', 2284, 0, 0, 0, 1, 6, 0, 0, 1459, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4331698', 4331698, '45.944950', '5.905212', '-231.921906', 2006, 0, 0, 0, 6, 6, 0, 0, 1465, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 60, 4, 0, 1, 0, 0, 1, '0.000000', '-2.000000', 30516, 1, 4, 2000, 0, 0, 0, 4331661, 0, 0), +(241, 's1b1', 'bnpc4331739', 4331739, '112.992996', '-13.015930', '-307.057404', 2006, 0, 0, 0, 6, 6, 0, 0, 1465, 0, '0.000000', 50, 0, 120, 1, 0, 30, 0, 24, 4, 0, 1, 0, 1, 1, '0.000000', '-2.000000', 26948, 1, 4, 2000, 0, 0, 0, 4330194, 0, 0), +(241, 's1b1', 'bnpc4331742', 4331742, '151.049103', '-13.046510', '-336.354614', 2005, 0, 0, 0, 9, 6, 0, 0, 1462, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 24, 4, 0, 1, 0, 0, 1, '0.000000', '1.000000', 22508, 1, 4, 2000, 0, 0, 0, 4331743, 0, 0), +(241, 's1b1', 'bnpc4331747', 4331747, '74.143547', '-1.022339', '-306.965790', 1997, 0, 0, 0, 1, 6, 0, 0, 1464, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 24, 3, 0, 1, 0, 1, 1, '0.000000', '-2.000000', 25854, 1, 4, 2000, 0, 0, 0, 4330157, 0, 0), +(241, 's1b1', 'bnpc4334696', 4334696, '-19.211121', '5.966248', '-145.494797', 1997, 0, 0, 0, 1, 6, 0, 0, 1464, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 2, 0, 1, 0, 1, 1, '0.000000', '-5.000000', 29150, 1, 4, 2000, 0, 0, 0, 4330157, 0, 0), +(241, 's1b1', 'bnpc4334700', 4334700, '39.843231', '-1.356478', '-193.632996', 2003, 0, 0, 0, 1, 6, 0, 0, 1463, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 32, 4, 0, 1, 0, 1, 1, '0.000000', '-2.000000', 28890, 1, 4, 2000, 0, 0, 0, 4330166, 0, 0), +(241, 's1b1', 'bnpc4334701', 4334701, '1.663208', '-7.522766', '-156.328705', 2006, 0, 0, 0, 9, 6, 0, 0, 1465, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 18, 4, 0, 1, 0, 0, 1, '0.000000', '-2.000000', 28612, 1, 4, 2000, 0, 0, 0, 4373923, 0, 0), +(241, 's1b1', 'bnpc4334702', 4334702, '51.316040', '-1.175049', '-203.814804', 1997, 0, 0, 0, 1, 6, 0, 0, 1464, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 32, 4, 0, 1, 0, 1, 1, '-3.000000', '-2.000000', 28334, 1, 4, 2000, 0, 0, 0, 4330166, 0, 0), +(241, 's1b1', 'bnpc4334709', 4334709, '33.415169', '5.966248', '-314.320587', 2006, 0, 0, 0, 6, 6, 0, 0, 1465, 0, '0.000000', 50, 0, 120, 1, 0, 30, 0, 24, 4, 0, 1, 0, 1, 1, '0.000000', '-2.000000', 26676, 1, 4, 2000, 0, 0, 0, 4373936, 0, 0), +(241, 's1b1', 'bnpc4334712', 4334712, '43.503422', '0.255773', '-211.133499', 2003, 0, 0, 0, 1, 6, 0, 0, 1463, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 32, 4, 0, 1, 0, 1, 1, '-3.000000', '-2.000000', 27882, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4334713', 4334713, '132.463501', '4.470825', '-347.096985', 2004, 0, 0, 0, 1, 10, 0, 0, 1480, 0, '0.000000', 50, 0, 111, 1, 0, 30, 0, 32, 5, 0, 1, 0, 1, 1, '0.000000', '1.000000', 24146, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(241, 's1b1', 'bnpc4334718', 4334718, '114.640999', '4.224340', '-362.062286', 2004, 0, 0, 0, 1, 10, 0, 0, 1480, 0, '0.000000', 50, 0, 111, 1, 0, 30, 0, 32, 5, 0, 1, 0, 1, 1, '0.000000', '1.000000', 23058, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4293813', 4293813, '0.125140', '-66.061417', '79.758377', 2009, 0, 0, 0, 0, 6, 0, 0, 1459, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12718, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4293816', 4293816, '0.162088', '0.024334', '46.907230', 2013, 0, 0, 0, 0, 6, 0, 0, 1471, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16062, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4293817', 4293817, '-30.985371', '-18.076759', '56.263390', 2012, 0, 0, 0, 0, 6, 0, 0, 1470, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17130, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4293818', 4293818, '46.536671', '-21.059750', '60.251179', 2014, 0, 0, 0, 0, 6, 0, 0, 1472, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14926, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4293819', 4293819, '38.237438', '-42.007511', '85.848297', 2015, 0, 0, 0, 0, 6, 0, 0, 1473, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13862, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4293821', 4293821, '-48.549000', '-38.944691', '94.536713', 2011, 0, 0, 0, 0, 6, 0, 0, 1469, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17996, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4293822', 4293822, '-0.056733', '-62.555092', '112.423599', 2010, 0, 0, 0, 0, 6, 0, 0, 1468, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19060, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4309078', 4309078, '48.452900', '-21.526100', '50.858219', 2272, 0, 0, 0, 0, 6, 0, 0, 1472, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14372, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4309080', 4309080, '38.270142', '-41.928761', '91.970703', 2273, 0, 0, 0, 0, 6, 0, 0, 1473, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13308, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4309082', 4309082, '-39.062191', '-18.020620', '57.799980', 2271, 0, 0, 0, 0, 6, 0, 0, 1470, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16576, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4309084', 4309084, '0.410202', '-65.922897', '77.795029', 2274, 0, 0, 0, 0, 6, 0, 0, 1459, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6104, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4309908', 4309908, '-0.015320', '-0.015320', '39.483479', 1442, 0, 0, 0, 0, 6, 0, 0, 1471, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15724, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4328360', 4328360, '4.025326', '-62.460590', '112.806900', 2270, 0, 0, 0, 0, 6, 0, 0, 1468, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4328794', 4328794, '0.070525', '-62.418461', '112.527397', 434, 0, 0, 0, 0, 6, 0, 0, 1459, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8268, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4328797', 4328797, '-38.009979', '-38.937080', '94.736191', 434, 0, 0, 0, 0, 6, 0, 0, 1459, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7996, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4328800', 4328800, '-38.133991', '-17.974880', '52.070648', 434, 0, 0, 0, 0, 6, 0, 0, 1459, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7724, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4328802', 4328802, '0.007618', '0.028386', '37.388809', 434, 0, 0, 0, 0, 6, 0, 0, 1459, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7452, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4328803', 4328803, '49.279110', '-20.964121', '52.704670', 434, 0, 0, 0, 0, 6, 0, 0, 1459, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7180, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4328804', 4328804, '38.343220', '-41.928299', '86.040337', 434, 0, 0, 0, 0, 6, 0, 0, 1459, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6908, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4331536', 4331536, '0.284680', '-65.973549', '75.758423', 2275, 0, 0, 0, 0, 6, 0, 0, 1459, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6370, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(242, 's1b2', 'bnpc4332771', 4332771, '0.037400', '-65.984840', '74.397346', 434, 0, 0, 0, 0, 6, 0, 0, 2193, 1, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6636, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331928', 4331928, '-12.048290', '-37.560810', '66.095711', 2000, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 4, 0, 1, 0, 1, 0, '-3.000000', '1.000000', 110204, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331931', 4331931, '-25.619930', '-187.518097', '46.524780', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 10, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 105160, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331934', 4331934, '-14.536030', '-38.010349', '56.638500', 2000, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 4, 0, 1, 0, 1, 0, '-3.000000', '1.000000', 109932, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331935', 4331935, '29.129391', '-74.784477', '-40.939999', 1997, 0, 0, 0, 1, 6, 0, 0, 1464, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 108584, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331936', 4331936, '3.212831', '-37.600281', '67.237801', 2000, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 4, 0, 1, 0, 1, 0, '-3.000000', '1.000000', 109660, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331937', 4331937, '16.132410', '-37.105400', '68.242493', 1997, 0, 0, 0, 1, 6, 0, 0, 1464, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 4, 0, 1, 0, 1, 0, '-3.000000', '1.000000', 108312, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331945', 4331945, '43.324902', '-75.002853', '-47.598049', 2000, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 109388, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331947', 4331947, '34.439579', '-74.357300', '-47.867611', 1997, 0, 0, 0, 1, 6, 0, 0, 1464, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 108040, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331950', 4331950, '26.840580', '-75.059143', '-52.262211', 2000, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 109116, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331951', 4331951, '31.806021', '-75.227661', '-50.605598', 1997, 0, 0, 0, 1, 6, 0, 0, 1464, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 107768, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331952', 4331952, '-19.943600', '-187.975998', '42.740479', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 10, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 104344, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331953', 4331953, '-26.504940', '-187.609695', '51.132931', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 10, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 104616, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331954', 4331954, '-19.150089', '-187.518097', '49.515499', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 10, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 105432, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331955', 4331955, '-22.110350', '-187.609695', '53.086060', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 10, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 104888, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331956', 4331956, '21.988159', '-225.055405', '-48.203308', 2002, 0, 0, 0, 1, 6, 0, 0, 1481, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 107330, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331960', 4331960, '-7.370178', '-262.592499', '56.260010', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 15, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 101352, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331961', 4331961, '-2.517761', '-262.592499', '56.839840', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 15, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 100808, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331962', 4331962, '-60.410461', '-225.024796', '-15.060730', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 12, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 101080, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331967', 4331967, '-62.302608', '-225.330002', '-8.255188', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 12, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 101896, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331970', 4331970, '-66.697197', '-224.658600', '-13.138060', 2000, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 107040, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331971', 4331971, '-16.250851', '-261.951691', '53.208130', 2002, 0, 0, 0, 1, 6, 0, 0, 1481, 0, '0.700000', 50, 0, 120, 1, 0, 15, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 100530, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331972', 4331972, '66.208862', '-225.085907', '24.856930', 2000, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '-5.000000', 106768, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331973', 4331973, '59.708500', '-224.963699', '30.960569', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 14, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '-5.000000', 102712, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331977', 4331977, '-12.456390', '-300.868195', '-16.618311', 1998, 0, 0, 0, 0, 6, 0, 0, 1461, 0, '0.000000', 50, 0, 120, 1, 0, 16, 0, 32, 5, 0, 1, 0, 0, 0, '0.000000', '1.000000', 106230, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331980', 4331980, '54.459469', '-225.146896', '29.892460', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 14, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '-5.000000', 102440, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331982', 4331982, '65.323853', '-225.116394', '20.981079', 2002, 0, 0, 0, 1, 6, 0, 0, 1481, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '-5.000000', 102162, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331983', 4331983, '53.086060', '-187.609695', '-0.045776', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 11, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 103528, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331984', 4331984, '52.719849', '-187.518097', '6.912292', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 11, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 102984, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331985', 4331985, '47.013062', '-187.945404', '3.067017', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 11, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 103256, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331986', 4331986, '57.236568', '-187.609695', '6.149353', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 11, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 104072, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331987', 4331987, '57.541752', '-187.609695', '1.296936', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 11, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 103800, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331988', 4331988, '0.228821', '-225.085907', '-62.424679', 2002, 0, 0, 0, 1, 6, 0, 0, 1481, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 106514, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331989', 4331989, '4.287720', '-225.513107', '-55.039310', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 13, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 105704, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331990', 4331990, '13.534730', '-225.513107', '-51.163509', 2000, 0, 0, 0, 0, 6, 0, 0, 2174, 0, '0.700000', 50, 0, 120, 1, 0, 13, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 101600, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331991', 4331991, '4.806519', '-225.085907', '-61.966919', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 0, 120, 1, 0, 13, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 105976, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331995', 4331995, '44.907230', '-385.092010', '48.722050', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 2, 120, 1, 0, 24, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 96748, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331996', 4331996, '46.127930', '-385.030914', '40.299068', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 2, 120, 1, 0, 24, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 97020, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4331999', 4331999, '28.244381', '-423.038086', '-56.717831', 2000, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 25, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 98676, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4332000', 4332000, '18.722780', '-422.995392', '-60.196899', 2002, 0, 0, 0, 1, 6, 0, 0, 1481, 0, '0.000000', 50, 0, 120, 1, 0, 25, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 94566, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4332001', 4332001, '13.992490', '-423.025909', '-62.088989', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 2, 120, 1, 0, 25, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 97564, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4332002', 4332002, '10.421880', '-423.117401', '-57.694401', 2002, 0, 0, 0, 1, 6, 0, 0, 1481, 0, '0.700000', 50, 2, 120, 1, 0, 25, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 97286, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4332003', 4332003, '8.712891', '-423.239502', '-63.065552', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 2, 120, 1, 0, 25, 0, 32, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 97836, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4332005', 4332005, '10.788090', '-348.134613', '-35.599300', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 2, 120, 1, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '-2.000000', 96204, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4332006', 4332006, '5.996765', '-348.317688', '-36.392818', 2000, 0, 0, 0, 2, 6, 0, 0, 2174, 0, '0.000000', 50, 2, 120, 1, 0, 23, 2, 32, 1, 0, 1, 1, 1, 0, '0.000000', '1.000000', 92372, 1, 4, 4000, 0, 0, 0, 4373257, 0, 0), +(243, 's1b3', 'bnpc4332007', 4332007, '2.300244', '-347.800110', '-38.406979', 2000, 0, 0, 0, 2, 6, 0, 0, 2174, 0, '0.000000', 50, 2, 120, 1, 0, 23, 2, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 92644, 1, 4, 4000, 0, 0, 0, 4373257, 0, 0), +(243, 's1b3', 'bnpc4332009', 4332009, '-10.849240', '-348.195587', '35.538212', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 2, 120, 1, 0, 20, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 95932, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4332010', 4332010, '-4.709486', '-348.195587', '36.026489', 2000, 0, 0, 0, 2, 6, 0, 0, 2174, 0, '0.000000', 50, 2, 120, 1, 0, 21, 1, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 91828, 1, 4, 4000, 0, 0, 0, 4373212, 0, 0), +(243, 's1b3', 'bnpc4332012', 4332012, '-8.224609', '-348.073486', '36.148560', 2000, 0, 0, 0, 2, 6, 0, 0, 2174, 0, '0.000000', 50, 2, 120, 1, 0, 21, 1, 32, 1, 0, 1, 1, 1, 0, '0.000000', '1.000000', 92100, 1, 4, 4000, 0, 0, 0, 4373212, 0, 0), +(243, 's1b3', 'bnpc4332013', 4332013, '-20.981199', '-348.043091', '37.704960', 2002, 0, 0, 0, 1, 6, 0, 0, 1481, 0, '0.700000', 50, 2, 120, 1, 0, 20, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 95382, 1, 4, 4000, 0, 0, 0, 4373212, 0, 0), +(243, 's1b3', 'bnpc4334695', 4334695, '-10.158710', '-112.972603', '31.891870', 1998, 0, 0, 0, 0, 6, 0, 0, 1461, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 32, 5, 0, 1, 0, 0, 0, '0.000000', '1.000000', 108850, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4373258', 4373258, '9.964111', '-348.073486', '-44.205379', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 2, 120, 1, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '-2.000000', 96476, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4373265', 4373265, '-9.964172', '-348.073486', '44.205318', 2001, 0, 0, 0, 0, 6, 0, 0, 1479, 0, '0.700000', 50, 2, 120, 1, 0, 20, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 95660, 1, 4, 4000, 0, 0, 0, 4373212, 0, 0), +(243, 's1b3', 'bnpc4373267', 4373267, '38.107300', '-385.449493', '40.346390', 2000, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 24, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 99572, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4373269', 4373269, '-30.361170', '-423.004608', '50.766029', 1998, 0, 0, 0, 0, 6, 0, 0, 1461, 0, '0.000000', 50, 0, 120, 1, 0, 26, 0, 32, 4, 0, 1, 0, 0, 0, '0.000000', '1.000000', 99306, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4373546', 4373546, '0.503479', '-416.952789', '76.493408', 2000, 0, 0, 0, 2, 6, 0, 0, 2174, 0, '0.000000', 50, 2, 120, 1, 0, 30, 4, 32, 2, 0, 1, 1, 1, 0, '0.000000', '1.000000', 92916, 1, 4, 4000, 0, 0, 0, 4373525, 0, 0), +(243, 's1b3', 'bnpc4373548', 4373548, '4.509219', '-416.952789', '76.371338', 2000, 0, 0, 0, 2, 6, 0, 0, 2174, 0, '0.000000', 50, 2, 120, 1, 0, 30, 4, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 94276, 1, 4, 4000, 0, 0, 0, 4373525, 0, 0), +(243, 's1b3', 'bnpc4373549', 4373549, '8.215181', '-416.952911', '76.310303', 2000, 0, 0, 0, 2, 6, 0, 0, 2174, 0, '0.000000', 50, 2, 120, 1, 0, 30, 4, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 93460, 1, 4, 4000, 0, 0, 0, 4373525, 0, 0), +(243, 's1b3', 'bnpc4373568', 4373568, '3.067017', '-420.675995', '-72.159912', 2000, 0, 0, 0, 2, 6, 0, 0, 2174, 0, '0.000000', 50, 2, 120, 1, 0, 31, 4, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 93732, 1, 4, 4000, 0, 0, 0, 4373525, 0, 0), +(243, 's1b3', 'bnpc4373569', 4373569, '-0.655896', '-420.675995', '-72.220947', 2000, 0, 0, 0, 2, 6, 0, 0, 2174, 0, '0.000000', 50, 2, 120, 1, 0, 31, 4, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 94004, 1, 4, 4000, 0, 0, 0, 4373525, 0, 0), +(243, 's1b3', 'bnpc4373571', 4373571, '6.531590', '-420.675995', '-72.037903', 2000, 0, 0, 0, 2, 6, 0, 0, 2174, 0, '0.000000', 50, 2, 120, 1, 0, 31, 4, 32, 2, 0, 1, 1, 1, 0, '0.000000', '1.000000', 93188, 1, 4, 4000, 0, 0, 0, 4373525, 0, 0), +(243, 's1b3', 'bnpc4374744', 4374744, '17.929260', '-348.104095', '-37.735600', 2002, 0, 0, 0, 1, 6, 0, 0, 1481, 0, '0.700000', 50, 2, 120, 1, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '-2.000000', 95110, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(243, 's1b3', 'bnpc4374745', 4374745, '31.906490', '-386.037994', '34.683720', 2002, 0, 0, 0, 1, 6, 0, 0, 1481, 0, '0.000000', 50, 0, 120, 1, 0, 24, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 94838, 1, 4, 4000, 0, 0, 0, 0, 0, 0), +(244, 's1b4', 'bnpc4294973', 4294973, '9.786888', '120.094299', '7.551685', 2016, 0, 0, 0, 0, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24696, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(244, 's1b4', 'bnpc4294974', 4294974, '-8.503906', '120.073097', '-12.959450', 2017, 0, 0, 0, 0, 6, 0, 0, 1475, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24430, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(244, 's1b4', 'bnpc4294976', 4294976, '-10.184070', '120.094299', '6.899574', 2018, 0, 0, 0, 0, 6, 0, 0, 1477, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24164, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(244, 's1b4', 'bnpc4294977', 4294977, '7.203128', '120.073097', '-6.950890', 2020, 0, 0, 0, 0, 6, 0, 0, 1478, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23632, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(244, 's1b4', 'bnpc4294978', 4294978, '9.875137', '120.094299', '6.792267', 2019, 0, 0, 0, 0, 6, 0, 0, 1476, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23898, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(244, 's1b4', 'bnpc4325171', 4325171, '14.417730', '0.000000', '19.979389', 2282, 0, 0, 0, 0, 6, 0, 0, 1474, 0, '1.200000', 50, 0, 120, 1, 0, 1, 0, 64, 5, 0, 1, 0, 1, 0, '0.000000', '-2.000000', 5628, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(244, 's1b4', 'bnpc4325176', 4325176, '14.297610', '-0.015320', '9.994568', 2282, 0, 0, 0, 0, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 64, 5, 0, 1, 0, 1, 0, '0.000000', '-2.000000', 5356, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(244, 's1b4', 'bnpc4325177', 4325177, '5.139073', '0.000000', '-11.651030', 2282, 0, 0, 0, 0, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 64, 5, 0, 1, 0, 1, 0, '0.000000', '-2.000000', 5084, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(244, 's1b4', 'bnpc4325179', 4325179, '-20.009920', '0.000000', '-14.480060', 2282, 0, 0, 0, 0, 6, 0, 0, 1474, 0, '1.200000', 50, 0, 120, 1, 0, 1, 0, 64, 5, 0, 1, 0, 1, 0, '0.000000', '-2.000000', 4812, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(244, 's1b4', 'bnpc4325180', 4325180, '-9.896688', '0.000000', '-14.430540', 2282, 0, 0, 0, 0, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 64, 5, 0, 1, 0, 1, 0, '0.000000', '-2.000000', 4540, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(244, 's1b4', 'bnpc4325181', 4325181, '11.523280', '0.000000', '-5.255621', 2282, 0, 0, 0, 0, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 64, 5, 0, 1, 0, 1, 0, '0.000000', '-2.000000', 4268, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(244, 's1b4', 'bnpc4325317', 4325317, '-0.046071', '0.131195', '0.065383', 434, 0, 0, 0, 0, 6, 0, 0, 686, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(245, 's1b5', 'bnpc4295027', 4295027, '2.251731', '50.021049', '4.753533', 2021, 0, 0, 0, 0, 6, 0, 0, 1482, 0, '0.000000', 50, 0, 120, 1, 0, 1, 1, 50, 10, 0, 1, 1, 1, 0, '0.000000', '1.000000', 13544, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(245, 's1b5', 'bnpc4295029', 4295029, '-5.666031', '50.061909', '10.274370', 2024, 0, 0, 0, 0, 6, 0, 0, 1483, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13278, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(245, 's1b5', 'bnpc4295030', 4295030, '10.505920', '49.942299', '6.626137', 2025, 0, 0, 0, 0, 6, 0, 0, 1484, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13012, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(245, 's1b5', 'bnpc4295031', 4295031, '1.261459', '49.976120', '1.304550', 2026, 0, 0, 0, 0, 6, 0, 0, 1485, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12746, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(245, 's1b5', 'bnpc4301934', 4301934, '3.670071', '50.044949', '3.992359', 2022, 0, 0, 0, 0, 6, 0, 0, 2171, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12480, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(245, 's1b5', 'bnpc4301937', 4301937, '6.426521', '49.920799', '5.328779', 2033, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(245, 's1b5', 'bnpc4301938', 4301938, '-0.040131', '50.028568', '4.506348', 2034, 0, 0, 0, 0, 6, 0, 0, 2170, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11948, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(245, 's1b5', 'bnpc4301939', 4301939, '3.653547', '49.935322', '7.620023', 2035, 0, 0, 0, 0, 6, 0, 0, 2210, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11682, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(245, 's1b5', 'bnpc4313934', 4313934, '-0.015320', '49.942749', '-0.015320', 2023, 0, 0, 0, 0, 6, 0, 0, 2176, 0, '0.000000', 50, 0, 120, 1, 0, 1, 1, 50, 10, 0, 1, 0, 1, 0, '0.000000', '1.000000', 11280, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(245, 's1b5', 'bnpc4322732', 4322732, '-6.577450', '50.015739', '-6.204218', 2283, 0, 0, 0, 0, 6, 0, 0, 1482, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4738, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(245, 's1b5', 'bnpc4328980', 4328980, '-6.277450', '50.005749', '-5.304218', 2283, 0, 0, 0, 0, 6, 0, 0, 1482, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4466, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(245, 's1b5', 'bnpc4374661', 4374661, '7.752398', '50.048420', '1.972908', 2286, 0, 0, 0, 0, 6, 0, 0, 1482, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 4200, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc1368411', 1368411, '-66.155998', '-12.582840', '-8.814363', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc1368412', 1368412, '-64.537338', '-12.499180', '-8.712757', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc1368413', 1368413, '-62.951370', '-12.426580', '-8.677147', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc1368414', 1368414, '-61.258369', '-12.364150', '-8.589471', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc1368416', 1368416, '-66.693230', '-12.961350', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212726, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc1368417', 1368417, '-64.495934', '-12.860610', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc1368418', 1368418, '-62.481739', '-12.772990', '-13.472360', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc1368419', 1368419, '-60.162369', '-12.662670', '-13.441840', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc1368420', 1368420, '-69.467598', '-13.149620', '-18.035919', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211644, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc1368440', 1368440, '-65.325943', '-13.142030', '-18.046921', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211372, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc1368441', 1368441, '-61.416431', '-13.052980', '-18.065041', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211100, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc1368442', 1368442, '-57.492748', '-12.665620', '-17.741350', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210828, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746473', 3746473, '-134.012207', '9.916103', '267.132690', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208458, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746474', 3746474, '-139.248093', '11.343600', '270.767487', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208186, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746475', 3746475, '-116.714996', '8.743372', '266.243988', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207914, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746477', 3746477, '-123.143700', '11.980280', '281.311798', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207642, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746478', 3746478, '-128.526794', '6.043580', '250.778503', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207370, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746481', 3746481, '-87.065170', '8.131585', '270.853210', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207098, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746484', 3746484, '-77.385406', '9.277164', '278.146301', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206826, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746485', 3746485, '-79.850502', '9.815605', '280.807892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206554, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746486', 3746486, '-57.801540', '7.714478', '280.245697', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206282, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746487', 3746487, '-32.103970', '8.045358', '306.695404', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206010, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746488', 3746488, '-33.263660', '8.805240', '310.174408', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205738, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746489', 3746489, '-23.206301', '7.924604', '316.282593', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205466, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746490', 3746490, '-1.823452', '12.616180', '355.344391', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205194, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746491', 3746491, '1.058939', '11.460450', '352.323212', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204922, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746492', 3746492, '-1.840275', '11.813140', '350.644714', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204650, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746493', 3746493, '-56.592079', '0.108709', '220.398895', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204378, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746494', 3746494, '-56.292080', '3.881968', '249.628098', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204106, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746495', 3746495, '-31.334530', '2.359202', '278.398193', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203834, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746496', 3746496, '-104.320801', '1.025299', '207.824005', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203562, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746498', 3746498, '7.768722', '1.031246', '256.953094', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203290, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746499', 3746499, '-123.605797', '2.842937', '210.266296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203018, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746500', 3746500, '30.048519', '10.050760', '356.964386', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202746, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746501', 3746501, '-97.688263', '-3.294564', '184.145203', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202474, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746503', 3746503, '-99.971313', '-3.426347', '180.765198', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202202, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746505', 3746505, '-87.144318', '-1.876907', '198.901306', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201930, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746506', 3746506, '-47.697250', '-4.439452', '201.516296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201658, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746507', 3746507, '-14.522570', '0.676844', '242.620300', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201386, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746508', 3746508, '-11.261070', '0.694751', '245.484695', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201114, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746514', 3746514, '-119.246803', '8.981372', '268.429688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155702, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746519', 3746519, '-132.127899', '6.316744', '252.007797', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155974, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746522', 3746522, '-155.544296', '14.321210', '274.575500', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156246, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746523', 3746523, '-155.193604', '7.549813', '251.117706', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155430, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746524', 3746524, '-92.355728', '5.076609', '248.889801', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154614, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746525', 3746525, '-107.799896', '1.451139', '209.227798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154886, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(248, 'e0017', 'bnpc3746526', 3746526, '-114.793701', '4.013075', '226.245499', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155158, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746527', 3746527, '28.597651', '13.168800', '391.636688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157606, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746528', 3746528, '-93.669998', '-2.292831', '193.599503', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157878, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746529', 3746529, '-86.737587', '1.982069', '218.821899', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158150, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746530', 3746530, '-94.103600', '-4.710398', '174.915298', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157334, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746532', 3746532, '-55.083771', '1.032392', '224.458603', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156518, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746533', 3746533, '-52.324100', '-0.635104', '220.185806', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156790, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746534', 3746534, '-52.024101', '-4.438385', '196.025299', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157062, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746535', 3746535, '-23.599480', '-4.862183', '218.164505', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162774, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746536', 3746536, '-2.930916', '14.263170', '364.690308', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165222, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746538', 3746538, '-40.705959', '2.362750', '241.470093', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165494, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746539', 3746539, '-66.280632', '6.869143', '269.246704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165766, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746541', 3746541, '4.373672', '4.711559', '297.562012', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164950, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746542', 3746542, '-63.836632', '11.354730', '293.474915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164134, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746543', 3746543, '-67.036057', '11.719290', '294.869385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164406, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746544', 3746544, '-40.587990', '10.584770', '307.244690', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164678, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746545', 3746545, '-18.006081', '5.176353', '307.655609', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159510, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746547', 3746547, '13.581710', '5.033936', '280.057404', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746557', 3746557, '59.891609', '12.558130', '450.125793', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746560', 3746560, '49.054600', '13.360080', '439.790100', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746579', 3746579, '-107.428101', '5.098667', '239.118896', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746589', 3746589, '15.346860', '15.164520', '392.385712', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200842, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746592', 3746592, '14.522880', '15.407670', '396.017303', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200570, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746594', 3746594, '34.258789', '14.106760', '421.936798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159782, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746595', 3746595, '60.659401', '11.900060', '438.181702', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160054, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746616', 3746616, '55.188671', '13.295150', '508.984802', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159238, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746617', 3746617, '66.524231', '10.880620', '515.488220', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200298, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746618', 3746618, '49.532551', '14.712430', '506.886414', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200026, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746619', 3746619, '50.356541', '14.371650', '503.254791', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199754, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746620', 3746620, '59.248550', '11.443580', '491.395813', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199482, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746621', 3746621, '87.897888', '3.259133', '489.249908', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158422, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746622', 3746622, '84.418831', '4.091218', '486.350708', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158694, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746623', 3746623, '46.372120', '15.609930', '520.347778', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158966, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746624', 3746624, '84.031380', '8.407674', '556.939026', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199210, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746625', 3746625, '89.244087', '6.908536', '552.574890', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198938, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746626', 3746626, '105.598701', '4.370574', '521.843201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198666, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746628', 3746628, '107.891403', '6.906938', '609.728882', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161414, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746629', 3746629, '160.979904', '10.423200', '445.205414', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746630', 3746630, '189.060593', '11.863390', '607.536072', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746688', 3746688, '86.533859', '11.154300', '622.308594', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198394, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746689', 3746689, '77.714149', '12.588650', '626.672729', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198122, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746690', 3746690, '81.986671', '11.825690', '632.593201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197850, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746691', 3746691, '42.256569', '15.522670', '621.038330', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197578, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746692', 3746692, '36.528320', '15.730630', '626.060913', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197306, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746693', 3746693, '33.963001', '15.853820', '622.955627', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197034, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746694', 3746694, '54.517780', '14.477480', '614.387390', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160870, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746695', 3746695, '75.144310', '14.202080', '664.210083', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160598, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746697', 3746697, '71.776787', '14.357050', '666.349792', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196762, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746699', 3746699, '110.074799', '9.705235', '672.023499', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196490, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746700', 3746700, '105.802299', '9.833974', '666.103027', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196218, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746701', 3746701, '114.622002', '9.802178', '661.738892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195946, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746702', 3746702, '102.630096', '9.930755', '678.326416', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160326, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746703', 3746703, '124.601700', '9.267537', '672.118774', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161142, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746704', 3746704, '139.915802', '3.409252', '629.204895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161958, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746706', 3746706, '148.317993', '4.103824', '654.705994', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195674, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746707', 3746707, '140.430801', '4.620288', '650.824585', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195402, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746708', 3746708, '144.703293', '4.162472', '656.745178', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195130, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3746728', 3746728, '105.175301', '7.446661', '611.285278', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161686, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746741', 3746741, '123.709900', '4.546344', '401.381409', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746744', 3746744, '119.896500', '4.229595', '400.430603', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746745', 3746745, '121.385498', '4.562400', '415.457306', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746747', 3746747, '94.951797', '4.409234', '415.757996', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746748', 3746748, '98.573242', '3.713897', '402.903290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746753', 3746753, '105.931702', '3.887046', '438.676788', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746754', 3746754, '103.130402', '3.837232', '441.897888', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746756', 3746756, '101.549301', '2.579426', '385.163391', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746757', 3746757, '126.748802', '2.272390', '326.781708', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746762', 3746762, '128.648804', '2.609246', '322.621399', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746767', 3746767, '115.312401', '0.839199', '310.200592', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746769', 3746769, '60.052872', '2.658700', '301.575806', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746771', 3746771, '66.487648', '2.270967', '295.222290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746772', 3746772, '59.572800', '2.550388', '279.994904', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746773', 3746773, '39.864429', '5.507329', '295.432587', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746775', 3746775, '28.239599', '1.102737', '258.417786', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746782', 3746782, '33.012630', '-0.000074', '236.507797', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746783', 3746783, '30.472219', '1.540232', '261.602997', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746790', 3746790, '40.329552', '0.198320', '191.668503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746791', 3746791, '42.740471', '0.381429', '188.281006', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189696, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746792', 3746792, '21.316620', '-1.942127', '212.041397', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189424, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746795', 3746795, '33.488029', '0.135540', '209.757507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189152, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746800', 3746800, '79.875580', '17.322849', '153.453400', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188880, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746801', 3746801, '86.274673', '14.097900', '174.830002', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188608, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746802', 3746802, '82.595718', '17.371531', '156.113602', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188336, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746803', 3746803, '68.047150', '12.851960', '169.148697', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188064, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746805', 3746805, '145.186905', '14.265870', '303.993011', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187792, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746806', 3746806, '134.595795', '15.951970', '271.548492', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187520, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746807', 3746807, '129.378799', '14.996020', '276.045807', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187248, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746808', 3746808, '102.709000', '6.216220', '218.986298', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186976, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746815', 3746815, '104.478500', '3.524787', '410.177704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162502, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746820', 3746820, '134.782898', '6.790217', '393.331787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162230, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746821', 3746821, '109.756599', '2.337350', '358.451385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163046, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746826', 3746826, '100.612602', '0.927920', '320.347412', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163862, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746828', 3746828, '122.748901', '1.776996', '318.298187', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163590, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746831', 3746831, '90.791931', '1.666962', '266.808197', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163318, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746834', 3746834, '115.643402', '6.086327', '252.986206', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153254, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746835', 3746835, '116.878197', '7.099676', '249.317596', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152982, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746839', 3746839, '134.754898', '15.738220', '277.605591', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152710, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746842', 3746842, '138.416901', '14.910950', '291.298401', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153526, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746843', 3746843, '69.640907', '10.773730', '192.122192', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154342, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746844', 3746844, '80.370789', '14.464900', '168.592697', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154070, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746845', 3746845, '58.563480', '13.422550', '142.645203', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153798, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746846', 3746846, '84.523247', '19.105749', '150.735306', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151350, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746847', 3746847, '44.427238', '1.305627', '214.361099', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151078, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746848', 3746848, '17.726910', '-2.276831', '214.661102', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150806, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746850', 3746850, '23.742001', '2.113425', '263.454895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151622, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746857', 3746857, '39.223301', '5.294607', '322.688812', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152438, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746859', 3746859, '72.028061', '7.308271', '404.591492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152166, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746861', 3746861, '127.672203', '6.607109', '430.716309', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151894, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746864', 3746864, '165.074600', '12.246150', '482.778503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186704, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746867', 3746867, '168.492706', '12.057270', '478.475494', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186432, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746868', 3746868, '162.989304', '12.037260', '478.563507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186160, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746870', 3746870, '159.288895', '10.574450', '408.590790', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185888, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746871', 3746871, '163.653000', '10.757560', '411.825714', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185616, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746872', 3746872, '180.336197', '12.793920', '406.002014', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185344, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746873', 3746873, '161.736893', '16.236589', '388.045105', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185072, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746876', 3746876, '133.837296', '9.269427', '459.531403', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184800, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746878', 3746878, '131.557098', '8.976067', '457.624695', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184528, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746880', 3746880, '120.227203', '8.368025', '485.318115', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184256, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746885', 3746885, '134.445908', '12.144460', '507.273987', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183984, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746887', 3746887, '131.554993', '12.056210', '504.412415', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183712, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746889', 3746889, '140.997406', '11.949580', '487.139313', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183440, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746891', 3746891, '177.389404', '11.185200', '525.833618', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183168, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746894', 3746894, '180.637207', '11.258170', '523.414673', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182896, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746896', 3746896, '163.836105', '12.375020', '511.253387', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182624, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746898', 3746898, '147.262100', '7.242397', '543.931824', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182352, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746902', 3746902, '159.838196', '8.834927', '539.787781', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182080, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746905', 3746905, '155.880402', '7.197376', '556.779175', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181808, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746908', 3746908, '158.138794', '8.079927', '559.495300', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181536, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746910', 3746910, '143.386200', '7.563845', '583.138916', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181264, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746911', 3746911, '141.779205', '7.213043', '585.132019', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180992, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746913', 3746913, '138.754898', '6.737441', '570.297424', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180720, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746914', 3746914, '149.117798', '6.128607', '602.883972', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180448, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746915', 3746915, '169.704697', '11.348940', '603.184021', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180176, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746916', 3746916, '180.008804', '11.209140', '617.096130', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179904, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746917', 3746917, '182.074905', '11.129530', '618.747620', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179632, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746918', 3746918, '203.008896', '12.064710', '597.300476', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179360, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746919', 3746919, '222.377304', '10.658940', '600.289978', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179088, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746920', 3746920, '219.857101', '10.195060', '606.104126', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178816, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746921', 3746921, '216.053207', '12.886560', '579.694885', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178544, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746922', 3746922, '254.440308', '11.644550', '583.224670', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178272, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746923', 3746923, '187.395996', '12.680200', '480.674408', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178000, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746925', 3746925, '122.484100', '8.621300', '468.558685', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174198, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746927', 3746927, '152.697006', '11.123780', '465.049103', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173382, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746928', 3746928, '200.189301', '12.546850', '452.841888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173654, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746929', 3746929, '184.320801', '12.674630', '482.649414', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174470, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746930', 3746930, '161.638794', '12.497090', '508.781494', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175286, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746932', 3746932, '134.477707', '12.039320', '494.041290', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175558, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746933', 3746933, '157.244202', '8.895963', '538.017822', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174742, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746934', 3746934, '145.677795', '11.978280', '517.051880', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175014, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746937', 3746937, '112.465202', '5.551401', '523.979492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168486, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746941', 3746941, '164.965195', '10.635490', '582.482483', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168214, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746945', 3746945, '140.062500', '7.095398', '581.505981', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167942, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746946', 3746946, '126.004097', '4.418174', '596.074219', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169302, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746951', 3746951, '205.096497', '11.978280', '595.452820', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169030, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746954', 3746954, '201.556396', '10.391350', '620.202881', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168758, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746956', 3746956, '223.407303', '9.658914', '609.063782', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167670, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746958', 3746958, '230.853699', '7.095398', '629.480286', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166582, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746959', 3746959, '228.412201', '6.607109', '632.684814', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166310, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746960', 3746960, '250.843002', '10.543940', '603.967285', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166038, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746962', 3746962, '251.148193', '11.947770', '580.346313', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167398, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746963', 3746963, '236.801498', '16.670509', '560.962524', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167126, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746965', 3746965, '239.996399', '16.684830', '564.761475', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166854, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746966', 3746966, '219.876907', '16.677370', '559.278870', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169574, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746967', 3746967, '255.603806', '16.647539', '552.574890', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172294, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746968', 3746968, '261.768494', '13.412630', '571.068787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172022, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746969', 3746969, '261.341187', '16.678061', '523.765930', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171750, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746970', 3746970, '263.263885', '16.647539', '520.866577', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173110, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746971', 3746971, '247.730194', '16.647539', '499.259888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172838, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746972', 3746972, '210.126297', '16.670370', '499.584686', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172566, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746973', 3746973, '206.265198', '16.709129', '502.872498', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171478, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746974', 3746974, '201.359299', '16.670370', '525.525696', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170390, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746975', 3746975, '199.202896', '16.634470', '546.190796', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170118, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746976', 3746976, '201.042099', '16.670389', '547.166199', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169846, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3746983', 3746983, '47.837040', '20.883829', '-297.468597', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79320, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3746984', 3746984, '30.218941', '19.809231', '-261.464111', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80402, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(248, 'e0017', 'bnpc3746985', 3746985, '45.726398', '19.952000', '-251.705505', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79048, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3746988', 3746988, '37.782612', '19.928471', '-277.190186', 736, 0, 0, 0, 1, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80130, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3746992', 3746992, '32.101620', '19.979660', '-229.510406', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79858, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(248, 'e0017', 'bnpc3746993', 3746993, '32.891548', '19.908630', '-233.898605', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78776, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(248, 'e0017', 'bnpc3746997', 3746997, '-40.889229', '-6.750034', '159.270004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88278, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747003', 3747003, '-38.858761', '-6.750058', '155.119003', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88550, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747004', 3747004, '-21.989389', '-6.750032', '151.563995', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87190, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747006', 3747006, '-1.016211', '-6.750022', '160.127197', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89638, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747009', 3747009, '3.375875', '-6.751163', '164.669601', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89910, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747010', 3747010, '5.926142', '-6.750027', '161.728195', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89366, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747012', 3747012, '22.984619', '-6.750012', '165.561600', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89094, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747015', 3747015, '30.818211', '-6.750096', '148.130096', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88822, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747018', 3747018, '-6.179034', '-6.750058', '138.765106', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90182, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747019', 3747019, '-2.610643', '-6.750058', '141.990707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87734, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747021', 3747021, '-15.651240', '-6.750003', '122.209503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87462, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747022', 3747022, '-52.276199', '-6.750027', '169.793900', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88006, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747028', 3747028, '-73.794739', '-6.750006', '155.086899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91814, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747033', 3747033, '-84.128677', '-6.750047', '148.117004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90454, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747034', 3747034, '-88.289063', '-6.750033', '145.505707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90998, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747037', 3747037, '-81.662231', '-6.750007', '162.451996', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91542, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747042', 3747042, '-100.621399', '-6.750030', '133.779007', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91270, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747078', 3747078, '174.099396', '10.387860', '561.876526', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177728, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747306', 3747306, '166.825607', '12.296140', '403.792114', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171206, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747310', 3747310, '155.935303', '9.673933', '431.016296', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170934, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747330', 3747330, '-88.883842', '-0.106860', '109.147697', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747331', 3747331, '-61.120312', '0.636424', '88.682060', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747332', 3747332, '-80.643967', '-0.473077', '67.368530', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747333', 3747333, '-86.717056', '0.991789', '72.831261', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747336', 3747336, '-36.911621', '-3.830061', '32.700039', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747337', 3747337, '-40.695862', '-4.928711', '25.589331', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747338', 3747338, '-11.550680', '0.488563', '-28.281300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747339', 3747339, '17.013760', '3.036498', '-38.223900', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747340', 3747340, '-58.237549', '-4.110259', '-107.568703', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110020, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747341', 3747341, '-67.615173', '-4.777174', '-101.631897', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109476, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747342', 3747342, '-91.142181', '-0.778257', '-101.335197', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109748, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747344', 3747344, '-126.726303', '9.466410', '-79.290817', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110564, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747345', 3747345, '-162.798492', '10.177720', '-67.887444', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114644, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747347', 3747347, '-162.133194', '17.720350', '-97.090424', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114916, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747349', 3747349, '-170.820297', '17.510420', '-95.798119', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114372, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747353', 3747353, '-144.544800', '8.164017', '-26.941380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113828, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747356', 3747356, '-176.280701', '8.164456', '-26.641380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114100, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747358', 3747358, '-181.261993', '6.912290', '-21.225349', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116004, 6, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(248, 'e0017', 'bnpc3747359', 3747359, '-207.415894', '10.971190', '-31.418369', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116276, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747362', 3747362, '-142.900803', '6.271411', '-160.784302', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115732, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747363', 3747363, '-153.948898', '13.420070', '-190.044296', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115188, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747364', 3747364, '-199.122604', '1.060047', '7.769498', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112468, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747365', 3747365, '-100.182404', '-4.169586', '5.823180', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112196, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747366', 3747366, '-162.648407', '1.476818', '27.867500', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112740, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747368', 3747368, '-228.292801', '1.271454', '31.448839', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113284, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747369', 3747369, '-281.000000', '1.547629', '6.098617', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113012, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747370', 3747370, '-292.305786', '1.883296', '3.669711', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110292, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747371', 3747371, '-289.186615', '0.923461', '44.489441', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111108, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747372', 3747372, '-331.967499', '-0.344346', '37.288601', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110836, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747373', 3747373, '-367.222809', '14.331700', '37.588600', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111380, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747374', 3747374, '-362.704590', '17.228571', '24.585470', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111924, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747376', 3747376, '-337.512299', '2.239006', '84.820068', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111652, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747380', 3747380, '-350.515015', '5.752604', '108.384804', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113556, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747385', 3747385, '-374.964294', '1.092578', '72.868820', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115460, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747388', 3747388, '-52.163811', '-2.028311', '119.953003', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147810, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747389', 3747389, '-86.052368', '0.110645', '102.987396', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147538, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747390', 3747390, '-74.317467', '-4.983451', '25.989620', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147266, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747391', 3747391, '-33.861969', '-6.175569', '6.276085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146994, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747393', 3747393, '13.815840', '0.849448', '-43.540058', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146722, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747394', 3747394, '-25.443001', '-6.505634', '-66.767128', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146450, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747395', 3747395, '-66.218620', '-2.263651', '-110.189796', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146178, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747396', 3747396, '-92.423927', '2.517692', '-129.686493', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747397', 3747397, '-120.059502', '11.096300', '-65.332710', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747398', 3747398, '-123.346199', '11.132750', '-62.877190', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747399', 3747399, '-135.404602', '3.017960', '-134.773499', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145090, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747400', 3747400, '-155.932007', '14.084030', '-185.687103', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747401', 3747401, '-176.806305', '20.096081', '-127.183998', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144546, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747402', 3747402, '-182.692200', '11.068910', '-54.575550', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144274, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747403', 3747403, '-188.219101', '8.602026', '-26.668791', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144002, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747404', 3747404, '-125.142403', '-1.327417', '12.701530', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143730, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747405', 3747405, '-142.871094', '-0.211552', '-0.011758', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143458, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747406', 3747406, '-188.977707', '1.185343', '0.288242', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143186, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747407', 3747407, '-196.063202', '-0.991883', '44.632591', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747408', 3747408, '-198.598099', '-1.427130', '46.344830', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142642, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747409', 3747409, '-265.374908', '-0.871808', '46.644829', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747410', 3747410, '-245.222107', '0.679796', '27.065580', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747411', 3747411, '-236.532196', '4.119698', '-11.326280', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747413', 3747413, '-237.229904', '7.081615', '-22.989599', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141554, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747414', 3747414, '-238.542206', '7.219037', '-24.718719', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747415', 3747415, '-245.215302', '6.500818', '-25.125641', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747417', 3747417, '-335.459198', '7.751451', '2.210185', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747419', 3747419, '-332.434692', '-0.635067', '45.192638', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747420', 3747420, '-338.391815', '2.787159', '90.300163', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140194, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747635', 3747635, '-101.580002', '3.185857', '-122.629700', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747636', 3747636, '-113.067703', '0.190863', '-235.496902', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747637', 3747637, '-8.689189', '-2.987621', '-71.427528', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747853', 3747853, '-210.928299', '22.971910', '-101.417801', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82028, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3747854', 3747854, '-210.061996', '22.349720', '-98.801086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82844, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3747855', 3747855, '-199.564606', '24.777719', '-122.897400', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82572, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3747856', 3747856, '-217.284500', '27.674749', '-122.597397', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81756, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(248, 'e0017', 'bnpc3747858', 3747858, '-217.212097', '28.120930', '-124.432098', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81212, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(248, 'e0017', 'bnpc3747859', 3747859, '-208.813400', '29.458891', '-133.137894', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80940, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3747860', 3747860, '-223.520599', '24.171949', '-95.828552', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81484, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3747864', 3747864, '-228.529297', '20.575800', '-76.218086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85564, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3747865', 3747865, '-241.385498', '18.354990', '-63.139381', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85292, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3747867', 3747867, '-243.216904', '18.379009', '-62.623611', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86380, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3747868', 3747868, '-255.936401', '24.723961', '-77.803009', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86108, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3747869', 3747869, '-267.446411', '25.988930', '-78.509064', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85836, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(248, 'e0017', 'bnpc3747870', 3747870, '-266.262207', '26.413910', '-80.013046', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86924, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(248, 'e0017', 'bnpc3747873', 3747873, '-288.302704', '28.840969', '-91.487991', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86652, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3747874', 3747874, '-273.846008', '27.999920', '-103.128998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83660, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3747876', 3747876, '-257.572906', '27.938169', '-88.810738', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83932, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3747877', 3747877, '-234.919403', '27.970850', '-103.431198', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84476, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(248, 'e0017', 'bnpc3747880', 3747880, '-245.382996', '27.999990', '-107.453003', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83116, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3747881', 3747881, '-254.081406', '28.000000', '-102.002197', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84204, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(248, 'e0017', 'bnpc3747883', 3747883, '-258.959106', '28.000000', '-105.536201', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82300, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3747884', 3747884, '-251.270294', '27.969730', '-102.616898', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85020, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(248, 'e0017', 'bnpc3747886', 3747886, '-248.655701', '28.000000', '-96.725998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84748, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3747889', 3747889, '-248.153000', '28.470831', '-127.263100', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83388, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(248, 'e0017', 'bnpc3747891', 3747891, '-234.992294', '9.310618', '-37.905788', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139922, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747893', 3747893, '-237.711700', '8.873294', '-42.033760', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139650, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747899', 3747899, '-214.038300', '-30.502831', '123.735397', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139384, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747900', 3747900, '-250.516998', '-31.060820', '85.115646', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139118, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747904', 3747904, '-201.968796', '-30.857059', '117.357803', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138840, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747905', 3747905, '-183.124893', '-31.750071', '106.885902', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138568, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747906', 3747906, '-185.311996', '-31.750059', '109.415100', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138296, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747907', 3747907, '-152.843002', '-31.750000', '109.715103', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138024, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747908', 3747908, '-166.101105', '-31.750000', '110.540100', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137758, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747909', 3747909, '-169.604507', '-27.712351', '77.843430', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137486, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747910', 3747910, '-167.071503', '-27.177780', '76.317528', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137214, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747911', 3747911, '-210.234406', '-30.382589', '95.879173', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136942, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747913', 3747913, '-195.861603', '-27.444660', '129.920502', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136670, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747914', 3747914, '-224.566406', '-31.750071', '110.176003', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136398, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747915', 3747915, '-263.312103', '-31.750090', '97.519081', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136126, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747916', 3747916, '-255.968094', '-31.750130', '95.789261', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135848, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747919', 3747919, '-211.436401', '-30.614429', '97.981651', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135576, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747921', 3747921, '-244.620895', '-28.275660', '117.486801', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135304, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747922', 3747922, '-225.970795', '-15.579620', '71.709572', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135026, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747923', 3747923, '-170.891495', '-26.165300', '72.662949', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134754, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747924', 3747924, '-154.802902', '-29.800900', '94.071899', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134482, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747925', 3747925, '-164.402603', '-31.750019', '112.296303', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747927', 3747927, '-213.131393', '-30.063490', '125.099403', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747928', 3747928, '-234.579193', '-29.342421', '117.079697', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747930', 3747930, '-206.002899', '-30.332180', '97.422249', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747931', 3747931, '-258.774902', '-31.750071', '93.732712', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747933', 3747933, '-124.520401', '25.876591', '-384.084900', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117364, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747935', 3747935, '-120.378502', '25.406219', '-376.089111', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117636, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747936', 3747936, '-71.168182', '15.618890', '-341.319214', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117908, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747937', 3747937, '-140.945007', '34.283039', '-443.520813', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116548, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747945', 3747945, '-104.844803', '10.208240', '-322.407898', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116820, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747953', 3747953, '-68.964897', '24.845461', '-295.047913', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117092, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747955', 3747955, '-30.148661', '20.242010', '-347.723907', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118180, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747958', 3747958, '-20.706499', '20.599291', '-342.888702', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118724, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747963', 3747963, '20.322849', '15.975690', '-350.654205', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118996, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747965', 3747965, '39.420231', '19.301970', '-356.003815', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119268, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3747975', 3747975, '-138.811401', '27.237310', '-416.372986', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747994', 3747994, '-93.431030', '7.583686', '-301.106293', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3747997', 3747997, '-65.966766', '21.859249', '-305.947601', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748004', 3748004, '-66.655212', '20.943001', '-309.725586', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748006', 3748006, '-38.712181', '21.255770', '-344.167297', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748009', 3748009, '-93.684303', '18.821621', '-371.862793', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748015', 3748015, '-113.144402', '27.605829', '-397.741913', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131490, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748017', 3748017, '-112.844398', '28.132500', '-450.977997', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748018', 3748018, '-108.119003', '27.149870', '-454.027008', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748020', 3748020, '-152.178299', '27.511971', '-419.668915', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748022', 3748022, '35.132519', '17.855400', '-352.433105', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748394', 3748394, '65.413780', '20.079309', '-340.723206', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748396', 3748396, '-140.276199', '-3.219701', '-317.433502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748397', 3748397, '-147.234299', '-4.593012', '-324.147400', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748399', 3748399, '-210.589798', '1.083344', '-288.624390', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748402', 3748402, '-72.186493', '11.340310', '-240.295197', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748407', 3748407, '-77.690918', '8.765988', '-234.389694', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748409', 3748409, '-50.269390', '11.709270', '-222.062698', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748410', 3748410, '-65.652512', '8.342214', '-211.891998', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748411', 3748411, '-21.376921', '8.231496', '-242.911896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748412', 3748412, '-16.418360', '6.341013', '-249.044601', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748413', 3748413, '-6.975120', '11.175980', '-282.658691', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106490, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748414', 3748414, '10.056190', '8.215180', '-250.173004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748415', 3748415, '5.360405', '-0.923770', '-218.657303', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748416', 3748416, '48.714218', '0.699683', '-174.900604', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748417', 3748417, '95.936577', '1.386500', '-186.119995', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748418', 3748418, '31.585911', '8.951487', '-139.193497', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748419', 3748419, '35.112041', '16.424919', '-113.143204', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748420', 3748420, '34.363049', '8.229201', '-145.052994', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748421', 3748421, '90.860474', '1.763928', '-189.065002', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748422', 3748422, '113.054001', '1.174898', '-202.746704', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748423', 3748423, '130.461395', '1.093745', '-233.497101', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748424', 3748424, '124.484100', '0.743076', '-229.449493', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748425', 3748425, '89.422256', '3.504610', '-218.853806', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748428', 3748428, '-184.704300', '-4.704755', '-317.082306', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748429', 3748429, '-177.061203', '-3.447654', '-291.626190', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748430', 3748430, '-168.688507', '-1.968461', '-348.439789', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102954, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748431', 3748431, '-142.835693', '-1.140769', '-353.109894', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748433', 3748433, '-167.528793', '6.179857', '-382.681000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748434', 3748434, '-192.189301', '-4.726788', '-315.063293', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97242, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748436', 3748436, '-213.360901', '-4.497713', '-340.979004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748437', 3748437, '-234.150696', '5.014801', '-286.084686', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98602, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748438', 3748438, '-218.334900', '17.160500', '-255.482300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748443', 3748443, '-212.971405', '13.338840', '-260.496307', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748479', 3748479, '-151.282501', '-4.870804', '-286.887787', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748499', 3748499, '-178.949402', '6.440631', '-256.865692', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748520', 3748520, '-148.505096', '-5.306737', '-314.775085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748524', 3748524, '-185.881104', '-4.844985', '-310.895508', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748526', 3748526, '-164.369003', '1.507254', '-251.882507', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748528', 3748528, '-207.412399', '17.160610', '-247.635193', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748530', 3748530, '-229.519104', '3.459191', '-289.959412', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748532', 3748532, '-163.010803', '-1.945551', '-356.094696', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748534', 3748534, '-173.595505', '5.841309', '-388.489685', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748537', 3748537, '-232.440796', '-2.339301', '-322.417908', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127954, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748538', 3748538, '-251.794006', '-1.267901', '-386.990295', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748542', 3748542, '-234.040207', '-0.107224', '-383.030914', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748543', 3748543, '-272.222107', '0.687642', '-325.399811', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748545', 3748545, '-263.308685', '4.237235', '-309.758392', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748546', 3748546, '-252.162598', '0.152196', '-318.392395', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748548', 3748548, '-251.430496', '-2.982757', '-348.143311', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748549', 3748549, '-240.737198', '1.345172', '-393.418396', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748550', 3748550, '-242.828506', '-3.567687', '-364.035309', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748551', 3748551, '-250.630707', '-3.725200', '-363.735291', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748552', 3748552, '-213.087494', '1.112077', '-382.537415', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748553', 3748553, '-255.836105', '7.531438', '-290.196289', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748554', 3748554, '-246.018097', '-2.631598', '-372.254608', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748555', 3748555, '-236.562103', '3.655112', '-396.309387', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748557', 3748557, '-203.850494', '16.277430', '-409.920593', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748559', 3748559, '-242.042892', '18.601339', '-425.242401', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748564', 3748564, '-177.168198', '14.656220', '-411.592987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748565', 3748565, '-215.900406', '16.573481', '-408.014008', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748566', 3748566, '-221.473297', '17.321730', '-412.786896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748567', 3748567, '-236.289001', '19.116409', '-424.877502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748570', 3748570, '-254.304306', '22.347059', '-449.055695', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748654', 3748654, '-205.192398', '19.296721', '-445.294189', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748657', 3748657, '-207.202301', '25.558809', '-115.343002', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748660', 3748660, '-222.657104', '20.702950', '-78.345047', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748662', 3748662, '-247.438400', '20.240339', '-67.748871', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748663', 3748663, '-230.727005', '26.739140', '-98.761307', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748670', 3748670, '-271.961609', '27.969740', '-98.954803', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748672', 3748672, '-271.661285', '23.599831', '-70.352722', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748674', 3748674, '-231.617004', '30.324150', '-133.076996', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748726', 3748726, '33.854542', '6.542700', '-211.889801', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748728', 3748728, '55.167561', '0.798945', '-193.606598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748729', 3748729, '69.255318', '0.046956', '-152.350906', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748730', 3748730, '10.055020', '5.968488', '-132.156097', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123602, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748732', 3748732, '50.175282', '14.921620', '-128.489700', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748734', 3748734, '76.929573', '3.883048', '-205.706406', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748736', 3748736, '79.198738', '3.548813', '-202.087204', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748737', 3748737, '106.461601', '1.818933', '-204.985199', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748738', 3748738, '140.354401', '0.554754', '-232.614304', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122242, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748739', 3748739, '111.391197', '0.776695', '-238.240707', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748749', 3748749, '145.884293', '-1.750025', '-212.434097', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3748752', 3748752, '136.108398', '-1.750136', '-190.396194', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3748753', 3748753, '149.821106', '-1.750019', '-214.231293', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54188, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3748755', 3748755, '84.854179', '-1.750136', '-139.436905', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53916, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3748758', 3748758, '72.003227', '-1.750024', '-104.510002', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53644, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3748760', 3748760, '68.467178', '-1.754834', '-99.778793', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53372, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3748763', 3748763, '78.693497', '-3.269199', '-32.994751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53100, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3748765', 3748765, '68.721947', '-2.620518', '-49.466751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52828, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3748770', 3748770, '166.277496', '-1.754834', '-241.382507', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52556, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3748772', 3748772, '187.884293', '-1.754834', '-278.858704', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52284, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3748773', 3748773, '194.766006', '-1.750224', '-280.991394', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52012, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3748775', 3748775, '71.615707', '-3.621419', '-26.438259', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51740, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3748850', 3748850, '12.774460', '-6.750232', '111.257401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90726, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3748852', 3748852, '9.592600', '-6.750232', '107.837402', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92086, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3748876', 3748876, '11.520510', '1.022307', '-111.986000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748879', 3748879, '-129.259201', '2.487174', '-193.926895', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118452, 6, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(248, 'e0017', 'bnpc3748904', 3748904, '176.132706', '4.710299', '-187.304703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748905', 3748905, '158.969894', '2.732193', '-177.146698', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748906', 3748906, '191.563705', '2.176362', '-156.220703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748907', 3748907, '196.388000', '3.012704', '-160.659393', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748908', 3748908, '239.061295', '5.923066', '-187.296494', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748910', 3748910, '269.473785', '9.044052', '-198.574799', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748913', 3748913, '263.650208', '11.289570', '-202.903397', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748915', 3748915, '227.710297', '-1.205510', '-113.847603', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748923', 3748923, '231.280899', '-1.632762', '-106.462196', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748926', 3748926, '200.610306', '-1.358100', '-103.471497', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748930', 3748930, '207.171707', '-1.144474', '-84.519768', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748932', 3748932, '173.937500', '1.205416', '-81.071228', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73736, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748934', 3748934, '148.809097', '3.036994', '-133.465897', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73464, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748937', 3748937, '169.787094', '0.045730', '-115.892303', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73192, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748941', 3748941, '145.535507', '4.850001', '-129.478104', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72920, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748942', 3748942, '119.305603', '3.909301', '-132.622696', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72648, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748943', 3748943, '109.916496', '3.556486', '-129.240601', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748944', 3748944, '224.505905', '-2.975556', '-56.412651', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72104, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748945', 3748945, '175.332993', '6.489766', '-41.243931', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748946', 3748946, '186.449905', '4.165666', '-17.319040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748947', 3748947, '281.825989', '-9.100459', '2.598387', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71832, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748949', 3748949, '288.471710', '-11.734230', '-3.952133', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71560, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748950', 3748950, '278.492310', '-14.114640', '-37.338871', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71288, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748953', 3748953, '324.544098', '-13.504280', '-33.615669', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748954', 3748954, '329.030212', '-13.565320', '-29.770399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748955', 3748955, '356.861603', '-15.283880', '-44.573921', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748956', 3748956, '347.890411', '-17.502140', '8.102493', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748962', 3748962, '150.469193', '19.150021', '-76.524040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748963', 3748963, '146.044098', '19.581060', '-88.241302', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748964', 3748964, '117.082397', '20.462299', '-97.062683', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748967', 3748967, '142.873703', '16.403400', '-46.097549', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748968', 3748968, '400.991608', '-12.783140', '-32.000870', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748969', 3748969, '366.536896', '-16.189871', '-58.854092', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748970', 3748970, '415.234192', '-14.170130', '-62.547722', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748972', 3748972, '432.695709', '-16.065250', '-112.148399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748974', 3748974, '436.729889', '-14.846640', '-118.392700', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68840, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748976', 3748976, '441.284088', '-15.576560', '-96.939430', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68568, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748980', 3748980, '384.960602', '-17.809891', '-96.639427', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68296, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748986', 3748986, '389.761108', '-17.502140', '-101.701401', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3748990', 3748990, '391.353210', '-17.460060', '-135.489304', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749004', 3749004, '172.667496', '7.527369', '-42.066410', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749018', 3749018, '187.591705', '4.184689', '-15.078180', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749020', 3749020, '183.022797', '5.398401', '-15.566580', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749031', 3749031, '202.090393', '0.810960', '-15.619060', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749036', 3749036, '199.896393', '1.465439', '-15.630680', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749047', 3749047, '143.173706', '15.773830', '-43.893311', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749053', 3749053, '153.171097', '16.202070', '-56.630402', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749059', 3749059, '151.803696', '19.216890', '-78.848953', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749061', 3749061, '153.666504', '19.040461', '-76.088043', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749071', 3749071, '144.894501', '19.988741', '-106.295998', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749073', 3749073, '142.185501', '20.171949', '-108.059097', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749080', 3749080, '115.432404', '20.583151', '-99.077271', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749083', 3749083, '114.653099', '20.724030', '-96.549553', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749168', 3749168, '312.979492', '-19.718349', '-75.451233', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62252, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749170', 3749170, '261.730194', '-19.718349', '-82.128349', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61980, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749172', 3749172, '274.699402', '-19.718349', '-117.167198', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61708, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749173', 3749173, '291.363098', '-19.718349', '-136.065598', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749174', 3749174, '342.729797', '-19.718349', '-131.071106', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749175', 3749175, '353.724091', '-19.718349', '-85.215424', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749176', 3749176, '333.410095', '-19.718349', '-136.385498', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60620, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749177', 3749177, '319.949188', '-19.718349', '-179.156403', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60348, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749178', 3749178, '308.689301', '-19.718349', '-60.698299', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60142, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749180', 3749180, '311.695190', '-19.718349', '-58.346031', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59870, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749183', 3749183, '330.312012', '-19.729959', '-70.267838', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59598, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749186', 3749186, '296.119995', '-19.718349', '-90.360474', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59326, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749187', 3749187, '293.415802', '-19.718349', '-93.414520', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59054, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749188', 3749188, '290.216614', '-19.718349', '-87.193253', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58782, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749189', 3749189, '258.481415', '-19.718349', '-104.208000', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58510, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749190', 3749190, '252.984802', '-19.718349', '-103.640099', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58238, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749191', 3749191, '257.907715', '-19.718349', '-125.303101', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57966, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749192', 3749192, '286.451904', '-19.718349', '-129.699097', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57694, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749193', 3749193, '282.557892', '-19.718349', '-147.388199', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57422, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749195', 3749195, '310.290314', '-19.718349', '-172.318802', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57150, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749196', 3749196, '313.118591', '-19.718349', '-169.401993', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56878, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749197', 3749197, '310.587006', '-19.718349', '-142.173401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56606, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749199', 3749199, '350.892212', '-19.718349', '-150.816696', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56334, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749200', 3749200, '368.409302', '-19.718349', '-144.276596', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56062, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749201', 3749201, '364.918213', '-19.718349', '-140.378006', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55790, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749202', 3749202, '359.256592', '-19.718349', '-116.557503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55518, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749203', 3749203, '346.291199', '-19.718349', '-105.267899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55246, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749204', 3749204, '371.776215', '-19.718349', '-104.967796', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54974, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(248, 'e0017', 'bnpc3749211', 3749211, '123.998703', '28.662880', '-17.350370', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51474, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(248, 'e0017', 'bnpc3749213', 3749213, '121.332397', '28.612700', '-23.583090', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51208, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(248, 'e0017', 'bnpc3749215', 3749215, '161.791397', '28.213881', '-14.786040', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50936, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(248, 'e0017', 'bnpc3749218', 3749218, '137.021805', '28.624880', '-23.498341', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50658, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(248, 'e0017', 'bnpc3749219', 3749219, '107.272903', '29.216610', '-36.643101', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749222', 3749222, '149.401093', '28.610600', '-15.610050', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50120, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(248, 'e0017', 'bnpc3749223', 3749223, '148.790604', '28.610600', '-15.152280', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49842, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(248, 'e0017', 'bnpc3749225', 3749225, '122.827698', '28.633169', '-37.359280', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749226', 3749226, '104.128304', '29.031771', '-49.110481', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49304, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(248, 'e0017', 'bnpc3749235', 3749235, '93.149368', '29.525270', '-84.964371', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749239', 3749239, '67.895287', '30.429380', '-70.394157', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749240', 3749240, '65.047180', '30.255060', '-77.079674', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749241', 3749241, '44.682369', '28.535789', '-84.546478', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749242', 3749242, '66.806038', '29.155720', '-109.342300', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749245', 3749245, '204.538101', '7.350389', '-181.293304', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749246', 3749246, '174.853104', '5.172761', '-202.929794', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749247', 3749247, '263.069611', '8.545942', '-196.205307', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749252', 3749252, '231.435593', '1.119558', '-165.006302', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749253', 3749253, '173.375305', '2.771811', '-168.286102', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749255', 3749255, '157.126694', '3.796749', '-121.347397', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749257', 3749257, '115.770103', '4.592918', '-127.306099', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749275', 3749275, '161.730301', '-1.754834', '-239.398804', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749277', 3749277, '185.534393', '-1.754834', '-265.705414', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749279', 3749279, '210.539902', '-1.750040', '-309.299408', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749284', 3749284, '211.839401', '-1.750030', '-306.582611', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749290', 3749290, '143.733002', '-1.750026', '-193.558701', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749297', 3749297, '144.345306', '0.955883', '-165.104004', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749310', 3749310, '216.777496', '0.994229', '-97.056053', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749312', 3749312, '169.933899', '2.409006', '-84.351593', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749314', 3749314, '219.378906', '-3.433327', '-46.921539', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749321', 3749321, '277.040192', '-7.191899', '-0.686294', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749327', 3749327, '331.429810', '-13.937110', '-37.954071', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749332', 3749332, '384.322205', '-19.359289', '-5.627488', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749336', 3749336, '382.853088', '-20.412571', '-0.889114', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749338', 3749338, '359.951508', '-16.405090', '-60.846310', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749343', 3749343, '451.404602', '-11.420970', '-118.535599', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749351', 3749351, '384.249603', '-17.667879', '-125.562897', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749357', 3749357, '297.316589', '-19.718349', '-70.108559', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749359', 3749359, '289.558197', '-19.718349', '-103.097801', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749362', 3749362, '240.405807', '-18.104980', '-89.540627', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749364', 3749364, '283.065491', '-19.718349', '-125.167999', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749367', 3749367, '267.129913', '-18.000000', '-169.891296', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749369', 3749369, '264.685486', '-18.000000', '-168.247101', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749370', 3749370, '316.532898', '-19.718349', '-157.003693', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749371', 3749371, '353.619995', '-19.718349', '-109.615997', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749373', 3749373, '339.318695', '-19.718349', '-85.941147', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749376', 3749376, '165.671799', '11.656820', '-52.356880', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749380', 3749380, '172.813995', '6.716133', '-26.881840', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749388', 3749388, '191.772202', '-0.202088', '-35.283329', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749390', 3749390, '136.510300', '18.512560', '-57.480461', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749392', 3749392, '133.468002', '19.606770', '-81.872276', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749396', 3749396, '128.184402', '20.219101', '-102.714104', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749397', 3749397, '116.821999', '23.443171', '-63.701351', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749399', 3749399, '86.653412', '30.354231', '-83.224442', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749402', 3749402, '86.953407', '29.540970', '-103.119400', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3749404', 3749404, '58.939091', '30.914900', '-69.530090', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3751223', 3751223, '27.075630', '19.825541', '-258.167999', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79592, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(248, 'e0017', 'bnpc3751224', 3751224, '25.641180', '19.827999', '-262.593201', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80674, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(248, 'e0017', 'bnpc3751325', 3751325, '-86.401451', '-0.314426', '-202.187195', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3751326', 3751326, '-89.241432', '-0.377375', '-203.793503', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3751327', 3751327, '-54.347431', '10.746100', '-226.743500', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3751329', 3751329, '14.423480', '6.148088', '-236.752106', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3751331', 3751331, '-1.214684', '-0.950067', '-207.831497', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3751332', 3751332, '-12.497190', '11.337410', '-273.731598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3751350', 3751350, '12.680810', '9.512568', '-296.489288', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3751353', 3751353, '-5.330978', '16.424870', '-314.262909', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3751354', 3751354, '-110.742599', '-1.464606', '-173.727402', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3782203', 3782203, '-10.133880', '-3.109667', '-92.309822', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3782206', 3782206, '-5.820518', '-2.317021', '-88.935387', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3782208', 3782208, '-16.094000', '-4.734633', '-82.939987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3782210', 3782210, '-16.866150', '-3.490384', '-51.955761', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3782566', 3782566, '219.465393', '20.017179', '421.855988', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177456, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3782567', 3782567, '215.101303', '19.951290', '418.621094', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177184, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3782571', 3782571, '276.496490', '14.358410', '504.494598', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176912, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3782572', 3782572, '274.299194', '14.525580', '502.022614', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170662, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3782576', 3782576, '223.506195', '14.214930', '465.799103', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176640, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3782578', 3782578, '228.904907', '14.555940', '463.312805', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176368, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3782579', 3782579, '240.208405', '14.734180', '473.802307', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176096, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3782581', 3782581, '203.301804', '12.792270', '451.523285', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175824, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc3782585', 3782585, '230.220703', '14.451260', '471.293915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173926, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(248, 'e0017', 'bnpc4057631', 4057631, '-117.387497', '15.659340', '316.159485', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22414, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(248, 'e0017', 'bnpc4057642', 4057642, '32.356911', '15.912200', '575.715027', 797, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22148, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(248, 'e0017', 'bnpc4057659', 4057659, '-26.174540', '-2.337916', '-130.147400', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21882, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(248, 'e0017', 'bnpc4057662', 4057662, '7.597365', '-2.072273', '-178.519897', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21610, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(248, 'e0017', 'bnpc4621827', 4621827, '-293.653107', '18.424400', '-380.671600', 2770, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22760, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3760882', 3760882, '7.760897', '64.944183', '95.225662', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760883', 3760883, '11.569650', '64.269142', '103.174004', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760884', 3760884, '27.212851', '64.259323', '68.436661', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121286, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760886', 3760886, '35.300129', '63.748798', '70.756027', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122102, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760887', 3760887, '29.623779', '63.785370', '72.434517', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122918, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760888', 3760888, '12.674300', '64.363640', '96.110687', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122646, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760889', 3760889, '37.375351', '64.107178', '66.758171', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122374, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760890', 3760890, '35.361160', '64.320633', '64.408279', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760896', 3760896, '20.935301', '61.990829', '147.102097', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760898', 3760898, '32.574959', '59.535831', '128.579605', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119382, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760901', 3760901, '3.688727', '65.262871', '139.257401', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119110, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760902', 3760902, '1.674536', '65.722069', '135.412201', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760911', 3760911, '66.135712', '56.046421', '111.429703', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760912', 3760912, '62.577202', '57.663799', '106.370598', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120470, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760913', 3760913, '64.103104', '57.114471', '107.652298', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760917', 3760917, '60.457890', '61.337429', '74.236450', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121830, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760922', 3760922, '96.288940', '49.550621', '73.985641', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126182, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760923', 3760923, '110.317703', '42.549389', '102.239700', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125366, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760925', 3760925, '121.477097', '40.913620', '141.046600', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125638, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760927', 3760927, '99.690933', '44.016190', '125.932701', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126998, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760933', 3760933, '86.244019', '47.554829', '160.082397', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126726, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760937', 3760937, '87.891998', '47.433571', '161.638794', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123190, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760948', 3760948, '68.406143', '53.661510', '183.326599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123462, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760950', 3760950, '62.399029', '56.000351', '191.517303', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125910, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760952', 3760952, '63.992779', '55.493610', '189.245102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124550, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760958', 3760958, '51.348160', '55.864281', '150.438599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124278, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760961', 3760961, '56.546551', '56.041698', '186.103394', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125094, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3760965', 3760965, '53.117081', '55.406071', '151.622894', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124822, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761027', 3761027, '-7.343534', '67.714622', '93.888710', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153092, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761030', 3761030, '15.512480', '63.992210', '99.894920', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152820, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761031', 3761031, '78.979568', '53.555161', '86.569473', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124006, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761032', 3761032, '80.505470', '52.852570', '87.851227', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123734, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761033', 3761033, '31.698999', '64.077950', '68.192520', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152548, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761034', 3761034, '111.202797', '42.291870', '104.620102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126454, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761035', 3761035, '112.698097', '41.971249', '105.901901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127270, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761036', 3761036, '16.824760', '63.905472', '97.575546', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152276, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761039', 3761039, '11.941870', '64.628357', '91.990753', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152004, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761041', 3761041, '54.459400', '59.806961', '102.917297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151732, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761042', 3761042, '30.722420', '63.595020', '74.784416', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151460, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761044', 3761044, '19.068230', '62.294941', '149.492599', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151188, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761045', 3761045, '22.420271', '61.734470', '145.882996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150916, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761046', 3761046, '31.079571', '59.608490', '125.924500', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150644, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761048', 3761048, '66.227257', '56.978741', '104.868301', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150372, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761049', 3761049, '81.546333', '52.845501', '84.585800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150100, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761050', 3761050, '62.755970', '60.386440', '76.019211', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149828, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761051', 3761051, '109.737900', '42.563049', '105.962898', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149556, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761052', 3761052, '98.714363', '44.085449', '129.594803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149284, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761053', 3761053, '98.425201', '49.276859', '70.598137', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149012, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761054', 3761054, '99.981613', '48.315552', '73.649940', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148740, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761080', 3761080, '100.606499', '43.794998', '128.557205', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148468, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(249, 'e0018', 'bnpc3761081', 3761081, '89.814621', '46.770222', '157.976593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148196, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761084', 3761084, '51.818901', '55.815891', '145.346603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147924, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761085', 3761085, '70.215584', '52.939968', '181.270401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147652, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761086', 3761086, '60.924660', '55.885761', '189.770996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147380, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761088', 3761088, '48.845680', '56.451950', '150.896393', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147108, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761089', 3761089, '50.420841', '56.054260', '153.244995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146836, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761096', 3761096, '199.256302', '27.059620', '91.574173', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146570, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761097', 3761097, '66.501930', '57.215820', '101.480797', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761099', 3761099, '111.690498', '36.582958', '4.053726', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146298, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761100', 3761100, '67.783684', '56.291199', '107.065697', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761102', 3761102, '156.633804', '34.653191', '70.542397', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146026, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761103', 3761103, '23.832260', '61.353020', '150.988007', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761104', 3761104, '24.717279', '61.225311', '149.156906', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761105', 3761105, '167.377899', '33.443420', '75.522820', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145754, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761108', 3761108, '124.488503', '36.345482', '15.758260', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145482, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761109', 3761109, '159.302094', '33.928551', '78.777786', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145210, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761111', 3761111, '108.955002', '36.663021', '9.387772', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144938, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761112', 3761112, '131.578506', '35.965469', '45.853310', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144666, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761123', 3761123, '237.190399', '36.611149', '66.717194', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761124', 3761124, '242.137604', '44.361130', '44.958832', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144128, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761125', 3761125, '242.718903', '43.673290', '46.873840', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143856, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761128', 3761128, '187.436096', '42.116020', '51.900459', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143584, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761129', 3761129, '223.247696', '51.849850', '26.116220', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143312, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761130', 3761130, '223.430801', '52.761440', '22.759239', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143040, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761131', 3761131, '217.449295', '51.875561', '27.520050', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142768, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761134', 3761134, '223.010498', '31.021540', '165.483994', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142496, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761135', 3761135, '227.779602', '33.454979', '203.906296', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142224, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761136', 3761136, '242.318497', '38.158321', '234.873306', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141952, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761137', 3761137, '227.626999', '34.365898', '207.232697', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141680, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761139', 3761139, '245.897202', '37.488659', '235.919693', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141408, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761141', 3761141, '195.561203', '47.715080', '226.776001', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141136, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761142', 3761142, '197.033997', '48.159161', '228.423004', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761143', 3761143, '222.161804', '50.249969', '256.272888', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761145', 3761145, '180.566803', '43.422722', '197.741592', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761146', 3761146, '181.211105', '43.103500', '194.872894', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761147', 3761147, '150.769104', '55.568981', '248.645706', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761149', 3761149, '148.855896', '56.596169', '250.553299', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761150', 3761150, '152.127594', '64.016029', '312.689392', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761151', 3761151, '154.979797', '64.179688', '314.660492', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761152', 3761152, '153.705307', '64.400146', '315.376495', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761155', 3761155, '115.122803', '68.518044', '293.763489', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761164', 3761164, '69.781052', '51.086330', '157.761703', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761169', 3761169, '97.733994', '47.043510', '88.944794', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761303', 3761303, '204.358505', '46.098690', '45.780960', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761362', 3761362, '198.245804', '51.531582', '242.749405', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3761367', 3761367, '182.543594', '41.458710', '51.590698', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761369', 3761369, '186.119797', '42.655750', '49.950859', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761370', 3761370, '285.549408', '42.548729', '57.964470', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761371', 3761371, '285.078796', '44.421532', '49.076550', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761372', 3761372, '239.723694', '36.528450', '66.898483', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761373', 3761373, '148.845200', '38.711102', '41.285278', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761374', 3761374, '152.171600', '39.307671', '41.468391', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761375', 3761375, '182.186905', '54.291470', '262.783508', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761376', 3761376, '184.506195', '55.134689', '266.109985', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761475', 3761475, '201.696899', '32.601101', '76.500427', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135684, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761552', 3761552, '150.981400', '38.858120', '42.405491', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135412, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761553', 3761553, '185.442902', '41.123051', '53.604858', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135140, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761554', 3761554, '206.775299', '43.330341', '53.446110', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134868, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761555', 3761555, '208.241592', '43.763321', '52.334370', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134596, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761556', 3761556, '239.497803', '36.005562', '68.131721', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134324, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761557', 3761557, '215.528305', '44.498230', '50.226871', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134052, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761572', 3761572, '223.339294', '51.412380', '27.733681', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133780, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761576', 3761576, '283.996399', '43.243752', '55.750099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133508, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761580', 3761580, '272.696899', '45.167171', '32.535080', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133236, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761585', 3761585, '215.465607', '53.837990', '20.867121', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132964, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761592', 3761592, '217.212097', '32.425369', '164.537994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132692, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761607', 3761607, '218.341293', '32.455891', '165.972305', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132420, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761622', 3761622, '202.532898', '37.857590', '176.104294', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132148, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761626', 3761626, '183.154007', '42.709949', '197.436401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131876, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761716', 3761716, '184.920502', '44.981480', '218.420700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131604, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761718', 3761718, '224.420395', '35.250660', '205.197601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131332, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761720', 3761720, '242.515396', '37.441879', '232.829803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131060, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761721', 3761721, '215.690094', '51.411850', '255.712601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130788, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761722', 3761722, '217.734802', '50.606812', '253.454300', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130516, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761723', 3761723, '185.971100', '54.557800', '262.936096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130244, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761726', 3761726, '152.777603', '58.215248', '280.103607', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129972, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761727', 3761727, '152.238602', '58.132370', '277.662201', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129700, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761728', 3761728, '118.327202', '67.511993', '294.840210', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129428, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761730', 3761730, '114.320396', '68.359100', '296.500885', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129156, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3761731', 3761731, '153.412399', '63.654282', '311.208801', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128884, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766328', 3766328, '444.374390', '64.694489', '-36.484081', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766391', 3766391, '446.046112', '65.017601', '-33.594650', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766399', 3766399, '453.421814', '56.259960', '-0.534113', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766401', 3766401, '455.924286', '55.802189', '3.341679', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766402', 3766402, '448.874603', '55.222351', '4.837063', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766575', 3766575, '366.619385', '51.659290', '-12.188280', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766577', 3766577, '364.147400', '52.146080', '-17.895161', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766579', 3766579, '370.878113', '59.451641', '-59.303612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766580', 3766580, '368.924988', '58.367748', '-54.695389', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766581', 3766581, '373.350098', '58.395641', '-53.596741', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766584', 3766584, '363.439606', '63.704231', '-82.801590', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766586', 3766586, '341.616302', '51.478588', '-30.833561', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766588', 3766588, '305.806000', '47.806469', '0.503501', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766589', 3766589, '308.552612', '48.569420', '-3.769025', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766591', 3766591, '409.158112', '63.702721', '-82.786118', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766592', 3766592, '412.649689', '63.919991', '-86.564484', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766596', 3766596, '450.583588', '66.468239', '-76.957558', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766603', 3766603, '394.502594', '67.135857', '-121.089203', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766604', 3766604, '391.786499', '67.793007', '-123.530602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3766605', 3766605, '395.113007', '67.180733', '-122.828697', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767081', 3767081, '473.143494', '66.440041', '-148.859894', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767082', 3767082, '437.091309', '65.055496', '-127.757103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767083', 3767083, '438.506500', '65.198730', '-126.336800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767118', 3767118, '437.011108', '65.003197', '-124.078499', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767119', 3767119, '474.052002', '66.418793', '-147.307800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767127', 3767127, '371.903290', '67.982323', '-110.760803', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3767131', 3767131, '460.464600', '68.698967', '-124.371498', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3767137', 3767137, '564.060181', '84.658661', '-310.397614', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3767139', 3767139, '425.864014', '78.873833', '-349.813110', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3767149', 3767149, '418.543213', '65.856056', '-158.386795', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767152', 3767152, '380.575195', '71.228844', '-138.534103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767155', 3767155, '353.131409', '70.227692', '-126.119904', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767158', 3767158, '355.969604', '70.540512', '-125.082298', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767160', 3767160, '354.321594', '69.995934', '-123.739502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767163', 3767163, '385.091888', '70.103569', '-139.968506', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767164', 3767164, '383.413391', '70.520859', '-137.771194', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767165', 3767165, '382.223206', '70.816437', '-140.151596', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767230', 3767230, '338.126892', '68.759033', '-132.386398', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767240', 3767240, '525.678589', '69.218857', '-235.317993', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91168, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767241', 3767241, '529.279724', '69.670998', '-238.980103', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90352, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767242', 3767242, '523.878113', '69.910103', '-240.231400', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90624, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767246', 3767246, '503.511597', '77.082458', '-297.441315', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767247', 3767247, '490.567688', '72.273407', '-273.391388', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767248', 3767248, '499.222992', '76.478897', '-297.574799', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767251', 3767251, '561.724976', '68.563721', '-232.711105', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90896, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767262', 3767262, '609.164307', '70.799339', '-269.442291', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767263', 3767263, '607.699524', '69.742554', '-262.681885', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767264', 3767264, '611.178528', '70.073822', '-266.496613', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767271', 3767271, '583.442871', '78.270691', '-293.369995', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767272', 3767272, '582.626099', '82.811012', '-321.008209', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767273', 3767273, '586.291077', '77.487671', '-291.515594', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767374', 3767374, '436.361908', '73.251167', '-304.983185', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767375', 3767375, '432.991608', '72.276894', '-303.043610', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767376', 3767376, '349.804901', '74.911560', '-321.936798', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767377', 3767377, '435.671997', '72.056473', '-300.979401', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104478, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767388', 3767388, '361.665588', '75.651962', '-325.562408', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767390', 3767390, '363.221985', '75.155243', '-322.388489', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767391', 3767391, '358.186493', '73.581299', '-315.714813', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767393', 3767393, '395.641113', '76.023048', '-328.902496', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767394', 3767394, '397.399597', '76.429916', '-332.825500', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767395', 3767395, '393.430298', '76.446228', '-331.738098', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767396', 3767396, '392.678711', '86.886810', '-395.321106', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767399', 3767399, '470.368805', '87.249977', '-348.957306', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767400', 3767400, '454.939209', '84.293327', '-350.549591', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767401', 3767401, '458.387787', '84.602448', '-346.643188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767402', 3767402, '428.051086', '76.420769', '-330.744385', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767425', 3767425, '422.176910', '67.247093', '-159.579803', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767426', 3767426, '420.543213', '66.332741', '-157.321503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767435', 3767435, '384.954498', '71.312561', '-255.829102', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767436', 3767436, '381.795898', '71.738327', '-257.517487', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767437', 3767437, '387.359314', '69.869453', '-264.137299', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767445', 3767445, '628.911987', '66.716454', '-231.728607', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767446', 3767446, '630.792603', '66.280296', '-209.603195', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767447', 3767447, '629.602417', '66.422333', '-211.983597', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767448', 3767448, '627.954529', '66.392159', '-210.335602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767449', 3767449, '632.471130', '66.334442', '-211.800507', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767450', 3767450, '630.285278', '66.806633', '-233.987000', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767455', 3767455, '662.184509', '66.885223', '-232.532303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767456', 3767456, '663.832520', '66.880669', '-235.767197', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767457', 3767457, '660.994324', '67.126022', '-234.912704', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767458', 3767458, '679.883301', '64.783623', '-225.588394', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767462', 3767462, '683.051575', '64.449142', '-221.445694', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767463', 3767463, '686.133911', '64.440773', '-225.077301', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767464', 3767464, '682.532776', '64.535759', '-223.856598', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767465', 3767465, '680.213379', '64.599297', '-222.178101', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767466', 3767466, '644.667419', '61.202068', '-179.041107', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98228, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767467', 3767467, '646.345825', '61.561089', '-181.268906', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767468', 3767468, '625.297607', '63.148769', '-175.494003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767469', 3767469, '624.534729', '62.919571', '-173.449295', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767472', 3767472, '612.920227', '62.437519', '-154.581299', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97140, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767473', 3767473, '618.413513', '60.995640', '-154.157501', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96868, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767474', 3767474, '611.729980', '62.836342', '-156.961700', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96596, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767475', 3767475, '610.081970', '62.919849', '-155.313705', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96324, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767480', 3767480, '599.736572', '66.081619', '-200.660995', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96052, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767481', 3767481, '603.400085', '66.248016', '-212.652893', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95780, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767482', 3767482, '600.591125', '66.117447', '-203.224594', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767487', 3767487, '582.119629', '63.525211', '-162.909500', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767488', 3767488, '583.554016', '63.640011', '-161.566696', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767504', 3767504, '384.336212', '81.769058', '-374.104706', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767505', 3767505, '386.960785', '82.047218', '-374.979614', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92250, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767508', 3767508, '420.230408', '83.041237', '-377.818695', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91978, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767509', 3767509, '416.202087', '83.456848', '-380.199188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91706, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767510', 3767510, '414.218414', '82.361076', '-374.217590', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91434, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767538', 3767538, '559.649475', '74.212418', '-273.297485', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90080, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767539', 3767539, '565.844971', '73.504051', '-271.077698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89808, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767541', 3767541, '530.575989', '78.841171', '-292.050598', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89536, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767542', 3767542, '536.018616', '73.912933', '-270.240601', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89264, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767543', 3767543, '527.257324', '78.277519', '-291.082397', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88992, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767550', 3767550, '559.405579', '68.352837', '-230.727402', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88720, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767551', 3767551, '504.920990', '71.617661', '-255.737900', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88448, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767552', 3767552, '562.426697', '74.626442', '-275.098114', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88176, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767553', 3767553, '515.106079', '86.958946', '-357.724792', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87886, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767554', 3767554, '555.815430', '86.288918', '-333.674286', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87614, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767555', 3767555, '550.172974', '86.038811', '-337.105713', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87342, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767556', 3767556, '556.703918', '86.005051', '-341.164612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87070, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767558', 3767558, '595.652222', '100.886101', '-481.113007', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86798, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767559', 3767559, '565.758728', '90.501213', '-411.795288', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767560', 3767560, '593.128418', '99.817238', '-476.295013', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767561', 3767561, '597.171326', '86.616676', '-366.082886', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767562', 3767562, '592.898621', '86.573059', '-364.752991', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767565', 3767565, '659.080383', '68.157593', '-282.327087', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767566', 3767566, '655.601379', '67.872910', '-278.542786', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767568', 3767568, '696.297791', '66.817932', '-301.967896', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767583', 3767583, '629.275208', '76.769440', '-316.382690', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84622, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767584', 3767584, '635.718506', '76.129578', '-319.129303', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84350, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767675', 3767675, '637.937683', '75.470261', '-314.178314', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84078, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767694', 3767694, '274.187408', '73.498833', '-235.511505', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767702', 3767702, '282.131287', '73.968918', '-250.520294', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767704', 3767704, '283.459686', '74.239098', '-252.146103', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767705', 3767705, '285.161987', '73.984657', '-268.017487', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767706', 3767706, '277.286194', '74.210907', '-280.408813', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767707', 3767707, '277.586212', '74.130417', '-281.519714', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767709', 3767709, '268.511505', '73.750023', '-310.081207', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767710', 3767710, '290.727997', '75.783447', '-320.191986', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767711', 3767711, '291.566193', '75.961906', '-321.088593', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767712', 3767712, '240.649994', '74.570793', '-328.847198', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767715', 3767715, '221.796799', '75.280907', '-305.122711', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81110, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(249, 'e0018', 'bnpc3767716', 3767716, '234.573196', '72.438171', '-271.531403', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767717', 3767717, '235.577301', '72.991150', '-274.815186', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767721', 3767721, '341.847809', '47.013062', '1.602173', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80300, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767722', 3767722, '413.717804', '55.405399', '-18.570250', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80028, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767725', 3767725, '414.877411', '56.473511', '-20.889650', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79756, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767729', 3767729, '340.932404', '58.884521', '-68.986153', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767730', 3767730, '349.904510', '70.939087', '-141.039200', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767735', 3767735, '351.399994', '71.122192', '-139.177597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767772', 3767772, '385.992096', '79.489769', '-359.438690', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767779', 3767779, '406.035400', '88.015427', '-400.377411', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767782', 3767782, '403.608612', '88.645103', '-402.194885', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767814', 3767814, '635.174072', '71.616203', '-284.468597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767845', 3767845, '633.182922', '72.289650', '-286.197998', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767846', 3767846, '635.372375', '67.114166', '-231.371002', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767853', 3767853, '622.306885', '64.499603', '-174.464905', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767854', 3767854, '645.827026', '60.818569', '-177.759293', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767857', 3767857, '725.192871', '64.427238', '-240.193405', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767859', 3767859, '617.085510', '62.126339', '-147.285202', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767860', 3767860, '673.612427', '64.732903', '-189.639206', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767863', 3767863, '676.003723', '64.536713', '-188.308105', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767872', 3767872, '678.086914', '64.518532', '-207.618896', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767901', 3767901, '653.968079', '78.578423', '-360.327515', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767906', 3767906, '656.550293', '77.457336', '-356.077393', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767907', 3767907, '657.869080', '77.894173', '-358.050293', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3767910', 3767910, '590.645020', '90.549652', '-389.681702', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3768115', 3768115, '530.515381', '91.184883', '-383.319305', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3768118', 3768118, '533.323120', '90.657288', '-380.765015', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3768152', 3768152, '508.880707', '96.069290', '-437.340302', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71342, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(249, 'e0018', 'bnpc3768153', 3768153, '519.773071', '96.615059', '-445.083588', 752, 0, 0, 0, 0, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71608, 3, 0, 0, 0, 16, 30059, 0, 0, 0), +(249, 'e0018', 'bnpc3768154', 3768154, '523.339417', '94.818977', '-429.381287', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72962, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(249, 'e0018', 'bnpc3768156', 3768156, '535.457581', '96.545937', '-468.044800', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72690, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(249, 'e0018', 'bnpc3768157', 3768157, '520.360107', '95.886787', '-460.180389', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72424, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(249, 'e0018', 'bnpc3768158', 3768158, '535.493225', '94.402260', '-439.778015', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70526, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(249, 'e0018', 'bnpc3768159', 3768159, '502.875793', '97.415413', '-416.738495', 754, 0, 0, 0, 0, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73234, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(249, 'e0018', 'bnpc3768160', 3768160, '521.578979', '94.382271', '-413.852905', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72152, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(249, 'e0018', 'bnpc3768161', 3768161, '509.317200', '94.366043', '-398.691711', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71070, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(249, 'e0018', 'bnpc3768165', 3768165, '517.667175', '95.947739', '-463.471588', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73506, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(249, 'e0018', 'bnpc3768166', 3768166, '501.819092', '97.276329', '-413.591797', 751, 0, 0, 0, 0, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70798, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(249, 'e0018', 'bnpc3768167', 3768167, '534.916016', '94.227654', '-435.617798', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71880, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(249, 'e0018', 'bnpc3873220', 3873220, '-19.011200', '59.577240', '478.601715', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68768, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873222', 3873222, '-57.635151', '54.398960', '509.264313', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68496, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873223', 3873223, '-72.043533', '60.186852', '494.941803', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68224, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873226', 3873226, '-82.569511', '59.009541', '500.667694', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67952, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873227', 3873227, '-85.215538', '58.176079', '495.797913', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67680, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873232', 3873232, '-26.285730', '45.126209', '554.549622', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67408, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873233', 3873233, '-80.450127', '53.830681', '543.885925', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67136, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873235', 3873235, '-77.768517', '54.979061', '539.636902', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66864, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873237', 3873237, '-49.665508', '40.839931', '590.425781', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66592, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873238', 3873238, '-51.547249', '40.978630', '596.975098', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66320, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873240', 3873240, '-56.989220', '40.385479', '595.949585', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66048, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873243', 3873243, '73.494881', '48.720230', '629.534424', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65776, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873244', 3873244, '83.244293', '50.021931', '641.594727', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65504, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873246', 3873246, '77.347931', '48.172680', '641.229797', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65232, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873247', 3873247, '77.649078', '56.774830', '716.941528', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64960, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873249', 3873249, '79.648613', '56.806110', '720.165710', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64688, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873250', 3873250, '52.669842', '55.384899', '724.728516', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873255', 3873255, '48.538898', '36.148571', '656.885620', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64144, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873256', 3873256, '46.513409', '36.839489', '684.859314', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63872, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873257', 3873257, '41.888302', '35.921108', '686.955078', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63600, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873265', 3873265, '34.495090', '45.667789', '819.153381', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63328, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873271', 3873271, '-18.570280', '43.203621', '763.671082', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63056, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873272', 3873272, '-24.521290', '43.172451', '761.992676', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62784, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873275', 3873275, '37.190269', '46.111851', '822.446777', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62512, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873324', 3873324, '79.270752', '49.720821', '871.732483', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62240, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873328', 3873328, '31.098160', '46.232330', '851.456421', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61968, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873329', 3873329, '-90.470787', '8.590782', '680.567627', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61702, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873330', 3873330, '-224.494995', '-0.300003', '686.536377', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61430, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873331', 3873331, '-215.466797', '-0.252817', '694.899719', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61158, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873332', 3873332, '-120.012199', '3.585823', '702.235413', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60886, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873333', 3873333, '-207.511307', '-0.292601', '666.813293', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60614, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873334', 3873334, '-171.158203', '-0.710317', '738.778076', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60342, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873335', 3873335, '-132.077698', '0.394896', '752.015930', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60070, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873336', 3873336, '-122.561096', '0.570598', '756.478577', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59798, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873337', 3873337, '-78.064957', '2.435715', '762.539001', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59526, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873339', 3873339, '-81.966408', '2.959849', '802.456604', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59254, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873340', 3873340, '-17.237820', '8.762830', '808.010925', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58982, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873343', 3873343, '91.020012', '21.945419', '806.005371', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58710, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873345', 3873345, '127.519600', '23.025820', '809.445313', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58438, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873348', 3873348, '121.338402', '24.555710', '817.927795', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58166, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873353', 3873353, '213.397400', '25.314671', '805.691528', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57894, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873359', 3873359, '80.472221', '24.632441', '756.982178', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57622, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873362', 3873362, '24.652531', '14.575950', '784.440430', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57350, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873363', 3873363, '139.838699', '21.711720', '778.939575', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57078, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(249, 'e0018', 'bnpc3873367', 3873367, '251.139801', '6.797970', '788.702271', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873368', 3873368, '253.283096', '6.540766', '787.524292', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873369', 3873369, '254.565994', '6.283995', '780.385681', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873371', 3873371, '246.057800', '9.008336', '801.580994', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873374', 3873374, '248.002304', '6.721136', '783.831970', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873375', 3873375, '248.302399', '6.265314', '767.472473', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873376', 3873376, '246.801407', '6.267453', '768.374390', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873379', 3873379, '-3.098505', '41.687851', '623.973083', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54914, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873381', 3873381, '-0.691058', '42.488289', '627.270020', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873382', 3873382, '-6.383020', '41.661289', '631.828674', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873385', 3873385, '-12.702990', '41.812180', '707.756409', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873386', 3873386, '-10.462590', '41.960880', '705.075378', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873387', 3873387, '-52.108768', '38.325489', '665.766113', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873388', 3873388, '-55.987579', '36.343479', '670.810486', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873389', 3873389, '-59.405991', '38.476730', '658.650818', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53010, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873390', 3873390, '-59.105999', '36.026340', '668.374023', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52738, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873396', 3873396, '-160.952896', '1.569027', '667.861206', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48398, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(249, 'e0018', 'bnpc3873398', 3873398, '-161.990494', '1.669328', '666.421692', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48126, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(249, 'e0018', 'bnpc3873399', 3873399, '-150.636902', '5.134464', '653.424011', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47854, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(249, 'e0018', 'bnpc3873401', 3873401, '-144.836700', '4.701064', '665.153870', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47582, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(249, 'e0018', 'bnpc3873402', 3873402, '-149.620605', '3.102985', '669.616089', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47310, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(249, 'e0018', 'bnpc3873403', 3873403, '-155.732605', '1.144920', '679.460327', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47038, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(249, 'e0018', 'bnpc3873404', 3873404, '-142.607895', '1.054965', '712.663025', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46766, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(249, 'e0018', 'bnpc3873405', 3873405, '-148.567505', '0.750069', '714.199524', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46494, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(249, 'e0018', 'bnpc3873406', 3873406, '-149.139404', '0.759766', '712.362000', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46222, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(249, 'e0018', 'bnpc3873420', 3873420, '-59.783230', '40.755260', '572.130127', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873421', 3873421, '-58.553791', '40.657639', '574.646973', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873422', 3873422, '-25.335461', '55.583641', '513.424194', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873425', 3873425, '142.979706', '22.710770', '829.297302', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51656, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873426', 3873426, '220.695999', '20.348419', '790.027283', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51384, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873427', 3873427, '69.222389', '20.622999', '778.105286', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51112, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873428', 3873428, '70.471992', '21.233120', '776.341980', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50840, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873430', 3873430, '66.086601', '57.020870', '725.806213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50568, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873431', 3873431, '79.195717', '52.007320', '685.675415', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50296, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873432', 3873432, '79.268204', '51.686298', '683.238892', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50024, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873433', 3873433, '-129.812698', '8.744282', '655.901672', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873434', 3873434, '-127.513100', '8.619234', '660.065491', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873435', 3873435, '-70.867996', '3.471146', '805.643616', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873461', 3873461, '18.223940', '44.911652', '832.339600', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc3873463', 3873463, '129.763306', '48.053009', '868.938477', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48664, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc4057136', 4057136, '-29.171040', '70.937523', '112.141998', 784, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23136, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(249, 'e0018', 'bnpc4057153', 4057153, '-33.309830', '59.142609', '456.249786', 785, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22870, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(249, 'e0018', 'bnpc4057178', 4057178, '-0.370673', '36.202759', '591.413818', 786, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22604, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(249, 'e0018', 'bnpc4057204', 4057204, '126.070801', '23.201380', '735.619629', 788, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22338, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(249, 'e0018', 'bnpc4510193', 4510193, '600.272400', '61.718521', '-115.521301', 787, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22072, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(249, 'e0018', 'bnpc4621602', 4621602, '205.951904', '73.024078', '-291.708496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26712, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc4867727', 4867727, '-103.902603', '2.225230', '731.826416', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26326, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc4867728', 4867728, '-115.780197', '1.850056', '725.665710', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26054, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc4867729', 4867729, '-96.687714', '2.097239', '744.887817', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25782, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc4867730', 4867730, '-98.053673', '1.671072', '759.716797', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25510, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(249, 'e0018', 'bnpc4867731', 4867731, '-109.169701', '1.535632', '746.508301', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23746, 8, 0, 0, 0, 0, 0, 4867752, 0, 0), +(249, 'e0018', 'bnpc4867733', 4867733, '-113.730499', '0.984999', '755.556274', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24018, 8, 0, 0, 0, 0, 0, 4867753, 0, 0), +(249, 'e0018', 'bnpc4867735', 4867735, '-122.788597', '0.819352', '748.165283', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25244, 8, 0, 0, 0, 0, 0, 4867761, 0, 0), +(249, 'e0018', 'bnpc4867736', 4867736, '-111.623299', '1.689789', '738.438904', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24972, 8, 0, 0, 0, 0, 0, 4867748, 0, 0), +(249, 'e0018', 'bnpc4867737', 4867737, '-123.906197', '0.960864', '734.838501', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23474, 8, 0, 0, 0, 0, 0, 4867754, 0, 0), +(250, 's1p1', 'bnpc4833613', 4833613, '-1.635031', '25.616760', '-43.514629', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 2104, 1, 0, 0, 4833610, 0, 0, 0, 0, 0), +(250, 's1p1', 'bnpc4833614', 4833614, '-4.841139', '25.616760', '-52.888550', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 1832, 1, 0, 0, 4833612, 0, 0, 0, 0, 0), +(250, 's1p1', 'bnpc4833615', 4833615, '3.752005', '25.616760', '-53.523769', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 1560, 1, 0, 0, 4833609, 0, 0, 0, 0, 0), +(250, 's1p1', 'bnpc4833616', 4833616, '6.786954', '25.616760', '-52.906200', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 1288, 1, 0, 0, 4833611, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929298', 3929298, '2.578727', '46.242130', '89.066856', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106598, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929300', 3929300, '154.466995', '46.291969', '133.531601', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106870, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929301', 3929301, '-32.773281', '40.774231', '67.215347', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62568, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929303', 3929303, '-28.213820', '41.179878', '64.173943', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62296, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929305', 3929305, '8.662592', '42.689850', '45.686710', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62024, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929306', 3929306, '13.183170', '42.815102', '41.155972', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61752, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929307', 3929307, '12.633850', '42.762321', '45.031761', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61480, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929308', 3929308, '83.202133', '43.374279', '33.127289', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61208, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929310', 3929310, '107.530296', '44.219631', '32.892910', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60936, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929311', 3929311, '110.185303', '44.303749', '30.939760', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60664, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929313', 3929313, '-41.367249', '44.463268', '115.983803', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134868, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929315', 3929315, '-64.483994', '44.221882', '108.658401', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 0, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134596, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929319', 3929319, '-62.882469', '44.443130', '110.643097', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929320', 3929320, '-67.124481', '43.839500', '114.061096', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134052, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929322', 3929322, '-84.184067', '44.665230', '140.856003', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133780, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929323', 3929323, '-86.198257', '45.235828', '143.511002', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929326', 3929326, '-72.007370', '42.584850', '150.499695', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929327', 3929327, '9.933576', '43.348518', '109.513901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929330', 3929330, '-16.098310', '44.986568', '99.015739', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132692, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929331', 3929331, '-18.173540', '45.462231', '95.170471', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929332', 3929332, '5.935712', '46.903179', '76.340843', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929333', 3929333, '31.174129', '43.952351', '145.616806', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929334', 3929334, '39.963329', '44.737961', '148.119293', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131604, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929335', 3929335, '31.357241', '44.031109', '155.077393', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131332, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929336', 3929336, '38.651051', '44.626740', '146.440796', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929338', 3929338, '38.895199', '44.219131', '96.910004', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929339', 3929339, '42.160629', '44.387291', '96.482742', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130516, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929340', 3929340, '6.515503', '32.613819', '167.589798', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130244, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929342', 3929342, '-15.976240', '28.111290', '180.102203', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129972, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929343', 3929343, '-17.563181', '28.060829', '182.726700', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129700, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929344', 3929344, '-5.020265', '23.736271', '199.389603', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929345', 3929345, '-3.494363', '24.235390', '196.307297', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129156, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929346', 3929346, '-1.510690', '23.913940', '198.748703', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929347', 3929347, '17.227421', '29.147539', '192.309402', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128612, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929353', 3929353, '76.584961', '46.652691', '118.364098', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128340, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929355', 3929355, '100.907799', '48.208359', '64.560791', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128068, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929356', 3929356, '103.440804', '48.287861', '69.260620', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929357', 3929357, '97.886597', '48.162868', '66.422493', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127524, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929358', 3929358, '75.394783', '47.995930', '57.511230', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127252, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929359', 3929359, '72.770264', '48.021091', '55.741089', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126980, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929361', 3929361, '97.978149', '47.044201', '84.183960', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126708, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929362', 3929362, '133.287506', '48.588211', '77.775269', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126436, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929363', 3929363, '135.271103', '48.582859', '78.843384', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126164, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929364', 3929364, '134.172607', '48.281239', '57.785889', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125892, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929366', 3929366, '131.364899', '46.312809', '110.704102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125620, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929367', 3929367, '134.965897', '46.384861', '111.589203', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125348, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929369', 3929369, '133.928497', '46.630039', '108.415298', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125076, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929370', 3929370, '160.601196', '47.107681', '107.804901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124804, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929371', 3929371, '158.648102', '47.043930', '108.811996', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124532, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929373', 3929373, '87.449463', '46.439480', '122.392601', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124260, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929374', 3929374, '89.402588', '46.291409', '119.066002', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123988, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929379', 3929379, '79.026489', '46.295200', '172.747299', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123722, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929381', 3929381, '55.313839', '47.580700', '188.036896', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123450, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929382', 3929382, '59.983150', '48.833561', '191.790604', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123178, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929383', 3929383, '55.496948', '49.485981', '193.255493', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122906, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929384', 3929384, '40.207520', '50.527809', '210.284500', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122634, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929385', 3929385, '37.171730', '50.727009', '213.792206', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122362, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929386', 3929386, '68.163307', '56.521938', '225.312607', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122090, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929387', 3929387, '54.398369', '56.626060', '241.565506', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121818, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929388', 3929388, '72.589951', '56.790089', '227.695297', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121546, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929389', 3929389, '116.563599', '50.650009', '183.367706', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121274, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929390', 3929390, '120.317299', '49.333080', '176.928299', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121002, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929391', 3929391, '112.138496', '57.097969', '213.153198', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120730, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929392', 3929392, '127.885902', '49.931992', '177.782806', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120458, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929394', 3929394, '115.251297', '57.518108', '214.251801', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120186, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929396', 3929396, '125.779999', '52.105469', '187.182404', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119914, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929397', 3929397, '108.506798', '46.810520', '148.088699', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119642, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929398', 3929398, '105.393997', '46.639080', '146.959595', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119370, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929400', 3929400, '175.585602', '47.639019', '147.630997', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119098, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929401', 3929401, '183.975204', '48.843269', '153.229202', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118826, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929403', 3929403, '178.149002', '47.405022', '144.853806', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118554, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929404', 3929404, '186.666794', '55.711109', '189.380295', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118282, 7, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(252, 'e0038', 'bnpc3929405', 3929405, '183.897797', '55.522209', '192.259796', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118010, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929406', 3929406, '188.514496', '58.364479', '196.141098', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117738, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929407', 3929407, '190.993103', '63.780270', '212.770905', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117466, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929408', 3929408, '167.906097', '54.582249', '207.555405', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117194, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929409', 3929409, '142.684006', '57.000031', '221.431396', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116922, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929410', 3929410, '137.517303', '57.770241', '224.725601', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116650, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929412', 3929412, '140.714096', '57.641670', '227.264099', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116378, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929413', 3929413, '147.277206', '57.573250', '230.267700', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116106, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929415', 3929415, '132.701004', '59.887051', '252.613098', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115834, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929416', 3929416, '155.349503', '60.722469', '262.394104', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115562, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929417', 3929417, '152.622498', '60.751789', '265.042389', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115290, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929420', 3929420, '54.698360', '61.151402', '279.140015', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115018, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929421', 3929421, '56.888519', '60.853931', '277.569885', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114746, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929423', 3929423, '74.967529', '46.674271', '133.257004', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107142, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929428', 3929428, '-79.240143', '44.199680', '141.771500', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114480, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929431', 3929431, '-49.668159', '44.146759', '101.335098', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114208, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929432', 3929432, '-5.630626', '46.383801', '88.914268', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113936, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929433', 3929433, '38.284840', '47.256828', '61.997360', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113664, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929435', 3929435, '37.766029', '44.173309', '103.105202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113392, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929438', 3929438, '33.798679', '44.230461', '150.377594', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113120, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929439', 3929439, '23.575130', '32.314270', '182.543701', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112848, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929440', 3929440, '24.704220', '32.888840', '184.801895', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112576, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929441', 3929441, '-7.156528', '28.523640', '176.836700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112304, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929442', 3929442, '8.926480', '28.079479', '213.183701', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112032, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929443', 3929443, '107.194603', '45.562160', '101.762497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111760, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929444', 3929444, '107.499802', '45.309570', '104.722702', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111488, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929445', 3929445, '96.330078', '47.994221', '51.621220', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111216, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929446', 3929446, '136.522293', '48.535961', '75.516853', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110944, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929489', 3929489, '104.234398', '46.884571', '152.330795', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110672, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929492', 3929492, '92.393311', '56.364761', '218.402298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929494', 3929494, '37.064091', '49.279091', '203.295898', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110128, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929495', 3929495, '86.381348', '47.170170', '181.353394', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109856, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929497', 3929497, '83.939819', '47.040508', '183.794907', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109584, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929498', 3929498, '91.314941', '60.775452', '256.840088', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109312, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929500', 3929500, '134.705704', '59.571301', '250.694107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109040, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929501', 3929501, '131.525299', '61.218529', '277.023590', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108768, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929502', 3929502, '200.545807', '49.630661', '148.869003', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108496, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929504', 3929504, '198.987793', '50.079350', '152.091995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108224, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929505', 3929505, '178.837997', '53.123459', '189.309799', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107952, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929506', 3929506, '181.171707', '59.001560', '223.100006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107680, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929507', 3929507, '126.924500', '58.802368', '223.399994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107408, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929728', 3929728, '57.677570', '57.037601', '-252.600006', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60392, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929730', 3929730, '16.799730', '54.286369', '-250.227097', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60120, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929731', 3929731, '21.166161', '54.789558', '-247.635101', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59848, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929733', 3929733, '-38.999229', '46.458340', '-213.513901', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59576, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929734', 3929734, '-72.817390', '45.500000', '-170.936401', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59304, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929735', 3929735, '-68.148132', '45.500000', '-172.858994', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59032, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929736', 3929736, '-70.620087', '45.500000', '-166.297607', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58760, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929737', 3929737, '-110.856796', '44.284451', '-131.487106', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58488, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929738', 3929738, '-101.976097', '45.015499', '-129.716995', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58216, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929740', 3929740, '-167.498306', '40.500000', '-61.966919', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57944, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929741', 3929741, '-167.193100', '40.500000', '-66.147888', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57672, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929742', 3929742, '-183.581406', '41.007771', '-109.056297', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929746', 3929746, '80.869362', '49.270599', '7.434502', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105496, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929747', 3929747, '29.012220', '49.028271', '-3.487470', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105224, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929748', 3929748, '77.311432', '49.709980', '3.491879', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104952, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929749', 3929749, '81.834106', '54.978149', '-65.232361', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104680, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929750', 3929750, '87.083130', '55.954830', '-70.298401', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104408, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929751', 3929751, '106.034897', '57.114498', '-51.468689', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104136, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929752', 3929752, '105.891502', '62.411079', '-101.484497', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103864, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929753', 3929753, '109.310799', '62.695950', '-97.230469', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103592, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929754', 3929754, '112.249298', '64.482712', '-105.898697', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103320, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929756', 3929756, '11.047700', '51.170399', '-56.780079', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103048, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929757', 3929757, '7.333039', '50.839249', '-59.004021', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102776, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929758', 3929758, '-9.942499', '48.132980', '-25.451969', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102504, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929759', 3929759, '-5.731009', '48.580139', '-23.376751', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102232, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929761', 3929761, '-0.174012', '53.131248', '-111.148903', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101960, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929762', 3929762, '-7.256910', '48.664841', '-31.555580', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101688, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929763', 3929763, '-0.610147', '46.842758', '24.196171', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101416, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929764', 3929764, '-16.474920', '49.226559', '-89.968887', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101144, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929765', 3929765, '-27.792070', '47.072651', '8.583298', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53810, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929767', 3929767, '76.915253', '51.330029', '-32.258850', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53538, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929769', 3929769, '-43.220982', '46.402618', '25.789110', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100872, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929770', 3929770, '3.832037', '53.483231', '-114.631203', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100600, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929771', 3929771, '12.344500', '52.316029', '-102.067596', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100328, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929772', 3929772, '-38.788712', '46.775139', '22.066339', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100056, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929773', 3929773, '-37.919960', '46.459820', '29.848379', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99784, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929774', 3929774, '-80.033630', '42.496342', '35.263550', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99512, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929776', 3929776, '-91.857826', '43.085781', '-23.419170', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99240, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929777', 3929777, '-87.681976', '42.651001', '-20.729090', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98968, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929778', 3929778, '-153.286896', '41.687149', '-29.617990', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98696, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929779', 3929779, '-149.248505', '42.913052', '-34.195511', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98424, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929780', 3929780, '-146.114700', '41.510841', '-23.279819', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98152, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929781', 3929781, '-91.557831', '45.832359', '-74.574440', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97880, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929782', 3929782, '-94.882561', '46.208530', '-79.633614', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97608, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929783', 3929783, '-87.110580', '46.547352', '-86.619080', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97336, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929786', 3929786, '-96.894127', '45.010529', '-44.811169', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97064, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929787', 3929787, '-62.452171', '48.231701', '-104.740601', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96792, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929794', 3929794, '-178.942596', '43.561249', '-181.994400', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96520, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929795', 3929795, '-126.848297', '47.734409', '-169.207306', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96248, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929796', 3929796, '-194.842499', '42.180161', '-142.809296', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95976, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929800', 3929800, '-192.279007', '41.889690', '-147.600601', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95704, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929801', 3929801, '-122.087502', '48.332630', '-170.000793', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95432, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929802', 3929802, '-123.918503', '48.047798', '-161.486298', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95160, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929803', 3929803, '-229.663605', '39.878719', '-179.980194', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94888, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929804', 3929804, '-181.170395', '41.225609', '-251.667099', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94616, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929805', 3929805, '-185.351303', '41.346439', '-247.821793', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94344, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929806', 3929806, '-195.330795', '40.334259', '-258.991394', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94072, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929808', 3929808, '131.630295', '52.191109', '0.493474', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54414, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(252, 'e0038', 'bnpc3929810', 3929810, '132.709000', '52.181438', '1.958378', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55230, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(252, 'e0038', 'bnpc3929812', 3929812, '115.385597', '49.234230', '11.315280', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54686, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(252, 'e0038', 'bnpc3929813', 3929813, '117.565399', '49.175140', '13.275840', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56046, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(252, 'e0038', 'bnpc3929815', 3929815, '118.431900', '49.488010', '10.180580', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56318, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(252, 'e0038', 'bnpc3929817', 3929817, '106.367798', '48.645981', '15.557140', 769, 0, 0, 0, 1, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55502, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(252, 'e0038', 'bnpc3929818', 3929818, '120.948303', '51.064060', '-0.143817', 769, 0, 0, 0, 1, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55774, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(252, 'e0038', 'bnpc3929820', 3929820, '134.218094', '51.528179', '9.775265', 769, 0, 0, 0, 1, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54958, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(252, 'e0038', 'bnpc3929826', 3929826, '-13.135430', '48.986919', '-86.472923', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93800, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929828', 3929828, '54.727501', '50.161850', '-32.944271', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93528, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929829', 3929829, '64.597313', '54.990398', '-122.676598', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929831', 3929831, '66.026863', '55.127190', '-121.580200', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929832', 3929832, '64.993713', '54.756149', '-119.316101', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929834', 3929834, '-11.130180', '54.068581', '-151.851303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929835', 3929835, '19.661039', '55.244888', '-153.973495', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929836', 3929836, '18.231480', '55.455791', '-155.069901', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929838', 3929838, '-9.406013', '54.140652', '-151.402298', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929839', 3929839, '-10.487150', '54.255268', '-153.170502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929843', 3929843, '24.606649', '60.413231', '-187.828293', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929844', 3929844, '26.036209', '60.638901', '-186.731903', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929845', 3929845, '28.305441', '61.087551', '-194.048996', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929846', 3929846, '-13.216780', '58.348202', '-191.121994', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929847', 3929847, '-11.787220', '58.581120', '-190.025604', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929849', 3929849, '51.002171', '62.513901', '-171.321503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929850', 3929850, '52.431728', '62.561481', '-170.225098', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929851', 3929851, '50.250092', '61.812469', '-168.366302', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929856', 3929856, '56.742020', '62.683529', '-167.113602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929857', 3929857, '91.871223', '65.801552', '-162.567993', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929858', 3929858, '91.084763', '66.005180', '-164.451996', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88366, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929859', 3929859, '119.531303', '72.554298', '-168.638596', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929861', 3929861, '119.737503', '69.204010', '-146.898697', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929862', 3929862, '118.303101', '68.822662', '-147.997299', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929863', 3929863, '117.112900', '68.311539', '-134.325195', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929864', 3929864, '117.540199', '68.388046', '-145.037003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929873', 3929873, '118.584702', '77.068329', '-192.023804', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929874', 3929874, '119.371101', '77.166290', '-190.139801', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929875', 3929875, '96.033737', '71.784462', '-206.070999', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929876', 3929876, '147.231293', '84.770142', '-179.634399', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85918, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929878', 3929878, '131.732498', '84.239113', '-214.769608', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85646, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929879', 3929879, '129.449295', '83.200447', '-214.469604', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85374, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929880', 3929880, '117.078697', '76.359550', '-189.839798', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929886', 3929886, '-9.820036', '57.888222', '-265.562714', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929888', 3929888, '-8.463858', '57.920422', '-266.546692', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929892', 3929892, '-36.288441', '54.051159', '-264.804810', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929895', 3929895, '-37.718620', '55.539761', '-246.754105', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929896', 3929896, '-36.105400', '55.795471', '-247.488297', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929897', 3929897, '-35.805401', '55.647850', '-244.752502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929898', 3929898, '-72.558617', '52.311829', '-247.421906', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929899', 3929899, '-72.858627', '52.571899', '-250.157700', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929900', 3929900, '-74.471848', '52.134220', '-249.423401', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929902', 3929902, '-74.133102', '52.444199', '-251.412003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929903', 3929903, '-61.128719', '54.917782', '-276.469696', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929905', 3929905, '-62.202911', '55.073421', '-276.169708', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929906', 3929906, '-87.521019', '49.709011', '-267.128387', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929907', 3929907, '-103.837601', '46.340569', '-243.640900', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929908', 3929908, '-102.189697', '46.624069', '-244.434296', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929910', 3929910, '-89.931953', '49.147942', '-266.121399', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929911', 3929911, '-88.406036', '49.520420', '-265.144806', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80478, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929913', 3929913, '-94.834862', '44.620140', '-289.814606', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929914', 3929914, '-93.431030', '44.502659', '-291.523712', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929918', 3929918, '-156.328705', '41.211071', '-257.953796', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929919', 3929919, '-154.711197', '41.244331', '-258.686310', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929921', 3929921, '-122.943001', '43.252022', '-286.232788', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929922', 3929922, '-109.323997', '40.309811', '-324.737396', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929923', 3929923, '-110.727898', '40.159351', '-323.028412', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929924', 3929924, '-108.366302', '40.562851', '-322.496002', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929925', 3929925, '-68.430206', '45.267422', '-308.626495', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929926', 3929926, '-51.165970', '45.726879', '-353.049713', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929927', 3929927, '-49.648022', '45.907570', '-352.084595', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77486, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929928', 3929928, '-48.759708', '45.997150', '-354.053986', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77214, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929929', 3929929, '-54.654140', '45.340069', '-370.533600', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76942, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929930', 3929930, '-54.354141', '45.342510', '-373.142303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76670, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929931', 3929931, '-90.540337', '39.280819', '-353.994690', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76398, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929932', 3929932, '-90.840347', '39.428822', '-351.385986', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76126, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929933', 3929933, '-60.107460', '55.697620', '-260.511414', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54082, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929934', 3929934, '-164.141403', '44.110901', '-217.517303', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75860, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929935', 3929935, '-144.975998', '45.815300', '-200.640900', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75588, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929936', 3929936, '-136.644501', '45.374001', '-218.646606', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75316, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929937', 3929937, '-131.304001', '45.701130', '-214.709702', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75044, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3929938', 3929938, '-66.976334', '25.431820', '-148.179199', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929940', 3929940, '-57.442081', '24.957350', '-153.725693', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929941', 3929941, '-53.170090', '26.263571', '-128.472107', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929942', 3929942, '-67.405273', '26.238400', '-132.898193', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929943', 3929943, '-55.497108', '26.236170', '-126.848297', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929944', 3929944, '-58.530079', '27.712959', '-111.586197', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929945', 3929945, '-55.685059', '24.922501', '-155.193802', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929948', 3929948, '-46.655151', '25.719770', '-144.661301', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3929954', 3929954, '-58.565269', '51.362320', '-226.270996', 348, 0, 0, 0, 0, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72608, 3, 0, 0, 0, 0, 30073, 0, 0, 0), +(252, 'e0038', 'bnpc3929955', 3929955, '-56.209209', '52.730179', '-234.378098', 349, 0, 0, 0, 1, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72342, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(252, 'e0038', 'bnpc3929957', 3929957, '-64.286301', '51.072021', '-224.902802', 349, 0, 0, 0, 1, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72070, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(252, 'e0038', 'bnpc3929959', 3929959, '-60.089680', '51.823978', '-230.541000', 349, 0, 0, 0, 1, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71798, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(252, 'e0038', 'bnpc3929960', 3929960, '-64.276390', '50.332390', '-220.639801', 349, 0, 0, 0, 0, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71526, 3, 0, 0, 0, 0, 30079, 0, 0, 0), +(252, 'e0038', 'bnpc3929962', 3929962, '-63.299820', '50.321152', '-220.334595', 348, 0, 0, 0, 0, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71248, 3, 0, 0, 0, 0, 30082, 0, 0, 0), +(252, 'e0038', 'bnpc3929963', 3929963, '-66.534210', '51.498051', '-231.124802', 348, 0, 0, 0, 1, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70976, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(252, 'e0038', 'bnpc3929964', 3929964, '-71.434937', '49.349220', '-217.996902', 348, 0, 0, 0, 1, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70704, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(252, 'e0038', 'bnpc3929966', 3929966, '-57.328251', '51.480759', '-227.008499', 350, 0, 0, 0, 0, 6, 0, 0, 419, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70444, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(252, 'e0038', 'bnpc3930079', 3930079, '2.853394', '47.348751', '19.333130', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70178, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930083', 3930083, '98.893677', '51.255001', '-19.302670', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930087', 3930087, '79.819946', '55.375000', '-73.319641', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930089', 3930089, '11.367920', '50.858280', '-64.957703', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930092', 3930092, '-19.729919', '46.707760', '-29.587280', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69090, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930094', 3930094, '-25.955629', '51.285519', '-122.240097', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930097', 3930097, '-27.878300', '50.766720', '-117.967499', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68546, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930100', 3930100, '81.406860', '64.560791', '-160.418198', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68274, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930105', 3930105, '131.548004', '84.245003', '-218.036194', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68002, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930109', 3930109, '111.113503', '74.884857', '-194.245605', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67730, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930110', 3930110, '28.519039', '61.112301', '-189.013504', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67458, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930112', 3930112, '-4.593018', '58.915039', '-205.523697', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67186, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930113', 3930113, '3.555298', '56.168461', '-161.730392', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930118', 3930118, '-122.117996', '45.761719', '-79.270630', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66642, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930123', 3930123, '-118.181198', '42.313229', '-6.424072', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930124', 3930124, '-40.451721', '45.426029', '43.106689', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930125', 3930125, '-56.534729', '45.853390', '3.311157', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930127', 3930127, '-76.127258', '43.228760', '-43.289860', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65554, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930128', 3930128, '-213.427994', '39.292461', '-150.652298', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930129', 3930129, '-174.792099', '43.778080', '-200.488297', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930130', 3930130, '-178.332199', '41.714760', '-243.854507', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930132', 3930132, '-82.078308', '51.346561', '-266.498810', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930133', 3930133, '-48.081181', '54.215328', '-241.352005', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64194, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(252, 'e0038', 'bnpc3930138', 3930138, '-142.076797', '40.268429', '-293.263092', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63922, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930141', 3930141, '-140.245697', '40.848389', '-289.845215', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63650, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930143', 3930143, '-44.602112', '46.372070', '-358.907501', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63378, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930147', 3930147, '-57.785950', '46.097530', '-316.426300', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63106, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930151', 3930151, '-55.863281', '46.250000', '-314.839508', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62834, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930182', 3930182, '-304.707397', '13.931440', '-297.352600', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52976, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930185', 3930185, '-317.921814', '14.511280', '-319.874908', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52704, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930186', 3930186, '-356.069305', '13.626260', '-315.358185', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52432, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930188', 3930188, '-346.212006', '15.915110', '-343.556885', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52160, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930190', 3930190, '-357.564697', '16.983240', '-350.606598', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51888, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930192', 3930192, '-365.224701', '24.277060', '-387.899597', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51616, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930193', 3930193, '-372.335388', '24.032909', '-383.108307', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51344, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930194', 3930194, '-242.989197', '12.764750', '-304.178589', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51072, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930195', 3930195, '-245.276901', '15.323140', '-347.073608', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50800, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930196', 3930196, '-241.837601', '15.504950', '-360.820190', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50528, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930197', 3930197, '-231.249405', '14.674970', '-351.945709', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50256, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930198', 3930198, '-279.758698', '23.224979', '-379.012512', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49984, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930199', 3930199, '-287.296814', '23.576111', '-386.822815', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49712, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930200', 3930200, '-300.179901', '19.009211', '-361.576294', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49440, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930203', 3930203, '-344.047791', '28.847330', '-431.588806', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49168, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930207', 3930207, '-327.870605', '22.171310', '-400.259399', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48896, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930213', 3930213, '-179.705505', '16.617029', '-403.463806', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930216', 3930216, '-146.990204', '14.297660', '-392.843506', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930219', 3930219, '-175.310898', '16.525471', '-404.928711', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930224', 3930224, '-229.388901', '22.812189', '-440.299103', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930227', 3930227, '-197.039795', '24.795860', '-452.140106', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930229', 3930229, '-216.937500', '26.810061', '-472.739807', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47270, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930231', 3930231, '-222.980103', '23.453070', '-442.618500', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46998, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930232', 3930232, '-283.527893', '22.018740', '-432.181305', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46726, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930233', 3930233, '-250.629501', '24.917971', '-481.406891', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46454, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930234', 3930234, '-223.682007', '32.577961', '-507.713501', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46182, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930235', 3930235, '-228.229202', '31.876051', '-511.985992', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45910, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930236', 3930236, '-213.031204', '32.272781', '-537.346497', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45638, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930237', 3930237, '-249.988602', '30.502741', '-572.350586', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45366, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930240', 3930240, '-252.735199', '33.310398', '-597.344971', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930241', 3930241, '-255.390305', '33.768169', '-600.732422', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930242', 3930242, '-284.290894', '30.136520', '-561.608276', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930245', 3930245, '-317.302002', '35.589191', '-591.171570', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930246', 3930246, '-321.442505', '33.511250', '-583.939514', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930247', 3930247, '-331.995605', '36.578739', '-597.355713', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930248', 3930248, '-354.800690', '33.443390', '-535.994385', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43462, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930250', 3930250, '-367.069611', '33.580250', '-493.158600', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43190, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930252', 3930252, '-374.167297', '34.022141', '-483.473907', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42918, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930253', 3930253, '-370.490387', '33.450420', '-481.198914', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42646, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930254', 3930254, '-325.906097', '27.601170', '-476.435211', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42374, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930255', 3930255, '-322.883911', '27.180950', '-472.301392', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930258', 3930258, '-323.219299', '26.630880', '-526.640625', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(252, 'e0038', 'bnpc3930270', 3930270, '-365.179810', '12.493070', '-307.350189', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41564, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930271', 3930271, '-422.502197', '12.677160', '-307.390991', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41292, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930274', 3930274, '-425.462402', '12.762100', '-310.618195', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41020, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930277', 3930277, '-222.915207', '12.294620', '-317.636810', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40748, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930278', 3930278, '-226.158997', '12.534600', '-317.995789', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40476, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930280', 3930280, '-196.398895', '12.222430', '-355.031708', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40204, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930281', 3930281, '-74.238098', '12.130030', '-410.146606', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39932, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930283', 3930283, '-21.098070', '11.319840', '-436.355804', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930284', 3930284, '-3.859158', '14.732280', '-457.622314', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930285', 3930285, '-24.365191', '12.386510', '-452.972687', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39116, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3930286', 3930286, '-6.057117', '14.506850', '-455.250793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38844, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3931787', 3931787, '-269.609711', '22.980930', '-390.658813', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3931791', 3931791, '-271.683899', '13.930550', '-319.410187', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3931792', 3931792, '-269.811615', '14.350880', '-322.618713', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3931793', 3931793, '-312.711609', '13.906600', '-302.460907', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3931795', 3931795, '-204.028397', '13.900940', '-394.735687', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3931796', 3931796, '-231.464203', '25.436769', '-471.122314', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3931798', 3931798, '-201.647995', '24.643311', '-457.297699', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3931799', 3931799, '-243.150803', '26.919580', '-525.615479', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3932161', 3932161, '-207.015305', '32.560860', '-562.758789', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3932162', 3932162, '-244.633408', '29.896629', '-566.727112', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3932164', 3932164, '-269.969910', '33.304001', '-589.321411', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3932166', 3932166, '-286.629089', '24.500669', '-532.985291', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3932167', 3932167, '-284.197998', '25.013651', '-536.186523', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3932168', 3932168, '-357.327911', '32.973610', '-562.442871', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3932170', 3932170, '-331.616302', '28.746330', '-468.081787', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3932171', 3932171, '-298.664886', '23.056339', '-406.912415', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3932173', 3932173, '-377.859802', '25.497511', '-389.074188', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3932175', 3932175, '-350.521088', '18.624069', '-355.627014', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc3932176', 3932176, '-379.679993', '13.370460', '-319.535095', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4024349', 4024349, '-95.414726', '47.931198', '-199.847397', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4024350', 4024350, '-97.032097', '47.837219', '-199.084503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4024351', 4024351, '-95.109558', '48.244461', '-196.093704', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4056974', 4056974, '-10.772860', '41.723129', '131.511597', 783, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20370, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(252, 'e0038', 'bnpc4296703', 4296703, '220.339401', '103.033401', '-192.118607', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19236, 8, 0, 0, 4296693, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4296705', 4296705, '244.738297', '105.634201', '-204.802994', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18964, 8, 0, 0, 4296689, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4296707', 4296707, '249.144104', '105.712402', '-208.740204', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18692, 8, 0, 0, 4296690, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4296708', 4296708, '253.558899', '105.985802', '-214.094299', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18420, 8, 0, 0, 4296691, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4296709', 4296709, '226.015106', '103.203697', '-193.008301', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18148, 8, 0, 0, 4296694, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4621598', 4621598, '-494.667999', '21.636040', '-302.079010', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29960, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4867876', 4867876, '28.213869', '50.827759', '-87.998840', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29486, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4867877', 4867877, '41.707401', '51.156799', '-86.539299', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29214, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4867878', 4867878, '39.668598', '51.736500', '-101.188400', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28942, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4867879', 4867879, '34.538631', '50.845268', '-83.984108', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28676, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4867880', 4867880, '24.472219', '51.118671', '-92.466171', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28404, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4867881', 4867881, '24.319870', '52.536991', '-109.234901', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28132, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4867882', 4867882, '55.329231', '53.690331', '-96.379692', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27860, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4867883', 4867883, '35.340740', '52.012718', '-113.983498', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27588, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4867884', 4867884, '20.250629', '52.350960', '-103.253700', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27316, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4867885', 4867885, '51.540489', '52.848961', '-79.500076', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27044, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4867886', 4867886, '41.456211', '51.357250', '-93.443268', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26772, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4867887', 4867887, '35.558880', '51.834862', '-105.446701', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26500, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4867888', 4867888, '23.570000', '50.670292', '-81.777740', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26228, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4867889', 4867889, '51.948132', '52.700432', '-106.025299', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25956, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4867890', 4867890, '27.729429', '51.344398', '-95.375870', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25684, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4892334', 4892334, '136.626007', '48.560169', '61.895821', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24494, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4892335', 4892335, '131.496002', '48.619511', '79.100121', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24228, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4892336', 4892336, '121.429604', '48.684132', '70.618050', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23956, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4892337', 4892337, '121.277298', '47.602539', '53.849319', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23684, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4892338', 4892338, '138.664795', '48.539879', '76.544930', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23406, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4892339', 4892339, '117.208000', '48.099979', '59.830521', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23140, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4892340', 4892340, '132.298096', '47.763882', '49.100731', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22868, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4892341', 4892341, '152.286697', '49.492531', '66.704536', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22596, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4892342', 4892342, '125.171303', '48.678471', '75.085381', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22318, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4892343', 4892343, '120.527397', '48.525890', '81.306480', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22052, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4892344', 4892344, '148.497894', '48.561459', '83.584137', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21780, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4892345', 4892345, '148.905502', '49.877151', '57.058929', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21508, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4892346', 4892346, '124.762199', '48.546471', '67.801064', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21236, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4892347', 4892347, '132.516296', '48.171822', '57.637520', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20964, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(252, 'e0038', 'bnpc4892348', 4892348, '138.413605', '48.645409', '69.640953', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20692, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc1368411', 1368411, '-66.155998', '-12.582840', '-8.814363', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc1368412', 1368412, '-64.537338', '-12.499180', '-8.712757', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc1368413', 1368413, '-62.951370', '-12.426580', '-8.677147', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc1368414', 1368414, '-61.258369', '-12.364150', '-8.589471', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc1368416', 1368416, '-66.693230', '-12.961350', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212726, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc1368417', 1368417, '-64.495934', '-12.860610', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc1368418', 1368418, '-62.481739', '-12.772990', '-13.472360', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc1368419', 1368419, '-60.162369', '-12.662670', '-13.441840', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc1368420', 1368420, '-69.467598', '-13.149620', '-18.035919', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211644, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc1368440', 1368440, '-65.325943', '-13.142030', '-18.046921', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211372, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc1368441', 1368441, '-61.416431', '-13.052980', '-18.065041', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211100, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc1368442', 1368442, '-57.492748', '-12.665620', '-17.741350', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210828, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746473', 3746473, '-134.012207', '9.916103', '267.132690', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208458, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746474', 3746474, '-139.248093', '11.343600', '270.767487', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208186, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746475', 3746475, '-116.714996', '8.743372', '266.243988', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207914, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746477', 3746477, '-123.143700', '11.980280', '281.311798', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207642, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746478', 3746478, '-128.526794', '6.043580', '250.778503', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207370, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746481', 3746481, '-87.065170', '8.131585', '270.853210', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207098, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746484', 3746484, '-77.385406', '9.277164', '278.146301', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206826, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746485', 3746485, '-79.850502', '9.815605', '280.807892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206554, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746486', 3746486, '-57.801540', '7.714478', '280.245697', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206282, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746487', 3746487, '-32.103970', '8.045358', '306.695404', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206010, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746488', 3746488, '-33.263660', '8.805240', '310.174408', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205738, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746489', 3746489, '-23.206301', '7.924604', '316.282593', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205466, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746490', 3746490, '-1.823452', '12.616180', '355.344391', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205194, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746491', 3746491, '1.058939', '11.460450', '352.323212', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204922, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746492', 3746492, '-1.840275', '11.813140', '350.644714', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204650, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746493', 3746493, '-56.592079', '0.108709', '220.398895', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204378, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746494', 3746494, '-56.292080', '3.881968', '249.628098', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204106, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746495', 3746495, '-31.334530', '2.359202', '278.398193', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203834, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746496', 3746496, '-104.320801', '1.025299', '207.824005', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203562, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746498', 3746498, '7.768722', '1.031246', '256.953094', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203290, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746499', 3746499, '-123.605797', '2.842937', '210.266296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203018, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746500', 3746500, '30.048519', '10.050760', '356.964386', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202746, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746501', 3746501, '-97.688263', '-3.294564', '184.145203', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202474, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746503', 3746503, '-99.971313', '-3.426347', '180.765198', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202202, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746505', 3746505, '-87.144318', '-1.876907', '198.901306', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201930, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746506', 3746506, '-47.697250', '-4.439452', '201.516296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201658, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746507', 3746507, '-14.522570', '0.676844', '242.620300', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201386, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746508', 3746508, '-11.261070', '0.694751', '245.484695', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201114, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746514', 3746514, '-119.246803', '8.981372', '268.429688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155702, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746519', 3746519, '-132.127899', '6.316744', '252.007797', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155974, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746522', 3746522, '-155.544296', '14.321210', '274.575500', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156246, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746523', 3746523, '-155.193604', '7.549813', '251.117706', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155430, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746524', 3746524, '-92.355728', '5.076609', '248.889801', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154614, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746525', 3746525, '-107.799896', '1.451139', '209.227798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154886, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746526', 3746526, '-114.793701', '4.013075', '226.245499', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155158, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746527', 3746527, '28.597651', '13.168800', '391.636688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157606, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746528', 3746528, '-93.669998', '-2.292831', '193.599503', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157878, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746529', 3746529, '-86.737587', '1.982069', '218.821899', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158150, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746530', 3746530, '-94.103600', '-4.710398', '174.915298', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157334, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746532', 3746532, '-55.083771', '1.032392', '224.458603', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156518, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746533', 3746533, '-52.324100', '-0.635104', '220.185806', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156790, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746534', 3746534, '-52.024101', '-4.438385', '196.025299', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157062, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746535', 3746535, '-23.599480', '-4.862183', '218.164505', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162774, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746536', 3746536, '-2.930916', '14.263170', '364.690308', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165222, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746538', 3746538, '-40.705959', '2.362750', '241.470093', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165494, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746539', 3746539, '-66.280632', '6.869143', '269.246704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165766, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746541', 3746541, '4.373672', '4.711559', '297.562012', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164950, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746542', 3746542, '-63.836632', '11.354730', '293.474915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164134, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746543', 3746543, '-67.036057', '11.719290', '294.869385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164406, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746544', 3746544, '-40.587990', '10.584770', '307.244690', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164678, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746545', 3746545, '-18.006081', '5.176353', '307.655609', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159510, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746547', 3746547, '13.581710', '5.033936', '280.057404', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746557', 3746557, '59.891609', '12.558130', '450.125793', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746560', 3746560, '49.054600', '13.360080', '439.790100', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746579', 3746579, '-107.428101', '5.098667', '239.118896', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746589', 3746589, '15.346860', '15.164520', '392.385712', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200842, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746592', 3746592, '14.522880', '15.407670', '396.017303', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200570, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746594', 3746594, '34.258789', '14.106760', '421.936798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159782, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746595', 3746595, '60.659401', '11.900060', '438.181702', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160054, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746616', 3746616, '55.188671', '13.295150', '508.984802', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159238, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746617', 3746617, '66.524231', '10.880620', '515.488220', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200298, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746618', 3746618, '49.532551', '14.712430', '506.886414', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200026, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746619', 3746619, '50.356541', '14.371650', '503.254791', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199754, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746620', 3746620, '59.248550', '11.443580', '491.395813', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199482, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746621', 3746621, '87.897888', '3.259133', '489.249908', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158422, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746622', 3746622, '84.418831', '4.091218', '486.350708', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158694, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746623', 3746623, '46.372120', '15.609930', '520.347778', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158966, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746624', 3746624, '84.031380', '8.407674', '556.939026', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199210, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746625', 3746625, '89.244087', '6.908536', '552.574890', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198938, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746626', 3746626, '105.598701', '4.370574', '521.843201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198666, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746628', 3746628, '107.891403', '6.906938', '609.728882', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161414, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746629', 3746629, '160.979904', '10.423200', '445.205414', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746630', 3746630, '189.060593', '11.863390', '607.536072', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746688', 3746688, '86.533859', '11.154300', '622.308594', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198394, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746689', 3746689, '77.714149', '12.588650', '626.672729', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198122, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746690', 3746690, '81.986671', '11.825690', '632.593201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197850, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746691', 3746691, '42.256569', '15.522670', '621.038330', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197578, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746692', 3746692, '36.528320', '15.730630', '626.060913', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197306, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746693', 3746693, '33.963001', '15.853820', '622.955627', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197034, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746694', 3746694, '54.517780', '14.477480', '614.387390', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160870, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746695', 3746695, '75.144310', '14.202080', '664.210083', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160598, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746697', 3746697, '71.776787', '14.357050', '666.349792', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196762, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746699', 3746699, '110.074799', '9.705235', '672.023499', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196490, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746700', 3746700, '105.802299', '9.833974', '666.103027', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196218, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746701', 3746701, '114.622002', '9.802178', '661.738892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195946, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746702', 3746702, '102.630096', '9.930755', '678.326416', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160326, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(253, 'e0019', 'bnpc3746703', 3746703, '124.601700', '9.267537', '672.118774', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161142, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746704', 3746704, '139.915802', '3.409252', '629.204895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161958, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746706', 3746706, '148.317993', '4.103824', '654.705994', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195674, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746707', 3746707, '140.430801', '4.620288', '650.824585', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195402, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746708', 3746708, '144.703293', '4.162472', '656.745178', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195130, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3746728', 3746728, '105.175301', '7.446661', '611.285278', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161686, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746741', 3746741, '123.709900', '4.546344', '401.381409', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746744', 3746744, '119.896500', '4.229595', '400.430603', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746745', 3746745, '121.385498', '4.562400', '415.457306', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746747', 3746747, '94.951797', '4.409234', '415.757996', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746748', 3746748, '98.573242', '3.713897', '402.903290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746753', 3746753, '105.931702', '3.887046', '438.676788', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746754', 3746754, '103.130402', '3.837232', '441.897888', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746756', 3746756, '101.549301', '2.579426', '385.163391', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746757', 3746757, '126.748802', '2.272390', '326.781708', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746762', 3746762, '128.648804', '2.609246', '322.621399', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746767', 3746767, '115.312401', '0.839199', '310.200592', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746769', 3746769, '60.052872', '2.658700', '301.575806', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746771', 3746771, '66.487648', '2.270967', '295.222290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746772', 3746772, '59.572800', '2.550388', '279.994904', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746773', 3746773, '39.864429', '5.507329', '295.432587', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746775', 3746775, '28.239599', '1.102737', '258.417786', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746782', 3746782, '33.012630', '-0.000074', '236.507797', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746783', 3746783, '30.472219', '1.540232', '261.602997', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746790', 3746790, '40.329552', '0.198320', '191.668503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746791', 3746791, '42.740471', '0.381429', '188.281006', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189696, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746792', 3746792, '21.316620', '-1.942127', '212.041397', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189424, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746795', 3746795, '33.488029', '0.135540', '209.757507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189152, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746800', 3746800, '79.875580', '17.322849', '153.453400', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188880, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746801', 3746801, '86.274673', '14.097900', '174.830002', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188608, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746802', 3746802, '82.595718', '17.371531', '156.113602', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188336, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746803', 3746803, '68.047150', '12.851960', '169.148697', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188064, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746805', 3746805, '145.186905', '14.265870', '303.993011', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187792, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746806', 3746806, '134.595795', '15.951970', '271.548492', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187520, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746807', 3746807, '129.378799', '14.996020', '276.045807', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187248, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746808', 3746808, '102.709000', '6.216220', '218.986298', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186976, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746815', 3746815, '104.478500', '3.524787', '410.177704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162502, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746820', 3746820, '134.782898', '6.790217', '393.331787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162230, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746821', 3746821, '109.756599', '2.337350', '358.451385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163046, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746826', 3746826, '100.612602', '0.927920', '320.347412', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163862, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746828', 3746828, '122.748901', '1.776996', '318.298187', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163590, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746831', 3746831, '90.791931', '1.666962', '266.808197', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163318, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746834', 3746834, '115.643402', '6.086327', '252.986206', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153254, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746835', 3746835, '116.878197', '7.099676', '249.317596', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152982, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746839', 3746839, '134.754898', '15.738220', '277.605591', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152710, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746842', 3746842, '138.416901', '14.910950', '291.298401', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153526, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746843', 3746843, '69.640907', '10.773730', '192.122192', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154342, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746844', 3746844, '80.370789', '14.464900', '168.592697', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154070, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746845', 3746845, '58.563480', '13.422550', '142.645203', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153798, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746846', 3746846, '84.523247', '19.105749', '150.735306', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151350, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746847', 3746847, '44.427238', '1.305627', '214.361099', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151078, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746848', 3746848, '17.726910', '-2.276831', '214.661102', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150806, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746850', 3746850, '23.742001', '2.113425', '263.454895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151622, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746857', 3746857, '39.223301', '5.294607', '322.688812', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152438, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746859', 3746859, '72.028061', '7.308271', '404.591492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152166, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746861', 3746861, '127.672203', '6.607109', '430.716309', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151894, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746864', 3746864, '165.074600', '12.246150', '482.778503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186704, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746867', 3746867, '168.492706', '12.057270', '478.475494', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186432, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746868', 3746868, '162.989304', '12.037260', '478.563507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186160, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746870', 3746870, '159.288895', '10.574450', '408.590790', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185888, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746871', 3746871, '163.653000', '10.757560', '411.825714', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185616, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746872', 3746872, '180.336197', '12.793920', '406.002014', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185344, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746873', 3746873, '161.736893', '16.236589', '388.045105', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185072, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746876', 3746876, '133.837296', '9.269427', '459.531403', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184800, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746878', 3746878, '131.557098', '8.976067', '457.624695', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184528, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746880', 3746880, '120.227203', '8.368025', '485.318115', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184256, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746885', 3746885, '134.445908', '12.144460', '507.273987', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183984, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746887', 3746887, '131.554993', '12.056210', '504.412415', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183712, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746889', 3746889, '140.997406', '11.949580', '487.139313', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183440, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746891', 3746891, '177.389404', '11.185200', '525.833618', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183168, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746894', 3746894, '180.637207', '11.258170', '523.414673', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182896, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746896', 3746896, '163.836105', '12.375020', '511.253387', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182624, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746898', 3746898, '147.262100', '7.242397', '543.931824', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182352, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746902', 3746902, '159.838196', '8.834927', '539.787781', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182080, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746905', 3746905, '155.880402', '7.197376', '556.779175', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181808, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746908', 3746908, '158.138794', '8.079927', '559.495300', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181536, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746910', 3746910, '143.386200', '7.563845', '583.138916', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181264, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746911', 3746911, '141.779205', '7.213043', '585.132019', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180992, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746913', 3746913, '138.754898', '6.737441', '570.297424', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180720, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746914', 3746914, '149.117798', '6.128607', '602.883972', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180448, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746915', 3746915, '169.704697', '11.348940', '603.184021', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180176, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746916', 3746916, '180.008804', '11.209140', '617.096130', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179904, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746917', 3746917, '182.074905', '11.129530', '618.747620', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179632, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746918', 3746918, '203.008896', '12.064710', '597.300476', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179360, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746919', 3746919, '222.377304', '10.658940', '600.289978', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179088, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746920', 3746920, '219.857101', '10.195060', '606.104126', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178816, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746921', 3746921, '216.053207', '12.886560', '579.694885', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178544, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746922', 3746922, '254.440308', '11.644550', '583.224670', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178272, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746923', 3746923, '187.395996', '12.680200', '480.674408', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178000, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746925', 3746925, '122.484100', '8.621300', '468.558685', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174198, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746927', 3746927, '152.697006', '11.123780', '465.049103', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173382, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746928', 3746928, '200.189301', '12.546850', '452.841888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173654, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746929', 3746929, '184.320801', '12.674630', '482.649414', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174470, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746930', 3746930, '161.638794', '12.497090', '508.781494', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175286, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746932', 3746932, '134.477707', '12.039320', '494.041290', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175558, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746933', 3746933, '157.244202', '8.895963', '538.017822', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174742, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746934', 3746934, '145.677795', '11.978280', '517.051880', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175014, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746937', 3746937, '112.465202', '5.551401', '523.979492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168486, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746941', 3746941, '164.965195', '10.635490', '582.482483', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168214, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746945', 3746945, '140.062500', '7.095398', '581.505981', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167942, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746946', 3746946, '126.004097', '4.418174', '596.074219', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169302, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746951', 3746951, '205.096497', '11.978280', '595.452820', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169030, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746954', 3746954, '201.556396', '10.391350', '620.202881', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168758, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746956', 3746956, '223.407303', '9.658914', '609.063782', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167670, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746958', 3746958, '230.853699', '7.095398', '629.480286', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166582, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746959', 3746959, '228.412201', '6.607109', '632.684814', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166310, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746960', 3746960, '250.843002', '10.543940', '603.967285', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166038, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746962', 3746962, '251.148193', '11.947770', '580.346313', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167398, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746963', 3746963, '236.801498', '16.670509', '560.962524', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167126, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746965', 3746965, '239.996399', '16.684830', '564.761475', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166854, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746966', 3746966, '219.876907', '16.677370', '559.278870', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169574, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746967', 3746967, '255.603806', '16.647539', '552.574890', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172294, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746968', 3746968, '261.768494', '13.412630', '571.068787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172022, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746969', 3746969, '261.341187', '16.678061', '523.765930', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171750, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746970', 3746970, '263.263885', '16.647539', '520.866577', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173110, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746971', 3746971, '247.730194', '16.647539', '499.259888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172838, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746972', 3746972, '210.126297', '16.670370', '499.584686', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172566, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746973', 3746973, '206.265198', '16.709129', '502.872498', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171478, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746974', 3746974, '201.359299', '16.670370', '525.525696', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170390, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746975', 3746975, '199.202896', '16.634470', '546.190796', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170118, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746976', 3746976, '201.042099', '16.670389', '547.166199', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169846, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3746983', 3746983, '47.837040', '20.883829', '-297.468597', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79320, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3746984', 3746984, '30.218941', '19.809231', '-261.464111', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80402, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(253, 'e0019', 'bnpc3746985', 3746985, '45.726398', '19.952000', '-251.705505', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79048, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3746988', 3746988, '37.782612', '19.928471', '-277.190186', 736, 0, 0, 0, 1, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80130, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3746992', 3746992, '32.101620', '19.979660', '-229.510406', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79858, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(253, 'e0019', 'bnpc3746993', 3746993, '32.891548', '19.908630', '-233.898605', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78776, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(253, 'e0019', 'bnpc3746997', 3746997, '-40.889229', '-6.750034', '159.270004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88278, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747003', 3747003, '-38.858761', '-6.750058', '155.119003', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88550, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747004', 3747004, '-21.989389', '-6.750032', '151.563995', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87190, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747006', 3747006, '-1.016211', '-6.750022', '160.127197', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89638, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747009', 3747009, '3.375875', '-6.751163', '164.669601', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89910, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747010', 3747010, '5.926142', '-6.750027', '161.728195', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89366, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747012', 3747012, '22.984619', '-6.750012', '165.561600', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89094, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747015', 3747015, '30.818211', '-6.750096', '148.130096', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88822, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747018', 3747018, '-6.179034', '-6.750058', '138.765106', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90182, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747019', 3747019, '-2.610643', '-6.750058', '141.990707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87734, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747021', 3747021, '-15.651240', '-6.750003', '122.209503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87462, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747022', 3747022, '-52.276199', '-6.750027', '169.793900', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88006, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747028', 3747028, '-73.794739', '-6.750006', '155.086899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91814, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747033', 3747033, '-84.128677', '-6.750047', '148.117004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90454, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747034', 3747034, '-88.289063', '-6.750033', '145.505707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90998, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747037', 3747037, '-81.662231', '-6.750007', '162.451996', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91542, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747042', 3747042, '-100.621399', '-6.750030', '133.779007', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91270, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747078', 3747078, '174.099396', '10.387860', '561.876526', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177728, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747306', 3747306, '166.825607', '12.296140', '403.792114', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171206, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747310', 3747310, '155.935303', '9.673933', '431.016296', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170934, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747330', 3747330, '-88.883842', '-0.106860', '109.147697', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747331', 3747331, '-61.120312', '0.636424', '88.682060', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747332', 3747332, '-80.643967', '-0.473077', '67.368530', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747333', 3747333, '-86.717056', '0.991789', '72.831261', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747336', 3747336, '-36.911621', '-3.830061', '32.700039', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747337', 3747337, '-40.695862', '-4.928711', '25.589331', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747338', 3747338, '-11.550680', '0.488563', '-28.281300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747339', 3747339, '17.013760', '3.036498', '-38.223900', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747340', 3747340, '-58.237549', '-4.110259', '-107.568703', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110020, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747341', 3747341, '-67.615173', '-4.777174', '-101.631897', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109476, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747342', 3747342, '-91.142181', '-0.778257', '-101.335197', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109748, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747344', 3747344, '-126.726303', '9.466410', '-79.290817', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110564, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747345', 3747345, '-162.798492', '10.177720', '-67.887444', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114644, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747347', 3747347, '-162.133194', '17.720350', '-97.090424', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114916, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747349', 3747349, '-170.820297', '17.510420', '-95.798119', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114372, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747353', 3747353, '-144.544800', '8.164017', '-26.941380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113828, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747356', 3747356, '-176.280701', '8.164456', '-26.641380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114100, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747358', 3747358, '-181.261993', '6.912290', '-21.225349', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116004, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747359', 3747359, '-207.415894', '10.971190', '-31.418369', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116276, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747362', 3747362, '-142.900803', '6.271411', '-160.784302', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115732, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747363', 3747363, '-153.948898', '13.420070', '-190.044296', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115188, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747364', 3747364, '-199.122604', '1.060047', '7.769498', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112468, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747365', 3747365, '-100.182404', '-4.169586', '5.823180', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112196, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747366', 3747366, '-162.648407', '1.476818', '27.867500', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112740, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747368', 3747368, '-228.292801', '1.271454', '31.448839', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113284, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747369', 3747369, '-281.000000', '1.547629', '6.098617', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113012, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747370', 3747370, '-292.305786', '1.883296', '3.669711', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110292, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747371', 3747371, '-289.186615', '0.923461', '44.489441', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111108, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747372', 3747372, '-331.967499', '-0.344346', '37.288601', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110836, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747373', 3747373, '-367.222809', '14.331700', '37.588600', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111380, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747374', 3747374, '-362.704590', '17.228571', '24.585470', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111924, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747376', 3747376, '-337.512299', '2.239006', '84.820068', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111652, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747380', 3747380, '-350.515015', '5.752604', '108.384804', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113556, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747385', 3747385, '-374.964294', '1.092578', '72.868820', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115460, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747388', 3747388, '-52.163811', '-2.028311', '119.953003', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147810, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747389', 3747389, '-86.052368', '0.110645', '102.987396', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147538, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747390', 3747390, '-74.317467', '-4.983451', '25.989620', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147266, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747391', 3747391, '-33.861969', '-6.175569', '6.276085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146994, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747393', 3747393, '13.815840', '0.849448', '-43.540058', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146722, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747394', 3747394, '-25.443001', '-6.505634', '-66.767128', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146450, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747395', 3747395, '-66.218620', '-2.263651', '-110.189796', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146178, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747396', 3747396, '-92.423927', '2.517692', '-129.686493', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747397', 3747397, '-120.059502', '11.096300', '-65.332710', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747398', 3747398, '-123.346199', '11.132750', '-62.877190', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747399', 3747399, '-135.404602', '3.017960', '-134.773499', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145090, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747400', 3747400, '-155.932007', '14.084030', '-185.687103', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747401', 3747401, '-176.806305', '20.096081', '-127.183998', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144546, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747402', 3747402, '-182.692200', '11.068910', '-54.575550', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144274, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747403', 3747403, '-188.219101', '8.602026', '-26.668791', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144002, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747404', 3747404, '-125.142403', '-1.327417', '12.701530', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143730, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747405', 3747405, '-142.871094', '-0.211552', '-0.011758', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143458, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747406', 3747406, '-188.977707', '1.185343', '0.288242', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143186, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747407', 3747407, '-196.063202', '-0.991883', '44.632591', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747408', 3747408, '-198.598099', '-1.427130', '46.344830', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142642, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747409', 3747409, '-265.374908', '-0.871808', '46.644829', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747410', 3747410, '-245.222107', '0.679796', '27.065580', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747411', 3747411, '-236.532196', '4.119698', '-11.326280', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747413', 3747413, '-237.229904', '7.081615', '-22.989599', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141554, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747414', 3747414, '-238.542206', '7.219037', '-24.718719', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747415', 3747415, '-245.215302', '6.500818', '-25.125641', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747417', 3747417, '-335.459198', '7.751451', '2.210185', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747419', 3747419, '-332.434692', '-0.635067', '45.192638', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747420', 3747420, '-338.391815', '2.787159', '90.300163', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140194, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747635', 3747635, '-101.580002', '3.185857', '-122.629700', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747636', 3747636, '-113.067703', '0.190863', '-235.496902', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747637', 3747637, '-8.689189', '-2.987621', '-71.427528', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747853', 3747853, '-210.928299', '22.971910', '-101.417801', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82028, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3747854', 3747854, '-210.061996', '22.349720', '-98.801086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82844, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3747855', 3747855, '-199.564606', '24.777719', '-122.897400', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82572, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3747856', 3747856, '-217.284500', '27.674749', '-122.597397', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81756, 2, 0, 0, 0, 18, 30060, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(253, 'e0019', 'bnpc3747858', 3747858, '-217.212097', '28.120930', '-124.432098', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81212, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(253, 'e0019', 'bnpc3747859', 3747859, '-208.813400', '29.458891', '-133.137894', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80940, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3747860', 3747860, '-223.520599', '24.171949', '-95.828552', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81484, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3747864', 3747864, '-228.529297', '20.575800', '-76.218086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85564, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3747865', 3747865, '-241.385498', '18.354990', '-63.139381', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85292, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3747867', 3747867, '-243.216904', '18.379009', '-62.623611', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86380, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3747868', 3747868, '-255.936401', '24.723961', '-77.803009', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86108, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3747869', 3747869, '-267.446411', '25.988930', '-78.509064', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85836, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(253, 'e0019', 'bnpc3747870', 3747870, '-266.262207', '26.413910', '-80.013046', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86924, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(253, 'e0019', 'bnpc3747873', 3747873, '-288.302704', '28.840969', '-91.487991', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86652, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3747874', 3747874, '-273.846008', '27.999920', '-103.128998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83660, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3747876', 3747876, '-257.572906', '27.938169', '-88.810738', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83932, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3747877', 3747877, '-234.919403', '27.970850', '-103.431198', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84476, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(253, 'e0019', 'bnpc3747880', 3747880, '-245.382996', '27.999990', '-107.453003', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83116, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3747881', 3747881, '-254.081406', '28.000000', '-102.002197', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84204, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(253, 'e0019', 'bnpc3747883', 3747883, '-258.959106', '28.000000', '-105.536201', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82300, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3747884', 3747884, '-251.270294', '27.969730', '-102.616898', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85020, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(253, 'e0019', 'bnpc3747886', 3747886, '-248.655701', '28.000000', '-96.725998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84748, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3747889', 3747889, '-248.153000', '28.470831', '-127.263100', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83388, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(253, 'e0019', 'bnpc3747891', 3747891, '-234.992294', '9.310618', '-37.905788', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139922, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747893', 3747893, '-237.711700', '8.873294', '-42.033760', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139650, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747899', 3747899, '-214.038300', '-30.502831', '123.735397', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139384, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747900', 3747900, '-250.516998', '-31.060820', '85.115646', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139118, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747904', 3747904, '-201.968796', '-30.857059', '117.357803', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138840, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747905', 3747905, '-183.124893', '-31.750071', '106.885902', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138568, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747906', 3747906, '-185.311996', '-31.750059', '109.415100', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138296, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747907', 3747907, '-152.843002', '-31.750000', '109.715103', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138024, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747908', 3747908, '-166.101105', '-31.750000', '110.540100', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137758, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747909', 3747909, '-169.604507', '-27.712351', '77.843430', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137486, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747910', 3747910, '-167.071503', '-27.177780', '76.317528', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137214, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747911', 3747911, '-210.234406', '-30.382589', '95.879173', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136942, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747913', 3747913, '-195.861603', '-27.444660', '129.920502', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136670, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747914', 3747914, '-224.566406', '-31.750071', '110.176003', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136398, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747915', 3747915, '-263.312103', '-31.750090', '97.519081', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136126, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747916', 3747916, '-255.968094', '-31.750130', '95.789261', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135848, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747919', 3747919, '-211.436401', '-30.614429', '97.981651', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135576, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747921', 3747921, '-244.620895', '-28.275660', '117.486801', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135304, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747922', 3747922, '-225.970795', '-15.579620', '71.709572', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135026, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747923', 3747923, '-170.891495', '-26.165300', '72.662949', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134754, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747924', 3747924, '-154.802902', '-29.800900', '94.071899', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134482, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747925', 3747925, '-164.402603', '-31.750019', '112.296303', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747927', 3747927, '-213.131393', '-30.063490', '125.099403', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747928', 3747928, '-234.579193', '-29.342421', '117.079697', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747930', 3747930, '-206.002899', '-30.332180', '97.422249', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747931', 3747931, '-258.774902', '-31.750071', '93.732712', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747933', 3747933, '-124.520401', '25.876591', '-384.084900', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117364, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747935', 3747935, '-120.378502', '25.406219', '-376.089111', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117636, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747936', 3747936, '-71.168182', '15.618890', '-341.319214', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117908, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747937', 3747937, '-140.945007', '34.283039', '-443.520813', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116548, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747945', 3747945, '-104.844803', '10.208240', '-322.407898', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116820, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747953', 3747953, '-68.964897', '24.845461', '-295.047913', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117092, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747955', 3747955, '-30.148661', '20.242010', '-347.723907', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118180, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747958', 3747958, '-20.706499', '20.599291', '-342.888702', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118724, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747963', 3747963, '20.322849', '15.975690', '-350.654205', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118996, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747965', 3747965, '39.420231', '19.301970', '-356.003815', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119268, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3747975', 3747975, '-138.811401', '27.237310', '-416.372986', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747994', 3747994, '-93.431030', '7.583686', '-301.106293', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3747997', 3747997, '-65.966766', '21.859249', '-305.947601', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748004', 3748004, '-66.655212', '20.943001', '-309.725586', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748006', 3748006, '-38.712181', '21.255770', '-344.167297', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748009', 3748009, '-93.684303', '18.821621', '-371.862793', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748015', 3748015, '-113.144402', '27.605829', '-397.741913', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131490, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748017', 3748017, '-112.844398', '28.132500', '-450.977997', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748018', 3748018, '-108.119003', '27.149870', '-454.027008', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748020', 3748020, '-152.178299', '27.511971', '-419.668915', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748022', 3748022, '35.132519', '17.855400', '-352.433105', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748394', 3748394, '65.413780', '20.079309', '-340.723206', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748396', 3748396, '-140.276199', '-3.219701', '-317.433502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748397', 3748397, '-147.234299', '-4.593012', '-324.147400', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748399', 3748399, '-210.589798', '1.083344', '-288.624390', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748402', 3748402, '-72.186493', '11.340310', '-240.295197', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748407', 3748407, '-77.690918', '8.765988', '-234.389694', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748409', 3748409, '-50.269390', '11.709270', '-222.062698', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748410', 3748410, '-65.652512', '8.342214', '-211.891998', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748411', 3748411, '-21.376921', '8.231496', '-242.911896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748412', 3748412, '-16.418360', '6.341013', '-249.044601', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748413', 3748413, '-6.975120', '11.175980', '-282.658691', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106490, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748414', 3748414, '10.056190', '8.215180', '-250.173004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748415', 3748415, '5.360405', '-0.923770', '-218.657303', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748416', 3748416, '48.714218', '0.699683', '-174.900604', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748417', 3748417, '95.936577', '1.386500', '-186.119995', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748418', 3748418, '31.585911', '8.951487', '-139.193497', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748419', 3748419, '35.112041', '16.424919', '-113.143204', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748420', 3748420, '34.363049', '8.229201', '-145.052994', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748421', 3748421, '90.860474', '1.763928', '-189.065002', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748422', 3748422, '113.054001', '1.174898', '-202.746704', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748423', 3748423, '130.461395', '1.093745', '-233.497101', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748424', 3748424, '124.484100', '0.743076', '-229.449493', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748425', 3748425, '89.422256', '3.504610', '-218.853806', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748428', 3748428, '-184.704300', '-4.704755', '-317.082306', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748429', 3748429, '-177.061203', '-3.447654', '-291.626190', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748430', 3748430, '-168.688507', '-1.968461', '-348.439789', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102954, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748431', 3748431, '-142.835693', '-1.140769', '-353.109894', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748433', 3748433, '-167.528793', '6.179857', '-382.681000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748434', 3748434, '-192.189301', '-4.726788', '-315.063293', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97242, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748436', 3748436, '-213.360901', '-4.497713', '-340.979004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748437', 3748437, '-234.150696', '5.014801', '-286.084686', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98602, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748438', 3748438, '-218.334900', '17.160500', '-255.482300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748443', 3748443, '-212.971405', '13.338840', '-260.496307', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748479', 3748479, '-151.282501', '-4.870804', '-286.887787', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748499', 3748499, '-178.949402', '6.440631', '-256.865692', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748520', 3748520, '-148.505096', '-5.306737', '-314.775085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748524', 3748524, '-185.881104', '-4.844985', '-310.895508', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748526', 3748526, '-164.369003', '1.507254', '-251.882507', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748528', 3748528, '-207.412399', '17.160610', '-247.635193', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748530', 3748530, '-229.519104', '3.459191', '-289.959412', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748532', 3748532, '-163.010803', '-1.945551', '-356.094696', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748534', 3748534, '-173.595505', '5.841309', '-388.489685', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748537', 3748537, '-232.440796', '-2.339301', '-322.417908', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127954, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748538', 3748538, '-251.794006', '-1.267901', '-386.990295', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748542', 3748542, '-234.040207', '-0.107224', '-383.030914', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748543', 3748543, '-272.222107', '0.687642', '-325.399811', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748545', 3748545, '-263.308685', '4.237235', '-309.758392', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748546', 3748546, '-252.162598', '0.152196', '-318.392395', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748548', 3748548, '-251.430496', '-2.982757', '-348.143311', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748549', 3748549, '-240.737198', '1.345172', '-393.418396', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748550', 3748550, '-242.828506', '-3.567687', '-364.035309', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748551', 3748551, '-250.630707', '-3.725200', '-363.735291', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748552', 3748552, '-213.087494', '1.112077', '-382.537415', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748553', 3748553, '-255.836105', '7.531438', '-290.196289', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748554', 3748554, '-246.018097', '-2.631598', '-372.254608', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748555', 3748555, '-236.562103', '3.655112', '-396.309387', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748557', 3748557, '-203.850494', '16.277430', '-409.920593', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748559', 3748559, '-242.042892', '18.601339', '-425.242401', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748564', 3748564, '-177.168198', '14.656220', '-411.592987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748565', 3748565, '-215.900406', '16.573481', '-408.014008', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748566', 3748566, '-221.473297', '17.321730', '-412.786896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748567', 3748567, '-236.289001', '19.116409', '-424.877502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748570', 3748570, '-254.304306', '22.347059', '-449.055695', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748654', 3748654, '-205.192398', '19.296721', '-445.294189', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748657', 3748657, '-207.202301', '25.558809', '-115.343002', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748660', 3748660, '-222.657104', '20.702950', '-78.345047', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748662', 3748662, '-247.438400', '20.240339', '-67.748871', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748663', 3748663, '-230.727005', '26.739140', '-98.761307', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748670', 3748670, '-271.961609', '27.969740', '-98.954803', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748672', 3748672, '-271.661285', '23.599831', '-70.352722', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748674', 3748674, '-231.617004', '30.324150', '-133.076996', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748726', 3748726, '33.854542', '6.542700', '-211.889801', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748728', 3748728, '55.167561', '0.798945', '-193.606598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748729', 3748729, '69.255318', '0.046956', '-152.350906', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748730', 3748730, '10.055020', '5.968488', '-132.156097', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123602, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748732', 3748732, '50.175282', '14.921620', '-128.489700', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748734', 3748734, '76.929573', '3.883048', '-205.706406', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748736', 3748736, '79.198738', '3.548813', '-202.087204', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748737', 3748737, '106.461601', '1.818933', '-204.985199', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748738', 3748738, '140.354401', '0.554754', '-232.614304', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122242, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748739', 3748739, '111.391197', '0.776695', '-238.240707', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748749', 3748749, '145.884293', '-1.750025', '-212.434097', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3748752', 3748752, '136.108398', '-1.750136', '-190.396194', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3748753', 3748753, '149.821106', '-1.750019', '-214.231293', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54188, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3748755', 3748755, '84.854179', '-1.750136', '-139.436905', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53916, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3748758', 3748758, '72.003227', '-1.750024', '-104.510002', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53644, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3748760', 3748760, '68.467178', '-1.754834', '-99.778793', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53372, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3748763', 3748763, '78.693497', '-3.269199', '-32.994751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53100, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3748765', 3748765, '68.721947', '-2.620518', '-49.466751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52828, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3748770', 3748770, '166.277496', '-1.754834', '-241.382507', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52556, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3748772', 3748772, '187.884293', '-1.754834', '-278.858704', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52284, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3748773', 3748773, '194.766006', '-1.750224', '-280.991394', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52012, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3748775', 3748775, '71.615707', '-3.621419', '-26.438259', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51740, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3748850', 3748850, '12.774460', '-6.750232', '111.257401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90726, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3748852', 3748852, '9.592600', '-6.750232', '107.837402', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92086, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3748876', 3748876, '11.520510', '1.022307', '-111.986000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748879', 3748879, '-129.259201', '2.487174', '-193.926895', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118452, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3748904', 3748904, '176.132706', '4.710299', '-187.304703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748905', 3748905, '158.969894', '2.732193', '-177.146698', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748906', 3748906, '191.563705', '2.176362', '-156.220703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748907', 3748907, '196.388000', '3.012704', '-160.659393', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748908', 3748908, '239.061295', '5.923066', '-187.296494', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748910', 3748910, '269.473785', '9.044052', '-198.574799', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748913', 3748913, '263.650208', '11.289570', '-202.903397', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748915', 3748915, '227.710297', '-1.205510', '-113.847603', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748923', 3748923, '231.280899', '-1.632762', '-106.462196', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748926', 3748926, '200.610306', '-1.358100', '-103.471497', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748930', 3748930, '207.171707', '-1.144474', '-84.519768', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748932', 3748932, '173.937500', '1.205416', '-81.071228', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73736, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748934', 3748934, '148.809097', '3.036994', '-133.465897', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73464, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748937', 3748937, '169.787094', '0.045730', '-115.892303', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73192, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748941', 3748941, '145.535507', '4.850001', '-129.478104', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72920, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748942', 3748942, '119.305603', '3.909301', '-132.622696', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72648, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748943', 3748943, '109.916496', '3.556486', '-129.240601', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748944', 3748944, '224.505905', '-2.975556', '-56.412651', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72104, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748945', 3748945, '175.332993', '6.489766', '-41.243931', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748946', 3748946, '186.449905', '4.165666', '-17.319040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748947', 3748947, '281.825989', '-9.100459', '2.598387', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71832, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748949', 3748949, '288.471710', '-11.734230', '-3.952133', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71560, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748950', 3748950, '278.492310', '-14.114640', '-37.338871', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71288, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748953', 3748953, '324.544098', '-13.504280', '-33.615669', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748954', 3748954, '329.030212', '-13.565320', '-29.770399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748955', 3748955, '356.861603', '-15.283880', '-44.573921', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748956', 3748956, '347.890411', '-17.502140', '8.102493', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748962', 3748962, '150.469193', '19.150021', '-76.524040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748963', 3748963, '146.044098', '19.581060', '-88.241302', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748964', 3748964, '117.082397', '20.462299', '-97.062683', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748967', 3748967, '142.873703', '16.403400', '-46.097549', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748968', 3748968, '400.991608', '-12.783140', '-32.000870', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748969', 3748969, '366.536896', '-16.189871', '-58.854092', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748970', 3748970, '415.234192', '-14.170130', '-62.547722', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748972', 3748972, '432.695709', '-16.065250', '-112.148399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748974', 3748974, '436.729889', '-14.846640', '-118.392700', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68840, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748976', 3748976, '441.284088', '-15.576560', '-96.939430', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68568, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748980', 3748980, '384.960602', '-17.809891', '-96.639427', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68296, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748986', 3748986, '389.761108', '-17.502140', '-101.701401', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3748990', 3748990, '391.353210', '-17.460060', '-135.489304', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749004', 3749004, '172.667496', '7.527369', '-42.066410', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749018', 3749018, '187.591705', '4.184689', '-15.078180', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749020', 3749020, '183.022797', '5.398401', '-15.566580', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749031', 3749031, '202.090393', '0.810960', '-15.619060', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749036', 3749036, '199.896393', '1.465439', '-15.630680', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749047', 3749047, '143.173706', '15.773830', '-43.893311', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749053', 3749053, '153.171097', '16.202070', '-56.630402', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749059', 3749059, '151.803696', '19.216890', '-78.848953', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749061', 3749061, '153.666504', '19.040461', '-76.088043', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749071', 3749071, '144.894501', '19.988741', '-106.295998', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749073', 3749073, '142.185501', '20.171949', '-108.059097', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749080', 3749080, '115.432404', '20.583151', '-99.077271', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62886, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(253, 'e0019', 'bnpc3749083', 3749083, '114.653099', '20.724030', '-96.549553', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749168', 3749168, '312.979492', '-19.718349', '-75.451233', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62252, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749170', 3749170, '261.730194', '-19.718349', '-82.128349', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61980, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749172', 3749172, '274.699402', '-19.718349', '-117.167198', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61708, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749173', 3749173, '291.363098', '-19.718349', '-136.065598', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749174', 3749174, '342.729797', '-19.718349', '-131.071106', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749175', 3749175, '353.724091', '-19.718349', '-85.215424', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749176', 3749176, '333.410095', '-19.718349', '-136.385498', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60620, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749177', 3749177, '319.949188', '-19.718349', '-179.156403', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60348, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749178', 3749178, '308.689301', '-19.718349', '-60.698299', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60142, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749180', 3749180, '311.695190', '-19.718349', '-58.346031', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59870, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749183', 3749183, '330.312012', '-19.729959', '-70.267838', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59598, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749186', 3749186, '296.119995', '-19.718349', '-90.360474', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59326, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749187', 3749187, '293.415802', '-19.718349', '-93.414520', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59054, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749188', 3749188, '290.216614', '-19.718349', '-87.193253', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58782, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749189', 3749189, '258.481415', '-19.718349', '-104.208000', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58510, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749190', 3749190, '252.984802', '-19.718349', '-103.640099', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58238, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749191', 3749191, '257.907715', '-19.718349', '-125.303101', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57966, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749192', 3749192, '286.451904', '-19.718349', '-129.699097', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57694, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749193', 3749193, '282.557892', '-19.718349', '-147.388199', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57422, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749195', 3749195, '310.290314', '-19.718349', '-172.318802', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57150, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749196', 3749196, '313.118591', '-19.718349', '-169.401993', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56878, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749197', 3749197, '310.587006', '-19.718349', '-142.173401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56606, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749199', 3749199, '350.892212', '-19.718349', '-150.816696', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56334, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749200', 3749200, '368.409302', '-19.718349', '-144.276596', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56062, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749201', 3749201, '364.918213', '-19.718349', '-140.378006', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55790, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749202', 3749202, '359.256592', '-19.718349', '-116.557503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55518, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749203', 3749203, '346.291199', '-19.718349', '-105.267899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55246, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749204', 3749204, '371.776215', '-19.718349', '-104.967796', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54974, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(253, 'e0019', 'bnpc3749211', 3749211, '123.998703', '28.662880', '-17.350370', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51474, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(253, 'e0019', 'bnpc3749213', 3749213, '121.332397', '28.612700', '-23.583090', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51208, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(253, 'e0019', 'bnpc3749215', 3749215, '161.791397', '28.213881', '-14.786040', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50936, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(253, 'e0019', 'bnpc3749218', 3749218, '137.021805', '28.624880', '-23.498341', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50658, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(253, 'e0019', 'bnpc3749219', 3749219, '107.272903', '29.216610', '-36.643101', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749222', 3749222, '149.401093', '28.610600', '-15.610050', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50120, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(253, 'e0019', 'bnpc3749223', 3749223, '148.790604', '28.610600', '-15.152280', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49842, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(253, 'e0019', 'bnpc3749225', 3749225, '122.827698', '28.633169', '-37.359280', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749226', 3749226, '104.128304', '29.031771', '-49.110481', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49304, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(253, 'e0019', 'bnpc3749235', 3749235, '93.149368', '29.525270', '-84.964371', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749239', 3749239, '67.895287', '30.429380', '-70.394157', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749240', 3749240, '65.047180', '30.255060', '-77.079674', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749241', 3749241, '44.682369', '28.535789', '-84.546478', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749242', 3749242, '66.806038', '29.155720', '-109.342300', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749245', 3749245, '204.538101', '7.350389', '-181.293304', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749246', 3749246, '174.853104', '5.172761', '-202.929794', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749247', 3749247, '263.069611', '8.545942', '-196.205307', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749252', 3749252, '231.435593', '1.119558', '-165.006302', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749253', 3749253, '173.375305', '2.771811', '-168.286102', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749255', 3749255, '157.126694', '3.796749', '-121.347397', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749257', 3749257, '115.770103', '4.592918', '-127.306099', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749275', 3749275, '161.730301', '-1.754834', '-239.398804', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749277', 3749277, '185.534393', '-1.754834', '-265.705414', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749279', 3749279, '210.539902', '-1.750040', '-309.299408', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749284', 3749284, '211.839401', '-1.750030', '-306.582611', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749290', 3749290, '143.733002', '-1.750026', '-193.558701', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749297', 3749297, '144.345306', '0.955883', '-165.104004', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749310', 3749310, '216.777496', '0.994229', '-97.056053', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749312', 3749312, '169.933899', '2.409006', '-84.351593', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749314', 3749314, '219.378906', '-3.433327', '-46.921539', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749321', 3749321, '277.040192', '-7.191899', '-0.686294', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749327', 3749327, '331.429810', '-13.937110', '-37.954071', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749332', 3749332, '384.322205', '-19.359289', '-5.627488', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749336', 3749336, '382.853088', '-20.412571', '-0.889114', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749338', 3749338, '359.951508', '-16.405090', '-60.846310', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749343', 3749343, '451.404602', '-11.420970', '-118.535599', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749351', 3749351, '384.249603', '-17.667879', '-125.562897', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749357', 3749357, '297.316589', '-19.718349', '-70.108559', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749359', 3749359, '289.558197', '-19.718349', '-103.097801', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749362', 3749362, '240.405807', '-18.104980', '-89.540627', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749364', 3749364, '283.065491', '-19.718349', '-125.167999', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749367', 3749367, '267.129913', '-18.000000', '-169.891296', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749369', 3749369, '264.685486', '-18.000000', '-168.247101', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749370', 3749370, '316.532898', '-19.718349', '-157.003693', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749371', 3749371, '353.619995', '-19.718349', '-109.615997', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749373', 3749373, '339.318695', '-19.718349', '-85.941147', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749376', 3749376, '165.671799', '11.656820', '-52.356880', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749380', 3749380, '172.813995', '6.716133', '-26.881840', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749388', 3749388, '191.772202', '-0.202088', '-35.283329', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749390', 3749390, '136.510300', '18.512560', '-57.480461', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749392', 3749392, '133.468002', '19.606770', '-81.872276', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749396', 3749396, '128.184402', '20.219101', '-102.714104', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749397', 3749397, '116.821999', '23.443171', '-63.701351', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749399', 3749399, '86.653412', '30.354231', '-83.224442', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749402', 3749402, '86.953407', '29.540970', '-103.119400', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3749404', 3749404, '58.939091', '30.914900', '-69.530090', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3751223', 3751223, '27.075630', '19.825541', '-258.167999', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79592, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(253, 'e0019', 'bnpc3751224', 3751224, '25.641180', '19.827999', '-262.593201', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80674, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(253, 'e0019', 'bnpc3751325', 3751325, '-86.401451', '-0.314426', '-202.187195', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3751326', 3751326, '-89.241432', '-0.377375', '-203.793503', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3751327', 3751327, '-54.347431', '10.746100', '-226.743500', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3751329', 3751329, '14.423480', '6.148088', '-236.752106', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3751331', 3751331, '-1.214684', '-0.950067', '-207.831497', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3751332', 3751332, '-12.497190', '11.337410', '-273.731598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3751350', 3751350, '12.680810', '9.512568', '-296.489288', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3751353', 3751353, '-5.330978', '16.424870', '-314.262909', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3751354', 3751354, '-110.742599', '-1.464606', '-173.727402', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3782203', 3782203, '-10.133880', '-3.109667', '-92.309822', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3782206', 3782206, '-5.820518', '-2.317021', '-88.935387', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3782208', 3782208, '-16.094000', '-4.734633', '-82.939987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3782210', 3782210, '-16.866150', '-3.490384', '-51.955761', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3782566', 3782566, '219.465393', '20.017179', '421.855988', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177456, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3782567', 3782567, '215.101303', '19.951290', '418.621094', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177184, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3782571', 3782571, '276.496490', '14.358410', '504.494598', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176912, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3782572', 3782572, '274.299194', '14.525580', '502.022614', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170662, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3782576', 3782576, '223.506195', '14.214930', '465.799103', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176640, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3782578', 3782578, '228.904907', '14.555940', '463.312805', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176368, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3782579', 3782579, '240.208405', '14.734180', '473.802307', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176096, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3782581', 3782581, '203.301804', '12.792270', '451.523285', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175824, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc3782585', 3782585, '230.220703', '14.451260', '471.293915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173926, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(253, 'e0019', 'bnpc4057631', 4057631, '-117.387497', '15.659340', '316.159485', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22414, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(253, 'e0019', 'bnpc4057642', 4057642, '32.356911', '15.912200', '575.715027', 797, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22148, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(253, 'e0019', 'bnpc4057659', 4057659, '-26.174540', '-2.337916', '-130.147400', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21882, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(253, 'e0019', 'bnpc4057662', 4057662, '7.597365', '-2.072273', '-178.519897', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21610, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(253, 'e0019', 'bnpc4621827', 4621827, '-293.653107', '18.424400', '-380.671600', 2770, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22760, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926308', 3926308, '376.795502', '84.142036', '107.708504', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154812, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926338', 3926338, '375.147491', '84.022469', '106.274200', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154540, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926351', 3926351, '405.431488', '88.082703', '99.945763', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154268, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926354', 3926354, '409.251190', '88.844963', '97.093102', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153996, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926358', 3926358, '378.901215', '84.631958', '104.412598', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153724, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926365', 3926365, '407.170990', '88.157288', '101.532700', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153452, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926371', 3926371, '392.339203', '86.636040', '181.099197', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153180, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926372', 3926372, '396.068207', '86.811653', '179.238007', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152908, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926373', 3926373, '393.988495', '86.897270', '182.527893', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152636, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926381', 3926381, '411.703613', '88.297813', '162.003098', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152364, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926382', 3926382, '410.055603', '88.039360', '160.599197', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152092, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926386', 3926386, '394.559601', '85.026733', '153.758499', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151820, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926391', 3926391, '410.144012', '88.683350', '189.622894', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151548, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926417', 3926417, '417.375885', '87.742783', '131.569901', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926439', 3926439, '345.812805', '76.219322', '212.725998', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926440', 3926440, '344.548309', '75.438789', '207.299393', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926441', 3926441, '348.012512', '76.039337', '211.108795', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926464', 3926464, '356.043793', '74.743179', '151.343094', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926465', 3926465, '352.759186', '74.743149', '149.888596', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926467', 3926467, '367.410095', '80.423607', '133.246597', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926481', 3926481, '353.852814', '80.577820', '117.643204', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926484', 3926484, '351.360199', '79.902428', '120.108704', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926487', 3926487, '355.985199', '80.082771', '121.892502', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926490', 3926490, '373.090698', '84.220062', '99.076653', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926522', 3926522, '406.246887', '86.759048', '111.752296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926526', 3926526, '325.732788', '66.676826', '171.598495', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926537', 3926537, '328.927612', '68.512451', '191.103607', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926539', 3926539, '326.017792', '67.722847', '188.876999', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926541', 3926541, '342.366608', '72.409378', '178.265305', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926543', 3926543, '340.851105', '72.117889', '182.389893', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926545', 3926545, '339.368805', '71.684380', '180.432800', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926547', 3926547, '329.747711', '68.403687', '149.117706', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926548', 3926548, '327.065491', '67.092491', '170.001404', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926552', 3926552, '319.223511', '67.064529', '203.825699', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926557', 3926557, '307.153687', '65.648338', '183.776306', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926564', 3926564, '315.245087', '65.419243', '134.686005', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926565', 3926565, '313.912415', '65.218117', '136.283096', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926572', 3926572, '310.648285', '65.000732', '131.124893', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926578', 3926578, '301.380890', '64.171013', '142.769608', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926601', 3926601, '261.503296', '53.867599', '124.334000', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926644', 3926644, '295.185699', '60.044201', '169.695496', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926653', 3926653, '293.079987', '59.372799', '172.716797', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132792, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926658', 3926658, '296.070709', '60.135750', '174.090103', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133064, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926660', 3926660, '257.465393', '54.488819', '176.080399', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134152, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926665', 3926665, '279.163788', '55.806110', '134.904999', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133336, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926667', 3926667, '277.598999', '55.429420', '137.030197', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131976, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926670', 3926670, '269.266907', '56.155140', '106.412498', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132520, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926677', 3926677, '260.700409', '54.871441', '108.842598', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132248, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926683', 3926683, '261.666290', '55.104469', '106.238503', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134696, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926716', 3926716, '257.191193', '55.945511', '220.022095', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926717', 3926717, '258.076202', '55.964081', '224.416702', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926718', 3926718, '255.085403', '55.855000', '223.043396', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134424, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926733', 3926733, '243.941101', '55.670811', '235.884598', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133608, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926750', 3926750, '258.564087', '54.697350', '178.949097', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133880, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926769', 3926769, '413.944397', '89.309250', '158.034897', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148018, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926800', 3926800, '407.416199', '87.761620', '175.019302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147746, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926801', 3926801, '406.609985', '87.629570', '176.598602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147474, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926804', 3926804, '392.991699', '87.757637', '191.946198', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147202, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926805', 3926805, '387.339111', '84.919083', '134.093994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146930, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926808', 3926808, '354.084900', '81.902718', '100.424797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146658, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926810', 3926810, '422.356903', '89.050278', '114.571297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146386, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926812', 3926812, '421.045013', '88.772667', '115.796600', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146114, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926815', 3926815, '403.283386', '86.085800', '113.897499', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145842, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926821', 3926821, '370.507996', '82.400093', '117.661697', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145570, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926825', 3926825, '367.792389', '81.913681', '118.807602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926829', 3926829, '360.534485', '74.935432', '148.181396', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145026, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926837', 3926837, '378.317413', '79.842934', '162.415802', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144754, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926847', 3926847, '376.053986', '78.965889', '164.143707', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926848', 3926848, '369.552399', '77.052002', '192.962997', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144210, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926854', 3926854, '346.371490', '75.720573', '208.895203', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143938, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926858', 3926858, '363.167694', '77.767464', '219.355392', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143666, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926860', 3926860, '371.780212', '77.339363', '194.397400', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926868', 3926868, '369.826996', '77.102577', '196.960907', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143116, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3926883', 3926883, '344.452301', '72.995819', '181.059906', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926890', 3926890, '328.520813', '67.640129', '172.850403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926891', 3926891, '311.090302', '65.890671', '189.672195', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926896', 3926896, '309.819885', '64.657661', '145.602493', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926898', 3926898, '328.420197', '67.645653', '147.350800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141762, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926899', 3926899, '317.188690', '65.970573', '128.639603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141490, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926902', 3926902, '318.570007', '65.981651', '129.865601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141218, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926912', 3926912, '275.386810', '55.162628', '134.854202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140946, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926915', 3926915, '264.207703', '55.231709', '109.226501', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140674, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926917', 3926917, '260.486694', '54.760460', '176.782303', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926928', 3926928, '254.790497', '55.815201', '226.529297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926929', 3926929, '242.801407', '55.684689', '237.647995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3926930', 3926930, '241.351593', '55.604931', '235.930405', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139586, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927149', 3927149, '27.696630', '50.949940', '203.695496', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130588, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927150', 3927150, '15.640450', '53.696449', '252.796204', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927151', 3927151, '-61.356571', '57.144989', '351.064209', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927152', 3927152, '173.737106', '54.352638', '226.520096', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130316, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927153', 3927153, '183.533401', '54.215019', '225.513000', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130044, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927154', 3927154, '99.898514', '49.255638', '188.131607', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129772, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927156', 3927156, '128.718903', '50.518780', '195.651794', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129500, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927158', 3927158, '115.929298', '48.682110', '176.508408', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129228, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927162', 3927162, '108.506699', '47.551449', '175.644897', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128956, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927163', 3927163, '32.919010', '50.990910', '198.741592', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128684, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927164', 3927164, '31.915621', '47.200191', '163.456696', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128412, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927165', 3927165, '65.425613', '51.619080', '219.897705', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128140, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927166', 3927166, '70.552643', '50.994259', '212.756500', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127868, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927168', 3927168, '60.756340', '51.112720', '213.427902', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127596, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927169', 3927169, '1.910973', '44.523701', '152.350204', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127324, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927170', 3927170, '6.149339', '47.714909', '180.407394', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127052, 6, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(255, 'e0021', 'bnpc3927171', 3927171, '175.777206', '50.666649', '65.453201', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126780, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927172', 3927172, '170.246994', '50.547649', '69.196983', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126508, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927174', 3927174, '240.923996', '51.465309', '71.654427', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126236, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927175', 3927175, '249.684906', '51.468151', '78.309212', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125964, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927176', 3927176, '255.227203', '51.199020', '67.745193', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125692, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927178', 3927178, '253.462494', '51.509102', '19.847630', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125420, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927179', 3927179, '201.886398', '51.465870', '22.835030', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125148, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927182', 3927182, '111.507797', '59.949421', '283.252502', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927185', 3927185, '98.313828', '59.311771', '302.754211', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124610, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927186', 3927186, '110.092697', '60.098831', '287.907593', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124338, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927187', 3927187, '128.731201', '60.436340', '298.911407', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124066, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927188', 3927188, '83.256920', '55.503361', '283.185394', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123794, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927189', 3927189, '91.296028', '55.644341', '266.384308', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123522, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927190', 3927190, '82.101891', '55.164581', '275.573212', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123250, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927191', 3927191, '115.385597', '59.492580', '287.027496', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122978, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927192', 3927192, '178.888199', '53.984070', '219.121597', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927194', 3927194, '131.716507', '57.952309', '278.151306', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122434, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927197', 3927197, '-22.751249', '56.290482', '304.371613', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927200', 3927200, '-18.722870', '56.046341', '317.952209', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927201', 3927201, '-14.837500', '56.125702', '314.598206', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927203', 3927203, '8.417153', '55.567989', '320.395599', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927204', 3927204, '20.042080', '57.618370', '350.774109', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927205', 3927205, '26.145691', '57.755730', '356.084290', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927206', 3927206, '22.476490', '58.182598', '359.426208', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927209', 3927209, '49.869179', '57.280979', '352.553101', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120264, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927211', 3927211, '21.927170', '54.917171', '311.085602', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119992, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927213', 3927213, '25.229980', '54.764481', '306.841705', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119720, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927218', 3927218, '-21.114670', '53.540970', '264.998993', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119448, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927220', 3927220, '-5.313622', '54.065811', '256.266205', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119176, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927221', 3927221, '-23.334700', '53.561840', '260.473511', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118904, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927222', 3927222, '5.204782', '54.084610', '236.687195', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118632, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927224', 3927224, '8.561768', '54.060150', '238.457199', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118360, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927226', 3927226, '-8.821225', '50.881729', '201.391602', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927229', 3927229, '-6.608897', '50.901840', '203.446304', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927230', 3927230, '-18.636290', '51.201260', '221.737701', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927231', 3927231, '-35.276581', '49.465691', '214.633698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927236', 3927236, '-11.411140', '50.721111', '205.313904', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927239', 3927239, '-38.801102', '49.907009', '218.520004', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927240', 3927240, '6.279222', '50.975891', '212.108902', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927241', 3927241, '-35.700180', '46.975208', '193.506195', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927246', 3927246, '-141.250000', '50.637089', '227.672501', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97168, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(255, 'e0021', 'bnpc3927250', 3927250, '-140.879105', '50.598660', '225.798996', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97440, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(255, 'e0021', 'bnpc3927252', 3927252, '-133.580704', '50.071732', '219.991806', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96624, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(255, 'e0021', 'bnpc3927255', 3927255, '-132.305801', '49.998920', '219.510193', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96896, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(255, 'e0021', 'bnpc3927256', 3927256, '-130.444595', '50.881111', '227.569397', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98256, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(255, 'e0021', 'bnpc3927333', 3927333, '-125.582298', '49.131699', '207.139694', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98528, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(255, 'e0021', 'bnpc3927334', 3927334, '-153.431595', '49.478130', '221.025101', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97712, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(255, 'e0021', 'bnpc3927339', 3927339, '-121.896698', '49.490898', '212.546097', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97984, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(255, 'e0021', 'bnpc3927343', 3927343, '-45.193470', '62.185181', '363.152100', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115912, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927345', 3927345, '-79.881020', '55.100281', '361.379395', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115640, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927346', 3927346, '-83.391731', '54.977058', '365.606995', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115368, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927347', 3927347, '-54.476139', '65.540337', '392.423004', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115096, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927349', 3927349, '-51.241718', '65.802643', '390.513214', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114824, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927352', 3927352, '-1.297064', '68.802879', '377.553894', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114552, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927353', 3927353, '2.885915', '68.536720', '372.786896', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114280, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927354', 3927354, '-109.941299', '48.966148', '357.015289', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114008, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927356', 3927356, '-125.981003', '51.453751', '311.388885', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113736, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927357', 3927357, '-130.879105', '51.717690', '309.097412', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113464, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927358', 3927358, '-131.425293', '51.394489', '312.798096', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113192, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927359', 3927359, '-118.158401', '53.802921', '271.080597', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112920, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927360', 3927360, '-115.932800', '53.461861', '267.407501', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112648, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927361', 3927361, '-95.500458', '52.359612', '245.109894', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112376, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927364', 3927364, '-138.997604', '45.849251', '391.546814', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112104, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927366', 3927366, '-131.347107', '47.246719', '398.411713', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111832, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927367', 3927367, '-141.612305', '45.939159', '395.010193', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111560, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927368', 3927368, '-175.499496', '39.137119', '393.656799', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111288, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927370', 3927370, '-156.301407', '40.866211', '345.757813', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111016, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927371', 3927371, '-162.614700', '39.951931', '342.568695', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110744, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927373', 3927373, '-157.533707', '40.302212', '350.198212', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110472, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927375', 3927375, '28.610620', '55.466499', '328.511414', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927379', 3927379, '37.804600', '58.140781', '363.465912', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927382', 3927382, '32.272758', '55.471779', '329.481689', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927384', 3927384, '6.784028', '54.128811', '253.378204', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927387', 3927387, '-20.690559', '53.685650', '251.224396', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927388', 3927388, '45.252361', '48.095360', '180.655197', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927394', 3927394, '69.706589', '56.137440', '318.697693', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927398', 3927398, '104.150002', '56.064339', '263.215607', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927403', 3927403, '156.664307', '54.703541', '236.652100', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927404', 3927404, '44.327412', '52.658840', '244.800400', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927408', 3927408, '-26.490999', '44.862301', '177.075394', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927413', 3927413, '152.993607', '50.116879', '72.775887', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927414', 3927414, '220.945801', '50.242329', '4.633916', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927417', 3927417, '219.309296', '49.916939', '6.135899', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927424', 3927424, '-14.541890', '67.307503', '362.722107', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927425', 3927425, '-65.254753', '64.638290', '395.066498', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927431', 3927431, '-117.631798', '47.959061', '380.300507', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927432', 3927432, '-172.127304', '40.469398', '398.069092', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927433', 3927433, '-189.330597', '36.909599', '341.340210', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927435', 3927435, '-140.326401', '45.201859', '337.794006', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927436', 3927436, '-110.657700', '52.097160', '290.219696', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927437', 3927437, '-145.151993', '56.686409', '288.573792', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927730', 3927730, '120.638901', '17.207850', '96.590080', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104234, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927734', 3927734, '123.778503', '17.206751', '88.372543', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103962, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927735', 3927735, '128.407593', '16.559820', '98.111130', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103690, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927736', 3927736, '78.465424', '21.109140', '92.377060', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103418, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927737', 3927737, '100.497498', '16.583630', '126.907097', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103146, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927739', 3927739, '-25.650459', '22.079760', '105.851799', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102874, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927742', 3927742, '-20.340321', '21.438881', '108.873100', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102602, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927745', 3927745, '78.228539', '22.345881', '63.241020', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102330, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927746', 3927746, '86.209900', '22.246161', '56.213009', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102058, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927748', 3927748, '127.763702', '25.986071', '49.240810', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101786, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927750', 3927750, '70.167282', '16.789490', '139.201706', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927760', 3927760, '95.818649', '15.165110', '168.324600', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927771', 3927771, '96.919411', '15.051520', '166.152405', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927776', 3927776, '126.695602', '15.793040', '128.007904', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100692, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927784', 3927784, '58.284618', '22.640039', '59.899170', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100420, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927789', 3927789, '14.317140', '20.384331', '98.519272', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100148, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927870', 3927870, '123.073700', '18.194111', '18.950350', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99882, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927874', 3927874, '164.476593', '18.193741', '-3.313263', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99610, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927875', 3927875, '161.316605', '18.193520', '6.161218', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99338, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927880', 3927880, '179.117905', '18.193710', '3.609651', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99066, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3927883', 3927883, '103.653801', '19.374020', '93.697792', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98788, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927890', 3927890, '122.968102', '56.939259', '-36.773190', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95074, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927910', 3927910, '123.268097', '55.511478', '-56.716091', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94802, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927911', 3927911, '129.320206', '55.924271', '-51.987530', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927912', 3927912, '154.660400', '55.357391', '-41.330311', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94258, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927919', 3927919, '189.631897', '50.414280', '-25.954390', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93986, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927923', 3927923, '183.639099', '52.017891', '-84.284233', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93714, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927925', 3927925, '153.890793', '52.284729', '-77.195427', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927934', 3927934, '191.650803', '52.446129', '-77.491463', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93170, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3927952', 3927952, '199.298004', '52.109509', '-110.399101', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92898, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928005', 3928005, '249.801102', '63.548111', '-129.309692', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92626, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928007', 3928007, '233.766098', '63.274509', '-115.512901', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92354, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928013', 3928013, '75.352249', '58.717110', '35.270901', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92088, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928021', 3928021, '86.804192', '58.856110', '31.969290', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91816, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928022', 3928022, '84.852730', '58.771778', '28.421551', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91544, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928152', 3928152, '58.122269', '59.502029', '1.331460', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928154', 3928154, '99.899971', '53.697948', '21.844801', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928157', 3928157, '28.599730', '59.945721', '27.529560', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928160', 3928160, '25.558041', '59.878441', '30.178419', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928161', 3928161, '14.973360', '62.347179', '18.278700', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928165', 3928165, '6.374675', '59.338470', '42.109829', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928314', 3928314, '319.607910', '63.456242', '-187.854004', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928315', 3928315, '318.191406', '63.387531', '-186.084000', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928317', 3928317, '311.617798', '62.671181', '-255.173492', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928319', 3928319, '306.148010', '62.678329', '-255.381195', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928320', 3928320, '310.641205', '62.731220', '-257.553894', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928321', 3928321, '288.386597', '62.264820', '-212.191498', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928323', 3928323, '281.432892', '62.276360', '-175.724792', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928324', 3928324, '294.345215', '62.536160', '-229.177994', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87700, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928326', 3928326, '324.076385', '63.986629', '-248.880295', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87428, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928327', 3928327, '294.358307', '62.940811', '-234.107498', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87156, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928328', 3928328, '298.334686', '62.391232', '-190.659805', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86884, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928329', 3928329, '288.392303', '62.534901', '-229.239197', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86612, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928331', 3928331, '298.725800', '62.141201', '-195.515305', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86340, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928332', 3928332, '265.782898', '63.307018', '-219.574600', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86068, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928335', 3928335, '316.656586', '63.109501', '-200.695007', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85796, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928360', 3928360, '-105.641998', '14.974850', '-248.369598', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928364', 3928364, '-110.496902', '14.974860', '-245.931396', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928366', 3928366, '-96.993607', '14.974790', '-263.062500', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928370', 3928370, '-134.325607', '14.974520', '-268.556091', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928372', 3928372, '-137.674500', '14.974520', '-281.872009', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84484, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928373', 3928373, '-140.064697', '14.974790', '-279.290314', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84212, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928374', 3928374, '-183.464493', '14.974900', '-240.699707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83940, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928376', 3928376, '-180.748398', '14.974890', '-244.758606', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83668, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928378', 3928378, '-186.089096', '14.974890', '-243.232697', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83396, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928379', 3928379, '-147.631104', '14.969050', '-274.158905', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83124, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928383', 3928383, '-224.475494', '14.969050', '-348.714386', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928386', 3928386, '-209.268402', '14.974940', '-344.686401', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928387', 3928387, '-206.509598', '14.974940', '-340.343994', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928388', 3928388, '-218.735199', '14.974420', '-379.859985', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928389', 3928389, '-223.490601', '14.974420', '-382.159912', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928391', 3928391, '-258.752411', '14.974870', '-325.427490', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928392', 3928392, '-264.535492', '14.974880', '-327.510101', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928394', 3928394, '-281.808807', '14.974920', '-208.237701', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928519', 3928519, '-253.182007', '14.974930', '-267.783295', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928520', 3928520, '-255.348694', '14.974930', '-265.372406', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928523', 3928523, '-283.110809', '14.974940', '-291.602112', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928524', 3928524, '-282.531006', '14.974940', '-294.806488', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928525', 3928525, '-286.528809', '14.974940', '-293.707794', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928527', 3928527, '-298.754211', '14.974940', '-221.860397', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928528', 3928528, '-295.336212', '14.974940', '-225.644699', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928531', 3928531, '-217.611801', '14.974770', '-304.205109', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928534', 3928534, '-250.701904', '14.974930', '-243.696503', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928783', 3928783, '-182.680801', '14.974910', '-276.838287', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78228, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928784', 3928784, '-170.103302', '14.974860', '-253.832504', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77956, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928788', 3928788, '-212.801102', '14.974940', '-333.462799', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928795', 3928795, '-266.258698', '15.546460', '-234.426102', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77370, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928796', 3928796, '-219.789307', '14.974930', '-267.238892', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77098, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928797', 3928797, '-285.191498', '14.974940', '-268.444397', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76826, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928798', 3928798, '-203.762299', '14.974910', '-250.822205', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76554, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928799', 3928799, '-278.737915', '14.974940', '-262.906189', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76282, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928800', 3928800, '-277.257599', '14.974940', '-267.571411', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76010, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928801', 3928801, '-256.085907', '14.974930', '-289.433411', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75738, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928802', 3928802, '-224.033401', '14.974930', '-264.018097', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75466, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928803', 3928803, '146.532303', '54.459400', '-51.499241', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928804', 3928804, '102.067497', '53.818520', '-56.137989', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928805', 3928805, '78.182693', '57.105598', '-30.773781', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928806', 3928806, '76.842499', '57.456390', '-29.140619', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928807', 3928807, '86.645050', '57.952759', '6.113357', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928808', 3928808, '22.705441', '61.685020', '19.656160', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928809', 3928809, '10.100620', '59.973881', '35.668980', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928810', 3928810, '166.031296', '50.849098', '-100.283997', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928811', 3928811, '186.388901', '51.621220', '-160.082397', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928812', 3928812, '238.300095', '63.248600', '-122.148499', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928813', 3928813, '184.099701', '52.311790', '-57.823231', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928814', 3928814, '179.929794', '52.482571', '-55.958038', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928815', 3928815, '142.056702', '53.278130', '-130.908096', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928816', 3928816, '268.193207', '63.254810', '-222.082703', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928822', 3928822, '302.263489', '62.065739', '-193.318497', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928825', 3928825, '-123.838997', '14.974520', '-263.543488', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928831', 3928831, '-176.301498', '14.974870', '-250.083099', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928832', 3928832, '-144.984497', '14.974770', '-287.996185', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928833', 3928833, '-185.416595', '14.974910', '-280.625488', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928834', 3928834, '-244.850296', '14.974930', '-244.881104', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928835', 3928835, '-244.690704', '15.599670', '-289.695801', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928836', 3928836, '-287.953003', '14.974940', '-254.367096', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928837', 3928837, '-288.296387', '14.974940', '-221.930298', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928838', 3928838, '-242.570297', '14.974810', '-341.476898', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928839', 3928839, '-294.252502', '14.974850', '-321.210785', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928840', 3928840, '-213.266998', '14.974420', '-364.787292', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928841', 3928841, '-196.042206', '14.974940', '-319.922791', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928894', 3928894, '-427.363312', '23.320280', '-482.444489', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67692, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928895', 3928895, '-414.236694', '24.246580', '-480.094604', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67420, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928896', 3928896, '-399.069214', '24.662140', '-486.445496', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67148, 5, 0, 0, 0, 29, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(255, 'e0021', 'bnpc3928897', 3928897, '-426.661407', '23.254721', '-480.735504', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66876, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928898', 3928898, '-385.109589', '24.366320', '-508.717590', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66604, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928899', 3928899, '-383.622498', '24.283310', '-510.090912', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66332, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928900', 3928900, '-397.867401', '24.621420', '-483.869110', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66060, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928902', 3928902, '-395.742706', '24.800859', '-486.720215', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65788, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928905', 3928905, '-372.182800', '14.915100', '-682.187012', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65438, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928915', 3928915, '-343.109711', '14.951240', '-708.646729', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65166, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928916', 3928916, '-336.488098', '15.011050', '-702.973022', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64894, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928917', 3928917, '-342.475098', '14.886180', '-699.100403', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64622, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928918', 3928918, '-346.725800', '15.000050', '-648.932983', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64350, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928919', 3928919, '-360.611603', '15.143860', '-728.342285', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64078, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928920', 3928920, '-369.109985', '17.086229', '-625.858582', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63806, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928921', 3928921, '-368.551208', '14.932670', '-677.304016', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63534, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928922', 3928922, '-289.976898', '15.036210', '-766.856018', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928923', 3928923, '-329.499603', '13.228890', '-734.741028', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63074, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928924', 3928924, '-308.522186', '13.199010', '-741.054382', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62802, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928926', 3928926, '-330.769806', '14.999570', '-781.734985', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928927', 3928927, '-282.568512', '14.996440', '-714.049622', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928928', 3928928, '-288.031189', '15.033810', '-704.314270', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928929', 3928929, '-340.138885', '14.999570', '-765.682495', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928930', 3928930, '-375.273102', '24.057680', '-530.949707', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61364, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928931', 3928931, '-376.594513', '24.104771', '-528.967224', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61092, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928932', 3928932, '-385.780304', '23.495701', '-548.185181', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60820, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928933', 3928933, '-388.991913', '23.634899', '-551.127014', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60548, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928934', 3928934, '-380.102814', '23.848009', '-554.942871', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60276, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928935', 3928935, '-383.823486', '24.014250', '-580.209229', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60004, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928936', 3928936, '-384.645203', '22.916321', '-600.375427', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928937', 3928937, '-382.814087', '22.623171', '-601.962280', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc3928938', 3928938, '-160.448700', '15.121640', '-740.138916', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928939', 3928939, '-163.418106', '15.126450', '-733.144714', 109, 0, 0, 0, 1, 6, 0, 0, 310, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59006, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928940', 3928940, '-154.855392', '15.126450', '-735.291016', 111, 0, 0, 0, 1, 6, 0, 0, 312, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928941', 3928941, '-184.969193', '15.126200', '-748.799011', 111, 0, 0, 0, 1, 6, 0, 0, 312, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928942', 3928942, '-245.304596', '14.639280', '-736.399902', 109, 0, 0, 0, 1, 6, 0, 0, 310, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58190, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928943', 3928943, '-208.907501', '15.126340', '-737.954224', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928944', 3928944, '-177.706696', '15.126430', '-724.218872', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928945', 3928945, '129.798294', '53.983780', '241.581604', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc3928946', 3928946, '358.728088', '75.113953', '188.477402', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4057505', 4057505, '425.836700', '93.949097', '147.345596', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.500000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23758, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(255, 'e0021', 'bnpc4057530', 4057530, '246.828796', '52.038040', '143.148804', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.800000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23492, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(255, 'e0021', 'bnpc4057532', 4057532, '209.687393', '52.005539', '110.727303', 797, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23226, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(255, 'e0021', 'bnpc4057541', 4057541, '192.848099', '52.038040', '162.149994', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22942, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(255, 'e0021', 'bnpc4057553', 4057553, '108.028297', '49.844238', '-189.682297', 798, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22688, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(255, 'e0021', 'bnpc4057563', 4057563, '-82.688713', '15.467950', '-260.648010', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(255, 'e0021', 'bnpc4057572', 4057572, '-436.003998', '23.000170', '-484.805511', 791, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22150, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(255, 'e0021', 'bnpc4190759', 4190759, '-345.540588', '14.999600', '-775.448181', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57362, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(255, 'e0021', 'bnpc4267191', 4267191, '-707.860779', '67.740463', '-822.422119', 1439, 0, 0, 0, 0, 6, 0, 0, 2160, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57014, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4267197', 4267197, '-665.501282', '62.452560', '-807.101318', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56748, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4267200', 4267200, '-665.515930', '62.330540', '-804.663086', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56476, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4267201', 4267201, '-678.426575', '63.899670', '-816.868713', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56204, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4267202', 4267202, '-697.547180', '65.602493', '-808.171204', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55932, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4267203', 4267203, '-691.117920', '65.001953', '-800.783875', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55660, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4267204', 4267204, '-707.367920', '67.125900', '-815.833374', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55388, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4267205', 4267205, '-691.542114', '65.307541', '-815.101807', 434, 0, 0, 0, 0, 6, 0, 0, 2160, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4296870', 4296870, '242.172607', '52.038120', '112.691498', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20750, 8, 0, 0, 4296864, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4296871', 4296871, '246.709503', '52.038120', '124.038902', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20478, 8, 0, 0, 4296863, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4296872', 4296872, '237.477707', '52.017941', '108.608101', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20206, 8, 0, 0, 4296858, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4296873', 4296873, '244.254303', '52.038120', '162.449799', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19934, 8, 0, 0, 4296867, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4296874', 4296874, '244.299103', '52.038120', '166.290298', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19662, 8, 0, 0, 4296868, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4308066', 4308066, '-421.159485', '44.462021', '-712.226013', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54672, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(255, 'e0021', 'bnpc4308069', 4308069, '-514.378784', '51.624359', '-759.622498', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54400, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(255, 'e0021', 'bnpc4308070', 4308070, '-599.843384', '57.051182', '-784.518921', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54128, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(255, 'e0021', 'bnpc4308071', 4308071, '-656.681274', '62.116219', '-804.503601', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53856, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(255, 'e0021', 'bnpc4308072', 4308072, '-492.048187', '50.155430', '-704.991577', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53590, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(255, 'e0021', 'bnpc4308073', 4308073, '-517.815491', '50.450741', '-713.017395', 63, 0, 0, 0, 0, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53324, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(255, 'e0021', 'bnpc4308074', 4308074, '-456.002014', '51.014610', '-752.579285', 55, 0, 0, 0, 0, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53058, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(255, 'e0021', 'bnpc4308075', 4308075, '-495.700897', '50.855309', '-742.115417', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52792, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(255, 'e0021', 'bnpc4308082', 4308082, '-441.168610', '50.899448', '-705.323914', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52514, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(255, 'e0021', 'bnpc4308083', 4308083, '-518.314270', '50.452862', '-714.412109', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52224, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(255, 'e0021', 'bnpc4308084', 4308084, '-479.211487', '51.372540', '-761.453186', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51964, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(255, 'e0021', 'bnpc4308085', 4308085, '-402.046509', '49.868610', '-739.848206', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51704, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(255, 'e0021', 'bnpc4308086', 4308086, '-454.328613', '50.848831', '-752.713074', 64, 0, 0, 0, 0, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51414, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(255, 'e0021', 'bnpc4308091', 4308091, '-536.909607', '51.647678', '-772.339600', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51154, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(255, 'e0021', 'bnpc4308092', 4308092, '-566.559387', '53.197552', '-772.416382', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50870, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(255, 'e0021', 'bnpc4308093', 4308093, '-534.190186', '55.472980', '-738.915771', 62, 0, 0, 0, 1, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50592, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(255, 'e0021', 'bnpc4308094', 4308094, '-570.383728', '53.322189', '-740.588013', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(255, 'e0021', 'bnpc4308095', 4308095, '-576.705811', '54.865730', '-790.850830', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50060, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(255, 'e0021', 'bnpc4308096', 4308096, '-598.254211', '63.233582', '-755.445496', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49788, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(255, 'e0021', 'bnpc4308097', 4308097, '-601.317322', '62.751640', '-757.922485', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49510, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(255, 'e0021', 'bnpc4308098', 4308098, '-621.487915', '61.777660', '-742.445374', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49256, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(255, 'e0021', 'bnpc4308099', 4308099, '-621.786072', '58.863022', '-795.647095', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48978, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(255, 'e0021', 'bnpc4308100', 4308100, '-646.074890', '61.267559', '-800.385315', 62, 0, 0, 0, 1, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48688, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(255, 'e0021', 'bnpc4308102', 4308102, '-555.229980', '53.299679', '-753.444702', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4308104', 4308104, '-410.261810', '51.000069', '-758.953003', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48174, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4308105', 4308105, '-468.451904', '50.148300', '-723.755676', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4308109', 4308109, '-626.947510', '60.044189', '-813.534790', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47630, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4308112', 4308112, '-635.044800', '58.894249', '-777.102417', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4308164', 4308164, '-544.952698', '55.549671', '-803.447388', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47086, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(255, 'e0021', 'bnpc4510228', 4510228, '320.279907', '67.275337', '234.176498', 793, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21884, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(255, 'e0021', 'bnpc4621821', 4621821, '-91.708687', '15.670890', '217.180496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24120, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4012541', 4012541, '-499.944489', '-24.206900', '274.711395', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4012542', 4012542, '-496.735107', '-24.822651', '275.516113', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136368, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4012543', 4012543, '-498.215302', '-25.168880', '279.728394', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4012544', 4012544, '-508.450897', '-22.501459', '275.251801', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4012545', 4012545, '-500.246307', '-22.856750', '332.079407', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4012546', 4012546, '-503.241211', '-22.525490', '333.955200', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4012547', 4012547, '-490.592804', '-25.436840', '313.618591', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4012548', 4012548, '-487.602112', '-26.077709', '308.522095', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4012549', 4012549, '-487.632599', '-25.467350', '315.632813', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4012550', 4012550, '-490.196106', '-25.009581', '264.942413', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013205', 4013205, '-304.194305', '-34.543591', '294.601898', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013206', 4013206, '-304.224792', '-33.836750', '301.712585', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013207', 4013207, '-307.184998', '-34.167721', '299.698395', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013208', 4013208, '-370.016113', '-38.010269', '260.669800', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013209', 4013209, '-367.025299', '-37.796638', '255.573303', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013210', 4013210, '-367.055786', '-38.345970', '262.714508', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013211', 4013211, '-393.702789', '-33.147480', '298.410095', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013212', 4013212, '-390.742615', '-33.080891', '300.424286', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013213', 4013213, '-422.867310', '-30.681101', '303.919800', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013214', 4013214, '-421.252197', '-30.134701', '311.575806', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013215', 4013215, '-418.295593', '-29.892469', '313.588104', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013216', 4013216, '-418.261505', '-30.624969', '306.479187', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013222', 4013222, '-228.755997', '-29.250050', '268.198700', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130662, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013224', 4013224, '-259.769104', '-25.814650', '223.363907', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130390, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013225', 4013225, '-248.303101', '-25.635059', '215.703506', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130118, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013226', 4013226, '-244.556595', '-29.157000', '245.735596', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013227', 4013227, '-205.884796', '-28.989929', '252.945099', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013230', 4013230, '-221.465103', '-29.933540', '230.371399', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129302, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013231', 4013231, '-191.527893', '-33.626598', '218.107803', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013232', 4013232, '-179.018005', '-29.188629', '250.063797', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128758, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013234', 4013234, '-175.844193', '-28.984510', '287.393402', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128492, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013235', 4013235, '-189.302597', '-29.714430', '288.949799', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91536, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013236', 4013236, '-180.635498', '-30.361820', '295.114288', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128220, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013237', 4013237, '-155.046997', '-38.834259', '204.882797', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127948, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013238', 4013238, '-140.856094', '-42.038651', '199.298004', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127676, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013239', 4013239, '-147.844696', '-38.864811', '208.361893', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127404, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013244', 4013244, '-152.971695', '-38.651150', '171.557098', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91808, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013245', 4013245, '-122.655197', '-36.402191', '160.250000', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127132, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013246', 4013246, '-125.513298', '-36.825439', '155.686493', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126860, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013248', 4013248, '-240.869400', '-31.567810', '320.527802', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126588, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013249', 4013249, '-235.614594', '-31.418369', '325.917389', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126316, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013250', 4013250, '-222.186707', '-34.622761', '365.438293', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126044, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013251', 4013251, '-253.131897', '-36.331779', '359.212585', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91264, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013254', 4013254, '-287.041687', '-32.065750', '207.250107', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125760, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013255', 4013255, '-284.050995', '-31.622311', '202.123093', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125488, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013256', 4013256, '-284.081512', '-31.907009', '209.264297', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125216, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013262', 4013262, '-273.132507', '-35.872952', '132.381500', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124944, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013263', 4013263, '-270.172211', '-35.967918', '134.395706', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124672, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013264', 4013264, '-270.141693', '-36.277580', '127.254402', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124400, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013266', 4013266, '-259.425812', '-35.518791', '150.542206', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124128, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013267', 4013267, '-256.465515', '-35.526428', '152.556396', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123856, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013445', 4013445, '-149.523193', '-32.364429', '59.342289', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92080, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013479', 4013479, '-159.265594', '-32.346439', '51.098259', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123596, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013480', 4013480, '-151.901093', '-33.007351', '66.556549', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123324, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013481', 4013481, '-100.511200', '-26.840670', '16.128740', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013482', 4013482, '-102.891098', '-28.253700', '23.320940', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123052, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013483', 4013483, '-149.419205', '-28.890289', '2.911655', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122780, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013484', 4013484, '-188.433701', '-27.695169', '-13.168580', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122508, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013485', 4013485, '-199.267593', '-31.357340', '4.409810', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92352, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013486', 4013486, '-182.299606', '-27.603621', '-9.872634', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122236, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013489', 4013489, '-219.226395', '-37.674568', '39.414009', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121964, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013490', 4013490, '-225.360504', '-37.827160', '36.118061', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121692, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013499', 4013499, '-273.627289', '-31.862329', '103.566002', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92624, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013500', 4013500, '-267.855988', '-33.038231', '97.413803', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121420, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013501', 4013501, '-272.429901', '-34.255821', '90.077278', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121148, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013502', 4013502, '-291.837189', '-33.717522', '94.695030', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120876, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013504', 4013504, '-408.834991', '-25.528391', '375.844910', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120592, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013509', 4013509, '-412.414703', '-25.124140', '378.094910', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120320, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013510', 4013510, '-421.050690', '-24.694500', '373.044586', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120048, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013511', 4013511, '-347.292603', '-22.499969', '411.814514', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119776, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013512', 4013512, '-350.892090', '-22.007130', '414.044891', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119504, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013513', 4013513, '-301.048492', '-24.998409', '421.781494', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119232, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013514', 4013514, '-235.065308', '-33.493599', '442.587891', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013515', 4013515, '-231.464096', '-34.195511', '440.359985', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013517', 4013517, '-230.304504', '-33.981892', '443.503387', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013521', 4013521, '-175.050400', '-37.658531', '450.209198', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013522', 4013522, '-175.885300', '-38.533630', '453.905487', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013525', 4013525, '-215.670593', '-35.585159', '459.834106', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013533', 4013533, '99.168327', '-25.375799', '291.493011', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117340, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013534', 4013534, '97.093102', '-25.223209', '297.444092', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117068, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013536', 4013536, '68.684219', '-23.820311', '291.749390', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116796, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013539', 4013539, '92.027107', '-24.063520', '274.555511', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90992, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013550', 4013550, '-370.036499', '-26.139339', '-3.111549', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013552', 4013552, '-377.077698', '-24.934530', '-2.811549', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013553', 4013553, '-374.311096', '-24.946871', '-6.761492', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013554', 4013554, '-361.013214', '-20.157209', '-51.316139', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115696, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013556', 4013556, '-364.370209', '-19.974110', '-48.996769', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115424, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013558', 4013558, '-314.082306', '-25.819000', '-70.030121', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115152, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013559', 4013559, '-316.848907', '-27.254049', '-66.080177', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114880, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013560', 4013560, '-309.807709', '-25.975500', '-66.380173', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013562', 4013562, '-330.224487', '-29.939251', '-43.977570', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114336, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013564', 4013564, '-407.858398', '-15.091220', '-126.360001', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114064, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013565', 4013565, '-411.203003', '-15.113620', '-124.026497', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113792, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013569', 4013569, '-415.904999', '-11.930880', '-136.712494', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113520, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013571', 4013571, '-452.618408', '-8.742622', '-98.281227', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113248, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013572', 4013572, '-449.357788', '-8.414806', '-96.310440', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112976, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013576', 4013576, '-464.105194', '-11.407580', '-129.066101', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112704, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013577', 4013577, '-498.092499', '-9.974959', '-109.458298', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112432, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013580', 4013580, '-502.620789', '-10.577840', '-112.821098', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112160, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013582', 4013582, '-507.470886', '-10.328900', '-110.974403', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111888, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013583', 4013583, '-522.056885', '-4.348868', '-159.960403', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111616, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013584', 4013584, '-523.460815', '-4.837157', '-158.281906', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111344, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013594', 4013594, '-352.898499', '-15.213080', '-143.948807', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111090, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013596', 4013596, '-332.967194', '-12.588740', '-145.708405', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110818, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013605', 4013605, '-332.265198', '-17.044371', '-127.824898', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110546, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013606', 4013606, '-352.598511', '-10.906090', '-168.210007', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110274, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013609', 4013609, '-385.111389', '-7.978566', '-230.465805', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110002, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013611', 4013611, '-331.138092', '-11.882090', '-143.969299', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109730, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013627', 4013627, '-383.286194', '-8.260035', '-224.126007', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109458, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013633', 4013633, '-366.385315', '-16.827869', '-132.410706', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109186, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4013638', 4013638, '-349.540588', '-11.100560', '-235.093994', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108920, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013641', 4013641, '-346.185791', '-11.887330', '-259.764496', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108648, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013642', 4013642, '-344.857910', '-11.892970', '-258.193207', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013645', 4013645, '-327.837799', '-11.400080', '-244.734406', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013647', 4013647, '-309.640594', '-10.000100', '-243.310898', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108104, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013649', 4013649, '-301.356903', '-10.000100', '-247.002197', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013650', 4013650, '-322.462311', '-9.437181', '-225.651001', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013652', 4013652, '-323.876587', '-6.632608', '-212.379700', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107832, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013668', 4013668, '-335.498505', '-12.014050', '-229.725906', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013720', 4013720, '-429.370209', '-1.586753', '-278.570801', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106448, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013721', 4013721, '-430.804504', '-1.625461', '-276.861786', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106176, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013722', 4013722, '-444.877411', '-1.080222', '-258.128387', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105904, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013723', 4013723, '-464.653595', '1.612374', '-285.266113', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105632, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(256, 'e0022', 'bnpc4013724', 4013724, '-461.633514', '1.079876', '-282.367096', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105360, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013725', 4013725, '-467.806213', '2.048990', '-283.036896', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105088, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013728', 4013728, '-533.374023', '-6.691851', '-159.632706', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104816, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013735', 4013735, '-450.919403', '-29.068480', '316.700897', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013772', 4013772, '-397.589996', '-23.851999', '392.935089', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013777', 4013777, '-330.837891', '-22.252911', '401.824585', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013778', 4013778, '-318.013306', '-23.819380', '430.685791', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013779', 4013779, '-249.358002', '-33.714100', '429.461487', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013780', 4013780, '-191.484207', '-36.256191', '404.149292', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013781', 4013781, '-190.484894', '-35.487671', '401.923004', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013782', 4013782, '-487.190399', '-25.702749', '201.419907', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013784', 4013784, '-334.884705', '-34.612320', '299.203400', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013785', 4013785, '-312.764191', '-31.815109', '177.660706', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013786', 4013786, '-422.784302', '-34.151939', '243.826904', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013788', 4013788, '-165.697800', '-28.246771', '253.973404', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013792', 4013792, '-54.262890', '-17.705391', '367.731415', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013794', 4013794, '-33.163811', '-19.940189', '365.769714', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013795', 4013795, '-51.895939', '-17.512991', '370.210602', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100772, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013796', 4013796, '78.414223', '-15.939830', '366.048615', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100500, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013798', 4013798, '7.173542', '-23.354309', '329.441010', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100228, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013804', 4013804, '-166.105103', '-28.583521', '251.194107', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99956, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013807', 4013807, '-96.303726', '-54.621849', '189.374496', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99684, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013809', 4013809, '-129.643600', '-41.051750', '105.021004', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99412, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013811', 4013811, '-131.669601', '-27.426109', '-54.776691', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99140, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013813', 4013813, '-173.987106', '-33.616089', '-39.161282', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98868, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013815', 4013815, '-175.831604', '-33.870190', '-41.495399', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98596, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013816', 4013816, '-205.031403', '-33.039600', '-67.334999', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013818', 4013818, '-281.004791', '-32.283211', '-47.466839', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013819', 4013819, '-366.248810', '-37.056171', '28.697981', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97780, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013820', 4013820, '-548.804321', '-10.844810', '-120.767998', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013821', 4013821, '-547.929016', '-10.919210', '-118.103897', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013822', 4013822, '-505.184814', '-5.976281', '-148.866592', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013823', 4013823, '-411.073914', '-31.135130', '46.428162', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013824', 4013824, '-430.816315', '-29.355061', '29.829710', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013825', 4013825, '-424.892914', '-28.321070', '3.818028', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013826', 4013826, '-455.293610', '-28.139351', '76.774193', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013827', 4013827, '-457.516510', '-27.855551', '79.493294', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013828', 4013828, '-479.286011', '-25.295200', '93.214996', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013829', 4013829, '-527.688721', '-21.083590', '110.860397', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013830', 4013830, '-536.720886', '-18.332451', '74.782097', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013831', 4013831, '-553.551880', '-16.714809', '84.756439', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013832', 4013832, '-510.295288', '-19.041250', '45.220119', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013833', 4013833, '-485.247589', '-20.332100', '48.307430', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013834', 4013834, '-458.042603', '-21.417490', '14.689170', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013835', 4013835, '-459.737488', '-21.394270', '13.442860', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013836', 4013836, '-484.622711', '-17.327000', '0.944125', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013837', 4013837, '-498.477814', '-17.417601', '25.127859', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013849', 4013849, '-140.192505', '-30.609131', '309.013794', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86380, 1, 0, 0, 0, 19, 30058, 0, 0, 0), +(256, 'e0022', 'bnpc4013851', 4013851, '-50.371601', '-27.557119', '321.120697', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85564, 1, 0, 0, 0, 19, 30058, 0, 0, 0), +(256, 'e0022', 'bnpc4013857', 4013857, '-76.608521', '-27.621309', '289.534302', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86108, 1, 0, 0, 0, 19, 30059, 0, 0, 0), +(256, 'e0022', 'bnpc4013859', 4013859, '-105.272003', '-29.404169', '285.419891', 735, 0, 0, 0, 1, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85836, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(256, 'e0022', 'bnpc4013864', 4013864, '-122.575798', '-30.167110', '296.284302', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85298, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(256, 'e0022', 'bnpc4013865', 4013865, '-70.664551', '-27.908751', '300.739990', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84482, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(256, 'e0022', 'bnpc4013866', 4013866, '-71.732674', '-27.084780', '289.021088', 737, 0, 0, 0, 0, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85026, 1, 0, 0, 0, 19, 30060, 0, 0, 0), +(256, 'e0022', 'bnpc4013867', 4013867, '-109.317596', '-27.427130', '345.218903', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84754, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(256, 'e0022', 'bnpc4013868', 4013868, '146.652603', '-5.540083', '412.411499', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013869', 4013869, '144.284500', '-5.955482', '411.455200', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013870', 4013870, '145.884995', '-5.941638', '404.887695', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013872', 4013872, '136.158096', '-6.723706', '412.478790', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013873', 4013873, '140.986099', '-6.708030', '406.031189', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013874', 4013874, '137.354004', '-7.302959', '404.747009', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4013877', 4013877, '127.735001', '-8.321562', '406.855713', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4014958', 4014958, '20.401260', '2.731318', '-54.520531', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83704, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015589', 4015589, '31.067261', '2.425304', '-70.573143', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83432, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015593', 4015593, '48.749241', '5.676062', '-102.147301', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83160, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015594', 4015594, '35.250210', '6.228703', '-92.927460', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82888, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015595', 4015595, '67.637573', '4.351546', '-87.514160', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82616, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015596', 4015596, '54.489922', '0.411947', '-65.110291', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015598', 4015598, '7.965932', '1.085048', '-77.601852', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82072, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015605', 4015605, '9.769605', '1.369744', '-80.136017', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015668', 4015668, '104.484001', '4.846275', '-63.102379', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015674', 4015674, '102.296700', '4.972450', '-66.202560', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015676', 4015676, '96.732941', '3.052606', '-62.312988', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015678', 4015678, '99.597008', '8.227051', '-90.531860', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015691', 4015691, '141.042694', '10.713930', '-50.547859', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015696', 4015696, '141.342697', '10.968710', '-54.225460', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015701', 4015701, '108.271400', '-2.418733', '-8.458347', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015704', 4015704, '106.417397', '-2.650057', '-10.997480', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015706', 4015706, '97.733994', '-3.219701', '2.456656', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015707', 4015707, '30.234659', '-13.926860', '41.901440', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015709', 4015709, '27.316900', '-15.302890', '44.688141', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015711', 4015711, '67.083893', '-9.601854', '56.893761', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015718', 4015718, '73.500443', '-4.948884', '24.766541', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4015720', 4015720, '70.143448', '-5.095084', '22.416651', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4016500', 4016500, '104.692101', '-11.093380', '148.271896', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77732, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(256, 'e0022', 'bnpc4016539', 4016539, '107.896500', '-11.093380', '147.508896', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77460, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(256, 'e0022', 'bnpc4016540', 4016540, '100.724701', '-10.660250', '120.341797', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77188, 1, 0, 0, 0, 9, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4016541', 4016541, '99.180260', '-10.555300', '116.451401', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76916, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(256, 'e0022', 'bnpc4016542', 4016542, '136.732193', '-7.571920', '111.707901', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76644, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(256, 'e0022', 'bnpc4016543', 4016543, '109.599403', '-4.406592', '97.184692', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76372, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(256, 'e0022', 'bnpc4016544', 4016544, '110.955200', '-4.201653', '88.662132', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76100, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(256, 'e0022', 'bnpc4016545', 4016545, '113.349701', '-3.809178', '95.995033', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75828, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(256, 'e0022', 'bnpc4016546', 4016546, '116.990799', '-8.926575', '119.340698', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75556, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(256, 'e0022', 'bnpc4016549', 4016549, '132.524506', '-4.867676', '80.796509', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75284, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(256, 'e0022', 'bnpc4016552', 4016552, '172.457306', '13.025480', '-52.917801', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75018, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(256, 'e0022', 'bnpc4016557', 4016557, '176.353500', '14.358130', '-73.066628', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74746, 1, 0, 0, 0, 31, 30060, 0, 0, 0), +(256, 'e0022', 'bnpc4016560', 4016560, '200.762894', '12.344500', '-41.489330', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74474, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(256, 'e0022', 'bnpc4016946', 4016946, '178.545807', '14.145070', '-76.310410', 168, 0, 0, 0, 0, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74208, 1, 0, 0, 0, 31, 30060, 0, 0, 0), +(256, 'e0022', 'bnpc4016949', 4016949, '157.244202', '11.490000', '-28.885370', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73936, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(256, 'e0022', 'bnpc4016957', 4016957, '194.933899', '11.673100', '-34.256550', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73664, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(256, 'e0022', 'bnpc4017619', 4017619, '180.407394', '10.330310', '-23.086950', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73386, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(256, 'e0022', 'bnpc4017833', 4017833, '165.697693', '9.414769', '0.106766', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73120, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(256, 'e0022', 'bnpc4017881', 4017881, '267.688995', '7.156434', '-121.568703', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4017882', 4017882, '256.488800', '7.736277', '-113.023598', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72588, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4017883', 4017883, '277.515808', '7.583686', '-116.807899', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72322, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4017891', 4017891, '272.907501', '17.593611', '-157.701996', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4017892', 4017892, '270.862915', '16.861151', '-151.415298', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4017893', 4017893, '257.892700', '16.006670', '-153.185394', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4017899', 4017899, '240.680496', '7.431091', '-122.636803', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4017900', 4017900, '243.182999', '7.370056', '-117.753899', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4017901', 4017901, '258.381012', '12.313960', '-138.811295', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4017921', 4017921, '138.353500', '9.506287', '-146.349304', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70424, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4017927', 4017927, '115.709099', '11.123780', '-141.435898', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70152, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4017928', 4017928, '212.176605', '3.555298', '-181.902802', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69880, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4017929', 4017929, '219.897705', '3.799438', '-195.117096', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69608, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4017932', 4017932, '278.370300', '8.041457', '-218.646606', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69336, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4017937', 4017937, '289.906097', '11.551030', '-240.192307', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69064, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4017941', 4017941, '373.476013', '20.829370', '-239.892303', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68792, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4017942', 4017942, '356.299500', '14.980250', '-225.505997', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68520, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4017945', 4017945, '404.706909', '22.897909', '-197.807907', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68248, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4017950', 4017950, '298.207001', '5.264315', '-172.350693', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4017954', 4017954, '134.599701', '8.987488', '-116.411102', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4017972', 4017972, '189.930405', '-1.185125', '27.687700', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4017978', 4017978, '193.187805', '-1.444422', '30.281919', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4017981', 4017981, '228.766998', '3.164756', '31.533100', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4017985', 4017985, '259.187988', '10.854590', '-0.979421', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4017987', 4017987, '256.991486', '10.906030', '-1.850262', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4017989', 4017989, '263.108002', '12.374600', '-6.144668', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4017999', 4017999, '144.542801', '-1.822149', '25.260910', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018003', 4018003, '118.866699', '-3.156176', '35.166130', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018006', 4018006, '152.788498', '-3.677471', '45.426060', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018007', 4018007, '149.431503', '-3.524881', '43.076172', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018008', 4018008, '148.638107', '-3.585917', '46.951962', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018022', 4018022, '94.621094', '3.248499', '83.127548', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64404, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(256, 'e0022', 'bnpc4018023', 4018023, '95.261963', '2.700867', '72.495613', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(256, 'e0022', 'bnpc4018024', 4018024, '96.513313', '3.431219', '83.543091', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63860, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(256, 'e0022', 'bnpc4018102', 4018102, '97.606216', '6.518048', '-80.554100', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018103', 4018103, '118.155403', '9.586515', '-100.878799', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018104', 4018104, '120.378304', '9.628418', '-99.046333', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018105', 4018105, '131.592499', '8.266950', '-67.253014', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018106', 4018106, '58.518299', '-3.494363', '-48.813660', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018108', 4018108, '90.160843', '-1.231179', '-48.488152', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018109', 4018109, '75.582893', '-5.687634', '-3.987827', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018110', 4018110, '48.298389', '-10.503780', '42.532669', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018112', 4018112, '90.491623', '-2.237890', '36.720051', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018113', 4018113, '93.131050', '-2.135577', '38.381100', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018115', 4018115, '112.673203', '-2.455007', '13.961960', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018117', 4018117, '127.625603', '-3.590302', '53.494831', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018118', 4018118, '188.733200', '4.905004', '3.896455', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018120', 4018120, '219.065399', '11.690500', '5.996748', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018121', 4018121, '216.593399', '11.322950', '7.522650', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018122', 4018122, '241.927307', '7.629051', '9.728237', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018125', 4018125, '268.848206', '8.777798', '13.353050', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59278, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018127', 4018127, '270.080994', '9.039959', '11.601690', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59006, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018129', 4018129, '158.682999', '14.718640', '-63.220341', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58734, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018133', 4018133, '188.223907', '10.030940', '-97.774307', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58462, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018134', 4018134, '166.552094', '8.773865', '-94.346558', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018137', 4018137, '163.958099', '6.301941', '-142.320999', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018141', 4018141, '160.723297', '6.515503', '-139.940598', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018142', 4018142, '218.860107', '3.097534', '-168.047699', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018143', 4018143, '231.647202', '5.874695', '-136.827698', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018152', 4018152, '228.137604', '4.013123', '-233.386795', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018154', 4018154, '270.251190', '8.134529', '-236.478806', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018156', 4018156, '267.750397', '7.438218', '-233.682907', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018157', 4018157, '316.072815', '12.832880', '-231.256195', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018159', 4018159, '316.372803', '6.627599', '-200.028305', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018161', 4018161, '363.549500', '16.893539', '-200.111694', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018165', 4018165, '365.959412', '17.232080', '-197.356705', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018171', 4018171, '32.567570', '2.131757', '-61.269958', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54926, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018175', 4018175, '68.556648', '3.005930', '-78.273499', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54654, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018177', 4018177, '70.294853', '2.807336', '-76.142509', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018218', 4018218, '-299.646698', '-38.938461', '29.649010', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88544, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018219', 4018219, '-291.777802', '-38.764221', '32.025139', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88236, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018220', 4018220, '-333.157501', '-38.096481', '14.837530', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87964, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018223', 4018223, '-450.400604', '-30.487301', '217.028503', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018224', 4018224, '-437.057800', '-30.783661', '234.972397', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018225', 4018225, '-439.601105', '-30.769150', '236.646896', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018228', 4018228, '-364.140503', '-35.208920', '210.519699', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018229', 4018229, '-361.718689', '-35.490021', '212.068604', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86592, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018449', 4018449, '408.621307', '7.003844', '139.543701', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53252, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018452', 4018452, '410.757507', '7.095398', '140.581299', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52980, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018453', 4018453, '405.539001', '6.301929', '141.710495', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52708, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018455', 4018455, '433.269897', '13.745850', '117.412903', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52436, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018459', 4018459, '458.291687', '14.700790', '137.946793', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018460', 4018460, '456.601501', '14.747650', '135.462296', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51892, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018462', 4018462, '435.268585', '6.480499', '160.338593', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51620, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018465', 4018465, '340.566010', '-7.949997', '150.988007', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51348, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018513', 4018513, '186.169693', '-31.149429', '258.258911', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51076, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018518', 4018518, '231.316696', '-44.052341', '271.940186', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50804, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018520', 4018520, '230.185699', '-44.115601', '274.394501', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50532, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018521', 4018521, '202.469299', '-14.894620', '157.281494', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50260, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018526', 4018526, '204.195099', '-14.686260', '155.274399', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49988, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018531', 4018531, '215.699997', '-14.748440', '162.191299', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018535', 4018535, '230.609497', '-15.671060', '152.147705', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018536', 4018536, '234.454803', '-15.945720', '152.452805', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018541', 4018541, '316.582214', '-12.778530', '171.745605', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018544', 4018544, '341.519897', '-7.554129', '153.111801', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018546', 4018546, '280.363190', '-10.464180', '157.039001', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018548', 4018548, '277.401794', '-10.433680', '158.329605', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018550', 4018550, '298.631104', '-17.845301', '138.619705', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018552', 4018552, '300.514313', '-17.990530', '137.021698', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018553', 4018553, '304.173004', '-16.961420', '140.928604', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018557', 4018557, '288.870209', '-20.820299', '112.120399', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018560', 4018560, '286.831604', '-20.760210', '113.868401', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018565', 4018565, '384.634094', '-8.041552', '208.148300', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46458, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018574', 4018574, '375.753387', '-8.651917', '202.716095', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46186, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018575', 4018575, '337.562012', '-6.490084', '196.335602', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018585', 4018585, '322.451508', '0.360318', '232.339203', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018587', 4018587, '332.444611', '-2.041133', '221.043106', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018590', 4018590, '322.120911', '0.721062', '236.863403', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018591', 4018591, '343.012787', '-5.424837', '244.845795', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44826, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018594', 4018594, '294.422791', '2.151475', '226.428604', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44554, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018597', 4018597, '399.075592', '-20.838551', '256.768402', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44282, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018599', 4018599, '395.043915', '-20.189211', '256.316895', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44010, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018600', 4018600, '388.906586', '-19.852030', '278.797485', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43738, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018602', 4018602, '439.887085', '-33.409691', '296.645996', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43466, 5, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(256, 'e0022', 'bnpc4018603', 4018603, '464.315399', '-42.298431', '269.112213', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43194, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018604', 4018604, '464.615387', '-42.545731', '274.560486', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42922, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018605', 4018605, '494.224304', '-55.678349', '265.046295', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42650, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018653', 4018653, '494.524292', '-63.894562', '233.206802', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42378, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018656', 4018656, '453.035309', '-64.522003', '255.129593', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42106, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018657', 4018657, '441.404510', '-64.788147', '246.034805', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41834, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018658', 4018658, '444.123810', '-64.620087', '241.737396', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41562, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018661', 4018661, '439.902802', '-20.658911', '226.785904', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41290, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018662', 4018662, '443.246185', '-19.347570', '231.567505', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41018, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018663', 4018663, '446.924286', '-17.912411', '214.384598', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40746, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018664', 4018664, '483.668396', '-8.428408', '232.612701', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40474, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018667', 4018667, '485.972687', '-7.855111', '227.039703', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40202, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(256, 'e0022', 'bnpc4018683', 4018683, '420.139191', '10.932210', '126.607399', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018685', 4018685, '447.669708', '11.251440', '147.314606', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39664, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018687', 4018687, '388.530914', '-9.116596', '196.378998', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018688', 4018688, '383.230286', '-18.143021', '263.599487', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018693', 4018693, '267.754089', '-4.105820', '247.045593', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018694', 4018694, '430.037811', '-64.649399', '210.820694', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38576, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018697', 4018697, '441.279785', '-64.462044', '202.846802', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38304, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018699', 4018699, '456.870789', '-14.453500', '215.100906', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018700', 4018700, '482.293304', '-7.656506', '258.934692', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018711', 4018711, '319.466095', '-21.198891', '117.792198', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018714', 4018714, '287.041992', '-19.224710', '132.121902', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018719', 4018719, '256.611511', '-16.890450', '168.769501', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018721', 4018721, '226.084503', '-3.171931', '186.594803', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4018722', 4018722, '228.457001', '-3.558112', '189.543701', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4021495', 4021495, '290.852203', '7.003784', '-131.212296', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4021497', 4021497, '290.089203', '6.881775', '-132.860397', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4057678', 4057678, '-430.180603', '-37.593121', '175.636093', 792, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21986, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(256, 'e0022', 'bnpc4057682', 4057682, '-445.348114', '-30.229731', '50.185131', 791, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21720, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(256, 'e0022', 'bnpc4057686', 4057686, '-332.421600', '-42.604149', '42.912781', 793, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21454, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(256, 'e0022', 'bnpc4621848', 4621848, '-77.749184', '-58.466881', '167.597900', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22594, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(256, 'e0022', 'bnpc4621849', 4621849, '235.769302', '-44.305069', '271.670990', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22328, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4012541', 4012541, '-499.944489', '-24.206900', '274.711395', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4012542', 4012542, '-496.735107', '-24.822651', '275.516113', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136368, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4012543', 4012543, '-498.215302', '-25.168880', '279.728394', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4012544', 4012544, '-508.450897', '-22.501459', '275.251801', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4012545', 4012545, '-500.246307', '-22.856750', '332.079407', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4012546', 4012546, '-503.241211', '-22.525490', '333.955200', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4012547', 4012547, '-490.592804', '-25.436840', '313.618591', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4012548', 4012548, '-487.602112', '-26.077709', '308.522095', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4012549', 4012549, '-487.632599', '-25.467350', '315.632813', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4012550', 4012550, '-490.196106', '-25.009581', '264.942413', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013205', 4013205, '-304.194305', '-34.543591', '294.601898', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013206', 4013206, '-304.224792', '-33.836750', '301.712585', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013207', 4013207, '-307.184998', '-34.167721', '299.698395', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013208', 4013208, '-370.016113', '-38.010269', '260.669800', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013209', 4013209, '-367.025299', '-37.796638', '255.573303', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013210', 4013210, '-367.055786', '-38.345970', '262.714508', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013211', 4013211, '-393.702789', '-33.147480', '298.410095', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013212', 4013212, '-390.742615', '-33.080891', '300.424286', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013213', 4013213, '-422.867310', '-30.681101', '303.919800', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013214', 4013214, '-421.252197', '-30.134701', '311.575806', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013215', 4013215, '-418.295593', '-29.892469', '313.588104', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013216', 4013216, '-418.261505', '-30.624969', '306.479187', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013222', 4013222, '-228.755997', '-29.250050', '268.198700', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130662, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013224', 4013224, '-259.769104', '-25.814650', '223.363907', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130390, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013225', 4013225, '-248.303101', '-25.635059', '215.703506', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130118, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013226', 4013226, '-244.556595', '-29.157000', '245.735596', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013227', 4013227, '-205.884796', '-28.989929', '252.945099', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013230', 4013230, '-221.465103', '-29.933540', '230.371399', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129302, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013231', 4013231, '-191.527893', '-33.626598', '218.107803', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013232', 4013232, '-179.018005', '-29.188629', '250.063797', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128758, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013234', 4013234, '-175.844193', '-28.984510', '287.393402', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128492, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013235', 4013235, '-189.302597', '-29.714430', '288.949799', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91536, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013236', 4013236, '-180.635498', '-30.361820', '295.114288', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128220, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013237', 4013237, '-155.046997', '-38.834259', '204.882797', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127948, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013238', 4013238, '-140.856094', '-42.038651', '199.298004', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127676, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013239', 4013239, '-147.844696', '-38.864811', '208.361893', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127404, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013244', 4013244, '-152.971695', '-38.651150', '171.557098', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91808, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013245', 4013245, '-122.655197', '-36.402191', '160.250000', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127132, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013246', 4013246, '-125.513298', '-36.825439', '155.686493', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126860, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013248', 4013248, '-240.869400', '-31.567810', '320.527802', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126588, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013249', 4013249, '-235.614594', '-31.418369', '325.917389', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126316, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013250', 4013250, '-222.186707', '-34.622761', '365.438293', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126044, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013251', 4013251, '-253.131897', '-36.331779', '359.212585', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91264, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013254', 4013254, '-287.041687', '-32.065750', '207.250107', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125760, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013255', 4013255, '-284.050995', '-31.622311', '202.123093', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125488, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013256', 4013256, '-284.081512', '-31.907009', '209.264297', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125216, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013262', 4013262, '-273.132507', '-35.872952', '132.381500', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124944, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013263', 4013263, '-270.172211', '-35.967918', '134.395706', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124672, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013264', 4013264, '-270.141693', '-36.277580', '127.254402', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124400, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013266', 4013266, '-259.425812', '-35.518791', '150.542206', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124128, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013267', 4013267, '-256.465515', '-35.526428', '152.556396', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123856, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013445', 4013445, '-149.523193', '-32.364429', '59.342289', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92080, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013479', 4013479, '-159.265594', '-32.346439', '51.098259', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123596, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013480', 4013480, '-151.901093', '-33.007351', '66.556549', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123324, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013481', 4013481, '-100.511200', '-26.840670', '16.128740', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013482', 4013482, '-102.891098', '-28.253700', '23.320940', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123052, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013483', 4013483, '-149.419205', '-28.890289', '2.911655', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122780, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013484', 4013484, '-188.433701', '-27.695169', '-13.168580', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122508, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013485', 4013485, '-199.267593', '-31.357340', '4.409810', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92352, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013486', 4013486, '-182.299606', '-27.603621', '-9.872634', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122236, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013489', 4013489, '-219.226395', '-37.674568', '39.414009', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121964, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013490', 4013490, '-225.360504', '-37.827160', '36.118061', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121692, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013499', 4013499, '-273.627289', '-31.862329', '103.566002', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92624, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013500', 4013500, '-267.855988', '-33.038231', '97.413803', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121420, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013501', 4013501, '-272.429901', '-34.255821', '90.077278', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121148, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013502', 4013502, '-291.837189', '-33.717522', '94.695030', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120876, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013504', 4013504, '-408.834991', '-25.528391', '375.844910', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120592, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013509', 4013509, '-412.414703', '-25.124140', '378.094910', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120320, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013510', 4013510, '-421.050690', '-24.694500', '373.044586', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120048, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013511', 4013511, '-347.292603', '-22.499969', '411.814514', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119776, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013512', 4013512, '-350.892090', '-22.007130', '414.044891', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119504, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013513', 4013513, '-301.048492', '-24.998409', '421.781494', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119232, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013514', 4013514, '-235.065308', '-33.493599', '442.587891', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013515', 4013515, '-231.464096', '-34.195511', '440.359985', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013517', 4013517, '-230.304504', '-33.981892', '443.503387', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013521', 4013521, '-175.050400', '-37.658531', '450.209198', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013522', 4013522, '-175.885300', '-38.533630', '453.905487', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013525', 4013525, '-215.670593', '-35.585159', '459.834106', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013533', 4013533, '99.168327', '-25.375799', '291.493011', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117340, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013534', 4013534, '97.093102', '-25.223209', '297.444092', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117068, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013536', 4013536, '68.684219', '-23.820311', '291.749390', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116796, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013539', 4013539, '92.027107', '-24.063520', '274.555511', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90992, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013550', 4013550, '-370.036499', '-26.139339', '-3.111549', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013552', 4013552, '-377.077698', '-24.934530', '-2.811549', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013553', 4013553, '-374.311096', '-24.946871', '-6.761492', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013554', 4013554, '-361.013214', '-20.157209', '-51.316139', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115696, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013556', 4013556, '-364.370209', '-19.974110', '-48.996769', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115424, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013558', 4013558, '-314.082306', '-25.819000', '-70.030121', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115152, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013559', 4013559, '-316.848907', '-27.254049', '-66.080177', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114880, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013560', 4013560, '-309.807709', '-25.975500', '-66.380173', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013562', 4013562, '-330.224487', '-29.939251', '-43.977570', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114336, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013564', 4013564, '-407.858398', '-15.091220', '-126.360001', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114064, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013565', 4013565, '-411.203003', '-15.113620', '-124.026497', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113792, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013569', 4013569, '-415.904999', '-11.930880', '-136.712494', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113520, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013571', 4013571, '-452.618408', '-8.742622', '-98.281227', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113248, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013572', 4013572, '-449.357788', '-8.414806', '-96.310440', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112976, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013576', 4013576, '-464.105194', '-11.407580', '-129.066101', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112704, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013577', 4013577, '-498.092499', '-9.974959', '-109.458298', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112432, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013580', 4013580, '-502.620789', '-10.577840', '-112.821098', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112160, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013582', 4013582, '-507.470886', '-10.328900', '-110.974403', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111888, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013583', 4013583, '-522.056885', '-4.348868', '-159.960403', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111616, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013584', 4013584, '-523.460815', '-4.837157', '-158.281906', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111344, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013594', 4013594, '-352.898499', '-15.213080', '-143.948807', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111090, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013596', 4013596, '-332.967194', '-12.588740', '-145.708405', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110818, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013605', 4013605, '-332.265198', '-17.044371', '-127.824898', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110546, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013606', 4013606, '-352.598511', '-10.906090', '-168.210007', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110274, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013609', 4013609, '-385.111389', '-7.978566', '-230.465805', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110002, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013611', 4013611, '-331.138092', '-11.882090', '-143.969299', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109730, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013627', 4013627, '-383.286194', '-8.260035', '-224.126007', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109458, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013633', 4013633, '-366.385315', '-16.827869', '-132.410706', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109186, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4013638', 4013638, '-349.540588', '-11.100560', '-235.093994', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108920, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013641', 4013641, '-346.185791', '-11.887330', '-259.764496', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108648, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013642', 4013642, '-344.857910', '-11.892970', '-258.193207', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013645', 4013645, '-327.837799', '-11.400080', '-244.734406', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013647', 4013647, '-309.640594', '-10.000100', '-243.310898', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108104, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013649', 4013649, '-301.356903', '-10.000100', '-247.002197', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013650', 4013650, '-322.462311', '-9.437181', '-225.651001', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013652', 4013652, '-323.876587', '-6.632608', '-212.379700', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107832, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013668', 4013668, '-335.498505', '-12.014050', '-229.725906', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013720', 4013720, '-429.370209', '-1.586753', '-278.570801', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106448, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013721', 4013721, '-430.804504', '-1.625461', '-276.861786', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106176, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013722', 4013722, '-444.877411', '-1.080222', '-258.128387', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105904, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013723', 4013723, '-464.653595', '1.612374', '-285.266113', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105632, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013724', 4013724, '-461.633514', '1.079876', '-282.367096', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105360, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013725', 4013725, '-467.806213', '2.048990', '-283.036896', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105088, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013728', 4013728, '-533.374023', '-6.691851', '-159.632706', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104816, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013735', 4013735, '-450.919403', '-29.068480', '316.700897', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013772', 4013772, '-397.589996', '-23.851999', '392.935089', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013777', 4013777, '-330.837891', '-22.252911', '401.824585', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013778', 4013778, '-318.013306', '-23.819380', '430.685791', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013779', 4013779, '-249.358002', '-33.714100', '429.461487', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013780', 4013780, '-191.484207', '-36.256191', '404.149292', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013781', 4013781, '-190.484894', '-35.487671', '401.923004', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013782', 4013782, '-487.190399', '-25.702749', '201.419907', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013784', 4013784, '-334.884705', '-34.612320', '299.203400', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013785', 4013785, '-312.764191', '-31.815109', '177.660706', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013786', 4013786, '-422.784302', '-34.151939', '243.826904', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013788', 4013788, '-165.697800', '-28.246771', '253.973404', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013792', 4013792, '-54.262890', '-17.705391', '367.731415', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013794', 4013794, '-33.163811', '-19.940189', '365.769714', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013795', 4013795, '-51.895939', '-17.512991', '370.210602', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100772, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013796', 4013796, '78.414223', '-15.939830', '366.048615', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100500, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013798', 4013798, '7.173542', '-23.354309', '329.441010', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100228, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013804', 4013804, '-166.105103', '-28.583521', '251.194107', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99956, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013807', 4013807, '-96.303726', '-54.621849', '189.374496', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99684, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013809', 4013809, '-129.643600', '-41.051750', '105.021004', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99412, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013811', 4013811, '-131.669601', '-27.426109', '-54.776691', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99140, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013813', 4013813, '-173.987106', '-33.616089', '-39.161282', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98868, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013815', 4013815, '-175.831604', '-33.870190', '-41.495399', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98596, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013816', 4013816, '-205.031403', '-33.039600', '-67.334999', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013818', 4013818, '-281.004791', '-32.283211', '-47.466839', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013819', 4013819, '-366.248810', '-37.056171', '28.697981', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97780, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013820', 4013820, '-548.804321', '-10.844810', '-120.767998', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013821', 4013821, '-547.929016', '-10.919210', '-118.103897', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013822', 4013822, '-505.184814', '-5.976281', '-148.866592', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013823', 4013823, '-411.073914', '-31.135130', '46.428162', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013824', 4013824, '-430.816315', '-29.355061', '29.829710', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013825', 4013825, '-424.892914', '-28.321070', '3.818028', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013826', 4013826, '-455.293610', '-28.139351', '76.774193', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013827', 4013827, '-457.516510', '-27.855551', '79.493294', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013828', 4013828, '-479.286011', '-25.295200', '93.214996', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013829', 4013829, '-527.688721', '-21.083590', '110.860397', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013830', 4013830, '-536.720886', '-18.332451', '74.782097', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013831', 4013831, '-553.551880', '-16.714809', '84.756439', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013832', 4013832, '-510.295288', '-19.041250', '45.220119', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013833', 4013833, '-485.247589', '-20.332100', '48.307430', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013834', 4013834, '-458.042603', '-21.417490', '14.689170', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013835', 4013835, '-459.737488', '-21.394270', '13.442860', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013836', 4013836, '-484.622711', '-17.327000', '0.944125', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013837', 4013837, '-498.477814', '-17.417601', '25.127859', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013849', 4013849, '-140.192505', '-30.609131', '309.013794', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86380, 1, 0, 0, 0, 19, 30058, 0, 0, 0), +(257, 'e0023', 'bnpc4013851', 4013851, '-50.371601', '-27.557119', '321.120697', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85564, 1, 0, 0, 0, 19, 30058, 0, 0, 0), +(257, 'e0023', 'bnpc4013857', 4013857, '-76.608521', '-27.621309', '289.534302', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86108, 1, 0, 0, 0, 19, 30059, 0, 0, 0), +(257, 'e0023', 'bnpc4013859', 4013859, '-105.272003', '-29.404169', '285.419891', 735, 0, 0, 0, 1, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85836, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(257, 'e0023', 'bnpc4013864', 4013864, '-122.575798', '-30.167110', '296.284302', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85298, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(257, 'e0023', 'bnpc4013865', 4013865, '-70.664551', '-27.908751', '300.739990', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84482, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(257, 'e0023', 'bnpc4013866', 4013866, '-71.732674', '-27.084780', '289.021088', 737, 0, 0, 0, 0, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85026, 1, 0, 0, 0, 19, 30060, 0, 0, 0), +(257, 'e0023', 'bnpc4013867', 4013867, '-109.317596', '-27.427130', '345.218903', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84754, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(257, 'e0023', 'bnpc4013868', 4013868, '146.652603', '-5.540083', '412.411499', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013869', 4013869, '144.284500', '-5.955482', '411.455200', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90182, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(257, 'e0023', 'bnpc4013870', 4013870, '145.884995', '-5.941638', '404.887695', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013872', 4013872, '136.158096', '-6.723706', '412.478790', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013873', 4013873, '140.986099', '-6.708030', '406.031189', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013874', 4013874, '137.354004', '-7.302959', '404.747009', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4013877', 4013877, '127.735001', '-8.321562', '406.855713', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4014958', 4014958, '20.401260', '2.731318', '-54.520531', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83704, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015589', 4015589, '31.067261', '2.425304', '-70.573143', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83432, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015593', 4015593, '48.749241', '5.676062', '-102.147301', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83160, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015594', 4015594, '35.250210', '6.228703', '-92.927460', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82888, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015595', 4015595, '67.637573', '4.351546', '-87.514160', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82616, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015596', 4015596, '54.489922', '0.411947', '-65.110291', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015598', 4015598, '7.965932', '1.085048', '-77.601852', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82072, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015605', 4015605, '9.769605', '1.369744', '-80.136017', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015668', 4015668, '104.484001', '4.846275', '-63.102379', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015674', 4015674, '102.296700', '4.972450', '-66.202560', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015676', 4015676, '96.732941', '3.052606', '-62.312988', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015678', 4015678, '99.597008', '8.227051', '-90.531860', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015691', 4015691, '141.042694', '10.713930', '-50.547859', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015696', 4015696, '141.342697', '10.968710', '-54.225460', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015701', 4015701, '108.271400', '-2.418733', '-8.458347', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015704', 4015704, '106.417397', '-2.650057', '-10.997480', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015706', 4015706, '97.733994', '-3.219701', '2.456656', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015707', 4015707, '30.234659', '-13.926860', '41.901440', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015709', 4015709, '27.316900', '-15.302890', '44.688141', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015711', 4015711, '67.083893', '-9.601854', '56.893761', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015718', 4015718, '73.500443', '-4.948884', '24.766541', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4015720', 4015720, '70.143448', '-5.095084', '22.416651', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4016500', 4016500, '104.692101', '-11.093380', '148.271896', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77732, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(257, 'e0023', 'bnpc4016539', 4016539, '107.896500', '-11.093380', '147.508896', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77460, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(257, 'e0023', 'bnpc4016540', 4016540, '100.724701', '-10.660250', '120.341797', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77188, 1, 0, 0, 0, 9, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4016541', 4016541, '99.180260', '-10.555300', '116.451401', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76916, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(257, 'e0023', 'bnpc4016542', 4016542, '136.732193', '-7.571920', '111.707901', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76644, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(257, 'e0023', 'bnpc4016543', 4016543, '109.599403', '-4.406592', '97.184692', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76372, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(257, 'e0023', 'bnpc4016544', 4016544, '110.955200', '-4.201653', '88.662132', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76100, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(257, 'e0023', 'bnpc4016545', 4016545, '113.349701', '-3.809178', '95.995033', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75828, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(257, 'e0023', 'bnpc4016546', 4016546, '116.990799', '-8.926575', '119.340698', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75556, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(257, 'e0023', 'bnpc4016549', 4016549, '132.524506', '-4.867676', '80.796509', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75284, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(257, 'e0023', 'bnpc4016552', 4016552, '172.457306', '13.025480', '-52.917801', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75018, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(257, 'e0023', 'bnpc4016557', 4016557, '176.353500', '14.358130', '-73.066628', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74746, 1, 0, 0, 0, 31, 30060, 0, 0, 0), +(257, 'e0023', 'bnpc4016560', 4016560, '200.762894', '12.344500', '-41.489330', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74474, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(257, 'e0023', 'bnpc4016946', 4016946, '178.545807', '14.145070', '-76.310410', 168, 0, 0, 0, 0, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74208, 1, 0, 0, 0, 31, 30060, 0, 0, 0), +(257, 'e0023', 'bnpc4016949', 4016949, '157.244202', '11.490000', '-28.885370', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73936, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(257, 'e0023', 'bnpc4016957', 4016957, '194.933899', '11.673100', '-34.256550', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73664, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(257, 'e0023', 'bnpc4017619', 4017619, '180.407394', '10.330310', '-23.086950', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73386, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(257, 'e0023', 'bnpc4017833', 4017833, '165.697693', '9.414769', '0.106766', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73120, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(257, 'e0023', 'bnpc4017881', 4017881, '267.688995', '7.156434', '-121.568703', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4017882', 4017882, '256.488800', '7.736277', '-113.023598', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72588, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4017883', 4017883, '277.515808', '7.583686', '-116.807899', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72322, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4017891', 4017891, '272.907501', '17.593611', '-157.701996', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4017892', 4017892, '270.862915', '16.861151', '-151.415298', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4017893', 4017893, '257.892700', '16.006670', '-153.185394', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4017899', 4017899, '240.680496', '7.431091', '-122.636803', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4017900', 4017900, '243.182999', '7.370056', '-117.753899', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4017901', 4017901, '258.381012', '12.313960', '-138.811295', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4017921', 4017921, '138.353500', '9.506287', '-146.349304', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70424, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4017927', 4017927, '115.709099', '11.123780', '-141.435898', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70152, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4017928', 4017928, '212.176605', '3.555298', '-181.902802', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69880, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4017929', 4017929, '219.897705', '3.799438', '-195.117096', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69608, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4017932', 4017932, '278.370300', '8.041457', '-218.646606', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69336, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4017937', 4017937, '289.906097', '11.551030', '-240.192307', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69064, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4017941', 4017941, '373.476013', '20.829370', '-239.892303', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68792, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4017942', 4017942, '356.299500', '14.980250', '-225.505997', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68520, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4017945', 4017945, '404.706909', '22.897909', '-197.807907', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68248, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4017950', 4017950, '298.207001', '5.264315', '-172.350693', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4017954', 4017954, '134.599701', '8.987488', '-116.411102', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4017972', 4017972, '189.930405', '-1.185125', '27.687700', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4017978', 4017978, '193.187805', '-1.444422', '30.281919', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4017981', 4017981, '228.766998', '3.164756', '31.533100', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4017985', 4017985, '259.187988', '10.854590', '-0.979421', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4017987', 4017987, '256.991486', '10.906030', '-1.850262', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4017989', 4017989, '263.108002', '12.374600', '-6.144668', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4017999', 4017999, '144.542801', '-1.822149', '25.260910', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018003', 4018003, '118.866699', '-3.156176', '35.166130', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018006', 4018006, '152.788498', '-3.677471', '45.426060', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018007', 4018007, '149.431503', '-3.524881', '43.076172', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018008', 4018008, '148.638107', '-3.585917', '46.951962', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018022', 4018022, '94.621094', '3.248499', '83.127548', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64404, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(257, 'e0023', 'bnpc4018023', 4018023, '95.261963', '2.700867', '72.495613', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(257, 'e0023', 'bnpc4018024', 4018024, '96.513313', '3.431219', '83.543091', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63860, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(257, 'e0023', 'bnpc4018102', 4018102, '97.606216', '6.518048', '-80.554100', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018103', 4018103, '118.155403', '9.586515', '-100.878799', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018104', 4018104, '120.378304', '9.628418', '-99.046333', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018105', 4018105, '131.592499', '8.266950', '-67.253014', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018106', 4018106, '58.518299', '-3.494363', '-48.813660', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018108', 4018108, '90.160843', '-1.231179', '-48.488152', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018109', 4018109, '75.582893', '-5.687634', '-3.987827', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018110', 4018110, '48.298389', '-10.503780', '42.532669', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018112', 4018112, '90.491623', '-2.237890', '36.720051', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018113', 4018113, '93.131050', '-2.135577', '38.381100', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018115', 4018115, '112.673203', '-2.455007', '13.961960', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018117', 4018117, '127.625603', '-3.590302', '53.494831', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018118', 4018118, '188.733200', '4.905004', '3.896455', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018120', 4018120, '219.065399', '11.690500', '5.996748', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018121', 4018121, '216.593399', '11.322950', '7.522650', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018122', 4018122, '241.927307', '7.629051', '9.728237', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018125', 4018125, '268.848206', '8.777798', '13.353050', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59278, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018127', 4018127, '270.080994', '9.039959', '11.601690', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59006, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018129', 4018129, '158.682999', '14.718640', '-63.220341', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58734, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018133', 4018133, '188.223907', '10.030940', '-97.774307', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58462, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018134', 4018134, '166.552094', '8.773865', '-94.346558', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018137', 4018137, '163.958099', '6.301941', '-142.320999', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018141', 4018141, '160.723297', '6.515503', '-139.940598', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018142', 4018142, '218.860107', '3.097534', '-168.047699', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018143', 4018143, '231.647202', '5.874695', '-136.827698', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018152', 4018152, '228.137604', '4.013123', '-233.386795', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018154', 4018154, '270.251190', '8.134529', '-236.478806', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018156', 4018156, '267.750397', '7.438218', '-233.682907', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018157', 4018157, '316.072815', '12.832880', '-231.256195', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018159', 4018159, '316.372803', '6.627599', '-200.028305', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018161', 4018161, '363.549500', '16.893539', '-200.111694', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018165', 4018165, '365.959412', '17.232080', '-197.356705', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018171', 4018171, '32.567570', '2.131757', '-61.269958', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54926, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018175', 4018175, '68.556648', '3.005930', '-78.273499', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54654, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018177', 4018177, '70.294853', '2.807336', '-76.142509', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018218', 4018218, '-299.646698', '-38.938461', '29.649010', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88544, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018219', 4018219, '-291.777802', '-38.764221', '32.025139', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88236, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018220', 4018220, '-333.157501', '-38.096481', '14.837530', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87964, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018223', 4018223, '-450.400604', '-30.487301', '217.028503', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018224', 4018224, '-437.057800', '-30.783661', '234.972397', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018225', 4018225, '-439.601105', '-30.769150', '236.646896', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018228', 4018228, '-364.140503', '-35.208920', '210.519699', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018229', 4018229, '-361.718689', '-35.490021', '212.068604', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86592, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018449', 4018449, '408.621307', '7.003844', '139.543701', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53252, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018452', 4018452, '410.757507', '7.095398', '140.581299', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52980, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018453', 4018453, '405.539001', '6.301929', '141.710495', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52708, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018455', 4018455, '433.269897', '13.745850', '117.412903', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52436, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018459', 4018459, '458.291687', '14.700790', '137.946793', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018460', 4018460, '456.601501', '14.747650', '135.462296', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51892, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018462', 4018462, '435.268585', '6.480499', '160.338593', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51620, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018465', 4018465, '340.566010', '-7.949997', '150.988007', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51348, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018513', 4018513, '186.169693', '-31.149429', '258.258911', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51076, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018518', 4018518, '231.316696', '-44.052341', '271.940186', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50804, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018520', 4018520, '230.185699', '-44.115601', '274.394501', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50532, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018521', 4018521, '202.469299', '-14.894620', '157.281494', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50260, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018526', 4018526, '204.195099', '-14.686260', '155.274399', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49988, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018531', 4018531, '215.699997', '-14.748440', '162.191299', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018535', 4018535, '230.609497', '-15.671060', '152.147705', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018536', 4018536, '234.454803', '-15.945720', '152.452805', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018541', 4018541, '316.582214', '-12.778530', '171.745605', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018544', 4018544, '341.519897', '-7.554129', '153.111801', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018546', 4018546, '280.363190', '-10.464180', '157.039001', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018548', 4018548, '277.401794', '-10.433680', '158.329605', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018550', 4018550, '298.631104', '-17.845301', '138.619705', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018552', 4018552, '300.514313', '-17.990530', '137.021698', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018553', 4018553, '304.173004', '-16.961420', '140.928604', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018557', 4018557, '288.870209', '-20.820299', '112.120399', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018560', 4018560, '286.831604', '-20.760210', '113.868401', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018565', 4018565, '384.634094', '-8.041552', '208.148300', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46458, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018574', 4018574, '375.753387', '-8.651917', '202.716095', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46186, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018575', 4018575, '337.562012', '-6.490084', '196.335602', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018585', 4018585, '322.451508', '0.360318', '232.339203', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018587', 4018587, '332.444611', '-2.041133', '221.043106', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018590', 4018590, '322.120911', '0.721062', '236.863403', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018591', 4018591, '343.012787', '-5.424837', '244.845795', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44826, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018594', 4018594, '294.422791', '2.151475', '226.428604', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44554, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018597', 4018597, '399.075592', '-20.838551', '256.768402', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44282, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018599', 4018599, '395.043915', '-20.189211', '256.316895', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44010, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018600', 4018600, '388.906586', '-19.852030', '278.797485', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43738, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018602', 4018602, '439.887085', '-33.409691', '296.645996', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43466, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018603', 4018603, '464.315399', '-42.298431', '269.112213', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43194, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018604', 4018604, '464.615387', '-42.545731', '274.560486', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42922, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018605', 4018605, '494.224304', '-55.678349', '265.046295', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42650, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018653', 4018653, '494.524292', '-63.894562', '233.206802', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42378, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018656', 4018656, '453.035309', '-64.522003', '255.129593', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42106, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018657', 4018657, '441.404510', '-64.788147', '246.034805', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41834, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018658', 4018658, '444.123810', '-64.620087', '241.737396', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41562, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018661', 4018661, '439.902802', '-20.658911', '226.785904', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41290, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018662', 4018662, '443.246185', '-19.347570', '231.567505', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41018, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018663', 4018663, '446.924286', '-17.912411', '214.384598', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40746, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018664', 4018664, '483.668396', '-8.428408', '232.612701', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40474, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018667', 4018667, '485.972687', '-7.855111', '227.039703', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40202, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(257, 'e0023', 'bnpc4018683', 4018683, '420.139191', '10.932210', '126.607399', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018685', 4018685, '447.669708', '11.251440', '147.314606', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39664, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018687', 4018687, '388.530914', '-9.116596', '196.378998', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018688', 4018688, '383.230286', '-18.143021', '263.599487', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018693', 4018693, '267.754089', '-4.105820', '247.045593', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018694', 4018694, '430.037811', '-64.649399', '210.820694', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38576, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018697', 4018697, '441.279785', '-64.462044', '202.846802', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38304, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018699', 4018699, '456.870789', '-14.453500', '215.100906', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018700', 4018700, '482.293304', '-7.656506', '258.934692', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018711', 4018711, '319.466095', '-21.198891', '117.792198', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018714', 4018714, '287.041992', '-19.224710', '132.121902', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018719', 4018719, '256.611511', '-16.890450', '168.769501', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018721', 4018721, '226.084503', '-3.171931', '186.594803', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4018722', 4018722, '228.457001', '-3.558112', '189.543701', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4021495', 4021495, '290.852203', '7.003784', '-131.212296', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4021497', 4021497, '290.089203', '6.881775', '-132.860397', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4057678', 4057678, '-430.180603', '-37.593121', '175.636093', 792, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21986, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(257, 'e0023', 'bnpc4057682', 4057682, '-445.348114', '-30.229731', '50.185131', 791, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21720, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(257, 'e0023', 'bnpc4057686', 4057686, '-332.421600', '-42.604149', '42.912781', 793, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21454, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(257, 'e0023', 'bnpc4621848', 4621848, '-77.749184', '-58.466881', '167.597900', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22594, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(257, 'e0023', 'bnpc4621849', 4621849, '235.769302', '-44.305069', '271.670990', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22328, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc1368411', 1368411, '-66.155998', '-12.582840', '-8.814363', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc1368412', 1368412, '-64.537338', '-12.499180', '-8.712757', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc1368413', 1368413, '-62.951370', '-12.426580', '-8.677147', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc1368414', 1368414, '-61.258369', '-12.364150', '-8.589471', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc1368416', 1368416, '-66.693230', '-12.961350', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212726, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc1368417', 1368417, '-64.495934', '-12.860610', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc1368418', 1368418, '-62.481739', '-12.772990', '-13.472360', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc1368419', 1368419, '-60.162369', '-12.662670', '-13.441840', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc1368420', 1368420, '-69.467598', '-13.149620', '-18.035919', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211644, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc1368440', 1368440, '-65.325943', '-13.142030', '-18.046921', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211372, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc1368441', 1368441, '-61.416431', '-13.052980', '-18.065041', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211100, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc1368442', 1368442, '-57.492748', '-12.665620', '-17.741350', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210828, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746473', 3746473, '-134.012207', '9.916103', '267.132690', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208458, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746474', 3746474, '-139.248093', '11.343600', '270.767487', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208186, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746475', 3746475, '-116.714996', '8.743372', '266.243988', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207914, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746477', 3746477, '-123.143700', '11.980280', '281.311798', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207642, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746478', 3746478, '-128.526794', '6.043580', '250.778503', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207370, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746481', 3746481, '-87.065170', '8.131585', '270.853210', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207098, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746484', 3746484, '-77.385406', '9.277164', '278.146301', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206826, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746485', 3746485, '-79.850502', '9.815605', '280.807892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206554, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746486', 3746486, '-57.801540', '7.714478', '280.245697', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206282, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746487', 3746487, '-32.103970', '8.045358', '306.695404', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206010, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746488', 3746488, '-33.263660', '8.805240', '310.174408', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205738, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746489', 3746489, '-23.206301', '7.924604', '316.282593', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205466, 7, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(258, 'e0024', 'bnpc3746490', 3746490, '-1.823452', '12.616180', '355.344391', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205194, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746491', 3746491, '1.058939', '11.460450', '352.323212', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204922, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746492', 3746492, '-1.840275', '11.813140', '350.644714', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204650, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746493', 3746493, '-56.592079', '0.108709', '220.398895', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204378, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746494', 3746494, '-56.292080', '3.881968', '249.628098', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204106, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746495', 3746495, '-31.334530', '2.359202', '278.398193', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203834, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746496', 3746496, '-104.320801', '1.025299', '207.824005', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203562, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746498', 3746498, '7.768722', '1.031246', '256.953094', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203290, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746499', 3746499, '-123.605797', '2.842937', '210.266296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203018, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746500', 3746500, '30.048519', '10.050760', '356.964386', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202746, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746501', 3746501, '-97.688263', '-3.294564', '184.145203', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202474, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746503', 3746503, '-99.971313', '-3.426347', '180.765198', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202202, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746505', 3746505, '-87.144318', '-1.876907', '198.901306', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201930, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746506', 3746506, '-47.697250', '-4.439452', '201.516296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201658, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746507', 3746507, '-14.522570', '0.676844', '242.620300', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201386, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746508', 3746508, '-11.261070', '0.694751', '245.484695', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201114, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746514', 3746514, '-119.246803', '8.981372', '268.429688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155702, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746519', 3746519, '-132.127899', '6.316744', '252.007797', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155974, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746522', 3746522, '-155.544296', '14.321210', '274.575500', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156246, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746523', 3746523, '-155.193604', '7.549813', '251.117706', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155430, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746524', 3746524, '-92.355728', '5.076609', '248.889801', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154614, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746525', 3746525, '-107.799896', '1.451139', '209.227798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154886, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746526', 3746526, '-114.793701', '4.013075', '226.245499', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155158, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746527', 3746527, '28.597651', '13.168800', '391.636688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157606, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746528', 3746528, '-93.669998', '-2.292831', '193.599503', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157878, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746529', 3746529, '-86.737587', '1.982069', '218.821899', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158150, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746530', 3746530, '-94.103600', '-4.710398', '174.915298', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157334, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746532', 3746532, '-55.083771', '1.032392', '224.458603', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156518, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746533', 3746533, '-52.324100', '-0.635104', '220.185806', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156790, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746534', 3746534, '-52.024101', '-4.438385', '196.025299', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157062, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746535', 3746535, '-23.599480', '-4.862183', '218.164505', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162774, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746536', 3746536, '-2.930916', '14.263170', '364.690308', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165222, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746538', 3746538, '-40.705959', '2.362750', '241.470093', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165494, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746539', 3746539, '-66.280632', '6.869143', '269.246704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165766, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746541', 3746541, '4.373672', '4.711559', '297.562012', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164950, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746542', 3746542, '-63.836632', '11.354730', '293.474915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164134, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746543', 3746543, '-67.036057', '11.719290', '294.869385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164406, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746544', 3746544, '-40.587990', '10.584770', '307.244690', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164678, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746545', 3746545, '-18.006081', '5.176353', '307.655609', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159510, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746547', 3746547, '13.581710', '5.033936', '280.057404', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746557', 3746557, '59.891609', '12.558130', '450.125793', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746560', 3746560, '49.054600', '13.360080', '439.790100', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746579', 3746579, '-107.428101', '5.098667', '239.118896', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746589', 3746589, '15.346860', '15.164520', '392.385712', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200842, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746592', 3746592, '14.522880', '15.407670', '396.017303', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200570, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746594', 3746594, '34.258789', '14.106760', '421.936798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159782, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746595', 3746595, '60.659401', '11.900060', '438.181702', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160054, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746616', 3746616, '55.188671', '13.295150', '508.984802', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159238, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746617', 3746617, '66.524231', '10.880620', '515.488220', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200298, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746618', 3746618, '49.532551', '14.712430', '506.886414', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200026, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746619', 3746619, '50.356541', '14.371650', '503.254791', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199754, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746620', 3746620, '59.248550', '11.443580', '491.395813', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199482, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746621', 3746621, '87.897888', '3.259133', '489.249908', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158422, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746622', 3746622, '84.418831', '4.091218', '486.350708', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158694, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746623', 3746623, '46.372120', '15.609930', '520.347778', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158966, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746624', 3746624, '84.031380', '8.407674', '556.939026', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199210, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746625', 3746625, '89.244087', '6.908536', '552.574890', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198938, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746626', 3746626, '105.598701', '4.370574', '521.843201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198666, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746628', 3746628, '107.891403', '6.906938', '609.728882', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161414, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746629', 3746629, '160.979904', '10.423200', '445.205414', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746630', 3746630, '189.060593', '11.863390', '607.536072', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746688', 3746688, '86.533859', '11.154300', '622.308594', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198394, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746689', 3746689, '77.714149', '12.588650', '626.672729', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198122, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746690', 3746690, '81.986671', '11.825690', '632.593201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197850, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746691', 3746691, '42.256569', '15.522670', '621.038330', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197578, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746692', 3746692, '36.528320', '15.730630', '626.060913', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197306, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746693', 3746693, '33.963001', '15.853820', '622.955627', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197034, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746694', 3746694, '54.517780', '14.477480', '614.387390', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160870, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746695', 3746695, '75.144310', '14.202080', '664.210083', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160598, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746697', 3746697, '71.776787', '14.357050', '666.349792', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196762, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746699', 3746699, '110.074799', '9.705235', '672.023499', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196490, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746700', 3746700, '105.802299', '9.833974', '666.103027', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196218, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746701', 3746701, '114.622002', '9.802178', '661.738892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195946, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746702', 3746702, '102.630096', '9.930755', '678.326416', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160326, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746703', 3746703, '124.601700', '9.267537', '672.118774', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161142, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746704', 3746704, '139.915802', '3.409252', '629.204895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161958, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746706', 3746706, '148.317993', '4.103824', '654.705994', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195674, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746707', 3746707, '140.430801', '4.620288', '650.824585', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195402, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746708', 3746708, '144.703293', '4.162472', '656.745178', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195130, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3746728', 3746728, '105.175301', '7.446661', '611.285278', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161686, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746741', 3746741, '123.709900', '4.546344', '401.381409', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746744', 3746744, '119.896500', '4.229595', '400.430603', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746745', 3746745, '121.385498', '4.562400', '415.457306', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746747', 3746747, '94.951797', '4.409234', '415.757996', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746748', 3746748, '98.573242', '3.713897', '402.903290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746753', 3746753, '105.931702', '3.887046', '438.676788', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746754', 3746754, '103.130402', '3.837232', '441.897888', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746756', 3746756, '101.549301', '2.579426', '385.163391', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746757', 3746757, '126.748802', '2.272390', '326.781708', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746762', 3746762, '128.648804', '2.609246', '322.621399', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746767', 3746767, '115.312401', '0.839199', '310.200592', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746769', 3746769, '60.052872', '2.658700', '301.575806', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746771', 3746771, '66.487648', '2.270967', '295.222290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746772', 3746772, '59.572800', '2.550388', '279.994904', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746773', 3746773, '39.864429', '5.507329', '295.432587', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746775', 3746775, '28.239599', '1.102737', '258.417786', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746782', 3746782, '33.012630', '-0.000074', '236.507797', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746783', 3746783, '30.472219', '1.540232', '261.602997', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746790', 3746790, '40.329552', '0.198320', '191.668503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746791', 3746791, '42.740471', '0.381429', '188.281006', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189696, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746792', 3746792, '21.316620', '-1.942127', '212.041397', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189424, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746795', 3746795, '33.488029', '0.135540', '209.757507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189152, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746800', 3746800, '79.875580', '17.322849', '153.453400', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188880, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746801', 3746801, '86.274673', '14.097900', '174.830002', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188608, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746802', 3746802, '82.595718', '17.371531', '156.113602', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188336, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746803', 3746803, '68.047150', '12.851960', '169.148697', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188064, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746805', 3746805, '145.186905', '14.265870', '303.993011', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187792, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746806', 3746806, '134.595795', '15.951970', '271.548492', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187520, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746807', 3746807, '129.378799', '14.996020', '276.045807', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187248, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746808', 3746808, '102.709000', '6.216220', '218.986298', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186976, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746815', 3746815, '104.478500', '3.524787', '410.177704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162502, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746820', 3746820, '134.782898', '6.790217', '393.331787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162230, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746821', 3746821, '109.756599', '2.337350', '358.451385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163046, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746826', 3746826, '100.612602', '0.927920', '320.347412', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163862, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746828', 3746828, '122.748901', '1.776996', '318.298187', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163590, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746831', 3746831, '90.791931', '1.666962', '266.808197', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163318, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746834', 3746834, '115.643402', '6.086327', '252.986206', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153254, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746835', 3746835, '116.878197', '7.099676', '249.317596', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152982, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746839', 3746839, '134.754898', '15.738220', '277.605591', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152710, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746842', 3746842, '138.416901', '14.910950', '291.298401', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153526, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746843', 3746843, '69.640907', '10.773730', '192.122192', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154342, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746844', 3746844, '80.370789', '14.464900', '168.592697', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154070, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746845', 3746845, '58.563480', '13.422550', '142.645203', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153798, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746846', 3746846, '84.523247', '19.105749', '150.735306', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151350, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746847', 3746847, '44.427238', '1.305627', '214.361099', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151078, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746848', 3746848, '17.726910', '-2.276831', '214.661102', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150806, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746850', 3746850, '23.742001', '2.113425', '263.454895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151622, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746857', 3746857, '39.223301', '5.294607', '322.688812', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152438, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746859', 3746859, '72.028061', '7.308271', '404.591492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152166, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746861', 3746861, '127.672203', '6.607109', '430.716309', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151894, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746864', 3746864, '165.074600', '12.246150', '482.778503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186704, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746867', 3746867, '168.492706', '12.057270', '478.475494', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186432, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746868', 3746868, '162.989304', '12.037260', '478.563507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186160, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746870', 3746870, '159.288895', '10.574450', '408.590790', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185888, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746871', 3746871, '163.653000', '10.757560', '411.825714', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185616, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746872', 3746872, '180.336197', '12.793920', '406.002014', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185344, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746873', 3746873, '161.736893', '16.236589', '388.045105', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185072, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746876', 3746876, '133.837296', '9.269427', '459.531403', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184800, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746878', 3746878, '131.557098', '8.976067', '457.624695', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184528, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746880', 3746880, '120.227203', '8.368025', '485.318115', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184256, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746885', 3746885, '134.445908', '12.144460', '507.273987', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183984, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746887', 3746887, '131.554993', '12.056210', '504.412415', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183712, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746889', 3746889, '140.997406', '11.949580', '487.139313', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183440, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746891', 3746891, '177.389404', '11.185200', '525.833618', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183168, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746894', 3746894, '180.637207', '11.258170', '523.414673', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182896, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746896', 3746896, '163.836105', '12.375020', '511.253387', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182624, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746898', 3746898, '147.262100', '7.242397', '543.931824', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182352, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746902', 3746902, '159.838196', '8.834927', '539.787781', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182080, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746905', 3746905, '155.880402', '7.197376', '556.779175', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181808, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746908', 3746908, '158.138794', '8.079927', '559.495300', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181536, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746910', 3746910, '143.386200', '7.563845', '583.138916', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181264, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746911', 3746911, '141.779205', '7.213043', '585.132019', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180992, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746913', 3746913, '138.754898', '6.737441', '570.297424', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180720, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746914', 3746914, '149.117798', '6.128607', '602.883972', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180448, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746915', 3746915, '169.704697', '11.348940', '603.184021', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180176, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746916', 3746916, '180.008804', '11.209140', '617.096130', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179904, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746917', 3746917, '182.074905', '11.129530', '618.747620', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179632, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746918', 3746918, '203.008896', '12.064710', '597.300476', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179360, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746919', 3746919, '222.377304', '10.658940', '600.289978', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179088, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746920', 3746920, '219.857101', '10.195060', '606.104126', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178816, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746921', 3746921, '216.053207', '12.886560', '579.694885', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178544, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746922', 3746922, '254.440308', '11.644550', '583.224670', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178272, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746923', 3746923, '187.395996', '12.680200', '480.674408', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178000, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746925', 3746925, '122.484100', '8.621300', '468.558685', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174198, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746927', 3746927, '152.697006', '11.123780', '465.049103', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173382, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746928', 3746928, '200.189301', '12.546850', '452.841888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173654, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746929', 3746929, '184.320801', '12.674630', '482.649414', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174470, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746930', 3746930, '161.638794', '12.497090', '508.781494', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175286, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746932', 3746932, '134.477707', '12.039320', '494.041290', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175558, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746933', 3746933, '157.244202', '8.895963', '538.017822', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174742, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746934', 3746934, '145.677795', '11.978280', '517.051880', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175014, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746937', 3746937, '112.465202', '5.551401', '523.979492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168486, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746941', 3746941, '164.965195', '10.635490', '582.482483', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168214, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746945', 3746945, '140.062500', '7.095398', '581.505981', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167942, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746946', 3746946, '126.004097', '4.418174', '596.074219', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169302, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746951', 3746951, '205.096497', '11.978280', '595.452820', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169030, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746954', 3746954, '201.556396', '10.391350', '620.202881', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168758, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746956', 3746956, '223.407303', '9.658914', '609.063782', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167670, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746958', 3746958, '230.853699', '7.095398', '629.480286', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166582, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746959', 3746959, '228.412201', '6.607109', '632.684814', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166310, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746960', 3746960, '250.843002', '10.543940', '603.967285', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166038, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746962', 3746962, '251.148193', '11.947770', '580.346313', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167398, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746963', 3746963, '236.801498', '16.670509', '560.962524', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167126, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746965', 3746965, '239.996399', '16.684830', '564.761475', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166854, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746966', 3746966, '219.876907', '16.677370', '559.278870', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169574, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746967', 3746967, '255.603806', '16.647539', '552.574890', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172294, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746968', 3746968, '261.768494', '13.412630', '571.068787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172022, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746969', 3746969, '261.341187', '16.678061', '523.765930', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171750, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746970', 3746970, '263.263885', '16.647539', '520.866577', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173110, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746971', 3746971, '247.730194', '16.647539', '499.259888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172838, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746972', 3746972, '210.126297', '16.670370', '499.584686', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172566, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746973', 3746973, '206.265198', '16.709129', '502.872498', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171478, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746974', 3746974, '201.359299', '16.670370', '525.525696', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170390, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746975', 3746975, '199.202896', '16.634470', '546.190796', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170118, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746976', 3746976, '201.042099', '16.670389', '547.166199', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169846, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3746983', 3746983, '47.837040', '20.883829', '-297.468597', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79320, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3746984', 3746984, '30.218941', '19.809231', '-261.464111', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80402, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(258, 'e0024', 'bnpc3746985', 3746985, '45.726398', '19.952000', '-251.705505', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79048, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3746988', 3746988, '37.782612', '19.928471', '-277.190186', 736, 0, 0, 0, 1, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80130, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3746992', 3746992, '32.101620', '19.979660', '-229.510406', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79858, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(258, 'e0024', 'bnpc3746993', 3746993, '32.891548', '19.908630', '-233.898605', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78776, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(258, 'e0024', 'bnpc3746997', 3746997, '-40.889229', '-6.750034', '159.270004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88278, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747003', 3747003, '-38.858761', '-6.750058', '155.119003', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88550, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747004', 3747004, '-21.989389', '-6.750032', '151.563995', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87190, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747006', 3747006, '-1.016211', '-6.750022', '160.127197', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89638, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747009', 3747009, '3.375875', '-6.751163', '164.669601', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89910, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747010', 3747010, '5.926142', '-6.750027', '161.728195', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89366, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747012', 3747012, '22.984619', '-6.750012', '165.561600', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89094, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747015', 3747015, '30.818211', '-6.750096', '148.130096', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88822, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747018', 3747018, '-6.179034', '-6.750058', '138.765106', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90182, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747019', 3747019, '-2.610643', '-6.750058', '141.990707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87734, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747021', 3747021, '-15.651240', '-6.750003', '122.209503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87462, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747022', 3747022, '-52.276199', '-6.750027', '169.793900', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88006, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747028', 3747028, '-73.794739', '-6.750006', '155.086899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91814, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747033', 3747033, '-84.128677', '-6.750047', '148.117004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90454, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747034', 3747034, '-88.289063', '-6.750033', '145.505707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90998, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747037', 3747037, '-81.662231', '-6.750007', '162.451996', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91542, 6, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(258, 'e0024', 'bnpc3747042', 3747042, '-100.621399', '-6.750030', '133.779007', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91270, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747078', 3747078, '174.099396', '10.387860', '561.876526', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177728, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747306', 3747306, '166.825607', '12.296140', '403.792114', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171206, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747310', 3747310, '155.935303', '9.673933', '431.016296', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170934, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747330', 3747330, '-88.883842', '-0.106860', '109.147697', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747331', 3747331, '-61.120312', '0.636424', '88.682060', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747332', 3747332, '-80.643967', '-0.473077', '67.368530', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747333', 3747333, '-86.717056', '0.991789', '72.831261', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747336', 3747336, '-36.911621', '-3.830061', '32.700039', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747337', 3747337, '-40.695862', '-4.928711', '25.589331', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747338', 3747338, '-11.550680', '0.488563', '-28.281300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747339', 3747339, '17.013760', '3.036498', '-38.223900', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747340', 3747340, '-58.237549', '-4.110259', '-107.568703', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110020, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747341', 3747341, '-67.615173', '-4.777174', '-101.631897', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109476, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747342', 3747342, '-91.142181', '-0.778257', '-101.335197', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109748, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747344', 3747344, '-126.726303', '9.466410', '-79.290817', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110564, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747345', 3747345, '-162.798492', '10.177720', '-67.887444', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114644, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747347', 3747347, '-162.133194', '17.720350', '-97.090424', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114916, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747349', 3747349, '-170.820297', '17.510420', '-95.798119', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114372, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747353', 3747353, '-144.544800', '8.164017', '-26.941380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113828, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747356', 3747356, '-176.280701', '8.164456', '-26.641380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114100, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747358', 3747358, '-181.261993', '6.912290', '-21.225349', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116004, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747359', 3747359, '-207.415894', '10.971190', '-31.418369', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116276, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747362', 3747362, '-142.900803', '6.271411', '-160.784302', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115732, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747363', 3747363, '-153.948898', '13.420070', '-190.044296', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115188, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747364', 3747364, '-199.122604', '1.060047', '7.769498', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112468, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747365', 3747365, '-100.182404', '-4.169586', '5.823180', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112196, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747366', 3747366, '-162.648407', '1.476818', '27.867500', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112740, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747368', 3747368, '-228.292801', '1.271454', '31.448839', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113284, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747369', 3747369, '-281.000000', '1.547629', '6.098617', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113012, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747370', 3747370, '-292.305786', '1.883296', '3.669711', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110292, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747371', 3747371, '-289.186615', '0.923461', '44.489441', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111108, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747372', 3747372, '-331.967499', '-0.344346', '37.288601', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110836, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747373', 3747373, '-367.222809', '14.331700', '37.588600', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111380, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747374', 3747374, '-362.704590', '17.228571', '24.585470', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111924, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747376', 3747376, '-337.512299', '2.239006', '84.820068', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111652, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747380', 3747380, '-350.515015', '5.752604', '108.384804', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113556, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747385', 3747385, '-374.964294', '1.092578', '72.868820', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115460, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747388', 3747388, '-52.163811', '-2.028311', '119.953003', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147810, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747389', 3747389, '-86.052368', '0.110645', '102.987396', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147538, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747390', 3747390, '-74.317467', '-4.983451', '25.989620', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147266, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747391', 3747391, '-33.861969', '-6.175569', '6.276085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146994, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747393', 3747393, '13.815840', '0.849448', '-43.540058', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146722, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747394', 3747394, '-25.443001', '-6.505634', '-66.767128', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146450, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747395', 3747395, '-66.218620', '-2.263651', '-110.189796', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146178, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747396', 3747396, '-92.423927', '2.517692', '-129.686493', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747397', 3747397, '-120.059502', '11.096300', '-65.332710', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747398', 3747398, '-123.346199', '11.132750', '-62.877190', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747399', 3747399, '-135.404602', '3.017960', '-134.773499', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145090, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747400', 3747400, '-155.932007', '14.084030', '-185.687103', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747401', 3747401, '-176.806305', '20.096081', '-127.183998', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144546, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747402', 3747402, '-182.692200', '11.068910', '-54.575550', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144274, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747403', 3747403, '-188.219101', '8.602026', '-26.668791', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144002, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747404', 3747404, '-125.142403', '-1.327417', '12.701530', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143730, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747405', 3747405, '-142.871094', '-0.211552', '-0.011758', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143458, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747406', 3747406, '-188.977707', '1.185343', '0.288242', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143186, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747407', 3747407, '-196.063202', '-0.991883', '44.632591', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747408', 3747408, '-198.598099', '-1.427130', '46.344830', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142642, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747409', 3747409, '-265.374908', '-0.871808', '46.644829', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747410', 3747410, '-245.222107', '0.679796', '27.065580', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747411', 3747411, '-236.532196', '4.119698', '-11.326280', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747413', 3747413, '-237.229904', '7.081615', '-22.989599', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141554, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747414', 3747414, '-238.542206', '7.219037', '-24.718719', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747415', 3747415, '-245.215302', '6.500818', '-25.125641', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747417', 3747417, '-335.459198', '7.751451', '2.210185', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747419', 3747419, '-332.434692', '-0.635067', '45.192638', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747420', 3747420, '-338.391815', '2.787159', '90.300163', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140194, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747635', 3747635, '-101.580002', '3.185857', '-122.629700', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747636', 3747636, '-113.067703', '0.190863', '-235.496902', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747637', 3747637, '-8.689189', '-2.987621', '-71.427528', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747853', 3747853, '-210.928299', '22.971910', '-101.417801', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82028, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3747854', 3747854, '-210.061996', '22.349720', '-98.801086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82844, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3747855', 3747855, '-199.564606', '24.777719', '-122.897400', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82572, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3747856', 3747856, '-217.284500', '27.674749', '-122.597397', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81756, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(258, 'e0024', 'bnpc3747858', 3747858, '-217.212097', '28.120930', '-124.432098', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81212, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(258, 'e0024', 'bnpc3747859', 3747859, '-208.813400', '29.458891', '-133.137894', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80940, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3747860', 3747860, '-223.520599', '24.171949', '-95.828552', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81484, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3747864', 3747864, '-228.529297', '20.575800', '-76.218086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85564, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3747865', 3747865, '-241.385498', '18.354990', '-63.139381', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85292, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3747867', 3747867, '-243.216904', '18.379009', '-62.623611', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86380, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3747868', 3747868, '-255.936401', '24.723961', '-77.803009', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86108, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3747869', 3747869, '-267.446411', '25.988930', '-78.509064', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85836, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(258, 'e0024', 'bnpc3747870', 3747870, '-266.262207', '26.413910', '-80.013046', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86924, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(258, 'e0024', 'bnpc3747873', 3747873, '-288.302704', '28.840969', '-91.487991', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86652, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3747874', 3747874, '-273.846008', '27.999920', '-103.128998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83660, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3747876', 3747876, '-257.572906', '27.938169', '-88.810738', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83932, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3747877', 3747877, '-234.919403', '27.970850', '-103.431198', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84476, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(258, 'e0024', 'bnpc3747880', 3747880, '-245.382996', '27.999990', '-107.453003', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83116, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3747881', 3747881, '-254.081406', '28.000000', '-102.002197', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84204, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(258, 'e0024', 'bnpc3747883', 3747883, '-258.959106', '28.000000', '-105.536201', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82300, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3747884', 3747884, '-251.270294', '27.969730', '-102.616898', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85020, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(258, 'e0024', 'bnpc3747886', 3747886, '-248.655701', '28.000000', '-96.725998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84748, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3747889', 3747889, '-248.153000', '28.470831', '-127.263100', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83388, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(258, 'e0024', 'bnpc3747891', 3747891, '-234.992294', '9.310618', '-37.905788', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139922, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747893', 3747893, '-237.711700', '8.873294', '-42.033760', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139650, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747899', 3747899, '-214.038300', '-30.502831', '123.735397', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139384, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747900', 3747900, '-250.516998', '-31.060820', '85.115646', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139118, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747904', 3747904, '-201.968796', '-30.857059', '117.357803', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138840, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747905', 3747905, '-183.124893', '-31.750071', '106.885902', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138568, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747906', 3747906, '-185.311996', '-31.750059', '109.415100', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138296, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747907', 3747907, '-152.843002', '-31.750000', '109.715103', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138024, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747908', 3747908, '-166.101105', '-31.750000', '110.540100', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137758, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747909', 3747909, '-169.604507', '-27.712351', '77.843430', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137486, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747910', 3747910, '-167.071503', '-27.177780', '76.317528', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137214, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747911', 3747911, '-210.234406', '-30.382589', '95.879173', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136942, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747913', 3747913, '-195.861603', '-27.444660', '129.920502', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136670, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747914', 3747914, '-224.566406', '-31.750071', '110.176003', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136398, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747915', 3747915, '-263.312103', '-31.750090', '97.519081', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136126, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747916', 3747916, '-255.968094', '-31.750130', '95.789261', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135848, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747919', 3747919, '-211.436401', '-30.614429', '97.981651', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135576, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747921', 3747921, '-244.620895', '-28.275660', '117.486801', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135304, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747922', 3747922, '-225.970795', '-15.579620', '71.709572', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135026, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747923', 3747923, '-170.891495', '-26.165300', '72.662949', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134754, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747924', 3747924, '-154.802902', '-29.800900', '94.071899', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134482, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747925', 3747925, '-164.402603', '-31.750019', '112.296303', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747927', 3747927, '-213.131393', '-30.063490', '125.099403', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747928', 3747928, '-234.579193', '-29.342421', '117.079697', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747930', 3747930, '-206.002899', '-30.332180', '97.422249', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747931', 3747931, '-258.774902', '-31.750071', '93.732712', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747933', 3747933, '-124.520401', '25.876591', '-384.084900', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117364, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747935', 3747935, '-120.378502', '25.406219', '-376.089111', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117636, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747936', 3747936, '-71.168182', '15.618890', '-341.319214', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117908, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747937', 3747937, '-140.945007', '34.283039', '-443.520813', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116548, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747945', 3747945, '-104.844803', '10.208240', '-322.407898', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116820, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747953', 3747953, '-68.964897', '24.845461', '-295.047913', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117092, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747955', 3747955, '-30.148661', '20.242010', '-347.723907', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118180, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747958', 3747958, '-20.706499', '20.599291', '-342.888702', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118724, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747963', 3747963, '20.322849', '15.975690', '-350.654205', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118996, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747965', 3747965, '39.420231', '19.301970', '-356.003815', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119268, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3747975', 3747975, '-138.811401', '27.237310', '-416.372986', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747994', 3747994, '-93.431030', '7.583686', '-301.106293', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3747997', 3747997, '-65.966766', '21.859249', '-305.947601', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748004', 3748004, '-66.655212', '20.943001', '-309.725586', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748006', 3748006, '-38.712181', '21.255770', '-344.167297', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748009', 3748009, '-93.684303', '18.821621', '-371.862793', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748015', 3748015, '-113.144402', '27.605829', '-397.741913', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131490, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748017', 3748017, '-112.844398', '28.132500', '-450.977997', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748018', 3748018, '-108.119003', '27.149870', '-454.027008', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748020', 3748020, '-152.178299', '27.511971', '-419.668915', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748022', 3748022, '35.132519', '17.855400', '-352.433105', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748394', 3748394, '65.413780', '20.079309', '-340.723206', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748396', 3748396, '-140.276199', '-3.219701', '-317.433502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748397', 3748397, '-147.234299', '-4.593012', '-324.147400', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748399', 3748399, '-210.589798', '1.083344', '-288.624390', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748402', 3748402, '-72.186493', '11.340310', '-240.295197', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748407', 3748407, '-77.690918', '8.765988', '-234.389694', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748409', 3748409, '-50.269390', '11.709270', '-222.062698', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748410', 3748410, '-65.652512', '8.342214', '-211.891998', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748411', 3748411, '-21.376921', '8.231496', '-242.911896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748412', 3748412, '-16.418360', '6.341013', '-249.044601', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748413', 3748413, '-6.975120', '11.175980', '-282.658691', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106490, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748414', 3748414, '10.056190', '8.215180', '-250.173004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748415', 3748415, '5.360405', '-0.923770', '-218.657303', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748416', 3748416, '48.714218', '0.699683', '-174.900604', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748417', 3748417, '95.936577', '1.386500', '-186.119995', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748418', 3748418, '31.585911', '8.951487', '-139.193497', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748419', 3748419, '35.112041', '16.424919', '-113.143204', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748420', 3748420, '34.363049', '8.229201', '-145.052994', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748421', 3748421, '90.860474', '1.763928', '-189.065002', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748422', 3748422, '113.054001', '1.174898', '-202.746704', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748423', 3748423, '130.461395', '1.093745', '-233.497101', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748424', 3748424, '124.484100', '0.743076', '-229.449493', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748425', 3748425, '89.422256', '3.504610', '-218.853806', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748428', 3748428, '-184.704300', '-4.704755', '-317.082306', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748429', 3748429, '-177.061203', '-3.447654', '-291.626190', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748430', 3748430, '-168.688507', '-1.968461', '-348.439789', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102954, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748431', 3748431, '-142.835693', '-1.140769', '-353.109894', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748433', 3748433, '-167.528793', '6.179857', '-382.681000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748434', 3748434, '-192.189301', '-4.726788', '-315.063293', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97242, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748436', 3748436, '-213.360901', '-4.497713', '-340.979004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748437', 3748437, '-234.150696', '5.014801', '-286.084686', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98602, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748438', 3748438, '-218.334900', '17.160500', '-255.482300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748443', 3748443, '-212.971405', '13.338840', '-260.496307', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748479', 3748479, '-151.282501', '-4.870804', '-286.887787', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748499', 3748499, '-178.949402', '6.440631', '-256.865692', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748520', 3748520, '-148.505096', '-5.306737', '-314.775085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748524', 3748524, '-185.881104', '-4.844985', '-310.895508', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748526', 3748526, '-164.369003', '1.507254', '-251.882507', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748528', 3748528, '-207.412399', '17.160610', '-247.635193', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748530', 3748530, '-229.519104', '3.459191', '-289.959412', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748532', 3748532, '-163.010803', '-1.945551', '-356.094696', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748534', 3748534, '-173.595505', '5.841309', '-388.489685', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748537', 3748537, '-232.440796', '-2.339301', '-322.417908', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127954, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748538', 3748538, '-251.794006', '-1.267901', '-386.990295', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748542', 3748542, '-234.040207', '-0.107224', '-383.030914', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748543', 3748543, '-272.222107', '0.687642', '-325.399811', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748545', 3748545, '-263.308685', '4.237235', '-309.758392', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748546', 3748546, '-252.162598', '0.152196', '-318.392395', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748548', 3748548, '-251.430496', '-2.982757', '-348.143311', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748549', 3748549, '-240.737198', '1.345172', '-393.418396', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748550', 3748550, '-242.828506', '-3.567687', '-364.035309', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748551', 3748551, '-250.630707', '-3.725200', '-363.735291', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748552', 3748552, '-213.087494', '1.112077', '-382.537415', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748553', 3748553, '-255.836105', '7.531438', '-290.196289', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748554', 3748554, '-246.018097', '-2.631598', '-372.254608', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748555', 3748555, '-236.562103', '3.655112', '-396.309387', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748557', 3748557, '-203.850494', '16.277430', '-409.920593', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748559', 3748559, '-242.042892', '18.601339', '-425.242401', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748564', 3748564, '-177.168198', '14.656220', '-411.592987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748565', 3748565, '-215.900406', '16.573481', '-408.014008', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748566', 3748566, '-221.473297', '17.321730', '-412.786896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748567', 3748567, '-236.289001', '19.116409', '-424.877502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748570', 3748570, '-254.304306', '22.347059', '-449.055695', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748654', 3748654, '-205.192398', '19.296721', '-445.294189', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748657', 3748657, '-207.202301', '25.558809', '-115.343002', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748660', 3748660, '-222.657104', '20.702950', '-78.345047', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748662', 3748662, '-247.438400', '20.240339', '-67.748871', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748663', 3748663, '-230.727005', '26.739140', '-98.761307', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748670', 3748670, '-271.961609', '27.969740', '-98.954803', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748672', 3748672, '-271.661285', '23.599831', '-70.352722', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748674', 3748674, '-231.617004', '30.324150', '-133.076996', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748726', 3748726, '33.854542', '6.542700', '-211.889801', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748728', 3748728, '55.167561', '0.798945', '-193.606598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748729', 3748729, '69.255318', '0.046956', '-152.350906', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748730', 3748730, '10.055020', '5.968488', '-132.156097', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123602, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(258, 'e0024', 'bnpc3748732', 3748732, '50.175282', '14.921620', '-128.489700', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748734', 3748734, '76.929573', '3.883048', '-205.706406', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748736', 3748736, '79.198738', '3.548813', '-202.087204', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748737', 3748737, '106.461601', '1.818933', '-204.985199', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748738', 3748738, '140.354401', '0.554754', '-232.614304', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122242, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748739', 3748739, '111.391197', '0.776695', '-238.240707', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748749', 3748749, '145.884293', '-1.750025', '-212.434097', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3748752', 3748752, '136.108398', '-1.750136', '-190.396194', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3748753', 3748753, '149.821106', '-1.750019', '-214.231293', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54188, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3748755', 3748755, '84.854179', '-1.750136', '-139.436905', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53916, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3748758', 3748758, '72.003227', '-1.750024', '-104.510002', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53644, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3748760', 3748760, '68.467178', '-1.754834', '-99.778793', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53372, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3748763', 3748763, '78.693497', '-3.269199', '-32.994751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53100, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3748765', 3748765, '68.721947', '-2.620518', '-49.466751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52828, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3748770', 3748770, '166.277496', '-1.754834', '-241.382507', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52556, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3748772', 3748772, '187.884293', '-1.754834', '-278.858704', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52284, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3748773', 3748773, '194.766006', '-1.750224', '-280.991394', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52012, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3748775', 3748775, '71.615707', '-3.621419', '-26.438259', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51740, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3748850', 3748850, '12.774460', '-6.750232', '111.257401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90726, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3748852', 3748852, '9.592600', '-6.750232', '107.837402', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92086, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3748876', 3748876, '11.520510', '1.022307', '-111.986000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748879', 3748879, '-129.259201', '2.487174', '-193.926895', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118452, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3748904', 3748904, '176.132706', '4.710299', '-187.304703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748905', 3748905, '158.969894', '2.732193', '-177.146698', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748906', 3748906, '191.563705', '2.176362', '-156.220703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748907', 3748907, '196.388000', '3.012704', '-160.659393', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748908', 3748908, '239.061295', '5.923066', '-187.296494', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748910', 3748910, '269.473785', '9.044052', '-198.574799', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748913', 3748913, '263.650208', '11.289570', '-202.903397', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748915', 3748915, '227.710297', '-1.205510', '-113.847603', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748923', 3748923, '231.280899', '-1.632762', '-106.462196', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748926', 3748926, '200.610306', '-1.358100', '-103.471497', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748930', 3748930, '207.171707', '-1.144474', '-84.519768', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748932', 3748932, '173.937500', '1.205416', '-81.071228', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73736, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748934', 3748934, '148.809097', '3.036994', '-133.465897', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73464, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748937', 3748937, '169.787094', '0.045730', '-115.892303', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73192, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748941', 3748941, '145.535507', '4.850001', '-129.478104', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72920, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748942', 3748942, '119.305603', '3.909301', '-132.622696', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72648, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748943', 3748943, '109.916496', '3.556486', '-129.240601', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748944', 3748944, '224.505905', '-2.975556', '-56.412651', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72104, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748945', 3748945, '175.332993', '6.489766', '-41.243931', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748946', 3748946, '186.449905', '4.165666', '-17.319040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748947', 3748947, '281.825989', '-9.100459', '2.598387', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71832, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748949', 3748949, '288.471710', '-11.734230', '-3.952133', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71560, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748950', 3748950, '278.492310', '-14.114640', '-37.338871', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71288, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748953', 3748953, '324.544098', '-13.504280', '-33.615669', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748954', 3748954, '329.030212', '-13.565320', '-29.770399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748955', 3748955, '356.861603', '-15.283880', '-44.573921', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748956', 3748956, '347.890411', '-17.502140', '8.102493', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748962', 3748962, '150.469193', '19.150021', '-76.524040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748963', 3748963, '146.044098', '19.581060', '-88.241302', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748964', 3748964, '117.082397', '20.462299', '-97.062683', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748967', 3748967, '142.873703', '16.403400', '-46.097549', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748968', 3748968, '400.991608', '-12.783140', '-32.000870', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748969', 3748969, '366.536896', '-16.189871', '-58.854092', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748970', 3748970, '415.234192', '-14.170130', '-62.547722', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748972', 3748972, '432.695709', '-16.065250', '-112.148399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748974', 3748974, '436.729889', '-14.846640', '-118.392700', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68840, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748976', 3748976, '441.284088', '-15.576560', '-96.939430', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68568, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748980', 3748980, '384.960602', '-17.809891', '-96.639427', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68296, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748986', 3748986, '389.761108', '-17.502140', '-101.701401', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3748990', 3748990, '391.353210', '-17.460060', '-135.489304', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749004', 3749004, '172.667496', '7.527369', '-42.066410', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749018', 3749018, '187.591705', '4.184689', '-15.078180', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749020', 3749020, '183.022797', '5.398401', '-15.566580', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749031', 3749031, '202.090393', '0.810960', '-15.619060', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749036', 3749036, '199.896393', '1.465439', '-15.630680', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749047', 3749047, '143.173706', '15.773830', '-43.893311', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749053', 3749053, '153.171097', '16.202070', '-56.630402', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749059', 3749059, '151.803696', '19.216890', '-78.848953', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749061', 3749061, '153.666504', '19.040461', '-76.088043', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749071', 3749071, '144.894501', '19.988741', '-106.295998', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749073', 3749073, '142.185501', '20.171949', '-108.059097', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749080', 3749080, '115.432404', '20.583151', '-99.077271', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749083', 3749083, '114.653099', '20.724030', '-96.549553', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749168', 3749168, '312.979492', '-19.718349', '-75.451233', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62252, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749170', 3749170, '261.730194', '-19.718349', '-82.128349', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61980, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749172', 3749172, '274.699402', '-19.718349', '-117.167198', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61708, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749173', 3749173, '291.363098', '-19.718349', '-136.065598', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749174', 3749174, '342.729797', '-19.718349', '-131.071106', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749175', 3749175, '353.724091', '-19.718349', '-85.215424', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749176', 3749176, '333.410095', '-19.718349', '-136.385498', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60620, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749177', 3749177, '319.949188', '-19.718349', '-179.156403', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60348, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749178', 3749178, '308.689301', '-19.718349', '-60.698299', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60142, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749180', 3749180, '311.695190', '-19.718349', '-58.346031', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59870, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749183', 3749183, '330.312012', '-19.729959', '-70.267838', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59598, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749186', 3749186, '296.119995', '-19.718349', '-90.360474', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59326, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749187', 3749187, '293.415802', '-19.718349', '-93.414520', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59054, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749188', 3749188, '290.216614', '-19.718349', '-87.193253', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58782, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749189', 3749189, '258.481415', '-19.718349', '-104.208000', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58510, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749190', 3749190, '252.984802', '-19.718349', '-103.640099', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58238, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749191', 3749191, '257.907715', '-19.718349', '-125.303101', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57966, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749192', 3749192, '286.451904', '-19.718349', '-129.699097', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57694, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749193', 3749193, '282.557892', '-19.718349', '-147.388199', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57422, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749195', 3749195, '310.290314', '-19.718349', '-172.318802', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57150, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749196', 3749196, '313.118591', '-19.718349', '-169.401993', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56878, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749197', 3749197, '310.587006', '-19.718349', '-142.173401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56606, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749199', 3749199, '350.892212', '-19.718349', '-150.816696', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56334, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749200', 3749200, '368.409302', '-19.718349', '-144.276596', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56062, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749201', 3749201, '364.918213', '-19.718349', '-140.378006', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55790, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749202', 3749202, '359.256592', '-19.718349', '-116.557503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55518, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749203', 3749203, '346.291199', '-19.718349', '-105.267899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55246, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749204', 3749204, '371.776215', '-19.718349', '-104.967796', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54974, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(258, 'e0024', 'bnpc3749211', 3749211, '123.998703', '28.662880', '-17.350370', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51474, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(258, 'e0024', 'bnpc3749213', 3749213, '121.332397', '28.612700', '-23.583090', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51208, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(258, 'e0024', 'bnpc3749215', 3749215, '161.791397', '28.213881', '-14.786040', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50936, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(258, 'e0024', 'bnpc3749218', 3749218, '137.021805', '28.624880', '-23.498341', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50658, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(258, 'e0024', 'bnpc3749219', 3749219, '107.272903', '29.216610', '-36.643101', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749222', 3749222, '149.401093', '28.610600', '-15.610050', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50120, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(258, 'e0024', 'bnpc3749223', 3749223, '148.790604', '28.610600', '-15.152280', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49842, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(258, 'e0024', 'bnpc3749225', 3749225, '122.827698', '28.633169', '-37.359280', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749226', 3749226, '104.128304', '29.031771', '-49.110481', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49304, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(258, 'e0024', 'bnpc3749235', 3749235, '93.149368', '29.525270', '-84.964371', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749239', 3749239, '67.895287', '30.429380', '-70.394157', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749240', 3749240, '65.047180', '30.255060', '-77.079674', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749241', 3749241, '44.682369', '28.535789', '-84.546478', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749242', 3749242, '66.806038', '29.155720', '-109.342300', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749245', 3749245, '204.538101', '7.350389', '-181.293304', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749246', 3749246, '174.853104', '5.172761', '-202.929794', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749247', 3749247, '263.069611', '8.545942', '-196.205307', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749252', 3749252, '231.435593', '1.119558', '-165.006302', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749253', 3749253, '173.375305', '2.771811', '-168.286102', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749255', 3749255, '157.126694', '3.796749', '-121.347397', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749257', 3749257, '115.770103', '4.592918', '-127.306099', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749275', 3749275, '161.730301', '-1.754834', '-239.398804', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749277', 3749277, '185.534393', '-1.754834', '-265.705414', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749279', 3749279, '210.539902', '-1.750040', '-309.299408', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749284', 3749284, '211.839401', '-1.750030', '-306.582611', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749290', 3749290, '143.733002', '-1.750026', '-193.558701', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749297', 3749297, '144.345306', '0.955883', '-165.104004', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749310', 3749310, '216.777496', '0.994229', '-97.056053', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749312', 3749312, '169.933899', '2.409006', '-84.351593', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749314', 3749314, '219.378906', '-3.433327', '-46.921539', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749321', 3749321, '277.040192', '-7.191899', '-0.686294', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749327', 3749327, '331.429810', '-13.937110', '-37.954071', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749332', 3749332, '384.322205', '-19.359289', '-5.627488', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749336', 3749336, '382.853088', '-20.412571', '-0.889114', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749338', 3749338, '359.951508', '-16.405090', '-60.846310', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749343', 3749343, '451.404602', '-11.420970', '-118.535599', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749351', 3749351, '384.249603', '-17.667879', '-125.562897', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749357', 3749357, '297.316589', '-19.718349', '-70.108559', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749359', 3749359, '289.558197', '-19.718349', '-103.097801', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749362', 3749362, '240.405807', '-18.104980', '-89.540627', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749364', 3749364, '283.065491', '-19.718349', '-125.167999', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749367', 3749367, '267.129913', '-18.000000', '-169.891296', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749369', 3749369, '264.685486', '-18.000000', '-168.247101', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749370', 3749370, '316.532898', '-19.718349', '-157.003693', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749371', 3749371, '353.619995', '-19.718349', '-109.615997', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749373', 3749373, '339.318695', '-19.718349', '-85.941147', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749376', 3749376, '165.671799', '11.656820', '-52.356880', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749380', 3749380, '172.813995', '6.716133', '-26.881840', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749388', 3749388, '191.772202', '-0.202088', '-35.283329', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749390', 3749390, '136.510300', '18.512560', '-57.480461', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749392', 3749392, '133.468002', '19.606770', '-81.872276', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749396', 3749396, '128.184402', '20.219101', '-102.714104', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749397', 3749397, '116.821999', '23.443171', '-63.701351', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749399', 3749399, '86.653412', '30.354231', '-83.224442', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749402', 3749402, '86.953407', '29.540970', '-103.119400', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3749404', 3749404, '58.939091', '30.914900', '-69.530090', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3751223', 3751223, '27.075630', '19.825541', '-258.167999', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79592, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(258, 'e0024', 'bnpc3751224', 3751224, '25.641180', '19.827999', '-262.593201', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80674, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(258, 'e0024', 'bnpc3751325', 3751325, '-86.401451', '-0.314426', '-202.187195', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3751326', 3751326, '-89.241432', '-0.377375', '-203.793503', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3751327', 3751327, '-54.347431', '10.746100', '-226.743500', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3751329', 3751329, '14.423480', '6.148088', '-236.752106', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3751331', 3751331, '-1.214684', '-0.950067', '-207.831497', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3751332', 3751332, '-12.497190', '11.337410', '-273.731598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3751350', 3751350, '12.680810', '9.512568', '-296.489288', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3751353', 3751353, '-5.330978', '16.424870', '-314.262909', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3751354', 3751354, '-110.742599', '-1.464606', '-173.727402', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3782203', 3782203, '-10.133880', '-3.109667', '-92.309822', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3782206', 3782206, '-5.820518', '-2.317021', '-88.935387', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3782208', 3782208, '-16.094000', '-4.734633', '-82.939987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3782210', 3782210, '-16.866150', '-3.490384', '-51.955761', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3782566', 3782566, '219.465393', '20.017179', '421.855988', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177456, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3782567', 3782567, '215.101303', '19.951290', '418.621094', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177184, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3782571', 3782571, '276.496490', '14.358410', '504.494598', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176912, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3782572', 3782572, '274.299194', '14.525580', '502.022614', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170662, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3782576', 3782576, '223.506195', '14.214930', '465.799103', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176640, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3782578', 3782578, '228.904907', '14.555940', '463.312805', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176368, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3782579', 3782579, '240.208405', '14.734180', '473.802307', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176096, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3782581', 3782581, '203.301804', '12.792270', '451.523285', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175824, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc3782585', 3782585, '230.220703', '14.451260', '471.293915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173926, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(258, 'e0024', 'bnpc4057631', 4057631, '-117.387497', '15.659340', '316.159485', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22414, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(258, 'e0024', 'bnpc4057642', 4057642, '32.356911', '15.912200', '575.715027', 797, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22148, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(258, 'e0024', 'bnpc4057659', 4057659, '-26.174540', '-2.337916', '-130.147400', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21882, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(258, 'e0024', 'bnpc4057662', 4057662, '7.597365', '-2.072273', '-178.519897', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21610, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(258, 'e0024', 'bnpc4621827', 4621827, '-293.653107', '18.424400', '-380.671600', 2770, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22760, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4057759', 4057759, '-167.171906', '25.428049', '-361.451508', 798, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27716, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(260, 'e0026', 'bnpc4057772', 4057772, '-250.234695', '27.956100', '-323.354889', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27450, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(260, 'e0026', 'bnpc4057782', 4057782, '-56.647308', '26.533920', '-382.801697', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27184, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(260, 'e0026', 'bnpc4057793', 4057793, '-250.333099', '7.167006', '413.444885', 1342, 0, 0, 0, 0, 6, 0, 0, 1278, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26918, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(260, 'e0026', 'bnpc4128048', 4128048, '-402.311707', '13.399570', '-383.545898', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128049', 4128049, '-398.984802', '13.399560', '-382.573486', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128050', 4128050, '-398.703003', '13.473630', '-399.130188', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128051', 4128051, '-349.172211', '14.053470', '-371.236786', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128052', 4128052, '-363.032715', '12.848900', '-352.263092', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128053', 4128053, '-344.625000', '14.389220', '-374.166504', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128054', 4128054, '-361.864685', '12.175190', '-319.089905', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128055', 4128055, '-357.923309', '12.323080', '-315.838715', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128056', 4128056, '-366.900909', '12.044570', '-313.915009', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128057', 4128057, '-345.540588', '14.114500', '-368.795288', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128058', 4128058, '-306.752106', '19.363649', '-347.920990', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128059', 4128059, '-303.998688', '19.825630', '-345.763611', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128061', 4128061, '-329.335510', '13.992490', '-311.024689', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128062', 4128062, '-334.273499', '12.735820', '-272.286011', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128063', 4128063, '-332.188293', '12.773240', '-274.762512', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128064', 4128064, '-275.553406', '19.811119', '-300.743988', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128065', 4128065, '-277.943207', '19.468559', '-300.616791', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128066', 4128066, '-216.697205', '19.814110', '-291.068909', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128067', 4128067, '-219.086899', '19.669310', '-290.941803', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128068', 4128068, '-215.855301', '18.862061', '-286.262787', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128069', 4128069, '-251.503403', '17.336300', '-282.862091', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155656, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128071', 4128071, '-277.037994', '27.629240', '-446.633911', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155390, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128072', 4128072, '-293.590302', '20.134371', '-406.301605', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155118, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(260, 'e0026', 'bnpc4128073', 4128073, '-241.107803', '23.575130', '-427.206787', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154846, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128074', 4128074, '-233.356293', '23.788820', '-423.636292', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128075', 4128075, '-192.850494', '24.439541', '-471.427490', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128076', 4128076, '-225.719101', '22.713610', '-511.794586', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128078', 4128078, '-234.581894', '23.154600', '-503.730499', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128080', 4128080, '-99.297150', '11.812300', '-624.887512', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128081', 4128081, '-101.063499', '14.100460', '-548.412415', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128082', 4128082, '-57.090172', '5.200434', '-542.299622', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128083', 4128083, '-1.143898', '7.618513', '-528.769287', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128085', 4128085, '5.080926', '7.618519', '-537.079224', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128089', 4128089, '-156.176102', '17.047890', '-567.528198', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128090', 4128090, '-129.437500', '14.855080', '-587.989197', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128095', 4128095, '-28.120790', '6.618664', '-619.769470', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151576, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128096', 4128096, '-29.463200', '6.619354', '-617.967285', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151304, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128097', 4128097, '-24.055080', '6.620687', '-614.076782', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151032, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128098', 4128098, '-25.895201', '4.928910', '-647.637573', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150760, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128099', 4128099, '-12.619260', '4.562378', '-658.594727', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150488, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128100', 4128100, '-9.942262', '4.207929', '-660.454895', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150216, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128102', 4128102, '-63.811069', '7.713764', '-671.437012', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149944, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128103', 4128103, '-56.610531', '6.680237', '-675.225220', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149672, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128104', 4128104, '-63.511070', '7.475504', '-669.236084', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149400, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128105', 4128105, '-82.276627', '12.964970', '-712.882813', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149128, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128106', 4128106, '-75.376091', '12.702090', '-718.871826', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148856, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128107', 4128107, '-82.576622', '13.183150', '-715.083679', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148584, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128108', 4128108, '-92.149231', '14.084050', '-719.172974', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128109', 4128109, '-50.418240', '10.700190', '-716.867188', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128110', 4128110, '-36.628948', '10.796120', '-721.924072', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128111', 4128111, '-34.110340', '9.565180', '-718.908081', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128112', 4128112, '-22.776590', '6.822047', '-697.630371', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128113', 4128113, '39.229660', '3.128414', '-685.332397', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128114', 4128114, '36.552662', '2.610799', '-683.472229', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128115', 4128115, '42.912899', '6.469104', '-652.670776', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128119', 4128119, '-65.089844', '4.250028', '-634.668091', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128250', 4128250, '40.021858', '6.264256', '-433.494293', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128252', 4128252, '55.418652', '12.390480', '-491.216187', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128253', 4128253, '77.684799', '10.281420', '-468.654602', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128254', 4128254, '89.542992', '10.303750', '-428.138397', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128255', 4128255, '137.875504', '10.065270', '-451.167206', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128256', 4128256, '35.210232', '9.730854', '-485.420990', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128257', 4128257, '183.695404', '14.216050', '-465.348206', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128258', 4128258, '-100.389198', '14.631890', '-227.392395', 2259, 0, 0, 0, 1, 6, 0, 0, 1998, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123312, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128259', 4128259, '-97.276253', '14.631890', '-215.328506', 2260, 0, 0, 0, 1, 6, 0, 0, 1999, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123046, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128260', 4128260, '-75.621529', '14.631890', '-214.231506', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128261', 4128261, '-120.924698', '14.520920', '-211.301697', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128262', 4128262, '-73.457458', '14.731040', '-236.287506', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128263', 4128263, '-89.280579', '15.629060', '-251.062103', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128264', 4128264, '-112.932098', '15.533810', '-246.046600', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128265', 4128265, '-121.350601', '14.949070', '-239.633499', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128269', 4128269, '-1.754883', '15.457340', '-292.500214', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142358, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(260, 'e0026', 'bnpc4128270', 4128270, '-5.172852', '15.518430', '-288.410797', 169, 0, 0, 0, 0, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142092, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4128271', 4128271, '-26.595400', '16.964270', '-310.556000', 169, 0, 0, 0, 1, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141820, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4128272', 4128272, '-6.968165', '15.539780', '-293.998108', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141542, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4128273', 4128273, '-3.867146', '14.547090', '-326.988495', 169, 0, 0, 0, 0, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141276, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(260, 'e0026', 'bnpc4128274', 4128274, '-1.742153', '14.339200', '-330.423615', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140998, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(260, 'e0026', 'bnpc4128275', 4128275, '-16.894220', '15.891530', '-344.307587', 169, 0, 0, 0, 1, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140732, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4128276', 4128276, '-36.352852', '15.737740', '-281.239685', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140454, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4128285', 4128285, '86.811409', '3.880296', '-641.041382', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140194, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(260, 'e0026', 'bnpc4129531', 4129531, '154.758194', '4.167945', '-538.420471', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139922, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(260, 'e0026', 'bnpc4129542', 4129542, '86.147247', '2.628398', '-610.838013', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139656, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4130363', 4130363, '99.626099', '3.646851', '-655.359680', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4130365', 4130365, '137.834702', '3.433289', '-594.293091', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139112, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4130366', 4130366, '148.899902', '5.148987', '-530.581482', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138840, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4130369', 4130369, '124.284698', '2.822876', '-604.577820', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138562, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(260, 'e0026', 'bnpc4130372', 4130372, '124.864502', '2.731323', '-606.225708', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138296, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(260, 'e0026', 'bnpc4130374', 4130374, '161.030197', '2.624552', '-609.139282', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138018, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4130377', 4130377, '161.330200', '3.682087', '-563.744324', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137746, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4130378', 4130378, '98.850403', '6.344423', '-544.399780', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137480, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(260, 'e0026', 'bnpc4130379', 4130379, '100.378799', '6.344423', '-543.894287', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137202, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(260, 'e0026', 'bnpc4130380', 4130380, '11.922580', '6.840849', '-592.719177', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136936, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(260, 'e0026', 'bnpc4130381', 4130381, '13.302400', '7.038995', '-591.807983', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136658, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(260, 'e0026', 'bnpc4130382', 4130382, '19.505831', '19.298901', '-624.247314', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136392, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(260, 'e0026', 'bnpc4130383', 4130383, '20.782539', '19.319000', '-625.061401', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136114, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(260, 'e0026', 'bnpc4130386', 4130386, '37.483280', '18.026581', '-609.961670', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135848, 1, 0, 0, 0, 20, 30072, 0, 0, 0), +(260, 'e0026', 'bnpc4130388', 4130388, '36.074890', '17.983601', '-608.959229', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135570, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(260, 'e0026', 'bnpc4130389', 4130389, '37.643921', '17.440981', '-596.398926', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135298, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4130390', 4130390, '24.155029', '17.990360', '-604.119995', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135032, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4130403', 4130403, '22.943991', '6.252352', '-608.046997', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134754, 1, 0, 0, 0, 20, 30083, 0, 0, 0), +(260, 'e0026', 'bnpc4130404', 4130404, '38.940979', '7.903199', '-595.086975', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134488, 1, 0, 0, 0, 20, 30077, 0, 0, 0), +(260, 'e0026', 'bnpc4130431', 4130431, '66.514038', '9.567322', '-576.257019', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134216, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4130432', 4130432, '18.704010', '7.066027', '-628.667725', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133938, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4130682', 4130682, '95.351791', '6.393626', '-542.884888', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133666, 1, 0, 0, 0, 20, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4130683', 4130683, '84.609253', '6.344424', '-545.683472', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133400, 1, 0, 0, 0, 20, 30077, 0, 0, 0), +(260, 'e0026', 'bnpc4130705', 4130705, '92.140930', '6.705567', '-559.693420', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133128, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4130708', 4130708, '98.243317', '6.344424', '-537.346680', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132850, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4130800', 4130800, '-385.468414', '13.547760', '-376.772614', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4130805', 4130805, '-326.314209', '15.945620', '-388.265808', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4130806', 4130806, '-305.992188', '11.810610', '-274.036194', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4130807', 4130807, '-231.864395', '4.434839', '-243.585495', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4130808', 4130808, '-229.445007', '4.279073', '-242.303406', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4130809', 4130809, '-189.227203', '19.363649', '-294.819611', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4130811', 4130811, '-71.915771', '15.823550', '-267.627991', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4130813', 4130813, '-70.176270', '15.579410', '-265.919006', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4130814', 4130814, '-119.981796', '19.729919', '-275.562714', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4130819', 4130819, '-21.895340', '6.009452', '-485.204193', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4130821', 4130821, '-26.265631', '3.170915', '-553.012085', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4130827', 4130827, '-105.577202', '20.767460', '-487.358002', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4130829', 4130829, '-155.776306', '20.648140', '-534.493225', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4130832', 4130832, '-62.007500', '3.030127', '-631.860474', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4130836', 4130836, '-61.692261', '4.837097', '-580.163330', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4130839', 4130839, '-91.172493', '13.691580', '-698.557617', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4130842', 4130842, '-16.285299', '3.398638', '-675.862915', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4131461', 4131461, '82.139282', '2.612924', '-669.048584', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4131466', 4131466, '80.602791', '2.681827', '-667.547119', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4131467', 4131467, '142.968597', '2.741290', '-677.939270', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4131470', 4131470, '166.607895', '8.180286', '-517.830872', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4131473', 4131473, '97.571892', '10.129180', '-455.764313', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4131477', 4131477, '48.494888', '6.708367', '-437.703308', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4131480', 4131480, '12.300930', '7.902957', '-513.924316', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4131487', 4131487, '-19.243019', '5.989767', '-481.780304', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4131489', 4131489, '45.965000', '4.000000', '-353.260895', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4131491', 4131491, '44.038780', '4.000000', '-355.090515', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4131492', 4131492, '-277.563599', '21.317619', '-408.466705', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4131494', 4131494, '-220.691895', '23.733870', '-445.561493', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4131495', 4131495, '-203.367996', '20.050930', '-538.838074', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132134', 4132134, '-23.739849', '6.019080', '-587.944885', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124382, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132161', 4132161, '-219.349106', '4.013124', '-175.605194', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132178', 4132178, '-223.713196', '3.981025', '-172.004196', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132179', 4132179, '-217.822601', '5.111694', '-152.941193', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132181', 4132181, '-255.092102', '4.214314', '-101.690002', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132182', 4132182, '-260.379913', '3.866467', '-142.158005', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120264, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132184', 4132184, '-284.843506', '4.387352', '-61.849739', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119992, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132186', 4132186, '-281.833313', '4.514743', '-60.248520', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132187', 4132187, '-330.772186', '4.539914', '-70.267380', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132191', 4132191, '-395.325806', '4.134359', '-44.501831', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132194', 4132194, '-412.872314', '3.503397', '-46.007912', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132197', 4132197, '-392.828613', '4.906980', '-40.147282', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132355', 4132355, '-121.233002', '7.370056', '452.140015', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90682, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132356', 4132356, '-38.284969', '7.583679', '405.569489', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118360, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132357', 4132357, '-30.167110', '8.163513', '413.107391', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118088, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132358', 4132358, '-78.294067', '8.377136', '475.181000', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90410, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132359', 4132359, '-112.962601', '7.400574', '493.125702', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90138, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132360', 4132360, '-118.791496', '6.423950', '489.219513', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89866, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132361', 4132361, '-4.867676', '10.116700', '466.422485', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117816, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132362', 4132362, '74.448730', '8.224609', '416.708588', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117544, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132363', 4132363, '-96.391296', '12.802250', '545.708374', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117272, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132364', 4132364, '-162.951096', '7.675232', '421.805206', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89594, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132367', 4132367, '-195.513901', '8.987488', '460.166290', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89322, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4132371', 4132371, '-247.455597', '14.572330', '601.159729', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132373', 4132373, '-265.674896', '14.389220', '594.628723', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132374', 4132374, '-409.506897', '2.863013', '643.319275', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132375', 4132375, '-373.173615', '1.482062', '830.041687', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132376', 4132376, '-303.572998', '0.554237', '737.432800', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132377', 4132377, '-285.938812', '8.895996', '674.952271', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115664, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132378', 4132378, '-321.243011', '0.748059', '738.623108', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132379', 4132379, '-228.992203', '-0.198364', '779.568115', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132381', 4132381, '-214.807693', '1.408311', '692.128296', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132385', 4132385, '30.807980', '25.375731', '552.178101', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114576, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132386', 4132386, '86.625488', '18.020809', '513.389587', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114304, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132387', 4132387, '152.666504', '8.346619', '585.931030', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132389', 4132389, '95.506104', '14.938600', '536.278198', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132390', 4132390, '-41.311451', '8.914728', '618.996887', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132391', 4132391, '55.148140', '12.639380', '622.588928', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132394', 4132394, '99.351440', '5.569519', '656.366699', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132395', 4132395, '49.166569', '12.003170', '629.394592', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132398', 4132398, '-155.296402', '-0.249691', '684.087891', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112406, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132402', 4132402, '-128.552399', '-6.248472', '698.360413', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132403', 4132403, '-82.598297', '-7.092235', '672.947815', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132404', 4132404, '-47.857578', '-2.212809', '690.802612', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132405', 4132405, '-43.152802', '-0.921682', '679.936829', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132406', 4132406, '-28.558571', '-0.125700', '752.652527', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132407', 4132407, '-54.816002', '-0.469275', '771.766785', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132408', 4132408, '-157.322098', '-1.367114', '781.628418', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132409', 4132409, '-162.195999', '-0.433001', '772.940186', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132410', 4132410, '-153.362198', '0.387354', '735.776123', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132411', 4132411, '-99.790901', '-2.270120', '789.114685', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132415', 4132415, '-174.253799', '4.062513', '619.920715', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109408, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4132416', 4132416, '103.926498', '3.903357', '915.233887', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4133094', 4133094, '136.949707', '3.216623', '756.322510', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4133095', 4133095, '256.006012', '6.944463', '820.505676', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108604, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4133096', 4133096, '200.758102', '5.104731', '868.748230', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4133097', 4133097, '152.132797', '4.348816', '821.800720', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108060, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4133098', 4133098, '194.324295', '4.776027', '863.148987', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107788, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4133099', 4133099, '229.417892', '4.637394', '902.513123', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107516, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4133100', 4133100, '83.255379', '4.406397', '848.491577', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107244, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4133102', 4133102, '-428.485687', '5.673192', '569.950806', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106978, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4133105', 4133105, '-431.695404', '7.408978', '526.095520', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4133106', 4133106, '-391.061707', '7.983613', '532.203613', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106434, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4133107', 4133107, '-311.320892', '6.989801', '543.801514', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106162, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4133108', 4133108, '-385.831696', '6.261216', '581.952576', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105890, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4133109', 4133109, '-404.812103', '8.978989', '481.090607', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105618, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4133111', 4133111, '-435.612488', '7.492519', '530.732178', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4133112', 4133112, '-368.011810', '7.345028', '545.098206', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105074, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4133142', 4133142, '2.160542', '13.238140', '867.918884', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133143', 4133143, '-9.752866', '13.238140', '862.073975', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104452, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133146', 4133146, '-38.601059', '-3.610238', '870.833984', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104180, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133147', 4133147, '3.913166', '5.198262', '844.633179', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133149', 4133149, '-23.697269', '-3.494385', '830.106018', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103636, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133150', 4133150, '-47.257198', '-4.837158', '821.164185', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133152', 4133152, '-99.204224', '-4.564651', '854.179871', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103092, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133153', 4133153, '-91.265266', '-5.356507', '842.750183', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133155', 4133155, '-104.580101', '-4.512669', '850.706116', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102542, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133160', 4133160, '-40.085510', '-3.585876', '880.033630', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102270, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133166', 4133166, '23.838100', '-0.302399', '832.912781', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133167', 4133167, '31.011000', '5.208305', '877.738525', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101732, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133171', 4133171, '23.808920', '0.563182', '709.098083', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101520, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133175', 4133175, '-208.948196', '-2.203250', '889.001587', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101272, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133854', 4133854, '-169.319504', '-3.498206', '849.864197', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101000, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133856', 4133856, '-294.270294', '5.081238', '808.072021', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100728, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133857', 4133857, '-252.533798', '3.371831', '695.150513', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100456, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133858', 4133858, '-360.768585', '11.544860', '664.182312', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100184, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133859', 4133859, '-93.662338', '7.398253', '582.921509', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99912, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133860', 4133860, '-173.964798', '7.509760', '511.382202', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133861', 4133861, '-63.357861', '7.614773', '373.184204', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99368, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133862', 4133862, '30.766090', '9.412603', '441.489288', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133863', 4133863, '-36.250969', '13.359000', '500.993500', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133864', 4133864, '127.540901', '8.141046', '481.803406', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133865', 4133865, '80.714157', '14.492840', '579.852722', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133866', 4133866, '-16.843950', '17.676241', '580.152710', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133867', 4133867, '24.143961', '2.411896', '671.088074', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133868', 4133868, '140.561096', '7.403133', '627.360474', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133869', 4133869, '96.573219', '4.412809', '794.674683', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133870', 4133870, '197.362503', '4.724640', '803.828918', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133872', 4133872, '130.937607', '8.480643', '895.933289', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133874', 4133874, '-1.962330', '-3.925701', '819.197571', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96376, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(260, 'e0026', 'bnpc4133877', 4133877, '-40.858768', '-4.353204', '847.265625', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4133878', 4133878, '-102.367302', '-5.084877', '872.023987', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4134559', 4134559, '-383.817688', '-1.011531', '901.672424', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4134560', 4134560, '-288.511597', '10.613900', '859.882324', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4134561', 4134561, '-351.064606', '6.710670', '883.250427', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4134562', 4134562, '200.244095', '10.299800', '649.805420', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92580, 1, 0, 0, 0, 24, 30058, 0, 0, 0), +(260, 'e0026', 'bnpc4134563', 4134563, '226.015793', '8.615845', '608.168701', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94750, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4134564', 4134564, '183.543503', '9.768476', '646.637512', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94400, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4135246', 4135246, '243.579697', '8.834900', '694.209229', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92308, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(260, 'e0026', 'bnpc4135251', 4135251, '295.658600', '8.371674', '624.363525', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94128, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4135252', 4135252, '224.383896', '9.530697', '660.020325', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93934, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4135254', 4135254, '219.592499', '8.926453', '678.248291', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91764, 1, 0, 0, 0, 24, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4135932', 4135932, '214.160294', '8.957031', '677.332581', 168, 0, 0, 0, 0, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93662, 1, 0, 0, 0, 24, 30060, 0, 0, 0), +(260, 'e0026', 'bnpc4135934', 4135934, '323.184814', '6.857816', '665.903687', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93312, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4135935', 4135935, '329.342285', '7.113992', '659.138672', 166, 0, 0, 0, 1, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92036, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4135936', 4135936, '289.562012', '7.415476', '729.328918', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93040, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4135937', 4135937, '238.798294', '8.794422', '722.661011', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92846, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4136006', 4136006, '-7.705540', '1.187112', '-24.901859', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4136008', 4136008, '-62.727612', '-2.486439', '-1.833968', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4136009', 4136009, '-95.048462', '-2.365173', '28.824221', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4136012', 4136012, '-46.066471', '8.494778', '123.064003', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4136033', 4136033, '-271.290192', '10.421880', '211.047501', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4136034', 4136034, '-264.806305', '7.399314', '162.775604', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4136037', 4136037, '-177.294601', '7.125916', '20.614929', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4136039', 4136039, '43.869629', '35.416142', '165.728104', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4136040', 4136040, '-23.361570', '40.512569', '240.161697', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4136226', 4136226, '-131.853699', '13.179720', '86.700623', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4137046', 4137046, '52.658810', '2.883911', '-257.434998', 740, 0, 0, 0, 0, 6, 0, 0, 253, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68890, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(260, 'e0026', 'bnpc4137048', 4137048, '55.832760', '2.914429', '-254.505203', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66992, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4137050', 4137050, '79.179077', '3.768982', '-271.045990', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71054, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4137065', 4137065, '21.736320', '5.244883', '-278.538391', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70782, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4137066', 4137066, '57.419899', '4.007567', '-299.611694', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66176, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4137892', 4137892, '-39.719238', '-0.900330', '-152.208694', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71326, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4137893', 4137893, '-91.355766', '-1.724304', '-58.945621', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68074, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4137894', 4137894, '-71.905777', '-1.906798', '-74.343948', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66448, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4137912', 4137912, '-174.456406', '39.993900', '160.387604', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72414, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4137914', 4137914, '-174.029205', '39.993900', '155.352097', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55834, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4137915', 4137915, '-169.848206', '39.993900', '158.342804', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65088, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4137927', 4137927, '-140.215103', '18.539671', '118.211700', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67264, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(260, 'e0026', 'bnpc4137928', 4137928, '-103.074699', '27.908689', '120.592003', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70516, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4137929', 4137929, '-135.423798', '37.125118', '176.409500', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72686, 2, 0, 0, 0, 42, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4137937', 4137937, '-95.628304', '45.792240', '195.269699', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56106, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(260, 'e0026', 'bnpc4137938', 4137938, '-61.905880', '44.937740', '212.664902', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65632, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(260, 'e0026', 'bnpc4137941', 4137941, '-88.853271', '43.381351', '152.910599', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65904, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(260, 'e0026', 'bnpc4137947', 4137947, '-24.093990', '38.986820', '206.042603', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55018, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4137948', 4137948, '-44.113831', '43.259281', '222.186493', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71598, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4137953', 4137953, '-163.534897', '40.000000', '151.507095', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55290, 2, 0, 0, 0, 42, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4137955', 4137955, '24.765381', '2.761841', '-0.717224', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66720, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(260, 'e0026', 'bnpc4137956', 4137956, '-79.850456', '45.792240', '193.377594', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71870, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4137966', 4137966, '-42.954159', '8.255066', '51.499149', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70244, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4137967', 4137967, '-112.382797', '12.191960', '75.883057', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68618, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4137979', 4137979, '75.730469', '25.253660', '204.974396', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55562, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4137980', 4137980, '111.253502', '13.778870', '152.666504', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72142, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4137982', 4137982, '124.528801', '13.931460', '143.175400', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65360, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(260, 'e0026', 'bnpc4137991', 4137991, '112.391602', '9.231154', '192.303696', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 49, 0, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 54734, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4137993', 4137993, '111.772301', '8.529010', '204.422699', 741, 0, 0, 0, 1, 6, 0, 0, 2296, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69700, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4138003', 4138003, '145.462601', '13.997980', '239.934799', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68346, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4138054', 4138054, '244.128998', '7.980469', '-24.460270', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40838, 2, 0, 0, 0, 44, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4138055', 4138055, '208.087296', '7.980469', '104.387001', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41110, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4138056', 4138056, '164.005997', '7.818353', '-31.478350', 739, 0, 0, 0, 1, 6, 0, 0, 1837, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40572, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4138061', 4138061, '345.326508', '8.771392', '-44.180370', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 48, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 41914, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4138062', 4138062, '273.090698', '11.734130', '-9.628479', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42464, 2, 0, 0, 0, 44, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4138065', 4138065, '103.105103', '15.030030', '20.462339', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 48, 0, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 41642, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4138066', 4138066, '76.493408', '12.191390', '20.402031', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42192, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4138067', 4138067, '117.584900', '15.938490', '11.404420', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41382, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4138716', 4138716, '176.348495', '13.992490', '240.985703', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54462, 2, 0, 0, 0, 35, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4138717', 4138717, '158.251205', '13.992490', '254.322006', 741, 0, 0, 0, 1, 6, 0, 0, 2296, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69428, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4138718', 4138718, '174.425797', '13.992490', '235.339798', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67802, 2, 0, 0, 0, 35, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4138722', 4138722, '129.299393', '7.759512', '330.730286', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69972, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4138723', 4138723, '127.946899', '7.071052', '376.910889', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67530, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4138736', 4138736, '45.873520', '23.511459', '-135.133301', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85730, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4138737', 4138737, '34.941601', '23.511471', '-143.619507', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85464, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4140356', 4140356, '38.925659', '23.483580', '-138.689301', 369, 0, 0, 0, 0, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85192, 1, 0, 0, 0, 32, 30073, 0, 0, 0), +(260, 'e0026', 'bnpc4140357', 4140357, '40.383900', '23.511459', '-138.534897', 367, 0, 0, 0, 0, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84914, 1, 0, 0, 0, 32, 30079, 0, 0, 0), +(260, 'e0026', 'bnpc4140358', 4140358, '42.540970', '17.713570', '-101.085297', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84642, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4140359', 4140359, '45.869240', '22.788361', '-122.945396', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84376, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4140360', 4140360, '-3.844561', '8.435183', '-93.056000', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84098, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4140361', 4140361, '-11.875860', '6.747277', '-75.913834', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83832, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(260, 'e0026', 'bnpc4140362', 4140362, '-6.949590', '8.713659', '-105.002502', 367, 0, 0, 0, 0, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83554, 1, 0, 0, 0, 32, 30082, 0, 0, 0), +(260, 'e0026', 'bnpc4140363', 4140363, '-8.319045', '8.596273', '-104.796700', 369, 0, 0, 0, 0, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83288, 1, 0, 0, 0, 32, 30079, 0, 0, 0), +(260, 'e0026', 'bnpc4140373', 4140373, '62.782619', '3.445141', '-267.002686', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82980, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140376', 4140376, '-24.128490', '-0.222955', '-159.058701', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82708, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140377', 4140377, '-83.108093', '-14.744680', '-157.238297', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82436, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140379', 4140379, '-97.737221', '-14.744680', '-145.298904', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140380', 4140380, '-94.201157', '-14.744680', '-142.907806', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81892, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140381', 4140381, '-95.134377', '-14.397570', '-169.786697', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81620, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140383', 4140383, '-53.365379', '-16.085800', '-169.063507', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81348, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140384', 4140384, '-62.683842', '-1.205086', '-107.887497', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81076, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140386', 4140386, '-131.578598', '1.541138', '-134.599899', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80804, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140387', 4140387, '-84.214539', '-1.937927', '-49.942810', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80532, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140388', 4140388, '-95.933533', '-0.900330', '-15.945740', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80260, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140392', 4140392, '-94.041443', '-0.961365', '-14.877620', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79988, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140393', 4140393, '-43.289860', '-1.571716', '1.235901', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140394', 4140394, '-14.218010', '4.090468', '36.143909', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140395', 4140395, '-17.297621', '4.967797', '39.749630', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140398', 4140398, '-101.304703', '12.741210', '80.552368', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140400', 4140400, '-144.371704', '-1.052405', '41.807720', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140401', 4140401, '-107.255699', '28.030760', '124.498299', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140402', 4140402, '-52.008862', '11.528760', '192.386597', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140404', 4140404, '-283.105499', '9.536800', '201.528900', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140405', 4140405, '-118.150597', '4.442561', '248.788605', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140406', 4140406, '-114.824203', '4.493244', '246.347107', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140407', 4140407, '-183.400894', '40.000000', '157.241699', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140408', 4140408, '-169.404205', '40.000000', '143.694000', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140409', 4140409, '-126.916702', '37.668209', '186.635406', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140410', 4140410, '-83.693520', '45.889679', '179.053299', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140411', 4140411, '-85.551117', '45.811230', '209.439102', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140412', 4140412, '20.889589', '36.758911', '209.735199', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140413', 4140413, '112.923897', '13.990590', '141.405304', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140414', 4140414, '160.982407', '13.997970', '233.444595', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140416', 4140416, '146.294601', '13.997970', '244.723495', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140417', 4140417, '124.652702', '8.457688', '313.738892', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140419', 4140419, '139.964203', '7.391594', '192.456802', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140420', 4140420, '224.634705', '8.093283', '86.476837', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140421', 4140421, '253.877808', '8.000000', '-33.567520', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140422', 4140422, '295.798798', '8.000000', '-26.774521', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140423', 4140423, '297.220490', '8.000000', '-29.494390', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4140427', 4140427, '117.781403', '9.346180', '-7.032808', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72916, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4142005', 4142005, '-268.913208', '4.851185', '-90.289322', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4142007', 4142007, '-359.236389', '4.669468', '-59.445290', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4142009', 4142009, '-420.227386', '6.206403', '-20.966650', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4142018', 4142018, '-42.274540', '10.032320', '171.660904', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69162, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4142028', 4142028, '-93.827759', '45.792240', '199.145401', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64816, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4313527', 4313527, '313.771210', '7.980469', '-31.998230', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51244, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(260, 'e0026', 'bnpc4313538', 4313538, '287.709015', '8.000000', '-40.641960', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50972, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(260, 'e0026', 'bnpc4313539', 4313539, '417.063385', '17.715700', '-63.623531', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50688, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4313540', 4313540, '355.620087', '9.881611', '-35.813759', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50422, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4313547', 4313547, '445.548096', '16.678040', '-115.800697', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50156, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(260, 'e0026', 'bnpc4313549', 4313549, '409.744812', '12.774850', '-100.924301', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49812, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4313550', 4313550, '552.483398', '7.583679', '-164.965302', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 49594, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4313551', 4313551, '481.528900', '7.614197', '-157.915604', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49328, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(260, 'e0026', 'bnpc4313552', 4313552, '484.977386', '7.614197', '-157.701996', 740, 0, 0, 0, 0, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49062, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(260, 'e0026', 'bnpc4313556', 4313556, '509.282410', '7.599621', '-134.754105', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48724, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4313557', 4313557, '519.299988', '7.581244', '-127.391800', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48452, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4313560', 4313560, '533.592712', '7.583679', '-79.881042', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47146, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4313561', 4313561, '549.797729', '7.583679', '-92.454468', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48240, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4313562', 4313562, '534.650330', '7.599616', '-75.784973', 740, 0, 0, 0, 0, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47974, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4313563', 4313563, '569.926575', '7.599619', '-77.731194', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47708, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(260, 'e0026', 'bnpc4313564', 4313564, '549.767212', '7.599621', '-67.267418', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 47436, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(260, 'e0026', 'bnpc4313565', 4313565, '442.353912', '18.401279', '-84.513977', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46820, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(260, 'e0026', 'bnpc4313572', 4313572, '631.942383', '7.123771', '-69.111237', 742, 0, 0, 0, 1, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46602, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4329911', 4329911, '-253.803406', '23.269960', '-431.265686', 2188, 0, 0, 0, 6, 6, 0, 0, 1993, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123578, 4, 1, 0, 0, 0, 0, 4329909, 0, 0), +(260, 'e0026', 'bnpc4333133', 4333133, '-201.984695', '24.429350', '-469.400787', 2188, 0, 0, 0, 6, 6, 0, 0, 1993, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122442, 4, 1, 0, 0, 0, 0, 4329909, 0, 0), +(260, 'e0026', 'bnpc4333143', 4333143, '-91.031189', '14.631890', '-220.647095', 2260, 0, 0, 0, 1, 6, 0, 0, 1999, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122182, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4333144', 4333144, '-95.213539', '14.640040', '-232.687607', 2259, 0, 0, 0, 1, 6, 0, 0, 1998, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121904, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4515628', 4515628, '230.071304', '10.431990', '28.589081', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45208, 2, 0, 0, 0, 0, 0, 4515627, 0, 0), +(260, 'e0026', 'bnpc4515630', 4515630, '306.129913', '8.000000', '-35.433121', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44936, 2, 0, 0, 0, 0, 0, 4515617, 0, 0), +(260, 'e0026', 'bnpc4515631', 4515631, '409.323212', '17.164120', '-66.182114', 2457, 0, 0, 0, 2, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44664, 2, 0, 0, 0, 0, 0, 4515622, 0, 0), +(260, 'e0026', 'bnpc4515632', 4515632, '450.431000', '18.142941', '-98.527527', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44392, 2, 0, 0, 0, 0, 0, 4515619, 0, 0), +(260, 'e0026', 'bnpc4515633', 4515633, '528.573975', '7.599619', '-123.610298', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44120, 2, 0, 0, 0, 0, 0, 4515626, 0, 0), +(260, 'e0026', 'bnpc4522053', 4522053, '-108.508598', '-1.658285', '50.827759', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4522057', 4522057, '-20.309811', '4.196167', '-48.355900', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 2, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64278, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4522061', 4522061, '-208.789200', '7.827881', '41.184078', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 3, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64006, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4522063', 4522063, '-277.088593', '16.372860', '105.149902', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 4, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63734, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4522065', 4522065, '-233.600403', '7.156433', '195.910507', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 5, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63462, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4522066', 4522066, '102.342300', '15.152160', '25.375731', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 39762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4522067', 4522067, '-24.155090', '7.522644', '120.195297', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4522069', 4522069, '-114.458000', '7.766785', '222.339096', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4522077', 4522077, '-43.839230', '7.949890', '350.362305', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4522101', 4522101, '108.016403', '9.690581', '194.451294', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4522396', 4522396, '-21.478930', '2.767368', '-38.678539', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62078, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4522398', 4522398, '-207.376999', '7.622232', '46.231140', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 3, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61824, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(260, 'e0026', 'bnpc4522399', 4522399, '-234.055893', '7.389282', '200.963898', 742, 0, 0, 0, 0, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 5, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61534, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4522406', 4522406, '-105.390503', '-1.773797', '46.289669', 742, 0, 0, 0, 0, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61262, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4522407', 4522407, '-271.650208', '14.867290', '104.792099', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 4, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61008, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(260, 'e0026', 'bnpc4522411', 4522411, '-100.910103', '-1.501870', '50.329479', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60736, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4522416', 4522416, '-109.675301', '7.278503', '224.872192', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 60452, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4522419', 4522419, '-28.614960', '7.609998', '118.196198', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 60180, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4522420', 4522420, '-39.757469', '7.899223', '353.966003', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 59908, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(260, 'e0026', 'bnpc4522421', 4522421, '-27.695190', '7.583679', '129.961105', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59642, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4522422', 4522422, '-117.326698', '6.179810', '229.419296', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59370, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4522424', 4522424, '-52.859360', '7.196684', '358.597412', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59098, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4522427', 4522427, '554.650085', '7.583679', '-67.246582', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43854, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4522544', 4522544, '557.138977', '7.599622', '-162.231705', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43582, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4522545', 4522545, '413.717804', '17.929260', '-60.318909', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43310, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4522546', 4522546, '349.712006', '9.286700', '-45.325851', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43038, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4522547', 4522547, '291.672913', '8.000000', '-42.948238', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 42766, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4522549', 4522549, '227.166595', '8.620508', '78.546181', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40288, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4522550', 4522550, '408.039398', '12.424580', '-131.584198', 742, 0, 0, 0, 1, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40010, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4524149', 4524149, '-46.524780', '-1.266479', '10.910160', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58826, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4524160', 4524160, '-52.610519', '-1.409638', '13.605740', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58548, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4524163', 4524163, '14.724910', '1.785278', '16.159300', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58276, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4524164', 4524164, '20.839840', '2.344519', '13.486760', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58010, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4524175', 4524175, '-136.317200', '10.889600', '-70.746132', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57738, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4524176', 4524176, '-142.403000', '11.520290', '-68.050552', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57460, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4524179', 4524179, '-124.245399', '6.484659', '-98.137253', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57200, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4524181', 4524181, '-155.565796', '6.332458', '-43.106812', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56910, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4524206', 4524206, '-163.683502', '7.064880', '7.705750', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56656, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4524215', 4524215, '-100.204201', '12.076750', '75.251801', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56366, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4553442', 4553442, '-200.593903', '7.600075', '38.475250', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54190, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4553443', 4553443, '-17.239441', '3.551795', '-44.301022', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 2, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 53936, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(260, 'e0026', 'bnpc4553444', 4553444, '-243.102203', '7.628644', '196.886398', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53664, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4553445', 4553445, '-277.132202', '14.459210', '114.208504', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53374, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4553446', 4553446, '-118.333702', '6.485046', '-90.318237', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53102, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4553447', 4553447, '-143.133606', '6.438087', '-36.288349', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52848, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4553448', 4553448, '-160.387604', '7.156433', '27.054199', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52576, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4553449', 4553449, '-63.000992', '-1.730121', '-63.235321', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52286, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(260, 'e0026', 'bnpc4577401', 4577401, '-110.148399', '-0.815602', '-20.043240', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4621851', 4621851, '-468.283295', '-2.650424', '95.657677', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28328, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4621852', 4621852, '-103.113701', '45.811230', '205.494797', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28062, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(260, 'e0026', 'bnpc4695634', 4695634, '-218.433502', '5.298542', '95.696121', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4057759', 4057759, '-167.171906', '25.428049', '-361.451508', 798, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27716, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(261, 'e0027', 'bnpc4057772', 4057772, '-250.234695', '27.956100', '-323.354889', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27450, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(261, 'e0027', 'bnpc4057782', 4057782, '-56.647308', '26.533920', '-382.801697', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27184, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(261, 'e0027', 'bnpc4057793', 4057793, '-250.333099', '7.167006', '413.444885', 1342, 0, 0, 0, 0, 6, 0, 0, 1278, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26918, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(261, 'e0027', 'bnpc4128048', 4128048, '-402.311707', '13.399570', '-383.545898', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128049', 4128049, '-398.984802', '13.399560', '-382.573486', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128050', 4128050, '-398.703003', '13.473630', '-399.130188', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128051', 4128051, '-349.172211', '14.053470', '-371.236786', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128052', 4128052, '-363.032715', '12.848900', '-352.263092', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128053', 4128053, '-344.625000', '14.389220', '-374.166504', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128054', 4128054, '-361.864685', '12.175190', '-319.089905', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128055', 4128055, '-357.923309', '12.323080', '-315.838715', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159192, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(261, 'e0027', 'bnpc4128056', 4128056, '-366.900909', '12.044570', '-313.915009', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128057', 4128057, '-345.540588', '14.114500', '-368.795288', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128058', 4128058, '-306.752106', '19.363649', '-347.920990', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128059', 4128059, '-303.998688', '19.825630', '-345.763611', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128061', 4128061, '-329.335510', '13.992490', '-311.024689', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128062', 4128062, '-334.273499', '12.735820', '-272.286011', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128063', 4128063, '-332.188293', '12.773240', '-274.762512', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128064', 4128064, '-275.553406', '19.811119', '-300.743988', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128065', 4128065, '-277.943207', '19.468559', '-300.616791', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128066', 4128066, '-216.697205', '19.814110', '-291.068909', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128067', 4128067, '-219.086899', '19.669310', '-290.941803', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128068', 4128068, '-215.855301', '18.862061', '-286.262787', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128069', 4128069, '-251.503403', '17.336300', '-282.862091', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155656, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128071', 4128071, '-277.037994', '27.629240', '-446.633911', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155390, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128072', 4128072, '-293.590302', '20.134371', '-406.301605', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128073', 4128073, '-241.107803', '23.575130', '-427.206787', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154846, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128074', 4128074, '-233.356293', '23.788820', '-423.636292', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128075', 4128075, '-192.850494', '24.439541', '-471.427490', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128076', 4128076, '-225.719101', '22.713610', '-511.794586', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128078', 4128078, '-234.581894', '23.154600', '-503.730499', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128080', 4128080, '-99.297150', '11.812300', '-624.887512', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128081', 4128081, '-101.063499', '14.100460', '-548.412415', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128082', 4128082, '-57.090172', '5.200434', '-542.299622', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128083', 4128083, '-1.143898', '7.618513', '-528.769287', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128085', 4128085, '5.080926', '7.618519', '-537.079224', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128089', 4128089, '-156.176102', '17.047890', '-567.528198', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128090', 4128090, '-129.437500', '14.855080', '-587.989197', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128095', 4128095, '-28.120790', '6.618664', '-619.769470', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151576, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128096', 4128096, '-29.463200', '6.619354', '-617.967285', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151304, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128097', 4128097, '-24.055080', '6.620687', '-614.076782', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151032, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128098', 4128098, '-25.895201', '4.928910', '-647.637573', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150760, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128099', 4128099, '-12.619260', '4.562378', '-658.594727', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150488, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128100', 4128100, '-9.942262', '4.207929', '-660.454895', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150216, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128102', 4128102, '-63.811069', '7.713764', '-671.437012', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149944, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128103', 4128103, '-56.610531', '6.680237', '-675.225220', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149672, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128104', 4128104, '-63.511070', '7.475504', '-669.236084', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149400, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128105', 4128105, '-82.276627', '12.964970', '-712.882813', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149128, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128106', 4128106, '-75.376091', '12.702090', '-718.871826', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148856, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128107', 4128107, '-82.576622', '13.183150', '-715.083679', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148584, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128108', 4128108, '-92.149231', '14.084050', '-719.172974', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128109', 4128109, '-50.418240', '10.700190', '-716.867188', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128110', 4128110, '-36.628948', '10.796120', '-721.924072', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128111', 4128111, '-34.110340', '9.565180', '-718.908081', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128112', 4128112, '-22.776590', '6.822047', '-697.630371', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128113', 4128113, '39.229660', '3.128414', '-685.332397', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128114', 4128114, '36.552662', '2.610799', '-683.472229', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128115', 4128115, '42.912899', '6.469104', '-652.670776', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128119', 4128119, '-65.089844', '4.250028', '-634.668091', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128250', 4128250, '40.021858', '6.264256', '-433.494293', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128252', 4128252, '55.418652', '12.390480', '-491.216187', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128253', 4128253, '77.684799', '10.281420', '-468.654602', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128254', 4128254, '89.542992', '10.303750', '-428.138397', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128255', 4128255, '137.875504', '10.065270', '-451.167206', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128256', 4128256, '35.210232', '9.730854', '-485.420990', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128257', 4128257, '183.695404', '14.216050', '-465.348206', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128258', 4128258, '-100.389198', '14.631890', '-227.392395', 2259, 0, 0, 0, 1, 6, 0, 0, 1998, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123312, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128259', 4128259, '-97.276253', '14.631890', '-215.328506', 2260, 0, 0, 0, 1, 6, 0, 0, 1999, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123046, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128260', 4128260, '-75.621529', '14.631890', '-214.231506', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128261', 4128261, '-120.924698', '14.520920', '-211.301697', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128262', 4128262, '-73.457458', '14.731040', '-236.287506', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128263', 4128263, '-89.280579', '15.629060', '-251.062103', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128264', 4128264, '-112.932098', '15.533810', '-246.046600', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128265', 4128265, '-121.350601', '14.949070', '-239.633499', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128269', 4128269, '-1.754883', '15.457340', '-292.500214', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142358, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(261, 'e0027', 'bnpc4128270', 4128270, '-5.172852', '15.518430', '-288.410797', 169, 0, 0, 0, 0, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142092, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4128271', 4128271, '-26.595400', '16.964270', '-310.556000', 169, 0, 0, 0, 1, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141820, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4128272', 4128272, '-6.968165', '15.539780', '-293.998108', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141542, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4128273', 4128273, '-3.867146', '14.547090', '-326.988495', 169, 0, 0, 0, 0, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141276, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(261, 'e0027', 'bnpc4128274', 4128274, '-1.742153', '14.339200', '-330.423615', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140998, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(261, 'e0027', 'bnpc4128275', 4128275, '-16.894220', '15.891530', '-344.307587', 169, 0, 0, 0, 1, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140732, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4128276', 4128276, '-36.352852', '15.737740', '-281.239685', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140454, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4128285', 4128285, '86.811409', '3.880296', '-641.041382', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140194, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(261, 'e0027', 'bnpc4129531', 4129531, '154.758194', '4.167945', '-538.420471', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139922, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(261, 'e0027', 'bnpc4129542', 4129542, '86.147247', '2.628398', '-610.838013', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139656, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4130363', 4130363, '99.626099', '3.646851', '-655.359680', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4130365', 4130365, '137.834702', '3.433289', '-594.293091', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139112, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4130366', 4130366, '148.899902', '5.148987', '-530.581482', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138840, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4130369', 4130369, '124.284698', '2.822876', '-604.577820', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138562, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(261, 'e0027', 'bnpc4130372', 4130372, '124.864502', '2.731323', '-606.225708', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138296, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(261, 'e0027', 'bnpc4130374', 4130374, '161.030197', '2.624552', '-609.139282', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138018, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4130377', 4130377, '161.330200', '3.682087', '-563.744324', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137746, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4130378', 4130378, '98.850403', '6.344423', '-544.399780', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137480, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(261, 'e0027', 'bnpc4130379', 4130379, '100.378799', '6.344423', '-543.894287', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137202, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(261, 'e0027', 'bnpc4130380', 4130380, '11.922580', '6.840849', '-592.719177', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136936, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(261, 'e0027', 'bnpc4130381', 4130381, '13.302400', '7.038995', '-591.807983', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136658, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(261, 'e0027', 'bnpc4130382', 4130382, '19.505831', '19.298901', '-624.247314', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136392, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(261, 'e0027', 'bnpc4130383', 4130383, '20.782539', '19.319000', '-625.061401', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136114, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(261, 'e0027', 'bnpc4130386', 4130386, '37.483280', '18.026581', '-609.961670', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135848, 1, 0, 0, 0, 20, 30072, 0, 0, 0), +(261, 'e0027', 'bnpc4130388', 4130388, '36.074890', '17.983601', '-608.959229', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135570, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(261, 'e0027', 'bnpc4130389', 4130389, '37.643921', '17.440981', '-596.398926', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135298, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4130390', 4130390, '24.155029', '17.990360', '-604.119995', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135032, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4130403', 4130403, '22.943991', '6.252352', '-608.046997', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134754, 1, 0, 0, 0, 20, 30083, 0, 0, 0), +(261, 'e0027', 'bnpc4130404', 4130404, '38.940979', '7.903199', '-595.086975', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134488, 1, 0, 0, 0, 20, 30077, 0, 0, 0), +(261, 'e0027', 'bnpc4130431', 4130431, '66.514038', '9.567322', '-576.257019', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134216, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4130432', 4130432, '18.704010', '7.066027', '-628.667725', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133938, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4130682', 4130682, '95.351791', '6.393626', '-542.884888', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133666, 1, 0, 0, 0, 20, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4130683', 4130683, '84.609253', '6.344424', '-545.683472', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133400, 1, 0, 0, 0, 20, 30077, 0, 0, 0), +(261, 'e0027', 'bnpc4130705', 4130705, '92.140930', '6.705567', '-559.693420', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133128, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4130708', 4130708, '98.243317', '6.344424', '-537.346680', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132850, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4130800', 4130800, '-385.468414', '13.547760', '-376.772614', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4130805', 4130805, '-326.314209', '15.945620', '-388.265808', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4130806', 4130806, '-305.992188', '11.810610', '-274.036194', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4130807', 4130807, '-231.864395', '4.434839', '-243.585495', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4130808', 4130808, '-229.445007', '4.279073', '-242.303406', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4130809', 4130809, '-189.227203', '19.363649', '-294.819611', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4130811', 4130811, '-71.915771', '15.823550', '-267.627991', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4130813', 4130813, '-70.176270', '15.579410', '-265.919006', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4130814', 4130814, '-119.981796', '19.729919', '-275.562714', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4130819', 4130819, '-21.895340', '6.009452', '-485.204193', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4130821', 4130821, '-26.265631', '3.170915', '-553.012085', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4130827', 4130827, '-105.577202', '20.767460', '-487.358002', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4130829', 4130829, '-155.776306', '20.648140', '-534.493225', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4130832', 4130832, '-62.007500', '3.030127', '-631.860474', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4130836', 4130836, '-61.692261', '4.837097', '-580.163330', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4130839', 4130839, '-91.172493', '13.691580', '-698.557617', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4130842', 4130842, '-16.285299', '3.398638', '-675.862915', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4131461', 4131461, '82.139282', '2.612924', '-669.048584', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4131466', 4131466, '80.602791', '2.681827', '-667.547119', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4131467', 4131467, '142.968597', '2.741290', '-677.939270', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4131470', 4131470, '166.607895', '8.180286', '-517.830872', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4131473', 4131473, '97.571892', '10.129180', '-455.764313', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4131477', 4131477, '48.494888', '6.708367', '-437.703308', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4131480', 4131480, '12.300930', '7.902957', '-513.924316', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4131487', 4131487, '-19.243019', '5.989767', '-481.780304', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4131489', 4131489, '45.965000', '4.000000', '-353.260895', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4131491', 4131491, '44.038780', '4.000000', '-355.090515', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4131492', 4131492, '-277.563599', '21.317619', '-408.466705', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4131494', 4131494, '-220.691895', '23.733870', '-445.561493', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4131495', 4131495, '-203.367996', '20.050930', '-538.838074', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132134', 4132134, '-23.739849', '6.019080', '-587.944885', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124382, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132161', 4132161, '-219.349106', '4.013124', '-175.605194', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132178', 4132178, '-223.713196', '3.981025', '-172.004196', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132179', 4132179, '-217.822601', '5.111694', '-152.941193', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132181', 4132181, '-255.092102', '4.214314', '-101.690002', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132182', 4132182, '-260.379913', '3.866467', '-142.158005', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120264, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132184', 4132184, '-284.843506', '4.387352', '-61.849739', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119992, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132186', 4132186, '-281.833313', '4.514743', '-60.248520', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132187', 4132187, '-330.772186', '4.539914', '-70.267380', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132191', 4132191, '-395.325806', '4.134359', '-44.501831', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132194', 4132194, '-412.872314', '3.503397', '-46.007912', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132197', 4132197, '-392.828613', '4.906980', '-40.147282', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132355', 4132355, '-121.233002', '7.370056', '452.140015', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90682, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132356', 4132356, '-38.284969', '7.583679', '405.569489', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118360, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132357', 4132357, '-30.167110', '8.163513', '413.107391', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118088, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132358', 4132358, '-78.294067', '8.377136', '475.181000', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90410, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132359', 4132359, '-112.962601', '7.400574', '493.125702', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90138, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132360', 4132360, '-118.791496', '6.423950', '489.219513', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89866, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132361', 4132361, '-4.867676', '10.116700', '466.422485', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117816, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132362', 4132362, '74.448730', '8.224609', '416.708588', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117544, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132363', 4132363, '-96.391296', '12.802250', '545.708374', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117272, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132364', 4132364, '-162.951096', '7.675232', '421.805206', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89594, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132367', 4132367, '-195.513901', '8.987488', '460.166290', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89322, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4132371', 4132371, '-247.455597', '14.572330', '601.159729', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132373', 4132373, '-265.674896', '14.389220', '594.628723', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132374', 4132374, '-409.506897', '2.863013', '643.319275', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132375', 4132375, '-373.173615', '1.482062', '830.041687', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132376', 4132376, '-303.572998', '0.554237', '737.432800', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132377', 4132377, '-285.938812', '8.895996', '674.952271', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115664, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132378', 4132378, '-321.243011', '0.748059', '738.623108', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132379', 4132379, '-228.992203', '-0.198364', '779.568115', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132381', 4132381, '-214.807693', '1.408311', '692.128296', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132385', 4132385, '30.807980', '25.375731', '552.178101', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114576, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132386', 4132386, '86.625488', '18.020809', '513.389587', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114304, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132387', 4132387, '152.666504', '8.346619', '585.931030', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132389', 4132389, '95.506104', '14.938600', '536.278198', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132390', 4132390, '-41.311451', '8.914728', '618.996887', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132391', 4132391, '55.148140', '12.639380', '622.588928', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132394', 4132394, '99.351440', '5.569519', '656.366699', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132395', 4132395, '49.166569', '12.003170', '629.394592', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132398', 4132398, '-155.296402', '-0.249691', '684.087891', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112406, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132402', 4132402, '-128.552399', '-6.248472', '698.360413', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132403', 4132403, '-82.598297', '-7.092235', '672.947815', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132404', 4132404, '-47.857578', '-2.212809', '690.802612', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132405', 4132405, '-43.152802', '-0.921682', '679.936829', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132406', 4132406, '-28.558571', '-0.125700', '752.652527', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132407', 4132407, '-54.816002', '-0.469275', '771.766785', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132408', 4132408, '-157.322098', '-1.367114', '781.628418', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132409', 4132409, '-162.195999', '-0.433001', '772.940186', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132410', 4132410, '-153.362198', '0.387354', '735.776123', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132411', 4132411, '-99.790901', '-2.270120', '789.114685', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132415', 4132415, '-174.253799', '4.062513', '619.920715', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109408, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4132416', 4132416, '103.926498', '3.903357', '915.233887', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4133094', 4133094, '136.949707', '3.216623', '756.322510', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4133095', 4133095, '256.006012', '6.944463', '820.505676', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108604, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4133096', 4133096, '200.758102', '5.104731', '868.748230', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4133097', 4133097, '152.132797', '4.348816', '821.800720', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108060, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4133098', 4133098, '194.324295', '4.776027', '863.148987', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107788, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4133099', 4133099, '229.417892', '4.637394', '902.513123', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107516, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4133100', 4133100, '83.255379', '4.406397', '848.491577', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107244, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4133102', 4133102, '-428.485687', '5.673192', '569.950806', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106978, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4133105', 4133105, '-431.695404', '7.408978', '526.095520', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4133106', 4133106, '-391.061707', '7.983613', '532.203613', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106434, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4133107', 4133107, '-311.320892', '6.989801', '543.801514', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106162, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4133108', 4133108, '-385.831696', '6.261216', '581.952576', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105890, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4133109', 4133109, '-404.812103', '8.978989', '481.090607', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105618, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4133111', 4133111, '-435.612488', '7.492519', '530.732178', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4133112', 4133112, '-368.011810', '7.345028', '545.098206', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105074, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4133142', 4133142, '2.160542', '13.238140', '867.918884', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133143', 4133143, '-9.752866', '13.238140', '862.073975', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104452, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133146', 4133146, '-38.601059', '-3.610238', '870.833984', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104180, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133147', 4133147, '3.913166', '5.198262', '844.633179', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133149', 4133149, '-23.697269', '-3.494385', '830.106018', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103636, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133150', 4133150, '-47.257198', '-4.837158', '821.164185', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133152', 4133152, '-99.204224', '-4.564651', '854.179871', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103092, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133153', 4133153, '-91.265266', '-5.356507', '842.750183', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133155', 4133155, '-104.580101', '-4.512669', '850.706116', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102542, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133160', 4133160, '-40.085510', '-3.585876', '880.033630', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102270, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133166', 4133166, '23.838100', '-0.302399', '832.912781', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133167', 4133167, '31.011000', '5.208305', '877.738525', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101732, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133171', 4133171, '23.808920', '0.563182', '709.098083', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101520, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133175', 4133175, '-208.948196', '-2.203250', '889.001587', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101272, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133854', 4133854, '-169.319504', '-3.498206', '849.864197', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101000, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133856', 4133856, '-294.270294', '5.081238', '808.072021', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100728, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133857', 4133857, '-252.533798', '3.371831', '695.150513', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100456, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(261, 'e0027', 'bnpc4133858', 4133858, '-360.768585', '11.544860', '664.182312', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100184, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133859', 4133859, '-93.662338', '7.398253', '582.921509', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99912, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133860', 4133860, '-173.964798', '7.509760', '511.382202', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133861', 4133861, '-63.357861', '7.614773', '373.184204', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99368, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133862', 4133862, '30.766090', '9.412603', '441.489288', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133863', 4133863, '-36.250969', '13.359000', '500.993500', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133864', 4133864, '127.540901', '8.141046', '481.803406', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133865', 4133865, '80.714157', '14.492840', '579.852722', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133866', 4133866, '-16.843950', '17.676241', '580.152710', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133867', 4133867, '24.143961', '2.411896', '671.088074', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133868', 4133868, '140.561096', '7.403133', '627.360474', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133869', 4133869, '96.573219', '4.412809', '794.674683', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133870', 4133870, '197.362503', '4.724640', '803.828918', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133872', 4133872, '130.937607', '8.480643', '895.933289', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133874', 4133874, '-1.962330', '-3.925701', '819.197571', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133877', 4133877, '-40.858768', '-4.353204', '847.265625', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4133878', 4133878, '-102.367302', '-5.084877', '872.023987', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4134559', 4134559, '-383.817688', '-1.011531', '901.672424', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4134560', 4134560, '-288.511597', '10.613900', '859.882324', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4134561', 4134561, '-351.064606', '6.710670', '883.250427', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4134562', 4134562, '200.244095', '10.299800', '649.805420', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92580, 1, 0, 0, 0, 24, 30058, 0, 0, 0), +(261, 'e0027', 'bnpc4134563', 4134563, '226.015793', '8.615845', '608.168701', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94750, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4134564', 4134564, '183.543503', '9.768476', '646.637512', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94400, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4135246', 4135246, '243.579697', '8.834900', '694.209229', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92308, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(261, 'e0027', 'bnpc4135251', 4135251, '295.658600', '8.371674', '624.363525', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94128, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4135252', 4135252, '224.383896', '9.530697', '660.020325', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93934, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4135254', 4135254, '219.592499', '8.926453', '678.248291', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91764, 1, 0, 0, 0, 24, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4135932', 4135932, '214.160294', '8.957031', '677.332581', 168, 0, 0, 0, 0, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93662, 1, 0, 0, 0, 24, 30060, 0, 0, 0), +(261, 'e0027', 'bnpc4135934', 4135934, '323.184814', '6.857816', '665.903687', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93312, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4135935', 4135935, '329.342285', '7.113992', '659.138672', 166, 0, 0, 0, 1, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92036, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4135936', 4135936, '289.562012', '7.415476', '729.328918', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93040, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4135937', 4135937, '238.798294', '8.794422', '722.661011', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92846, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4136006', 4136006, '-7.705540', '1.187112', '-24.901859', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4136008', 4136008, '-62.727612', '-2.486439', '-1.833968', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4136009', 4136009, '-95.048462', '-2.365173', '28.824221', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4136012', 4136012, '-46.066471', '8.494778', '123.064003', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4136033', 4136033, '-271.290192', '10.421880', '211.047501', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4136034', 4136034, '-264.806305', '7.399314', '162.775604', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4136037', 4136037, '-177.294601', '7.125916', '20.614929', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4136039', 4136039, '43.869629', '35.416142', '165.728104', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4136040', 4136040, '-23.361570', '40.512569', '240.161697', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4136226', 4136226, '-131.853699', '13.179720', '86.700623', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4137046', 4137046, '52.658810', '2.883911', '-257.434998', 740, 0, 0, 0, 0, 6, 0, 0, 253, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68890, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(261, 'e0027', 'bnpc4137048', 4137048, '55.832760', '2.914429', '-254.505203', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66992, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4137050', 4137050, '79.179077', '3.768982', '-271.045990', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71054, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4137065', 4137065, '21.736320', '5.244883', '-278.538391', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70782, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4137066', 4137066, '57.419899', '4.007567', '-299.611694', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66176, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4137892', 4137892, '-39.719238', '-0.900330', '-152.208694', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71326, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4137893', 4137893, '-91.355766', '-1.724304', '-58.945621', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68074, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4137894', 4137894, '-71.905777', '-1.906798', '-74.343948', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66448, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4137912', 4137912, '-174.456406', '39.993900', '160.387604', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72414, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4137914', 4137914, '-174.029205', '39.993900', '155.352097', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55834, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4137915', 4137915, '-169.848206', '39.993900', '158.342804', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65088, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4137927', 4137927, '-140.215103', '18.539671', '118.211700', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67264, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(261, 'e0027', 'bnpc4137928', 4137928, '-103.074699', '27.908689', '120.592003', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70516, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4137929', 4137929, '-135.423798', '37.125118', '176.409500', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72686, 2, 0, 0, 0, 42, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4137937', 4137937, '-95.628304', '45.792240', '195.269699', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56106, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(261, 'e0027', 'bnpc4137938', 4137938, '-61.905880', '44.937740', '212.664902', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65632, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(261, 'e0027', 'bnpc4137941', 4137941, '-88.853271', '43.381351', '152.910599', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65904, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(261, 'e0027', 'bnpc4137947', 4137947, '-24.093990', '38.986820', '206.042603', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55018, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4137948', 4137948, '-44.113831', '43.259281', '222.186493', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71598, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4137953', 4137953, '-163.534897', '40.000000', '151.507095', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55290, 2, 0, 0, 0, 42, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4137955', 4137955, '24.765381', '2.761841', '-0.717224', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66720, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(261, 'e0027', 'bnpc4137956', 4137956, '-79.850456', '45.792240', '193.377594', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71870, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4137966', 4137966, '-42.954159', '8.255066', '51.499149', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70244, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4137967', 4137967, '-112.382797', '12.191960', '75.883057', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68618, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4137979', 4137979, '75.730469', '25.253660', '204.974396', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55562, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4137980', 4137980, '111.253502', '13.778870', '152.666504', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72142, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4137982', 4137982, '124.528801', '13.931460', '143.175400', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65360, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(261, 'e0027', 'bnpc4137991', 4137991, '112.391602', '9.231154', '192.303696', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 49, 0, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 54734, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4137993', 4137993, '111.772301', '8.529010', '204.422699', 741, 0, 0, 0, 1, 6, 0, 0, 2296, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69700, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4138003', 4138003, '145.462601', '13.997980', '239.934799', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68346, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4138054', 4138054, '244.128998', '7.980469', '-24.460270', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40838, 2, 0, 0, 0, 44, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4138055', 4138055, '208.087296', '7.980469', '104.387001', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41110, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4138056', 4138056, '164.005997', '7.818353', '-31.478350', 739, 0, 0, 0, 1, 6, 0, 0, 1837, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40572, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4138061', 4138061, '345.326508', '8.771392', '-44.180370', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 48, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 41914, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4138062', 4138062, '273.090698', '11.734130', '-9.628479', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42464, 2, 0, 0, 0, 44, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4138065', 4138065, '103.105103', '15.030030', '20.462339', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 48, 0, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 41642, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4138066', 4138066, '76.493408', '12.191390', '20.402031', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42192, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4138067', 4138067, '117.584900', '15.938490', '11.404420', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41382, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4138716', 4138716, '176.348495', '13.992490', '240.985703', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54462, 2, 0, 0, 0, 35, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4138717', 4138717, '158.251205', '13.992490', '254.322006', 741, 0, 0, 0, 1, 6, 0, 0, 2296, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69428, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4138718', 4138718, '174.425797', '13.992490', '235.339798', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67802, 2, 0, 0, 0, 35, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4138722', 4138722, '129.299393', '7.759512', '330.730286', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69972, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4138723', 4138723, '127.946899', '7.071052', '376.910889', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67530, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4138736', 4138736, '45.873520', '23.511459', '-135.133301', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85730, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4138737', 4138737, '34.941601', '23.511471', '-143.619507', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85464, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4140356', 4140356, '38.925659', '23.483580', '-138.689301', 369, 0, 0, 0, 0, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85192, 1, 0, 0, 0, 32, 30073, 0, 0, 0), +(261, 'e0027', 'bnpc4140357', 4140357, '40.383900', '23.511459', '-138.534897', 367, 0, 0, 0, 0, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84914, 1, 0, 0, 0, 32, 30079, 0, 0, 0), +(261, 'e0027', 'bnpc4140358', 4140358, '42.540970', '17.713570', '-101.085297', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84642, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4140359', 4140359, '45.869240', '22.788361', '-122.945396', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84376, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4140360', 4140360, '-3.844561', '8.435183', '-93.056000', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84098, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4140361', 4140361, '-11.875860', '6.747277', '-75.913834', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83832, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(261, 'e0027', 'bnpc4140362', 4140362, '-6.949590', '8.713659', '-105.002502', 367, 0, 0, 0, 0, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83554, 1, 0, 0, 0, 32, 30082, 0, 0, 0), +(261, 'e0027', 'bnpc4140363', 4140363, '-8.319045', '8.596273', '-104.796700', 369, 0, 0, 0, 0, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83288, 1, 0, 0, 0, 32, 30079, 0, 0, 0), +(261, 'e0027', 'bnpc4140373', 4140373, '62.782619', '3.445141', '-267.002686', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82980, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140376', 4140376, '-24.128490', '-0.222955', '-159.058701', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82708, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140377', 4140377, '-83.108093', '-14.744680', '-157.238297', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82436, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140379', 4140379, '-97.737221', '-14.744680', '-145.298904', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140380', 4140380, '-94.201157', '-14.744680', '-142.907806', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81892, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140381', 4140381, '-95.134377', '-14.397570', '-169.786697', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81620, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140383', 4140383, '-53.365379', '-16.085800', '-169.063507', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81348, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140384', 4140384, '-62.683842', '-1.205086', '-107.887497', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81076, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140386', 4140386, '-131.578598', '1.541138', '-134.599899', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80804, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140387', 4140387, '-84.214539', '-1.937927', '-49.942810', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80532, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140388', 4140388, '-95.933533', '-0.900330', '-15.945740', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80260, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140392', 4140392, '-94.041443', '-0.961365', '-14.877620', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79988, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140393', 4140393, '-43.289860', '-1.571716', '1.235901', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140394', 4140394, '-14.218010', '4.090468', '36.143909', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140395', 4140395, '-17.297621', '4.967797', '39.749630', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140398', 4140398, '-101.304703', '12.741210', '80.552368', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140400', 4140400, '-144.371704', '-1.052405', '41.807720', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140401', 4140401, '-107.255699', '28.030760', '124.498299', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140402', 4140402, '-52.008862', '11.528760', '192.386597', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140404', 4140404, '-283.105499', '9.536800', '201.528900', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140405', 4140405, '-118.150597', '4.442561', '248.788605', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140406', 4140406, '-114.824203', '4.493244', '246.347107', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140407', 4140407, '-183.400894', '40.000000', '157.241699', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140408', 4140408, '-169.404205', '40.000000', '143.694000', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140409', 4140409, '-126.916702', '37.668209', '186.635406', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140410', 4140410, '-83.693520', '45.889679', '179.053299', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140411', 4140411, '-85.551117', '45.811230', '209.439102', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140412', 4140412, '20.889589', '36.758911', '209.735199', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140413', 4140413, '112.923897', '13.990590', '141.405304', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140414', 4140414, '160.982407', '13.997970', '233.444595', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140416', 4140416, '146.294601', '13.997970', '244.723495', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140417', 4140417, '124.652702', '8.457688', '313.738892', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140419', 4140419, '139.964203', '7.391594', '192.456802', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140420', 4140420, '224.634705', '8.093283', '86.476837', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140421', 4140421, '253.877808', '8.000000', '-33.567520', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140422', 4140422, '295.798798', '8.000000', '-26.774521', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140423', 4140423, '297.220490', '8.000000', '-29.494390', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4140427', 4140427, '117.781403', '9.346180', '-7.032808', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72916, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4142005', 4142005, '-268.913208', '4.851185', '-90.289322', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4142007', 4142007, '-359.236389', '4.669468', '-59.445290', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4142009', 4142009, '-420.227386', '6.206403', '-20.966650', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4142018', 4142018, '-42.274540', '10.032320', '171.660904', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69162, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4142028', 4142028, '-93.827759', '45.792240', '199.145401', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64816, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4313527', 4313527, '313.771210', '7.980469', '-31.998230', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51244, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(261, 'e0027', 'bnpc4313538', 4313538, '287.709015', '8.000000', '-40.641960', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50972, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(261, 'e0027', 'bnpc4313539', 4313539, '417.063385', '17.715700', '-63.623531', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50688, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4313540', 4313540, '355.620087', '9.881611', '-35.813759', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50422, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4313547', 4313547, '445.548096', '16.678040', '-115.800697', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50156, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(261, 'e0027', 'bnpc4313549', 4313549, '409.744812', '12.774850', '-100.924301', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49812, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4313550', 4313550, '552.483398', '7.583679', '-164.965302', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 49594, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4313551', 4313551, '481.528900', '7.614197', '-157.915604', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49328, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(261, 'e0027', 'bnpc4313552', 4313552, '484.977386', '7.614197', '-157.701996', 740, 0, 0, 0, 0, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49062, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(261, 'e0027', 'bnpc4313556', 4313556, '509.282410', '7.599621', '-134.754105', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48724, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4313557', 4313557, '519.299988', '7.581244', '-127.391800', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48452, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4313560', 4313560, '533.592712', '7.583679', '-79.881042', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47146, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4313561', 4313561, '549.797729', '7.583679', '-92.454468', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48240, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4313562', 4313562, '534.650330', '7.599616', '-75.784973', 740, 0, 0, 0, 0, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47974, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4313563', 4313563, '569.926575', '7.599619', '-77.731194', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47708, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(261, 'e0027', 'bnpc4313564', 4313564, '549.767212', '7.599621', '-67.267418', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 47436, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(261, 'e0027', 'bnpc4313565', 4313565, '442.353912', '18.401279', '-84.513977', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46820, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(261, 'e0027', 'bnpc4313572', 4313572, '631.942383', '7.123771', '-69.111237', 742, 0, 0, 0, 1, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46602, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4329911', 4329911, '-253.803406', '23.269960', '-431.265686', 2188, 0, 0, 0, 6, 6, 0, 0, 1993, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123578, 4, 1, 0, 0, 0, 0, 4329909, 0, 0), +(261, 'e0027', 'bnpc4333133', 4333133, '-201.984695', '24.429350', '-469.400787', 2188, 0, 0, 0, 6, 6, 0, 0, 1993, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122442, 4, 1, 0, 0, 0, 0, 4329909, 0, 0), +(261, 'e0027', 'bnpc4333143', 4333143, '-91.031189', '14.631890', '-220.647095', 2260, 0, 0, 0, 1, 6, 0, 0, 1999, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122182, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4333144', 4333144, '-95.213539', '14.640040', '-232.687607', 2259, 0, 0, 0, 1, 6, 0, 0, 1998, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121904, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4515628', 4515628, '230.071304', '10.431990', '28.589081', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45208, 2, 0, 0, 0, 0, 0, 4515627, 0, 0), +(261, 'e0027', 'bnpc4515630', 4515630, '306.129913', '8.000000', '-35.433121', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44936, 2, 0, 0, 0, 0, 0, 4515617, 0, 0), +(261, 'e0027', 'bnpc4515631', 4515631, '409.323212', '17.164120', '-66.182114', 2457, 0, 0, 0, 2, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44664, 2, 0, 0, 0, 0, 0, 4515622, 0, 0), +(261, 'e0027', 'bnpc4515632', 4515632, '450.431000', '18.142941', '-98.527527', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44392, 2, 0, 0, 0, 0, 0, 4515619, 0, 0), +(261, 'e0027', 'bnpc4515633', 4515633, '528.573975', '7.599619', '-123.610298', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44120, 2, 0, 0, 0, 0, 0, 4515626, 0, 0), +(261, 'e0027', 'bnpc4522053', 4522053, '-108.508598', '-1.658285', '50.827759', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4522057', 4522057, '-20.309811', '4.196167', '-48.355900', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 2, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64278, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4522061', 4522061, '-208.789200', '7.827881', '41.184078', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 3, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64006, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4522063', 4522063, '-277.088593', '16.372860', '105.149902', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 4, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63734, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4522065', 4522065, '-233.600403', '7.156433', '195.910507', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 5, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63462, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4522066', 4522066, '102.342300', '15.152160', '25.375731', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 39762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4522067', 4522067, '-24.155090', '7.522644', '120.195297', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4522069', 4522069, '-114.458000', '7.766785', '222.339096', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4522077', 4522077, '-43.839230', '7.949890', '350.362305', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4522101', 4522101, '108.016403', '9.690581', '194.451294', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4522396', 4522396, '-21.478930', '2.767368', '-38.678539', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62078, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4522398', 4522398, '-207.376999', '7.622232', '46.231140', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 3, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61824, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(261, 'e0027', 'bnpc4522399', 4522399, '-234.055893', '7.389282', '200.963898', 742, 0, 0, 0, 0, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 5, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61534, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4522406', 4522406, '-105.390503', '-1.773797', '46.289669', 742, 0, 0, 0, 0, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61262, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4522407', 4522407, '-271.650208', '14.867290', '104.792099', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 4, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61008, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(261, 'e0027', 'bnpc4522411', 4522411, '-100.910103', '-1.501870', '50.329479', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60736, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4522416', 4522416, '-109.675301', '7.278503', '224.872192', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 60452, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4522419', 4522419, '-28.614960', '7.609998', '118.196198', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 60180, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4522420', 4522420, '-39.757469', '7.899223', '353.966003', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 59908, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(261, 'e0027', 'bnpc4522421', 4522421, '-27.695190', '7.583679', '129.961105', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59642, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4522422', 4522422, '-117.326698', '6.179810', '229.419296', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59370, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4522424', 4522424, '-52.859360', '7.196684', '358.597412', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59098, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4522427', 4522427, '554.650085', '7.583679', '-67.246582', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43854, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4522544', 4522544, '557.138977', '7.599622', '-162.231705', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43582, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4522545', 4522545, '413.717804', '17.929260', '-60.318909', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43310, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4522546', 4522546, '349.712006', '9.286700', '-45.325851', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43038, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4522547', 4522547, '291.672913', '8.000000', '-42.948238', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 42766, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4522549', 4522549, '227.166595', '8.620508', '78.546181', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40288, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4522550', 4522550, '408.039398', '12.424580', '-131.584198', 742, 0, 0, 0, 1, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40010, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4524149', 4524149, '-46.524780', '-1.266479', '10.910160', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58826, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4524160', 4524160, '-52.610519', '-1.409638', '13.605740', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58548, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4524163', 4524163, '14.724910', '1.785278', '16.159300', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58276, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4524164', 4524164, '20.839840', '2.344519', '13.486760', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58010, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4524175', 4524175, '-136.317200', '10.889600', '-70.746132', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57738, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4524176', 4524176, '-142.403000', '11.520290', '-68.050552', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57460, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4524179', 4524179, '-124.245399', '6.484659', '-98.137253', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57200, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4524181', 4524181, '-155.565796', '6.332458', '-43.106812', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56910, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4524206', 4524206, '-163.683502', '7.064880', '7.705750', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56656, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4524215', 4524215, '-100.204201', '12.076750', '75.251801', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56366, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4553442', 4553442, '-200.593903', '7.600075', '38.475250', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54190, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4553443', 4553443, '-17.239441', '3.551795', '-44.301022', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 2, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 53936, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(261, 'e0027', 'bnpc4553444', 4553444, '-243.102203', '7.628644', '196.886398', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53664, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4553445', 4553445, '-277.132202', '14.459210', '114.208504', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53374, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4553446', 4553446, '-118.333702', '6.485046', '-90.318237', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53102, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4553447', 4553447, '-143.133606', '6.438087', '-36.288349', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52848, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4553448', 4553448, '-160.387604', '7.156433', '27.054199', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52576, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4553449', 4553449, '-63.000992', '-1.730121', '-63.235321', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52286, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(261, 'e0027', 'bnpc4577401', 4577401, '-110.148399', '-0.815602', '-20.043240', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51996, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(261, 'e0027', 'bnpc4621851', 4621851, '-468.283295', '-2.650424', '95.657677', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28328, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4621852', 4621852, '-103.113701', '45.811230', '205.494797', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28062, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(261, 'e0027', 'bnpc4695634', 4695634, '-218.433502', '5.298542', '95.696121', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3760882', 3760882, '7.760897', '64.944183', '95.225662', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760883', 3760883, '11.569650', '64.269142', '103.174004', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760884', 3760884, '27.212851', '64.259323', '68.436661', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121286, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760886', 3760886, '35.300129', '63.748798', '70.756027', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122102, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760887', 3760887, '29.623779', '63.785370', '72.434517', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122918, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760888', 3760888, '12.674300', '64.363640', '96.110687', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122646, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760889', 3760889, '37.375351', '64.107178', '66.758171', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122374, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760890', 3760890, '35.361160', '64.320633', '64.408279', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760896', 3760896, '20.935301', '61.990829', '147.102097', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760898', 3760898, '32.574959', '59.535831', '128.579605', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119382, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760901', 3760901, '3.688727', '65.262871', '139.257401', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119110, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760902', 3760902, '1.674536', '65.722069', '135.412201', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760911', 3760911, '66.135712', '56.046421', '111.429703', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760912', 3760912, '62.577202', '57.663799', '106.370598', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120470, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760913', 3760913, '64.103104', '57.114471', '107.652298', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760917', 3760917, '60.457890', '61.337429', '74.236450', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121830, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760922', 3760922, '96.288940', '49.550621', '73.985641', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126182, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760923', 3760923, '110.317703', '42.549389', '102.239700', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125366, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760925', 3760925, '121.477097', '40.913620', '141.046600', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125638, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760927', 3760927, '99.690933', '44.016190', '125.932701', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126998, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760933', 3760933, '86.244019', '47.554829', '160.082397', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126726, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760937', 3760937, '87.891998', '47.433571', '161.638794', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123190, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760948', 3760948, '68.406143', '53.661510', '183.326599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123462, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760950', 3760950, '62.399029', '56.000351', '191.517303', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125910, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760952', 3760952, '63.992779', '55.493610', '189.245102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124550, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760958', 3760958, '51.348160', '55.864281', '150.438599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124278, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760961', 3760961, '56.546551', '56.041698', '186.103394', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125094, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3760965', 3760965, '53.117081', '55.406071', '151.622894', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124822, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761027', 3761027, '-7.343534', '67.714622', '93.888710', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153092, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761030', 3761030, '15.512480', '63.992210', '99.894920', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152820, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761031', 3761031, '78.979568', '53.555161', '86.569473', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124006, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761032', 3761032, '80.505470', '52.852570', '87.851227', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123734, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761033', 3761033, '31.698999', '64.077950', '68.192520', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152548, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761034', 3761034, '111.202797', '42.291870', '104.620102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126454, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761035', 3761035, '112.698097', '41.971249', '105.901901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127270, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761036', 3761036, '16.824760', '63.905472', '97.575546', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152276, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761039', 3761039, '11.941870', '64.628357', '91.990753', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152004, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761041', 3761041, '54.459400', '59.806961', '102.917297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151732, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761042', 3761042, '30.722420', '63.595020', '74.784416', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151460, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761044', 3761044, '19.068230', '62.294941', '149.492599', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151188, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761045', 3761045, '22.420271', '61.734470', '145.882996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150916, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761046', 3761046, '31.079571', '59.608490', '125.924500', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150644, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761048', 3761048, '66.227257', '56.978741', '104.868301', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150372, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761049', 3761049, '81.546333', '52.845501', '84.585800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150100, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761050', 3761050, '62.755970', '60.386440', '76.019211', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149828, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761051', 3761051, '109.737900', '42.563049', '105.962898', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149556, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761052', 3761052, '98.714363', '44.085449', '129.594803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149284, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761053', 3761053, '98.425201', '49.276859', '70.598137', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149012, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761054', 3761054, '99.981613', '48.315552', '73.649940', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148740, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761080', 3761080, '100.606499', '43.794998', '128.557205', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148468, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761081', 3761081, '89.814621', '46.770222', '157.976593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148196, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761084', 3761084, '51.818901', '55.815891', '145.346603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147924, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761085', 3761085, '70.215584', '52.939968', '181.270401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147652, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761086', 3761086, '60.924660', '55.885761', '189.770996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147380, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761088', 3761088, '48.845680', '56.451950', '150.896393', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147108, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761089', 3761089, '50.420841', '56.054260', '153.244995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146836, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761096', 3761096, '199.256302', '27.059620', '91.574173', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146570, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761097', 3761097, '66.501930', '57.215820', '101.480797', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761099', 3761099, '111.690498', '36.582958', '4.053726', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146298, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761100', 3761100, '67.783684', '56.291199', '107.065697', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761102', 3761102, '156.633804', '34.653191', '70.542397', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146026, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761103', 3761103, '23.832260', '61.353020', '150.988007', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761104', 3761104, '24.717279', '61.225311', '149.156906', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761105', 3761105, '167.377899', '33.443420', '75.522820', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145754, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761108', 3761108, '124.488503', '36.345482', '15.758260', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145482, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761109', 3761109, '159.302094', '33.928551', '78.777786', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145210, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761111', 3761111, '108.955002', '36.663021', '9.387772', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144938, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761112', 3761112, '131.578506', '35.965469', '45.853310', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144666, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761123', 3761123, '237.190399', '36.611149', '66.717194', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761124', 3761124, '242.137604', '44.361130', '44.958832', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144128, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761125', 3761125, '242.718903', '43.673290', '46.873840', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143856, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761128', 3761128, '187.436096', '42.116020', '51.900459', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143584, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761129', 3761129, '223.247696', '51.849850', '26.116220', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143312, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761130', 3761130, '223.430801', '52.761440', '22.759239', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143040, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761131', 3761131, '217.449295', '51.875561', '27.520050', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142768, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761134', 3761134, '223.010498', '31.021540', '165.483994', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142496, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761135', 3761135, '227.779602', '33.454979', '203.906296', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142224, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761136', 3761136, '242.318497', '38.158321', '234.873306', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141952, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761137', 3761137, '227.626999', '34.365898', '207.232697', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141680, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761139', 3761139, '245.897202', '37.488659', '235.919693', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141408, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761141', 3761141, '195.561203', '47.715080', '226.776001', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141136, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761142', 3761142, '197.033997', '48.159161', '228.423004', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761143', 3761143, '222.161804', '50.249969', '256.272888', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761145', 3761145, '180.566803', '43.422722', '197.741592', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761146', 3761146, '181.211105', '43.103500', '194.872894', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761147', 3761147, '150.769104', '55.568981', '248.645706', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761149', 3761149, '148.855896', '56.596169', '250.553299', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761150', 3761150, '152.127594', '64.016029', '312.689392', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761151', 3761151, '154.979797', '64.179688', '314.660492', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761152', 3761152, '153.705307', '64.400146', '315.376495', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761155', 3761155, '115.122803', '68.518044', '293.763489', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761164', 3761164, '69.781052', '51.086330', '157.761703', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761169', 3761169, '97.733994', '47.043510', '88.944794', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761303', 3761303, '204.358505', '46.098690', '45.780960', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761362', 3761362, '198.245804', '51.531582', '242.749405', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3761367', 3761367, '182.543594', '41.458710', '51.590698', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761369', 3761369, '186.119797', '42.655750', '49.950859', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761370', 3761370, '285.549408', '42.548729', '57.964470', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761371', 3761371, '285.078796', '44.421532', '49.076550', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761372', 3761372, '239.723694', '36.528450', '66.898483', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761373', 3761373, '148.845200', '38.711102', '41.285278', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761374', 3761374, '152.171600', '39.307671', '41.468391', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761375', 3761375, '182.186905', '54.291470', '262.783508', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761376', 3761376, '184.506195', '55.134689', '266.109985', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761475', 3761475, '201.696899', '32.601101', '76.500427', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135684, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761552', 3761552, '150.981400', '38.858120', '42.405491', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135412, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761553', 3761553, '185.442902', '41.123051', '53.604858', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135140, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761554', 3761554, '206.775299', '43.330341', '53.446110', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134868, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761555', 3761555, '208.241592', '43.763321', '52.334370', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134596, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761556', 3761556, '239.497803', '36.005562', '68.131721', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134324, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761557', 3761557, '215.528305', '44.498230', '50.226871', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134052, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761572', 3761572, '223.339294', '51.412380', '27.733681', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133780, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761576', 3761576, '283.996399', '43.243752', '55.750099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133508, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761580', 3761580, '272.696899', '45.167171', '32.535080', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133236, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761585', 3761585, '215.465607', '53.837990', '20.867121', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132964, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761592', 3761592, '217.212097', '32.425369', '164.537994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132692, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761607', 3761607, '218.341293', '32.455891', '165.972305', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132420, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761622', 3761622, '202.532898', '37.857590', '176.104294', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132148, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761626', 3761626, '183.154007', '42.709949', '197.436401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131876, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761716', 3761716, '184.920502', '44.981480', '218.420700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131604, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761718', 3761718, '224.420395', '35.250660', '205.197601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131332, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761720', 3761720, '242.515396', '37.441879', '232.829803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131060, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761721', 3761721, '215.690094', '51.411850', '255.712601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130788, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761722', 3761722, '217.734802', '50.606812', '253.454300', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130516, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761723', 3761723, '185.971100', '54.557800', '262.936096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130244, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761726', 3761726, '152.777603', '58.215248', '280.103607', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129972, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761727', 3761727, '152.238602', '58.132370', '277.662201', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129700, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761728', 3761728, '118.327202', '67.511993', '294.840210', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129428, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761730', 3761730, '114.320396', '68.359100', '296.500885', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129156, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3761731', 3761731, '153.412399', '63.654282', '311.208801', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128884, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766328', 3766328, '444.374390', '64.694489', '-36.484081', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766391', 3766391, '446.046112', '65.017601', '-33.594650', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766399', 3766399, '453.421814', '56.259960', '-0.534113', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766401', 3766401, '455.924286', '55.802189', '3.341679', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766402', 3766402, '448.874603', '55.222351', '4.837063', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766575', 3766575, '366.619385', '51.659290', '-12.188280', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766577', 3766577, '364.147400', '52.146080', '-17.895161', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766579', 3766579, '370.878113', '59.451641', '-59.303612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766580', 3766580, '368.924988', '58.367748', '-54.695389', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766581', 3766581, '373.350098', '58.395641', '-53.596741', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766584', 3766584, '363.439606', '63.704231', '-82.801590', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766586', 3766586, '341.616302', '51.478588', '-30.833561', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766588', 3766588, '305.806000', '47.806469', '0.503501', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766589', 3766589, '308.552612', '48.569420', '-3.769025', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766591', 3766591, '409.158112', '63.702721', '-82.786118', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766592', 3766592, '412.649689', '63.919991', '-86.564484', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766596', 3766596, '450.583588', '66.468239', '-76.957558', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766603', 3766603, '394.502594', '67.135857', '-121.089203', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766604', 3766604, '391.786499', '67.793007', '-123.530602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3766605', 3766605, '395.113007', '67.180733', '-122.828697', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767081', 3767081, '473.143494', '66.440041', '-148.859894', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767082', 3767082, '437.091309', '65.055496', '-127.757103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767083', 3767083, '438.506500', '65.198730', '-126.336800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767118', 3767118, '437.011108', '65.003197', '-124.078499', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767119', 3767119, '474.052002', '66.418793', '-147.307800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767127', 3767127, '371.903290', '67.982323', '-110.760803', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3767131', 3767131, '460.464600', '68.698967', '-124.371498', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3767137', 3767137, '564.060181', '84.658661', '-310.397614', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3767139', 3767139, '425.864014', '78.873833', '-349.813110', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3767149', 3767149, '418.543213', '65.856056', '-158.386795', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767152', 3767152, '380.575195', '71.228844', '-138.534103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767155', 3767155, '353.131409', '70.227692', '-126.119904', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767158', 3767158, '355.969604', '70.540512', '-125.082298', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767160', 3767160, '354.321594', '69.995934', '-123.739502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767163', 3767163, '385.091888', '70.103569', '-139.968506', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767164', 3767164, '383.413391', '70.520859', '-137.771194', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767165', 3767165, '382.223206', '70.816437', '-140.151596', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767230', 3767230, '338.126892', '68.759033', '-132.386398', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767240', 3767240, '525.678589', '69.218857', '-235.317993', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91168, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767241', 3767241, '529.279724', '69.670998', '-238.980103', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90352, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767242', 3767242, '523.878113', '69.910103', '-240.231400', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90624, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767246', 3767246, '503.511597', '77.082458', '-297.441315', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767247', 3767247, '490.567688', '72.273407', '-273.391388', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767248', 3767248, '499.222992', '76.478897', '-297.574799', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767251', 3767251, '561.724976', '68.563721', '-232.711105', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90896, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767262', 3767262, '609.164307', '70.799339', '-269.442291', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767263', 3767263, '607.699524', '69.742554', '-262.681885', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767264', 3767264, '611.178528', '70.073822', '-266.496613', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767271', 3767271, '583.442871', '78.270691', '-293.369995', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767272', 3767272, '582.626099', '82.811012', '-321.008209', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767273', 3767273, '586.291077', '77.487671', '-291.515594', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767374', 3767374, '436.361908', '73.251167', '-304.983185', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767375', 3767375, '432.991608', '72.276894', '-303.043610', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767376', 3767376, '349.804901', '74.911560', '-321.936798', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767377', 3767377, '435.671997', '72.056473', '-300.979401', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104478, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767388', 3767388, '361.665588', '75.651962', '-325.562408', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767390', 3767390, '363.221985', '75.155243', '-322.388489', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767391', 3767391, '358.186493', '73.581299', '-315.714813', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767393', 3767393, '395.641113', '76.023048', '-328.902496', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767394', 3767394, '397.399597', '76.429916', '-332.825500', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767395', 3767395, '393.430298', '76.446228', '-331.738098', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767396', 3767396, '392.678711', '86.886810', '-395.321106', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767399', 3767399, '470.368805', '87.249977', '-348.957306', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767400', 3767400, '454.939209', '84.293327', '-350.549591', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767401', 3767401, '458.387787', '84.602448', '-346.643188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767402', 3767402, '428.051086', '76.420769', '-330.744385', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767425', 3767425, '422.176910', '67.247093', '-159.579803', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767426', 3767426, '420.543213', '66.332741', '-157.321503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767435', 3767435, '384.954498', '71.312561', '-255.829102', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767436', 3767436, '381.795898', '71.738327', '-257.517487', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767437', 3767437, '387.359314', '69.869453', '-264.137299', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767445', 3767445, '628.911987', '66.716454', '-231.728607', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767446', 3767446, '630.792603', '66.280296', '-209.603195', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767447', 3767447, '629.602417', '66.422333', '-211.983597', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767448', 3767448, '627.954529', '66.392159', '-210.335602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767449', 3767449, '632.471130', '66.334442', '-211.800507', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767450', 3767450, '630.285278', '66.806633', '-233.987000', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767455', 3767455, '662.184509', '66.885223', '-232.532303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767456', 3767456, '663.832520', '66.880669', '-235.767197', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767457', 3767457, '660.994324', '67.126022', '-234.912704', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767458', 3767458, '679.883301', '64.783623', '-225.588394', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767462', 3767462, '683.051575', '64.449142', '-221.445694', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767463', 3767463, '686.133911', '64.440773', '-225.077301', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767464', 3767464, '682.532776', '64.535759', '-223.856598', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98772, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(262, 'e0034', 'bnpc3767465', 3767465, '680.213379', '64.599297', '-222.178101', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767466', 3767466, '644.667419', '61.202068', '-179.041107', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98228, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767467', 3767467, '646.345825', '61.561089', '-181.268906', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767468', 3767468, '625.297607', '63.148769', '-175.494003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767469', 3767469, '624.534729', '62.919571', '-173.449295', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767472', 3767472, '612.920227', '62.437519', '-154.581299', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97140, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767473', 3767473, '618.413513', '60.995640', '-154.157501', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96868, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767474', 3767474, '611.729980', '62.836342', '-156.961700', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96596, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767475', 3767475, '610.081970', '62.919849', '-155.313705', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96324, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767480', 3767480, '599.736572', '66.081619', '-200.660995', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96052, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767481', 3767481, '603.400085', '66.248016', '-212.652893', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95780, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767482', 3767482, '600.591125', '66.117447', '-203.224594', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767487', 3767487, '582.119629', '63.525211', '-162.909500', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767488', 3767488, '583.554016', '63.640011', '-161.566696', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767504', 3767504, '384.336212', '81.769058', '-374.104706', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767505', 3767505, '386.960785', '82.047218', '-374.979614', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92250, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767508', 3767508, '420.230408', '83.041237', '-377.818695', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91978, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767509', 3767509, '416.202087', '83.456848', '-380.199188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91706, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767510', 3767510, '414.218414', '82.361076', '-374.217590', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91434, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767538', 3767538, '559.649475', '74.212418', '-273.297485', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90080, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767539', 3767539, '565.844971', '73.504051', '-271.077698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89808, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767541', 3767541, '530.575989', '78.841171', '-292.050598', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89536, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767542', 3767542, '536.018616', '73.912933', '-270.240601', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89264, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767543', 3767543, '527.257324', '78.277519', '-291.082397', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88992, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767550', 3767550, '559.405579', '68.352837', '-230.727402', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88720, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767551', 3767551, '504.920990', '71.617661', '-255.737900', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88448, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767552', 3767552, '562.426697', '74.626442', '-275.098114', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88176, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767553', 3767553, '515.106079', '86.958946', '-357.724792', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87886, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767554', 3767554, '555.815430', '86.288918', '-333.674286', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87614, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767555', 3767555, '550.172974', '86.038811', '-337.105713', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87342, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767556', 3767556, '556.703918', '86.005051', '-341.164612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87070, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767558', 3767558, '595.652222', '100.886101', '-481.113007', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86798, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767559', 3767559, '565.758728', '90.501213', '-411.795288', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767560', 3767560, '593.128418', '99.817238', '-476.295013', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767561', 3767561, '597.171326', '86.616676', '-366.082886', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767562', 3767562, '592.898621', '86.573059', '-364.752991', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767565', 3767565, '659.080383', '68.157593', '-282.327087', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767566', 3767566, '655.601379', '67.872910', '-278.542786', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767568', 3767568, '696.297791', '66.817932', '-301.967896', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767583', 3767583, '629.275208', '76.769440', '-316.382690', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84622, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767584', 3767584, '635.718506', '76.129578', '-319.129303', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84350, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767675', 3767675, '637.937683', '75.470261', '-314.178314', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84078, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767694', 3767694, '274.187408', '73.498833', '-235.511505', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767702', 3767702, '282.131287', '73.968918', '-250.520294', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767704', 3767704, '283.459686', '74.239098', '-252.146103', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767705', 3767705, '285.161987', '73.984657', '-268.017487', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767706', 3767706, '277.286194', '74.210907', '-280.408813', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767707', 3767707, '277.586212', '74.130417', '-281.519714', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767709', 3767709, '268.511505', '73.750023', '-310.081207', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767710', 3767710, '290.727997', '75.783447', '-320.191986', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767711', 3767711, '291.566193', '75.961906', '-321.088593', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767712', 3767712, '240.649994', '74.570793', '-328.847198', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767715', 3767715, '221.796799', '75.280907', '-305.122711', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767716', 3767716, '234.573196', '72.438171', '-271.531403', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767717', 3767717, '235.577301', '72.991150', '-274.815186', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767721', 3767721, '341.847809', '47.013062', '1.602173', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80300, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767722', 3767722, '413.717804', '55.405399', '-18.570250', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80028, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767725', 3767725, '414.877411', '56.473511', '-20.889650', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79756, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767729', 3767729, '340.932404', '58.884521', '-68.986153', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767730', 3767730, '349.904510', '70.939087', '-141.039200', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767735', 3767735, '351.399994', '71.122192', '-139.177597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767772', 3767772, '385.992096', '79.489769', '-359.438690', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767779', 3767779, '406.035400', '88.015427', '-400.377411', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767782', 3767782, '403.608612', '88.645103', '-402.194885', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767814', 3767814, '635.174072', '71.616203', '-284.468597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767845', 3767845, '633.182922', '72.289650', '-286.197998', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767846', 3767846, '635.372375', '67.114166', '-231.371002', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767853', 3767853, '622.306885', '64.499603', '-174.464905', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767854', 3767854, '645.827026', '60.818569', '-177.759293', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767857', 3767857, '725.192871', '64.427238', '-240.193405', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767859', 3767859, '617.085510', '62.126339', '-147.285202', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767860', 3767860, '673.612427', '64.732903', '-189.639206', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767863', 3767863, '676.003723', '64.536713', '-188.308105', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767872', 3767872, '678.086914', '64.518532', '-207.618896', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767901', 3767901, '653.968079', '78.578423', '-360.327515', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767906', 3767906, '656.550293', '77.457336', '-356.077393', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767907', 3767907, '657.869080', '77.894173', '-358.050293', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3767910', 3767910, '590.645020', '90.549652', '-389.681702', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3768115', 3768115, '530.515381', '91.184883', '-383.319305', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3768118', 3768118, '533.323120', '90.657288', '-380.765015', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3768152', 3768152, '508.880707', '96.069290', '-437.340302', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71342, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(262, 'e0034', 'bnpc3768153', 3768153, '519.773071', '96.615059', '-445.083588', 752, 0, 0, 0, 0, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71608, 3, 0, 0, 0, 16, 30059, 0, 0, 0), +(262, 'e0034', 'bnpc3768154', 3768154, '523.339417', '94.818977', '-429.381287', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72962, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(262, 'e0034', 'bnpc3768156', 3768156, '535.457581', '96.545937', '-468.044800', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72690, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(262, 'e0034', 'bnpc3768157', 3768157, '520.360107', '95.886787', '-460.180389', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72424, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(262, 'e0034', 'bnpc3768158', 3768158, '535.493225', '94.402260', '-439.778015', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70526, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(262, 'e0034', 'bnpc3768159', 3768159, '502.875793', '97.415413', '-416.738495', 754, 0, 0, 0, 0, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73234, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(262, 'e0034', 'bnpc3768160', 3768160, '521.578979', '94.382271', '-413.852905', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72152, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(262, 'e0034', 'bnpc3768161', 3768161, '509.317200', '94.366043', '-398.691711', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71070, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(262, 'e0034', 'bnpc3768165', 3768165, '517.667175', '95.947739', '-463.471588', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73506, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(262, 'e0034', 'bnpc3768166', 3768166, '501.819092', '97.276329', '-413.591797', 751, 0, 0, 0, 0, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70798, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(262, 'e0034', 'bnpc3768167', 3768167, '534.916016', '94.227654', '-435.617798', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71880, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(262, 'e0034', 'bnpc3873220', 3873220, '-19.011200', '59.577240', '478.601715', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68768, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873222', 3873222, '-57.635151', '54.398960', '509.264313', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68496, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873223', 3873223, '-72.043533', '60.186852', '494.941803', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68224, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873226', 3873226, '-82.569511', '59.009541', '500.667694', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67952, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873227', 3873227, '-85.215538', '58.176079', '495.797913', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67680, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873232', 3873232, '-26.285730', '45.126209', '554.549622', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67408, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873233', 3873233, '-80.450127', '53.830681', '543.885925', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67136, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873235', 3873235, '-77.768517', '54.979061', '539.636902', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66864, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873237', 3873237, '-49.665508', '40.839931', '590.425781', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66592, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873238', 3873238, '-51.547249', '40.978630', '596.975098', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66320, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873240', 3873240, '-56.989220', '40.385479', '595.949585', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66048, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873243', 3873243, '73.494881', '48.720230', '629.534424', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65776, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873244', 3873244, '83.244293', '50.021931', '641.594727', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65504, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873246', 3873246, '77.347931', '48.172680', '641.229797', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65232, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873247', 3873247, '77.649078', '56.774830', '716.941528', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64960, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873249', 3873249, '79.648613', '56.806110', '720.165710', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64688, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873250', 3873250, '52.669842', '55.384899', '724.728516', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873255', 3873255, '48.538898', '36.148571', '656.885620', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64144, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873256', 3873256, '46.513409', '36.839489', '684.859314', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63872, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873257', 3873257, '41.888302', '35.921108', '686.955078', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63600, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873265', 3873265, '34.495090', '45.667789', '819.153381', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63328, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873271', 3873271, '-18.570280', '43.203621', '763.671082', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63056, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873272', 3873272, '-24.521290', '43.172451', '761.992676', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62784, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873275', 3873275, '37.190269', '46.111851', '822.446777', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62512, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873324', 3873324, '79.270752', '49.720821', '871.732483', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62240, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873328', 3873328, '31.098160', '46.232330', '851.456421', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61968, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873329', 3873329, '-90.470787', '8.590782', '680.567627', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61702, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873330', 3873330, '-224.494995', '-0.300003', '686.536377', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61430, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873331', 3873331, '-215.466797', '-0.252817', '694.899719', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61158, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873332', 3873332, '-120.012199', '3.585823', '702.235413', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60886, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873333', 3873333, '-207.511307', '-0.292601', '666.813293', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60614, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873334', 3873334, '-171.158203', '-0.710317', '738.778076', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60342, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873335', 3873335, '-132.077698', '0.394896', '752.015930', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60070, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873336', 3873336, '-122.561096', '0.570598', '756.478577', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59798, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873337', 3873337, '-78.064957', '2.435715', '762.539001', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59526, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873339', 3873339, '-81.966408', '2.959849', '802.456604', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59254, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873340', 3873340, '-17.237820', '8.762830', '808.010925', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58982, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873343', 3873343, '91.020012', '21.945419', '806.005371', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58710, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873345', 3873345, '127.519600', '23.025820', '809.445313', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58438, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873348', 3873348, '121.338402', '24.555710', '817.927795', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58166, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873353', 3873353, '213.397400', '25.314671', '805.691528', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57894, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873359', 3873359, '80.472221', '24.632441', '756.982178', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57622, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873362', 3873362, '24.652531', '14.575950', '784.440430', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57350, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873363', 3873363, '139.838699', '21.711720', '778.939575', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57078, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(262, 'e0034', 'bnpc3873367', 3873367, '251.139801', '6.797970', '788.702271', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873368', 3873368, '253.283096', '6.540766', '787.524292', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873369', 3873369, '254.565994', '6.283995', '780.385681', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873371', 3873371, '246.057800', '9.008336', '801.580994', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873374', 3873374, '248.002304', '6.721136', '783.831970', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873375', 3873375, '248.302399', '6.265314', '767.472473', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873376', 3873376, '246.801407', '6.267453', '768.374390', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873379', 3873379, '-3.098505', '41.687851', '623.973083', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54914, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873381', 3873381, '-0.691058', '42.488289', '627.270020', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873382', 3873382, '-6.383020', '41.661289', '631.828674', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873385', 3873385, '-12.702990', '41.812180', '707.756409', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873386', 3873386, '-10.462590', '41.960880', '705.075378', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873387', 3873387, '-52.108768', '38.325489', '665.766113', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873388', 3873388, '-55.987579', '36.343479', '670.810486', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873389', 3873389, '-59.405991', '38.476730', '658.650818', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53010, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873390', 3873390, '-59.105999', '36.026340', '668.374023', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52738, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873396', 3873396, '-160.952896', '1.569027', '667.861206', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48398, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(262, 'e0034', 'bnpc3873398', 3873398, '-161.990494', '1.669328', '666.421692', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48126, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(262, 'e0034', 'bnpc3873399', 3873399, '-150.636902', '5.134464', '653.424011', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47854, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(262, 'e0034', 'bnpc3873401', 3873401, '-144.836700', '4.701064', '665.153870', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47582, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(262, 'e0034', 'bnpc3873402', 3873402, '-149.620605', '3.102985', '669.616089', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47310, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(262, 'e0034', 'bnpc3873403', 3873403, '-155.732605', '1.144920', '679.460327', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47038, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(262, 'e0034', 'bnpc3873404', 3873404, '-142.607895', '1.054965', '712.663025', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46766, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(262, 'e0034', 'bnpc3873405', 3873405, '-148.567505', '0.750069', '714.199524', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46494, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(262, 'e0034', 'bnpc3873406', 3873406, '-149.139404', '0.759766', '712.362000', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46222, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(262, 'e0034', 'bnpc3873420', 3873420, '-59.783230', '40.755260', '572.130127', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873421', 3873421, '-58.553791', '40.657639', '574.646973', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873422', 3873422, '-25.335461', '55.583641', '513.424194', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873425', 3873425, '142.979706', '22.710770', '829.297302', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51656, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873426', 3873426, '220.695999', '20.348419', '790.027283', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51384, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873427', 3873427, '69.222389', '20.622999', '778.105286', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51112, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873428', 3873428, '70.471992', '21.233120', '776.341980', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50840, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873430', 3873430, '66.086601', '57.020870', '725.806213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50568, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873431', 3873431, '79.195717', '52.007320', '685.675415', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50296, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873432', 3873432, '79.268204', '51.686298', '683.238892', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50024, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873433', 3873433, '-129.812698', '8.744282', '655.901672', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873434', 3873434, '-127.513100', '8.619234', '660.065491', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873435', 3873435, '-70.867996', '3.471146', '805.643616', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873461', 3873461, '18.223940', '44.911652', '832.339600', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc3873463', 3873463, '129.763306', '48.053009', '868.938477', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48664, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc4057136', 4057136, '-29.171040', '70.937523', '112.141998', 784, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23136, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(262, 'e0034', 'bnpc4057153', 4057153, '-33.309830', '59.142609', '456.249786', 785, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22870, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(262, 'e0034', 'bnpc4057178', 4057178, '-0.370673', '36.202759', '591.413818', 786, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22604, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(262, 'e0034', 'bnpc4057204', 4057204, '126.070801', '23.201380', '735.619629', 788, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22338, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(262, 'e0034', 'bnpc4510193', 4510193, '600.272400', '61.718521', '-115.521301', 787, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22072, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(262, 'e0034', 'bnpc4621602', 4621602, '205.951904', '73.024078', '-291.708496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26712, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc4867727', 4867727, '-103.902603', '2.225230', '731.826416', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26326, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc4867728', 4867728, '-115.780197', '1.850056', '725.665710', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26054, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc4867729', 4867729, '-96.687714', '2.097239', '744.887817', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25782, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc4867730', 4867730, '-98.053673', '1.671072', '759.716797', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25510, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(262, 'e0034', 'bnpc4867731', 4867731, '-109.169701', '1.535632', '746.508301', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23746, 8, 0, 0, 0, 0, 0, 4867752, 0, 0), +(262, 'e0034', 'bnpc4867733', 4867733, '-113.730499', '0.984999', '755.556274', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24018, 8, 0, 0, 0, 0, 0, 4867753, 0, 0), +(262, 'e0034', 'bnpc4867735', 4867735, '-122.788597', '0.819352', '748.165283', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25244, 8, 0, 0, 0, 0, 0, 4867761, 0, 0), +(262, 'e0034', 'bnpc4867736', 4867736, '-111.623299', '1.689789', '738.438904', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24972, 8, 0, 0, 0, 0, 0, 4867748, 0, 0), +(262, 'e0034', 'bnpc4867737', 4867737, '-123.906197', '0.960864', '734.838501', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23474, 8, 0, 0, 0, 0, 0, 4867754, 0, 0), +(263, 'e0035', 'bnpc3969486', 3969486, '557.060974', '28.946320', '333.730011', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135904, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969499', 3969499, '706.892212', '28.174080', '410.894989', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135638, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc3969501', 3969501, '698.946899', '27.231220', '412.552002', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135366, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc3969502', 3969502, '658.104797', '40.675949', '339.546509', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc3969504', 3969504, '688.856689', '42.308319', '338.199005', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc3969505', 3969505, '695.458374', '32.764568', '395.995209', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc3969506', 3969506, '714.097778', '41.205120', '366.676910', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc3969507', 3969507, '672.780518', '40.217781', '354.945709', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc3969508', 3969508, '719.824585', '40.851952', '370.876312', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc3969542', 3969542, '560.540100', '24.185499', '348.622803', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133456, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969548', 3969548, '522.148376', '23.025820', '338.460297', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133184, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969554', 3969554, '549.980774', '37.888100', '297.108398', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132912, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969559', 3969559, '529.777893', '26.199690', '320.881897', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969858', 3969858, '676.691772', '12.588650', '446.555206', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969860', 3969860, '668.372314', '21.641729', '428.498291', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132108, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969864', 3969864, '682.858887', '19.865379', '433.932312', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131836, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969865', 3969865, '734.760376', '26.661579', '441.483093', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131564, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969866', 3969866, '738.361572', '27.470659', '441.561615', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131292, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969867', 3969867, '743.555115', '43.828701', '397.126801', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131020, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969868', 3969868, '749.288208', '49.819462', '361.199493', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130748, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969869', 3969869, '745.879089', '49.587929', '364.109314', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130476, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969870', 3969870, '554.436523', '29.648230', '329.762695', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969874', 3969874, '501.999603', '16.372259', '323.036591', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969875', 3969875, '516.929810', '22.049240', '301.594513', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129648, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(263, 'e0035', 'bnpc3969876', 3969876, '565.178772', '35.629768', '313.008209', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969877', 3969877, '634.964478', '23.582150', '394.616089', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969913', 3969913, '617.781311', '28.683889', '370.071503', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969920', 3969920, '611.048096', '35.477501', '345.262604', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969921', 3969921, '586.014709', '27.906170', '353.311188', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969922', 3969922, '619.215576', '29.112610', '369.491608', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969923', 3969923, '588.120422', '28.606050', '352.456696', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969924', 3969924, '613.825195', '35.926769', '345.689789', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969925', 3969925, '619.487122', '27.800541', '373.672699', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969928', 3969928, '586.106323', '30.585791', '346.139404', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969938', 3969938, '607.670898', '42.955601', '306.352112', 348, 0, 0, 0, 0, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126680, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(263, 'e0035', 'bnpc3969940', 3969940, '601.888184', '42.074169', '311.211304', 349, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126414, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(263, 'e0035', 'bnpc3969942', 3969942, '586.741699', '40.893959', '312.224213', 349, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126142, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(263, 'e0035', 'bnpc3969943', 3969943, '615.350525', '43.930660', '306.935211', 348, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125864, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(263, 'e0035', 'bnpc3969944', 3969944, '582.392395', '43.245682', '301.571014', 349, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125598, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(263, 'e0035', 'bnpc3969945', 3969945, '593.642029', '43.886150', '301.072693', 348, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125320, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(263, 'e0035', 'bnpc3969946', 3969946, '601.489197', '43.885170', '302.896698', 348, 0, 0, 0, 0, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125048, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(263, 'e0035', 'bnpc3969947', 3969947, '600.182373', '43.875881', '302.854614', 349, 0, 0, 0, 0, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124782, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(263, 'e0035', 'bnpc3969953', 3969953, '466.849701', '12.710720', '359.487213', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969954', 3969954, '457.877411', '9.353733', '383.566010', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969977', 3969977, '450.522614', '9.018035', '388.296295', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969978', 3969978, '489.053406', '7.208063', '402.681610', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969979', 3969979, '510.520996', '1.643817', '421.411987', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969980', 3969980, '516.838318', '2.083105', '418.970612', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123156, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969981', 3969981, '454.281586', '8.893167', '420.949799', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122884, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3969983', 3969983, '510.302307', '3.759752', '406.295197', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122612, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970016', 3970016, '598.226685', '25.550039', '368.222595', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122304, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970018', 3970018, '617.181580', '32.516930', '357.289886', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122032, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970021', 3970021, '643.447693', '23.634590', '398.243011', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121760, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970023', 3970023, '635.004395', '20.669270', '404.579987', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121488, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970025', 3970025, '599.237000', '30.746880', '353.353088', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121216, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970032', 3970032, '622.963623', '41.739059', '320.949005', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120944, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970034', 3970034, '634.595825', '42.144840', '321.818115', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120672, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970036', 3970036, '626.665527', '41.288631', '324.601715', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120400, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970043', 3970043, '657.099609', '17.239750', '446.592987', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970044', 3970044, '603.288696', '6.133514', '483.976501', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970045', 3970045, '601.175476', '6.050048', '482.055298', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970058', 3970058, '513.097290', '16.847160', '355.958801', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970061', 3970061, '447.827789', '5.457586', '281.886292', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970133', 3970133, '416.984497', '-8.646816', '202.035202', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970135', 3970135, '412.728088', '-9.469052', '205.053802', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970136', 3970136, '346.358093', '-20.858730', '218.121307', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970139', 3970139, '349.959106', '-18.572670', '169.900894', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970140', 3970140, '354.643799', '-18.085939', '171.731094', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970155', 3970155, '335.827911', '-17.950689', '158.445908', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117108, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970159', 3970159, '307.105988', '-20.876850', '162.587708', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116836, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970161', 3970161, '298.054413', '-13.534800', '141.344299', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116564, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970162', 3970162, '293.618408', '-13.544960', '146.169205', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116292, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970166', 3970166, '194.223495', '-9.052984', '64.264412', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc3970168', 3970168, '126.745399', '-15.229580', '95.719521', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc3970170', 3970170, '165.697601', '-14.725040', '79.575813', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc3970171', 3970171, '84.276093', '-14.942520', '126.744102', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102450, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc3970174', 3970174, '97.569847', '-16.128820', '166.516693', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102722, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc3970177', 3970177, '7.003844', '-24.124559', '109.025703', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116026, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970184', 3970184, '24.765341', '-23.209021', '107.560799', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115754, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970186', 3970186, '-19.180639', '-22.568140', '51.071899', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970187', 3970187, '-12.954960', '-22.781759', '46.860409', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970190', 3970190, '7.797313', '-22.598660', '68.039932', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970193', 3970193, '104.600502', '-10.910250', '5.996748', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970194', 3970194, '55.405460', '-5.264410', '-30.655420', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970196', 3970196, '38.071209', '-5.203373', '-34.836391', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970199', 3970199, '64.013428', '-4.214352', '-64.780800', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970214', 3970214, '176.327301', '-12.764270', '112.090401', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc3970222', 3970222, '89.666710', '-1.146154', '-60.931259', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113584, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970231', 3970231, '82.380707', '-1.466871', '-63.000511', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970232', 3970232, '87.757019', '-2.006091', '-55.761841', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970236', 3970236, '82.076691', '-1.472959', '-64.535721', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970238', 3970238, '81.548286', '-2.522091', '-54.485199', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970241', 3970241, '76.980713', '-2.383074', '-61.994930', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970308', 3970308, '344.824890', '-17.982759', '163.365295', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970320', 3970320, '261.840088', '-17.578510', '163.665298', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970328', 3970328, '262.914001', '-17.209499', '160.012894', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970331', 3970331, '324.945801', '-5.662250', '104.268402', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970344', 3970344, '367.757294', '4.986305', '78.445778', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970353', 3970353, '366.964111', '4.318256', '81.956146', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970357', 3970357, '383.822998', '15.624690', '27.171089', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970366', 3970366, '253.742203', '2.639771', '62.302608', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100280, 5, 0, 0, 0, 28, 30059, 0, 0, 0), +(263, 'e0035', 'bnpc3970369', 3970369, '250.293701', '2.426147', '62.638309', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100552, 5, 0, 0, 0, 28, 30059, 0, 0, 0), +(263, 'e0035', 'bnpc3970370', 3970370, '253.833694', '2.365112', '64.438843', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99736, 5, 0, 0, 0, 28, 30059, 0, 0, 0), +(263, 'e0035', 'bnpc3970371', 3970371, '242.913300', '1.349542', '71.061279', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100008, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc3970372', 3970372, '243.379196', '1.981285', '58.301060', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101368, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc3970373', 3970373, '264.349487', '2.966964', '67.594612', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101640, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc3970374', 3970374, '258.144806', '5.613231', '48.790150', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100824, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc3970375', 3970375, '272.358307', '5.020142', '58.945560', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101096, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc3970378', 3970378, '170.397400', '-15.426920', '64.652428', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970381', 3970381, '148.926498', '-12.439410', '99.620064', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970382', 3970382, '150.743805', '-12.130980', '102.494904', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970389', 3970389, '5.355869', '-23.270050', '51.895889', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970391', 3970391, '79.423157', '-4.654048', '-18.814421', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970394', 3970394, '50.156361', '-2.487267', '-15.762620', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970399', 3970399, '48.172680', '-2.487267', '-15.457440', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970406', 3970406, '269.703186', '-9.597971', '96.116524', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108156, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970411', 3970411, '267.261688', '-10.238850', '98.008636', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107884, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970412', 3970412, '263.263885', '-10.391440', '90.897942', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107612, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970414', 3970414, '241.901199', '-11.703720', '95.231506', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107340, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970415', 3970415, '239.032501', '-11.642680', '94.010780', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107068, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970416', 3970416, '246.860504', '-13.252180', '112.323097', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106796, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970419', 3970419, '249.271500', '-13.493160', '115.100197', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106524, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970420', 3970420, '243.442505', '-14.033920', '117.877403', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106252, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970433', 3970433, '222.674896', '-14.938630', '104.905701', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105980, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970434', 3970434, '219.775604', '-15.091220', '103.654503', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105708, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970437', 3970437, '293.079987', '-11.703720', '132.432999', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105412, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970680', 3970680, '216.784897', '-14.389340', '95.933472', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3970681', 3970681, '272.755005', '-9.750549', '103.227303', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3972576', 3972576, '303.465607', '3.314056', '68.397324', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104596, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3972577', 3972577, '306.798889', '3.292596', '65.152077', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc3972584', 3972584, '338.778503', '-21.646130', '187.870697', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4057318', 4057318, '654.975586', '9.882965', '475.443115', 783, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21436, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(263, 'e0035', 'bnpc4057321', 4057321, '299.487488', '-24.761221', '213.123703', 785, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21170, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(263, 'e0035', 'bnpc4057322', 4057322, '221.054092', '-24.836121', '213.135193', 784, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20904, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(263, 'e0035', 'bnpc4057324', 4057324, '-96.358551', '-25.164360', '54.821659', 786, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20638, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(263, 'e0035', 'bnpc4057391', 4057391, '14.877870', '-10.652030', '-83.785133', 787, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20372, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(263, 'e0035', 'bnpc4108563', 4108563, '134.623199', '-16.564131', '55.533340', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102178, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4108567', 4108567, '124.950996', '-18.103809', '158.397507', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101906, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4114576', 4114576, '-69.169189', '-25.864071', '-73.624763', 768, 0, 0, 0, 1, 6, 0, 0, 565, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89138, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(263, 'e0035', 'bnpc4114578', 4114578, '-48.966251', '-22.781740', '-124.681503', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96990, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4114591', 4114591, '-75.944153', '-28.244450', '-144.487701', 766, 0, 0, 0, 0, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97528, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(263, 'e0035', 'bnpc4114593', 4114593, '-75.913696', '-28.427610', '-146.562897', 765, 0, 0, 0, 0, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98610, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(263, 'e0035', 'bnpc4114594', 4114594, '-97.522850', '-30.215300', '-148.102402', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97800, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4114595', 4114595, '-106.523300', '-31.509951', '-130.479904', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97262, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4116530', 4116530, '-157.610504', '-38.071289', '-31.235229', 766, 0, 0, 0, 0, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98072, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(263, 'e0035', 'bnpc4116531', 4116531, '-146.562897', '-27.573059', '20.462339', 765, 0, 0, 0, 1, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99154, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(263, 'e0035', 'bnpc4116532', 4116532, '-119.035599', '-27.328920', '23.208981', 767, 0, 0, 0, 1, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96446, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4116538', 4116538, '-155.565796', '-38.010250', '-31.357361', 765, 0, 0, 0, 0, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98882, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(263, 'e0035', 'bnpc4116539', 4116539, '-166.765900', '-32.578060', '5.874695', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96718, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4116540', 4116540, '-134.447296', '-30.472290', '-5.020264', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98344, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(263, 'e0035', 'bnpc4125231', 4125231, '-370.973785', '-40.882549', '-198.661697', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96180, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4125233', 4125233, '-63.096130', '-25.253719', '-114.000198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4125234', 4125234, '-50.309021', '-23.849850', '-91.264221', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95642, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4125235', 4125235, '-90.898071', '-29.831421', '-137.163406', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4125236', 4125236, '-129.961105', '-32.852779', '-108.934097', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4125238', 4125238, '-158.037796', '-34.042912', '-99.229492', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4125239', 4125239, '-185.717606', '-39.169922', '-80.796570', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94554, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4125240', 4125240, '-190.905594', '-41.001041', '-49.210388', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4125241', 4125241, '-202.166794', '-40.024479', '-90.806519', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4125242', 4125242, '-140.642502', '-30.411249', '1.815735', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4125243', 4125243, '-166.796402', '-36.392818', '-12.100400', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4125244', 4125244, '-222.583405', '-40.634769', '-87.815727', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93194, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4125247', 4125247, '-423.331085', '-40.756901', '-220.508102', 773, 0, 0, 0, 1, 6, 0, 0, 347, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92928, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(263, 'e0035', 'bnpc4125248', 4125248, '-412.832886', '-41.458801', '-213.153305', 776, 0, 0, 0, 0, 6, 0, 0, 559, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92662, 1, 0, 0, 0, 36, 30079, 0, 0, 0), +(263, 'e0035', 'bnpc4125250', 4125250, '-411.978394', '-41.641911', '-212.024200', 774, 0, 0, 0, 0, 6, 0, 0, 345, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92396, 1, 0, 0, 0, 36, 30065, 0, 0, 0), +(263, 'e0035', 'bnpc4125261', 4125261, '-441.245209', '-39.475101', '-220.111496', 774, 0, 0, 0, 0, 6, 0, 0, 345, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92124, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(263, 'e0035', 'bnpc4125262', 4125262, '-440.054993', '-39.475101', '-218.646606', 776, 0, 0, 0, 1, 6, 0, 0, 559, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91846, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(263, 'e0035', 'bnpc4125263', 4125263, '-435.568787', '-41.001041', '-232.898407', 773, 0, 0, 0, 1, 6, 0, 0, 347, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91568, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(263, 'e0035', 'bnpc4125282', 4125282, '-406.515594', '-28.397030', '-253.040405', 774, 0, 0, 0, 0, 6, 0, 0, 345, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91308, 1, 0, 0, 0, 36, 30077, 0, 0, 0), +(263, 'e0035', 'bnpc4125283', 4125283, '-407.217499', '-28.397030', '-253.528702', 776, 0, 0, 0, 0, 6, 0, 0, 559, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91030, 1, 0, 0, 0, 36, 30079, 0, 0, 0), +(263, 'e0035', 'bnpc4125285', 4125285, '-412.985413', '-28.397030', '-250.843094', 773, 0, 0, 0, 1, 6, 0, 0, 347, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90752, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(263, 'e0035', 'bnpc4125286', 4125286, '-405.966309', '-37.644100', '-243.823898', 773, 0, 0, 0, 1, 6, 0, 0, 347, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90480, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(263, 'e0035', 'bnpc4125289', 4125289, '-398.519897', '-40.817928', '-218.188797', 774, 0, 0, 0, 1, 6, 0, 0, 345, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90220, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(263, 'e0035', 'bnpc4125290', 4125290, '-391.042999', '-38.651119', '-244.220703', 776, 0, 0, 0, 1, 6, 0, 0, 559, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89942, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(263, 'e0035', 'bnpc4316913', 4316913, '-221.667801', '-42.008121', '-198.138397', 765, 0, 0, 0, 1, 6, 0, 0, 2525, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81986, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4316918', 4316918, '-211.239502', '-41.783859', '-229.267593', 766, 0, 0, 0, 1, 6, 0, 0, 2524, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81720, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4316920', 4316920, '-242.389603', '-42.008121', '-221.606796', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81490, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4316922', 4316922, '-243.732407', '-41.367310', '-179.705597', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81182, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4316928', 4316928, '-237.445602', '-41.977600', '-231.189499', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80910, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4316930', 4316930, '-202.472000', '-42.008121', '-244.739395', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80638, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4316933', 4316933, '-197.619598', '-41.428280', '-317.036713', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80366, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4316935', 4316935, '-237.476196', '-42.008121', '-307.362488', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80094, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4316938', 4316938, '-292.652802', '-41.672421', '-327.657013', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79822, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4316939', 4316939, '-440.940002', '-33.005310', '-363.149506', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79550, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4316942', 4316942, '-458.416687', '-32.786930', '-362.740295', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79278, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4316943', 4316943, '-263.904785', '-43.381409', '-271.076599', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72514, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4316944', 4316944, '-319.625488', '-39.391800', '-300.050995', 766, 0, 0, 0, 0, 6, 0, 0, 1828, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79000, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(263, 'e0035', 'bnpc4316945', 4316945, '-317.930511', '-39.354549', '-298.395599', 768, 0, 0, 0, 0, 6, 0, 0, 1830, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78770, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(263, 'e0035', 'bnpc4316950', 4316950, '-207.660095', '-42.008121', '-279.957306', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72786, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4316951', 4316951, '-144.609802', '-41.153629', '-241.840302', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78498, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4316958', 4316958, '-146.990204', '-41.031559', '-289.265289', 766, 0, 0, 0, 0, 6, 0, 0, 2524, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78184, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(263, 'e0035', 'bnpc4316959', 4316959, '-147.081696', '-41.031559', '-291.035309', 768, 0, 0, 0, 0, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77954, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(263, 'e0035', 'bnpc4316960', 4316960, '-167.712006', '-41.336731', '-290.058807', 765, 0, 0, 0, 1, 6, 0, 0, 2525, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77634, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4316963', 4316963, '-232.440704', '-40.146481', '-349.050201', 768, 0, 0, 0, 1, 6, 0, 0, 1830, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77410, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4316964', 4316964, '-282.307190', '-42.008121', '-365.072113', 766, 0, 0, 0, 0, 6, 0, 0, 1828, 0, '0.000000', 47, 0, 120, 1, 0, 25, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 66216, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(263, 'e0035', 'bnpc4316965', 4316965, '-281.116913', '-42.008121', '-359.151611', 766, 0, 0, 0, 0, 6, 0, 0, 1828, 0, '0.000000', 47, 0, 120, 1, 0, 21, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 77096, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(263, 'e0035', 'bnpc4316980', 4316980, '-375.469208', '-39.479321', '-346.811401', 768, 0, 0, 0, 0, 6, 0, 0, 1830, 0, '0.000000', 49, 0, 120, 1, 0, 31, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 76866, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(263, 'e0035', 'bnpc4316981', 4316981, '-360.719788', '-35.466740', '-409.681396', 766, 0, 0, 0, 1, 6, 0, 0, 1828, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76552, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4316987', 4316987, '-351.952209', '-35.287498', '-400.680786', 768, 0, 0, 0, 1, 6, 0, 0, 1830, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72242, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4317006', 4317006, '-425.589386', '-33.107040', '-354.529510', 766, 0, 0, 0, 0, 6, 0, 0, 1828, 0, '0.000000', 49, 0, 120, 1, 0, 35, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 76280, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(263, 'e0035', 'bnpc4317012', 4317012, '-354.351501', '-39.271420', '-303.235596', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76062, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4317015', 4317015, '-507.061493', '-32.206131', '-362.981293', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75790, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4317016', 4317016, '-496.515411', '-31.640949', '-381.532288', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75518, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4317017', 4317017, '-386.895294', '-35.722141', '-293.090790', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75246, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4317019', 4317019, '-374.123108', '-37.690010', '-300.576691', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74974, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4317020', 4317020, '-364.905487', '-37.562908', '-288.443298', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74702, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4321460', 4321460, '-315.388794', '-38.406979', '624.200806', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321461', 4321461, '-274.008301', '-39.855450', '650.736206', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321463', 4321463, '-243.883301', '-39.120640', '668.059570', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321464', 4321464, '-281.698914', '-40.244148', '655.379211', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321465', 4321465, '-345.691711', '-40.588310', '660.238220', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321466', 4321466, '-392.988892', '-41.449879', '655.634277', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64414, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321467', 4321467, '-363.413086', '-40.854279', '695.693970', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64142, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321468', 4321468, '-450.857391', '-37.997330', '733.822021', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321469', 4321469, '-476.772797', '-38.142120', '757.051270', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321470', 4321470, '-447.854492', '-37.912220', '730.335571', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321471', 4321471, '-477.072906', '-37.196659', '711.034729', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321472', 4321472, '-507.253998', '-37.196659', '740.505798', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321473', 4321473, '-479.166901', '-37.732540', '738.016785', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321474', 4321474, '-451.650787', '-37.109020', '704.282288', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321475', 4321475, '-308.953400', '-42.000000', '713.766479', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61978, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4321477', 4321477, '-348.667999', '-42.000000', '722.773987', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4321478', 4321478, '-268.398895', '-42.000000', '721.376526', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61434, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4321479', 4321479, '-229.397903', '-41.984539', '738.036926', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61162, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4321480', 4321480, '-226.253403', '-41.385059', '735.099487', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60890, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4321481', 4321481, '-322.466187', '-41.807381', '693.960083', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60618, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4321482', 4321482, '-286.179810', '-41.791012', '697.924927', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4321483', 4321483, '-259.243988', '-38.144661', '566.177124', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60062, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321486', 4321486, '-292.149994', '-40.520851', '429.086090', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321487', 4321487, '-311.995514', '-41.332989', '414.272888', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59536, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321488', 4321488, '-288.225800', '-40.390610', '430.941986', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59264, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321489', 4321489, '-255.620697', '-40.477798', '440.482300', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58992, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321490', 4321490, '-240.806793', '-38.337589', '480.157013', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321492', 4321492, '-223.535095', '-38.907558', '511.755188', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58448, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321493', 4321493, '-250.595703', '-38.072151', '503.112091', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58176, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321494', 4321494, '-227.069397', '-38.621010', '515.364319', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57904, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321495', 4321495, '-208.841599', '-38.722130', '493.455811', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57632, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(263, 'e0035', 'bnpc4321496', 4321496, '-241.072998', '-38.224331', '544.913513', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57360, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321497', 4321497, '-291.392700', '-38.949532', '627.616089', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57088, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321498', 4321498, '-261.889404', '-39.899719', '661.304077', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56816, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321499', 4321499, '-370.138092', '-40.451721', '688.807495', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56544, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321500', 4321500, '-291.260986', '-41.491730', '693.390076', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56272, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321501', 4321501, '-332.560211', '-42.000000', '711.026123', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56000, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321502', 4321502, '-329.420013', '-42.000000', '712.776611', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55728, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321503', 4321503, '-246.192200', '-40.441620', '709.686218', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55456, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321505', 4321505, '-240.736298', '-42.000000', '742.566528', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55184, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321506', 4321506, '-468.364594', '-38.197491', '749.200073', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54912, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321508', 4321508, '-469.616486', '-37.505680', '723.021729', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321509', 4321509, '-467.157196', '-37.692699', '722.171387', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54368, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321510', 4321510, '-443.166687', '-37.068859', '715.848694', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321511', 4321511, '-438.206390', '-35.766102', '670.497375', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321526', 4321526, '-71.423027', '-25.768869', '-86.368896', 768, 0, 0, 0, 1, 6, 0, 0, 565, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88866, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4321527', 4321527, '-78.263550', '-26.108219', '-70.908691', 768, 0, 0, 0, 0, 6, 0, 0, 565, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89410, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4321528', 4321528, '-39.536190', '-22.232420', '-158.983795', 765, 0, 0, 0, 1, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89634, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(263, 'e0035', 'bnpc4621608', 4621608, '430.063690', '14.976550', '469.112305', 2770, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21786, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633063', 4633063, '-390.393707', '-41.813049', '-203.727905', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88564, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633067', 4633067, '-360.463898', '-39.780331', '-216.723907', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88292, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633068', 4633068, '-355.794708', '-40.390629', '-201.770096', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88020, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633073', 4633073, '-373.761292', '-40.459530', '-206.054901', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87748, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633074', 4633074, '-349.660492', '-38.529110', '-232.227097', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87476, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633076', 4633076, '-357.646790', '-38.274658', '-239.828094', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87204, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633118', 4633118, '-155.500198', '-34.403210', '-88.681213', 765, 0, 0, 0, 1, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86914, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(263, 'e0035', 'bnpc4633119', 4633119, '-216.104294', '-40.840759', '-85.531441', 765, 0, 0, 0, 1, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86642, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(263, 'e0035', 'bnpc4633122', 4633122, '-180.251999', '-39.087090', '-75.459579', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86376, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(263, 'e0035', 'bnpc4633123', 4633123, '-193.427002', '-38.091850', '-114.042099', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86104, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(263, 'e0035', 'bnpc4633124', 4633124, '-121.586899', '-32.542980', '-106.177200', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85832, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(263, 'e0035', 'bnpc4633125', 4633125, '-145.063293', '-32.872959', '-115.359398', 767, 0, 0, 0, 1, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85566, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633126', 4633126, '-216.646500', '-41.021160', '-66.576988', 767, 0, 0, 0, 1, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85294, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633128', 4633128, '-196.023407', '-42.000118', '-288.500702', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74436, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633131', 4633131, '-181.510605', '-42.000141', '-270.853699', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74164, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633132', 4633132, '-221.403793', '-42.000000', '-294.279510', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73892, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633133', 4633133, '-255.104706', '-42.000011', '-324.852905', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73620, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633134', 4633134, '-272.297607', '-42.000000', '-331.539307', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73348, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633135', 4633135, '-275.837311', '-41.886051', '-348.195587', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73076, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633157', 4633157, '-96.910004', '-30.450001', '-92.839996', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 12, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85064, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633224', 4633224, '-103.441002', '-31.479370', '-116.075401', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 14, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84792, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633232', 4633232, '-118.730499', '-32.303410', '-133.012894', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 15, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84520, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633233', 4633233, '-84.733398', '-29.587280', '-110.399101', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 11, 0, 16, 22, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83976, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633236', 4633236, '-91.264221', '-30.197689', '-128.465698', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 13, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84248, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633263', 4633263, '-789.705627', '-41.480991', '683.228088', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53234, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633264', 4633264, '-759.089783', '-38.575909', '689.571106', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52962, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633265', 4633265, '-805.386475', '-40.817928', '661.463318', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52690, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633266', 4633266, '-794.361572', '-39.456490', '648.005005', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52418, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633267', 4633267, '-775.544617', '-38.485760', '658.247375', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52146, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633268', 4633268, '-775.478821', '-40.268620', '671.290222', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51874, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633269', 4633269, '-818.600830', '-42.008121', '650.415771', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51602, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633270', 4633270, '-762.932495', '-38.970909', '687.098389', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51330, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633271', 4633271, '-776.258606', '-39.190811', '705.569885', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51058, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633276', 4633276, '-283.527893', '-41.916561', '-357.747803', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 21, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 70090, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633279', 4633279, '-294.392303', '-41.489319', '-349.569000', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 22, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 69818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633281', 4633281, '-296.894806', '-41.733459', '-359.090607', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 23, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 70362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633283', 4633283, '-293.720886', '-41.641911', '-367.788208', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 24, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 70906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633285', 4633285, '-282.062988', '-42.038639', '-367.910309', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 25, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 70634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633286', 4633286, '-377.859192', '-39.444641', '-348.989105', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 31, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 69552, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633288', 4633288, '-395.040802', '-38.559631', '-343.953613', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 32, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 69280, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633289', 4633289, '-415.392700', '-33.349609', '-358.443909', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 33, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 69008, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633290', 4633290, '-423.105713', '-32.905010', '-367.492004', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 34, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 68736, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633291', 4633291, '-425.528412', '-33.066349', '-357.686798', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 35, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 68464, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4633377', 4633377, '-188.154800', '-41.040760', '-213.112900', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71970, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4633783', 4633783, '-343.341888', '-39.413860', '-362.948090', 765, 0, 0, 0, 1, 6, 0, 0, 1827, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71650, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4633784', 4633784, '-423.791107', '-33.754879', '-325.509613', 765, 0, 0, 0, 1, 6, 0, 0, 1827, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71378, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4633787', 4633787, '-415.514801', '-33.350899', '-355.147888', 765, 0, 0, 0, 0, 6, 0, 0, 1827, 0, '0.000000', 49, 0, 120, 1, 0, 33, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 71106, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(263, 'e0035', 'bnpc4664481', 4664481, '-777.584473', '-42.008121', '724.696716', 383, 0, 18, 5, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50786, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4664485', 4664485, '-809.964111', '-41.672421', '665.003418', 383, 0, 18, 5, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50514, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4664488', 4664488, '-789.944275', '-41.458801', '705.134583', 383, 0, 18, 5, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50242, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4666236', 4666236, '-878.239990', '-20.652750', '883.271118', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49862, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4666257', 4666257, '-828.987305', '-25.652750', '888.069519', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49590, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4666258', 4666258, '-829.739929', '-25.680969', '889.829773', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49318, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4666259', 4666259, '-815.924316', '-23.649630', '888.875488', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49046, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4666260', 4666260, '-817.754517', '-23.649630', '894.566589', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48774, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(263, 'e0035', 'bnpc4666261', 4666261, '-877.169678', '-20.873289', '876.188171', 775, 0, 0, 0, 1, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48616, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(263, 'e0035', 'bnpc4666262', 4666262, '-875.114197', '-20.902760', '890.589722', 776, 0, 0, 0, 1, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48266, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(263, 'e0035', 'bnpc4666265', 4666265, '-832.192383', '-25.647751', '899.698303', 775, 0, 0, 0, 0, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48072, 2, 0, 0, 0, 0, 30079, 0, 0, 282), +(263, 'e0035', 'bnpc4666266', 4666266, '-883.583496', '-20.647829', '889.883484', 776, 0, 0, 0, 0, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47722, 2, 0, 0, 0, 0, 30065, 0, 0, 282), +(263, 'e0035', 'bnpc4666267', 4666267, '-888.256775', '-20.652750', '881.349426', 775, 0, 0, 0, 0, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47528, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(263, 'e0035', 'bnpc4666268', 4666268, '-887.970093', '-20.652760', '879.854126', 776, 0, 0, 0, 0, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47178, 2, 0, 0, 0, 0, 30073, 0, 0, 282), +(263, 'e0035', 'bnpc4666269', 4666269, '-822.368286', '-24.341749', '895.894714', 775, 0, 0, 0, 1, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46984, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(263, 'e0035', 'bnpc4666270', 4666270, '-824.196777', '-25.652750', '884.833923', 776, 0, 0, 0, 1, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46634, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(263, 'e0035', 'bnpc4666271', 4666271, '-830.350220', '-25.650511', '879.239990', 775, 0, 0, 0, 0, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46440, 2, 0, 0, 0, 0, 30066, 0, 0, 282), +(263, 'e0035', 'bnpc4666272', 4666272, '-834.023621', '-25.647751', '899.649170', 776, 0, 0, 0, 0, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46090, 2, 0, 0, 0, 0, 30065, 0, 0, 282), +(263, 'e0035', 'bnpc4666281', 4666281, '-922.445129', '-20.652750', '935.165527', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45794, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666282', 4666282, '-913.466614', '-20.902750', '923.657410', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45522, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666283', 4666283, '-912.036621', '-20.902750', '938.072876', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45250, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666284', 4666284, '-867.946289', '-25.647751', '918.489319', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44978, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666285', 4666285, '-853.890320', '-23.649630', '930.090576', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44706, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666286', 4666286, '-857.944092', '-24.538349', '922.393616', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44434, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666287', 4666287, '-867.256897', '-25.652750', '934.697571', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44162, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666288', 4666288, '-914.135620', '-20.652750', '930.937622', 2832, 0, 0, 0, 1, 6, 0, 0, 2538, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43944, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4666291', 4666291, '-853.015991', '-23.649630', '925.301086', 2832, 0, 0, 0, 1, 6, 0, 0, 2538, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43672, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4666292', 4666292, '-864.342407', '-25.652750', '926.222717', 2832, 0, 0, 0, 1, 6, 0, 0, 2538, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43400, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4666293', 4666293, '-860.802307', '-25.647760', '930.098389', 2832, 0, 0, 0, 1, 6, 0, 0, 2538, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43128, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(263, 'e0035', 'bnpc4666294', 4666294, '-921.446472', '-20.676029', '926.420898', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42802, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666705', 4666705, '-862.519897', '-20.652750', '958.568176', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42548, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(263, 'e0035', 'bnpc4666706', 4666706, '-853.286377', '-20.902750', '958.398071', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42276, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(263, 'e0035', 'bnpc4666707', 4666707, '-857.476013', '-20.902750', '972.392212', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42004, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(263, 'e0035', 'bnpc4666708', 4666708, '-807.939697', '-25.652750', '970.221191', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41732, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(263, 'e0035', 'bnpc4666709', 4666709, '-813.264771', '-25.652750', '979.515930', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41460, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(263, 'e0035', 'bnpc4666710', 4666710, '-813.351990', '-25.647751', '985.380127', 773, 0, 0, 0, 0, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41188, 2, 0, 0, 0, 0, 30065, 0, 0, 282), +(263, 'e0035', 'bnpc4666711', 4666711, '-808.987488', '-25.650511', '964.934692', 773, 0, 0, 0, 0, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40916, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(263, 'e0035', 'bnpc4666712', 4666712, '-799.837708', '-23.649639', '983.904175', 773, 0, 0, 0, 0, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40644, 2, 0, 0, 0, 0, 30066, 0, 0, 282), +(263, 'e0035', 'bnpc4666714', 4666714, '-855.103516', '-20.652750', '965.275879', 766, 0, 0, 0, 1, 6, 0, 0, 2540, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40348, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666715', 4666715, '-807.366516', '-25.652750', '978.315125', 766, 0, 0, 0, 1, 6, 0, 0, 2540, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40076, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666716', 4666716, '-798.339783', '-23.649630', '975.416626', 766, 0, 0, 0, 1, 6, 0, 0, 2540, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39804, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666717', 4666717, '-805.016602', '-25.647760', '974.326172', 768, 0, 0, 0, 1, 6, 0, 0, 2541, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39574, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666718', 4666718, '-798.632202', '-23.649630', '979.035828', 768, 0, 0, 0, 1, 6, 0, 0, 2541, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39302, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666719', 4666719, '-861.894470', '-20.652750', '968.356384', 768, 0, 0, 0, 1, 6, 0, 0, 2541, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39030, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666720', 4666720, '-936.066711', '-31.750019', '852.472473', 775, 0, 0, 0, 0, 6, 0, 0, 2542, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38824, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(263, 'e0035', 'bnpc4666721', 4666721, '-933.356873', '-30.260000', '832.557922', 775, 0, 0, 0, 0, 6, 0, 0, 2542, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38552, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(263, 'e0035', 'bnpc4666722', 4666722, '-923.082092', '-30.250000', '842.560730', 775, 0, 0, 0, 0, 6, 0, 0, 2542, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38280, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(263, 'e0035', 'bnpc4666723', 4666723, '-914.793579', '-28.763309', '805.386414', 775, 0, 0, 0, 0, 6, 0, 0, 2542, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38008, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(263, 'e0035', 'bnpc4666724', 4666724, '-936.587219', '-31.755150', '843.129822', 765, 0, 0, 0, 1, 6, 0, 0, 2543, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37622, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666725', 4666725, '-926.512573', '-30.258671', '834.653076', 765, 0, 0, 0, 1, 6, 0, 0, 2543, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37350, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666726', 4666726, '-917.355713', '-28.760000', '806.922974', 765, 0, 0, 0, 1, 6, 0, 0, 2543, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37078, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666728', 4666728, '-910.490601', '-28.763309', '809.658813', 765, 0, 0, 0, 1, 6, 0, 0, 2543, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36806, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4666734', 4666734, '-89.256203', '-30.084669', '-124.693199', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 13, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83662, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4666735', 4666735, '-94.161926', '-30.635151', '-89.379402', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 12, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83390, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4666736', 4666736, '-85.840622', '-29.611879', '-107.485497', 766, 0, 0, 0, 0, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 11, 0, 16, 22, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83112, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(263, 'e0035', 'bnpc4666746', 4666746, '-104.014999', '-31.623831', '-118.950104', 765, 0, 0, 0, 0, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 14, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 82834, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(263, 'e0035', 'bnpc4666747', 4666747, '-118.166702', '-32.339401', '-135.991302', 765, 0, 0, 0, 0, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 15, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 82562, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(263, 'e0035', 'bnpc4667026', 4667026, '-292.652802', '-41.733459', '-365.011108', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 47, 0, 120, 1, 0, 24, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 68126, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4667027', 4667027, '-293.720886', '-41.580872', '-346.913910', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 47, 0, 120, 1, 0, 22, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 67854, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4667028', 4667028, '-294.453400', '-41.580872', '-359.822998', 768, 0, 0, 0, 0, 6, 0, 0, 1830, 0, '0.000000', 47, 0, 120, 1, 0, 23, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 67618, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(263, 'e0035', 'bnpc4667036', 4667036, '-425.913300', '-32.791721', '-368.407501', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 49, 0, 120, 1, 0, 34, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 67310, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4667037', 4667037, '-397.546295', '-37.902161', '-342.084900', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 49, 0, 120, 1, 0, 32, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 67038, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(263, 'e0035', 'bnpc4681259', 4681259, '-351.697388', '-38.557800', '-379.104797', 766, 0, 0, 0, 1, 6, 0, 0, 1828, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66760, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(263, 'e0035', 'bnpc4681260', 4681260, '-370.744995', '-35.287498', '-414.281708', 768, 0, 0, 0, 0, 6, 0, 0, 1830, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66530, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(264, 'e0036', 'bnpc3760882', 3760882, '7.760897', '64.944183', '95.225662', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760883', 3760883, '11.569650', '64.269142', '103.174004', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760884', 3760884, '27.212851', '64.259323', '68.436661', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121286, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760886', 3760886, '35.300129', '63.748798', '70.756027', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122102, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760887', 3760887, '29.623779', '63.785370', '72.434517', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122918, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760888', 3760888, '12.674300', '64.363640', '96.110687', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122646, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760889', 3760889, '37.375351', '64.107178', '66.758171', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122374, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760890', 3760890, '35.361160', '64.320633', '64.408279', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760896', 3760896, '20.935301', '61.990829', '147.102097', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760898', 3760898, '32.574959', '59.535831', '128.579605', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119382, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760901', 3760901, '3.688727', '65.262871', '139.257401', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119110, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760902', 3760902, '1.674536', '65.722069', '135.412201', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760911', 3760911, '66.135712', '56.046421', '111.429703', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760912', 3760912, '62.577202', '57.663799', '106.370598', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120470, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760913', 3760913, '64.103104', '57.114471', '107.652298', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760917', 3760917, '60.457890', '61.337429', '74.236450', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121830, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760922', 3760922, '96.288940', '49.550621', '73.985641', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126182, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760923', 3760923, '110.317703', '42.549389', '102.239700', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125366, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760925', 3760925, '121.477097', '40.913620', '141.046600', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125638, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760927', 3760927, '99.690933', '44.016190', '125.932701', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126998, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760933', 3760933, '86.244019', '47.554829', '160.082397', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126726, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760937', 3760937, '87.891998', '47.433571', '161.638794', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123190, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760948', 3760948, '68.406143', '53.661510', '183.326599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123462, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760950', 3760950, '62.399029', '56.000351', '191.517303', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125910, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760952', 3760952, '63.992779', '55.493610', '189.245102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124550, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760958', 3760958, '51.348160', '55.864281', '150.438599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124278, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760961', 3760961, '56.546551', '56.041698', '186.103394', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125094, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3760965', 3760965, '53.117081', '55.406071', '151.622894', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124822, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761027', 3761027, '-7.343534', '67.714622', '93.888710', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153092, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761030', 3761030, '15.512480', '63.992210', '99.894920', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152820, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761031', 3761031, '78.979568', '53.555161', '86.569473', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124006, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761032', 3761032, '80.505470', '52.852570', '87.851227', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123734, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761033', 3761033, '31.698999', '64.077950', '68.192520', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152548, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761034', 3761034, '111.202797', '42.291870', '104.620102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126454, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761035', 3761035, '112.698097', '41.971249', '105.901901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127270, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761036', 3761036, '16.824760', '63.905472', '97.575546', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152276, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761039', 3761039, '11.941870', '64.628357', '91.990753', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152004, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761041', 3761041, '54.459400', '59.806961', '102.917297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151732, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761042', 3761042, '30.722420', '63.595020', '74.784416', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151460, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761044', 3761044, '19.068230', '62.294941', '149.492599', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151188, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761045', 3761045, '22.420271', '61.734470', '145.882996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150916, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761046', 3761046, '31.079571', '59.608490', '125.924500', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150644, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761048', 3761048, '66.227257', '56.978741', '104.868301', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150372, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761049', 3761049, '81.546333', '52.845501', '84.585800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150100, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761050', 3761050, '62.755970', '60.386440', '76.019211', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149828, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761051', 3761051, '109.737900', '42.563049', '105.962898', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149556, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761052', 3761052, '98.714363', '44.085449', '129.594803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149284, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761053', 3761053, '98.425201', '49.276859', '70.598137', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149012, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761054', 3761054, '99.981613', '48.315552', '73.649940', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148740, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761080', 3761080, '100.606499', '43.794998', '128.557205', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148468, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761081', 3761081, '89.814621', '46.770222', '157.976593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148196, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761084', 3761084, '51.818901', '55.815891', '145.346603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147924, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761085', 3761085, '70.215584', '52.939968', '181.270401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147652, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761086', 3761086, '60.924660', '55.885761', '189.770996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147380, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761088', 3761088, '48.845680', '56.451950', '150.896393', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147108, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761089', 3761089, '50.420841', '56.054260', '153.244995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146836, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761096', 3761096, '199.256302', '27.059620', '91.574173', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146570, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761097', 3761097, '66.501930', '57.215820', '101.480797', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761099', 3761099, '111.690498', '36.582958', '4.053726', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146298, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761100', 3761100, '67.783684', '56.291199', '107.065697', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761102', 3761102, '156.633804', '34.653191', '70.542397', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146026, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761103', 3761103, '23.832260', '61.353020', '150.988007', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761104', 3761104, '24.717279', '61.225311', '149.156906', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761105', 3761105, '167.377899', '33.443420', '75.522820', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145754, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761108', 3761108, '124.488503', '36.345482', '15.758260', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145482, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761109', 3761109, '159.302094', '33.928551', '78.777786', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145210, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761111', 3761111, '108.955002', '36.663021', '9.387772', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144938, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761112', 3761112, '131.578506', '35.965469', '45.853310', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144666, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761123', 3761123, '237.190399', '36.611149', '66.717194', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761124', 3761124, '242.137604', '44.361130', '44.958832', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144128, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761125', 3761125, '242.718903', '43.673290', '46.873840', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143856, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761128', 3761128, '187.436096', '42.116020', '51.900459', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143584, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761129', 3761129, '223.247696', '51.849850', '26.116220', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143312, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761130', 3761130, '223.430801', '52.761440', '22.759239', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143040, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761131', 3761131, '217.449295', '51.875561', '27.520050', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142768, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761134', 3761134, '223.010498', '31.021540', '165.483994', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142496, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761135', 3761135, '227.779602', '33.454979', '203.906296', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142224, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761136', 3761136, '242.318497', '38.158321', '234.873306', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141952, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761137', 3761137, '227.626999', '34.365898', '207.232697', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141680, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761139', 3761139, '245.897202', '37.488659', '235.919693', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141408, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761141', 3761141, '195.561203', '47.715080', '226.776001', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141136, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761142', 3761142, '197.033997', '48.159161', '228.423004', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761143', 3761143, '222.161804', '50.249969', '256.272888', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761145', 3761145, '180.566803', '43.422722', '197.741592', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138416, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(264, 'e0036', 'bnpc3761146', 3761146, '181.211105', '43.103500', '194.872894', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761147', 3761147, '150.769104', '55.568981', '248.645706', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761149', 3761149, '148.855896', '56.596169', '250.553299', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761150', 3761150, '152.127594', '64.016029', '312.689392', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761151', 3761151, '154.979797', '64.179688', '314.660492', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761152', 3761152, '153.705307', '64.400146', '315.376495', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761155', 3761155, '115.122803', '68.518044', '293.763489', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761164', 3761164, '69.781052', '51.086330', '157.761703', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761169', 3761169, '97.733994', '47.043510', '88.944794', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761303', 3761303, '204.358505', '46.098690', '45.780960', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761362', 3761362, '198.245804', '51.531582', '242.749405', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3761367', 3761367, '182.543594', '41.458710', '51.590698', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761369', 3761369, '186.119797', '42.655750', '49.950859', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761370', 3761370, '285.549408', '42.548729', '57.964470', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761371', 3761371, '285.078796', '44.421532', '49.076550', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761372', 3761372, '239.723694', '36.528450', '66.898483', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761373', 3761373, '148.845200', '38.711102', '41.285278', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761374', 3761374, '152.171600', '39.307671', '41.468391', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761375', 3761375, '182.186905', '54.291470', '262.783508', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761376', 3761376, '184.506195', '55.134689', '266.109985', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761475', 3761475, '201.696899', '32.601101', '76.500427', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135684, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761552', 3761552, '150.981400', '38.858120', '42.405491', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135412, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761553', 3761553, '185.442902', '41.123051', '53.604858', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135140, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761554', 3761554, '206.775299', '43.330341', '53.446110', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134868, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761555', 3761555, '208.241592', '43.763321', '52.334370', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134596, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761556', 3761556, '239.497803', '36.005562', '68.131721', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134324, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761557', 3761557, '215.528305', '44.498230', '50.226871', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134052, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761572', 3761572, '223.339294', '51.412380', '27.733681', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133780, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761576', 3761576, '283.996399', '43.243752', '55.750099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133508, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761580', 3761580, '272.696899', '45.167171', '32.535080', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133236, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761585', 3761585, '215.465607', '53.837990', '20.867121', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132964, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761592', 3761592, '217.212097', '32.425369', '164.537994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132692, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761607', 3761607, '218.341293', '32.455891', '165.972305', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132420, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761622', 3761622, '202.532898', '37.857590', '176.104294', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132148, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761626', 3761626, '183.154007', '42.709949', '197.436401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131876, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761716', 3761716, '184.920502', '44.981480', '218.420700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131604, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761718', 3761718, '224.420395', '35.250660', '205.197601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131332, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761720', 3761720, '242.515396', '37.441879', '232.829803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131060, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761721', 3761721, '215.690094', '51.411850', '255.712601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130788, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761722', 3761722, '217.734802', '50.606812', '253.454300', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130516, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761723', 3761723, '185.971100', '54.557800', '262.936096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130244, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761726', 3761726, '152.777603', '58.215248', '280.103607', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129972, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761727', 3761727, '152.238602', '58.132370', '277.662201', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129700, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761728', 3761728, '118.327202', '67.511993', '294.840210', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129428, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761730', 3761730, '114.320396', '68.359100', '296.500885', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129156, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3761731', 3761731, '153.412399', '63.654282', '311.208801', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128884, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766328', 3766328, '444.374390', '64.694489', '-36.484081', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766391', 3766391, '446.046112', '65.017601', '-33.594650', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766399', 3766399, '453.421814', '56.259960', '-0.534113', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766401', 3766401, '455.924286', '55.802189', '3.341679', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766402', 3766402, '448.874603', '55.222351', '4.837063', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766575', 3766575, '366.619385', '51.659290', '-12.188280', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766577', 3766577, '364.147400', '52.146080', '-17.895161', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766579', 3766579, '370.878113', '59.451641', '-59.303612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766580', 3766580, '368.924988', '58.367748', '-54.695389', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766581', 3766581, '373.350098', '58.395641', '-53.596741', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766584', 3766584, '363.439606', '63.704231', '-82.801590', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766586', 3766586, '341.616302', '51.478588', '-30.833561', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766588', 3766588, '305.806000', '47.806469', '0.503501', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766589', 3766589, '308.552612', '48.569420', '-3.769025', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766591', 3766591, '409.158112', '63.702721', '-82.786118', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766592', 3766592, '412.649689', '63.919991', '-86.564484', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766596', 3766596, '450.583588', '66.468239', '-76.957558', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766603', 3766603, '394.502594', '67.135857', '-121.089203', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766604', 3766604, '391.786499', '67.793007', '-123.530602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3766605', 3766605, '395.113007', '67.180733', '-122.828697', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767081', 3767081, '473.143494', '66.440041', '-148.859894', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767082', 3767082, '437.091309', '65.055496', '-127.757103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767083', 3767083, '438.506500', '65.198730', '-126.336800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767118', 3767118, '437.011108', '65.003197', '-124.078499', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767119', 3767119, '474.052002', '66.418793', '-147.307800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767127', 3767127, '371.903290', '67.982323', '-110.760803', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3767131', 3767131, '460.464600', '68.698967', '-124.371498', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3767137', 3767137, '564.060181', '84.658661', '-310.397614', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3767139', 3767139, '425.864014', '78.873833', '-349.813110', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3767149', 3767149, '418.543213', '65.856056', '-158.386795', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767152', 3767152, '380.575195', '71.228844', '-138.534103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767155', 3767155, '353.131409', '70.227692', '-126.119904', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767158', 3767158, '355.969604', '70.540512', '-125.082298', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767160', 3767160, '354.321594', '69.995934', '-123.739502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767163', 3767163, '385.091888', '70.103569', '-139.968506', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767164', 3767164, '383.413391', '70.520859', '-137.771194', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767165', 3767165, '382.223206', '70.816437', '-140.151596', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767230', 3767230, '338.126892', '68.759033', '-132.386398', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767240', 3767240, '525.678589', '69.218857', '-235.317993', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91168, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767241', 3767241, '529.279724', '69.670998', '-238.980103', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90352, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767242', 3767242, '523.878113', '69.910103', '-240.231400', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90624, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767246', 3767246, '503.511597', '77.082458', '-297.441315', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767247', 3767247, '490.567688', '72.273407', '-273.391388', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767248', 3767248, '499.222992', '76.478897', '-297.574799', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767251', 3767251, '561.724976', '68.563721', '-232.711105', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90896, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767262', 3767262, '609.164307', '70.799339', '-269.442291', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767263', 3767263, '607.699524', '69.742554', '-262.681885', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767264', 3767264, '611.178528', '70.073822', '-266.496613', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767271', 3767271, '583.442871', '78.270691', '-293.369995', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767272', 3767272, '582.626099', '82.811012', '-321.008209', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767273', 3767273, '586.291077', '77.487671', '-291.515594', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767374', 3767374, '436.361908', '73.251167', '-304.983185', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767375', 3767375, '432.991608', '72.276894', '-303.043610', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767376', 3767376, '349.804901', '74.911560', '-321.936798', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767377', 3767377, '435.671997', '72.056473', '-300.979401', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104478, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767388', 3767388, '361.665588', '75.651962', '-325.562408', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767390', 3767390, '363.221985', '75.155243', '-322.388489', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767391', 3767391, '358.186493', '73.581299', '-315.714813', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767393', 3767393, '395.641113', '76.023048', '-328.902496', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767394', 3767394, '397.399597', '76.429916', '-332.825500', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767395', 3767395, '393.430298', '76.446228', '-331.738098', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767396', 3767396, '392.678711', '86.886810', '-395.321106', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767399', 3767399, '470.368805', '87.249977', '-348.957306', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767400', 3767400, '454.939209', '84.293327', '-350.549591', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767401', 3767401, '458.387787', '84.602448', '-346.643188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767402', 3767402, '428.051086', '76.420769', '-330.744385', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767425', 3767425, '422.176910', '67.247093', '-159.579803', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767426', 3767426, '420.543213', '66.332741', '-157.321503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767435', 3767435, '384.954498', '71.312561', '-255.829102', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767436', 3767436, '381.795898', '71.738327', '-257.517487', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767437', 3767437, '387.359314', '69.869453', '-264.137299', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767445', 3767445, '628.911987', '66.716454', '-231.728607', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767446', 3767446, '630.792603', '66.280296', '-209.603195', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767447', 3767447, '629.602417', '66.422333', '-211.983597', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767448', 3767448, '627.954529', '66.392159', '-210.335602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767449', 3767449, '632.471130', '66.334442', '-211.800507', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767450', 3767450, '630.285278', '66.806633', '-233.987000', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767455', 3767455, '662.184509', '66.885223', '-232.532303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767456', 3767456, '663.832520', '66.880669', '-235.767197', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767457', 3767457, '660.994324', '67.126022', '-234.912704', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767458', 3767458, '679.883301', '64.783623', '-225.588394', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767462', 3767462, '683.051575', '64.449142', '-221.445694', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767463', 3767463, '686.133911', '64.440773', '-225.077301', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767464', 3767464, '682.532776', '64.535759', '-223.856598', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767465', 3767465, '680.213379', '64.599297', '-222.178101', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767466', 3767466, '644.667419', '61.202068', '-179.041107', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98228, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767467', 3767467, '646.345825', '61.561089', '-181.268906', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767468', 3767468, '625.297607', '63.148769', '-175.494003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767469', 3767469, '624.534729', '62.919571', '-173.449295', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767472', 3767472, '612.920227', '62.437519', '-154.581299', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97140, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767473', 3767473, '618.413513', '60.995640', '-154.157501', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96868, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767474', 3767474, '611.729980', '62.836342', '-156.961700', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96596, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767475', 3767475, '610.081970', '62.919849', '-155.313705', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96324, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767480', 3767480, '599.736572', '66.081619', '-200.660995', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96052, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767481', 3767481, '603.400085', '66.248016', '-212.652893', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95780, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767482', 3767482, '600.591125', '66.117447', '-203.224594', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767487', 3767487, '582.119629', '63.525211', '-162.909500', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767488', 3767488, '583.554016', '63.640011', '-161.566696', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767504', 3767504, '384.336212', '81.769058', '-374.104706', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767505', 3767505, '386.960785', '82.047218', '-374.979614', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92250, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767508', 3767508, '420.230408', '83.041237', '-377.818695', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91978, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767509', 3767509, '416.202087', '83.456848', '-380.199188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91706, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767510', 3767510, '414.218414', '82.361076', '-374.217590', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91434, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767538', 3767538, '559.649475', '74.212418', '-273.297485', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90080, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767539', 3767539, '565.844971', '73.504051', '-271.077698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89808, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767541', 3767541, '530.575989', '78.841171', '-292.050598', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89536, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767542', 3767542, '536.018616', '73.912933', '-270.240601', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89264, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767543', 3767543, '527.257324', '78.277519', '-291.082397', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88992, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767550', 3767550, '559.405579', '68.352837', '-230.727402', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88720, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767551', 3767551, '504.920990', '71.617661', '-255.737900', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88448, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767552', 3767552, '562.426697', '74.626442', '-275.098114', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88176, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767553', 3767553, '515.106079', '86.958946', '-357.724792', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87886, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767554', 3767554, '555.815430', '86.288918', '-333.674286', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87614, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767555', 3767555, '550.172974', '86.038811', '-337.105713', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87342, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767556', 3767556, '556.703918', '86.005051', '-341.164612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87070, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767558', 3767558, '595.652222', '100.886101', '-481.113007', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86798, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767559', 3767559, '565.758728', '90.501213', '-411.795288', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767560', 3767560, '593.128418', '99.817238', '-476.295013', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767561', 3767561, '597.171326', '86.616676', '-366.082886', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767562', 3767562, '592.898621', '86.573059', '-364.752991', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767565', 3767565, '659.080383', '68.157593', '-282.327087', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767566', 3767566, '655.601379', '67.872910', '-278.542786', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767568', 3767568, '696.297791', '66.817932', '-301.967896', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767583', 3767583, '629.275208', '76.769440', '-316.382690', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84622, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767584', 3767584, '635.718506', '76.129578', '-319.129303', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84350, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767675', 3767675, '637.937683', '75.470261', '-314.178314', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84078, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767694', 3767694, '274.187408', '73.498833', '-235.511505', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767702', 3767702, '282.131287', '73.968918', '-250.520294', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767704', 3767704, '283.459686', '74.239098', '-252.146103', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767705', 3767705, '285.161987', '73.984657', '-268.017487', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767706', 3767706, '277.286194', '74.210907', '-280.408813', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767707', 3767707, '277.586212', '74.130417', '-281.519714', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767709', 3767709, '268.511505', '73.750023', '-310.081207', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767710', 3767710, '290.727997', '75.783447', '-320.191986', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767711', 3767711, '291.566193', '75.961906', '-321.088593', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767712', 3767712, '240.649994', '74.570793', '-328.847198', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767715', 3767715, '221.796799', '75.280907', '-305.122711', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767716', 3767716, '234.573196', '72.438171', '-271.531403', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767717', 3767717, '235.577301', '72.991150', '-274.815186', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767721', 3767721, '341.847809', '47.013062', '1.602173', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80300, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767722', 3767722, '413.717804', '55.405399', '-18.570250', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80028, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767725', 3767725, '414.877411', '56.473511', '-20.889650', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79756, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767729', 3767729, '340.932404', '58.884521', '-68.986153', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767730', 3767730, '349.904510', '70.939087', '-141.039200', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767735', 3767735, '351.399994', '71.122192', '-139.177597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767772', 3767772, '385.992096', '79.489769', '-359.438690', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767779', 3767779, '406.035400', '88.015427', '-400.377411', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767782', 3767782, '403.608612', '88.645103', '-402.194885', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767814', 3767814, '635.174072', '71.616203', '-284.468597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767845', 3767845, '633.182922', '72.289650', '-286.197998', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767846', 3767846, '635.372375', '67.114166', '-231.371002', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767853', 3767853, '622.306885', '64.499603', '-174.464905', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767854', 3767854, '645.827026', '60.818569', '-177.759293', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767857', 3767857, '725.192871', '64.427238', '-240.193405', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767859', 3767859, '617.085510', '62.126339', '-147.285202', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767860', 3767860, '673.612427', '64.732903', '-189.639206', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767863', 3767863, '676.003723', '64.536713', '-188.308105', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767872', 3767872, '678.086914', '64.518532', '-207.618896', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767901', 3767901, '653.968079', '78.578423', '-360.327515', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767906', 3767906, '656.550293', '77.457336', '-356.077393', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767907', 3767907, '657.869080', '77.894173', '-358.050293', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3767910', 3767910, '590.645020', '90.549652', '-389.681702', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3768115', 3768115, '530.515381', '91.184883', '-383.319305', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3768118', 3768118, '533.323120', '90.657288', '-380.765015', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3768152', 3768152, '508.880707', '96.069290', '-437.340302', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71342, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(264, 'e0036', 'bnpc3768153', 3768153, '519.773071', '96.615059', '-445.083588', 752, 0, 0, 0, 0, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71608, 3, 0, 0, 0, 16, 30059, 0, 0, 0), +(264, 'e0036', 'bnpc3768154', 3768154, '523.339417', '94.818977', '-429.381287', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72962, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(264, 'e0036', 'bnpc3768156', 3768156, '535.457581', '96.545937', '-468.044800', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72690, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(264, 'e0036', 'bnpc3768157', 3768157, '520.360107', '95.886787', '-460.180389', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72424, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(264, 'e0036', 'bnpc3768158', 3768158, '535.493225', '94.402260', '-439.778015', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70526, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(264, 'e0036', 'bnpc3768159', 3768159, '502.875793', '97.415413', '-416.738495', 754, 0, 0, 0, 0, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73234, 3, 0, 0, 0, 16, 30060, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(264, 'e0036', 'bnpc3768160', 3768160, '521.578979', '94.382271', '-413.852905', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72152, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(264, 'e0036', 'bnpc3768161', 3768161, '509.317200', '94.366043', '-398.691711', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71070, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(264, 'e0036', 'bnpc3768165', 3768165, '517.667175', '95.947739', '-463.471588', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73506, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(264, 'e0036', 'bnpc3768166', 3768166, '501.819092', '97.276329', '-413.591797', 751, 0, 0, 0, 0, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70798, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(264, 'e0036', 'bnpc3768167', 3768167, '534.916016', '94.227654', '-435.617798', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71880, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(264, 'e0036', 'bnpc3873220', 3873220, '-19.011200', '59.577240', '478.601715', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68768, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873222', 3873222, '-57.635151', '54.398960', '509.264313', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68496, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873223', 3873223, '-72.043533', '60.186852', '494.941803', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68224, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873226', 3873226, '-82.569511', '59.009541', '500.667694', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67952, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873227', 3873227, '-85.215538', '58.176079', '495.797913', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67680, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873232', 3873232, '-26.285730', '45.126209', '554.549622', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67408, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873233', 3873233, '-80.450127', '53.830681', '543.885925', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67136, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873235', 3873235, '-77.768517', '54.979061', '539.636902', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66864, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873237', 3873237, '-49.665508', '40.839931', '590.425781', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66592, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873238', 3873238, '-51.547249', '40.978630', '596.975098', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66320, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873240', 3873240, '-56.989220', '40.385479', '595.949585', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66048, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873243', 3873243, '73.494881', '48.720230', '629.534424', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65776, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873244', 3873244, '83.244293', '50.021931', '641.594727', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65504, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873246', 3873246, '77.347931', '48.172680', '641.229797', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65232, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873247', 3873247, '77.649078', '56.774830', '716.941528', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64960, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873249', 3873249, '79.648613', '56.806110', '720.165710', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64688, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873250', 3873250, '52.669842', '55.384899', '724.728516', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873255', 3873255, '48.538898', '36.148571', '656.885620', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64144, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873256', 3873256, '46.513409', '36.839489', '684.859314', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63872, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873257', 3873257, '41.888302', '35.921108', '686.955078', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63600, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873265', 3873265, '34.495090', '45.667789', '819.153381', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63328, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873271', 3873271, '-18.570280', '43.203621', '763.671082', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63056, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873272', 3873272, '-24.521290', '43.172451', '761.992676', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62784, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873275', 3873275, '37.190269', '46.111851', '822.446777', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62512, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873324', 3873324, '79.270752', '49.720821', '871.732483', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62240, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873328', 3873328, '31.098160', '46.232330', '851.456421', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61968, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873329', 3873329, '-90.470787', '8.590782', '680.567627', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61702, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873330', 3873330, '-224.494995', '-0.300003', '686.536377', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61430, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873331', 3873331, '-215.466797', '-0.252817', '694.899719', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61158, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873332', 3873332, '-120.012199', '3.585823', '702.235413', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60886, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873333', 3873333, '-207.511307', '-0.292601', '666.813293', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60614, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873334', 3873334, '-171.158203', '-0.710317', '738.778076', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60342, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873335', 3873335, '-132.077698', '0.394896', '752.015930', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60070, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873336', 3873336, '-122.561096', '0.570598', '756.478577', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59798, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873337', 3873337, '-78.064957', '2.435715', '762.539001', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59526, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873339', 3873339, '-81.966408', '2.959849', '802.456604', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59254, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873340', 3873340, '-17.237820', '8.762830', '808.010925', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58982, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873343', 3873343, '91.020012', '21.945419', '806.005371', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58710, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873345', 3873345, '127.519600', '23.025820', '809.445313', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58438, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873348', 3873348, '121.338402', '24.555710', '817.927795', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58166, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873353', 3873353, '213.397400', '25.314671', '805.691528', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57894, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873359', 3873359, '80.472221', '24.632441', '756.982178', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57622, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873362', 3873362, '24.652531', '14.575950', '784.440430', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57350, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873363', 3873363, '139.838699', '21.711720', '778.939575', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57078, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(264, 'e0036', 'bnpc3873367', 3873367, '251.139801', '6.797970', '788.702271', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873368', 3873368, '253.283096', '6.540766', '787.524292', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873369', 3873369, '254.565994', '6.283995', '780.385681', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873371', 3873371, '246.057800', '9.008336', '801.580994', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873374', 3873374, '248.002304', '6.721136', '783.831970', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873375', 3873375, '248.302399', '6.265314', '767.472473', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873376', 3873376, '246.801407', '6.267453', '768.374390', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873379', 3873379, '-3.098505', '41.687851', '623.973083', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54914, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873381', 3873381, '-0.691058', '42.488289', '627.270020', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873382', 3873382, '-6.383020', '41.661289', '631.828674', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873385', 3873385, '-12.702990', '41.812180', '707.756409', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873386', 3873386, '-10.462590', '41.960880', '705.075378', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873387', 3873387, '-52.108768', '38.325489', '665.766113', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873388', 3873388, '-55.987579', '36.343479', '670.810486', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873389', 3873389, '-59.405991', '38.476730', '658.650818', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53010, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873390', 3873390, '-59.105999', '36.026340', '668.374023', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52738, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873396', 3873396, '-160.952896', '1.569027', '667.861206', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48398, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(264, 'e0036', 'bnpc3873398', 3873398, '-161.990494', '1.669328', '666.421692', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48126, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(264, 'e0036', 'bnpc3873399', 3873399, '-150.636902', '5.134464', '653.424011', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47854, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(264, 'e0036', 'bnpc3873401', 3873401, '-144.836700', '4.701064', '665.153870', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47582, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(264, 'e0036', 'bnpc3873402', 3873402, '-149.620605', '3.102985', '669.616089', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47310, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(264, 'e0036', 'bnpc3873403', 3873403, '-155.732605', '1.144920', '679.460327', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47038, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(264, 'e0036', 'bnpc3873404', 3873404, '-142.607895', '1.054965', '712.663025', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46766, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(264, 'e0036', 'bnpc3873405', 3873405, '-148.567505', '0.750069', '714.199524', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46494, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(264, 'e0036', 'bnpc3873406', 3873406, '-149.139404', '0.759766', '712.362000', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46222, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(264, 'e0036', 'bnpc3873420', 3873420, '-59.783230', '40.755260', '572.130127', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873421', 3873421, '-58.553791', '40.657639', '574.646973', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873422', 3873422, '-25.335461', '55.583641', '513.424194', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873425', 3873425, '142.979706', '22.710770', '829.297302', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51656, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873426', 3873426, '220.695999', '20.348419', '790.027283', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51384, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873427', 3873427, '69.222389', '20.622999', '778.105286', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51112, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873428', 3873428, '70.471992', '21.233120', '776.341980', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50840, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873430', 3873430, '66.086601', '57.020870', '725.806213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50568, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873431', 3873431, '79.195717', '52.007320', '685.675415', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50296, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873432', 3873432, '79.268204', '51.686298', '683.238892', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50024, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873433', 3873433, '-129.812698', '8.744282', '655.901672', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873434', 3873434, '-127.513100', '8.619234', '660.065491', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873435', 3873435, '-70.867996', '3.471146', '805.643616', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873461', 3873461, '18.223940', '44.911652', '832.339600', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc3873463', 3873463, '129.763306', '48.053009', '868.938477', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48664, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc4057136', 4057136, '-29.171040', '70.937523', '112.141998', 784, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23136, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(264, 'e0036', 'bnpc4057153', 4057153, '-33.309830', '59.142609', '456.249786', 785, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22870, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(264, 'e0036', 'bnpc4057178', 4057178, '-0.370673', '36.202759', '591.413818', 786, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22604, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(264, 'e0036', 'bnpc4057204', 4057204, '126.070801', '23.201380', '735.619629', 788, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22338, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(264, 'e0036', 'bnpc4510193', 4510193, '600.272400', '61.718521', '-115.521301', 787, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22072, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(264, 'e0036', 'bnpc4621602', 4621602, '205.951904', '73.024078', '-291.708496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26712, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc4867727', 4867727, '-103.902603', '2.225230', '731.826416', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26326, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc4867728', 4867728, '-115.780197', '1.850056', '725.665710', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26054, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc4867729', 4867729, '-96.687714', '2.097239', '744.887817', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25782, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc4867730', 4867730, '-98.053673', '1.671072', '759.716797', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25510, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(264, 'e0036', 'bnpc4867731', 4867731, '-109.169701', '1.535632', '746.508301', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23746, 8, 0, 0, 0, 0, 0, 4867752, 0, 0), +(264, 'e0036', 'bnpc4867733', 4867733, '-113.730499', '0.984999', '755.556274', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24018, 8, 0, 0, 0, 0, 0, 4867753, 0, 0), +(264, 'e0036', 'bnpc4867735', 4867735, '-122.788597', '0.819352', '748.165283', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25244, 8, 0, 0, 0, 0, 0, 4867761, 0, 0), +(264, 'e0036', 'bnpc4867736', 4867736, '-111.623299', '1.689789', '738.438904', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24972, 8, 0, 0, 0, 0, 0, 4867748, 0, 0), +(264, 'e0036', 'bnpc4867737', 4867737, '-123.906197', '0.960864', '734.838501', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23474, 8, 0, 0, 0, 0, 0, 4867754, 0, 0), +(265, 'e0037', 'bnpc3760882', 3760882, '7.760897', '64.944183', '95.225662', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760883', 3760883, '11.569650', '64.269142', '103.174004', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760884', 3760884, '27.212851', '64.259323', '68.436661', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121286, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760886', 3760886, '35.300129', '63.748798', '70.756027', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122102, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760887', 3760887, '29.623779', '63.785370', '72.434517', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122918, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760888', 3760888, '12.674300', '64.363640', '96.110687', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122646, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760889', 3760889, '37.375351', '64.107178', '66.758171', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122374, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760890', 3760890, '35.361160', '64.320633', '64.408279', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760896', 3760896, '20.935301', '61.990829', '147.102097', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760898', 3760898, '32.574959', '59.535831', '128.579605', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119382, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760901', 3760901, '3.688727', '65.262871', '139.257401', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119110, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760902', 3760902, '1.674536', '65.722069', '135.412201', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760911', 3760911, '66.135712', '56.046421', '111.429703', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760912', 3760912, '62.577202', '57.663799', '106.370598', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120470, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760913', 3760913, '64.103104', '57.114471', '107.652298', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760917', 3760917, '60.457890', '61.337429', '74.236450', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121830, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760922', 3760922, '96.288940', '49.550621', '73.985641', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126182, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760923', 3760923, '110.317703', '42.549389', '102.239700', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125366, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760925', 3760925, '121.477097', '40.913620', '141.046600', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125638, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760927', 3760927, '99.690933', '44.016190', '125.932701', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126998, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760933', 3760933, '86.244019', '47.554829', '160.082397', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126726, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760937', 3760937, '87.891998', '47.433571', '161.638794', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123190, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760948', 3760948, '68.406143', '53.661510', '183.326599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123462, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760950', 3760950, '62.399029', '56.000351', '191.517303', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125910, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760952', 3760952, '63.992779', '55.493610', '189.245102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124550, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760958', 3760958, '51.348160', '55.864281', '150.438599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124278, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760961', 3760961, '56.546551', '56.041698', '186.103394', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125094, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3760965', 3760965, '53.117081', '55.406071', '151.622894', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124822, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761027', 3761027, '-7.343534', '67.714622', '93.888710', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153092, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761030', 3761030, '15.512480', '63.992210', '99.894920', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152820, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761031', 3761031, '78.979568', '53.555161', '86.569473', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124006, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761032', 3761032, '80.505470', '52.852570', '87.851227', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123734, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761033', 3761033, '31.698999', '64.077950', '68.192520', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152548, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761034', 3761034, '111.202797', '42.291870', '104.620102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126454, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761035', 3761035, '112.698097', '41.971249', '105.901901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127270, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761036', 3761036, '16.824760', '63.905472', '97.575546', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152276, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761039', 3761039, '11.941870', '64.628357', '91.990753', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152004, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761041', 3761041, '54.459400', '59.806961', '102.917297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151732, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761042', 3761042, '30.722420', '63.595020', '74.784416', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151460, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761044', 3761044, '19.068230', '62.294941', '149.492599', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151188, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761045', 3761045, '22.420271', '61.734470', '145.882996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150916, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761046', 3761046, '31.079571', '59.608490', '125.924500', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150644, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761048', 3761048, '66.227257', '56.978741', '104.868301', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150372, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761049', 3761049, '81.546333', '52.845501', '84.585800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150100, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761050', 3761050, '62.755970', '60.386440', '76.019211', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149828, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761051', 3761051, '109.737900', '42.563049', '105.962898', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149556, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761052', 3761052, '98.714363', '44.085449', '129.594803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149284, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761053', 3761053, '98.425201', '49.276859', '70.598137', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149012, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761054', 3761054, '99.981613', '48.315552', '73.649940', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148740, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761080', 3761080, '100.606499', '43.794998', '128.557205', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148468, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761081', 3761081, '89.814621', '46.770222', '157.976593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148196, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761084', 3761084, '51.818901', '55.815891', '145.346603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147924, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761085', 3761085, '70.215584', '52.939968', '181.270401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147652, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761086', 3761086, '60.924660', '55.885761', '189.770996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147380, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761088', 3761088, '48.845680', '56.451950', '150.896393', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147108, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761089', 3761089, '50.420841', '56.054260', '153.244995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146836, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761096', 3761096, '199.256302', '27.059620', '91.574173', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146570, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761097', 3761097, '66.501930', '57.215820', '101.480797', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761099', 3761099, '111.690498', '36.582958', '4.053726', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146298, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761100', 3761100, '67.783684', '56.291199', '107.065697', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761102', 3761102, '156.633804', '34.653191', '70.542397', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146026, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761103', 3761103, '23.832260', '61.353020', '150.988007', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761104', 3761104, '24.717279', '61.225311', '149.156906', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761105', 3761105, '167.377899', '33.443420', '75.522820', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145754, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761108', 3761108, '124.488503', '36.345482', '15.758260', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145482, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761109', 3761109, '159.302094', '33.928551', '78.777786', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145210, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761111', 3761111, '108.955002', '36.663021', '9.387772', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144938, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761112', 3761112, '131.578506', '35.965469', '45.853310', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144666, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761123', 3761123, '237.190399', '36.611149', '66.717194', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761124', 3761124, '242.137604', '44.361130', '44.958832', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144128, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761125', 3761125, '242.718903', '43.673290', '46.873840', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143856, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761128', 3761128, '187.436096', '42.116020', '51.900459', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143584, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761129', 3761129, '223.247696', '51.849850', '26.116220', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143312, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761130', 3761130, '223.430801', '52.761440', '22.759239', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143040, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761131', 3761131, '217.449295', '51.875561', '27.520050', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142768, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761134', 3761134, '223.010498', '31.021540', '165.483994', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142496, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761135', 3761135, '227.779602', '33.454979', '203.906296', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142224, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761136', 3761136, '242.318497', '38.158321', '234.873306', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141952, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761137', 3761137, '227.626999', '34.365898', '207.232697', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141680, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761139', 3761139, '245.897202', '37.488659', '235.919693', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141408, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761141', 3761141, '195.561203', '47.715080', '226.776001', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141136, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761142', 3761142, '197.033997', '48.159161', '228.423004', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761143', 3761143, '222.161804', '50.249969', '256.272888', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761145', 3761145, '180.566803', '43.422722', '197.741592', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761146', 3761146, '181.211105', '43.103500', '194.872894', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761147', 3761147, '150.769104', '55.568981', '248.645706', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761149', 3761149, '148.855896', '56.596169', '250.553299', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761150', 3761150, '152.127594', '64.016029', '312.689392', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761151', 3761151, '154.979797', '64.179688', '314.660492', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761152', 3761152, '153.705307', '64.400146', '315.376495', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761155', 3761155, '115.122803', '68.518044', '293.763489', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761164', 3761164, '69.781052', '51.086330', '157.761703', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761169', 3761169, '97.733994', '47.043510', '88.944794', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761303', 3761303, '204.358505', '46.098690', '45.780960', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761362', 3761362, '198.245804', '51.531582', '242.749405', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3761367', 3761367, '182.543594', '41.458710', '51.590698', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761369', 3761369, '186.119797', '42.655750', '49.950859', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761370', 3761370, '285.549408', '42.548729', '57.964470', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761371', 3761371, '285.078796', '44.421532', '49.076550', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761372', 3761372, '239.723694', '36.528450', '66.898483', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761373', 3761373, '148.845200', '38.711102', '41.285278', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761374', 3761374, '152.171600', '39.307671', '41.468391', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761375', 3761375, '182.186905', '54.291470', '262.783508', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761376', 3761376, '184.506195', '55.134689', '266.109985', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761475', 3761475, '201.696899', '32.601101', '76.500427', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135684, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761552', 3761552, '150.981400', '38.858120', '42.405491', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135412, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761553', 3761553, '185.442902', '41.123051', '53.604858', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135140, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761554', 3761554, '206.775299', '43.330341', '53.446110', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134868, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761555', 3761555, '208.241592', '43.763321', '52.334370', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134596, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761556', 3761556, '239.497803', '36.005562', '68.131721', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134324, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761557', 3761557, '215.528305', '44.498230', '50.226871', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134052, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(265, 'e0037', 'bnpc3761572', 3761572, '223.339294', '51.412380', '27.733681', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133780, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761576', 3761576, '283.996399', '43.243752', '55.750099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133508, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761580', 3761580, '272.696899', '45.167171', '32.535080', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133236, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761585', 3761585, '215.465607', '53.837990', '20.867121', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132964, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761592', 3761592, '217.212097', '32.425369', '164.537994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132692, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761607', 3761607, '218.341293', '32.455891', '165.972305', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132420, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761622', 3761622, '202.532898', '37.857590', '176.104294', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132148, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761626', 3761626, '183.154007', '42.709949', '197.436401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131876, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761716', 3761716, '184.920502', '44.981480', '218.420700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131604, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761718', 3761718, '224.420395', '35.250660', '205.197601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131332, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761720', 3761720, '242.515396', '37.441879', '232.829803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131060, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761721', 3761721, '215.690094', '51.411850', '255.712601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130788, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761722', 3761722, '217.734802', '50.606812', '253.454300', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130516, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761723', 3761723, '185.971100', '54.557800', '262.936096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130244, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761726', 3761726, '152.777603', '58.215248', '280.103607', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129972, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761727', 3761727, '152.238602', '58.132370', '277.662201', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129700, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761728', 3761728, '118.327202', '67.511993', '294.840210', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129428, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761730', 3761730, '114.320396', '68.359100', '296.500885', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129156, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3761731', 3761731, '153.412399', '63.654282', '311.208801', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128884, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766328', 3766328, '444.374390', '64.694489', '-36.484081', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766391', 3766391, '446.046112', '65.017601', '-33.594650', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766399', 3766399, '453.421814', '56.259960', '-0.534113', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766401', 3766401, '455.924286', '55.802189', '3.341679', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766402', 3766402, '448.874603', '55.222351', '4.837063', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766575', 3766575, '366.619385', '51.659290', '-12.188280', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766577', 3766577, '364.147400', '52.146080', '-17.895161', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766579', 3766579, '370.878113', '59.451641', '-59.303612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766580', 3766580, '368.924988', '58.367748', '-54.695389', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766581', 3766581, '373.350098', '58.395641', '-53.596741', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766584', 3766584, '363.439606', '63.704231', '-82.801590', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766586', 3766586, '341.616302', '51.478588', '-30.833561', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766588', 3766588, '305.806000', '47.806469', '0.503501', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766589', 3766589, '308.552612', '48.569420', '-3.769025', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766591', 3766591, '409.158112', '63.702721', '-82.786118', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766592', 3766592, '412.649689', '63.919991', '-86.564484', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766596', 3766596, '450.583588', '66.468239', '-76.957558', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766603', 3766603, '394.502594', '67.135857', '-121.089203', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766604', 3766604, '391.786499', '67.793007', '-123.530602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3766605', 3766605, '395.113007', '67.180733', '-122.828697', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767081', 3767081, '473.143494', '66.440041', '-148.859894', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767082', 3767082, '437.091309', '65.055496', '-127.757103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767083', 3767083, '438.506500', '65.198730', '-126.336800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767118', 3767118, '437.011108', '65.003197', '-124.078499', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767119', 3767119, '474.052002', '66.418793', '-147.307800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767127', 3767127, '371.903290', '67.982323', '-110.760803', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3767131', 3767131, '460.464600', '68.698967', '-124.371498', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3767137', 3767137, '564.060181', '84.658661', '-310.397614', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3767139', 3767139, '425.864014', '78.873833', '-349.813110', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3767149', 3767149, '418.543213', '65.856056', '-158.386795', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767152', 3767152, '380.575195', '71.228844', '-138.534103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767155', 3767155, '353.131409', '70.227692', '-126.119904', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767158', 3767158, '355.969604', '70.540512', '-125.082298', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767160', 3767160, '354.321594', '69.995934', '-123.739502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767163', 3767163, '385.091888', '70.103569', '-139.968506', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767164', 3767164, '383.413391', '70.520859', '-137.771194', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767165', 3767165, '382.223206', '70.816437', '-140.151596', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767230', 3767230, '338.126892', '68.759033', '-132.386398', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767240', 3767240, '525.678589', '69.218857', '-235.317993', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91168, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767241', 3767241, '529.279724', '69.670998', '-238.980103', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90352, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767242', 3767242, '523.878113', '69.910103', '-240.231400', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90624, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767246', 3767246, '503.511597', '77.082458', '-297.441315', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767247', 3767247, '490.567688', '72.273407', '-273.391388', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767248', 3767248, '499.222992', '76.478897', '-297.574799', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767251', 3767251, '561.724976', '68.563721', '-232.711105', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90896, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767262', 3767262, '609.164307', '70.799339', '-269.442291', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767263', 3767263, '607.699524', '69.742554', '-262.681885', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767264', 3767264, '611.178528', '70.073822', '-266.496613', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767271', 3767271, '583.442871', '78.270691', '-293.369995', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767272', 3767272, '582.626099', '82.811012', '-321.008209', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767273', 3767273, '586.291077', '77.487671', '-291.515594', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767374', 3767374, '436.361908', '73.251167', '-304.983185', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767375', 3767375, '432.991608', '72.276894', '-303.043610', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767376', 3767376, '349.804901', '74.911560', '-321.936798', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767377', 3767377, '435.671997', '72.056473', '-300.979401', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104478, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767388', 3767388, '361.665588', '75.651962', '-325.562408', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767390', 3767390, '363.221985', '75.155243', '-322.388489', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767391', 3767391, '358.186493', '73.581299', '-315.714813', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767393', 3767393, '395.641113', '76.023048', '-328.902496', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767394', 3767394, '397.399597', '76.429916', '-332.825500', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767395', 3767395, '393.430298', '76.446228', '-331.738098', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767396', 3767396, '392.678711', '86.886810', '-395.321106', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767399', 3767399, '470.368805', '87.249977', '-348.957306', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767400', 3767400, '454.939209', '84.293327', '-350.549591', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767401', 3767401, '458.387787', '84.602448', '-346.643188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767402', 3767402, '428.051086', '76.420769', '-330.744385', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767425', 3767425, '422.176910', '67.247093', '-159.579803', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767426', 3767426, '420.543213', '66.332741', '-157.321503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767435', 3767435, '384.954498', '71.312561', '-255.829102', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767436', 3767436, '381.795898', '71.738327', '-257.517487', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767437', 3767437, '387.359314', '69.869453', '-264.137299', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767445', 3767445, '628.911987', '66.716454', '-231.728607', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767446', 3767446, '630.792603', '66.280296', '-209.603195', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767447', 3767447, '629.602417', '66.422333', '-211.983597', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767448', 3767448, '627.954529', '66.392159', '-210.335602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767449', 3767449, '632.471130', '66.334442', '-211.800507', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767450', 3767450, '630.285278', '66.806633', '-233.987000', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767455', 3767455, '662.184509', '66.885223', '-232.532303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767456', 3767456, '663.832520', '66.880669', '-235.767197', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767457', 3767457, '660.994324', '67.126022', '-234.912704', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767458', 3767458, '679.883301', '64.783623', '-225.588394', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767462', 3767462, '683.051575', '64.449142', '-221.445694', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767463', 3767463, '686.133911', '64.440773', '-225.077301', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767464', 3767464, '682.532776', '64.535759', '-223.856598', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767465', 3767465, '680.213379', '64.599297', '-222.178101', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767466', 3767466, '644.667419', '61.202068', '-179.041107', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98228, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767467', 3767467, '646.345825', '61.561089', '-181.268906', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767468', 3767468, '625.297607', '63.148769', '-175.494003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767469', 3767469, '624.534729', '62.919571', '-173.449295', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767472', 3767472, '612.920227', '62.437519', '-154.581299', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97140, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767473', 3767473, '618.413513', '60.995640', '-154.157501', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96868, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767474', 3767474, '611.729980', '62.836342', '-156.961700', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96596, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767475', 3767475, '610.081970', '62.919849', '-155.313705', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96324, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767480', 3767480, '599.736572', '66.081619', '-200.660995', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96052, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767481', 3767481, '603.400085', '66.248016', '-212.652893', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95780, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767482', 3767482, '600.591125', '66.117447', '-203.224594', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767487', 3767487, '582.119629', '63.525211', '-162.909500', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767488', 3767488, '583.554016', '63.640011', '-161.566696', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767504', 3767504, '384.336212', '81.769058', '-374.104706', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767505', 3767505, '386.960785', '82.047218', '-374.979614', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92250, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767508', 3767508, '420.230408', '83.041237', '-377.818695', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91978, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767509', 3767509, '416.202087', '83.456848', '-380.199188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91706, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767510', 3767510, '414.218414', '82.361076', '-374.217590', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91434, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767538', 3767538, '559.649475', '74.212418', '-273.297485', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90080, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767539', 3767539, '565.844971', '73.504051', '-271.077698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89808, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767541', 3767541, '530.575989', '78.841171', '-292.050598', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89536, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767542', 3767542, '536.018616', '73.912933', '-270.240601', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89264, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767543', 3767543, '527.257324', '78.277519', '-291.082397', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88992, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767550', 3767550, '559.405579', '68.352837', '-230.727402', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88720, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767551', 3767551, '504.920990', '71.617661', '-255.737900', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88448, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767552', 3767552, '562.426697', '74.626442', '-275.098114', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88176, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767553', 3767553, '515.106079', '86.958946', '-357.724792', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87886, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767554', 3767554, '555.815430', '86.288918', '-333.674286', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87614, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767555', 3767555, '550.172974', '86.038811', '-337.105713', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87342, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767556', 3767556, '556.703918', '86.005051', '-341.164612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87070, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767558', 3767558, '595.652222', '100.886101', '-481.113007', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86798, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767559', 3767559, '565.758728', '90.501213', '-411.795288', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767560', 3767560, '593.128418', '99.817238', '-476.295013', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767561', 3767561, '597.171326', '86.616676', '-366.082886', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767562', 3767562, '592.898621', '86.573059', '-364.752991', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767565', 3767565, '659.080383', '68.157593', '-282.327087', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767566', 3767566, '655.601379', '67.872910', '-278.542786', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767568', 3767568, '696.297791', '66.817932', '-301.967896', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767583', 3767583, '629.275208', '76.769440', '-316.382690', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84622, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767584', 3767584, '635.718506', '76.129578', '-319.129303', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84350, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767675', 3767675, '637.937683', '75.470261', '-314.178314', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84078, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767694', 3767694, '274.187408', '73.498833', '-235.511505', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767702', 3767702, '282.131287', '73.968918', '-250.520294', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767704', 3767704, '283.459686', '74.239098', '-252.146103', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767705', 3767705, '285.161987', '73.984657', '-268.017487', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767706', 3767706, '277.286194', '74.210907', '-280.408813', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767707', 3767707, '277.586212', '74.130417', '-281.519714', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767709', 3767709, '268.511505', '73.750023', '-310.081207', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767710', 3767710, '290.727997', '75.783447', '-320.191986', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767711', 3767711, '291.566193', '75.961906', '-321.088593', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767712', 3767712, '240.649994', '74.570793', '-328.847198', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767715', 3767715, '221.796799', '75.280907', '-305.122711', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767716', 3767716, '234.573196', '72.438171', '-271.531403', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767717', 3767717, '235.577301', '72.991150', '-274.815186', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767721', 3767721, '341.847809', '47.013062', '1.602173', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80300, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767722', 3767722, '413.717804', '55.405399', '-18.570250', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80028, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767725', 3767725, '414.877411', '56.473511', '-20.889650', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79756, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767729', 3767729, '340.932404', '58.884521', '-68.986153', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767730', 3767730, '349.904510', '70.939087', '-141.039200', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767735', 3767735, '351.399994', '71.122192', '-139.177597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767772', 3767772, '385.992096', '79.489769', '-359.438690', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767779', 3767779, '406.035400', '88.015427', '-400.377411', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767782', 3767782, '403.608612', '88.645103', '-402.194885', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767814', 3767814, '635.174072', '71.616203', '-284.468597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767845', 3767845, '633.182922', '72.289650', '-286.197998', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767846', 3767846, '635.372375', '67.114166', '-231.371002', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767853', 3767853, '622.306885', '64.499603', '-174.464905', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767854', 3767854, '645.827026', '60.818569', '-177.759293', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767857', 3767857, '725.192871', '64.427238', '-240.193405', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767859', 3767859, '617.085510', '62.126339', '-147.285202', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767860', 3767860, '673.612427', '64.732903', '-189.639206', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767863', 3767863, '676.003723', '64.536713', '-188.308105', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767872', 3767872, '678.086914', '64.518532', '-207.618896', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767901', 3767901, '653.968079', '78.578423', '-360.327515', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767906', 3767906, '656.550293', '77.457336', '-356.077393', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767907', 3767907, '657.869080', '77.894173', '-358.050293', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3767910', 3767910, '590.645020', '90.549652', '-389.681702', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3768115', 3768115, '530.515381', '91.184883', '-383.319305', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3768118', 3768118, '533.323120', '90.657288', '-380.765015', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3768152', 3768152, '508.880707', '96.069290', '-437.340302', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71342, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(265, 'e0037', 'bnpc3768153', 3768153, '519.773071', '96.615059', '-445.083588', 752, 0, 0, 0, 0, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71608, 3, 0, 0, 0, 16, 30059, 0, 0, 0), +(265, 'e0037', 'bnpc3768154', 3768154, '523.339417', '94.818977', '-429.381287', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72962, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(265, 'e0037', 'bnpc3768156', 3768156, '535.457581', '96.545937', '-468.044800', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72690, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(265, 'e0037', 'bnpc3768157', 3768157, '520.360107', '95.886787', '-460.180389', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72424, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(265, 'e0037', 'bnpc3768158', 3768158, '535.493225', '94.402260', '-439.778015', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70526, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(265, 'e0037', 'bnpc3768159', 3768159, '502.875793', '97.415413', '-416.738495', 754, 0, 0, 0, 0, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73234, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(265, 'e0037', 'bnpc3768160', 3768160, '521.578979', '94.382271', '-413.852905', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72152, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(265, 'e0037', 'bnpc3768161', 3768161, '509.317200', '94.366043', '-398.691711', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71070, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(265, 'e0037', 'bnpc3768165', 3768165, '517.667175', '95.947739', '-463.471588', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73506, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(265, 'e0037', 'bnpc3768166', 3768166, '501.819092', '97.276329', '-413.591797', 751, 0, 0, 0, 0, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70798, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(265, 'e0037', 'bnpc3768167', 3768167, '534.916016', '94.227654', '-435.617798', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71880, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(265, 'e0037', 'bnpc3873220', 3873220, '-19.011200', '59.577240', '478.601715', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68768, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873222', 3873222, '-57.635151', '54.398960', '509.264313', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68496, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873223', 3873223, '-72.043533', '60.186852', '494.941803', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68224, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873226', 3873226, '-82.569511', '59.009541', '500.667694', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67952, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873227', 3873227, '-85.215538', '58.176079', '495.797913', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67680, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873232', 3873232, '-26.285730', '45.126209', '554.549622', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67408, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873233', 3873233, '-80.450127', '53.830681', '543.885925', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67136, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873235', 3873235, '-77.768517', '54.979061', '539.636902', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66864, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873237', 3873237, '-49.665508', '40.839931', '590.425781', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66592, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873238', 3873238, '-51.547249', '40.978630', '596.975098', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66320, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873240', 3873240, '-56.989220', '40.385479', '595.949585', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66048, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873243', 3873243, '73.494881', '48.720230', '629.534424', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65776, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873244', 3873244, '83.244293', '50.021931', '641.594727', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65504, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873246', 3873246, '77.347931', '48.172680', '641.229797', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65232, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873247', 3873247, '77.649078', '56.774830', '716.941528', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64960, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873249', 3873249, '79.648613', '56.806110', '720.165710', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64688, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873250', 3873250, '52.669842', '55.384899', '724.728516', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873255', 3873255, '48.538898', '36.148571', '656.885620', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64144, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873256', 3873256, '46.513409', '36.839489', '684.859314', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63872, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873257', 3873257, '41.888302', '35.921108', '686.955078', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63600, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873265', 3873265, '34.495090', '45.667789', '819.153381', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63328, 1, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(265, 'e0037', 'bnpc3873271', 3873271, '-18.570280', '43.203621', '763.671082', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63056, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873272', 3873272, '-24.521290', '43.172451', '761.992676', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62784, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873275', 3873275, '37.190269', '46.111851', '822.446777', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62512, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873324', 3873324, '79.270752', '49.720821', '871.732483', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62240, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873328', 3873328, '31.098160', '46.232330', '851.456421', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61968, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873329', 3873329, '-90.470787', '8.590782', '680.567627', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61702, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873330', 3873330, '-224.494995', '-0.300003', '686.536377', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61430, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873331', 3873331, '-215.466797', '-0.252817', '694.899719', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61158, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873332', 3873332, '-120.012199', '3.585823', '702.235413', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60886, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873333', 3873333, '-207.511307', '-0.292601', '666.813293', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60614, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873334', 3873334, '-171.158203', '-0.710317', '738.778076', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60342, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873335', 3873335, '-132.077698', '0.394896', '752.015930', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60070, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873336', 3873336, '-122.561096', '0.570598', '756.478577', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59798, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873337', 3873337, '-78.064957', '2.435715', '762.539001', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59526, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873339', 3873339, '-81.966408', '2.959849', '802.456604', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59254, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873340', 3873340, '-17.237820', '8.762830', '808.010925', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58982, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873343', 3873343, '91.020012', '21.945419', '806.005371', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58710, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873345', 3873345, '127.519600', '23.025820', '809.445313', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58438, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873348', 3873348, '121.338402', '24.555710', '817.927795', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58166, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873353', 3873353, '213.397400', '25.314671', '805.691528', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57894, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873359', 3873359, '80.472221', '24.632441', '756.982178', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57622, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873362', 3873362, '24.652531', '14.575950', '784.440430', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57350, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873363', 3873363, '139.838699', '21.711720', '778.939575', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57078, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(265, 'e0037', 'bnpc3873367', 3873367, '251.139801', '6.797970', '788.702271', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873368', 3873368, '253.283096', '6.540766', '787.524292', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873369', 3873369, '254.565994', '6.283995', '780.385681', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873371', 3873371, '246.057800', '9.008336', '801.580994', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873374', 3873374, '248.002304', '6.721136', '783.831970', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873375', 3873375, '248.302399', '6.265314', '767.472473', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873376', 3873376, '246.801407', '6.267453', '768.374390', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873379', 3873379, '-3.098505', '41.687851', '623.973083', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54914, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873381', 3873381, '-0.691058', '42.488289', '627.270020', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873382', 3873382, '-6.383020', '41.661289', '631.828674', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873385', 3873385, '-12.702990', '41.812180', '707.756409', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873386', 3873386, '-10.462590', '41.960880', '705.075378', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873387', 3873387, '-52.108768', '38.325489', '665.766113', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873388', 3873388, '-55.987579', '36.343479', '670.810486', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873389', 3873389, '-59.405991', '38.476730', '658.650818', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53010, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873390', 3873390, '-59.105999', '36.026340', '668.374023', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52738, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873396', 3873396, '-160.952896', '1.569027', '667.861206', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48398, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(265, 'e0037', 'bnpc3873398', 3873398, '-161.990494', '1.669328', '666.421692', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48126, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(265, 'e0037', 'bnpc3873399', 3873399, '-150.636902', '5.134464', '653.424011', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47854, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(265, 'e0037', 'bnpc3873401', 3873401, '-144.836700', '4.701064', '665.153870', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47582, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(265, 'e0037', 'bnpc3873402', 3873402, '-149.620605', '3.102985', '669.616089', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47310, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(265, 'e0037', 'bnpc3873403', 3873403, '-155.732605', '1.144920', '679.460327', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47038, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(265, 'e0037', 'bnpc3873404', 3873404, '-142.607895', '1.054965', '712.663025', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46766, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(265, 'e0037', 'bnpc3873405', 3873405, '-148.567505', '0.750069', '714.199524', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46494, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(265, 'e0037', 'bnpc3873406', 3873406, '-149.139404', '0.759766', '712.362000', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46222, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(265, 'e0037', 'bnpc3873420', 3873420, '-59.783230', '40.755260', '572.130127', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873421', 3873421, '-58.553791', '40.657639', '574.646973', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873422', 3873422, '-25.335461', '55.583641', '513.424194', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873425', 3873425, '142.979706', '22.710770', '829.297302', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51656, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873426', 3873426, '220.695999', '20.348419', '790.027283', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51384, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873427', 3873427, '69.222389', '20.622999', '778.105286', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51112, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873428', 3873428, '70.471992', '21.233120', '776.341980', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50840, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873430', 3873430, '66.086601', '57.020870', '725.806213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50568, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873431', 3873431, '79.195717', '52.007320', '685.675415', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50296, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873432', 3873432, '79.268204', '51.686298', '683.238892', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50024, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873433', 3873433, '-129.812698', '8.744282', '655.901672', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873434', 3873434, '-127.513100', '8.619234', '660.065491', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873435', 3873435, '-70.867996', '3.471146', '805.643616', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873461', 3873461, '18.223940', '44.911652', '832.339600', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc3873463', 3873463, '129.763306', '48.053009', '868.938477', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48664, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc4057136', 4057136, '-29.171040', '70.937523', '112.141998', 784, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23136, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(265, 'e0037', 'bnpc4057153', 4057153, '-33.309830', '59.142609', '456.249786', 785, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22870, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(265, 'e0037', 'bnpc4057178', 4057178, '-0.370673', '36.202759', '591.413818', 786, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22604, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(265, 'e0037', 'bnpc4057204', 4057204, '126.070801', '23.201380', '735.619629', 788, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22338, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(265, 'e0037', 'bnpc4510193', 4510193, '600.272400', '61.718521', '-115.521301', 787, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22072, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(265, 'e0037', 'bnpc4621602', 4621602, '205.951904', '73.024078', '-291.708496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26712, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc4867727', 4867727, '-103.902603', '2.225230', '731.826416', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26326, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc4867728', 4867728, '-115.780197', '1.850056', '725.665710', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26054, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc4867729', 4867729, '-96.687714', '2.097239', '744.887817', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25782, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc4867730', 4867730, '-98.053673', '1.671072', '759.716797', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25510, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(265, 'e0037', 'bnpc4867731', 4867731, '-109.169701', '1.535632', '746.508301', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23746, 8, 0, 0, 0, 0, 0, 4867752, 0, 0), +(265, 'e0037', 'bnpc4867733', 4867733, '-113.730499', '0.984999', '755.556274', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24018, 8, 0, 0, 0, 0, 0, 4867753, 0, 0), +(265, 'e0037', 'bnpc4867735', 4867735, '-122.788597', '0.819352', '748.165283', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25244, 8, 0, 0, 0, 0, 0, 4867761, 0, 0), +(265, 'e0037', 'bnpc4867736', 4867736, '-111.623299', '1.689789', '738.438904', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24972, 8, 0, 0, 0, 0, 0, 4867748, 0, 0), +(265, 'e0037', 'bnpc4867737', 4867737, '-123.906197', '0.960864', '734.838501', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23474, 8, 0, 0, 0, 0, 0, 4867754, 0, 0), +(266, 'e0029', 'bnpc4012541', 4012541, '-499.944489', '-24.206900', '274.711395', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4012542', 4012542, '-496.735107', '-24.822651', '275.516113', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136368, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4012543', 4012543, '-498.215302', '-25.168880', '279.728394', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4012544', 4012544, '-508.450897', '-22.501459', '275.251801', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4012545', 4012545, '-500.246307', '-22.856750', '332.079407', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4012546', 4012546, '-503.241211', '-22.525490', '333.955200', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4012547', 4012547, '-490.592804', '-25.436840', '313.618591', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4012548', 4012548, '-487.602112', '-26.077709', '308.522095', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4012549', 4012549, '-487.632599', '-25.467350', '315.632813', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4012550', 4012550, '-490.196106', '-25.009581', '264.942413', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013205', 4013205, '-304.194305', '-34.543591', '294.601898', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013206', 4013206, '-304.224792', '-33.836750', '301.712585', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013207', 4013207, '-307.184998', '-34.167721', '299.698395', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013208', 4013208, '-370.016113', '-38.010269', '260.669800', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013209', 4013209, '-367.025299', '-37.796638', '255.573303', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013210', 4013210, '-367.055786', '-38.345970', '262.714508', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013211', 4013211, '-393.702789', '-33.147480', '298.410095', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013212', 4013212, '-390.742615', '-33.080891', '300.424286', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013213', 4013213, '-422.867310', '-30.681101', '303.919800', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013214', 4013214, '-421.252197', '-30.134701', '311.575806', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013215', 4013215, '-418.295593', '-29.892469', '313.588104', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013216', 4013216, '-418.261505', '-30.624969', '306.479187', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013222', 4013222, '-228.755997', '-29.250050', '268.198700', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130662, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013224', 4013224, '-259.769104', '-25.814650', '223.363907', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130390, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013225', 4013225, '-248.303101', '-25.635059', '215.703506', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130118, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013226', 4013226, '-244.556595', '-29.157000', '245.735596', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013227', 4013227, '-205.884796', '-28.989929', '252.945099', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013230', 4013230, '-221.465103', '-29.933540', '230.371399', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129302, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013231', 4013231, '-191.527893', '-33.626598', '218.107803', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013232', 4013232, '-179.018005', '-29.188629', '250.063797', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128758, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013234', 4013234, '-175.844193', '-28.984510', '287.393402', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128492, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013235', 4013235, '-189.302597', '-29.714430', '288.949799', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91536, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013236', 4013236, '-180.635498', '-30.361820', '295.114288', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128220, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013237', 4013237, '-155.046997', '-38.834259', '204.882797', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127948, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013238', 4013238, '-140.856094', '-42.038651', '199.298004', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127676, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013239', 4013239, '-147.844696', '-38.864811', '208.361893', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127404, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013244', 4013244, '-152.971695', '-38.651150', '171.557098', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91808, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013245', 4013245, '-122.655197', '-36.402191', '160.250000', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127132, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013246', 4013246, '-125.513298', '-36.825439', '155.686493', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126860, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013248', 4013248, '-240.869400', '-31.567810', '320.527802', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126588, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013249', 4013249, '-235.614594', '-31.418369', '325.917389', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126316, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013250', 4013250, '-222.186707', '-34.622761', '365.438293', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126044, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013251', 4013251, '-253.131897', '-36.331779', '359.212585', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91264, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013254', 4013254, '-287.041687', '-32.065750', '207.250107', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125760, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013255', 4013255, '-284.050995', '-31.622311', '202.123093', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125488, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013256', 4013256, '-284.081512', '-31.907009', '209.264297', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125216, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013262', 4013262, '-273.132507', '-35.872952', '132.381500', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124944, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013263', 4013263, '-270.172211', '-35.967918', '134.395706', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124672, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013264', 4013264, '-270.141693', '-36.277580', '127.254402', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124400, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013266', 4013266, '-259.425812', '-35.518791', '150.542206', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124128, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013267', 4013267, '-256.465515', '-35.526428', '152.556396', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123856, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013445', 4013445, '-149.523193', '-32.364429', '59.342289', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92080, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013479', 4013479, '-159.265594', '-32.346439', '51.098259', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123596, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013480', 4013480, '-151.901093', '-33.007351', '66.556549', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123324, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013481', 4013481, '-100.511200', '-26.840670', '16.128740', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013482', 4013482, '-102.891098', '-28.253700', '23.320940', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123052, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013483', 4013483, '-149.419205', '-28.890289', '2.911655', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122780, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013484', 4013484, '-188.433701', '-27.695169', '-13.168580', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122508, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013485', 4013485, '-199.267593', '-31.357340', '4.409810', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92352, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013486', 4013486, '-182.299606', '-27.603621', '-9.872634', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122236, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013489', 4013489, '-219.226395', '-37.674568', '39.414009', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121964, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013490', 4013490, '-225.360504', '-37.827160', '36.118061', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121692, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013499', 4013499, '-273.627289', '-31.862329', '103.566002', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92624, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013500', 4013500, '-267.855988', '-33.038231', '97.413803', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121420, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013501', 4013501, '-272.429901', '-34.255821', '90.077278', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121148, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013502', 4013502, '-291.837189', '-33.717522', '94.695030', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120876, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013504', 4013504, '-408.834991', '-25.528391', '375.844910', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120592, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013509', 4013509, '-412.414703', '-25.124140', '378.094910', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120320, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013510', 4013510, '-421.050690', '-24.694500', '373.044586', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120048, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013511', 4013511, '-347.292603', '-22.499969', '411.814514', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119776, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013512', 4013512, '-350.892090', '-22.007130', '414.044891', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119504, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013513', 4013513, '-301.048492', '-24.998409', '421.781494', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119232, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013514', 4013514, '-235.065308', '-33.493599', '442.587891', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013515', 4013515, '-231.464096', '-34.195511', '440.359985', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013517', 4013517, '-230.304504', '-33.981892', '443.503387', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013521', 4013521, '-175.050400', '-37.658531', '450.209198', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013522', 4013522, '-175.885300', '-38.533630', '453.905487', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013525', 4013525, '-215.670593', '-35.585159', '459.834106', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013533', 4013533, '99.168327', '-25.375799', '291.493011', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117340, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013534', 4013534, '97.093102', '-25.223209', '297.444092', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117068, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013536', 4013536, '68.684219', '-23.820311', '291.749390', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116796, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013539', 4013539, '92.027107', '-24.063520', '274.555511', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90992, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013550', 4013550, '-370.036499', '-26.139339', '-3.111549', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013552', 4013552, '-377.077698', '-24.934530', '-2.811549', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013553', 4013553, '-374.311096', '-24.946871', '-6.761492', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013554', 4013554, '-361.013214', '-20.157209', '-51.316139', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115696, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013556', 4013556, '-364.370209', '-19.974110', '-48.996769', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115424, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013558', 4013558, '-314.082306', '-25.819000', '-70.030121', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115152, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013559', 4013559, '-316.848907', '-27.254049', '-66.080177', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114880, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013560', 4013560, '-309.807709', '-25.975500', '-66.380173', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013562', 4013562, '-330.224487', '-29.939251', '-43.977570', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114336, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013564', 4013564, '-407.858398', '-15.091220', '-126.360001', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114064, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013565', 4013565, '-411.203003', '-15.113620', '-124.026497', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113792, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013569', 4013569, '-415.904999', '-11.930880', '-136.712494', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113520, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013571', 4013571, '-452.618408', '-8.742622', '-98.281227', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113248, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013572', 4013572, '-449.357788', '-8.414806', '-96.310440', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112976, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013576', 4013576, '-464.105194', '-11.407580', '-129.066101', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112704, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013577', 4013577, '-498.092499', '-9.974959', '-109.458298', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112432, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013580', 4013580, '-502.620789', '-10.577840', '-112.821098', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112160, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013582', 4013582, '-507.470886', '-10.328900', '-110.974403', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111888, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013583', 4013583, '-522.056885', '-4.348868', '-159.960403', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111616, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013584', 4013584, '-523.460815', '-4.837157', '-158.281906', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111344, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013594', 4013594, '-352.898499', '-15.213080', '-143.948807', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111090, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013596', 4013596, '-332.967194', '-12.588740', '-145.708405', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110818, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013605', 4013605, '-332.265198', '-17.044371', '-127.824898', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110546, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013606', 4013606, '-352.598511', '-10.906090', '-168.210007', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110274, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013609', 4013609, '-385.111389', '-7.978566', '-230.465805', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110002, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013611', 4013611, '-331.138092', '-11.882090', '-143.969299', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109730, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013627', 4013627, '-383.286194', '-8.260035', '-224.126007', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109458, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013633', 4013633, '-366.385315', '-16.827869', '-132.410706', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109186, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4013638', 4013638, '-349.540588', '-11.100560', '-235.093994', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108920, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013641', 4013641, '-346.185791', '-11.887330', '-259.764496', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108648, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013642', 4013642, '-344.857910', '-11.892970', '-258.193207', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013645', 4013645, '-327.837799', '-11.400080', '-244.734406', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013647', 4013647, '-309.640594', '-10.000100', '-243.310898', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108104, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013649', 4013649, '-301.356903', '-10.000100', '-247.002197', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013650', 4013650, '-322.462311', '-9.437181', '-225.651001', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013652', 4013652, '-323.876587', '-6.632608', '-212.379700', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107832, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013668', 4013668, '-335.498505', '-12.014050', '-229.725906', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013720', 4013720, '-429.370209', '-1.586753', '-278.570801', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106448, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013721', 4013721, '-430.804504', '-1.625461', '-276.861786', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106176, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013722', 4013722, '-444.877411', '-1.080222', '-258.128387', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105904, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013723', 4013723, '-464.653595', '1.612374', '-285.266113', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105632, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013724', 4013724, '-461.633514', '1.079876', '-282.367096', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105360, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013725', 4013725, '-467.806213', '2.048990', '-283.036896', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105088, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013728', 4013728, '-533.374023', '-6.691851', '-159.632706', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104816, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013735', 4013735, '-450.919403', '-29.068480', '316.700897', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013772', 4013772, '-397.589996', '-23.851999', '392.935089', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013777', 4013777, '-330.837891', '-22.252911', '401.824585', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013778', 4013778, '-318.013306', '-23.819380', '430.685791', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013779', 4013779, '-249.358002', '-33.714100', '429.461487', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013780', 4013780, '-191.484207', '-36.256191', '404.149292', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013781', 4013781, '-190.484894', '-35.487671', '401.923004', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013782', 4013782, '-487.190399', '-25.702749', '201.419907', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013784', 4013784, '-334.884705', '-34.612320', '299.203400', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102404, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(266, 'e0029', 'bnpc4013785', 4013785, '-312.764191', '-31.815109', '177.660706', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013786', 4013786, '-422.784302', '-34.151939', '243.826904', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013788', 4013788, '-165.697800', '-28.246771', '253.973404', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013792', 4013792, '-54.262890', '-17.705391', '367.731415', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013794', 4013794, '-33.163811', '-19.940189', '365.769714', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013795', 4013795, '-51.895939', '-17.512991', '370.210602', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100772, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013796', 4013796, '78.414223', '-15.939830', '366.048615', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100500, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013798', 4013798, '7.173542', '-23.354309', '329.441010', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100228, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013804', 4013804, '-166.105103', '-28.583521', '251.194107', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99956, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013807', 4013807, '-96.303726', '-54.621849', '189.374496', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99684, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013809', 4013809, '-129.643600', '-41.051750', '105.021004', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99412, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013811', 4013811, '-131.669601', '-27.426109', '-54.776691', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99140, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013813', 4013813, '-173.987106', '-33.616089', '-39.161282', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98868, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013815', 4013815, '-175.831604', '-33.870190', '-41.495399', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98596, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013816', 4013816, '-205.031403', '-33.039600', '-67.334999', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013818', 4013818, '-281.004791', '-32.283211', '-47.466839', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013819', 4013819, '-366.248810', '-37.056171', '28.697981', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97780, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013820', 4013820, '-548.804321', '-10.844810', '-120.767998', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013821', 4013821, '-547.929016', '-10.919210', '-118.103897', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013822', 4013822, '-505.184814', '-5.976281', '-148.866592', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013823', 4013823, '-411.073914', '-31.135130', '46.428162', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013824', 4013824, '-430.816315', '-29.355061', '29.829710', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013825', 4013825, '-424.892914', '-28.321070', '3.818028', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013826', 4013826, '-455.293610', '-28.139351', '76.774193', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013827', 4013827, '-457.516510', '-27.855551', '79.493294', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013828', 4013828, '-479.286011', '-25.295200', '93.214996', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013829', 4013829, '-527.688721', '-21.083590', '110.860397', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013830', 4013830, '-536.720886', '-18.332451', '74.782097', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013831', 4013831, '-553.551880', '-16.714809', '84.756439', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013832', 4013832, '-510.295288', '-19.041250', '45.220119', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013833', 4013833, '-485.247589', '-20.332100', '48.307430', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013834', 4013834, '-458.042603', '-21.417490', '14.689170', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013835', 4013835, '-459.737488', '-21.394270', '13.442860', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013836', 4013836, '-484.622711', '-17.327000', '0.944125', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013837', 4013837, '-498.477814', '-17.417601', '25.127859', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013849', 4013849, '-140.192505', '-30.609131', '309.013794', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86380, 1, 0, 0, 0, 19, 30058, 0, 0, 0), +(266, 'e0029', 'bnpc4013851', 4013851, '-50.371601', '-27.557119', '321.120697', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85564, 1, 0, 0, 0, 19, 30058, 0, 0, 0), +(266, 'e0029', 'bnpc4013857', 4013857, '-76.608521', '-27.621309', '289.534302', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86108, 1, 0, 0, 0, 19, 30059, 0, 0, 0), +(266, 'e0029', 'bnpc4013859', 4013859, '-105.272003', '-29.404169', '285.419891', 735, 0, 0, 0, 1, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85836, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(266, 'e0029', 'bnpc4013864', 4013864, '-122.575798', '-30.167110', '296.284302', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85298, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(266, 'e0029', 'bnpc4013865', 4013865, '-70.664551', '-27.908751', '300.739990', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84482, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(266, 'e0029', 'bnpc4013866', 4013866, '-71.732674', '-27.084780', '289.021088', 737, 0, 0, 0, 0, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85026, 1, 0, 0, 0, 19, 30060, 0, 0, 0), +(266, 'e0029', 'bnpc4013867', 4013867, '-109.317596', '-27.427130', '345.218903', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84754, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(266, 'e0029', 'bnpc4013868', 4013868, '146.652603', '-5.540083', '412.411499', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013869', 4013869, '144.284500', '-5.955482', '411.455200', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013870', 4013870, '145.884995', '-5.941638', '404.887695', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013872', 4013872, '136.158096', '-6.723706', '412.478790', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013873', 4013873, '140.986099', '-6.708030', '406.031189', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013874', 4013874, '137.354004', '-7.302959', '404.747009', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4013877', 4013877, '127.735001', '-8.321562', '406.855713', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4014958', 4014958, '20.401260', '2.731318', '-54.520531', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83704, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015589', 4015589, '31.067261', '2.425304', '-70.573143', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83432, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015593', 4015593, '48.749241', '5.676062', '-102.147301', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83160, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015594', 4015594, '35.250210', '6.228703', '-92.927460', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82888, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015595', 4015595, '67.637573', '4.351546', '-87.514160', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82616, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015596', 4015596, '54.489922', '0.411947', '-65.110291', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015598', 4015598, '7.965932', '1.085048', '-77.601852', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82072, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015605', 4015605, '9.769605', '1.369744', '-80.136017', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015668', 4015668, '104.484001', '4.846275', '-63.102379', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015674', 4015674, '102.296700', '4.972450', '-66.202560', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015676', 4015676, '96.732941', '3.052606', '-62.312988', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015678', 4015678, '99.597008', '8.227051', '-90.531860', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015691', 4015691, '141.042694', '10.713930', '-50.547859', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015696', 4015696, '141.342697', '10.968710', '-54.225460', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015701', 4015701, '108.271400', '-2.418733', '-8.458347', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015704', 4015704, '106.417397', '-2.650057', '-10.997480', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015706', 4015706, '97.733994', '-3.219701', '2.456656', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015707', 4015707, '30.234659', '-13.926860', '41.901440', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015709', 4015709, '27.316900', '-15.302890', '44.688141', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015711', 4015711, '67.083893', '-9.601854', '56.893761', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015718', 4015718, '73.500443', '-4.948884', '24.766541', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4015720', 4015720, '70.143448', '-5.095084', '22.416651', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4016500', 4016500, '104.692101', '-11.093380', '148.271896', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77732, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(266, 'e0029', 'bnpc4016539', 4016539, '107.896500', '-11.093380', '147.508896', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77460, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(266, 'e0029', 'bnpc4016540', 4016540, '100.724701', '-10.660250', '120.341797', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77188, 1, 0, 0, 0, 9, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4016541', 4016541, '99.180260', '-10.555300', '116.451401', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76916, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(266, 'e0029', 'bnpc4016542', 4016542, '136.732193', '-7.571920', '111.707901', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76644, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(266, 'e0029', 'bnpc4016543', 4016543, '109.599403', '-4.406592', '97.184692', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76372, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(266, 'e0029', 'bnpc4016544', 4016544, '110.955200', '-4.201653', '88.662132', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76100, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(266, 'e0029', 'bnpc4016545', 4016545, '113.349701', '-3.809178', '95.995033', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75828, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(266, 'e0029', 'bnpc4016546', 4016546, '116.990799', '-8.926575', '119.340698', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75556, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(266, 'e0029', 'bnpc4016549', 4016549, '132.524506', '-4.867676', '80.796509', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75284, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(266, 'e0029', 'bnpc4016552', 4016552, '172.457306', '13.025480', '-52.917801', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75018, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(266, 'e0029', 'bnpc4016557', 4016557, '176.353500', '14.358130', '-73.066628', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74746, 1, 0, 0, 0, 31, 30060, 0, 0, 0), +(266, 'e0029', 'bnpc4016560', 4016560, '200.762894', '12.344500', '-41.489330', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74474, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(266, 'e0029', 'bnpc4016946', 4016946, '178.545807', '14.145070', '-76.310410', 168, 0, 0, 0, 0, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74208, 1, 0, 0, 0, 31, 30060, 0, 0, 0), +(266, 'e0029', 'bnpc4016949', 4016949, '157.244202', '11.490000', '-28.885370', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73936, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(266, 'e0029', 'bnpc4016957', 4016957, '194.933899', '11.673100', '-34.256550', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73664, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(266, 'e0029', 'bnpc4017619', 4017619, '180.407394', '10.330310', '-23.086950', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73386, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(266, 'e0029', 'bnpc4017833', 4017833, '165.697693', '9.414769', '0.106766', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73120, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(266, 'e0029', 'bnpc4017881', 4017881, '267.688995', '7.156434', '-121.568703', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4017882', 4017882, '256.488800', '7.736277', '-113.023598', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72588, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4017883', 4017883, '277.515808', '7.583686', '-116.807899', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72322, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4017891', 4017891, '272.907501', '17.593611', '-157.701996', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4017892', 4017892, '270.862915', '16.861151', '-151.415298', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4017893', 4017893, '257.892700', '16.006670', '-153.185394', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4017899', 4017899, '240.680496', '7.431091', '-122.636803', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4017900', 4017900, '243.182999', '7.370056', '-117.753899', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4017901', 4017901, '258.381012', '12.313960', '-138.811295', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4017921', 4017921, '138.353500', '9.506287', '-146.349304', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70424, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4017927', 4017927, '115.709099', '11.123780', '-141.435898', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70152, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4017928', 4017928, '212.176605', '3.555298', '-181.902802', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69880, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4017929', 4017929, '219.897705', '3.799438', '-195.117096', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69608, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4017932', 4017932, '278.370300', '8.041457', '-218.646606', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69336, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4017937', 4017937, '289.906097', '11.551030', '-240.192307', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69064, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4017941', 4017941, '373.476013', '20.829370', '-239.892303', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68792, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4017942', 4017942, '356.299500', '14.980250', '-225.505997', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68520, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4017945', 4017945, '404.706909', '22.897909', '-197.807907', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68248, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4017950', 4017950, '298.207001', '5.264315', '-172.350693', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4017954', 4017954, '134.599701', '8.987488', '-116.411102', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4017972', 4017972, '189.930405', '-1.185125', '27.687700', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4017978', 4017978, '193.187805', '-1.444422', '30.281919', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4017981', 4017981, '228.766998', '3.164756', '31.533100', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4017985', 4017985, '259.187988', '10.854590', '-0.979421', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4017987', 4017987, '256.991486', '10.906030', '-1.850262', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4017989', 4017989, '263.108002', '12.374600', '-6.144668', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4017999', 4017999, '144.542801', '-1.822149', '25.260910', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018003', 4018003, '118.866699', '-3.156176', '35.166130', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018006', 4018006, '152.788498', '-3.677471', '45.426060', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018007', 4018007, '149.431503', '-3.524881', '43.076172', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018008', 4018008, '148.638107', '-3.585917', '46.951962', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018022', 4018022, '94.621094', '3.248499', '83.127548', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64404, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(266, 'e0029', 'bnpc4018023', 4018023, '95.261963', '2.700867', '72.495613', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(266, 'e0029', 'bnpc4018024', 4018024, '96.513313', '3.431219', '83.543091', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63860, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(266, 'e0029', 'bnpc4018102', 4018102, '97.606216', '6.518048', '-80.554100', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018103', 4018103, '118.155403', '9.586515', '-100.878799', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018104', 4018104, '120.378304', '9.628418', '-99.046333', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018105', 4018105, '131.592499', '8.266950', '-67.253014', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018106', 4018106, '58.518299', '-3.494363', '-48.813660', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018108', 4018108, '90.160843', '-1.231179', '-48.488152', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018109', 4018109, '75.582893', '-5.687634', '-3.987827', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018110', 4018110, '48.298389', '-10.503780', '42.532669', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018112', 4018112, '90.491623', '-2.237890', '36.720051', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018113', 4018113, '93.131050', '-2.135577', '38.381100', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018115', 4018115, '112.673203', '-2.455007', '13.961960', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018117', 4018117, '127.625603', '-3.590302', '53.494831', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018118', 4018118, '188.733200', '4.905004', '3.896455', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018120', 4018120, '219.065399', '11.690500', '5.996748', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018121', 4018121, '216.593399', '11.322950', '7.522650', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018122', 4018122, '241.927307', '7.629051', '9.728237', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018125', 4018125, '268.848206', '8.777798', '13.353050', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59278, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018127', 4018127, '270.080994', '9.039959', '11.601690', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59006, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018129', 4018129, '158.682999', '14.718640', '-63.220341', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58734, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018133', 4018133, '188.223907', '10.030940', '-97.774307', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58462, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018134', 4018134, '166.552094', '8.773865', '-94.346558', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018137', 4018137, '163.958099', '6.301941', '-142.320999', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018141', 4018141, '160.723297', '6.515503', '-139.940598', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018142', 4018142, '218.860107', '3.097534', '-168.047699', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018143', 4018143, '231.647202', '5.874695', '-136.827698', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018152', 4018152, '228.137604', '4.013123', '-233.386795', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018154', 4018154, '270.251190', '8.134529', '-236.478806', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018156', 4018156, '267.750397', '7.438218', '-233.682907', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018157', 4018157, '316.072815', '12.832880', '-231.256195', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018159', 4018159, '316.372803', '6.627599', '-200.028305', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018161', 4018161, '363.549500', '16.893539', '-200.111694', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018165', 4018165, '365.959412', '17.232080', '-197.356705', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018171', 4018171, '32.567570', '2.131757', '-61.269958', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54926, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018175', 4018175, '68.556648', '3.005930', '-78.273499', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54654, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018177', 4018177, '70.294853', '2.807336', '-76.142509', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018218', 4018218, '-299.646698', '-38.938461', '29.649010', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88544, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018219', 4018219, '-291.777802', '-38.764221', '32.025139', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88236, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018220', 4018220, '-333.157501', '-38.096481', '14.837530', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87964, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018223', 4018223, '-450.400604', '-30.487301', '217.028503', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018224', 4018224, '-437.057800', '-30.783661', '234.972397', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018225', 4018225, '-439.601105', '-30.769150', '236.646896', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018228', 4018228, '-364.140503', '-35.208920', '210.519699', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018229', 4018229, '-361.718689', '-35.490021', '212.068604', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86592, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018449', 4018449, '408.621307', '7.003844', '139.543701', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53252, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018452', 4018452, '410.757507', '7.095398', '140.581299', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52980, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018453', 4018453, '405.539001', '6.301929', '141.710495', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52708, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018455', 4018455, '433.269897', '13.745850', '117.412903', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52436, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018459', 4018459, '458.291687', '14.700790', '137.946793', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018460', 4018460, '456.601501', '14.747650', '135.462296', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51892, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018462', 4018462, '435.268585', '6.480499', '160.338593', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51620, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018465', 4018465, '340.566010', '-7.949997', '150.988007', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51348, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018513', 4018513, '186.169693', '-31.149429', '258.258911', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51076, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018518', 4018518, '231.316696', '-44.052341', '271.940186', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50804, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018520', 4018520, '230.185699', '-44.115601', '274.394501', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50532, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018521', 4018521, '202.469299', '-14.894620', '157.281494', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50260, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018526', 4018526, '204.195099', '-14.686260', '155.274399', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49988, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018531', 4018531, '215.699997', '-14.748440', '162.191299', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018535', 4018535, '230.609497', '-15.671060', '152.147705', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018536', 4018536, '234.454803', '-15.945720', '152.452805', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018541', 4018541, '316.582214', '-12.778530', '171.745605', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018544', 4018544, '341.519897', '-7.554129', '153.111801', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018546', 4018546, '280.363190', '-10.464180', '157.039001', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018548', 4018548, '277.401794', '-10.433680', '158.329605', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018550', 4018550, '298.631104', '-17.845301', '138.619705', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018552', 4018552, '300.514313', '-17.990530', '137.021698', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018553', 4018553, '304.173004', '-16.961420', '140.928604', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018557', 4018557, '288.870209', '-20.820299', '112.120399', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018560', 4018560, '286.831604', '-20.760210', '113.868401', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018565', 4018565, '384.634094', '-8.041552', '208.148300', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46458, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018574', 4018574, '375.753387', '-8.651917', '202.716095', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46186, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018575', 4018575, '337.562012', '-6.490084', '196.335602', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018585', 4018585, '322.451508', '0.360318', '232.339203', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018587', 4018587, '332.444611', '-2.041133', '221.043106', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018590', 4018590, '322.120911', '0.721062', '236.863403', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018591', 4018591, '343.012787', '-5.424837', '244.845795', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44826, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018594', 4018594, '294.422791', '2.151475', '226.428604', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44554, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018597', 4018597, '399.075592', '-20.838551', '256.768402', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44282, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018599', 4018599, '395.043915', '-20.189211', '256.316895', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44010, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018600', 4018600, '388.906586', '-19.852030', '278.797485', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43738, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018602', 4018602, '439.887085', '-33.409691', '296.645996', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43466, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018603', 4018603, '464.315399', '-42.298431', '269.112213', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43194, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018604', 4018604, '464.615387', '-42.545731', '274.560486', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42922, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018605', 4018605, '494.224304', '-55.678349', '265.046295', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42650, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018653', 4018653, '494.524292', '-63.894562', '233.206802', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42378, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018656', 4018656, '453.035309', '-64.522003', '255.129593', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42106, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018657', 4018657, '441.404510', '-64.788147', '246.034805', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41834, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018658', 4018658, '444.123810', '-64.620087', '241.737396', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41562, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018661', 4018661, '439.902802', '-20.658911', '226.785904', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41290, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018662', 4018662, '443.246185', '-19.347570', '231.567505', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41018, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018663', 4018663, '446.924286', '-17.912411', '214.384598', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40746, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018664', 4018664, '483.668396', '-8.428408', '232.612701', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40474, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(266, 'e0029', 'bnpc4018667', 4018667, '485.972687', '-7.855111', '227.039703', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40202, 5, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(266, 'e0029', 'bnpc4018683', 4018683, '420.139191', '10.932210', '126.607399', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018685', 4018685, '447.669708', '11.251440', '147.314606', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39664, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018687', 4018687, '388.530914', '-9.116596', '196.378998', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018688', 4018688, '383.230286', '-18.143021', '263.599487', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018693', 4018693, '267.754089', '-4.105820', '247.045593', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018694', 4018694, '430.037811', '-64.649399', '210.820694', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38576, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018697', 4018697, '441.279785', '-64.462044', '202.846802', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38304, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018699', 4018699, '456.870789', '-14.453500', '215.100906', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018700', 4018700, '482.293304', '-7.656506', '258.934692', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018711', 4018711, '319.466095', '-21.198891', '117.792198', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018714', 4018714, '287.041992', '-19.224710', '132.121902', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018719', 4018719, '256.611511', '-16.890450', '168.769501', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018721', 4018721, '226.084503', '-3.171931', '186.594803', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4018722', 4018722, '228.457001', '-3.558112', '189.543701', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4021495', 4021495, '290.852203', '7.003784', '-131.212296', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4021497', 4021497, '290.089203', '6.881775', '-132.860397', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4057678', 4057678, '-430.180603', '-37.593121', '175.636093', 792, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21986, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(266, 'e0029', 'bnpc4057682', 4057682, '-445.348114', '-30.229731', '50.185131', 791, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21720, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(266, 'e0029', 'bnpc4057686', 4057686, '-332.421600', '-42.604149', '42.912781', 793, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21454, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(266, 'e0029', 'bnpc4621848', 4621848, '-77.749184', '-58.466881', '167.597900', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22594, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(266, 'e0029', 'bnpc4621849', 4621849, '235.769302', '-44.305069', '271.670990', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22328, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926308', 3926308, '376.795502', '84.142036', '107.708504', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154812, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926338', 3926338, '375.147491', '84.022469', '106.274200', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154540, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926351', 3926351, '405.431488', '88.082703', '99.945763', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154268, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926354', 3926354, '409.251190', '88.844963', '97.093102', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153996, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926358', 3926358, '378.901215', '84.631958', '104.412598', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153724, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926365', 3926365, '407.170990', '88.157288', '101.532700', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153452, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926371', 3926371, '392.339203', '86.636040', '181.099197', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153180, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926372', 3926372, '396.068207', '86.811653', '179.238007', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152908, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926373', 3926373, '393.988495', '86.897270', '182.527893', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152636, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926381', 3926381, '411.703613', '88.297813', '162.003098', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152364, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926382', 3926382, '410.055603', '88.039360', '160.599197', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152092, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926386', 3926386, '394.559601', '85.026733', '153.758499', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151820, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926391', 3926391, '410.144012', '88.683350', '189.622894', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151548, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926417', 3926417, '417.375885', '87.742783', '131.569901', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926439', 3926439, '345.812805', '76.219322', '212.725998', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926440', 3926440, '344.548309', '75.438789', '207.299393', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926441', 3926441, '348.012512', '76.039337', '211.108795', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926464', 3926464, '356.043793', '74.743179', '151.343094', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926465', 3926465, '352.759186', '74.743149', '149.888596', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926467', 3926467, '367.410095', '80.423607', '133.246597', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926481', 3926481, '353.852814', '80.577820', '117.643204', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926484', 3926484, '351.360199', '79.902428', '120.108704', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926487', 3926487, '355.985199', '80.082771', '121.892502', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926490', 3926490, '373.090698', '84.220062', '99.076653', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926522', 3926522, '406.246887', '86.759048', '111.752296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926526', 3926526, '325.732788', '66.676826', '171.598495', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926537', 3926537, '328.927612', '68.512451', '191.103607', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926539', 3926539, '326.017792', '67.722847', '188.876999', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926541', 3926541, '342.366608', '72.409378', '178.265305', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926543', 3926543, '340.851105', '72.117889', '182.389893', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926545', 3926545, '339.368805', '71.684380', '180.432800', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926547', 3926547, '329.747711', '68.403687', '149.117706', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926548', 3926548, '327.065491', '67.092491', '170.001404', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926552', 3926552, '319.223511', '67.064529', '203.825699', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926557', 3926557, '307.153687', '65.648338', '183.776306', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926564', 3926564, '315.245087', '65.419243', '134.686005', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926565', 3926565, '313.912415', '65.218117', '136.283096', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926572', 3926572, '310.648285', '65.000732', '131.124893', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926578', 3926578, '301.380890', '64.171013', '142.769608', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926601', 3926601, '261.503296', '53.867599', '124.334000', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926644', 3926644, '295.185699', '60.044201', '169.695496', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926653', 3926653, '293.079987', '59.372799', '172.716797', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132792, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926658', 3926658, '296.070709', '60.135750', '174.090103', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133064, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926660', 3926660, '257.465393', '54.488819', '176.080399', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134152, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926665', 3926665, '279.163788', '55.806110', '134.904999', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133336, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926667', 3926667, '277.598999', '55.429420', '137.030197', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131976, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926670', 3926670, '269.266907', '56.155140', '106.412498', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132520, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926677', 3926677, '260.700409', '54.871441', '108.842598', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132248, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926683', 3926683, '261.666290', '55.104469', '106.238503', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134696, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926716', 3926716, '257.191193', '55.945511', '220.022095', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926717', 3926717, '258.076202', '55.964081', '224.416702', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926718', 3926718, '255.085403', '55.855000', '223.043396', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134424, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926733', 3926733, '243.941101', '55.670811', '235.884598', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133608, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926750', 3926750, '258.564087', '54.697350', '178.949097', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133880, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926769', 3926769, '413.944397', '89.309250', '158.034897', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148018, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926800', 3926800, '407.416199', '87.761620', '175.019302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147746, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926801', 3926801, '406.609985', '87.629570', '176.598602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147474, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926804', 3926804, '392.991699', '87.757637', '191.946198', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147202, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926805', 3926805, '387.339111', '84.919083', '134.093994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146930, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926808', 3926808, '354.084900', '81.902718', '100.424797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146658, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926810', 3926810, '422.356903', '89.050278', '114.571297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146386, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926812', 3926812, '421.045013', '88.772667', '115.796600', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146114, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926815', 3926815, '403.283386', '86.085800', '113.897499', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145842, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926821', 3926821, '370.507996', '82.400093', '117.661697', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145570, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926825', 3926825, '367.792389', '81.913681', '118.807602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926829', 3926829, '360.534485', '74.935432', '148.181396', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145026, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926837', 3926837, '378.317413', '79.842934', '162.415802', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144754, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926847', 3926847, '376.053986', '78.965889', '164.143707', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926848', 3926848, '369.552399', '77.052002', '192.962997', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144210, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926854', 3926854, '346.371490', '75.720573', '208.895203', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143938, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926858', 3926858, '363.167694', '77.767464', '219.355392', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143666, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926860', 3926860, '371.780212', '77.339363', '194.397400', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926868', 3926868, '369.826996', '77.102577', '196.960907', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143116, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3926883', 3926883, '344.452301', '72.995819', '181.059906', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926890', 3926890, '328.520813', '67.640129', '172.850403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926891', 3926891, '311.090302', '65.890671', '189.672195', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926896', 3926896, '309.819885', '64.657661', '145.602493', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926898', 3926898, '328.420197', '67.645653', '147.350800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141762, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926899', 3926899, '317.188690', '65.970573', '128.639603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141490, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926902', 3926902, '318.570007', '65.981651', '129.865601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141218, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926912', 3926912, '275.386810', '55.162628', '134.854202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140946, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926915', 3926915, '264.207703', '55.231709', '109.226501', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140674, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926917', 3926917, '260.486694', '54.760460', '176.782303', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926928', 3926928, '254.790497', '55.815201', '226.529297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926929', 3926929, '242.801407', '55.684689', '237.647995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3926930', 3926930, '241.351593', '55.604931', '235.930405', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139586, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927149', 3927149, '27.696630', '50.949940', '203.695496', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130588, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927150', 3927150, '15.640450', '53.696449', '252.796204', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927151', 3927151, '-61.356571', '57.144989', '351.064209', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927152', 3927152, '173.737106', '54.352638', '226.520096', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130316, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927153', 3927153, '183.533401', '54.215019', '225.513000', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130044, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927154', 3927154, '99.898514', '49.255638', '188.131607', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129772, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927156', 3927156, '128.718903', '50.518780', '195.651794', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129500, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927158', 3927158, '115.929298', '48.682110', '176.508408', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129228, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927162', 3927162, '108.506699', '47.551449', '175.644897', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128956, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927163', 3927163, '32.919010', '50.990910', '198.741592', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128684, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927164', 3927164, '31.915621', '47.200191', '163.456696', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128412, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927165', 3927165, '65.425613', '51.619080', '219.897705', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128140, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927166', 3927166, '70.552643', '50.994259', '212.756500', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127868, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927168', 3927168, '60.756340', '51.112720', '213.427902', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127596, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927169', 3927169, '1.910973', '44.523701', '152.350204', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127324, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927170', 3927170, '6.149339', '47.714909', '180.407394', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127052, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927171', 3927171, '175.777206', '50.666649', '65.453201', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126780, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927172', 3927172, '170.246994', '50.547649', '69.196983', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126508, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927174', 3927174, '240.923996', '51.465309', '71.654427', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126236, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927175', 3927175, '249.684906', '51.468151', '78.309212', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125964, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927176', 3927176, '255.227203', '51.199020', '67.745193', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125692, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927178', 3927178, '253.462494', '51.509102', '19.847630', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125420, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927179', 3927179, '201.886398', '51.465870', '22.835030', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125148, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927182', 3927182, '111.507797', '59.949421', '283.252502', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927185', 3927185, '98.313828', '59.311771', '302.754211', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124610, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927186', 3927186, '110.092697', '60.098831', '287.907593', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124338, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927187', 3927187, '128.731201', '60.436340', '298.911407', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124066, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927188', 3927188, '83.256920', '55.503361', '283.185394', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123794, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927189', 3927189, '91.296028', '55.644341', '266.384308', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123522, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927190', 3927190, '82.101891', '55.164581', '275.573212', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123250, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927191', 3927191, '115.385597', '59.492580', '287.027496', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122978, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927192', 3927192, '178.888199', '53.984070', '219.121597', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927194', 3927194, '131.716507', '57.952309', '278.151306', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122434, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927197', 3927197, '-22.751249', '56.290482', '304.371613', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927200', 3927200, '-18.722870', '56.046341', '317.952209', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927201', 3927201, '-14.837500', '56.125702', '314.598206', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927203', 3927203, '8.417153', '55.567989', '320.395599', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927204', 3927204, '20.042080', '57.618370', '350.774109', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927205', 3927205, '26.145691', '57.755730', '356.084290', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927206', 3927206, '22.476490', '58.182598', '359.426208', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927209', 3927209, '49.869179', '57.280979', '352.553101', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120264, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927211', 3927211, '21.927170', '54.917171', '311.085602', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119992, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927213', 3927213, '25.229980', '54.764481', '306.841705', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119720, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927218', 3927218, '-21.114670', '53.540970', '264.998993', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119448, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927220', 3927220, '-5.313622', '54.065811', '256.266205', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119176, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927221', 3927221, '-23.334700', '53.561840', '260.473511', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118904, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927222', 3927222, '5.204782', '54.084610', '236.687195', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118632, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927224', 3927224, '8.561768', '54.060150', '238.457199', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118360, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927226', 3927226, '-8.821225', '50.881729', '201.391602', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927229', 3927229, '-6.608897', '50.901840', '203.446304', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927230', 3927230, '-18.636290', '51.201260', '221.737701', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927231', 3927231, '-35.276581', '49.465691', '214.633698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927236', 3927236, '-11.411140', '50.721111', '205.313904', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927239', 3927239, '-38.801102', '49.907009', '218.520004', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927240', 3927240, '6.279222', '50.975891', '212.108902', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927241', 3927241, '-35.700180', '46.975208', '193.506195', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927246', 3927246, '-141.250000', '50.637089', '227.672501', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97168, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(267, 'e0030', 'bnpc3927250', 3927250, '-140.879105', '50.598660', '225.798996', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97440, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(267, 'e0030', 'bnpc3927252', 3927252, '-133.580704', '50.071732', '219.991806', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96624, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(267, 'e0030', 'bnpc3927255', 3927255, '-132.305801', '49.998920', '219.510193', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96896, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(267, 'e0030', 'bnpc3927256', 3927256, '-130.444595', '50.881111', '227.569397', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98256, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(267, 'e0030', 'bnpc3927333', 3927333, '-125.582298', '49.131699', '207.139694', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98528, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(267, 'e0030', 'bnpc3927334', 3927334, '-153.431595', '49.478130', '221.025101', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97712, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(267, 'e0030', 'bnpc3927339', 3927339, '-121.896698', '49.490898', '212.546097', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97984, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(267, 'e0030', 'bnpc3927343', 3927343, '-45.193470', '62.185181', '363.152100', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115912, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927345', 3927345, '-79.881020', '55.100281', '361.379395', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115640, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927346', 3927346, '-83.391731', '54.977058', '365.606995', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115368, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927347', 3927347, '-54.476139', '65.540337', '392.423004', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115096, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927349', 3927349, '-51.241718', '65.802643', '390.513214', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114824, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927352', 3927352, '-1.297064', '68.802879', '377.553894', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114552, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927353', 3927353, '2.885915', '68.536720', '372.786896', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114280, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927354', 3927354, '-109.941299', '48.966148', '357.015289', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114008, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927356', 3927356, '-125.981003', '51.453751', '311.388885', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113736, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927357', 3927357, '-130.879105', '51.717690', '309.097412', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113464, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927358', 3927358, '-131.425293', '51.394489', '312.798096', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113192, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927359', 3927359, '-118.158401', '53.802921', '271.080597', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112920, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927360', 3927360, '-115.932800', '53.461861', '267.407501', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112648, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927361', 3927361, '-95.500458', '52.359612', '245.109894', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112376, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927364', 3927364, '-138.997604', '45.849251', '391.546814', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112104, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927366', 3927366, '-131.347107', '47.246719', '398.411713', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111832, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927367', 3927367, '-141.612305', '45.939159', '395.010193', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111560, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927368', 3927368, '-175.499496', '39.137119', '393.656799', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111288, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927370', 3927370, '-156.301407', '40.866211', '345.757813', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111016, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927371', 3927371, '-162.614700', '39.951931', '342.568695', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110744, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927373', 3927373, '-157.533707', '40.302212', '350.198212', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110472, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927375', 3927375, '28.610620', '55.466499', '328.511414', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927379', 3927379, '37.804600', '58.140781', '363.465912', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927382', 3927382, '32.272758', '55.471779', '329.481689', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927384', 3927384, '6.784028', '54.128811', '253.378204', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927387', 3927387, '-20.690559', '53.685650', '251.224396', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927388', 3927388, '45.252361', '48.095360', '180.655197', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927394', 3927394, '69.706589', '56.137440', '318.697693', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927398', 3927398, '104.150002', '56.064339', '263.215607', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927403', 3927403, '156.664307', '54.703541', '236.652100', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927404', 3927404, '44.327412', '52.658840', '244.800400', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927408', 3927408, '-26.490999', '44.862301', '177.075394', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927413', 3927413, '152.993607', '50.116879', '72.775887', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927414', 3927414, '220.945801', '50.242329', '4.633916', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927417', 3927417, '219.309296', '49.916939', '6.135899', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927424', 3927424, '-14.541890', '67.307503', '362.722107', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927425', 3927425, '-65.254753', '64.638290', '395.066498', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927431', 3927431, '-117.631798', '47.959061', '380.300507', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927432', 3927432, '-172.127304', '40.469398', '398.069092', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927433', 3927433, '-189.330597', '36.909599', '341.340210', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927435', 3927435, '-140.326401', '45.201859', '337.794006', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927436', 3927436, '-110.657700', '52.097160', '290.219696', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927437', 3927437, '-145.151993', '56.686409', '288.573792', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927730', 3927730, '120.638901', '17.207850', '96.590080', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104234, 6, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(267, 'e0030', 'bnpc3927734', 3927734, '123.778503', '17.206751', '88.372543', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103962, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927735', 3927735, '128.407593', '16.559820', '98.111130', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103690, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927736', 3927736, '78.465424', '21.109140', '92.377060', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103418, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927737', 3927737, '100.497498', '16.583630', '126.907097', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103146, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927739', 3927739, '-25.650459', '22.079760', '105.851799', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102874, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927742', 3927742, '-20.340321', '21.438881', '108.873100', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102602, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927745', 3927745, '78.228539', '22.345881', '63.241020', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102330, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927746', 3927746, '86.209900', '22.246161', '56.213009', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102058, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927748', 3927748, '127.763702', '25.986071', '49.240810', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101786, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927750', 3927750, '70.167282', '16.789490', '139.201706', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927760', 3927760, '95.818649', '15.165110', '168.324600', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927771', 3927771, '96.919411', '15.051520', '166.152405', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927776', 3927776, '126.695602', '15.793040', '128.007904', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100692, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927784', 3927784, '58.284618', '22.640039', '59.899170', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100420, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927789', 3927789, '14.317140', '20.384331', '98.519272', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100148, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927870', 3927870, '123.073700', '18.194111', '18.950350', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99882, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927874', 3927874, '164.476593', '18.193741', '-3.313263', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99610, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927875', 3927875, '161.316605', '18.193520', '6.161218', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99338, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927880', 3927880, '179.117905', '18.193710', '3.609651', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99066, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3927883', 3927883, '103.653801', '19.374020', '93.697792', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98788, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927890', 3927890, '122.968102', '56.939259', '-36.773190', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95074, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927910', 3927910, '123.268097', '55.511478', '-56.716091', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94802, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927911', 3927911, '129.320206', '55.924271', '-51.987530', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927912', 3927912, '154.660400', '55.357391', '-41.330311', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94258, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927919', 3927919, '189.631897', '50.414280', '-25.954390', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93986, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927923', 3927923, '183.639099', '52.017891', '-84.284233', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93714, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927925', 3927925, '153.890793', '52.284729', '-77.195427', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927934', 3927934, '191.650803', '52.446129', '-77.491463', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93170, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3927952', 3927952, '199.298004', '52.109509', '-110.399101', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92898, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928005', 3928005, '249.801102', '63.548111', '-129.309692', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92626, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928007', 3928007, '233.766098', '63.274509', '-115.512901', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92354, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928013', 3928013, '75.352249', '58.717110', '35.270901', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92088, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928021', 3928021, '86.804192', '58.856110', '31.969290', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91816, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928022', 3928022, '84.852730', '58.771778', '28.421551', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91544, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928152', 3928152, '58.122269', '59.502029', '1.331460', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928154', 3928154, '99.899971', '53.697948', '21.844801', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928157', 3928157, '28.599730', '59.945721', '27.529560', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928160', 3928160, '25.558041', '59.878441', '30.178419', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928161', 3928161, '14.973360', '62.347179', '18.278700', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928165', 3928165, '6.374675', '59.338470', '42.109829', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928314', 3928314, '319.607910', '63.456242', '-187.854004', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928315', 3928315, '318.191406', '63.387531', '-186.084000', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928317', 3928317, '311.617798', '62.671181', '-255.173492', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928319', 3928319, '306.148010', '62.678329', '-255.381195', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928320', 3928320, '310.641205', '62.731220', '-257.553894', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928321', 3928321, '288.386597', '62.264820', '-212.191498', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928323', 3928323, '281.432892', '62.276360', '-175.724792', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928324', 3928324, '294.345215', '62.536160', '-229.177994', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87700, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928326', 3928326, '324.076385', '63.986629', '-248.880295', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87428, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928327', 3928327, '294.358307', '62.940811', '-234.107498', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87156, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928328', 3928328, '298.334686', '62.391232', '-190.659805', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86884, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928329', 3928329, '288.392303', '62.534901', '-229.239197', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86612, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928331', 3928331, '298.725800', '62.141201', '-195.515305', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86340, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928332', 3928332, '265.782898', '63.307018', '-219.574600', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86068, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928335', 3928335, '316.656586', '63.109501', '-200.695007', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85796, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928360', 3928360, '-105.641998', '14.974850', '-248.369598', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928364', 3928364, '-110.496902', '14.974860', '-245.931396', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928366', 3928366, '-96.993607', '14.974790', '-263.062500', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928370', 3928370, '-134.325607', '14.974520', '-268.556091', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928372', 3928372, '-137.674500', '14.974520', '-281.872009', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84484, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928373', 3928373, '-140.064697', '14.974790', '-279.290314', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84212, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928374', 3928374, '-183.464493', '14.974900', '-240.699707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83940, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928376', 3928376, '-180.748398', '14.974890', '-244.758606', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83668, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928378', 3928378, '-186.089096', '14.974890', '-243.232697', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83396, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928379', 3928379, '-147.631104', '14.969050', '-274.158905', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83124, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928383', 3928383, '-224.475494', '14.969050', '-348.714386', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928386', 3928386, '-209.268402', '14.974940', '-344.686401', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928387', 3928387, '-206.509598', '14.974940', '-340.343994', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928388', 3928388, '-218.735199', '14.974420', '-379.859985', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928389', 3928389, '-223.490601', '14.974420', '-382.159912', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928391', 3928391, '-258.752411', '14.974870', '-325.427490', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928392', 3928392, '-264.535492', '14.974880', '-327.510101', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928394', 3928394, '-281.808807', '14.974920', '-208.237701', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928519', 3928519, '-253.182007', '14.974930', '-267.783295', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928520', 3928520, '-255.348694', '14.974930', '-265.372406', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928523', 3928523, '-283.110809', '14.974940', '-291.602112', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928524', 3928524, '-282.531006', '14.974940', '-294.806488', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928525', 3928525, '-286.528809', '14.974940', '-293.707794', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928527', 3928527, '-298.754211', '14.974940', '-221.860397', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928528', 3928528, '-295.336212', '14.974940', '-225.644699', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928531', 3928531, '-217.611801', '14.974770', '-304.205109', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928534', 3928534, '-250.701904', '14.974930', '-243.696503', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928783', 3928783, '-182.680801', '14.974910', '-276.838287', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78228, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928784', 3928784, '-170.103302', '14.974860', '-253.832504', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77956, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928788', 3928788, '-212.801102', '14.974940', '-333.462799', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928795', 3928795, '-266.258698', '15.546460', '-234.426102', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77370, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928796', 3928796, '-219.789307', '14.974930', '-267.238892', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77098, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928797', 3928797, '-285.191498', '14.974940', '-268.444397', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76826, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928798', 3928798, '-203.762299', '14.974910', '-250.822205', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76554, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928799', 3928799, '-278.737915', '14.974940', '-262.906189', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76282, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928800', 3928800, '-277.257599', '14.974940', '-267.571411', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76010, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928801', 3928801, '-256.085907', '14.974930', '-289.433411', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75738, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928802', 3928802, '-224.033401', '14.974930', '-264.018097', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75466, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928803', 3928803, '146.532303', '54.459400', '-51.499241', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928804', 3928804, '102.067497', '53.818520', '-56.137989', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928805', 3928805, '78.182693', '57.105598', '-30.773781', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928806', 3928806, '76.842499', '57.456390', '-29.140619', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928807', 3928807, '86.645050', '57.952759', '6.113357', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928808', 3928808, '22.705441', '61.685020', '19.656160', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928809', 3928809, '10.100620', '59.973881', '35.668980', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928810', 3928810, '166.031296', '50.849098', '-100.283997', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928811', 3928811, '186.388901', '51.621220', '-160.082397', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928812', 3928812, '238.300095', '63.248600', '-122.148499', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928813', 3928813, '184.099701', '52.311790', '-57.823231', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928814', 3928814, '179.929794', '52.482571', '-55.958038', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928815', 3928815, '142.056702', '53.278130', '-130.908096', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928816', 3928816, '268.193207', '63.254810', '-222.082703', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928822', 3928822, '302.263489', '62.065739', '-193.318497', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928825', 3928825, '-123.838997', '14.974520', '-263.543488', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928831', 3928831, '-176.301498', '14.974870', '-250.083099', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928832', 3928832, '-144.984497', '14.974770', '-287.996185', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928833', 3928833, '-185.416595', '14.974910', '-280.625488', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928834', 3928834, '-244.850296', '14.974930', '-244.881104', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928835', 3928835, '-244.690704', '15.599670', '-289.695801', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928836', 3928836, '-287.953003', '14.974940', '-254.367096', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928837', 3928837, '-288.296387', '14.974940', '-221.930298', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928838', 3928838, '-242.570297', '14.974810', '-341.476898', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928839', 3928839, '-294.252502', '14.974850', '-321.210785', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928840', 3928840, '-213.266998', '14.974420', '-364.787292', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928841', 3928841, '-196.042206', '14.974940', '-319.922791', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928894', 3928894, '-427.363312', '23.320280', '-482.444489', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67692, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928895', 3928895, '-414.236694', '24.246580', '-480.094604', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67420, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928896', 3928896, '-399.069214', '24.662140', '-486.445496', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67148, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928897', 3928897, '-426.661407', '23.254721', '-480.735504', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66876, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928898', 3928898, '-385.109589', '24.366320', '-508.717590', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66604, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928899', 3928899, '-383.622498', '24.283310', '-510.090912', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66332, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928900', 3928900, '-397.867401', '24.621420', '-483.869110', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66060, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928902', 3928902, '-395.742706', '24.800859', '-486.720215', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65788, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928905', 3928905, '-372.182800', '14.915100', '-682.187012', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65438, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928915', 3928915, '-343.109711', '14.951240', '-708.646729', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65166, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928916', 3928916, '-336.488098', '15.011050', '-702.973022', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64894, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928917', 3928917, '-342.475098', '14.886180', '-699.100403', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64622, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928918', 3928918, '-346.725800', '15.000050', '-648.932983', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64350, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928919', 3928919, '-360.611603', '15.143860', '-728.342285', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64078, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928920', 3928920, '-369.109985', '17.086229', '-625.858582', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63806, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928921', 3928921, '-368.551208', '14.932670', '-677.304016', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63534, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928922', 3928922, '-289.976898', '15.036210', '-766.856018', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928923', 3928923, '-329.499603', '13.228890', '-734.741028', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63074, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928924', 3928924, '-308.522186', '13.199010', '-741.054382', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62802, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928926', 3928926, '-330.769806', '14.999570', '-781.734985', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928927', 3928927, '-282.568512', '14.996440', '-714.049622', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928928', 3928928, '-288.031189', '15.033810', '-704.314270', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928929', 3928929, '-340.138885', '14.999570', '-765.682495', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928930', 3928930, '-375.273102', '24.057680', '-530.949707', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61364, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928931', 3928931, '-376.594513', '24.104771', '-528.967224', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61092, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928932', 3928932, '-385.780304', '23.495701', '-548.185181', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60820, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928933', 3928933, '-388.991913', '23.634899', '-551.127014', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60548, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928934', 3928934, '-380.102814', '23.848009', '-554.942871', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60276, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928935', 3928935, '-383.823486', '24.014250', '-580.209229', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60004, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928936', 3928936, '-384.645203', '22.916321', '-600.375427', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928937', 3928937, '-382.814087', '22.623171', '-601.962280', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc3928938', 3928938, '-160.448700', '15.121640', '-740.138916', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928939', 3928939, '-163.418106', '15.126450', '-733.144714', 109, 0, 0, 0, 1, 6, 0, 0, 310, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59006, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928940', 3928940, '-154.855392', '15.126450', '-735.291016', 111, 0, 0, 0, 1, 6, 0, 0, 312, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928941', 3928941, '-184.969193', '15.126200', '-748.799011', 111, 0, 0, 0, 1, 6, 0, 0, 312, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928942', 3928942, '-245.304596', '14.639280', '-736.399902', 109, 0, 0, 0, 1, 6, 0, 0, 310, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58190, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928943', 3928943, '-208.907501', '15.126340', '-737.954224', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928944', 3928944, '-177.706696', '15.126430', '-724.218872', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928945', 3928945, '129.798294', '53.983780', '241.581604', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc3928946', 3928946, '358.728088', '75.113953', '188.477402', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4057505', 4057505, '425.836700', '93.949097', '147.345596', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.500000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23758, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(267, 'e0030', 'bnpc4057530', 4057530, '246.828796', '52.038040', '143.148804', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.800000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23492, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(267, 'e0030', 'bnpc4057532', 4057532, '209.687393', '52.005539', '110.727303', 797, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23226, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(267, 'e0030', 'bnpc4057541', 4057541, '192.848099', '52.038040', '162.149994', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22942, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(267, 'e0030', 'bnpc4057553', 4057553, '108.028297', '49.844238', '-189.682297', 798, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22688, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(267, 'e0030', 'bnpc4057563', 4057563, '-82.688713', '15.467950', '-260.648010', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(267, 'e0030', 'bnpc4057572', 4057572, '-436.003998', '23.000170', '-484.805511', 791, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22150, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(267, 'e0030', 'bnpc4190759', 4190759, '-345.540588', '14.999600', '-775.448181', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57362, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(267, 'e0030', 'bnpc4267191', 4267191, '-707.860779', '67.740463', '-822.422119', 1439, 0, 0, 0, 0, 6, 0, 0, 2160, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57014, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4267197', 4267197, '-665.501282', '62.452560', '-807.101318', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56748, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4267200', 4267200, '-665.515930', '62.330540', '-804.663086', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56476, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4267201', 4267201, '-678.426575', '63.899670', '-816.868713', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56204, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4267202', 4267202, '-697.547180', '65.602493', '-808.171204', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55932, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4267203', 4267203, '-691.117920', '65.001953', '-800.783875', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55660, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4267204', 4267204, '-707.367920', '67.125900', '-815.833374', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55388, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4267205', 4267205, '-691.542114', '65.307541', '-815.101807', 434, 0, 0, 0, 0, 6, 0, 0, 2160, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4296870', 4296870, '242.172607', '52.038120', '112.691498', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20750, 8, 0, 0, 4296864, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4296871', 4296871, '246.709503', '52.038120', '124.038902', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20478, 8, 0, 0, 4296863, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4296872', 4296872, '237.477707', '52.017941', '108.608101', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20206, 8, 0, 0, 4296858, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4296873', 4296873, '244.254303', '52.038120', '162.449799', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19934, 8, 0, 0, 4296867, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4296874', 4296874, '244.299103', '52.038120', '166.290298', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19662, 8, 0, 0, 4296868, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4308066', 4308066, '-421.159485', '44.462021', '-712.226013', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54672, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(267, 'e0030', 'bnpc4308069', 4308069, '-514.378784', '51.624359', '-759.622498', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54400, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(267, 'e0030', 'bnpc4308070', 4308070, '-599.843384', '57.051182', '-784.518921', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54128, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(267, 'e0030', 'bnpc4308071', 4308071, '-656.681274', '62.116219', '-804.503601', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53856, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(267, 'e0030', 'bnpc4308072', 4308072, '-492.048187', '50.155430', '-704.991577', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53590, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(267, 'e0030', 'bnpc4308073', 4308073, '-517.815491', '50.450741', '-713.017395', 63, 0, 0, 0, 0, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53324, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(267, 'e0030', 'bnpc4308074', 4308074, '-456.002014', '51.014610', '-752.579285', 55, 0, 0, 0, 0, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53058, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(267, 'e0030', 'bnpc4308075', 4308075, '-495.700897', '50.855309', '-742.115417', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52792, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(267, 'e0030', 'bnpc4308082', 4308082, '-441.168610', '50.899448', '-705.323914', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52514, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(267, 'e0030', 'bnpc4308083', 4308083, '-518.314270', '50.452862', '-714.412109', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52224, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(267, 'e0030', 'bnpc4308084', 4308084, '-479.211487', '51.372540', '-761.453186', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51964, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(267, 'e0030', 'bnpc4308085', 4308085, '-402.046509', '49.868610', '-739.848206', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51704, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(267, 'e0030', 'bnpc4308086', 4308086, '-454.328613', '50.848831', '-752.713074', 64, 0, 0, 0, 0, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51414, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(267, 'e0030', 'bnpc4308091', 4308091, '-536.909607', '51.647678', '-772.339600', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51154, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(267, 'e0030', 'bnpc4308092', 4308092, '-566.559387', '53.197552', '-772.416382', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50870, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(267, 'e0030', 'bnpc4308093', 4308093, '-534.190186', '55.472980', '-738.915771', 62, 0, 0, 0, 1, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50592, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(267, 'e0030', 'bnpc4308094', 4308094, '-570.383728', '53.322189', '-740.588013', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(267, 'e0030', 'bnpc4308095', 4308095, '-576.705811', '54.865730', '-790.850830', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50060, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(267, 'e0030', 'bnpc4308096', 4308096, '-598.254211', '63.233582', '-755.445496', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49788, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(267, 'e0030', 'bnpc4308097', 4308097, '-601.317322', '62.751640', '-757.922485', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49510, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(267, 'e0030', 'bnpc4308098', 4308098, '-621.487915', '61.777660', '-742.445374', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49256, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(267, 'e0030', 'bnpc4308099', 4308099, '-621.786072', '58.863022', '-795.647095', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48978, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(267, 'e0030', 'bnpc4308100', 4308100, '-646.074890', '61.267559', '-800.385315', 62, 0, 0, 0, 1, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48688, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(267, 'e0030', 'bnpc4308102', 4308102, '-555.229980', '53.299679', '-753.444702', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4308104', 4308104, '-410.261810', '51.000069', '-758.953003', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48174, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4308105', 4308105, '-468.451904', '50.148300', '-723.755676', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4308109', 4308109, '-626.947510', '60.044189', '-813.534790', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47630, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4308112', 4308112, '-635.044800', '58.894249', '-777.102417', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4308164', 4308164, '-544.952698', '55.549671', '-803.447388', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47086, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(267, 'e0030', 'bnpc4510228', 4510228, '320.279907', '67.275337', '234.176498', 793, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21884, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(267, 'e0030', 'bnpc4621821', 4621821, '-91.708687', '15.670890', '217.180496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24120, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4012541', 4012541, '-499.944489', '-24.206900', '274.711395', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4012542', 4012542, '-496.735107', '-24.822651', '275.516113', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136368, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(268, 'e0031', 'bnpc4012543', 4012543, '-498.215302', '-25.168880', '279.728394', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4012544', 4012544, '-508.450897', '-22.501459', '275.251801', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4012545', 4012545, '-500.246307', '-22.856750', '332.079407', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4012546', 4012546, '-503.241211', '-22.525490', '333.955200', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4012547', 4012547, '-490.592804', '-25.436840', '313.618591', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4012548', 4012548, '-487.602112', '-26.077709', '308.522095', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4012549', 4012549, '-487.632599', '-25.467350', '315.632813', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4012550', 4012550, '-490.196106', '-25.009581', '264.942413', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013205', 4013205, '-304.194305', '-34.543591', '294.601898', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013206', 4013206, '-304.224792', '-33.836750', '301.712585', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013207', 4013207, '-307.184998', '-34.167721', '299.698395', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013208', 4013208, '-370.016113', '-38.010269', '260.669800', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013209', 4013209, '-367.025299', '-37.796638', '255.573303', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013210', 4013210, '-367.055786', '-38.345970', '262.714508', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013211', 4013211, '-393.702789', '-33.147480', '298.410095', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013212', 4013212, '-390.742615', '-33.080891', '300.424286', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013213', 4013213, '-422.867310', '-30.681101', '303.919800', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013214', 4013214, '-421.252197', '-30.134701', '311.575806', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013215', 4013215, '-418.295593', '-29.892469', '313.588104', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013216', 4013216, '-418.261505', '-30.624969', '306.479187', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013222', 4013222, '-228.755997', '-29.250050', '268.198700', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130662, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013224', 4013224, '-259.769104', '-25.814650', '223.363907', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130390, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013225', 4013225, '-248.303101', '-25.635059', '215.703506', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130118, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013226', 4013226, '-244.556595', '-29.157000', '245.735596', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013227', 4013227, '-205.884796', '-28.989929', '252.945099', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013230', 4013230, '-221.465103', '-29.933540', '230.371399', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129302, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013231', 4013231, '-191.527893', '-33.626598', '218.107803', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013232', 4013232, '-179.018005', '-29.188629', '250.063797', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128758, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013234', 4013234, '-175.844193', '-28.984510', '287.393402', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128492, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013235', 4013235, '-189.302597', '-29.714430', '288.949799', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91536, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013236', 4013236, '-180.635498', '-30.361820', '295.114288', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128220, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013237', 4013237, '-155.046997', '-38.834259', '204.882797', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127948, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013238', 4013238, '-140.856094', '-42.038651', '199.298004', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127676, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013239', 4013239, '-147.844696', '-38.864811', '208.361893', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127404, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013244', 4013244, '-152.971695', '-38.651150', '171.557098', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91808, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013245', 4013245, '-122.655197', '-36.402191', '160.250000', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127132, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013246', 4013246, '-125.513298', '-36.825439', '155.686493', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126860, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013248', 4013248, '-240.869400', '-31.567810', '320.527802', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126588, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013249', 4013249, '-235.614594', '-31.418369', '325.917389', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126316, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013250', 4013250, '-222.186707', '-34.622761', '365.438293', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126044, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013251', 4013251, '-253.131897', '-36.331779', '359.212585', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91264, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013254', 4013254, '-287.041687', '-32.065750', '207.250107', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125760, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013255', 4013255, '-284.050995', '-31.622311', '202.123093', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125488, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013256', 4013256, '-284.081512', '-31.907009', '209.264297', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125216, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013262', 4013262, '-273.132507', '-35.872952', '132.381500', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124944, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013263', 4013263, '-270.172211', '-35.967918', '134.395706', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124672, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013264', 4013264, '-270.141693', '-36.277580', '127.254402', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124400, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013266', 4013266, '-259.425812', '-35.518791', '150.542206', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124128, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013267', 4013267, '-256.465515', '-35.526428', '152.556396', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123856, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013445', 4013445, '-149.523193', '-32.364429', '59.342289', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92080, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013479', 4013479, '-159.265594', '-32.346439', '51.098259', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123596, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013480', 4013480, '-151.901093', '-33.007351', '66.556549', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123324, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013481', 4013481, '-100.511200', '-26.840670', '16.128740', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013482', 4013482, '-102.891098', '-28.253700', '23.320940', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123052, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013483', 4013483, '-149.419205', '-28.890289', '2.911655', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122780, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013484', 4013484, '-188.433701', '-27.695169', '-13.168580', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122508, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013485', 4013485, '-199.267593', '-31.357340', '4.409810', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92352, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013486', 4013486, '-182.299606', '-27.603621', '-9.872634', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122236, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013489', 4013489, '-219.226395', '-37.674568', '39.414009', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121964, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013490', 4013490, '-225.360504', '-37.827160', '36.118061', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121692, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013499', 4013499, '-273.627289', '-31.862329', '103.566002', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92624, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013500', 4013500, '-267.855988', '-33.038231', '97.413803', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121420, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013501', 4013501, '-272.429901', '-34.255821', '90.077278', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121148, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013502', 4013502, '-291.837189', '-33.717522', '94.695030', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120876, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013504', 4013504, '-408.834991', '-25.528391', '375.844910', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120592, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013509', 4013509, '-412.414703', '-25.124140', '378.094910', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120320, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013510', 4013510, '-421.050690', '-24.694500', '373.044586', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120048, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013511', 4013511, '-347.292603', '-22.499969', '411.814514', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119776, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013512', 4013512, '-350.892090', '-22.007130', '414.044891', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119504, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013513', 4013513, '-301.048492', '-24.998409', '421.781494', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119232, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013514', 4013514, '-235.065308', '-33.493599', '442.587891', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013515', 4013515, '-231.464096', '-34.195511', '440.359985', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013517', 4013517, '-230.304504', '-33.981892', '443.503387', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013521', 4013521, '-175.050400', '-37.658531', '450.209198', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013522', 4013522, '-175.885300', '-38.533630', '453.905487', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013525', 4013525, '-215.670593', '-35.585159', '459.834106', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013533', 4013533, '99.168327', '-25.375799', '291.493011', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117340, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013534', 4013534, '97.093102', '-25.223209', '297.444092', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117068, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013536', 4013536, '68.684219', '-23.820311', '291.749390', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116796, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013539', 4013539, '92.027107', '-24.063520', '274.555511', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90992, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013550', 4013550, '-370.036499', '-26.139339', '-3.111549', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013552', 4013552, '-377.077698', '-24.934530', '-2.811549', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013553', 4013553, '-374.311096', '-24.946871', '-6.761492', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013554', 4013554, '-361.013214', '-20.157209', '-51.316139', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115696, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013556', 4013556, '-364.370209', '-19.974110', '-48.996769', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115424, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013558', 4013558, '-314.082306', '-25.819000', '-70.030121', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115152, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013559', 4013559, '-316.848907', '-27.254049', '-66.080177', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114880, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013560', 4013560, '-309.807709', '-25.975500', '-66.380173', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013562', 4013562, '-330.224487', '-29.939251', '-43.977570', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114336, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013564', 4013564, '-407.858398', '-15.091220', '-126.360001', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114064, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013565', 4013565, '-411.203003', '-15.113620', '-124.026497', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113792, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013569', 4013569, '-415.904999', '-11.930880', '-136.712494', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113520, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013571', 4013571, '-452.618408', '-8.742622', '-98.281227', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113248, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013572', 4013572, '-449.357788', '-8.414806', '-96.310440', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112976, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013576', 4013576, '-464.105194', '-11.407580', '-129.066101', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112704, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013577', 4013577, '-498.092499', '-9.974959', '-109.458298', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112432, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013580', 4013580, '-502.620789', '-10.577840', '-112.821098', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112160, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013582', 4013582, '-507.470886', '-10.328900', '-110.974403', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111888, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013583', 4013583, '-522.056885', '-4.348868', '-159.960403', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111616, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013584', 4013584, '-523.460815', '-4.837157', '-158.281906', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111344, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013594', 4013594, '-352.898499', '-15.213080', '-143.948807', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111090, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013596', 4013596, '-332.967194', '-12.588740', '-145.708405', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110818, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013605', 4013605, '-332.265198', '-17.044371', '-127.824898', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110546, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013606', 4013606, '-352.598511', '-10.906090', '-168.210007', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110274, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013609', 4013609, '-385.111389', '-7.978566', '-230.465805', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110002, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013611', 4013611, '-331.138092', '-11.882090', '-143.969299', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109730, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013627', 4013627, '-383.286194', '-8.260035', '-224.126007', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109458, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013633', 4013633, '-366.385315', '-16.827869', '-132.410706', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109186, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4013638', 4013638, '-349.540588', '-11.100560', '-235.093994', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108920, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013641', 4013641, '-346.185791', '-11.887330', '-259.764496', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108648, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013642', 4013642, '-344.857910', '-11.892970', '-258.193207', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013645', 4013645, '-327.837799', '-11.400080', '-244.734406', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013647', 4013647, '-309.640594', '-10.000100', '-243.310898', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108104, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013649', 4013649, '-301.356903', '-10.000100', '-247.002197', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013650', 4013650, '-322.462311', '-9.437181', '-225.651001', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013652', 4013652, '-323.876587', '-6.632608', '-212.379700', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107832, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013668', 4013668, '-335.498505', '-12.014050', '-229.725906', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013720', 4013720, '-429.370209', '-1.586753', '-278.570801', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106448, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013721', 4013721, '-430.804504', '-1.625461', '-276.861786', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106176, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013722', 4013722, '-444.877411', '-1.080222', '-258.128387', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105904, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013723', 4013723, '-464.653595', '1.612374', '-285.266113', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105632, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013724', 4013724, '-461.633514', '1.079876', '-282.367096', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105360, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013725', 4013725, '-467.806213', '2.048990', '-283.036896', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105088, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013728', 4013728, '-533.374023', '-6.691851', '-159.632706', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104816, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013735', 4013735, '-450.919403', '-29.068480', '316.700897', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013772', 4013772, '-397.589996', '-23.851999', '392.935089', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013777', 4013777, '-330.837891', '-22.252911', '401.824585', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013778', 4013778, '-318.013306', '-23.819380', '430.685791', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013779', 4013779, '-249.358002', '-33.714100', '429.461487', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013780', 4013780, '-191.484207', '-36.256191', '404.149292', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013781', 4013781, '-190.484894', '-35.487671', '401.923004', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013782', 4013782, '-487.190399', '-25.702749', '201.419907', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013784', 4013784, '-334.884705', '-34.612320', '299.203400', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013785', 4013785, '-312.764191', '-31.815109', '177.660706', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013786', 4013786, '-422.784302', '-34.151939', '243.826904', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013788', 4013788, '-165.697800', '-28.246771', '253.973404', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013792', 4013792, '-54.262890', '-17.705391', '367.731415', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013794', 4013794, '-33.163811', '-19.940189', '365.769714', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013795', 4013795, '-51.895939', '-17.512991', '370.210602', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100772, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013796', 4013796, '78.414223', '-15.939830', '366.048615', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100500, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013798', 4013798, '7.173542', '-23.354309', '329.441010', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100228, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013804', 4013804, '-166.105103', '-28.583521', '251.194107', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99956, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013807', 4013807, '-96.303726', '-54.621849', '189.374496', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99684, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013809', 4013809, '-129.643600', '-41.051750', '105.021004', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99412, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013811', 4013811, '-131.669601', '-27.426109', '-54.776691', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99140, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013813', 4013813, '-173.987106', '-33.616089', '-39.161282', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98868, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013815', 4013815, '-175.831604', '-33.870190', '-41.495399', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98596, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013816', 4013816, '-205.031403', '-33.039600', '-67.334999', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013818', 4013818, '-281.004791', '-32.283211', '-47.466839', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013819', 4013819, '-366.248810', '-37.056171', '28.697981', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97780, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013820', 4013820, '-548.804321', '-10.844810', '-120.767998', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013821', 4013821, '-547.929016', '-10.919210', '-118.103897', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013822', 4013822, '-505.184814', '-5.976281', '-148.866592', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013823', 4013823, '-411.073914', '-31.135130', '46.428162', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013824', 4013824, '-430.816315', '-29.355061', '29.829710', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013825', 4013825, '-424.892914', '-28.321070', '3.818028', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013826', 4013826, '-455.293610', '-28.139351', '76.774193', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013827', 4013827, '-457.516510', '-27.855551', '79.493294', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013828', 4013828, '-479.286011', '-25.295200', '93.214996', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013829', 4013829, '-527.688721', '-21.083590', '110.860397', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013830', 4013830, '-536.720886', '-18.332451', '74.782097', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013831', 4013831, '-553.551880', '-16.714809', '84.756439', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013832', 4013832, '-510.295288', '-19.041250', '45.220119', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013833', 4013833, '-485.247589', '-20.332100', '48.307430', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013834', 4013834, '-458.042603', '-21.417490', '14.689170', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013835', 4013835, '-459.737488', '-21.394270', '13.442860', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013836', 4013836, '-484.622711', '-17.327000', '0.944125', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013837', 4013837, '-498.477814', '-17.417601', '25.127859', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013849', 4013849, '-140.192505', '-30.609131', '309.013794', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86380, 1, 0, 0, 0, 19, 30058, 0, 0, 0), +(268, 'e0031', 'bnpc4013851', 4013851, '-50.371601', '-27.557119', '321.120697', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85564, 1, 0, 0, 0, 19, 30058, 0, 0, 0), +(268, 'e0031', 'bnpc4013857', 4013857, '-76.608521', '-27.621309', '289.534302', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86108, 1, 0, 0, 0, 19, 30059, 0, 0, 0), +(268, 'e0031', 'bnpc4013859', 4013859, '-105.272003', '-29.404169', '285.419891', 735, 0, 0, 0, 1, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85836, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(268, 'e0031', 'bnpc4013864', 4013864, '-122.575798', '-30.167110', '296.284302', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85298, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(268, 'e0031', 'bnpc4013865', 4013865, '-70.664551', '-27.908751', '300.739990', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84482, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(268, 'e0031', 'bnpc4013866', 4013866, '-71.732674', '-27.084780', '289.021088', 737, 0, 0, 0, 0, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85026, 1, 0, 0, 0, 19, 30060, 0, 0, 0), +(268, 'e0031', 'bnpc4013867', 4013867, '-109.317596', '-27.427130', '345.218903', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84754, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(268, 'e0031', 'bnpc4013868', 4013868, '146.652603', '-5.540083', '412.411499', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013869', 4013869, '144.284500', '-5.955482', '411.455200', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013870', 4013870, '145.884995', '-5.941638', '404.887695', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013872', 4013872, '136.158096', '-6.723706', '412.478790', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013873', 4013873, '140.986099', '-6.708030', '406.031189', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013874', 4013874, '137.354004', '-7.302959', '404.747009', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4013877', 4013877, '127.735001', '-8.321562', '406.855713', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4014958', 4014958, '20.401260', '2.731318', '-54.520531', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83704, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015589', 4015589, '31.067261', '2.425304', '-70.573143', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83432, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015593', 4015593, '48.749241', '5.676062', '-102.147301', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83160, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015594', 4015594, '35.250210', '6.228703', '-92.927460', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82888, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015595', 4015595, '67.637573', '4.351546', '-87.514160', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82616, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015596', 4015596, '54.489922', '0.411947', '-65.110291', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015598', 4015598, '7.965932', '1.085048', '-77.601852', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82072, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015605', 4015605, '9.769605', '1.369744', '-80.136017', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015668', 4015668, '104.484001', '4.846275', '-63.102379', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015674', 4015674, '102.296700', '4.972450', '-66.202560', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015676', 4015676, '96.732941', '3.052606', '-62.312988', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015678', 4015678, '99.597008', '8.227051', '-90.531860', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015691', 4015691, '141.042694', '10.713930', '-50.547859', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015696', 4015696, '141.342697', '10.968710', '-54.225460', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015701', 4015701, '108.271400', '-2.418733', '-8.458347', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015704', 4015704, '106.417397', '-2.650057', '-10.997480', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015706', 4015706, '97.733994', '-3.219701', '2.456656', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015707', 4015707, '30.234659', '-13.926860', '41.901440', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015709', 4015709, '27.316900', '-15.302890', '44.688141', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015711', 4015711, '67.083893', '-9.601854', '56.893761', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015718', 4015718, '73.500443', '-4.948884', '24.766541', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4015720', 4015720, '70.143448', '-5.095084', '22.416651', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4016500', 4016500, '104.692101', '-11.093380', '148.271896', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77732, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(268, 'e0031', 'bnpc4016539', 4016539, '107.896500', '-11.093380', '147.508896', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77460, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(268, 'e0031', 'bnpc4016540', 4016540, '100.724701', '-10.660250', '120.341797', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77188, 1, 0, 0, 0, 9, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4016541', 4016541, '99.180260', '-10.555300', '116.451401', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76916, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(268, 'e0031', 'bnpc4016542', 4016542, '136.732193', '-7.571920', '111.707901', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76644, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(268, 'e0031', 'bnpc4016543', 4016543, '109.599403', '-4.406592', '97.184692', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76372, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(268, 'e0031', 'bnpc4016544', 4016544, '110.955200', '-4.201653', '88.662132', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76100, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(268, 'e0031', 'bnpc4016545', 4016545, '113.349701', '-3.809178', '95.995033', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75828, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(268, 'e0031', 'bnpc4016546', 4016546, '116.990799', '-8.926575', '119.340698', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75556, 1, 0, 0, 0, 9, 30063, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(268, 'e0031', 'bnpc4016549', 4016549, '132.524506', '-4.867676', '80.796509', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75284, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(268, 'e0031', 'bnpc4016552', 4016552, '172.457306', '13.025480', '-52.917801', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75018, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(268, 'e0031', 'bnpc4016557', 4016557, '176.353500', '14.358130', '-73.066628', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74746, 1, 0, 0, 0, 31, 30060, 0, 0, 0), +(268, 'e0031', 'bnpc4016560', 4016560, '200.762894', '12.344500', '-41.489330', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74474, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(268, 'e0031', 'bnpc4016946', 4016946, '178.545807', '14.145070', '-76.310410', 168, 0, 0, 0, 0, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74208, 1, 0, 0, 0, 31, 30060, 0, 0, 0), +(268, 'e0031', 'bnpc4016949', 4016949, '157.244202', '11.490000', '-28.885370', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73936, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(268, 'e0031', 'bnpc4016957', 4016957, '194.933899', '11.673100', '-34.256550', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73664, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(268, 'e0031', 'bnpc4017619', 4017619, '180.407394', '10.330310', '-23.086950', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73386, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(268, 'e0031', 'bnpc4017833', 4017833, '165.697693', '9.414769', '0.106766', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73120, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(268, 'e0031', 'bnpc4017881', 4017881, '267.688995', '7.156434', '-121.568703', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4017882', 4017882, '256.488800', '7.736277', '-113.023598', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72588, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4017883', 4017883, '277.515808', '7.583686', '-116.807899', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72322, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4017891', 4017891, '272.907501', '17.593611', '-157.701996', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4017892', 4017892, '270.862915', '16.861151', '-151.415298', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4017893', 4017893, '257.892700', '16.006670', '-153.185394', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4017899', 4017899, '240.680496', '7.431091', '-122.636803', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4017900', 4017900, '243.182999', '7.370056', '-117.753899', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4017901', 4017901, '258.381012', '12.313960', '-138.811295', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4017921', 4017921, '138.353500', '9.506287', '-146.349304', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70424, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4017927', 4017927, '115.709099', '11.123780', '-141.435898', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70152, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4017928', 4017928, '212.176605', '3.555298', '-181.902802', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69880, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4017929', 4017929, '219.897705', '3.799438', '-195.117096', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69608, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4017932', 4017932, '278.370300', '8.041457', '-218.646606', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69336, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4017937', 4017937, '289.906097', '11.551030', '-240.192307', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69064, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4017941', 4017941, '373.476013', '20.829370', '-239.892303', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68792, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4017942', 4017942, '356.299500', '14.980250', '-225.505997', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68520, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4017945', 4017945, '404.706909', '22.897909', '-197.807907', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68248, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4017950', 4017950, '298.207001', '5.264315', '-172.350693', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4017954', 4017954, '134.599701', '8.987488', '-116.411102', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4017972', 4017972, '189.930405', '-1.185125', '27.687700', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4017978', 4017978, '193.187805', '-1.444422', '30.281919', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4017981', 4017981, '228.766998', '3.164756', '31.533100', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4017985', 4017985, '259.187988', '10.854590', '-0.979421', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4017987', 4017987, '256.991486', '10.906030', '-1.850262', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4017989', 4017989, '263.108002', '12.374600', '-6.144668', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4017999', 4017999, '144.542801', '-1.822149', '25.260910', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018003', 4018003, '118.866699', '-3.156176', '35.166130', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018006', 4018006, '152.788498', '-3.677471', '45.426060', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018007', 4018007, '149.431503', '-3.524881', '43.076172', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018008', 4018008, '148.638107', '-3.585917', '46.951962', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018022', 4018022, '94.621094', '3.248499', '83.127548', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64404, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(268, 'e0031', 'bnpc4018023', 4018023, '95.261963', '2.700867', '72.495613', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(268, 'e0031', 'bnpc4018024', 4018024, '96.513313', '3.431219', '83.543091', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63860, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(268, 'e0031', 'bnpc4018102', 4018102, '97.606216', '6.518048', '-80.554100', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018103', 4018103, '118.155403', '9.586515', '-100.878799', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018104', 4018104, '120.378304', '9.628418', '-99.046333', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018105', 4018105, '131.592499', '8.266950', '-67.253014', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018106', 4018106, '58.518299', '-3.494363', '-48.813660', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018108', 4018108, '90.160843', '-1.231179', '-48.488152', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018109', 4018109, '75.582893', '-5.687634', '-3.987827', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018110', 4018110, '48.298389', '-10.503780', '42.532669', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018112', 4018112, '90.491623', '-2.237890', '36.720051', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018113', 4018113, '93.131050', '-2.135577', '38.381100', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018115', 4018115, '112.673203', '-2.455007', '13.961960', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018117', 4018117, '127.625603', '-3.590302', '53.494831', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018118', 4018118, '188.733200', '4.905004', '3.896455', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018120', 4018120, '219.065399', '11.690500', '5.996748', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018121', 4018121, '216.593399', '11.322950', '7.522650', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018122', 4018122, '241.927307', '7.629051', '9.728237', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018125', 4018125, '268.848206', '8.777798', '13.353050', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59278, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018127', 4018127, '270.080994', '9.039959', '11.601690', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59006, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018129', 4018129, '158.682999', '14.718640', '-63.220341', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58734, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018133', 4018133, '188.223907', '10.030940', '-97.774307', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58462, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018134', 4018134, '166.552094', '8.773865', '-94.346558', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018137', 4018137, '163.958099', '6.301941', '-142.320999', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018141', 4018141, '160.723297', '6.515503', '-139.940598', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018142', 4018142, '218.860107', '3.097534', '-168.047699', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018143', 4018143, '231.647202', '5.874695', '-136.827698', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018152', 4018152, '228.137604', '4.013123', '-233.386795', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018154', 4018154, '270.251190', '8.134529', '-236.478806', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018156', 4018156, '267.750397', '7.438218', '-233.682907', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018157', 4018157, '316.072815', '12.832880', '-231.256195', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018159', 4018159, '316.372803', '6.627599', '-200.028305', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018161', 4018161, '363.549500', '16.893539', '-200.111694', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018165', 4018165, '365.959412', '17.232080', '-197.356705', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018171', 4018171, '32.567570', '2.131757', '-61.269958', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54926, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018175', 4018175, '68.556648', '3.005930', '-78.273499', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54654, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018177', 4018177, '70.294853', '2.807336', '-76.142509', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018218', 4018218, '-299.646698', '-38.938461', '29.649010', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88544, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018219', 4018219, '-291.777802', '-38.764221', '32.025139', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88236, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018220', 4018220, '-333.157501', '-38.096481', '14.837530', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87964, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018223', 4018223, '-450.400604', '-30.487301', '217.028503', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018224', 4018224, '-437.057800', '-30.783661', '234.972397', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018225', 4018225, '-439.601105', '-30.769150', '236.646896', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018228', 4018228, '-364.140503', '-35.208920', '210.519699', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018229', 4018229, '-361.718689', '-35.490021', '212.068604', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86592, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018449', 4018449, '408.621307', '7.003844', '139.543701', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53252, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018452', 4018452, '410.757507', '7.095398', '140.581299', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52980, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018453', 4018453, '405.539001', '6.301929', '141.710495', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52708, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018455', 4018455, '433.269897', '13.745850', '117.412903', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52436, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018459', 4018459, '458.291687', '14.700790', '137.946793', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018460', 4018460, '456.601501', '14.747650', '135.462296', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51892, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018462', 4018462, '435.268585', '6.480499', '160.338593', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51620, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018465', 4018465, '340.566010', '-7.949997', '150.988007', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51348, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018513', 4018513, '186.169693', '-31.149429', '258.258911', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51076, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018518', 4018518, '231.316696', '-44.052341', '271.940186', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50804, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018520', 4018520, '230.185699', '-44.115601', '274.394501', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50532, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018521', 4018521, '202.469299', '-14.894620', '157.281494', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50260, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018526', 4018526, '204.195099', '-14.686260', '155.274399', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49988, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018531', 4018531, '215.699997', '-14.748440', '162.191299', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018535', 4018535, '230.609497', '-15.671060', '152.147705', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018536', 4018536, '234.454803', '-15.945720', '152.452805', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018541', 4018541, '316.582214', '-12.778530', '171.745605', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018544', 4018544, '341.519897', '-7.554129', '153.111801', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018546', 4018546, '280.363190', '-10.464180', '157.039001', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018548', 4018548, '277.401794', '-10.433680', '158.329605', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018550', 4018550, '298.631104', '-17.845301', '138.619705', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018552', 4018552, '300.514313', '-17.990530', '137.021698', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018553', 4018553, '304.173004', '-16.961420', '140.928604', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018557', 4018557, '288.870209', '-20.820299', '112.120399', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018560', 4018560, '286.831604', '-20.760210', '113.868401', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018565', 4018565, '384.634094', '-8.041552', '208.148300', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46458, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018574', 4018574, '375.753387', '-8.651917', '202.716095', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46186, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018575', 4018575, '337.562012', '-6.490084', '196.335602', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018585', 4018585, '322.451508', '0.360318', '232.339203', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018587', 4018587, '332.444611', '-2.041133', '221.043106', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018590', 4018590, '322.120911', '0.721062', '236.863403', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018591', 4018591, '343.012787', '-5.424837', '244.845795', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44826, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018594', 4018594, '294.422791', '2.151475', '226.428604', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44554, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018597', 4018597, '399.075592', '-20.838551', '256.768402', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44282, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018599', 4018599, '395.043915', '-20.189211', '256.316895', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44010, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018600', 4018600, '388.906586', '-19.852030', '278.797485', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43738, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018602', 4018602, '439.887085', '-33.409691', '296.645996', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43466, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018603', 4018603, '464.315399', '-42.298431', '269.112213', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43194, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018604', 4018604, '464.615387', '-42.545731', '274.560486', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42922, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018605', 4018605, '494.224304', '-55.678349', '265.046295', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42650, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018653', 4018653, '494.524292', '-63.894562', '233.206802', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42378, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018656', 4018656, '453.035309', '-64.522003', '255.129593', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42106, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018657', 4018657, '441.404510', '-64.788147', '246.034805', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41834, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018658', 4018658, '444.123810', '-64.620087', '241.737396', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41562, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018661', 4018661, '439.902802', '-20.658911', '226.785904', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41290, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018662', 4018662, '443.246185', '-19.347570', '231.567505', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41018, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018663', 4018663, '446.924286', '-17.912411', '214.384598', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40746, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018664', 4018664, '483.668396', '-8.428408', '232.612701', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40474, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018667', 4018667, '485.972687', '-7.855111', '227.039703', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40202, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(268, 'e0031', 'bnpc4018683', 4018683, '420.139191', '10.932210', '126.607399', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018685', 4018685, '447.669708', '11.251440', '147.314606', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39664, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018687', 4018687, '388.530914', '-9.116596', '196.378998', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018688', 4018688, '383.230286', '-18.143021', '263.599487', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018693', 4018693, '267.754089', '-4.105820', '247.045593', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018694', 4018694, '430.037811', '-64.649399', '210.820694', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38576, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018697', 4018697, '441.279785', '-64.462044', '202.846802', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38304, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018699', 4018699, '456.870789', '-14.453500', '215.100906', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018700', 4018700, '482.293304', '-7.656506', '258.934692', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018711', 4018711, '319.466095', '-21.198891', '117.792198', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018714', 4018714, '287.041992', '-19.224710', '132.121902', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018719', 4018719, '256.611511', '-16.890450', '168.769501', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018721', 4018721, '226.084503', '-3.171931', '186.594803', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4018722', 4018722, '228.457001', '-3.558112', '189.543701', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4021495', 4021495, '290.852203', '7.003784', '-131.212296', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4021497', 4021497, '290.089203', '6.881775', '-132.860397', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4057678', 4057678, '-430.180603', '-37.593121', '175.636093', 792, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21986, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(268, 'e0031', 'bnpc4057682', 4057682, '-445.348114', '-30.229731', '50.185131', 791, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21720, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(268, 'e0031', 'bnpc4057686', 4057686, '-332.421600', '-42.604149', '42.912781', 793, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21454, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(268, 'e0031', 'bnpc4621848', 4621848, '-77.749184', '-58.466881', '167.597900', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22594, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(268, 'e0031', 'bnpc4621849', 4621849, '235.769302', '-44.305069', '271.670990', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22328, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926308', 3926308, '376.795502', '84.142036', '107.708504', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154812, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926338', 3926338, '375.147491', '84.022469', '106.274200', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154540, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926351', 3926351, '405.431488', '88.082703', '99.945763', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154268, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926354', 3926354, '409.251190', '88.844963', '97.093102', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153996, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926358', 3926358, '378.901215', '84.631958', '104.412598', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153724, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926365', 3926365, '407.170990', '88.157288', '101.532700', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153452, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926371', 3926371, '392.339203', '86.636040', '181.099197', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153180, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926372', 3926372, '396.068207', '86.811653', '179.238007', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152908, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926373', 3926373, '393.988495', '86.897270', '182.527893', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152636, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926381', 3926381, '411.703613', '88.297813', '162.003098', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152364, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926382', 3926382, '410.055603', '88.039360', '160.599197', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152092, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926386', 3926386, '394.559601', '85.026733', '153.758499', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151820, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926391', 3926391, '410.144012', '88.683350', '189.622894', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151548, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926417', 3926417, '417.375885', '87.742783', '131.569901', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926439', 3926439, '345.812805', '76.219322', '212.725998', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926440', 3926440, '344.548309', '75.438789', '207.299393', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926441', 3926441, '348.012512', '76.039337', '211.108795', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926464', 3926464, '356.043793', '74.743179', '151.343094', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926465', 3926465, '352.759186', '74.743149', '149.888596', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926467', 3926467, '367.410095', '80.423607', '133.246597', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926481', 3926481, '353.852814', '80.577820', '117.643204', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926484', 3926484, '351.360199', '79.902428', '120.108704', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926487', 3926487, '355.985199', '80.082771', '121.892502', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926490', 3926490, '373.090698', '84.220062', '99.076653', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926522', 3926522, '406.246887', '86.759048', '111.752296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926526', 3926526, '325.732788', '66.676826', '171.598495', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926537', 3926537, '328.927612', '68.512451', '191.103607', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926539', 3926539, '326.017792', '67.722847', '188.876999', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926541', 3926541, '342.366608', '72.409378', '178.265305', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926543', 3926543, '340.851105', '72.117889', '182.389893', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926545', 3926545, '339.368805', '71.684380', '180.432800', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926547', 3926547, '329.747711', '68.403687', '149.117706', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926548', 3926548, '327.065491', '67.092491', '170.001404', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926552', 3926552, '319.223511', '67.064529', '203.825699', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926557', 3926557, '307.153687', '65.648338', '183.776306', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926564', 3926564, '315.245087', '65.419243', '134.686005', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926565', 3926565, '313.912415', '65.218117', '136.283096', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926572', 3926572, '310.648285', '65.000732', '131.124893', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926578', 3926578, '301.380890', '64.171013', '142.769608', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926601', 3926601, '261.503296', '53.867599', '124.334000', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926644', 3926644, '295.185699', '60.044201', '169.695496', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926653', 3926653, '293.079987', '59.372799', '172.716797', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132792, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926658', 3926658, '296.070709', '60.135750', '174.090103', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133064, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926660', 3926660, '257.465393', '54.488819', '176.080399', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134152, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926665', 3926665, '279.163788', '55.806110', '134.904999', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133336, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926667', 3926667, '277.598999', '55.429420', '137.030197', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131976, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926670', 3926670, '269.266907', '56.155140', '106.412498', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132520, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926677', 3926677, '260.700409', '54.871441', '108.842598', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132248, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926683', 3926683, '261.666290', '55.104469', '106.238503', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134696, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926716', 3926716, '257.191193', '55.945511', '220.022095', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926717', 3926717, '258.076202', '55.964081', '224.416702', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926718', 3926718, '255.085403', '55.855000', '223.043396', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134424, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926733', 3926733, '243.941101', '55.670811', '235.884598', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133608, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926750', 3926750, '258.564087', '54.697350', '178.949097', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133880, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926769', 3926769, '413.944397', '89.309250', '158.034897', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148018, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926800', 3926800, '407.416199', '87.761620', '175.019302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147746, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926801', 3926801, '406.609985', '87.629570', '176.598602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147474, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926804', 3926804, '392.991699', '87.757637', '191.946198', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147202, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926805', 3926805, '387.339111', '84.919083', '134.093994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146930, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(269, 'e0032', 'bnpc3926808', 3926808, '354.084900', '81.902718', '100.424797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146658, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926810', 3926810, '422.356903', '89.050278', '114.571297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146386, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926812', 3926812, '421.045013', '88.772667', '115.796600', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146114, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926815', 3926815, '403.283386', '86.085800', '113.897499', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145842, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926821', 3926821, '370.507996', '82.400093', '117.661697', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145570, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926825', 3926825, '367.792389', '81.913681', '118.807602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926829', 3926829, '360.534485', '74.935432', '148.181396', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145026, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926837', 3926837, '378.317413', '79.842934', '162.415802', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144754, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926847', 3926847, '376.053986', '78.965889', '164.143707', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926848', 3926848, '369.552399', '77.052002', '192.962997', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144210, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926854', 3926854, '346.371490', '75.720573', '208.895203', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143938, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926858', 3926858, '363.167694', '77.767464', '219.355392', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143666, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926860', 3926860, '371.780212', '77.339363', '194.397400', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926868', 3926868, '369.826996', '77.102577', '196.960907', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143116, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3926883', 3926883, '344.452301', '72.995819', '181.059906', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926890', 3926890, '328.520813', '67.640129', '172.850403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926891', 3926891, '311.090302', '65.890671', '189.672195', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926896', 3926896, '309.819885', '64.657661', '145.602493', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926898', 3926898, '328.420197', '67.645653', '147.350800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141762, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926899', 3926899, '317.188690', '65.970573', '128.639603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141490, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926902', 3926902, '318.570007', '65.981651', '129.865601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141218, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926912', 3926912, '275.386810', '55.162628', '134.854202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140946, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926915', 3926915, '264.207703', '55.231709', '109.226501', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140674, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926917', 3926917, '260.486694', '54.760460', '176.782303', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926928', 3926928, '254.790497', '55.815201', '226.529297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926929', 3926929, '242.801407', '55.684689', '237.647995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3926930', 3926930, '241.351593', '55.604931', '235.930405', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139586, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927149', 3927149, '27.696630', '50.949940', '203.695496', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130588, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927150', 3927150, '15.640450', '53.696449', '252.796204', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927151', 3927151, '-61.356571', '57.144989', '351.064209', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927152', 3927152, '173.737106', '54.352638', '226.520096', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130316, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927153', 3927153, '183.533401', '54.215019', '225.513000', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130044, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927154', 3927154, '99.898514', '49.255638', '188.131607', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129772, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927156', 3927156, '128.718903', '50.518780', '195.651794', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129500, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927158', 3927158, '115.929298', '48.682110', '176.508408', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129228, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927162', 3927162, '108.506699', '47.551449', '175.644897', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128956, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927163', 3927163, '32.919010', '50.990910', '198.741592', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128684, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927164', 3927164, '31.915621', '47.200191', '163.456696', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128412, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927165', 3927165, '65.425613', '51.619080', '219.897705', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128140, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927166', 3927166, '70.552643', '50.994259', '212.756500', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127868, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927168', 3927168, '60.756340', '51.112720', '213.427902', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127596, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927169', 3927169, '1.910973', '44.523701', '152.350204', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127324, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927170', 3927170, '6.149339', '47.714909', '180.407394', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127052, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927171', 3927171, '175.777206', '50.666649', '65.453201', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126780, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927172', 3927172, '170.246994', '50.547649', '69.196983', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126508, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927174', 3927174, '240.923996', '51.465309', '71.654427', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126236, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927175', 3927175, '249.684906', '51.468151', '78.309212', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125964, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927176', 3927176, '255.227203', '51.199020', '67.745193', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125692, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927178', 3927178, '253.462494', '51.509102', '19.847630', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125420, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927179', 3927179, '201.886398', '51.465870', '22.835030', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125148, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927182', 3927182, '111.507797', '59.949421', '283.252502', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927185', 3927185, '98.313828', '59.311771', '302.754211', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124610, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927186', 3927186, '110.092697', '60.098831', '287.907593', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124338, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927187', 3927187, '128.731201', '60.436340', '298.911407', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124066, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927188', 3927188, '83.256920', '55.503361', '283.185394', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123794, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927189', 3927189, '91.296028', '55.644341', '266.384308', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123522, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927190', 3927190, '82.101891', '55.164581', '275.573212', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123250, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927191', 3927191, '115.385597', '59.492580', '287.027496', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122978, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927192', 3927192, '178.888199', '53.984070', '219.121597', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927194', 3927194, '131.716507', '57.952309', '278.151306', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122434, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927197', 3927197, '-22.751249', '56.290482', '304.371613', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927200', 3927200, '-18.722870', '56.046341', '317.952209', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927201', 3927201, '-14.837500', '56.125702', '314.598206', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927203', 3927203, '8.417153', '55.567989', '320.395599', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927204', 3927204, '20.042080', '57.618370', '350.774109', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927205', 3927205, '26.145691', '57.755730', '356.084290', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927206', 3927206, '22.476490', '58.182598', '359.426208', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927209', 3927209, '49.869179', '57.280979', '352.553101', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120264, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927211', 3927211, '21.927170', '54.917171', '311.085602', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119992, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927213', 3927213, '25.229980', '54.764481', '306.841705', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119720, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927218', 3927218, '-21.114670', '53.540970', '264.998993', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119448, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927220', 3927220, '-5.313622', '54.065811', '256.266205', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119176, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927221', 3927221, '-23.334700', '53.561840', '260.473511', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118904, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927222', 3927222, '5.204782', '54.084610', '236.687195', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118632, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927224', 3927224, '8.561768', '54.060150', '238.457199', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118360, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927226', 3927226, '-8.821225', '50.881729', '201.391602', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927229', 3927229, '-6.608897', '50.901840', '203.446304', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927230', 3927230, '-18.636290', '51.201260', '221.737701', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927231', 3927231, '-35.276581', '49.465691', '214.633698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927236', 3927236, '-11.411140', '50.721111', '205.313904', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927239', 3927239, '-38.801102', '49.907009', '218.520004', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927240', 3927240, '6.279222', '50.975891', '212.108902', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927241', 3927241, '-35.700180', '46.975208', '193.506195', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927246', 3927246, '-141.250000', '50.637089', '227.672501', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97168, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(269, 'e0032', 'bnpc3927250', 3927250, '-140.879105', '50.598660', '225.798996', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97440, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(269, 'e0032', 'bnpc3927252', 3927252, '-133.580704', '50.071732', '219.991806', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96624, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(269, 'e0032', 'bnpc3927255', 3927255, '-132.305801', '49.998920', '219.510193', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96896, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(269, 'e0032', 'bnpc3927256', 3927256, '-130.444595', '50.881111', '227.569397', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98256, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(269, 'e0032', 'bnpc3927333', 3927333, '-125.582298', '49.131699', '207.139694', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98528, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(269, 'e0032', 'bnpc3927334', 3927334, '-153.431595', '49.478130', '221.025101', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97712, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(269, 'e0032', 'bnpc3927339', 3927339, '-121.896698', '49.490898', '212.546097', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97984, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(269, 'e0032', 'bnpc3927343', 3927343, '-45.193470', '62.185181', '363.152100', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115912, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927345', 3927345, '-79.881020', '55.100281', '361.379395', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115640, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927346', 3927346, '-83.391731', '54.977058', '365.606995', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115368, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927347', 3927347, '-54.476139', '65.540337', '392.423004', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115096, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927349', 3927349, '-51.241718', '65.802643', '390.513214', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114824, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927352', 3927352, '-1.297064', '68.802879', '377.553894', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114552, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927353', 3927353, '2.885915', '68.536720', '372.786896', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114280, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927354', 3927354, '-109.941299', '48.966148', '357.015289', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114008, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927356', 3927356, '-125.981003', '51.453751', '311.388885', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113736, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927357', 3927357, '-130.879105', '51.717690', '309.097412', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113464, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927358', 3927358, '-131.425293', '51.394489', '312.798096', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113192, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927359', 3927359, '-118.158401', '53.802921', '271.080597', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112920, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927360', 3927360, '-115.932800', '53.461861', '267.407501', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112648, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927361', 3927361, '-95.500458', '52.359612', '245.109894', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112376, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927364', 3927364, '-138.997604', '45.849251', '391.546814', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112104, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927366', 3927366, '-131.347107', '47.246719', '398.411713', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111832, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927367', 3927367, '-141.612305', '45.939159', '395.010193', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111560, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927368', 3927368, '-175.499496', '39.137119', '393.656799', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111288, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927370', 3927370, '-156.301407', '40.866211', '345.757813', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111016, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927371', 3927371, '-162.614700', '39.951931', '342.568695', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110744, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927373', 3927373, '-157.533707', '40.302212', '350.198212', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110472, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927375', 3927375, '28.610620', '55.466499', '328.511414', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927379', 3927379, '37.804600', '58.140781', '363.465912', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927382', 3927382, '32.272758', '55.471779', '329.481689', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927384', 3927384, '6.784028', '54.128811', '253.378204', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927387', 3927387, '-20.690559', '53.685650', '251.224396', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927388', 3927388, '45.252361', '48.095360', '180.655197', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927394', 3927394, '69.706589', '56.137440', '318.697693', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927398', 3927398, '104.150002', '56.064339', '263.215607', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927403', 3927403, '156.664307', '54.703541', '236.652100', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927404', 3927404, '44.327412', '52.658840', '244.800400', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927408', 3927408, '-26.490999', '44.862301', '177.075394', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927413', 3927413, '152.993607', '50.116879', '72.775887', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927414', 3927414, '220.945801', '50.242329', '4.633916', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927417', 3927417, '219.309296', '49.916939', '6.135899', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927424', 3927424, '-14.541890', '67.307503', '362.722107', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927425', 3927425, '-65.254753', '64.638290', '395.066498', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927431', 3927431, '-117.631798', '47.959061', '380.300507', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927432', 3927432, '-172.127304', '40.469398', '398.069092', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927433', 3927433, '-189.330597', '36.909599', '341.340210', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927435', 3927435, '-140.326401', '45.201859', '337.794006', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927436', 3927436, '-110.657700', '52.097160', '290.219696', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927437', 3927437, '-145.151993', '56.686409', '288.573792', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927730', 3927730, '120.638901', '17.207850', '96.590080', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104234, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927734', 3927734, '123.778503', '17.206751', '88.372543', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103962, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927735', 3927735, '128.407593', '16.559820', '98.111130', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103690, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927736', 3927736, '78.465424', '21.109140', '92.377060', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103418, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927737', 3927737, '100.497498', '16.583630', '126.907097', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103146, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927739', 3927739, '-25.650459', '22.079760', '105.851799', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102874, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927742', 3927742, '-20.340321', '21.438881', '108.873100', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102602, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927745', 3927745, '78.228539', '22.345881', '63.241020', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102330, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927746', 3927746, '86.209900', '22.246161', '56.213009', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102058, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927748', 3927748, '127.763702', '25.986071', '49.240810', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101786, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927750', 3927750, '70.167282', '16.789490', '139.201706', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927760', 3927760, '95.818649', '15.165110', '168.324600', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927771', 3927771, '96.919411', '15.051520', '166.152405', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927776', 3927776, '126.695602', '15.793040', '128.007904', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100692, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927784', 3927784, '58.284618', '22.640039', '59.899170', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100420, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927789', 3927789, '14.317140', '20.384331', '98.519272', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100148, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927870', 3927870, '123.073700', '18.194111', '18.950350', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99882, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927874', 3927874, '164.476593', '18.193741', '-3.313263', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99610, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927875', 3927875, '161.316605', '18.193520', '6.161218', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99338, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927880', 3927880, '179.117905', '18.193710', '3.609651', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99066, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3927883', 3927883, '103.653801', '19.374020', '93.697792', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98788, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927890', 3927890, '122.968102', '56.939259', '-36.773190', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95074, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927910', 3927910, '123.268097', '55.511478', '-56.716091', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94802, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927911', 3927911, '129.320206', '55.924271', '-51.987530', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927912', 3927912, '154.660400', '55.357391', '-41.330311', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94258, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927919', 3927919, '189.631897', '50.414280', '-25.954390', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93986, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927923', 3927923, '183.639099', '52.017891', '-84.284233', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93714, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927925', 3927925, '153.890793', '52.284729', '-77.195427', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927934', 3927934, '191.650803', '52.446129', '-77.491463', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93170, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3927952', 3927952, '199.298004', '52.109509', '-110.399101', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92898, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928005', 3928005, '249.801102', '63.548111', '-129.309692', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92626, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928007', 3928007, '233.766098', '63.274509', '-115.512901', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92354, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928013', 3928013, '75.352249', '58.717110', '35.270901', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92088, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928021', 3928021, '86.804192', '58.856110', '31.969290', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91816, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928022', 3928022, '84.852730', '58.771778', '28.421551', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91544, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928152', 3928152, '58.122269', '59.502029', '1.331460', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928154', 3928154, '99.899971', '53.697948', '21.844801', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928157', 3928157, '28.599730', '59.945721', '27.529560', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928160', 3928160, '25.558041', '59.878441', '30.178419', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928161', 3928161, '14.973360', '62.347179', '18.278700', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928165', 3928165, '6.374675', '59.338470', '42.109829', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928314', 3928314, '319.607910', '63.456242', '-187.854004', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928315', 3928315, '318.191406', '63.387531', '-186.084000', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928317', 3928317, '311.617798', '62.671181', '-255.173492', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928319', 3928319, '306.148010', '62.678329', '-255.381195', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928320', 3928320, '310.641205', '62.731220', '-257.553894', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928321', 3928321, '288.386597', '62.264820', '-212.191498', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928323', 3928323, '281.432892', '62.276360', '-175.724792', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928324', 3928324, '294.345215', '62.536160', '-229.177994', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87700, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928326', 3928326, '324.076385', '63.986629', '-248.880295', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87428, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928327', 3928327, '294.358307', '62.940811', '-234.107498', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87156, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928328', 3928328, '298.334686', '62.391232', '-190.659805', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86884, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928329', 3928329, '288.392303', '62.534901', '-229.239197', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86612, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928331', 3928331, '298.725800', '62.141201', '-195.515305', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86340, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928332', 3928332, '265.782898', '63.307018', '-219.574600', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86068, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928335', 3928335, '316.656586', '63.109501', '-200.695007', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85796, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928360', 3928360, '-105.641998', '14.974850', '-248.369598', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928364', 3928364, '-110.496902', '14.974860', '-245.931396', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928366', 3928366, '-96.993607', '14.974790', '-263.062500', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928370', 3928370, '-134.325607', '14.974520', '-268.556091', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928372', 3928372, '-137.674500', '14.974520', '-281.872009', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84484, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928373', 3928373, '-140.064697', '14.974790', '-279.290314', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84212, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928374', 3928374, '-183.464493', '14.974900', '-240.699707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83940, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928376', 3928376, '-180.748398', '14.974890', '-244.758606', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83668, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928378', 3928378, '-186.089096', '14.974890', '-243.232697', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83396, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928379', 3928379, '-147.631104', '14.969050', '-274.158905', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83124, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928383', 3928383, '-224.475494', '14.969050', '-348.714386', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928386', 3928386, '-209.268402', '14.974940', '-344.686401', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928387', 3928387, '-206.509598', '14.974940', '-340.343994', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928388', 3928388, '-218.735199', '14.974420', '-379.859985', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928389', 3928389, '-223.490601', '14.974420', '-382.159912', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928391', 3928391, '-258.752411', '14.974870', '-325.427490', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928392', 3928392, '-264.535492', '14.974880', '-327.510101', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928394', 3928394, '-281.808807', '14.974920', '-208.237701', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928519', 3928519, '-253.182007', '14.974930', '-267.783295', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928520', 3928520, '-255.348694', '14.974930', '-265.372406', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928523', 3928523, '-283.110809', '14.974940', '-291.602112', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928524', 3928524, '-282.531006', '14.974940', '-294.806488', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928525', 3928525, '-286.528809', '14.974940', '-293.707794', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928527', 3928527, '-298.754211', '14.974940', '-221.860397', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928528', 3928528, '-295.336212', '14.974940', '-225.644699', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79056, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(269, 'e0032', 'bnpc3928531', 3928531, '-217.611801', '14.974770', '-304.205109', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928534', 3928534, '-250.701904', '14.974930', '-243.696503', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928783', 3928783, '-182.680801', '14.974910', '-276.838287', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78228, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928784', 3928784, '-170.103302', '14.974860', '-253.832504', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77956, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928788', 3928788, '-212.801102', '14.974940', '-333.462799', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928795', 3928795, '-266.258698', '15.546460', '-234.426102', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77370, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928796', 3928796, '-219.789307', '14.974930', '-267.238892', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77098, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928797', 3928797, '-285.191498', '14.974940', '-268.444397', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76826, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928798', 3928798, '-203.762299', '14.974910', '-250.822205', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76554, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928799', 3928799, '-278.737915', '14.974940', '-262.906189', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76282, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928800', 3928800, '-277.257599', '14.974940', '-267.571411', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76010, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928801', 3928801, '-256.085907', '14.974930', '-289.433411', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75738, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928802', 3928802, '-224.033401', '14.974930', '-264.018097', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75466, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928803', 3928803, '146.532303', '54.459400', '-51.499241', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928804', 3928804, '102.067497', '53.818520', '-56.137989', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928805', 3928805, '78.182693', '57.105598', '-30.773781', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928806', 3928806, '76.842499', '57.456390', '-29.140619', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928807', 3928807, '86.645050', '57.952759', '6.113357', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928808', 3928808, '22.705441', '61.685020', '19.656160', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928809', 3928809, '10.100620', '59.973881', '35.668980', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928810', 3928810, '166.031296', '50.849098', '-100.283997', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928811', 3928811, '186.388901', '51.621220', '-160.082397', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928812', 3928812, '238.300095', '63.248600', '-122.148499', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928813', 3928813, '184.099701', '52.311790', '-57.823231', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928814', 3928814, '179.929794', '52.482571', '-55.958038', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928815', 3928815, '142.056702', '53.278130', '-130.908096', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928816', 3928816, '268.193207', '63.254810', '-222.082703', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928822', 3928822, '302.263489', '62.065739', '-193.318497', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928825', 3928825, '-123.838997', '14.974520', '-263.543488', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928831', 3928831, '-176.301498', '14.974870', '-250.083099', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928832', 3928832, '-144.984497', '14.974770', '-287.996185', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928833', 3928833, '-185.416595', '14.974910', '-280.625488', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928834', 3928834, '-244.850296', '14.974930', '-244.881104', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928835', 3928835, '-244.690704', '15.599670', '-289.695801', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928836', 3928836, '-287.953003', '14.974940', '-254.367096', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928837', 3928837, '-288.296387', '14.974940', '-221.930298', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928838', 3928838, '-242.570297', '14.974810', '-341.476898', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928839', 3928839, '-294.252502', '14.974850', '-321.210785', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928840', 3928840, '-213.266998', '14.974420', '-364.787292', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928841', 3928841, '-196.042206', '14.974940', '-319.922791', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928894', 3928894, '-427.363312', '23.320280', '-482.444489', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67692, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928895', 3928895, '-414.236694', '24.246580', '-480.094604', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67420, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928896', 3928896, '-399.069214', '24.662140', '-486.445496', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67148, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928897', 3928897, '-426.661407', '23.254721', '-480.735504', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66876, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928898', 3928898, '-385.109589', '24.366320', '-508.717590', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66604, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928899', 3928899, '-383.622498', '24.283310', '-510.090912', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66332, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928900', 3928900, '-397.867401', '24.621420', '-483.869110', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66060, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928902', 3928902, '-395.742706', '24.800859', '-486.720215', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65788, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928905', 3928905, '-372.182800', '14.915100', '-682.187012', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65438, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928915', 3928915, '-343.109711', '14.951240', '-708.646729', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65166, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928916', 3928916, '-336.488098', '15.011050', '-702.973022', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64894, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928917', 3928917, '-342.475098', '14.886180', '-699.100403', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64622, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928918', 3928918, '-346.725800', '15.000050', '-648.932983', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64350, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928919', 3928919, '-360.611603', '15.143860', '-728.342285', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64078, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928920', 3928920, '-369.109985', '17.086229', '-625.858582', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63806, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928921', 3928921, '-368.551208', '14.932670', '-677.304016', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63534, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928922', 3928922, '-289.976898', '15.036210', '-766.856018', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928923', 3928923, '-329.499603', '13.228890', '-734.741028', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63074, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928924', 3928924, '-308.522186', '13.199010', '-741.054382', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62802, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928926', 3928926, '-330.769806', '14.999570', '-781.734985', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928927', 3928927, '-282.568512', '14.996440', '-714.049622', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928928', 3928928, '-288.031189', '15.033810', '-704.314270', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928929', 3928929, '-340.138885', '14.999570', '-765.682495', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928930', 3928930, '-375.273102', '24.057680', '-530.949707', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61364, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928931', 3928931, '-376.594513', '24.104771', '-528.967224', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61092, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928932', 3928932, '-385.780304', '23.495701', '-548.185181', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60820, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928933', 3928933, '-388.991913', '23.634899', '-551.127014', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60548, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928934', 3928934, '-380.102814', '23.848009', '-554.942871', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60276, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928935', 3928935, '-383.823486', '24.014250', '-580.209229', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60004, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928936', 3928936, '-384.645203', '22.916321', '-600.375427', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928937', 3928937, '-382.814087', '22.623171', '-601.962280', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc3928938', 3928938, '-160.448700', '15.121640', '-740.138916', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928939', 3928939, '-163.418106', '15.126450', '-733.144714', 109, 0, 0, 0, 1, 6, 0, 0, 310, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59006, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928940', 3928940, '-154.855392', '15.126450', '-735.291016', 111, 0, 0, 0, 1, 6, 0, 0, 312, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928941', 3928941, '-184.969193', '15.126200', '-748.799011', 111, 0, 0, 0, 1, 6, 0, 0, 312, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928942', 3928942, '-245.304596', '14.639280', '-736.399902', 109, 0, 0, 0, 1, 6, 0, 0, 310, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58190, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928943', 3928943, '-208.907501', '15.126340', '-737.954224', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928944', 3928944, '-177.706696', '15.126430', '-724.218872', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928945', 3928945, '129.798294', '53.983780', '241.581604', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc3928946', 3928946, '358.728088', '75.113953', '188.477402', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4057505', 4057505, '425.836700', '93.949097', '147.345596', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.500000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23758, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(269, 'e0032', 'bnpc4057530', 4057530, '246.828796', '52.038040', '143.148804', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.800000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23492, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(269, 'e0032', 'bnpc4057532', 4057532, '209.687393', '52.005539', '110.727303', 797, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23226, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(269, 'e0032', 'bnpc4057541', 4057541, '192.848099', '52.038040', '162.149994', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22942, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(269, 'e0032', 'bnpc4057553', 4057553, '108.028297', '49.844238', '-189.682297', 798, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22688, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(269, 'e0032', 'bnpc4057563', 4057563, '-82.688713', '15.467950', '-260.648010', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(269, 'e0032', 'bnpc4057572', 4057572, '-436.003998', '23.000170', '-484.805511', 791, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22150, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(269, 'e0032', 'bnpc4190759', 4190759, '-345.540588', '14.999600', '-775.448181', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57362, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(269, 'e0032', 'bnpc4267191', 4267191, '-707.860779', '67.740463', '-822.422119', 1439, 0, 0, 0, 0, 6, 0, 0, 2160, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57014, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4267197', 4267197, '-665.501282', '62.452560', '-807.101318', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56748, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4267200', 4267200, '-665.515930', '62.330540', '-804.663086', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56476, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4267201', 4267201, '-678.426575', '63.899670', '-816.868713', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56204, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4267202', 4267202, '-697.547180', '65.602493', '-808.171204', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55932, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4267203', 4267203, '-691.117920', '65.001953', '-800.783875', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55660, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4267204', 4267204, '-707.367920', '67.125900', '-815.833374', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55388, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4267205', 4267205, '-691.542114', '65.307541', '-815.101807', 434, 0, 0, 0, 0, 6, 0, 0, 2160, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4296870', 4296870, '242.172607', '52.038120', '112.691498', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20750, 8, 0, 0, 4296864, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4296871', 4296871, '246.709503', '52.038120', '124.038902', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20478, 8, 0, 0, 4296863, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4296872', 4296872, '237.477707', '52.017941', '108.608101', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20206, 8, 0, 0, 4296858, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4296873', 4296873, '244.254303', '52.038120', '162.449799', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19934, 8, 0, 0, 4296867, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4296874', 4296874, '244.299103', '52.038120', '166.290298', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19662, 8, 0, 0, 4296868, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4308066', 4308066, '-421.159485', '44.462021', '-712.226013', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54672, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(269, 'e0032', 'bnpc4308069', 4308069, '-514.378784', '51.624359', '-759.622498', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54400, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(269, 'e0032', 'bnpc4308070', 4308070, '-599.843384', '57.051182', '-784.518921', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54128, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(269, 'e0032', 'bnpc4308071', 4308071, '-656.681274', '62.116219', '-804.503601', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53856, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(269, 'e0032', 'bnpc4308072', 4308072, '-492.048187', '50.155430', '-704.991577', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53590, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(269, 'e0032', 'bnpc4308073', 4308073, '-517.815491', '50.450741', '-713.017395', 63, 0, 0, 0, 0, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53324, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(269, 'e0032', 'bnpc4308074', 4308074, '-456.002014', '51.014610', '-752.579285', 55, 0, 0, 0, 0, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53058, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(269, 'e0032', 'bnpc4308075', 4308075, '-495.700897', '50.855309', '-742.115417', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52792, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(269, 'e0032', 'bnpc4308082', 4308082, '-441.168610', '50.899448', '-705.323914', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52514, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(269, 'e0032', 'bnpc4308083', 4308083, '-518.314270', '50.452862', '-714.412109', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52224, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(269, 'e0032', 'bnpc4308084', 4308084, '-479.211487', '51.372540', '-761.453186', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51964, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(269, 'e0032', 'bnpc4308085', 4308085, '-402.046509', '49.868610', '-739.848206', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51704, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(269, 'e0032', 'bnpc4308086', 4308086, '-454.328613', '50.848831', '-752.713074', 64, 0, 0, 0, 0, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51414, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(269, 'e0032', 'bnpc4308091', 4308091, '-536.909607', '51.647678', '-772.339600', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51154, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(269, 'e0032', 'bnpc4308092', 4308092, '-566.559387', '53.197552', '-772.416382', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50870, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(269, 'e0032', 'bnpc4308093', 4308093, '-534.190186', '55.472980', '-738.915771', 62, 0, 0, 0, 1, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50592, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(269, 'e0032', 'bnpc4308094', 4308094, '-570.383728', '53.322189', '-740.588013', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(269, 'e0032', 'bnpc4308095', 4308095, '-576.705811', '54.865730', '-790.850830', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50060, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(269, 'e0032', 'bnpc4308096', 4308096, '-598.254211', '63.233582', '-755.445496', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49788, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(269, 'e0032', 'bnpc4308097', 4308097, '-601.317322', '62.751640', '-757.922485', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49510, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(269, 'e0032', 'bnpc4308098', 4308098, '-621.487915', '61.777660', '-742.445374', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49256, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(269, 'e0032', 'bnpc4308099', 4308099, '-621.786072', '58.863022', '-795.647095', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48978, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(269, 'e0032', 'bnpc4308100', 4308100, '-646.074890', '61.267559', '-800.385315', 62, 0, 0, 0, 1, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48688, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(269, 'e0032', 'bnpc4308102', 4308102, '-555.229980', '53.299679', '-753.444702', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4308104', 4308104, '-410.261810', '51.000069', '-758.953003', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48174, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4308105', 4308105, '-468.451904', '50.148300', '-723.755676', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4308109', 4308109, '-626.947510', '60.044189', '-813.534790', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47630, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4308112', 4308112, '-635.044800', '58.894249', '-777.102417', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4308164', 4308164, '-544.952698', '55.549671', '-803.447388', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47086, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(269, 'e0032', 'bnpc4510228', 4510228, '320.279907', '67.275337', '234.176498', 793, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21884, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(269, 'e0032', 'bnpc4621821', 4621821, '-91.708687', '15.670890', '217.180496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24120, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc1368411', 1368411, '-66.155998', '-12.582840', '-8.814363', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc1368412', 1368412, '-64.537338', '-12.499180', '-8.712757', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc1368413', 1368413, '-62.951370', '-12.426580', '-8.677147', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc1368414', 1368414, '-61.258369', '-12.364150', '-8.589471', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc1368416', 1368416, '-66.693230', '-12.961350', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212726, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc1368417', 1368417, '-64.495934', '-12.860610', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc1368418', 1368418, '-62.481739', '-12.772990', '-13.472360', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc1368419', 1368419, '-60.162369', '-12.662670', '-13.441840', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc1368420', 1368420, '-69.467598', '-13.149620', '-18.035919', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211644, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc1368440', 1368440, '-65.325943', '-13.142030', '-18.046921', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211372, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc1368441', 1368441, '-61.416431', '-13.052980', '-18.065041', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211100, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc1368442', 1368442, '-57.492748', '-12.665620', '-17.741350', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210828, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746473', 3746473, '-134.012207', '9.916103', '267.132690', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208458, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746474', 3746474, '-139.248093', '11.343600', '270.767487', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208186, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746475', 3746475, '-116.714996', '8.743372', '266.243988', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207914, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746477', 3746477, '-123.143700', '11.980280', '281.311798', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207642, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746478', 3746478, '-128.526794', '6.043580', '250.778503', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207370, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746481', 3746481, '-87.065170', '8.131585', '270.853210', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207098, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746484', 3746484, '-77.385406', '9.277164', '278.146301', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206826, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746485', 3746485, '-79.850502', '9.815605', '280.807892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206554, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746486', 3746486, '-57.801540', '7.714478', '280.245697', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206282, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746487', 3746487, '-32.103970', '8.045358', '306.695404', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206010, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746488', 3746488, '-33.263660', '8.805240', '310.174408', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205738, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746489', 3746489, '-23.206301', '7.924604', '316.282593', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205466, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746490', 3746490, '-1.823452', '12.616180', '355.344391', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205194, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746491', 3746491, '1.058939', '11.460450', '352.323212', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204922, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746492', 3746492, '-1.840275', '11.813140', '350.644714', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204650, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746493', 3746493, '-56.592079', '0.108709', '220.398895', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204378, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746494', 3746494, '-56.292080', '3.881968', '249.628098', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204106, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746495', 3746495, '-31.334530', '2.359202', '278.398193', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203834, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746496', 3746496, '-104.320801', '1.025299', '207.824005', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203562, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746498', 3746498, '7.768722', '1.031246', '256.953094', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203290, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746499', 3746499, '-123.605797', '2.842937', '210.266296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203018, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746500', 3746500, '30.048519', '10.050760', '356.964386', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202746, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746501', 3746501, '-97.688263', '-3.294564', '184.145203', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202474, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746503', 3746503, '-99.971313', '-3.426347', '180.765198', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202202, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746505', 3746505, '-87.144318', '-1.876907', '198.901306', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201930, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746506', 3746506, '-47.697250', '-4.439452', '201.516296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201658, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746507', 3746507, '-14.522570', '0.676844', '242.620300', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201386, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746508', 3746508, '-11.261070', '0.694751', '245.484695', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201114, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746514', 3746514, '-119.246803', '8.981372', '268.429688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155702, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746519', 3746519, '-132.127899', '6.316744', '252.007797', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155974, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746522', 3746522, '-155.544296', '14.321210', '274.575500', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156246, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746523', 3746523, '-155.193604', '7.549813', '251.117706', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155430, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746524', 3746524, '-92.355728', '5.076609', '248.889801', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154614, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746525', 3746525, '-107.799896', '1.451139', '209.227798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154886, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746526', 3746526, '-114.793701', '4.013075', '226.245499', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155158, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746527', 3746527, '28.597651', '13.168800', '391.636688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157606, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746528', 3746528, '-93.669998', '-2.292831', '193.599503', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157878, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746529', 3746529, '-86.737587', '1.982069', '218.821899', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158150, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746530', 3746530, '-94.103600', '-4.710398', '174.915298', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157334, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746532', 3746532, '-55.083771', '1.032392', '224.458603', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156518, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746533', 3746533, '-52.324100', '-0.635104', '220.185806', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156790, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746534', 3746534, '-52.024101', '-4.438385', '196.025299', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157062, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746535', 3746535, '-23.599480', '-4.862183', '218.164505', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162774, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746536', 3746536, '-2.930916', '14.263170', '364.690308', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165222, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746538', 3746538, '-40.705959', '2.362750', '241.470093', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165494, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746539', 3746539, '-66.280632', '6.869143', '269.246704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165766, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746541', 3746541, '4.373672', '4.711559', '297.562012', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164950, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746542', 3746542, '-63.836632', '11.354730', '293.474915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164134, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746543', 3746543, '-67.036057', '11.719290', '294.869385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164406, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746544', 3746544, '-40.587990', '10.584770', '307.244690', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164678, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746545', 3746545, '-18.006081', '5.176353', '307.655609', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159510, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746547', 3746547, '13.581710', '5.033936', '280.057404', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746557', 3746557, '59.891609', '12.558130', '450.125793', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746560', 3746560, '49.054600', '13.360080', '439.790100', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746579', 3746579, '-107.428101', '5.098667', '239.118896', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746589', 3746589, '15.346860', '15.164520', '392.385712', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200842, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746592', 3746592, '14.522880', '15.407670', '396.017303', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200570, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746594', 3746594, '34.258789', '14.106760', '421.936798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159782, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746595', 3746595, '60.659401', '11.900060', '438.181702', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160054, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746616', 3746616, '55.188671', '13.295150', '508.984802', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159238, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746617', 3746617, '66.524231', '10.880620', '515.488220', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200298, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746618', 3746618, '49.532551', '14.712430', '506.886414', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200026, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746619', 3746619, '50.356541', '14.371650', '503.254791', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199754, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746620', 3746620, '59.248550', '11.443580', '491.395813', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199482, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746621', 3746621, '87.897888', '3.259133', '489.249908', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158422, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746622', 3746622, '84.418831', '4.091218', '486.350708', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158694, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746623', 3746623, '46.372120', '15.609930', '520.347778', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158966, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746624', 3746624, '84.031380', '8.407674', '556.939026', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199210, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746625', 3746625, '89.244087', '6.908536', '552.574890', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198938, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746626', 3746626, '105.598701', '4.370574', '521.843201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198666, 7, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(270, 'e0041', 'bnpc3746628', 3746628, '107.891403', '6.906938', '609.728882', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161414, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746629', 3746629, '160.979904', '10.423200', '445.205414', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746630', 3746630, '189.060593', '11.863390', '607.536072', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746688', 3746688, '86.533859', '11.154300', '622.308594', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198394, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746689', 3746689, '77.714149', '12.588650', '626.672729', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198122, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746690', 3746690, '81.986671', '11.825690', '632.593201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197850, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746691', 3746691, '42.256569', '15.522670', '621.038330', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197578, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746692', 3746692, '36.528320', '15.730630', '626.060913', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197306, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746693', 3746693, '33.963001', '15.853820', '622.955627', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197034, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746694', 3746694, '54.517780', '14.477480', '614.387390', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160870, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746695', 3746695, '75.144310', '14.202080', '664.210083', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160598, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746697', 3746697, '71.776787', '14.357050', '666.349792', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196762, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746699', 3746699, '110.074799', '9.705235', '672.023499', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196490, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746700', 3746700, '105.802299', '9.833974', '666.103027', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196218, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746701', 3746701, '114.622002', '9.802178', '661.738892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195946, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746702', 3746702, '102.630096', '9.930755', '678.326416', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160326, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746703', 3746703, '124.601700', '9.267537', '672.118774', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161142, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746704', 3746704, '139.915802', '3.409252', '629.204895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161958, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746706', 3746706, '148.317993', '4.103824', '654.705994', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195674, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746707', 3746707, '140.430801', '4.620288', '650.824585', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195402, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746708', 3746708, '144.703293', '4.162472', '656.745178', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195130, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3746728', 3746728, '105.175301', '7.446661', '611.285278', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161686, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746741', 3746741, '123.709900', '4.546344', '401.381409', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746744', 3746744, '119.896500', '4.229595', '400.430603', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746745', 3746745, '121.385498', '4.562400', '415.457306', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746747', 3746747, '94.951797', '4.409234', '415.757996', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746748', 3746748, '98.573242', '3.713897', '402.903290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746753', 3746753, '105.931702', '3.887046', '438.676788', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746754', 3746754, '103.130402', '3.837232', '441.897888', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746756', 3746756, '101.549301', '2.579426', '385.163391', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746757', 3746757, '126.748802', '2.272390', '326.781708', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746762', 3746762, '128.648804', '2.609246', '322.621399', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746767', 3746767, '115.312401', '0.839199', '310.200592', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746769', 3746769, '60.052872', '2.658700', '301.575806', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746771', 3746771, '66.487648', '2.270967', '295.222290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746772', 3746772, '59.572800', '2.550388', '279.994904', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746773', 3746773, '39.864429', '5.507329', '295.432587', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746775', 3746775, '28.239599', '1.102737', '258.417786', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746782', 3746782, '33.012630', '-0.000074', '236.507797', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746783', 3746783, '30.472219', '1.540232', '261.602997', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746790', 3746790, '40.329552', '0.198320', '191.668503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746791', 3746791, '42.740471', '0.381429', '188.281006', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189696, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746792', 3746792, '21.316620', '-1.942127', '212.041397', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189424, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746795', 3746795, '33.488029', '0.135540', '209.757507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189152, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746800', 3746800, '79.875580', '17.322849', '153.453400', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188880, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746801', 3746801, '86.274673', '14.097900', '174.830002', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188608, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746802', 3746802, '82.595718', '17.371531', '156.113602', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188336, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746803', 3746803, '68.047150', '12.851960', '169.148697', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188064, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746805', 3746805, '145.186905', '14.265870', '303.993011', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187792, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746806', 3746806, '134.595795', '15.951970', '271.548492', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187520, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746807', 3746807, '129.378799', '14.996020', '276.045807', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187248, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746808', 3746808, '102.709000', '6.216220', '218.986298', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186976, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746815', 3746815, '104.478500', '3.524787', '410.177704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162502, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746820', 3746820, '134.782898', '6.790217', '393.331787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162230, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746821', 3746821, '109.756599', '2.337350', '358.451385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163046, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746826', 3746826, '100.612602', '0.927920', '320.347412', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163862, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746828', 3746828, '122.748901', '1.776996', '318.298187', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163590, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746831', 3746831, '90.791931', '1.666962', '266.808197', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163318, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746834', 3746834, '115.643402', '6.086327', '252.986206', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153254, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746835', 3746835, '116.878197', '7.099676', '249.317596', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152982, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746839', 3746839, '134.754898', '15.738220', '277.605591', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152710, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746842', 3746842, '138.416901', '14.910950', '291.298401', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153526, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746843', 3746843, '69.640907', '10.773730', '192.122192', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154342, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746844', 3746844, '80.370789', '14.464900', '168.592697', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154070, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746845', 3746845, '58.563480', '13.422550', '142.645203', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153798, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746846', 3746846, '84.523247', '19.105749', '150.735306', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151350, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746847', 3746847, '44.427238', '1.305627', '214.361099', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151078, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746848', 3746848, '17.726910', '-2.276831', '214.661102', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150806, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746850', 3746850, '23.742001', '2.113425', '263.454895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151622, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746857', 3746857, '39.223301', '5.294607', '322.688812', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152438, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746859', 3746859, '72.028061', '7.308271', '404.591492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152166, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746861', 3746861, '127.672203', '6.607109', '430.716309', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151894, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746864', 3746864, '165.074600', '12.246150', '482.778503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186704, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746867', 3746867, '168.492706', '12.057270', '478.475494', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186432, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746868', 3746868, '162.989304', '12.037260', '478.563507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186160, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746870', 3746870, '159.288895', '10.574450', '408.590790', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185888, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746871', 3746871, '163.653000', '10.757560', '411.825714', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185616, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746872', 3746872, '180.336197', '12.793920', '406.002014', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185344, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746873', 3746873, '161.736893', '16.236589', '388.045105', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185072, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746876', 3746876, '133.837296', '9.269427', '459.531403', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184800, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746878', 3746878, '131.557098', '8.976067', '457.624695', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184528, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746880', 3746880, '120.227203', '8.368025', '485.318115', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184256, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746885', 3746885, '134.445908', '12.144460', '507.273987', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183984, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746887', 3746887, '131.554993', '12.056210', '504.412415', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183712, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746889', 3746889, '140.997406', '11.949580', '487.139313', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183440, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746891', 3746891, '177.389404', '11.185200', '525.833618', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183168, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746894', 3746894, '180.637207', '11.258170', '523.414673', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182896, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746896', 3746896, '163.836105', '12.375020', '511.253387', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182624, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746898', 3746898, '147.262100', '7.242397', '543.931824', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182352, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746902', 3746902, '159.838196', '8.834927', '539.787781', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182080, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746905', 3746905, '155.880402', '7.197376', '556.779175', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181808, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746908', 3746908, '158.138794', '8.079927', '559.495300', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181536, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746910', 3746910, '143.386200', '7.563845', '583.138916', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181264, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746911', 3746911, '141.779205', '7.213043', '585.132019', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180992, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746913', 3746913, '138.754898', '6.737441', '570.297424', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180720, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746914', 3746914, '149.117798', '6.128607', '602.883972', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180448, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746915', 3746915, '169.704697', '11.348940', '603.184021', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180176, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746916', 3746916, '180.008804', '11.209140', '617.096130', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179904, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746917', 3746917, '182.074905', '11.129530', '618.747620', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179632, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746918', 3746918, '203.008896', '12.064710', '597.300476', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179360, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746919', 3746919, '222.377304', '10.658940', '600.289978', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179088, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746920', 3746920, '219.857101', '10.195060', '606.104126', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178816, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746921', 3746921, '216.053207', '12.886560', '579.694885', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178544, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746922', 3746922, '254.440308', '11.644550', '583.224670', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178272, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746923', 3746923, '187.395996', '12.680200', '480.674408', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178000, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746925', 3746925, '122.484100', '8.621300', '468.558685', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174198, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746927', 3746927, '152.697006', '11.123780', '465.049103', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173382, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746928', 3746928, '200.189301', '12.546850', '452.841888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173654, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746929', 3746929, '184.320801', '12.674630', '482.649414', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174470, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746930', 3746930, '161.638794', '12.497090', '508.781494', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175286, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746932', 3746932, '134.477707', '12.039320', '494.041290', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175558, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746933', 3746933, '157.244202', '8.895963', '538.017822', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174742, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746934', 3746934, '145.677795', '11.978280', '517.051880', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175014, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746937', 3746937, '112.465202', '5.551401', '523.979492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168486, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746941', 3746941, '164.965195', '10.635490', '582.482483', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168214, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746945', 3746945, '140.062500', '7.095398', '581.505981', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167942, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746946', 3746946, '126.004097', '4.418174', '596.074219', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169302, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746951', 3746951, '205.096497', '11.978280', '595.452820', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169030, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746954', 3746954, '201.556396', '10.391350', '620.202881', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168758, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746956', 3746956, '223.407303', '9.658914', '609.063782', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167670, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746958', 3746958, '230.853699', '7.095398', '629.480286', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166582, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746959', 3746959, '228.412201', '6.607109', '632.684814', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166310, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746960', 3746960, '250.843002', '10.543940', '603.967285', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166038, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746962', 3746962, '251.148193', '11.947770', '580.346313', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167398, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746963', 3746963, '236.801498', '16.670509', '560.962524', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167126, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746965', 3746965, '239.996399', '16.684830', '564.761475', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166854, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746966', 3746966, '219.876907', '16.677370', '559.278870', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169574, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746967', 3746967, '255.603806', '16.647539', '552.574890', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172294, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746968', 3746968, '261.768494', '13.412630', '571.068787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172022, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746969', 3746969, '261.341187', '16.678061', '523.765930', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171750, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746970', 3746970, '263.263885', '16.647539', '520.866577', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173110, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746971', 3746971, '247.730194', '16.647539', '499.259888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172838, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746972', 3746972, '210.126297', '16.670370', '499.584686', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172566, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746973', 3746973, '206.265198', '16.709129', '502.872498', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171478, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746974', 3746974, '201.359299', '16.670370', '525.525696', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170390, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746975', 3746975, '199.202896', '16.634470', '546.190796', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170118, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746976', 3746976, '201.042099', '16.670389', '547.166199', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169846, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3746983', 3746983, '47.837040', '20.883829', '-297.468597', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79320, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3746984', 3746984, '30.218941', '19.809231', '-261.464111', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80402, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(270, 'e0041', 'bnpc3746985', 3746985, '45.726398', '19.952000', '-251.705505', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79048, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3746988', 3746988, '37.782612', '19.928471', '-277.190186', 736, 0, 0, 0, 1, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80130, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3746992', 3746992, '32.101620', '19.979660', '-229.510406', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79858, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(270, 'e0041', 'bnpc3746993', 3746993, '32.891548', '19.908630', '-233.898605', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78776, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(270, 'e0041', 'bnpc3746997', 3746997, '-40.889229', '-6.750034', '159.270004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88278, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747003', 3747003, '-38.858761', '-6.750058', '155.119003', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88550, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747004', 3747004, '-21.989389', '-6.750032', '151.563995', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87190, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747006', 3747006, '-1.016211', '-6.750022', '160.127197', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89638, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747009', 3747009, '3.375875', '-6.751163', '164.669601', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89910, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747010', 3747010, '5.926142', '-6.750027', '161.728195', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89366, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747012', 3747012, '22.984619', '-6.750012', '165.561600', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89094, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747015', 3747015, '30.818211', '-6.750096', '148.130096', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88822, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747018', 3747018, '-6.179034', '-6.750058', '138.765106', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90182, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747019', 3747019, '-2.610643', '-6.750058', '141.990707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87734, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747021', 3747021, '-15.651240', '-6.750003', '122.209503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87462, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747022', 3747022, '-52.276199', '-6.750027', '169.793900', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88006, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747028', 3747028, '-73.794739', '-6.750006', '155.086899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91814, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747033', 3747033, '-84.128677', '-6.750047', '148.117004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90454, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747034', 3747034, '-88.289063', '-6.750033', '145.505707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90998, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747037', 3747037, '-81.662231', '-6.750007', '162.451996', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91542, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747042', 3747042, '-100.621399', '-6.750030', '133.779007', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91270, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747078', 3747078, '174.099396', '10.387860', '561.876526', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177728, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747306', 3747306, '166.825607', '12.296140', '403.792114', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171206, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747310', 3747310, '155.935303', '9.673933', '431.016296', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170934, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747330', 3747330, '-88.883842', '-0.106860', '109.147697', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747331', 3747331, '-61.120312', '0.636424', '88.682060', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747332', 3747332, '-80.643967', '-0.473077', '67.368530', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747333', 3747333, '-86.717056', '0.991789', '72.831261', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747336', 3747336, '-36.911621', '-3.830061', '32.700039', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747337', 3747337, '-40.695862', '-4.928711', '25.589331', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747338', 3747338, '-11.550680', '0.488563', '-28.281300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747339', 3747339, '17.013760', '3.036498', '-38.223900', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747340', 3747340, '-58.237549', '-4.110259', '-107.568703', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110020, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747341', 3747341, '-67.615173', '-4.777174', '-101.631897', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109476, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747342', 3747342, '-91.142181', '-0.778257', '-101.335197', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109748, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747344', 3747344, '-126.726303', '9.466410', '-79.290817', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110564, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747345', 3747345, '-162.798492', '10.177720', '-67.887444', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114644, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747347', 3747347, '-162.133194', '17.720350', '-97.090424', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114916, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747349', 3747349, '-170.820297', '17.510420', '-95.798119', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114372, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747353', 3747353, '-144.544800', '8.164017', '-26.941380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113828, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747356', 3747356, '-176.280701', '8.164456', '-26.641380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114100, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747358', 3747358, '-181.261993', '6.912290', '-21.225349', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116004, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747359', 3747359, '-207.415894', '10.971190', '-31.418369', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116276, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747362', 3747362, '-142.900803', '6.271411', '-160.784302', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115732, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747363', 3747363, '-153.948898', '13.420070', '-190.044296', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115188, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747364', 3747364, '-199.122604', '1.060047', '7.769498', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112468, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747365', 3747365, '-100.182404', '-4.169586', '5.823180', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112196, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747366', 3747366, '-162.648407', '1.476818', '27.867500', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112740, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747368', 3747368, '-228.292801', '1.271454', '31.448839', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113284, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747369', 3747369, '-281.000000', '1.547629', '6.098617', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113012, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747370', 3747370, '-292.305786', '1.883296', '3.669711', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110292, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747371', 3747371, '-289.186615', '0.923461', '44.489441', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111108, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747372', 3747372, '-331.967499', '-0.344346', '37.288601', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110836, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747373', 3747373, '-367.222809', '14.331700', '37.588600', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111380, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747374', 3747374, '-362.704590', '17.228571', '24.585470', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111924, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747376', 3747376, '-337.512299', '2.239006', '84.820068', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111652, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747380', 3747380, '-350.515015', '5.752604', '108.384804', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113556, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747385', 3747385, '-374.964294', '1.092578', '72.868820', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115460, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747388', 3747388, '-52.163811', '-2.028311', '119.953003', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147810, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747389', 3747389, '-86.052368', '0.110645', '102.987396', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147538, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747390', 3747390, '-74.317467', '-4.983451', '25.989620', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147266, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747391', 3747391, '-33.861969', '-6.175569', '6.276085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146994, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747393', 3747393, '13.815840', '0.849448', '-43.540058', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146722, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747394', 3747394, '-25.443001', '-6.505634', '-66.767128', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146450, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747395', 3747395, '-66.218620', '-2.263651', '-110.189796', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146178, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747396', 3747396, '-92.423927', '2.517692', '-129.686493', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747397', 3747397, '-120.059502', '11.096300', '-65.332710', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747398', 3747398, '-123.346199', '11.132750', '-62.877190', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747399', 3747399, '-135.404602', '3.017960', '-134.773499', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145090, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747400', 3747400, '-155.932007', '14.084030', '-185.687103', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747401', 3747401, '-176.806305', '20.096081', '-127.183998', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144546, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747402', 3747402, '-182.692200', '11.068910', '-54.575550', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144274, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747403', 3747403, '-188.219101', '8.602026', '-26.668791', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144002, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747404', 3747404, '-125.142403', '-1.327417', '12.701530', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143730, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747405', 3747405, '-142.871094', '-0.211552', '-0.011758', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143458, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747406', 3747406, '-188.977707', '1.185343', '0.288242', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143186, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747407', 3747407, '-196.063202', '-0.991883', '44.632591', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747408', 3747408, '-198.598099', '-1.427130', '46.344830', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142642, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(270, 'e0041', 'bnpc3747409', 3747409, '-265.374908', '-0.871808', '46.644829', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747410', 3747410, '-245.222107', '0.679796', '27.065580', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747411', 3747411, '-236.532196', '4.119698', '-11.326280', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747413', 3747413, '-237.229904', '7.081615', '-22.989599', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141554, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747414', 3747414, '-238.542206', '7.219037', '-24.718719', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747415', 3747415, '-245.215302', '6.500818', '-25.125641', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747417', 3747417, '-335.459198', '7.751451', '2.210185', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747419', 3747419, '-332.434692', '-0.635067', '45.192638', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747420', 3747420, '-338.391815', '2.787159', '90.300163', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140194, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747635', 3747635, '-101.580002', '3.185857', '-122.629700', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747636', 3747636, '-113.067703', '0.190863', '-235.496902', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747637', 3747637, '-8.689189', '-2.987621', '-71.427528', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747853', 3747853, '-210.928299', '22.971910', '-101.417801', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82028, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3747854', 3747854, '-210.061996', '22.349720', '-98.801086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82844, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3747855', 3747855, '-199.564606', '24.777719', '-122.897400', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82572, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3747856', 3747856, '-217.284500', '27.674749', '-122.597397', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81756, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(270, 'e0041', 'bnpc3747858', 3747858, '-217.212097', '28.120930', '-124.432098', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81212, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(270, 'e0041', 'bnpc3747859', 3747859, '-208.813400', '29.458891', '-133.137894', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80940, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3747860', 3747860, '-223.520599', '24.171949', '-95.828552', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81484, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3747864', 3747864, '-228.529297', '20.575800', '-76.218086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85564, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3747865', 3747865, '-241.385498', '18.354990', '-63.139381', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85292, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3747867', 3747867, '-243.216904', '18.379009', '-62.623611', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86380, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3747868', 3747868, '-255.936401', '24.723961', '-77.803009', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86108, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3747869', 3747869, '-267.446411', '25.988930', '-78.509064', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85836, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(270, 'e0041', 'bnpc3747870', 3747870, '-266.262207', '26.413910', '-80.013046', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86924, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(270, 'e0041', 'bnpc3747873', 3747873, '-288.302704', '28.840969', '-91.487991', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86652, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3747874', 3747874, '-273.846008', '27.999920', '-103.128998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83660, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3747876', 3747876, '-257.572906', '27.938169', '-88.810738', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83932, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3747877', 3747877, '-234.919403', '27.970850', '-103.431198', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84476, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(270, 'e0041', 'bnpc3747880', 3747880, '-245.382996', '27.999990', '-107.453003', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83116, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3747881', 3747881, '-254.081406', '28.000000', '-102.002197', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84204, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(270, 'e0041', 'bnpc3747883', 3747883, '-258.959106', '28.000000', '-105.536201', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82300, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3747884', 3747884, '-251.270294', '27.969730', '-102.616898', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85020, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(270, 'e0041', 'bnpc3747886', 3747886, '-248.655701', '28.000000', '-96.725998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84748, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3747889', 3747889, '-248.153000', '28.470831', '-127.263100', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83388, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(270, 'e0041', 'bnpc3747891', 3747891, '-234.992294', '9.310618', '-37.905788', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139922, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747893', 3747893, '-237.711700', '8.873294', '-42.033760', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139650, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747899', 3747899, '-214.038300', '-30.502831', '123.735397', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139384, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747900', 3747900, '-250.516998', '-31.060820', '85.115646', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139118, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747904', 3747904, '-201.968796', '-30.857059', '117.357803', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138840, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747905', 3747905, '-183.124893', '-31.750071', '106.885902', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138568, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747906', 3747906, '-185.311996', '-31.750059', '109.415100', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138296, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747907', 3747907, '-152.843002', '-31.750000', '109.715103', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138024, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747908', 3747908, '-166.101105', '-31.750000', '110.540100', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137758, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747909', 3747909, '-169.604507', '-27.712351', '77.843430', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137486, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747910', 3747910, '-167.071503', '-27.177780', '76.317528', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137214, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747911', 3747911, '-210.234406', '-30.382589', '95.879173', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136942, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747913', 3747913, '-195.861603', '-27.444660', '129.920502', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136670, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747914', 3747914, '-224.566406', '-31.750071', '110.176003', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136398, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747915', 3747915, '-263.312103', '-31.750090', '97.519081', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136126, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747916', 3747916, '-255.968094', '-31.750130', '95.789261', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135848, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747919', 3747919, '-211.436401', '-30.614429', '97.981651', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135576, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747921', 3747921, '-244.620895', '-28.275660', '117.486801', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135304, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747922', 3747922, '-225.970795', '-15.579620', '71.709572', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135026, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747923', 3747923, '-170.891495', '-26.165300', '72.662949', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134754, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747924', 3747924, '-154.802902', '-29.800900', '94.071899', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134482, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747925', 3747925, '-164.402603', '-31.750019', '112.296303', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747927', 3747927, '-213.131393', '-30.063490', '125.099403', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747928', 3747928, '-234.579193', '-29.342421', '117.079697', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747930', 3747930, '-206.002899', '-30.332180', '97.422249', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747931', 3747931, '-258.774902', '-31.750071', '93.732712', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747933', 3747933, '-124.520401', '25.876591', '-384.084900', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117364, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747935', 3747935, '-120.378502', '25.406219', '-376.089111', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117636, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747936', 3747936, '-71.168182', '15.618890', '-341.319214', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117908, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747937', 3747937, '-140.945007', '34.283039', '-443.520813', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116548, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747945', 3747945, '-104.844803', '10.208240', '-322.407898', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116820, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747953', 3747953, '-68.964897', '24.845461', '-295.047913', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117092, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747955', 3747955, '-30.148661', '20.242010', '-347.723907', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118180, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747958', 3747958, '-20.706499', '20.599291', '-342.888702', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118724, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747963', 3747963, '20.322849', '15.975690', '-350.654205', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118996, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747965', 3747965, '39.420231', '19.301970', '-356.003815', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119268, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3747975', 3747975, '-138.811401', '27.237310', '-416.372986', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747994', 3747994, '-93.431030', '7.583686', '-301.106293', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3747997', 3747997, '-65.966766', '21.859249', '-305.947601', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748004', 3748004, '-66.655212', '20.943001', '-309.725586', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748006', 3748006, '-38.712181', '21.255770', '-344.167297', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748009', 3748009, '-93.684303', '18.821621', '-371.862793', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748015', 3748015, '-113.144402', '27.605829', '-397.741913', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131490, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748017', 3748017, '-112.844398', '28.132500', '-450.977997', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748018', 3748018, '-108.119003', '27.149870', '-454.027008', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748020', 3748020, '-152.178299', '27.511971', '-419.668915', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748022', 3748022, '35.132519', '17.855400', '-352.433105', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748394', 3748394, '65.413780', '20.079309', '-340.723206', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748396', 3748396, '-140.276199', '-3.219701', '-317.433502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748397', 3748397, '-147.234299', '-4.593012', '-324.147400', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748399', 3748399, '-210.589798', '1.083344', '-288.624390', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748402', 3748402, '-72.186493', '11.340310', '-240.295197', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748407', 3748407, '-77.690918', '8.765988', '-234.389694', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748409', 3748409, '-50.269390', '11.709270', '-222.062698', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748410', 3748410, '-65.652512', '8.342214', '-211.891998', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748411', 3748411, '-21.376921', '8.231496', '-242.911896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748412', 3748412, '-16.418360', '6.341013', '-249.044601', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748413', 3748413, '-6.975120', '11.175980', '-282.658691', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106490, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748414', 3748414, '10.056190', '8.215180', '-250.173004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748415', 3748415, '5.360405', '-0.923770', '-218.657303', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748416', 3748416, '48.714218', '0.699683', '-174.900604', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748417', 3748417, '95.936577', '1.386500', '-186.119995', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748418', 3748418, '31.585911', '8.951487', '-139.193497', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748419', 3748419, '35.112041', '16.424919', '-113.143204', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748420', 3748420, '34.363049', '8.229201', '-145.052994', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748421', 3748421, '90.860474', '1.763928', '-189.065002', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748422', 3748422, '113.054001', '1.174898', '-202.746704', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748423', 3748423, '130.461395', '1.093745', '-233.497101', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748424', 3748424, '124.484100', '0.743076', '-229.449493', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748425', 3748425, '89.422256', '3.504610', '-218.853806', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748428', 3748428, '-184.704300', '-4.704755', '-317.082306', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748429', 3748429, '-177.061203', '-3.447654', '-291.626190', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748430', 3748430, '-168.688507', '-1.968461', '-348.439789', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102954, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748431', 3748431, '-142.835693', '-1.140769', '-353.109894', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748433', 3748433, '-167.528793', '6.179857', '-382.681000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748434', 3748434, '-192.189301', '-4.726788', '-315.063293', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97242, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748436', 3748436, '-213.360901', '-4.497713', '-340.979004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748437', 3748437, '-234.150696', '5.014801', '-286.084686', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98602, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748438', 3748438, '-218.334900', '17.160500', '-255.482300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748443', 3748443, '-212.971405', '13.338840', '-260.496307', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748479', 3748479, '-151.282501', '-4.870804', '-286.887787', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748499', 3748499, '-178.949402', '6.440631', '-256.865692', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748520', 3748520, '-148.505096', '-5.306737', '-314.775085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748524', 3748524, '-185.881104', '-4.844985', '-310.895508', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748526', 3748526, '-164.369003', '1.507254', '-251.882507', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748528', 3748528, '-207.412399', '17.160610', '-247.635193', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748530', 3748530, '-229.519104', '3.459191', '-289.959412', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748532', 3748532, '-163.010803', '-1.945551', '-356.094696', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748534', 3748534, '-173.595505', '5.841309', '-388.489685', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748537', 3748537, '-232.440796', '-2.339301', '-322.417908', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127954, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748538', 3748538, '-251.794006', '-1.267901', '-386.990295', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748542', 3748542, '-234.040207', '-0.107224', '-383.030914', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748543', 3748543, '-272.222107', '0.687642', '-325.399811', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748545', 3748545, '-263.308685', '4.237235', '-309.758392', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748546', 3748546, '-252.162598', '0.152196', '-318.392395', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748548', 3748548, '-251.430496', '-2.982757', '-348.143311', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748549', 3748549, '-240.737198', '1.345172', '-393.418396', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748550', 3748550, '-242.828506', '-3.567687', '-364.035309', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748551', 3748551, '-250.630707', '-3.725200', '-363.735291', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748552', 3748552, '-213.087494', '1.112077', '-382.537415', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748553', 3748553, '-255.836105', '7.531438', '-290.196289', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748554', 3748554, '-246.018097', '-2.631598', '-372.254608', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748555', 3748555, '-236.562103', '3.655112', '-396.309387', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748557', 3748557, '-203.850494', '16.277430', '-409.920593', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748559', 3748559, '-242.042892', '18.601339', '-425.242401', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748564', 3748564, '-177.168198', '14.656220', '-411.592987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748565', 3748565, '-215.900406', '16.573481', '-408.014008', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748566', 3748566, '-221.473297', '17.321730', '-412.786896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748567', 3748567, '-236.289001', '19.116409', '-424.877502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748570', 3748570, '-254.304306', '22.347059', '-449.055695', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748654', 3748654, '-205.192398', '19.296721', '-445.294189', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748657', 3748657, '-207.202301', '25.558809', '-115.343002', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748660', 3748660, '-222.657104', '20.702950', '-78.345047', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748662', 3748662, '-247.438400', '20.240339', '-67.748871', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748663', 3748663, '-230.727005', '26.739140', '-98.761307', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748670', 3748670, '-271.961609', '27.969740', '-98.954803', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748672', 3748672, '-271.661285', '23.599831', '-70.352722', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748674', 3748674, '-231.617004', '30.324150', '-133.076996', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748726', 3748726, '33.854542', '6.542700', '-211.889801', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748728', 3748728, '55.167561', '0.798945', '-193.606598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748729', 3748729, '69.255318', '0.046956', '-152.350906', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748730', 3748730, '10.055020', '5.968488', '-132.156097', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123602, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748732', 3748732, '50.175282', '14.921620', '-128.489700', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748734', 3748734, '76.929573', '3.883048', '-205.706406', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748736', 3748736, '79.198738', '3.548813', '-202.087204', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748737', 3748737, '106.461601', '1.818933', '-204.985199', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748738', 3748738, '140.354401', '0.554754', '-232.614304', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122242, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748739', 3748739, '111.391197', '0.776695', '-238.240707', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748749', 3748749, '145.884293', '-1.750025', '-212.434097', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3748752', 3748752, '136.108398', '-1.750136', '-190.396194', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3748753', 3748753, '149.821106', '-1.750019', '-214.231293', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54188, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3748755', 3748755, '84.854179', '-1.750136', '-139.436905', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53916, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3748758', 3748758, '72.003227', '-1.750024', '-104.510002', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53644, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3748760', 3748760, '68.467178', '-1.754834', '-99.778793', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53372, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3748763', 3748763, '78.693497', '-3.269199', '-32.994751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53100, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3748765', 3748765, '68.721947', '-2.620518', '-49.466751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52828, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3748770', 3748770, '166.277496', '-1.754834', '-241.382507', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52556, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3748772', 3748772, '187.884293', '-1.754834', '-278.858704', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52284, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3748773', 3748773, '194.766006', '-1.750224', '-280.991394', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52012, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3748775', 3748775, '71.615707', '-3.621419', '-26.438259', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51740, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3748850', 3748850, '12.774460', '-6.750232', '111.257401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90726, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3748852', 3748852, '9.592600', '-6.750232', '107.837402', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92086, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3748876', 3748876, '11.520510', '1.022307', '-111.986000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748879', 3748879, '-129.259201', '2.487174', '-193.926895', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118452, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3748904', 3748904, '176.132706', '4.710299', '-187.304703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748905', 3748905, '158.969894', '2.732193', '-177.146698', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748906', 3748906, '191.563705', '2.176362', '-156.220703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748907', 3748907, '196.388000', '3.012704', '-160.659393', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748908', 3748908, '239.061295', '5.923066', '-187.296494', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748910', 3748910, '269.473785', '9.044052', '-198.574799', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748913', 3748913, '263.650208', '11.289570', '-202.903397', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748915', 3748915, '227.710297', '-1.205510', '-113.847603', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748923', 3748923, '231.280899', '-1.632762', '-106.462196', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748926', 3748926, '200.610306', '-1.358100', '-103.471497', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748930', 3748930, '207.171707', '-1.144474', '-84.519768', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748932', 3748932, '173.937500', '1.205416', '-81.071228', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73736, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748934', 3748934, '148.809097', '3.036994', '-133.465897', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73464, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748937', 3748937, '169.787094', '0.045730', '-115.892303', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73192, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748941', 3748941, '145.535507', '4.850001', '-129.478104', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72920, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748942', 3748942, '119.305603', '3.909301', '-132.622696', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72648, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748943', 3748943, '109.916496', '3.556486', '-129.240601', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748944', 3748944, '224.505905', '-2.975556', '-56.412651', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72104, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748945', 3748945, '175.332993', '6.489766', '-41.243931', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748946', 3748946, '186.449905', '4.165666', '-17.319040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748947', 3748947, '281.825989', '-9.100459', '2.598387', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71832, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748949', 3748949, '288.471710', '-11.734230', '-3.952133', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71560, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748950', 3748950, '278.492310', '-14.114640', '-37.338871', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71288, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748953', 3748953, '324.544098', '-13.504280', '-33.615669', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748954', 3748954, '329.030212', '-13.565320', '-29.770399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748955', 3748955, '356.861603', '-15.283880', '-44.573921', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748956', 3748956, '347.890411', '-17.502140', '8.102493', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748962', 3748962, '150.469193', '19.150021', '-76.524040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748963', 3748963, '146.044098', '19.581060', '-88.241302', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748964', 3748964, '117.082397', '20.462299', '-97.062683', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748967', 3748967, '142.873703', '16.403400', '-46.097549', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748968', 3748968, '400.991608', '-12.783140', '-32.000870', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748969', 3748969, '366.536896', '-16.189871', '-58.854092', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748970', 3748970, '415.234192', '-14.170130', '-62.547722', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748972', 3748972, '432.695709', '-16.065250', '-112.148399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748974', 3748974, '436.729889', '-14.846640', '-118.392700', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68840, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(270, 'e0041', 'bnpc3748976', 3748976, '441.284088', '-15.576560', '-96.939430', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68568, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748980', 3748980, '384.960602', '-17.809891', '-96.639427', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68296, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748986', 3748986, '389.761108', '-17.502140', '-101.701401', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3748990', 3748990, '391.353210', '-17.460060', '-135.489304', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749004', 3749004, '172.667496', '7.527369', '-42.066410', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749018', 3749018, '187.591705', '4.184689', '-15.078180', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749020', 3749020, '183.022797', '5.398401', '-15.566580', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749031', 3749031, '202.090393', '0.810960', '-15.619060', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749036', 3749036, '199.896393', '1.465439', '-15.630680', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749047', 3749047, '143.173706', '15.773830', '-43.893311', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749053', 3749053, '153.171097', '16.202070', '-56.630402', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749059', 3749059, '151.803696', '19.216890', '-78.848953', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749061', 3749061, '153.666504', '19.040461', '-76.088043', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749071', 3749071, '144.894501', '19.988741', '-106.295998', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749073', 3749073, '142.185501', '20.171949', '-108.059097', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749080', 3749080, '115.432404', '20.583151', '-99.077271', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749083', 3749083, '114.653099', '20.724030', '-96.549553', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749168', 3749168, '312.979492', '-19.718349', '-75.451233', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62252, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749170', 3749170, '261.730194', '-19.718349', '-82.128349', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61980, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749172', 3749172, '274.699402', '-19.718349', '-117.167198', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61708, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749173', 3749173, '291.363098', '-19.718349', '-136.065598', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749174', 3749174, '342.729797', '-19.718349', '-131.071106', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749175', 3749175, '353.724091', '-19.718349', '-85.215424', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749176', 3749176, '333.410095', '-19.718349', '-136.385498', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60620, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749177', 3749177, '319.949188', '-19.718349', '-179.156403', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60348, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749178', 3749178, '308.689301', '-19.718349', '-60.698299', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60142, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749180', 3749180, '311.695190', '-19.718349', '-58.346031', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59870, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749183', 3749183, '330.312012', '-19.729959', '-70.267838', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59598, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749186', 3749186, '296.119995', '-19.718349', '-90.360474', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59326, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749187', 3749187, '293.415802', '-19.718349', '-93.414520', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59054, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749188', 3749188, '290.216614', '-19.718349', '-87.193253', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58782, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749189', 3749189, '258.481415', '-19.718349', '-104.208000', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58510, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749190', 3749190, '252.984802', '-19.718349', '-103.640099', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58238, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749191', 3749191, '257.907715', '-19.718349', '-125.303101', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57966, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749192', 3749192, '286.451904', '-19.718349', '-129.699097', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57694, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749193', 3749193, '282.557892', '-19.718349', '-147.388199', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57422, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749195', 3749195, '310.290314', '-19.718349', '-172.318802', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57150, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749196', 3749196, '313.118591', '-19.718349', '-169.401993', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56878, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749197', 3749197, '310.587006', '-19.718349', '-142.173401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56606, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749199', 3749199, '350.892212', '-19.718349', '-150.816696', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56334, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749200', 3749200, '368.409302', '-19.718349', '-144.276596', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56062, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749201', 3749201, '364.918213', '-19.718349', '-140.378006', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55790, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749202', 3749202, '359.256592', '-19.718349', '-116.557503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55518, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749203', 3749203, '346.291199', '-19.718349', '-105.267899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55246, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749204', 3749204, '371.776215', '-19.718349', '-104.967796', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54974, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(270, 'e0041', 'bnpc3749211', 3749211, '123.998703', '28.662880', '-17.350370', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51474, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(270, 'e0041', 'bnpc3749213', 3749213, '121.332397', '28.612700', '-23.583090', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51208, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(270, 'e0041', 'bnpc3749215', 3749215, '161.791397', '28.213881', '-14.786040', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50936, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(270, 'e0041', 'bnpc3749218', 3749218, '137.021805', '28.624880', '-23.498341', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50658, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(270, 'e0041', 'bnpc3749219', 3749219, '107.272903', '29.216610', '-36.643101', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749222', 3749222, '149.401093', '28.610600', '-15.610050', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50120, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(270, 'e0041', 'bnpc3749223', 3749223, '148.790604', '28.610600', '-15.152280', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49842, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(270, 'e0041', 'bnpc3749225', 3749225, '122.827698', '28.633169', '-37.359280', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749226', 3749226, '104.128304', '29.031771', '-49.110481', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49304, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(270, 'e0041', 'bnpc3749235', 3749235, '93.149368', '29.525270', '-84.964371', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749239', 3749239, '67.895287', '30.429380', '-70.394157', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749240', 3749240, '65.047180', '30.255060', '-77.079674', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749241', 3749241, '44.682369', '28.535789', '-84.546478', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749242', 3749242, '66.806038', '29.155720', '-109.342300', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749245', 3749245, '204.538101', '7.350389', '-181.293304', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749246', 3749246, '174.853104', '5.172761', '-202.929794', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749247', 3749247, '263.069611', '8.545942', '-196.205307', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749252', 3749252, '231.435593', '1.119558', '-165.006302', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749253', 3749253, '173.375305', '2.771811', '-168.286102', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749255', 3749255, '157.126694', '3.796749', '-121.347397', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749257', 3749257, '115.770103', '4.592918', '-127.306099', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749275', 3749275, '161.730301', '-1.754834', '-239.398804', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749277', 3749277, '185.534393', '-1.754834', '-265.705414', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749279', 3749279, '210.539902', '-1.750040', '-309.299408', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749284', 3749284, '211.839401', '-1.750030', '-306.582611', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749290', 3749290, '143.733002', '-1.750026', '-193.558701', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749297', 3749297, '144.345306', '0.955883', '-165.104004', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749310', 3749310, '216.777496', '0.994229', '-97.056053', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749312', 3749312, '169.933899', '2.409006', '-84.351593', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749314', 3749314, '219.378906', '-3.433327', '-46.921539', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749321', 3749321, '277.040192', '-7.191899', '-0.686294', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749327', 3749327, '331.429810', '-13.937110', '-37.954071', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749332', 3749332, '384.322205', '-19.359289', '-5.627488', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749336', 3749336, '382.853088', '-20.412571', '-0.889114', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749338', 3749338, '359.951508', '-16.405090', '-60.846310', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749343', 3749343, '451.404602', '-11.420970', '-118.535599', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749351', 3749351, '384.249603', '-17.667879', '-125.562897', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749357', 3749357, '297.316589', '-19.718349', '-70.108559', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749359', 3749359, '289.558197', '-19.718349', '-103.097801', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749362', 3749362, '240.405807', '-18.104980', '-89.540627', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749364', 3749364, '283.065491', '-19.718349', '-125.167999', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749367', 3749367, '267.129913', '-18.000000', '-169.891296', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749369', 3749369, '264.685486', '-18.000000', '-168.247101', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749370', 3749370, '316.532898', '-19.718349', '-157.003693', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749371', 3749371, '353.619995', '-19.718349', '-109.615997', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749373', 3749373, '339.318695', '-19.718349', '-85.941147', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749376', 3749376, '165.671799', '11.656820', '-52.356880', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749380', 3749380, '172.813995', '6.716133', '-26.881840', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749388', 3749388, '191.772202', '-0.202088', '-35.283329', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749390', 3749390, '136.510300', '18.512560', '-57.480461', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749392', 3749392, '133.468002', '19.606770', '-81.872276', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749396', 3749396, '128.184402', '20.219101', '-102.714104', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749397', 3749397, '116.821999', '23.443171', '-63.701351', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749399', 3749399, '86.653412', '30.354231', '-83.224442', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749402', 3749402, '86.953407', '29.540970', '-103.119400', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3749404', 3749404, '58.939091', '30.914900', '-69.530090', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3751223', 3751223, '27.075630', '19.825541', '-258.167999', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79592, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(270, 'e0041', 'bnpc3751224', 3751224, '25.641180', '19.827999', '-262.593201', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80674, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(270, 'e0041', 'bnpc3751325', 3751325, '-86.401451', '-0.314426', '-202.187195', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3751326', 3751326, '-89.241432', '-0.377375', '-203.793503', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3751327', 3751327, '-54.347431', '10.746100', '-226.743500', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3751329', 3751329, '14.423480', '6.148088', '-236.752106', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3751331', 3751331, '-1.214684', '-0.950067', '-207.831497', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3751332', 3751332, '-12.497190', '11.337410', '-273.731598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3751350', 3751350, '12.680810', '9.512568', '-296.489288', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3751353', 3751353, '-5.330978', '16.424870', '-314.262909', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3751354', 3751354, '-110.742599', '-1.464606', '-173.727402', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3782203', 3782203, '-10.133880', '-3.109667', '-92.309822', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3782206', 3782206, '-5.820518', '-2.317021', '-88.935387', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3782208', 3782208, '-16.094000', '-4.734633', '-82.939987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3782210', 3782210, '-16.866150', '-3.490384', '-51.955761', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3782566', 3782566, '219.465393', '20.017179', '421.855988', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177456, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3782567', 3782567, '215.101303', '19.951290', '418.621094', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177184, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3782571', 3782571, '276.496490', '14.358410', '504.494598', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176912, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3782572', 3782572, '274.299194', '14.525580', '502.022614', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170662, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3782576', 3782576, '223.506195', '14.214930', '465.799103', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176640, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3782578', 3782578, '228.904907', '14.555940', '463.312805', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176368, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3782579', 3782579, '240.208405', '14.734180', '473.802307', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176096, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3782581', 3782581, '203.301804', '12.792270', '451.523285', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175824, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc3782585', 3782585, '230.220703', '14.451260', '471.293915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173926, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(270, 'e0041', 'bnpc4057631', 4057631, '-117.387497', '15.659340', '316.159485', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22414, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(270, 'e0041', 'bnpc4057642', 4057642, '32.356911', '15.912200', '575.715027', 797, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22148, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(270, 'e0041', 'bnpc4057659', 4057659, '-26.174540', '-2.337916', '-130.147400', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21882, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(270, 'e0041', 'bnpc4057662', 4057662, '7.597365', '-2.072273', '-178.519897', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21610, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(270, 'e0041', 'bnpc4621827', 4621827, '-293.653107', '18.424400', '-380.671600', 2770, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22760, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc1368411', 1368411, '-66.155998', '-12.582840', '-8.814363', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc1368412', 1368412, '-64.537338', '-12.499180', '-8.712757', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc1368413', 1368413, '-62.951370', '-12.426580', '-8.677147', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc1368414', 1368414, '-61.258369', '-12.364150', '-8.589471', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc1368416', 1368416, '-66.693230', '-12.961350', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212726, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc1368417', 1368417, '-64.495934', '-12.860610', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc1368418', 1368418, '-62.481739', '-12.772990', '-13.472360', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc1368419', 1368419, '-60.162369', '-12.662670', '-13.441840', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc1368420', 1368420, '-69.467598', '-13.149620', '-18.035919', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211644, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc1368440', 1368440, '-65.325943', '-13.142030', '-18.046921', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211372, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc1368441', 1368441, '-61.416431', '-13.052980', '-18.065041', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211100, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc1368442', 1368442, '-57.492748', '-12.665620', '-17.741350', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210828, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746473', 3746473, '-134.012207', '9.916103', '267.132690', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208458, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746474', 3746474, '-139.248093', '11.343600', '270.767487', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208186, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746475', 3746475, '-116.714996', '8.743372', '266.243988', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207914, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746477', 3746477, '-123.143700', '11.980280', '281.311798', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207642, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746478', 3746478, '-128.526794', '6.043580', '250.778503', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207370, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746481', 3746481, '-87.065170', '8.131585', '270.853210', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207098, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746484', 3746484, '-77.385406', '9.277164', '278.146301', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206826, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746485', 3746485, '-79.850502', '9.815605', '280.807892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206554, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746486', 3746486, '-57.801540', '7.714478', '280.245697', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206282, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746487', 3746487, '-32.103970', '8.045358', '306.695404', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206010, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746488', 3746488, '-33.263660', '8.805240', '310.174408', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205738, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746489', 3746489, '-23.206301', '7.924604', '316.282593', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205466, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746490', 3746490, '-1.823452', '12.616180', '355.344391', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205194, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746491', 3746491, '1.058939', '11.460450', '352.323212', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204922, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746492', 3746492, '-1.840275', '11.813140', '350.644714', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204650, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746493', 3746493, '-56.592079', '0.108709', '220.398895', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204378, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746494', 3746494, '-56.292080', '3.881968', '249.628098', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204106, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746495', 3746495, '-31.334530', '2.359202', '278.398193', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203834, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746496', 3746496, '-104.320801', '1.025299', '207.824005', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203562, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746498', 3746498, '7.768722', '1.031246', '256.953094', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203290, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746499', 3746499, '-123.605797', '2.842937', '210.266296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203018, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746500', 3746500, '30.048519', '10.050760', '356.964386', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202746, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746501', 3746501, '-97.688263', '-3.294564', '184.145203', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202474, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746503', 3746503, '-99.971313', '-3.426347', '180.765198', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202202, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746505', 3746505, '-87.144318', '-1.876907', '198.901306', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201930, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746506', 3746506, '-47.697250', '-4.439452', '201.516296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201658, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746507', 3746507, '-14.522570', '0.676844', '242.620300', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201386, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746508', 3746508, '-11.261070', '0.694751', '245.484695', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201114, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746514', 3746514, '-119.246803', '8.981372', '268.429688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155702, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746519', 3746519, '-132.127899', '6.316744', '252.007797', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155974, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746522', 3746522, '-155.544296', '14.321210', '274.575500', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156246, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746523', 3746523, '-155.193604', '7.549813', '251.117706', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155430, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746524', 3746524, '-92.355728', '5.076609', '248.889801', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154614, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746525', 3746525, '-107.799896', '1.451139', '209.227798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154886, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746526', 3746526, '-114.793701', '4.013075', '226.245499', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155158, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746527', 3746527, '28.597651', '13.168800', '391.636688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157606, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746528', 3746528, '-93.669998', '-2.292831', '193.599503', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157878, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746529', 3746529, '-86.737587', '1.982069', '218.821899', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158150, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746530', 3746530, '-94.103600', '-4.710398', '174.915298', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157334, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746532', 3746532, '-55.083771', '1.032392', '224.458603', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156518, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746533', 3746533, '-52.324100', '-0.635104', '220.185806', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156790, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746534', 3746534, '-52.024101', '-4.438385', '196.025299', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157062, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746535', 3746535, '-23.599480', '-4.862183', '218.164505', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162774, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746536', 3746536, '-2.930916', '14.263170', '364.690308', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165222, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746538', 3746538, '-40.705959', '2.362750', '241.470093', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165494, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746539', 3746539, '-66.280632', '6.869143', '269.246704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165766, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746541', 3746541, '4.373672', '4.711559', '297.562012', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164950, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746542', 3746542, '-63.836632', '11.354730', '293.474915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164134, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746543', 3746543, '-67.036057', '11.719290', '294.869385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164406, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746544', 3746544, '-40.587990', '10.584770', '307.244690', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164678, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746545', 3746545, '-18.006081', '5.176353', '307.655609', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159510, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746547', 3746547, '13.581710', '5.033936', '280.057404', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746557', 3746557, '59.891609', '12.558130', '450.125793', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746560', 3746560, '49.054600', '13.360080', '439.790100', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746579', 3746579, '-107.428101', '5.098667', '239.118896', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746589', 3746589, '15.346860', '15.164520', '392.385712', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200842, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746592', 3746592, '14.522880', '15.407670', '396.017303', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200570, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746594', 3746594, '34.258789', '14.106760', '421.936798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159782, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746595', 3746595, '60.659401', '11.900060', '438.181702', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160054, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746616', 3746616, '55.188671', '13.295150', '508.984802', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159238, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746617', 3746617, '66.524231', '10.880620', '515.488220', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200298, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746618', 3746618, '49.532551', '14.712430', '506.886414', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200026, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746619', 3746619, '50.356541', '14.371650', '503.254791', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199754, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746620', 3746620, '59.248550', '11.443580', '491.395813', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199482, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746621', 3746621, '87.897888', '3.259133', '489.249908', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158422, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746622', 3746622, '84.418831', '4.091218', '486.350708', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158694, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746623', 3746623, '46.372120', '15.609930', '520.347778', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158966, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746624', 3746624, '84.031380', '8.407674', '556.939026', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199210, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746625', 3746625, '89.244087', '6.908536', '552.574890', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198938, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746626', 3746626, '105.598701', '4.370574', '521.843201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198666, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746628', 3746628, '107.891403', '6.906938', '609.728882', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161414, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746629', 3746629, '160.979904', '10.423200', '445.205414', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746630', 3746630, '189.060593', '11.863390', '607.536072', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746688', 3746688, '86.533859', '11.154300', '622.308594', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198394, 7, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(271, 'e0042', 'bnpc3746689', 3746689, '77.714149', '12.588650', '626.672729', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198122, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746690', 3746690, '81.986671', '11.825690', '632.593201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197850, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746691', 3746691, '42.256569', '15.522670', '621.038330', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197578, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746692', 3746692, '36.528320', '15.730630', '626.060913', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197306, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746693', 3746693, '33.963001', '15.853820', '622.955627', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197034, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746694', 3746694, '54.517780', '14.477480', '614.387390', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160870, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746695', 3746695, '75.144310', '14.202080', '664.210083', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160598, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746697', 3746697, '71.776787', '14.357050', '666.349792', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196762, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746699', 3746699, '110.074799', '9.705235', '672.023499', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196490, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746700', 3746700, '105.802299', '9.833974', '666.103027', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196218, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746701', 3746701, '114.622002', '9.802178', '661.738892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195946, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746702', 3746702, '102.630096', '9.930755', '678.326416', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160326, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746703', 3746703, '124.601700', '9.267537', '672.118774', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161142, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746704', 3746704, '139.915802', '3.409252', '629.204895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161958, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746706', 3746706, '148.317993', '4.103824', '654.705994', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195674, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746707', 3746707, '140.430801', '4.620288', '650.824585', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195402, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746708', 3746708, '144.703293', '4.162472', '656.745178', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195130, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3746728', 3746728, '105.175301', '7.446661', '611.285278', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161686, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746741', 3746741, '123.709900', '4.546344', '401.381409', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746744', 3746744, '119.896500', '4.229595', '400.430603', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746745', 3746745, '121.385498', '4.562400', '415.457306', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746747', 3746747, '94.951797', '4.409234', '415.757996', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746748', 3746748, '98.573242', '3.713897', '402.903290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746753', 3746753, '105.931702', '3.887046', '438.676788', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746754', 3746754, '103.130402', '3.837232', '441.897888', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746756', 3746756, '101.549301', '2.579426', '385.163391', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746757', 3746757, '126.748802', '2.272390', '326.781708', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746762', 3746762, '128.648804', '2.609246', '322.621399', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746767', 3746767, '115.312401', '0.839199', '310.200592', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746769', 3746769, '60.052872', '2.658700', '301.575806', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746771', 3746771, '66.487648', '2.270967', '295.222290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746772', 3746772, '59.572800', '2.550388', '279.994904', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746773', 3746773, '39.864429', '5.507329', '295.432587', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746775', 3746775, '28.239599', '1.102737', '258.417786', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746782', 3746782, '33.012630', '-0.000074', '236.507797', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746783', 3746783, '30.472219', '1.540232', '261.602997', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746790', 3746790, '40.329552', '0.198320', '191.668503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746791', 3746791, '42.740471', '0.381429', '188.281006', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189696, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746792', 3746792, '21.316620', '-1.942127', '212.041397', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189424, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746795', 3746795, '33.488029', '0.135540', '209.757507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189152, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746800', 3746800, '79.875580', '17.322849', '153.453400', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188880, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746801', 3746801, '86.274673', '14.097900', '174.830002', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188608, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746802', 3746802, '82.595718', '17.371531', '156.113602', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188336, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746803', 3746803, '68.047150', '12.851960', '169.148697', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188064, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746805', 3746805, '145.186905', '14.265870', '303.993011', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187792, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746806', 3746806, '134.595795', '15.951970', '271.548492', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187520, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746807', 3746807, '129.378799', '14.996020', '276.045807', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187248, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746808', 3746808, '102.709000', '6.216220', '218.986298', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186976, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746815', 3746815, '104.478500', '3.524787', '410.177704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162502, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746820', 3746820, '134.782898', '6.790217', '393.331787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162230, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746821', 3746821, '109.756599', '2.337350', '358.451385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163046, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746826', 3746826, '100.612602', '0.927920', '320.347412', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163862, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746828', 3746828, '122.748901', '1.776996', '318.298187', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163590, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746831', 3746831, '90.791931', '1.666962', '266.808197', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163318, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746834', 3746834, '115.643402', '6.086327', '252.986206', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153254, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746835', 3746835, '116.878197', '7.099676', '249.317596', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152982, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746839', 3746839, '134.754898', '15.738220', '277.605591', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152710, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746842', 3746842, '138.416901', '14.910950', '291.298401', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153526, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746843', 3746843, '69.640907', '10.773730', '192.122192', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154342, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746844', 3746844, '80.370789', '14.464900', '168.592697', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154070, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746845', 3746845, '58.563480', '13.422550', '142.645203', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153798, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746846', 3746846, '84.523247', '19.105749', '150.735306', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151350, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746847', 3746847, '44.427238', '1.305627', '214.361099', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151078, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746848', 3746848, '17.726910', '-2.276831', '214.661102', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150806, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746850', 3746850, '23.742001', '2.113425', '263.454895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151622, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746857', 3746857, '39.223301', '5.294607', '322.688812', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152438, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746859', 3746859, '72.028061', '7.308271', '404.591492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152166, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746861', 3746861, '127.672203', '6.607109', '430.716309', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151894, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746864', 3746864, '165.074600', '12.246150', '482.778503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186704, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746867', 3746867, '168.492706', '12.057270', '478.475494', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186432, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746868', 3746868, '162.989304', '12.037260', '478.563507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186160, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746870', 3746870, '159.288895', '10.574450', '408.590790', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185888, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746871', 3746871, '163.653000', '10.757560', '411.825714', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185616, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746872', 3746872, '180.336197', '12.793920', '406.002014', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185344, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746873', 3746873, '161.736893', '16.236589', '388.045105', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185072, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746876', 3746876, '133.837296', '9.269427', '459.531403', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184800, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746878', 3746878, '131.557098', '8.976067', '457.624695', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184528, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746880', 3746880, '120.227203', '8.368025', '485.318115', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184256, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746885', 3746885, '134.445908', '12.144460', '507.273987', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183984, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746887', 3746887, '131.554993', '12.056210', '504.412415', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183712, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746889', 3746889, '140.997406', '11.949580', '487.139313', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183440, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746891', 3746891, '177.389404', '11.185200', '525.833618', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183168, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746894', 3746894, '180.637207', '11.258170', '523.414673', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182896, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746896', 3746896, '163.836105', '12.375020', '511.253387', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182624, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746898', 3746898, '147.262100', '7.242397', '543.931824', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182352, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746902', 3746902, '159.838196', '8.834927', '539.787781', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182080, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746905', 3746905, '155.880402', '7.197376', '556.779175', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181808, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746908', 3746908, '158.138794', '8.079927', '559.495300', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181536, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746910', 3746910, '143.386200', '7.563845', '583.138916', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181264, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746911', 3746911, '141.779205', '7.213043', '585.132019', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180992, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746913', 3746913, '138.754898', '6.737441', '570.297424', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180720, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746914', 3746914, '149.117798', '6.128607', '602.883972', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180448, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746915', 3746915, '169.704697', '11.348940', '603.184021', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180176, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746916', 3746916, '180.008804', '11.209140', '617.096130', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179904, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746917', 3746917, '182.074905', '11.129530', '618.747620', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179632, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746918', 3746918, '203.008896', '12.064710', '597.300476', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179360, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746919', 3746919, '222.377304', '10.658940', '600.289978', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179088, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746920', 3746920, '219.857101', '10.195060', '606.104126', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178816, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746921', 3746921, '216.053207', '12.886560', '579.694885', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178544, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746922', 3746922, '254.440308', '11.644550', '583.224670', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178272, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746923', 3746923, '187.395996', '12.680200', '480.674408', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178000, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746925', 3746925, '122.484100', '8.621300', '468.558685', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174198, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746927', 3746927, '152.697006', '11.123780', '465.049103', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173382, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746928', 3746928, '200.189301', '12.546850', '452.841888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173654, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746929', 3746929, '184.320801', '12.674630', '482.649414', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174470, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746930', 3746930, '161.638794', '12.497090', '508.781494', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175286, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746932', 3746932, '134.477707', '12.039320', '494.041290', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175558, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746933', 3746933, '157.244202', '8.895963', '538.017822', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174742, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746934', 3746934, '145.677795', '11.978280', '517.051880', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175014, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746937', 3746937, '112.465202', '5.551401', '523.979492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168486, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746941', 3746941, '164.965195', '10.635490', '582.482483', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168214, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746945', 3746945, '140.062500', '7.095398', '581.505981', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167942, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746946', 3746946, '126.004097', '4.418174', '596.074219', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169302, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746951', 3746951, '205.096497', '11.978280', '595.452820', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169030, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746954', 3746954, '201.556396', '10.391350', '620.202881', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168758, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746956', 3746956, '223.407303', '9.658914', '609.063782', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167670, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746958', 3746958, '230.853699', '7.095398', '629.480286', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166582, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746959', 3746959, '228.412201', '6.607109', '632.684814', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166310, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746960', 3746960, '250.843002', '10.543940', '603.967285', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166038, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746962', 3746962, '251.148193', '11.947770', '580.346313', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167398, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746963', 3746963, '236.801498', '16.670509', '560.962524', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167126, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746965', 3746965, '239.996399', '16.684830', '564.761475', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166854, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746966', 3746966, '219.876907', '16.677370', '559.278870', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169574, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746967', 3746967, '255.603806', '16.647539', '552.574890', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172294, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746968', 3746968, '261.768494', '13.412630', '571.068787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172022, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746969', 3746969, '261.341187', '16.678061', '523.765930', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171750, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746970', 3746970, '263.263885', '16.647539', '520.866577', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173110, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746971', 3746971, '247.730194', '16.647539', '499.259888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172838, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746972', 3746972, '210.126297', '16.670370', '499.584686', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172566, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746973', 3746973, '206.265198', '16.709129', '502.872498', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171478, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746974', 3746974, '201.359299', '16.670370', '525.525696', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170390, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746975', 3746975, '199.202896', '16.634470', '546.190796', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170118, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746976', 3746976, '201.042099', '16.670389', '547.166199', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169846, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3746983', 3746983, '47.837040', '20.883829', '-297.468597', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79320, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3746984', 3746984, '30.218941', '19.809231', '-261.464111', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80402, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(271, 'e0042', 'bnpc3746985', 3746985, '45.726398', '19.952000', '-251.705505', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79048, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3746988', 3746988, '37.782612', '19.928471', '-277.190186', 736, 0, 0, 0, 1, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80130, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3746992', 3746992, '32.101620', '19.979660', '-229.510406', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79858, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(271, 'e0042', 'bnpc3746993', 3746993, '32.891548', '19.908630', '-233.898605', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78776, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(271, 'e0042', 'bnpc3746997', 3746997, '-40.889229', '-6.750034', '159.270004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88278, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747003', 3747003, '-38.858761', '-6.750058', '155.119003', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88550, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747004', 3747004, '-21.989389', '-6.750032', '151.563995', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87190, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747006', 3747006, '-1.016211', '-6.750022', '160.127197', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89638, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747009', 3747009, '3.375875', '-6.751163', '164.669601', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89910, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747010', 3747010, '5.926142', '-6.750027', '161.728195', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89366, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747012', 3747012, '22.984619', '-6.750012', '165.561600', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89094, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747015', 3747015, '30.818211', '-6.750096', '148.130096', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88822, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747018', 3747018, '-6.179034', '-6.750058', '138.765106', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90182, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747019', 3747019, '-2.610643', '-6.750058', '141.990707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87734, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747021', 3747021, '-15.651240', '-6.750003', '122.209503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87462, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747022', 3747022, '-52.276199', '-6.750027', '169.793900', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88006, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747028', 3747028, '-73.794739', '-6.750006', '155.086899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91814, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747033', 3747033, '-84.128677', '-6.750047', '148.117004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90454, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747034', 3747034, '-88.289063', '-6.750033', '145.505707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90998, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747037', 3747037, '-81.662231', '-6.750007', '162.451996', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91542, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747042', 3747042, '-100.621399', '-6.750030', '133.779007', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91270, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747078', 3747078, '174.099396', '10.387860', '561.876526', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177728, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747306', 3747306, '166.825607', '12.296140', '403.792114', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171206, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747310', 3747310, '155.935303', '9.673933', '431.016296', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170934, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747330', 3747330, '-88.883842', '-0.106860', '109.147697', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747331', 3747331, '-61.120312', '0.636424', '88.682060', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747332', 3747332, '-80.643967', '-0.473077', '67.368530', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747333', 3747333, '-86.717056', '0.991789', '72.831261', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747336', 3747336, '-36.911621', '-3.830061', '32.700039', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747337', 3747337, '-40.695862', '-4.928711', '25.589331', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747338', 3747338, '-11.550680', '0.488563', '-28.281300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747339', 3747339, '17.013760', '3.036498', '-38.223900', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747340', 3747340, '-58.237549', '-4.110259', '-107.568703', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110020, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747341', 3747341, '-67.615173', '-4.777174', '-101.631897', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109476, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747342', 3747342, '-91.142181', '-0.778257', '-101.335197', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109748, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747344', 3747344, '-126.726303', '9.466410', '-79.290817', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110564, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747345', 3747345, '-162.798492', '10.177720', '-67.887444', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114644, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747347', 3747347, '-162.133194', '17.720350', '-97.090424', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114916, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747349', 3747349, '-170.820297', '17.510420', '-95.798119', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114372, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747353', 3747353, '-144.544800', '8.164017', '-26.941380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113828, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747356', 3747356, '-176.280701', '8.164456', '-26.641380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114100, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747358', 3747358, '-181.261993', '6.912290', '-21.225349', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116004, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747359', 3747359, '-207.415894', '10.971190', '-31.418369', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116276, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747362', 3747362, '-142.900803', '6.271411', '-160.784302', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115732, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747363', 3747363, '-153.948898', '13.420070', '-190.044296', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115188, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747364', 3747364, '-199.122604', '1.060047', '7.769498', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112468, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747365', 3747365, '-100.182404', '-4.169586', '5.823180', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112196, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747366', 3747366, '-162.648407', '1.476818', '27.867500', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112740, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747368', 3747368, '-228.292801', '1.271454', '31.448839', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113284, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747369', 3747369, '-281.000000', '1.547629', '6.098617', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113012, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747370', 3747370, '-292.305786', '1.883296', '3.669711', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110292, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747371', 3747371, '-289.186615', '0.923461', '44.489441', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111108, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747372', 3747372, '-331.967499', '-0.344346', '37.288601', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110836, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747373', 3747373, '-367.222809', '14.331700', '37.588600', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111380, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747374', 3747374, '-362.704590', '17.228571', '24.585470', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111924, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747376', 3747376, '-337.512299', '2.239006', '84.820068', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111652, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747380', 3747380, '-350.515015', '5.752604', '108.384804', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113556, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747385', 3747385, '-374.964294', '1.092578', '72.868820', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115460, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747388', 3747388, '-52.163811', '-2.028311', '119.953003', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147810, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747389', 3747389, '-86.052368', '0.110645', '102.987396', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147538, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747390', 3747390, '-74.317467', '-4.983451', '25.989620', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147266, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747391', 3747391, '-33.861969', '-6.175569', '6.276085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146994, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747393', 3747393, '13.815840', '0.849448', '-43.540058', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146722, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747394', 3747394, '-25.443001', '-6.505634', '-66.767128', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146450, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747395', 3747395, '-66.218620', '-2.263651', '-110.189796', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146178, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747396', 3747396, '-92.423927', '2.517692', '-129.686493', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747397', 3747397, '-120.059502', '11.096300', '-65.332710', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747398', 3747398, '-123.346199', '11.132750', '-62.877190', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747399', 3747399, '-135.404602', '3.017960', '-134.773499', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145090, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747400', 3747400, '-155.932007', '14.084030', '-185.687103', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747401', 3747401, '-176.806305', '20.096081', '-127.183998', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144546, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747402', 3747402, '-182.692200', '11.068910', '-54.575550', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144274, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747403', 3747403, '-188.219101', '8.602026', '-26.668791', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144002, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747404', 3747404, '-125.142403', '-1.327417', '12.701530', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143730, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747405', 3747405, '-142.871094', '-0.211552', '-0.011758', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143458, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747406', 3747406, '-188.977707', '1.185343', '0.288242', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143186, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747407', 3747407, '-196.063202', '-0.991883', '44.632591', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747408', 3747408, '-198.598099', '-1.427130', '46.344830', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142642, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747409', 3747409, '-265.374908', '-0.871808', '46.644829', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747410', 3747410, '-245.222107', '0.679796', '27.065580', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747411', 3747411, '-236.532196', '4.119698', '-11.326280', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747413', 3747413, '-237.229904', '7.081615', '-22.989599', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141554, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(271, 'e0042', 'bnpc3747414', 3747414, '-238.542206', '7.219037', '-24.718719', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747415', 3747415, '-245.215302', '6.500818', '-25.125641', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747417', 3747417, '-335.459198', '7.751451', '2.210185', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747419', 3747419, '-332.434692', '-0.635067', '45.192638', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747420', 3747420, '-338.391815', '2.787159', '90.300163', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140194, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747635', 3747635, '-101.580002', '3.185857', '-122.629700', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747636', 3747636, '-113.067703', '0.190863', '-235.496902', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747637', 3747637, '-8.689189', '-2.987621', '-71.427528', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747853', 3747853, '-210.928299', '22.971910', '-101.417801', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82028, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3747854', 3747854, '-210.061996', '22.349720', '-98.801086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82844, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3747855', 3747855, '-199.564606', '24.777719', '-122.897400', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82572, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3747856', 3747856, '-217.284500', '27.674749', '-122.597397', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81756, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(271, 'e0042', 'bnpc3747858', 3747858, '-217.212097', '28.120930', '-124.432098', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81212, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(271, 'e0042', 'bnpc3747859', 3747859, '-208.813400', '29.458891', '-133.137894', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80940, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3747860', 3747860, '-223.520599', '24.171949', '-95.828552', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81484, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3747864', 3747864, '-228.529297', '20.575800', '-76.218086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85564, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3747865', 3747865, '-241.385498', '18.354990', '-63.139381', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85292, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3747867', 3747867, '-243.216904', '18.379009', '-62.623611', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86380, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3747868', 3747868, '-255.936401', '24.723961', '-77.803009', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86108, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3747869', 3747869, '-267.446411', '25.988930', '-78.509064', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85836, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(271, 'e0042', 'bnpc3747870', 3747870, '-266.262207', '26.413910', '-80.013046', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86924, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(271, 'e0042', 'bnpc3747873', 3747873, '-288.302704', '28.840969', '-91.487991', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86652, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3747874', 3747874, '-273.846008', '27.999920', '-103.128998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83660, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3747876', 3747876, '-257.572906', '27.938169', '-88.810738', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83932, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3747877', 3747877, '-234.919403', '27.970850', '-103.431198', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84476, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(271, 'e0042', 'bnpc3747880', 3747880, '-245.382996', '27.999990', '-107.453003', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83116, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3747881', 3747881, '-254.081406', '28.000000', '-102.002197', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84204, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(271, 'e0042', 'bnpc3747883', 3747883, '-258.959106', '28.000000', '-105.536201', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82300, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3747884', 3747884, '-251.270294', '27.969730', '-102.616898', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85020, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(271, 'e0042', 'bnpc3747886', 3747886, '-248.655701', '28.000000', '-96.725998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84748, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3747889', 3747889, '-248.153000', '28.470831', '-127.263100', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83388, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(271, 'e0042', 'bnpc3747891', 3747891, '-234.992294', '9.310618', '-37.905788', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139922, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747893', 3747893, '-237.711700', '8.873294', '-42.033760', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139650, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747899', 3747899, '-214.038300', '-30.502831', '123.735397', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139384, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747900', 3747900, '-250.516998', '-31.060820', '85.115646', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139118, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747904', 3747904, '-201.968796', '-30.857059', '117.357803', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138840, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747905', 3747905, '-183.124893', '-31.750071', '106.885902', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138568, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747906', 3747906, '-185.311996', '-31.750059', '109.415100', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138296, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747907', 3747907, '-152.843002', '-31.750000', '109.715103', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138024, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747908', 3747908, '-166.101105', '-31.750000', '110.540100', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137758, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747909', 3747909, '-169.604507', '-27.712351', '77.843430', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137486, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747910', 3747910, '-167.071503', '-27.177780', '76.317528', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137214, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747911', 3747911, '-210.234406', '-30.382589', '95.879173', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136942, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747913', 3747913, '-195.861603', '-27.444660', '129.920502', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136670, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747914', 3747914, '-224.566406', '-31.750071', '110.176003', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136398, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747915', 3747915, '-263.312103', '-31.750090', '97.519081', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136126, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747916', 3747916, '-255.968094', '-31.750130', '95.789261', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135848, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747919', 3747919, '-211.436401', '-30.614429', '97.981651', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135576, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747921', 3747921, '-244.620895', '-28.275660', '117.486801', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135304, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747922', 3747922, '-225.970795', '-15.579620', '71.709572', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135026, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747923', 3747923, '-170.891495', '-26.165300', '72.662949', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134754, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747924', 3747924, '-154.802902', '-29.800900', '94.071899', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134482, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747925', 3747925, '-164.402603', '-31.750019', '112.296303', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747927', 3747927, '-213.131393', '-30.063490', '125.099403', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747928', 3747928, '-234.579193', '-29.342421', '117.079697', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747930', 3747930, '-206.002899', '-30.332180', '97.422249', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747931', 3747931, '-258.774902', '-31.750071', '93.732712', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747933', 3747933, '-124.520401', '25.876591', '-384.084900', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117364, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747935', 3747935, '-120.378502', '25.406219', '-376.089111', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117636, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747936', 3747936, '-71.168182', '15.618890', '-341.319214', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117908, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747937', 3747937, '-140.945007', '34.283039', '-443.520813', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116548, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747945', 3747945, '-104.844803', '10.208240', '-322.407898', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116820, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747953', 3747953, '-68.964897', '24.845461', '-295.047913', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117092, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747955', 3747955, '-30.148661', '20.242010', '-347.723907', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118180, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747958', 3747958, '-20.706499', '20.599291', '-342.888702', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118724, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747963', 3747963, '20.322849', '15.975690', '-350.654205', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118996, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747965', 3747965, '39.420231', '19.301970', '-356.003815', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119268, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3747975', 3747975, '-138.811401', '27.237310', '-416.372986', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747994', 3747994, '-93.431030', '7.583686', '-301.106293', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3747997', 3747997, '-65.966766', '21.859249', '-305.947601', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748004', 3748004, '-66.655212', '20.943001', '-309.725586', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748006', 3748006, '-38.712181', '21.255770', '-344.167297', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748009', 3748009, '-93.684303', '18.821621', '-371.862793', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748015', 3748015, '-113.144402', '27.605829', '-397.741913', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131490, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748017', 3748017, '-112.844398', '28.132500', '-450.977997', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748018', 3748018, '-108.119003', '27.149870', '-454.027008', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748020', 3748020, '-152.178299', '27.511971', '-419.668915', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748022', 3748022, '35.132519', '17.855400', '-352.433105', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748394', 3748394, '65.413780', '20.079309', '-340.723206', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748396', 3748396, '-140.276199', '-3.219701', '-317.433502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748397', 3748397, '-147.234299', '-4.593012', '-324.147400', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748399', 3748399, '-210.589798', '1.083344', '-288.624390', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748402', 3748402, '-72.186493', '11.340310', '-240.295197', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748407', 3748407, '-77.690918', '8.765988', '-234.389694', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748409', 3748409, '-50.269390', '11.709270', '-222.062698', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748410', 3748410, '-65.652512', '8.342214', '-211.891998', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748411', 3748411, '-21.376921', '8.231496', '-242.911896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748412', 3748412, '-16.418360', '6.341013', '-249.044601', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748413', 3748413, '-6.975120', '11.175980', '-282.658691', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106490, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748414', 3748414, '10.056190', '8.215180', '-250.173004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748415', 3748415, '5.360405', '-0.923770', '-218.657303', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748416', 3748416, '48.714218', '0.699683', '-174.900604', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748417', 3748417, '95.936577', '1.386500', '-186.119995', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748418', 3748418, '31.585911', '8.951487', '-139.193497', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748419', 3748419, '35.112041', '16.424919', '-113.143204', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748420', 3748420, '34.363049', '8.229201', '-145.052994', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748421', 3748421, '90.860474', '1.763928', '-189.065002', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748422', 3748422, '113.054001', '1.174898', '-202.746704', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748423', 3748423, '130.461395', '1.093745', '-233.497101', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748424', 3748424, '124.484100', '0.743076', '-229.449493', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748425', 3748425, '89.422256', '3.504610', '-218.853806', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748428', 3748428, '-184.704300', '-4.704755', '-317.082306', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748429', 3748429, '-177.061203', '-3.447654', '-291.626190', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748430', 3748430, '-168.688507', '-1.968461', '-348.439789', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102954, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748431', 3748431, '-142.835693', '-1.140769', '-353.109894', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748433', 3748433, '-167.528793', '6.179857', '-382.681000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748434', 3748434, '-192.189301', '-4.726788', '-315.063293', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97242, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748436', 3748436, '-213.360901', '-4.497713', '-340.979004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748437', 3748437, '-234.150696', '5.014801', '-286.084686', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98602, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748438', 3748438, '-218.334900', '17.160500', '-255.482300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748443', 3748443, '-212.971405', '13.338840', '-260.496307', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748479', 3748479, '-151.282501', '-4.870804', '-286.887787', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748499', 3748499, '-178.949402', '6.440631', '-256.865692', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748520', 3748520, '-148.505096', '-5.306737', '-314.775085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748524', 3748524, '-185.881104', '-4.844985', '-310.895508', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748526', 3748526, '-164.369003', '1.507254', '-251.882507', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748528', 3748528, '-207.412399', '17.160610', '-247.635193', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748530', 3748530, '-229.519104', '3.459191', '-289.959412', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748532', 3748532, '-163.010803', '-1.945551', '-356.094696', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748534', 3748534, '-173.595505', '5.841309', '-388.489685', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748537', 3748537, '-232.440796', '-2.339301', '-322.417908', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127954, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748538', 3748538, '-251.794006', '-1.267901', '-386.990295', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748542', 3748542, '-234.040207', '-0.107224', '-383.030914', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748543', 3748543, '-272.222107', '0.687642', '-325.399811', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748545', 3748545, '-263.308685', '4.237235', '-309.758392', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748546', 3748546, '-252.162598', '0.152196', '-318.392395', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748548', 3748548, '-251.430496', '-2.982757', '-348.143311', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748549', 3748549, '-240.737198', '1.345172', '-393.418396', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748550', 3748550, '-242.828506', '-3.567687', '-364.035309', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748551', 3748551, '-250.630707', '-3.725200', '-363.735291', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748552', 3748552, '-213.087494', '1.112077', '-382.537415', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748553', 3748553, '-255.836105', '7.531438', '-290.196289', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748554', 3748554, '-246.018097', '-2.631598', '-372.254608', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748555', 3748555, '-236.562103', '3.655112', '-396.309387', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748557', 3748557, '-203.850494', '16.277430', '-409.920593', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748559', 3748559, '-242.042892', '18.601339', '-425.242401', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748564', 3748564, '-177.168198', '14.656220', '-411.592987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748565', 3748565, '-215.900406', '16.573481', '-408.014008', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748566', 3748566, '-221.473297', '17.321730', '-412.786896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748567', 3748567, '-236.289001', '19.116409', '-424.877502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748570', 3748570, '-254.304306', '22.347059', '-449.055695', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748654', 3748654, '-205.192398', '19.296721', '-445.294189', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748657', 3748657, '-207.202301', '25.558809', '-115.343002', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748660', 3748660, '-222.657104', '20.702950', '-78.345047', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748662', 3748662, '-247.438400', '20.240339', '-67.748871', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748663', 3748663, '-230.727005', '26.739140', '-98.761307', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748670', 3748670, '-271.961609', '27.969740', '-98.954803', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748672', 3748672, '-271.661285', '23.599831', '-70.352722', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748674', 3748674, '-231.617004', '30.324150', '-133.076996', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748726', 3748726, '33.854542', '6.542700', '-211.889801', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748728', 3748728, '55.167561', '0.798945', '-193.606598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748729', 3748729, '69.255318', '0.046956', '-152.350906', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748730', 3748730, '10.055020', '5.968488', '-132.156097', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123602, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748732', 3748732, '50.175282', '14.921620', '-128.489700', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748734', 3748734, '76.929573', '3.883048', '-205.706406', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748736', 3748736, '79.198738', '3.548813', '-202.087204', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748737', 3748737, '106.461601', '1.818933', '-204.985199', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748738', 3748738, '140.354401', '0.554754', '-232.614304', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122242, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748739', 3748739, '111.391197', '0.776695', '-238.240707', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748749', 3748749, '145.884293', '-1.750025', '-212.434097', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3748752', 3748752, '136.108398', '-1.750136', '-190.396194', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3748753', 3748753, '149.821106', '-1.750019', '-214.231293', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54188, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3748755', 3748755, '84.854179', '-1.750136', '-139.436905', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53916, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3748758', 3748758, '72.003227', '-1.750024', '-104.510002', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53644, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3748760', 3748760, '68.467178', '-1.754834', '-99.778793', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53372, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3748763', 3748763, '78.693497', '-3.269199', '-32.994751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53100, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3748765', 3748765, '68.721947', '-2.620518', '-49.466751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52828, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3748770', 3748770, '166.277496', '-1.754834', '-241.382507', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52556, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3748772', 3748772, '187.884293', '-1.754834', '-278.858704', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52284, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3748773', 3748773, '194.766006', '-1.750224', '-280.991394', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52012, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3748775', 3748775, '71.615707', '-3.621419', '-26.438259', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51740, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3748850', 3748850, '12.774460', '-6.750232', '111.257401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90726, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3748852', 3748852, '9.592600', '-6.750232', '107.837402', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92086, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3748876', 3748876, '11.520510', '1.022307', '-111.986000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748879', 3748879, '-129.259201', '2.487174', '-193.926895', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118452, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3748904', 3748904, '176.132706', '4.710299', '-187.304703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748905', 3748905, '158.969894', '2.732193', '-177.146698', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748906', 3748906, '191.563705', '2.176362', '-156.220703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748907', 3748907, '196.388000', '3.012704', '-160.659393', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748908', 3748908, '239.061295', '5.923066', '-187.296494', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748910', 3748910, '269.473785', '9.044052', '-198.574799', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748913', 3748913, '263.650208', '11.289570', '-202.903397', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748915', 3748915, '227.710297', '-1.205510', '-113.847603', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748923', 3748923, '231.280899', '-1.632762', '-106.462196', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748926', 3748926, '200.610306', '-1.358100', '-103.471497', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748930', 3748930, '207.171707', '-1.144474', '-84.519768', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748932', 3748932, '173.937500', '1.205416', '-81.071228', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73736, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748934', 3748934, '148.809097', '3.036994', '-133.465897', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73464, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748937', 3748937, '169.787094', '0.045730', '-115.892303', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73192, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748941', 3748941, '145.535507', '4.850001', '-129.478104', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72920, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748942', 3748942, '119.305603', '3.909301', '-132.622696', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72648, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748943', 3748943, '109.916496', '3.556486', '-129.240601', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748944', 3748944, '224.505905', '-2.975556', '-56.412651', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72104, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748945', 3748945, '175.332993', '6.489766', '-41.243931', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748946', 3748946, '186.449905', '4.165666', '-17.319040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748947', 3748947, '281.825989', '-9.100459', '2.598387', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71832, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748949', 3748949, '288.471710', '-11.734230', '-3.952133', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71560, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748950', 3748950, '278.492310', '-14.114640', '-37.338871', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71288, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748953', 3748953, '324.544098', '-13.504280', '-33.615669', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748954', 3748954, '329.030212', '-13.565320', '-29.770399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748955', 3748955, '356.861603', '-15.283880', '-44.573921', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748956', 3748956, '347.890411', '-17.502140', '8.102493', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748962', 3748962, '150.469193', '19.150021', '-76.524040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748963', 3748963, '146.044098', '19.581060', '-88.241302', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748964', 3748964, '117.082397', '20.462299', '-97.062683', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748967', 3748967, '142.873703', '16.403400', '-46.097549', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748968', 3748968, '400.991608', '-12.783140', '-32.000870', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748969', 3748969, '366.536896', '-16.189871', '-58.854092', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748970', 3748970, '415.234192', '-14.170130', '-62.547722', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748972', 3748972, '432.695709', '-16.065250', '-112.148399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748974', 3748974, '436.729889', '-14.846640', '-118.392700', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68840, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748976', 3748976, '441.284088', '-15.576560', '-96.939430', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68568, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748980', 3748980, '384.960602', '-17.809891', '-96.639427', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68296, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748986', 3748986, '389.761108', '-17.502140', '-101.701401', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3748990', 3748990, '391.353210', '-17.460060', '-135.489304', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67752, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(271, 'e0042', 'bnpc3749004', 3749004, '172.667496', '7.527369', '-42.066410', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749018', 3749018, '187.591705', '4.184689', '-15.078180', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749020', 3749020, '183.022797', '5.398401', '-15.566580', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749031', 3749031, '202.090393', '0.810960', '-15.619060', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749036', 3749036, '199.896393', '1.465439', '-15.630680', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749047', 3749047, '143.173706', '15.773830', '-43.893311', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749053', 3749053, '153.171097', '16.202070', '-56.630402', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749059', 3749059, '151.803696', '19.216890', '-78.848953', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749061', 3749061, '153.666504', '19.040461', '-76.088043', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749071', 3749071, '144.894501', '19.988741', '-106.295998', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749073', 3749073, '142.185501', '20.171949', '-108.059097', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749080', 3749080, '115.432404', '20.583151', '-99.077271', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749083', 3749083, '114.653099', '20.724030', '-96.549553', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749168', 3749168, '312.979492', '-19.718349', '-75.451233', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62252, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749170', 3749170, '261.730194', '-19.718349', '-82.128349', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61980, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749172', 3749172, '274.699402', '-19.718349', '-117.167198', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61708, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749173', 3749173, '291.363098', '-19.718349', '-136.065598', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749174', 3749174, '342.729797', '-19.718349', '-131.071106', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749175', 3749175, '353.724091', '-19.718349', '-85.215424', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749176', 3749176, '333.410095', '-19.718349', '-136.385498', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60620, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749177', 3749177, '319.949188', '-19.718349', '-179.156403', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60348, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749178', 3749178, '308.689301', '-19.718349', '-60.698299', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60142, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749180', 3749180, '311.695190', '-19.718349', '-58.346031', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59870, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749183', 3749183, '330.312012', '-19.729959', '-70.267838', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59598, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749186', 3749186, '296.119995', '-19.718349', '-90.360474', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59326, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749187', 3749187, '293.415802', '-19.718349', '-93.414520', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59054, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749188', 3749188, '290.216614', '-19.718349', '-87.193253', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58782, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749189', 3749189, '258.481415', '-19.718349', '-104.208000', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58510, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749190', 3749190, '252.984802', '-19.718349', '-103.640099', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58238, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749191', 3749191, '257.907715', '-19.718349', '-125.303101', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57966, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749192', 3749192, '286.451904', '-19.718349', '-129.699097', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57694, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749193', 3749193, '282.557892', '-19.718349', '-147.388199', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57422, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749195', 3749195, '310.290314', '-19.718349', '-172.318802', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57150, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749196', 3749196, '313.118591', '-19.718349', '-169.401993', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56878, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749197', 3749197, '310.587006', '-19.718349', '-142.173401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56606, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749199', 3749199, '350.892212', '-19.718349', '-150.816696', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56334, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749200', 3749200, '368.409302', '-19.718349', '-144.276596', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56062, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749201', 3749201, '364.918213', '-19.718349', '-140.378006', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55790, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749202', 3749202, '359.256592', '-19.718349', '-116.557503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55518, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749203', 3749203, '346.291199', '-19.718349', '-105.267899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55246, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749204', 3749204, '371.776215', '-19.718349', '-104.967796', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54974, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(271, 'e0042', 'bnpc3749211', 3749211, '123.998703', '28.662880', '-17.350370', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51474, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(271, 'e0042', 'bnpc3749213', 3749213, '121.332397', '28.612700', '-23.583090', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51208, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(271, 'e0042', 'bnpc3749215', 3749215, '161.791397', '28.213881', '-14.786040', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50936, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(271, 'e0042', 'bnpc3749218', 3749218, '137.021805', '28.624880', '-23.498341', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50658, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(271, 'e0042', 'bnpc3749219', 3749219, '107.272903', '29.216610', '-36.643101', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749222', 3749222, '149.401093', '28.610600', '-15.610050', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50120, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(271, 'e0042', 'bnpc3749223', 3749223, '148.790604', '28.610600', '-15.152280', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49842, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(271, 'e0042', 'bnpc3749225', 3749225, '122.827698', '28.633169', '-37.359280', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749226', 3749226, '104.128304', '29.031771', '-49.110481', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49304, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(271, 'e0042', 'bnpc3749235', 3749235, '93.149368', '29.525270', '-84.964371', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749239', 3749239, '67.895287', '30.429380', '-70.394157', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749240', 3749240, '65.047180', '30.255060', '-77.079674', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749241', 3749241, '44.682369', '28.535789', '-84.546478', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749242', 3749242, '66.806038', '29.155720', '-109.342300', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749245', 3749245, '204.538101', '7.350389', '-181.293304', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749246', 3749246, '174.853104', '5.172761', '-202.929794', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749247', 3749247, '263.069611', '8.545942', '-196.205307', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749252', 3749252, '231.435593', '1.119558', '-165.006302', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749253', 3749253, '173.375305', '2.771811', '-168.286102', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749255', 3749255, '157.126694', '3.796749', '-121.347397', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749257', 3749257, '115.770103', '4.592918', '-127.306099', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749275', 3749275, '161.730301', '-1.754834', '-239.398804', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749277', 3749277, '185.534393', '-1.754834', '-265.705414', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749279', 3749279, '210.539902', '-1.750040', '-309.299408', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749284', 3749284, '211.839401', '-1.750030', '-306.582611', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749290', 3749290, '143.733002', '-1.750026', '-193.558701', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749297', 3749297, '144.345306', '0.955883', '-165.104004', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749310', 3749310, '216.777496', '0.994229', '-97.056053', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749312', 3749312, '169.933899', '2.409006', '-84.351593', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749314', 3749314, '219.378906', '-3.433327', '-46.921539', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749321', 3749321, '277.040192', '-7.191899', '-0.686294', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749327', 3749327, '331.429810', '-13.937110', '-37.954071', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749332', 3749332, '384.322205', '-19.359289', '-5.627488', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749336', 3749336, '382.853088', '-20.412571', '-0.889114', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749338', 3749338, '359.951508', '-16.405090', '-60.846310', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749343', 3749343, '451.404602', '-11.420970', '-118.535599', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749351', 3749351, '384.249603', '-17.667879', '-125.562897', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749357', 3749357, '297.316589', '-19.718349', '-70.108559', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749359', 3749359, '289.558197', '-19.718349', '-103.097801', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749362', 3749362, '240.405807', '-18.104980', '-89.540627', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749364', 3749364, '283.065491', '-19.718349', '-125.167999', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749367', 3749367, '267.129913', '-18.000000', '-169.891296', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749369', 3749369, '264.685486', '-18.000000', '-168.247101', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749370', 3749370, '316.532898', '-19.718349', '-157.003693', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749371', 3749371, '353.619995', '-19.718349', '-109.615997', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749373', 3749373, '339.318695', '-19.718349', '-85.941147', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749376', 3749376, '165.671799', '11.656820', '-52.356880', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749380', 3749380, '172.813995', '6.716133', '-26.881840', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749388', 3749388, '191.772202', '-0.202088', '-35.283329', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749390', 3749390, '136.510300', '18.512560', '-57.480461', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749392', 3749392, '133.468002', '19.606770', '-81.872276', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749396', 3749396, '128.184402', '20.219101', '-102.714104', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749397', 3749397, '116.821999', '23.443171', '-63.701351', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749399', 3749399, '86.653412', '30.354231', '-83.224442', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749402', 3749402, '86.953407', '29.540970', '-103.119400', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3749404', 3749404, '58.939091', '30.914900', '-69.530090', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3751223', 3751223, '27.075630', '19.825541', '-258.167999', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79592, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(271, 'e0042', 'bnpc3751224', 3751224, '25.641180', '19.827999', '-262.593201', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80674, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(271, 'e0042', 'bnpc3751325', 3751325, '-86.401451', '-0.314426', '-202.187195', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3751326', 3751326, '-89.241432', '-0.377375', '-203.793503', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3751327', 3751327, '-54.347431', '10.746100', '-226.743500', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3751329', 3751329, '14.423480', '6.148088', '-236.752106', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3751331', 3751331, '-1.214684', '-0.950067', '-207.831497', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3751332', 3751332, '-12.497190', '11.337410', '-273.731598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3751350', 3751350, '12.680810', '9.512568', '-296.489288', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3751353', 3751353, '-5.330978', '16.424870', '-314.262909', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3751354', 3751354, '-110.742599', '-1.464606', '-173.727402', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3782203', 3782203, '-10.133880', '-3.109667', '-92.309822', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3782206', 3782206, '-5.820518', '-2.317021', '-88.935387', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3782208', 3782208, '-16.094000', '-4.734633', '-82.939987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3782210', 3782210, '-16.866150', '-3.490384', '-51.955761', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3782566', 3782566, '219.465393', '20.017179', '421.855988', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177456, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3782567', 3782567, '215.101303', '19.951290', '418.621094', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177184, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3782571', 3782571, '276.496490', '14.358410', '504.494598', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176912, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3782572', 3782572, '274.299194', '14.525580', '502.022614', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170662, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3782576', 3782576, '223.506195', '14.214930', '465.799103', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176640, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3782578', 3782578, '228.904907', '14.555940', '463.312805', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176368, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3782579', 3782579, '240.208405', '14.734180', '473.802307', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176096, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3782581', 3782581, '203.301804', '12.792270', '451.523285', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175824, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc3782585', 3782585, '230.220703', '14.451260', '471.293915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173926, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(271, 'e0042', 'bnpc4057631', 4057631, '-117.387497', '15.659340', '316.159485', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22414, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(271, 'e0042', 'bnpc4057642', 4057642, '32.356911', '15.912200', '575.715027', 797, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22148, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(271, 'e0042', 'bnpc4057659', 4057659, '-26.174540', '-2.337916', '-130.147400', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21882, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(271, 'e0042', 'bnpc4057662', 4057662, '7.597365', '-2.072273', '-178.519897', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21610, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(271, 'e0042', 'bnpc4621827', 4621827, '-293.653107', '18.424400', '-380.671600', 2770, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22760, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929298', 3929298, '2.578727', '46.242130', '89.066856', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106598, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929300', 3929300, '154.466995', '46.291969', '133.531601', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106870, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929301', 3929301, '-32.773281', '40.774231', '67.215347', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62568, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929303', 3929303, '-28.213820', '41.179878', '64.173943', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62296, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929305', 3929305, '8.662592', '42.689850', '45.686710', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62024, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929306', 3929306, '13.183170', '42.815102', '41.155972', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61752, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929307', 3929307, '12.633850', '42.762321', '45.031761', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61480, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929308', 3929308, '83.202133', '43.374279', '33.127289', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61208, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929310', 3929310, '107.530296', '44.219631', '32.892910', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60936, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929311', 3929311, '110.185303', '44.303749', '30.939760', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60664, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929313', 3929313, '-41.367249', '44.463268', '115.983803', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134868, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929315', 3929315, '-64.483994', '44.221882', '108.658401', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 0, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134596, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929319', 3929319, '-62.882469', '44.443130', '110.643097', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929320', 3929320, '-67.124481', '43.839500', '114.061096', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134052, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929322', 3929322, '-84.184067', '44.665230', '140.856003', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133780, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929323', 3929323, '-86.198257', '45.235828', '143.511002', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929326', 3929326, '-72.007370', '42.584850', '150.499695', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929327', 3929327, '9.933576', '43.348518', '109.513901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929330', 3929330, '-16.098310', '44.986568', '99.015739', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132692, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929331', 3929331, '-18.173540', '45.462231', '95.170471', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929332', 3929332, '5.935712', '46.903179', '76.340843', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929333', 3929333, '31.174129', '43.952351', '145.616806', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929334', 3929334, '39.963329', '44.737961', '148.119293', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131604, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929335', 3929335, '31.357241', '44.031109', '155.077393', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131332, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929336', 3929336, '38.651051', '44.626740', '146.440796', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929338', 3929338, '38.895199', '44.219131', '96.910004', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929339', 3929339, '42.160629', '44.387291', '96.482742', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130516, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929340', 3929340, '6.515503', '32.613819', '167.589798', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130244, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929342', 3929342, '-15.976240', '28.111290', '180.102203', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129972, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929343', 3929343, '-17.563181', '28.060829', '182.726700', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129700, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929344', 3929344, '-5.020265', '23.736271', '199.389603', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929345', 3929345, '-3.494363', '24.235390', '196.307297', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129156, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929346', 3929346, '-1.510690', '23.913940', '198.748703', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929347', 3929347, '17.227421', '29.147539', '192.309402', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128612, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929353', 3929353, '76.584961', '46.652691', '118.364098', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128340, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929355', 3929355, '100.907799', '48.208359', '64.560791', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128068, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929356', 3929356, '103.440804', '48.287861', '69.260620', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929357', 3929357, '97.886597', '48.162868', '66.422493', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127524, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929358', 3929358, '75.394783', '47.995930', '57.511230', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127252, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929359', 3929359, '72.770264', '48.021091', '55.741089', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126980, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929361', 3929361, '97.978149', '47.044201', '84.183960', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126708, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929362', 3929362, '133.287506', '48.588211', '77.775269', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126436, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929363', 3929363, '135.271103', '48.582859', '78.843384', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126164, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929364', 3929364, '134.172607', '48.281239', '57.785889', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125892, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929366', 3929366, '131.364899', '46.312809', '110.704102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125620, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929367', 3929367, '134.965897', '46.384861', '111.589203', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125348, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929369', 3929369, '133.928497', '46.630039', '108.415298', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125076, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929370', 3929370, '160.601196', '47.107681', '107.804901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124804, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929371', 3929371, '158.648102', '47.043930', '108.811996', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124532, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929373', 3929373, '87.449463', '46.439480', '122.392601', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124260, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929374', 3929374, '89.402588', '46.291409', '119.066002', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123988, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929379', 3929379, '79.026489', '46.295200', '172.747299', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123722, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929381', 3929381, '55.313839', '47.580700', '188.036896', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123450, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929382', 3929382, '59.983150', '48.833561', '191.790604', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123178, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929383', 3929383, '55.496948', '49.485981', '193.255493', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122906, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929384', 3929384, '40.207520', '50.527809', '210.284500', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122634, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929385', 3929385, '37.171730', '50.727009', '213.792206', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122362, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929386', 3929386, '68.163307', '56.521938', '225.312607', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122090, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929387', 3929387, '54.398369', '56.626060', '241.565506', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121818, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929388', 3929388, '72.589951', '56.790089', '227.695297', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121546, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929389', 3929389, '116.563599', '50.650009', '183.367706', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121274, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929390', 3929390, '120.317299', '49.333080', '176.928299', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121002, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929391', 3929391, '112.138496', '57.097969', '213.153198', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120730, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929392', 3929392, '127.885902', '49.931992', '177.782806', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120458, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929394', 3929394, '115.251297', '57.518108', '214.251801', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120186, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929396', 3929396, '125.779999', '52.105469', '187.182404', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119914, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929397', 3929397, '108.506798', '46.810520', '148.088699', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119642, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929398', 3929398, '105.393997', '46.639080', '146.959595', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119370, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929400', 3929400, '175.585602', '47.639019', '147.630997', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119098, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929401', 3929401, '183.975204', '48.843269', '153.229202', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118826, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929403', 3929403, '178.149002', '47.405022', '144.853806', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118554, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929404', 3929404, '186.666794', '55.711109', '189.380295', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118282, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929405', 3929405, '183.897797', '55.522209', '192.259796', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118010, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929406', 3929406, '188.514496', '58.364479', '196.141098', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117738, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929407', 3929407, '190.993103', '63.780270', '212.770905', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117466, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929408', 3929408, '167.906097', '54.582249', '207.555405', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117194, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929409', 3929409, '142.684006', '57.000031', '221.431396', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116922, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929410', 3929410, '137.517303', '57.770241', '224.725601', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116650, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929412', 3929412, '140.714096', '57.641670', '227.264099', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116378, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929413', 3929413, '147.277206', '57.573250', '230.267700', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116106, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929415', 3929415, '132.701004', '59.887051', '252.613098', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115834, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929416', 3929416, '155.349503', '60.722469', '262.394104', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115562, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929417', 3929417, '152.622498', '60.751789', '265.042389', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115290, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929420', 3929420, '54.698360', '61.151402', '279.140015', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115018, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929421', 3929421, '56.888519', '60.853931', '277.569885', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114746, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929423', 3929423, '74.967529', '46.674271', '133.257004', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107142, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929428', 3929428, '-79.240143', '44.199680', '141.771500', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114480, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929431', 3929431, '-49.668159', '44.146759', '101.335098', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114208, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929432', 3929432, '-5.630626', '46.383801', '88.914268', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113936, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(272, 'e0039', 'bnpc3929433', 3929433, '38.284840', '47.256828', '61.997360', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113664, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929435', 3929435, '37.766029', '44.173309', '103.105202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113392, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929438', 3929438, '33.798679', '44.230461', '150.377594', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113120, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929439', 3929439, '23.575130', '32.314270', '182.543701', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112848, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929440', 3929440, '24.704220', '32.888840', '184.801895', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112576, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929441', 3929441, '-7.156528', '28.523640', '176.836700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112304, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929442', 3929442, '8.926480', '28.079479', '213.183701', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112032, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929443', 3929443, '107.194603', '45.562160', '101.762497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111760, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929444', 3929444, '107.499802', '45.309570', '104.722702', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111488, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929445', 3929445, '96.330078', '47.994221', '51.621220', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111216, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929446', 3929446, '136.522293', '48.535961', '75.516853', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110944, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929489', 3929489, '104.234398', '46.884571', '152.330795', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110672, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929492', 3929492, '92.393311', '56.364761', '218.402298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929494', 3929494, '37.064091', '49.279091', '203.295898', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110128, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929495', 3929495, '86.381348', '47.170170', '181.353394', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109856, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929497', 3929497, '83.939819', '47.040508', '183.794907', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109584, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929498', 3929498, '91.314941', '60.775452', '256.840088', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109312, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929500', 3929500, '134.705704', '59.571301', '250.694107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109040, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929501', 3929501, '131.525299', '61.218529', '277.023590', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108768, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929502', 3929502, '200.545807', '49.630661', '148.869003', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108496, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929504', 3929504, '198.987793', '50.079350', '152.091995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108224, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929505', 3929505, '178.837997', '53.123459', '189.309799', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107952, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929506', 3929506, '181.171707', '59.001560', '223.100006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107680, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929507', 3929507, '126.924500', '58.802368', '223.399994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107408, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929728', 3929728, '57.677570', '57.037601', '-252.600006', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60392, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929730', 3929730, '16.799730', '54.286369', '-250.227097', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60120, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929731', 3929731, '21.166161', '54.789558', '-247.635101', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59848, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929733', 3929733, '-38.999229', '46.458340', '-213.513901', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59576, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929734', 3929734, '-72.817390', '45.500000', '-170.936401', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59304, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929735', 3929735, '-68.148132', '45.500000', '-172.858994', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59032, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929736', 3929736, '-70.620087', '45.500000', '-166.297607', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58760, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929737', 3929737, '-110.856796', '44.284451', '-131.487106', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58488, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929738', 3929738, '-101.976097', '45.015499', '-129.716995', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58216, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929740', 3929740, '-167.498306', '40.500000', '-61.966919', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57944, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929741', 3929741, '-167.193100', '40.500000', '-66.147888', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57672, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929742', 3929742, '-183.581406', '41.007771', '-109.056297', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929746', 3929746, '80.869362', '49.270599', '7.434502', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105496, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929747', 3929747, '29.012220', '49.028271', '-3.487470', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105224, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929748', 3929748, '77.311432', '49.709980', '3.491879', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104952, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929749', 3929749, '81.834106', '54.978149', '-65.232361', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104680, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929750', 3929750, '87.083130', '55.954830', '-70.298401', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104408, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929751', 3929751, '106.034897', '57.114498', '-51.468689', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104136, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929752', 3929752, '105.891502', '62.411079', '-101.484497', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103864, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929753', 3929753, '109.310799', '62.695950', '-97.230469', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103592, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929754', 3929754, '112.249298', '64.482712', '-105.898697', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103320, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929756', 3929756, '11.047700', '51.170399', '-56.780079', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103048, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929757', 3929757, '7.333039', '50.839249', '-59.004021', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102776, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929758', 3929758, '-9.942499', '48.132980', '-25.451969', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102504, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929759', 3929759, '-5.731009', '48.580139', '-23.376751', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102232, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929761', 3929761, '-0.174012', '53.131248', '-111.148903', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101960, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929762', 3929762, '-7.256910', '48.664841', '-31.555580', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101688, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929763', 3929763, '-0.610147', '46.842758', '24.196171', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101416, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929764', 3929764, '-16.474920', '49.226559', '-89.968887', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101144, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929765', 3929765, '-27.792070', '47.072651', '8.583298', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53810, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929767', 3929767, '76.915253', '51.330029', '-32.258850', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53538, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929769', 3929769, '-43.220982', '46.402618', '25.789110', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100872, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929770', 3929770, '3.832037', '53.483231', '-114.631203', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100600, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929771', 3929771, '12.344500', '52.316029', '-102.067596', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100328, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929772', 3929772, '-38.788712', '46.775139', '22.066339', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100056, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929773', 3929773, '-37.919960', '46.459820', '29.848379', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99784, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929774', 3929774, '-80.033630', '42.496342', '35.263550', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99512, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929776', 3929776, '-91.857826', '43.085781', '-23.419170', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99240, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929777', 3929777, '-87.681976', '42.651001', '-20.729090', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98968, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929778', 3929778, '-153.286896', '41.687149', '-29.617990', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98696, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929779', 3929779, '-149.248505', '42.913052', '-34.195511', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98424, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929780', 3929780, '-146.114700', '41.510841', '-23.279819', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98152, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929781', 3929781, '-91.557831', '45.832359', '-74.574440', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97880, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929782', 3929782, '-94.882561', '46.208530', '-79.633614', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97608, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929783', 3929783, '-87.110580', '46.547352', '-86.619080', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97336, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929786', 3929786, '-96.894127', '45.010529', '-44.811169', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97064, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929787', 3929787, '-62.452171', '48.231701', '-104.740601', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96792, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929794', 3929794, '-178.942596', '43.561249', '-181.994400', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96520, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929795', 3929795, '-126.848297', '47.734409', '-169.207306', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96248, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929796', 3929796, '-194.842499', '42.180161', '-142.809296', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95976, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929800', 3929800, '-192.279007', '41.889690', '-147.600601', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95704, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929801', 3929801, '-122.087502', '48.332630', '-170.000793', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95432, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929802', 3929802, '-123.918503', '48.047798', '-161.486298', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95160, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929803', 3929803, '-229.663605', '39.878719', '-179.980194', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94888, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929804', 3929804, '-181.170395', '41.225609', '-251.667099', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94616, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929805', 3929805, '-185.351303', '41.346439', '-247.821793', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94344, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929806', 3929806, '-195.330795', '40.334259', '-258.991394', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94072, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929808', 3929808, '131.630295', '52.191109', '0.493474', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54414, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(272, 'e0039', 'bnpc3929810', 3929810, '132.709000', '52.181438', '1.958378', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55230, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(272, 'e0039', 'bnpc3929812', 3929812, '115.385597', '49.234230', '11.315280', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54686, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(272, 'e0039', 'bnpc3929813', 3929813, '117.565399', '49.175140', '13.275840', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56046, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(272, 'e0039', 'bnpc3929815', 3929815, '118.431900', '49.488010', '10.180580', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56318, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(272, 'e0039', 'bnpc3929817', 3929817, '106.367798', '48.645981', '15.557140', 769, 0, 0, 0, 1, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55502, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(272, 'e0039', 'bnpc3929818', 3929818, '120.948303', '51.064060', '-0.143817', 769, 0, 0, 0, 1, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55774, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(272, 'e0039', 'bnpc3929820', 3929820, '134.218094', '51.528179', '9.775265', 769, 0, 0, 0, 1, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54958, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(272, 'e0039', 'bnpc3929826', 3929826, '-13.135430', '48.986919', '-86.472923', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93800, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929828', 3929828, '54.727501', '50.161850', '-32.944271', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93528, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929829', 3929829, '64.597313', '54.990398', '-122.676598', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929831', 3929831, '66.026863', '55.127190', '-121.580200', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929832', 3929832, '64.993713', '54.756149', '-119.316101', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929834', 3929834, '-11.130180', '54.068581', '-151.851303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929835', 3929835, '19.661039', '55.244888', '-153.973495', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929836', 3929836, '18.231480', '55.455791', '-155.069901', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929838', 3929838, '-9.406013', '54.140652', '-151.402298', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929839', 3929839, '-10.487150', '54.255268', '-153.170502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929843', 3929843, '24.606649', '60.413231', '-187.828293', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929844', 3929844, '26.036209', '60.638901', '-186.731903', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929845', 3929845, '28.305441', '61.087551', '-194.048996', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929846', 3929846, '-13.216780', '58.348202', '-191.121994', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929847', 3929847, '-11.787220', '58.581120', '-190.025604', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929849', 3929849, '51.002171', '62.513901', '-171.321503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929850', 3929850, '52.431728', '62.561481', '-170.225098', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929851', 3929851, '50.250092', '61.812469', '-168.366302', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929856', 3929856, '56.742020', '62.683529', '-167.113602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929857', 3929857, '91.871223', '65.801552', '-162.567993', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929858', 3929858, '91.084763', '66.005180', '-164.451996', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88366, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929859', 3929859, '119.531303', '72.554298', '-168.638596', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929861', 3929861, '119.737503', '69.204010', '-146.898697', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929862', 3929862, '118.303101', '68.822662', '-147.997299', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929863', 3929863, '117.112900', '68.311539', '-134.325195', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929864', 3929864, '117.540199', '68.388046', '-145.037003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929873', 3929873, '118.584702', '77.068329', '-192.023804', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929874', 3929874, '119.371101', '77.166290', '-190.139801', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929875', 3929875, '96.033737', '71.784462', '-206.070999', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929876', 3929876, '147.231293', '84.770142', '-179.634399', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85918, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929878', 3929878, '131.732498', '84.239113', '-214.769608', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85646, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929879', 3929879, '129.449295', '83.200447', '-214.469604', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85374, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929880', 3929880, '117.078697', '76.359550', '-189.839798', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929886', 3929886, '-9.820036', '57.888222', '-265.562714', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929888', 3929888, '-8.463858', '57.920422', '-266.546692', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929892', 3929892, '-36.288441', '54.051159', '-264.804810', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929895', 3929895, '-37.718620', '55.539761', '-246.754105', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929896', 3929896, '-36.105400', '55.795471', '-247.488297', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929897', 3929897, '-35.805401', '55.647850', '-244.752502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929898', 3929898, '-72.558617', '52.311829', '-247.421906', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929899', 3929899, '-72.858627', '52.571899', '-250.157700', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929900', 3929900, '-74.471848', '52.134220', '-249.423401', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929902', 3929902, '-74.133102', '52.444199', '-251.412003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929903', 3929903, '-61.128719', '54.917782', '-276.469696', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929905', 3929905, '-62.202911', '55.073421', '-276.169708', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929906', 3929906, '-87.521019', '49.709011', '-267.128387', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929907', 3929907, '-103.837601', '46.340569', '-243.640900', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929908', 3929908, '-102.189697', '46.624069', '-244.434296', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929910', 3929910, '-89.931953', '49.147942', '-266.121399', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929911', 3929911, '-88.406036', '49.520420', '-265.144806', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80478, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929913', 3929913, '-94.834862', '44.620140', '-289.814606', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929914', 3929914, '-93.431030', '44.502659', '-291.523712', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929918', 3929918, '-156.328705', '41.211071', '-257.953796', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929919', 3929919, '-154.711197', '41.244331', '-258.686310', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929921', 3929921, '-122.943001', '43.252022', '-286.232788', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929922', 3929922, '-109.323997', '40.309811', '-324.737396', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929923', 3929923, '-110.727898', '40.159351', '-323.028412', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929924', 3929924, '-108.366302', '40.562851', '-322.496002', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929925', 3929925, '-68.430206', '45.267422', '-308.626495', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929926', 3929926, '-51.165970', '45.726879', '-353.049713', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929927', 3929927, '-49.648022', '45.907570', '-352.084595', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77486, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929928', 3929928, '-48.759708', '45.997150', '-354.053986', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77214, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929929', 3929929, '-54.654140', '45.340069', '-370.533600', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76942, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929930', 3929930, '-54.354141', '45.342510', '-373.142303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76670, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929931', 3929931, '-90.540337', '39.280819', '-353.994690', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76398, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929932', 3929932, '-90.840347', '39.428822', '-351.385986', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76126, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929933', 3929933, '-60.107460', '55.697620', '-260.511414', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54082, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929934', 3929934, '-164.141403', '44.110901', '-217.517303', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75860, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929935', 3929935, '-144.975998', '45.815300', '-200.640900', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75588, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929936', 3929936, '-136.644501', '45.374001', '-218.646606', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75316, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929937', 3929937, '-131.304001', '45.701130', '-214.709702', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75044, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3929938', 3929938, '-66.976334', '25.431820', '-148.179199', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929940', 3929940, '-57.442081', '24.957350', '-153.725693', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929941', 3929941, '-53.170090', '26.263571', '-128.472107', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929942', 3929942, '-67.405273', '26.238400', '-132.898193', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929943', 3929943, '-55.497108', '26.236170', '-126.848297', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929944', 3929944, '-58.530079', '27.712959', '-111.586197', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929945', 3929945, '-55.685059', '24.922501', '-155.193802', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929948', 3929948, '-46.655151', '25.719770', '-144.661301', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3929954', 3929954, '-58.565269', '51.362320', '-226.270996', 348, 0, 0, 0, 0, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72608, 3, 0, 0, 0, 0, 30073, 0, 0, 0), +(272, 'e0039', 'bnpc3929955', 3929955, '-56.209209', '52.730179', '-234.378098', 349, 0, 0, 0, 1, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72342, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(272, 'e0039', 'bnpc3929957', 3929957, '-64.286301', '51.072021', '-224.902802', 349, 0, 0, 0, 1, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72070, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(272, 'e0039', 'bnpc3929959', 3929959, '-60.089680', '51.823978', '-230.541000', 349, 0, 0, 0, 1, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71798, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(272, 'e0039', 'bnpc3929960', 3929960, '-64.276390', '50.332390', '-220.639801', 349, 0, 0, 0, 0, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71526, 3, 0, 0, 0, 0, 30079, 0, 0, 0), +(272, 'e0039', 'bnpc3929962', 3929962, '-63.299820', '50.321152', '-220.334595', 348, 0, 0, 0, 0, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71248, 3, 0, 0, 0, 0, 30082, 0, 0, 0), +(272, 'e0039', 'bnpc3929963', 3929963, '-66.534210', '51.498051', '-231.124802', 348, 0, 0, 0, 1, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70976, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(272, 'e0039', 'bnpc3929964', 3929964, '-71.434937', '49.349220', '-217.996902', 348, 0, 0, 0, 1, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70704, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(272, 'e0039', 'bnpc3929966', 3929966, '-57.328251', '51.480759', '-227.008499', 350, 0, 0, 0, 0, 6, 0, 0, 419, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70444, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(272, 'e0039', 'bnpc3930079', 3930079, '2.853394', '47.348751', '19.333130', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70178, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930083', 3930083, '98.893677', '51.255001', '-19.302670', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930087', 3930087, '79.819946', '55.375000', '-73.319641', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930089', 3930089, '11.367920', '50.858280', '-64.957703', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930092', 3930092, '-19.729919', '46.707760', '-29.587280', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69090, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930094', 3930094, '-25.955629', '51.285519', '-122.240097', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930097', 3930097, '-27.878300', '50.766720', '-117.967499', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68546, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930100', 3930100, '81.406860', '64.560791', '-160.418198', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68274, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930105', 3930105, '131.548004', '84.245003', '-218.036194', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68002, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930109', 3930109, '111.113503', '74.884857', '-194.245605', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67730, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930110', 3930110, '28.519039', '61.112301', '-189.013504', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67458, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930112', 3930112, '-4.593018', '58.915039', '-205.523697', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67186, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930113', 3930113, '3.555298', '56.168461', '-161.730392', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930118', 3930118, '-122.117996', '45.761719', '-79.270630', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66642, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930123', 3930123, '-118.181198', '42.313229', '-6.424072', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930124', 3930124, '-40.451721', '45.426029', '43.106689', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930125', 3930125, '-56.534729', '45.853390', '3.311157', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930127', 3930127, '-76.127258', '43.228760', '-43.289860', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65554, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930128', 3930128, '-213.427994', '39.292461', '-150.652298', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930129', 3930129, '-174.792099', '43.778080', '-200.488297', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930130', 3930130, '-178.332199', '41.714760', '-243.854507', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930132', 3930132, '-82.078308', '51.346561', '-266.498810', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930133', 3930133, '-48.081181', '54.215328', '-241.352005', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64194, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930138', 3930138, '-142.076797', '40.268429', '-293.263092', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63922, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930141', 3930141, '-140.245697', '40.848389', '-289.845215', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63650, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930143', 3930143, '-44.602112', '46.372070', '-358.907501', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63378, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930147', 3930147, '-57.785950', '46.097530', '-316.426300', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63106, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930151', 3930151, '-55.863281', '46.250000', '-314.839508', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62834, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930182', 3930182, '-304.707397', '13.931440', '-297.352600', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52976, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930185', 3930185, '-317.921814', '14.511280', '-319.874908', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52704, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930186', 3930186, '-356.069305', '13.626260', '-315.358185', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52432, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930188', 3930188, '-346.212006', '15.915110', '-343.556885', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52160, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930190', 3930190, '-357.564697', '16.983240', '-350.606598', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51888, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930192', 3930192, '-365.224701', '24.277060', '-387.899597', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51616, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930193', 3930193, '-372.335388', '24.032909', '-383.108307', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51344, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930194', 3930194, '-242.989197', '12.764750', '-304.178589', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51072, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930195', 3930195, '-245.276901', '15.323140', '-347.073608', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50800, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930196', 3930196, '-241.837601', '15.504950', '-360.820190', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50528, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930197', 3930197, '-231.249405', '14.674970', '-351.945709', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50256, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930198', 3930198, '-279.758698', '23.224979', '-379.012512', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49984, 5, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(272, 'e0039', 'bnpc3930199', 3930199, '-287.296814', '23.576111', '-386.822815', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49712, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930200', 3930200, '-300.179901', '19.009211', '-361.576294', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49440, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930203', 3930203, '-344.047791', '28.847330', '-431.588806', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49168, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930207', 3930207, '-327.870605', '22.171310', '-400.259399', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48896, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930213', 3930213, '-179.705505', '16.617029', '-403.463806', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930216', 3930216, '-146.990204', '14.297660', '-392.843506', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930219', 3930219, '-175.310898', '16.525471', '-404.928711', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930224', 3930224, '-229.388901', '22.812189', '-440.299103', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930227', 3930227, '-197.039795', '24.795860', '-452.140106', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930229', 3930229, '-216.937500', '26.810061', '-472.739807', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47270, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930231', 3930231, '-222.980103', '23.453070', '-442.618500', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46998, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930232', 3930232, '-283.527893', '22.018740', '-432.181305', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46726, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930233', 3930233, '-250.629501', '24.917971', '-481.406891', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46454, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930234', 3930234, '-223.682007', '32.577961', '-507.713501', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46182, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930235', 3930235, '-228.229202', '31.876051', '-511.985992', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45910, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930236', 3930236, '-213.031204', '32.272781', '-537.346497', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45638, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930237', 3930237, '-249.988602', '30.502741', '-572.350586', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45366, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930240', 3930240, '-252.735199', '33.310398', '-597.344971', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930241', 3930241, '-255.390305', '33.768169', '-600.732422', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930242', 3930242, '-284.290894', '30.136520', '-561.608276', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930245', 3930245, '-317.302002', '35.589191', '-591.171570', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930246', 3930246, '-321.442505', '33.511250', '-583.939514', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930247', 3930247, '-331.995605', '36.578739', '-597.355713', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930248', 3930248, '-354.800690', '33.443390', '-535.994385', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43462, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930250', 3930250, '-367.069611', '33.580250', '-493.158600', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43190, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930252', 3930252, '-374.167297', '34.022141', '-483.473907', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42918, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930253', 3930253, '-370.490387', '33.450420', '-481.198914', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42646, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930254', 3930254, '-325.906097', '27.601170', '-476.435211', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42374, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930255', 3930255, '-322.883911', '27.180950', '-472.301392', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930258', 3930258, '-323.219299', '26.630880', '-526.640625', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(272, 'e0039', 'bnpc3930270', 3930270, '-365.179810', '12.493070', '-307.350189', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41564, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930271', 3930271, '-422.502197', '12.677160', '-307.390991', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41292, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930274', 3930274, '-425.462402', '12.762100', '-310.618195', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41020, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930277', 3930277, '-222.915207', '12.294620', '-317.636810', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40748, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930278', 3930278, '-226.158997', '12.534600', '-317.995789', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40476, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930280', 3930280, '-196.398895', '12.222430', '-355.031708', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40204, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930281', 3930281, '-74.238098', '12.130030', '-410.146606', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39932, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930283', 3930283, '-21.098070', '11.319840', '-436.355804', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930284', 3930284, '-3.859158', '14.732280', '-457.622314', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930285', 3930285, '-24.365191', '12.386510', '-452.972687', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39116, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3930286', 3930286, '-6.057117', '14.506850', '-455.250793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38844, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3931787', 3931787, '-269.609711', '22.980930', '-390.658813', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3931791', 3931791, '-271.683899', '13.930550', '-319.410187', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3931792', 3931792, '-269.811615', '14.350880', '-322.618713', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3931793', 3931793, '-312.711609', '13.906600', '-302.460907', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3931795', 3931795, '-204.028397', '13.900940', '-394.735687', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3931796', 3931796, '-231.464203', '25.436769', '-471.122314', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3931798', 3931798, '-201.647995', '24.643311', '-457.297699', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3931799', 3931799, '-243.150803', '26.919580', '-525.615479', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3932161', 3932161, '-207.015305', '32.560860', '-562.758789', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3932162', 3932162, '-244.633408', '29.896629', '-566.727112', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3932164', 3932164, '-269.969910', '33.304001', '-589.321411', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3932166', 3932166, '-286.629089', '24.500669', '-532.985291', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3932167', 3932167, '-284.197998', '25.013651', '-536.186523', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3932168', 3932168, '-357.327911', '32.973610', '-562.442871', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3932170', 3932170, '-331.616302', '28.746330', '-468.081787', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3932171', 3932171, '-298.664886', '23.056339', '-406.912415', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3932173', 3932173, '-377.859802', '25.497511', '-389.074188', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3932175', 3932175, '-350.521088', '18.624069', '-355.627014', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc3932176', 3932176, '-379.679993', '13.370460', '-319.535095', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4024349', 4024349, '-95.414726', '47.931198', '-199.847397', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4024350', 4024350, '-97.032097', '47.837219', '-199.084503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4024351', 4024351, '-95.109558', '48.244461', '-196.093704', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4056974', 4056974, '-10.772860', '41.723129', '131.511597', 783, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20370, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(272, 'e0039', 'bnpc4296703', 4296703, '220.339401', '103.033401', '-192.118607', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19236, 8, 0, 0, 4296693, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4296705', 4296705, '244.738297', '105.634201', '-204.802994', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18964, 8, 0, 0, 4296689, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4296707', 4296707, '249.144104', '105.712402', '-208.740204', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18692, 8, 0, 0, 4296690, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4296708', 4296708, '253.558899', '105.985802', '-214.094299', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18420, 8, 0, 0, 4296691, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4296709', 4296709, '226.015106', '103.203697', '-193.008301', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18148, 8, 0, 0, 4296694, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4621598', 4621598, '-494.667999', '21.636040', '-302.079010', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29960, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4867876', 4867876, '28.213869', '50.827759', '-87.998840', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29486, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4867877', 4867877, '41.707401', '51.156799', '-86.539299', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29214, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4867878', 4867878, '39.668598', '51.736500', '-101.188400', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28942, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4867879', 4867879, '34.538631', '50.845268', '-83.984108', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28676, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4867880', 4867880, '24.472219', '51.118671', '-92.466171', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28404, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4867881', 4867881, '24.319870', '52.536991', '-109.234901', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28132, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4867882', 4867882, '55.329231', '53.690331', '-96.379692', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27860, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4867883', 4867883, '35.340740', '52.012718', '-113.983498', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27588, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4867884', 4867884, '20.250629', '52.350960', '-103.253700', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27316, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4867885', 4867885, '51.540489', '52.848961', '-79.500076', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27044, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4867886', 4867886, '41.456211', '51.357250', '-93.443268', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26772, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4867887', 4867887, '35.558880', '51.834862', '-105.446701', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26500, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4867888', 4867888, '23.570000', '50.670292', '-81.777740', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26228, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4867889', 4867889, '51.948132', '52.700432', '-106.025299', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25956, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4867890', 4867890, '27.729429', '51.344398', '-95.375870', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25684, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4892334', 4892334, '136.626007', '48.560169', '61.895821', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24494, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4892335', 4892335, '131.496002', '48.619511', '79.100121', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24228, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4892336', 4892336, '121.429604', '48.684132', '70.618050', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23956, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4892337', 4892337, '121.277298', '47.602539', '53.849319', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23684, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4892338', 4892338, '138.664795', '48.539879', '76.544930', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23406, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4892339', 4892339, '117.208000', '48.099979', '59.830521', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23140, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4892340', 4892340, '132.298096', '47.763882', '49.100731', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22868, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4892341', 4892341, '152.286697', '49.492531', '66.704536', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22596, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4892342', 4892342, '125.171303', '48.678471', '75.085381', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22318, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4892343', 4892343, '120.527397', '48.525890', '81.306480', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22052, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4892344', 4892344, '148.497894', '48.561459', '83.584137', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21780, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4892345', 4892345, '148.905502', '49.877151', '57.058929', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21508, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4892346', 4892346, '124.762199', '48.546471', '67.801064', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21236, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4892347', 4892347, '132.516296', '48.171822', '57.637520', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20964, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(272, 'e0039', 'bnpc4892348', 4892348, '138.413605', '48.645409', '69.640953', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20692, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926308', 3926308, '376.795502', '84.142036', '107.708504', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154812, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926338', 3926338, '375.147491', '84.022469', '106.274200', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154540, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926351', 3926351, '405.431488', '88.082703', '99.945763', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154268, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926354', 3926354, '409.251190', '88.844963', '97.093102', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153996, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926358', 3926358, '378.901215', '84.631958', '104.412598', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153724, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926365', 3926365, '407.170990', '88.157288', '101.532700', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153452, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926371', 3926371, '392.339203', '86.636040', '181.099197', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153180, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926372', 3926372, '396.068207', '86.811653', '179.238007', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152908, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926373', 3926373, '393.988495', '86.897270', '182.527893', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152636, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926381', 3926381, '411.703613', '88.297813', '162.003098', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152364, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926382', 3926382, '410.055603', '88.039360', '160.599197', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152092, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926386', 3926386, '394.559601', '85.026733', '153.758499', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151820, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926391', 3926391, '410.144012', '88.683350', '189.622894', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151548, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926417', 3926417, '417.375885', '87.742783', '131.569901', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926439', 3926439, '345.812805', '76.219322', '212.725998', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926440', 3926440, '344.548309', '75.438789', '207.299393', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926441', 3926441, '348.012512', '76.039337', '211.108795', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926464', 3926464, '356.043793', '74.743179', '151.343094', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926465', 3926465, '352.759186', '74.743149', '149.888596', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926467', 3926467, '367.410095', '80.423607', '133.246597', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926481', 3926481, '353.852814', '80.577820', '117.643204', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926484', 3926484, '351.360199', '79.902428', '120.108704', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926487', 3926487, '355.985199', '80.082771', '121.892502', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926490', 3926490, '373.090698', '84.220062', '99.076653', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926522', 3926522, '406.246887', '86.759048', '111.752296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926526', 3926526, '325.732788', '66.676826', '171.598495', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926537', 3926537, '328.927612', '68.512451', '191.103607', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926539', 3926539, '326.017792', '67.722847', '188.876999', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926541', 3926541, '342.366608', '72.409378', '178.265305', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926543', 3926543, '340.851105', '72.117889', '182.389893', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926545', 3926545, '339.368805', '71.684380', '180.432800', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926547', 3926547, '329.747711', '68.403687', '149.117706', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926548', 3926548, '327.065491', '67.092491', '170.001404', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926552', 3926552, '319.223511', '67.064529', '203.825699', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926557', 3926557, '307.153687', '65.648338', '183.776306', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926564', 3926564, '315.245087', '65.419243', '134.686005', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926565', 3926565, '313.912415', '65.218117', '136.283096', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926572', 3926572, '310.648285', '65.000732', '131.124893', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926578', 3926578, '301.380890', '64.171013', '142.769608', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926601', 3926601, '261.503296', '53.867599', '124.334000', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926644', 3926644, '295.185699', '60.044201', '169.695496', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926653', 3926653, '293.079987', '59.372799', '172.716797', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132792, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926658', 3926658, '296.070709', '60.135750', '174.090103', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133064, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926660', 3926660, '257.465393', '54.488819', '176.080399', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134152, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926665', 3926665, '279.163788', '55.806110', '134.904999', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133336, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926667', 3926667, '277.598999', '55.429420', '137.030197', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131976, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926670', 3926670, '269.266907', '56.155140', '106.412498', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132520, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926677', 3926677, '260.700409', '54.871441', '108.842598', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132248, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926683', 3926683, '261.666290', '55.104469', '106.238503', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134696, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926716', 3926716, '257.191193', '55.945511', '220.022095', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926717', 3926717, '258.076202', '55.964081', '224.416702', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926718', 3926718, '255.085403', '55.855000', '223.043396', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134424, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926733', 3926733, '243.941101', '55.670811', '235.884598', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133608, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926750', 3926750, '258.564087', '54.697350', '178.949097', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133880, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926769', 3926769, '413.944397', '89.309250', '158.034897', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148018, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926800', 3926800, '407.416199', '87.761620', '175.019302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147746, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926801', 3926801, '406.609985', '87.629570', '176.598602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147474, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926804', 3926804, '392.991699', '87.757637', '191.946198', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147202, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926805', 3926805, '387.339111', '84.919083', '134.093994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146930, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926808', 3926808, '354.084900', '81.902718', '100.424797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146658, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926810', 3926810, '422.356903', '89.050278', '114.571297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146386, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926812', 3926812, '421.045013', '88.772667', '115.796600', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146114, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926815', 3926815, '403.283386', '86.085800', '113.897499', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145842, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926821', 3926821, '370.507996', '82.400093', '117.661697', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145570, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926825', 3926825, '367.792389', '81.913681', '118.807602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926829', 3926829, '360.534485', '74.935432', '148.181396', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145026, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926837', 3926837, '378.317413', '79.842934', '162.415802', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144754, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926847', 3926847, '376.053986', '78.965889', '164.143707', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926848', 3926848, '369.552399', '77.052002', '192.962997', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144210, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926854', 3926854, '346.371490', '75.720573', '208.895203', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143938, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926858', 3926858, '363.167694', '77.767464', '219.355392', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143666, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926860', 3926860, '371.780212', '77.339363', '194.397400', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926868', 3926868, '369.826996', '77.102577', '196.960907', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143116, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3926883', 3926883, '344.452301', '72.995819', '181.059906', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926890', 3926890, '328.520813', '67.640129', '172.850403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926891', 3926891, '311.090302', '65.890671', '189.672195', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926896', 3926896, '309.819885', '64.657661', '145.602493', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926898', 3926898, '328.420197', '67.645653', '147.350800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141762, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926899', 3926899, '317.188690', '65.970573', '128.639603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141490, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926902', 3926902, '318.570007', '65.981651', '129.865601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141218, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926912', 3926912, '275.386810', '55.162628', '134.854202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140946, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926915', 3926915, '264.207703', '55.231709', '109.226501', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140674, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926917', 3926917, '260.486694', '54.760460', '176.782303', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926928', 3926928, '254.790497', '55.815201', '226.529297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926929', 3926929, '242.801407', '55.684689', '237.647995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3926930', 3926930, '241.351593', '55.604931', '235.930405', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139586, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927149', 3927149, '27.696630', '50.949940', '203.695496', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130588, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927150', 3927150, '15.640450', '53.696449', '252.796204', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927151', 3927151, '-61.356571', '57.144989', '351.064209', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927152', 3927152, '173.737106', '54.352638', '226.520096', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130316, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927153', 3927153, '183.533401', '54.215019', '225.513000', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130044, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927154', 3927154, '99.898514', '49.255638', '188.131607', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129772, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927156', 3927156, '128.718903', '50.518780', '195.651794', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129500, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927158', 3927158, '115.929298', '48.682110', '176.508408', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129228, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927162', 3927162, '108.506699', '47.551449', '175.644897', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128956, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927163', 3927163, '32.919010', '50.990910', '198.741592', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128684, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927164', 3927164, '31.915621', '47.200191', '163.456696', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128412, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927165', 3927165, '65.425613', '51.619080', '219.897705', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128140, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927166', 3927166, '70.552643', '50.994259', '212.756500', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127868, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927168', 3927168, '60.756340', '51.112720', '213.427902', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127596, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927169', 3927169, '1.910973', '44.523701', '152.350204', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127324, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927170', 3927170, '6.149339', '47.714909', '180.407394', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127052, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927171', 3927171, '175.777206', '50.666649', '65.453201', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126780, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927172', 3927172, '170.246994', '50.547649', '69.196983', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126508, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927174', 3927174, '240.923996', '51.465309', '71.654427', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126236, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927175', 3927175, '249.684906', '51.468151', '78.309212', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125964, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927176', 3927176, '255.227203', '51.199020', '67.745193', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125692, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927178', 3927178, '253.462494', '51.509102', '19.847630', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125420, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927179', 3927179, '201.886398', '51.465870', '22.835030', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125148, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927182', 3927182, '111.507797', '59.949421', '283.252502', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927185', 3927185, '98.313828', '59.311771', '302.754211', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124610, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927186', 3927186, '110.092697', '60.098831', '287.907593', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124338, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927187', 3927187, '128.731201', '60.436340', '298.911407', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124066, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927188', 3927188, '83.256920', '55.503361', '283.185394', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123794, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927189', 3927189, '91.296028', '55.644341', '266.384308', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123522, 3, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(273, 'e0043', 'bnpc3927190', 3927190, '82.101891', '55.164581', '275.573212', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123250, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927191', 3927191, '115.385597', '59.492580', '287.027496', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122978, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927192', 3927192, '178.888199', '53.984070', '219.121597', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927194', 3927194, '131.716507', '57.952309', '278.151306', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122434, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927197', 3927197, '-22.751249', '56.290482', '304.371613', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927200', 3927200, '-18.722870', '56.046341', '317.952209', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927201', 3927201, '-14.837500', '56.125702', '314.598206', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927203', 3927203, '8.417153', '55.567989', '320.395599', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927204', 3927204, '20.042080', '57.618370', '350.774109', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927205', 3927205, '26.145691', '57.755730', '356.084290', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927206', 3927206, '22.476490', '58.182598', '359.426208', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927209', 3927209, '49.869179', '57.280979', '352.553101', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120264, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927211', 3927211, '21.927170', '54.917171', '311.085602', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119992, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927213', 3927213, '25.229980', '54.764481', '306.841705', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119720, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927218', 3927218, '-21.114670', '53.540970', '264.998993', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119448, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927220', 3927220, '-5.313622', '54.065811', '256.266205', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119176, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927221', 3927221, '-23.334700', '53.561840', '260.473511', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118904, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927222', 3927222, '5.204782', '54.084610', '236.687195', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118632, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927224', 3927224, '8.561768', '54.060150', '238.457199', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118360, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927226', 3927226, '-8.821225', '50.881729', '201.391602', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927229', 3927229, '-6.608897', '50.901840', '203.446304', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927230', 3927230, '-18.636290', '51.201260', '221.737701', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927231', 3927231, '-35.276581', '49.465691', '214.633698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927236', 3927236, '-11.411140', '50.721111', '205.313904', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927239', 3927239, '-38.801102', '49.907009', '218.520004', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927240', 3927240, '6.279222', '50.975891', '212.108902', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927241', 3927241, '-35.700180', '46.975208', '193.506195', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927246', 3927246, '-141.250000', '50.637089', '227.672501', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97168, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(273, 'e0043', 'bnpc3927250', 3927250, '-140.879105', '50.598660', '225.798996', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97440, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(273, 'e0043', 'bnpc3927252', 3927252, '-133.580704', '50.071732', '219.991806', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96624, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(273, 'e0043', 'bnpc3927255', 3927255, '-132.305801', '49.998920', '219.510193', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96896, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(273, 'e0043', 'bnpc3927256', 3927256, '-130.444595', '50.881111', '227.569397', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98256, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(273, 'e0043', 'bnpc3927333', 3927333, '-125.582298', '49.131699', '207.139694', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98528, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(273, 'e0043', 'bnpc3927334', 3927334, '-153.431595', '49.478130', '221.025101', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97712, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(273, 'e0043', 'bnpc3927339', 3927339, '-121.896698', '49.490898', '212.546097', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97984, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(273, 'e0043', 'bnpc3927343', 3927343, '-45.193470', '62.185181', '363.152100', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115912, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927345', 3927345, '-79.881020', '55.100281', '361.379395', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115640, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927346', 3927346, '-83.391731', '54.977058', '365.606995', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115368, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927347', 3927347, '-54.476139', '65.540337', '392.423004', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115096, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927349', 3927349, '-51.241718', '65.802643', '390.513214', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114824, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927352', 3927352, '-1.297064', '68.802879', '377.553894', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114552, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927353', 3927353, '2.885915', '68.536720', '372.786896', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114280, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927354', 3927354, '-109.941299', '48.966148', '357.015289', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114008, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927356', 3927356, '-125.981003', '51.453751', '311.388885', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113736, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927357', 3927357, '-130.879105', '51.717690', '309.097412', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113464, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927358', 3927358, '-131.425293', '51.394489', '312.798096', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113192, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927359', 3927359, '-118.158401', '53.802921', '271.080597', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112920, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927360', 3927360, '-115.932800', '53.461861', '267.407501', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112648, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927361', 3927361, '-95.500458', '52.359612', '245.109894', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112376, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927364', 3927364, '-138.997604', '45.849251', '391.546814', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112104, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927366', 3927366, '-131.347107', '47.246719', '398.411713', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111832, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927367', 3927367, '-141.612305', '45.939159', '395.010193', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111560, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927368', 3927368, '-175.499496', '39.137119', '393.656799', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111288, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927370', 3927370, '-156.301407', '40.866211', '345.757813', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111016, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927371', 3927371, '-162.614700', '39.951931', '342.568695', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110744, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927373', 3927373, '-157.533707', '40.302212', '350.198212', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110472, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927375', 3927375, '28.610620', '55.466499', '328.511414', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927379', 3927379, '37.804600', '58.140781', '363.465912', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927382', 3927382, '32.272758', '55.471779', '329.481689', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927384', 3927384, '6.784028', '54.128811', '253.378204', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927387', 3927387, '-20.690559', '53.685650', '251.224396', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927388', 3927388, '45.252361', '48.095360', '180.655197', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927394', 3927394, '69.706589', '56.137440', '318.697693', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927398', 3927398, '104.150002', '56.064339', '263.215607', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927403', 3927403, '156.664307', '54.703541', '236.652100', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927404', 3927404, '44.327412', '52.658840', '244.800400', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927408', 3927408, '-26.490999', '44.862301', '177.075394', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927413', 3927413, '152.993607', '50.116879', '72.775887', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927414', 3927414, '220.945801', '50.242329', '4.633916', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927417', 3927417, '219.309296', '49.916939', '6.135899', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927424', 3927424, '-14.541890', '67.307503', '362.722107', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927425', 3927425, '-65.254753', '64.638290', '395.066498', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927431', 3927431, '-117.631798', '47.959061', '380.300507', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927432', 3927432, '-172.127304', '40.469398', '398.069092', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927433', 3927433, '-189.330597', '36.909599', '341.340210', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927435', 3927435, '-140.326401', '45.201859', '337.794006', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927436', 3927436, '-110.657700', '52.097160', '290.219696', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927437', 3927437, '-145.151993', '56.686409', '288.573792', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927730', 3927730, '120.638901', '17.207850', '96.590080', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104234, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927734', 3927734, '123.778503', '17.206751', '88.372543', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103962, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927735', 3927735, '128.407593', '16.559820', '98.111130', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103690, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927736', 3927736, '78.465424', '21.109140', '92.377060', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103418, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927737', 3927737, '100.497498', '16.583630', '126.907097', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103146, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927739', 3927739, '-25.650459', '22.079760', '105.851799', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102874, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927742', 3927742, '-20.340321', '21.438881', '108.873100', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102602, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927745', 3927745, '78.228539', '22.345881', '63.241020', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102330, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927746', 3927746, '86.209900', '22.246161', '56.213009', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102058, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927748', 3927748, '127.763702', '25.986071', '49.240810', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101786, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927750', 3927750, '70.167282', '16.789490', '139.201706', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927760', 3927760, '95.818649', '15.165110', '168.324600', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927771', 3927771, '96.919411', '15.051520', '166.152405', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927776', 3927776, '126.695602', '15.793040', '128.007904', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100692, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927784', 3927784, '58.284618', '22.640039', '59.899170', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100420, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927789', 3927789, '14.317140', '20.384331', '98.519272', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100148, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927870', 3927870, '123.073700', '18.194111', '18.950350', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99882, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927874', 3927874, '164.476593', '18.193741', '-3.313263', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99610, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927875', 3927875, '161.316605', '18.193520', '6.161218', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99338, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927880', 3927880, '179.117905', '18.193710', '3.609651', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99066, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3927883', 3927883, '103.653801', '19.374020', '93.697792', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98788, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927890', 3927890, '122.968102', '56.939259', '-36.773190', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95074, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927910', 3927910, '123.268097', '55.511478', '-56.716091', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94802, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927911', 3927911, '129.320206', '55.924271', '-51.987530', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927912', 3927912, '154.660400', '55.357391', '-41.330311', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94258, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927919', 3927919, '189.631897', '50.414280', '-25.954390', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93986, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927923', 3927923, '183.639099', '52.017891', '-84.284233', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93714, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927925', 3927925, '153.890793', '52.284729', '-77.195427', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927934', 3927934, '191.650803', '52.446129', '-77.491463', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93170, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3927952', 3927952, '199.298004', '52.109509', '-110.399101', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92898, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928005', 3928005, '249.801102', '63.548111', '-129.309692', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92626, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928007', 3928007, '233.766098', '63.274509', '-115.512901', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92354, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928013', 3928013, '75.352249', '58.717110', '35.270901', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92088, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928021', 3928021, '86.804192', '58.856110', '31.969290', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91816, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928022', 3928022, '84.852730', '58.771778', '28.421551', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91544, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928152', 3928152, '58.122269', '59.502029', '1.331460', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928154', 3928154, '99.899971', '53.697948', '21.844801', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928157', 3928157, '28.599730', '59.945721', '27.529560', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928160', 3928160, '25.558041', '59.878441', '30.178419', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928161', 3928161, '14.973360', '62.347179', '18.278700', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928165', 3928165, '6.374675', '59.338470', '42.109829', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928314', 3928314, '319.607910', '63.456242', '-187.854004', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928315', 3928315, '318.191406', '63.387531', '-186.084000', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928317', 3928317, '311.617798', '62.671181', '-255.173492', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928319', 3928319, '306.148010', '62.678329', '-255.381195', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928320', 3928320, '310.641205', '62.731220', '-257.553894', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928321', 3928321, '288.386597', '62.264820', '-212.191498', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928323', 3928323, '281.432892', '62.276360', '-175.724792', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928324', 3928324, '294.345215', '62.536160', '-229.177994', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87700, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928326', 3928326, '324.076385', '63.986629', '-248.880295', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87428, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928327', 3928327, '294.358307', '62.940811', '-234.107498', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87156, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928328', 3928328, '298.334686', '62.391232', '-190.659805', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86884, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928329', 3928329, '288.392303', '62.534901', '-229.239197', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86612, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928331', 3928331, '298.725800', '62.141201', '-195.515305', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86340, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928332', 3928332, '265.782898', '63.307018', '-219.574600', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86068, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928335', 3928335, '316.656586', '63.109501', '-200.695007', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85796, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928360', 3928360, '-105.641998', '14.974850', '-248.369598', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928364', 3928364, '-110.496902', '14.974860', '-245.931396', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928366', 3928366, '-96.993607', '14.974790', '-263.062500', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928370', 3928370, '-134.325607', '14.974520', '-268.556091', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928372', 3928372, '-137.674500', '14.974520', '-281.872009', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84484, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928373', 3928373, '-140.064697', '14.974790', '-279.290314', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84212, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928374', 3928374, '-183.464493', '14.974900', '-240.699707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83940, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928376', 3928376, '-180.748398', '14.974890', '-244.758606', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83668, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928378', 3928378, '-186.089096', '14.974890', '-243.232697', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83396, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928379', 3928379, '-147.631104', '14.969050', '-274.158905', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83124, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928383', 3928383, '-224.475494', '14.969050', '-348.714386', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928386', 3928386, '-209.268402', '14.974940', '-344.686401', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928387', 3928387, '-206.509598', '14.974940', '-340.343994', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928388', 3928388, '-218.735199', '14.974420', '-379.859985', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928389', 3928389, '-223.490601', '14.974420', '-382.159912', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928391', 3928391, '-258.752411', '14.974870', '-325.427490', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928392', 3928392, '-264.535492', '14.974880', '-327.510101', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928394', 3928394, '-281.808807', '14.974920', '-208.237701', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928519', 3928519, '-253.182007', '14.974930', '-267.783295', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928520', 3928520, '-255.348694', '14.974930', '-265.372406', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928523', 3928523, '-283.110809', '14.974940', '-291.602112', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928524', 3928524, '-282.531006', '14.974940', '-294.806488', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928525', 3928525, '-286.528809', '14.974940', '-293.707794', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928527', 3928527, '-298.754211', '14.974940', '-221.860397', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928528', 3928528, '-295.336212', '14.974940', '-225.644699', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928531', 3928531, '-217.611801', '14.974770', '-304.205109', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928534', 3928534, '-250.701904', '14.974930', '-243.696503', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928783', 3928783, '-182.680801', '14.974910', '-276.838287', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78228, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928784', 3928784, '-170.103302', '14.974860', '-253.832504', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77956, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928788', 3928788, '-212.801102', '14.974940', '-333.462799', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928795', 3928795, '-266.258698', '15.546460', '-234.426102', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77370, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928796', 3928796, '-219.789307', '14.974930', '-267.238892', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77098, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928797', 3928797, '-285.191498', '14.974940', '-268.444397', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76826, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928798', 3928798, '-203.762299', '14.974910', '-250.822205', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76554, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928799', 3928799, '-278.737915', '14.974940', '-262.906189', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76282, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928800', 3928800, '-277.257599', '14.974940', '-267.571411', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76010, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928801', 3928801, '-256.085907', '14.974930', '-289.433411', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75738, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928802', 3928802, '-224.033401', '14.974930', '-264.018097', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75466, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928803', 3928803, '146.532303', '54.459400', '-51.499241', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928804', 3928804, '102.067497', '53.818520', '-56.137989', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928805', 3928805, '78.182693', '57.105598', '-30.773781', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928806', 3928806, '76.842499', '57.456390', '-29.140619', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928807', 3928807, '86.645050', '57.952759', '6.113357', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928808', 3928808, '22.705441', '61.685020', '19.656160', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928809', 3928809, '10.100620', '59.973881', '35.668980', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928810', 3928810, '166.031296', '50.849098', '-100.283997', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928811', 3928811, '186.388901', '51.621220', '-160.082397', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928812', 3928812, '238.300095', '63.248600', '-122.148499', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928813', 3928813, '184.099701', '52.311790', '-57.823231', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928814', 3928814, '179.929794', '52.482571', '-55.958038', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928815', 3928815, '142.056702', '53.278130', '-130.908096', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928816', 3928816, '268.193207', '63.254810', '-222.082703', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928822', 3928822, '302.263489', '62.065739', '-193.318497', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928825', 3928825, '-123.838997', '14.974520', '-263.543488', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928831', 3928831, '-176.301498', '14.974870', '-250.083099', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928832', 3928832, '-144.984497', '14.974770', '-287.996185', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928833', 3928833, '-185.416595', '14.974910', '-280.625488', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928834', 3928834, '-244.850296', '14.974930', '-244.881104', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928835', 3928835, '-244.690704', '15.599670', '-289.695801', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928836', 3928836, '-287.953003', '14.974940', '-254.367096', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928837', 3928837, '-288.296387', '14.974940', '-221.930298', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928838', 3928838, '-242.570297', '14.974810', '-341.476898', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928839', 3928839, '-294.252502', '14.974850', '-321.210785', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928840', 3928840, '-213.266998', '14.974420', '-364.787292', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928841', 3928841, '-196.042206', '14.974940', '-319.922791', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928894', 3928894, '-427.363312', '23.320280', '-482.444489', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67692, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928895', 3928895, '-414.236694', '24.246580', '-480.094604', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67420, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928896', 3928896, '-399.069214', '24.662140', '-486.445496', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67148, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928897', 3928897, '-426.661407', '23.254721', '-480.735504', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66876, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928898', 3928898, '-385.109589', '24.366320', '-508.717590', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66604, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928899', 3928899, '-383.622498', '24.283310', '-510.090912', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66332, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928900', 3928900, '-397.867401', '24.621420', '-483.869110', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66060, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928902', 3928902, '-395.742706', '24.800859', '-486.720215', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65788, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928905', 3928905, '-372.182800', '14.915100', '-682.187012', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65438, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928915', 3928915, '-343.109711', '14.951240', '-708.646729', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65166, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928916', 3928916, '-336.488098', '15.011050', '-702.973022', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64894, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928917', 3928917, '-342.475098', '14.886180', '-699.100403', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64622, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928918', 3928918, '-346.725800', '15.000050', '-648.932983', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64350, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928919', 3928919, '-360.611603', '15.143860', '-728.342285', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64078, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928920', 3928920, '-369.109985', '17.086229', '-625.858582', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63806, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928921', 3928921, '-368.551208', '14.932670', '-677.304016', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63534, 1, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(273, 'e0043', 'bnpc3928922', 3928922, '-289.976898', '15.036210', '-766.856018', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928923', 3928923, '-329.499603', '13.228890', '-734.741028', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63074, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928924', 3928924, '-308.522186', '13.199010', '-741.054382', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62802, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928926', 3928926, '-330.769806', '14.999570', '-781.734985', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928927', 3928927, '-282.568512', '14.996440', '-714.049622', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928928', 3928928, '-288.031189', '15.033810', '-704.314270', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928929', 3928929, '-340.138885', '14.999570', '-765.682495', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928930', 3928930, '-375.273102', '24.057680', '-530.949707', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61364, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928931', 3928931, '-376.594513', '24.104771', '-528.967224', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61092, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928932', 3928932, '-385.780304', '23.495701', '-548.185181', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60820, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928933', 3928933, '-388.991913', '23.634899', '-551.127014', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60548, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928934', 3928934, '-380.102814', '23.848009', '-554.942871', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60276, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928935', 3928935, '-383.823486', '24.014250', '-580.209229', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60004, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928936', 3928936, '-384.645203', '22.916321', '-600.375427', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928937', 3928937, '-382.814087', '22.623171', '-601.962280', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc3928938', 3928938, '-160.448700', '15.121640', '-740.138916', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928939', 3928939, '-163.418106', '15.126450', '-733.144714', 109, 0, 0, 0, 1, 6, 0, 0, 310, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59006, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928940', 3928940, '-154.855392', '15.126450', '-735.291016', 111, 0, 0, 0, 1, 6, 0, 0, 312, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928941', 3928941, '-184.969193', '15.126200', '-748.799011', 111, 0, 0, 0, 1, 6, 0, 0, 312, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928942', 3928942, '-245.304596', '14.639280', '-736.399902', 109, 0, 0, 0, 1, 6, 0, 0, 310, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58190, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928943', 3928943, '-208.907501', '15.126340', '-737.954224', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928944', 3928944, '-177.706696', '15.126430', '-724.218872', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928945', 3928945, '129.798294', '53.983780', '241.581604', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc3928946', 3928946, '358.728088', '75.113953', '188.477402', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4057505', 4057505, '425.836700', '93.949097', '147.345596', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.500000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23758, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(273, 'e0043', 'bnpc4057530', 4057530, '246.828796', '52.038040', '143.148804', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.800000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23492, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(273, 'e0043', 'bnpc4057532', 4057532, '209.687393', '52.005539', '110.727303', 797, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23226, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(273, 'e0043', 'bnpc4057541', 4057541, '192.848099', '52.038040', '162.149994', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22942, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(273, 'e0043', 'bnpc4057553', 4057553, '108.028297', '49.844238', '-189.682297', 798, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22688, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(273, 'e0043', 'bnpc4057563', 4057563, '-82.688713', '15.467950', '-260.648010', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(273, 'e0043', 'bnpc4057572', 4057572, '-436.003998', '23.000170', '-484.805511', 791, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22150, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(273, 'e0043', 'bnpc4190759', 4190759, '-345.540588', '14.999600', '-775.448181', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57362, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(273, 'e0043', 'bnpc4267191', 4267191, '-707.860779', '67.740463', '-822.422119', 1439, 0, 0, 0, 0, 6, 0, 0, 2160, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57014, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4267197', 4267197, '-665.501282', '62.452560', '-807.101318', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56748, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4267200', 4267200, '-665.515930', '62.330540', '-804.663086', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56476, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4267201', 4267201, '-678.426575', '63.899670', '-816.868713', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56204, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4267202', 4267202, '-697.547180', '65.602493', '-808.171204', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55932, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4267203', 4267203, '-691.117920', '65.001953', '-800.783875', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55660, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4267204', 4267204, '-707.367920', '67.125900', '-815.833374', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55388, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4267205', 4267205, '-691.542114', '65.307541', '-815.101807', 434, 0, 0, 0, 0, 6, 0, 0, 2160, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4296870', 4296870, '242.172607', '52.038120', '112.691498', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20750, 8, 0, 0, 4296864, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4296871', 4296871, '246.709503', '52.038120', '124.038902', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20478, 8, 0, 0, 4296863, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4296872', 4296872, '237.477707', '52.017941', '108.608101', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20206, 8, 0, 0, 4296858, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4296873', 4296873, '244.254303', '52.038120', '162.449799', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19934, 8, 0, 0, 4296867, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4296874', 4296874, '244.299103', '52.038120', '166.290298', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19662, 8, 0, 0, 4296868, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4308066', 4308066, '-421.159485', '44.462021', '-712.226013', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54672, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(273, 'e0043', 'bnpc4308069', 4308069, '-514.378784', '51.624359', '-759.622498', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54400, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(273, 'e0043', 'bnpc4308070', 4308070, '-599.843384', '57.051182', '-784.518921', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54128, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(273, 'e0043', 'bnpc4308071', 4308071, '-656.681274', '62.116219', '-804.503601', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53856, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(273, 'e0043', 'bnpc4308072', 4308072, '-492.048187', '50.155430', '-704.991577', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53590, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(273, 'e0043', 'bnpc4308073', 4308073, '-517.815491', '50.450741', '-713.017395', 63, 0, 0, 0, 0, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53324, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(273, 'e0043', 'bnpc4308074', 4308074, '-456.002014', '51.014610', '-752.579285', 55, 0, 0, 0, 0, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53058, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(273, 'e0043', 'bnpc4308075', 4308075, '-495.700897', '50.855309', '-742.115417', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52792, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(273, 'e0043', 'bnpc4308082', 4308082, '-441.168610', '50.899448', '-705.323914', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52514, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(273, 'e0043', 'bnpc4308083', 4308083, '-518.314270', '50.452862', '-714.412109', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52224, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(273, 'e0043', 'bnpc4308084', 4308084, '-479.211487', '51.372540', '-761.453186', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51964, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(273, 'e0043', 'bnpc4308085', 4308085, '-402.046509', '49.868610', '-739.848206', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51704, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(273, 'e0043', 'bnpc4308086', 4308086, '-454.328613', '50.848831', '-752.713074', 64, 0, 0, 0, 0, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51414, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(273, 'e0043', 'bnpc4308091', 4308091, '-536.909607', '51.647678', '-772.339600', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51154, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(273, 'e0043', 'bnpc4308092', 4308092, '-566.559387', '53.197552', '-772.416382', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50870, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(273, 'e0043', 'bnpc4308093', 4308093, '-534.190186', '55.472980', '-738.915771', 62, 0, 0, 0, 1, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50592, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(273, 'e0043', 'bnpc4308094', 4308094, '-570.383728', '53.322189', '-740.588013', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(273, 'e0043', 'bnpc4308095', 4308095, '-576.705811', '54.865730', '-790.850830', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50060, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(273, 'e0043', 'bnpc4308096', 4308096, '-598.254211', '63.233582', '-755.445496', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49788, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(273, 'e0043', 'bnpc4308097', 4308097, '-601.317322', '62.751640', '-757.922485', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49510, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(273, 'e0043', 'bnpc4308098', 4308098, '-621.487915', '61.777660', '-742.445374', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49256, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(273, 'e0043', 'bnpc4308099', 4308099, '-621.786072', '58.863022', '-795.647095', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48978, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(273, 'e0043', 'bnpc4308100', 4308100, '-646.074890', '61.267559', '-800.385315', 62, 0, 0, 0, 1, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48688, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(273, 'e0043', 'bnpc4308102', 4308102, '-555.229980', '53.299679', '-753.444702', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4308104', 4308104, '-410.261810', '51.000069', '-758.953003', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48174, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4308105', 4308105, '-468.451904', '50.148300', '-723.755676', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4308109', 4308109, '-626.947510', '60.044189', '-813.534790', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47630, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4308112', 4308112, '-635.044800', '58.894249', '-777.102417', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4308164', 4308164, '-544.952698', '55.549671', '-803.447388', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47086, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(273, 'e0043', 'bnpc4510228', 4510228, '320.279907', '67.275337', '234.176498', 793, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21884, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(273, 'e0043', 'bnpc4621821', 4621821, '-91.708687', '15.670890', '217.180496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24120, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4012541', 4012541, '-499.944489', '-24.206900', '274.711395', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4012542', 4012542, '-496.735107', '-24.822651', '275.516113', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136368, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4012543', 4012543, '-498.215302', '-25.168880', '279.728394', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4012544', 4012544, '-508.450897', '-22.501459', '275.251801', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4012545', 4012545, '-500.246307', '-22.856750', '332.079407', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4012546', 4012546, '-503.241211', '-22.525490', '333.955200', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4012547', 4012547, '-490.592804', '-25.436840', '313.618591', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4012548', 4012548, '-487.602112', '-26.077709', '308.522095', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4012549', 4012549, '-487.632599', '-25.467350', '315.632813', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4012550', 4012550, '-490.196106', '-25.009581', '264.942413', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013205', 4013205, '-304.194305', '-34.543591', '294.601898', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013206', 4013206, '-304.224792', '-33.836750', '301.712585', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013207', 4013207, '-307.184998', '-34.167721', '299.698395', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013208', 4013208, '-370.016113', '-38.010269', '260.669800', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013209', 4013209, '-367.025299', '-37.796638', '255.573303', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013210', 4013210, '-367.055786', '-38.345970', '262.714508', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013211', 4013211, '-393.702789', '-33.147480', '298.410095', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013212', 4013212, '-390.742615', '-33.080891', '300.424286', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013213', 4013213, '-422.867310', '-30.681101', '303.919800', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013214', 4013214, '-421.252197', '-30.134701', '311.575806', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013215', 4013215, '-418.295593', '-29.892469', '313.588104', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013216', 4013216, '-418.261505', '-30.624969', '306.479187', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013222', 4013222, '-228.755997', '-29.250050', '268.198700', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130662, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013224', 4013224, '-259.769104', '-25.814650', '223.363907', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130390, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013225', 4013225, '-248.303101', '-25.635059', '215.703506', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130118, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013226', 4013226, '-244.556595', '-29.157000', '245.735596', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013227', 4013227, '-205.884796', '-28.989929', '252.945099', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013230', 4013230, '-221.465103', '-29.933540', '230.371399', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129302, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013231', 4013231, '-191.527893', '-33.626598', '218.107803', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013232', 4013232, '-179.018005', '-29.188629', '250.063797', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 15, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128758, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013234', 4013234, '-175.844193', '-28.984510', '287.393402', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128492, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013235', 4013235, '-189.302597', '-29.714430', '288.949799', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91536, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013236', 4013236, '-180.635498', '-30.361820', '295.114288', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128220, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013237', 4013237, '-155.046997', '-38.834259', '204.882797', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127948, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013238', 4013238, '-140.856094', '-42.038651', '199.298004', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127676, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013239', 4013239, '-147.844696', '-38.864811', '208.361893', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127404, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013244', 4013244, '-152.971695', '-38.651150', '171.557098', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91808, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013245', 4013245, '-122.655197', '-36.402191', '160.250000', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127132, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013246', 4013246, '-125.513298', '-36.825439', '155.686493', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126860, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013248', 4013248, '-240.869400', '-31.567810', '320.527802', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126588, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013249', 4013249, '-235.614594', '-31.418369', '325.917389', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126316, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013250', 4013250, '-222.186707', '-34.622761', '365.438293', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126044, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013251', 4013251, '-253.131897', '-36.331779', '359.212585', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91264, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013254', 4013254, '-287.041687', '-32.065750', '207.250107', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125760, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013255', 4013255, '-284.050995', '-31.622311', '202.123093', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125488, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013256', 4013256, '-284.081512', '-31.907009', '209.264297', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125216, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013262', 4013262, '-273.132507', '-35.872952', '132.381500', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124944, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013263', 4013263, '-270.172211', '-35.967918', '134.395706', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124672, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013264', 4013264, '-270.141693', '-36.277580', '127.254402', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124400, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013266', 4013266, '-259.425812', '-35.518791', '150.542206', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124128, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013267', 4013267, '-256.465515', '-35.526428', '152.556396', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123856, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013445', 4013445, '-149.523193', '-32.364429', '59.342289', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92080, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013479', 4013479, '-159.265594', '-32.346439', '51.098259', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123596, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013480', 4013480, '-151.901093', '-33.007351', '66.556549', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123324, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013481', 4013481, '-100.511200', '-26.840670', '16.128740', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013482', 4013482, '-102.891098', '-28.253700', '23.320940', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123052, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013483', 4013483, '-149.419205', '-28.890289', '2.911655', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122780, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013484', 4013484, '-188.433701', '-27.695169', '-13.168580', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122508, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013485', 4013485, '-199.267593', '-31.357340', '4.409810', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92352, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013486', 4013486, '-182.299606', '-27.603621', '-9.872634', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122236, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013489', 4013489, '-219.226395', '-37.674568', '39.414009', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121964, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013490', 4013490, '-225.360504', '-37.827160', '36.118061', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121692, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013499', 4013499, '-273.627289', '-31.862329', '103.566002', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92624, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013500', 4013500, '-267.855988', '-33.038231', '97.413803', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121420, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013501', 4013501, '-272.429901', '-34.255821', '90.077278', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121148, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013502', 4013502, '-291.837189', '-33.717522', '94.695030', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120876, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013504', 4013504, '-408.834991', '-25.528391', '375.844910', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120592, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013509', 4013509, '-412.414703', '-25.124140', '378.094910', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120320, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013510', 4013510, '-421.050690', '-24.694500', '373.044586', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120048, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013511', 4013511, '-347.292603', '-22.499969', '411.814514', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119776, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013512', 4013512, '-350.892090', '-22.007130', '414.044891', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119504, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013513', 4013513, '-301.048492', '-24.998409', '421.781494', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119232, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013514', 4013514, '-235.065308', '-33.493599', '442.587891', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013515', 4013515, '-231.464096', '-34.195511', '440.359985', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013517', 4013517, '-230.304504', '-33.981892', '443.503387', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013521', 4013521, '-175.050400', '-37.658531', '450.209198', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013522', 4013522, '-175.885300', '-38.533630', '453.905487', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013525', 4013525, '-215.670593', '-35.585159', '459.834106', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013533', 4013533, '99.168327', '-25.375799', '291.493011', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117340, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013534', 4013534, '97.093102', '-25.223209', '297.444092', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117068, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013536', 4013536, '68.684219', '-23.820311', '291.749390', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116796, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013539', 4013539, '92.027107', '-24.063520', '274.555511', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90992, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013550', 4013550, '-370.036499', '-26.139339', '-3.111549', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013552', 4013552, '-377.077698', '-24.934530', '-2.811549', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013553', 4013553, '-374.311096', '-24.946871', '-6.761492', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013554', 4013554, '-361.013214', '-20.157209', '-51.316139', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115696, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013556', 4013556, '-364.370209', '-19.974110', '-48.996769', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115424, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013558', 4013558, '-314.082306', '-25.819000', '-70.030121', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115152, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013559', 4013559, '-316.848907', '-27.254049', '-66.080177', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114880, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013560', 4013560, '-309.807709', '-25.975500', '-66.380173', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013562', 4013562, '-330.224487', '-29.939251', '-43.977570', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114336, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013564', 4013564, '-407.858398', '-15.091220', '-126.360001', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114064, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013565', 4013565, '-411.203003', '-15.113620', '-124.026497', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113792, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013569', 4013569, '-415.904999', '-11.930880', '-136.712494', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113520, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013571', 4013571, '-452.618408', '-8.742622', '-98.281227', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113248, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013572', 4013572, '-449.357788', '-8.414806', '-96.310440', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112976, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013576', 4013576, '-464.105194', '-11.407580', '-129.066101', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112704, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013577', 4013577, '-498.092499', '-9.974959', '-109.458298', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112432, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013580', 4013580, '-502.620789', '-10.577840', '-112.821098', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112160, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013582', 4013582, '-507.470886', '-10.328900', '-110.974403', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111888, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013583', 4013583, '-522.056885', '-4.348868', '-159.960403', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111616, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013584', 4013584, '-523.460815', '-4.837157', '-158.281906', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111344, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013594', 4013594, '-352.898499', '-15.213080', '-143.948807', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111090, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013596', 4013596, '-332.967194', '-12.588740', '-145.708405', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110818, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013605', 4013605, '-332.265198', '-17.044371', '-127.824898', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110546, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013606', 4013606, '-352.598511', '-10.906090', '-168.210007', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110274, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013609', 4013609, '-385.111389', '-7.978566', '-230.465805', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110002, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013611', 4013611, '-331.138092', '-11.882090', '-143.969299', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109730, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013627', 4013627, '-383.286194', '-8.260035', '-224.126007', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109458, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013633', 4013633, '-366.385315', '-16.827869', '-132.410706', 21, 0, 0, 0, 1, 6, 0, 0, 1198, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109186, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4013638', 4013638, '-349.540588', '-11.100560', '-235.093994', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108920, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013641', 4013641, '-346.185791', '-11.887330', '-259.764496', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108648, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013642', 4013642, '-344.857910', '-11.892970', '-258.193207', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013645', 4013645, '-327.837799', '-11.400080', '-244.734406', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013647', 4013647, '-309.640594', '-10.000100', '-243.310898', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108104, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013649', 4013649, '-301.356903', '-10.000100', '-247.002197', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013650', 4013650, '-322.462311', '-9.437181', '-225.651001', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013652', 4013652, '-323.876587', '-6.632608', '-212.379700', 18, 0, 0, 0, 1, 6, 0, 0, 319, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107832, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013668', 4013668, '-335.498505', '-12.014050', '-229.725906', 19, 0, 0, 0, 1, 6, 0, 0, 322, 0, '0.000000', 17, 2, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013720', 4013720, '-429.370209', '-1.586753', '-278.570801', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106448, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013721', 4013721, '-430.804504', '-1.625461', '-276.861786', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106176, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013722', 4013722, '-444.877411', '-1.080222', '-258.128387', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105904, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013723', 4013723, '-464.653595', '1.612374', '-285.266113', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105632, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013724', 4013724, '-461.633514', '1.079876', '-282.367096', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105360, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013725', 4013725, '-467.806213', '2.048990', '-283.036896', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105088, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013728', 4013728, '-533.374023', '-6.691851', '-159.632706', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104816, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013735', 4013735, '-450.919403', '-29.068480', '316.700897', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013772', 4013772, '-397.589996', '-23.851999', '392.935089', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013777', 4013777, '-330.837891', '-22.252911', '401.824585', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013778', 4013778, '-318.013306', '-23.819380', '430.685791', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013779', 4013779, '-249.358002', '-33.714100', '429.461487', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013780', 4013780, '-191.484207', '-36.256191', '404.149292', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013781', 4013781, '-190.484894', '-35.487671', '401.923004', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013782', 4013782, '-487.190399', '-25.702749', '201.419907', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013784', 4013784, '-334.884705', '-34.612320', '299.203400', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013785', 4013785, '-312.764191', '-31.815109', '177.660706', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102132, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(275, 'e0047', 'bnpc4013786', 4013786, '-422.784302', '-34.151939', '243.826904', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013788', 4013788, '-165.697800', '-28.246771', '253.973404', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013792', 4013792, '-54.262890', '-17.705391', '367.731415', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013794', 4013794, '-33.163811', '-19.940189', '365.769714', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013795', 4013795, '-51.895939', '-17.512991', '370.210602', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100772, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013796', 4013796, '78.414223', '-15.939830', '366.048615', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100500, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013798', 4013798, '7.173542', '-23.354309', '329.441010', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100228, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013804', 4013804, '-166.105103', '-28.583521', '251.194107', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99956, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013807', 4013807, '-96.303726', '-54.621849', '189.374496', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99684, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013809', 4013809, '-129.643600', '-41.051750', '105.021004', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99412, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013811', 4013811, '-131.669601', '-27.426109', '-54.776691', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99140, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013813', 4013813, '-173.987106', '-33.616089', '-39.161282', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98868, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013815', 4013815, '-175.831604', '-33.870190', '-41.495399', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98596, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013816', 4013816, '-205.031403', '-33.039600', '-67.334999', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013818', 4013818, '-281.004791', '-32.283211', '-47.466839', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013819', 4013819, '-366.248810', '-37.056171', '28.697981', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97780, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013820', 4013820, '-548.804321', '-10.844810', '-120.767998', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013821', 4013821, '-547.929016', '-10.919210', '-118.103897', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013822', 4013822, '-505.184814', '-5.976281', '-148.866592', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013823', 4013823, '-411.073914', '-31.135130', '46.428162', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013824', 4013824, '-430.816315', '-29.355061', '29.829710', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013825', 4013825, '-424.892914', '-28.321070', '3.818028', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013826', 4013826, '-455.293610', '-28.139351', '76.774193', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013827', 4013827, '-457.516510', '-27.855551', '79.493294', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013828', 4013828, '-479.286011', '-25.295200', '93.214996', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013829', 4013829, '-527.688721', '-21.083590', '110.860397', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013830', 4013830, '-536.720886', '-18.332451', '74.782097', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013831', 4013831, '-553.551880', '-16.714809', '84.756439', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013832', 4013832, '-510.295288', '-19.041250', '45.220119', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013833', 4013833, '-485.247589', '-20.332100', '48.307430', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013834', 4013834, '-458.042603', '-21.417490', '14.689170', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013835', 4013835, '-459.737488', '-21.394270', '13.442860', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013836', 4013836, '-484.622711', '-17.327000', '0.944125', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013837', 4013837, '-498.477814', '-17.417601', '25.127859', 41, 0, 0, 0, 1, 6, 0, 0, 1199, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013849', 4013849, '-140.192505', '-30.609131', '309.013794', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86380, 1, 0, 0, 0, 19, 30058, 0, 0, 0), +(275, 'e0047', 'bnpc4013851', 4013851, '-50.371601', '-27.557119', '321.120697', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85564, 1, 0, 0, 0, 19, 30058, 0, 0, 0), +(275, 'e0047', 'bnpc4013857', 4013857, '-76.608521', '-27.621309', '289.534302', 735, 0, 0, 0, 0, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86108, 1, 0, 0, 0, 19, 30059, 0, 0, 0), +(275, 'e0047', 'bnpc4013859', 4013859, '-105.272003', '-29.404169', '285.419891', 735, 0, 0, 0, 1, 6, 0, 0, 247, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85836, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(275, 'e0047', 'bnpc4013864', 4013864, '-122.575798', '-30.167110', '296.284302', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85298, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(275, 'e0047', 'bnpc4013865', 4013865, '-70.664551', '-27.908751', '300.739990', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84482, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(275, 'e0047', 'bnpc4013866', 4013866, '-71.732674', '-27.084780', '289.021088', 737, 0, 0, 0, 0, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85026, 1, 0, 0, 0, 19, 30060, 0, 0, 0), +(275, 'e0047', 'bnpc4013867', 4013867, '-109.317596', '-27.427130', '345.218903', 737, 0, 0, 0, 1, 6, 0, 0, 250, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84754, 1, 0, 0, 0, 19, 30063, 0, 0, 0), +(275, 'e0047', 'bnpc4013868', 4013868, '146.652603', '-5.540083', '412.411499', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013869', 4013869, '144.284500', '-5.955482', '411.455200', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013870', 4013870, '145.884995', '-5.941638', '404.887695', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013872', 4013872, '136.158096', '-6.723706', '412.478790', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013873', 4013873, '140.986099', '-6.708030', '406.031189', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013874', 4013874, '137.354004', '-7.302959', '404.747009', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4013877', 4013877, '127.735001', '-8.321562', '406.855713', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4014958', 4014958, '20.401260', '2.731318', '-54.520531', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83704, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015589', 4015589, '31.067261', '2.425304', '-70.573143', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83432, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015593', 4015593, '48.749241', '5.676062', '-102.147301', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83160, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015594', 4015594, '35.250210', '6.228703', '-92.927460', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82888, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015595', 4015595, '67.637573', '4.351546', '-87.514160', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82616, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015596', 4015596, '54.489922', '0.411947', '-65.110291', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015598', 4015598, '7.965932', '1.085048', '-77.601852', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82072, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015605', 4015605, '9.769605', '1.369744', '-80.136017', 12, 0, 0, 0, 1, 6, 0, 0, 301, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015668', 4015668, '104.484001', '4.846275', '-63.102379', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015674', 4015674, '102.296700', '4.972450', '-66.202560', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015676', 4015676, '96.732941', '3.052606', '-62.312988', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015678', 4015678, '99.597008', '8.227051', '-90.531860', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015691', 4015691, '141.042694', '10.713930', '-50.547859', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015696', 4015696, '141.342697', '10.968710', '-54.225460', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015701', 4015701, '108.271400', '-2.418733', '-8.458347', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015704', 4015704, '106.417397', '-2.650057', '-10.997480', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015706', 4015706, '97.733994', '-3.219701', '2.456656', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015707', 4015707, '30.234659', '-13.926860', '41.901440', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015709', 4015709, '27.316900', '-15.302890', '44.688141', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015711', 4015711, '67.083893', '-9.601854', '56.893761', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015718', 4015718, '73.500443', '-4.948884', '24.766541', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4015720', 4015720, '70.143448', '-5.095084', '22.416651', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4016500', 4016500, '104.692101', '-11.093380', '148.271896', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77732, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(275, 'e0047', 'bnpc4016539', 4016539, '107.896500', '-11.093380', '147.508896', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77460, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(275, 'e0047', 'bnpc4016540', 4016540, '100.724701', '-10.660250', '120.341797', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77188, 1, 0, 0, 0, 9, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4016541', 4016541, '99.180260', '-10.555300', '116.451401', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76916, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(275, 'e0047', 'bnpc4016542', 4016542, '136.732193', '-7.571920', '111.707901', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76644, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(275, 'e0047', 'bnpc4016543', 4016543, '109.599403', '-4.406592', '97.184692', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76372, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(275, 'e0047', 'bnpc4016544', 4016544, '110.955200', '-4.201653', '88.662132', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76100, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(275, 'e0047', 'bnpc4016545', 4016545, '113.349701', '-3.809178', '95.995033', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75828, 1, 0, 0, 0, 9, 30059, 0, 0, 0), +(275, 'e0047', 'bnpc4016546', 4016546, '116.990799', '-8.926575', '119.340698', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75556, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(275, 'e0047', 'bnpc4016549', 4016549, '132.524506', '-4.867676', '80.796509', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75284, 1, 0, 0, 0, 9, 30063, 0, 0, 0), +(275, 'e0047', 'bnpc4016552', 4016552, '172.457306', '13.025480', '-52.917801', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75018, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(275, 'e0047', 'bnpc4016557', 4016557, '176.353500', '14.358130', '-73.066628', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74746, 1, 0, 0, 0, 31, 30060, 0, 0, 0), +(275, 'e0047', 'bnpc4016560', 4016560, '200.762894', '12.344500', '-41.489330', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74474, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(275, 'e0047', 'bnpc4016946', 4016946, '178.545807', '14.145070', '-76.310410', 168, 0, 0, 0, 0, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74208, 1, 0, 0, 0, 31, 30060, 0, 0, 0), +(275, 'e0047', 'bnpc4016949', 4016949, '157.244202', '11.490000', '-28.885370', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73936, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(275, 'e0047', 'bnpc4016957', 4016957, '194.933899', '11.673100', '-34.256550', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73664, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(275, 'e0047', 'bnpc4017619', 4017619, '180.407394', '10.330310', '-23.086950', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73386, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(275, 'e0047', 'bnpc4017833', 4017833, '165.697693', '9.414769', '0.106766', 168, 0, 0, 0, 1, 6, 0, 0, 251, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73120, 1, 0, 0, 0, 31, 30063, 0, 0, 0), +(275, 'e0047', 'bnpc4017881', 4017881, '267.688995', '7.156434', '-121.568703', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4017882', 4017882, '256.488800', '7.736277', '-113.023598', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72588, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4017883', 4017883, '277.515808', '7.583686', '-116.807899', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72322, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4017891', 4017891, '272.907501', '17.593611', '-157.701996', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4017892', 4017892, '270.862915', '16.861151', '-151.415298', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4017893', 4017893, '257.892700', '16.006670', '-153.185394', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4017899', 4017899, '240.680496', '7.431091', '-122.636803', 352, 0, 0, 0, 1, 6, 0, 0, 1309, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4017900', 4017900, '243.182999', '7.370056', '-117.753899', 353, 0, 0, 0, 1, 6, 0, 0, 1311, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4017901', 4017901, '258.381012', '12.313960', '-138.811295', 354, 0, 0, 0, 1, 6, 0, 0, 1310, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4017921', 4017921, '138.353500', '9.506287', '-146.349304', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70424, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4017927', 4017927, '115.709099', '11.123780', '-141.435898', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70152, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4017928', 4017928, '212.176605', '3.555298', '-181.902802', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69880, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4017929', 4017929, '219.897705', '3.799438', '-195.117096', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69608, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4017932', 4017932, '278.370300', '8.041457', '-218.646606', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69336, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4017937', 4017937, '289.906097', '11.551030', '-240.192307', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69064, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4017941', 4017941, '373.476013', '20.829370', '-239.892303', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68792, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4017942', 4017942, '356.299500', '14.980250', '-225.505997', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68520, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4017945', 4017945, '404.706909', '22.897909', '-197.807907', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68248, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4017950', 4017950, '298.207001', '5.264315', '-172.350693', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4017954', 4017954, '134.599701', '8.987488', '-116.411102', 181, 0, 0, 0, 1, 6, 0, 0, 281, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4017972', 4017972, '189.930405', '-1.185125', '27.687700', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4017978', 4017978, '193.187805', '-1.444422', '30.281919', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4017981', 4017981, '228.766998', '3.164756', '31.533100', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4017985', 4017985, '259.187988', '10.854590', '-0.979421', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4017987', 4017987, '256.991486', '10.906030', '-1.850262', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4017989', 4017989, '263.108002', '12.374600', '-6.144668', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4017999', 4017999, '144.542801', '-1.822149', '25.260910', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018003', 4018003, '118.866699', '-3.156176', '35.166130', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018006', 4018006, '152.788498', '-3.677471', '45.426060', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018007', 4018007, '149.431503', '-3.524881', '43.076172', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018008', 4018008, '148.638107', '-3.585917', '46.951962', 203, 0, 0, 0, 1, 6, 0, 0, 272, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018022', 4018022, '94.621094', '3.248499', '83.127548', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64404, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(275, 'e0047', 'bnpc4018023', 4018023, '95.261963', '2.700867', '72.495613', 170, 0, 0, 0, 1, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(275, 'e0047', 'bnpc4018024', 4018024, '96.513313', '3.431219', '83.543091', 170, 0, 0, 0, 0, 6, 0, 0, 268, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63860, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(275, 'e0047', 'bnpc4018102', 4018102, '97.606216', '6.518048', '-80.554100', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018103', 4018103, '118.155403', '9.586515', '-100.878799', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018104', 4018104, '120.378304', '9.628418', '-99.046333', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018105', 4018105, '131.592499', '8.266950', '-67.253014', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018106', 4018106, '58.518299', '-3.494363', '-48.813660', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018108', 4018108, '90.160843', '-1.231179', '-48.488152', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018109', 4018109, '75.582893', '-5.687634', '-3.987827', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018110', 4018110, '48.298389', '-10.503780', '42.532669', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018112', 4018112, '90.491623', '-2.237890', '36.720051', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018113', 4018113, '93.131050', '-2.135577', '38.381100', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018115', 4018115, '112.673203', '-2.455007', '13.961960', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018117', 4018117, '127.625603', '-3.590302', '53.494831', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018118', 4018118, '188.733200', '4.905004', '3.896455', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018120', 4018120, '219.065399', '11.690500', '5.996748', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018121', 4018121, '216.593399', '11.322950', '7.522650', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018122', 4018122, '241.927307', '7.629051', '9.728237', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018125', 4018125, '268.848206', '8.777798', '13.353050', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59278, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018127', 4018127, '270.080994', '9.039959', '11.601690', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59006, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018129', 4018129, '158.682999', '14.718640', '-63.220341', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58734, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018133', 4018133, '188.223907', '10.030940', '-97.774307', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58462, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018134', 4018134, '166.552094', '8.773865', '-94.346558', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018137', 4018137, '163.958099', '6.301941', '-142.320999', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018141', 4018141, '160.723297', '6.515503', '-139.940598', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018142', 4018142, '218.860107', '3.097534', '-168.047699', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018143', 4018143, '231.647202', '5.874695', '-136.827698', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018152', 4018152, '228.137604', '4.013123', '-233.386795', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018154', 4018154, '270.251190', '8.134529', '-236.478806', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018156', 4018156, '267.750397', '7.438218', '-233.682907', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018157', 4018157, '316.072815', '12.832880', '-231.256195', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018159', 4018159, '316.372803', '6.627599', '-200.028305', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018161', 4018161, '363.549500', '16.893539', '-200.111694', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018165', 4018165, '365.959412', '17.232080', '-197.356705', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018171', 4018171, '32.567570', '2.131757', '-61.269958', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54926, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018175', 4018175, '68.556648', '3.005930', '-78.273499', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54654, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018177', 4018177, '70.294853', '2.807336', '-76.142509', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018218', 4018218, '-299.646698', '-38.938461', '29.649010', 193, 0, 0, 0, 1, 6, 0, 0, 273, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88544, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018219', 4018219, '-291.777802', '-38.764221', '32.025139', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88236, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018220', 4018220, '-333.157501', '-38.096481', '14.837530', 194, 0, 0, 0, 1, 6, 0, 0, 274, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87964, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018223', 4018223, '-450.400604', '-30.487301', '217.028503', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018224', 4018224, '-437.057800', '-30.783661', '234.972397', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018225', 4018225, '-439.601105', '-30.769150', '236.646896', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018228', 4018228, '-364.140503', '-35.208920', '210.519699', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018229', 4018229, '-361.718689', '-35.490021', '212.068604', 206, 0, 0, 0, 1, 6, 0, 0, 306, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86592, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018449', 4018449, '408.621307', '7.003844', '139.543701', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53252, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018452', 4018452, '410.757507', '7.095398', '140.581299', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52980, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018453', 4018453, '405.539001', '6.301929', '141.710495', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52708, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018455', 4018455, '433.269897', '13.745850', '117.412903', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52436, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018459', 4018459, '458.291687', '14.700790', '137.946793', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018460', 4018460, '456.601501', '14.747650', '135.462296', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51892, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018462', 4018462, '435.268585', '6.480499', '160.338593', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51620, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018465', 4018465, '340.566010', '-7.949997', '150.988007', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51348, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018513', 4018513, '186.169693', '-31.149429', '258.258911', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51076, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018518', 4018518, '231.316696', '-44.052341', '271.940186', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50804, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018520', 4018520, '230.185699', '-44.115601', '274.394501', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50532, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018521', 4018521, '202.469299', '-14.894620', '157.281494', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50260, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018526', 4018526, '204.195099', '-14.686260', '155.274399', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49988, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018531', 4018531, '215.699997', '-14.748440', '162.191299', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018535', 4018535, '230.609497', '-15.671060', '152.147705', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018536', 4018536, '234.454803', '-15.945720', '152.452805', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018541', 4018541, '316.582214', '-12.778530', '171.745605', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018544', 4018544, '341.519897', '-7.554129', '153.111801', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018546', 4018546, '280.363190', '-10.464180', '157.039001', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018548', 4018548, '277.401794', '-10.433680', '158.329605', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018550', 4018550, '298.631104', '-17.845301', '138.619705', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018552', 4018552, '300.514313', '-17.990530', '137.021698', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018553', 4018553, '304.173004', '-16.961420', '140.928604', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018557', 4018557, '288.870209', '-20.820299', '112.120399', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018560', 4018560, '286.831604', '-20.760210', '113.868401', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018565', 4018565, '384.634094', '-8.041552', '208.148300', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46458, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018574', 4018574, '375.753387', '-8.651917', '202.716095', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46186, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018575', 4018575, '337.562012', '-6.490084', '196.335602', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018585', 4018585, '322.451508', '0.360318', '232.339203', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018587', 4018587, '332.444611', '-2.041133', '221.043106', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018590', 4018590, '322.120911', '0.721062', '236.863403', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018591', 4018591, '343.012787', '-5.424837', '244.845795', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44826, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018594', 4018594, '294.422791', '2.151475', '226.428604', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44554, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018597', 4018597, '399.075592', '-20.838551', '256.768402', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44282, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018599', 4018599, '395.043915', '-20.189211', '256.316895', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44010, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018600', 4018600, '388.906586', '-19.852030', '278.797485', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43738, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018602', 4018602, '439.887085', '-33.409691', '296.645996', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43466, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018603', 4018603, '464.315399', '-42.298431', '269.112213', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43194, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018604', 4018604, '464.615387', '-42.545731', '274.560486', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42922, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018605', 4018605, '494.224304', '-55.678349', '265.046295', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42650, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018653', 4018653, '494.524292', '-63.894562', '233.206802', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42378, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018656', 4018656, '453.035309', '-64.522003', '255.129593', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42106, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018657', 4018657, '441.404510', '-64.788147', '246.034805', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41834, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018658', 4018658, '444.123810', '-64.620087', '241.737396', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41562, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018661', 4018661, '439.902802', '-20.658911', '226.785904', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41290, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018662', 4018662, '443.246185', '-19.347570', '231.567505', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41018, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018663', 4018663, '446.924286', '-17.912411', '214.384598', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40746, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018664', 4018664, '483.668396', '-8.428408', '232.612701', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40474, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018667', 4018667, '485.972687', '-7.855111', '227.039703', 188, 0, 0, 0, 1, 6, 0, 0, 275, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40202, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(275, 'e0047', 'bnpc4018683', 4018683, '420.139191', '10.932210', '126.607399', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39936, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(275, 'e0047', 'bnpc4018685', 4018685, '447.669708', '11.251440', '147.314606', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39664, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018687', 4018687, '388.530914', '-9.116596', '196.378998', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018688', 4018688, '383.230286', '-18.143021', '263.599487', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018693', 4018693, '267.754089', '-4.105820', '247.045593', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018694', 4018694, '430.037811', '-64.649399', '210.820694', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38576, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018697', 4018697, '441.279785', '-64.462044', '202.846802', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38304, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018699', 4018699, '456.870789', '-14.453500', '215.100906', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018700', 4018700, '482.293304', '-7.656506', '258.934692', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018711', 4018711, '319.466095', '-21.198891', '117.792198', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018714', 4018714, '287.041992', '-19.224710', '132.121902', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018719', 4018719, '256.611511', '-16.890450', '168.769501', 399, 0, 0, 0, 1, 6, 0, 0, 634, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018721', 4018721, '226.084503', '-3.171931', '186.594803', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4018722', 4018722, '228.457001', '-3.558112', '189.543701', 204, 0, 0, 0, 1, 6, 0, 0, 271, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4021495', 4021495, '290.852203', '7.003784', '-131.212296', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4021497', 4021497, '290.089203', '6.881775', '-132.860397', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4057678', 4057678, '-430.180603', '-37.593121', '175.636093', 792, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21986, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(275, 'e0047', 'bnpc4057682', 4057682, '-445.348114', '-30.229731', '50.185131', 791, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21720, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(275, 'e0047', 'bnpc4057686', 4057686, '-332.421600', '-42.604149', '42.912781', 793, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21454, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(275, 'e0047', 'bnpc4621848', 4621848, '-77.749184', '-58.466881', '167.597900', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22594, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(275, 'e0047', 'bnpc4621849', 4621849, '235.769302', '-44.305069', '271.670990', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22328, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136062', 1136062, '-505.795593', '9.752348', '104.621803', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205580, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136063', 1136063, '-515.044922', '11.400910', '112.794899', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205308, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136064', 1136064, '-501.586090', '9.603134', '109.964401', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205036, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136065', 1136065, '-475.682312', '6.895020', '108.614403', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204764, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136067', 1136067, '-478.398712', '7.440553', '105.715897', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204492, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136074', 1136074, '-391.806000', '9.109558', '308.461090', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186842, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc1136075', 1136075, '-414.835693', '4.099017', '268.726593', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136076', 1136076, '-390.326385', '4.860912', '278.225494', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136077', 1136077, '-430.838715', '8.406867', '277.241089', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136078', 1136078, '-459.421692', '5.690572', '240.230301', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136079', 1136079, '-450.953796', '11.975280', '268.649994', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136080', 1136080, '-390.585205', '9.262146', '310.566895', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187114, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc1136081', 1136081, '-461.788513', '5.891314', '238.861206', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136082', 1136082, '-473.594299', '10.086170', '246.936707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136085', 1136085, '-435.743011', '1.967827', '88.564453', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202328, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1136086', 1136086, '-390.760986', '0.834163', '111.607300', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202056, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1136087', 1136087, '-418.825409', '0.336109', '91.913406', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201784, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1136089', 1136089, '-414.658203', '0.079596', '95.602753', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201512, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1136091', 1136091, '-415.322693', '-0.226261', '151.930603', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201240, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1136092', 1136092, '-421.841888', '0.864481', '141.020401', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200968, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1136093', 1136093, '-381.670593', '0.762653', '137.407394', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200696, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1136094', 1136094, '-430.745300', '0.804663', '164.744202', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200424, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1136097', 1136097, '-431.509888', '2.089151', '233.463394', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136098', 1136098, '-446.728088', '0.504031', '188.779205', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136099', 1136099, '-432.335907', '1.523763', '185.544998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136100', 1136100, '-400.007599', '-0.063123', '184.140106', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136101', 1136101, '-403.100311', '-0.089608', '188.898804', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136102', 1136102, '-360.642303', '0.164527', '231.393402', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136103', 1136103, '-384.551605', '0.763345', '233.278397', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136104', 1136104, '-386.850494', '0.112991', '227.897705', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136130', 1136130, '-325.468597', '10.213140', '333.038086', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136131', 1136131, '-242.241394', '-5.472987', '226.931595', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136132', 1136132, '-328.277710', '4.935143', '305.884399', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136134', 1136134, '-321.859711', '9.391951', '328.320587', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136136', 1136136, '-268.451996', '-2.822966', '243.274506', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136137', 1136137, '-184.086700', '-8.314297', '238.537598', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136139', 1136139, '-95.525383', '-7.421386', '293.721008', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136140', 1136140, '-126.314003', '-8.479818', '267.845093', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136141', 1136141, '-103.592903', '-7.979246', '256.096588', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136142', 1136142, '-128.252106', '-6.729275', '293.324097', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136143', 1136143, '-124.302597', '-8.155410', '276.504700', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136158', 1136158, '-113.634003', '-4.072056', '313.771210', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136161', 1136161, '-133.257095', '-0.167896', '343.312714', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163548, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1136162', 1136162, '-92.474274', '0.803288', '352.180786', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163820, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1136163', 1136163, '-74.857803', '4.447460', '383.016602', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136164', 1136164, '-32.537300', '7.616392', '412.410797', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136165', 1136165, '-64.080299', '11.043260', '430.339905', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136167', 1136167, '-5.813734', '2.975462', '373.769714', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136168', 1136168, '37.950851', '7.949909', '464.214691', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136170', 1136170, '78.733383', '6.701904', '382.834015', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158676, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136172', 1136172, '-27.413450', '-5.802525', '309.247986', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136173', 1136173, '4.164327', '-4.588222', '319.364899', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136174', 1136174, '-5.613925', '-6.047291', '306.725403', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136175', 1136175, '-60.686939', '-2.369054', '328.478394', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136177', 1136177, '-22.903839', '-5.355963', '311.696014', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136178', 1136178, '-138.536697', '-2.761930', '180.468399', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1136179', 1136179, '-156.542297', '2.639764', '135.026993', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1136180', 1136180, '-150.621796', '2.365101', '138.292496', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1136182', 1136182, '-172.930496', '-0.839293', '164.965195', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1136190', 1136190, '-288.410797', '11.764660', '-25.711500', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146696, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136191', 1136191, '-269.916901', '12.741240', '-45.975479', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139388, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136192', 1136192, '-305.683990', '11.673100', '-35.629860', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139116, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136194', 1136194, '-253.040405', '11.428960', '-3.524881', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136196', 1136196, '-216.479797', '5.813640', '85.984543', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148316, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1136197', 1136197, '-296.681213', '8.743372', '66.361427', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147772, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1136198', 1136198, '-280.833405', '6.822407', '95.059250', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148044, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1136224', 1136224, '68.558739', '11.184820', '-24.826481', 762, 0, 0, 0, 0, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119934, 2, 0, 0, 0, 0, 30122, 0, 0, 0), +(277, 'e0048', 'bnpc1136225', 1136225, '69.687866', '11.001710', '-24.643370', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118308, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(277, 'e0048', 'bnpc1136228', 1136228, '333.638397', '-4.043701', '-37.918701', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116138, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc1136229', 1136229, '349.049408', '-2.892388', '-51.221401', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116410, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc1136230', 1136230, '507.865997', '-11.795270', '4.501364', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136231', 1136231, '537.636780', '-12.274270', '-13.554320', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136232', 1136232, '536.101196', '-12.090500', '-2.388316', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136233', 1136233, '530.091492', '-12.161830', '-4.477412', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136234', 1136234, '514.392822', '-12.155740', '-30.914129', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1136235', 1136235, '594.192078', '-12.117190', '-6.794415', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1162438', 1162438, '234.721100', '4.423762', '180.467896', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1162439', 1162439, '236.722900', '4.611117', '188.587906', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1162445', 1162445, '199.757599', '6.240894', '156.164093', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130156, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1162451', 1162451, '252.094193', '0.076233', '155.870804', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126994, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1162452', 1162452, '286.884094', '0.589654', '176.855103', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127538, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1162453', 1162453, '298.563293', '-0.085100', '171.096207', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127266, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1162458', 1162458, '203.268799', '1.655764', '106.938103', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126722, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1162460', 1162460, '243.554703', '-3.339902', '84.717239', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126178, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1162461', 1162461, '279.461212', '-4.218416', '42.329281', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129884, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1162462', 1162462, '294.178589', '-5.478088', '38.284790', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129612, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1162463', 1162463, '301.736115', '-5.423965', '50.006149', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125018, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1162467', 1162467, '241.840195', '-1.764643', '99.107300', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126450, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1162469', 1162469, '274.593109', '-5.942087', '11.604580', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124746, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1162472', 1162472, '227.649307', '-3.036592', '-15.976240', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129340, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1162476', 1162476, '220.935303', '-2.975586', '-22.720699', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129068, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1162477', 1162477, '207.324203', '-4.013123', '-42.343868', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125834, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc1162479', 1162479, '154.222900', '0.015198', '7.949890', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120206, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc1162480', 1162480, '176.019806', '-4.055645', '-3.018583', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117492, 2, 0, 0, 0, 0, 30120, 0, 0, 0), +(277, 'e0048', 'bnpc1162481', 1162481, '178.942505', '-0.503601', '60.196781', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115594, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc1162482', 1162482, '181.322906', '-0.473083', '58.762451', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120478, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc1162483', 1162483, '356.642700', '-2.987466', '-35.734451', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121566, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc1162484', 1162484, '333.913086', '-4.135254', '-40.177059', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118580, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc1162486', 1162486, '111.986000', '6.118835', '-40.909481', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119124, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc1162487', 1162487, '74.814934', '10.482900', '-18.448200', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115866, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc1162490', 1162490, '-9.318063', '19.332541', '-19.108101', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120750, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc1162492', 1162492, '-20.523430', '17.990339', '11.642590', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119396, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1185226', 1185226, '256.488800', '-24.255501', '-358.053009', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68326, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186102', 1186102, '185.839600', '-21.471359', '-442.130188', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68054, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186104', 1186104, '139.593506', '-25.435749', '-371.665588', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186105', 1186105, '133.317993', '-24.199471', '-327.840088', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186106', 1186106, '85.221588', '-28.236040', '-263.782715', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186107', 1186107, '112.138496', '-30.215771', '-200.427307', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186108', 1186108, '171.129898', '-31.077660', '-212.573502', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44874, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186113', 1186113, '269.977814', '-10.584900', '-100.442299', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73786, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186119', 1186119, '301.000702', '-14.170150', '-179.921906', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186121', 1186121, '299.316498', '-13.980780', '-177.154099', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72426, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186122', 1186122, '210.285797', '-6.827882', '-189.363602', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76258, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186126', 1186126, '195.813797', '-6.409023', '-148.998001', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77074, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186127', 1186127, '198.768997', '-5.217091', '-147.382904', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76802, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186128', 1186128, '264.066498', '-11.720200', '-141.711304', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72970, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186130', 1186130, '255.084595', '-10.365080', '-135.648193', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72698, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186131', 1186131, '262.121887', '-11.356690', '-170.924500', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74880, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186134', 1186134, '257.526489', '-11.230880', '-163.622498', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75152, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186135', 1186135, '289.600891', '-14.023210', '-132.829803', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186142', 1186142, '321.177094', '-17.145399', '-141.817795', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75424, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186146', 1186146, '357.922394', '-18.371901', '-147.675705', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72154, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186157', 1186157, '339.864105', '-20.256371', '-163.073196', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75986, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186160', 1186160, '325.512207', '-18.022200', '-210.406693', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186163', 1186163, '334.967590', '-18.257030', '-188.068497', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186165', 1186165, '357.646301', '-21.037640', '-172.919998', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186166', 1186166, '355.845795', '-21.195030', '-175.910797', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186167', 1186167, '354.167297', '-20.996559', '-172.828506', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186168', 1186168, '327.501495', '-18.763630', '-170.766296', 16, 0, 0, 0, 1, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186169', 1186169, '357.691193', '-18.922649', '-152.895798', 16, 0, 0, 0, 1, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186173', 1186173, '362.066711', '-19.066210', '-226.023697', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186174', 1186174, '367.605011', '-19.394260', '-223.926193', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69736, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1186185', 1186185, '432.333801', '-18.556009', '-200.427307', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335118', 1335118, '259.814606', '-9.041327', '-75.930794', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82388, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335120', 1335120, '258.747192', '-9.339743', '-77.470100', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335121', 1335121, '271.628510', '-12.409580', '-119.495102', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335122', 1335122, '268.973389', '-11.585720', '-119.678200', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335125', 1335125, '299.467896', '-15.161890', '-151.066498', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335126', 1335126, '300.071503', '-15.260950', '-157.970398', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335127', 1335127, '305.104095', '-16.013350', '-153.873703', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80762, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335128', 1335128, '362.569489', '-19.896090', '-195.239197', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335129', 1335129, '359.914490', '-20.141609', '-198.291000', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335131', 1335131, '376.912994', '-17.746290', '-239.673492', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79940, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335132', 1335132, '378.265808', '-17.184210', '-245.818802', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79668, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335133', 1335133, '373.817291', '-17.567560', '-244.927200', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79396, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335135', 1335135, '382.244812', '-18.581270', '-213.006607', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335136', 1335136, '384.289612', '-18.812380', '-216.180496', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78852, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335137', 1335137, '365.346710', '-17.380070', '-235.889297', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78586, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335142', 1335142, '325.117188', '-17.441219', '-261.926086', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335147', 1335147, '382.083588', '-15.505330', '-274.037415', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335148', 1335148, '379.490387', '-15.238400', '-273.274506', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335150', 1335150, '393.739594', '-17.082621', '-246.185501', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335151', 1335151, '395.540100', '-17.610670', '-243.194702', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73242, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335152', 1335152, '374.262207', '-16.275169', '-255.869507', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74058, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335154', 1335154, '445.548096', '-18.953011', '-239.643005', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75714, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335155', 1335155, '410.055603', '-15.113950', '-262.409393', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335156', 1335156, '409.262085', '-14.690550', '-264.759308', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335171', 1335171, '283.910095', '-19.542110', '-281.001801', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335172', 1335172, '309.847809', '-19.112881', '-260.545685', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49406, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335179', 1335179, '308.749512', '-18.382240', '-278.268188', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335180', 1335180, '305.850189', '-18.505501', '-275.399506', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335181', 1335181, '287.464691', '-20.370840', '-267.414398', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335182', 1335182, '221.773499', '-20.304710', '-402.104889', 73, 0, 0, 0, 1, 6, 0, 0, 70, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335186', 1335186, '260.100708', '-22.595980', '-282.093597', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335187', 1335187, '257.170898', '-22.925730', '-282.856506', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335188', 1335188, '258.178009', '-22.527321', '-280.506592', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335189', 1335189, '259.124115', '-22.919470', '-284.351898', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335191', 1335191, '252.674103', '-25.158079', '-319.881500', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55650, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335245', 1335245, '264.071289', '-23.086901', '-377.431885', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335247', 1335247, '251.044693', '-24.157169', '-429.172791', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56484, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335250', 1335250, '213.636093', '-21.692980', '-416.299286', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335254', 1335254, '250.182205', '-23.049110', '-398.827515', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335255', 1335255, '235.164795', '-22.033070', '-382.140289', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51310, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335257', 1335257, '250.975601', '-23.342621', '-395.073792', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335258', 1335258, '233.840302', '-22.782070', '-408.640991', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335259', 1335259, '228.651703', '-20.932440', '-399.771088', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335260', 1335260, '285.551605', '-20.191130', '-266.194702', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335261', 1335261, '233.309006', '-22.290220', '-403.706696', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335262', 1335262, '226.586807', '-21.579840', '-408.344208', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335263', 1335263, '251.797501', '-24.329281', '-417.166504', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335265', 1335265, '239.352707', '-23.325970', '-417.493805', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335266', 1335266, '234.393204', '-23.440660', '-419.117004', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335269', 1335269, '208.094101', '-20.046240', '-400.359314', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335270', 1335270, '205.635300', '-20.583099', '-405.028595', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335271', 1335271, '214.649200', '-21.421610', '-437.417206', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335272', 1335272, '220.603699', '-19.557770', '-394.169189', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335273', 1335273, '237.537292', '-23.111750', '-434.553314', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335274', 1335274, '201.154007', '-21.053610', '-424.056702', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335275', 1335275, '199.896194', '-21.481091', '-433.825592', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64542, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335276', 1335276, '199.035995', '-21.532829', '-428.054504', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335277', 1335277, '204.574905', '-21.963341', '-430.374695', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335278', 1335278, '203.919998', '-21.381781', '-436.120514', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335279', 1335279, '158.464905', '-25.742020', '-514.580017', 78, 0, 0, 0, 0, 6, 0, 0, 75, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63864, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335280', 1335280, '156.163498', '-25.174259', '-507.993713', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335281', 1335281, '162.755295', '-25.392191', '-508.512512', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335282', 1335282, '160.374893', '-26.243521', '-521.635315', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53064, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(277, 'e0048', 'bnpc1335283', 1335283, '153.783005', '-25.787460', '-521.116516', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53880, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335284', 1335284, '164.681107', '-23.516750', '-451.796112', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335287', 1335287, '161.309204', '-24.113899', '-454.393097', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335290', 1335290, '178.249100', '-21.930130', '-465.361603', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335294', 1335294, '176.568298', '-23.836981', '-493.324188', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335295', 1335295, '175.158295', '-24.210711', '-495.597809', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335298', 1335298, '146.524597', '-23.827370', '-466.589294', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49678, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335299', 1335299, '136.972305', '-23.003241', '-490.722107', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335310', 1335310, '139.252106', '-23.121799', '-488.640411', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335313', 1335313, '169.940796', '-26.606640', '-538.220520', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335317', 1335317, '176.719406', '-26.248819', '-529.080017', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335318', 1335318, '175.681793', '-26.337879', '-531.124695', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57300, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335326', 1335326, '135.813904', '-23.796021', '-507.744904', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57572, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335327', 1335327, '143.479095', '-24.673691', '-543.979187', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56756, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335328', 1335328, '142.868698', '-24.722940', '-547.854980', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55940, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335329', 1335329, '145.279694', '-25.150471', '-548.343323', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56212, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335330', 1335330, '167.576401', '-23.605841', '-478.499115', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335331', 1335331, '172.550903', '-23.232599', '-481.184692', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335332', 1335332, '136.520096', '-23.013941', '-481.370514', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60310, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335333', 1335333, '170.445099', '-23.299061', '-477.888702', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1335344', 1335344, '163.126495', '-26.834591', '-547.864319', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347955', 1347955, '185.057404', '-22.517530', '-393.153900', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347956', 1347956, '186.735901', '-22.314060', '-389.308685', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63170, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347958', 1347958, '180.601807', '-22.849991', '-388.088013', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62904, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347959', 1347959, '182.982193', '-22.808430', '-387.447113', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347960', 1347960, '181.853104', '-22.416210', '-391.109192', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347961', 1347961, '163.818802', '-23.941280', '-382.930786', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347964', 1347964, '136.015106', '-25.067890', '-394.922394', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347965', 1347965, '135.952805', '-25.463390', '-380.858490', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347966', 1347966, '159.892807', '-23.691389', '-387.543396', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347967', 1347967, '134.539597', '-25.153410', '-393.304901', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347968', 1347968, '148.660599', '-24.933149', '-382.747192', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62082, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347969', 1347969, '149.210007', '-24.847401', '-385.554901', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347970', 1347970, '145.273102', '-24.985941', '-383.815399', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61544, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347971', 1347971, '146.677002', '-25.017750', '-386.012695', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61278, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347974', 1347974, '119.340797', '-26.901699', '-370.321198', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347976', 1347976, '110.948303', '-27.082211', '-355.214813', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44626, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347977', 1347977, '116.650902', '-26.851940', '-355.502686', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347979', 1347979, '115.985397', '-25.590910', '-330.770813', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347980', 1347980, '96.825470', '-26.731310', '-337.443909', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347981', 1347981, '94.966377', '-26.840120', '-343.493591', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347982', 1347982, '112.341904', '-27.148821', '-352.201202', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347984', 1347984, '127.403000', '-25.039721', '-339.740387', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39306, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347987', 1347987, '128.043900', '-25.102480', '-341.174805', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39578, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347990', 1347990, '103.868103', '-27.830070', '-370.201294', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30578, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347993', 1347993, '104.585403', '-27.703699', '-374.422699', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347994', 1347994, '100.785797', '-27.626970', '-369.774109', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30306, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347996', 1347996, '115.281898', '-25.507601', '-321.858612', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36296, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1347999', 1347999, '95.705887', '-27.105480', '-316.640686', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38496, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348000', 1348000, '92.348900', '-26.525320', '-318.288696', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348001', 1348001, '106.853699', '-27.461729', '-348.520905', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348002', 1348002, '106.675797', '-26.863291', '-353.933014', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43538, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348003', 1348003, '111.067200', '-27.419359', '-348.093689', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43266, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348005', 1348005, '147.925797', '-23.963091', '-316.955292', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348006', 1348006, '139.153000', '-23.312229', '-308.514313', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348007', 1348007, '138.078796', '-23.392130', '-312.001312', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348010', 1348010, '95.115891', '-27.238010', '-299.027893', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35734, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348011', 1348011, '133.297394', '-23.149731', '-303.661987', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348012', 1348012, '93.072998', '-26.876440', '-282.357300', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348013', 1348013, '90.519493', '-27.035959', '-280.262787', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42722, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348014', 1348014, '91.113632', '-26.633659', '-283.826508', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348015', 1348015, '138.584198', '-29.894171', '-214.306305', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348016', 1348016, '133.174103', '-29.752001', '-213.771896', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39034, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348018', 1348018, '125.171204', '-28.822081', '-241.728302', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348019', 1348019, '133.407806', '-29.766630', '-245.194504', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348020', 1348020, '157.760696', '-30.241409', '-209.753799', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348021', 1348021, '110.126297', '-29.295731', '-223.210403', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1348022', 1348022, '159.280807', '-29.889629', '-205.386993', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349415', 1349415, '107.675301', '-28.766970', '-247.061798', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34918, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349419', 1349419, '144.273102', '-29.321350', '-228.200500', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42166, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349420', 1349420, '141.345703', '-29.379709', '-233.926895', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41894, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349421', 1349421, '147.630997', '-28.915890', '-231.464096', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349422', 1349422, '140.337204', '-29.188551', '-230.123901', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41356, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349423', 1349423, '142.912903', '-29.360870', '-232.045303', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41090, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349426', 1349426, '117.321800', '-29.940710', '-208.257904', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349428', 1349428, '119.702202', '-29.857460', '-208.563095', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349429', 1349429, '152.550797', '-29.560490', '-240.746399', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349430', 1349430, '153.238297', '-29.591810', '-244.188797', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349434', 1349434, '153.856705', '-29.735661', '-202.044800', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36568, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349444', 1349444, '163.936996', '-29.950470', '-221.893097', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38224, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349446', 1349446, '170.162399', '-30.332001', '-205.375504', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35190, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349448', 1349448, '92.027107', '-29.617809', '-158.983795', 74, 0, 0, 0, 0, 6, 0, 0, 71, 0, '0.000000', 57, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40962, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349450', 1349450, '88.622063', '-30.374201', '-172.160995', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349453', 1349453, '79.946991', '-30.373859', '-158.627106', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28300, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349454', 1349454, '84.076393', '-30.374201', '-170.842606', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349455', 1349455, '87.641907', '-30.374201', '-169.239105', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349456', 1349456, '97.735252', '-30.373690', '-149.205994', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349457', 1349457, '92.410156', '-30.373690', '-146.716202', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349458', 1349458, '93.722427', '-30.289921', '-150.469894', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349460', 1349460, '102.193199', '-30.374161', '-167.326401', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349462', 1349462, '104.695702', '-30.374050', '-164.732300', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27756, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349463', 1349463, '108.756897', '-30.549700', '-139.678604', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349466', 1349466, '70.533546', '-30.081551', '-177.695999', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349469', 1349469, '67.079147', '-29.548901', '-153.771606', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349471', 1349471, '66.987991', '-29.454809', '-150.085007', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36840, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349475', 1349475, '100.944000', '-30.141479', '-182.035095', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349476', 1349476, '103.423500', '-30.255220', '-183.818893', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc1349477', 1349477, '117.287300', '-30.394251', '-176.134903', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313925', 2313925, '-482.564789', '6.955613', '61.610111', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313933', 2313933, '-429.003693', '2.320748', '236.438400', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313934', 2313934, '-409.316101', '1.057956', '244.817902', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313935', 2313935, '-442.272491', '2.403773', '206.166901', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313937', 2313937, '-428.366699', '7.934575', '277.541107', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313938', 2313938, '-418.558289', '9.127686', '293.699799', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313939', 2313939, '-424.849213', '10.891960', '297.223694', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313940', 2313940, '-380.392212', '6.912290', '296.833710', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313942', 2313942, '-357.351105', '2.181993', '273.792603', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313943', 2313943, '-347.798889', '4.318256', '294.331207', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313944', 2313944, '-351.491608', '4.226702', '289.814514', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313946', 2313946, '-350.392914', '9.353733', '319.966400', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313948', 2313948, '-347.768402', '-0.140188', '238.560394', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313949', 2313949, '-334.432007', '0.900235', '197.100693', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313952', 2313952, '-512.518005', '10.681730', '106.017303', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313954', 2313954, '-466.272797', '4.568396', '120.049896', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313955', 2313955, '-503.845398', '11.240590', '124.209396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313959', 2313959, '-429.545593', '1.312407', '120.378799', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313963', 2313963, '-417.238586', '0.076732', '65.064568', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313964', 2313964, '-397.897705', '-0.211857', '75.408188', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313967', 2313967, '-395.162506', '-0.289825', '72.009888', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313971', 2313971, '-435.869385', '1.346877', '216.851196', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313974', 2313974, '-381.439911', '-0.122663', '184.500702', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313980', 2313980, '-464.159210', '9.409202', '251.654099', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313982', 2313982, '-452.844788', '11.917580', '265.924805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313984', 2313984, '-436.512909', '7.460858', '266.224792', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313985', 2313985, '-410.069000', '6.296681', '281.448486', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313988', 2313988, '-425.559387', '12.804490', '309.608093', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313989', 2313989, '-371.467285', '4.569370', '282.813202', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313991', 2313991, '-342.802002', '1.347080', '267.457001', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313993', 2313993, '-365.310303', '-0.244142', '207.010696', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2313994', 2313994, '-370.665497', '1.130038', '238.255402', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314003', 2314003, '-253.246994', '-4.236800', '221.935196', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314004', 2314004, '-227.049805', '-5.537235', '202.864395', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314005', 2314005, '-197.435196', '-7.994266', '221.269196', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314006', 2314006, '-200.220596', '-8.231664', '224.271805', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314009', 2314009, '-125.018700', '-7.681337', '231.549805', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176048, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314010', 2314010, '-129.776001', '-7.944516', '225.414200', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175776, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314034', 2314034, '-112.974503', '2.718925', '356.892609', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164364, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc2314035', 2314035, '-118.974602', '1.573215', '349.996094', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164092, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc2314041', 2314041, '-43.174789', '-3.827868', '319.130188', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314043', 2314043, '-31.562269', '-4.485572', '194.662094', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157322, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc2314047', 2314047, '-33.348999', '-6.685591', '211.045303', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157050, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc2314048', 2314048, '-54.297371', '-4.774252', '197.991501', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157594, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc2314070', 2314070, '-59.919048', '11.628480', '435.431305', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314088', 2314088, '-35.123161', '16.027519', '447.688507', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314102', 2314102, '-45.542999', '11.092310', '429.655396', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314107', 2314107, '-24.940210', '7.788889', '415.915497', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314112', 2314112, '2.340681', '1.029590', '360.915588', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314133', 2314133, '-1.470222', '0.327971', '355.323486', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314135', 2314135, '-2.340280', '16.406719', '467.504791', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173600, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314136', 2314136, '1.744962', '15.965160', '463.338013', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173328, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314137', 2314137, '67.368530', '7.949890', '446.280609', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173056, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314138', 2314138, '46.122662', '7.817679', '439.927185', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172784, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314139', 2314139, '108.354301', '9.109589', '407.461609', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159220, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314140', 2314140, '104.234299', '8.804408', '412.466614', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159764, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314141', 2314141, '123.021004', '12.317820', '423.590515', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159492, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314142', 2314142, '109.849602', '10.971190', '457.846893', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158948, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314144', 2314144, '68.332771', '7.866884', '474.070587', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314145', 2314145, '42.399090', '7.746444', '460.622803', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314146', 2314146, '97.762482', '7.782855', '392.593201', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314147', 2314147, '82.413742', '7.833769', '430.187286', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314148', 2314148, '4.571571', '14.724090', '481.634888', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314149', 2314149, '115.912598', '11.103390', '432.906311', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314150', 2314150, '2.013238', '9.902340', '432.648193', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314151', 2314151, '-58.361721', '5.610658', '400.360504', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314152', 2314152, '-85.923592', '7.095398', '408.499207', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314153', 2314153, '-89.646797', '6.881772', '406.576599', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314154', 2314154, '-6.062557', '1.064418', '360.585297', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314155', 2314155, '5.446085', '-3.557740', '326.017792', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314156', 2314156, '4.316917', '-3.595564', '325.071686', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314157', 2314157, '-28.881241', '-5.070975', '313.819092', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314159', 2314159, '-46.860470', '-8.011047', '221.606705', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314160', 2314160, '-69.568810', '-5.347832', '198.726303', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314161', 2314161, '-58.732021', '-3.341773', '321.766907', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314163', 2314163, '-122.044701', '1.863278', '351.901215', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314164', 2314164, '-134.686493', '5.714658', '377.345215', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314165', 2314165, '-91.805458', '-7.624840', '295.133911', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314166', 2314166, '-113.416000', '-7.987957', '278.087799', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314173', 2314173, '-122.484200', '-7.126010', '289.814514', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314174', 2314174, '-230.604599', '-5.478079', '208.442703', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314175', 2314175, '-207.367706', '-5.861229', '204.890305', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314177', 2314177, '-255.068893', '-4.175101', '226.840500', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314180', 2314180, '-330.692505', '7.278777', '313.762604', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314181', 2314181, '-317.594910', '9.477072', '339.549591', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314192', 2314192, '-345.082794', '6.485037', '63.248600', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147228, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc2314196', 2314196, '-237.055405', '3.071132', '110.837601', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148588, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc2314197', 2314197, '-241.022705', '2.939748', '114.865997', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147500, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc2314228', 2314228, '-134.111603', '-2.151569', '175.158295', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc2314253', 2314253, '-336.507202', '6.607109', '55.985298', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314258', 2314258, '-287.312195', '8.499228', '64.072594', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314261', 2314261, '-285.236908', '7.675241', '65.262787', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314262', 2314262, '-249.378204', '7.888867', '63.401192', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314265', 2314265, '-295.246887', '5.966230', '120.439400', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314267', 2314267, '-244.488403', '4.113512', '102.499100', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314270', 2314270, '-200.428696', '4.427309', '103.759300', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314275', 2314275, '-199.511703', '13.382110', '47.836979', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314276', 2314276, '-226.188293', '11.478340', '8.346189', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148860, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc2314280', 2314280, '-188.377304', '27.717520', '-44.157928', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314286', 2314286, '-183.089706', '31.517771', '-61.713600', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314288', 2314288, '-189.410294', '46.463669', '-104.997398', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314290', 2314290, '-191.485504', '47.196110', '-107.194702', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314302', 2314302, '-182.177505', '1.937849', '136.217194', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314304', 2314304, '-186.236404', '2.212511', '133.592697', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314305', 2314305, '-141.374893', '-2.090533', '175.005707', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314308', 2314308, '-187.396103', '-1.052920', '170.153305', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314309', 2314309, '-129.839096', '0.320392', '156.450699', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314314', 2314314, '-186.266907', '-0.961365', '166.521698', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314362', 2314362, '-5.424891', '19.709511', '-18.332621', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 116682, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc2314363', 2314363, '-6.294857', '20.221451', '15.311720', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121022, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc2314364', 2314364, '80.094597', '9.658875', '14.206050', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117764, 2, 0, 0, 0, 0, 30124, 0, 0, 0), +(277, 'e0048', 'bnpc2314365', 2314365, '111.406097', '6.393494', '-42.557430', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116954, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc2314366', 2314366, '113.664398', '5.874695', '-41.245178', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119662, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc2314369', 2314369, '176.512604', '-4.252202', '-4.205355', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118036, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(277, 'e0048', 'bnpc2314398', 2314398, '350.148193', '-2.774287', '-52.136921', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117226, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(277, 'e0048', 'bnpc2314451', 2314451, '-12.582740', '19.341261', '-16.372990', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314457', 2314457, '-8.483642', '19.834230', '12.296340', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314458', 2314458, '60.166260', '13.473630', '9.872559', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137838, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(277, 'e0048', 'bnpc2314460', 2314460, '90.726227', '9.726084', '-48.813629', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314462', 2314462, '184.311996', '-2.061695', '22.900990', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314464', 2314464, '212.298294', '-3.300554', '68.344177', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314465', 2314465, '254.499100', '-0.309484', '161.274002', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314466', 2314466, '216.507706', '0.515230', '114.319603', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314610', 2314610, '306.118286', '-6.238892', '11.614130', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314612', 2314612, '236.715302', '-5.231476', '-56.311989', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314613', 2314613, '213.666504', '-2.576396', '-14.211420', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314617', 2314617, '332.661499', '-4.732603', '-51.060032', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314621', 2314621, '364.126007', '-2.822966', '-30.502831', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314623', 2314623, '361.654114', '-2.670410', '-53.025211', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314626', 2314626, '519.135681', '-12.154410', '-35.360329', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314632', 2314632, '562.935120', '-12.088730', '-2.092934', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314634', 2314634, '546.164124', '-11.988440', '-64.370163', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314640', 2314640, '622.314026', '-13.134470', '-6.901284', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314642', 2314642, '619.809082', '-12.711930', '-6.546345', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2314715', 2314715, '570.641479', '-12.100450', '-40.116009', 63, 0, 0, 0, 1, 6, 0, 0, 60, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133220, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(277, 'e0048', 'bnpc2314717', 2314717, '566.063782', '-11.947860', '-47.776039', 64, 0, 0, 0, 0, 6, 0, 0, 61, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132954, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(277, 'e0048', 'bnpc2314726', 2314726, '556.389587', '-12.008900', '-42.404869', 55, 0, 0, 0, 1, 6, 0, 0, 53, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132688, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2319905', 2319905, '133.538803', '-23.850300', '-524.211304', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2319906', 2319906, '135.644501', '-24.169041', '-527.507324', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2319916', 2319916, '176.574203', '-26.295950', '-563.569885', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2319917', 2319917, '177.984299', '-26.445820', '-561.296326', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2319918', 2319918, '128.970001', '-22.921940', '-557.568481', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2320483', 2320483, '376.638397', '-2.304138', '-39.993961', 61, 0, 0, 0, 1, 6, 0, 0, 58, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128886, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(277, 'e0048', 'bnpc2320484', 2320484, '381.979004', '-2.517761', '-36.209721', 62, 0, 0, 0, 0, 6, 0, 0, 59, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128620, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(277, 'e0048', 'bnpc2320487', 2320487, '378.164307', '-2.273621', '-37.033691', 55, 0, 0, 0, 1, 6, 0, 0, 53, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2320488', 2320488, '413.927094', '-11.864880', '-0.202001', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2320489', 2320489, '450.408203', '-11.066550', '-6.123241', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127708, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2341765', 2341765, '66.095573', '7.840286', '477.260101', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2341766', 2341766, '43.036430', '7.860031', '467.247192', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2341767', 2341767, '24.573021', '9.672716', '473.677795', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2350399', 2350399, '-284.382385', '11.856210', '-27.054291', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146424, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2350400', 2350400, '-260.730988', '11.703620', '-32.242359', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146152, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2350401', 2350401, '-287.373199', '11.490000', '-7.705853', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139660, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2350402', 2350402, '-285.664215', '12.558130', '-52.719971', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145880, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc2350715', 2350715, '350.270203', '-2.804400', '-50.397419', 762, 0, 0, 0, 0, 6, 0, 0, 64, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121294, 2, 0, 0, 0, 0, 30120, 0, 0, 0), +(277, 'e0048', 'bnpc2350717', 2350717, '364.079590', '-4.248232', '-7.079392', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118852, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc2499386', 2499386, '-228.497696', '12.354860', '2.668262', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3694733', 3694733, '-401.218414', '11.367920', '318.654388', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186570, 5, 0, 0, 0, 0, 30059, 0, 0, 0), +(277, 'e0048', 'bnpc3694734', 3694734, '-406.210388', '11.893380', '317.922485', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186298, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc3694735', 3694735, '-390.079987', '10.675150', '320.996399', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186026, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc3694736', 3694736, '-405.569611', '9.872559', '309.346100', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185754, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc3694737', 3694737, '-399.718811', '10.832540', '315.967102', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185482, 5, 0, 0, 0, 0, 30059, 0, 0, 0), +(277, 'e0048', 'bnpc3694738', 3694738, '-398.236786', '11.123780', '318.544708', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185210, 5, 0, 0, 0, 0, 30060, 0, 0, 0), +(277, 'e0048', 'bnpc3694900', 3694900, '-355.928314', '-0.308188', '209.458206', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3694901', 3694901, '-358.039886', '-0.389206', '203.009705', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3694902', 3694902, '-359.232910', '-0.298962', '198.263794', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3694903', 3694903, '-364.384613', '-0.113241', '212.442200', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3694904', 3694904, '-376.390198', '-0.538467', '203.341293', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3694905', 3694905, '-364.056610', '-0.145500', '194.541702', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3694906', 3694906, '-378.323914', '-0.373772', '200.093002', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3694907', 3694907, '-368.149506', '-0.318695', '203.149994', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3694908', 3694908, '-401.144989', '0.532858', '100.339798', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184400, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3694909', 3694909, '-394.740112', '-0.280364', '154.306000', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184128, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3694910', 3694910, '-391.653412', '-0.503595', '210.406601', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184672, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3695051', 3695051, '-419.371887', '0.232080', '192.587006', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183856, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3695053', 3695053, '-421.990997', '0.316387', '76.746277', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184944, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3696616', 3696616, '-96.760498', '3.493882', '366.300812', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163276, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3696617', 3696617, '-93.824730', '3.873965', '372.828613', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163004, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3696618', 3696618, '-127.003799', '2.972143', '361.243103', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3696619', 3696619, '-133.940903', '6.157478', '379.316498', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3696870', 3696870, '-90.013023', '12.924340', '438.193298', 311, 0, 0, 0, 1, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162194, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3696872', 3696872, '-97.337341', '11.276370', '431.967590', 311, 0, 0, 0, 1, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161922, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(277, 'e0048', 'bnpc3696873', 3696873, '-91.318466', '10.895230', '429.915894', 311, 0, 0, 0, 0, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161650, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(277, 'e0048', 'bnpc3696876', 3696876, '-81.651070', '11.886730', '434.470093', 79, 0, 0, 0, 1, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(277, 'e0048', 'bnpc3696877', 3696877, '-91.226921', '11.092580', '430.953491', 79, 0, 0, 0, 0, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161112, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(277, 'e0048', 'bnpc3696878', 3696878, '-87.327423', '11.154300', '431.082611', 79, 0, 0, 0, 0, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160840, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(277, 'e0048', 'bnpc3696879', 3696879, '-90.402939', '11.068160', '430.739899', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160574, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(277, 'e0048', 'bnpc3697774', 3697774, '-88.120903', '11.001710', '430.441711', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160302, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(277, 'e0048', 'bnpc3697775', 3697775, '-88.426071', '11.490000', '427.695099', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160030, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(277, 'e0048', 'bnpc3697778', 3697778, '92.364197', '7.706964', '389.248596', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3697779', 3697779, '108.716797', '9.727629', '431.794403', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3697780', 3697780, '80.686493', '7.961041', '421.256897', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157860, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3698022', 3698022, '-75.550377', '-5.582465', '200.264694', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156778, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3698023', 3698023, '-38.882149', '-4.081942', '191.941605', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156506, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3698921', 3698921, '-37.577309', '-8.258268', '242.908295', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156234, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3700086', 3700086, '-37.311859', '-8.389291', '259.427307', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155962, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3701093', 3701093, '-28.851320', '-7.961150', '249.751205', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155690, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3726783', 3726783, '-306.845306', '7.615899', '107.505699', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145342, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3726785', 3726785, '-258.686188', '7.797313', '66.056259', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145070, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3726788', 3726788, '-219.973602', '2.520791', '114.552399', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144798, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3726789', 3726789, '-199.571198', '6.403381', '88.836418', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144526, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3727336', 3727336, '-233.240204', '11.494870', '34.787762', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144254, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3727339', 3727339, '-197.756302', '14.999770', '41.853489', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143982, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3727712', 3727712, '-313.497192', '11.569130', '-31.583179', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3727713', 3727713, '-314.589386', '11.902390', '-35.298470', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3727714', 3727714, '-306.619385', '11.253370', '-13.814930', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3727715', 3727715, '-278.890808', '12.580250', '-40.299412', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3727717', 3727717, '-267.242004', '11.943940', '-40.949741', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3727718', 3727718, '-273.701111', '11.886720', '-21.286381', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc3727732', 3727732, '-134.691406', '15.243710', '-3.646973', 70, 0, 0, 0, 0, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142090, 1, 0, 0, 0, 17, 30120, 0, 0, 0), +(277, 'e0048', 'bnpc3727734', 3727734, '-137.071793', '14.908020', '-3.555420', 71, 0, 0, 0, 1, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141824, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc3727735', 3727735, '-134.325195', '15.182740', '-2.365173', 72, 0, 0, 0, 0, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141558, 1, 0, 0, 0, 17, 30119, 0, 0, 0), +(277, 'e0048', 'bnpc3727738', 3727738, '-101.701401', '19.180540', '10.727050', 70, 0, 0, 0, 1, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141274, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc3727739', 3727739, '-69.779541', '17.349430', '6.759644', 71, 0, 0, 0, 0, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141008, 1, 0, 0, 0, 17, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc3727740', 3727740, '-74.509888', '17.685120', '8.499207', 72, 0, 0, 0, 1, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140742, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc3727743', 3727743, '-106.065498', '18.173450', '14.633350', 71, 0, 0, 0, 0, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140464, 1, 0, 0, 0, 17, 30121, 0, 0, 0), +(277, 'e0048', 'bnpc3727744', 3727744, '-104.844803', '18.509150', '14.328170', 72, 0, 0, 0, 0, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140198, 1, 0, 0, 0, 17, 30120, 0, 0, 0), +(277, 'e0048', 'bnpc3727745', 3727745, '-105.729797', '18.387070', '12.954860', 70, 0, 0, 0, 0, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139914, 1, 0, 0, 0, 17, 30119, 0, 0, 0), +(277, 'e0048', 'bnpc3727746', 3727746, '246.108398', '-4.984168', '-31.182381', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125562, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3727747', 3727747, '221.653900', '-5.011750', '-51.817490', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125290, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3729074', 3729074, '76.092232', '11.110100', '-47.602612', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124552, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3729746', 3729746, '86.654007', '8.922870', '-28.246519', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124280, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3729747', 3729747, '108.261803', '6.031532', '-26.458651', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124008, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3729748', 3729748, '115.837196', '4.964785', '13.643280', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123736, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3729749', 3729749, '71.684547', '11.649810', '-44.096661', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123464, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc3741023', 3741023, '381.093994', '-2.365173', '-37.277828', 55, 0, 0, 0, 0, 6, 0, 0, 53, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123168, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(277, 'e0048', 'bnpc3741027', 3741027, '379.934296', '-2.304138', '-35.904541', 62, 0, 0, 0, 0, 6, 0, 0, 59, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122908, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(277, 'e0048', 'bnpc3741028', 3741028, '378.072815', '-2.426208', '-33.066349', 61, 0, 0, 0, 1, 6, 0, 0, 58, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122630, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(277, 'e0048', 'bnpc3741029', 3741029, '565.056824', '-11.978380', '-48.966251', 55, 0, 0, 0, 0, 6, 0, 0, 53, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122352, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(277, 'e0048', 'bnpc3741030', 3741030, '546.837524', '-12.436150', '-46.677391', 64, 0, 0, 0, 1, 6, 0, 0, 61, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122074, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(277, 'e0048', 'bnpc3741031', 3741031, '549.614624', '-12.436150', '-49.210388', 63, 0, 0, 0, 1, 6, 0, 0, 60, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121796, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(277, 'e0048', 'bnpc3870165', 3870165, '-530.557922', '11.925130', '70.277603', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22788, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(277, 'e0048', 'bnpc3870175', 3870175, '-197.120804', '-1.760828', '261.203003', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22522, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(277, 'e0048', 'bnpc3870206', 3870206, '-273.557404', '0.846183', '289.320587', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22244, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(277, 'e0048', 'bnpc4317800', 4317800, '498.771515', '-17.898861', '-313.954407', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110750, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317801', 4317801, '451.322998', '-15.501170', '-279.865692', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110484, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc4317802', 4317802, '514.823975', '-20.341690', '-358.783813', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 110218, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc4317803', 4317803, '260.486694', '-11.080910', '-154.824493', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109958, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4317804', 4317804, '357.625610', '-18.265079', '-146.196701', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109686, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4317805', 4317805, '327.286591', '-17.372709', '-188.968796', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109414, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4317817', 4317817, '294.575806', '-12.980530', '-180.587906', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109142, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4317818', 4317818, '388.959412', '-18.823000', '-212.157593', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108876, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4317819', 4317819, '314.365814', '-18.527800', '-289.215912', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108604, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4317820', 4317820, '329.818115', '-17.597429', '-223.296097', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108332, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4317821', 4317821, '370.788086', '-17.580059', '-245.788101', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108060, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4317822', 4317822, '291.974792', '-19.793560', '-289.794800', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107788, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4317826', 4317826, '253.924606', '-23.493771', '-397.838715', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107522, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4317827', 4317827, '253.467499', '-24.551821', '-431.753998', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107250, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4317829', 4317829, '213.044601', '-20.737579', '-407.032990', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106978, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4317830', 4317830, '215.188202', '-20.979630', '-409.962799', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106706, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4317832', 4317832, '145.520706', '-23.570749', '-477.912994', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106314, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4317833', 4317833, '133.494904', '-23.758650', '-547.963074', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106042, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4317834', 4317834, '173.863693', '-25.574671', '-517.082520', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105770, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4317836', 4317836, '-10.175820', '-35.238060', '-550.143311', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105498, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4317838', 4317838, '-52.048519', '-35.202579', '-528.496216', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105226, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4317839', 4317839, '186.907700', '-23.727840', '-376.882599', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105074, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4317840', 4317840, '126.817703', '-25.925110', '-347.127502', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104808, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4317842', 4317842, '115.994499', '-26.717680', '-354.423096', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104536, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4317844', 4317844, '88.409050', '-26.293819', '-339.833893', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104264, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4317849', 4317849, '137.315903', '-23.270020', '-304.951599', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103992, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4317852', 4317852, '155.825104', '-29.775539', '-226.307693', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103564, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4317853', 4317853, '113.237198', '-29.434690', '-221.118500', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103292, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4317854', 4317854, '146.903900', '-29.527519', '-215.189804', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103020, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4317855', 4317855, '129.991104', '-29.535959', '-245.124496', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102748, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4317863', 4317863, '207.402206', '-6.915606', '-189.063599', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102596, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317864', 4317864, '351.494507', '-15.727020', '-259.491211', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 102330, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc4317873', 4317873, '284.544312', '-19.539360', '-291.495911', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 102046, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc4317874', 4317874, '368.856201', '-20.248779', '-184.771500', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101780, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(277, 'e0048', 'bnpc4317875', 4317875, '368.581512', '-20.218201', '-183.856003', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101514, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(277, 'e0048', 'bnpc4317885', 4317885, '366.659302', '-17.544319', '-237.723404', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101236, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317886', 4317886, '443.139709', '-18.693390', '-238.559097', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100970, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317887', 4317887, '249.626694', '-24.511021', '-435.444397', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 100698, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc4317891', 4317891, '131.792099', '-25.070620', '-394.277893', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100420, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317893', 4317893, '112.708099', '-30.261940', '-194.688599', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100154, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc4317894', 4317894, '193.408096', '-31.479370', '-219.684097', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99870, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc4317897', 4317897, '129.072906', '-22.173210', '-564.551880', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 99604, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc4317899', 4317899, '253.498001', '-23.239559', '-517.052002', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99338, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317900', 4317900, '165.575607', '-26.840639', '-542.717712', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99060, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(277, 'e0048', 'bnpc4317901', 4317901, '166.460602', '-26.871220', '-543.541626', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98782, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(277, 'e0048', 'bnpc4317902', 4317902, '156.908401', '-24.429689', '-455.588593', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98522, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc4317903', 4317903, '-37.241699', '-35.085869', '-537.987976', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98250, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317904', 4317904, '-33.412891', '-35.156620', '-549.607971', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97972, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317905', 4317905, '-27.481510', '-34.836430', '-541.802124', 762, 0, 0, 0, 1, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97694, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317909', 4317909, '143.718704', '-29.336210', '-230.073807', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97434, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317911', 4317911, '119.399300', '-26.408409', '-346.557190', 762, 0, 0, 0, 1, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97150, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317912', 4317912, '139.559601', '-29.771700', '-244.522903', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 96884, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc4317916', 4317916, '565.405212', '-22.088120', '-350.810913', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96606, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc4317917', 4317917, '558.970886', '-22.530359', '-353.985687', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96346, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317918', 4317918, '561.280518', '-22.530359', '-344.947998', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96068, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317920', 4317920, '553.652527', '-24.130871', '-379.476715', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95790, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(277, 'e0048', 'bnpc4317921', 4317921, '528.888000', '-24.002501', '-316.121185', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95530, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317922', 4317922, '552.422424', '-24.124571', '-379.629211', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95252, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(277, 'e0048', 'bnpc4317923', 4317923, '516.716187', '-20.340330', '-366.170807', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94986, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317924', 4317924, '544.539673', '-24.024820', '-352.536011', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94702, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317925', 4317925, '573.032776', '-24.048040', '-372.673492', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94436, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317927', 4317927, '408.712799', '-28.427610', '-401.419098', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94164, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317930', 4317930, '335.927399', '-28.671749', '-421.042206', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93886, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(277, 'e0048', 'bnpc4317931', 4317931, '335.683105', '-28.763309', '-419.913086', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93620, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(277, 'e0048', 'bnpc4317932', 4317932, '349.965607', '-28.000311', '-412.710785', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93354, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317933', 4317933, '339.902313', '-28.306200', '-487.054108', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93070, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317934', 4317934, '370.887909', '-34.493279', '-462.935608', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 92804, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc4317935', 4317935, '351.582886', '-28.032480', '-484.519714', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92538, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317936', 4317936, '425.497803', '-28.366579', '-482.505615', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92254, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317937', 4317937, '424.521210', '-27.908751', '-463.431793', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91988, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317938', 4317938, '358.322601', '-28.245850', '-509.974213', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91722, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc4317939', 4317939, '388.815186', '-34.042912', '-418.204010', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91438, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317940', 4317940, '413.626190', '-34.042912', '-447.318207', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91172, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317943', 4317943, '383.576294', '-27.500000', '-515.033020', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90906, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(277, 'e0048', 'bnpc4317944', 4317944, '403.162109', '-27.877609', '-499.533905', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 90628, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc4317945', 4317945, '384.859497', '-27.500000', '-514.937012', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90350, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(277, 'e0048', 'bnpc4317946', 4317946, '391.422485', '-17.924709', '-377.696991', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90090, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4317948', 4317948, '450.847504', '-28.334009', '-441.002411', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89806, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4516039', 4516039, '201.957901', '-6.015132', '-140.727798', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89558, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4516054', 4516054, '302.846893', '-13.662720', '-70.995468', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89286, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4516060', 4516060, '90.040314', '-26.979679', '-315.730499', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89032, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4516061', 4516061, '118.730499', '-25.303860', '-328.093414', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88760, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4516069', 4516069, '76.916473', '-30.135340', '-176.278107', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88332, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4516071', 4516071, '109.801003', '-30.350300', '-144.088104', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88060, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4516076', 4516076, '178.212997', '-26.243820', '-569.578918', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87818, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4526138', 4526138, '207.189499', '-4.405000', '-55.771381', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4526153', 4526153, '101.728302', '6.775696', '-29.255630', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4526159', 4526159, '-5.661133', '19.302610', '-20.096189', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 114784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4526163', 4526163, '295.063599', '0.717163', '180.926102', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4526170', 4526170, '243.762802', '-2.334717', '93.644531', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4526175', 4526175, '514.976685', '-20.248779', '-360.982697', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4526185', 4526185, '349.873993', '-15.610050', '-260.578400', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4526186', 4526186, '405.020111', '-28.000311', '-500.633209', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4526187', 4526187, '370.778900', '-34.470150', '-460.959808', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4526188', 4526188, '286.335602', '-19.760500', '-293.202087', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4526189', 4526189, '126.848099', '-22.110350', '-563.561523', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4526190', 4526190, '138.658707', '-23.403219', '-470.115204', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86052, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(277, 'e0048', 'bnpc4526191', 4526191, '252.338394', '-24.643370', '-435.141510', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85780, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4526192', 4526192, '119.127197', '-25.162230', '-324.086395', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4526193', 4526193, '137.078705', '-29.800461', '-246.062698', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4526240', 4526240, '214.825394', '-19.554331', '-398.094788', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84946, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4553457', 4553457, '345.774902', '-15.417000', '-261.117798', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84668, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4553459', 4553459, '361.297913', '-25.751591', '-438.400085', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84378, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4553469', 4553469, '139.198593', '-23.542650', '-467.790009', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84094, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc4588198', 4588198, '119.859596', '-21.530519', '-297.352600', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83828, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4588199', 4588199, '116.324303', '-25.430050', '-324.881592', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83550, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(277, 'e0048', 'bnpc4588205', 4588205, '443.598206', '-24.245310', '-392.653687', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83278, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4592960', 4592960, '291.767700', '-13.992610', '-129.503403', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83006, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(277, 'e0048', 'bnpc4618294', 4618294, '99.668091', '8.096478', '-41.502491', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4618295', 4618295, '114.137100', '6.064597', '-18.577110', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4618296', 4618296, '119.902702', '5.962872', '-52.469212', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4618297', 4618297, '273.146088', '-0.359490', '138.990295', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113122, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4618298', 4618298, '194.044495', '3.506398', '122.434998', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112850, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4618299', 4618299, '301.813202', '-6.703927', '30.420111', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112506, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4618300', 4618300, '344.534210', '-4.776098', '-14.875460', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112234, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(277, 'e0048', 'bnpc4618301', 4618301, '198.657104', '2.212463', '118.242104', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112064, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4618302', 4618302, '280.378998', '-4.542100', '48.923759', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111792, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4618303', 4618303, '221.648804', '-2.880372', '-13.690810', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111520, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4621091', 4621091, '-46.489208', '15.602010', '3.201886', 2771, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23396, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(277, 'e0048', 'bnpc4621093', 4621093, '622.978821', '-12.883850', '-12.418940', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23130, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926308', 3926308, '376.795502', '84.142036', '107.708504', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154812, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926338', 3926338, '375.147491', '84.022469', '106.274200', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154540, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926351', 3926351, '405.431488', '88.082703', '99.945763', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154268, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926354', 3926354, '409.251190', '88.844963', '97.093102', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153996, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926358', 3926358, '378.901215', '84.631958', '104.412598', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153724, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926365', 3926365, '407.170990', '88.157288', '101.532700', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153452, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926371', 3926371, '392.339203', '86.636040', '181.099197', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153180, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926372', 3926372, '396.068207', '86.811653', '179.238007', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152908, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926373', 3926373, '393.988495', '86.897270', '182.527893', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152636, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926381', 3926381, '411.703613', '88.297813', '162.003098', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152364, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926382', 3926382, '410.055603', '88.039360', '160.599197', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152092, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926386', 3926386, '394.559601', '85.026733', '153.758499', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151820, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926391', 3926391, '410.144012', '88.683350', '189.622894', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151548, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926417', 3926417, '417.375885', '87.742783', '131.569901', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926439', 3926439, '345.812805', '76.219322', '212.725998', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926440', 3926440, '344.548309', '75.438789', '207.299393', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926441', 3926441, '348.012512', '76.039337', '211.108795', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926464', 3926464, '356.043793', '74.743179', '151.343094', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926465', 3926465, '352.759186', '74.743149', '149.888596', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926467', 3926467, '367.410095', '80.423607', '133.246597', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926481', 3926481, '353.852814', '80.577820', '117.643204', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926484', 3926484, '351.360199', '79.902428', '120.108704', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926487', 3926487, '355.985199', '80.082771', '121.892502', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926490', 3926490, '373.090698', '84.220062', '99.076653', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926522', 3926522, '406.246887', '86.759048', '111.752296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926526', 3926526, '325.732788', '66.676826', '171.598495', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926537', 3926537, '328.927612', '68.512451', '191.103607', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926539', 3926539, '326.017792', '67.722847', '188.876999', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926541', 3926541, '342.366608', '72.409378', '178.265305', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926543', 3926543, '340.851105', '72.117889', '182.389893', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926545', 3926545, '339.368805', '71.684380', '180.432800', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926547', 3926547, '329.747711', '68.403687', '149.117706', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926548', 3926548, '327.065491', '67.092491', '170.001404', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926552', 3926552, '319.223511', '67.064529', '203.825699', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926557', 3926557, '307.153687', '65.648338', '183.776306', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926564', 3926564, '315.245087', '65.419243', '134.686005', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926565', 3926565, '313.912415', '65.218117', '136.283096', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926572', 3926572, '310.648285', '65.000732', '131.124893', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926578', 3926578, '301.380890', '64.171013', '142.769608', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926601', 3926601, '261.503296', '53.867599', '124.334000', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926644', 3926644, '295.185699', '60.044201', '169.695496', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926653', 3926653, '293.079987', '59.372799', '172.716797', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132792, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926658', 3926658, '296.070709', '60.135750', '174.090103', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133064, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926660', 3926660, '257.465393', '54.488819', '176.080399', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134152, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926665', 3926665, '279.163788', '55.806110', '134.904999', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133336, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926667', 3926667, '277.598999', '55.429420', '137.030197', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131976, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926670', 3926670, '269.266907', '56.155140', '106.412498', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132520, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926677', 3926677, '260.700409', '54.871441', '108.842598', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132248, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926683', 3926683, '261.666290', '55.104469', '106.238503', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134696, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926716', 3926716, '257.191193', '55.945511', '220.022095', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926717', 3926717, '258.076202', '55.964081', '224.416702', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926718', 3926718, '255.085403', '55.855000', '223.043396', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134424, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926733', 3926733, '243.941101', '55.670811', '235.884598', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133608, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926750', 3926750, '258.564087', '54.697350', '178.949097', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133880, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926769', 3926769, '413.944397', '89.309250', '158.034897', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148018, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926800', 3926800, '407.416199', '87.761620', '175.019302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147746, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926801', 3926801, '406.609985', '87.629570', '176.598602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147474, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926804', 3926804, '392.991699', '87.757637', '191.946198', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147202, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926805', 3926805, '387.339111', '84.919083', '134.093994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146930, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926808', 3926808, '354.084900', '81.902718', '100.424797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146658, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926810', 3926810, '422.356903', '89.050278', '114.571297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146386, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926812', 3926812, '421.045013', '88.772667', '115.796600', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146114, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926815', 3926815, '403.283386', '86.085800', '113.897499', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145842, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926821', 3926821, '370.507996', '82.400093', '117.661697', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145570, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926825', 3926825, '367.792389', '81.913681', '118.807602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926829', 3926829, '360.534485', '74.935432', '148.181396', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145026, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926837', 3926837, '378.317413', '79.842934', '162.415802', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144754, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926847', 3926847, '376.053986', '78.965889', '164.143707', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926848', 3926848, '369.552399', '77.052002', '192.962997', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144210, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926854', 3926854, '346.371490', '75.720573', '208.895203', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143938, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926858', 3926858, '363.167694', '77.767464', '219.355392', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143666, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926860', 3926860, '371.780212', '77.339363', '194.397400', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926868', 3926868, '369.826996', '77.102577', '196.960907', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143116, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3926883', 3926883, '344.452301', '72.995819', '181.059906', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926890', 3926890, '328.520813', '67.640129', '172.850403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926891', 3926891, '311.090302', '65.890671', '189.672195', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926896', 3926896, '309.819885', '64.657661', '145.602493', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926898', 3926898, '328.420197', '67.645653', '147.350800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141762, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926899', 3926899, '317.188690', '65.970573', '128.639603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141490, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926902', 3926902, '318.570007', '65.981651', '129.865601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141218, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926912', 3926912, '275.386810', '55.162628', '134.854202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140946, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926915', 3926915, '264.207703', '55.231709', '109.226501', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140674, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926917', 3926917, '260.486694', '54.760460', '176.782303', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926928', 3926928, '254.790497', '55.815201', '226.529297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926929', 3926929, '242.801407', '55.684689', '237.647995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3926930', 3926930, '241.351593', '55.604931', '235.930405', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139586, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927149', 3927149, '27.696630', '50.949940', '203.695496', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130588, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927150', 3927150, '15.640450', '53.696449', '252.796204', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927151', 3927151, '-61.356571', '57.144989', '351.064209', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927152', 3927152, '173.737106', '54.352638', '226.520096', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130316, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927153', 3927153, '183.533401', '54.215019', '225.513000', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130044, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927154', 3927154, '99.898514', '49.255638', '188.131607', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129772, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927156', 3927156, '128.718903', '50.518780', '195.651794', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129500, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927158', 3927158, '115.929298', '48.682110', '176.508408', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129228, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927162', 3927162, '108.506699', '47.551449', '175.644897', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128956, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927163', 3927163, '32.919010', '50.990910', '198.741592', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128684, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927164', 3927164, '31.915621', '47.200191', '163.456696', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128412, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927165', 3927165, '65.425613', '51.619080', '219.897705', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128140, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927166', 3927166, '70.552643', '50.994259', '212.756500', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127868, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927168', 3927168, '60.756340', '51.112720', '213.427902', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127596, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927169', 3927169, '1.910973', '44.523701', '152.350204', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127324, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927170', 3927170, '6.149339', '47.714909', '180.407394', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127052, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927171', 3927171, '175.777206', '50.666649', '65.453201', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126780, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927172', 3927172, '170.246994', '50.547649', '69.196983', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126508, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927174', 3927174, '240.923996', '51.465309', '71.654427', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126236, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927175', 3927175, '249.684906', '51.468151', '78.309212', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125964, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927176', 3927176, '255.227203', '51.199020', '67.745193', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125692, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927178', 3927178, '253.462494', '51.509102', '19.847630', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125420, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927179', 3927179, '201.886398', '51.465870', '22.835030', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125148, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927182', 3927182, '111.507797', '59.949421', '283.252502', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927185', 3927185, '98.313828', '59.311771', '302.754211', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124610, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927186', 3927186, '110.092697', '60.098831', '287.907593', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124338, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927187', 3927187, '128.731201', '60.436340', '298.911407', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124066, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927188', 3927188, '83.256920', '55.503361', '283.185394', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123794, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927189', 3927189, '91.296028', '55.644341', '266.384308', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123522, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927190', 3927190, '82.101891', '55.164581', '275.573212', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123250, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927191', 3927191, '115.385597', '59.492580', '287.027496', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122978, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927192', 3927192, '178.888199', '53.984070', '219.121597', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927194', 3927194, '131.716507', '57.952309', '278.151306', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122434, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927197', 3927197, '-22.751249', '56.290482', '304.371613', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927200', 3927200, '-18.722870', '56.046341', '317.952209', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927201', 3927201, '-14.837500', '56.125702', '314.598206', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927203', 3927203, '8.417153', '55.567989', '320.395599', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927204', 3927204, '20.042080', '57.618370', '350.774109', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927205', 3927205, '26.145691', '57.755730', '356.084290', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927206', 3927206, '22.476490', '58.182598', '359.426208', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927209', 3927209, '49.869179', '57.280979', '352.553101', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120264, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927211', 3927211, '21.927170', '54.917171', '311.085602', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119992, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927213', 3927213, '25.229980', '54.764481', '306.841705', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119720, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927218', 3927218, '-21.114670', '53.540970', '264.998993', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119448, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927220', 3927220, '-5.313622', '54.065811', '256.266205', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119176, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927221', 3927221, '-23.334700', '53.561840', '260.473511', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118904, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927222', 3927222, '5.204782', '54.084610', '236.687195', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118632, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927224', 3927224, '8.561768', '54.060150', '238.457199', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118360, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927226', 3927226, '-8.821225', '50.881729', '201.391602', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927229', 3927229, '-6.608897', '50.901840', '203.446304', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927230', 3927230, '-18.636290', '51.201260', '221.737701', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927231', 3927231, '-35.276581', '49.465691', '214.633698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927236', 3927236, '-11.411140', '50.721111', '205.313904', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927239', 3927239, '-38.801102', '49.907009', '218.520004', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927240', 3927240, '6.279222', '50.975891', '212.108902', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927241', 3927241, '-35.700180', '46.975208', '193.506195', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927246', 3927246, '-141.250000', '50.637089', '227.672501', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97168, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(278, 'e0049', 'bnpc3927250', 3927250, '-140.879105', '50.598660', '225.798996', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97440, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(278, 'e0049', 'bnpc3927252', 3927252, '-133.580704', '50.071732', '219.991806', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96624, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(278, 'e0049', 'bnpc3927255', 3927255, '-132.305801', '49.998920', '219.510193', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96896, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(278, 'e0049', 'bnpc3927256', 3927256, '-130.444595', '50.881111', '227.569397', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98256, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(278, 'e0049', 'bnpc3927333', 3927333, '-125.582298', '49.131699', '207.139694', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98528, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(278, 'e0049', 'bnpc3927334', 3927334, '-153.431595', '49.478130', '221.025101', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97712, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(278, 'e0049', 'bnpc3927339', 3927339, '-121.896698', '49.490898', '212.546097', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97984, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(278, 'e0049', 'bnpc3927343', 3927343, '-45.193470', '62.185181', '363.152100', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115912, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927345', 3927345, '-79.881020', '55.100281', '361.379395', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115640, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927346', 3927346, '-83.391731', '54.977058', '365.606995', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115368, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927347', 3927347, '-54.476139', '65.540337', '392.423004', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115096, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927349', 3927349, '-51.241718', '65.802643', '390.513214', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114824, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927352', 3927352, '-1.297064', '68.802879', '377.553894', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114552, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927353', 3927353, '2.885915', '68.536720', '372.786896', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114280, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927354', 3927354, '-109.941299', '48.966148', '357.015289', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114008, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927356', 3927356, '-125.981003', '51.453751', '311.388885', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113736, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927357', 3927357, '-130.879105', '51.717690', '309.097412', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113464, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927358', 3927358, '-131.425293', '51.394489', '312.798096', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113192, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927359', 3927359, '-118.158401', '53.802921', '271.080597', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112920, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927360', 3927360, '-115.932800', '53.461861', '267.407501', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112648, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927361', 3927361, '-95.500458', '52.359612', '245.109894', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112376, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927364', 3927364, '-138.997604', '45.849251', '391.546814', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112104, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927366', 3927366, '-131.347107', '47.246719', '398.411713', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111832, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927367', 3927367, '-141.612305', '45.939159', '395.010193', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111560, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927368', 3927368, '-175.499496', '39.137119', '393.656799', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111288, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927370', 3927370, '-156.301407', '40.866211', '345.757813', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111016, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927371', 3927371, '-162.614700', '39.951931', '342.568695', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110744, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927373', 3927373, '-157.533707', '40.302212', '350.198212', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110472, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927375', 3927375, '28.610620', '55.466499', '328.511414', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927379', 3927379, '37.804600', '58.140781', '363.465912', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927382', 3927382, '32.272758', '55.471779', '329.481689', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927384', 3927384, '6.784028', '54.128811', '253.378204', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927387', 3927387, '-20.690559', '53.685650', '251.224396', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927388', 3927388, '45.252361', '48.095360', '180.655197', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927394', 3927394, '69.706589', '56.137440', '318.697693', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927398', 3927398, '104.150002', '56.064339', '263.215607', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927403', 3927403, '156.664307', '54.703541', '236.652100', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927404', 3927404, '44.327412', '52.658840', '244.800400', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927408', 3927408, '-26.490999', '44.862301', '177.075394', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927413', 3927413, '152.993607', '50.116879', '72.775887', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927414', 3927414, '220.945801', '50.242329', '4.633916', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927417', 3927417, '219.309296', '49.916939', '6.135899', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927424', 3927424, '-14.541890', '67.307503', '362.722107', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927425', 3927425, '-65.254753', '64.638290', '395.066498', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927431', 3927431, '-117.631798', '47.959061', '380.300507', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927432', 3927432, '-172.127304', '40.469398', '398.069092', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927433', 3927433, '-189.330597', '36.909599', '341.340210', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927435', 3927435, '-140.326401', '45.201859', '337.794006', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927436', 3927436, '-110.657700', '52.097160', '290.219696', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104772, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(278, 'e0049', 'bnpc3927437', 3927437, '-145.151993', '56.686409', '288.573792', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927730', 3927730, '120.638901', '17.207850', '96.590080', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104234, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927734', 3927734, '123.778503', '17.206751', '88.372543', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103962, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927735', 3927735, '128.407593', '16.559820', '98.111130', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103690, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927736', 3927736, '78.465424', '21.109140', '92.377060', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103418, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927737', 3927737, '100.497498', '16.583630', '126.907097', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103146, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927739', 3927739, '-25.650459', '22.079760', '105.851799', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102874, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927742', 3927742, '-20.340321', '21.438881', '108.873100', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102602, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927745', 3927745, '78.228539', '22.345881', '63.241020', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102330, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927746', 3927746, '86.209900', '22.246161', '56.213009', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102058, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927748', 3927748, '127.763702', '25.986071', '49.240810', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101786, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927750', 3927750, '70.167282', '16.789490', '139.201706', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927760', 3927760, '95.818649', '15.165110', '168.324600', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927771', 3927771, '96.919411', '15.051520', '166.152405', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927776', 3927776, '126.695602', '15.793040', '128.007904', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100692, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927784', 3927784, '58.284618', '22.640039', '59.899170', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100420, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927789', 3927789, '14.317140', '20.384331', '98.519272', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100148, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927870', 3927870, '123.073700', '18.194111', '18.950350', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99882, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927874', 3927874, '164.476593', '18.193741', '-3.313263', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99610, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927875', 3927875, '161.316605', '18.193520', '6.161218', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99338, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927880', 3927880, '179.117905', '18.193710', '3.609651', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99066, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3927883', 3927883, '103.653801', '19.374020', '93.697792', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98788, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927890', 3927890, '122.968102', '56.939259', '-36.773190', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95074, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927910', 3927910, '123.268097', '55.511478', '-56.716091', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94802, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927911', 3927911, '129.320206', '55.924271', '-51.987530', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927912', 3927912, '154.660400', '55.357391', '-41.330311', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94258, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927919', 3927919, '189.631897', '50.414280', '-25.954390', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93986, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927923', 3927923, '183.639099', '52.017891', '-84.284233', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93714, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927925', 3927925, '153.890793', '52.284729', '-77.195427', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927934', 3927934, '191.650803', '52.446129', '-77.491463', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93170, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3927952', 3927952, '199.298004', '52.109509', '-110.399101', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92898, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928005', 3928005, '249.801102', '63.548111', '-129.309692', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92626, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928007', 3928007, '233.766098', '63.274509', '-115.512901', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92354, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928013', 3928013, '75.352249', '58.717110', '35.270901', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92088, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928021', 3928021, '86.804192', '58.856110', '31.969290', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91816, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928022', 3928022, '84.852730', '58.771778', '28.421551', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91544, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928152', 3928152, '58.122269', '59.502029', '1.331460', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928154', 3928154, '99.899971', '53.697948', '21.844801', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928157', 3928157, '28.599730', '59.945721', '27.529560', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928160', 3928160, '25.558041', '59.878441', '30.178419', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928161', 3928161, '14.973360', '62.347179', '18.278700', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928165', 3928165, '6.374675', '59.338470', '42.109829', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928314', 3928314, '319.607910', '63.456242', '-187.854004', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928315', 3928315, '318.191406', '63.387531', '-186.084000', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928317', 3928317, '311.617798', '62.671181', '-255.173492', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928319', 3928319, '306.148010', '62.678329', '-255.381195', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928320', 3928320, '310.641205', '62.731220', '-257.553894', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928321', 3928321, '288.386597', '62.264820', '-212.191498', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928323', 3928323, '281.432892', '62.276360', '-175.724792', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928324', 3928324, '294.345215', '62.536160', '-229.177994', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87700, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928326', 3928326, '324.076385', '63.986629', '-248.880295', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87428, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928327', 3928327, '294.358307', '62.940811', '-234.107498', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87156, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928328', 3928328, '298.334686', '62.391232', '-190.659805', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86884, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928329', 3928329, '288.392303', '62.534901', '-229.239197', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86612, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928331', 3928331, '298.725800', '62.141201', '-195.515305', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86340, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928332', 3928332, '265.782898', '63.307018', '-219.574600', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86068, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928335', 3928335, '316.656586', '63.109501', '-200.695007', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85796, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928360', 3928360, '-105.641998', '14.974850', '-248.369598', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928364', 3928364, '-110.496902', '14.974860', '-245.931396', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928366', 3928366, '-96.993607', '14.974790', '-263.062500', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928370', 3928370, '-134.325607', '14.974520', '-268.556091', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928372', 3928372, '-137.674500', '14.974520', '-281.872009', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84484, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928373', 3928373, '-140.064697', '14.974790', '-279.290314', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84212, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928374', 3928374, '-183.464493', '14.974900', '-240.699707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83940, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928376', 3928376, '-180.748398', '14.974890', '-244.758606', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83668, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928378', 3928378, '-186.089096', '14.974890', '-243.232697', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83396, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928379', 3928379, '-147.631104', '14.969050', '-274.158905', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83124, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928383', 3928383, '-224.475494', '14.969050', '-348.714386', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928386', 3928386, '-209.268402', '14.974940', '-344.686401', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928387', 3928387, '-206.509598', '14.974940', '-340.343994', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928388', 3928388, '-218.735199', '14.974420', '-379.859985', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928389', 3928389, '-223.490601', '14.974420', '-382.159912', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928391', 3928391, '-258.752411', '14.974870', '-325.427490', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928392', 3928392, '-264.535492', '14.974880', '-327.510101', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928394', 3928394, '-281.808807', '14.974920', '-208.237701', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928519', 3928519, '-253.182007', '14.974930', '-267.783295', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928520', 3928520, '-255.348694', '14.974930', '-265.372406', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928523', 3928523, '-283.110809', '14.974940', '-291.602112', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928524', 3928524, '-282.531006', '14.974940', '-294.806488', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928525', 3928525, '-286.528809', '14.974940', '-293.707794', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928527', 3928527, '-298.754211', '14.974940', '-221.860397', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928528', 3928528, '-295.336212', '14.974940', '-225.644699', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928531', 3928531, '-217.611801', '14.974770', '-304.205109', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928534', 3928534, '-250.701904', '14.974930', '-243.696503', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928783', 3928783, '-182.680801', '14.974910', '-276.838287', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78228, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928784', 3928784, '-170.103302', '14.974860', '-253.832504', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77956, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928788', 3928788, '-212.801102', '14.974940', '-333.462799', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928795', 3928795, '-266.258698', '15.546460', '-234.426102', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77370, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928796', 3928796, '-219.789307', '14.974930', '-267.238892', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77098, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928797', 3928797, '-285.191498', '14.974940', '-268.444397', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76826, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928798', 3928798, '-203.762299', '14.974910', '-250.822205', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76554, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928799', 3928799, '-278.737915', '14.974940', '-262.906189', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76282, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928800', 3928800, '-277.257599', '14.974940', '-267.571411', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76010, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928801', 3928801, '-256.085907', '14.974930', '-289.433411', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75738, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928802', 3928802, '-224.033401', '14.974930', '-264.018097', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75466, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928803', 3928803, '146.532303', '54.459400', '-51.499241', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928804', 3928804, '102.067497', '53.818520', '-56.137989', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928805', 3928805, '78.182693', '57.105598', '-30.773781', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928806', 3928806, '76.842499', '57.456390', '-29.140619', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928807', 3928807, '86.645050', '57.952759', '6.113357', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928808', 3928808, '22.705441', '61.685020', '19.656160', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928809', 3928809, '10.100620', '59.973881', '35.668980', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928810', 3928810, '166.031296', '50.849098', '-100.283997', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928811', 3928811, '186.388901', '51.621220', '-160.082397', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928812', 3928812, '238.300095', '63.248600', '-122.148499', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928813', 3928813, '184.099701', '52.311790', '-57.823231', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928814', 3928814, '179.929794', '52.482571', '-55.958038', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928815', 3928815, '142.056702', '53.278130', '-130.908096', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928816', 3928816, '268.193207', '63.254810', '-222.082703', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928822', 3928822, '302.263489', '62.065739', '-193.318497', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928825', 3928825, '-123.838997', '14.974520', '-263.543488', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928831', 3928831, '-176.301498', '14.974870', '-250.083099', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928832', 3928832, '-144.984497', '14.974770', '-287.996185', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928833', 3928833, '-185.416595', '14.974910', '-280.625488', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928834', 3928834, '-244.850296', '14.974930', '-244.881104', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928835', 3928835, '-244.690704', '15.599670', '-289.695801', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928836', 3928836, '-287.953003', '14.974940', '-254.367096', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928837', 3928837, '-288.296387', '14.974940', '-221.930298', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928838', 3928838, '-242.570297', '14.974810', '-341.476898', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928839', 3928839, '-294.252502', '14.974850', '-321.210785', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928840', 3928840, '-213.266998', '14.974420', '-364.787292', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928841', 3928841, '-196.042206', '14.974940', '-319.922791', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928894', 3928894, '-427.363312', '23.320280', '-482.444489', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67692, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928895', 3928895, '-414.236694', '24.246580', '-480.094604', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67420, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928896', 3928896, '-399.069214', '24.662140', '-486.445496', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67148, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928897', 3928897, '-426.661407', '23.254721', '-480.735504', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66876, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928898', 3928898, '-385.109589', '24.366320', '-508.717590', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66604, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928899', 3928899, '-383.622498', '24.283310', '-510.090912', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66332, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928900', 3928900, '-397.867401', '24.621420', '-483.869110', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66060, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928902', 3928902, '-395.742706', '24.800859', '-486.720215', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65788, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928905', 3928905, '-372.182800', '14.915100', '-682.187012', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65438, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928915', 3928915, '-343.109711', '14.951240', '-708.646729', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65166, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928916', 3928916, '-336.488098', '15.011050', '-702.973022', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64894, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928917', 3928917, '-342.475098', '14.886180', '-699.100403', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64622, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928918', 3928918, '-346.725800', '15.000050', '-648.932983', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64350, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928919', 3928919, '-360.611603', '15.143860', '-728.342285', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64078, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928920', 3928920, '-369.109985', '17.086229', '-625.858582', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63806, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928921', 3928921, '-368.551208', '14.932670', '-677.304016', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63534, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928922', 3928922, '-289.976898', '15.036210', '-766.856018', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928923', 3928923, '-329.499603', '13.228890', '-734.741028', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63074, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928924', 3928924, '-308.522186', '13.199010', '-741.054382', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62802, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928926', 3928926, '-330.769806', '14.999570', '-781.734985', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928927', 3928927, '-282.568512', '14.996440', '-714.049622', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928928', 3928928, '-288.031189', '15.033810', '-704.314270', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928929', 3928929, '-340.138885', '14.999570', '-765.682495', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928930', 3928930, '-375.273102', '24.057680', '-530.949707', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61364, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928931', 3928931, '-376.594513', '24.104771', '-528.967224', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61092, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928932', 3928932, '-385.780304', '23.495701', '-548.185181', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60820, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928933', 3928933, '-388.991913', '23.634899', '-551.127014', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60548, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928934', 3928934, '-380.102814', '23.848009', '-554.942871', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60276, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928935', 3928935, '-383.823486', '24.014250', '-580.209229', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60004, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928936', 3928936, '-384.645203', '22.916321', '-600.375427', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928937', 3928937, '-382.814087', '22.623171', '-601.962280', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc3928938', 3928938, '-160.448700', '15.121640', '-740.138916', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928939', 3928939, '-163.418106', '15.126450', '-733.144714', 109, 0, 0, 0, 1, 6, 0, 0, 310, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59006, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928940', 3928940, '-154.855392', '15.126450', '-735.291016', 111, 0, 0, 0, 1, 6, 0, 0, 312, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928941', 3928941, '-184.969193', '15.126200', '-748.799011', 111, 0, 0, 0, 1, 6, 0, 0, 312, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928942', 3928942, '-245.304596', '14.639280', '-736.399902', 109, 0, 0, 0, 1, 6, 0, 0, 310, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58190, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928943', 3928943, '-208.907501', '15.126340', '-737.954224', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928944', 3928944, '-177.706696', '15.126430', '-724.218872', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928945', 3928945, '129.798294', '53.983780', '241.581604', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc3928946', 3928946, '358.728088', '75.113953', '188.477402', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4057505', 4057505, '425.836700', '93.949097', '147.345596', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.500000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23758, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(278, 'e0049', 'bnpc4057530', 4057530, '246.828796', '52.038040', '143.148804', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.800000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23492, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(278, 'e0049', 'bnpc4057532', 4057532, '209.687393', '52.005539', '110.727303', 797, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23226, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(278, 'e0049', 'bnpc4057541', 4057541, '192.848099', '52.038040', '162.149994', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22942, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(278, 'e0049', 'bnpc4057553', 4057553, '108.028297', '49.844238', '-189.682297', 798, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22688, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(278, 'e0049', 'bnpc4057563', 4057563, '-82.688713', '15.467950', '-260.648010', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(278, 'e0049', 'bnpc4057572', 4057572, '-436.003998', '23.000170', '-484.805511', 791, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22150, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(278, 'e0049', 'bnpc4190759', 4190759, '-345.540588', '14.999600', '-775.448181', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57362, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(278, 'e0049', 'bnpc4267191', 4267191, '-707.860779', '67.740463', '-822.422119', 1439, 0, 0, 0, 0, 6, 0, 0, 2160, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57014, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4267197', 4267197, '-665.501282', '62.452560', '-807.101318', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56748, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4267200', 4267200, '-665.515930', '62.330540', '-804.663086', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56476, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4267201', 4267201, '-678.426575', '63.899670', '-816.868713', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56204, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4267202', 4267202, '-697.547180', '65.602493', '-808.171204', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55932, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4267203', 4267203, '-691.117920', '65.001953', '-800.783875', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55660, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4267204', 4267204, '-707.367920', '67.125900', '-815.833374', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55388, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4267205', 4267205, '-691.542114', '65.307541', '-815.101807', 434, 0, 0, 0, 0, 6, 0, 0, 2160, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4296870', 4296870, '242.172607', '52.038120', '112.691498', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20750, 8, 0, 0, 4296864, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4296871', 4296871, '246.709503', '52.038120', '124.038902', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20478, 8, 0, 0, 4296863, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4296872', 4296872, '237.477707', '52.017941', '108.608101', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20206, 8, 0, 0, 4296858, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4296873', 4296873, '244.254303', '52.038120', '162.449799', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19934, 8, 0, 0, 4296867, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4296874', 4296874, '244.299103', '52.038120', '166.290298', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19662, 8, 0, 0, 4296868, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4308066', 4308066, '-421.159485', '44.462021', '-712.226013', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54672, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(278, 'e0049', 'bnpc4308069', 4308069, '-514.378784', '51.624359', '-759.622498', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54400, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(278, 'e0049', 'bnpc4308070', 4308070, '-599.843384', '57.051182', '-784.518921', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54128, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(278, 'e0049', 'bnpc4308071', 4308071, '-656.681274', '62.116219', '-804.503601', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53856, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(278, 'e0049', 'bnpc4308072', 4308072, '-492.048187', '50.155430', '-704.991577', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53590, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(278, 'e0049', 'bnpc4308073', 4308073, '-517.815491', '50.450741', '-713.017395', 63, 0, 0, 0, 0, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53324, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(278, 'e0049', 'bnpc4308074', 4308074, '-456.002014', '51.014610', '-752.579285', 55, 0, 0, 0, 0, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53058, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(278, 'e0049', 'bnpc4308075', 4308075, '-495.700897', '50.855309', '-742.115417', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52792, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(278, 'e0049', 'bnpc4308082', 4308082, '-441.168610', '50.899448', '-705.323914', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52514, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(278, 'e0049', 'bnpc4308083', 4308083, '-518.314270', '50.452862', '-714.412109', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52224, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(278, 'e0049', 'bnpc4308084', 4308084, '-479.211487', '51.372540', '-761.453186', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51964, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(278, 'e0049', 'bnpc4308085', 4308085, '-402.046509', '49.868610', '-739.848206', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51704, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(278, 'e0049', 'bnpc4308086', 4308086, '-454.328613', '50.848831', '-752.713074', 64, 0, 0, 0, 0, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51414, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(278, 'e0049', 'bnpc4308091', 4308091, '-536.909607', '51.647678', '-772.339600', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51154, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(278, 'e0049', 'bnpc4308092', 4308092, '-566.559387', '53.197552', '-772.416382', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50870, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(278, 'e0049', 'bnpc4308093', 4308093, '-534.190186', '55.472980', '-738.915771', 62, 0, 0, 0, 1, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50592, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(278, 'e0049', 'bnpc4308094', 4308094, '-570.383728', '53.322189', '-740.588013', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(278, 'e0049', 'bnpc4308095', 4308095, '-576.705811', '54.865730', '-790.850830', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50060, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(278, 'e0049', 'bnpc4308096', 4308096, '-598.254211', '63.233582', '-755.445496', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49788, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(278, 'e0049', 'bnpc4308097', 4308097, '-601.317322', '62.751640', '-757.922485', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49510, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(278, 'e0049', 'bnpc4308098', 4308098, '-621.487915', '61.777660', '-742.445374', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49256, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(278, 'e0049', 'bnpc4308099', 4308099, '-621.786072', '58.863022', '-795.647095', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48978, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(278, 'e0049', 'bnpc4308100', 4308100, '-646.074890', '61.267559', '-800.385315', 62, 0, 0, 0, 1, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48688, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(278, 'e0049', 'bnpc4308102', 4308102, '-555.229980', '53.299679', '-753.444702', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4308104', 4308104, '-410.261810', '51.000069', '-758.953003', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48174, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4308105', 4308105, '-468.451904', '50.148300', '-723.755676', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4308109', 4308109, '-626.947510', '60.044189', '-813.534790', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47630, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4308112', 4308112, '-635.044800', '58.894249', '-777.102417', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4308164', 4308164, '-544.952698', '55.549671', '-803.447388', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47086, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(278, 'e0049', 'bnpc4510228', 4510228, '320.279907', '67.275337', '234.176498', 793, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21884, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(278, 'e0049', 'bnpc4621821', 4621821, '-91.708687', '15.670890', '217.180496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24120, 11, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(279, 'e0050', 'bnpc3760882', 3760882, '7.760897', '64.944183', '95.225662', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760883', 3760883, '11.569650', '64.269142', '103.174004', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760884', 3760884, '27.212851', '64.259323', '68.436661', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121286, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760886', 3760886, '35.300129', '63.748798', '70.756027', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122102, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760887', 3760887, '29.623779', '63.785370', '72.434517', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122918, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760888', 3760888, '12.674300', '64.363640', '96.110687', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122646, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760889', 3760889, '37.375351', '64.107178', '66.758171', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122374, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760890', 3760890, '35.361160', '64.320633', '64.408279', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760896', 3760896, '20.935301', '61.990829', '147.102097', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760898', 3760898, '32.574959', '59.535831', '128.579605', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119382, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760901', 3760901, '3.688727', '65.262871', '139.257401', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119110, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760902', 3760902, '1.674536', '65.722069', '135.412201', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760911', 3760911, '66.135712', '56.046421', '111.429703', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760912', 3760912, '62.577202', '57.663799', '106.370598', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120470, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760913', 3760913, '64.103104', '57.114471', '107.652298', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760917', 3760917, '60.457890', '61.337429', '74.236450', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121830, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760922', 3760922, '96.288940', '49.550621', '73.985641', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126182, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760923', 3760923, '110.317703', '42.549389', '102.239700', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125366, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760925', 3760925, '121.477097', '40.913620', '141.046600', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125638, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760927', 3760927, '99.690933', '44.016190', '125.932701', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126998, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760933', 3760933, '86.244019', '47.554829', '160.082397', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126726, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760937', 3760937, '87.891998', '47.433571', '161.638794', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123190, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760948', 3760948, '68.406143', '53.661510', '183.326599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123462, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760950', 3760950, '62.399029', '56.000351', '191.517303', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125910, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760952', 3760952, '63.992779', '55.493610', '189.245102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124550, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760958', 3760958, '51.348160', '55.864281', '150.438599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124278, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760961', 3760961, '56.546551', '56.041698', '186.103394', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125094, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3760965', 3760965, '53.117081', '55.406071', '151.622894', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124822, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761027', 3761027, '-7.343534', '67.714622', '93.888710', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153092, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761030', 3761030, '15.512480', '63.992210', '99.894920', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152820, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761031', 3761031, '78.979568', '53.555161', '86.569473', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124006, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761032', 3761032, '80.505470', '52.852570', '87.851227', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123734, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761033', 3761033, '31.698999', '64.077950', '68.192520', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152548, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761034', 3761034, '111.202797', '42.291870', '104.620102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126454, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761035', 3761035, '112.698097', '41.971249', '105.901901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127270, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761036', 3761036, '16.824760', '63.905472', '97.575546', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152276, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761039', 3761039, '11.941870', '64.628357', '91.990753', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152004, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761041', 3761041, '54.459400', '59.806961', '102.917297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151732, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761042', 3761042, '30.722420', '63.595020', '74.784416', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151460, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761044', 3761044, '19.068230', '62.294941', '149.492599', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151188, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761045', 3761045, '22.420271', '61.734470', '145.882996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150916, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761046', 3761046, '31.079571', '59.608490', '125.924500', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150644, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761048', 3761048, '66.227257', '56.978741', '104.868301', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150372, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761049', 3761049, '81.546333', '52.845501', '84.585800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150100, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761050', 3761050, '62.755970', '60.386440', '76.019211', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149828, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761051', 3761051, '109.737900', '42.563049', '105.962898', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149556, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761052', 3761052, '98.714363', '44.085449', '129.594803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149284, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761053', 3761053, '98.425201', '49.276859', '70.598137', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149012, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761054', 3761054, '99.981613', '48.315552', '73.649940', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148740, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761080', 3761080, '100.606499', '43.794998', '128.557205', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148468, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761081', 3761081, '89.814621', '46.770222', '157.976593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148196, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761084', 3761084, '51.818901', '55.815891', '145.346603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147924, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761085', 3761085, '70.215584', '52.939968', '181.270401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147652, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761086', 3761086, '60.924660', '55.885761', '189.770996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147380, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761088', 3761088, '48.845680', '56.451950', '150.896393', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147108, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761089', 3761089, '50.420841', '56.054260', '153.244995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146836, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761096', 3761096, '199.256302', '27.059620', '91.574173', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146570, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761097', 3761097, '66.501930', '57.215820', '101.480797', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761099', 3761099, '111.690498', '36.582958', '4.053726', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146298, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761100', 3761100, '67.783684', '56.291199', '107.065697', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761102', 3761102, '156.633804', '34.653191', '70.542397', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146026, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761103', 3761103, '23.832260', '61.353020', '150.988007', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761104', 3761104, '24.717279', '61.225311', '149.156906', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761105', 3761105, '167.377899', '33.443420', '75.522820', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145754, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761108', 3761108, '124.488503', '36.345482', '15.758260', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145482, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761109', 3761109, '159.302094', '33.928551', '78.777786', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145210, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761111', 3761111, '108.955002', '36.663021', '9.387772', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144938, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761112', 3761112, '131.578506', '35.965469', '45.853310', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144666, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761123', 3761123, '237.190399', '36.611149', '66.717194', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761124', 3761124, '242.137604', '44.361130', '44.958832', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144128, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761125', 3761125, '242.718903', '43.673290', '46.873840', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143856, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761128', 3761128, '187.436096', '42.116020', '51.900459', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143584, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761129', 3761129, '223.247696', '51.849850', '26.116220', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143312, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761130', 3761130, '223.430801', '52.761440', '22.759239', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143040, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761131', 3761131, '217.449295', '51.875561', '27.520050', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142768, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761134', 3761134, '223.010498', '31.021540', '165.483994', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142496, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761135', 3761135, '227.779602', '33.454979', '203.906296', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142224, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761136', 3761136, '242.318497', '38.158321', '234.873306', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141952, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761137', 3761137, '227.626999', '34.365898', '207.232697', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141680, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761139', 3761139, '245.897202', '37.488659', '235.919693', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141408, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761141', 3761141, '195.561203', '47.715080', '226.776001', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141136, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761142', 3761142, '197.033997', '48.159161', '228.423004', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761143', 3761143, '222.161804', '50.249969', '256.272888', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761145', 3761145, '180.566803', '43.422722', '197.741592', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761146', 3761146, '181.211105', '43.103500', '194.872894', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761147', 3761147, '150.769104', '55.568981', '248.645706', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761149', 3761149, '148.855896', '56.596169', '250.553299', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761150', 3761150, '152.127594', '64.016029', '312.689392', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761151', 3761151, '154.979797', '64.179688', '314.660492', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761152', 3761152, '153.705307', '64.400146', '315.376495', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761155', 3761155, '115.122803', '68.518044', '293.763489', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761164', 3761164, '69.781052', '51.086330', '157.761703', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761169', 3761169, '97.733994', '47.043510', '88.944794', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761303', 3761303, '204.358505', '46.098690', '45.780960', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761362', 3761362, '198.245804', '51.531582', '242.749405', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3761367', 3761367, '182.543594', '41.458710', '51.590698', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761369', 3761369, '186.119797', '42.655750', '49.950859', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761370', 3761370, '285.549408', '42.548729', '57.964470', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761371', 3761371, '285.078796', '44.421532', '49.076550', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761372', 3761372, '239.723694', '36.528450', '66.898483', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761373', 3761373, '148.845200', '38.711102', '41.285278', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761374', 3761374, '152.171600', '39.307671', '41.468391', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761375', 3761375, '182.186905', '54.291470', '262.783508', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761376', 3761376, '184.506195', '55.134689', '266.109985', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761475', 3761475, '201.696899', '32.601101', '76.500427', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135684, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761552', 3761552, '150.981400', '38.858120', '42.405491', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135412, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761553', 3761553, '185.442902', '41.123051', '53.604858', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135140, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761554', 3761554, '206.775299', '43.330341', '53.446110', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134868, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761555', 3761555, '208.241592', '43.763321', '52.334370', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134596, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761556', 3761556, '239.497803', '36.005562', '68.131721', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134324, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761557', 3761557, '215.528305', '44.498230', '50.226871', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134052, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761572', 3761572, '223.339294', '51.412380', '27.733681', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133780, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761576', 3761576, '283.996399', '43.243752', '55.750099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133508, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761580', 3761580, '272.696899', '45.167171', '32.535080', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133236, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761585', 3761585, '215.465607', '53.837990', '20.867121', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132964, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761592', 3761592, '217.212097', '32.425369', '164.537994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132692, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761607', 3761607, '218.341293', '32.455891', '165.972305', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132420, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761622', 3761622, '202.532898', '37.857590', '176.104294', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132148, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761626', 3761626, '183.154007', '42.709949', '197.436401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131876, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761716', 3761716, '184.920502', '44.981480', '218.420700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131604, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761718', 3761718, '224.420395', '35.250660', '205.197601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131332, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761720', 3761720, '242.515396', '37.441879', '232.829803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131060, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761721', 3761721, '215.690094', '51.411850', '255.712601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130788, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761722', 3761722, '217.734802', '50.606812', '253.454300', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130516, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761723', 3761723, '185.971100', '54.557800', '262.936096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130244, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761726', 3761726, '152.777603', '58.215248', '280.103607', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129972, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761727', 3761727, '152.238602', '58.132370', '277.662201', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129700, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761728', 3761728, '118.327202', '67.511993', '294.840210', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129428, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761730', 3761730, '114.320396', '68.359100', '296.500885', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129156, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3761731', 3761731, '153.412399', '63.654282', '311.208801', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128884, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766328', 3766328, '444.374390', '64.694489', '-36.484081', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766391', 3766391, '446.046112', '65.017601', '-33.594650', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766399', 3766399, '453.421814', '56.259960', '-0.534113', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766401', 3766401, '455.924286', '55.802189', '3.341679', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766402', 3766402, '448.874603', '55.222351', '4.837063', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766575', 3766575, '366.619385', '51.659290', '-12.188280', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766577', 3766577, '364.147400', '52.146080', '-17.895161', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766579', 3766579, '370.878113', '59.451641', '-59.303612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766580', 3766580, '368.924988', '58.367748', '-54.695389', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766581', 3766581, '373.350098', '58.395641', '-53.596741', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766584', 3766584, '363.439606', '63.704231', '-82.801590', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766586', 3766586, '341.616302', '51.478588', '-30.833561', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766588', 3766588, '305.806000', '47.806469', '0.503501', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766589', 3766589, '308.552612', '48.569420', '-3.769025', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766591', 3766591, '409.158112', '63.702721', '-82.786118', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766592', 3766592, '412.649689', '63.919991', '-86.564484', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766596', 3766596, '450.583588', '66.468239', '-76.957558', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766603', 3766603, '394.502594', '67.135857', '-121.089203', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766604', 3766604, '391.786499', '67.793007', '-123.530602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3766605', 3766605, '395.113007', '67.180733', '-122.828697', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767081', 3767081, '473.143494', '66.440041', '-148.859894', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767082', 3767082, '437.091309', '65.055496', '-127.757103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767083', 3767083, '438.506500', '65.198730', '-126.336800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767118', 3767118, '437.011108', '65.003197', '-124.078499', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767119', 3767119, '474.052002', '66.418793', '-147.307800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767127', 3767127, '371.903290', '67.982323', '-110.760803', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3767131', 3767131, '460.464600', '68.698967', '-124.371498', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3767137', 3767137, '564.060181', '84.658661', '-310.397614', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3767139', 3767139, '425.864014', '78.873833', '-349.813110', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3767149', 3767149, '418.543213', '65.856056', '-158.386795', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767152', 3767152, '380.575195', '71.228844', '-138.534103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767155', 3767155, '353.131409', '70.227692', '-126.119904', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767158', 3767158, '355.969604', '70.540512', '-125.082298', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767160', 3767160, '354.321594', '69.995934', '-123.739502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767163', 3767163, '385.091888', '70.103569', '-139.968506', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767164', 3767164, '383.413391', '70.520859', '-137.771194', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767165', 3767165, '382.223206', '70.816437', '-140.151596', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767230', 3767230, '338.126892', '68.759033', '-132.386398', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767240', 3767240, '525.678589', '69.218857', '-235.317993', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91168, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767241', 3767241, '529.279724', '69.670998', '-238.980103', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90352, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767242', 3767242, '523.878113', '69.910103', '-240.231400', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90624, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767246', 3767246, '503.511597', '77.082458', '-297.441315', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767247', 3767247, '490.567688', '72.273407', '-273.391388', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767248', 3767248, '499.222992', '76.478897', '-297.574799', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767251', 3767251, '561.724976', '68.563721', '-232.711105', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90896, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767262', 3767262, '609.164307', '70.799339', '-269.442291', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767263', 3767263, '607.699524', '69.742554', '-262.681885', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767264', 3767264, '611.178528', '70.073822', '-266.496613', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767271', 3767271, '583.442871', '78.270691', '-293.369995', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767272', 3767272, '582.626099', '82.811012', '-321.008209', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767273', 3767273, '586.291077', '77.487671', '-291.515594', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767374', 3767374, '436.361908', '73.251167', '-304.983185', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767375', 3767375, '432.991608', '72.276894', '-303.043610', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767376', 3767376, '349.804901', '74.911560', '-321.936798', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767377', 3767377, '435.671997', '72.056473', '-300.979401', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104478, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767388', 3767388, '361.665588', '75.651962', '-325.562408', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767390', 3767390, '363.221985', '75.155243', '-322.388489', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767391', 3767391, '358.186493', '73.581299', '-315.714813', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767393', 3767393, '395.641113', '76.023048', '-328.902496', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767394', 3767394, '397.399597', '76.429916', '-332.825500', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767395', 3767395, '393.430298', '76.446228', '-331.738098', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767396', 3767396, '392.678711', '86.886810', '-395.321106', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767399', 3767399, '470.368805', '87.249977', '-348.957306', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767400', 3767400, '454.939209', '84.293327', '-350.549591', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767401', 3767401, '458.387787', '84.602448', '-346.643188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767402', 3767402, '428.051086', '76.420769', '-330.744385', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767425', 3767425, '422.176910', '67.247093', '-159.579803', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767426', 3767426, '420.543213', '66.332741', '-157.321503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767435', 3767435, '384.954498', '71.312561', '-255.829102', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767436', 3767436, '381.795898', '71.738327', '-257.517487', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767437', 3767437, '387.359314', '69.869453', '-264.137299', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767445', 3767445, '628.911987', '66.716454', '-231.728607', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767446', 3767446, '630.792603', '66.280296', '-209.603195', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767447', 3767447, '629.602417', '66.422333', '-211.983597', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767448', 3767448, '627.954529', '66.392159', '-210.335602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767449', 3767449, '632.471130', '66.334442', '-211.800507', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767450', 3767450, '630.285278', '66.806633', '-233.987000', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767455', 3767455, '662.184509', '66.885223', '-232.532303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767456', 3767456, '663.832520', '66.880669', '-235.767197', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767457', 3767457, '660.994324', '67.126022', '-234.912704', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767458', 3767458, '679.883301', '64.783623', '-225.588394', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767462', 3767462, '683.051575', '64.449142', '-221.445694', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767463', 3767463, '686.133911', '64.440773', '-225.077301', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767464', 3767464, '682.532776', '64.535759', '-223.856598', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767465', 3767465, '680.213379', '64.599297', '-222.178101', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767466', 3767466, '644.667419', '61.202068', '-179.041107', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98228, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767467', 3767467, '646.345825', '61.561089', '-181.268906', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97956, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(279, 'e0050', 'bnpc3767468', 3767468, '625.297607', '63.148769', '-175.494003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767469', 3767469, '624.534729', '62.919571', '-173.449295', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767472', 3767472, '612.920227', '62.437519', '-154.581299', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97140, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767473', 3767473, '618.413513', '60.995640', '-154.157501', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96868, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767474', 3767474, '611.729980', '62.836342', '-156.961700', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96596, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767475', 3767475, '610.081970', '62.919849', '-155.313705', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96324, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767480', 3767480, '599.736572', '66.081619', '-200.660995', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96052, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767481', 3767481, '603.400085', '66.248016', '-212.652893', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95780, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767482', 3767482, '600.591125', '66.117447', '-203.224594', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767487', 3767487, '582.119629', '63.525211', '-162.909500', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767488', 3767488, '583.554016', '63.640011', '-161.566696', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767504', 3767504, '384.336212', '81.769058', '-374.104706', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767505', 3767505, '386.960785', '82.047218', '-374.979614', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92250, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767508', 3767508, '420.230408', '83.041237', '-377.818695', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91978, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767509', 3767509, '416.202087', '83.456848', '-380.199188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91706, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767510', 3767510, '414.218414', '82.361076', '-374.217590', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91434, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767538', 3767538, '559.649475', '74.212418', '-273.297485', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90080, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767539', 3767539, '565.844971', '73.504051', '-271.077698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89808, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767541', 3767541, '530.575989', '78.841171', '-292.050598', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89536, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767542', 3767542, '536.018616', '73.912933', '-270.240601', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89264, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767543', 3767543, '527.257324', '78.277519', '-291.082397', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88992, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767550', 3767550, '559.405579', '68.352837', '-230.727402', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88720, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767551', 3767551, '504.920990', '71.617661', '-255.737900', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88448, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767552', 3767552, '562.426697', '74.626442', '-275.098114', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88176, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767553', 3767553, '515.106079', '86.958946', '-357.724792', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87886, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767554', 3767554, '555.815430', '86.288918', '-333.674286', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87614, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767555', 3767555, '550.172974', '86.038811', '-337.105713', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87342, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767556', 3767556, '556.703918', '86.005051', '-341.164612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87070, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767558', 3767558, '595.652222', '100.886101', '-481.113007', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86798, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767559', 3767559, '565.758728', '90.501213', '-411.795288', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767560', 3767560, '593.128418', '99.817238', '-476.295013', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767561', 3767561, '597.171326', '86.616676', '-366.082886', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767562', 3767562, '592.898621', '86.573059', '-364.752991', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767565', 3767565, '659.080383', '68.157593', '-282.327087', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767566', 3767566, '655.601379', '67.872910', '-278.542786', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767568', 3767568, '696.297791', '66.817932', '-301.967896', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767583', 3767583, '629.275208', '76.769440', '-316.382690', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84622, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767584', 3767584, '635.718506', '76.129578', '-319.129303', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84350, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767675', 3767675, '637.937683', '75.470261', '-314.178314', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84078, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767694', 3767694, '274.187408', '73.498833', '-235.511505', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767702', 3767702, '282.131287', '73.968918', '-250.520294', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767704', 3767704, '283.459686', '74.239098', '-252.146103', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767705', 3767705, '285.161987', '73.984657', '-268.017487', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767706', 3767706, '277.286194', '74.210907', '-280.408813', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767707', 3767707, '277.586212', '74.130417', '-281.519714', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767709', 3767709, '268.511505', '73.750023', '-310.081207', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767710', 3767710, '290.727997', '75.783447', '-320.191986', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767711', 3767711, '291.566193', '75.961906', '-321.088593', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767712', 3767712, '240.649994', '74.570793', '-328.847198', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767715', 3767715, '221.796799', '75.280907', '-305.122711', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767716', 3767716, '234.573196', '72.438171', '-271.531403', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767717', 3767717, '235.577301', '72.991150', '-274.815186', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767721', 3767721, '341.847809', '47.013062', '1.602173', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80300, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767722', 3767722, '413.717804', '55.405399', '-18.570250', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80028, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767725', 3767725, '414.877411', '56.473511', '-20.889650', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79756, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767729', 3767729, '340.932404', '58.884521', '-68.986153', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767730', 3767730, '349.904510', '70.939087', '-141.039200', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767735', 3767735, '351.399994', '71.122192', '-139.177597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767772', 3767772, '385.992096', '79.489769', '-359.438690', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767779', 3767779, '406.035400', '88.015427', '-400.377411', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767782', 3767782, '403.608612', '88.645103', '-402.194885', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767814', 3767814, '635.174072', '71.616203', '-284.468597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767845', 3767845, '633.182922', '72.289650', '-286.197998', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767846', 3767846, '635.372375', '67.114166', '-231.371002', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767853', 3767853, '622.306885', '64.499603', '-174.464905', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767854', 3767854, '645.827026', '60.818569', '-177.759293', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767857', 3767857, '725.192871', '64.427238', '-240.193405', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767859', 3767859, '617.085510', '62.126339', '-147.285202', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767860', 3767860, '673.612427', '64.732903', '-189.639206', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767863', 3767863, '676.003723', '64.536713', '-188.308105', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767872', 3767872, '678.086914', '64.518532', '-207.618896', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767901', 3767901, '653.968079', '78.578423', '-360.327515', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767906', 3767906, '656.550293', '77.457336', '-356.077393', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767907', 3767907, '657.869080', '77.894173', '-358.050293', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3767910', 3767910, '590.645020', '90.549652', '-389.681702', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3768115', 3768115, '530.515381', '91.184883', '-383.319305', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3768118', 3768118, '533.323120', '90.657288', '-380.765015', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3768152', 3768152, '508.880707', '96.069290', '-437.340302', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71342, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(279, 'e0050', 'bnpc3768153', 3768153, '519.773071', '96.615059', '-445.083588', 752, 0, 0, 0, 0, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71608, 3, 0, 0, 0, 16, 30059, 0, 0, 0), +(279, 'e0050', 'bnpc3768154', 3768154, '523.339417', '94.818977', '-429.381287', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72962, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(279, 'e0050', 'bnpc3768156', 3768156, '535.457581', '96.545937', '-468.044800', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72690, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(279, 'e0050', 'bnpc3768157', 3768157, '520.360107', '95.886787', '-460.180389', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72424, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(279, 'e0050', 'bnpc3768158', 3768158, '535.493225', '94.402260', '-439.778015', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70526, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(279, 'e0050', 'bnpc3768159', 3768159, '502.875793', '97.415413', '-416.738495', 754, 0, 0, 0, 0, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73234, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(279, 'e0050', 'bnpc3768160', 3768160, '521.578979', '94.382271', '-413.852905', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72152, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(279, 'e0050', 'bnpc3768161', 3768161, '509.317200', '94.366043', '-398.691711', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71070, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(279, 'e0050', 'bnpc3768165', 3768165, '517.667175', '95.947739', '-463.471588', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73506, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(279, 'e0050', 'bnpc3768166', 3768166, '501.819092', '97.276329', '-413.591797', 751, 0, 0, 0, 0, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70798, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(279, 'e0050', 'bnpc3768167', 3768167, '534.916016', '94.227654', '-435.617798', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71880, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(279, 'e0050', 'bnpc3873220', 3873220, '-19.011200', '59.577240', '478.601715', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68768, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873222', 3873222, '-57.635151', '54.398960', '509.264313', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68496, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873223', 3873223, '-72.043533', '60.186852', '494.941803', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68224, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873226', 3873226, '-82.569511', '59.009541', '500.667694', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67952, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873227', 3873227, '-85.215538', '58.176079', '495.797913', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67680, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873232', 3873232, '-26.285730', '45.126209', '554.549622', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67408, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873233', 3873233, '-80.450127', '53.830681', '543.885925', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67136, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873235', 3873235, '-77.768517', '54.979061', '539.636902', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66864, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873237', 3873237, '-49.665508', '40.839931', '590.425781', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66592, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873238', 3873238, '-51.547249', '40.978630', '596.975098', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66320, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873240', 3873240, '-56.989220', '40.385479', '595.949585', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66048, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873243', 3873243, '73.494881', '48.720230', '629.534424', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65776, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873244', 3873244, '83.244293', '50.021931', '641.594727', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65504, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873246', 3873246, '77.347931', '48.172680', '641.229797', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65232, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873247', 3873247, '77.649078', '56.774830', '716.941528', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64960, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873249', 3873249, '79.648613', '56.806110', '720.165710', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64688, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873250', 3873250, '52.669842', '55.384899', '724.728516', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873255', 3873255, '48.538898', '36.148571', '656.885620', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64144, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873256', 3873256, '46.513409', '36.839489', '684.859314', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63872, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873257', 3873257, '41.888302', '35.921108', '686.955078', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63600, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873265', 3873265, '34.495090', '45.667789', '819.153381', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63328, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873271', 3873271, '-18.570280', '43.203621', '763.671082', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63056, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873272', 3873272, '-24.521290', '43.172451', '761.992676', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62784, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873275', 3873275, '37.190269', '46.111851', '822.446777', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62512, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873324', 3873324, '79.270752', '49.720821', '871.732483', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62240, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873328', 3873328, '31.098160', '46.232330', '851.456421', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61968, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873329', 3873329, '-90.470787', '8.590782', '680.567627', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61702, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873330', 3873330, '-224.494995', '-0.300003', '686.536377', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61430, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873331', 3873331, '-215.466797', '-0.252817', '694.899719', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61158, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873332', 3873332, '-120.012199', '3.585823', '702.235413', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60886, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873333', 3873333, '-207.511307', '-0.292601', '666.813293', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60614, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873334', 3873334, '-171.158203', '-0.710317', '738.778076', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60342, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873335', 3873335, '-132.077698', '0.394896', '752.015930', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60070, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873336', 3873336, '-122.561096', '0.570598', '756.478577', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59798, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873337', 3873337, '-78.064957', '2.435715', '762.539001', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59526, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873339', 3873339, '-81.966408', '2.959849', '802.456604', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59254, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873340', 3873340, '-17.237820', '8.762830', '808.010925', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58982, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873343', 3873343, '91.020012', '21.945419', '806.005371', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58710, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873345', 3873345, '127.519600', '23.025820', '809.445313', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58438, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873348', 3873348, '121.338402', '24.555710', '817.927795', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58166, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873353', 3873353, '213.397400', '25.314671', '805.691528', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57894, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873359', 3873359, '80.472221', '24.632441', '756.982178', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57622, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873362', 3873362, '24.652531', '14.575950', '784.440430', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57350, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873363', 3873363, '139.838699', '21.711720', '778.939575', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57078, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(279, 'e0050', 'bnpc3873367', 3873367, '251.139801', '6.797970', '788.702271', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873368', 3873368, '253.283096', '6.540766', '787.524292', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873369', 3873369, '254.565994', '6.283995', '780.385681', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873371', 3873371, '246.057800', '9.008336', '801.580994', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873374', 3873374, '248.002304', '6.721136', '783.831970', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873375', 3873375, '248.302399', '6.265314', '767.472473', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873376', 3873376, '246.801407', '6.267453', '768.374390', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873379', 3873379, '-3.098505', '41.687851', '623.973083', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54914, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873381', 3873381, '-0.691058', '42.488289', '627.270020', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873382', 3873382, '-6.383020', '41.661289', '631.828674', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873385', 3873385, '-12.702990', '41.812180', '707.756409', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873386', 3873386, '-10.462590', '41.960880', '705.075378', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873387', 3873387, '-52.108768', '38.325489', '665.766113', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873388', 3873388, '-55.987579', '36.343479', '670.810486', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873389', 3873389, '-59.405991', '38.476730', '658.650818', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53010, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873390', 3873390, '-59.105999', '36.026340', '668.374023', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52738, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873396', 3873396, '-160.952896', '1.569027', '667.861206', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48398, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(279, 'e0050', 'bnpc3873398', 3873398, '-161.990494', '1.669328', '666.421692', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48126, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(279, 'e0050', 'bnpc3873399', 3873399, '-150.636902', '5.134464', '653.424011', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47854, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(279, 'e0050', 'bnpc3873401', 3873401, '-144.836700', '4.701064', '665.153870', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47582, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(279, 'e0050', 'bnpc3873402', 3873402, '-149.620605', '3.102985', '669.616089', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47310, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(279, 'e0050', 'bnpc3873403', 3873403, '-155.732605', '1.144920', '679.460327', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47038, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(279, 'e0050', 'bnpc3873404', 3873404, '-142.607895', '1.054965', '712.663025', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46766, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(279, 'e0050', 'bnpc3873405', 3873405, '-148.567505', '0.750069', '714.199524', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46494, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(279, 'e0050', 'bnpc3873406', 3873406, '-149.139404', '0.759766', '712.362000', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46222, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(279, 'e0050', 'bnpc3873420', 3873420, '-59.783230', '40.755260', '572.130127', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873421', 3873421, '-58.553791', '40.657639', '574.646973', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873422', 3873422, '-25.335461', '55.583641', '513.424194', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873425', 3873425, '142.979706', '22.710770', '829.297302', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51656, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873426', 3873426, '220.695999', '20.348419', '790.027283', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51384, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873427', 3873427, '69.222389', '20.622999', '778.105286', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51112, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873428', 3873428, '70.471992', '21.233120', '776.341980', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50840, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873430', 3873430, '66.086601', '57.020870', '725.806213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50568, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873431', 3873431, '79.195717', '52.007320', '685.675415', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50296, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873432', 3873432, '79.268204', '51.686298', '683.238892', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50024, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873433', 3873433, '-129.812698', '8.744282', '655.901672', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873434', 3873434, '-127.513100', '8.619234', '660.065491', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873435', 3873435, '-70.867996', '3.471146', '805.643616', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873461', 3873461, '18.223940', '44.911652', '832.339600', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc3873463', 3873463, '129.763306', '48.053009', '868.938477', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48664, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc4057136', 4057136, '-29.171040', '70.937523', '112.141998', 784, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23136, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(279, 'e0050', 'bnpc4057153', 4057153, '-33.309830', '59.142609', '456.249786', 785, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22870, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(279, 'e0050', 'bnpc4057178', 4057178, '-0.370673', '36.202759', '591.413818', 786, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22604, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(279, 'e0050', 'bnpc4057204', 4057204, '126.070801', '23.201380', '735.619629', 788, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22338, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(279, 'e0050', 'bnpc4510193', 4510193, '600.272400', '61.718521', '-115.521301', 787, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22072, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(279, 'e0050', 'bnpc4621602', 4621602, '205.951904', '73.024078', '-291.708496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26712, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc4867727', 4867727, '-103.902603', '2.225230', '731.826416', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26326, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc4867728', 4867728, '-115.780197', '1.850056', '725.665710', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26054, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc4867729', 4867729, '-96.687714', '2.097239', '744.887817', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25782, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc4867730', 4867730, '-98.053673', '1.671072', '759.716797', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25510, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(279, 'e0050', 'bnpc4867731', 4867731, '-109.169701', '1.535632', '746.508301', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23746, 8, 0, 0, 0, 0, 0, 4867752, 0, 0), +(279, 'e0050', 'bnpc4867733', 4867733, '-113.730499', '0.984999', '755.556274', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24018, 8, 0, 0, 0, 0, 0, 4867753, 0, 0), +(279, 'e0050', 'bnpc4867735', 4867735, '-122.788597', '0.819352', '748.165283', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25244, 8, 0, 0, 0, 0, 0, 4867761, 0, 0), +(279, 'e0050', 'bnpc4867736', 4867736, '-111.623299', '1.689789', '738.438904', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24972, 8, 0, 0, 0, 0, 0, 4867748, 0, 0), +(279, 'e0050', 'bnpc4867737', 4867737, '-123.906197', '0.960864', '734.838501', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23474, 8, 0, 0, 0, 0, 0, 4867754, 0, 0), +(280, 'e0040', 'bnpc3969486', 3969486, '557.060974', '28.946320', '333.730011', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135904, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969499', 3969499, '706.892212', '28.174080', '410.894989', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135638, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc3969501', 3969501, '698.946899', '27.231220', '412.552002', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135366, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc3969502', 3969502, '658.104797', '40.675949', '339.546509', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc3969504', 3969504, '688.856689', '42.308319', '338.199005', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc3969505', 3969505, '695.458374', '32.764568', '395.995209', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc3969506', 3969506, '714.097778', '41.205120', '366.676910', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc3969507', 3969507, '672.780518', '40.217781', '354.945709', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc3969508', 3969508, '719.824585', '40.851952', '370.876312', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc3969542', 3969542, '560.540100', '24.185499', '348.622803', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133456, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969548', 3969548, '522.148376', '23.025820', '338.460297', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133184, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969554', 3969554, '549.980774', '37.888100', '297.108398', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132912, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969559', 3969559, '529.777893', '26.199690', '320.881897', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969858', 3969858, '676.691772', '12.588650', '446.555206', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969860', 3969860, '668.372314', '21.641729', '428.498291', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132108, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969864', 3969864, '682.858887', '19.865379', '433.932312', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131836, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969865', 3969865, '734.760376', '26.661579', '441.483093', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131564, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969866', 3969866, '738.361572', '27.470659', '441.561615', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131292, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969867', 3969867, '743.555115', '43.828701', '397.126801', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131020, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969868', 3969868, '749.288208', '49.819462', '361.199493', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130748, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969869', 3969869, '745.879089', '49.587929', '364.109314', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130476, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969870', 3969870, '554.436523', '29.648230', '329.762695', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969874', 3969874, '501.999603', '16.372259', '323.036591', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969875', 3969875, '516.929810', '22.049240', '301.594513', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969876', 3969876, '565.178772', '35.629768', '313.008209', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969877', 3969877, '634.964478', '23.582150', '394.616089', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969913', 3969913, '617.781311', '28.683889', '370.071503', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128850, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(280, 'e0040', 'bnpc3969920', 3969920, '611.048096', '35.477501', '345.262604', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969921', 3969921, '586.014709', '27.906170', '353.311188', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969922', 3969922, '619.215576', '29.112610', '369.491608', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969923', 3969923, '588.120422', '28.606050', '352.456696', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969924', 3969924, '613.825195', '35.926769', '345.689789', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969925', 3969925, '619.487122', '27.800541', '373.672699', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969928', 3969928, '586.106323', '30.585791', '346.139404', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969938', 3969938, '607.670898', '42.955601', '306.352112', 348, 0, 0, 0, 0, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126680, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(280, 'e0040', 'bnpc3969940', 3969940, '601.888184', '42.074169', '311.211304', 349, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126414, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(280, 'e0040', 'bnpc3969942', 3969942, '586.741699', '40.893959', '312.224213', 349, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126142, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(280, 'e0040', 'bnpc3969943', 3969943, '615.350525', '43.930660', '306.935211', 348, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125864, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(280, 'e0040', 'bnpc3969944', 3969944, '582.392395', '43.245682', '301.571014', 349, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125598, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(280, 'e0040', 'bnpc3969945', 3969945, '593.642029', '43.886150', '301.072693', 348, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125320, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(280, 'e0040', 'bnpc3969946', 3969946, '601.489197', '43.885170', '302.896698', 348, 0, 0, 0, 0, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125048, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(280, 'e0040', 'bnpc3969947', 3969947, '600.182373', '43.875881', '302.854614', 349, 0, 0, 0, 0, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124782, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(280, 'e0040', 'bnpc3969953', 3969953, '466.849701', '12.710720', '359.487213', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969954', 3969954, '457.877411', '9.353733', '383.566010', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969977', 3969977, '450.522614', '9.018035', '388.296295', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969978', 3969978, '489.053406', '7.208063', '402.681610', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969979', 3969979, '510.520996', '1.643817', '421.411987', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969980', 3969980, '516.838318', '2.083105', '418.970612', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123156, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969981', 3969981, '454.281586', '8.893167', '420.949799', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122884, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3969983', 3969983, '510.302307', '3.759752', '406.295197', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122612, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970016', 3970016, '598.226685', '25.550039', '368.222595', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122304, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970018', 3970018, '617.181580', '32.516930', '357.289886', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122032, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970021', 3970021, '643.447693', '23.634590', '398.243011', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121760, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970023', 3970023, '635.004395', '20.669270', '404.579987', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121488, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970025', 3970025, '599.237000', '30.746880', '353.353088', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121216, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970032', 3970032, '622.963623', '41.739059', '320.949005', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120944, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970034', 3970034, '634.595825', '42.144840', '321.818115', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120672, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970036', 3970036, '626.665527', '41.288631', '324.601715', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120400, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970043', 3970043, '657.099609', '17.239750', '446.592987', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970044', 3970044, '603.288696', '6.133514', '483.976501', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970045', 3970045, '601.175476', '6.050048', '482.055298', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970058', 3970058, '513.097290', '16.847160', '355.958801', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970061', 3970061, '447.827789', '5.457586', '281.886292', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970133', 3970133, '416.984497', '-8.646816', '202.035202', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970135', 3970135, '412.728088', '-9.469052', '205.053802', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970136', 3970136, '346.358093', '-20.858730', '218.121307', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970139', 3970139, '349.959106', '-18.572670', '169.900894', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970140', 3970140, '354.643799', '-18.085939', '171.731094', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970155', 3970155, '335.827911', '-17.950689', '158.445908', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117108, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970159', 3970159, '307.105988', '-20.876850', '162.587708', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116836, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970161', 3970161, '298.054413', '-13.534800', '141.344299', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116564, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970162', 3970162, '293.618408', '-13.544960', '146.169205', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116292, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970166', 3970166, '194.223495', '-9.052984', '64.264412', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc3970168', 3970168, '126.745399', '-15.229580', '95.719521', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc3970170', 3970170, '165.697601', '-14.725040', '79.575813', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc3970171', 3970171, '84.276093', '-14.942520', '126.744102', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102450, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc3970174', 3970174, '97.569847', '-16.128820', '166.516693', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102722, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc3970177', 3970177, '7.003844', '-24.124559', '109.025703', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116026, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970184', 3970184, '24.765341', '-23.209021', '107.560799', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115754, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970186', 3970186, '-19.180639', '-22.568140', '51.071899', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970187', 3970187, '-12.954960', '-22.781759', '46.860409', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970190', 3970190, '7.797313', '-22.598660', '68.039932', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970193', 3970193, '104.600502', '-10.910250', '5.996748', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970194', 3970194, '55.405460', '-5.264410', '-30.655420', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970196', 3970196, '38.071209', '-5.203373', '-34.836391', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970199', 3970199, '64.013428', '-4.214352', '-64.780800', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970214', 3970214, '176.327301', '-12.764270', '112.090401', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc3970222', 3970222, '89.666710', '-1.146154', '-60.931259', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113584, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970231', 3970231, '82.380707', '-1.466871', '-63.000511', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970232', 3970232, '87.757019', '-2.006091', '-55.761841', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970236', 3970236, '82.076691', '-1.472959', '-64.535721', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970238', 3970238, '81.548286', '-2.522091', '-54.485199', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970241', 3970241, '76.980713', '-2.383074', '-61.994930', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970308', 3970308, '344.824890', '-17.982759', '163.365295', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970320', 3970320, '261.840088', '-17.578510', '163.665298', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970328', 3970328, '262.914001', '-17.209499', '160.012894', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970331', 3970331, '324.945801', '-5.662250', '104.268402', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970344', 3970344, '367.757294', '4.986305', '78.445778', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970353', 3970353, '366.964111', '4.318256', '81.956146', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970357', 3970357, '383.822998', '15.624690', '27.171089', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970366', 3970366, '253.742203', '2.639771', '62.302608', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100280, 5, 0, 0, 0, 28, 30059, 0, 0, 0), +(280, 'e0040', 'bnpc3970369', 3970369, '250.293701', '2.426147', '62.638309', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100552, 5, 0, 0, 0, 28, 30059, 0, 0, 0), +(280, 'e0040', 'bnpc3970370', 3970370, '253.833694', '2.365112', '64.438843', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99736, 5, 0, 0, 0, 28, 30059, 0, 0, 0), +(280, 'e0040', 'bnpc3970371', 3970371, '242.913300', '1.349542', '71.061279', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100008, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc3970372', 3970372, '243.379196', '1.981285', '58.301060', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101368, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc3970373', 3970373, '264.349487', '2.966964', '67.594612', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101640, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc3970374', 3970374, '258.144806', '5.613231', '48.790150', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100824, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc3970375', 3970375, '272.358307', '5.020142', '58.945560', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101096, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc3970378', 3970378, '170.397400', '-15.426920', '64.652428', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970381', 3970381, '148.926498', '-12.439410', '99.620064', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970382', 3970382, '150.743805', '-12.130980', '102.494904', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970389', 3970389, '5.355869', '-23.270050', '51.895889', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970391', 3970391, '79.423157', '-4.654048', '-18.814421', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970394', 3970394, '50.156361', '-2.487267', '-15.762620', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970399', 3970399, '48.172680', '-2.487267', '-15.457440', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970406', 3970406, '269.703186', '-9.597971', '96.116524', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108156, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970411', 3970411, '267.261688', '-10.238850', '98.008636', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107884, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970412', 3970412, '263.263885', '-10.391440', '90.897942', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107612, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970414', 3970414, '241.901199', '-11.703720', '95.231506', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107340, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970415', 3970415, '239.032501', '-11.642680', '94.010780', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107068, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970416', 3970416, '246.860504', '-13.252180', '112.323097', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106796, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970419', 3970419, '249.271500', '-13.493160', '115.100197', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106524, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970420', 3970420, '243.442505', '-14.033920', '117.877403', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106252, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970433', 3970433, '222.674896', '-14.938630', '104.905701', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105980, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970434', 3970434, '219.775604', '-15.091220', '103.654503', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105708, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970437', 3970437, '293.079987', '-11.703720', '132.432999', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105412, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970680', 3970680, '216.784897', '-14.389340', '95.933472', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3970681', 3970681, '272.755005', '-9.750549', '103.227303', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3972576', 3972576, '303.465607', '3.314056', '68.397324', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104596, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3972577', 3972577, '306.798889', '3.292596', '65.152077', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc3972584', 3972584, '338.778503', '-21.646130', '187.870697', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4057318', 4057318, '654.975586', '9.882965', '475.443115', 783, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21436, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(280, 'e0040', 'bnpc4057321', 4057321, '299.487488', '-24.761221', '213.123703', 785, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21170, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(280, 'e0040', 'bnpc4057322', 4057322, '221.054092', '-24.836121', '213.135193', 784, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20904, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(280, 'e0040', 'bnpc4057324', 4057324, '-96.358551', '-25.164360', '54.821659', 786, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20638, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(280, 'e0040', 'bnpc4057391', 4057391, '14.877870', '-10.652030', '-83.785133', 787, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20372, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(280, 'e0040', 'bnpc4108563', 4108563, '134.623199', '-16.564131', '55.533340', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102178, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4108567', 4108567, '124.950996', '-18.103809', '158.397507', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101906, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4114576', 4114576, '-69.169189', '-25.864071', '-73.624763', 768, 0, 0, 0, 1, 6, 0, 0, 565, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89138, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(280, 'e0040', 'bnpc4114578', 4114578, '-48.966251', '-22.781740', '-124.681503', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96990, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4114591', 4114591, '-75.944153', '-28.244450', '-144.487701', 766, 0, 0, 0, 0, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97528, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(280, 'e0040', 'bnpc4114593', 4114593, '-75.913696', '-28.427610', '-146.562897', 765, 0, 0, 0, 0, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98610, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(280, 'e0040', 'bnpc4114594', 4114594, '-97.522850', '-30.215300', '-148.102402', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97800, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4114595', 4114595, '-106.523300', '-31.509951', '-130.479904', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97262, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4116530', 4116530, '-157.610504', '-38.071289', '-31.235229', 766, 0, 0, 0, 0, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98072, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(280, 'e0040', 'bnpc4116531', 4116531, '-146.562897', '-27.573059', '20.462339', 765, 0, 0, 0, 1, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99154, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(280, 'e0040', 'bnpc4116532', 4116532, '-119.035599', '-27.328920', '23.208981', 767, 0, 0, 0, 1, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96446, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4116538', 4116538, '-155.565796', '-38.010250', '-31.357361', 765, 0, 0, 0, 0, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98882, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(280, 'e0040', 'bnpc4116539', 4116539, '-166.765900', '-32.578060', '5.874695', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96718, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4116540', 4116540, '-134.447296', '-30.472290', '-5.020264', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98344, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(280, 'e0040', 'bnpc4125231', 4125231, '-370.973785', '-40.882549', '-198.661697', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96180, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4125233', 4125233, '-63.096130', '-25.253719', '-114.000198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4125234', 4125234, '-50.309021', '-23.849850', '-91.264221', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95642, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4125235', 4125235, '-90.898071', '-29.831421', '-137.163406', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4125236', 4125236, '-129.961105', '-32.852779', '-108.934097', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4125238', 4125238, '-158.037796', '-34.042912', '-99.229492', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4125239', 4125239, '-185.717606', '-39.169922', '-80.796570', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94554, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4125240', 4125240, '-190.905594', '-41.001041', '-49.210388', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4125241', 4125241, '-202.166794', '-40.024479', '-90.806519', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4125242', 4125242, '-140.642502', '-30.411249', '1.815735', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4125243', 4125243, '-166.796402', '-36.392818', '-12.100400', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4125244', 4125244, '-222.583405', '-40.634769', '-87.815727', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93194, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4125247', 4125247, '-423.331085', '-40.756901', '-220.508102', 773, 0, 0, 0, 1, 6, 0, 0, 347, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92928, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(280, 'e0040', 'bnpc4125248', 4125248, '-412.832886', '-41.458801', '-213.153305', 776, 0, 0, 0, 0, 6, 0, 0, 559, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92662, 1, 0, 0, 0, 36, 30079, 0, 0, 0), +(280, 'e0040', 'bnpc4125250', 4125250, '-411.978394', '-41.641911', '-212.024200', 774, 0, 0, 0, 0, 6, 0, 0, 345, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92396, 1, 0, 0, 0, 36, 30065, 0, 0, 0), +(280, 'e0040', 'bnpc4125261', 4125261, '-441.245209', '-39.475101', '-220.111496', 774, 0, 0, 0, 0, 6, 0, 0, 345, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92124, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(280, 'e0040', 'bnpc4125262', 4125262, '-440.054993', '-39.475101', '-218.646606', 776, 0, 0, 0, 1, 6, 0, 0, 559, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91846, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(280, 'e0040', 'bnpc4125263', 4125263, '-435.568787', '-41.001041', '-232.898407', 773, 0, 0, 0, 1, 6, 0, 0, 347, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91568, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(280, 'e0040', 'bnpc4125282', 4125282, '-406.515594', '-28.397030', '-253.040405', 774, 0, 0, 0, 0, 6, 0, 0, 345, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91308, 1, 0, 0, 0, 36, 30077, 0, 0, 0), +(280, 'e0040', 'bnpc4125283', 4125283, '-407.217499', '-28.397030', '-253.528702', 776, 0, 0, 0, 0, 6, 0, 0, 559, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91030, 1, 0, 0, 0, 36, 30079, 0, 0, 0), +(280, 'e0040', 'bnpc4125285', 4125285, '-412.985413', '-28.397030', '-250.843094', 773, 0, 0, 0, 1, 6, 0, 0, 347, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90752, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(280, 'e0040', 'bnpc4125286', 4125286, '-405.966309', '-37.644100', '-243.823898', 773, 0, 0, 0, 1, 6, 0, 0, 347, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90480, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(280, 'e0040', 'bnpc4125289', 4125289, '-398.519897', '-40.817928', '-218.188797', 774, 0, 0, 0, 1, 6, 0, 0, 345, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90220, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(280, 'e0040', 'bnpc4125290', 4125290, '-391.042999', '-38.651119', '-244.220703', 776, 0, 0, 0, 1, 6, 0, 0, 559, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89942, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(280, 'e0040', 'bnpc4316913', 4316913, '-221.667801', '-42.008121', '-198.138397', 765, 0, 0, 0, 1, 6, 0, 0, 2525, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81986, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4316918', 4316918, '-211.239502', '-41.783859', '-229.267593', 766, 0, 0, 0, 1, 6, 0, 0, 2524, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81720, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4316920', 4316920, '-242.389603', '-42.008121', '-221.606796', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81490, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4316922', 4316922, '-243.732407', '-41.367310', '-179.705597', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81182, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4316928', 4316928, '-237.445602', '-41.977600', '-231.189499', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80910, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4316930', 4316930, '-202.472000', '-42.008121', '-244.739395', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80638, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4316933', 4316933, '-197.619598', '-41.428280', '-317.036713', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80366, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4316935', 4316935, '-237.476196', '-42.008121', '-307.362488', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80094, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4316938', 4316938, '-292.652802', '-41.672421', '-327.657013', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79822, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4316939', 4316939, '-440.940002', '-33.005310', '-363.149506', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79550, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4316942', 4316942, '-458.416687', '-32.786930', '-362.740295', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79278, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4316943', 4316943, '-263.904785', '-43.381409', '-271.076599', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72514, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4316944', 4316944, '-319.625488', '-39.391800', '-300.050995', 766, 0, 0, 0, 0, 6, 0, 0, 1828, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79000, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(280, 'e0040', 'bnpc4316945', 4316945, '-317.930511', '-39.354549', '-298.395599', 768, 0, 0, 0, 0, 6, 0, 0, 1830, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78770, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(280, 'e0040', 'bnpc4316950', 4316950, '-207.660095', '-42.008121', '-279.957306', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72786, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4316951', 4316951, '-144.609802', '-41.153629', '-241.840302', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78498, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4316958', 4316958, '-146.990204', '-41.031559', '-289.265289', 766, 0, 0, 0, 0, 6, 0, 0, 2524, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78184, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(280, 'e0040', 'bnpc4316959', 4316959, '-147.081696', '-41.031559', '-291.035309', 768, 0, 0, 0, 0, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77954, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(280, 'e0040', 'bnpc4316960', 4316960, '-167.712006', '-41.336731', '-290.058807', 765, 0, 0, 0, 1, 6, 0, 0, 2525, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77634, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4316963', 4316963, '-232.440704', '-40.146481', '-349.050201', 768, 0, 0, 0, 1, 6, 0, 0, 1830, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77410, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4316964', 4316964, '-282.307190', '-42.008121', '-365.072113', 766, 0, 0, 0, 0, 6, 0, 0, 1828, 0, '0.000000', 47, 0, 120, 1, 0, 25, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 66216, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(280, 'e0040', 'bnpc4316965', 4316965, '-281.116913', '-42.008121', '-359.151611', 766, 0, 0, 0, 0, 6, 0, 0, 1828, 0, '0.000000', 47, 0, 120, 1, 0, 21, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 77096, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(280, 'e0040', 'bnpc4316980', 4316980, '-375.469208', '-39.479321', '-346.811401', 768, 0, 0, 0, 0, 6, 0, 0, 1830, 0, '0.000000', 49, 0, 120, 1, 0, 31, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 76866, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(280, 'e0040', 'bnpc4316981', 4316981, '-360.719788', '-35.466740', '-409.681396', 766, 0, 0, 0, 1, 6, 0, 0, 1828, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76552, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4316987', 4316987, '-351.952209', '-35.287498', '-400.680786', 768, 0, 0, 0, 1, 6, 0, 0, 1830, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72242, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4317006', 4317006, '-425.589386', '-33.107040', '-354.529510', 766, 0, 0, 0, 0, 6, 0, 0, 1828, 0, '0.000000', 49, 0, 120, 1, 0, 35, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 76280, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(280, 'e0040', 'bnpc4317012', 4317012, '-354.351501', '-39.271420', '-303.235596', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76062, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4317015', 4317015, '-507.061493', '-32.206131', '-362.981293', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75790, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4317016', 4317016, '-496.515411', '-31.640949', '-381.532288', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75518, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4317017', 4317017, '-386.895294', '-35.722141', '-293.090790', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75246, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4317019', 4317019, '-374.123108', '-37.690010', '-300.576691', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74974, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4317020', 4317020, '-364.905487', '-37.562908', '-288.443298', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74702, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4321460', 4321460, '-315.388794', '-38.406979', '624.200806', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321461', 4321461, '-274.008301', '-39.855450', '650.736206', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321463', 4321463, '-243.883301', '-39.120640', '668.059570', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321464', 4321464, '-281.698914', '-40.244148', '655.379211', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321465', 4321465, '-345.691711', '-40.588310', '660.238220', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321466', 4321466, '-392.988892', '-41.449879', '655.634277', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64414, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321467', 4321467, '-363.413086', '-40.854279', '695.693970', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64142, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321468', 4321468, '-450.857391', '-37.997330', '733.822021', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321469', 4321469, '-476.772797', '-38.142120', '757.051270', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321470', 4321470, '-447.854492', '-37.912220', '730.335571', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321471', 4321471, '-477.072906', '-37.196659', '711.034729', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321472', 4321472, '-507.253998', '-37.196659', '740.505798', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321473', 4321473, '-479.166901', '-37.732540', '738.016785', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321474', 4321474, '-451.650787', '-37.109020', '704.282288', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321475', 4321475, '-308.953400', '-42.000000', '713.766479', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61978, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4321477', 4321477, '-348.667999', '-42.000000', '722.773987', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4321478', 4321478, '-268.398895', '-42.000000', '721.376526', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61434, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4321479', 4321479, '-229.397903', '-41.984539', '738.036926', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61162, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4321480', 4321480, '-226.253403', '-41.385059', '735.099487', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60890, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4321481', 4321481, '-322.466187', '-41.807381', '693.960083', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60618, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4321482', 4321482, '-286.179810', '-41.791012', '697.924927', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4321483', 4321483, '-259.243988', '-38.144661', '566.177124', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60062, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321486', 4321486, '-292.149994', '-40.520851', '429.086090', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321487', 4321487, '-311.995514', '-41.332989', '414.272888', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59536, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321488', 4321488, '-288.225800', '-40.390610', '430.941986', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59264, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321489', 4321489, '-255.620697', '-40.477798', '440.482300', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58992, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321490', 4321490, '-240.806793', '-38.337589', '480.157013', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321492', 4321492, '-223.535095', '-38.907558', '511.755188', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58448, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321493', 4321493, '-250.595703', '-38.072151', '503.112091', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58176, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321494', 4321494, '-227.069397', '-38.621010', '515.364319', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57904, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321495', 4321495, '-208.841599', '-38.722130', '493.455811', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57632, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321496', 4321496, '-241.072998', '-38.224331', '544.913513', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57360, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321497', 4321497, '-291.392700', '-38.949532', '627.616089', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57088, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321498', 4321498, '-261.889404', '-39.899719', '661.304077', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56816, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(280, 'e0040', 'bnpc4321499', 4321499, '-370.138092', '-40.451721', '688.807495', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56544, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321500', 4321500, '-291.260986', '-41.491730', '693.390076', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56272, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321501', 4321501, '-332.560211', '-42.000000', '711.026123', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56000, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321502', 4321502, '-329.420013', '-42.000000', '712.776611', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55728, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321503', 4321503, '-246.192200', '-40.441620', '709.686218', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55456, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321505', 4321505, '-240.736298', '-42.000000', '742.566528', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55184, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321506', 4321506, '-468.364594', '-38.197491', '749.200073', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54912, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321508', 4321508, '-469.616486', '-37.505680', '723.021729', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321509', 4321509, '-467.157196', '-37.692699', '722.171387', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54368, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321510', 4321510, '-443.166687', '-37.068859', '715.848694', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321511', 4321511, '-438.206390', '-35.766102', '670.497375', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321526', 4321526, '-71.423027', '-25.768869', '-86.368896', 768, 0, 0, 0, 1, 6, 0, 0, 565, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88866, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4321527', 4321527, '-78.263550', '-26.108219', '-70.908691', 768, 0, 0, 0, 0, 6, 0, 0, 565, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89410, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4321528', 4321528, '-39.536190', '-22.232420', '-158.983795', 765, 0, 0, 0, 1, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89634, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(280, 'e0040', 'bnpc4621608', 4621608, '430.063690', '14.976550', '469.112305', 2770, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21786, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633063', 4633063, '-390.393707', '-41.813049', '-203.727905', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88564, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633067', 4633067, '-360.463898', '-39.780331', '-216.723907', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88292, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633068', 4633068, '-355.794708', '-40.390629', '-201.770096', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88020, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633073', 4633073, '-373.761292', '-40.459530', '-206.054901', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87748, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633074', 4633074, '-349.660492', '-38.529110', '-232.227097', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87476, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633076', 4633076, '-357.646790', '-38.274658', '-239.828094', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87204, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633118', 4633118, '-155.500198', '-34.403210', '-88.681213', 765, 0, 0, 0, 1, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86914, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(280, 'e0040', 'bnpc4633119', 4633119, '-216.104294', '-40.840759', '-85.531441', 765, 0, 0, 0, 1, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86642, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(280, 'e0040', 'bnpc4633122', 4633122, '-180.251999', '-39.087090', '-75.459579', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86376, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(280, 'e0040', 'bnpc4633123', 4633123, '-193.427002', '-38.091850', '-114.042099', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86104, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(280, 'e0040', 'bnpc4633124', 4633124, '-121.586899', '-32.542980', '-106.177200', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85832, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(280, 'e0040', 'bnpc4633125', 4633125, '-145.063293', '-32.872959', '-115.359398', 767, 0, 0, 0, 1, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85566, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633126', 4633126, '-216.646500', '-41.021160', '-66.576988', 767, 0, 0, 0, 1, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85294, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633128', 4633128, '-196.023407', '-42.000118', '-288.500702', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74436, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633131', 4633131, '-181.510605', '-42.000141', '-270.853699', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74164, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633132', 4633132, '-221.403793', '-42.000000', '-294.279510', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73892, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633133', 4633133, '-255.104706', '-42.000011', '-324.852905', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73620, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633134', 4633134, '-272.297607', '-42.000000', '-331.539307', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73348, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633135', 4633135, '-275.837311', '-41.886051', '-348.195587', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73076, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633157', 4633157, '-96.910004', '-30.450001', '-92.839996', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 12, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85064, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633224', 4633224, '-103.441002', '-31.479370', '-116.075401', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 14, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84792, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633232', 4633232, '-118.730499', '-32.303410', '-133.012894', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 15, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84520, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633233', 4633233, '-84.733398', '-29.587280', '-110.399101', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 11, 0, 16, 22, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83976, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633236', 4633236, '-91.264221', '-30.197689', '-128.465698', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 13, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84248, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633263', 4633263, '-789.705627', '-41.480991', '683.228088', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53234, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633264', 4633264, '-759.089783', '-38.575909', '689.571106', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52962, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633265', 4633265, '-805.386475', '-40.817928', '661.463318', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52690, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633266', 4633266, '-794.361572', '-39.456490', '648.005005', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52418, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633267', 4633267, '-775.544617', '-38.485760', '658.247375', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52146, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633268', 4633268, '-775.478821', '-40.268620', '671.290222', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51874, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633269', 4633269, '-818.600830', '-42.008121', '650.415771', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51602, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633270', 4633270, '-762.932495', '-38.970909', '687.098389', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51330, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633271', 4633271, '-776.258606', '-39.190811', '705.569885', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51058, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633276', 4633276, '-283.527893', '-41.916561', '-357.747803', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 21, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 70090, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633279', 4633279, '-294.392303', '-41.489319', '-349.569000', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 22, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 69818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633281', 4633281, '-296.894806', '-41.733459', '-359.090607', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 23, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 70362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633283', 4633283, '-293.720886', '-41.641911', '-367.788208', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 24, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 70906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633285', 4633285, '-282.062988', '-42.038639', '-367.910309', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 25, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 70634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633286', 4633286, '-377.859192', '-39.444641', '-348.989105', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 31, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 69552, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633288', 4633288, '-395.040802', '-38.559631', '-343.953613', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 32, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 69280, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633289', 4633289, '-415.392700', '-33.349609', '-358.443909', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 33, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 69008, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633290', 4633290, '-423.105713', '-32.905010', '-367.492004', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 34, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 68736, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633291', 4633291, '-425.528412', '-33.066349', '-357.686798', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 35, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 68464, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4633377', 4633377, '-188.154800', '-41.040760', '-213.112900', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71970, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4633783', 4633783, '-343.341888', '-39.413860', '-362.948090', 765, 0, 0, 0, 1, 6, 0, 0, 1827, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71650, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4633784', 4633784, '-423.791107', '-33.754879', '-325.509613', 765, 0, 0, 0, 1, 6, 0, 0, 1827, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71378, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4633787', 4633787, '-415.514801', '-33.350899', '-355.147888', 765, 0, 0, 0, 0, 6, 0, 0, 1827, 0, '0.000000', 49, 0, 120, 1, 0, 33, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 71106, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(280, 'e0040', 'bnpc4664481', 4664481, '-777.584473', '-42.008121', '724.696716', 383, 0, 18, 5, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50786, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4664485', 4664485, '-809.964111', '-41.672421', '665.003418', 383, 0, 18, 5, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50514, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4664488', 4664488, '-789.944275', '-41.458801', '705.134583', 383, 0, 18, 5, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50242, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4666236', 4666236, '-878.239990', '-20.652750', '883.271118', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49862, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4666257', 4666257, '-828.987305', '-25.652750', '888.069519', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49590, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4666258', 4666258, '-829.739929', '-25.680969', '889.829773', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49318, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4666259', 4666259, '-815.924316', '-23.649630', '888.875488', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49046, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4666260', 4666260, '-817.754517', '-23.649630', '894.566589', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48774, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(280, 'e0040', 'bnpc4666261', 4666261, '-877.169678', '-20.873289', '876.188171', 775, 0, 0, 0, 1, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48616, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(280, 'e0040', 'bnpc4666262', 4666262, '-875.114197', '-20.902760', '890.589722', 776, 0, 0, 0, 1, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48266, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(280, 'e0040', 'bnpc4666265', 4666265, '-832.192383', '-25.647751', '899.698303', 775, 0, 0, 0, 0, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48072, 2, 0, 0, 0, 0, 30079, 0, 0, 282), +(280, 'e0040', 'bnpc4666266', 4666266, '-883.583496', '-20.647829', '889.883484', 776, 0, 0, 0, 0, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47722, 2, 0, 0, 0, 0, 30065, 0, 0, 282), +(280, 'e0040', 'bnpc4666267', 4666267, '-888.256775', '-20.652750', '881.349426', 775, 0, 0, 0, 0, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47528, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(280, 'e0040', 'bnpc4666268', 4666268, '-887.970093', '-20.652760', '879.854126', 776, 0, 0, 0, 0, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47178, 2, 0, 0, 0, 0, 30073, 0, 0, 282), +(280, 'e0040', 'bnpc4666269', 4666269, '-822.368286', '-24.341749', '895.894714', 775, 0, 0, 0, 1, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46984, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(280, 'e0040', 'bnpc4666270', 4666270, '-824.196777', '-25.652750', '884.833923', 776, 0, 0, 0, 1, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46634, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(280, 'e0040', 'bnpc4666271', 4666271, '-830.350220', '-25.650511', '879.239990', 775, 0, 0, 0, 0, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46440, 2, 0, 0, 0, 0, 30066, 0, 0, 282), +(280, 'e0040', 'bnpc4666272', 4666272, '-834.023621', '-25.647751', '899.649170', 776, 0, 0, 0, 0, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46090, 2, 0, 0, 0, 0, 30065, 0, 0, 282), +(280, 'e0040', 'bnpc4666281', 4666281, '-922.445129', '-20.652750', '935.165527', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45794, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666282', 4666282, '-913.466614', '-20.902750', '923.657410', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45522, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666283', 4666283, '-912.036621', '-20.902750', '938.072876', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45250, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666284', 4666284, '-867.946289', '-25.647751', '918.489319', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44978, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666285', 4666285, '-853.890320', '-23.649630', '930.090576', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44706, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666286', 4666286, '-857.944092', '-24.538349', '922.393616', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44434, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666287', 4666287, '-867.256897', '-25.652750', '934.697571', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44162, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666288', 4666288, '-914.135620', '-20.652750', '930.937622', 2832, 0, 0, 0, 1, 6, 0, 0, 2538, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43944, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4666291', 4666291, '-853.015991', '-23.649630', '925.301086', 2832, 0, 0, 0, 1, 6, 0, 0, 2538, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43672, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4666292', 4666292, '-864.342407', '-25.652750', '926.222717', 2832, 0, 0, 0, 1, 6, 0, 0, 2538, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43400, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4666293', 4666293, '-860.802307', '-25.647760', '930.098389', 2832, 0, 0, 0, 1, 6, 0, 0, 2538, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43128, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(280, 'e0040', 'bnpc4666294', 4666294, '-921.446472', '-20.676029', '926.420898', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42802, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666705', 4666705, '-862.519897', '-20.652750', '958.568176', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42548, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(280, 'e0040', 'bnpc4666706', 4666706, '-853.286377', '-20.902750', '958.398071', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42276, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(280, 'e0040', 'bnpc4666707', 4666707, '-857.476013', '-20.902750', '972.392212', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42004, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(280, 'e0040', 'bnpc4666708', 4666708, '-807.939697', '-25.652750', '970.221191', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41732, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(280, 'e0040', 'bnpc4666709', 4666709, '-813.264771', '-25.652750', '979.515930', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41460, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(280, 'e0040', 'bnpc4666710', 4666710, '-813.351990', '-25.647751', '985.380127', 773, 0, 0, 0, 0, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41188, 2, 0, 0, 0, 0, 30065, 0, 0, 282), +(280, 'e0040', 'bnpc4666711', 4666711, '-808.987488', '-25.650511', '964.934692', 773, 0, 0, 0, 0, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40916, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(280, 'e0040', 'bnpc4666712', 4666712, '-799.837708', '-23.649639', '983.904175', 773, 0, 0, 0, 0, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40644, 2, 0, 0, 0, 0, 30066, 0, 0, 282), +(280, 'e0040', 'bnpc4666714', 4666714, '-855.103516', '-20.652750', '965.275879', 766, 0, 0, 0, 1, 6, 0, 0, 2540, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40348, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666715', 4666715, '-807.366516', '-25.652750', '978.315125', 766, 0, 0, 0, 1, 6, 0, 0, 2540, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40076, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666716', 4666716, '-798.339783', '-23.649630', '975.416626', 766, 0, 0, 0, 1, 6, 0, 0, 2540, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39804, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666717', 4666717, '-805.016602', '-25.647760', '974.326172', 768, 0, 0, 0, 1, 6, 0, 0, 2541, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39574, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666718', 4666718, '-798.632202', '-23.649630', '979.035828', 768, 0, 0, 0, 1, 6, 0, 0, 2541, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39302, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666719', 4666719, '-861.894470', '-20.652750', '968.356384', 768, 0, 0, 0, 1, 6, 0, 0, 2541, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39030, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666720', 4666720, '-936.066711', '-31.750019', '852.472473', 775, 0, 0, 0, 0, 6, 0, 0, 2542, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38824, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(280, 'e0040', 'bnpc4666721', 4666721, '-933.356873', '-30.260000', '832.557922', 775, 0, 0, 0, 0, 6, 0, 0, 2542, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38552, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(280, 'e0040', 'bnpc4666722', 4666722, '-923.082092', '-30.250000', '842.560730', 775, 0, 0, 0, 0, 6, 0, 0, 2542, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38280, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(280, 'e0040', 'bnpc4666723', 4666723, '-914.793579', '-28.763309', '805.386414', 775, 0, 0, 0, 0, 6, 0, 0, 2542, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38008, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(280, 'e0040', 'bnpc4666724', 4666724, '-936.587219', '-31.755150', '843.129822', 765, 0, 0, 0, 1, 6, 0, 0, 2543, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37622, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666725', 4666725, '-926.512573', '-30.258671', '834.653076', 765, 0, 0, 0, 1, 6, 0, 0, 2543, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37350, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666726', 4666726, '-917.355713', '-28.760000', '806.922974', 765, 0, 0, 0, 1, 6, 0, 0, 2543, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37078, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666728', 4666728, '-910.490601', '-28.763309', '809.658813', 765, 0, 0, 0, 1, 6, 0, 0, 2543, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36806, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4666734', 4666734, '-89.256203', '-30.084669', '-124.693199', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 13, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83662, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4666735', 4666735, '-94.161926', '-30.635151', '-89.379402', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 12, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83390, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4666736', 4666736, '-85.840622', '-29.611879', '-107.485497', 766, 0, 0, 0, 0, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 11, 0, 16, 22, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83112, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(280, 'e0040', 'bnpc4666746', 4666746, '-104.014999', '-31.623831', '-118.950104', 765, 0, 0, 0, 0, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 14, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 82834, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(280, 'e0040', 'bnpc4666747', 4666747, '-118.166702', '-32.339401', '-135.991302', 765, 0, 0, 0, 0, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 15, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 82562, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(280, 'e0040', 'bnpc4667026', 4667026, '-292.652802', '-41.733459', '-365.011108', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 47, 0, 120, 1, 0, 24, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 68126, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4667027', 4667027, '-293.720886', '-41.580872', '-346.913910', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 47, 0, 120, 1, 0, 22, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 67854, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4667028', 4667028, '-294.453400', '-41.580872', '-359.822998', 768, 0, 0, 0, 0, 6, 0, 0, 1830, 0, '0.000000', 47, 0, 120, 1, 0, 23, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 67618, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(280, 'e0040', 'bnpc4667036', 4667036, '-425.913300', '-32.791721', '-368.407501', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 49, 0, 120, 1, 0, 34, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 67310, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4667037', 4667037, '-397.546295', '-37.902161', '-342.084900', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 49, 0, 120, 1, 0, 32, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 67038, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(280, 'e0040', 'bnpc4681259', 4681259, '-351.697388', '-38.557800', '-379.104797', 766, 0, 0, 0, 1, 6, 0, 0, 1828, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66760, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(280, 'e0040', 'bnpc4681260', 4681260, '-370.744995', '-35.287498', '-414.281708', 768, 0, 0, 0, 0, 6, 0, 0, 1830, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66530, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(281, 'o1fa', 'bnpc4600253', 4600253, '0.000000', '0.025700', '-19.000000', 2663, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4600281', 4600281, '-14.373760', '0.025694', '-14.166860', 2694, 0, 0, 0, 0, 6, 0, 0, 2551, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29694, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4600362', 4600362, '-3.436191', '0.025694', '-3.515284', 2696, 0, 0, 0, 3, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4600387', 4600387, '6.379251', '0.025694', '-16.615959', 2692, 0, 0, 0, 0, 6, 0, 0, 2553, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4600398', 4600398, '8.298884', '0.025694', '-16.615959', 2691, 0, 0, 0, 0, 6, 0, 0, 2552, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4600405', 4600405, '6.233904', '0.025700', '-9.148590', 2695, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28630, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4600453', 4600453, '7.271183', '0.025694', '-12.110490', 2693, 0, 0, 0, 0, 6, 0, 0, 2554, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28364, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4619402', 4619402, '-1.214509', '0.025694', '-3.320351', 2765, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28098, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4621155', 4621155, '-13.521420', '0.005472', '1.885355', 2801, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21156, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4621157', 4621157, '-10.004050', '0.005472', '10.072770', 2801, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20884, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4621158', 4621158, '4.713486', '0.005472', '7.360640', 2801, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20612, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4621313', 4621313, '13.703960', '0.005472', '-9.921053', 2801, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20340, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4633752', 4633752, '0.000000', '0.025700', '-19.000000', 2802, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4633753', 4633753, '-14.373760', '0.025694', '-14.166860', 2803, 0, 0, 0, 0, 6, 0, 0, 2551, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4633754', 4633754, '-3.436191', '0.025694', '-3.515284', 2805, 0, 0, 0, 3, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4633755', 4633755, '6.379251', '0.025694', '-16.615959', 2808, 0, 0, 0, 0, 6, 0, 0, 2553, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24152, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4633756', 4633756, '8.298884', '0.025694', '-16.615959', 2807, 0, 0, 0, 0, 6, 0, 0, 2552, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23886, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4633757', 4633757, '6.233904', '0.025700', '-9.148590', 2804, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23620, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4633758', 4633758, '7.271183', '0.025694', '-12.110490', 2809, 0, 0, 0, 0, 6, 0, 0, 2554, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23082, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4633759', 4633759, '-1.214509', '0.025694', '-3.320351', 2929, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22550, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4633766', 4633766, '14.598000', '0.025700', '-14.176900', 2804, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4633769', 4633769, '9.085173', '0.025694', '-12.110490', 2810, 0, 0, 0, 0, 6, 0, 0, 2555, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4634284', 4634284, '-0.045776', '1.632629', '0.045776', 2948, 0, 0, 0, 0, 6, 0, 0, 2608, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27832, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4634287', 4634287, '-0.045776', '1.632629', '0.045776', 2948, 0, 0, 0, 0, 6, 0, 0, 2608, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22176, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4680346', 4680346, '0.000000', '0.025700', '-19.000000', 2938, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4680347', 4680347, '-14.373760', '0.025694', '-14.166860', 2942, 0, 0, 0, 0, 6, 0, 0, 2551, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27196, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4680348', 4680348, '-3.463867', '0.015198', '-3.524841', 2944, 0, 0, 0, 3, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26930, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4680349', 4680349, '6.379251', '0.025694', '-16.615959', 2940, 0, 0, 0, 0, 6, 0, 0, 2553, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26664, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4680350', 4680350, '8.298884', '0.025694', '-16.615959', 2939, 0, 0, 0, 0, 6, 0, 0, 2552, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4680351', 4680351, '6.233904', '0.025700', '-9.148590', 2943, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4680352', 4680352, '7.271183', '0.025694', '-12.110490', 2941, 0, 0, 0, 0, 6, 0, 0, 2554, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4680353', 4680353, '-1.236023', '0.015198', '-3.341736', 2945, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25600, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(281, 'o1fa', 'bnpc4680354', 4680354, '-0.045776', '1.632629', '0.045776', 2948, 0, 0, 0, 0, 6, 0, 0, 2608, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25280, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929298', 3929298, '2.578727', '46.242130', '89.066856', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106598, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929300', 3929300, '154.466995', '46.291969', '133.531601', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106870, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929301', 3929301, '-32.773281', '40.774231', '67.215347', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62568, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929303', 3929303, '-28.213820', '41.179878', '64.173943', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62296, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929305', 3929305, '8.662592', '42.689850', '45.686710', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62024, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929306', 3929306, '13.183170', '42.815102', '41.155972', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61752, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929307', 3929307, '12.633850', '42.762321', '45.031761', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61480, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929308', 3929308, '83.202133', '43.374279', '33.127289', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61208, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929310', 3929310, '107.530296', '44.219631', '32.892910', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60936, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929311', 3929311, '110.185303', '44.303749', '30.939760', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60664, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929313', 3929313, '-41.367249', '44.463268', '115.983803', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134868, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929315', 3929315, '-64.483994', '44.221882', '108.658401', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 0, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134596, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929319', 3929319, '-62.882469', '44.443130', '110.643097', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929320', 3929320, '-67.124481', '43.839500', '114.061096', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134052, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929322', 3929322, '-84.184067', '44.665230', '140.856003', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133780, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929323', 3929323, '-86.198257', '45.235828', '143.511002', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929326', 3929326, '-72.007370', '42.584850', '150.499695', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929327', 3929327, '9.933576', '43.348518', '109.513901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929330', 3929330, '-16.098310', '44.986568', '99.015739', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132692, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929331', 3929331, '-18.173540', '45.462231', '95.170471', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929332', 3929332, '5.935712', '46.903179', '76.340843', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929333', 3929333, '31.174129', '43.952351', '145.616806', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929334', 3929334, '39.963329', '44.737961', '148.119293', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131604, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929335', 3929335, '31.357241', '44.031109', '155.077393', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131332, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929336', 3929336, '38.651051', '44.626740', '146.440796', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929338', 3929338, '38.895199', '44.219131', '96.910004', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929339', 3929339, '42.160629', '44.387291', '96.482742', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130516, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929340', 3929340, '6.515503', '32.613819', '167.589798', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130244, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929342', 3929342, '-15.976240', '28.111290', '180.102203', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129972, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929343', 3929343, '-17.563181', '28.060829', '182.726700', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129700, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929344', 3929344, '-5.020265', '23.736271', '199.389603', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929345', 3929345, '-3.494363', '24.235390', '196.307297', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129156, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929346', 3929346, '-1.510690', '23.913940', '198.748703', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929347', 3929347, '17.227421', '29.147539', '192.309402', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128612, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929353', 3929353, '76.584961', '46.652691', '118.364098', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128340, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929355', 3929355, '100.907799', '48.208359', '64.560791', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128068, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929356', 3929356, '103.440804', '48.287861', '69.260620', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929357', 3929357, '97.886597', '48.162868', '66.422493', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127524, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929358', 3929358, '75.394783', '47.995930', '57.511230', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127252, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929359', 3929359, '72.770264', '48.021091', '55.741089', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126980, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929361', 3929361, '97.978149', '47.044201', '84.183960', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126708, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929362', 3929362, '133.287506', '48.588211', '77.775269', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126436, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929363', 3929363, '135.271103', '48.582859', '78.843384', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126164, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929364', 3929364, '134.172607', '48.281239', '57.785889', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125892, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929366', 3929366, '131.364899', '46.312809', '110.704102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125620, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929367', 3929367, '134.965897', '46.384861', '111.589203', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125348, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929369', 3929369, '133.928497', '46.630039', '108.415298', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125076, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929370', 3929370, '160.601196', '47.107681', '107.804901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124804, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929371', 3929371, '158.648102', '47.043930', '108.811996', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124532, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929373', 3929373, '87.449463', '46.439480', '122.392601', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124260, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929374', 3929374, '89.402588', '46.291409', '119.066002', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123988, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929379', 3929379, '79.026489', '46.295200', '172.747299', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123722, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929381', 3929381, '55.313839', '47.580700', '188.036896', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123450, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929382', 3929382, '59.983150', '48.833561', '191.790604', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123178, 7, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(285, 'e0053', 'bnpc3929383', 3929383, '55.496948', '49.485981', '193.255493', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122906, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929384', 3929384, '40.207520', '50.527809', '210.284500', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122634, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929385', 3929385, '37.171730', '50.727009', '213.792206', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122362, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929386', 3929386, '68.163307', '56.521938', '225.312607', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122090, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929387', 3929387, '54.398369', '56.626060', '241.565506', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121818, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929388', 3929388, '72.589951', '56.790089', '227.695297', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121546, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929389', 3929389, '116.563599', '50.650009', '183.367706', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121274, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929390', 3929390, '120.317299', '49.333080', '176.928299', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121002, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929391', 3929391, '112.138496', '57.097969', '213.153198', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120730, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929392', 3929392, '127.885902', '49.931992', '177.782806', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120458, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929394', 3929394, '115.251297', '57.518108', '214.251801', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120186, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929396', 3929396, '125.779999', '52.105469', '187.182404', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119914, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929397', 3929397, '108.506798', '46.810520', '148.088699', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119642, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929398', 3929398, '105.393997', '46.639080', '146.959595', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119370, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929400', 3929400, '175.585602', '47.639019', '147.630997', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119098, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929401', 3929401, '183.975204', '48.843269', '153.229202', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118826, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929403', 3929403, '178.149002', '47.405022', '144.853806', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118554, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929404', 3929404, '186.666794', '55.711109', '189.380295', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118282, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929405', 3929405, '183.897797', '55.522209', '192.259796', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118010, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929406', 3929406, '188.514496', '58.364479', '196.141098', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117738, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929407', 3929407, '190.993103', '63.780270', '212.770905', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117466, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929408', 3929408, '167.906097', '54.582249', '207.555405', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117194, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929409', 3929409, '142.684006', '57.000031', '221.431396', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116922, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929410', 3929410, '137.517303', '57.770241', '224.725601', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116650, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929412', 3929412, '140.714096', '57.641670', '227.264099', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116378, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929413', 3929413, '147.277206', '57.573250', '230.267700', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116106, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929415', 3929415, '132.701004', '59.887051', '252.613098', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115834, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929416', 3929416, '155.349503', '60.722469', '262.394104', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115562, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929417', 3929417, '152.622498', '60.751789', '265.042389', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115290, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929420', 3929420, '54.698360', '61.151402', '279.140015', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115018, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929421', 3929421, '56.888519', '60.853931', '277.569885', 338, 0, 0, 0, 1, 6, 0, 0, 392, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114746, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929423', 3929423, '74.967529', '46.674271', '133.257004', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107142, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929428', 3929428, '-79.240143', '44.199680', '141.771500', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114480, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929431', 3929431, '-49.668159', '44.146759', '101.335098', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114208, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929432', 3929432, '-5.630626', '46.383801', '88.914268', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113936, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929433', 3929433, '38.284840', '47.256828', '61.997360', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113664, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929435', 3929435, '37.766029', '44.173309', '103.105202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113392, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929438', 3929438, '33.798679', '44.230461', '150.377594', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113120, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929439', 3929439, '23.575130', '32.314270', '182.543701', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112848, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929440', 3929440, '24.704220', '32.888840', '184.801895', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112576, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929441', 3929441, '-7.156528', '28.523640', '176.836700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112304, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929442', 3929442, '8.926480', '28.079479', '213.183701', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112032, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929443', 3929443, '107.194603', '45.562160', '101.762497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111760, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929444', 3929444, '107.499802', '45.309570', '104.722702', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111488, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929445', 3929445, '96.330078', '47.994221', '51.621220', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111216, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929446', 3929446, '136.522293', '48.535961', '75.516853', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110944, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929489', 3929489, '104.234398', '46.884571', '152.330795', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110672, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929492', 3929492, '92.393311', '56.364761', '218.402298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929494', 3929494, '37.064091', '49.279091', '203.295898', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110128, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929495', 3929495, '86.381348', '47.170170', '181.353394', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109856, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929497', 3929497, '83.939819', '47.040508', '183.794907', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109584, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929498', 3929498, '91.314941', '60.775452', '256.840088', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109312, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929500', 3929500, '134.705704', '59.571301', '250.694107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109040, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929501', 3929501, '131.525299', '61.218529', '277.023590', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108768, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929502', 3929502, '200.545807', '49.630661', '148.869003', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108496, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929504', 3929504, '198.987793', '50.079350', '152.091995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108224, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929505', 3929505, '178.837997', '53.123459', '189.309799', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107952, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929506', 3929506, '181.171707', '59.001560', '223.100006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107680, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929507', 3929507, '126.924500', '58.802368', '223.399994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107408, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929728', 3929728, '57.677570', '57.037601', '-252.600006', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60392, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929730', 3929730, '16.799730', '54.286369', '-250.227097', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60120, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929731', 3929731, '21.166161', '54.789558', '-247.635101', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59848, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929733', 3929733, '-38.999229', '46.458340', '-213.513901', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59576, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929734', 3929734, '-72.817390', '45.500000', '-170.936401', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59304, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929735', 3929735, '-68.148132', '45.500000', '-172.858994', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59032, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929736', 3929736, '-70.620087', '45.500000', '-166.297607', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58760, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929737', 3929737, '-110.856796', '44.284451', '-131.487106', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58488, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929738', 3929738, '-101.976097', '45.015499', '-129.716995', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58216, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929740', 3929740, '-167.498306', '40.500000', '-61.966919', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57944, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929741', 3929741, '-167.193100', '40.500000', '-66.147888', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57672, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929742', 3929742, '-183.581406', '41.007771', '-109.056297', 383, 0, 0, 0, 1, 6, 0, 0, 640, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929746', 3929746, '80.869362', '49.270599', '7.434502', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105496, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929747', 3929747, '29.012220', '49.028271', '-3.487470', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105224, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929748', 3929748, '77.311432', '49.709980', '3.491879', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104952, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929749', 3929749, '81.834106', '54.978149', '-65.232361', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104680, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929750', 3929750, '87.083130', '55.954830', '-70.298401', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104408, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929751', 3929751, '106.034897', '57.114498', '-51.468689', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104136, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929752', 3929752, '105.891502', '62.411079', '-101.484497', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103864, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929753', 3929753, '109.310799', '62.695950', '-97.230469', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103592, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929754', 3929754, '112.249298', '64.482712', '-105.898697', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103320, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929756', 3929756, '11.047700', '51.170399', '-56.780079', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103048, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929757', 3929757, '7.333039', '50.839249', '-59.004021', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102776, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929758', 3929758, '-9.942499', '48.132980', '-25.451969', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102504, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929759', 3929759, '-5.731009', '48.580139', '-23.376751', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102232, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929761', 3929761, '-0.174012', '53.131248', '-111.148903', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101960, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929762', 3929762, '-7.256910', '48.664841', '-31.555580', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101688, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929763', 3929763, '-0.610147', '46.842758', '24.196171', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101416, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929764', 3929764, '-16.474920', '49.226559', '-89.968887', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101144, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929765', 3929765, '-27.792070', '47.072651', '8.583298', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53810, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929767', 3929767, '76.915253', '51.330029', '-32.258850', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53538, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929769', 3929769, '-43.220982', '46.402618', '25.789110', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100872, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929770', 3929770, '3.832037', '53.483231', '-114.631203', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100600, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929771', 3929771, '12.344500', '52.316029', '-102.067596', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100328, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929772', 3929772, '-38.788712', '46.775139', '22.066339', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100056, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929773', 3929773, '-37.919960', '46.459820', '29.848379', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99784, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929774', 3929774, '-80.033630', '42.496342', '35.263550', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99512, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929776', 3929776, '-91.857826', '43.085781', '-23.419170', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99240, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929777', 3929777, '-87.681976', '42.651001', '-20.729090', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98968, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929778', 3929778, '-153.286896', '41.687149', '-29.617990', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98696, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929779', 3929779, '-149.248505', '42.913052', '-34.195511', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98424, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929780', 3929780, '-146.114700', '41.510841', '-23.279819', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98152, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929781', 3929781, '-91.557831', '45.832359', '-74.574440', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97880, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929782', 3929782, '-94.882561', '46.208530', '-79.633614', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97608, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929783', 3929783, '-87.110580', '46.547352', '-86.619080', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97336, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929786', 3929786, '-96.894127', '45.010529', '-44.811169', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97064, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929787', 3929787, '-62.452171', '48.231701', '-104.740601', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96792, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929794', 3929794, '-178.942596', '43.561249', '-181.994400', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96520, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929795', 3929795, '-126.848297', '47.734409', '-169.207306', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96248, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929796', 3929796, '-194.842499', '42.180161', '-142.809296', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95976, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929800', 3929800, '-192.279007', '41.889690', '-147.600601', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95704, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929801', 3929801, '-122.087502', '48.332630', '-170.000793', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95432, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929802', 3929802, '-123.918503', '48.047798', '-161.486298', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95160, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929803', 3929803, '-229.663605', '39.878719', '-179.980194', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94888, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929804', 3929804, '-181.170395', '41.225609', '-251.667099', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94616, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929805', 3929805, '-185.351303', '41.346439', '-247.821793', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94344, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929806', 3929806, '-195.330795', '40.334259', '-258.991394', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94072, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929808', 3929808, '131.630295', '52.191109', '0.493474', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54414, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(285, 'e0053', 'bnpc3929810', 3929810, '132.709000', '52.181438', '1.958378', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55230, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(285, 'e0053', 'bnpc3929812', 3929812, '115.385597', '49.234230', '11.315280', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54686, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(285, 'e0053', 'bnpc3929813', 3929813, '117.565399', '49.175140', '13.275840', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56046, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(285, 'e0053', 'bnpc3929815', 3929815, '118.431900', '49.488010', '10.180580', 769, 0, 0, 0, 0, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56318, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(285, 'e0053', 'bnpc3929817', 3929817, '106.367798', '48.645981', '15.557140', 769, 0, 0, 0, 1, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55502, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(285, 'e0053', 'bnpc3929818', 3929818, '120.948303', '51.064060', '-0.143817', 769, 0, 0, 0, 1, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55774, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(285, 'e0053', 'bnpc3929820', 3929820, '134.218094', '51.528179', '9.775265', 769, 0, 0, 0, 1, 6, 0, 0, 367, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54958, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(285, 'e0053', 'bnpc3929826', 3929826, '-13.135430', '48.986919', '-86.472923', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93800, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929828', 3929828, '54.727501', '50.161850', '-32.944271', 341, 0, 0, 0, 1, 6, 0, 0, 401, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93528, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929829', 3929829, '64.597313', '54.990398', '-122.676598', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929831', 3929831, '66.026863', '55.127190', '-121.580200', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929832', 3929832, '64.993713', '54.756149', '-119.316101', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929834', 3929834, '-11.130180', '54.068581', '-151.851303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929835', 3929835, '19.661039', '55.244888', '-153.973495', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929836', 3929836, '18.231480', '55.455791', '-155.069901', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929838', 3929838, '-9.406013', '54.140652', '-151.402298', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929839', 3929839, '-10.487150', '54.255268', '-153.170502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929843', 3929843, '24.606649', '60.413231', '-187.828293', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929844', 3929844, '26.036209', '60.638901', '-186.731903', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929845', 3929845, '28.305441', '61.087551', '-194.048996', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929846', 3929846, '-13.216780', '58.348202', '-191.121994', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929847', 3929847, '-11.787220', '58.581120', '-190.025604', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929849', 3929849, '51.002171', '62.513901', '-171.321503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929850', 3929850, '52.431728', '62.561481', '-170.225098', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929851', 3929851, '50.250092', '61.812469', '-168.366302', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929856', 3929856, '56.742020', '62.683529', '-167.113602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929857', 3929857, '91.871223', '65.801552', '-162.567993', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929858', 3929858, '91.084763', '66.005180', '-164.451996', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88366, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929859', 3929859, '119.531303', '72.554298', '-168.638596', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929861', 3929861, '119.737503', '69.204010', '-146.898697', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929862', 3929862, '118.303101', '68.822662', '-147.997299', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929863', 3929863, '117.112900', '68.311539', '-134.325195', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929864', 3929864, '117.540199', '68.388046', '-145.037003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929873', 3929873, '118.584702', '77.068329', '-192.023804', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929874', 3929874, '119.371101', '77.166290', '-190.139801', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929875', 3929875, '96.033737', '71.784462', '-206.070999', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929876', 3929876, '147.231293', '84.770142', '-179.634399', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85918, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929878', 3929878, '131.732498', '84.239113', '-214.769608', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85646, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929879', 3929879, '129.449295', '83.200447', '-214.469604', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85374, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929880', 3929880, '117.078697', '76.359550', '-189.839798', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929886', 3929886, '-9.820036', '57.888222', '-265.562714', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929888', 3929888, '-8.463858', '57.920422', '-266.546692', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929892', 3929892, '-36.288441', '54.051159', '-264.804810', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929895', 3929895, '-37.718620', '55.539761', '-246.754105', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929896', 3929896, '-36.105400', '55.795471', '-247.488297', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929897', 3929897, '-35.805401', '55.647850', '-244.752502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929898', 3929898, '-72.558617', '52.311829', '-247.421906', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929899', 3929899, '-72.858627', '52.571899', '-250.157700', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929900', 3929900, '-74.471848', '52.134220', '-249.423401', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929902', 3929902, '-74.133102', '52.444199', '-251.412003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929903', 3929903, '-61.128719', '54.917782', '-276.469696', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929905', 3929905, '-62.202911', '55.073421', '-276.169708', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929906', 3929906, '-87.521019', '49.709011', '-267.128387', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929907', 3929907, '-103.837601', '46.340569', '-243.640900', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929908', 3929908, '-102.189697', '46.624069', '-244.434296', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929910', 3929910, '-89.931953', '49.147942', '-266.121399', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929911', 3929911, '-88.406036', '49.520420', '-265.144806', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80478, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929913', 3929913, '-94.834862', '44.620140', '-289.814606', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929914', 3929914, '-93.431030', '44.502659', '-291.523712', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929918', 3929918, '-156.328705', '41.211071', '-257.953796', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929919', 3929919, '-154.711197', '41.244331', '-258.686310', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929921', 3929921, '-122.943001', '43.252022', '-286.232788', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929922', 3929922, '-109.323997', '40.309811', '-324.737396', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929923', 3929923, '-110.727898', '40.159351', '-323.028412', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929924', 3929924, '-108.366302', '40.562851', '-322.496002', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929925', 3929925, '-68.430206', '45.267422', '-308.626495', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929926', 3929926, '-51.165970', '45.726879', '-353.049713', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929927', 3929927, '-49.648022', '45.907570', '-352.084595', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77486, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929928', 3929928, '-48.759708', '45.997150', '-354.053986', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77214, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929929', 3929929, '-54.654140', '45.340069', '-370.533600', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76942, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929930', 3929930, '-54.354141', '45.342510', '-373.142303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76670, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929931', 3929931, '-90.540337', '39.280819', '-353.994690', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76398, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929932', 3929932, '-90.840347', '39.428822', '-351.385986', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76126, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929933', 3929933, '-60.107460', '55.697620', '-260.511414', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54082, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929934', 3929934, '-164.141403', '44.110901', '-217.517303', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75860, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929935', 3929935, '-144.975998', '45.815300', '-200.640900', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75588, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929936', 3929936, '-136.644501', '45.374001', '-218.646606', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75316, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929937', 3929937, '-131.304001', '45.701130', '-214.709702', 323, 0, 0, 0, 1, 6, 0, 0, 358, 0, '0.000000', 8, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75044, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3929938', 3929938, '-66.976334', '25.431820', '-148.179199', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929940', 3929940, '-57.442081', '24.957350', '-153.725693', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929941', 3929941, '-53.170090', '26.263571', '-128.472107', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929942', 3929942, '-67.405273', '26.238400', '-132.898193', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929943', 3929943, '-55.497108', '26.236170', '-126.848297', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929944', 3929944, '-58.530079', '27.712959', '-111.586197', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929945', 3929945, '-55.685059', '24.922501', '-155.193802', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929948', 3929948, '-46.655151', '25.719770', '-144.661301', 342, 0, 0, 0, 1, 6, 0, 0, 404, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3929954', 3929954, '-58.565269', '51.362320', '-226.270996', 348, 0, 0, 0, 0, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72608, 3, 0, 0, 0, 0, 30073, 0, 0, 0), +(285, 'e0053', 'bnpc3929955', 3929955, '-56.209209', '52.730179', '-234.378098', 349, 0, 0, 0, 1, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72342, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(285, 'e0053', 'bnpc3929957', 3929957, '-64.286301', '51.072021', '-224.902802', 349, 0, 0, 0, 1, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72070, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(285, 'e0053', 'bnpc3929959', 3929959, '-60.089680', '51.823978', '-230.541000', 349, 0, 0, 0, 1, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71798, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(285, 'e0053', 'bnpc3929960', 3929960, '-64.276390', '50.332390', '-220.639801', 349, 0, 0, 0, 0, 6, 0, 0, 418, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71526, 3, 0, 0, 0, 0, 30079, 0, 0, 0), +(285, 'e0053', 'bnpc3929962', 3929962, '-63.299820', '50.321152', '-220.334595', 348, 0, 0, 0, 0, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71248, 3, 0, 0, 0, 0, 30082, 0, 0, 0), +(285, 'e0053', 'bnpc3929963', 3929963, '-66.534210', '51.498051', '-231.124802', 348, 0, 0, 0, 1, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70976, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(285, 'e0053', 'bnpc3929964', 3929964, '-71.434937', '49.349220', '-217.996902', 348, 0, 0, 0, 1, 6, 0, 0, 421, 0, '0.000000', 9, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70704, 3, 0, 0, 0, 0, 30096, 0, 0, 0), +(285, 'e0053', 'bnpc3929966', 3929966, '-57.328251', '51.480759', '-227.008499', 350, 0, 0, 0, 0, 6, 0, 0, 419, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70444, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(285, 'e0053', 'bnpc3930079', 3930079, '2.853394', '47.348751', '19.333130', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70178, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930083', 3930083, '98.893677', '51.255001', '-19.302670', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930087', 3930087, '79.819946', '55.375000', '-73.319641', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930089', 3930089, '11.367920', '50.858280', '-64.957703', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930092', 3930092, '-19.729919', '46.707760', '-29.587280', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69090, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(285, 'e0053', 'bnpc3930094', 3930094, '-25.955629', '51.285519', '-122.240097', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930097', 3930097, '-27.878300', '50.766720', '-117.967499', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68546, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930100', 3930100, '81.406860', '64.560791', '-160.418198', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68274, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930105', 3930105, '131.548004', '84.245003', '-218.036194', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68002, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930109', 3930109, '111.113503', '74.884857', '-194.245605', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67730, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930110', 3930110, '28.519039', '61.112301', '-189.013504', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67458, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930112', 3930112, '-4.593018', '58.915039', '-205.523697', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67186, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930113', 3930113, '3.555298', '56.168461', '-161.730392', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930118', 3930118, '-122.117996', '45.761719', '-79.270630', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66642, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930123', 3930123, '-118.181198', '42.313229', '-6.424072', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930124', 3930124, '-40.451721', '45.426029', '43.106689', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930125', 3930125, '-56.534729', '45.853390', '3.311157', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930127', 3930127, '-76.127258', '43.228760', '-43.289860', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65554, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930128', 3930128, '-213.427994', '39.292461', '-150.652298', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930129', 3930129, '-174.792099', '43.778080', '-200.488297', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930130', 3930130, '-178.332199', '41.714760', '-243.854507', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930132', 3930132, '-82.078308', '51.346561', '-266.498810', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930133', 3930133, '-48.081181', '54.215328', '-241.352005', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64194, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930138', 3930138, '-142.076797', '40.268429', '-293.263092', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63922, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930141', 3930141, '-140.245697', '40.848389', '-289.845215', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63650, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930143', 3930143, '-44.602112', '46.372070', '-358.907501', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63378, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930147', 3930147, '-57.785950', '46.097530', '-316.426300', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63106, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930151', 3930151, '-55.863281', '46.250000', '-314.839508', 57, 0, 0, 0, 1, 6, 0, 0, 395, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62834, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930182', 3930182, '-304.707397', '13.931440', '-297.352600', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52976, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930185', 3930185, '-317.921814', '14.511280', '-319.874908', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52704, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930186', 3930186, '-356.069305', '13.626260', '-315.358185', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52432, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930188', 3930188, '-346.212006', '15.915110', '-343.556885', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52160, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930190', 3930190, '-357.564697', '16.983240', '-350.606598', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51888, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930192', 3930192, '-365.224701', '24.277060', '-387.899597', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51616, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930193', 3930193, '-372.335388', '24.032909', '-383.108307', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51344, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930194', 3930194, '-242.989197', '12.764750', '-304.178589', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51072, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930195', 3930195, '-245.276901', '15.323140', '-347.073608', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50800, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930196', 3930196, '-241.837601', '15.504950', '-360.820190', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50528, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930197', 3930197, '-231.249405', '14.674970', '-351.945709', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50256, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930198', 3930198, '-279.758698', '23.224979', '-379.012512', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49984, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930199', 3930199, '-287.296814', '23.576111', '-386.822815', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49712, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930200', 3930200, '-300.179901', '19.009211', '-361.576294', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49440, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930203', 3930203, '-344.047791', '28.847330', '-431.588806', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49168, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930207', 3930207, '-327.870605', '22.171310', '-400.259399', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48896, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930213', 3930213, '-179.705505', '16.617029', '-403.463806', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930216', 3930216, '-146.990204', '14.297660', '-392.843506', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930219', 3930219, '-175.310898', '16.525471', '-404.928711', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930224', 3930224, '-229.388901', '22.812189', '-440.299103', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930227', 3930227, '-197.039795', '24.795860', '-452.140106', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930229', 3930229, '-216.937500', '26.810061', '-472.739807', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47270, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930231', 3930231, '-222.980103', '23.453070', '-442.618500', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46998, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930232', 3930232, '-283.527893', '22.018740', '-432.181305', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46726, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930233', 3930233, '-250.629501', '24.917971', '-481.406891', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46454, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930234', 3930234, '-223.682007', '32.577961', '-507.713501', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46182, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930235', 3930235, '-228.229202', '31.876051', '-511.985992', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45910, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930236', 3930236, '-213.031204', '32.272781', '-537.346497', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45638, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930237', 3930237, '-249.988602', '30.502741', '-572.350586', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45366, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930240', 3930240, '-252.735199', '33.310398', '-597.344971', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930241', 3930241, '-255.390305', '33.768169', '-600.732422', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930242', 3930242, '-284.290894', '30.136520', '-561.608276', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930245', 3930245, '-317.302002', '35.589191', '-591.171570', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930246', 3930246, '-321.442505', '33.511250', '-583.939514', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930247', 3930247, '-331.995605', '36.578739', '-597.355713', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930248', 3930248, '-354.800690', '33.443390', '-535.994385', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43462, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930250', 3930250, '-367.069611', '33.580250', '-493.158600', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43190, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930252', 3930252, '-374.167297', '34.022141', '-483.473907', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42918, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930253', 3930253, '-370.490387', '33.450420', '-481.198914', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42646, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930254', 3930254, '-325.906097', '27.601170', '-476.435211', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42374, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930255', 3930255, '-322.883911', '27.180950', '-472.301392', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930258', 3930258, '-323.219299', '26.630880', '-526.640625', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(285, 'e0053', 'bnpc3930270', 3930270, '-365.179810', '12.493070', '-307.350189', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41564, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930271', 3930271, '-422.502197', '12.677160', '-307.390991', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41292, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930274', 3930274, '-425.462402', '12.762100', '-310.618195', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41020, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930277', 3930277, '-222.915207', '12.294620', '-317.636810', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40748, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930278', 3930278, '-226.158997', '12.534600', '-317.995789', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40476, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930280', 3930280, '-196.398895', '12.222430', '-355.031708', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40204, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930281', 3930281, '-74.238098', '12.130030', '-410.146606', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39932, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930283', 3930283, '-21.098070', '11.319840', '-436.355804', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930284', 3930284, '-3.859158', '14.732280', '-457.622314', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930285', 3930285, '-24.365191', '12.386510', '-452.972687', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39116, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3930286', 3930286, '-6.057117', '14.506850', '-455.250793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38844, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3931787', 3931787, '-269.609711', '22.980930', '-390.658813', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3931791', 3931791, '-271.683899', '13.930550', '-319.410187', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3931792', 3931792, '-269.811615', '14.350880', '-322.618713', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3931793', 3931793, '-312.711609', '13.906600', '-302.460907', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3931795', 3931795, '-204.028397', '13.900940', '-394.735687', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3931796', 3931796, '-231.464203', '25.436769', '-471.122314', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3931798', 3931798, '-201.647995', '24.643311', '-457.297699', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3931799', 3931799, '-243.150803', '26.919580', '-525.615479', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3932161', 3932161, '-207.015305', '32.560860', '-562.758789', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3932162', 3932162, '-244.633408', '29.896629', '-566.727112', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3932164', 3932164, '-269.969910', '33.304001', '-589.321411', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3932166', 3932166, '-286.629089', '24.500669', '-532.985291', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3932167', 3932167, '-284.197998', '25.013651', '-536.186523', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3932168', 3932168, '-357.327911', '32.973610', '-562.442871', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3932170', 3932170, '-331.616302', '28.746330', '-468.081787', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3932171', 3932171, '-298.664886', '23.056339', '-406.912415', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3932173', 3932173, '-377.859802', '25.497511', '-389.074188', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3932175', 3932175, '-350.521088', '18.624069', '-355.627014', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc3932176', 3932176, '-379.679993', '13.370460', '-319.535095', 385, 0, 0, 0, 1, 6, 0, 0, 641, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4024349', 4024349, '-95.414726', '47.931198', '-199.847397', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4024350', 4024350, '-97.032097', '47.837219', '-199.084503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4024351', 4024351, '-95.109558', '48.244461', '-196.093704', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4056974', 4056974, '-10.772860', '41.723129', '131.511597', 783, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20370, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(285, 'e0053', 'bnpc4296703', 4296703, '220.339401', '103.033401', '-192.118607', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19236, 8, 0, 0, 4296693, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4296705', 4296705, '244.738297', '105.634201', '-204.802994', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18964, 8, 0, 0, 4296689, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4296707', 4296707, '249.144104', '105.712402', '-208.740204', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18692, 8, 0, 0, 4296690, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4296708', 4296708, '253.558899', '105.985802', '-214.094299', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18420, 8, 0, 0, 4296691, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4296709', 4296709, '226.015106', '103.203697', '-193.008301', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 18148, 8, 0, 0, 4296694, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4621598', 4621598, '-494.667999', '21.636040', '-302.079010', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29960, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4867876', 4867876, '28.213869', '50.827759', '-87.998840', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29486, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4867877', 4867877, '41.707401', '51.156799', '-86.539299', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29214, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4867878', 4867878, '39.668598', '51.736500', '-101.188400', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28942, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4867879', 4867879, '34.538631', '50.845268', '-83.984108', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28676, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4867880', 4867880, '24.472219', '51.118671', '-92.466171', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28404, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4867881', 4867881, '24.319870', '52.536991', '-109.234901', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28132, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4867882', 4867882, '55.329231', '53.690331', '-96.379692', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27860, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4867883', 4867883, '35.340740', '52.012718', '-113.983498', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27588, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4867884', 4867884, '20.250629', '52.350960', '-103.253700', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27316, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4867885', 4867885, '51.540489', '52.848961', '-79.500076', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27044, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4867886', 4867886, '41.456211', '51.357250', '-93.443268', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26772, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4867887', 4867887, '35.558880', '51.834862', '-105.446701', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26500, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4867888', 4867888, '23.570000', '50.670292', '-81.777740', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26228, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4867889', 4867889, '51.948132', '52.700432', '-106.025299', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25956, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4867890', 4867890, '27.729429', '51.344398', '-95.375870', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25684, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4892334', 4892334, '136.626007', '48.560169', '61.895821', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24494, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4892335', 4892335, '131.496002', '48.619511', '79.100121', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24228, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4892336', 4892336, '121.429604', '48.684132', '70.618050', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23956, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4892337', 4892337, '121.277298', '47.602539', '53.849319', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23684, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4892338', 4892338, '138.664795', '48.539879', '76.544930', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23406, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4892339', 4892339, '117.208000', '48.099979', '59.830521', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23140, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4892340', 4892340, '132.298096', '47.763882', '49.100731', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22868, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4892341', 4892341, '152.286697', '49.492531', '66.704536', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22596, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4892342', 4892342, '125.171303', '48.678471', '75.085381', 3108, 0, 0, 0, 0, 6, 0, 0, 2912, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22318, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4892343', 4892343, '120.527397', '48.525890', '81.306480', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22052, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4892344', 4892344, '148.497894', '48.561459', '83.584137', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21780, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4892345', 4892345, '148.905502', '49.877151', '57.058929', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21508, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4892346', 4892346, '124.762199', '48.546471', '67.801064', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21236, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4892347', 4892347, '132.516296', '48.171822', '57.637520', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20964, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(285, 'e0053', 'bnpc4892348', 4892348, '138.413605', '48.645409', '69.640953', 3109, 0, 0, 0, 0, 6, 0, 0, 2911, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20692, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3760882', 3760882, '7.760897', '64.944183', '95.225662', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760883', 3760883, '11.569650', '64.269142', '103.174004', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760884', 3760884, '27.212851', '64.259323', '68.436661', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121286, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760886', 3760886, '35.300129', '63.748798', '70.756027', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122102, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760887', 3760887, '29.623779', '63.785370', '72.434517', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122918, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760888', 3760888, '12.674300', '64.363640', '96.110687', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122646, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760889', 3760889, '37.375351', '64.107178', '66.758171', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122374, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760890', 3760890, '35.361160', '64.320633', '64.408279', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760896', 3760896, '20.935301', '61.990829', '147.102097', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760898', 3760898, '32.574959', '59.535831', '128.579605', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119382, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760901', 3760901, '3.688727', '65.262871', '139.257401', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119110, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760902', 3760902, '1.674536', '65.722069', '135.412201', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760911', 3760911, '66.135712', '56.046421', '111.429703', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760912', 3760912, '62.577202', '57.663799', '106.370598', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120470, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760913', 3760913, '64.103104', '57.114471', '107.652298', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760917', 3760917, '60.457890', '61.337429', '74.236450', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121830, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760922', 3760922, '96.288940', '49.550621', '73.985641', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126182, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760923', 3760923, '110.317703', '42.549389', '102.239700', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125366, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760925', 3760925, '121.477097', '40.913620', '141.046600', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125638, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760927', 3760927, '99.690933', '44.016190', '125.932701', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126998, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760933', 3760933, '86.244019', '47.554829', '160.082397', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126726, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760937', 3760937, '87.891998', '47.433571', '161.638794', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123190, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760948', 3760948, '68.406143', '53.661510', '183.326599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123462, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760950', 3760950, '62.399029', '56.000351', '191.517303', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125910, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760952', 3760952, '63.992779', '55.493610', '189.245102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124550, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760958', 3760958, '51.348160', '55.864281', '150.438599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124278, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760961', 3760961, '56.546551', '56.041698', '186.103394', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125094, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3760965', 3760965, '53.117081', '55.406071', '151.622894', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124822, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761027', 3761027, '-7.343534', '67.714622', '93.888710', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153092, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761030', 3761030, '15.512480', '63.992210', '99.894920', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152820, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761031', 3761031, '78.979568', '53.555161', '86.569473', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124006, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761032', 3761032, '80.505470', '52.852570', '87.851227', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123734, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761033', 3761033, '31.698999', '64.077950', '68.192520', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152548, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761034', 3761034, '111.202797', '42.291870', '104.620102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126454, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761035', 3761035, '112.698097', '41.971249', '105.901901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127270, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761036', 3761036, '16.824760', '63.905472', '97.575546', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152276, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761039', 3761039, '11.941870', '64.628357', '91.990753', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152004, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761041', 3761041, '54.459400', '59.806961', '102.917297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151732, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761042', 3761042, '30.722420', '63.595020', '74.784416', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151460, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761044', 3761044, '19.068230', '62.294941', '149.492599', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151188, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761045', 3761045, '22.420271', '61.734470', '145.882996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150916, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761046', 3761046, '31.079571', '59.608490', '125.924500', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150644, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761048', 3761048, '66.227257', '56.978741', '104.868301', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150372, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761049', 3761049, '81.546333', '52.845501', '84.585800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150100, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761050', 3761050, '62.755970', '60.386440', '76.019211', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149828, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761051', 3761051, '109.737900', '42.563049', '105.962898', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149556, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761052', 3761052, '98.714363', '44.085449', '129.594803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149284, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761053', 3761053, '98.425201', '49.276859', '70.598137', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149012, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761054', 3761054, '99.981613', '48.315552', '73.649940', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148740, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761080', 3761080, '100.606499', '43.794998', '128.557205', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148468, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761081', 3761081, '89.814621', '46.770222', '157.976593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148196, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761084', 3761084, '51.818901', '55.815891', '145.346603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147924, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761085', 3761085, '70.215584', '52.939968', '181.270401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147652, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761086', 3761086, '60.924660', '55.885761', '189.770996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147380, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761088', 3761088, '48.845680', '56.451950', '150.896393', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147108, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761089', 3761089, '50.420841', '56.054260', '153.244995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146836, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761096', 3761096, '199.256302', '27.059620', '91.574173', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146570, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761097', 3761097, '66.501930', '57.215820', '101.480797', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761099', 3761099, '111.690498', '36.582958', '4.053726', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146298, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761100', 3761100, '67.783684', '56.291199', '107.065697', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761102', 3761102, '156.633804', '34.653191', '70.542397', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146026, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761103', 3761103, '23.832260', '61.353020', '150.988007', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761104', 3761104, '24.717279', '61.225311', '149.156906', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761105', 3761105, '167.377899', '33.443420', '75.522820', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145754, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761108', 3761108, '124.488503', '36.345482', '15.758260', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145482, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761109', 3761109, '159.302094', '33.928551', '78.777786', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145210, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761111', 3761111, '108.955002', '36.663021', '9.387772', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144938, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761112', 3761112, '131.578506', '35.965469', '45.853310', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144666, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761123', 3761123, '237.190399', '36.611149', '66.717194', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761124', 3761124, '242.137604', '44.361130', '44.958832', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144128, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761125', 3761125, '242.718903', '43.673290', '46.873840', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143856, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761128', 3761128, '187.436096', '42.116020', '51.900459', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143584, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761129', 3761129, '223.247696', '51.849850', '26.116220', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143312, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761130', 3761130, '223.430801', '52.761440', '22.759239', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143040, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761131', 3761131, '217.449295', '51.875561', '27.520050', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142768, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761134', 3761134, '223.010498', '31.021540', '165.483994', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142496, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761135', 3761135, '227.779602', '33.454979', '203.906296', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142224, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761136', 3761136, '242.318497', '38.158321', '234.873306', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141952, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761137', 3761137, '227.626999', '34.365898', '207.232697', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141680, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761139', 3761139, '245.897202', '37.488659', '235.919693', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141408, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(287, 'e0055', 'bnpc3761141', 3761141, '195.561203', '47.715080', '226.776001', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141136, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761142', 3761142, '197.033997', '48.159161', '228.423004', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761143', 3761143, '222.161804', '50.249969', '256.272888', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761145', 3761145, '180.566803', '43.422722', '197.741592', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761146', 3761146, '181.211105', '43.103500', '194.872894', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761147', 3761147, '150.769104', '55.568981', '248.645706', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761149', 3761149, '148.855896', '56.596169', '250.553299', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761150', 3761150, '152.127594', '64.016029', '312.689392', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761151', 3761151, '154.979797', '64.179688', '314.660492', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761152', 3761152, '153.705307', '64.400146', '315.376495', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761155', 3761155, '115.122803', '68.518044', '293.763489', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761164', 3761164, '69.781052', '51.086330', '157.761703', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761169', 3761169, '97.733994', '47.043510', '88.944794', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761303', 3761303, '204.358505', '46.098690', '45.780960', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761362', 3761362, '198.245804', '51.531582', '242.749405', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3761367', 3761367, '182.543594', '41.458710', '51.590698', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761369', 3761369, '186.119797', '42.655750', '49.950859', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761370', 3761370, '285.549408', '42.548729', '57.964470', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761371', 3761371, '285.078796', '44.421532', '49.076550', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761372', 3761372, '239.723694', '36.528450', '66.898483', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761373', 3761373, '148.845200', '38.711102', '41.285278', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761374', 3761374, '152.171600', '39.307671', '41.468391', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761375', 3761375, '182.186905', '54.291470', '262.783508', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761376', 3761376, '184.506195', '55.134689', '266.109985', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761475', 3761475, '201.696899', '32.601101', '76.500427', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135684, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761552', 3761552, '150.981400', '38.858120', '42.405491', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135412, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761553', 3761553, '185.442902', '41.123051', '53.604858', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135140, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761554', 3761554, '206.775299', '43.330341', '53.446110', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134868, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761555', 3761555, '208.241592', '43.763321', '52.334370', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134596, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761556', 3761556, '239.497803', '36.005562', '68.131721', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134324, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761557', 3761557, '215.528305', '44.498230', '50.226871', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134052, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761572', 3761572, '223.339294', '51.412380', '27.733681', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133780, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761576', 3761576, '283.996399', '43.243752', '55.750099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133508, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761580', 3761580, '272.696899', '45.167171', '32.535080', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133236, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761585', 3761585, '215.465607', '53.837990', '20.867121', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132964, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761592', 3761592, '217.212097', '32.425369', '164.537994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132692, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761607', 3761607, '218.341293', '32.455891', '165.972305', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132420, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761622', 3761622, '202.532898', '37.857590', '176.104294', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132148, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761626', 3761626, '183.154007', '42.709949', '197.436401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131876, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761716', 3761716, '184.920502', '44.981480', '218.420700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131604, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761718', 3761718, '224.420395', '35.250660', '205.197601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131332, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761720', 3761720, '242.515396', '37.441879', '232.829803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131060, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761721', 3761721, '215.690094', '51.411850', '255.712601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130788, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761722', 3761722, '217.734802', '50.606812', '253.454300', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130516, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761723', 3761723, '185.971100', '54.557800', '262.936096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130244, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761726', 3761726, '152.777603', '58.215248', '280.103607', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129972, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761727', 3761727, '152.238602', '58.132370', '277.662201', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129700, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761728', 3761728, '118.327202', '67.511993', '294.840210', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129428, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761730', 3761730, '114.320396', '68.359100', '296.500885', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129156, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3761731', 3761731, '153.412399', '63.654282', '311.208801', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128884, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766328', 3766328, '444.374390', '64.694489', '-36.484081', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766391', 3766391, '446.046112', '65.017601', '-33.594650', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766399', 3766399, '453.421814', '56.259960', '-0.534113', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766401', 3766401, '455.924286', '55.802189', '3.341679', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766402', 3766402, '448.874603', '55.222351', '4.837063', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766575', 3766575, '366.619385', '51.659290', '-12.188280', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766577', 3766577, '364.147400', '52.146080', '-17.895161', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766579', 3766579, '370.878113', '59.451641', '-59.303612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766580', 3766580, '368.924988', '58.367748', '-54.695389', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766581', 3766581, '373.350098', '58.395641', '-53.596741', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766584', 3766584, '363.439606', '63.704231', '-82.801590', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766586', 3766586, '341.616302', '51.478588', '-30.833561', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766588', 3766588, '305.806000', '47.806469', '0.503501', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766589', 3766589, '308.552612', '48.569420', '-3.769025', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766591', 3766591, '409.158112', '63.702721', '-82.786118', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766592', 3766592, '412.649689', '63.919991', '-86.564484', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766596', 3766596, '450.583588', '66.468239', '-76.957558', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766603', 3766603, '394.502594', '67.135857', '-121.089203', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766604', 3766604, '391.786499', '67.793007', '-123.530602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3766605', 3766605, '395.113007', '67.180733', '-122.828697', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767081', 3767081, '473.143494', '66.440041', '-148.859894', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767082', 3767082, '437.091309', '65.055496', '-127.757103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767083', 3767083, '438.506500', '65.198730', '-126.336800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767118', 3767118, '437.011108', '65.003197', '-124.078499', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767119', 3767119, '474.052002', '66.418793', '-147.307800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767127', 3767127, '371.903290', '67.982323', '-110.760803', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3767131', 3767131, '460.464600', '68.698967', '-124.371498', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3767137', 3767137, '564.060181', '84.658661', '-310.397614', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3767139', 3767139, '425.864014', '78.873833', '-349.813110', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3767149', 3767149, '418.543213', '65.856056', '-158.386795', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767152', 3767152, '380.575195', '71.228844', '-138.534103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767155', 3767155, '353.131409', '70.227692', '-126.119904', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767158', 3767158, '355.969604', '70.540512', '-125.082298', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767160', 3767160, '354.321594', '69.995934', '-123.739502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767163', 3767163, '385.091888', '70.103569', '-139.968506', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767164', 3767164, '383.413391', '70.520859', '-137.771194', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767165', 3767165, '382.223206', '70.816437', '-140.151596', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767230', 3767230, '338.126892', '68.759033', '-132.386398', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767240', 3767240, '525.678589', '69.218857', '-235.317993', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91168, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767241', 3767241, '529.279724', '69.670998', '-238.980103', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90352, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767242', 3767242, '523.878113', '69.910103', '-240.231400', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90624, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767246', 3767246, '503.511597', '77.082458', '-297.441315', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767247', 3767247, '490.567688', '72.273407', '-273.391388', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767248', 3767248, '499.222992', '76.478897', '-297.574799', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767251', 3767251, '561.724976', '68.563721', '-232.711105', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90896, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767262', 3767262, '609.164307', '70.799339', '-269.442291', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767263', 3767263, '607.699524', '69.742554', '-262.681885', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767264', 3767264, '611.178528', '70.073822', '-266.496613', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767271', 3767271, '583.442871', '78.270691', '-293.369995', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767272', 3767272, '582.626099', '82.811012', '-321.008209', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767273', 3767273, '586.291077', '77.487671', '-291.515594', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767374', 3767374, '436.361908', '73.251167', '-304.983185', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767375', 3767375, '432.991608', '72.276894', '-303.043610', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767376', 3767376, '349.804901', '74.911560', '-321.936798', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767377', 3767377, '435.671997', '72.056473', '-300.979401', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104478, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767388', 3767388, '361.665588', '75.651962', '-325.562408', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767390', 3767390, '363.221985', '75.155243', '-322.388489', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767391', 3767391, '358.186493', '73.581299', '-315.714813', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767393', 3767393, '395.641113', '76.023048', '-328.902496', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767394', 3767394, '397.399597', '76.429916', '-332.825500', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767395', 3767395, '393.430298', '76.446228', '-331.738098', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767396', 3767396, '392.678711', '86.886810', '-395.321106', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767399', 3767399, '470.368805', '87.249977', '-348.957306', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767400', 3767400, '454.939209', '84.293327', '-350.549591', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767401', 3767401, '458.387787', '84.602448', '-346.643188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767402', 3767402, '428.051086', '76.420769', '-330.744385', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767425', 3767425, '422.176910', '67.247093', '-159.579803', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767426', 3767426, '420.543213', '66.332741', '-157.321503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767435', 3767435, '384.954498', '71.312561', '-255.829102', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767436', 3767436, '381.795898', '71.738327', '-257.517487', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767437', 3767437, '387.359314', '69.869453', '-264.137299', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767445', 3767445, '628.911987', '66.716454', '-231.728607', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767446', 3767446, '630.792603', '66.280296', '-209.603195', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767447', 3767447, '629.602417', '66.422333', '-211.983597', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767448', 3767448, '627.954529', '66.392159', '-210.335602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767449', 3767449, '632.471130', '66.334442', '-211.800507', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767450', 3767450, '630.285278', '66.806633', '-233.987000', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767455', 3767455, '662.184509', '66.885223', '-232.532303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767456', 3767456, '663.832520', '66.880669', '-235.767197', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767457', 3767457, '660.994324', '67.126022', '-234.912704', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767458', 3767458, '679.883301', '64.783623', '-225.588394', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767462', 3767462, '683.051575', '64.449142', '-221.445694', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767463', 3767463, '686.133911', '64.440773', '-225.077301', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767464', 3767464, '682.532776', '64.535759', '-223.856598', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767465', 3767465, '680.213379', '64.599297', '-222.178101', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767466', 3767466, '644.667419', '61.202068', '-179.041107', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98228, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767467', 3767467, '646.345825', '61.561089', '-181.268906', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767468', 3767468, '625.297607', '63.148769', '-175.494003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767469', 3767469, '624.534729', '62.919571', '-173.449295', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767472', 3767472, '612.920227', '62.437519', '-154.581299', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97140, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767473', 3767473, '618.413513', '60.995640', '-154.157501', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96868, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767474', 3767474, '611.729980', '62.836342', '-156.961700', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96596, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767475', 3767475, '610.081970', '62.919849', '-155.313705', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96324, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767480', 3767480, '599.736572', '66.081619', '-200.660995', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96052, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767481', 3767481, '603.400085', '66.248016', '-212.652893', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95780, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767482', 3767482, '600.591125', '66.117447', '-203.224594', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767487', 3767487, '582.119629', '63.525211', '-162.909500', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767488', 3767488, '583.554016', '63.640011', '-161.566696', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767504', 3767504, '384.336212', '81.769058', '-374.104706', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767505', 3767505, '386.960785', '82.047218', '-374.979614', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92250, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767508', 3767508, '420.230408', '83.041237', '-377.818695', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91978, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767509', 3767509, '416.202087', '83.456848', '-380.199188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91706, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767510', 3767510, '414.218414', '82.361076', '-374.217590', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91434, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767538', 3767538, '559.649475', '74.212418', '-273.297485', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90080, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767539', 3767539, '565.844971', '73.504051', '-271.077698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89808, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767541', 3767541, '530.575989', '78.841171', '-292.050598', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89536, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767542', 3767542, '536.018616', '73.912933', '-270.240601', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89264, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767543', 3767543, '527.257324', '78.277519', '-291.082397', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88992, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767550', 3767550, '559.405579', '68.352837', '-230.727402', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88720, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767551', 3767551, '504.920990', '71.617661', '-255.737900', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88448, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767552', 3767552, '562.426697', '74.626442', '-275.098114', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88176, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767553', 3767553, '515.106079', '86.958946', '-357.724792', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87886, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767554', 3767554, '555.815430', '86.288918', '-333.674286', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87614, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767555', 3767555, '550.172974', '86.038811', '-337.105713', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87342, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767556', 3767556, '556.703918', '86.005051', '-341.164612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87070, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767558', 3767558, '595.652222', '100.886101', '-481.113007', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86798, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767559', 3767559, '565.758728', '90.501213', '-411.795288', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767560', 3767560, '593.128418', '99.817238', '-476.295013', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767561', 3767561, '597.171326', '86.616676', '-366.082886', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767562', 3767562, '592.898621', '86.573059', '-364.752991', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767565', 3767565, '659.080383', '68.157593', '-282.327087', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767566', 3767566, '655.601379', '67.872910', '-278.542786', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767568', 3767568, '696.297791', '66.817932', '-301.967896', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767583', 3767583, '629.275208', '76.769440', '-316.382690', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84622, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767584', 3767584, '635.718506', '76.129578', '-319.129303', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84350, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767675', 3767675, '637.937683', '75.470261', '-314.178314', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84078, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767694', 3767694, '274.187408', '73.498833', '-235.511505', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767702', 3767702, '282.131287', '73.968918', '-250.520294', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767704', 3767704, '283.459686', '74.239098', '-252.146103', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767705', 3767705, '285.161987', '73.984657', '-268.017487', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767706', 3767706, '277.286194', '74.210907', '-280.408813', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767707', 3767707, '277.586212', '74.130417', '-281.519714', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767709', 3767709, '268.511505', '73.750023', '-310.081207', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767710', 3767710, '290.727997', '75.783447', '-320.191986', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767711', 3767711, '291.566193', '75.961906', '-321.088593', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767712', 3767712, '240.649994', '74.570793', '-328.847198', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767715', 3767715, '221.796799', '75.280907', '-305.122711', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767716', 3767716, '234.573196', '72.438171', '-271.531403', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767717', 3767717, '235.577301', '72.991150', '-274.815186', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767721', 3767721, '341.847809', '47.013062', '1.602173', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80300, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767722', 3767722, '413.717804', '55.405399', '-18.570250', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80028, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767725', 3767725, '414.877411', '56.473511', '-20.889650', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79756, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767729', 3767729, '340.932404', '58.884521', '-68.986153', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767730', 3767730, '349.904510', '70.939087', '-141.039200', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767735', 3767735, '351.399994', '71.122192', '-139.177597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767772', 3767772, '385.992096', '79.489769', '-359.438690', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767779', 3767779, '406.035400', '88.015427', '-400.377411', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767782', 3767782, '403.608612', '88.645103', '-402.194885', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767814', 3767814, '635.174072', '71.616203', '-284.468597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767845', 3767845, '633.182922', '72.289650', '-286.197998', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767846', 3767846, '635.372375', '67.114166', '-231.371002', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767853', 3767853, '622.306885', '64.499603', '-174.464905', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767854', 3767854, '645.827026', '60.818569', '-177.759293', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767857', 3767857, '725.192871', '64.427238', '-240.193405', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767859', 3767859, '617.085510', '62.126339', '-147.285202', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767860', 3767860, '673.612427', '64.732903', '-189.639206', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767863', 3767863, '676.003723', '64.536713', '-188.308105', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767872', 3767872, '678.086914', '64.518532', '-207.618896', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767901', 3767901, '653.968079', '78.578423', '-360.327515', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767906', 3767906, '656.550293', '77.457336', '-356.077393', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767907', 3767907, '657.869080', '77.894173', '-358.050293', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3767910', 3767910, '590.645020', '90.549652', '-389.681702', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3768115', 3768115, '530.515381', '91.184883', '-383.319305', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3768118', 3768118, '533.323120', '90.657288', '-380.765015', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3768152', 3768152, '508.880707', '96.069290', '-437.340302', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71342, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(287, 'e0055', 'bnpc3768153', 3768153, '519.773071', '96.615059', '-445.083588', 752, 0, 0, 0, 0, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71608, 3, 0, 0, 0, 16, 30059, 0, 0, 0), +(287, 'e0055', 'bnpc3768154', 3768154, '523.339417', '94.818977', '-429.381287', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72962, 3, 0, 0, 0, 16, 30063, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(287, 'e0055', 'bnpc3768156', 3768156, '535.457581', '96.545937', '-468.044800', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72690, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(287, 'e0055', 'bnpc3768157', 3768157, '520.360107', '95.886787', '-460.180389', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72424, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(287, 'e0055', 'bnpc3768158', 3768158, '535.493225', '94.402260', '-439.778015', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70526, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(287, 'e0055', 'bnpc3768159', 3768159, '502.875793', '97.415413', '-416.738495', 754, 0, 0, 0, 0, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73234, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(287, 'e0055', 'bnpc3768160', 3768160, '521.578979', '94.382271', '-413.852905', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72152, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(287, 'e0055', 'bnpc3768161', 3768161, '509.317200', '94.366043', '-398.691711', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71070, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(287, 'e0055', 'bnpc3768165', 3768165, '517.667175', '95.947739', '-463.471588', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73506, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(287, 'e0055', 'bnpc3768166', 3768166, '501.819092', '97.276329', '-413.591797', 751, 0, 0, 0, 0, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70798, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(287, 'e0055', 'bnpc3768167', 3768167, '534.916016', '94.227654', '-435.617798', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71880, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(287, 'e0055', 'bnpc3873220', 3873220, '-19.011200', '59.577240', '478.601715', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68768, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873222', 3873222, '-57.635151', '54.398960', '509.264313', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68496, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873223', 3873223, '-72.043533', '60.186852', '494.941803', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68224, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873226', 3873226, '-82.569511', '59.009541', '500.667694', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67952, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873227', 3873227, '-85.215538', '58.176079', '495.797913', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67680, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873232', 3873232, '-26.285730', '45.126209', '554.549622', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67408, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873233', 3873233, '-80.450127', '53.830681', '543.885925', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67136, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873235', 3873235, '-77.768517', '54.979061', '539.636902', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66864, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873237', 3873237, '-49.665508', '40.839931', '590.425781', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66592, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873238', 3873238, '-51.547249', '40.978630', '596.975098', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66320, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873240', 3873240, '-56.989220', '40.385479', '595.949585', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66048, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873243', 3873243, '73.494881', '48.720230', '629.534424', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65776, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873244', 3873244, '83.244293', '50.021931', '641.594727', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65504, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873246', 3873246, '77.347931', '48.172680', '641.229797', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65232, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873247', 3873247, '77.649078', '56.774830', '716.941528', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64960, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873249', 3873249, '79.648613', '56.806110', '720.165710', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64688, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873250', 3873250, '52.669842', '55.384899', '724.728516', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873255', 3873255, '48.538898', '36.148571', '656.885620', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64144, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873256', 3873256, '46.513409', '36.839489', '684.859314', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63872, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873257', 3873257, '41.888302', '35.921108', '686.955078', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63600, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873265', 3873265, '34.495090', '45.667789', '819.153381', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63328, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873271', 3873271, '-18.570280', '43.203621', '763.671082', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63056, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873272', 3873272, '-24.521290', '43.172451', '761.992676', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62784, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873275', 3873275, '37.190269', '46.111851', '822.446777', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62512, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873324', 3873324, '79.270752', '49.720821', '871.732483', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62240, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873328', 3873328, '31.098160', '46.232330', '851.456421', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61968, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873329', 3873329, '-90.470787', '8.590782', '680.567627', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61702, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873330', 3873330, '-224.494995', '-0.300003', '686.536377', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61430, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873331', 3873331, '-215.466797', '-0.252817', '694.899719', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61158, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873332', 3873332, '-120.012199', '3.585823', '702.235413', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60886, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873333', 3873333, '-207.511307', '-0.292601', '666.813293', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60614, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873334', 3873334, '-171.158203', '-0.710317', '738.778076', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60342, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873335', 3873335, '-132.077698', '0.394896', '752.015930', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60070, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873336', 3873336, '-122.561096', '0.570598', '756.478577', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59798, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873337', 3873337, '-78.064957', '2.435715', '762.539001', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59526, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873339', 3873339, '-81.966408', '2.959849', '802.456604', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59254, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873340', 3873340, '-17.237820', '8.762830', '808.010925', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58982, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873343', 3873343, '91.020012', '21.945419', '806.005371', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58710, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873345', 3873345, '127.519600', '23.025820', '809.445313', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58438, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873348', 3873348, '121.338402', '24.555710', '817.927795', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58166, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873353', 3873353, '213.397400', '25.314671', '805.691528', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57894, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873359', 3873359, '80.472221', '24.632441', '756.982178', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57622, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873362', 3873362, '24.652531', '14.575950', '784.440430', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57350, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873363', 3873363, '139.838699', '21.711720', '778.939575', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57078, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(287, 'e0055', 'bnpc3873367', 3873367, '251.139801', '6.797970', '788.702271', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873368', 3873368, '253.283096', '6.540766', '787.524292', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873369', 3873369, '254.565994', '6.283995', '780.385681', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873371', 3873371, '246.057800', '9.008336', '801.580994', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873374', 3873374, '248.002304', '6.721136', '783.831970', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873375', 3873375, '248.302399', '6.265314', '767.472473', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873376', 3873376, '246.801407', '6.267453', '768.374390', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873379', 3873379, '-3.098505', '41.687851', '623.973083', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54914, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873381', 3873381, '-0.691058', '42.488289', '627.270020', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873382', 3873382, '-6.383020', '41.661289', '631.828674', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873385', 3873385, '-12.702990', '41.812180', '707.756409', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873386', 3873386, '-10.462590', '41.960880', '705.075378', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873387', 3873387, '-52.108768', '38.325489', '665.766113', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873388', 3873388, '-55.987579', '36.343479', '670.810486', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873389', 3873389, '-59.405991', '38.476730', '658.650818', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53010, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873390', 3873390, '-59.105999', '36.026340', '668.374023', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52738, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873396', 3873396, '-160.952896', '1.569027', '667.861206', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48398, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(287, 'e0055', 'bnpc3873398', 3873398, '-161.990494', '1.669328', '666.421692', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48126, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(287, 'e0055', 'bnpc3873399', 3873399, '-150.636902', '5.134464', '653.424011', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47854, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(287, 'e0055', 'bnpc3873401', 3873401, '-144.836700', '4.701064', '665.153870', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47582, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(287, 'e0055', 'bnpc3873402', 3873402, '-149.620605', '3.102985', '669.616089', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47310, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(287, 'e0055', 'bnpc3873403', 3873403, '-155.732605', '1.144920', '679.460327', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47038, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(287, 'e0055', 'bnpc3873404', 3873404, '-142.607895', '1.054965', '712.663025', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46766, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(287, 'e0055', 'bnpc3873405', 3873405, '-148.567505', '0.750069', '714.199524', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46494, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(287, 'e0055', 'bnpc3873406', 3873406, '-149.139404', '0.759766', '712.362000', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46222, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(287, 'e0055', 'bnpc3873420', 3873420, '-59.783230', '40.755260', '572.130127', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873421', 3873421, '-58.553791', '40.657639', '574.646973', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873422', 3873422, '-25.335461', '55.583641', '513.424194', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873425', 3873425, '142.979706', '22.710770', '829.297302', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51656, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873426', 3873426, '220.695999', '20.348419', '790.027283', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51384, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873427', 3873427, '69.222389', '20.622999', '778.105286', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51112, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873428', 3873428, '70.471992', '21.233120', '776.341980', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50840, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873430', 3873430, '66.086601', '57.020870', '725.806213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50568, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873431', 3873431, '79.195717', '52.007320', '685.675415', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50296, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873432', 3873432, '79.268204', '51.686298', '683.238892', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50024, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873433', 3873433, '-129.812698', '8.744282', '655.901672', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873434', 3873434, '-127.513100', '8.619234', '660.065491', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873435', 3873435, '-70.867996', '3.471146', '805.643616', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873461', 3873461, '18.223940', '44.911652', '832.339600', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc3873463', 3873463, '129.763306', '48.053009', '868.938477', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48664, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc4057136', 4057136, '-29.171040', '70.937523', '112.141998', 784, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23136, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(287, 'e0055', 'bnpc4057153', 4057153, '-33.309830', '59.142609', '456.249786', 785, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22870, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(287, 'e0055', 'bnpc4057178', 4057178, '-0.370673', '36.202759', '591.413818', 786, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22604, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(287, 'e0055', 'bnpc4057204', 4057204, '126.070801', '23.201380', '735.619629', 788, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22338, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(287, 'e0055', 'bnpc4510193', 4510193, '600.272400', '61.718521', '-115.521301', 787, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22072, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(287, 'e0055', 'bnpc4621602', 4621602, '205.951904', '73.024078', '-291.708496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26712, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc4867727', 4867727, '-103.902603', '2.225230', '731.826416', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26326, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc4867728', 4867728, '-115.780197', '1.850056', '725.665710', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26054, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc4867729', 4867729, '-96.687714', '2.097239', '744.887817', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25782, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc4867730', 4867730, '-98.053673', '1.671072', '759.716797', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25510, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(287, 'e0055', 'bnpc4867731', 4867731, '-109.169701', '1.535632', '746.508301', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23746, 8, 0, 0, 0, 0, 0, 4867752, 0, 0), +(287, 'e0055', 'bnpc4867733', 4867733, '-113.730499', '0.984999', '755.556274', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24018, 8, 0, 0, 0, 0, 0, 4867753, 0, 0), +(287, 'e0055', 'bnpc4867735', 4867735, '-122.788597', '0.819352', '748.165283', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25244, 8, 0, 0, 0, 0, 0, 4867761, 0, 0), +(287, 'e0055', 'bnpc4867736', 4867736, '-111.623299', '1.689789', '738.438904', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24972, 8, 0, 0, 0, 0, 0, 4867748, 0, 0), +(287, 'e0055', 'bnpc4867737', 4867737, '-123.906197', '0.960864', '734.838501', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23474, 8, 0, 0, 0, 0, 0, 4867754, 0, 0), +(289, 'e0057', 'bnpc1136062', 1136062, '-505.795593', '9.752348', '104.621803', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205580, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136063', 1136063, '-515.044922', '11.400910', '112.794899', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205308, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136064', 1136064, '-501.586090', '9.603134', '109.964401', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205036, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136065', 1136065, '-475.682312', '6.895020', '108.614403', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204764, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136067', 1136067, '-478.398712', '7.440553', '105.715897', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204492, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136074', 1136074, '-391.806000', '9.109558', '308.461090', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186842, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc1136075', 1136075, '-414.835693', '4.099017', '268.726593', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136076', 1136076, '-390.326385', '4.860912', '278.225494', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136077', 1136077, '-430.838715', '8.406867', '277.241089', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136078', 1136078, '-459.421692', '5.690572', '240.230301', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136079', 1136079, '-450.953796', '11.975280', '268.649994', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136080', 1136080, '-390.585205', '9.262146', '310.566895', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187114, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc1136081', 1136081, '-461.788513', '5.891314', '238.861206', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136082', 1136082, '-473.594299', '10.086170', '246.936707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136085', 1136085, '-435.743011', '1.967827', '88.564453', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202328, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1136086', 1136086, '-390.760986', '0.834163', '111.607300', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202056, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1136087', 1136087, '-418.825409', '0.336109', '91.913406', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201784, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1136089', 1136089, '-414.658203', '0.079596', '95.602753', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201512, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1136091', 1136091, '-415.322693', '-0.226261', '151.930603', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201240, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1136092', 1136092, '-421.841888', '0.864481', '141.020401', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200968, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1136093', 1136093, '-381.670593', '0.762653', '137.407394', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200696, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1136094', 1136094, '-430.745300', '0.804663', '164.744202', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200424, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1136097', 1136097, '-431.509888', '2.089151', '233.463394', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136098', 1136098, '-446.728088', '0.504031', '188.779205', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136099', 1136099, '-432.335907', '1.523763', '185.544998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136100', 1136100, '-400.007599', '-0.063123', '184.140106', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136101', 1136101, '-403.100311', '-0.089608', '188.898804', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136102', 1136102, '-360.642303', '0.164527', '231.393402', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136103', 1136103, '-384.551605', '0.763345', '233.278397', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136104', 1136104, '-386.850494', '0.112991', '227.897705', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136130', 1136130, '-325.468597', '10.213140', '333.038086', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136131', 1136131, '-242.241394', '-5.472987', '226.931595', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136132', 1136132, '-328.277710', '4.935143', '305.884399', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136134', 1136134, '-321.859711', '9.391951', '328.320587', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136136', 1136136, '-268.451996', '-2.822966', '243.274506', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136137', 1136137, '-184.086700', '-8.314297', '238.537598', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136139', 1136139, '-95.525383', '-7.421386', '293.721008', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136140', 1136140, '-126.314003', '-8.479818', '267.845093', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136141', 1136141, '-103.592903', '-7.979246', '256.096588', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136142', 1136142, '-128.252106', '-6.729275', '293.324097', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136143', 1136143, '-124.302597', '-8.155410', '276.504700', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136158', 1136158, '-113.634003', '-4.072056', '313.771210', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136161', 1136161, '-133.257095', '-0.167896', '343.312714', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163548, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1136162', 1136162, '-92.474274', '0.803288', '352.180786', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163820, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1136163', 1136163, '-74.857803', '4.447460', '383.016602', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136164', 1136164, '-32.537300', '7.616392', '412.410797', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136165', 1136165, '-64.080299', '11.043260', '430.339905', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136167', 1136167, '-5.813734', '2.975462', '373.769714', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136168', 1136168, '37.950851', '7.949909', '464.214691', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136170', 1136170, '78.733383', '6.701904', '382.834015', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158676, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136172', 1136172, '-27.413450', '-5.802525', '309.247986', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136173', 1136173, '4.164327', '-4.588222', '319.364899', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136174', 1136174, '-5.613925', '-6.047291', '306.725403', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136175', 1136175, '-60.686939', '-2.369054', '328.478394', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136177', 1136177, '-22.903839', '-5.355963', '311.696014', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136178', 1136178, '-138.536697', '-2.761930', '180.468399', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1136179', 1136179, '-156.542297', '2.639764', '135.026993', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1136180', 1136180, '-150.621796', '2.365101', '138.292496', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1136182', 1136182, '-172.930496', '-0.839293', '164.965195', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1136190', 1136190, '-288.410797', '11.764660', '-25.711500', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146696, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136191', 1136191, '-269.916901', '12.741240', '-45.975479', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139388, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136192', 1136192, '-305.683990', '11.673100', '-35.629860', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139116, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136194', 1136194, '-253.040405', '11.428960', '-3.524881', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136196', 1136196, '-216.479797', '5.813640', '85.984543', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148316, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1136197', 1136197, '-296.681213', '8.743372', '66.361427', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147772, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1136198', 1136198, '-280.833405', '6.822407', '95.059250', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148044, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1136224', 1136224, '68.558739', '11.184820', '-24.826481', 762, 0, 0, 0, 0, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119934, 2, 0, 0, 0, 0, 30122, 0, 0, 0), +(289, 'e0057', 'bnpc1136225', 1136225, '69.687866', '11.001710', '-24.643370', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118308, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(289, 'e0057', 'bnpc1136228', 1136228, '333.638397', '-4.043701', '-37.918701', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116138, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc1136229', 1136229, '349.049408', '-2.892388', '-51.221401', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116410, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc1136230', 1136230, '507.865997', '-11.795270', '4.501364', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136231', 1136231, '537.636780', '-12.274270', '-13.554320', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136232', 1136232, '536.101196', '-12.090500', '-2.388316', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136233', 1136233, '530.091492', '-12.161830', '-4.477412', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136234', 1136234, '514.392822', '-12.155740', '-30.914129', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1136235', 1136235, '594.192078', '-12.117190', '-6.794415', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1162438', 1162438, '234.721100', '4.423762', '180.467896', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1162439', 1162439, '236.722900', '4.611117', '188.587906', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1162445', 1162445, '199.757599', '6.240894', '156.164093', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130156, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1162451', 1162451, '252.094193', '0.076233', '155.870804', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126994, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1162452', 1162452, '286.884094', '0.589654', '176.855103', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127538, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1162453', 1162453, '298.563293', '-0.085100', '171.096207', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127266, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1162458', 1162458, '203.268799', '1.655764', '106.938103', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126722, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1162460', 1162460, '243.554703', '-3.339902', '84.717239', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126178, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1162461', 1162461, '279.461212', '-4.218416', '42.329281', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129884, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1162462', 1162462, '294.178589', '-5.478088', '38.284790', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129612, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1162463', 1162463, '301.736115', '-5.423965', '50.006149', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125018, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1162467', 1162467, '241.840195', '-1.764643', '99.107300', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126450, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1162469', 1162469, '274.593109', '-5.942087', '11.604580', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124746, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1162472', 1162472, '227.649307', '-3.036592', '-15.976240', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129340, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1162476', 1162476, '220.935303', '-2.975586', '-22.720699', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129068, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1162477', 1162477, '207.324203', '-4.013123', '-42.343868', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125834, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc1162479', 1162479, '154.222900', '0.015198', '7.949890', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120206, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc1162480', 1162480, '176.019806', '-4.055645', '-3.018583', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117492, 2, 0, 0, 0, 0, 30120, 0, 0, 0), +(289, 'e0057', 'bnpc1162481', 1162481, '178.942505', '-0.503601', '60.196781', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115594, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc1162482', 1162482, '181.322906', '-0.473083', '58.762451', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120478, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc1162483', 1162483, '356.642700', '-2.987466', '-35.734451', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121566, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc1162484', 1162484, '333.913086', '-4.135254', '-40.177059', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118580, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc1162486', 1162486, '111.986000', '6.118835', '-40.909481', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119124, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc1162487', 1162487, '74.814934', '10.482900', '-18.448200', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115866, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc1162490', 1162490, '-9.318063', '19.332541', '-19.108101', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120750, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc1162492', 1162492, '-20.523430', '17.990339', '11.642590', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119396, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1185226', 1185226, '256.488800', '-24.255501', '-358.053009', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68326, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186102', 1186102, '185.839600', '-21.471359', '-442.130188', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68054, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186104', 1186104, '139.593506', '-25.435749', '-371.665588', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186105', 1186105, '133.317993', '-24.199471', '-327.840088', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186106', 1186106, '85.221588', '-28.236040', '-263.782715', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45418, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(289, 'e0057', 'bnpc1186107', 1186107, '112.138496', '-30.215771', '-200.427307', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186108', 1186108, '171.129898', '-31.077660', '-212.573502', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44874, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186113', 1186113, '269.977814', '-10.584900', '-100.442299', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73786, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186119', 1186119, '301.000702', '-14.170150', '-179.921906', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186121', 1186121, '299.316498', '-13.980780', '-177.154099', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72426, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186122', 1186122, '210.285797', '-6.827882', '-189.363602', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76258, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186126', 1186126, '195.813797', '-6.409023', '-148.998001', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77074, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186127', 1186127, '198.768997', '-5.217091', '-147.382904', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76802, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186128', 1186128, '264.066498', '-11.720200', '-141.711304', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72970, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186130', 1186130, '255.084595', '-10.365080', '-135.648193', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72698, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186131', 1186131, '262.121887', '-11.356690', '-170.924500', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74880, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186134', 1186134, '257.526489', '-11.230880', '-163.622498', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75152, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186135', 1186135, '289.600891', '-14.023210', '-132.829803', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186142', 1186142, '321.177094', '-17.145399', '-141.817795', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75424, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186146', 1186146, '357.922394', '-18.371901', '-147.675705', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72154, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186157', 1186157, '339.864105', '-20.256371', '-163.073196', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75986, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186160', 1186160, '325.512207', '-18.022200', '-210.406693', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186163', 1186163, '334.967590', '-18.257030', '-188.068497', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186165', 1186165, '357.646301', '-21.037640', '-172.919998', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186166', 1186166, '355.845795', '-21.195030', '-175.910797', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186167', 1186167, '354.167297', '-20.996559', '-172.828506', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186168', 1186168, '327.501495', '-18.763630', '-170.766296', 16, 0, 0, 0, 1, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186169', 1186169, '357.691193', '-18.922649', '-152.895798', 16, 0, 0, 0, 1, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186173', 1186173, '362.066711', '-19.066210', '-226.023697', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186174', 1186174, '367.605011', '-19.394260', '-223.926193', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69736, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1186185', 1186185, '432.333801', '-18.556009', '-200.427307', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335118', 1335118, '259.814606', '-9.041327', '-75.930794', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82388, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335120', 1335120, '258.747192', '-9.339743', '-77.470100', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335121', 1335121, '271.628510', '-12.409580', '-119.495102', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335122', 1335122, '268.973389', '-11.585720', '-119.678200', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335125', 1335125, '299.467896', '-15.161890', '-151.066498', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335126', 1335126, '300.071503', '-15.260950', '-157.970398', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335127', 1335127, '305.104095', '-16.013350', '-153.873703', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80762, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335128', 1335128, '362.569489', '-19.896090', '-195.239197', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335129', 1335129, '359.914490', '-20.141609', '-198.291000', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335131', 1335131, '376.912994', '-17.746290', '-239.673492', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79940, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335132', 1335132, '378.265808', '-17.184210', '-245.818802', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79668, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335133', 1335133, '373.817291', '-17.567560', '-244.927200', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79396, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335135', 1335135, '382.244812', '-18.581270', '-213.006607', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335136', 1335136, '384.289612', '-18.812380', '-216.180496', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78852, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335137', 1335137, '365.346710', '-17.380070', '-235.889297', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78586, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335142', 1335142, '325.117188', '-17.441219', '-261.926086', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335147', 1335147, '382.083588', '-15.505330', '-274.037415', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335148', 1335148, '379.490387', '-15.238400', '-273.274506', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335150', 1335150, '393.739594', '-17.082621', '-246.185501', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335151', 1335151, '395.540100', '-17.610670', '-243.194702', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73242, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335152', 1335152, '374.262207', '-16.275169', '-255.869507', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74058, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335154', 1335154, '445.548096', '-18.953011', '-239.643005', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75714, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335155', 1335155, '410.055603', '-15.113950', '-262.409393', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335156', 1335156, '409.262085', '-14.690550', '-264.759308', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335171', 1335171, '283.910095', '-19.542110', '-281.001801', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335172', 1335172, '309.847809', '-19.112881', '-260.545685', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49406, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335179', 1335179, '308.749512', '-18.382240', '-278.268188', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335180', 1335180, '305.850189', '-18.505501', '-275.399506', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335181', 1335181, '287.464691', '-20.370840', '-267.414398', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335182', 1335182, '221.773499', '-20.304710', '-402.104889', 73, 0, 0, 0, 1, 6, 0, 0, 70, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335186', 1335186, '260.100708', '-22.595980', '-282.093597', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335187', 1335187, '257.170898', '-22.925730', '-282.856506', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335188', 1335188, '258.178009', '-22.527321', '-280.506592', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335189', 1335189, '259.124115', '-22.919470', '-284.351898', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335191', 1335191, '252.674103', '-25.158079', '-319.881500', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55650, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335245', 1335245, '264.071289', '-23.086901', '-377.431885', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335247', 1335247, '251.044693', '-24.157169', '-429.172791', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56484, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335250', 1335250, '213.636093', '-21.692980', '-416.299286', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335254', 1335254, '250.182205', '-23.049110', '-398.827515', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335255', 1335255, '235.164795', '-22.033070', '-382.140289', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51310, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335257', 1335257, '250.975601', '-23.342621', '-395.073792', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335258', 1335258, '233.840302', '-22.782070', '-408.640991', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335259', 1335259, '228.651703', '-20.932440', '-399.771088', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335260', 1335260, '285.551605', '-20.191130', '-266.194702', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335261', 1335261, '233.309006', '-22.290220', '-403.706696', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335262', 1335262, '226.586807', '-21.579840', '-408.344208', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335263', 1335263, '251.797501', '-24.329281', '-417.166504', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335265', 1335265, '239.352707', '-23.325970', '-417.493805', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335266', 1335266, '234.393204', '-23.440660', '-419.117004', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335269', 1335269, '208.094101', '-20.046240', '-400.359314', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335270', 1335270, '205.635300', '-20.583099', '-405.028595', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335271', 1335271, '214.649200', '-21.421610', '-437.417206', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335272', 1335272, '220.603699', '-19.557770', '-394.169189', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335273', 1335273, '237.537292', '-23.111750', '-434.553314', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335274', 1335274, '201.154007', '-21.053610', '-424.056702', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335275', 1335275, '199.896194', '-21.481091', '-433.825592', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64542, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335276', 1335276, '199.035995', '-21.532829', '-428.054504', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335277', 1335277, '204.574905', '-21.963341', '-430.374695', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335278', 1335278, '203.919998', '-21.381781', '-436.120514', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335279', 1335279, '158.464905', '-25.742020', '-514.580017', 78, 0, 0, 0, 0, 6, 0, 0, 75, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63864, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335280', 1335280, '156.163498', '-25.174259', '-507.993713', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335281', 1335281, '162.755295', '-25.392191', '-508.512512', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335282', 1335282, '160.374893', '-26.243521', '-521.635315', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53064, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335283', 1335283, '153.783005', '-25.787460', '-521.116516', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53880, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335284', 1335284, '164.681107', '-23.516750', '-451.796112', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335287', 1335287, '161.309204', '-24.113899', '-454.393097', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335290', 1335290, '178.249100', '-21.930130', '-465.361603', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335294', 1335294, '176.568298', '-23.836981', '-493.324188', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335295', 1335295, '175.158295', '-24.210711', '-495.597809', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335298', 1335298, '146.524597', '-23.827370', '-466.589294', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49678, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335299', 1335299, '136.972305', '-23.003241', '-490.722107', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335310', 1335310, '139.252106', '-23.121799', '-488.640411', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335313', 1335313, '169.940796', '-26.606640', '-538.220520', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335317', 1335317, '176.719406', '-26.248819', '-529.080017', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335318', 1335318, '175.681793', '-26.337879', '-531.124695', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57300, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335326', 1335326, '135.813904', '-23.796021', '-507.744904', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57572, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335327', 1335327, '143.479095', '-24.673691', '-543.979187', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56756, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335328', 1335328, '142.868698', '-24.722940', '-547.854980', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55940, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335329', 1335329, '145.279694', '-25.150471', '-548.343323', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56212, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335330', 1335330, '167.576401', '-23.605841', '-478.499115', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335331', 1335331, '172.550903', '-23.232599', '-481.184692', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335332', 1335332, '136.520096', '-23.013941', '-481.370514', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60310, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335333', 1335333, '170.445099', '-23.299061', '-477.888702', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1335344', 1335344, '163.126495', '-26.834591', '-547.864319', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347955', 1347955, '185.057404', '-22.517530', '-393.153900', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347956', 1347956, '186.735901', '-22.314060', '-389.308685', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63170, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347958', 1347958, '180.601807', '-22.849991', '-388.088013', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62904, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347959', 1347959, '182.982193', '-22.808430', '-387.447113', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347960', 1347960, '181.853104', '-22.416210', '-391.109192', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347961', 1347961, '163.818802', '-23.941280', '-382.930786', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347964', 1347964, '136.015106', '-25.067890', '-394.922394', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347965', 1347965, '135.952805', '-25.463390', '-380.858490', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347966', 1347966, '159.892807', '-23.691389', '-387.543396', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347967', 1347967, '134.539597', '-25.153410', '-393.304901', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347968', 1347968, '148.660599', '-24.933149', '-382.747192', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62082, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347969', 1347969, '149.210007', '-24.847401', '-385.554901', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347970', 1347970, '145.273102', '-24.985941', '-383.815399', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61544, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347971', 1347971, '146.677002', '-25.017750', '-386.012695', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61278, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347974', 1347974, '119.340797', '-26.901699', '-370.321198', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347976', 1347976, '110.948303', '-27.082211', '-355.214813', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44626, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347977', 1347977, '116.650902', '-26.851940', '-355.502686', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347979', 1347979, '115.985397', '-25.590910', '-330.770813', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347980', 1347980, '96.825470', '-26.731310', '-337.443909', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347981', 1347981, '94.966377', '-26.840120', '-343.493591', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347982', 1347982, '112.341904', '-27.148821', '-352.201202', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347984', 1347984, '127.403000', '-25.039721', '-339.740387', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39306, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347987', 1347987, '128.043900', '-25.102480', '-341.174805', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39578, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347990', 1347990, '103.868103', '-27.830070', '-370.201294', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30578, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347993', 1347993, '104.585403', '-27.703699', '-374.422699', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347994', 1347994, '100.785797', '-27.626970', '-369.774109', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30306, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347996', 1347996, '115.281898', '-25.507601', '-321.858612', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36296, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1347999', 1347999, '95.705887', '-27.105480', '-316.640686', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38496, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348000', 1348000, '92.348900', '-26.525320', '-318.288696', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348001', 1348001, '106.853699', '-27.461729', '-348.520905', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348002', 1348002, '106.675797', '-26.863291', '-353.933014', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43538, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348003', 1348003, '111.067200', '-27.419359', '-348.093689', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43266, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348005', 1348005, '147.925797', '-23.963091', '-316.955292', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348006', 1348006, '139.153000', '-23.312229', '-308.514313', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348007', 1348007, '138.078796', '-23.392130', '-312.001312', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348010', 1348010, '95.115891', '-27.238010', '-299.027893', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35734, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348011', 1348011, '133.297394', '-23.149731', '-303.661987', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348012', 1348012, '93.072998', '-26.876440', '-282.357300', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348013', 1348013, '90.519493', '-27.035959', '-280.262787', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42722, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348014', 1348014, '91.113632', '-26.633659', '-283.826508', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348015', 1348015, '138.584198', '-29.894171', '-214.306305', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348016', 1348016, '133.174103', '-29.752001', '-213.771896', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39034, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348018', 1348018, '125.171204', '-28.822081', '-241.728302', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348019', 1348019, '133.407806', '-29.766630', '-245.194504', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348020', 1348020, '157.760696', '-30.241409', '-209.753799', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348021', 1348021, '110.126297', '-29.295731', '-223.210403', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1348022', 1348022, '159.280807', '-29.889629', '-205.386993', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349415', 1349415, '107.675301', '-28.766970', '-247.061798', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34918, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349419', 1349419, '144.273102', '-29.321350', '-228.200500', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42166, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349420', 1349420, '141.345703', '-29.379709', '-233.926895', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41894, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349421', 1349421, '147.630997', '-28.915890', '-231.464096', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349422', 1349422, '140.337204', '-29.188551', '-230.123901', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41356, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349423', 1349423, '142.912903', '-29.360870', '-232.045303', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41090, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349426', 1349426, '117.321800', '-29.940710', '-208.257904', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349428', 1349428, '119.702202', '-29.857460', '-208.563095', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349429', 1349429, '152.550797', '-29.560490', '-240.746399', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349430', 1349430, '153.238297', '-29.591810', '-244.188797', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349434', 1349434, '153.856705', '-29.735661', '-202.044800', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36568, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349444', 1349444, '163.936996', '-29.950470', '-221.893097', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38224, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349446', 1349446, '170.162399', '-30.332001', '-205.375504', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35190, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349448', 1349448, '92.027107', '-29.617809', '-158.983795', 74, 0, 0, 0, 0, 6, 0, 0, 71, 0, '0.000000', 57, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40962, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349450', 1349450, '88.622063', '-30.374201', '-172.160995', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349453', 1349453, '79.946991', '-30.373859', '-158.627106', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28300, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349454', 1349454, '84.076393', '-30.374201', '-170.842606', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349455', 1349455, '87.641907', '-30.374201', '-169.239105', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349456', 1349456, '97.735252', '-30.373690', '-149.205994', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349457', 1349457, '92.410156', '-30.373690', '-146.716202', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349458', 1349458, '93.722427', '-30.289921', '-150.469894', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349460', 1349460, '102.193199', '-30.374161', '-167.326401', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349462', 1349462, '104.695702', '-30.374050', '-164.732300', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27756, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349463', 1349463, '108.756897', '-30.549700', '-139.678604', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349466', 1349466, '70.533546', '-30.081551', '-177.695999', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349469', 1349469, '67.079147', '-29.548901', '-153.771606', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349471', 1349471, '66.987991', '-29.454809', '-150.085007', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36840, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349475', 1349475, '100.944000', '-30.141479', '-182.035095', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349476', 1349476, '103.423500', '-30.255220', '-183.818893', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc1349477', 1349477, '117.287300', '-30.394251', '-176.134903', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313925', 2313925, '-482.564789', '6.955613', '61.610111', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313933', 2313933, '-429.003693', '2.320748', '236.438400', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313934', 2313934, '-409.316101', '1.057956', '244.817902', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313935', 2313935, '-442.272491', '2.403773', '206.166901', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313937', 2313937, '-428.366699', '7.934575', '277.541107', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313938', 2313938, '-418.558289', '9.127686', '293.699799', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313939', 2313939, '-424.849213', '10.891960', '297.223694', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313940', 2313940, '-380.392212', '6.912290', '296.833710', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313942', 2313942, '-357.351105', '2.181993', '273.792603', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313943', 2313943, '-347.798889', '4.318256', '294.331207', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313944', 2313944, '-351.491608', '4.226702', '289.814514', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313946', 2313946, '-350.392914', '9.353733', '319.966400', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313948', 2313948, '-347.768402', '-0.140188', '238.560394', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313949', 2313949, '-334.432007', '0.900235', '197.100693', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313952', 2313952, '-512.518005', '10.681730', '106.017303', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313954', 2313954, '-466.272797', '4.568396', '120.049896', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313955', 2313955, '-503.845398', '11.240590', '124.209396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313959', 2313959, '-429.545593', '1.312407', '120.378799', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313963', 2313963, '-417.238586', '0.076732', '65.064568', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313964', 2313964, '-397.897705', '-0.211857', '75.408188', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313967', 2313967, '-395.162506', '-0.289825', '72.009888', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313971', 2313971, '-435.869385', '1.346877', '216.851196', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313974', 2313974, '-381.439911', '-0.122663', '184.500702', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313980', 2313980, '-464.159210', '9.409202', '251.654099', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313982', 2313982, '-452.844788', '11.917580', '265.924805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313984', 2313984, '-436.512909', '7.460858', '266.224792', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313985', 2313985, '-410.069000', '6.296681', '281.448486', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313988', 2313988, '-425.559387', '12.804490', '309.608093', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313989', 2313989, '-371.467285', '4.569370', '282.813202', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190366, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(289, 'e0057', 'bnpc2313991', 2313991, '-342.802002', '1.347080', '267.457001', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313993', 2313993, '-365.310303', '-0.244142', '207.010696', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2313994', 2313994, '-370.665497', '1.130038', '238.255402', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314003', 2314003, '-253.246994', '-4.236800', '221.935196', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314004', 2314004, '-227.049805', '-5.537235', '202.864395', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314005', 2314005, '-197.435196', '-7.994266', '221.269196', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314006', 2314006, '-200.220596', '-8.231664', '224.271805', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314009', 2314009, '-125.018700', '-7.681337', '231.549805', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176048, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314010', 2314010, '-129.776001', '-7.944516', '225.414200', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175776, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314034', 2314034, '-112.974503', '2.718925', '356.892609', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164364, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc2314035', 2314035, '-118.974602', '1.573215', '349.996094', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164092, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc2314041', 2314041, '-43.174789', '-3.827868', '319.130188', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314043', 2314043, '-31.562269', '-4.485572', '194.662094', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157322, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc2314047', 2314047, '-33.348999', '-6.685591', '211.045303', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157050, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc2314048', 2314048, '-54.297371', '-4.774252', '197.991501', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157594, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc2314070', 2314070, '-59.919048', '11.628480', '435.431305', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314088', 2314088, '-35.123161', '16.027519', '447.688507', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314102', 2314102, '-45.542999', '11.092310', '429.655396', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314107', 2314107, '-24.940210', '7.788889', '415.915497', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314112', 2314112, '2.340681', '1.029590', '360.915588', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314133', 2314133, '-1.470222', '0.327971', '355.323486', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314135', 2314135, '-2.340280', '16.406719', '467.504791', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173600, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314136', 2314136, '1.744962', '15.965160', '463.338013', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173328, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314137', 2314137, '67.368530', '7.949890', '446.280609', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173056, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314138', 2314138, '46.122662', '7.817679', '439.927185', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172784, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314139', 2314139, '108.354301', '9.109589', '407.461609', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159220, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314140', 2314140, '104.234299', '8.804408', '412.466614', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159764, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314141', 2314141, '123.021004', '12.317820', '423.590515', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159492, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314142', 2314142, '109.849602', '10.971190', '457.846893', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158948, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314144', 2314144, '68.332771', '7.866884', '474.070587', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314145', 2314145, '42.399090', '7.746444', '460.622803', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314146', 2314146, '97.762482', '7.782855', '392.593201', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314147', 2314147, '82.413742', '7.833769', '430.187286', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314148', 2314148, '4.571571', '14.724090', '481.634888', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314149', 2314149, '115.912598', '11.103390', '432.906311', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314150', 2314150, '2.013238', '9.902340', '432.648193', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314151', 2314151, '-58.361721', '5.610658', '400.360504', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314152', 2314152, '-85.923592', '7.095398', '408.499207', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314153', 2314153, '-89.646797', '6.881772', '406.576599', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314154', 2314154, '-6.062557', '1.064418', '360.585297', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314155', 2314155, '5.446085', '-3.557740', '326.017792', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314156', 2314156, '4.316917', '-3.595564', '325.071686', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314157', 2314157, '-28.881241', '-5.070975', '313.819092', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314159', 2314159, '-46.860470', '-8.011047', '221.606705', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314160', 2314160, '-69.568810', '-5.347832', '198.726303', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314161', 2314161, '-58.732021', '-3.341773', '321.766907', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314163', 2314163, '-122.044701', '1.863278', '351.901215', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314164', 2314164, '-134.686493', '5.714658', '377.345215', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314165', 2314165, '-91.805458', '-7.624840', '295.133911', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314166', 2314166, '-113.416000', '-7.987957', '278.087799', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314173', 2314173, '-122.484200', '-7.126010', '289.814514', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314174', 2314174, '-230.604599', '-5.478079', '208.442703', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314175', 2314175, '-207.367706', '-5.861229', '204.890305', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314177', 2314177, '-255.068893', '-4.175101', '226.840500', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314180', 2314180, '-330.692505', '7.278777', '313.762604', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314181', 2314181, '-317.594910', '9.477072', '339.549591', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314192', 2314192, '-345.082794', '6.485037', '63.248600', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147228, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc2314196', 2314196, '-237.055405', '3.071132', '110.837601', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148588, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc2314197', 2314197, '-241.022705', '2.939748', '114.865997', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147500, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc2314228', 2314228, '-134.111603', '-2.151569', '175.158295', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc2314253', 2314253, '-336.507202', '6.607109', '55.985298', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314258', 2314258, '-287.312195', '8.499228', '64.072594', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314261', 2314261, '-285.236908', '7.675241', '65.262787', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314262', 2314262, '-249.378204', '7.888867', '63.401192', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314265', 2314265, '-295.246887', '5.966230', '120.439400', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314267', 2314267, '-244.488403', '4.113512', '102.499100', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314270', 2314270, '-200.428696', '4.427309', '103.759300', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314275', 2314275, '-199.511703', '13.382110', '47.836979', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314276', 2314276, '-226.188293', '11.478340', '8.346189', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148860, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc2314280', 2314280, '-188.377304', '27.717520', '-44.157928', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314286', 2314286, '-183.089706', '31.517771', '-61.713600', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314288', 2314288, '-189.410294', '46.463669', '-104.997398', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314290', 2314290, '-191.485504', '47.196110', '-107.194702', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314302', 2314302, '-182.177505', '1.937849', '136.217194', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314304', 2314304, '-186.236404', '2.212511', '133.592697', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314305', 2314305, '-141.374893', '-2.090533', '175.005707', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314308', 2314308, '-187.396103', '-1.052920', '170.153305', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314309', 2314309, '-129.839096', '0.320392', '156.450699', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314314', 2314314, '-186.266907', '-0.961365', '166.521698', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314362', 2314362, '-5.424891', '19.709511', '-18.332621', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 116682, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc2314363', 2314363, '-6.294857', '20.221451', '15.311720', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121022, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc2314364', 2314364, '80.094597', '9.658875', '14.206050', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117764, 2, 0, 0, 0, 0, 30124, 0, 0, 0), +(289, 'e0057', 'bnpc2314365', 2314365, '111.406097', '6.393494', '-42.557430', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116954, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc2314366', 2314366, '113.664398', '5.874695', '-41.245178', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119662, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc2314369', 2314369, '176.512604', '-4.252202', '-4.205355', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118036, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(289, 'e0057', 'bnpc2314398', 2314398, '350.148193', '-2.774287', '-52.136921', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117226, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(289, 'e0057', 'bnpc2314451', 2314451, '-12.582740', '19.341261', '-16.372990', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314457', 2314457, '-8.483642', '19.834230', '12.296340', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314458', 2314458, '60.166260', '13.473630', '9.872559', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314460', 2314460, '90.726227', '9.726084', '-48.813629', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314462', 2314462, '184.311996', '-2.061695', '22.900990', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314464', 2314464, '212.298294', '-3.300554', '68.344177', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314465', 2314465, '254.499100', '-0.309484', '161.274002', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314466', 2314466, '216.507706', '0.515230', '114.319603', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314610', 2314610, '306.118286', '-6.238892', '11.614130', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314612', 2314612, '236.715302', '-5.231476', '-56.311989', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314613', 2314613, '213.666504', '-2.576396', '-14.211420', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314617', 2314617, '332.661499', '-4.732603', '-51.060032', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314621', 2314621, '364.126007', '-2.822966', '-30.502831', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314623', 2314623, '361.654114', '-2.670410', '-53.025211', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314626', 2314626, '519.135681', '-12.154410', '-35.360329', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314632', 2314632, '562.935120', '-12.088730', '-2.092934', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314634', 2314634, '546.164124', '-11.988440', '-64.370163', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314640', 2314640, '622.314026', '-13.134470', '-6.901284', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314642', 2314642, '619.809082', '-12.711930', '-6.546345', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2314715', 2314715, '570.641479', '-12.100450', '-40.116009', 63, 0, 0, 0, 1, 6, 0, 0, 60, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133220, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(289, 'e0057', 'bnpc2314717', 2314717, '566.063782', '-11.947860', '-47.776039', 64, 0, 0, 0, 0, 6, 0, 0, 61, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132954, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(289, 'e0057', 'bnpc2314726', 2314726, '556.389587', '-12.008900', '-42.404869', 55, 0, 0, 0, 1, 6, 0, 0, 53, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132688, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2319905', 2319905, '133.538803', '-23.850300', '-524.211304', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2319906', 2319906, '135.644501', '-24.169041', '-527.507324', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2319916', 2319916, '176.574203', '-26.295950', '-563.569885', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2319917', 2319917, '177.984299', '-26.445820', '-561.296326', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2319918', 2319918, '128.970001', '-22.921940', '-557.568481', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2320483', 2320483, '376.638397', '-2.304138', '-39.993961', 61, 0, 0, 0, 1, 6, 0, 0, 58, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128886, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(289, 'e0057', 'bnpc2320484', 2320484, '381.979004', '-2.517761', '-36.209721', 62, 0, 0, 0, 0, 6, 0, 0, 59, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128620, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(289, 'e0057', 'bnpc2320487', 2320487, '378.164307', '-2.273621', '-37.033691', 55, 0, 0, 0, 1, 6, 0, 0, 53, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2320488', 2320488, '413.927094', '-11.864880', '-0.202001', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2320489', 2320489, '450.408203', '-11.066550', '-6.123241', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127708, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2341765', 2341765, '66.095573', '7.840286', '477.260101', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2341766', 2341766, '43.036430', '7.860031', '467.247192', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2341767', 2341767, '24.573021', '9.672716', '473.677795', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2350399', 2350399, '-284.382385', '11.856210', '-27.054291', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146424, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2350400', 2350400, '-260.730988', '11.703620', '-32.242359', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146152, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2350401', 2350401, '-287.373199', '11.490000', '-7.705853', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139660, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2350402', 2350402, '-285.664215', '12.558130', '-52.719971', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145880, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc2350715', 2350715, '350.270203', '-2.804400', '-50.397419', 762, 0, 0, 0, 0, 6, 0, 0, 64, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121294, 2, 0, 0, 0, 0, 30120, 0, 0, 0), +(289, 'e0057', 'bnpc2350717', 2350717, '364.079590', '-4.248232', '-7.079392', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118852, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc2499386', 2499386, '-228.497696', '12.354860', '2.668262', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3694733', 3694733, '-401.218414', '11.367920', '318.654388', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186570, 5, 0, 0, 0, 0, 30059, 0, 0, 0), +(289, 'e0057', 'bnpc3694734', 3694734, '-406.210388', '11.893380', '317.922485', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186298, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc3694735', 3694735, '-390.079987', '10.675150', '320.996399', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186026, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc3694736', 3694736, '-405.569611', '9.872559', '309.346100', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185754, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc3694737', 3694737, '-399.718811', '10.832540', '315.967102', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185482, 5, 0, 0, 0, 0, 30059, 0, 0, 0), +(289, 'e0057', 'bnpc3694738', 3694738, '-398.236786', '11.123780', '318.544708', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185210, 5, 0, 0, 0, 0, 30060, 0, 0, 0), +(289, 'e0057', 'bnpc3694900', 3694900, '-355.928314', '-0.308188', '209.458206', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3694901', 3694901, '-358.039886', '-0.389206', '203.009705', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3694902', 3694902, '-359.232910', '-0.298962', '198.263794', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3694903', 3694903, '-364.384613', '-0.113241', '212.442200', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3694904', 3694904, '-376.390198', '-0.538467', '203.341293', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3694905', 3694905, '-364.056610', '-0.145500', '194.541702', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3694906', 3694906, '-378.323914', '-0.373772', '200.093002', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3694907', 3694907, '-368.149506', '-0.318695', '203.149994', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3694908', 3694908, '-401.144989', '0.532858', '100.339798', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184400, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3694909', 3694909, '-394.740112', '-0.280364', '154.306000', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184128, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3694910', 3694910, '-391.653412', '-0.503595', '210.406601', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184672, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3695051', 3695051, '-419.371887', '0.232080', '192.587006', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183856, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3695053', 3695053, '-421.990997', '0.316387', '76.746277', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184944, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3696616', 3696616, '-96.760498', '3.493882', '366.300812', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163276, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3696617', 3696617, '-93.824730', '3.873965', '372.828613', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163004, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3696618', 3696618, '-127.003799', '2.972143', '361.243103', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3696619', 3696619, '-133.940903', '6.157478', '379.316498', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3696870', 3696870, '-90.013023', '12.924340', '438.193298', 311, 0, 0, 0, 1, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162194, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3696872', 3696872, '-97.337341', '11.276370', '431.967590', 311, 0, 0, 0, 1, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161922, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(289, 'e0057', 'bnpc3696873', 3696873, '-91.318466', '10.895230', '429.915894', 311, 0, 0, 0, 0, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161650, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(289, 'e0057', 'bnpc3696876', 3696876, '-81.651070', '11.886730', '434.470093', 79, 0, 0, 0, 1, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(289, 'e0057', 'bnpc3696877', 3696877, '-91.226921', '11.092580', '430.953491', 79, 0, 0, 0, 0, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161112, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(289, 'e0057', 'bnpc3696878', 3696878, '-87.327423', '11.154300', '431.082611', 79, 0, 0, 0, 0, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160840, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(289, 'e0057', 'bnpc3696879', 3696879, '-90.402939', '11.068160', '430.739899', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160574, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(289, 'e0057', 'bnpc3697774', 3697774, '-88.120903', '11.001710', '430.441711', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160302, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(289, 'e0057', 'bnpc3697775', 3697775, '-88.426071', '11.490000', '427.695099', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160030, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(289, 'e0057', 'bnpc3697778', 3697778, '92.364197', '7.706964', '389.248596', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3697779', 3697779, '108.716797', '9.727629', '431.794403', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3697780', 3697780, '80.686493', '7.961041', '421.256897', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157860, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3698022', 3698022, '-75.550377', '-5.582465', '200.264694', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156778, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3698023', 3698023, '-38.882149', '-4.081942', '191.941605', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156506, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3698921', 3698921, '-37.577309', '-8.258268', '242.908295', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156234, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3700086', 3700086, '-37.311859', '-8.389291', '259.427307', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155962, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3701093', 3701093, '-28.851320', '-7.961150', '249.751205', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155690, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3726783', 3726783, '-306.845306', '7.615899', '107.505699', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145342, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3726785', 3726785, '-258.686188', '7.797313', '66.056259', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145070, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3726788', 3726788, '-219.973602', '2.520791', '114.552399', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144798, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3726789', 3726789, '-199.571198', '6.403381', '88.836418', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144526, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3727336', 3727336, '-233.240204', '11.494870', '34.787762', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144254, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3727339', 3727339, '-197.756302', '14.999770', '41.853489', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143982, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3727712', 3727712, '-313.497192', '11.569130', '-31.583179', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3727713', 3727713, '-314.589386', '11.902390', '-35.298470', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3727714', 3727714, '-306.619385', '11.253370', '-13.814930', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3727715', 3727715, '-278.890808', '12.580250', '-40.299412', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3727717', 3727717, '-267.242004', '11.943940', '-40.949741', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3727718', 3727718, '-273.701111', '11.886720', '-21.286381', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc3727732', 3727732, '-134.691406', '15.243710', '-3.646973', 70, 0, 0, 0, 0, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142090, 1, 0, 0, 0, 17, 30120, 0, 0, 0), +(289, 'e0057', 'bnpc3727734', 3727734, '-137.071793', '14.908020', '-3.555420', 71, 0, 0, 0, 1, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141824, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc3727735', 3727735, '-134.325195', '15.182740', '-2.365173', 72, 0, 0, 0, 0, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141558, 1, 0, 0, 0, 17, 30119, 0, 0, 0), +(289, 'e0057', 'bnpc3727738', 3727738, '-101.701401', '19.180540', '10.727050', 70, 0, 0, 0, 1, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141274, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc3727739', 3727739, '-69.779541', '17.349430', '6.759644', 71, 0, 0, 0, 0, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141008, 1, 0, 0, 0, 17, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc3727740', 3727740, '-74.509888', '17.685120', '8.499207', 72, 0, 0, 0, 1, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140742, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc3727743', 3727743, '-106.065498', '18.173450', '14.633350', 71, 0, 0, 0, 0, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140464, 1, 0, 0, 0, 17, 30121, 0, 0, 0), +(289, 'e0057', 'bnpc3727744', 3727744, '-104.844803', '18.509150', '14.328170', 72, 0, 0, 0, 0, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140198, 1, 0, 0, 0, 17, 30120, 0, 0, 0), +(289, 'e0057', 'bnpc3727745', 3727745, '-105.729797', '18.387070', '12.954860', 70, 0, 0, 0, 0, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139914, 1, 0, 0, 0, 17, 30119, 0, 0, 0), +(289, 'e0057', 'bnpc3727746', 3727746, '246.108398', '-4.984168', '-31.182381', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125562, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3727747', 3727747, '221.653900', '-5.011750', '-51.817490', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125290, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3729074', 3729074, '76.092232', '11.110100', '-47.602612', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124552, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3729746', 3729746, '86.654007', '8.922870', '-28.246519', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124280, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3729747', 3729747, '108.261803', '6.031532', '-26.458651', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124008, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3729748', 3729748, '115.837196', '4.964785', '13.643280', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123736, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3729749', 3729749, '71.684547', '11.649810', '-44.096661', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123464, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc3741023', 3741023, '381.093994', '-2.365173', '-37.277828', 55, 0, 0, 0, 0, 6, 0, 0, 53, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123168, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(289, 'e0057', 'bnpc3741027', 3741027, '379.934296', '-2.304138', '-35.904541', 62, 0, 0, 0, 0, 6, 0, 0, 59, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122908, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(289, 'e0057', 'bnpc3741028', 3741028, '378.072815', '-2.426208', '-33.066349', 61, 0, 0, 0, 1, 6, 0, 0, 58, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122630, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(289, 'e0057', 'bnpc3741029', 3741029, '565.056824', '-11.978380', '-48.966251', 55, 0, 0, 0, 0, 6, 0, 0, 53, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122352, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(289, 'e0057', 'bnpc3741030', 3741030, '546.837524', '-12.436150', '-46.677391', 64, 0, 0, 0, 1, 6, 0, 0, 61, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122074, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(289, 'e0057', 'bnpc3741031', 3741031, '549.614624', '-12.436150', '-49.210388', 63, 0, 0, 0, 1, 6, 0, 0, 60, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121796, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(289, 'e0057', 'bnpc3870165', 3870165, '-530.557922', '11.925130', '70.277603', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22788, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(289, 'e0057', 'bnpc3870175', 3870175, '-197.120804', '-1.760828', '261.203003', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22522, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(289, 'e0057', 'bnpc3870206', 3870206, '-273.557404', '0.846183', '289.320587', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22244, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(289, 'e0057', 'bnpc4317800', 4317800, '498.771515', '-17.898861', '-313.954407', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110750, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317801', 4317801, '451.322998', '-15.501170', '-279.865692', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110484, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc4317802', 4317802, '514.823975', '-20.341690', '-358.783813', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 110218, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc4317803', 4317803, '260.486694', '-11.080910', '-154.824493', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109958, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4317804', 4317804, '357.625610', '-18.265079', '-146.196701', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109686, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4317805', 4317805, '327.286591', '-17.372709', '-188.968796', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109414, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4317817', 4317817, '294.575806', '-12.980530', '-180.587906', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109142, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4317818', 4317818, '388.959412', '-18.823000', '-212.157593', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108876, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4317819', 4317819, '314.365814', '-18.527800', '-289.215912', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108604, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4317820', 4317820, '329.818115', '-17.597429', '-223.296097', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108332, 2, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(289, 'e0057', 'bnpc4317821', 4317821, '370.788086', '-17.580059', '-245.788101', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108060, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4317822', 4317822, '291.974792', '-19.793560', '-289.794800', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107788, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4317826', 4317826, '253.924606', '-23.493771', '-397.838715', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107522, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4317827', 4317827, '253.467499', '-24.551821', '-431.753998', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107250, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4317829', 4317829, '213.044601', '-20.737579', '-407.032990', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106978, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4317830', 4317830, '215.188202', '-20.979630', '-409.962799', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106706, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4317832', 4317832, '145.520706', '-23.570749', '-477.912994', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106314, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4317833', 4317833, '133.494904', '-23.758650', '-547.963074', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106042, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4317834', 4317834, '173.863693', '-25.574671', '-517.082520', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105770, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4317836', 4317836, '-10.175820', '-35.238060', '-550.143311', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105498, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4317838', 4317838, '-52.048519', '-35.202579', '-528.496216', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105226, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4317839', 4317839, '186.907700', '-23.727840', '-376.882599', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105074, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4317840', 4317840, '126.817703', '-25.925110', '-347.127502', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104808, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4317842', 4317842, '115.994499', '-26.717680', '-354.423096', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104536, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4317844', 4317844, '88.409050', '-26.293819', '-339.833893', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104264, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4317849', 4317849, '137.315903', '-23.270020', '-304.951599', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103992, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4317852', 4317852, '155.825104', '-29.775539', '-226.307693', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103564, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4317853', 4317853, '113.237198', '-29.434690', '-221.118500', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103292, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4317854', 4317854, '146.903900', '-29.527519', '-215.189804', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103020, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4317855', 4317855, '129.991104', '-29.535959', '-245.124496', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102748, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4317863', 4317863, '207.402206', '-6.915606', '-189.063599', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102596, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317864', 4317864, '351.494507', '-15.727020', '-259.491211', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 102330, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc4317873', 4317873, '284.544312', '-19.539360', '-291.495911', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 102046, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc4317874', 4317874, '368.856201', '-20.248779', '-184.771500', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101780, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(289, 'e0057', 'bnpc4317875', 4317875, '368.581512', '-20.218201', '-183.856003', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101514, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(289, 'e0057', 'bnpc4317885', 4317885, '366.659302', '-17.544319', '-237.723404', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101236, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317886', 4317886, '443.139709', '-18.693390', '-238.559097', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100970, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317887', 4317887, '249.626694', '-24.511021', '-435.444397', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 100698, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc4317891', 4317891, '131.792099', '-25.070620', '-394.277893', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100420, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317893', 4317893, '112.708099', '-30.261940', '-194.688599', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100154, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc4317894', 4317894, '193.408096', '-31.479370', '-219.684097', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99870, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc4317897', 4317897, '129.072906', '-22.173210', '-564.551880', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 99604, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc4317899', 4317899, '253.498001', '-23.239559', '-517.052002', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99338, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317900', 4317900, '165.575607', '-26.840639', '-542.717712', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99060, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(289, 'e0057', 'bnpc4317901', 4317901, '166.460602', '-26.871220', '-543.541626', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98782, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(289, 'e0057', 'bnpc4317902', 4317902, '156.908401', '-24.429689', '-455.588593', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98522, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc4317903', 4317903, '-37.241699', '-35.085869', '-537.987976', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98250, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317904', 4317904, '-33.412891', '-35.156620', '-549.607971', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97972, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317905', 4317905, '-27.481510', '-34.836430', '-541.802124', 762, 0, 0, 0, 1, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97694, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317909', 4317909, '143.718704', '-29.336210', '-230.073807', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97434, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317911', 4317911, '119.399300', '-26.408409', '-346.557190', 762, 0, 0, 0, 1, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97150, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317912', 4317912, '139.559601', '-29.771700', '-244.522903', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 96884, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc4317916', 4317916, '565.405212', '-22.088120', '-350.810913', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96606, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc4317917', 4317917, '558.970886', '-22.530359', '-353.985687', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96346, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317918', 4317918, '561.280518', '-22.530359', '-344.947998', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96068, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317920', 4317920, '553.652527', '-24.130871', '-379.476715', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95790, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(289, 'e0057', 'bnpc4317921', 4317921, '528.888000', '-24.002501', '-316.121185', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95530, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317922', 4317922, '552.422424', '-24.124571', '-379.629211', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95252, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(289, 'e0057', 'bnpc4317923', 4317923, '516.716187', '-20.340330', '-366.170807', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94986, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317924', 4317924, '544.539673', '-24.024820', '-352.536011', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94702, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317925', 4317925, '573.032776', '-24.048040', '-372.673492', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94436, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317927', 4317927, '408.712799', '-28.427610', '-401.419098', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94164, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317930', 4317930, '335.927399', '-28.671749', '-421.042206', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93886, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(289, 'e0057', 'bnpc4317931', 4317931, '335.683105', '-28.763309', '-419.913086', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93620, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(289, 'e0057', 'bnpc4317932', 4317932, '349.965607', '-28.000311', '-412.710785', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93354, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317933', 4317933, '339.902313', '-28.306200', '-487.054108', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93070, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317934', 4317934, '370.887909', '-34.493279', '-462.935608', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 92804, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc4317935', 4317935, '351.582886', '-28.032480', '-484.519714', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92538, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317936', 4317936, '425.497803', '-28.366579', '-482.505615', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92254, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317937', 4317937, '424.521210', '-27.908751', '-463.431793', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91988, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317938', 4317938, '358.322601', '-28.245850', '-509.974213', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91722, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc4317939', 4317939, '388.815186', '-34.042912', '-418.204010', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91438, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317940', 4317940, '413.626190', '-34.042912', '-447.318207', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91172, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317943', 4317943, '383.576294', '-27.500000', '-515.033020', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90906, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(289, 'e0057', 'bnpc4317944', 4317944, '403.162109', '-27.877609', '-499.533905', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 90628, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc4317945', 4317945, '384.859497', '-27.500000', '-514.937012', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90350, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(289, 'e0057', 'bnpc4317946', 4317946, '391.422485', '-17.924709', '-377.696991', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90090, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4317948', 4317948, '450.847504', '-28.334009', '-441.002411', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89806, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4516039', 4516039, '201.957901', '-6.015132', '-140.727798', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89558, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4516054', 4516054, '302.846893', '-13.662720', '-70.995468', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89286, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4516060', 4516060, '90.040314', '-26.979679', '-315.730499', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89032, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4516061', 4516061, '118.730499', '-25.303860', '-328.093414', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88760, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4516069', 4516069, '76.916473', '-30.135340', '-176.278107', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88332, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4516071', 4516071, '109.801003', '-30.350300', '-144.088104', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88060, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4516076', 4516076, '178.212997', '-26.243820', '-569.578918', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87818, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4526138', 4526138, '207.189499', '-4.405000', '-55.771381', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4526153', 4526153, '101.728302', '6.775696', '-29.255630', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4526159', 4526159, '-5.661133', '19.302610', '-20.096189', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 114784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4526163', 4526163, '295.063599', '0.717163', '180.926102', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4526170', 4526170, '243.762802', '-2.334717', '93.644531', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4526175', 4526175, '514.976685', '-20.248779', '-360.982697', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4526185', 4526185, '349.873993', '-15.610050', '-260.578400', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4526186', 4526186, '405.020111', '-28.000311', '-500.633209', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4526187', 4526187, '370.778900', '-34.470150', '-460.959808', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4526188', 4526188, '286.335602', '-19.760500', '-293.202087', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4526189', 4526189, '126.848099', '-22.110350', '-563.561523', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4526190', 4526190, '138.658707', '-23.403219', '-470.115204', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4526191', 4526191, '252.338394', '-24.643370', '-435.141510', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85780, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4526192', 4526192, '119.127197', '-25.162230', '-324.086395', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4526193', 4526193, '137.078705', '-29.800461', '-246.062698', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4526240', 4526240, '214.825394', '-19.554331', '-398.094788', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84946, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4553457', 4553457, '345.774902', '-15.417000', '-261.117798', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84668, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4553459', 4553459, '361.297913', '-25.751591', '-438.400085', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84378, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4553469', 4553469, '139.198593', '-23.542650', '-467.790009', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84094, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc4588198', 4588198, '119.859596', '-21.530519', '-297.352600', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83828, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4588199', 4588199, '116.324303', '-25.430050', '-324.881592', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83550, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(289, 'e0057', 'bnpc4588205', 4588205, '443.598206', '-24.245310', '-392.653687', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83278, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4592960', 4592960, '291.767700', '-13.992610', '-129.503403', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83006, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(289, 'e0057', 'bnpc4618294', 4618294, '99.668091', '8.096478', '-41.502491', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4618295', 4618295, '114.137100', '6.064597', '-18.577110', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4618296', 4618296, '119.902702', '5.962872', '-52.469212', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4618297', 4618297, '273.146088', '-0.359490', '138.990295', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113122, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4618298', 4618298, '194.044495', '3.506398', '122.434998', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112850, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4618299', 4618299, '301.813202', '-6.703927', '30.420111', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112506, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4618300', 4618300, '344.534210', '-4.776098', '-14.875460', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112234, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(289, 'e0057', 'bnpc4618301', 4618301, '198.657104', '2.212463', '118.242104', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112064, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4618302', 4618302, '280.378998', '-4.542100', '48.923759', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111792, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4618303', 4618303, '221.648804', '-2.880372', '-13.690810', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111520, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4621091', 4621091, '-46.489208', '15.602010', '3.201886', 2771, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23396, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(289, 'e0057', 'bnpc4621093', 4621093, '622.978821', '-12.883850', '-12.418940', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23130, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136062', 1136062, '-505.795593', '9.752348', '104.621803', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205580, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136063', 1136063, '-515.044922', '11.400910', '112.794899', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205308, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136064', 1136064, '-501.586090', '9.603134', '109.964401', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205036, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136065', 1136065, '-475.682312', '6.895020', '108.614403', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204764, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136067', 1136067, '-478.398712', '7.440553', '105.715897', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204492, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136074', 1136074, '-391.806000', '9.109558', '308.461090', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186842, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc1136075', 1136075, '-414.835693', '4.099017', '268.726593', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136076', 1136076, '-390.326385', '4.860912', '278.225494', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136077', 1136077, '-430.838715', '8.406867', '277.241089', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136078', 1136078, '-459.421692', '5.690572', '240.230301', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136079', 1136079, '-450.953796', '11.975280', '268.649994', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136080', 1136080, '-390.585205', '9.262146', '310.566895', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187114, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc1136081', 1136081, '-461.788513', '5.891314', '238.861206', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136082', 1136082, '-473.594299', '10.086170', '246.936707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136085', 1136085, '-435.743011', '1.967827', '88.564453', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202328, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1136086', 1136086, '-390.760986', '0.834163', '111.607300', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202056, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1136087', 1136087, '-418.825409', '0.336109', '91.913406', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201784, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1136089', 1136089, '-414.658203', '0.079596', '95.602753', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201512, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1136091', 1136091, '-415.322693', '-0.226261', '151.930603', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201240, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1136092', 1136092, '-421.841888', '0.864481', '141.020401', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200968, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1136093', 1136093, '-381.670593', '0.762653', '137.407394', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200696, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1136094', 1136094, '-430.745300', '0.804663', '164.744202', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200424, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1136097', 1136097, '-431.509888', '2.089151', '233.463394', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136098', 1136098, '-446.728088', '0.504031', '188.779205', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136099', 1136099, '-432.335907', '1.523763', '185.544998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136100', 1136100, '-400.007599', '-0.063123', '184.140106', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136101', 1136101, '-403.100311', '-0.089608', '188.898804', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136102', 1136102, '-360.642303', '0.164527', '231.393402', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136103', 1136103, '-384.551605', '0.763345', '233.278397', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136104', 1136104, '-386.850494', '0.112991', '227.897705', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136130', 1136130, '-325.468597', '10.213140', '333.038086', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136131', 1136131, '-242.241394', '-5.472987', '226.931595', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136132', 1136132, '-328.277710', '4.935143', '305.884399', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136134', 1136134, '-321.859711', '9.391951', '328.320587', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136136', 1136136, '-268.451996', '-2.822966', '243.274506', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136137', 1136137, '-184.086700', '-8.314297', '238.537598', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136139', 1136139, '-95.525383', '-7.421386', '293.721008', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136140', 1136140, '-126.314003', '-8.479818', '267.845093', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136141', 1136141, '-103.592903', '-7.979246', '256.096588', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136142', 1136142, '-128.252106', '-6.729275', '293.324097', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136143', 1136143, '-124.302597', '-8.155410', '276.504700', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136158', 1136158, '-113.634003', '-4.072056', '313.771210', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136161', 1136161, '-133.257095', '-0.167896', '343.312714', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163548, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1136162', 1136162, '-92.474274', '0.803288', '352.180786', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163820, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1136163', 1136163, '-74.857803', '4.447460', '383.016602', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136164', 1136164, '-32.537300', '7.616392', '412.410797', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136165', 1136165, '-64.080299', '11.043260', '430.339905', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136167', 1136167, '-5.813734', '2.975462', '373.769714', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136168', 1136168, '37.950851', '7.949909', '464.214691', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136170', 1136170, '78.733383', '6.701904', '382.834015', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158676, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136172', 1136172, '-27.413450', '-5.802525', '309.247986', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136173', 1136173, '4.164327', '-4.588222', '319.364899', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136174', 1136174, '-5.613925', '-6.047291', '306.725403', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136175', 1136175, '-60.686939', '-2.369054', '328.478394', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136177', 1136177, '-22.903839', '-5.355963', '311.696014', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136178', 1136178, '-138.536697', '-2.761930', '180.468399', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1136179', 1136179, '-156.542297', '2.639764', '135.026993', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1136180', 1136180, '-150.621796', '2.365101', '138.292496', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1136182', 1136182, '-172.930496', '-0.839293', '164.965195', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1136190', 1136190, '-288.410797', '11.764660', '-25.711500', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146696, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136191', 1136191, '-269.916901', '12.741240', '-45.975479', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139388, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136192', 1136192, '-305.683990', '11.673100', '-35.629860', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139116, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136194', 1136194, '-253.040405', '11.428960', '-3.524881', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136196', 1136196, '-216.479797', '5.813640', '85.984543', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148316, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1136197', 1136197, '-296.681213', '8.743372', '66.361427', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147772, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1136198', 1136198, '-280.833405', '6.822407', '95.059250', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148044, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1136224', 1136224, '68.558739', '11.184820', '-24.826481', 762, 0, 0, 0, 0, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119934, 2, 0, 0, 0, 0, 30122, 0, 0, 0), +(290, 'e0063', 'bnpc1136225', 1136225, '69.687866', '11.001710', '-24.643370', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118308, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(290, 'e0063', 'bnpc1136228', 1136228, '333.638397', '-4.043701', '-37.918701', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116138, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc1136229', 1136229, '349.049408', '-2.892388', '-51.221401', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116410, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc1136230', 1136230, '507.865997', '-11.795270', '4.501364', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136231', 1136231, '537.636780', '-12.274270', '-13.554320', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136232', 1136232, '536.101196', '-12.090500', '-2.388316', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136233', 1136233, '530.091492', '-12.161830', '-4.477412', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136234', 1136234, '514.392822', '-12.155740', '-30.914129', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1136235', 1136235, '594.192078', '-12.117190', '-6.794415', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1162438', 1162438, '234.721100', '4.423762', '180.467896', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1162439', 1162439, '236.722900', '4.611117', '188.587906', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1162445', 1162445, '199.757599', '6.240894', '156.164093', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130156, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1162451', 1162451, '252.094193', '0.076233', '155.870804', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126994, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1162452', 1162452, '286.884094', '0.589654', '176.855103', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127538, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1162453', 1162453, '298.563293', '-0.085100', '171.096207', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127266, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1162458', 1162458, '203.268799', '1.655764', '106.938103', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126722, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1162460', 1162460, '243.554703', '-3.339902', '84.717239', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126178, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1162461', 1162461, '279.461212', '-4.218416', '42.329281', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129884, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1162462', 1162462, '294.178589', '-5.478088', '38.284790', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129612, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1162463', 1162463, '301.736115', '-5.423965', '50.006149', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125018, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1162467', 1162467, '241.840195', '-1.764643', '99.107300', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126450, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1162469', 1162469, '274.593109', '-5.942087', '11.604580', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124746, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1162472', 1162472, '227.649307', '-3.036592', '-15.976240', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129340, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1162476', 1162476, '220.935303', '-2.975586', '-22.720699', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129068, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1162477', 1162477, '207.324203', '-4.013123', '-42.343868', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125834, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc1162479', 1162479, '154.222900', '0.015198', '7.949890', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120206, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc1162480', 1162480, '176.019806', '-4.055645', '-3.018583', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117492, 2, 0, 0, 0, 0, 30120, 0, 0, 0), +(290, 'e0063', 'bnpc1162481', 1162481, '178.942505', '-0.503601', '60.196781', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115594, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc1162482', 1162482, '181.322906', '-0.473083', '58.762451', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120478, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc1162483', 1162483, '356.642700', '-2.987466', '-35.734451', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121566, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc1162484', 1162484, '333.913086', '-4.135254', '-40.177059', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118580, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc1162486', 1162486, '111.986000', '6.118835', '-40.909481', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119124, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc1162487', 1162487, '74.814934', '10.482900', '-18.448200', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115866, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc1162490', 1162490, '-9.318063', '19.332541', '-19.108101', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120750, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc1162492', 1162492, '-20.523430', '17.990339', '11.642590', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119396, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1185226', 1185226, '256.488800', '-24.255501', '-358.053009', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68326, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186102', 1186102, '185.839600', '-21.471359', '-442.130188', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68054, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(290, 'e0063', 'bnpc1186104', 1186104, '139.593506', '-25.435749', '-371.665588', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186105', 1186105, '133.317993', '-24.199471', '-327.840088', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186106', 1186106, '85.221588', '-28.236040', '-263.782715', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186107', 1186107, '112.138496', '-30.215771', '-200.427307', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186108', 1186108, '171.129898', '-31.077660', '-212.573502', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44874, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186113', 1186113, '269.977814', '-10.584900', '-100.442299', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73786, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186119', 1186119, '301.000702', '-14.170150', '-179.921906', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186121', 1186121, '299.316498', '-13.980780', '-177.154099', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72426, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186122', 1186122, '210.285797', '-6.827882', '-189.363602', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76258, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186126', 1186126, '195.813797', '-6.409023', '-148.998001', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77074, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186127', 1186127, '198.768997', '-5.217091', '-147.382904', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76802, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186128', 1186128, '264.066498', '-11.720200', '-141.711304', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72970, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186130', 1186130, '255.084595', '-10.365080', '-135.648193', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72698, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186131', 1186131, '262.121887', '-11.356690', '-170.924500', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74880, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186134', 1186134, '257.526489', '-11.230880', '-163.622498', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75152, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186135', 1186135, '289.600891', '-14.023210', '-132.829803', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186142', 1186142, '321.177094', '-17.145399', '-141.817795', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75424, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186146', 1186146, '357.922394', '-18.371901', '-147.675705', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72154, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186157', 1186157, '339.864105', '-20.256371', '-163.073196', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75986, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186160', 1186160, '325.512207', '-18.022200', '-210.406693', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186163', 1186163, '334.967590', '-18.257030', '-188.068497', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186165', 1186165, '357.646301', '-21.037640', '-172.919998', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186166', 1186166, '355.845795', '-21.195030', '-175.910797', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186167', 1186167, '354.167297', '-20.996559', '-172.828506', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186168', 1186168, '327.501495', '-18.763630', '-170.766296', 16, 0, 0, 0, 1, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186169', 1186169, '357.691193', '-18.922649', '-152.895798', 16, 0, 0, 0, 1, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186173', 1186173, '362.066711', '-19.066210', '-226.023697', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186174', 1186174, '367.605011', '-19.394260', '-223.926193', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69736, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1186185', 1186185, '432.333801', '-18.556009', '-200.427307', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335118', 1335118, '259.814606', '-9.041327', '-75.930794', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82388, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335120', 1335120, '258.747192', '-9.339743', '-77.470100', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335121', 1335121, '271.628510', '-12.409580', '-119.495102', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335122', 1335122, '268.973389', '-11.585720', '-119.678200', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335125', 1335125, '299.467896', '-15.161890', '-151.066498', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335126', 1335126, '300.071503', '-15.260950', '-157.970398', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335127', 1335127, '305.104095', '-16.013350', '-153.873703', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80762, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335128', 1335128, '362.569489', '-19.896090', '-195.239197', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335129', 1335129, '359.914490', '-20.141609', '-198.291000', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335131', 1335131, '376.912994', '-17.746290', '-239.673492', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79940, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335132', 1335132, '378.265808', '-17.184210', '-245.818802', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79668, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335133', 1335133, '373.817291', '-17.567560', '-244.927200', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79396, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335135', 1335135, '382.244812', '-18.581270', '-213.006607', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335136', 1335136, '384.289612', '-18.812380', '-216.180496', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78852, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335137', 1335137, '365.346710', '-17.380070', '-235.889297', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78586, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335142', 1335142, '325.117188', '-17.441219', '-261.926086', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335147', 1335147, '382.083588', '-15.505330', '-274.037415', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335148', 1335148, '379.490387', '-15.238400', '-273.274506', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335150', 1335150, '393.739594', '-17.082621', '-246.185501', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335151', 1335151, '395.540100', '-17.610670', '-243.194702', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73242, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335152', 1335152, '374.262207', '-16.275169', '-255.869507', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74058, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335154', 1335154, '445.548096', '-18.953011', '-239.643005', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75714, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335155', 1335155, '410.055603', '-15.113950', '-262.409393', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335156', 1335156, '409.262085', '-14.690550', '-264.759308', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335171', 1335171, '283.910095', '-19.542110', '-281.001801', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335172', 1335172, '309.847809', '-19.112881', '-260.545685', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49406, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335179', 1335179, '308.749512', '-18.382240', '-278.268188', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335180', 1335180, '305.850189', '-18.505501', '-275.399506', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335181', 1335181, '287.464691', '-20.370840', '-267.414398', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335182', 1335182, '221.773499', '-20.304710', '-402.104889', 73, 0, 0, 0, 1, 6, 0, 0, 70, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335186', 1335186, '260.100708', '-22.595980', '-282.093597', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335187', 1335187, '257.170898', '-22.925730', '-282.856506', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335188', 1335188, '258.178009', '-22.527321', '-280.506592', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335189', 1335189, '259.124115', '-22.919470', '-284.351898', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335191', 1335191, '252.674103', '-25.158079', '-319.881500', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55650, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335245', 1335245, '264.071289', '-23.086901', '-377.431885', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335247', 1335247, '251.044693', '-24.157169', '-429.172791', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56484, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335250', 1335250, '213.636093', '-21.692980', '-416.299286', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335254', 1335254, '250.182205', '-23.049110', '-398.827515', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335255', 1335255, '235.164795', '-22.033070', '-382.140289', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51310, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335257', 1335257, '250.975601', '-23.342621', '-395.073792', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335258', 1335258, '233.840302', '-22.782070', '-408.640991', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335259', 1335259, '228.651703', '-20.932440', '-399.771088', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335260', 1335260, '285.551605', '-20.191130', '-266.194702', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335261', 1335261, '233.309006', '-22.290220', '-403.706696', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335262', 1335262, '226.586807', '-21.579840', '-408.344208', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335263', 1335263, '251.797501', '-24.329281', '-417.166504', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335265', 1335265, '239.352707', '-23.325970', '-417.493805', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335266', 1335266, '234.393204', '-23.440660', '-419.117004', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335269', 1335269, '208.094101', '-20.046240', '-400.359314', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335270', 1335270, '205.635300', '-20.583099', '-405.028595', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335271', 1335271, '214.649200', '-21.421610', '-437.417206', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335272', 1335272, '220.603699', '-19.557770', '-394.169189', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335273', 1335273, '237.537292', '-23.111750', '-434.553314', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335274', 1335274, '201.154007', '-21.053610', '-424.056702', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335275', 1335275, '199.896194', '-21.481091', '-433.825592', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64542, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335276', 1335276, '199.035995', '-21.532829', '-428.054504', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335277', 1335277, '204.574905', '-21.963341', '-430.374695', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335278', 1335278, '203.919998', '-21.381781', '-436.120514', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335279', 1335279, '158.464905', '-25.742020', '-514.580017', 78, 0, 0, 0, 0, 6, 0, 0, 75, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63864, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335280', 1335280, '156.163498', '-25.174259', '-507.993713', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335281', 1335281, '162.755295', '-25.392191', '-508.512512', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335282', 1335282, '160.374893', '-26.243521', '-521.635315', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53064, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335283', 1335283, '153.783005', '-25.787460', '-521.116516', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53880, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335284', 1335284, '164.681107', '-23.516750', '-451.796112', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335287', 1335287, '161.309204', '-24.113899', '-454.393097', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335290', 1335290, '178.249100', '-21.930130', '-465.361603', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335294', 1335294, '176.568298', '-23.836981', '-493.324188', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335295', 1335295, '175.158295', '-24.210711', '-495.597809', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335298', 1335298, '146.524597', '-23.827370', '-466.589294', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49678, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335299', 1335299, '136.972305', '-23.003241', '-490.722107', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335310', 1335310, '139.252106', '-23.121799', '-488.640411', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335313', 1335313, '169.940796', '-26.606640', '-538.220520', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335317', 1335317, '176.719406', '-26.248819', '-529.080017', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335318', 1335318, '175.681793', '-26.337879', '-531.124695', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57300, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335326', 1335326, '135.813904', '-23.796021', '-507.744904', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57572, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335327', 1335327, '143.479095', '-24.673691', '-543.979187', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56756, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335328', 1335328, '142.868698', '-24.722940', '-547.854980', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55940, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335329', 1335329, '145.279694', '-25.150471', '-548.343323', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56212, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335330', 1335330, '167.576401', '-23.605841', '-478.499115', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335331', 1335331, '172.550903', '-23.232599', '-481.184692', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335332', 1335332, '136.520096', '-23.013941', '-481.370514', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60310, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335333', 1335333, '170.445099', '-23.299061', '-477.888702', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1335344', 1335344, '163.126495', '-26.834591', '-547.864319', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347955', 1347955, '185.057404', '-22.517530', '-393.153900', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347956', 1347956, '186.735901', '-22.314060', '-389.308685', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63170, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347958', 1347958, '180.601807', '-22.849991', '-388.088013', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62904, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347959', 1347959, '182.982193', '-22.808430', '-387.447113', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347960', 1347960, '181.853104', '-22.416210', '-391.109192', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347961', 1347961, '163.818802', '-23.941280', '-382.930786', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347964', 1347964, '136.015106', '-25.067890', '-394.922394', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347965', 1347965, '135.952805', '-25.463390', '-380.858490', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347966', 1347966, '159.892807', '-23.691389', '-387.543396', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347967', 1347967, '134.539597', '-25.153410', '-393.304901', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347968', 1347968, '148.660599', '-24.933149', '-382.747192', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62082, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347969', 1347969, '149.210007', '-24.847401', '-385.554901', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347970', 1347970, '145.273102', '-24.985941', '-383.815399', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61544, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347971', 1347971, '146.677002', '-25.017750', '-386.012695', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61278, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347974', 1347974, '119.340797', '-26.901699', '-370.321198', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347976', 1347976, '110.948303', '-27.082211', '-355.214813', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44626, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347977', 1347977, '116.650902', '-26.851940', '-355.502686', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347979', 1347979, '115.985397', '-25.590910', '-330.770813', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347980', 1347980, '96.825470', '-26.731310', '-337.443909', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347981', 1347981, '94.966377', '-26.840120', '-343.493591', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347982', 1347982, '112.341904', '-27.148821', '-352.201202', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347984', 1347984, '127.403000', '-25.039721', '-339.740387', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39306, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347987', 1347987, '128.043900', '-25.102480', '-341.174805', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39578, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347990', 1347990, '103.868103', '-27.830070', '-370.201294', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30578, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347993', 1347993, '104.585403', '-27.703699', '-374.422699', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347994', 1347994, '100.785797', '-27.626970', '-369.774109', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30306, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347996', 1347996, '115.281898', '-25.507601', '-321.858612', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36296, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1347999', 1347999, '95.705887', '-27.105480', '-316.640686', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38496, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348000', 1348000, '92.348900', '-26.525320', '-318.288696', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348001', 1348001, '106.853699', '-27.461729', '-348.520905', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348002', 1348002, '106.675797', '-26.863291', '-353.933014', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43538, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348003', 1348003, '111.067200', '-27.419359', '-348.093689', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43266, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348005', 1348005, '147.925797', '-23.963091', '-316.955292', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348006', 1348006, '139.153000', '-23.312229', '-308.514313', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348007', 1348007, '138.078796', '-23.392130', '-312.001312', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348010', 1348010, '95.115891', '-27.238010', '-299.027893', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35734, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348011', 1348011, '133.297394', '-23.149731', '-303.661987', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348012', 1348012, '93.072998', '-26.876440', '-282.357300', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348013', 1348013, '90.519493', '-27.035959', '-280.262787', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42722, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348014', 1348014, '91.113632', '-26.633659', '-283.826508', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348015', 1348015, '138.584198', '-29.894171', '-214.306305', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348016', 1348016, '133.174103', '-29.752001', '-213.771896', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39034, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348018', 1348018, '125.171204', '-28.822081', '-241.728302', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348019', 1348019, '133.407806', '-29.766630', '-245.194504', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348020', 1348020, '157.760696', '-30.241409', '-209.753799', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348021', 1348021, '110.126297', '-29.295731', '-223.210403', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1348022', 1348022, '159.280807', '-29.889629', '-205.386993', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349415', 1349415, '107.675301', '-28.766970', '-247.061798', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34918, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349419', 1349419, '144.273102', '-29.321350', '-228.200500', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42166, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349420', 1349420, '141.345703', '-29.379709', '-233.926895', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41894, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349421', 1349421, '147.630997', '-28.915890', '-231.464096', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349422', 1349422, '140.337204', '-29.188551', '-230.123901', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41356, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349423', 1349423, '142.912903', '-29.360870', '-232.045303', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41090, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349426', 1349426, '117.321800', '-29.940710', '-208.257904', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349428', 1349428, '119.702202', '-29.857460', '-208.563095', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349429', 1349429, '152.550797', '-29.560490', '-240.746399', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349430', 1349430, '153.238297', '-29.591810', '-244.188797', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349434', 1349434, '153.856705', '-29.735661', '-202.044800', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36568, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349444', 1349444, '163.936996', '-29.950470', '-221.893097', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38224, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349446', 1349446, '170.162399', '-30.332001', '-205.375504', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35190, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349448', 1349448, '92.027107', '-29.617809', '-158.983795', 74, 0, 0, 0, 0, 6, 0, 0, 71, 0, '0.000000', 57, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40962, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349450', 1349450, '88.622063', '-30.374201', '-172.160995', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349453', 1349453, '79.946991', '-30.373859', '-158.627106', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28300, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349454', 1349454, '84.076393', '-30.374201', '-170.842606', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349455', 1349455, '87.641907', '-30.374201', '-169.239105', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349456', 1349456, '97.735252', '-30.373690', '-149.205994', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349457', 1349457, '92.410156', '-30.373690', '-146.716202', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349458', 1349458, '93.722427', '-30.289921', '-150.469894', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349460', 1349460, '102.193199', '-30.374161', '-167.326401', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349462', 1349462, '104.695702', '-30.374050', '-164.732300', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27756, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349463', 1349463, '108.756897', '-30.549700', '-139.678604', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349466', 1349466, '70.533546', '-30.081551', '-177.695999', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349469', 1349469, '67.079147', '-29.548901', '-153.771606', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349471', 1349471, '66.987991', '-29.454809', '-150.085007', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36840, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349475', 1349475, '100.944000', '-30.141479', '-182.035095', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349476', 1349476, '103.423500', '-30.255220', '-183.818893', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc1349477', 1349477, '117.287300', '-30.394251', '-176.134903', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313925', 2313925, '-482.564789', '6.955613', '61.610111', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313933', 2313933, '-429.003693', '2.320748', '236.438400', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313934', 2313934, '-409.316101', '1.057956', '244.817902', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313935', 2313935, '-442.272491', '2.403773', '206.166901', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313937', 2313937, '-428.366699', '7.934575', '277.541107', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313938', 2313938, '-418.558289', '9.127686', '293.699799', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313939', 2313939, '-424.849213', '10.891960', '297.223694', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313940', 2313940, '-380.392212', '6.912290', '296.833710', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313942', 2313942, '-357.351105', '2.181993', '273.792603', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313943', 2313943, '-347.798889', '4.318256', '294.331207', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313944', 2313944, '-351.491608', '4.226702', '289.814514', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313946', 2313946, '-350.392914', '9.353733', '319.966400', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313948', 2313948, '-347.768402', '-0.140188', '238.560394', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313949', 2313949, '-334.432007', '0.900235', '197.100693', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313952', 2313952, '-512.518005', '10.681730', '106.017303', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313954', 2313954, '-466.272797', '4.568396', '120.049896', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313955', 2313955, '-503.845398', '11.240590', '124.209396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313959', 2313959, '-429.545593', '1.312407', '120.378799', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313963', 2313963, '-417.238586', '0.076732', '65.064568', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313964', 2313964, '-397.897705', '-0.211857', '75.408188', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313967', 2313967, '-395.162506', '-0.289825', '72.009888', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313971', 2313971, '-435.869385', '1.346877', '216.851196', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313974', 2313974, '-381.439911', '-0.122663', '184.500702', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313980', 2313980, '-464.159210', '9.409202', '251.654099', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313982', 2313982, '-452.844788', '11.917580', '265.924805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313984', 2313984, '-436.512909', '7.460858', '266.224792', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191182, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(290, 'e0063', 'bnpc2313985', 2313985, '-410.069000', '6.296681', '281.448486', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313988', 2313988, '-425.559387', '12.804490', '309.608093', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313989', 2313989, '-371.467285', '4.569370', '282.813202', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313991', 2313991, '-342.802002', '1.347080', '267.457001', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313993', 2313993, '-365.310303', '-0.244142', '207.010696', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2313994', 2313994, '-370.665497', '1.130038', '238.255402', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314003', 2314003, '-253.246994', '-4.236800', '221.935196', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314004', 2314004, '-227.049805', '-5.537235', '202.864395', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314005', 2314005, '-197.435196', '-7.994266', '221.269196', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314006', 2314006, '-200.220596', '-8.231664', '224.271805', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314009', 2314009, '-125.018700', '-7.681337', '231.549805', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176048, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314010', 2314010, '-129.776001', '-7.944516', '225.414200', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175776, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314034', 2314034, '-112.974503', '2.718925', '356.892609', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164364, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc2314035', 2314035, '-118.974602', '1.573215', '349.996094', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164092, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc2314041', 2314041, '-43.174789', '-3.827868', '319.130188', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314043', 2314043, '-31.562269', '-4.485572', '194.662094', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157322, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc2314047', 2314047, '-33.348999', '-6.685591', '211.045303', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157050, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc2314048', 2314048, '-54.297371', '-4.774252', '197.991501', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157594, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc2314070', 2314070, '-59.919048', '11.628480', '435.431305', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314088', 2314088, '-35.123161', '16.027519', '447.688507', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314102', 2314102, '-45.542999', '11.092310', '429.655396', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314107', 2314107, '-24.940210', '7.788889', '415.915497', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314112', 2314112, '2.340681', '1.029590', '360.915588', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314133', 2314133, '-1.470222', '0.327971', '355.323486', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314135', 2314135, '-2.340280', '16.406719', '467.504791', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173600, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314136', 2314136, '1.744962', '15.965160', '463.338013', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173328, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314137', 2314137, '67.368530', '7.949890', '446.280609', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173056, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314138', 2314138, '46.122662', '7.817679', '439.927185', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172784, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314139', 2314139, '108.354301', '9.109589', '407.461609', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159220, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314140', 2314140, '104.234299', '8.804408', '412.466614', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159764, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314141', 2314141, '123.021004', '12.317820', '423.590515', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159492, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314142', 2314142, '109.849602', '10.971190', '457.846893', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158948, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314144', 2314144, '68.332771', '7.866884', '474.070587', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314145', 2314145, '42.399090', '7.746444', '460.622803', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314146', 2314146, '97.762482', '7.782855', '392.593201', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314147', 2314147, '82.413742', '7.833769', '430.187286', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314148', 2314148, '4.571571', '14.724090', '481.634888', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314149', 2314149, '115.912598', '11.103390', '432.906311', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314150', 2314150, '2.013238', '9.902340', '432.648193', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314151', 2314151, '-58.361721', '5.610658', '400.360504', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314152', 2314152, '-85.923592', '7.095398', '408.499207', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314153', 2314153, '-89.646797', '6.881772', '406.576599', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314154', 2314154, '-6.062557', '1.064418', '360.585297', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314155', 2314155, '5.446085', '-3.557740', '326.017792', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314156', 2314156, '4.316917', '-3.595564', '325.071686', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314157', 2314157, '-28.881241', '-5.070975', '313.819092', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314159', 2314159, '-46.860470', '-8.011047', '221.606705', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314160', 2314160, '-69.568810', '-5.347832', '198.726303', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314161', 2314161, '-58.732021', '-3.341773', '321.766907', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314163', 2314163, '-122.044701', '1.863278', '351.901215', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314164', 2314164, '-134.686493', '5.714658', '377.345215', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314165', 2314165, '-91.805458', '-7.624840', '295.133911', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314166', 2314166, '-113.416000', '-7.987957', '278.087799', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314173', 2314173, '-122.484200', '-7.126010', '289.814514', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314174', 2314174, '-230.604599', '-5.478079', '208.442703', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314175', 2314175, '-207.367706', '-5.861229', '204.890305', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314177', 2314177, '-255.068893', '-4.175101', '226.840500', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314180', 2314180, '-330.692505', '7.278777', '313.762604', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314181', 2314181, '-317.594910', '9.477072', '339.549591', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314192', 2314192, '-345.082794', '6.485037', '63.248600', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147228, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc2314196', 2314196, '-237.055405', '3.071132', '110.837601', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148588, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc2314197', 2314197, '-241.022705', '2.939748', '114.865997', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147500, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc2314228', 2314228, '-134.111603', '-2.151569', '175.158295', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc2314253', 2314253, '-336.507202', '6.607109', '55.985298', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314258', 2314258, '-287.312195', '8.499228', '64.072594', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314261', 2314261, '-285.236908', '7.675241', '65.262787', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314262', 2314262, '-249.378204', '7.888867', '63.401192', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314265', 2314265, '-295.246887', '5.966230', '120.439400', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314267', 2314267, '-244.488403', '4.113512', '102.499100', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314270', 2314270, '-200.428696', '4.427309', '103.759300', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314275', 2314275, '-199.511703', '13.382110', '47.836979', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314276', 2314276, '-226.188293', '11.478340', '8.346189', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148860, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc2314280', 2314280, '-188.377304', '27.717520', '-44.157928', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314286', 2314286, '-183.089706', '31.517771', '-61.713600', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314288', 2314288, '-189.410294', '46.463669', '-104.997398', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314290', 2314290, '-191.485504', '47.196110', '-107.194702', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314302', 2314302, '-182.177505', '1.937849', '136.217194', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314304', 2314304, '-186.236404', '2.212511', '133.592697', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314305', 2314305, '-141.374893', '-2.090533', '175.005707', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314308', 2314308, '-187.396103', '-1.052920', '170.153305', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314309', 2314309, '-129.839096', '0.320392', '156.450699', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314314', 2314314, '-186.266907', '-0.961365', '166.521698', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314362', 2314362, '-5.424891', '19.709511', '-18.332621', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 116682, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc2314363', 2314363, '-6.294857', '20.221451', '15.311720', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121022, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc2314364', 2314364, '80.094597', '9.658875', '14.206050', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117764, 2, 0, 0, 0, 0, 30124, 0, 0, 0), +(290, 'e0063', 'bnpc2314365', 2314365, '111.406097', '6.393494', '-42.557430', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116954, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc2314366', 2314366, '113.664398', '5.874695', '-41.245178', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119662, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc2314369', 2314369, '176.512604', '-4.252202', '-4.205355', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118036, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(290, 'e0063', 'bnpc2314398', 2314398, '350.148193', '-2.774287', '-52.136921', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117226, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(290, 'e0063', 'bnpc2314451', 2314451, '-12.582740', '19.341261', '-16.372990', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314457', 2314457, '-8.483642', '19.834230', '12.296340', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314458', 2314458, '60.166260', '13.473630', '9.872559', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314460', 2314460, '90.726227', '9.726084', '-48.813629', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314462', 2314462, '184.311996', '-2.061695', '22.900990', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314464', 2314464, '212.298294', '-3.300554', '68.344177', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314465', 2314465, '254.499100', '-0.309484', '161.274002', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314466', 2314466, '216.507706', '0.515230', '114.319603', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314610', 2314610, '306.118286', '-6.238892', '11.614130', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314612', 2314612, '236.715302', '-5.231476', '-56.311989', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314613', 2314613, '213.666504', '-2.576396', '-14.211420', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314617', 2314617, '332.661499', '-4.732603', '-51.060032', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314621', 2314621, '364.126007', '-2.822966', '-30.502831', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314623', 2314623, '361.654114', '-2.670410', '-53.025211', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314626', 2314626, '519.135681', '-12.154410', '-35.360329', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314632', 2314632, '562.935120', '-12.088730', '-2.092934', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314634', 2314634, '546.164124', '-11.988440', '-64.370163', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314640', 2314640, '622.314026', '-13.134470', '-6.901284', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314642', 2314642, '619.809082', '-12.711930', '-6.546345', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2314715', 2314715, '570.641479', '-12.100450', '-40.116009', 63, 0, 0, 0, 1, 6, 0, 0, 60, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133220, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(290, 'e0063', 'bnpc2314717', 2314717, '566.063782', '-11.947860', '-47.776039', 64, 0, 0, 0, 0, 6, 0, 0, 61, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132954, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(290, 'e0063', 'bnpc2314726', 2314726, '556.389587', '-12.008900', '-42.404869', 55, 0, 0, 0, 1, 6, 0, 0, 53, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132688, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2319905', 2319905, '133.538803', '-23.850300', '-524.211304', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2319906', 2319906, '135.644501', '-24.169041', '-527.507324', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2319916', 2319916, '176.574203', '-26.295950', '-563.569885', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2319917', 2319917, '177.984299', '-26.445820', '-561.296326', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2319918', 2319918, '128.970001', '-22.921940', '-557.568481', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2320483', 2320483, '376.638397', '-2.304138', '-39.993961', 61, 0, 0, 0, 1, 6, 0, 0, 58, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128886, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(290, 'e0063', 'bnpc2320484', 2320484, '381.979004', '-2.517761', '-36.209721', 62, 0, 0, 0, 0, 6, 0, 0, 59, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128620, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(290, 'e0063', 'bnpc2320487', 2320487, '378.164307', '-2.273621', '-37.033691', 55, 0, 0, 0, 1, 6, 0, 0, 53, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2320488', 2320488, '413.927094', '-11.864880', '-0.202001', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2320489', 2320489, '450.408203', '-11.066550', '-6.123241', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127708, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2341765', 2341765, '66.095573', '7.840286', '477.260101', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2341766', 2341766, '43.036430', '7.860031', '467.247192', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2341767', 2341767, '24.573021', '9.672716', '473.677795', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2350399', 2350399, '-284.382385', '11.856210', '-27.054291', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146424, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2350400', 2350400, '-260.730988', '11.703620', '-32.242359', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146152, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2350401', 2350401, '-287.373199', '11.490000', '-7.705853', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139660, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2350402', 2350402, '-285.664215', '12.558130', '-52.719971', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145880, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc2350715', 2350715, '350.270203', '-2.804400', '-50.397419', 762, 0, 0, 0, 0, 6, 0, 0, 64, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121294, 2, 0, 0, 0, 0, 30120, 0, 0, 0), +(290, 'e0063', 'bnpc2350717', 2350717, '364.079590', '-4.248232', '-7.079392', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118852, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc2499386', 2499386, '-228.497696', '12.354860', '2.668262', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3694733', 3694733, '-401.218414', '11.367920', '318.654388', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186570, 5, 0, 0, 0, 0, 30059, 0, 0, 0), +(290, 'e0063', 'bnpc3694734', 3694734, '-406.210388', '11.893380', '317.922485', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186298, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc3694735', 3694735, '-390.079987', '10.675150', '320.996399', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186026, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc3694736', 3694736, '-405.569611', '9.872559', '309.346100', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185754, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc3694737', 3694737, '-399.718811', '10.832540', '315.967102', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185482, 5, 0, 0, 0, 0, 30059, 0, 0, 0), +(290, 'e0063', 'bnpc3694738', 3694738, '-398.236786', '11.123780', '318.544708', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185210, 5, 0, 0, 0, 0, 30060, 0, 0, 0), +(290, 'e0063', 'bnpc3694900', 3694900, '-355.928314', '-0.308188', '209.458206', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3694901', 3694901, '-358.039886', '-0.389206', '203.009705', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3694902', 3694902, '-359.232910', '-0.298962', '198.263794', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3694903', 3694903, '-364.384613', '-0.113241', '212.442200', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3694904', 3694904, '-376.390198', '-0.538467', '203.341293', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3694905', 3694905, '-364.056610', '-0.145500', '194.541702', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3694906', 3694906, '-378.323914', '-0.373772', '200.093002', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3694907', 3694907, '-368.149506', '-0.318695', '203.149994', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3694908', 3694908, '-401.144989', '0.532858', '100.339798', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184400, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3694909', 3694909, '-394.740112', '-0.280364', '154.306000', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184128, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3694910', 3694910, '-391.653412', '-0.503595', '210.406601', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184672, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3695051', 3695051, '-419.371887', '0.232080', '192.587006', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183856, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3695053', 3695053, '-421.990997', '0.316387', '76.746277', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184944, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3696616', 3696616, '-96.760498', '3.493882', '366.300812', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163276, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3696617', 3696617, '-93.824730', '3.873965', '372.828613', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163004, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3696618', 3696618, '-127.003799', '2.972143', '361.243103', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3696619', 3696619, '-133.940903', '6.157478', '379.316498', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3696870', 3696870, '-90.013023', '12.924340', '438.193298', 311, 0, 0, 0, 1, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162194, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3696872', 3696872, '-97.337341', '11.276370', '431.967590', 311, 0, 0, 0, 1, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161922, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(290, 'e0063', 'bnpc3696873', 3696873, '-91.318466', '10.895230', '429.915894', 311, 0, 0, 0, 0, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161650, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(290, 'e0063', 'bnpc3696876', 3696876, '-81.651070', '11.886730', '434.470093', 79, 0, 0, 0, 1, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(290, 'e0063', 'bnpc3696877', 3696877, '-91.226921', '11.092580', '430.953491', 79, 0, 0, 0, 0, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161112, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(290, 'e0063', 'bnpc3696878', 3696878, '-87.327423', '11.154300', '431.082611', 79, 0, 0, 0, 0, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160840, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(290, 'e0063', 'bnpc3696879', 3696879, '-90.402939', '11.068160', '430.739899', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160574, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(290, 'e0063', 'bnpc3697774', 3697774, '-88.120903', '11.001710', '430.441711', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160302, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(290, 'e0063', 'bnpc3697775', 3697775, '-88.426071', '11.490000', '427.695099', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160030, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(290, 'e0063', 'bnpc3697778', 3697778, '92.364197', '7.706964', '389.248596', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3697779', 3697779, '108.716797', '9.727629', '431.794403', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3697780', 3697780, '80.686493', '7.961041', '421.256897', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157860, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3698022', 3698022, '-75.550377', '-5.582465', '200.264694', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156778, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3698023', 3698023, '-38.882149', '-4.081942', '191.941605', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156506, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3698921', 3698921, '-37.577309', '-8.258268', '242.908295', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156234, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3700086', 3700086, '-37.311859', '-8.389291', '259.427307', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155962, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3701093', 3701093, '-28.851320', '-7.961150', '249.751205', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155690, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3726783', 3726783, '-306.845306', '7.615899', '107.505699', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145342, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3726785', 3726785, '-258.686188', '7.797313', '66.056259', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145070, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3726788', 3726788, '-219.973602', '2.520791', '114.552399', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144798, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3726789', 3726789, '-199.571198', '6.403381', '88.836418', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144526, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3727336', 3727336, '-233.240204', '11.494870', '34.787762', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144254, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3727339', 3727339, '-197.756302', '14.999770', '41.853489', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143982, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3727712', 3727712, '-313.497192', '11.569130', '-31.583179', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3727713', 3727713, '-314.589386', '11.902390', '-35.298470', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3727714', 3727714, '-306.619385', '11.253370', '-13.814930', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3727715', 3727715, '-278.890808', '12.580250', '-40.299412', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3727717', 3727717, '-267.242004', '11.943940', '-40.949741', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3727718', 3727718, '-273.701111', '11.886720', '-21.286381', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc3727732', 3727732, '-134.691406', '15.243710', '-3.646973', 70, 0, 0, 0, 0, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142090, 1, 0, 0, 0, 17, 30120, 0, 0, 0), +(290, 'e0063', 'bnpc3727734', 3727734, '-137.071793', '14.908020', '-3.555420', 71, 0, 0, 0, 1, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141824, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc3727735', 3727735, '-134.325195', '15.182740', '-2.365173', 72, 0, 0, 0, 0, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141558, 1, 0, 0, 0, 17, 30119, 0, 0, 0), +(290, 'e0063', 'bnpc3727738', 3727738, '-101.701401', '19.180540', '10.727050', 70, 0, 0, 0, 1, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141274, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc3727739', 3727739, '-69.779541', '17.349430', '6.759644', 71, 0, 0, 0, 0, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141008, 1, 0, 0, 0, 17, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc3727740', 3727740, '-74.509888', '17.685120', '8.499207', 72, 0, 0, 0, 1, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140742, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc3727743', 3727743, '-106.065498', '18.173450', '14.633350', 71, 0, 0, 0, 0, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140464, 1, 0, 0, 0, 17, 30121, 0, 0, 0), +(290, 'e0063', 'bnpc3727744', 3727744, '-104.844803', '18.509150', '14.328170', 72, 0, 0, 0, 0, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140198, 1, 0, 0, 0, 17, 30120, 0, 0, 0), +(290, 'e0063', 'bnpc3727745', 3727745, '-105.729797', '18.387070', '12.954860', 70, 0, 0, 0, 0, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139914, 1, 0, 0, 0, 17, 30119, 0, 0, 0), +(290, 'e0063', 'bnpc3727746', 3727746, '246.108398', '-4.984168', '-31.182381', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125562, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3727747', 3727747, '221.653900', '-5.011750', '-51.817490', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125290, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3729074', 3729074, '76.092232', '11.110100', '-47.602612', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124552, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3729746', 3729746, '86.654007', '8.922870', '-28.246519', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124280, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3729747', 3729747, '108.261803', '6.031532', '-26.458651', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124008, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3729748', 3729748, '115.837196', '4.964785', '13.643280', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123736, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3729749', 3729749, '71.684547', '11.649810', '-44.096661', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123464, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc3741023', 3741023, '381.093994', '-2.365173', '-37.277828', 55, 0, 0, 0, 0, 6, 0, 0, 53, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123168, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(290, 'e0063', 'bnpc3741027', 3741027, '379.934296', '-2.304138', '-35.904541', 62, 0, 0, 0, 0, 6, 0, 0, 59, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122908, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(290, 'e0063', 'bnpc3741028', 3741028, '378.072815', '-2.426208', '-33.066349', 61, 0, 0, 0, 1, 6, 0, 0, 58, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122630, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(290, 'e0063', 'bnpc3741029', 3741029, '565.056824', '-11.978380', '-48.966251', 55, 0, 0, 0, 0, 6, 0, 0, 53, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122352, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(290, 'e0063', 'bnpc3741030', 3741030, '546.837524', '-12.436150', '-46.677391', 64, 0, 0, 0, 1, 6, 0, 0, 61, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122074, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(290, 'e0063', 'bnpc3741031', 3741031, '549.614624', '-12.436150', '-49.210388', 63, 0, 0, 0, 1, 6, 0, 0, 60, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121796, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(290, 'e0063', 'bnpc3870165', 3870165, '-530.557922', '11.925130', '70.277603', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22788, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(290, 'e0063', 'bnpc3870175', 3870175, '-197.120804', '-1.760828', '261.203003', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22522, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(290, 'e0063', 'bnpc3870206', 3870206, '-273.557404', '0.846183', '289.320587', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22244, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(290, 'e0063', 'bnpc4317800', 4317800, '498.771515', '-17.898861', '-313.954407', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110750, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317801', 4317801, '451.322998', '-15.501170', '-279.865692', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110484, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc4317802', 4317802, '514.823975', '-20.341690', '-358.783813', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 110218, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc4317803', 4317803, '260.486694', '-11.080910', '-154.824493', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109958, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4317804', 4317804, '357.625610', '-18.265079', '-146.196701', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109686, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4317805', 4317805, '327.286591', '-17.372709', '-188.968796', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109414, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4317817', 4317817, '294.575806', '-12.980530', '-180.587906', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109142, 2, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(290, 'e0063', 'bnpc4317818', 4317818, '388.959412', '-18.823000', '-212.157593', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108876, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4317819', 4317819, '314.365814', '-18.527800', '-289.215912', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108604, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4317820', 4317820, '329.818115', '-17.597429', '-223.296097', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108332, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4317821', 4317821, '370.788086', '-17.580059', '-245.788101', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108060, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4317822', 4317822, '291.974792', '-19.793560', '-289.794800', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107788, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4317826', 4317826, '253.924606', '-23.493771', '-397.838715', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107522, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4317827', 4317827, '253.467499', '-24.551821', '-431.753998', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107250, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4317829', 4317829, '213.044601', '-20.737579', '-407.032990', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106978, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4317830', 4317830, '215.188202', '-20.979630', '-409.962799', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106706, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4317832', 4317832, '145.520706', '-23.570749', '-477.912994', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106314, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4317833', 4317833, '133.494904', '-23.758650', '-547.963074', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106042, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4317834', 4317834, '173.863693', '-25.574671', '-517.082520', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105770, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4317836', 4317836, '-10.175820', '-35.238060', '-550.143311', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105498, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4317838', 4317838, '-52.048519', '-35.202579', '-528.496216', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105226, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4317839', 4317839, '186.907700', '-23.727840', '-376.882599', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105074, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4317840', 4317840, '126.817703', '-25.925110', '-347.127502', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104808, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4317842', 4317842, '115.994499', '-26.717680', '-354.423096', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104536, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4317844', 4317844, '88.409050', '-26.293819', '-339.833893', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104264, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4317849', 4317849, '137.315903', '-23.270020', '-304.951599', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103992, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4317852', 4317852, '155.825104', '-29.775539', '-226.307693', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103564, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4317853', 4317853, '113.237198', '-29.434690', '-221.118500', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103292, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4317854', 4317854, '146.903900', '-29.527519', '-215.189804', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103020, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4317855', 4317855, '129.991104', '-29.535959', '-245.124496', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102748, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4317863', 4317863, '207.402206', '-6.915606', '-189.063599', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102596, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317864', 4317864, '351.494507', '-15.727020', '-259.491211', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 102330, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc4317873', 4317873, '284.544312', '-19.539360', '-291.495911', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 102046, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc4317874', 4317874, '368.856201', '-20.248779', '-184.771500', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101780, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(290, 'e0063', 'bnpc4317875', 4317875, '368.581512', '-20.218201', '-183.856003', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101514, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(290, 'e0063', 'bnpc4317885', 4317885, '366.659302', '-17.544319', '-237.723404', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101236, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317886', 4317886, '443.139709', '-18.693390', '-238.559097', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100970, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317887', 4317887, '249.626694', '-24.511021', '-435.444397', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 100698, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc4317891', 4317891, '131.792099', '-25.070620', '-394.277893', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100420, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317893', 4317893, '112.708099', '-30.261940', '-194.688599', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100154, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc4317894', 4317894, '193.408096', '-31.479370', '-219.684097', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99870, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc4317897', 4317897, '129.072906', '-22.173210', '-564.551880', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 99604, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc4317899', 4317899, '253.498001', '-23.239559', '-517.052002', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99338, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317900', 4317900, '165.575607', '-26.840639', '-542.717712', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99060, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(290, 'e0063', 'bnpc4317901', 4317901, '166.460602', '-26.871220', '-543.541626', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98782, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(290, 'e0063', 'bnpc4317902', 4317902, '156.908401', '-24.429689', '-455.588593', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98522, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc4317903', 4317903, '-37.241699', '-35.085869', '-537.987976', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98250, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317904', 4317904, '-33.412891', '-35.156620', '-549.607971', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97972, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317905', 4317905, '-27.481510', '-34.836430', '-541.802124', 762, 0, 0, 0, 1, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97694, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317909', 4317909, '143.718704', '-29.336210', '-230.073807', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97434, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317911', 4317911, '119.399300', '-26.408409', '-346.557190', 762, 0, 0, 0, 1, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97150, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317912', 4317912, '139.559601', '-29.771700', '-244.522903', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 96884, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc4317916', 4317916, '565.405212', '-22.088120', '-350.810913', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96606, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc4317917', 4317917, '558.970886', '-22.530359', '-353.985687', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96346, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317918', 4317918, '561.280518', '-22.530359', '-344.947998', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96068, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317920', 4317920, '553.652527', '-24.130871', '-379.476715', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95790, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(290, 'e0063', 'bnpc4317921', 4317921, '528.888000', '-24.002501', '-316.121185', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95530, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317922', 4317922, '552.422424', '-24.124571', '-379.629211', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95252, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(290, 'e0063', 'bnpc4317923', 4317923, '516.716187', '-20.340330', '-366.170807', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94986, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317924', 4317924, '544.539673', '-24.024820', '-352.536011', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94702, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317925', 4317925, '573.032776', '-24.048040', '-372.673492', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94436, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317927', 4317927, '408.712799', '-28.427610', '-401.419098', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94164, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317930', 4317930, '335.927399', '-28.671749', '-421.042206', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93886, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(290, 'e0063', 'bnpc4317931', 4317931, '335.683105', '-28.763309', '-419.913086', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93620, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(290, 'e0063', 'bnpc4317932', 4317932, '349.965607', '-28.000311', '-412.710785', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93354, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317933', 4317933, '339.902313', '-28.306200', '-487.054108', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93070, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317934', 4317934, '370.887909', '-34.493279', '-462.935608', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 92804, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc4317935', 4317935, '351.582886', '-28.032480', '-484.519714', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92538, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317936', 4317936, '425.497803', '-28.366579', '-482.505615', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92254, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317937', 4317937, '424.521210', '-27.908751', '-463.431793', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91988, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317938', 4317938, '358.322601', '-28.245850', '-509.974213', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91722, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc4317939', 4317939, '388.815186', '-34.042912', '-418.204010', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91438, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317940', 4317940, '413.626190', '-34.042912', '-447.318207', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91172, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317943', 4317943, '383.576294', '-27.500000', '-515.033020', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90906, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(290, 'e0063', 'bnpc4317944', 4317944, '403.162109', '-27.877609', '-499.533905', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 90628, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc4317945', 4317945, '384.859497', '-27.500000', '-514.937012', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90350, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(290, 'e0063', 'bnpc4317946', 4317946, '391.422485', '-17.924709', '-377.696991', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90090, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4317948', 4317948, '450.847504', '-28.334009', '-441.002411', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89806, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4516039', 4516039, '201.957901', '-6.015132', '-140.727798', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89558, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4516054', 4516054, '302.846893', '-13.662720', '-70.995468', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89286, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4516060', 4516060, '90.040314', '-26.979679', '-315.730499', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89032, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4516061', 4516061, '118.730499', '-25.303860', '-328.093414', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88760, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4516069', 4516069, '76.916473', '-30.135340', '-176.278107', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88332, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4516071', 4516071, '109.801003', '-30.350300', '-144.088104', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88060, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4516076', 4516076, '178.212997', '-26.243820', '-569.578918', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87818, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4526138', 4526138, '207.189499', '-4.405000', '-55.771381', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4526153', 4526153, '101.728302', '6.775696', '-29.255630', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4526159', 4526159, '-5.661133', '19.302610', '-20.096189', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 114784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4526163', 4526163, '295.063599', '0.717163', '180.926102', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4526170', 4526170, '243.762802', '-2.334717', '93.644531', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4526175', 4526175, '514.976685', '-20.248779', '-360.982697', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4526185', 4526185, '349.873993', '-15.610050', '-260.578400', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4526186', 4526186, '405.020111', '-28.000311', '-500.633209', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4526187', 4526187, '370.778900', '-34.470150', '-460.959808', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4526188', 4526188, '286.335602', '-19.760500', '-293.202087', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4526189', 4526189, '126.848099', '-22.110350', '-563.561523', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4526190', 4526190, '138.658707', '-23.403219', '-470.115204', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4526191', 4526191, '252.338394', '-24.643370', '-435.141510', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85780, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4526192', 4526192, '119.127197', '-25.162230', '-324.086395', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4526193', 4526193, '137.078705', '-29.800461', '-246.062698', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4526240', 4526240, '214.825394', '-19.554331', '-398.094788', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84946, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4553457', 4553457, '345.774902', '-15.417000', '-261.117798', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84668, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4553459', 4553459, '361.297913', '-25.751591', '-438.400085', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84378, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4553469', 4553469, '139.198593', '-23.542650', '-467.790009', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84094, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc4588198', 4588198, '119.859596', '-21.530519', '-297.352600', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83828, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4588199', 4588199, '116.324303', '-25.430050', '-324.881592', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83550, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(290, 'e0063', 'bnpc4588205', 4588205, '443.598206', '-24.245310', '-392.653687', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83278, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4592960', 4592960, '291.767700', '-13.992610', '-129.503403', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83006, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(290, 'e0063', 'bnpc4618294', 4618294, '99.668091', '8.096478', '-41.502491', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4618295', 4618295, '114.137100', '6.064597', '-18.577110', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4618296', 4618296, '119.902702', '5.962872', '-52.469212', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4618297', 4618297, '273.146088', '-0.359490', '138.990295', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113122, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4618298', 4618298, '194.044495', '3.506398', '122.434998', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112850, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4618299', 4618299, '301.813202', '-6.703927', '30.420111', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112506, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4618300', 4618300, '344.534210', '-4.776098', '-14.875460', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112234, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(290, 'e0063', 'bnpc4618301', 4618301, '198.657104', '2.212463', '118.242104', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112064, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4618302', 4618302, '280.378998', '-4.542100', '48.923759', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111792, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4618303', 4618303, '221.648804', '-2.880372', '-13.690810', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111520, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4621091', 4621091, '-46.489208', '15.602010', '3.201886', 2771, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23396, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(290, 'e0063', 'bnpc4621093', 4621093, '622.978821', '-12.883850', '-12.418940', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23130, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1139214', 1139214, '-268.574097', '7.064880', '631.738708', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1139231', 1139231, '-15.879850', '-0.100045', '376.413208', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1139247', 1139247, '-122.621803', '1.180372', '288.650391', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1139253', 1139253, '-116.636803', '1.401093', '293.862488', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1139295', 1139295, '-239.337799', '0.869717', '266.651306', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1139296', 1139296, '-242.175995', '0.625573', '262.958710', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1139314', 1139314, '-234.854004', '-0.100137', '305.762085', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1139319', 1139319, '-284.558105', '1.846295', '342.205505', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1139327', 1139327, '-178.824295', '0.141551', '253.664703', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160176, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1139344', 1139344, '-179.793198', '0.669785', '323.976196', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159904, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1139407', 1139407, '-279.011292', '6.027267', '564.782104', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159632, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1139408', 1139408, '-254.932495', '6.759699', '578.911987', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159360, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1139409', 1139409, '-258.136902', '7.827831', '603.051819', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159088, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1139410', 1139410, '-257.221405', '6.637627', '578.881470', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1139423', 1139423, '-276.386688', '5.966230', '538.170288', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158544, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1139425', 1139425, '-266.529388', '5.020171', '542.473389', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1139430', 1139430, '-220.569199', '3.982558', '556.969482', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158000, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1140323', 1140323, '48.412201', '22.379660', '245.108307', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124060, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140341', 1140341, '148.210800', '18.142929', '63.034969', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134118, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140355', 1140355, '-167.689697', '4.657228', '188.189499', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1140356', 1140356, '-140.886597', '6.118821', '203.173798', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1140376', 1140376, '-173.095795', '7.162746', '110.695396', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119830, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140378', 1140378, '-169.298904', '4.379292', '134.294601', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119558, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140379', 1140379, '-176.483307', '6.579963', '113.899696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119286, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140393', 1140393, '-213.883896', '11.384410', '78.615593', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119014, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140405', 1140405, '-204.099792', '10.836050', '82.086967', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118742, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140418', 1140418, '-170.832901', '8.611761', '46.359402', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118470, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140419', 1140419, '-163.073196', '7.441800', '53.057159', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118198, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140420', 1140420, '-208.158096', '10.773990', '72.948898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117926, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140429', 1140429, '-210.742401', '9.567359', '0.839199', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117654, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140430', 1140430, '-217.212204', '9.475805', '3.250124', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117382, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140459', 1140459, '-87.514954', '0.030696', '53.398781', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97846, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140460', 1140460, '-83.185509', '0.030617', '55.136490', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98118, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140461', 1140461, '-100.175499', '1.815776', '55.405460', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97302, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140462', 1140462, '-87.013252', '0.030600', '71.372276', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97574, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140539', 1140539, '-119.476097', '5.647681', '112.526497', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117110, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140540', 1140540, '-126.604202', '5.923794', '94.623161', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116838, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140541', 1140541, '-126.329498', '5.844177', '109.056198', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116566, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140980', 1140980, '-313.130402', '25.345190', '-208.453506', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116294, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140981', 1140981, '-326.970612', '26.883949', '-216.976898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116022, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140982', 1140982, '-329.696594', '21.078899', '-165.243500', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115750, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140983', 1140983, '-338.267395', '24.724110', '-191.433197', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115478, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1140984', 1140984, '-323.896515', '19.876869', '-162.956696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115206, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1144407', 1144407, '-272.144714', '17.696960', '57.133450', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105716, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1144408', 1144408, '-257.479095', '14.942520', '80.117462', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1144457', 1144457, '-241.510406', '16.161341', '12.992840', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105444, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1144491', 1144491, '-78.316467', '3.566922', '-36.424759', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106260, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1144547', 1144547, '-106.571297', '7.155371', '-106.524399', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1144577', 1144577, '-127.875000', '6.779816', '-22.488760', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105172, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1144585', 1144585, '-91.407356', '7.599404', '-74.910507', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104900, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1144597', 1144597, '-58.182690', '6.881772', '-97.795113', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1144598', 1144598, '-132.427704', '9.336102', '-104.286499', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1144629', 1144629, '-152.086700', '11.093260', '-140.581406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1144631', 1144631, '-151.639099', '11.652820', '-128.275406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1144632', 1144632, '-167.772995', '9.292697', '-129.167694', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1144653', 1144653, '-78.954659', '4.479653', '-126.207397', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1144691', 1144691, '-129.860199', '13.845340', '-129.543701', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1144692', 1144692, '-205.706894', '9.018035', '-138.750305', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1144694', 1144694, '-208.087296', '9.353733', '-141.039200', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1144747', 1144747, '2.112435', '6.781407', '-26.549141', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107620, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1144748', 1144748, '17.348650', '6.534479', '-18.517111', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107892, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1144786', 1144786, '30.609501', '4.094535', '43.754768', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108164, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1144790', 1144790, '42.343739', '4.165666', '68.558739', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1144793', 1144793, '142.320801', '4.196184', '25.833481', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1144799', 1144799, '40.001209', '4.166452', '71.521370', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1144800', 1144800, '70.561348', '4.166210', '66.426353', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145309', 1145309, '99.839729', '6.729181', '-55.405548', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93954, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145310', 1145310, '104.112297', '7.125916', '-59.922218', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93682, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145311', 1145311, '111.009300', '12.405540', '-76.890251', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93410, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145312', 1145312, '53.134991', '10.581870', '-71.978127', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93138, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145330', 1145330, '33.785549', '7.920002', '-96.910088', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92866, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145331', 1145331, '30.485310', '6.219395', '-100.848801', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92594, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145342', 1145342, '7.202258', '5.720373', '-72.371872', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92322, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145343', 1145343, '0.456908', '5.833508', '-87.359497', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92050, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145344', 1145344, '9.624027', '5.417103', '-76.025612', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91778, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145371', 1145371, '323.490204', '5.164718', '-43.671810', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91506, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145380', 1145380, '267.748199', '4.639788', '9.815885', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91234, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145382', 1145382, '262.290802', '3.068853', '19.805670', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90962, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145556', 1145556, '396.724701', '3.565628', '167.813797', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68950, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145558', 1145558, '440.238007', '1.174898', '187.579102', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68678, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145559', 1145559, '499.565002', '1.571632', '166.216507', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68406, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145562', 1145562, '455.435913', '3.250124', '198.748703', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68134, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145578', 1145578, '484.519714', '3.768931', '199.908401', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67862, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145579', 1145579, '528.374084', '7.553168', '195.361206', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67590, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145581', 1145581, '509.391815', '4.440328', '204.577698', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67318, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145595', 1145595, '513.939880', '14.256400', '137.989304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1145607', 1145607, '549.889282', '11.612070', '204.730194', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66774, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145610', 1145610, '538.797913', '21.846140', '123.039803', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1145612', 1145612, '542.038208', '13.673390', '165.126495', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1145613', 1145613, '504.953491', '14.256390', '115.266296', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1145625', 1145625, '557.183105', '21.846149', '129.558304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1145628', 1145628, '553.643005', '21.683020', '99.412483', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1145631', 1145631, '575.402405', '21.683020', '111.314499', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc1145702', 1145702, '284.107697', '3.982544', '49.240841', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90690, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc1145703', 1145703, '342.275299', '7.889330', '-41.286991', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90418, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299623', 2299623, '-290.183014', '-0.100012', '465.039612', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299626', 2299626, '-303.145111', '-0.100187', '410.650696', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299628', 2299628, '-315.270905', '0.279321', '442.690002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299630', 2299630, '-290.338806', '-0.100002', '403.924103', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299631', 2299631, '-260.457001', '-0.100012', '454.819794', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299632', 2299632, '-166.141800', '-0.100048', '463.106415', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139002, 5, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(291, 'e0064', 'bnpc2299636', 2299636, '-85.984627', '-0.137378', '426.901611', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299637', 2299637, '-105.242203', '-0.100010', '441.452209', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299638', 2299638, '-127.139801', '-0.100007', '331.296906', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299640', 2299640, '-106.279099', '-0.167896', '335.835785', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299642', 2299642, '-76.920776', '0.228838', '434.653198', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299644', 2299644, '-121.995903', '-0.106860', '397.177002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299647', 2299647, '-213.092300', '-0.106860', '435.019409', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299670', 2299670, '105.271896', '19.668831', '117.021400', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299672', 2299672, '179.124298', '15.917120', '38.983059', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299676', 2299676, '67.215942', '23.941410', '138.414597', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133302, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299677', 2299677, '92.332291', '22.476490', '171.373993', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124332, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299678', 2299678, '68.223038', '21.438881', '171.709702', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123788, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299681', 2299681, '27.293150', '20.375059', '193.801193', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299682', 2299682, '76.646019', '20.096081', '218.799103', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123516, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299685', 2299685, '222.992401', '6.174502', '28.347420', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132764, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299686', 2299686, '218.930206', '7.861652', '25.101040', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132492, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299687', 2299687, '219.145096', '9.429937', '43.394890', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132220, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299688', 2299688, '242.878006', '5.513403', '43.686531', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131948, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299693', 2299693, '203.440796', '11.769820', '11.092830', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131676, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299695', 2299695, '183.372894', '13.534710', '15.091120', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131404, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299696', 2299696, '190.876602', '14.557230', '16.119829', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131132, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299697', 2299697, '181.536499', '14.175580', '17.074800', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130860, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299701', 2299701, '46.014000', '24.951891', '129.998001', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299707', 2299707, '62.549999', '18.461660', '250.313202', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299711', 2299711, '-240.650101', '6.790217', '647.669128', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153932, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299712', 2299712, '-268.177307', '7.461614', '616.082886', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299713', 2299713, '-298.512299', '10.330310', '645.349670', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299714', 2299714, '-301.838715', '11.032230', '612.298706', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299716', 2299716, '-278.400909', '7.095398', '588.036926', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299719', 2299719, '-256.092194', '6.362965', '575.310913', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299720', 2299720, '-249.805496', '4.135148', '533.104370', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299722', 2299722, '-243.854507', '-0.167896', '489.982391', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299723', 2299723, '-273.384796', '-0.100012', '454.524109', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299725', 2299725, '-301.158295', '1.302513', '475.886902', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299729', 2299729, '-220.495697', '-0.100054', '427.954590', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151212, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299730', 2299730, '-295.158295', '-0.100004', '416.955688', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299731', 2299731, '-158.892197', '-0.137378', '438.498413', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150668, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299732', 2299732, '-97.367859', '-0.137378', '460.166290', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299733', 2299733, '-102.128700', '-0.106860', '387.319702', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299734', 2299734, '-103.898697', '-0.106860', '385.000305', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299735', 2299735, '-73.472237', '-0.100006', '383.004608', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299736', 2299736, '-119.829102', '-0.106860', '335.713715', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299737', 2299737, '-25.762659', '-0.100045', '385.324402', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299738', 2299738, '-12.145770', '-0.100007', '340.874298', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299739', 2299739, '-36.646210', '-0.100007', '330.899811', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299740', 2299740, '-69.291260', '-0.100006', '346.480591', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299741', 2299741, '-29.965321', '-0.106860', '383.686096', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299742', 2299742, '-152.754807', '-0.100000', '285.928711', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299746', 2299746, '-188.861404', '-0.100036', '279.196106', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299747', 2299747, '-138.628296', '-0.106860', '247.516495', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299748', 2299748, '-207.352600', '-0.100011', '323.235504', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299751', 2299751, '-240.541595', '-0.100076', '309.201599', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299754', 2299754, '-282.546997', '2.068284', '344.383087', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299756', 2299756, '-165.855804', '3.695794', '214.781403', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299762', 2299762, '190.512695', '15.940850', '25.798840', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299764', 2299764, '193.374695', '15.528740', '58.982250', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299765', 2299765, '192.796906', '15.253090', '57.661560', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299767', 2299767, '162.554993', '16.909040', '69.378082', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299768', 2299768, '118.356201', '19.249180', '84.129753', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299769', 2299769, '119.667503', '18.832991', '86.148743', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299771', 2299771, '205.228104', '12.477170', '36.627281', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299772', 2299772, '218.183899', '10.623910', '45.217682', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299775', 2299775, '206.333893', '12.854360', '17.317181', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299777', 2299777, '114.394302', '18.347380', '106.921097', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299779', 2299779, '125.780098', '24.673790', '178.210098', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299781', 2299781, '135.240707', '28.061291', '166.094406', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299782', 2299782, '132.860199', '26.962641', '168.596893', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299783', 2299783, '145.372696', '31.326719', '173.479797', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299785', 2299785, '52.078991', '24.582239', '146.288193', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299786', 2299786, '52.109509', '24.917931', '143.633102', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299788', 2299788, '54.687038', '18.847170', '222.674896', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299789', 2299789, '71.783401', '22.789841', '205.433395', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299791', 2299791, '52.628319', '11.490000', '281.025391', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299792', 2299792, '55.405460', '12.252950', '279.835114', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299799', 2299799, '-333.285889', '20.722960', '-154.265701', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114934, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299800', 2299800, '-287.157501', '15.489150', '-84.197617', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299802', 2299802, '-262.604095', '12.804420', '-65.742996', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106532, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299803', 2299803, '-258.117889', '10.828210', '-67.787712', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299804', 2299804, '-235.706100', '8.377155', '-31.937180', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299812', 2299812, '-156.572906', '6.393483', '12.436060', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114662, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299820', 2299820, '-231.464096', '9.353733', '-146.379807', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299822', 2299822, '-119.740601', '2.027413', '-74.048714', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299823', 2299823, '-98.963509', '2.027430', '-27.024349', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299882', 2299882, '-305.844391', '25.145599', '-209.288696', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299886', 2299886, '-345.664215', '23.928289', '-176.087097', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299887', 2299887, '-347.161285', '24.534389', '-177.381302', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299895', 2299895, '-261.350800', '12.694290', '-76.165604', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299901', 2299901, '-279.804291', '19.410770', '50.600639', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299908', 2299908, '-263.922089', '15.508790', '89.442383', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299911', 2299911, '-145.702393', '6.826308', '-14.807010', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299914', 2299914, '-186.113998', '9.086921', '28.118750', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299915', 2299915, '-149.863907', '4.337313', '105.397102', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299916', 2299916, '-212.124496', '12.717620', '104.362198', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299930', 2299930, '-56.242779', '6.495965', '-71.791733', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299933', 2299933, '-107.042099', '5.264315', '-76.487633', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299936', 2299936, '-66.982857', '5.925140', '-114.246902', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299938', 2299938, '-139.531906', '11.537960', '-122.054199', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299941', 2299941, '-121.466599', '10.386180', '-143.292297', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299945', 2299945, '0.868353', '6.550388', '-34.652611', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299949', 2299949, '57.447720', '3.129161', '-49.835171', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299951', 2299951, '20.675930', '4.623436', '23.544621', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109772, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2299953', 2299953, '102.866203', '4.166452', '53.437038', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2299954', 2299954, '105.180397', '4.165666', '50.461540', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2300024', 2300024, '124.376198', '19.407740', '-146.837601', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90098, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(291, 'e0064', 'bnpc2300025', 2300025, '124.414299', '19.130779', '-145.398300', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89832, 1, 0, 0, 0, 0, 30067, 0, 0, 0), +(291, 'e0064', 'bnpc2300029', 2300029, '83.634644', '9.048584', '-90.501282', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89566, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc2300030', 2300030, '71.000183', '18.234480', '-159.014297', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89282, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(291, 'e0064', 'bnpc2300031', 2300031, '71.760773', '18.225830', '-160.113007', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89016, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(291, 'e0064', 'bnpc2300041', 2300041, '179.222198', '18.223680', '-145.087006', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88744, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc2300042', 2300042, '170.907196', '17.193430', '-151.395401', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88466, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(291, 'e0064', 'bnpc2300044', 2300044, '121.843201', '20.218161', '-96.971130', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88200, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(291, 'e0064', 'bnpc2300045', 2300045, '123.185997', '20.370750', '-97.032173', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87922, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(291, 'e0064', 'bnpc2300047', 2300047, '131.347900', '20.830030', '-112.115501', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87650, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc2300048', 2300048, '136.095200', '18.936399', '-149.187500', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87378, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc2300050', 2300050, '99.198853', '17.898781', '-160.631805', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87118, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc2300051', 2300051, '171.717804', '17.307770', '-150.139297', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86846, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(291, 'e0064', 'bnpc2300067', 2300067, '435.940704', '-0.982693', '5.487583', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76704, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(291, 'e0064', 'bnpc2300068', 2300068, '440.817810', '-1.144474', '-14.663970', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86520, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc2300072', 2300072, '438.040710', '-0.412041', '-42.984711', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71530, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(291, 'e0064', 'bnpc2300074', 2300074, '441.568298', '0.782855', '-28.634399', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc2300077', 2300077, '426.413208', '-0.717224', '-50.309021', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72346, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(291, 'e0064', 'bnpc2300080', 2300080, '399.968506', '4.262952', '-41.852612', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74800, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(291, 'e0064', 'bnpc2300084', 2300084, '360.969208', '1.840043', '-6.628087', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75616, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc2300091', 2300091, '376.814392', '4.773165', '-33.204460', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71258, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(291, 'e0064', 'bnpc2300092', 2300092, '356.160797', '2.687235', '2.700800', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86248, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc2300095', 2300095, '366.384308', '1.052825', '12.741240', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76160, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(291, 'e0064', 'bnpc2300098', 2300098, '387.472290', '-0.900329', '20.340231', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85976, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(291, 'e0064', 'bnpc2300099', 2300099, '387.075500', '-1.022401', '21.408360', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75888, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(291, 'e0064', 'bnpc2300103', 2300103, '403.433197', '-2.121051', '16.250811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85704, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc2300104', 2300104, '436.545288', '-1.022401', '4.501364', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72074, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(291, 'e0064', 'bnpc2300105', 2300105, '435.723999', '-1.106398', '3.907724', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75344, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(291, 'e0064', 'bnpc2300115', 2300115, '389.150787', '4.287738', '-36.392811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc2300119', 2300119, '397.360107', '0.381429', '115.953300', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64870, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2300123', 2300123, '371.755493', '-3.015678', '139.708099', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2300126', 2300126, '360.794006', '0.882443', '141.705902', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64326, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2300129', 2300129, '415.670990', '3.677377', '157.396805', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64054, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2300135', 2300135, '458.854004', '3.829967', '201.098602', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63782, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2300137', 2300137, '476.584991', '0.595055', '149.950302', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2300147', 2300147, '552.727478', '9.658914', '216.571198', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2300183', 2300183, '383.639801', '-2.278431', '92.591690', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300184', 2300184, '382.528412', '-2.487267', '93.400421', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300186', 2300186, '375.396393', '-4.129155', '77.561340', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300187', 2300187, '364.309113', '-4.655180', '71.455116', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300189', 2300189, '365.917114', '-5.088186', '65.510399', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300192', 2300192, '411.093201', '3.616341', '129.442200', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300193', 2300193, '410.513397', '4.074111', '156.633804', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300197', 2300197, '458.426697', '0.625573', '163.103607', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300199', 2300199, '458.792908', '0.625573', '164.843201', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300201', 2300201, '504.417389', '3.433233', '169.054596', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300202', 2300202, '512.107971', '5.050689', '209.033295', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300204', 2300204, '495.841888', '5.844158', '182.604706', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300205', 2300205, '544.090881', '10.452380', '201.525803', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300207', 2300207, '540.215088', '16.250811', '152.025604', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300211', 2300211, '525.902100', '19.058470', '105.821297', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300212', 2300212, '526.207275', '19.119511', '106.095901', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300214', 2300214, '570.489014', '22.507010', '119.554398', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300215', 2300215, '558.794128', '21.835609', '103.813599', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300217', 2300217, '592.919678', '25.558809', '131.029205', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300218', 2300218, '595.269714', '25.497780', '132.829697', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300222', 2300222, '158.947800', '16.443180', '-139.791306', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300223', 2300223, '162.681396', '16.443199', '-145.830505', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300229', 2300229, '47.617500', '4.166452', '66.536598', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300236', 2300236, '296.403412', '-0.256715', '-3.540742', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300237', 2300237, '307.939301', '-0.256714', '-0.769719', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2300241', 2300241, '306.026306', '-0.256723', '1.577364', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2308368', 2308368, '-332.770508', '11.416920', '613.476685', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145778, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(291, 'e0064', 'bnpc2308369', 2308369, '-343.075592', '12.112200', '626.433289', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144424, 1, 0, 0, 0, 41, 30083, 0, 0, 0), +(291, 'e0064', 'bnpc2308372', 2308372, '-345.601593', '15.548900', '608.209290', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143880, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc2308373', 2308373, '-344.072388', '20.119520', '620.861877', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145506, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(291, 'e0064', 'bnpc2308806', 2308806, '-332.725800', '11.426350', '614.251526', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143608, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(291, 'e0064', 'bnpc2308807', 2308807, '-333.646912', '11.427370', '613.129211', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144152, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(291, 'e0064', 'bnpc2308808', 2308808, '-325.795410', '11.581550', '623.895630', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144696, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(291, 'e0064', 'bnpc2308809', 2308809, '-333.211304', '11.428960', '605.065918', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145234, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(291, 'e0064', 'bnpc2308811', 2308811, '-314.290100', '11.306890', '604.882813', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144962, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(291, 'e0064', 'bnpc2308812', 2308812, '-302.510101', '16.006670', '74.845451', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109506, 1, 0, 0, 0, 8, 30065, 0, 0, 0), +(291, 'e0064', 'bnpc2308813', 2308813, '-305.806091', '17.837749', '80.064034', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109240, 1, 0, 0, 0, 8, 30072, 0, 0, 0), +(291, 'e0064', 'bnpc2308814', 2308814, '-302.204987', '16.159260', '76.035652', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108974, 1, 0, 0, 0, 8, 30079, 0, 0, 0), +(291, 'e0064', 'bnpc2308815', 2308815, '-306.242096', '16.501289', '63.830650', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108702, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc2308816', 2308816, '-295.566986', '17.347191', '79.688187', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108418, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc2308817', 2308817, '73.624763', '7.705750', '-111.894501', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83570, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(291, 'e0064', 'bnpc2308818', 2308818, '74.906487', '7.766785', '-112.382797', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83304, 1, 0, 0, 0, 0, 30074, 0, 0, 0), +(291, 'e0064', 'bnpc2308819', 2308819, '68.253563', '7.766795', '-107.438797', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83038, 1, 0, 0, 0, 0, 30081, 0, 0, 0), +(291, 'e0064', 'bnpc2308820', 2308820, '72.922729', '7.614197', '-102.708603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82766, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc2308822', 2308822, '80.979607', '7.614197', '-109.636101', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82488, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc2310066', 2310066, '447.442291', '0.685165', '-106.462196', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82168, 1, 0, 0, 0, 5, 30073, 0, 0, 0), +(291, 'e0064', 'bnpc2310068', 2310068, '439.536102', '-0.228932', '-82.414017', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71802, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(291, 'e0064', 'bnpc2310072', 2310072, '447.196014', '-0.473083', '-64.896667', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81896, 1, 0, 0, 0, 5, 30079, 0, 0, 0), +(291, 'e0064', 'bnpc2310073', 2310073, '448.172607', '-0.473083', '-65.140808', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75072, 1, 0, 0, 0, 5, 30077, 0, 0, 0), +(291, 'e0064', 'bnpc2310077', 2310077, '606.902283', '21.846050', '94.322968', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310079', 2310079, '628.601990', '21.846140', '96.549973', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310080', 2310080, '634.544983', '21.846140', '87.894997', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310081', 2310081, '632.357971', '21.846130', '64.279701', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56692, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310082', 2310082, '626.666382', '21.845909', '61.769680', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56420, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310083', 2310083, '607.055603', '21.845909', '87.877663', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56148, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310084', 2310084, '607.202271', '21.845900', '69.260597', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55876, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310086', 2310086, '647.131470', '21.845940', '74.024300', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55604, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310087', 2310087, '631.244385', '21.845980', '119.611702', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310088', 2310088, '589.967102', '21.846029', '111.639000', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310106', 2310106, '62.454399', '22.173260', '-183.847000', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54504, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310110', 2310110, '11.996420', '22.107401', '-194.509094', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54232, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310121', 2310121, '43.552151', '31.746559', '-242.757904', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310129', 2310129, '80.701881', '31.247450', '-236.730392', 77, 0, 0, 0, 1, 6, 0, 0, 74, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310142', 2310142, '1.488476', '42.615070', '-238.873703', 85, 0, 0, 0, 1, 6, 0, 0, 81, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310155', 2310155, '14.401670', '41.170448', '-236.977097', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310157', 2310157, '13.745920', '41.247570', '-234.937393', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310158', 2310158, '26.641451', '40.972401', '-238.464600', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52606, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310159', 2310159, '23.036869', '41.356541', '-231.651596', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310160', 2310160, '34.532631', '34.329281', '-248.540298', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310161', 2310161, '18.166571', '40.736420', '-243.886398', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310162', 2310162, '36.185360', '34.339809', '-251.152893', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51518, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310163', 2310163, '32.022099', '35.938412', '-251.996597', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310164', 2310164, '2.683093', '41.323040', '-231.439301', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50974, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310165', 2310165, '2.481253', '41.289459', '-247.178207', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310166', 2310166, '3.023275', '41.244370', '-229.524307', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310168', 2310168, '26.339149', '41.310089', '-228.982193', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310169', 2310169, '43.691368', '23.807100', '-197.954498', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49886, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(291, 'e0064', 'bnpc2310170', 2310170, '47.955181', '23.796989', '-201.803207', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49614, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310171', 2310171, '27.500080', '23.900030', '-176.426407', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310173', 2310173, '8.713860', '24.977810', '-183.468903', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310174', 2310174, '25.766741', '25.453140', '-197.692993', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310175', 2310175, '21.326250', '25.217710', '-213.513397', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310176', 2310176, '56.209671', '30.207701', '-208.221603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310177', 2310177, '50.222309', '30.207741', '-208.816299', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310178', 2310178, '55.211819', '31.096901', '-223.299698', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310179', 2310179, '44.478668', '30.061560', '-213.305893', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47426, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310180', 2310180, '27.629330', '25.414169', '-203.556198', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47154, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310181', 2310181, '11.799320', '24.994440', '-208.841293', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310182', 2310182, '57.392250', '31.250860', '-237.443100', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310183', 2310183, '56.381592', '31.081989', '-222.324799', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310184', 2310184, '41.846550', '31.327400', '-233.639603', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310185', 2310185, '49.764519', '31.322470', '-239.490097', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310186', 2310186, '45.229160', '30.849199', '-225.986694', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310187', 2310187, '54.603119', '30.526270', '-215.684494', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310188', 2310188, '26.807720', '25.469440', '-208.795700', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310191', 2310191, '53.416069', '23.647209', '-198.466995', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310192', 2310192, '16.458969', '23.952860', '-182.981705', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310193', 2310193, '34.354580', '23.728510', '-188.906204', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310194', 2310194, '24.826321', '38.422710', '-248.892502', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310195', 2310195, '19.778610', '41.225639', '-235.194595', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2310196', 2310196, '10.671480', '41.230179', '-245.656906', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2313233', 2313233, '320.515686', '2.215992', '-18.509239', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81726, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(291, 'e0064', 'bnpc2313234', 2313234, '320.698792', '2.227228', '-15.091220', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81454, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(291, 'e0064', 'bnpc2313235', 2313235, '318.658691', '2.299638', '-15.389510', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81182, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(291, 'e0064', 'bnpc2313237', 2313237, '303.089905', '1.571632', '-19.974110', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80910, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(291, 'e0064', 'bnpc2313238', 2313238, '331.471710', '1.907331', '-17.807329', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80638, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(291, 'e0064', 'bnpc2320820', 2320820, '241.483994', '17.276871', '-145.913101', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80354, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2320821', 2320821, '252.963196', '12.221980', '-153.075394', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80082, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2320822', 2320822, '246.929703', '9.238781', '-175.852005', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79810, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2320826', 2320826, '292.604004', '10.691710', '-162.803802', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79538, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2320827', 2320827, '290.235687', '9.507468', '-185.479797', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79266, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2320828', 2320828, '295.598389', '11.637060', '-160.074707', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78994, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2320830', 2320830, '279.377411', '8.641194', '-170.115997', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78722, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2320832', 2320832, '250.518402', '10.279540', '-169.884796', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78450, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2351462', 2351462, '48.281940', '25.165770', '125.730797', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2351466', 2351466, '33.028351', '19.801689', '204.600204', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2351468', 2351468, '17.664570', '21.473511', '187.304001', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2351469', 2351469, '15.638560', '21.324190', '188.309006', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2351473', 2351473, '48.142170', '19.912979', '204.211395', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125142, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc2351480', 2351480, '31.650410', '24.598419', '125.582100', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc2763397', 2763397, '318.018890', '0.478852', '12.307590', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78190, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(291, 'e0064', 'bnpc2763398', 2763398, '317.199188', '0.290855', '13.417520', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77918, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(291, 'e0064', 'bnpc2763399', 2763399, '313.945190', '0.195134', '8.234367', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77646, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(291, 'e0064', 'bnpc2763400', 2763400, '289.082001', '0.747620', '16.617001', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77374, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(291, 'e0064', 'bnpc2763402', 2763402, '292.225494', '0.411926', '13.809330', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77102, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(291, 'e0064', 'bnpc3739171', 3739171, '-272.839386', '22.280479', '-182.574203', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104362, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(291, 'e0064', 'bnpc3739176', 3739176, '-271.384399', '22.233410', '-181.710205', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104090, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(291, 'e0064', 'bnpc3739178', 3739178, '-270.221985', '22.171329', '-172.442307', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103818, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(291, 'e0064', 'bnpc3739189', 3739189, '-286.671295', '22.598570', '-178.942596', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103546, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(291, 'e0064', 'bnpc3739195', 3739195, '-285.084290', '23.636169', '-193.682800', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103274, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(291, 'e0064', 'bnpc3739197', 3739197, '-302.441498', '24.263420', '-202.146301', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103002, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(291, 'e0064', 'bnpc3739198', 3739198, '-301.991302', '24.106640', '-200.335693', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102730, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(291, 'e0064', 'bnpc3739200', 3739200, '-307.179413', '23.056339', '-191.149796', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102458, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(291, 'e0064', 'bnpc3739223', 3739223, '-306.875397', '9.692472', '-137.887207', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3739241', 3739241, '-102.205200', '2.027415', '-36.144821', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3739247', 3739247, '-101.905197', '2.027430', '-31.359751', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3739298', 3739298, '-64.469414', '0.015212', '63.034969', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97030, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3739305', 3739305, '-142.689407', '0.030637', '161.735504', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96758, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3739308', 3739308, '-173.166397', '0.030539', '149.329895', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96486, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3739310', 3739310, '-183.418106', '0.030539', '144.544296', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96214, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3739417', 3739417, '151.785294', '4.236084', '20.237249', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3739423', 3739423, '152.085297', '4.236084', '15.201380', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3740607', 3740607, '-135.541595', '-0.100001', '467.027588', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138730, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3740609', 3740609, '-138.985397', '-0.100003', '461.260590', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138458, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3740611', 3740611, '-176.964996', '-0.100092', '482.156586', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138186, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3740613', 3740613, '-197.264099', '-0.100169', '480.240295', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3740615', 3740615, '-183.840607', '-0.100061', '448.882111', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3740617', 3740617, '-178.071396', '-0.100048', '447.029205', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3740619', 3740619, '-182.900406', '-0.100169', '476.189514', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3740632', 3740632, '-358.518585', '1.158285', '453.619598', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc3740634', 3740634, '-362.075012', '0.968366', '458.185486', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc3740635', 3740635, '-336.208405', '-0.100018', '460.011810', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc3740636', 3740636, '-362.780701', '1.532029', '454.955414', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc3740637', 3740637, '-338.199493', '-0.100187', '433.127808', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc3740638', 3740638, '-334.106689', '-0.100003', '437.684113', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc3740639', 3740639, '-345.628906', '-0.100008', '453.583313', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc3740640', 3740640, '-333.997498', '-0.100017', '457.273987', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc3740644', 3740644, '-79.519012', '-0.100045', '377.072388', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3740645', 3740645, '-20.504120', '-0.106860', '365.133087', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3740646', 3740646, '-52.782280', '-0.106860', '324.177887', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3740647', 3740647, '-59.319771', '-0.100007', '331.135590', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3740648', 3740648, '-4.964393', '-0.100007', '339.615601', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3740649', 3740649, '-18.177540', '-0.100615', '322.254089', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3740651', 3740651, '-42.146980', '-0.100005', '396.759399', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3740823', 3740823, '52.433182', '8.970453', '290.451111', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124604, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3740824', 3740824, '34.042301', '6.188347', '297.895691', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123244, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(291, 'e0064', 'bnpc3740991', 3740991, '83.869347', '23.640280', '197.587494', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc3740992', 3740992, '83.668243', '23.758640', '201.089493', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc3740993', 3740993, '92.752083', '22.594500', '147.751404', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc3740994', 3740994, '69.937286', '22.357740', '174.791397', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc3870245', 3870245, '-201.828995', '8.309389', '-77.948196', 584, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27764, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(291, 'e0064', 'bnpc3870249', 3870249, '-144.314499', '6.941079', '-45.049019', 585, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27498, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(291, 'e0064', 'bnpc3870258', 3870258, '-169.371506', '8.963833', '-15.339670', 586, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27232, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(291, 'e0064', 'bnpc3870312', 3870312, '213.284805', '9.756709', '-77.238258', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26966, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(291, 'e0064', 'bnpc3870333', 3870333, '150.590805', '8.698524', '-47.601891', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26700, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(291, 'e0064', 'bnpc3870347', 3870347, '213.854004', '6.490500', '-15.706390', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 36, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26434, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(291, 'e0064', 'bnpc3870372', 3870372, '-149.487900', '0.750592', '229.198502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26156, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(291, 'e0064', 'bnpc3870375', 3870375, '-161.511307', '0.485998', '346.191010', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(291, 'e0064', 'bnpc3870382', 3870382, '-231.008896', '0.795779', '399.749115', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25606, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(291, 'e0064', 'bnpc3870387', 3870387, '-228.300903', '0.984585', '517.848816', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25334, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(291, 'e0064', 'bnpc3878991', 3878991, '400.476288', '4.241707', '-40.787842', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70986, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(291, 'e0064', 'bnpc3879006', 3879006, '442.368011', '0.843470', '-27.738720', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70714, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc3879018', 3879018, '447.624695', '0.635267', '-105.764603', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70442, 1, 0, 0, 0, 5, 30074, 0, 0, 0), +(291, 'e0064', 'bnpc3879051', 3879051, '431.967712', '-0.747742', '-65.507080', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70176, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(291, 'e0064', 'bnpc3879065', 3879065, '356.771088', '2.792354', '1.937849', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69898, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(291, 'e0064', 'bnpc3879339', 3879339, '-343.618011', '11.367920', '624.658508', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(291, 'e0064', 'bnpc3879341', 3879341, '-324.269501', '11.551030', '603.662109', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136536, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(291, 'e0064', 'bnpc3879343', 3879343, '-320.241089', '11.612060', '616.174377', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136288, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc3879346', 3879346, '-319.234009', '11.551030', '602.227722', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136016, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(291, 'e0064', 'bnpc3879348', 3879348, '-324.879913', '11.551030', '603.082275', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135744, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(291, 'e0064', 'bnpc3879351', 3879351, '-324.330505', '11.520510', '609.063782', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135448, 1, 0, 0, 0, 41, 0, 0, 0, 0), +(291, 'e0064', 'bnpc3879352', 3879352, '-342.671906', '20.065571', '624.475403', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135176, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(291, 'e0064', 'bnpc3879353', 3879353, '-343.556885', '20.065571', '624.811096', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134928, 1, 0, 0, 0, 41, 30073, 0, 0, 0), +(291, 'e0064', 'bnpc3879398', 3879398, '-335.561188', '11.520510', '620.843811', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134626, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(291, 'e0064', 'bnpc3884509', 3884509, '125.859001', '4.166452', '44.953560', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc3917184', 3917184, '-60.455681', '3.894856', '-39.952641', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc3939726', 3939726, '436.760712', '0.574082', '-105.544098', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69360, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(291, 'e0064', 'bnpc4329476', 4329476, '-188.220093', '9.170593', '94.010742', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95676, 6, 1, 0, 0, 0, 30246, 4329477, 0, 0), +(291, 'e0064', 'bnpc4333062', 4333062, '-159.767395', '3.700634', '137.279205', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94652, 6, 1, 0, 0, 0, 30246, 4333061, 0, 0), +(291, 'e0064', 'bnpc4621322', 4621322, '28.233730', '25.315451', '115.697998', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28790, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(291, 'e0064', 'bnpc4621339', 4621339, '-337.105499', '20.119471', '615.520508', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28518, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc3292760', 3292760, '15.000000', '0.000000', '0.000000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20954, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc3640608', 3640608, '21.000000', '0.000000', '0.000000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20682, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc3640609', 3640609, '14.850000', '0.000000', '14.850000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20410, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc3640610', 3640610, '0.000000', '0.000000', '21.000000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20138, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc3640611', 3640611, '-14.850000', '0.000000', '14.850000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc3640612', 3640612, '-21.000000', '0.000000', '0.000000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19594, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc3640613', 3640613, '-14.850000', '0.000000', '-14.850000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19322, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc3640614', 3640614, '0.000000', '0.000000', '-21.000000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19050, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc3640615', 3640615, '14.850000', '0.000000', '-14.850000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc3668270', 3668270, '0.000000', '0.000000', '10.000000', 210, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18512, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc3668271', 3668271, '0.000000', '0.000000', '-10.000000', 210, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18240, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4082426', 4082426, '36.000000', '0.000000', '0.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17974, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4126276', 4126276, '15.000000', '0.000000', '0.000000', 207, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 20, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4126281', 4126281, '0.000000', '0.000000', '0.000000', 208, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4126284', 4126284, '36.299999', '0.000000', '0.000000', 401, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4265974', 4265974, '15.000000', '0.000000', '0.000000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17000, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4265977', 4265977, '21.000000', '0.000000', '0.300000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4265978', 4265978, '14.850000', '0.000000', '14.850000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4265979', 4265979, '0.000000', '0.000000', '21.000000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4265980', 4265980, '-14.850000', '0.000000', '14.850000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4265981', 4265981, '-21.000000', '0.000000', '0.000000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4265982', 4265982, '-14.850000', '0.000000', '-14.850000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4265983', 4265983, '0.000000', '0.000000', '-21.000000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4265984', 4265984, '14.850000', '0.000000', '-14.850000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4265990', 4265990, '0.000000', '0.000000', '-13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14558, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4265991', 4265991, '13.000000', '0.000000', '0.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4265992', 4265992, '36.000000', '0.000000', '0.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14002, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4266579', 4266579, '10.000000', '0.000000', '0.000000', 210, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17696, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4266580', 4266580, '-10.000000', '0.000000', '0.000000', 210, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17424, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4266590', 4266590, '0.000000', '0.000000', '13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13470, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4266591', 4266591, '-13.000000', '0.000000', '0.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13198, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4404192', 4404192, '0.778013', '0.000000', '1.057422', 2312, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13748, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4404193', 4404193, '0.000000', '0.000000', '-19.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12926, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4404194', 4404194, '14.000000', '0.000000', '-13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4404196', 4404196, '19.000000', '0.000000', '0.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12382, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4404199', 4404199, '14.000000', '0.000000', '13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4404200', 4404200, '0.000000', '0.000000', '19.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4404202', 4404202, '-14.000000', '0.000000', '13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4404204', 4404204, '-19.000000', '0.000000', '0.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4404206', 4404206, '-14.000000', '0.000000', '-13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(292, 'w1fa_2', 'bnpc4404209', 4404209, '0.000000', '0.000000', '0.000000', 2331, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10762, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4039257', 4039257, '0.000000', '0.000000', '-16.000000', 246, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27088, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4145873', 4145873, '0.000000', '0.000000', '-16.000000', 247, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26090, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4145879', 4145879, '0.000000', '0.000000', '-20.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4145900', 4145900, '0.000000', '-0.000013', '-20.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4249552', 4249552, '0.000000', '0.000000', '-15.000000', 1444, 0, 0, 0, 0, 6, 0, 0, 1804, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256008', 4256008, '0.000000', '0.000000', '-16.000000', 248, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17124, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256118', 4256118, '0.000000', '-0.000024', '-20.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256180', 4256180, '0.000000', '0.000000', '-15.000000', 1506, 0, 0, 0, 0, 6, 0, 0, 1804, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16586, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256192', 4256192, '0.000000', '0.000000', '-15.000000', 1505, 0, 0, 0, 0, 6, 0, 0, 1804, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256198', 4256198, '0.000000', '0.000000', '-14.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256208', 4256208, '9.899000', '0.000000', '-9.899000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25014, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256211', 4256211, '14.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24742, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256213', 4256213, '9.899000', '0.000000', '9.899000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24470, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256214', 4256214, '0.000000', '0.000000', '14.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24198, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256215', 4256215, '-9.899000', '0.000000', '9.899000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23926, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256217', 4256217, '-14.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256218', 4256218, '-9.899000', '0.000000', '-9.899000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23382, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256219', 4256219, '0.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256220', 4256220, '0.000000', '0.000000', '-12.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256224', 4256224, '8.485000', '0.000000', '-8.485000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256226', 4256226, '12.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256228', 4256228, '8.485000', '0.000000', '8.485000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256229', 4256229, '0.000000', '0.000000', '12.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256231', 4256231, '-8.485000', '0.000000', '8.485000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256232', 4256232, '-12.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4256233', 4256233, '-8.485000', '0.000000', '-8.485000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20934, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4292876', 4292876, '0.000000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14144, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4292877', 4292877, '0.000000', '0.000000', '-12.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16320, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4292878', 4292878, '8.485000', '0.000000', '-8.485000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16048, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4292879', 4292879, '12.000000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15776, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4292880', 4292880, '8.485000', '0.000000', '8.485000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15504, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4292881', 4292881, '0.000000', '0.000000', '12.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15232, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4292882', 4292882, '-8.485000', '0.000000', '8.485000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4292883', 4292883, '-12.000000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14688, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4292884', 4292884, '-8.485000', '0.000022', '-8.485000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14416, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4317325', 4317325, '0.000000', '0.000000', '-6.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20662, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4317326', 4317326, '6.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20390, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4317327', 4317327, '0.000000', '0.000000', '6.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4317328', 4317328, '-6.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19846, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4317331', 4317331, '0.000000', '0.000000', '-4.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4317332', 4317332, '4.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4317333', 4317333, '0.000000', '0.000000', '4.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4317334', 4317334, '-4.000000', '0.000014', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4317336', 4317336, '0.000000', '0.000000', '-10.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4317357', 4317357, '10.000000', '-0.000001', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4317359', 4317359, '0.000000', '0.000000', '10.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4317361', 4317361, '-10.000000', '0.000014', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378613', 4378613, '2.000000', '0.000000', '-3.464100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13872, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378614', 4378614, '2.000000', '0.000000', '3.464100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13600, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378615', 4378615, '-4.000000', '0.000000', '0.300000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13328, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(293, 's1fa_2', 'bnpc4378616', 4378616, '3.764100', '0.000000', '-2.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13056, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378617', 4378617, '0.000000', '0.000000', '4.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12784, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378618', 4378618, '-3.764100', '0.000000', '-2.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12512, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378619', 4378619, '4.000000', '-0.000002', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12240, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378620', 4378620, '-2.000000', '0.000000', '3.764100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11968, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378621', 4378621, '-2.000000', '0.000000', '-3.764100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11696, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378622', 4378622, '0.000000', '-0.000003', '-4.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11424, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378623', 4378623, '3.764100', '0.000000', '2.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11152, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378624', 4378624, '-3.764100', '0.000000', '2.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10880, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378625', 4378625, '0.000000', '0.000000', '-11.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378626', 4378626, '9.526200', '-0.000046', '-5.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378627', 4378627, '9.526200', '0.000000', '5.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10064, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378628', 4378628, '0.000000', '0.000000', '11.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9792, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378629', 4378629, '-9.526200', '0.000000', '5.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9520, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378630', 4378630, '-9.526200', '0.000000', '-5.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9248, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378631', 4378631, '0.000000', '0.000000', '-7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8976, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378632', 4378632, '7.778100', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8704, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378633', 4378633, '0.000000', '0.000000', '7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8432, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378634', 4378634, '-7.778100', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8160, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378635', 4378635, '0.000000', '0.000000', '-8.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7888, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378636', 4378636, '5.750000', '0.000000', '-5.750000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7616, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378638', 4378638, '8.500000', '-0.000002', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378639', 4378639, '5.750000', '-0.000002', '5.750000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7072, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378643', 4378643, '0.000000', '-0.000003', '8.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378644', 4378644, '-5.750000', '-0.000004', '5.750000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378645', 4378645, '-8.500000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378646', 4378646, '-5.750000', '0.000014', '-5.750000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378652', 4378652, '-8.000000', '0.000000', '0.000000', 2290, 0, 0, 0, 0, 6, 0, 0, 2325, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4378653', 4378653, '8.000000', '0.000000', '0.000000', 2290, 0, 0, 0, 0, 6, 0, 0, 2325, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4388877', 4388877, '0.000000', '0.000000', '-11.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4388878', 4388878, '7.778100', '0.000000', '-7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4388879', 4388879, '11.000000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4388880', 4388880, '7.778100', '0.000000', '7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4388881', 4388881, '0.000000', '0.000000', '11.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4388882', 4388882, '-7.778100', '0.000000', '7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4388883', 4388883, '-11.000000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4388884', 4388884, '-7.778100', '0.000024', '-7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4550248', 4550248, '3.039408', '0.000000', '-6.313390', 2286, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 3004, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4553208', 4553208, '0.000000', '0.000000', '-16.000000', 2666, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2386, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4553209', 4553209, '0.300000', '-0.000013', '-20.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2598, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(293, 's1fa_2', 'bnpc4553210', 4553210, '0.300000', '0.000000', '-15.000000', 2668, 0, 0, 0, 0, 6, 0, 0, 1804, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4246138', 4246138, '-4.867000', '-1.838936', '5.020000', 237, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4246139', 4246139, '7.907000', '-1.805731', '6.310000', 237, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34312, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4246140', 4246140, '-6.369000', '-1.830306', '-6.360000', 237, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34040, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4246141', 4246141, '5.828000', '-1.855612', '-5.600000', 237, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4246177', 4246177, '1.144171', '-1.945755', '-18.000000', 239, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33502, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4246290', 4246290, '-18.705700', '-0.947082', '-28.606661', 238, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33236, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4246291', 4246291, '-22.962111', '-0.969582', '-28.392599', 688, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32970, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4246418', 4246418, '-18.315870', '-1.038592', '-26.613710', 1571, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31240, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4246419', 4246419, '-21.552139', '-0.780132', '-26.515720', 1570, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32704, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261604', 4261604, '-4.867000', '-1.838900', '5.020000', 240, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32322, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261605', 4261605, '7.907000', '-1.805700', '6.310000', 240, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32050, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261606', 4261606, '-6.369000', '-1.830300', '-6.360000', 240, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261607', 4261607, '5.828000', '-1.855600', '-5.600000', 240, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31506, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261623', 4261623, '1.144200', '-1.945800', '-18.000000', 242, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29378, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261625', 4261625, '-18.405701', '-0.969582', '-28.306660', 241, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30974, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261626', 4261626, '-22.662109', '-0.996960', '-28.092600', 1534, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30708, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261627', 4261627, '-21.252140', '-0.817303', '-26.215719', 1572, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261629', 4261629, '-21.414070', '1.523027', '-26.817900', 1535, 0, 0, 0, 0, 6, 0, 0, 1648, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30176, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261631', 4261631, '-24.530930', '1.801132', '-24.986460', 1566, 0, 0, 0, 0, 6, 0, 0, 1646, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29910, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261632', 4261632, '-23.328560', '1.094606', '-23.104679', 1567, 0, 0, 0, 0, 6, 0, 0, 1645, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29644, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261645', 4261645, '-7.000000', '-1.871653', '7.000000', 243, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261646', 4261646, '7.000000', '-1.823288', '7.000000', 243, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261647', 4261647, '-7.000000', '-1.825691', '-7.000000', 243, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261648', 4261648, '7.000000', '-1.851377', '-7.000000', 243, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261649', 4261649, '-18.015869', '-1.174013', '-26.313709', 1573, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261650', 4261650, '0.000000', '-2.033095', '-18.000000', 245, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27636, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261651', 4261651, '-18.105700', '-0.992081', '-28.006660', 244, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27370, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261652', 4261652, '-22.362110', '-1.034364', '-27.792601', 1536, 0, 0, 0, 0, 6, 0, 0, 2091, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27104, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261653', 4261653, '-20.952141', '-0.853879', '-25.915720', 1574, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261654', 4261654, '-21.114071', '1.387607', '-26.517900', 1537, 0, 0, 0, 0, 6, 0, 0, 1648, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26572, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261655', 4261655, '-24.230930', '1.663378', '-24.686460', 1568, 0, 0, 0, 0, 6, 0, 0, 1646, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26306, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4261656', 4261656, '-23.028561', '0.956851', '-22.804680', 1569, 0, 0, 0, 0, 6, 0, 0, 1645, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26040, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4406566', 4406566, '0.033980', '-1.803072', '-0.779799', 434, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25774, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4527499', 4527499, '0.947333', '-1.798869', '0.131422', 434, 0, 0, 0, 0, 6, 0, 0, 1646, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25502, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(294, 'r1fa_2', 'bnpc4527500', 4527500, '-0.905001', '-1.798869', '0.131422', 434, 0, 0, 0, 0, 6, 0, 0, 1645, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25230, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc3292760', 3292760, '15.000000', '0.000000', '0.000000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20954, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc3640608', 3640608, '21.000000', '0.000000', '0.000000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20682, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc3640609', 3640609, '14.850000', '0.000000', '14.850000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20410, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc3640610', 3640610, '0.000000', '0.000000', '21.000000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20138, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc3640611', 3640611, '-14.850000', '0.000000', '14.850000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc3640612', 3640612, '-21.000000', '0.000000', '0.000000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19594, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc3640613', 3640613, '-14.850000', '0.000000', '-14.850000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19322, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc3640614', 3640614, '0.000000', '0.000000', '-21.000000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19050, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc3640615', 3640615, '14.850000', '0.000000', '-14.850000', 209, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc3668270', 3668270, '0.000000', '0.000000', '10.000000', 210, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18512, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc3668271', 3668271, '0.000000', '0.000000', '-10.000000', 210, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18240, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4082426', 4082426, '36.000000', '0.000000', '0.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17974, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4126276', 4126276, '15.000000', '0.000000', '0.000000', 207, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 20, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4126281', 4126281, '0.000000', '0.000000', '0.000000', 208, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4126284', 4126284, '36.299999', '0.000000', '0.000000', 401, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4265974', 4265974, '15.000000', '0.000000', '0.000000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17000, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4265977', 4265977, '21.000000', '0.000000', '0.300000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4265978', 4265978, '14.850000', '0.000000', '14.850000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4265979', 4265979, '0.000000', '0.000000', '21.000000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4265980', 4265980, '-14.850000', '0.000000', '14.850000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4265981', 4265981, '-21.000000', '0.000000', '0.000000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4265982', 4265982, '-14.850000', '0.000000', '-14.850000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4265983', 4265983, '0.000000', '0.000000', '-21.000000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4265984', 4265984, '14.850000', '0.000000', '-14.850000', 211, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4265990', 4265990, '0.000000', '0.000000', '-13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14558, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4265991', 4265991, '13.000000', '0.000000', '0.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4265992', 4265992, '36.000000', '0.000000', '0.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14002, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4266579', 4266579, '10.000000', '0.000000', '0.000000', 210, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17696, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4266580', 4266580, '-10.000000', '0.000000', '0.000000', 210, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17424, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4266590', 4266590, '0.000000', '0.000000', '13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13470, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4266591', 4266591, '-13.000000', '0.000000', '0.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13198, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4404192', 4404192, '0.778013', '0.000000', '1.057422', 2312, 0, 0, 0, 0, 6, 0, 0, 1185, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13748, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4404193', 4404193, '0.000000', '0.000000', '-19.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12926, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4404194', 4404194, '14.000000', '0.000000', '-13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4404196', 4404196, '19.000000', '0.000000', '0.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12382, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4404199', 4404199, '14.000000', '0.000000', '13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4404200', 4404200, '0.000000', '0.000000', '19.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4404202', 4404202, '-14.000000', '0.000000', '13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4404204', 4404204, '-19.000000', '0.000000', '0.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4404206', 4404206, '-14.000000', '0.000000', '-13.000000', 212, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(295, 'w1fa_3', 'bnpc4404209', 4404209, '0.000000', '0.000000', '0.000000', 2331, 0, 0, 0, 0, 6, 0, 0, 1186, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10762, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4039257', 4039257, '0.000000', '0.000000', '-16.000000', 246, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27088, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4145873', 4145873, '0.000000', '0.000000', '-16.000000', 247, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26090, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4145879', 4145879, '0.000000', '0.000000', '-20.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4145900', 4145900, '0.000000', '-0.000013', '-20.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4249552', 4249552, '0.000000', '0.000000', '-15.000000', 1444, 0, 0, 0, 0, 6, 0, 0, 1804, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256008', 4256008, '0.000000', '0.000000', '-16.000000', 248, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17124, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256118', 4256118, '0.000000', '-0.000024', '-20.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256180', 4256180, '0.000000', '0.000000', '-15.000000', 1506, 0, 0, 0, 0, 6, 0, 0, 1804, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16586, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256192', 4256192, '0.000000', '0.000000', '-15.000000', 1505, 0, 0, 0, 0, 6, 0, 0, 1804, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256198', 4256198, '0.000000', '0.000000', '-14.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256208', 4256208, '9.899000', '0.000000', '-9.899000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25014, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256211', 4256211, '14.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24742, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256213', 4256213, '9.899000', '0.000000', '9.899000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24470, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256214', 4256214, '0.000000', '0.000000', '14.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24198, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256215', 4256215, '-9.899000', '0.000000', '9.899000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23926, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256217', 4256217, '-14.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256218', 4256218, '-9.899000', '0.000000', '-9.899000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23382, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256219', 4256219, '0.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256220', 4256220, '0.000000', '0.000000', '-12.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256224', 4256224, '8.485000', '0.000000', '-8.485000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256226', 4256226, '12.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256228', 4256228, '8.485000', '0.000000', '8.485000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256229', 4256229, '0.000000', '0.000000', '12.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256231', 4256231, '-8.485000', '0.000000', '8.485000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256232', 4256232, '-12.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4256233', 4256233, '-8.485000', '0.000000', '-8.485000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20934, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4292876', 4292876, '0.000000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14144, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4292877', 4292877, '0.000000', '0.000000', '-12.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16320, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4292878', 4292878, '8.485000', '0.000000', '-8.485000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16048, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4292879', 4292879, '12.000000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15776, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4292880', 4292880, '8.485000', '0.000000', '8.485000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15504, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4292881', 4292881, '0.000000', '0.000000', '12.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15232, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4292882', 4292882, '-8.485000', '0.000000', '8.485000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4292883', 4292883, '-12.000000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14688, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4292884', 4292884, '-8.485000', '0.000022', '-8.485000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14416, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4317325', 4317325, '0.000000', '0.000000', '-6.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20662, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4317326', 4317326, '6.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20390, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4317327', 4317327, '0.000000', '0.000000', '6.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4317328', 4317328, '-6.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19846, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4317331', 4317331, '0.000000', '0.000000', '-4.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4317332', 4317332, '4.000000', '0.000000', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4317333', 4317333, '0.000000', '0.000000', '4.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4317334', 4317334, '-4.000000', '0.000014', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4317336', 4317336, '0.000000', '0.000000', '-10.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4317357', 4317357, '10.000000', '-0.000001', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4317359', 4317359, '0.000000', '0.000000', '10.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4317361', 4317361, '-10.000000', '0.000014', '0.000000', 1443, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378613', 4378613, '2.000000', '0.000000', '-3.464100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13872, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378614', 4378614, '2.000000', '0.000000', '3.464100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13600, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378615', 4378615, '-4.000000', '0.000000', '0.300000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13328, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378616', 4378616, '3.764100', '0.000000', '-2.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13056, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378617', 4378617, '0.000000', '0.000000', '4.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12784, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378618', 4378618, '-3.764100', '0.000000', '-2.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12512, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378619', 4378619, '4.000000', '-0.000002', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12240, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378620', 4378620, '-2.000000', '0.000000', '3.764100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11968, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378621', 4378621, '-2.000000', '0.000000', '-3.764100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11696, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378622', 4378622, '0.000000', '-0.000003', '-4.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11424, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378623', 4378623, '3.764100', '0.000000', '2.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11152, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378624', 4378624, '-3.764100', '0.000000', '2.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10880, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378625', 4378625, '0.000000', '0.000000', '-11.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378626', 4378626, '9.526200', '-0.000046', '-5.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378627', 4378627, '9.526200', '0.000000', '5.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10064, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378628', 4378628, '0.000000', '0.000000', '11.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9792, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378629', 4378629, '-9.526200', '0.000000', '5.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9520, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378630', 4378630, '-9.526200', '0.000000', '-5.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9248, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378631', 4378631, '0.000000', '0.000000', '-7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8976, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378632', 4378632, '7.778100', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8704, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378633', 4378633, '0.000000', '0.000000', '7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8432, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378634', 4378634, '-7.778100', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8160, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378635', 4378635, '0.000000', '0.000000', '-8.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7888, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378636', 4378636, '5.750000', '0.000000', '-5.750000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7616, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378638', 4378638, '8.500000', '-0.000002', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378639', 4378639, '5.750000', '-0.000002', '5.750000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7072, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378643', 4378643, '0.000000', '-0.000003', '8.500000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378644', 4378644, '-5.750000', '-0.000004', '5.750000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378645', 4378645, '-8.500000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378646', 4378646, '-5.750000', '0.000014', '-5.750000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378652', 4378652, '-8.000000', '0.000000', '0.000000', 2290, 0, 0, 0, 0, 6, 0, 0, 2325, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4378653', 4378653, '8.000000', '0.000000', '0.000000', 2290, 0, 0, 0, 0, 6, 0, 0, 2325, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4388877', 4388877, '0.000000', '0.000000', '-11.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4388878', 4388878, '7.778100', '0.000000', '-7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4388879', 4388879, '11.000000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4388880', 4388880, '7.778100', '0.000000', '7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4388881', 4388881, '0.000000', '0.000000', '11.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4388882', 4388882, '-7.778100', '0.000000', '7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4388883', 4388883, '-11.000000', '0.000000', '0.000000', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4388884', 4388884, '-7.778100', '0.000024', '-7.778100', 1504, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4550248', 4550248, '3.039408', '0.000000', '-6.313390', 2286, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 3004, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4553208', 4553208, '0.000000', '0.000000', '-16.000000', 2666, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2386, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4553209', 4553209, '0.300000', '-0.000013', '-20.000000', 434, 0, 0, 0, 0, 6, 0, 0, 1801, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2598, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(296, 's1fa_3', 'bnpc4553210', 4553210, '0.300000', '0.000000', '-15.000000', 2668, 0, 0, 0, 0, 6, 0, 0, 1804, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4246138', 4246138, '-4.867000', '-1.838936', '5.020000', 237, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4246139', 4246139, '7.907000', '-1.805731', '6.310000', 237, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34312, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4246140', 4246140, '-6.369000', '-1.830306', '-6.360000', 237, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34040, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4246141', 4246141, '5.828000', '-1.855612', '-5.600000', 237, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4246177', 4246177, '1.144171', '-1.945755', '-18.000000', 239, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33502, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4246290', 4246290, '-18.705700', '-0.947082', '-28.606661', 238, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33236, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4246291', 4246291, '-22.962111', '-0.969582', '-28.392599', 688, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32970, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4246418', 4246418, '-18.315870', '-1.038592', '-26.613710', 1571, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31240, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(297, 'r1fa_3', 'bnpc4246419', 4246419, '-21.552139', '-0.780132', '-26.515720', 1570, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32704, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261604', 4261604, '-4.867000', '-1.838900', '5.020000', 240, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32322, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261605', 4261605, '7.907000', '-1.805700', '6.310000', 240, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32050, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261606', 4261606, '-6.369000', '-1.830300', '-6.360000', 240, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261607', 4261607, '5.828000', '-1.855600', '-5.600000', 240, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31506, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261623', 4261623, '1.144200', '-1.945800', '-18.000000', 242, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29378, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261625', 4261625, '-18.405701', '-0.969582', '-28.306660', 241, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30974, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261626', 4261626, '-22.662109', '-0.996960', '-28.092600', 1534, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30708, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261627', 4261627, '-21.252140', '-0.817303', '-26.215719', 1572, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261629', 4261629, '-21.414070', '1.523027', '-26.817900', 1535, 0, 0, 0, 0, 6, 0, 0, 1648, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30176, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261631', 4261631, '-24.530930', '1.801132', '-24.986460', 1566, 0, 0, 0, 0, 6, 0, 0, 1646, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29910, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261632', 4261632, '-23.328560', '1.094606', '-23.104679', 1567, 0, 0, 0, 0, 6, 0, 0, 1645, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29644, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261645', 4261645, '-7.000000', '-1.871653', '7.000000', 243, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261646', 4261646, '7.000000', '-1.823288', '7.000000', 243, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261647', 4261647, '-7.000000', '-1.825691', '-7.000000', 243, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261648', 4261648, '7.000000', '-1.851377', '-7.000000', 243, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261649', 4261649, '-18.015869', '-1.174013', '-26.313709', 1573, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261650', 4261650, '0.000000', '-2.033095', '-18.000000', 245, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27636, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261651', 4261651, '-18.105700', '-0.992081', '-28.006660', 244, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27370, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261652', 4261652, '-22.362110', '-1.034364', '-27.792601', 1536, 0, 0, 0, 0, 6, 0, 0, 2091, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27104, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261653', 4261653, '-20.952141', '-0.853879', '-25.915720', 1574, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261654', 4261654, '-21.114071', '1.387607', '-26.517900', 1537, 0, 0, 0, 0, 6, 0, 0, 1648, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26572, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261655', 4261655, '-24.230930', '1.663378', '-24.686460', 1568, 0, 0, 0, 0, 6, 0, 0, 1646, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26306, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4261656', 4261656, '-23.028561', '0.956851', '-22.804680', 1569, 0, 0, 0, 0, 6, 0, 0, 1645, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26040, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4406566', 4406566, '0.033980', '-1.803072', '-0.779799', 434, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25774, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4527499', 4527499, '0.947333', '-1.798869', '0.131422', 434, 0, 0, 0, 0, 6, 0, 0, 1646, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25502, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(297, 'r1fa_3', 'bnpc4527500', 4527500, '-0.905001', '-1.798869', '0.131422', 434, 0, 0, 0, 0, 6, 0, 0, 1645, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25230, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4291453', 4291453, '155.132599', '222.009995', '348.043488', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41428, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(298, 'go012', 'bnpc4291457', 4291457, '272.663513', '222.247696', '334.248901', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41156, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(298, 'go012', 'bnpc4291464', 4291464, '220.038406', '302.644592', '-149.387497', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(298, 'go012', 'bnpc4291467', 4291467, '177.878494', '301.664612', '-190.712402', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40618, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(298, 'go012', 'bnpc4291540', 4291540, '264.301514', '302.632202', '-284.870697', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40346, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(298, 'go012', 'bnpc4291544', 4291544, '-136.888702', '304.096985', '-285.084290', 1775, 0, 0, 0, 0, 6, 0, 0, 1583, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40080, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(298, 'go012', 'bnpc4291545', 4291545, '-494.600586', '204.213104', '-188.481094', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39796, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(298, 'go012', 'bnpc4291549', 4291549, '-535.141113', '204.035507', '-287.671906', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39524, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(298, 'go012', 'bnpc4296962', 4296962, '6.586450', '224.231003', '359.448090', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4296996', 4296996, '16.820339', '216.422195', '389.762604', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4296997', 4296997, '31.967649', '236.529999', '323.628510', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4296998', 4296998, '72.035683', '242.920105', '316.766113', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4296999', 4296999, '79.061470', '241.243393', '319.846802', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297000', 4297000, '112.809898', '239.429306', '294.575287', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163724, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297001', 4297001, '58.960991', '253.937698', '281.400696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163452, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297003', 4297003, '10.569400', '224.790207', '357.938599', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163180, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297008', 4297008, '354.657288', '224.892807', '300.765289', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297010', 4297010, '417.257904', '226.214996', '374.532593', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297011', 4297011, '421.699005', '227.744202', '370.285492', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297012', 4297012, '330.572113', '223.491394', '369.867493', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297013', 4297013, '429.534393', '217.970001', '417.141296', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161826, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297015', 4297015, '417.746185', '217.952194', '480.668488', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161554, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297016', 4297016, '422.541687', '219.795303', '494.286896', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161282, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297019', 4297019, '411.649689', '220.784195', '484.018890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161010, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297021', 4297021, '181.170303', '242.354599', '223.538406', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160744, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297025', 4297025, '342.033508', '264.985504', '103.754501', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160472, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297026', 4297026, '88.700684', '244.067993', '303.089813', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297027', 4297027, '88.700684', '222.003494', '420.492798', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297028', 4297028, '-25.009581', '205.387497', '480.682007', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297029', 4297029, '398.841614', '224.765701', '381.022705', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297232', 4297232, '-397.424805', '210.788193', '-238.255402', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38242, 8, 0, 0, 4128002, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4297234', 4297234, '-397.352997', '210.788193', '-233.666794', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37970, 8, 0, 0, 4128001, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4297235', 4297235, '-397.251587', '210.788193', '-228.848999', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37698, 8, 0, 0, 4128000, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4297236', 4297236, '-423.044800', '210.788193', '-221.963104', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37426, 8, 0, 0, 4297227, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4297238', 4297238, '-413.101990', '210.788193', '-212.035004', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37154, 8, 0, 0, 4297228, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4297239', 4297239, '-417.529114', '210.788193', '-217.341202', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36882, 8, 0, 0, 4297229, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4297336', 4297336, '168.169693', '276.447601', '-48.600040', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159112, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297337', 4297337, '264.687988', '294.602692', '-93.670403', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158840, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4297346', 4297346, '280.170807', '253.192902', '147.692001', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4297350', 4297350, '334.350311', '248.434402', '184.154297', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4297353', 4297353, '327.623993', '256.382294', '132.340805', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4297354', 4297354, '291.785187', '269.499786', '39.650711', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4297356', 4297356, '192.950302', '271.137512', '3.646851', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4297359', 4297359, '285.844391', '267.842712', '44.338120', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4297363', 4297363, '173.391296', '272.125793', '-12.465330', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4297364', 4297364, '249.355698', '270.133301', '26.395069', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4297365', 4297365, '203.100204', '254.232300', '149.502304', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298567', 4298567, '157.396698', '293.324097', '-98.374939', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298571', 4298571, '159.523300', '293.493011', '-99.299156', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298572', 4298572, '135.779297', '299.755890', '-101.941704', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298573', 4298573, '136.228699', '283.407715', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298574', 4298574, '258.647614', '289.809692', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298575', 4298575, '254.634094', '287.557098', '-64.855118', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298576', 4298576, '268.831512', '284.212891', '-40.760189', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298741', 4298741, '251.759094', '294.415894', '-111.584099', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298744', 4298744, '288.151489', '302.427002', '-86.886337', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153938, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298765', 4298765, '321.597290', '303.200989', '-338.780914', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298767', 4298767, '346.691895', '304.562286', '-319.108887', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298770', 4298770, '357.329712', '304.360687', '-356.956696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298772', 4298772, '407.769012', '305.618500', '-327.457397', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298773', 4298773, '412.865387', '304.484802', '-333.469391', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298780', 4298780, '365.239410', '319.169586', '-254.025299', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298781', 4298781, '388.845612', '321.034485', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298784', 4298784, '476.218811', '327.076996', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298787', 4298787, '494.638214', '304.602112', '-349.542206', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298790', 4298790, '182.909805', '336.140900', '-467.124512', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151236, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298792', 4298792, '150.108704', '345.173309', '-380.467590', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150964, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298794', 4298794, '146.329498', '347.075287', '-385.583313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150692, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298812', 4298812, '253.761307', '343.590393', '-494.726715', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150420, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298813', 4298813, '294.270294', '329.274292', '-477.805786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298814', 4298814, '212.636703', '327.759796', '-433.014313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298815', 4298815, '412.045288', '353.824188', '-499.736786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149604, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298816', 4298816, '394.674591', '355.184204', '-555.809875', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298823', 4298823, '260.181488', '356.282806', '-541.374878', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298824', 4298824, '188.311493', '357.747803', '-557.427429', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298825', 4298825, '285.877686', '359.578705', '-569.421021', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148522, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298835', 4298835, '126.756599', '376.088989', '-671.473328', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148250, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298837', 4298837, '356.375610', '356.320007', '-595.291321', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298842', 4298842, '468.223511', '349.470490', '-668.565430', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147700, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298844', 4298844, '531.422729', '348.817993', '-732.418884', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147428, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298845', 4298845, '539.850708', '348.653900', '-745.830627', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147156, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4298846', 4298846, '96.262070', '375.573090', '-645.236084', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298847', 4298847, '618.677002', '325.703705', '-430.685913', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298848', 4298848, '626.867126', '322.872803', '-394.244293', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298849', 4298849, '673.548279', '293.690308', '-320.820892', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298851', 4298851, '584.470276', '282.391998', '-315.705292', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298852', 4298852, '599.206482', '281.914215', '-300.226898', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298853', 4298853, '564.033630', '282.951599', '-300.851807', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298854', 4298854, '684.587830', '306.511292', '-363.764191', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298855', 4298855, '562.945190', '342.102997', '-474.200287', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298858', 4298858, '463.976410', '249.572906', '-308.802399', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298859', 4298859, '473.929901', '247.699707', '-302.357513', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298860', 4298860, '490.206787', '271.288086', '-298.332397', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298861', 4298861, '397.627808', '248.461594', '-320.859192', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298862', 4298862, '283.789703', '236.298401', '-325.220306', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298863', 4298863, '291.652496', '235.940796', '-331.188995', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143094, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298864', 4298864, '296.253906', '234.759995', '-368.673309', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298866', 4298866, '473.213501', '248.114304', '-259.048889', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298871', 4298871, '614.450012', '323.410309', '-400.318604', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298873', 4298873, '668.683716', '306.076996', '-365.426788', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298882', 4298882, '683.369995', '295.457611', '-324.276794', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298884', 4298884, '681.273376', '295.122589', '-325.174805', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298886', 4298886, '581.921387', '282.296997', '-294.985413', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298888', 4298888, '584.498718', '282.204895', '-290.600891', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298891', 4298891, '598.967285', '282.223602', '-314.123505', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298892', 4298892, '570.297485', '282.771301', '-310.753998', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298900', 4298900, '532.146484', '235.205200', '301.718414', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140114, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4298901', 4298901, '548.790588', '235.278793', '308.827301', 114, 0, 0, 0, 1, 6, 0, 0, 662, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139848, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4298902', 4298902, '539.909912', '235.309296', '290.943695', 115, 0, 0, 0, 0, 6, 0, 0, 661, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139582, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(298, 'go012', 'bnpc4298903', 4298903, '543.114685', '235.512100', '292.484009', 116, 0, 0, 0, 0, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139316, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(298, 'go012', 'bnpc4298911', 4298911, '465.921387', '232.736298', '321.428497', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4298914', 4298914, '485.744812', '233.755707', '315.057404', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4298917', 4298917, '8.385859', '200.822098', '514.171082', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298919', 4298919, '3.468143', '219.127502', '377.671387', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298921', 4298921, '56.439899', '213.878601', '395.393188', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298922', 4298922, '32.688740', '261.800201', '264.078491', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298924', 4298924, '31.549110', '262.086487', '260.424103', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298925', 4298925, '97.214867', '251.860901', '270.377808', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298926', 4298926, '65.567993', '240.283707', '329.732208', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298928', 4298928, '173.567596', '231.665298', '266.478912', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298932', 4298932, '267.711090', '226.465698', '281.598785', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298933', 4298933, '349.538513', '232.623795', '259.540588', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298934', 4298934, '353.841400', '234.302200', '255.420700', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298937', 4298937, '398.091797', '226.637100', '344.024994', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298938', 4298938, '278.828003', '242.816803', '203.601105', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298941', 4298941, '191.013199', '256.839386', '104.428802', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4298943', 4298943, '248.318405', '261.876587', '67.776207', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299053', 4299053, '152.027496', '277.941711', '34.020439', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299054', 4299054, '235.312393', '277.402405', '-48.467419', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299057', 4299057, '191.224899', '284.341797', '-81.645477', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299063', 4299063, '374.380005', '306.477386', '-331.197113', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299079', 4299079, '343.678802', '311.085602', '-403.738495', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299081', 4299081, '278.156586', '313.466095', '-429.770386', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299082', 4299082, '347.909790', '309.989197', '-275.124512', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299084', 4299084, '404.743988', '318.417908', '-277.971985', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299088', 4299088, '457.550507', '305.113708', '-285.144989', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299091', 4299091, '458.811310', '305.676910', '-289.211914', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299093', 4299093, '502.242096', '302.581390', '-245.190903', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299094', 4299094, '502.391815', '308.429413', '-356.438385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299096', 4299096, '502.046387', '342.161713', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299098', 4299098, '424.421387', '339.137909', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299099', 4299099, '429.241394', '341.024200', '-436.179199', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299100', 4299100, '218.158203', '330.586700', '-473.045013', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299102', 4299102, '173.367004', '339.026001', '-390.899200', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299103', 4299103, '119.335899', '353.367310', '-336.673615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299106', 4299106, '166.454803', '348.701294', '-492.608795', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299107', 4299107, '432.587189', '365.876801', '-537.769714', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299110', 4299110, '418.305603', '349.797699', '-685.625427', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299112', 4299112, '485.808594', '353.806305', '-658.057312', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299114', 4299114, '298.678589', '345.167297', '-521.747192', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128442, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299115', 4299115, '198.874802', '362.118011', '-601.265076', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299116', 4299116, '138.675293', '374.013306', '-661.681824', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299117', 4299117, '324.054291', '360.242188', '-582.895081', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299119', 4299119, '283.839905', '362.149506', '-625.782288', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299120', 4299120, '210.687897', '361.424805', '-658.411926', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299121', 4299121, '205.782394', '360.548187', '-666.505615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299188', 4299188, '105.119400', '289.448395', '-164.568604', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120116, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299192', 4299192, '62.638309', '289.814606', '-219.226395', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299194', 4299194, '-1.358093', '310.902496', '-142.015701', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299195', 4299195, '-58.910789', '304.604401', '-272.412598', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299197', 4299197, '-86.450127', '300.163605', '-170.834900', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299198', 4299198, '137.090607', '290.130798', '-258.218414', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299208', 4299208, '-115.231300', '298.469788', '-208.100098', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299210', 4299210, '-205.664902', '281.635010', '-192.517700', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118284, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299213', 4299213, '-107.621902', '300.038086', '-137.041306', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118012, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299215', 4299215, '-158.759003', '292.966492', '-201.171295', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299216', 4299216, '-162.136307', '291.173187', '-194.256607', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299217', 4299217, '-205.676498', '283.894012', '-114.763100', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117196, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299218', 4299218, '-212.088394', '285.828400', '-56.427200', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299219', 4299219, '-290.402100', '261.601898', '-157.738800', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116652, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299227', 4299227, '-318.632690', '255.833298', '-42.884541', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101716, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299230', 4299230, '-340.376007', '259.605804', '-64.511017', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101444, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299231', 4299231, '-317.614502', '256.207092', '-97.947693', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299233', 4299233, '-257.298615', '264.585693', '-65.689346', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299235', 4299235, '-249.965302', '269.336914', '-76.447701', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299236', 4299236, '-353.139587', '237.921494', '-157.603195', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299238', 4299238, '-423.544708', '240.253296', '-111.314598', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299241', 4299241, '-359.502197', '233.804596', '-160.537003', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299242', 4299242, '-578.240723', '227.008408', '-125.078201', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116386, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299244', 4299244, '-499.116089', '237.639496', '-97.965683', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116114, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299247', 4299247, '-655.179871', '229.729202', '-54.205719', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115842, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299249', 4299249, '-483.586609', '226.184692', '-125.489799', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299250', 4299250, '-477.837402', '228.009293', '-122.481400', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299252', 4299252, '-573.938416', '231.500397', '-73.804337', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299254', 4299254, '-600.372192', '209.926697', '-352.855804', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114760, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(298, 'go012', 'bnpc4299256', 4299256, '-623.961182', '211.311707', '-374.720001', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299257', 4299257, '-624.778992', '210.859299', '-381.588593', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299258', 4299258, '-586.229492', '201.455200', '-440.921997', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299259', 4299259, '-583.154114', '188.738800', '-477.195404', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299260', 4299260, '-653.461182', '211.102798', '-435.622009', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299422', 4299422, '-650.603027', '204.070007', '-488.214691', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299424', 4299424, '-551.951416', '206.791595', '-350.856995', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112856, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299425', 4299425, '-612.623779', '216.144806', '-319.243988', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299426', 4299426, '-853.938416', '226.438599', '25.457430', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299427', 4299427, '-879.604614', '229.180099', '-15.122490', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299428', 4299428, '-894.004272', '228.026398', '0.443500', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299429', 4299429, '-907.681885', '249.338104', '26.397079', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299430', 4299430, '-907.681885', '247.122192', '-24.585300', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299431', 4299431, '-938.982971', '269.272095', '1.981136', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299433', 4299433, '-951.375916', '276.008698', '-32.272030', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299593', 4299593, '117.442703', '288.131500', '-217.671204', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299595', 4299595, '61.837181', '292.037506', '-153.092804', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299596', 4299596, '58.310040', '291.422913', '-157.591202', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299597', 4299597, '-17.296480', '300.204010', '-215.268906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299598', 4299598, '-102.796997', '298.673889', '-164.088501', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299599', 4299599, '-144.174805', '292.303986', '-187.728806', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299600', 4299600, '-141.522705', '298.377014', '-239.075500', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299602', 4299602, '-187.987900', '287.198914', '-119.562897', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299603', 4299603, '-250.437195', '273.614410', '-139.801193', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299604', 4299604, '-287.381409', '260.165009', '-74.592461', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299605', 4299605, '-249.896500', '264.386505', '-56.690639', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299606', 4299606, '-316.963898', '249.190399', '0.375132', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299607', 4299607, '-353.362305', '249.890305', '-112.803703', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107126, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299608', 4299608, '-317.082214', '255.914795', '-163.691803', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106854, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299610', 4299610, '-540.337280', '216.113495', '-165.331497', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106582, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299612', 4299612, '-494.751099', '227.817902', '-119.577698', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299614', 4299614, '-538.078918', '224.933197', '-115.343002', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299615', 4299615, '-679.120911', '223.608002', '-24.397600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299617', 4299617, '-748.989075', '226.855804', '-70.359383', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105494, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299618', 4299618, '-763.556213', '240.848099', '-149.583405', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105222, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299620', 4299620, '-791.189026', '244.109695', '-171.737000', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104950, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299628', 4299628, '-802.041016', '225.578995', '14.979860', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299805', 4299805, '-869.248901', '228.169098', '24.666691', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299806', 4299806, '-916.034790', '242.289902', '5.756409', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299808', 4299808, '-898.861877', '250.815994', '-36.228569', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299809', 4299809, '-932.563721', '262.462097', '18.376640', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299833', 4299833, '-528.303406', '207.486404', '-361.926514', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299835', 4299835, '-635.674072', '220.452301', '-338.610809', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299836', 4299836, '-582.583984', '206.158493', '-384.262085', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299839', 4299839, '-524.189880', '192.377594', '-420.327301', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299840', 4299840, '-649.544922', '206.868103', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299842', 4299842, '-652.836792', '207.443604', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299844', 4299844, '-459.800110', '286.182892', '196.642899', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99194, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299846', 4299846, '-523.050415', '277.612488', '197.807800', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98922, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299847', 4299847, '-532.402588', '240.741592', '331.532806', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98650, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299850', 4299850, '-475.198303', '237.443207', '403.405304', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299852', 4299852, '-369.299286', '237.950699', '382.602814', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98106, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299853', 4299853, '-350.165009', '237.914505', '384.625702', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97834, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299854', 4299854, '-269.214996', '226.703201', '429.251587', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97562, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299856', 4299856, '-231.006302', '225.146896', '420.889496', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299858', 4299858, '-634.704590', '244.070801', '300.718811', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97018, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299859', 4299859, '-706.643005', '237.401398', '303.170288', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96746, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299861', 4299861, '-766.720093', '254.688202', '421.683014', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96474, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299862', 4299862, '-743.321777', '254.701202', '428.467499', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299872', 4299872, '-358.874786', '272.546112', '253.455994', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299873', 4299873, '-357.118988', '248.051895', '290.108185', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299874', 4299874, '-401.256805', '239.983307', '278.980713', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299876', 4299876, '-288.120392', '293.587006', '256.741089', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299877', 4299877, '-277.870697', '258.656494', '334.187714', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299878', 4299878, '-321.083313', '262.754395', '217.010696', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299879', 4299879, '-440.215912', '244.465805', '319.074097', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94316, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299880', 4299880, '-394.308411', '303.990997', '193.089905', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299881', 4299881, '-460.690186', '270.367493', '260.074188', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4299886', 4299886, '-254.901993', '224.367096', '523.252625', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299887', 4299887, '-247.943405', '224.715195', '514.518921', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93096, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299888', 4299888, '-282.529114', '224.717606', '503.718506', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92824, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299889', 4299889, '-393.453888', '238.452805', '503.715515', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92552, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299909', 4299909, '-485.722290', '243.436295', '460.457214', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92280, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299910', 4299910, '-491.588287', '245.377701', '463.765594', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92008, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299912', 4299912, '-305.548096', '226.398407', '559.785400', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91736, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299914', 4299914, '-212.225906', '229.780594', '563.407715', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91464, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299915', 4299915, '-252.616806', '224.743301', '626.013428', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91192, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299917', 4299917, '-120.126801', '205.896805', '472.541412', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299933', 4299933, '-167.451797', '212.509293', '469.950714', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299935', 4299935, '-192.431595', '215.960907', '481.742401', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299937', 4299937, '-254.539902', '221.577606', '466.534088', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299939', 4299939, '-261.479614', '221.984207', '460.971405', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89970, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299940', 4299940, '-327.888702', '223.177307', '446.066895', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89698, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299942', 4299942, '-452.292694', '231.075394', '433.657410', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299943', 4299943, '-556.198486', '235.399994', '407.330414', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299944', 4299944, '-563.418518', '235.399994', '398.974304', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4299945', 4299945, '-533.244080', '235.399994', '407.132111', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4300046', 4300046, '-699.997925', '253.759995', '507.272186', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88344, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300048', 4300048, '-688.471802', '253.697205', '509.426910', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88072, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300049', 4300049, '-698.510803', '253.838196', '499.010101', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87800, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300050', 4300050, '-705.378479', '253.881699', '505.406494', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87528, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300051', 4300051, '-699.795776', '253.759995', '514.230591', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300052', 4300052, '-688.023315', '253.529099', '507.670410', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300053', 4300053, '-688.742798', '253.351105', '499.477112', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300054', 4300054, '-677.956787', '254.053894', '498.299103', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300056', 4300056, '-493.539612', '282.080109', '191.529907', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300057', 4300057, '-521.202393', '242.145401', '299.671906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300059', 4300059, '-521.172913', '237.402893', '377.595398', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300061', 4300061, '-438.483398', '245.206894', '362.585205', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300062', 4300062, '-248.297302', '227.611099', '410.760986', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300064', 4300064, '-153.368500', '221.118393', '416.250702', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300066', 4300066, '-98.785767', '213.591293', '426.872589', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300069', 4300069, '-272.282501', '264.869385', '321.059906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300070', 4300070, '-390.265106', '233.670807', '321.964600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83926, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300072', 4300072, '-383.889404', '248.725204', '219.890106', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83654, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300074', 4300074, '-416.929291', '233.443802', '461.940796', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300078', 4300078, '-295.979309', '224.444901', '485.191010', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300080', 4300080, '-346.028900', '236.543396', '518.089478', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300081', 4300081, '-227.039001', '229.327805', '547.600525', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300083', 4300083, '-286.249908', '221.550095', '669.298584', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300084', 4300084, '-282.240204', '222.570007', '672.355286', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300085', 4300085, '-254.344894', '224.215302', '580.497681', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300087', 4300087, '-149.461502', '217.410095', '485.622894', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300089', 4300089, '-604.956787', '244.740799', '337.663788', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300090', 4300090, '-649.166504', '245.258606', '286.166504', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300091', 4300091, '-748.151123', '238.541107', '350.326385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300171', 4300171, '566.598206', '289.624603', '98.502197', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4300176', 4300176, '527.275391', '303.059296', '-162.340805', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79372, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(298, 'go012', 'bnpc4300177', 4300177, '586.301575', '302.701202', '-115.328102', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79100, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(298, 'go012', 'bnpc4300178', 4300178, '654.442383', '298.421295', '-12.551030', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78828, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(298, 'go012', 'bnpc4300179', 4300179, '669.497986', '301.708099', '-29.924919', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78556, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(298, 'go012', 'bnpc4300180', 4300180, '602.427917', '290.487396', '-0.884406', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78284, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(298, 'go012', 'bnpc4300181', 4300181, '664.371399', '287.443909', '73.074158', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78012, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(298, 'go012', 'bnpc4300182', 4300182, '601.759216', '287.400208', '127.919098', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77740, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(298, 'go012', 'bnpc4300183', 4300183, '565.585571', '287.455109', '154.665298', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77468, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(298, 'go012', 'bnpc4300184', 4300184, '558.831116', '300.043915', '59.949520', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77196, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(298, 'go012', 'bnpc4300191', 4300191, '511.356689', '303.173004', '-206.740097', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76930, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(298, 'go012', 'bnpc4300194', 4300194, '494.438110', '303.700287', '-197.619598', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76646, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300196', 4300196, '508.591888', '303.338898', '-205.656296', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76392, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(298, 'go012', 'bnpc4300198', 4300198, '523.491211', '302.387909', '-191.363495', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76120, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300200', 4300200, '559.439514', '303.965698', '-151.707001', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75836, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300201', 4300201, '555.992920', '301.960693', '-163.683502', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75570, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300203', 4300203, '593.473511', '302.708496', '-99.112923', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75304, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300204', 4300204, '642.703979', '303.166687', '-43.589840', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300205', 4300205, '650.994812', '303.095612', '-38.070992', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74742, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300206', 4300206, '625.239319', '302.690613', '-97.402184', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74476, 1, 0, 0, 0, 45, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300209', 4300209, '635.367188', '303.307190', '-92.580772', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74198, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(298, 'go012', 'bnpc4300210', 4300210, '636.402405', '303.397003', '-95.636833', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73938, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(298, 'go012', 'bnpc4300212', 4300212, '640.141296', '289.793488', '15.564350', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73654, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300213', 4300213, '632.201416', '287.460602', '83.472313', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73394, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300214', 4300214, '694.667114', '302.802002', '-25.909540', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73116, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300215', 4300215, '668.584900', '286.359985', '53.434738', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72856, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300219', 4300219, '653.565674', '286.929688', '35.585339', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72566, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(298, 'go012', 'bnpc4300220', 4300220, '654.409180', '286.791412', '37.999821', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72312, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(298, 'go012', 'bnpc4300221', 4300221, '655.671082', '286.824310', '34.141949', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72034, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(298, 'go012', 'bnpc4300222', 4300222, '657.228088', '286.375885', '36.471931', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71756, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(298, 'go012', 'bnpc4300226', 4300226, '639.859619', '286.099091', '135.124603', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71478, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(298, 'go012', 'bnpc4300227', 4300227, '642.707703', '286.175110', '132.877899', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71212, 1, 0, 0, 0, 0, 30120, 0, 0, 0), +(298, 'go012', 'bnpc4300229', 4300229, '708.942505', '286.232513', '46.920448', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70946, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300230', 4300230, '711.298828', '285.307404', '75.698997', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70680, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300232', 4300232, '613.615784', '284.572296', '166.852005', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70408, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300233', 4300233, '590.029480', '285.689209', '176.024506', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70130, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300234', 4300234, '646.990784', '285.135101', '149.341507', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69852, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300236', 4300236, '586.167297', '288.737610', '-28.609209', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4300238', 4300238, '582.383789', '289.517700', '-46.738300', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4300239', 4300239, '559.963928', '292.885193', '-35.993568', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65790, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4300241', 4300241, '576.693481', '289.831787', '-46.195572', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4300242', 4300242, '498.254486', '308.702209', '-165.574203', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4300244', 4300244, '507.927002', '303.303497', '-229.236298', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4300246', 4300246, '630.399292', '300.341187', '-66.790810', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65518, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4300250', 4300250, '684.486816', '291.013214', '7.434129', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4300253', 4300253, '639.507080', '287.656799', '38.046551', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66062, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4300254', 4300254, '630.756226', '286.750000', '109.616798', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4300256', 4300256, '570.830383', '286.569214', '120.215103', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4300257', 4300257, '555.228516', '297.855499', '84.213348', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4300284', 4300284, '605.249023', '330.830811', '-303.486786', 114, 0, 0, 0, 0, 6, 0, 0, 662, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68668, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(298, 'go012', 'bnpc4300286', 4300286, '527.855225', '308.308502', '-299.702515', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69478, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300287', 4300287, '575.036316', '320.881805', '-289.906189', 115, 0, 0, 0, 1, 6, 0, 0, 661, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69218, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4300288', 4300288, '577.508118', '322.468903', '-294.789093', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68952, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(298, 'go012', 'bnpc4325155', 4325155, '215.504501', '360.039307', '-581.431030', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4406869', 4406869, '311.001099', '307.036499', '-422.752106', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126194, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406870', 4406870, '323.323395', '303.822296', '-391.989014', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125922, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406871', 4406871, '317.110413', '305.692505', '-418.385315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125650, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406872', 4406872, '351.343506', '312.029114', '-396.169098', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125378, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406873', 4406873, '350.968994', '315.450592', '-416.192993', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125106, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406874', 4406874, '48.752670', '311.224213', '-250.581207', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124834, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406875', 4406875, '44.907230', '311.238312', '-245.044693', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124562, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406876', 4406876, '66.984810', '300.472412', '-252.706802', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124290, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406877', 4406877, '-17.150419', '311.581512', '-255.273895', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124018, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406878', 4406878, '7.231910', '312.528687', '-245.321793', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123746, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406879', 4406879, '-6.278003', '305.376709', '-233.466095', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123474, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406880', 4406880, '-10.073550', '305.779694', '-236.697601', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123202, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406884', 4406884, '357.847992', '311.662201', '-388.165497', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122930, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406885', 4406885, '363.148010', '313.250488', '-391.308411', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122658, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406886', 4406886, '331.929413', '319.783203', '-430.502808', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122386, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406888', 4406888, '113.582199', '354.933685', '-335.568512', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406890', 4406890, '121.680801', '354.167114', '-326.125214', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406891', 4406891, '110.022797', '357.553314', '-311.841187', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406892', 4406892, '111.824799', '358.195190', '-382.551514', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406893', 4406893, '115.392303', '357.688690', '-387.074890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4406894', 4406894, '93.907928', '362.855194', '-349.329315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4600355', 4600355, '547.412170', '348.384613', '-748.106018', 1699, 0, 0, 0, 8, 6, 0, 0, 2162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4614331', 4614331, '530.815125', '348.686096', '-743.006226', 1700, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43556, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4614332', 4614332, '535.935608', '348.616394', '-737.220215', 2222, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43290, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4621624', 4621624, '-332.429199', '307.678406', '234.107803', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44948, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(298, 'go012', 'bnpc4890695', 4890695, '-188.798996', '226.035995', '400.288086', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(298, 'go012', 'bnpc4890696', 4890696, '-132.585098', '216.182098', '435.066193', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4291568', 4291568, '76.290123', '30.749250', '-733.599182', 1776, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(299, 'go013', 'bnpc4292672', 4292672, '-12.396590', '18.377340', '-670.928772', 1777, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22138, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(299, 'go013', 'bnpc4292673', 4292673, '91.670517', '20.458050', '-614.237122', 1778, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21872, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(299, 'go013', 'bnpc4295485', 4295485, '-266.791504', '-5.944477', '-526.778198', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295487', 4295487, '-276.140686', '-8.410786', '-516.253174', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295488', 4295488, '-298.914093', '-4.103804', '-550.291321', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295489', 4295489, '-103.196297', '1.542795', '-586.758179', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295490', 4295490, '-207.536301', '-2.690903', '-578.039001', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295491', 4295491, '-103.713898', '-0.832843', '-642.948425', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295492', 4295492, '-208.009796', '1.723610', '-616.185120', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71640, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295493', 4295493, '-172.408905', '4.990528', '-671.229126', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295495', 4295495, '-380.537506', '-16.898170', '-441.082001', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295496', 4295496, '-430.882507', '-16.898170', '-384.312195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295497', 4295497, '-390.139587', '-16.898170', '-350.704712', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70558, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295498', 4295498, '-398.062103', '-16.898170', '-358.104401', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70286, 1, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(299, 'go013', 'bnpc4295499', 4295499, '-336.279297', '-16.898170', '-437.756195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70014, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295500', 4295500, '-302.568298', '-16.898170', '-458.892609', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69742, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295501', 4295501, '-402.253601', '-16.898170', '-464.540710', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69470, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295503', 4295503, '-369.143799', '-16.898170', '-389.766815', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69198, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295505', 4295505, '-359.561707', '-16.042290', '-486.552094', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68932, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295506', 4295506, '-417.805786', '-6.910027', '-523.771912', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295507', 4295507, '-466.061310', '-9.446001', '-532.017029', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295508', 4295508, '-413.364410', '-2.492527', '-559.181519', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295514', 4295514, '-350.972809', '-6.607239', '-526.665222', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295515', 4295515, '-360.309296', '-4.290267', '-546.520813', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295516', 4295516, '-350.790710', '-3.296191', '-550.475586', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295520', 4295520, '-396.722198', '-14.513140', '-500.059692', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295524', 4295524, '-234.088699', '-4.989685', '-302.540588', 724, 0, 0, 0, 1, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4295525', 4295525, '-211.180405', '-2.844870', '-288.253998', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66496, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(299, 'go013', 'bnpc4295526', 4295526, '-257.312897', '1.113892', '-308.064392', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66230, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4295528', 4295528, '-212.115707', '-2.955642', '-289.682190', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65946, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(299, 'go013', 'bnpc4295529', 4295529, '-224.841705', '3.952026', '-259.540710', 725, 0, 0, 0, 1, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65680, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4295530', 4295530, '-203.875793', '24.704220', '-215.411697', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4295531', 4295531, '-234.943207', '21.774599', '-213.092300', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65136, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(299, 'go013', 'bnpc4295532', 4295532, '-235.959198', '22.114910', '-212.031006', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64858, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(299, 'go013', 'bnpc4295533', 4295533, '-234.301407', '21.966511', '-211.462402', 726, 0, 0, 0, 0, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(299, 'go013', 'bnpc4295534', 4295534, '-127.288002', '47.127460', '-188.580307', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295535', 4295535, '-140.871399', '45.053020', '-179.736603', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295536', 4295536, '-136.478302', '46.067551', '-193.959702', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295537', 4295537, '-143.537201', '44.052780', '-181.398193', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295538', 4295538, '-146.514297', '42.327431', '-204.108902', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295539', 4295539, '-129.866394', '46.678692', '-196.996994', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295540', 4295540, '-145.364395', '42.544418', '-202.550705', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295541', 4295541, '-144.789993', '44.556961', '-194.376297', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295659', 4295659, '-53.322418', '17.072929', '-621.681213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295665', 4295665, '-88.710228', '0.643335', '-625.828125', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295666', 4295666, '-207.395203', '8.290789', '-665.648376', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295668', 4295668, '-156.229294', '-1.918439', '-604.694275', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295669', 4295669, '-304.707489', '-15.793150', '-491.020111', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295670', 4295670, '-386.814087', '-6.319692', '-539.647400', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295674', 4295674, '-375.356689', '-13.229610', '-505.729797', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295679', 4295679, '-327.840393', '-2.384109', '-563.164490', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295691', 4295691, '482.994690', '-1.037749', '-792.622070', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59992, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295693', 4295693, '473.960388', '0.503479', '-803.097595', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59720, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295694', 4295694, '450.441315', '-4.905994', '-755.835999', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59448, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295695', 4295695, '500.877289', '-5.020264', '-757.289978', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59176, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295697', 4295697, '456.274902', '-4.258285', '-763.958801', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295698', 4295698, '550.072510', '-9.750549', '-735.286499', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295700', 4295700, '487.731598', '2.187441', '-809.306885', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58360, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295702', 4295702, '268.736298', '32.329670', '-657.612671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295704', 4295704, '272.319611', '32.540180', '-659.312988', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295705', 4295705, '285.744507', '34.969521', '-689.040283', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295709', 4295709, '298.145996', '20.340210', '-684.382385', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295710', 4295710, '348.251495', '21.030451', '-726.475220', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295711', 4295711, '352.642487', '20.319700', '-740.209778', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295712', 4295712, '369.140015', '21.089970', '-736.832886', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56462, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295715', 4295715, '363.363007', '-1.968445', '-698.451172', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56190, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295716', 4295716, '557.910828', '-5.547063', '-643.875671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55918, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295717', 4295717, '557.692322', '16.908760', '-525.262085', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55646, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295718', 4295718, '576.089783', '12.066130', '-514.577271', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55374, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295719', 4295719, '594.596985', '7.711907', '-478.120911', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295720', 4295720, '616.268982', '8.446064', '-482.073486', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(299, 'go013', 'bnpc4295726', 4295726, '356.740601', '-6.149414', '-463.218109', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295727', 4295727, '365.071991', '-14.602910', '-430.808014', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54298, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295728', 4295728, '350.667511', '-17.288509', '-404.379303', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295734', 4295734, '413.196686', '-20.564011', '-317.744904', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295735', 4295735, '387.892609', '-18.073410', '-346.505707', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53476, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295736', 4295736, '450.900513', '-17.914270', '-353.105286', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295737', 4295737, '481.724091', '-12.428540', '-382.045105', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295738', 4295738, '511.909393', '-9.373532', '-382.464996', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52660, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295739', 4295739, '522.073730', '0.990242', '-453.501709', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295747', 4295747, '588.058716', '-2.946974', '-271.337891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295749', 4295749, '568.700012', '-2.429443', '-330.453400', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295751', 4295751, '582.843079', '-3.006616', '-272.419891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295755', 4295755, '214.220200', '-22.109159', '-425.877502', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51324, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295757', 4295757, '208.472198', '-22.096960', '-422.660797', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295759', 4295759, '162.350601', '-27.989771', '-429.755402', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295760', 4295760, '152.123001', '-27.048130', '-440.418915', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295761', 4295761, '177.396194', '-25.049320', '-444.224487', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295762', 4295762, '267.297211', '-21.872410', '-406.569397', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295763', 4295763, '306.843597', '-26.993231', '-409.628510', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295764', 4295764, '304.550415', '-25.764360', '-424.008301', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295769', 4295769, '306.531403', '-6.106912', '-519.224976', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49130, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295770', 4295770, '282.576813', '-0.225863', '-572.515686', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48852, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295771', 4295771, '310.969513', '6.158492', '-563.194397', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48592, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295809', 4295809, '156.994202', '14.383940', '-592.509216', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48290, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295811', 4295811, '223.296295', '19.340050', '-610.880798', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48018, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295812', 4295812, '201.983597', '-0.198364', '-555.107971', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295813', 4295813, '341.647797', '-7.563892', '-456.047089', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295816', 4295816, '408.980713', '-16.354401', '-360.560699', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295818', 4295818, '509.696991', '-9.567444', '-375.661896', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295820', 4295820, '496.853485', '0.344957', '-504.120392', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295823', 4295823, '601.499573', '8.072348', '-517.726685', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295825', 4295825, '570.526428', '-2.482952', '-625.752014', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295827', 4295827, '556.342102', '-7.876167', '-657.103516', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295829', 4295829, '554.863770', '-9.262268', '-749.843628', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295831', 4295831, '503.838013', '-2.956629', '-777.365173', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295834', 4295834, '482.706696', '1.341902', '-807.133728', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295835', 4295835, '486.772400', '5.215003', '-836.320984', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295836', 4295836, '471.659790', '3.490144', '-819.978882', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295837', 4295837, '484.345886', '5.375706', '-837.509583', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295840', 4295840, '412.710693', '-9.353821', '-747.005371', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295844', 4295844, '384.603485', '-4.196289', '-690.486023', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295846', 4295846, '332.112701', '4.562378', '-690.424988', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43394, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295850', 4295850, '316.341492', '26.032160', '-728.249573', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43122, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295851', 4295851, '297.774597', '15.475720', '-651.450989', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295855', 4295855, '598.748718', '-3.250244', '-301.930298', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295858', 4295858, '591.221985', '-1.360156', '-323.232788', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295862', 4295862, '-314.692108', '-15.474820', '-327.581299', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295866', 4295866, '-272.613800', '-8.061660', '-332.045013', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295867', 4295867, '-217.273193', '-1.571716', '-276.691895', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295870', 4295870, '-229.022598', '14.450200', '-236.072403', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295871', 4295871, '-188.372696', '33.340939', '-195.666504', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4295884', 4295884, '-562.005005', '-2.945007', '-452.323212', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40722, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4295886', 4295886, '-554.466980', '-3.768982', '-380.758392', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40456, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4295887', 4295887, '-568.932678', '-2.945007', '-424.124603', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40190, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4295889', 4295889, '-543.789124', '-3.866000', '-411.311401', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4296050', 4296050, '-471.824188', '-6.332520', '-433.737701', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39640, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(299, 'go013', 'bnpc4296052', 4296052, '-484.855499', '-6.027344', '-447.898102', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39368, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(299, 'go013', 'bnpc4296053', 4296053, '-445.975494', '-12.710820', '-466.361511', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32130, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4296054', 4296054, '-473.746887', '-4.409851', '-480.766113', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32432, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4296055', 4296055, '-471.580109', '-6.668213', '-449.912292', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39102, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4296056', 4296056, '-453.727112', '-10.818660', '-442.862610', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38842, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4296060', 4296060, '-455.741211', '-7.492188', '-484.428192', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38552, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(299, 'go013', 'bnpc4296081', 4296081, '-603.967285', '-3.891113', '-368.337494', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38298, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4296082', 4296082, '-640.680481', '-3.891113', '-370.046600', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38032, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4296091', 4296091, '-592.797729', '-2.945007', '-432.211792', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37736, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(299, 'go013', 'bnpc4296093', 4296093, '-635.341492', '-2.933044', '-396.278687', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37464, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(299, 'go013', 'bnpc4296094', 4296094, '-548.271912', '-1.937927', '-310.963593', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37204, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4296096', 4296096, '-498.711395', '-3.960067', '-255.747696', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36932, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(299, 'go013', 'bnpc4296098', 4296098, '-558.028809', '-3.683542', '-364.324585', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36648, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(299, 'go013', 'bnpc4296100', 4296100, '-489.250092', '-3.708008', '-282.124115', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36376, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(299, 'go013', 'bnpc4296103', 4296103, '-446.294891', '-4.000447', '-219.651199', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36104, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(299, 'go013', 'bnpc4296105', 4296105, '-437.867004', '-2.581742', '-273.708099', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35832, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(299, 'go013', 'bnpc4296108', 4296108, '-527.244995', '-2.670410', '-288.624512', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35554, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4296110', 4296110, '-560.845276', '-2.975586', '-327.595886', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35294, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4296111', 4296111, '-547.325928', '-1.754883', '-291.645691', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35016, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4296113', 4296113, '-527.817322', '-3.767937', '-323.068909', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4296115', 4296115, '-543.791321', '-3.216822', '-330.542389', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34496, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4296118', 4296118, '-473.824707', '-3.767937', '-273.987488', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34224, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4296119', 4296119, '-488.912994', '-3.958386', '-246.223602', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33946, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4296120', 4296120, '-461.660309', '-3.996136', '-252.041306', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33650, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4296121', 4296121, '-428.786102', '-3.945695', '-301.904114', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4296122', 4296122, '-429.702698', '-3.990123', '-245.654495', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33118, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4296344', 4296344, '-618.398071', '-3.216822', '-419.669586', 201, 0, 0, 0, 5, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32692, 1, 0, 0, 0, 0, 0, 4296333, 0, 0), +(299, 'go013', 'bnpc4331545', 4331545, '-431.193512', '-15.291800', '-426.211914', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31858, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4331546', 4331546, '-472.129791', '-5.294910', '-466.746185', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31586, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4331549', 4331549, '-455.329895', '-10.797180', '-446.420288', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4331550', 4331550, '-470.522400', '-4.822834', '-501.822296', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31072, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(299, 'go013', 'bnpc4621627', 4621627, '459.067596', '6.191762', '-845.122498', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22746, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4291568', 4291568, '76.290123', '30.749250', '-733.599182', 1776, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(300, 'go014', 'bnpc4292672', 4292672, '-12.396590', '18.377340', '-670.928772', 1777, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22138, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(300, 'go014', 'bnpc4292673', 4292673, '91.670517', '20.458050', '-614.237122', 1778, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21872, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(300, 'go014', 'bnpc4295485', 4295485, '-266.791504', '-5.944477', '-526.778198', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295487', 4295487, '-276.140686', '-8.410786', '-516.253174', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295488', 4295488, '-298.914093', '-4.103804', '-550.291321', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295489', 4295489, '-103.196297', '1.542795', '-586.758179', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295490', 4295490, '-207.536301', '-2.690903', '-578.039001', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295491', 4295491, '-103.713898', '-0.832843', '-642.948425', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295492', 4295492, '-208.009796', '1.723610', '-616.185120', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71640, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295493', 4295493, '-172.408905', '4.990528', '-671.229126', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295495', 4295495, '-380.537506', '-16.898170', '-441.082001', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295496', 4295496, '-430.882507', '-16.898170', '-384.312195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295497', 4295497, '-390.139587', '-16.898170', '-350.704712', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70558, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295498', 4295498, '-398.062103', '-16.898170', '-358.104401', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70286, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295499', 4295499, '-336.279297', '-16.898170', '-437.756195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70014, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295500', 4295500, '-302.568298', '-16.898170', '-458.892609', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69742, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295501', 4295501, '-402.253601', '-16.898170', '-464.540710', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69470, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295503', 4295503, '-369.143799', '-16.898170', '-389.766815', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69198, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295505', 4295505, '-359.561707', '-16.042290', '-486.552094', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68932, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295506', 4295506, '-417.805786', '-6.910027', '-523.771912', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295507', 4295507, '-466.061310', '-9.446001', '-532.017029', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295508', 4295508, '-413.364410', '-2.492527', '-559.181519', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295514', 4295514, '-350.972809', '-6.607239', '-526.665222', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295515', 4295515, '-360.309296', '-4.290267', '-546.520813', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295516', 4295516, '-350.790710', '-3.296191', '-550.475586', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295520', 4295520, '-396.722198', '-14.513140', '-500.059692', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295524', 4295524, '-234.088699', '-4.989685', '-302.540588', 724, 0, 0, 0, 1, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4295525', 4295525, '-211.180405', '-2.844870', '-288.253998', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66496, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(300, 'go014', 'bnpc4295526', 4295526, '-257.312897', '1.113892', '-308.064392', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66230, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4295528', 4295528, '-212.115707', '-2.955642', '-289.682190', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65946, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(300, 'go014', 'bnpc4295529', 4295529, '-224.841705', '3.952026', '-259.540710', 725, 0, 0, 0, 1, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65680, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4295530', 4295530, '-203.875793', '24.704220', '-215.411697', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4295531', 4295531, '-234.943207', '21.774599', '-213.092300', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65136, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(300, 'go014', 'bnpc4295532', 4295532, '-235.959198', '22.114910', '-212.031006', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64858, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(300, 'go014', 'bnpc4295533', 4295533, '-234.301407', '21.966511', '-211.462402', 726, 0, 0, 0, 0, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(300, 'go014', 'bnpc4295534', 4295534, '-127.288002', '47.127460', '-188.580307', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295535', 4295535, '-140.871399', '45.053020', '-179.736603', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295536', 4295536, '-136.478302', '46.067551', '-193.959702', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295537', 4295537, '-143.537201', '44.052780', '-181.398193', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295538', 4295538, '-146.514297', '42.327431', '-204.108902', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295539', 4295539, '-129.866394', '46.678692', '-196.996994', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295540', 4295540, '-145.364395', '42.544418', '-202.550705', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295541', 4295541, '-144.789993', '44.556961', '-194.376297', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295659', 4295659, '-53.322418', '17.072929', '-621.681213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295665', 4295665, '-88.710228', '0.643335', '-625.828125', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295666', 4295666, '-207.395203', '8.290789', '-665.648376', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295668', 4295668, '-156.229294', '-1.918439', '-604.694275', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295669', 4295669, '-304.707489', '-15.793150', '-491.020111', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295670', 4295670, '-386.814087', '-6.319692', '-539.647400', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295674', 4295674, '-375.356689', '-13.229610', '-505.729797', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295679', 4295679, '-327.840393', '-2.384109', '-563.164490', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295691', 4295691, '482.994690', '-1.037749', '-792.622070', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59992, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295693', 4295693, '473.960388', '0.503479', '-803.097595', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59720, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295694', 4295694, '450.441315', '-4.905994', '-755.835999', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59448, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295695', 4295695, '500.877289', '-5.020264', '-757.289978', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59176, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295697', 4295697, '456.274902', '-4.258285', '-763.958801', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295698', 4295698, '550.072510', '-9.750549', '-735.286499', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295700', 4295700, '487.731598', '2.187441', '-809.306885', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58360, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295702', 4295702, '268.736298', '32.329670', '-657.612671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295704', 4295704, '272.319611', '32.540180', '-659.312988', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295705', 4295705, '285.744507', '34.969521', '-689.040283', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295709', 4295709, '298.145996', '20.340210', '-684.382385', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295710', 4295710, '348.251495', '21.030451', '-726.475220', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295711', 4295711, '352.642487', '20.319700', '-740.209778', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295712', 4295712, '369.140015', '21.089970', '-736.832886', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56462, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295715', 4295715, '363.363007', '-1.968445', '-698.451172', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56190, 1, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(300, 'go014', 'bnpc4295716', 4295716, '557.910828', '-5.547063', '-643.875671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55918, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295717', 4295717, '557.692322', '16.908760', '-525.262085', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55646, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295718', 4295718, '576.089783', '12.066130', '-514.577271', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55374, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295719', 4295719, '594.596985', '7.711907', '-478.120911', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295720', 4295720, '616.268982', '8.446064', '-482.073486', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(300, 'go014', 'bnpc4295726', 4295726, '356.740601', '-6.149414', '-463.218109', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295727', 4295727, '365.071991', '-14.602910', '-430.808014', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54298, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295728', 4295728, '350.667511', '-17.288509', '-404.379303', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295734', 4295734, '413.196686', '-20.564011', '-317.744904', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295735', 4295735, '387.892609', '-18.073410', '-346.505707', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53476, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295736', 4295736, '450.900513', '-17.914270', '-353.105286', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295737', 4295737, '481.724091', '-12.428540', '-382.045105', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295738', 4295738, '511.909393', '-9.373532', '-382.464996', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52660, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295739', 4295739, '522.073730', '0.990242', '-453.501709', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295747', 4295747, '588.058716', '-2.946974', '-271.337891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295749', 4295749, '568.700012', '-2.429443', '-330.453400', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295751', 4295751, '582.843079', '-3.006616', '-272.419891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295755', 4295755, '214.220200', '-22.109159', '-425.877502', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51324, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295757', 4295757, '208.472198', '-22.096960', '-422.660797', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295759', 4295759, '162.350601', '-27.989771', '-429.755402', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295760', 4295760, '152.123001', '-27.048130', '-440.418915', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295761', 4295761, '177.396194', '-25.049320', '-444.224487', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295762', 4295762, '267.297211', '-21.872410', '-406.569397', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295763', 4295763, '306.843597', '-26.993231', '-409.628510', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295764', 4295764, '304.550415', '-25.764360', '-424.008301', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295769', 4295769, '306.531403', '-6.106912', '-519.224976', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49130, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295770', 4295770, '282.576813', '-0.225863', '-572.515686', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48852, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295771', 4295771, '310.969513', '6.158492', '-563.194397', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48592, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295809', 4295809, '156.994202', '14.383940', '-592.509216', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48290, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295811', 4295811, '223.296295', '19.340050', '-610.880798', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48018, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295812', 4295812, '201.983597', '-0.198364', '-555.107971', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295813', 4295813, '341.647797', '-7.563892', '-456.047089', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295816', 4295816, '408.980713', '-16.354401', '-360.560699', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295818', 4295818, '509.696991', '-9.567444', '-375.661896', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295820', 4295820, '496.853485', '0.344957', '-504.120392', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295823', 4295823, '601.499573', '8.072348', '-517.726685', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295825', 4295825, '570.526428', '-2.482952', '-625.752014', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295827', 4295827, '556.342102', '-7.876167', '-657.103516', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295829', 4295829, '554.863770', '-9.262268', '-749.843628', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295831', 4295831, '503.838013', '-2.956629', '-777.365173', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295834', 4295834, '482.706696', '1.341902', '-807.133728', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295835', 4295835, '486.772400', '5.215003', '-836.320984', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295836', 4295836, '471.659790', '3.490144', '-819.978882', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295837', 4295837, '484.345886', '5.375706', '-837.509583', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295840', 4295840, '412.710693', '-9.353821', '-747.005371', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295844', 4295844, '384.603485', '-4.196289', '-690.486023', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295846', 4295846, '332.112701', '4.562378', '-690.424988', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43394, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295850', 4295850, '316.341492', '26.032160', '-728.249573', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43122, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295851', 4295851, '297.774597', '15.475720', '-651.450989', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295855', 4295855, '598.748718', '-3.250244', '-301.930298', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295858', 4295858, '591.221985', '-1.360156', '-323.232788', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295862', 4295862, '-314.692108', '-15.474820', '-327.581299', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295866', 4295866, '-272.613800', '-8.061660', '-332.045013', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295867', 4295867, '-217.273193', '-1.571716', '-276.691895', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295870', 4295870, '-229.022598', '14.450200', '-236.072403', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295871', 4295871, '-188.372696', '33.340939', '-195.666504', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4295884', 4295884, '-562.005005', '-2.945007', '-452.323212', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40722, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4295886', 4295886, '-554.466980', '-3.768982', '-380.758392', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40456, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4295887', 4295887, '-568.932678', '-2.945007', '-424.124603', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40190, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4295889', 4295889, '-543.789124', '-3.866000', '-411.311401', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4296050', 4296050, '-471.824188', '-6.332520', '-433.737701', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39640, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(300, 'go014', 'bnpc4296052', 4296052, '-484.855499', '-6.027344', '-447.898102', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39368, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(300, 'go014', 'bnpc4296053', 4296053, '-445.975494', '-12.710820', '-466.361511', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32130, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4296054', 4296054, '-473.746887', '-4.409851', '-480.766113', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32432, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4296055', 4296055, '-471.580109', '-6.668213', '-449.912292', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39102, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4296056', 4296056, '-453.727112', '-10.818660', '-442.862610', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38842, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4296060', 4296060, '-455.741211', '-7.492188', '-484.428192', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38552, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(300, 'go014', 'bnpc4296081', 4296081, '-603.967285', '-3.891113', '-368.337494', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38298, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4296082', 4296082, '-640.680481', '-3.891113', '-370.046600', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38032, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4296091', 4296091, '-592.797729', '-2.945007', '-432.211792', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37736, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(300, 'go014', 'bnpc4296093', 4296093, '-635.341492', '-2.933044', '-396.278687', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37464, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(300, 'go014', 'bnpc4296094', 4296094, '-548.271912', '-1.937927', '-310.963593', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37204, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4296096', 4296096, '-498.711395', '-3.960067', '-255.747696', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36932, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(300, 'go014', 'bnpc4296098', 4296098, '-558.028809', '-3.683542', '-364.324585', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36648, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(300, 'go014', 'bnpc4296100', 4296100, '-489.250092', '-3.708008', '-282.124115', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36376, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(300, 'go014', 'bnpc4296103', 4296103, '-446.294891', '-4.000447', '-219.651199', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36104, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(300, 'go014', 'bnpc4296105', 4296105, '-437.867004', '-2.581742', '-273.708099', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35832, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(300, 'go014', 'bnpc4296108', 4296108, '-527.244995', '-2.670410', '-288.624512', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35554, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4296110', 4296110, '-560.845276', '-2.975586', '-327.595886', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35294, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4296111', 4296111, '-547.325928', '-1.754883', '-291.645691', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35016, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4296113', 4296113, '-527.817322', '-3.767937', '-323.068909', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4296115', 4296115, '-543.791321', '-3.216822', '-330.542389', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34496, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4296118', 4296118, '-473.824707', '-3.767937', '-273.987488', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34224, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4296119', 4296119, '-488.912994', '-3.958386', '-246.223602', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33946, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4296120', 4296120, '-461.660309', '-3.996136', '-252.041306', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33650, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4296121', 4296121, '-428.786102', '-3.945695', '-301.904114', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4296122', 4296122, '-429.702698', '-3.990123', '-245.654495', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33118, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4296344', 4296344, '-618.398071', '-3.216822', '-419.669586', 201, 0, 0, 0, 5, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32692, 1, 0, 0, 0, 0, 0, 4296333, 0, 0), +(300, 'go014', 'bnpc4331545', 4331545, '-431.193512', '-15.291800', '-426.211914', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31858, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4331546', 4331546, '-472.129791', '-5.294910', '-466.746185', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31586, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4331549', 4331549, '-455.329895', '-10.797180', '-446.420288', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4331550', 4331550, '-470.522400', '-4.822834', '-501.822296', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31072, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(300, 'go014', 'bnpc4621627', 4621627, '459.067596', '6.191762', '-845.122498', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22746, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4291453', 4291453, '155.132599', '222.009995', '348.043488', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41428, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(301, 'e0051', 'bnpc4291457', 4291457, '272.663513', '222.247696', '334.248901', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41156, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(301, 'e0051', 'bnpc4291464', 4291464, '220.038406', '302.644592', '-149.387497', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(301, 'e0051', 'bnpc4291467', 4291467, '177.878494', '301.664612', '-190.712402', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40618, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(301, 'e0051', 'bnpc4291540', 4291540, '264.301514', '302.632202', '-284.870697', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40346, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(301, 'e0051', 'bnpc4291544', 4291544, '-136.888702', '304.096985', '-285.084290', 1775, 0, 0, 0, 0, 6, 0, 0, 1583, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40080, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(301, 'e0051', 'bnpc4291545', 4291545, '-494.600586', '204.213104', '-188.481094', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39796, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(301, 'e0051', 'bnpc4291549', 4291549, '-535.141113', '204.035507', '-287.671906', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39524, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(301, 'e0051', 'bnpc4296962', 4296962, '6.586450', '224.231003', '359.448090', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4296996', 4296996, '16.820339', '216.422195', '389.762604', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4296997', 4296997, '31.967649', '236.529999', '323.628510', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4296998', 4296998, '72.035683', '242.920105', '316.766113', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4296999', 4296999, '79.061470', '241.243393', '319.846802', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297000', 4297000, '112.809898', '239.429306', '294.575287', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163724, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297001', 4297001, '58.960991', '253.937698', '281.400696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163452, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297003', 4297003, '10.569400', '224.790207', '357.938599', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163180, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297008', 4297008, '354.657288', '224.892807', '300.765289', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297010', 4297010, '417.257904', '226.214996', '374.532593', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297011', 4297011, '421.699005', '227.744202', '370.285492', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297012', 4297012, '330.572113', '223.491394', '369.867493', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297013', 4297013, '429.534393', '217.970001', '417.141296', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161826, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297015', 4297015, '417.746185', '217.952194', '480.668488', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161554, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297016', 4297016, '422.541687', '219.795303', '494.286896', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161282, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297019', 4297019, '411.649689', '220.784195', '484.018890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161010, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297021', 4297021, '181.170303', '242.354599', '223.538406', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160744, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297025', 4297025, '342.033508', '264.985504', '103.754501', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160472, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297026', 4297026, '88.700684', '244.067993', '303.089813', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297027', 4297027, '88.700684', '222.003494', '420.492798', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297028', 4297028, '-25.009581', '205.387497', '480.682007', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297029', 4297029, '398.841614', '224.765701', '381.022705', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297232', 4297232, '-397.424805', '210.788193', '-238.255402', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38242, 8, 0, 0, 4128002, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4297234', 4297234, '-397.352997', '210.788193', '-233.666794', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37970, 8, 0, 0, 4128001, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4297235', 4297235, '-397.251587', '210.788193', '-228.848999', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37698, 8, 0, 0, 4128000, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4297236', 4297236, '-423.044800', '210.788193', '-221.963104', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37426, 8, 0, 0, 4297227, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4297238', 4297238, '-413.101990', '210.788193', '-212.035004', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37154, 8, 0, 0, 4297228, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4297239', 4297239, '-417.529114', '210.788193', '-217.341202', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36882, 8, 0, 0, 4297229, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4297336', 4297336, '168.169693', '276.447601', '-48.600040', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159112, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297337', 4297337, '264.687988', '294.602692', '-93.670403', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158840, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4297346', 4297346, '280.170807', '253.192902', '147.692001', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4297350', 4297350, '334.350311', '248.434402', '184.154297', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4297353', 4297353, '327.623993', '256.382294', '132.340805', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4297354', 4297354, '291.785187', '269.499786', '39.650711', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4297356', 4297356, '192.950302', '271.137512', '3.646851', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4297359', 4297359, '285.844391', '267.842712', '44.338120', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4297363', 4297363, '173.391296', '272.125793', '-12.465330', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4297364', 4297364, '249.355698', '270.133301', '26.395069', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4297365', 4297365, '203.100204', '254.232300', '149.502304', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298567', 4298567, '157.396698', '293.324097', '-98.374939', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298571', 4298571, '159.523300', '293.493011', '-99.299156', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298572', 4298572, '135.779297', '299.755890', '-101.941704', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298573', 4298573, '136.228699', '283.407715', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298574', 4298574, '258.647614', '289.809692', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298575', 4298575, '254.634094', '287.557098', '-64.855118', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298576', 4298576, '268.831512', '284.212891', '-40.760189', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298741', 4298741, '251.759094', '294.415894', '-111.584099', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298744', 4298744, '288.151489', '302.427002', '-86.886337', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153938, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298765', 4298765, '321.597290', '303.200989', '-338.780914', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298767', 4298767, '346.691895', '304.562286', '-319.108887', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298770', 4298770, '357.329712', '304.360687', '-356.956696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298772', 4298772, '407.769012', '305.618500', '-327.457397', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298773', 4298773, '412.865387', '304.484802', '-333.469391', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298780', 4298780, '365.239410', '319.169586', '-254.025299', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298781', 4298781, '388.845612', '321.034485', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298784', 4298784, '476.218811', '327.076996', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298787', 4298787, '494.638214', '304.602112', '-349.542206', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298790', 4298790, '182.909805', '336.140900', '-467.124512', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151236, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298792', 4298792, '150.108704', '345.173309', '-380.467590', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150964, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298794', 4298794, '146.329498', '347.075287', '-385.583313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150692, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298812', 4298812, '253.761307', '343.590393', '-494.726715', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150420, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298813', 4298813, '294.270294', '329.274292', '-477.805786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298814', 4298814, '212.636703', '327.759796', '-433.014313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298815', 4298815, '412.045288', '353.824188', '-499.736786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149604, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298816', 4298816, '394.674591', '355.184204', '-555.809875', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298823', 4298823, '260.181488', '356.282806', '-541.374878', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298824', 4298824, '188.311493', '357.747803', '-557.427429', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298825', 4298825, '285.877686', '359.578705', '-569.421021', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148522, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298835', 4298835, '126.756599', '376.088989', '-671.473328', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148250, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298837', 4298837, '356.375610', '356.320007', '-595.291321', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298842', 4298842, '468.223511', '349.470490', '-668.565430', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147700, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298844', 4298844, '531.422729', '348.817993', '-732.418884', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147428, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298845', 4298845, '539.850708', '348.653900', '-745.830627', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147156, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4298846', 4298846, '96.262070', '375.573090', '-645.236084', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298847', 4298847, '618.677002', '325.703705', '-430.685913', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298848', 4298848, '626.867126', '322.872803', '-394.244293', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298849', 4298849, '673.548279', '293.690308', '-320.820892', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298851', 4298851, '584.470276', '282.391998', '-315.705292', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298852', 4298852, '599.206482', '281.914215', '-300.226898', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298853', 4298853, '564.033630', '282.951599', '-300.851807', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298854', 4298854, '684.587830', '306.511292', '-363.764191', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298855', 4298855, '562.945190', '342.102997', '-474.200287', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298858', 4298858, '463.976410', '249.572906', '-308.802399', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298859', 4298859, '473.929901', '247.699707', '-302.357513', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298860', 4298860, '490.206787', '271.288086', '-298.332397', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298861', 4298861, '397.627808', '248.461594', '-320.859192', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298862', 4298862, '283.789703', '236.298401', '-325.220306', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298863', 4298863, '291.652496', '235.940796', '-331.188995', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143094, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298864', 4298864, '296.253906', '234.759995', '-368.673309', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298866', 4298866, '473.213501', '248.114304', '-259.048889', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298871', 4298871, '614.450012', '323.410309', '-400.318604', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298873', 4298873, '668.683716', '306.076996', '-365.426788', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298882', 4298882, '683.369995', '295.457611', '-324.276794', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298884', 4298884, '681.273376', '295.122589', '-325.174805', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298886', 4298886, '581.921387', '282.296997', '-294.985413', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298888', 4298888, '584.498718', '282.204895', '-290.600891', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298891', 4298891, '598.967285', '282.223602', '-314.123505', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298892', 4298892, '570.297485', '282.771301', '-310.753998', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298900', 4298900, '532.146484', '235.205200', '301.718414', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140114, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4298901', 4298901, '548.790588', '235.278793', '308.827301', 114, 0, 0, 0, 1, 6, 0, 0, 662, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139848, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4298902', 4298902, '539.909912', '235.309296', '290.943695', 115, 0, 0, 0, 0, 6, 0, 0, 661, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139582, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(301, 'e0051', 'bnpc4298903', 4298903, '543.114685', '235.512100', '292.484009', 116, 0, 0, 0, 0, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139316, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(301, 'e0051', 'bnpc4298911', 4298911, '465.921387', '232.736298', '321.428497', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4298914', 4298914, '485.744812', '233.755707', '315.057404', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4298917', 4298917, '8.385859', '200.822098', '514.171082', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298919', 4298919, '3.468143', '219.127502', '377.671387', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298921', 4298921, '56.439899', '213.878601', '395.393188', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298922', 4298922, '32.688740', '261.800201', '264.078491', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298924', 4298924, '31.549110', '262.086487', '260.424103', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298925', 4298925, '97.214867', '251.860901', '270.377808', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298926', 4298926, '65.567993', '240.283707', '329.732208', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136874, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(301, 'e0051', 'bnpc4298928', 4298928, '173.567596', '231.665298', '266.478912', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298932', 4298932, '267.711090', '226.465698', '281.598785', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298933', 4298933, '349.538513', '232.623795', '259.540588', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298934', 4298934, '353.841400', '234.302200', '255.420700', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298937', 4298937, '398.091797', '226.637100', '344.024994', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298938', 4298938, '278.828003', '242.816803', '203.601105', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298941', 4298941, '191.013199', '256.839386', '104.428802', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4298943', 4298943, '248.318405', '261.876587', '67.776207', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299053', 4299053, '152.027496', '277.941711', '34.020439', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299054', 4299054, '235.312393', '277.402405', '-48.467419', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299057', 4299057, '191.224899', '284.341797', '-81.645477', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299063', 4299063, '374.380005', '306.477386', '-331.197113', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299079', 4299079, '343.678802', '311.085602', '-403.738495', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299081', 4299081, '278.156586', '313.466095', '-429.770386', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299082', 4299082, '347.909790', '309.989197', '-275.124512', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299084', 4299084, '404.743988', '318.417908', '-277.971985', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299088', 4299088, '457.550507', '305.113708', '-285.144989', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299091', 4299091, '458.811310', '305.676910', '-289.211914', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299093', 4299093, '502.242096', '302.581390', '-245.190903', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299094', 4299094, '502.391815', '308.429413', '-356.438385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299096', 4299096, '502.046387', '342.161713', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299098', 4299098, '424.421387', '339.137909', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299099', 4299099, '429.241394', '341.024200', '-436.179199', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299100', 4299100, '218.158203', '330.586700', '-473.045013', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299102', 4299102, '173.367004', '339.026001', '-390.899200', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299103', 4299103, '119.335899', '353.367310', '-336.673615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299106', 4299106, '166.454803', '348.701294', '-492.608795', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299107', 4299107, '432.587189', '365.876801', '-537.769714', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299110', 4299110, '418.305603', '349.797699', '-685.625427', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299112', 4299112, '485.808594', '353.806305', '-658.057312', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299114', 4299114, '298.678589', '345.167297', '-521.747192', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128442, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299115', 4299115, '198.874802', '362.118011', '-601.265076', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299116', 4299116, '138.675293', '374.013306', '-661.681824', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299117', 4299117, '324.054291', '360.242188', '-582.895081', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299119', 4299119, '283.839905', '362.149506', '-625.782288', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299120', 4299120, '210.687897', '361.424805', '-658.411926', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299121', 4299121, '205.782394', '360.548187', '-666.505615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299188', 4299188, '105.119400', '289.448395', '-164.568604', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120116, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299192', 4299192, '62.638309', '289.814606', '-219.226395', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299194', 4299194, '-1.358093', '310.902496', '-142.015701', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299195', 4299195, '-58.910789', '304.604401', '-272.412598', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299197', 4299197, '-86.450127', '300.163605', '-170.834900', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299198', 4299198, '137.090607', '290.130798', '-258.218414', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299208', 4299208, '-115.231300', '298.469788', '-208.100098', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299210', 4299210, '-205.664902', '281.635010', '-192.517700', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118284, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299213', 4299213, '-107.621902', '300.038086', '-137.041306', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118012, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299215', 4299215, '-158.759003', '292.966492', '-201.171295', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299216', 4299216, '-162.136307', '291.173187', '-194.256607', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299217', 4299217, '-205.676498', '283.894012', '-114.763100', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117196, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299218', 4299218, '-212.088394', '285.828400', '-56.427200', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299219', 4299219, '-290.402100', '261.601898', '-157.738800', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116652, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299227', 4299227, '-318.632690', '255.833298', '-42.884541', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101716, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299230', 4299230, '-340.376007', '259.605804', '-64.511017', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101444, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299231', 4299231, '-317.614502', '256.207092', '-97.947693', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299233', 4299233, '-257.298615', '264.585693', '-65.689346', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299235', 4299235, '-249.965302', '269.336914', '-76.447701', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299236', 4299236, '-353.139587', '237.921494', '-157.603195', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299238', 4299238, '-423.544708', '240.253296', '-111.314598', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299241', 4299241, '-359.502197', '233.804596', '-160.537003', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299242', 4299242, '-578.240723', '227.008408', '-125.078201', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116386, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299244', 4299244, '-499.116089', '237.639496', '-97.965683', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116114, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299247', 4299247, '-655.179871', '229.729202', '-54.205719', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115842, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299249', 4299249, '-483.586609', '226.184692', '-125.489799', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299250', 4299250, '-477.837402', '228.009293', '-122.481400', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299252', 4299252, '-573.938416', '231.500397', '-73.804337', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299254', 4299254, '-600.372192', '209.926697', '-352.855804', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299256', 4299256, '-623.961182', '211.311707', '-374.720001', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299257', 4299257, '-624.778992', '210.859299', '-381.588593', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299258', 4299258, '-586.229492', '201.455200', '-440.921997', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299259', 4299259, '-583.154114', '188.738800', '-477.195404', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299260', 4299260, '-653.461182', '211.102798', '-435.622009', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299422', 4299422, '-650.603027', '204.070007', '-488.214691', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299424', 4299424, '-551.951416', '206.791595', '-350.856995', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112856, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299425', 4299425, '-612.623779', '216.144806', '-319.243988', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299426', 4299426, '-853.938416', '226.438599', '25.457430', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299427', 4299427, '-879.604614', '229.180099', '-15.122490', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299428', 4299428, '-894.004272', '228.026398', '0.443500', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299429', 4299429, '-907.681885', '249.338104', '26.397079', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299430', 4299430, '-907.681885', '247.122192', '-24.585300', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299431', 4299431, '-938.982971', '269.272095', '1.981136', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299433', 4299433, '-951.375916', '276.008698', '-32.272030', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299593', 4299593, '117.442703', '288.131500', '-217.671204', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299595', 4299595, '61.837181', '292.037506', '-153.092804', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299596', 4299596, '58.310040', '291.422913', '-157.591202', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299597', 4299597, '-17.296480', '300.204010', '-215.268906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299598', 4299598, '-102.796997', '298.673889', '-164.088501', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299599', 4299599, '-144.174805', '292.303986', '-187.728806', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299600', 4299600, '-141.522705', '298.377014', '-239.075500', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299602', 4299602, '-187.987900', '287.198914', '-119.562897', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299603', 4299603, '-250.437195', '273.614410', '-139.801193', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299604', 4299604, '-287.381409', '260.165009', '-74.592461', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299605', 4299605, '-249.896500', '264.386505', '-56.690639', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299606', 4299606, '-316.963898', '249.190399', '0.375132', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299607', 4299607, '-353.362305', '249.890305', '-112.803703', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107126, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299608', 4299608, '-317.082214', '255.914795', '-163.691803', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106854, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299610', 4299610, '-540.337280', '216.113495', '-165.331497', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106582, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299612', 4299612, '-494.751099', '227.817902', '-119.577698', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299614', 4299614, '-538.078918', '224.933197', '-115.343002', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299615', 4299615, '-679.120911', '223.608002', '-24.397600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299617', 4299617, '-748.989075', '226.855804', '-70.359383', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105494, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299618', 4299618, '-763.556213', '240.848099', '-149.583405', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105222, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299620', 4299620, '-791.189026', '244.109695', '-171.737000', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104950, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299628', 4299628, '-802.041016', '225.578995', '14.979860', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299805', 4299805, '-869.248901', '228.169098', '24.666691', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299806', 4299806, '-916.034790', '242.289902', '5.756409', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299808', 4299808, '-898.861877', '250.815994', '-36.228569', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299809', 4299809, '-932.563721', '262.462097', '18.376640', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299833', 4299833, '-528.303406', '207.486404', '-361.926514', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299835', 4299835, '-635.674072', '220.452301', '-338.610809', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299836', 4299836, '-582.583984', '206.158493', '-384.262085', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299839', 4299839, '-524.189880', '192.377594', '-420.327301', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299840', 4299840, '-649.544922', '206.868103', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299842', 4299842, '-652.836792', '207.443604', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299844', 4299844, '-459.800110', '286.182892', '196.642899', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99194, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299846', 4299846, '-523.050415', '277.612488', '197.807800', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98922, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299847', 4299847, '-532.402588', '240.741592', '331.532806', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98650, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299850', 4299850, '-475.198303', '237.443207', '403.405304', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299852', 4299852, '-369.299286', '237.950699', '382.602814', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98106, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299853', 4299853, '-350.165009', '237.914505', '384.625702', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97834, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299854', 4299854, '-269.214996', '226.703201', '429.251587', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97562, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299856', 4299856, '-231.006302', '225.146896', '420.889496', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299858', 4299858, '-634.704590', '244.070801', '300.718811', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97018, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299859', 4299859, '-706.643005', '237.401398', '303.170288', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96746, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299861', 4299861, '-766.720093', '254.688202', '421.683014', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96474, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299862', 4299862, '-743.321777', '254.701202', '428.467499', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299872', 4299872, '-358.874786', '272.546112', '253.455994', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299873', 4299873, '-357.118988', '248.051895', '290.108185', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299874', 4299874, '-401.256805', '239.983307', '278.980713', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299876', 4299876, '-288.120392', '293.587006', '256.741089', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299877', 4299877, '-277.870697', '258.656494', '334.187714', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299878', 4299878, '-321.083313', '262.754395', '217.010696', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299879', 4299879, '-440.215912', '244.465805', '319.074097', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94316, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299880', 4299880, '-394.308411', '303.990997', '193.089905', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299881', 4299881, '-460.690186', '270.367493', '260.074188', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4299886', 4299886, '-254.901993', '224.367096', '523.252625', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299887', 4299887, '-247.943405', '224.715195', '514.518921', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93096, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299888', 4299888, '-282.529114', '224.717606', '503.718506', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92824, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299889', 4299889, '-393.453888', '238.452805', '503.715515', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92552, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299909', 4299909, '-485.722290', '243.436295', '460.457214', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92280, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299910', 4299910, '-491.588287', '245.377701', '463.765594', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92008, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299912', 4299912, '-305.548096', '226.398407', '559.785400', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91736, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299914', 4299914, '-212.225906', '229.780594', '563.407715', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91464, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299915', 4299915, '-252.616806', '224.743301', '626.013428', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91192, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299917', 4299917, '-120.126801', '205.896805', '472.541412', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299933', 4299933, '-167.451797', '212.509293', '469.950714', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299935', 4299935, '-192.431595', '215.960907', '481.742401', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299937', 4299937, '-254.539902', '221.577606', '466.534088', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299939', 4299939, '-261.479614', '221.984207', '460.971405', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89970, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299940', 4299940, '-327.888702', '223.177307', '446.066895', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89698, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299942', 4299942, '-452.292694', '231.075394', '433.657410', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299943', 4299943, '-556.198486', '235.399994', '407.330414', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299944', 4299944, '-563.418518', '235.399994', '398.974304', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4299945', 4299945, '-533.244080', '235.399994', '407.132111', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4300046', 4300046, '-699.997925', '253.759995', '507.272186', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88344, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300048', 4300048, '-688.471802', '253.697205', '509.426910', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88072, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300049', 4300049, '-698.510803', '253.838196', '499.010101', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87800, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300050', 4300050, '-705.378479', '253.881699', '505.406494', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87528, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300051', 4300051, '-699.795776', '253.759995', '514.230591', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300052', 4300052, '-688.023315', '253.529099', '507.670410', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300053', 4300053, '-688.742798', '253.351105', '499.477112', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300054', 4300054, '-677.956787', '254.053894', '498.299103', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300056', 4300056, '-493.539612', '282.080109', '191.529907', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300057', 4300057, '-521.202393', '242.145401', '299.671906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300059', 4300059, '-521.172913', '237.402893', '377.595398', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300061', 4300061, '-438.483398', '245.206894', '362.585205', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300062', 4300062, '-248.297302', '227.611099', '410.760986', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300064', 4300064, '-153.368500', '221.118393', '416.250702', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300066', 4300066, '-98.785767', '213.591293', '426.872589', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300069', 4300069, '-272.282501', '264.869385', '321.059906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300070', 4300070, '-390.265106', '233.670807', '321.964600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83926, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300072', 4300072, '-383.889404', '248.725204', '219.890106', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83654, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300074', 4300074, '-416.929291', '233.443802', '461.940796', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300078', 4300078, '-295.979309', '224.444901', '485.191010', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300080', 4300080, '-346.028900', '236.543396', '518.089478', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300081', 4300081, '-227.039001', '229.327805', '547.600525', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300083', 4300083, '-286.249908', '221.550095', '669.298584', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300084', 4300084, '-282.240204', '222.570007', '672.355286', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300085', 4300085, '-254.344894', '224.215302', '580.497681', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300087', 4300087, '-149.461502', '217.410095', '485.622894', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300089', 4300089, '-604.956787', '244.740799', '337.663788', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300090', 4300090, '-649.166504', '245.258606', '286.166504', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300091', 4300091, '-748.151123', '238.541107', '350.326385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300171', 4300171, '566.598206', '289.624603', '98.502197', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4300176', 4300176, '527.275391', '303.059296', '-162.340805', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79372, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(301, 'e0051', 'bnpc4300177', 4300177, '586.301575', '302.701202', '-115.328102', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79100, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(301, 'e0051', 'bnpc4300178', 4300178, '654.442383', '298.421295', '-12.551030', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78828, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(301, 'e0051', 'bnpc4300179', 4300179, '669.497986', '301.708099', '-29.924919', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78556, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(301, 'e0051', 'bnpc4300180', 4300180, '602.427917', '290.487396', '-0.884406', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78284, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(301, 'e0051', 'bnpc4300181', 4300181, '664.371399', '287.443909', '73.074158', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78012, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(301, 'e0051', 'bnpc4300182', 4300182, '601.759216', '287.400208', '127.919098', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77740, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(301, 'e0051', 'bnpc4300183', 4300183, '565.585571', '287.455109', '154.665298', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77468, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(301, 'e0051', 'bnpc4300184', 4300184, '558.831116', '300.043915', '59.949520', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77196, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(301, 'e0051', 'bnpc4300191', 4300191, '511.356689', '303.173004', '-206.740097', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76930, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(301, 'e0051', 'bnpc4300194', 4300194, '494.438110', '303.700287', '-197.619598', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76646, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300196', 4300196, '508.591888', '303.338898', '-205.656296', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76392, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(301, 'e0051', 'bnpc4300198', 4300198, '523.491211', '302.387909', '-191.363495', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76120, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300200', 4300200, '559.439514', '303.965698', '-151.707001', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75836, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300201', 4300201, '555.992920', '301.960693', '-163.683502', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75570, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300203', 4300203, '593.473511', '302.708496', '-99.112923', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75304, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300204', 4300204, '642.703979', '303.166687', '-43.589840', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300205', 4300205, '650.994812', '303.095612', '-38.070992', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74742, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300206', 4300206, '625.239319', '302.690613', '-97.402184', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74476, 1, 0, 0, 0, 45, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300209', 4300209, '635.367188', '303.307190', '-92.580772', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74198, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(301, 'e0051', 'bnpc4300210', 4300210, '636.402405', '303.397003', '-95.636833', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73938, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(301, 'e0051', 'bnpc4300212', 4300212, '640.141296', '289.793488', '15.564350', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73654, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300213', 4300213, '632.201416', '287.460602', '83.472313', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73394, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300214', 4300214, '694.667114', '302.802002', '-25.909540', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73116, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300215', 4300215, '668.584900', '286.359985', '53.434738', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72856, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300219', 4300219, '653.565674', '286.929688', '35.585339', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72566, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(301, 'e0051', 'bnpc4300220', 4300220, '654.409180', '286.791412', '37.999821', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72312, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(301, 'e0051', 'bnpc4300221', 4300221, '655.671082', '286.824310', '34.141949', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72034, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(301, 'e0051', 'bnpc4300222', 4300222, '657.228088', '286.375885', '36.471931', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71756, 1, 0, 0, 0, 0, 30059, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(301, 'e0051', 'bnpc4300226', 4300226, '639.859619', '286.099091', '135.124603', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71478, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(301, 'e0051', 'bnpc4300227', 4300227, '642.707703', '286.175110', '132.877899', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71212, 1, 0, 0, 0, 0, 30120, 0, 0, 0), +(301, 'e0051', 'bnpc4300229', 4300229, '708.942505', '286.232513', '46.920448', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70946, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300230', 4300230, '711.298828', '285.307404', '75.698997', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70680, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300232', 4300232, '613.615784', '284.572296', '166.852005', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70408, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300233', 4300233, '590.029480', '285.689209', '176.024506', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70130, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300234', 4300234, '646.990784', '285.135101', '149.341507', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69852, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300236', 4300236, '586.167297', '288.737610', '-28.609209', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4300238', 4300238, '582.383789', '289.517700', '-46.738300', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4300239', 4300239, '559.963928', '292.885193', '-35.993568', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65790, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4300241', 4300241, '576.693481', '289.831787', '-46.195572', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4300242', 4300242, '498.254486', '308.702209', '-165.574203', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4300244', 4300244, '507.927002', '303.303497', '-229.236298', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4300246', 4300246, '630.399292', '300.341187', '-66.790810', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65518, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4300250', 4300250, '684.486816', '291.013214', '7.434129', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4300253', 4300253, '639.507080', '287.656799', '38.046551', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66062, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4300254', 4300254, '630.756226', '286.750000', '109.616798', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4300256', 4300256, '570.830383', '286.569214', '120.215103', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4300257', 4300257, '555.228516', '297.855499', '84.213348', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4300284', 4300284, '605.249023', '330.830811', '-303.486786', 114, 0, 0, 0, 0, 6, 0, 0, 662, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68668, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(301, 'e0051', 'bnpc4300286', 4300286, '527.855225', '308.308502', '-299.702515', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69478, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300287', 4300287, '575.036316', '320.881805', '-289.906189', 115, 0, 0, 0, 1, 6, 0, 0, 661, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69218, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4300288', 4300288, '577.508118', '322.468903', '-294.789093', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68952, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(301, 'e0051', 'bnpc4325155', 4325155, '215.504501', '360.039307', '-581.431030', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4406869', 4406869, '311.001099', '307.036499', '-422.752106', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126194, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406870', 4406870, '323.323395', '303.822296', '-391.989014', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125922, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406871', 4406871, '317.110413', '305.692505', '-418.385315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125650, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406872', 4406872, '351.343506', '312.029114', '-396.169098', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125378, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406873', 4406873, '350.968994', '315.450592', '-416.192993', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125106, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406874', 4406874, '48.752670', '311.224213', '-250.581207', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124834, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406875', 4406875, '44.907230', '311.238312', '-245.044693', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124562, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406876', 4406876, '66.984810', '300.472412', '-252.706802', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124290, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406877', 4406877, '-17.150419', '311.581512', '-255.273895', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124018, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406878', 4406878, '7.231910', '312.528687', '-245.321793', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123746, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406879', 4406879, '-6.278003', '305.376709', '-233.466095', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123474, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406880', 4406880, '-10.073550', '305.779694', '-236.697601', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123202, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406884', 4406884, '357.847992', '311.662201', '-388.165497', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122930, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406885', 4406885, '363.148010', '313.250488', '-391.308411', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122658, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406886', 4406886, '331.929413', '319.783203', '-430.502808', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122386, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406888', 4406888, '113.582199', '354.933685', '-335.568512', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406890', 4406890, '121.680801', '354.167114', '-326.125214', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406891', 4406891, '110.022797', '357.553314', '-311.841187', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406892', 4406892, '111.824799', '358.195190', '-382.551514', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406893', 4406893, '115.392303', '357.688690', '-387.074890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4406894', 4406894, '93.907928', '362.855194', '-349.329315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4600355', 4600355, '547.412170', '348.384613', '-748.106018', 1699, 0, 0, 0, 8, 6, 0, 0, 2162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4614331', 4614331, '530.815125', '348.686096', '-743.006226', 1700, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43556, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4614332', 4614332, '535.935608', '348.616394', '-737.220215', 2222, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43290, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4621624', 4621624, '-332.429199', '307.678406', '234.107803', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44948, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(301, 'e0051', 'bnpc4890695', 4890695, '-188.798996', '226.035995', '400.288086', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(301, 'e0051', 'bnpc4890696', 4890696, '-132.585098', '216.182098', '435.066193', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4291453', 4291453, '155.132599', '222.009995', '348.043488', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41428, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(302, 'e0052', 'bnpc4291457', 4291457, '272.663513', '222.247696', '334.248901', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41156, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(302, 'e0052', 'bnpc4291464', 4291464, '220.038406', '302.644592', '-149.387497', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(302, 'e0052', 'bnpc4291467', 4291467, '177.878494', '301.664612', '-190.712402', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40618, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(302, 'e0052', 'bnpc4291540', 4291540, '264.301514', '302.632202', '-284.870697', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40346, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(302, 'e0052', 'bnpc4291544', 4291544, '-136.888702', '304.096985', '-285.084290', 1775, 0, 0, 0, 0, 6, 0, 0, 1583, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40080, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(302, 'e0052', 'bnpc4291545', 4291545, '-494.600586', '204.213104', '-188.481094', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39796, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(302, 'e0052', 'bnpc4291549', 4291549, '-535.141113', '204.035507', '-287.671906', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39524, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(302, 'e0052', 'bnpc4296962', 4296962, '6.586450', '224.231003', '359.448090', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4296996', 4296996, '16.820339', '216.422195', '389.762604', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4296997', 4296997, '31.967649', '236.529999', '323.628510', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4296998', 4296998, '72.035683', '242.920105', '316.766113', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4296999', 4296999, '79.061470', '241.243393', '319.846802', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297000', 4297000, '112.809898', '239.429306', '294.575287', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163724, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297001', 4297001, '58.960991', '253.937698', '281.400696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163452, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297003', 4297003, '10.569400', '224.790207', '357.938599', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163180, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297008', 4297008, '354.657288', '224.892807', '300.765289', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297010', 4297010, '417.257904', '226.214996', '374.532593', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297011', 4297011, '421.699005', '227.744202', '370.285492', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297012', 4297012, '330.572113', '223.491394', '369.867493', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297013', 4297013, '429.534393', '217.970001', '417.141296', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161826, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297015', 4297015, '417.746185', '217.952194', '480.668488', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161554, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297016', 4297016, '422.541687', '219.795303', '494.286896', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161282, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297019', 4297019, '411.649689', '220.784195', '484.018890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161010, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297021', 4297021, '181.170303', '242.354599', '223.538406', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160744, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297025', 4297025, '342.033508', '264.985504', '103.754501', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160472, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297026', 4297026, '88.700684', '244.067993', '303.089813', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297027', 4297027, '88.700684', '222.003494', '420.492798', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297028', 4297028, '-25.009581', '205.387497', '480.682007', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297029', 4297029, '398.841614', '224.765701', '381.022705', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297232', 4297232, '-397.424805', '210.788193', '-238.255402', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38242, 8, 0, 0, 4128002, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4297234', 4297234, '-397.352997', '210.788193', '-233.666794', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37970, 8, 0, 0, 4128001, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4297235', 4297235, '-397.251587', '210.788193', '-228.848999', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37698, 8, 0, 0, 4128000, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4297236', 4297236, '-423.044800', '210.788193', '-221.963104', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37426, 8, 0, 0, 4297227, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4297238', 4297238, '-413.101990', '210.788193', '-212.035004', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37154, 8, 0, 0, 4297228, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4297239', 4297239, '-417.529114', '210.788193', '-217.341202', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36882, 8, 0, 0, 4297229, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4297336', 4297336, '168.169693', '276.447601', '-48.600040', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159112, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297337', 4297337, '264.687988', '294.602692', '-93.670403', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158840, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4297346', 4297346, '280.170807', '253.192902', '147.692001', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4297350', 4297350, '334.350311', '248.434402', '184.154297', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4297353', 4297353, '327.623993', '256.382294', '132.340805', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4297354', 4297354, '291.785187', '269.499786', '39.650711', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4297356', 4297356, '192.950302', '271.137512', '3.646851', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4297359', 4297359, '285.844391', '267.842712', '44.338120', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4297363', 4297363, '173.391296', '272.125793', '-12.465330', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4297364', 4297364, '249.355698', '270.133301', '26.395069', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4297365', 4297365, '203.100204', '254.232300', '149.502304', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298567', 4298567, '157.396698', '293.324097', '-98.374939', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298571', 4298571, '159.523300', '293.493011', '-99.299156', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298572', 4298572, '135.779297', '299.755890', '-101.941704', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298573', 4298573, '136.228699', '283.407715', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298574', 4298574, '258.647614', '289.809692', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298575', 4298575, '254.634094', '287.557098', '-64.855118', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298576', 4298576, '268.831512', '284.212891', '-40.760189', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298741', 4298741, '251.759094', '294.415894', '-111.584099', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298744', 4298744, '288.151489', '302.427002', '-86.886337', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153938, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298765', 4298765, '321.597290', '303.200989', '-338.780914', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298767', 4298767, '346.691895', '304.562286', '-319.108887', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298770', 4298770, '357.329712', '304.360687', '-356.956696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298772', 4298772, '407.769012', '305.618500', '-327.457397', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298773', 4298773, '412.865387', '304.484802', '-333.469391', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298780', 4298780, '365.239410', '319.169586', '-254.025299', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298781', 4298781, '388.845612', '321.034485', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298784', 4298784, '476.218811', '327.076996', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298787', 4298787, '494.638214', '304.602112', '-349.542206', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298790', 4298790, '182.909805', '336.140900', '-467.124512', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151236, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298792', 4298792, '150.108704', '345.173309', '-380.467590', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150964, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298794', 4298794, '146.329498', '347.075287', '-385.583313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150692, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298812', 4298812, '253.761307', '343.590393', '-494.726715', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150420, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298813', 4298813, '294.270294', '329.274292', '-477.805786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298814', 4298814, '212.636703', '327.759796', '-433.014313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298815', 4298815, '412.045288', '353.824188', '-499.736786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149604, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298816', 4298816, '394.674591', '355.184204', '-555.809875', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298823', 4298823, '260.181488', '356.282806', '-541.374878', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298824', 4298824, '188.311493', '357.747803', '-557.427429', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298825', 4298825, '285.877686', '359.578705', '-569.421021', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148522, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298835', 4298835, '126.756599', '376.088989', '-671.473328', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148250, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298837', 4298837, '356.375610', '356.320007', '-595.291321', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298842', 4298842, '468.223511', '349.470490', '-668.565430', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147700, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298844', 4298844, '531.422729', '348.817993', '-732.418884', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147428, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298845', 4298845, '539.850708', '348.653900', '-745.830627', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147156, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4298846', 4298846, '96.262070', '375.573090', '-645.236084', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298847', 4298847, '618.677002', '325.703705', '-430.685913', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298848', 4298848, '626.867126', '322.872803', '-394.244293', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298849', 4298849, '673.548279', '293.690308', '-320.820892', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298851', 4298851, '584.470276', '282.391998', '-315.705292', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298852', 4298852, '599.206482', '281.914215', '-300.226898', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298853', 4298853, '564.033630', '282.951599', '-300.851807', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298854', 4298854, '684.587830', '306.511292', '-363.764191', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298855', 4298855, '562.945190', '342.102997', '-474.200287', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298858', 4298858, '463.976410', '249.572906', '-308.802399', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298859', 4298859, '473.929901', '247.699707', '-302.357513', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298860', 4298860, '490.206787', '271.288086', '-298.332397', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298861', 4298861, '397.627808', '248.461594', '-320.859192', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298862', 4298862, '283.789703', '236.298401', '-325.220306', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298863', 4298863, '291.652496', '235.940796', '-331.188995', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143094, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298864', 4298864, '296.253906', '234.759995', '-368.673309', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298866', 4298866, '473.213501', '248.114304', '-259.048889', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298871', 4298871, '614.450012', '323.410309', '-400.318604', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298873', 4298873, '668.683716', '306.076996', '-365.426788', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298882', 4298882, '683.369995', '295.457611', '-324.276794', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298884', 4298884, '681.273376', '295.122589', '-325.174805', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298886', 4298886, '581.921387', '282.296997', '-294.985413', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298888', 4298888, '584.498718', '282.204895', '-290.600891', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298891', 4298891, '598.967285', '282.223602', '-314.123505', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298892', 4298892, '570.297485', '282.771301', '-310.753998', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298900', 4298900, '532.146484', '235.205200', '301.718414', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140114, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4298901', 4298901, '548.790588', '235.278793', '308.827301', 114, 0, 0, 0, 1, 6, 0, 0, 662, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139848, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4298902', 4298902, '539.909912', '235.309296', '290.943695', 115, 0, 0, 0, 0, 6, 0, 0, 661, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139582, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(302, 'e0052', 'bnpc4298903', 4298903, '543.114685', '235.512100', '292.484009', 116, 0, 0, 0, 0, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139316, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(302, 'e0052', 'bnpc4298911', 4298911, '465.921387', '232.736298', '321.428497', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4298914', 4298914, '485.744812', '233.755707', '315.057404', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4298917', 4298917, '8.385859', '200.822098', '514.171082', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298919', 4298919, '3.468143', '219.127502', '377.671387', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298921', 4298921, '56.439899', '213.878601', '395.393188', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298922', 4298922, '32.688740', '261.800201', '264.078491', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298924', 4298924, '31.549110', '262.086487', '260.424103', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298925', 4298925, '97.214867', '251.860901', '270.377808', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298926', 4298926, '65.567993', '240.283707', '329.732208', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298928', 4298928, '173.567596', '231.665298', '266.478912', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298932', 4298932, '267.711090', '226.465698', '281.598785', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298933', 4298933, '349.538513', '232.623795', '259.540588', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298934', 4298934, '353.841400', '234.302200', '255.420700', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298937', 4298937, '398.091797', '226.637100', '344.024994', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298938', 4298938, '278.828003', '242.816803', '203.601105', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298941', 4298941, '191.013199', '256.839386', '104.428802', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4298943', 4298943, '248.318405', '261.876587', '67.776207', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299053', 4299053, '152.027496', '277.941711', '34.020439', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299054', 4299054, '235.312393', '277.402405', '-48.467419', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299057', 4299057, '191.224899', '284.341797', '-81.645477', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299063', 4299063, '374.380005', '306.477386', '-331.197113', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299079', 4299079, '343.678802', '311.085602', '-403.738495', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299081', 4299081, '278.156586', '313.466095', '-429.770386', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299082', 4299082, '347.909790', '309.989197', '-275.124512', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299084', 4299084, '404.743988', '318.417908', '-277.971985', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299088', 4299088, '457.550507', '305.113708', '-285.144989', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299091', 4299091, '458.811310', '305.676910', '-289.211914', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299093', 4299093, '502.242096', '302.581390', '-245.190903', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299094', 4299094, '502.391815', '308.429413', '-356.438385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299096', 4299096, '502.046387', '342.161713', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299098', 4299098, '424.421387', '339.137909', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299099', 4299099, '429.241394', '341.024200', '-436.179199', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299100', 4299100, '218.158203', '330.586700', '-473.045013', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299102', 4299102, '173.367004', '339.026001', '-390.899200', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299103', 4299103, '119.335899', '353.367310', '-336.673615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299106', 4299106, '166.454803', '348.701294', '-492.608795', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299107', 4299107, '432.587189', '365.876801', '-537.769714', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299110', 4299110, '418.305603', '349.797699', '-685.625427', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299112', 4299112, '485.808594', '353.806305', '-658.057312', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299114', 4299114, '298.678589', '345.167297', '-521.747192', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128442, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299115', 4299115, '198.874802', '362.118011', '-601.265076', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299116', 4299116, '138.675293', '374.013306', '-661.681824', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299117', 4299117, '324.054291', '360.242188', '-582.895081', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299119', 4299119, '283.839905', '362.149506', '-625.782288', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299120', 4299120, '210.687897', '361.424805', '-658.411926', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299121', 4299121, '205.782394', '360.548187', '-666.505615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299188', 4299188, '105.119400', '289.448395', '-164.568604', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120116, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299192', 4299192, '62.638309', '289.814606', '-219.226395', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299194', 4299194, '-1.358093', '310.902496', '-142.015701', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299195', 4299195, '-58.910789', '304.604401', '-272.412598', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119300, 5, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(302, 'e0052', 'bnpc4299197', 4299197, '-86.450127', '300.163605', '-170.834900', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299198', 4299198, '137.090607', '290.130798', '-258.218414', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299208', 4299208, '-115.231300', '298.469788', '-208.100098', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299210', 4299210, '-205.664902', '281.635010', '-192.517700', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118284, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299213', 4299213, '-107.621902', '300.038086', '-137.041306', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118012, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299215', 4299215, '-158.759003', '292.966492', '-201.171295', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299216', 4299216, '-162.136307', '291.173187', '-194.256607', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299217', 4299217, '-205.676498', '283.894012', '-114.763100', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117196, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299218', 4299218, '-212.088394', '285.828400', '-56.427200', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299219', 4299219, '-290.402100', '261.601898', '-157.738800', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116652, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299227', 4299227, '-318.632690', '255.833298', '-42.884541', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101716, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299230', 4299230, '-340.376007', '259.605804', '-64.511017', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101444, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299231', 4299231, '-317.614502', '256.207092', '-97.947693', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299233', 4299233, '-257.298615', '264.585693', '-65.689346', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299235', 4299235, '-249.965302', '269.336914', '-76.447701', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299236', 4299236, '-353.139587', '237.921494', '-157.603195', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299238', 4299238, '-423.544708', '240.253296', '-111.314598', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299241', 4299241, '-359.502197', '233.804596', '-160.537003', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299242', 4299242, '-578.240723', '227.008408', '-125.078201', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116386, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299244', 4299244, '-499.116089', '237.639496', '-97.965683', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116114, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299247', 4299247, '-655.179871', '229.729202', '-54.205719', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115842, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299249', 4299249, '-483.586609', '226.184692', '-125.489799', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299250', 4299250, '-477.837402', '228.009293', '-122.481400', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299252', 4299252, '-573.938416', '231.500397', '-73.804337', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299254', 4299254, '-600.372192', '209.926697', '-352.855804', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299256', 4299256, '-623.961182', '211.311707', '-374.720001', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299257', 4299257, '-624.778992', '210.859299', '-381.588593', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299258', 4299258, '-586.229492', '201.455200', '-440.921997', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299259', 4299259, '-583.154114', '188.738800', '-477.195404', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299260', 4299260, '-653.461182', '211.102798', '-435.622009', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299422', 4299422, '-650.603027', '204.070007', '-488.214691', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299424', 4299424, '-551.951416', '206.791595', '-350.856995', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112856, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299425', 4299425, '-612.623779', '216.144806', '-319.243988', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299426', 4299426, '-853.938416', '226.438599', '25.457430', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299427', 4299427, '-879.604614', '229.180099', '-15.122490', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299428', 4299428, '-894.004272', '228.026398', '0.443500', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299429', 4299429, '-907.681885', '249.338104', '26.397079', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299430', 4299430, '-907.681885', '247.122192', '-24.585300', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299431', 4299431, '-938.982971', '269.272095', '1.981136', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299433', 4299433, '-951.375916', '276.008698', '-32.272030', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299593', 4299593, '117.442703', '288.131500', '-217.671204', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299595', 4299595, '61.837181', '292.037506', '-153.092804', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299596', 4299596, '58.310040', '291.422913', '-157.591202', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299597', 4299597, '-17.296480', '300.204010', '-215.268906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299598', 4299598, '-102.796997', '298.673889', '-164.088501', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299599', 4299599, '-144.174805', '292.303986', '-187.728806', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299600', 4299600, '-141.522705', '298.377014', '-239.075500', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299602', 4299602, '-187.987900', '287.198914', '-119.562897', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299603', 4299603, '-250.437195', '273.614410', '-139.801193', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299604', 4299604, '-287.381409', '260.165009', '-74.592461', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299605', 4299605, '-249.896500', '264.386505', '-56.690639', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299606', 4299606, '-316.963898', '249.190399', '0.375132', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299607', 4299607, '-353.362305', '249.890305', '-112.803703', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107126, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299608', 4299608, '-317.082214', '255.914795', '-163.691803', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106854, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299610', 4299610, '-540.337280', '216.113495', '-165.331497', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106582, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299612', 4299612, '-494.751099', '227.817902', '-119.577698', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299614', 4299614, '-538.078918', '224.933197', '-115.343002', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299615', 4299615, '-679.120911', '223.608002', '-24.397600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299617', 4299617, '-748.989075', '226.855804', '-70.359383', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105494, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299618', 4299618, '-763.556213', '240.848099', '-149.583405', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105222, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299620', 4299620, '-791.189026', '244.109695', '-171.737000', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104950, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299628', 4299628, '-802.041016', '225.578995', '14.979860', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299805', 4299805, '-869.248901', '228.169098', '24.666691', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299806', 4299806, '-916.034790', '242.289902', '5.756409', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299808', 4299808, '-898.861877', '250.815994', '-36.228569', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299809', 4299809, '-932.563721', '262.462097', '18.376640', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299833', 4299833, '-528.303406', '207.486404', '-361.926514', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299835', 4299835, '-635.674072', '220.452301', '-338.610809', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299836', 4299836, '-582.583984', '206.158493', '-384.262085', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299839', 4299839, '-524.189880', '192.377594', '-420.327301', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299840', 4299840, '-649.544922', '206.868103', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299842', 4299842, '-652.836792', '207.443604', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299844', 4299844, '-459.800110', '286.182892', '196.642899', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99194, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299846', 4299846, '-523.050415', '277.612488', '197.807800', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98922, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299847', 4299847, '-532.402588', '240.741592', '331.532806', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98650, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299850', 4299850, '-475.198303', '237.443207', '403.405304', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299852', 4299852, '-369.299286', '237.950699', '382.602814', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98106, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299853', 4299853, '-350.165009', '237.914505', '384.625702', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97834, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299854', 4299854, '-269.214996', '226.703201', '429.251587', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97562, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299856', 4299856, '-231.006302', '225.146896', '420.889496', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299858', 4299858, '-634.704590', '244.070801', '300.718811', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97018, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299859', 4299859, '-706.643005', '237.401398', '303.170288', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96746, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299861', 4299861, '-766.720093', '254.688202', '421.683014', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96474, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299862', 4299862, '-743.321777', '254.701202', '428.467499', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299872', 4299872, '-358.874786', '272.546112', '253.455994', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299873', 4299873, '-357.118988', '248.051895', '290.108185', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299874', 4299874, '-401.256805', '239.983307', '278.980713', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299876', 4299876, '-288.120392', '293.587006', '256.741089', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299877', 4299877, '-277.870697', '258.656494', '334.187714', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299878', 4299878, '-321.083313', '262.754395', '217.010696', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299879', 4299879, '-440.215912', '244.465805', '319.074097', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94316, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299880', 4299880, '-394.308411', '303.990997', '193.089905', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299881', 4299881, '-460.690186', '270.367493', '260.074188', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4299886', 4299886, '-254.901993', '224.367096', '523.252625', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299887', 4299887, '-247.943405', '224.715195', '514.518921', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93096, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299888', 4299888, '-282.529114', '224.717606', '503.718506', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92824, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299889', 4299889, '-393.453888', '238.452805', '503.715515', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92552, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299909', 4299909, '-485.722290', '243.436295', '460.457214', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92280, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299910', 4299910, '-491.588287', '245.377701', '463.765594', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92008, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299912', 4299912, '-305.548096', '226.398407', '559.785400', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91736, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299914', 4299914, '-212.225906', '229.780594', '563.407715', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91464, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299915', 4299915, '-252.616806', '224.743301', '626.013428', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91192, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299917', 4299917, '-120.126801', '205.896805', '472.541412', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299933', 4299933, '-167.451797', '212.509293', '469.950714', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299935', 4299935, '-192.431595', '215.960907', '481.742401', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299937', 4299937, '-254.539902', '221.577606', '466.534088', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299939', 4299939, '-261.479614', '221.984207', '460.971405', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89970, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299940', 4299940, '-327.888702', '223.177307', '446.066895', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89698, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299942', 4299942, '-452.292694', '231.075394', '433.657410', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299943', 4299943, '-556.198486', '235.399994', '407.330414', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299944', 4299944, '-563.418518', '235.399994', '398.974304', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4299945', 4299945, '-533.244080', '235.399994', '407.132111', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4300046', 4300046, '-699.997925', '253.759995', '507.272186', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88344, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300048', 4300048, '-688.471802', '253.697205', '509.426910', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88072, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300049', 4300049, '-698.510803', '253.838196', '499.010101', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87800, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300050', 4300050, '-705.378479', '253.881699', '505.406494', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87528, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300051', 4300051, '-699.795776', '253.759995', '514.230591', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300052', 4300052, '-688.023315', '253.529099', '507.670410', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300053', 4300053, '-688.742798', '253.351105', '499.477112', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300054', 4300054, '-677.956787', '254.053894', '498.299103', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300056', 4300056, '-493.539612', '282.080109', '191.529907', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300057', 4300057, '-521.202393', '242.145401', '299.671906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300059', 4300059, '-521.172913', '237.402893', '377.595398', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300061', 4300061, '-438.483398', '245.206894', '362.585205', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300062', 4300062, '-248.297302', '227.611099', '410.760986', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300064', 4300064, '-153.368500', '221.118393', '416.250702', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300066', 4300066, '-98.785767', '213.591293', '426.872589', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300069', 4300069, '-272.282501', '264.869385', '321.059906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300070', 4300070, '-390.265106', '233.670807', '321.964600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83926, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300072', 4300072, '-383.889404', '248.725204', '219.890106', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83654, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300074', 4300074, '-416.929291', '233.443802', '461.940796', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300078', 4300078, '-295.979309', '224.444901', '485.191010', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300080', 4300080, '-346.028900', '236.543396', '518.089478', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300081', 4300081, '-227.039001', '229.327805', '547.600525', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300083', 4300083, '-286.249908', '221.550095', '669.298584', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300084', 4300084, '-282.240204', '222.570007', '672.355286', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300085', 4300085, '-254.344894', '224.215302', '580.497681', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300087', 4300087, '-149.461502', '217.410095', '485.622894', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300089', 4300089, '-604.956787', '244.740799', '337.663788', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300090', 4300090, '-649.166504', '245.258606', '286.166504', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300091', 4300091, '-748.151123', '238.541107', '350.326385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300171', 4300171, '566.598206', '289.624603', '98.502197', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4300176', 4300176, '527.275391', '303.059296', '-162.340805', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79372, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(302, 'e0052', 'bnpc4300177', 4300177, '586.301575', '302.701202', '-115.328102', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79100, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(302, 'e0052', 'bnpc4300178', 4300178, '654.442383', '298.421295', '-12.551030', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78828, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(302, 'e0052', 'bnpc4300179', 4300179, '669.497986', '301.708099', '-29.924919', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78556, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(302, 'e0052', 'bnpc4300180', 4300180, '602.427917', '290.487396', '-0.884406', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78284, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(302, 'e0052', 'bnpc4300181', 4300181, '664.371399', '287.443909', '73.074158', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78012, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(302, 'e0052', 'bnpc4300182', 4300182, '601.759216', '287.400208', '127.919098', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77740, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(302, 'e0052', 'bnpc4300183', 4300183, '565.585571', '287.455109', '154.665298', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77468, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(302, 'e0052', 'bnpc4300184', 4300184, '558.831116', '300.043915', '59.949520', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77196, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(302, 'e0052', 'bnpc4300191', 4300191, '511.356689', '303.173004', '-206.740097', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76930, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(302, 'e0052', 'bnpc4300194', 4300194, '494.438110', '303.700287', '-197.619598', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76646, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300196', 4300196, '508.591888', '303.338898', '-205.656296', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76392, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(302, 'e0052', 'bnpc4300198', 4300198, '523.491211', '302.387909', '-191.363495', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76120, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300200', 4300200, '559.439514', '303.965698', '-151.707001', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75836, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300201', 4300201, '555.992920', '301.960693', '-163.683502', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75570, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300203', 4300203, '593.473511', '302.708496', '-99.112923', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75304, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300204', 4300204, '642.703979', '303.166687', '-43.589840', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300205', 4300205, '650.994812', '303.095612', '-38.070992', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74742, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300206', 4300206, '625.239319', '302.690613', '-97.402184', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74476, 1, 0, 0, 0, 45, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300209', 4300209, '635.367188', '303.307190', '-92.580772', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74198, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(302, 'e0052', 'bnpc4300210', 4300210, '636.402405', '303.397003', '-95.636833', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73938, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(302, 'e0052', 'bnpc4300212', 4300212, '640.141296', '289.793488', '15.564350', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73654, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300213', 4300213, '632.201416', '287.460602', '83.472313', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73394, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300214', 4300214, '694.667114', '302.802002', '-25.909540', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73116, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300215', 4300215, '668.584900', '286.359985', '53.434738', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72856, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300219', 4300219, '653.565674', '286.929688', '35.585339', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72566, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(302, 'e0052', 'bnpc4300220', 4300220, '654.409180', '286.791412', '37.999821', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72312, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(302, 'e0052', 'bnpc4300221', 4300221, '655.671082', '286.824310', '34.141949', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72034, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(302, 'e0052', 'bnpc4300222', 4300222, '657.228088', '286.375885', '36.471931', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71756, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(302, 'e0052', 'bnpc4300226', 4300226, '639.859619', '286.099091', '135.124603', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71478, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(302, 'e0052', 'bnpc4300227', 4300227, '642.707703', '286.175110', '132.877899', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71212, 1, 0, 0, 0, 0, 30120, 0, 0, 0), +(302, 'e0052', 'bnpc4300229', 4300229, '708.942505', '286.232513', '46.920448', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70946, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300230', 4300230, '711.298828', '285.307404', '75.698997', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70680, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300232', 4300232, '613.615784', '284.572296', '166.852005', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70408, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300233', 4300233, '590.029480', '285.689209', '176.024506', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70130, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300234', 4300234, '646.990784', '285.135101', '149.341507', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69852, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300236', 4300236, '586.167297', '288.737610', '-28.609209', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4300238', 4300238, '582.383789', '289.517700', '-46.738300', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4300239', 4300239, '559.963928', '292.885193', '-35.993568', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65790, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4300241', 4300241, '576.693481', '289.831787', '-46.195572', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4300242', 4300242, '498.254486', '308.702209', '-165.574203', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4300244', 4300244, '507.927002', '303.303497', '-229.236298', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4300246', 4300246, '630.399292', '300.341187', '-66.790810', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65518, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4300250', 4300250, '684.486816', '291.013214', '7.434129', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4300253', 4300253, '639.507080', '287.656799', '38.046551', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66062, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4300254', 4300254, '630.756226', '286.750000', '109.616798', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4300256', 4300256, '570.830383', '286.569214', '120.215103', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4300257', 4300257, '555.228516', '297.855499', '84.213348', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4300284', 4300284, '605.249023', '330.830811', '-303.486786', 114, 0, 0, 0, 0, 6, 0, 0, 662, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68668, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(302, 'e0052', 'bnpc4300286', 4300286, '527.855225', '308.308502', '-299.702515', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69478, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300287', 4300287, '575.036316', '320.881805', '-289.906189', 115, 0, 0, 0, 1, 6, 0, 0, 661, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69218, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4300288', 4300288, '577.508118', '322.468903', '-294.789093', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68952, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(302, 'e0052', 'bnpc4325155', 4325155, '215.504501', '360.039307', '-581.431030', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4406869', 4406869, '311.001099', '307.036499', '-422.752106', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126194, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406870', 4406870, '323.323395', '303.822296', '-391.989014', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125922, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406871', 4406871, '317.110413', '305.692505', '-418.385315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125650, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406872', 4406872, '351.343506', '312.029114', '-396.169098', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125378, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406873', 4406873, '350.968994', '315.450592', '-416.192993', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125106, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406874', 4406874, '48.752670', '311.224213', '-250.581207', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124834, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406875', 4406875, '44.907230', '311.238312', '-245.044693', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124562, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406876', 4406876, '66.984810', '300.472412', '-252.706802', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124290, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406877', 4406877, '-17.150419', '311.581512', '-255.273895', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124018, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406878', 4406878, '7.231910', '312.528687', '-245.321793', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123746, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406879', 4406879, '-6.278003', '305.376709', '-233.466095', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123474, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406880', 4406880, '-10.073550', '305.779694', '-236.697601', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123202, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406884', 4406884, '357.847992', '311.662201', '-388.165497', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122930, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406885', 4406885, '363.148010', '313.250488', '-391.308411', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122658, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406886', 4406886, '331.929413', '319.783203', '-430.502808', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122386, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406888', 4406888, '113.582199', '354.933685', '-335.568512', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406890', 4406890, '121.680801', '354.167114', '-326.125214', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121842, 5, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(302, 'e0052', 'bnpc4406891', 4406891, '110.022797', '357.553314', '-311.841187', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406892', 4406892, '111.824799', '358.195190', '-382.551514', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406893', 4406893, '115.392303', '357.688690', '-387.074890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4406894', 4406894, '93.907928', '362.855194', '-349.329315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4600355', 4600355, '547.412170', '348.384613', '-748.106018', 1699, 0, 0, 0, 8, 6, 0, 0, 2162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4614331', 4614331, '530.815125', '348.686096', '-743.006226', 1700, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43556, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4614332', 4614332, '535.935608', '348.616394', '-737.220215', 2222, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43290, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4621624', 4621624, '-332.429199', '307.678406', '234.107803', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44948, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(302, 'e0052', 'bnpc4890695', 4890695, '-188.798996', '226.035995', '400.288086', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(302, 'e0052', 'bnpc4890696', 4890696, '-132.585098', '216.182098', '435.066193', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136062', 1136062, '-505.795593', '9.752348', '104.621803', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205580, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136063', 1136063, '-515.044922', '11.400910', '112.794899', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205308, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136064', 1136064, '-501.586090', '9.603134', '109.964401', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205036, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136065', 1136065, '-475.682312', '6.895020', '108.614403', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204764, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136067', 1136067, '-478.398712', '7.440553', '105.715897', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204492, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136074', 1136074, '-391.806000', '9.109558', '308.461090', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186842, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc1136075', 1136075, '-414.835693', '4.099017', '268.726593', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136076', 1136076, '-390.326385', '4.860912', '278.225494', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136077', 1136077, '-430.838715', '8.406867', '277.241089', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136078', 1136078, '-459.421692', '5.690572', '240.230301', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136079', 1136079, '-450.953796', '11.975280', '268.649994', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136080', 1136080, '-390.585205', '9.262146', '310.566895', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187114, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc1136081', 1136081, '-461.788513', '5.891314', '238.861206', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136082', 1136082, '-473.594299', '10.086170', '246.936707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136085', 1136085, '-435.743011', '1.967827', '88.564453', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202328, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136086', 1136086, '-390.760986', '0.834163', '111.607300', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202056, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136087', 1136087, '-418.825409', '0.336109', '91.913406', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201784, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136089', 1136089, '-414.658203', '0.079596', '95.602753', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201512, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136091', 1136091, '-415.322693', '-0.226261', '151.930603', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201240, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136092', 1136092, '-421.841888', '0.864481', '141.020401', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200968, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136093', 1136093, '-381.670593', '0.762653', '137.407394', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200696, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136094', 1136094, '-430.745300', '0.804663', '164.744202', 14, 0, 0, 0, 1, 6, 0, 0, 14, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200424, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136097', 1136097, '-431.509888', '2.089151', '233.463394', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136098', 1136098, '-446.728088', '0.504031', '188.779205', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136099', 1136099, '-432.335907', '1.523763', '185.544998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136100', 1136100, '-400.007599', '-0.063123', '184.140106', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136101', 1136101, '-403.100311', '-0.089608', '188.898804', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136102', 1136102, '-360.642303', '0.164527', '231.393402', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136103', 1136103, '-384.551605', '0.763345', '233.278397', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136104', 1136104, '-386.850494', '0.112991', '227.897705', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136130', 1136130, '-325.468597', '10.213140', '333.038086', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136131', 1136131, '-242.241394', '-5.472987', '226.931595', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136132', 1136132, '-328.277710', '4.935143', '305.884399', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136134', 1136134, '-321.859711', '9.391951', '328.320587', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136136', 1136136, '-268.451996', '-2.822966', '243.274506', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136137', 1136137, '-184.086700', '-8.314297', '238.537598', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136139', 1136139, '-95.525383', '-7.421386', '293.721008', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136140', 1136140, '-126.314003', '-8.479818', '267.845093', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136141', 1136141, '-103.592903', '-7.979246', '256.096588', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136142', 1136142, '-128.252106', '-6.729275', '293.324097', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136143', 1136143, '-124.302597', '-8.155410', '276.504700', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136158', 1136158, '-113.634003', '-4.072056', '313.771210', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136161', 1136161, '-133.257095', '-0.167896', '343.312714', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163548, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136162', 1136162, '-92.474274', '0.803288', '352.180786', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163820, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136163', 1136163, '-74.857803', '4.447460', '383.016602', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136164', 1136164, '-32.537300', '7.616392', '412.410797', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136165', 1136165, '-64.080299', '11.043260', '430.339905', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136167', 1136167, '-5.813734', '2.975462', '373.769714', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136168', 1136168, '37.950851', '7.949909', '464.214691', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136170', 1136170, '78.733383', '6.701904', '382.834015', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158676, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136172', 1136172, '-27.413450', '-5.802525', '309.247986', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136173', 1136173, '4.164327', '-4.588222', '319.364899', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136174', 1136174, '-5.613925', '-6.047291', '306.725403', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136175', 1136175, '-60.686939', '-2.369054', '328.478394', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136177', 1136177, '-22.903839', '-5.355963', '311.696014', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136178', 1136178, '-138.536697', '-2.761930', '180.468399', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136179', 1136179, '-156.542297', '2.639764', '135.026993', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136180', 1136180, '-150.621796', '2.365101', '138.292496', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136182', 1136182, '-172.930496', '-0.839293', '164.965195', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136190', 1136190, '-288.410797', '11.764660', '-25.711500', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146696, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136191', 1136191, '-269.916901', '12.741240', '-45.975479', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139388, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136192', 1136192, '-305.683990', '11.673100', '-35.629860', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139116, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136194', 1136194, '-253.040405', '11.428960', '-3.524881', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136196', 1136196, '-216.479797', '5.813640', '85.984543', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148316, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136197', 1136197, '-296.681213', '8.743372', '66.361427', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147772, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136198', 1136198, '-280.833405', '6.822407', '95.059250', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148044, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1136224', 1136224, '68.558739', '11.184820', '-24.826481', 762, 0, 0, 0, 0, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119934, 2, 0, 0, 0, 0, 30122, 0, 0, 0), +(303, 'e0058', 'bnpc1136225', 1136225, '69.687866', '11.001710', '-24.643370', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118308, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(303, 'e0058', 'bnpc1136228', 1136228, '333.638397', '-4.043701', '-37.918701', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116138, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc1136229', 1136229, '349.049408', '-2.892388', '-51.221401', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116410, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc1136230', 1136230, '507.865997', '-11.795270', '4.501364', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136231', 1136231, '537.636780', '-12.274270', '-13.554320', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136232', 1136232, '536.101196', '-12.090500', '-2.388316', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136233', 1136233, '530.091492', '-12.161830', '-4.477412', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136234', 1136234, '514.392822', '-12.155740', '-30.914129', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1136235', 1136235, '594.192078', '-12.117190', '-6.794415', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1162438', 1162438, '234.721100', '4.423762', '180.467896', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1162439', 1162439, '236.722900', '4.611117', '188.587906', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1162445', 1162445, '199.757599', '6.240894', '156.164093', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130156, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1162451', 1162451, '252.094193', '0.076233', '155.870804', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126994, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1162452', 1162452, '286.884094', '0.589654', '176.855103', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127538, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1162453', 1162453, '298.563293', '-0.085100', '171.096207', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127266, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1162458', 1162458, '203.268799', '1.655764', '106.938103', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126722, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1162460', 1162460, '243.554703', '-3.339902', '84.717239', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126178, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1162461', 1162461, '279.461212', '-4.218416', '42.329281', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129884, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1162462', 1162462, '294.178589', '-5.478088', '38.284790', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129612, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1162463', 1162463, '301.736115', '-5.423965', '50.006149', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125018, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1162467', 1162467, '241.840195', '-1.764643', '99.107300', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126450, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1162469', 1162469, '274.593109', '-5.942087', '11.604580', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124746, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1162472', 1162472, '227.649307', '-3.036592', '-15.976240', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129340, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1162476', 1162476, '220.935303', '-2.975586', '-22.720699', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129068, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1162477', 1162477, '207.324203', '-4.013123', '-42.343868', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125834, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc1162479', 1162479, '154.222900', '0.015198', '7.949890', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120206, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc1162480', 1162480, '176.019806', '-4.055645', '-3.018583', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117492, 2, 0, 0, 0, 0, 30120, 0, 0, 0), +(303, 'e0058', 'bnpc1162481', 1162481, '178.942505', '-0.503601', '60.196781', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115594, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc1162482', 1162482, '181.322906', '-0.473083', '58.762451', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120478, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc1162483', 1162483, '356.642700', '-2.987466', '-35.734451', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121566, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc1162484', 1162484, '333.913086', '-4.135254', '-40.177059', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118580, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc1162486', 1162486, '111.986000', '6.118835', '-40.909481', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119124, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc1162487', 1162487, '74.814934', '10.482900', '-18.448200', 764, 0, 0, 0, 1, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115866, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc1162490', 1162490, '-9.318063', '19.332541', '-19.108101', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120750, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc1162492', 1162492, '-20.523430', '17.990339', '11.642590', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119396, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1185226', 1185226, '256.488800', '-24.255501', '-358.053009', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68326, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186102', 1186102, '185.839600', '-21.471359', '-442.130188', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68054, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186104', 1186104, '139.593506', '-25.435749', '-371.665588', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186105', 1186105, '133.317993', '-24.199471', '-327.840088', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186106', 1186106, '85.221588', '-28.236040', '-263.782715', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186107', 1186107, '112.138496', '-30.215771', '-200.427307', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186108', 1186108, '171.129898', '-31.077660', '-212.573502', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44874, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186113', 1186113, '269.977814', '-10.584900', '-100.442299', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73786, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186119', 1186119, '301.000702', '-14.170150', '-179.921906', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186121', 1186121, '299.316498', '-13.980780', '-177.154099', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72426, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186122', 1186122, '210.285797', '-6.827882', '-189.363602', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76258, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186126', 1186126, '195.813797', '-6.409023', '-148.998001', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77074, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186127', 1186127, '198.768997', '-5.217091', '-147.382904', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76802, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186128', 1186128, '264.066498', '-11.720200', '-141.711304', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72970, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186130', 1186130, '255.084595', '-10.365080', '-135.648193', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72698, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186131', 1186131, '262.121887', '-11.356690', '-170.924500', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74880, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186134', 1186134, '257.526489', '-11.230880', '-163.622498', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75152, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186135', 1186135, '289.600891', '-14.023210', '-132.829803', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186142', 1186142, '321.177094', '-17.145399', '-141.817795', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75424, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186146', 1186146, '357.922394', '-18.371901', '-147.675705', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72154, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186157', 1186157, '339.864105', '-20.256371', '-163.073196', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75986, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186160', 1186160, '325.512207', '-18.022200', '-210.406693', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186163', 1186163, '334.967590', '-18.257030', '-188.068497', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186165', 1186165, '357.646301', '-21.037640', '-172.919998', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186166', 1186166, '355.845795', '-21.195030', '-175.910797', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186167', 1186167, '354.167297', '-20.996559', '-172.828506', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186168', 1186168, '327.501495', '-18.763630', '-170.766296', 16, 0, 0, 0, 1, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186169', 1186169, '357.691193', '-18.922649', '-152.895798', 16, 0, 0, 0, 1, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186173', 1186173, '362.066711', '-19.066210', '-226.023697', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186174', 1186174, '367.605011', '-19.394260', '-223.926193', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69736, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1186185', 1186185, '432.333801', '-18.556009', '-200.427307', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335118', 1335118, '259.814606', '-9.041327', '-75.930794', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82388, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335120', 1335120, '258.747192', '-9.339743', '-77.470100', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335121', 1335121, '271.628510', '-12.409580', '-119.495102', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335122', 1335122, '268.973389', '-11.585720', '-119.678200', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335125', 1335125, '299.467896', '-15.161890', '-151.066498', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335126', 1335126, '300.071503', '-15.260950', '-157.970398', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335127', 1335127, '305.104095', '-16.013350', '-153.873703', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80762, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335128', 1335128, '362.569489', '-19.896090', '-195.239197', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335129', 1335129, '359.914490', '-20.141609', '-198.291000', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335131', 1335131, '376.912994', '-17.746290', '-239.673492', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79940, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335132', 1335132, '378.265808', '-17.184210', '-245.818802', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79668, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335133', 1335133, '373.817291', '-17.567560', '-244.927200', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79396, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335135', 1335135, '382.244812', '-18.581270', '-213.006607', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335136', 1335136, '384.289612', '-18.812380', '-216.180496', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78852, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335137', 1335137, '365.346710', '-17.380070', '-235.889297', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78586, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335142', 1335142, '325.117188', '-17.441219', '-261.926086', 24, 0, 0, 0, 0, 6, 0, 0, 163, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335147', 1335147, '382.083588', '-15.505330', '-274.037415', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335148', 1335148, '379.490387', '-15.238400', '-273.274506', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335150', 1335150, '393.739594', '-17.082621', '-246.185501', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335151', 1335151, '395.540100', '-17.610670', '-243.194702', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73242, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335152', 1335152, '374.262207', '-16.275169', '-255.869507', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74058, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335154', 1335154, '445.548096', '-18.953011', '-239.643005', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75714, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335155', 1335155, '410.055603', '-15.113950', '-262.409393', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335156', 1335156, '409.262085', '-14.690550', '-264.759308', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335171', 1335171, '283.910095', '-19.542110', '-281.001801', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335172', 1335172, '309.847809', '-19.112881', '-260.545685', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49406, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335179', 1335179, '308.749512', '-18.382240', '-278.268188', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335180', 1335180, '305.850189', '-18.505501', '-275.399506', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335181', 1335181, '287.464691', '-20.370840', '-267.414398', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335182', 1335182, '221.773499', '-20.304710', '-402.104889', 73, 0, 0, 0, 1, 6, 0, 0, 70, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335186', 1335186, '260.100708', '-22.595980', '-282.093597', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335187', 1335187, '257.170898', '-22.925730', '-282.856506', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335188', 1335188, '258.178009', '-22.527321', '-280.506592', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335189', 1335189, '259.124115', '-22.919470', '-284.351898', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335191', 1335191, '252.674103', '-25.158079', '-319.881500', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55650, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335245', 1335245, '264.071289', '-23.086901', '-377.431885', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335247', 1335247, '251.044693', '-24.157169', '-429.172791', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56484, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335250', 1335250, '213.636093', '-21.692980', '-416.299286', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335254', 1335254, '250.182205', '-23.049110', '-398.827515', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335255', 1335255, '235.164795', '-22.033070', '-382.140289', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51310, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335257', 1335257, '250.975601', '-23.342621', '-395.073792', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335258', 1335258, '233.840302', '-22.782070', '-408.640991', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335259', 1335259, '228.651703', '-20.932440', '-399.771088', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335260', 1335260, '285.551605', '-20.191130', '-266.194702', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335261', 1335261, '233.309006', '-22.290220', '-403.706696', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335262', 1335262, '226.586807', '-21.579840', '-408.344208', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335263', 1335263, '251.797501', '-24.329281', '-417.166504', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335265', 1335265, '239.352707', '-23.325970', '-417.493805', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335266', 1335266, '234.393204', '-23.440660', '-419.117004', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335269', 1335269, '208.094101', '-20.046240', '-400.359314', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335270', 1335270, '205.635300', '-20.583099', '-405.028595', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335271', 1335271, '214.649200', '-21.421610', '-437.417206', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335272', 1335272, '220.603699', '-19.557770', '-394.169189', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335273', 1335273, '237.537292', '-23.111750', '-434.553314', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335274', 1335274, '201.154007', '-21.053610', '-424.056702', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335275', 1335275, '199.896194', '-21.481091', '-433.825592', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64542, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335276', 1335276, '199.035995', '-21.532829', '-428.054504', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335277', 1335277, '204.574905', '-21.963341', '-430.374695', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335278', 1335278, '203.919998', '-21.381781', '-436.120514', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335279', 1335279, '158.464905', '-25.742020', '-514.580017', 78, 0, 0, 0, 0, 6, 0, 0, 75, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63864, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335280', 1335280, '156.163498', '-25.174259', '-507.993713', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335281', 1335281, '162.755295', '-25.392191', '-508.512512', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335282', 1335282, '160.374893', '-26.243521', '-521.635315', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53064, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335283', 1335283, '153.783005', '-25.787460', '-521.116516', 33, 0, 0, 0, 0, 6, 0, 0, 165, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53880, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335284', 1335284, '164.681107', '-23.516750', '-451.796112', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335287', 1335287, '161.309204', '-24.113899', '-454.393097', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335290', 1335290, '178.249100', '-21.930130', '-465.361603', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335294', 1335294, '176.568298', '-23.836981', '-493.324188', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335295', 1335295, '175.158295', '-24.210711', '-495.597809', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335298', 1335298, '146.524597', '-23.827370', '-466.589294', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49678, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335299', 1335299, '136.972305', '-23.003241', '-490.722107', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335310', 1335310, '139.252106', '-23.121799', '-488.640411', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48590, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(303, 'e0058', 'bnpc1335313', 1335313, '169.940796', '-26.606640', '-538.220520', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335317', 1335317, '176.719406', '-26.248819', '-529.080017', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335318', 1335318, '175.681793', '-26.337879', '-531.124695', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57300, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335326', 1335326, '135.813904', '-23.796021', '-507.744904', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57572, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335327', 1335327, '143.479095', '-24.673691', '-543.979187', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56756, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335328', 1335328, '142.868698', '-24.722940', '-547.854980', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55940, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335329', 1335329, '145.279694', '-25.150471', '-548.343323', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56212, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335330', 1335330, '167.576401', '-23.605841', '-478.499115', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335331', 1335331, '172.550903', '-23.232599', '-481.184692', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335332', 1335332, '136.520096', '-23.013941', '-481.370514', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60310, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335333', 1335333, '170.445099', '-23.299061', '-477.888702', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1335344', 1335344, '163.126495', '-26.834591', '-547.864319', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347955', 1347955, '185.057404', '-22.517530', '-393.153900', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347956', 1347956, '186.735901', '-22.314060', '-389.308685', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63170, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347958', 1347958, '180.601807', '-22.849991', '-388.088013', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62904, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347959', 1347959, '182.982193', '-22.808430', '-387.447113', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347960', 1347960, '181.853104', '-22.416210', '-391.109192', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347961', 1347961, '163.818802', '-23.941280', '-382.930786', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347964', 1347964, '136.015106', '-25.067890', '-394.922394', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347965', 1347965, '135.952805', '-25.463390', '-380.858490', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347966', 1347966, '159.892807', '-23.691389', '-387.543396', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347967', 1347967, '134.539597', '-25.153410', '-393.304901', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347968', 1347968, '148.660599', '-24.933149', '-382.747192', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62082, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347969', 1347969, '149.210007', '-24.847401', '-385.554901', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347970', 1347970, '145.273102', '-24.985941', '-383.815399', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61544, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347971', 1347971, '146.677002', '-25.017750', '-386.012695', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61278, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347974', 1347974, '119.340797', '-26.901699', '-370.321198', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347976', 1347976, '110.948303', '-27.082211', '-355.214813', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44626, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347977', 1347977, '116.650902', '-26.851940', '-355.502686', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347979', 1347979, '115.985397', '-25.590910', '-330.770813', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347980', 1347980, '96.825470', '-26.731310', '-337.443909', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347981', 1347981, '94.966377', '-26.840120', '-343.493591', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347982', 1347982, '112.341904', '-27.148821', '-352.201202', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347984', 1347984, '127.403000', '-25.039721', '-339.740387', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39306, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347987', 1347987, '128.043900', '-25.102480', '-341.174805', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39578, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347990', 1347990, '103.868103', '-27.830070', '-370.201294', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30578, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347993', 1347993, '104.585403', '-27.703699', '-374.422699', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347994', 1347994, '100.785797', '-27.626970', '-369.774109', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30306, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347996', 1347996, '115.281898', '-25.507601', '-321.858612', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36296, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1347999', 1347999, '95.705887', '-27.105480', '-316.640686', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38496, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348000', 1348000, '92.348900', '-26.525320', '-318.288696', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348001', 1348001, '106.853699', '-27.461729', '-348.520905', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348002', 1348002, '106.675797', '-26.863291', '-353.933014', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43538, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348003', 1348003, '111.067200', '-27.419359', '-348.093689', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43266, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348005', 1348005, '147.925797', '-23.963091', '-316.955292', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348006', 1348006, '139.153000', '-23.312229', '-308.514313', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348007', 1348007, '138.078796', '-23.392130', '-312.001312', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348010', 1348010, '95.115891', '-27.238010', '-299.027893', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35734, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348011', 1348011, '133.297394', '-23.149731', '-303.661987', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348012', 1348012, '93.072998', '-26.876440', '-282.357300', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348013', 1348013, '90.519493', '-27.035959', '-280.262787', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42722, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348014', 1348014, '91.113632', '-26.633659', '-283.826508', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348015', 1348015, '138.584198', '-29.894171', '-214.306305', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348016', 1348016, '133.174103', '-29.752001', '-213.771896', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39034, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348018', 1348018, '125.171204', '-28.822081', '-241.728302', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348019', 1348019, '133.407806', '-29.766630', '-245.194504', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348020', 1348020, '157.760696', '-30.241409', '-209.753799', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348021', 1348021, '110.126297', '-29.295731', '-223.210403', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1348022', 1348022, '159.280807', '-29.889629', '-205.386993', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349415', 1349415, '107.675301', '-28.766970', '-247.061798', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34918, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349419', 1349419, '144.273102', '-29.321350', '-228.200500', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42166, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349420', 1349420, '141.345703', '-29.379709', '-233.926895', 70, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41894, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349421', 1349421, '147.630997', '-28.915890', '-231.464096', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349422', 1349422, '140.337204', '-29.188551', '-230.123901', 71, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41356, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349423', 1349423, '142.912903', '-29.360870', '-232.045303', 72, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41090, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349426', 1349426, '117.321800', '-29.940710', '-208.257904', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349428', 1349428, '119.702202', '-29.857460', '-208.563095', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349429', 1349429, '152.550797', '-29.560490', '-240.746399', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349430', 1349430, '153.238297', '-29.591810', '-244.188797', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349434', 1349434, '153.856705', '-29.735661', '-202.044800', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36568, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349444', 1349444, '163.936996', '-29.950470', '-221.893097', 16, 0, 0, 0, 0, 6, 0, 0, 161, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38224, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349446', 1349446, '170.162399', '-30.332001', '-205.375504', 27, 0, 0, 0, 0, 6, 0, 0, 164, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35190, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349448', 1349448, '92.027107', '-29.617809', '-158.983795', 74, 0, 0, 0, 0, 6, 0, 0, 71, 0, '0.000000', 57, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40962, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349450', 1349450, '88.622063', '-30.374201', '-172.160995', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349453', 1349453, '79.946991', '-30.373859', '-158.627106', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28300, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349454', 1349454, '84.076393', '-30.374201', '-170.842606', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349455', 1349455, '87.641907', '-30.374201', '-169.239105', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349456', 1349456, '97.735252', '-30.373690', '-149.205994', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349457', 1349457, '92.410156', '-30.373690', '-146.716202', 70, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349458', 1349458, '93.722427', '-30.289921', '-150.469894', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349460', 1349460, '102.193199', '-30.374161', '-167.326401', 72, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 29394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349462', 1349462, '104.695702', '-30.374050', '-164.732300', 71, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 56, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27756, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349463', 1349463, '108.756897', '-30.549700', '-139.678604', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349466', 1349466, '70.533546', '-30.081551', '-177.695999', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349469', 1349469, '67.079147', '-29.548901', '-153.771606', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349471', 1349471, '66.987991', '-29.454809', '-150.085007', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36840, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349475', 1349475, '100.944000', '-30.141479', '-182.035095', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349476', 1349476, '103.423500', '-30.255220', '-183.818893', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 30850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc1349477', 1349477, '117.287300', '-30.394251', '-176.134903', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 54, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313925', 2313925, '-482.564789', '6.955613', '61.610111', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313933', 2313933, '-429.003693', '2.320748', '236.438400', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313934', 2313934, '-409.316101', '1.057956', '244.817902', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313935', 2313935, '-442.272491', '2.403773', '206.166901', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313937', 2313937, '-428.366699', '7.934575', '277.541107', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313938', 2313938, '-418.558289', '9.127686', '293.699799', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313939', 2313939, '-424.849213', '10.891960', '297.223694', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313940', 2313940, '-380.392212', '6.912290', '296.833710', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313942', 2313942, '-357.351105', '2.181993', '273.792603', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313943', 2313943, '-347.798889', '4.318256', '294.331207', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313944', 2313944, '-351.491608', '4.226702', '289.814514', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313946', 2313946, '-350.392914', '9.353733', '319.966400', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313948', 2313948, '-347.768402', '-0.140188', '238.560394', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313949', 2313949, '-334.432007', '0.900235', '197.100693', 12, 0, 0, 0, 1, 6, 0, 0, 12, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313952', 2313952, '-512.518005', '10.681730', '106.017303', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313954', 2313954, '-466.272797', '4.568396', '120.049896', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313955', 2313955, '-503.845398', '11.240590', '124.209396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313959', 2313959, '-429.545593', '1.312407', '120.378799', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313963', 2313963, '-417.238586', '0.076732', '65.064568', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313964', 2313964, '-397.897705', '-0.211857', '75.408188', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313967', 2313967, '-395.162506', '-0.289825', '72.009888', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313971', 2313971, '-435.869385', '1.346877', '216.851196', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313974', 2313974, '-381.439911', '-0.122663', '184.500702', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313980', 2313980, '-464.159210', '9.409202', '251.654099', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313982', 2313982, '-452.844788', '11.917580', '265.924805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313984', 2313984, '-436.512909', '7.460858', '266.224792', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313985', 2313985, '-410.069000', '6.296681', '281.448486', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313988', 2313988, '-425.559387', '12.804490', '309.608093', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313989', 2313989, '-371.467285', '4.569370', '282.813202', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313991', 2313991, '-342.802002', '1.347080', '267.457001', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190094, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313993', 2313993, '-365.310303', '-0.244142', '207.010696', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189822, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2313994', 2313994, '-370.665497', '1.130038', '238.255402', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314003', 2314003, '-253.246994', '-4.236800', '221.935196', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314004', 2314004, '-227.049805', '-5.537235', '202.864395', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314005', 2314005, '-197.435196', '-7.994266', '221.269196', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314006', 2314006, '-200.220596', '-8.231664', '224.271805', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314009', 2314009, '-125.018700', '-7.681337', '231.549805', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176048, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314010', 2314010, '-129.776001', '-7.944516', '225.414200', 7, 0, 0, 0, 1, 6, 0, 0, 7, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175776, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314034', 2314034, '-112.974503', '2.718925', '356.892609', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164364, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc2314035', 2314035, '-118.974602', '1.573215', '349.996094', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164092, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc2314041', 2314041, '-43.174789', '-3.827868', '319.130188', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314043', 2314043, '-31.562269', '-4.485572', '194.662094', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157322, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc2314047', 2314047, '-33.348999', '-6.685591', '211.045303', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157050, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc2314048', 2314048, '-54.297371', '-4.774252', '197.991501', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157594, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc2314070', 2314070, '-59.919048', '11.628480', '435.431305', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314088', 2314088, '-35.123161', '16.027519', '447.688507', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314102', 2314102, '-45.542999', '11.092310', '429.655396', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314107', 2314107, '-24.940210', '7.788889', '415.915497', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314112', 2314112, '2.340681', '1.029590', '360.915588', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314133', 2314133, '-1.470222', '0.327971', '355.323486', 6, 0, 0, 0, 1, 6, 0, 0, 6, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314135', 2314135, '-2.340280', '16.406719', '467.504791', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173600, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314136', 2314136, '1.744962', '15.965160', '463.338013', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173328, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314137', 2314137, '67.368530', '7.949890', '446.280609', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173056, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314138', 2314138, '46.122662', '7.817679', '439.927185', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172784, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314139', 2314139, '108.354301', '9.109589', '407.461609', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159220, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314140', 2314140, '104.234299', '8.804408', '412.466614', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159764, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314141', 2314141, '123.021004', '12.317820', '423.590515', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159492, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314142', 2314142, '109.849602', '10.971190', '457.846893', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158948, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314144', 2314144, '68.332771', '7.866884', '474.070587', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314145', 2314145, '42.399090', '7.746444', '460.622803', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314146', 2314146, '97.762482', '7.782855', '392.593201', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314147', 2314147, '82.413742', '7.833769', '430.187286', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314148', 2314148, '4.571571', '14.724090', '481.634888', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314149', 2314149, '115.912598', '11.103390', '432.906311', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314150', 2314150, '2.013238', '9.902340', '432.648193', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314151', 2314151, '-58.361721', '5.610658', '400.360504', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314152', 2314152, '-85.923592', '7.095398', '408.499207', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314153', 2314153, '-89.646797', '6.881772', '406.576599', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314154', 2314154, '-6.062557', '1.064418', '360.585297', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314155', 2314155, '5.446085', '-3.557740', '326.017792', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314156', 2314156, '4.316917', '-3.595564', '325.071686', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314157', 2314157, '-28.881241', '-5.070975', '313.819092', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314159', 2314159, '-46.860470', '-8.011047', '221.606705', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314160', 2314160, '-69.568810', '-5.347832', '198.726303', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314161', 2314161, '-58.732021', '-3.341773', '321.766907', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314163', 2314163, '-122.044701', '1.863278', '351.901215', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314164', 2314164, '-134.686493', '5.714658', '377.345215', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314165', 2314165, '-91.805458', '-7.624840', '295.133911', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314166', 2314166, '-113.416000', '-7.987957', '278.087799', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314173', 2314173, '-122.484200', '-7.126010', '289.814514', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314174', 2314174, '-230.604599', '-5.478079', '208.442703', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314175', 2314175, '-207.367706', '-5.861229', '204.890305', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314177', 2314177, '-255.068893', '-4.175101', '226.840500', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314180', 2314180, '-330.692505', '7.278777', '313.762604', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314181', 2314181, '-317.594910', '9.477072', '339.549591', 36, 0, 0, 0, 1, 6, 0, 0, 36, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314192', 2314192, '-345.082794', '6.485037', '63.248600', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147228, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc2314196', 2314196, '-237.055405', '3.071132', '110.837601', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148588, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc2314197', 2314197, '-241.022705', '2.939748', '114.865997', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147500, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc2314228', 2314228, '-134.111603', '-2.151569', '175.158295', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc2314253', 2314253, '-336.507202', '6.607109', '55.985298', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314258', 2314258, '-287.312195', '8.499228', '64.072594', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314261', 2314261, '-285.236908', '7.675241', '65.262787', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314262', 2314262, '-249.378204', '7.888867', '63.401192', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314265', 2314265, '-295.246887', '5.966230', '120.439400', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314267', 2314267, '-244.488403', '4.113512', '102.499100', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314270', 2314270, '-200.428696', '4.427309', '103.759300', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314275', 2314275, '-199.511703', '13.382110', '47.836979', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314276', 2314276, '-226.188293', '11.478340', '8.346189', 15, 0, 0, 0, 1, 6, 0, 0, 16, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148860, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc2314280', 2314280, '-188.377304', '27.717520', '-44.157928', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314286', 2314286, '-183.089706', '31.517771', '-61.713600', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314288', 2314288, '-189.410294', '46.463669', '-104.997398', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314290', 2314290, '-191.485504', '47.196110', '-107.194702', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314302', 2314302, '-182.177505', '1.937849', '136.217194', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314304', 2314304, '-186.236404', '2.212511', '133.592697', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314305', 2314305, '-141.374893', '-2.090533', '175.005707', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149954, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314308', 2314308, '-187.396103', '-1.052920', '170.153305', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149682, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314309', 2314309, '-129.839096', '0.320392', '156.450699', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149410, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314314', 2314314, '-186.266907', '-0.961365', '166.521698', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314362', 2314362, '-5.424891', '19.709511', '-18.332621', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 116682, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc2314363', 2314363, '-6.294857', '20.221451', '15.311720', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121022, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc2314364', 2314364, '80.094597', '9.658875', '14.206050', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117764, 2, 0, 0, 0, 0, 30124, 0, 0, 0), +(303, 'e0058', 'bnpc2314365', 2314365, '111.406097', '6.393494', '-42.557430', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116954, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc2314366', 2314366, '113.664398', '5.874695', '-41.245178', 762, 0, 0, 0, 1, 6, 0, 0, 64, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119662, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc2314369', 2314369, '176.512604', '-4.252202', '-4.205355', 763, 0, 0, 0, 0, 6, 0, 0, 65, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118036, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(303, 'e0058', 'bnpc2314398', 2314398, '350.148193', '-2.774287', '-52.136921', 764, 0, 0, 0, 0, 6, 0, 0, 66, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117226, 2, 0, 0, 0, 0, 30119, 0, 0, 0), +(303, 'e0058', 'bnpc2314451', 2314451, '-12.582740', '19.341261', '-16.372990', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314457', 2314457, '-8.483642', '19.834230', '12.296340', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314458', 2314458, '60.166260', '13.473630', '9.872559', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314460', 2314460, '90.726227', '9.726084', '-48.813629', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314462', 2314462, '184.311996', '-2.061695', '22.900990', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 43, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314464', 2314464, '212.298294', '-3.300554', '68.344177', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314465', 2314465, '254.499100', '-0.309484', '161.274002', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314466', 2314466, '216.507706', '0.515230', '114.319603', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 40, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314610', 2314610, '306.118286', '-6.238892', '11.614130', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314612', 2314612, '236.715302', '-5.231476', '-56.311989', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314613', 2314613, '213.666504', '-2.576396', '-14.211420', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 41, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314617', 2314617, '332.661499', '-4.732603', '-51.060032', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314621', 2314621, '364.126007', '-2.822966', '-30.502831', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135118, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(303, 'e0058', 'bnpc2314623', 2314623, '361.654114', '-2.670410', '-53.025211', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314626', 2314626, '519.135681', '-12.154410', '-35.360329', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314632', 2314632, '562.935120', '-12.088730', '-2.092934', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314634', 2314634, '546.164124', '-11.988440', '-64.370163', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314640', 2314640, '622.314026', '-13.134470', '-6.901284', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314642', 2314642, '619.809082', '-12.711930', '-6.546345', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 44, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2314715', 2314715, '570.641479', '-12.100450', '-40.116009', 63, 0, 0, 0, 1, 6, 0, 0, 60, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133220, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(303, 'e0058', 'bnpc2314717', 2314717, '566.063782', '-11.947860', '-47.776039', 64, 0, 0, 0, 0, 6, 0, 0, 61, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132954, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(303, 'e0058', 'bnpc2314726', 2314726, '556.389587', '-12.008900', '-42.404869', 55, 0, 0, 0, 1, 6, 0, 0, 53, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132688, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2319905', 2319905, '133.538803', '-23.850300', '-524.211304', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2319906', 2319906, '135.644501', '-24.169041', '-527.507324', 13, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2319916', 2319916, '176.574203', '-26.295950', '-563.569885', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2319917', 2319917, '177.984299', '-26.445820', '-561.296326', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2319918', 2319918, '128.970001', '-22.921940', '-557.568481', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 52, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2320483', 2320483, '376.638397', '-2.304138', '-39.993961', 61, 0, 0, 0, 1, 6, 0, 0, 58, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128886, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(303, 'e0058', 'bnpc2320484', 2320484, '381.979004', '-2.517761', '-36.209721', 62, 0, 0, 0, 0, 6, 0, 0, 59, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128620, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(303, 'e0058', 'bnpc2320487', 2320487, '378.164307', '-2.273621', '-37.033691', 55, 0, 0, 0, 1, 6, 0, 0, 53, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2320488', 2320488, '413.927094', '-11.864880', '-0.202001', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 42, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2320489', 2320489, '450.408203', '-11.066550', '-6.123241', 33, 0, 0, 0, 1, 6, 0, 0, 33, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127708, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2341765', 2341765, '66.095573', '7.840286', '477.260101', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2341766', 2341766, '43.036430', '7.860031', '467.247192', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2341767', 2341767, '24.573021', '9.672716', '473.677795', 7, 0, 0, 0, 1, 6, 0, 0, 2157, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2350399', 2350399, '-284.382385', '11.856210', '-27.054291', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146424, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2350400', 2350400, '-260.730988', '11.703620', '-32.242359', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146152, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2350401', 2350401, '-287.373199', '11.490000', '-7.705853', 2264, 0, 0, 0, 1, 6, 0, 0, 2187, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139660, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2350402', 2350402, '-285.664215', '12.558130', '-52.719971', 44, 0, 0, 0, 1, 6, 0, 0, 44, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145880, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc2350715', 2350715, '350.270203', '-2.804400', '-50.397419', 762, 0, 0, 0, 0, 6, 0, 0, 64, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121294, 2, 0, 0, 0, 0, 30120, 0, 0, 0), +(303, 'e0058', 'bnpc2350717', 2350717, '364.079590', '-4.248232', '-7.079392', 763, 0, 0, 0, 1, 6, 0, 0, 65, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118852, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc2499386', 2499386, '-228.497696', '12.354860', '2.668262', 38, 0, 0, 0, 1, 6, 0, 0, 38, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3694733', 3694733, '-401.218414', '11.367920', '318.654388', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186570, 5, 0, 0, 0, 0, 30059, 0, 0, 0), +(303, 'e0058', 'bnpc3694734', 3694734, '-406.210388', '11.893380', '317.922485', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186298, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc3694735', 3694735, '-390.079987', '10.675150', '320.996399', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186026, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc3694736', 3694736, '-405.569611', '9.872559', '309.346100', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185754, 5, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc3694737', 3694737, '-399.718811', '10.832540', '315.967102', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185482, 5, 0, 0, 0, 0, 30059, 0, 0, 0), +(303, 'e0058', 'bnpc3694738', 3694738, '-398.236786', '11.123780', '318.544708', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185210, 5, 0, 0, 0, 0, 30060, 0, 0, 0), +(303, 'e0058', 'bnpc3694900', 3694900, '-355.928314', '-0.308188', '209.458206', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3694901', 3694901, '-358.039886', '-0.389206', '203.009705', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3694902', 3694902, '-359.232910', '-0.298962', '198.263794', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3694903', 3694903, '-364.384613', '-0.113241', '212.442200', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3694904', 3694904, '-376.390198', '-0.538467', '203.341293', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3694905', 3694905, '-364.056610', '-0.145500', '194.541702', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3694906', 3694906, '-378.323914', '-0.373772', '200.093002', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3694907', 3694907, '-368.149506', '-0.318695', '203.149994', 118, 0, 0, 0, 1, 6, 0, 0, 107, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3694908', 3694908, '-401.144989', '0.532858', '100.339798', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184400, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3694909', 3694909, '-394.740112', '-0.280364', '154.306000', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184128, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3694910', 3694910, '-391.653412', '-0.503595', '210.406601', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184672, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3695051', 3695051, '-419.371887', '0.232080', '192.587006', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183856, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3695053', 3695053, '-421.990997', '0.316387', '76.746277', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184944, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3696616', 3696616, '-96.760498', '3.493882', '366.300812', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163276, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3696617', 3696617, '-93.824730', '3.873965', '372.828613', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163004, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3696618', 3696618, '-127.003799', '2.972143', '361.243103', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3696619', 3696619, '-133.940903', '6.157478', '379.316498', 47, 0, 0, 0, 1, 6, 0, 0, 220, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3696870', 3696870, '-90.013023', '12.924340', '438.193298', 311, 0, 0, 0, 1, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162194, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3696872', 3696872, '-97.337341', '11.276370', '431.967590', 311, 0, 0, 0, 1, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161922, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(303, 'e0058', 'bnpc3696873', 3696873, '-91.318466', '10.895230', '429.915894', 311, 0, 0, 0, 0, 6, 0, 0, 241, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161650, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(303, 'e0058', 'bnpc3696876', 3696876, '-81.651070', '11.886730', '434.470093', 79, 0, 0, 0, 1, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(303, 'e0058', 'bnpc3696877', 3696877, '-91.226921', '11.092580', '430.953491', 79, 0, 0, 0, 0, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161112, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(303, 'e0058', 'bnpc3696878', 3696878, '-87.327423', '11.154300', '431.082611', 79, 0, 0, 0, 0, 6, 0, 0, 239, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160840, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(303, 'e0058', 'bnpc3696879', 3696879, '-90.402939', '11.068160', '430.739899', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160574, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(303, 'e0058', 'bnpc3697774', 3697774, '-88.120903', '11.001710', '430.441711', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160302, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(303, 'e0058', 'bnpc3697775', 3697775, '-88.426071', '11.490000', '427.695099', 81, 0, 0, 0, 0, 6, 0, 0, 240, 0, '0.000000', 18, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160030, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(303, 'e0058', 'bnpc3697778', 3697778, '92.364197', '7.706964', '389.248596', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3697779', 3697779, '108.716797', '9.727629', '431.794403', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3697780', 3697780, '80.686493', '7.961041', '421.256897', 33, 0, 0, 0, 1, 6, 0, 0, 214, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157860, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3698022', 3698022, '-75.550377', '-5.582465', '200.264694', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156778, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3698023', 3698023, '-38.882149', '-4.081942', '191.941605', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156506, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3698921', 3698921, '-37.577309', '-8.258268', '242.908295', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156234, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3700086', 3700086, '-37.311859', '-8.389291', '259.427307', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155962, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3701093', 3701093, '-28.851320', '-7.961150', '249.751205', 179, 0, 0, 0, 1, 6, 0, 0, 223, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155690, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3726783', 3726783, '-306.845306', '7.615899', '107.505699', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145342, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3726785', 3726785, '-258.686188', '7.797313', '66.056259', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145070, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3726788', 3726788, '-219.973602', '2.520791', '114.552399', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144798, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3726789', 3726789, '-199.571198', '6.403381', '88.836418', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144526, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3727336', 3727336, '-233.240204', '11.494870', '34.787762', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144254, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3727339', 3727339, '-197.756302', '14.999770', '41.853489', 24, 0, 0, 0, 1, 6, 0, 0, 232, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143982, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3727712', 3727712, '-313.497192', '11.569130', '-31.583179', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3727713', 3727713, '-314.589386', '11.902390', '-35.298470', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3727714', 3727714, '-306.619385', '11.253370', '-13.814930', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3727715', 3727715, '-278.890808', '12.580250', '-40.299412', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3727717', 3727717, '-267.242004', '11.943940', '-40.949741', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3727718', 3727718, '-273.701111', '11.886720', '-21.286381', 306, 0, 0, 0, 1, 6, 0, 0, 211, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc3727732', 3727732, '-134.691406', '15.243710', '-3.646973', 70, 0, 0, 0, 0, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142090, 1, 0, 0, 0, 17, 30120, 0, 0, 0), +(303, 'e0058', 'bnpc3727734', 3727734, '-137.071793', '14.908020', '-3.555420', 71, 0, 0, 0, 1, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141824, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc3727735', 3727735, '-134.325195', '15.182740', '-2.365173', 72, 0, 0, 0, 0, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141558, 1, 0, 0, 0, 17, 30119, 0, 0, 0), +(303, 'e0058', 'bnpc3727738', 3727738, '-101.701401', '19.180540', '10.727050', 70, 0, 0, 0, 1, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141274, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc3727739', 3727739, '-69.779541', '17.349430', '6.759644', 71, 0, 0, 0, 0, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141008, 1, 0, 0, 0, 17, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc3727740', 3727740, '-74.509888', '17.685120', '8.499207', 72, 0, 0, 0, 1, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140742, 1, 0, 0, 0, 17, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc3727743', 3727743, '-106.065498', '18.173450', '14.633350', 71, 0, 0, 0, 0, 6, 0, 0, 230, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140464, 1, 0, 0, 0, 17, 30121, 0, 0, 0), +(303, 'e0058', 'bnpc3727744', 3727744, '-104.844803', '18.509150', '14.328170', 72, 0, 0, 0, 0, 6, 0, 0, 231, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140198, 1, 0, 0, 0, 17, 30120, 0, 0, 0), +(303, 'e0058', 'bnpc3727745', 3727745, '-105.729797', '18.387070', '12.954860', 70, 0, 0, 0, 0, 6, 0, 0, 229, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139914, 1, 0, 0, 0, 17, 30119, 0, 0, 0), +(303, 'e0058', 'bnpc3727746', 3727746, '246.108398', '-4.984168', '-31.182381', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125562, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3727747', 3727747, '221.653900', '-5.011750', '-51.817490', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125290, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3729074', 3729074, '76.092232', '11.110100', '-47.602612', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124552, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3729746', 3729746, '86.654007', '8.922870', '-28.246519', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124280, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3729747', 3729747, '108.261803', '6.031532', '-26.458651', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124008, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3729748', 3729748, '115.837196', '4.964785', '13.643280', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123736, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3729749', 3729749, '71.684547', '11.649810', '-44.096661', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123464, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc3741023', 3741023, '381.093994', '-2.365173', '-37.277828', 55, 0, 0, 0, 0, 6, 0, 0, 53, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123168, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(303, 'e0058', 'bnpc3741027', 3741027, '379.934296', '-2.304138', '-35.904541', 62, 0, 0, 0, 0, 6, 0, 0, 59, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122908, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(303, 'e0058', 'bnpc3741028', 3741028, '378.072815', '-2.426208', '-33.066349', 61, 0, 0, 0, 1, 6, 0, 0, 58, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122630, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(303, 'e0058', 'bnpc3741029', 3741029, '565.056824', '-11.978380', '-48.966251', 55, 0, 0, 0, 0, 6, 0, 0, 53, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122352, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(303, 'e0058', 'bnpc3741030', 3741030, '546.837524', '-12.436150', '-46.677391', 64, 0, 0, 0, 1, 6, 0, 0, 61, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122074, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(303, 'e0058', 'bnpc3741031', 3741031, '549.614624', '-12.436150', '-49.210388', 63, 0, 0, 0, 1, 6, 0, 0, 60, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121796, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(303, 'e0058', 'bnpc3870165', 3870165, '-530.557922', '11.925130', '70.277603', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22788, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(303, 'e0058', 'bnpc3870175', 3870175, '-197.120804', '-1.760828', '261.203003', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22522, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(303, 'e0058', 'bnpc3870206', 3870206, '-273.557404', '0.846183', '289.320587', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22244, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(303, 'e0058', 'bnpc4317800', 4317800, '498.771515', '-17.898861', '-313.954407', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110750, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317801', 4317801, '451.322998', '-15.501170', '-279.865692', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110484, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc4317802', 4317802, '514.823975', '-20.341690', '-358.783813', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 110218, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc4317803', 4317803, '260.486694', '-11.080910', '-154.824493', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109958, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4317804', 4317804, '357.625610', '-18.265079', '-146.196701', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109686, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4317805', 4317805, '327.286591', '-17.372709', '-188.968796', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109414, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4317817', 4317817, '294.575806', '-12.980530', '-180.587906', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109142, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4317818', 4317818, '388.959412', '-18.823000', '-212.157593', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108876, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4317819', 4317819, '314.365814', '-18.527800', '-289.215912', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108604, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4317820', 4317820, '329.818115', '-17.597429', '-223.296097', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108332, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4317821', 4317821, '370.788086', '-17.580059', '-245.788101', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108060, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4317822', 4317822, '291.974792', '-19.793560', '-289.794800', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107788, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4317826', 4317826, '253.924606', '-23.493771', '-397.838715', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107522, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4317827', 4317827, '253.467499', '-24.551821', '-431.753998', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107250, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4317829', 4317829, '213.044601', '-20.737579', '-407.032990', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106978, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4317830', 4317830, '215.188202', '-20.979630', '-409.962799', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106706, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4317832', 4317832, '145.520706', '-23.570749', '-477.912994', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106314, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4317833', 4317833, '133.494904', '-23.758650', '-547.963074', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106042, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4317834', 4317834, '173.863693', '-25.574671', '-517.082520', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105770, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4317836', 4317836, '-10.175820', '-35.238060', '-550.143311', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105498, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4317838', 4317838, '-52.048519', '-35.202579', '-528.496216', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105226, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4317839', 4317839, '186.907700', '-23.727840', '-376.882599', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105074, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4317840', 4317840, '126.817703', '-25.925110', '-347.127502', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104808, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4317842', 4317842, '115.994499', '-26.717680', '-354.423096', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104536, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4317844', 4317844, '88.409050', '-26.293819', '-339.833893', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104264, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4317849', 4317849, '137.315903', '-23.270020', '-304.951599', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103992, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4317852', 4317852, '155.825104', '-29.775539', '-226.307693', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103564, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4317853', 4317853, '113.237198', '-29.434690', '-221.118500', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103292, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4317854', 4317854, '146.903900', '-29.527519', '-215.189804', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103020, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4317855', 4317855, '129.991104', '-29.535959', '-245.124496', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102748, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4317863', 4317863, '207.402206', '-6.915606', '-189.063599', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102596, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317864', 4317864, '351.494507', '-15.727020', '-259.491211', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 102330, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc4317873', 4317873, '284.544312', '-19.539360', '-291.495911', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 102046, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc4317874', 4317874, '368.856201', '-20.248779', '-184.771500', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101780, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(303, 'e0058', 'bnpc4317875', 4317875, '368.581512', '-20.218201', '-183.856003', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101514, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(303, 'e0058', 'bnpc4317885', 4317885, '366.659302', '-17.544319', '-237.723404', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101236, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317886', 4317886, '443.139709', '-18.693390', '-238.559097', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100970, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317887', 4317887, '249.626694', '-24.511021', '-435.444397', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 100698, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc4317891', 4317891, '131.792099', '-25.070620', '-394.277893', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100420, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317893', 4317893, '112.708099', '-30.261940', '-194.688599', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100154, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc4317894', 4317894, '193.408096', '-31.479370', '-219.684097', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99870, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc4317897', 4317897, '129.072906', '-22.173210', '-564.551880', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 99604, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc4317899', 4317899, '253.498001', '-23.239559', '-517.052002', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99338, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317900', 4317900, '165.575607', '-26.840639', '-542.717712', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99060, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(303, 'e0058', 'bnpc4317901', 4317901, '166.460602', '-26.871220', '-543.541626', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98782, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(303, 'e0058', 'bnpc4317902', 4317902, '156.908401', '-24.429689', '-455.588593', 764, 0, 0, 0, 0, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98522, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc4317903', 4317903, '-37.241699', '-35.085869', '-537.987976', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98250, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317904', 4317904, '-33.412891', '-35.156620', '-549.607971', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97972, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317905', 4317905, '-27.481510', '-34.836430', '-541.802124', 762, 0, 0, 0, 1, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97694, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317909', 4317909, '143.718704', '-29.336210', '-230.073807', 764, 0, 0, 0, 1, 6, 0, 0, 2318, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97434, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317911', 4317911, '119.399300', '-26.408409', '-346.557190', 762, 0, 0, 0, 1, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97150, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317912', 4317912, '139.559601', '-29.771700', '-244.522903', 763, 0, 0, 0, 0, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 96884, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc4317916', 4317916, '565.405212', '-22.088120', '-350.810913', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96606, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc4317917', 4317917, '558.970886', '-22.530359', '-353.985687', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96346, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317918', 4317918, '561.280518', '-22.530359', '-344.947998', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96068, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317920', 4317920, '553.652527', '-24.130871', '-379.476715', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95790, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(303, 'e0058', 'bnpc4317921', 4317921, '528.888000', '-24.002501', '-316.121185', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95530, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317922', 4317922, '552.422424', '-24.124571', '-379.629211', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95252, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(303, 'e0058', 'bnpc4317923', 4317923, '516.716187', '-20.340330', '-366.170807', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94986, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317924', 4317924, '544.539673', '-24.024820', '-352.536011', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94702, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317925', 4317925, '573.032776', '-24.048040', '-372.673492', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94436, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317927', 4317927, '408.712799', '-28.427610', '-401.419098', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94164, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317930', 4317930, '335.927399', '-28.671749', '-421.042206', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93886, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(303, 'e0058', 'bnpc4317931', 4317931, '335.683105', '-28.763309', '-419.913086', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93620, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(303, 'e0058', 'bnpc4317932', 4317932, '349.965607', '-28.000311', '-412.710785', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93354, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317933', 4317933, '339.902313', '-28.306200', '-487.054108', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93070, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317934', 4317934, '370.887909', '-34.493279', '-462.935608', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 92804, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc4317935', 4317935, '351.582886', '-28.032480', '-484.519714', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92538, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317936', 4317936, '425.497803', '-28.366579', '-482.505615', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92254, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317937', 4317937, '424.521210', '-27.908751', '-463.431793', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91988, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317938', 4317938, '358.322601', '-28.245850', '-509.974213', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91722, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc4317939', 4317939, '388.815186', '-34.042912', '-418.204010', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91438, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317940', 4317940, '413.626190', '-34.042912', '-447.318207', 763, 0, 0, 0, 1, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91172, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317943', 4317943, '383.576294', '-27.500000', '-515.033020', 764, 0, 0, 0, 0, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90906, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(303, 'e0058', 'bnpc4317944', 4317944, '403.162109', '-27.877609', '-499.533905', 763, 0, 0, 0, 0, 6, 0, 0, 68, 0, '0.000000', 47, 0, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 90628, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc4317945', 4317945, '384.859497', '-27.500000', '-514.937012', 762, 0, 0, 0, 0, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90350, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(303, 'e0058', 'bnpc4317946', 4317946, '391.422485', '-17.924709', '-377.696991', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90090, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4317948', 4317948, '450.847504', '-28.334009', '-441.002411', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89806, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4516039', 4516039, '201.957901', '-6.015132', '-140.727798', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89558, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4516054', 4516054, '302.846893', '-13.662720', '-70.995468', 27, 0, 0, 0, 1, 6, 0, 0, 164, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89286, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4516060', 4516060, '90.040314', '-26.979679', '-315.730499', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89032, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4516061', 4516061, '118.730499', '-25.303860', '-328.093414', 23, 0, 0, 0, 1, 6, 0, 0, 162, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88760, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4516069', 4516069, '76.916473', '-30.135340', '-176.278107', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88332, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4516071', 4516071, '109.801003', '-30.350300', '-144.088104', 33, 0, 0, 0, 1, 6, 0, 0, 165, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88060, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4516076', 4516076, '178.212997', '-26.243820', '-569.578918', 24, 0, 0, 0, 1, 6, 0, 0, 163, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87818, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4526138', 4526138, '207.189499', '-4.405000', '-55.771381', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4526153', 4526153, '101.728302', '6.775696', '-29.255630', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4526159', 4526159, '-5.661133', '19.302610', '-20.096189', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 114784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4526163', 4526163, '295.063599', '0.717163', '180.926102', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4526170', 4526170, '243.762802', '-2.334717', '93.644531', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4526175', 4526175, '514.976685', '-20.248779', '-360.982697', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4526185', 4526185, '349.873993', '-15.610050', '-260.578400', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4526186', 4526186, '405.020111', '-28.000311', '-500.633209', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 87134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4526187', 4526187, '370.778900', '-34.470150', '-460.959808', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4526188', 4526188, '286.335602', '-19.760500', '-293.202087', 2464, 0, 0, 0, 0, 6, 0, 0, 2315, 0, '0.000000', 44, 1, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4526189', 4526189, '126.848099', '-22.110350', '-563.561523', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4526190', 4526190, '138.658707', '-23.403219', '-470.115204', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 86052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4526191', 4526191, '252.338394', '-24.643370', '-435.141510', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85780, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4526192', 4526192, '119.127197', '-25.162230', '-324.086395', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4526193', 4526193, '137.078705', '-29.800461', '-246.062698', 2465, 0, 0, 0, 0, 6, 0, 0, 2316, 0, '0.000000', 48, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4526240', 4526240, '214.825394', '-19.554331', '-398.094788', 48, 0, 0, 0, 1, 6, 0, 0, 166, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84946, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4553457', 4553457, '345.774902', '-15.417000', '-261.117798', 403, 0, 0, 0, 1, 6, 0, 0, 567, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84668, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4553459', 4553459, '361.297913', '-25.751591', '-438.400085', 764, 0, 0, 0, 1, 6, 0, 0, 69, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84378, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4553469', 4553469, '139.198593', '-23.542650', '-467.790009', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84094, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(303, 'e0058', 'bnpc4588198', 4588198, '119.859596', '-21.530519', '-297.352600', 763, 0, 0, 0, 1, 6, 0, 0, 2317, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83828, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4588199', 4588199, '116.324303', '-25.430050', '-324.881592', 762, 0, 0, 0, 0, 6, 0, 0, 2319, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83550, 2, 0, 0, 0, 0, 30058, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(303, 'e0058', 'bnpc4588205', 4588205, '443.598206', '-24.245310', '-392.653687', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83278, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4592960', 4592960, '291.767700', '-13.992610', '-129.503403', 762, 0, 0, 0, 1, 6, 0, 0, 67, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83006, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(303, 'e0058', 'bnpc4618294', 4618294, '99.668091', '8.096478', '-41.502491', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4618295', 4618295, '114.137100', '6.064597', '-18.577110', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4618296', 4618296, '119.902702', '5.962872', '-52.469212', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4618297', 4618297, '273.146088', '-0.359490', '138.990295', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113122, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4618298', 4618298, '194.044495', '3.506398', '122.434998', 178, 0, 0, 0, 1, 6, 0, 0, 222, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112850, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4618299', 4618299, '301.813202', '-6.703927', '30.420111', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112506, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4618300', 4618300, '344.534210', '-4.776098', '-14.875460', 24, 0, 0, 0, 1, 6, 0, 0, 233, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112234, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(303, 'e0058', 'bnpc4618301', 4618301, '198.657104', '2.212463', '118.242104', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112064, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4618302', 4618302, '280.378998', '-4.542100', '48.923759', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111792, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4618303', 4618303, '221.648804', '-2.880372', '-13.690810', 2660, 0, 0, 0, 0, 6, 0, 0, 2314, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111520, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4621091', 4621091, '-46.489208', '15.602010', '3.201886', 2771, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23396, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(303, 'e0058', 'bnpc4621093', 4621093, '622.978821', '-12.883850', '-12.418940', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23130, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4291453', 4291453, '155.132599', '222.009995', '348.043488', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41428, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(304, 'e0059', 'bnpc4291457', 4291457, '272.663513', '222.247696', '334.248901', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41156, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(304, 'e0059', 'bnpc4291464', 4291464, '220.038406', '302.644592', '-149.387497', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(304, 'e0059', 'bnpc4291467', 4291467, '177.878494', '301.664612', '-190.712402', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40618, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(304, 'e0059', 'bnpc4291540', 4291540, '264.301514', '302.632202', '-284.870697', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40346, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(304, 'e0059', 'bnpc4291544', 4291544, '-136.888702', '304.096985', '-285.084290', 1775, 0, 0, 0, 0, 6, 0, 0, 1583, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40080, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(304, 'e0059', 'bnpc4291545', 4291545, '-494.600586', '204.213104', '-188.481094', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39796, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(304, 'e0059', 'bnpc4291549', 4291549, '-535.141113', '204.035507', '-287.671906', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39524, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(304, 'e0059', 'bnpc4296962', 4296962, '6.586450', '224.231003', '359.448090', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4296996', 4296996, '16.820339', '216.422195', '389.762604', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4296997', 4296997, '31.967649', '236.529999', '323.628510', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4296998', 4296998, '72.035683', '242.920105', '316.766113', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4296999', 4296999, '79.061470', '241.243393', '319.846802', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297000', 4297000, '112.809898', '239.429306', '294.575287', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163724, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297001', 4297001, '58.960991', '253.937698', '281.400696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163452, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297003', 4297003, '10.569400', '224.790207', '357.938599', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163180, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297008', 4297008, '354.657288', '224.892807', '300.765289', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297010', 4297010, '417.257904', '226.214996', '374.532593', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297011', 4297011, '421.699005', '227.744202', '370.285492', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297012', 4297012, '330.572113', '223.491394', '369.867493', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297013', 4297013, '429.534393', '217.970001', '417.141296', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161826, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297015', 4297015, '417.746185', '217.952194', '480.668488', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161554, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297016', 4297016, '422.541687', '219.795303', '494.286896', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161282, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297019', 4297019, '411.649689', '220.784195', '484.018890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161010, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297021', 4297021, '181.170303', '242.354599', '223.538406', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160744, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297025', 4297025, '342.033508', '264.985504', '103.754501', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160472, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297026', 4297026, '88.700684', '244.067993', '303.089813', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297027', 4297027, '88.700684', '222.003494', '420.492798', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297028', 4297028, '-25.009581', '205.387497', '480.682007', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297029', 4297029, '398.841614', '224.765701', '381.022705', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297232', 4297232, '-397.424805', '210.788193', '-238.255402', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38242, 8, 0, 0, 4128002, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4297234', 4297234, '-397.352997', '210.788193', '-233.666794', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37970, 8, 0, 0, 4128001, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4297235', 4297235, '-397.251587', '210.788193', '-228.848999', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37698, 8, 0, 0, 4128000, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4297236', 4297236, '-423.044800', '210.788193', '-221.963104', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37426, 8, 0, 0, 4297227, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4297238', 4297238, '-413.101990', '210.788193', '-212.035004', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37154, 8, 0, 0, 4297228, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4297239', 4297239, '-417.529114', '210.788193', '-217.341202', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36882, 8, 0, 0, 4297229, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4297336', 4297336, '168.169693', '276.447601', '-48.600040', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159112, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297337', 4297337, '264.687988', '294.602692', '-93.670403', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158840, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4297346', 4297346, '280.170807', '253.192902', '147.692001', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4297350', 4297350, '334.350311', '248.434402', '184.154297', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4297353', 4297353, '327.623993', '256.382294', '132.340805', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4297354', 4297354, '291.785187', '269.499786', '39.650711', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4297356', 4297356, '192.950302', '271.137512', '3.646851', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4297359', 4297359, '285.844391', '267.842712', '44.338120', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4297363', 4297363, '173.391296', '272.125793', '-12.465330', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4297364', 4297364, '249.355698', '270.133301', '26.395069', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4297365', 4297365, '203.100204', '254.232300', '149.502304', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298567', 4298567, '157.396698', '293.324097', '-98.374939', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298571', 4298571, '159.523300', '293.493011', '-99.299156', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298572', 4298572, '135.779297', '299.755890', '-101.941704', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298573', 4298573, '136.228699', '283.407715', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298574', 4298574, '258.647614', '289.809692', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298575', 4298575, '254.634094', '287.557098', '-64.855118', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298576', 4298576, '268.831512', '284.212891', '-40.760189', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298741', 4298741, '251.759094', '294.415894', '-111.584099', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298744', 4298744, '288.151489', '302.427002', '-86.886337', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153938, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298765', 4298765, '321.597290', '303.200989', '-338.780914', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298767', 4298767, '346.691895', '304.562286', '-319.108887', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298770', 4298770, '357.329712', '304.360687', '-356.956696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298772', 4298772, '407.769012', '305.618500', '-327.457397', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298773', 4298773, '412.865387', '304.484802', '-333.469391', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298780', 4298780, '365.239410', '319.169586', '-254.025299', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298781', 4298781, '388.845612', '321.034485', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298784', 4298784, '476.218811', '327.076996', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298787', 4298787, '494.638214', '304.602112', '-349.542206', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298790', 4298790, '182.909805', '336.140900', '-467.124512', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151236, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298792', 4298792, '150.108704', '345.173309', '-380.467590', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150964, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298794', 4298794, '146.329498', '347.075287', '-385.583313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150692, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298812', 4298812, '253.761307', '343.590393', '-494.726715', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150420, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298813', 4298813, '294.270294', '329.274292', '-477.805786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298814', 4298814, '212.636703', '327.759796', '-433.014313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298815', 4298815, '412.045288', '353.824188', '-499.736786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149604, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298816', 4298816, '394.674591', '355.184204', '-555.809875', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298823', 4298823, '260.181488', '356.282806', '-541.374878', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298824', 4298824, '188.311493', '357.747803', '-557.427429', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298825', 4298825, '285.877686', '359.578705', '-569.421021', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148522, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298835', 4298835, '126.756599', '376.088989', '-671.473328', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148250, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298837', 4298837, '356.375610', '356.320007', '-595.291321', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298842', 4298842, '468.223511', '349.470490', '-668.565430', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147700, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298844', 4298844, '531.422729', '348.817993', '-732.418884', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147428, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298845', 4298845, '539.850708', '348.653900', '-745.830627', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147156, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4298846', 4298846, '96.262070', '375.573090', '-645.236084', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298847', 4298847, '618.677002', '325.703705', '-430.685913', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298848', 4298848, '626.867126', '322.872803', '-394.244293', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298849', 4298849, '673.548279', '293.690308', '-320.820892', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298851', 4298851, '584.470276', '282.391998', '-315.705292', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298852', 4298852, '599.206482', '281.914215', '-300.226898', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298853', 4298853, '564.033630', '282.951599', '-300.851807', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298854', 4298854, '684.587830', '306.511292', '-363.764191', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298855', 4298855, '562.945190', '342.102997', '-474.200287', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298858', 4298858, '463.976410', '249.572906', '-308.802399', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298859', 4298859, '473.929901', '247.699707', '-302.357513', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298860', 4298860, '490.206787', '271.288086', '-298.332397', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298861', 4298861, '397.627808', '248.461594', '-320.859192', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298862', 4298862, '283.789703', '236.298401', '-325.220306', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298863', 4298863, '291.652496', '235.940796', '-331.188995', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143094, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298864', 4298864, '296.253906', '234.759995', '-368.673309', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298866', 4298866, '473.213501', '248.114304', '-259.048889', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298871', 4298871, '614.450012', '323.410309', '-400.318604', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298873', 4298873, '668.683716', '306.076996', '-365.426788', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298882', 4298882, '683.369995', '295.457611', '-324.276794', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298884', 4298884, '681.273376', '295.122589', '-325.174805', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298886', 4298886, '581.921387', '282.296997', '-294.985413', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298888', 4298888, '584.498718', '282.204895', '-290.600891', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298891', 4298891, '598.967285', '282.223602', '-314.123505', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298892', 4298892, '570.297485', '282.771301', '-310.753998', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298900', 4298900, '532.146484', '235.205200', '301.718414', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140114, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4298901', 4298901, '548.790588', '235.278793', '308.827301', 114, 0, 0, 0, 1, 6, 0, 0, 662, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139848, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4298902', 4298902, '539.909912', '235.309296', '290.943695', 115, 0, 0, 0, 0, 6, 0, 0, 661, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139582, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(304, 'e0059', 'bnpc4298903', 4298903, '543.114685', '235.512100', '292.484009', 116, 0, 0, 0, 0, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139316, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(304, 'e0059', 'bnpc4298911', 4298911, '465.921387', '232.736298', '321.428497', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4298914', 4298914, '485.744812', '233.755707', '315.057404', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4298917', 4298917, '8.385859', '200.822098', '514.171082', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298919', 4298919, '3.468143', '219.127502', '377.671387', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298921', 4298921, '56.439899', '213.878601', '395.393188', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298922', 4298922, '32.688740', '261.800201', '264.078491', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298924', 4298924, '31.549110', '262.086487', '260.424103', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298925', 4298925, '97.214867', '251.860901', '270.377808', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298926', 4298926, '65.567993', '240.283707', '329.732208', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298928', 4298928, '173.567596', '231.665298', '266.478912', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298932', 4298932, '267.711090', '226.465698', '281.598785', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298933', 4298933, '349.538513', '232.623795', '259.540588', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298934', 4298934, '353.841400', '234.302200', '255.420700', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298937', 4298937, '398.091797', '226.637100', '344.024994', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298938', 4298938, '278.828003', '242.816803', '203.601105', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298941', 4298941, '191.013199', '256.839386', '104.428802', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4298943', 4298943, '248.318405', '261.876587', '67.776207', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299053', 4299053, '152.027496', '277.941711', '34.020439', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299054', 4299054, '235.312393', '277.402405', '-48.467419', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299057', 4299057, '191.224899', '284.341797', '-81.645477', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299063', 4299063, '374.380005', '306.477386', '-331.197113', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299079', 4299079, '343.678802', '311.085602', '-403.738495', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299081', 4299081, '278.156586', '313.466095', '-429.770386', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299082', 4299082, '347.909790', '309.989197', '-275.124512', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299084', 4299084, '404.743988', '318.417908', '-277.971985', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299088', 4299088, '457.550507', '305.113708', '-285.144989', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299091', 4299091, '458.811310', '305.676910', '-289.211914', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299093', 4299093, '502.242096', '302.581390', '-245.190903', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299094', 4299094, '502.391815', '308.429413', '-356.438385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299096', 4299096, '502.046387', '342.161713', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299098', 4299098, '424.421387', '339.137909', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299099', 4299099, '429.241394', '341.024200', '-436.179199', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299100', 4299100, '218.158203', '330.586700', '-473.045013', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299102', 4299102, '173.367004', '339.026001', '-390.899200', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299103', 4299103, '119.335899', '353.367310', '-336.673615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299106', 4299106, '166.454803', '348.701294', '-492.608795', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299107', 4299107, '432.587189', '365.876801', '-537.769714', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299110', 4299110, '418.305603', '349.797699', '-685.625427', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299112', 4299112, '485.808594', '353.806305', '-658.057312', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299114', 4299114, '298.678589', '345.167297', '-521.747192', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128442, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299115', 4299115, '198.874802', '362.118011', '-601.265076', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299116', 4299116, '138.675293', '374.013306', '-661.681824', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299117', 4299117, '324.054291', '360.242188', '-582.895081', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299119', 4299119, '283.839905', '362.149506', '-625.782288', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299120', 4299120, '210.687897', '361.424805', '-658.411926', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299121', 4299121, '205.782394', '360.548187', '-666.505615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299188', 4299188, '105.119400', '289.448395', '-164.568604', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120116, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299192', 4299192, '62.638309', '289.814606', '-219.226395', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299194', 4299194, '-1.358093', '310.902496', '-142.015701', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299195', 4299195, '-58.910789', '304.604401', '-272.412598', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299197', 4299197, '-86.450127', '300.163605', '-170.834900', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299198', 4299198, '137.090607', '290.130798', '-258.218414', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299208', 4299208, '-115.231300', '298.469788', '-208.100098', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299210', 4299210, '-205.664902', '281.635010', '-192.517700', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118284, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299213', 4299213, '-107.621902', '300.038086', '-137.041306', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118012, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299215', 4299215, '-158.759003', '292.966492', '-201.171295', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299216', 4299216, '-162.136307', '291.173187', '-194.256607', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299217', 4299217, '-205.676498', '283.894012', '-114.763100', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117196, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299218', 4299218, '-212.088394', '285.828400', '-56.427200', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299219', 4299219, '-290.402100', '261.601898', '-157.738800', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116652, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299227', 4299227, '-318.632690', '255.833298', '-42.884541', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101716, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299230', 4299230, '-340.376007', '259.605804', '-64.511017', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101444, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299231', 4299231, '-317.614502', '256.207092', '-97.947693', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299233', 4299233, '-257.298615', '264.585693', '-65.689346', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299235', 4299235, '-249.965302', '269.336914', '-76.447701', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299236', 4299236, '-353.139587', '237.921494', '-157.603195', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299238', 4299238, '-423.544708', '240.253296', '-111.314598', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299241', 4299241, '-359.502197', '233.804596', '-160.537003', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299242', 4299242, '-578.240723', '227.008408', '-125.078201', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116386, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299244', 4299244, '-499.116089', '237.639496', '-97.965683', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116114, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299247', 4299247, '-655.179871', '229.729202', '-54.205719', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115842, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299249', 4299249, '-483.586609', '226.184692', '-125.489799', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299250', 4299250, '-477.837402', '228.009293', '-122.481400', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299252', 4299252, '-573.938416', '231.500397', '-73.804337', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299254', 4299254, '-600.372192', '209.926697', '-352.855804', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299256', 4299256, '-623.961182', '211.311707', '-374.720001', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299257', 4299257, '-624.778992', '210.859299', '-381.588593', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299258', 4299258, '-586.229492', '201.455200', '-440.921997', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299259', 4299259, '-583.154114', '188.738800', '-477.195404', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299260', 4299260, '-653.461182', '211.102798', '-435.622009', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299422', 4299422, '-650.603027', '204.070007', '-488.214691', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299424', 4299424, '-551.951416', '206.791595', '-350.856995', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112856, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299425', 4299425, '-612.623779', '216.144806', '-319.243988', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299426', 4299426, '-853.938416', '226.438599', '25.457430', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299427', 4299427, '-879.604614', '229.180099', '-15.122490', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299428', 4299428, '-894.004272', '228.026398', '0.443500', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299429', 4299429, '-907.681885', '249.338104', '26.397079', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299430', 4299430, '-907.681885', '247.122192', '-24.585300', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111230, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(304, 'e0059', 'bnpc4299431', 4299431, '-938.982971', '269.272095', '1.981136', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299433', 4299433, '-951.375916', '276.008698', '-32.272030', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299593', 4299593, '117.442703', '288.131500', '-217.671204', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299595', 4299595, '61.837181', '292.037506', '-153.092804', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299596', 4299596, '58.310040', '291.422913', '-157.591202', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299597', 4299597, '-17.296480', '300.204010', '-215.268906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299598', 4299598, '-102.796997', '298.673889', '-164.088501', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299599', 4299599, '-144.174805', '292.303986', '-187.728806', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299600', 4299600, '-141.522705', '298.377014', '-239.075500', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299602', 4299602, '-187.987900', '287.198914', '-119.562897', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299603', 4299603, '-250.437195', '273.614410', '-139.801193', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299604', 4299604, '-287.381409', '260.165009', '-74.592461', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299605', 4299605, '-249.896500', '264.386505', '-56.690639', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299606', 4299606, '-316.963898', '249.190399', '0.375132', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299607', 4299607, '-353.362305', '249.890305', '-112.803703', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107126, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299608', 4299608, '-317.082214', '255.914795', '-163.691803', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106854, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299610', 4299610, '-540.337280', '216.113495', '-165.331497', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106582, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299612', 4299612, '-494.751099', '227.817902', '-119.577698', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299614', 4299614, '-538.078918', '224.933197', '-115.343002', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299615', 4299615, '-679.120911', '223.608002', '-24.397600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299617', 4299617, '-748.989075', '226.855804', '-70.359383', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105494, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299618', 4299618, '-763.556213', '240.848099', '-149.583405', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105222, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299620', 4299620, '-791.189026', '244.109695', '-171.737000', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104950, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299628', 4299628, '-802.041016', '225.578995', '14.979860', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299805', 4299805, '-869.248901', '228.169098', '24.666691', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299806', 4299806, '-916.034790', '242.289902', '5.756409', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299808', 4299808, '-898.861877', '250.815994', '-36.228569', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299809', 4299809, '-932.563721', '262.462097', '18.376640', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299833', 4299833, '-528.303406', '207.486404', '-361.926514', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299835', 4299835, '-635.674072', '220.452301', '-338.610809', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299836', 4299836, '-582.583984', '206.158493', '-384.262085', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299839', 4299839, '-524.189880', '192.377594', '-420.327301', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299840', 4299840, '-649.544922', '206.868103', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299842', 4299842, '-652.836792', '207.443604', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299844', 4299844, '-459.800110', '286.182892', '196.642899', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99194, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299846', 4299846, '-523.050415', '277.612488', '197.807800', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98922, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299847', 4299847, '-532.402588', '240.741592', '331.532806', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98650, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299850', 4299850, '-475.198303', '237.443207', '403.405304', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299852', 4299852, '-369.299286', '237.950699', '382.602814', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98106, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299853', 4299853, '-350.165009', '237.914505', '384.625702', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97834, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299854', 4299854, '-269.214996', '226.703201', '429.251587', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97562, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299856', 4299856, '-231.006302', '225.146896', '420.889496', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299858', 4299858, '-634.704590', '244.070801', '300.718811', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97018, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299859', 4299859, '-706.643005', '237.401398', '303.170288', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96746, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299861', 4299861, '-766.720093', '254.688202', '421.683014', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96474, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299862', 4299862, '-743.321777', '254.701202', '428.467499', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299872', 4299872, '-358.874786', '272.546112', '253.455994', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299873', 4299873, '-357.118988', '248.051895', '290.108185', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299874', 4299874, '-401.256805', '239.983307', '278.980713', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299876', 4299876, '-288.120392', '293.587006', '256.741089', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299877', 4299877, '-277.870697', '258.656494', '334.187714', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299878', 4299878, '-321.083313', '262.754395', '217.010696', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299879', 4299879, '-440.215912', '244.465805', '319.074097', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94316, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299880', 4299880, '-394.308411', '303.990997', '193.089905', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299881', 4299881, '-460.690186', '270.367493', '260.074188', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4299886', 4299886, '-254.901993', '224.367096', '523.252625', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299887', 4299887, '-247.943405', '224.715195', '514.518921', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93096, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299888', 4299888, '-282.529114', '224.717606', '503.718506', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92824, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299889', 4299889, '-393.453888', '238.452805', '503.715515', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92552, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299909', 4299909, '-485.722290', '243.436295', '460.457214', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92280, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299910', 4299910, '-491.588287', '245.377701', '463.765594', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92008, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299912', 4299912, '-305.548096', '226.398407', '559.785400', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91736, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299914', 4299914, '-212.225906', '229.780594', '563.407715', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91464, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299915', 4299915, '-252.616806', '224.743301', '626.013428', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91192, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299917', 4299917, '-120.126801', '205.896805', '472.541412', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299933', 4299933, '-167.451797', '212.509293', '469.950714', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299935', 4299935, '-192.431595', '215.960907', '481.742401', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299937', 4299937, '-254.539902', '221.577606', '466.534088', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299939', 4299939, '-261.479614', '221.984207', '460.971405', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89970, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299940', 4299940, '-327.888702', '223.177307', '446.066895', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89698, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299942', 4299942, '-452.292694', '231.075394', '433.657410', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299943', 4299943, '-556.198486', '235.399994', '407.330414', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299944', 4299944, '-563.418518', '235.399994', '398.974304', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4299945', 4299945, '-533.244080', '235.399994', '407.132111', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4300046', 4300046, '-699.997925', '253.759995', '507.272186', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88344, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300048', 4300048, '-688.471802', '253.697205', '509.426910', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88072, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300049', 4300049, '-698.510803', '253.838196', '499.010101', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87800, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300050', 4300050, '-705.378479', '253.881699', '505.406494', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87528, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300051', 4300051, '-699.795776', '253.759995', '514.230591', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300052', 4300052, '-688.023315', '253.529099', '507.670410', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300053', 4300053, '-688.742798', '253.351105', '499.477112', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300054', 4300054, '-677.956787', '254.053894', '498.299103', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300056', 4300056, '-493.539612', '282.080109', '191.529907', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300057', 4300057, '-521.202393', '242.145401', '299.671906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300059', 4300059, '-521.172913', '237.402893', '377.595398', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300061', 4300061, '-438.483398', '245.206894', '362.585205', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300062', 4300062, '-248.297302', '227.611099', '410.760986', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300064', 4300064, '-153.368500', '221.118393', '416.250702', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300066', 4300066, '-98.785767', '213.591293', '426.872589', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300069', 4300069, '-272.282501', '264.869385', '321.059906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300070', 4300070, '-390.265106', '233.670807', '321.964600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83926, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300072', 4300072, '-383.889404', '248.725204', '219.890106', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83654, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300074', 4300074, '-416.929291', '233.443802', '461.940796', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300078', 4300078, '-295.979309', '224.444901', '485.191010', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300080', 4300080, '-346.028900', '236.543396', '518.089478', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300081', 4300081, '-227.039001', '229.327805', '547.600525', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300083', 4300083, '-286.249908', '221.550095', '669.298584', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300084', 4300084, '-282.240204', '222.570007', '672.355286', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300085', 4300085, '-254.344894', '224.215302', '580.497681', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300087', 4300087, '-149.461502', '217.410095', '485.622894', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300089', 4300089, '-604.956787', '244.740799', '337.663788', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300090', 4300090, '-649.166504', '245.258606', '286.166504', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300091', 4300091, '-748.151123', '238.541107', '350.326385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300171', 4300171, '566.598206', '289.624603', '98.502197', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4300176', 4300176, '527.275391', '303.059296', '-162.340805', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79372, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(304, 'e0059', 'bnpc4300177', 4300177, '586.301575', '302.701202', '-115.328102', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79100, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(304, 'e0059', 'bnpc4300178', 4300178, '654.442383', '298.421295', '-12.551030', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78828, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(304, 'e0059', 'bnpc4300179', 4300179, '669.497986', '301.708099', '-29.924919', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78556, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(304, 'e0059', 'bnpc4300180', 4300180, '602.427917', '290.487396', '-0.884406', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78284, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(304, 'e0059', 'bnpc4300181', 4300181, '664.371399', '287.443909', '73.074158', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78012, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(304, 'e0059', 'bnpc4300182', 4300182, '601.759216', '287.400208', '127.919098', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77740, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(304, 'e0059', 'bnpc4300183', 4300183, '565.585571', '287.455109', '154.665298', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77468, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(304, 'e0059', 'bnpc4300184', 4300184, '558.831116', '300.043915', '59.949520', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77196, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(304, 'e0059', 'bnpc4300191', 4300191, '511.356689', '303.173004', '-206.740097', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76930, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(304, 'e0059', 'bnpc4300194', 4300194, '494.438110', '303.700287', '-197.619598', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76646, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300196', 4300196, '508.591888', '303.338898', '-205.656296', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76392, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(304, 'e0059', 'bnpc4300198', 4300198, '523.491211', '302.387909', '-191.363495', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76120, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300200', 4300200, '559.439514', '303.965698', '-151.707001', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75836, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300201', 4300201, '555.992920', '301.960693', '-163.683502', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75570, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300203', 4300203, '593.473511', '302.708496', '-99.112923', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75304, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300204', 4300204, '642.703979', '303.166687', '-43.589840', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300205', 4300205, '650.994812', '303.095612', '-38.070992', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74742, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300206', 4300206, '625.239319', '302.690613', '-97.402184', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74476, 1, 0, 0, 0, 45, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300209', 4300209, '635.367188', '303.307190', '-92.580772', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74198, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(304, 'e0059', 'bnpc4300210', 4300210, '636.402405', '303.397003', '-95.636833', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73938, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(304, 'e0059', 'bnpc4300212', 4300212, '640.141296', '289.793488', '15.564350', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73654, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300213', 4300213, '632.201416', '287.460602', '83.472313', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73394, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300214', 4300214, '694.667114', '302.802002', '-25.909540', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73116, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300215', 4300215, '668.584900', '286.359985', '53.434738', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72856, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300219', 4300219, '653.565674', '286.929688', '35.585339', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72566, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(304, 'e0059', 'bnpc4300220', 4300220, '654.409180', '286.791412', '37.999821', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72312, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(304, 'e0059', 'bnpc4300221', 4300221, '655.671082', '286.824310', '34.141949', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72034, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(304, 'e0059', 'bnpc4300222', 4300222, '657.228088', '286.375885', '36.471931', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71756, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(304, 'e0059', 'bnpc4300226', 4300226, '639.859619', '286.099091', '135.124603', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71478, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(304, 'e0059', 'bnpc4300227', 4300227, '642.707703', '286.175110', '132.877899', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71212, 1, 0, 0, 0, 0, 30120, 0, 0, 0), +(304, 'e0059', 'bnpc4300229', 4300229, '708.942505', '286.232513', '46.920448', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70946, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300230', 4300230, '711.298828', '285.307404', '75.698997', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70680, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300232', 4300232, '613.615784', '284.572296', '166.852005', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70408, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300233', 4300233, '590.029480', '285.689209', '176.024506', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70130, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300234', 4300234, '646.990784', '285.135101', '149.341507', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69852, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300236', 4300236, '586.167297', '288.737610', '-28.609209', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4300238', 4300238, '582.383789', '289.517700', '-46.738300', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4300239', 4300239, '559.963928', '292.885193', '-35.993568', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65790, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4300241', 4300241, '576.693481', '289.831787', '-46.195572', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4300242', 4300242, '498.254486', '308.702209', '-165.574203', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4300244', 4300244, '507.927002', '303.303497', '-229.236298', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4300246', 4300246, '630.399292', '300.341187', '-66.790810', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65518, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4300250', 4300250, '684.486816', '291.013214', '7.434129', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4300253', 4300253, '639.507080', '287.656799', '38.046551', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66062, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4300254', 4300254, '630.756226', '286.750000', '109.616798', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4300256', 4300256, '570.830383', '286.569214', '120.215103', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4300257', 4300257, '555.228516', '297.855499', '84.213348', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4300284', 4300284, '605.249023', '330.830811', '-303.486786', 114, 0, 0, 0, 0, 6, 0, 0, 662, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68668, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(304, 'e0059', 'bnpc4300286', 4300286, '527.855225', '308.308502', '-299.702515', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69478, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300287', 4300287, '575.036316', '320.881805', '-289.906189', 115, 0, 0, 0, 1, 6, 0, 0, 661, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69218, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4300288', 4300288, '577.508118', '322.468903', '-294.789093', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68952, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(304, 'e0059', 'bnpc4325155', 4325155, '215.504501', '360.039307', '-581.431030', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4406869', 4406869, '311.001099', '307.036499', '-422.752106', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126194, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406870', 4406870, '323.323395', '303.822296', '-391.989014', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125922, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406871', 4406871, '317.110413', '305.692505', '-418.385315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125650, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406872', 4406872, '351.343506', '312.029114', '-396.169098', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125378, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406873', 4406873, '350.968994', '315.450592', '-416.192993', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125106, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406874', 4406874, '48.752670', '311.224213', '-250.581207', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124834, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406875', 4406875, '44.907230', '311.238312', '-245.044693', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124562, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406876', 4406876, '66.984810', '300.472412', '-252.706802', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124290, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406877', 4406877, '-17.150419', '311.581512', '-255.273895', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124018, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406878', 4406878, '7.231910', '312.528687', '-245.321793', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123746, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406879', 4406879, '-6.278003', '305.376709', '-233.466095', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123474, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406880', 4406880, '-10.073550', '305.779694', '-236.697601', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123202, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406884', 4406884, '357.847992', '311.662201', '-388.165497', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122930, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406885', 4406885, '363.148010', '313.250488', '-391.308411', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122658, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406886', 4406886, '331.929413', '319.783203', '-430.502808', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122386, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406888', 4406888, '113.582199', '354.933685', '-335.568512', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406890', 4406890, '121.680801', '354.167114', '-326.125214', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406891', 4406891, '110.022797', '357.553314', '-311.841187', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406892', 4406892, '111.824799', '358.195190', '-382.551514', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406893', 4406893, '115.392303', '357.688690', '-387.074890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4406894', 4406894, '93.907928', '362.855194', '-349.329315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4600355', 4600355, '547.412170', '348.384613', '-748.106018', 1699, 0, 0, 0, 8, 6, 0, 0, 2162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4614331', 4614331, '530.815125', '348.686096', '-743.006226', 1700, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43556, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4614332', 4614332, '535.935608', '348.616394', '-737.220215', 2222, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43290, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4621624', 4621624, '-332.429199', '307.678406', '234.107803', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44948, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(304, 'e0059', 'bnpc4890695', 4890695, '-188.798996', '226.035995', '400.288086', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(304, 'e0059', 'bnpc4890696', 4890696, '-132.585098', '216.182098', '435.066193', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4291568', 4291568, '76.290123', '30.749250', '-733.599182', 1776, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(305, 'e0060', 'bnpc4292672', 4292672, '-12.396590', '18.377340', '-670.928772', 1777, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22138, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(305, 'e0060', 'bnpc4292673', 4292673, '91.670517', '20.458050', '-614.237122', 1778, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21872, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(305, 'e0060', 'bnpc4295485', 4295485, '-266.791504', '-5.944477', '-526.778198', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295487', 4295487, '-276.140686', '-8.410786', '-516.253174', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295488', 4295488, '-298.914093', '-4.103804', '-550.291321', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295489', 4295489, '-103.196297', '1.542795', '-586.758179', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295490', 4295490, '-207.536301', '-2.690903', '-578.039001', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295491', 4295491, '-103.713898', '-0.832843', '-642.948425', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295492', 4295492, '-208.009796', '1.723610', '-616.185120', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71640, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295493', 4295493, '-172.408905', '4.990528', '-671.229126', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295495', 4295495, '-380.537506', '-16.898170', '-441.082001', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295496', 4295496, '-430.882507', '-16.898170', '-384.312195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295497', 4295497, '-390.139587', '-16.898170', '-350.704712', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70558, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295498', 4295498, '-398.062103', '-16.898170', '-358.104401', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70286, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295499', 4295499, '-336.279297', '-16.898170', '-437.756195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70014, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295500', 4295500, '-302.568298', '-16.898170', '-458.892609', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69742, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295501', 4295501, '-402.253601', '-16.898170', '-464.540710', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69470, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295503', 4295503, '-369.143799', '-16.898170', '-389.766815', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69198, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295505', 4295505, '-359.561707', '-16.042290', '-486.552094', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68932, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295506', 4295506, '-417.805786', '-6.910027', '-523.771912', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295507', 4295507, '-466.061310', '-9.446001', '-532.017029', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295508', 4295508, '-413.364410', '-2.492527', '-559.181519', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295514', 4295514, '-350.972809', '-6.607239', '-526.665222', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295515', 4295515, '-360.309296', '-4.290267', '-546.520813', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295516', 4295516, '-350.790710', '-3.296191', '-550.475586', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295520', 4295520, '-396.722198', '-14.513140', '-500.059692', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295524', 4295524, '-234.088699', '-4.989685', '-302.540588', 724, 0, 0, 0, 1, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66762, 1, 0, 0, 0, 0, 30096, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(305, 'e0060', 'bnpc4295525', 4295525, '-211.180405', '-2.844870', '-288.253998', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66496, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(305, 'e0060', 'bnpc4295526', 4295526, '-257.312897', '1.113892', '-308.064392', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66230, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4295528', 4295528, '-212.115707', '-2.955642', '-289.682190', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65946, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(305, 'e0060', 'bnpc4295529', 4295529, '-224.841705', '3.952026', '-259.540710', 725, 0, 0, 0, 1, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65680, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4295530', 4295530, '-203.875793', '24.704220', '-215.411697', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4295531', 4295531, '-234.943207', '21.774599', '-213.092300', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65136, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(305, 'e0060', 'bnpc4295532', 4295532, '-235.959198', '22.114910', '-212.031006', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64858, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(305, 'e0060', 'bnpc4295533', 4295533, '-234.301407', '21.966511', '-211.462402', 726, 0, 0, 0, 0, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(305, 'e0060', 'bnpc4295534', 4295534, '-127.288002', '47.127460', '-188.580307', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295535', 4295535, '-140.871399', '45.053020', '-179.736603', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295536', 4295536, '-136.478302', '46.067551', '-193.959702', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295537', 4295537, '-143.537201', '44.052780', '-181.398193', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295538', 4295538, '-146.514297', '42.327431', '-204.108902', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295539', 4295539, '-129.866394', '46.678692', '-196.996994', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295540', 4295540, '-145.364395', '42.544418', '-202.550705', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295541', 4295541, '-144.789993', '44.556961', '-194.376297', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295659', 4295659, '-53.322418', '17.072929', '-621.681213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295665', 4295665, '-88.710228', '0.643335', '-625.828125', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295666', 4295666, '-207.395203', '8.290789', '-665.648376', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295668', 4295668, '-156.229294', '-1.918439', '-604.694275', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295669', 4295669, '-304.707489', '-15.793150', '-491.020111', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295670', 4295670, '-386.814087', '-6.319692', '-539.647400', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295674', 4295674, '-375.356689', '-13.229610', '-505.729797', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295679', 4295679, '-327.840393', '-2.384109', '-563.164490', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295691', 4295691, '482.994690', '-1.037749', '-792.622070', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59992, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295693', 4295693, '473.960388', '0.503479', '-803.097595', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59720, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295694', 4295694, '450.441315', '-4.905994', '-755.835999', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59448, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295695', 4295695, '500.877289', '-5.020264', '-757.289978', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59176, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295697', 4295697, '456.274902', '-4.258285', '-763.958801', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295698', 4295698, '550.072510', '-9.750549', '-735.286499', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295700', 4295700, '487.731598', '2.187441', '-809.306885', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58360, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295702', 4295702, '268.736298', '32.329670', '-657.612671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295704', 4295704, '272.319611', '32.540180', '-659.312988', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295705', 4295705, '285.744507', '34.969521', '-689.040283', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295709', 4295709, '298.145996', '20.340210', '-684.382385', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295710', 4295710, '348.251495', '21.030451', '-726.475220', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295711', 4295711, '352.642487', '20.319700', '-740.209778', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295712', 4295712, '369.140015', '21.089970', '-736.832886', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56462, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295715', 4295715, '363.363007', '-1.968445', '-698.451172', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56190, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295716', 4295716, '557.910828', '-5.547063', '-643.875671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55918, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295717', 4295717, '557.692322', '16.908760', '-525.262085', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55646, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295718', 4295718, '576.089783', '12.066130', '-514.577271', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55374, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295719', 4295719, '594.596985', '7.711907', '-478.120911', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295720', 4295720, '616.268982', '8.446064', '-482.073486', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(305, 'e0060', 'bnpc4295726', 4295726, '356.740601', '-6.149414', '-463.218109', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295727', 4295727, '365.071991', '-14.602910', '-430.808014', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54298, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295728', 4295728, '350.667511', '-17.288509', '-404.379303', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295734', 4295734, '413.196686', '-20.564011', '-317.744904', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295735', 4295735, '387.892609', '-18.073410', '-346.505707', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53476, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295736', 4295736, '450.900513', '-17.914270', '-353.105286', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295737', 4295737, '481.724091', '-12.428540', '-382.045105', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295738', 4295738, '511.909393', '-9.373532', '-382.464996', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52660, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295739', 4295739, '522.073730', '0.990242', '-453.501709', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295747', 4295747, '588.058716', '-2.946974', '-271.337891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295749', 4295749, '568.700012', '-2.429443', '-330.453400', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295751', 4295751, '582.843079', '-3.006616', '-272.419891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295755', 4295755, '214.220200', '-22.109159', '-425.877502', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51324, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295757', 4295757, '208.472198', '-22.096960', '-422.660797', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295759', 4295759, '162.350601', '-27.989771', '-429.755402', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295760', 4295760, '152.123001', '-27.048130', '-440.418915', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295761', 4295761, '177.396194', '-25.049320', '-444.224487', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295762', 4295762, '267.297211', '-21.872410', '-406.569397', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295763', 4295763, '306.843597', '-26.993231', '-409.628510', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295764', 4295764, '304.550415', '-25.764360', '-424.008301', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295769', 4295769, '306.531403', '-6.106912', '-519.224976', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49130, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295770', 4295770, '282.576813', '-0.225863', '-572.515686', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48852, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295771', 4295771, '310.969513', '6.158492', '-563.194397', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48592, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295809', 4295809, '156.994202', '14.383940', '-592.509216', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48290, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295811', 4295811, '223.296295', '19.340050', '-610.880798', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48018, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295812', 4295812, '201.983597', '-0.198364', '-555.107971', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295813', 4295813, '341.647797', '-7.563892', '-456.047089', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295816', 4295816, '408.980713', '-16.354401', '-360.560699', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295818', 4295818, '509.696991', '-9.567444', '-375.661896', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295820', 4295820, '496.853485', '0.344957', '-504.120392', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295823', 4295823, '601.499573', '8.072348', '-517.726685', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295825', 4295825, '570.526428', '-2.482952', '-625.752014', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295827', 4295827, '556.342102', '-7.876167', '-657.103516', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295829', 4295829, '554.863770', '-9.262268', '-749.843628', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295831', 4295831, '503.838013', '-2.956629', '-777.365173', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295834', 4295834, '482.706696', '1.341902', '-807.133728', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295835', 4295835, '486.772400', '5.215003', '-836.320984', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295836', 4295836, '471.659790', '3.490144', '-819.978882', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295837', 4295837, '484.345886', '5.375706', '-837.509583', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295840', 4295840, '412.710693', '-9.353821', '-747.005371', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295844', 4295844, '384.603485', '-4.196289', '-690.486023', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295846', 4295846, '332.112701', '4.562378', '-690.424988', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43394, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295850', 4295850, '316.341492', '26.032160', '-728.249573', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43122, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295851', 4295851, '297.774597', '15.475720', '-651.450989', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295855', 4295855, '598.748718', '-3.250244', '-301.930298', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295858', 4295858, '591.221985', '-1.360156', '-323.232788', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295862', 4295862, '-314.692108', '-15.474820', '-327.581299', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295866', 4295866, '-272.613800', '-8.061660', '-332.045013', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295867', 4295867, '-217.273193', '-1.571716', '-276.691895', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295870', 4295870, '-229.022598', '14.450200', '-236.072403', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295871', 4295871, '-188.372696', '33.340939', '-195.666504', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4295884', 4295884, '-562.005005', '-2.945007', '-452.323212', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40722, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4295886', 4295886, '-554.466980', '-3.768982', '-380.758392', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40456, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4295887', 4295887, '-568.932678', '-2.945007', '-424.124603', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40190, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4295889', 4295889, '-543.789124', '-3.866000', '-411.311401', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4296050', 4296050, '-471.824188', '-6.332520', '-433.737701', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39640, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(305, 'e0060', 'bnpc4296052', 4296052, '-484.855499', '-6.027344', '-447.898102', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39368, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(305, 'e0060', 'bnpc4296053', 4296053, '-445.975494', '-12.710820', '-466.361511', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32130, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4296054', 4296054, '-473.746887', '-4.409851', '-480.766113', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32432, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4296055', 4296055, '-471.580109', '-6.668213', '-449.912292', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39102, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4296056', 4296056, '-453.727112', '-10.818660', '-442.862610', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38842, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4296060', 4296060, '-455.741211', '-7.492188', '-484.428192', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38552, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(305, 'e0060', 'bnpc4296081', 4296081, '-603.967285', '-3.891113', '-368.337494', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38298, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4296082', 4296082, '-640.680481', '-3.891113', '-370.046600', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38032, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4296091', 4296091, '-592.797729', '-2.945007', '-432.211792', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37736, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(305, 'e0060', 'bnpc4296093', 4296093, '-635.341492', '-2.933044', '-396.278687', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37464, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(305, 'e0060', 'bnpc4296094', 4296094, '-548.271912', '-1.937927', '-310.963593', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37204, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4296096', 4296096, '-498.711395', '-3.960067', '-255.747696', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36932, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(305, 'e0060', 'bnpc4296098', 4296098, '-558.028809', '-3.683542', '-364.324585', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36648, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(305, 'e0060', 'bnpc4296100', 4296100, '-489.250092', '-3.708008', '-282.124115', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36376, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(305, 'e0060', 'bnpc4296103', 4296103, '-446.294891', '-4.000447', '-219.651199', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36104, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(305, 'e0060', 'bnpc4296105', 4296105, '-437.867004', '-2.581742', '-273.708099', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35832, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(305, 'e0060', 'bnpc4296108', 4296108, '-527.244995', '-2.670410', '-288.624512', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35554, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4296110', 4296110, '-560.845276', '-2.975586', '-327.595886', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35294, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4296111', 4296111, '-547.325928', '-1.754883', '-291.645691', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35016, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4296113', 4296113, '-527.817322', '-3.767937', '-323.068909', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4296115', 4296115, '-543.791321', '-3.216822', '-330.542389', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34496, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4296118', 4296118, '-473.824707', '-3.767937', '-273.987488', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34224, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4296119', 4296119, '-488.912994', '-3.958386', '-246.223602', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33946, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4296120', 4296120, '-461.660309', '-3.996136', '-252.041306', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33650, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4296121', 4296121, '-428.786102', '-3.945695', '-301.904114', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4296122', 4296122, '-429.702698', '-3.990123', '-245.654495', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33118, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4296344', 4296344, '-618.398071', '-3.216822', '-419.669586', 201, 0, 0, 0, 5, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32692, 1, 0, 0, 0, 0, 0, 4296333, 0, 0), +(305, 'e0060', 'bnpc4331545', 4331545, '-431.193512', '-15.291800', '-426.211914', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31858, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4331546', 4331546, '-472.129791', '-5.294910', '-466.746185', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31586, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4331549', 4331549, '-455.329895', '-10.797180', '-446.420288', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4331550', 4331550, '-470.522400', '-4.822834', '-501.822296', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31072, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(305, 'e0060', 'bnpc4621627', 4621627, '459.067596', '6.191762', '-845.122498', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22746, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4057759', 4057759, '-167.171906', '25.428049', '-361.451508', 798, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27716, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(306, 'e0061', 'bnpc4057772', 4057772, '-250.234695', '27.956100', '-323.354889', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27450, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(306, 'e0061', 'bnpc4057782', 4057782, '-56.647308', '26.533920', '-382.801697', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27184, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(306, 'e0061', 'bnpc4057793', 4057793, '-250.333099', '7.167006', '413.444885', 1342, 0, 0, 0, 0, 6, 0, 0, 1278, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26918, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(306, 'e0061', 'bnpc4128048', 4128048, '-402.311707', '13.399570', '-383.545898', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128049', 4128049, '-398.984802', '13.399560', '-382.573486', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128050', 4128050, '-398.703003', '13.473630', '-399.130188', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128051', 4128051, '-349.172211', '14.053470', '-371.236786', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128052', 4128052, '-363.032715', '12.848900', '-352.263092', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128053', 4128053, '-344.625000', '14.389220', '-374.166504', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128054', 4128054, '-361.864685', '12.175190', '-319.089905', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128055', 4128055, '-357.923309', '12.323080', '-315.838715', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128056', 4128056, '-366.900909', '12.044570', '-313.915009', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128057', 4128057, '-345.540588', '14.114500', '-368.795288', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128058', 4128058, '-306.752106', '19.363649', '-347.920990', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128059', 4128059, '-303.998688', '19.825630', '-345.763611', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128061', 4128061, '-329.335510', '13.992490', '-311.024689', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128062', 4128062, '-334.273499', '12.735820', '-272.286011', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128063', 4128063, '-332.188293', '12.773240', '-274.762512', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128064', 4128064, '-275.553406', '19.811119', '-300.743988', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128065', 4128065, '-277.943207', '19.468559', '-300.616791', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128066', 4128066, '-216.697205', '19.814110', '-291.068909', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128067', 4128067, '-219.086899', '19.669310', '-290.941803', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128068', 4128068, '-215.855301', '18.862061', '-286.262787', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128069', 4128069, '-251.503403', '17.336300', '-282.862091', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155656, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128071', 4128071, '-277.037994', '27.629240', '-446.633911', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155390, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128072', 4128072, '-293.590302', '20.134371', '-406.301605', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128073', 4128073, '-241.107803', '23.575130', '-427.206787', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154846, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128074', 4128074, '-233.356293', '23.788820', '-423.636292', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128075', 4128075, '-192.850494', '24.439541', '-471.427490', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128076', 4128076, '-225.719101', '22.713610', '-511.794586', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128078', 4128078, '-234.581894', '23.154600', '-503.730499', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128080', 4128080, '-99.297150', '11.812300', '-624.887512', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128081', 4128081, '-101.063499', '14.100460', '-548.412415', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128082', 4128082, '-57.090172', '5.200434', '-542.299622', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128083', 4128083, '-1.143898', '7.618513', '-528.769287', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128085', 4128085, '5.080926', '7.618519', '-537.079224', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128089', 4128089, '-156.176102', '17.047890', '-567.528198', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128090', 4128090, '-129.437500', '14.855080', '-587.989197', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128095', 4128095, '-28.120790', '6.618664', '-619.769470', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151576, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128096', 4128096, '-29.463200', '6.619354', '-617.967285', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151304, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128097', 4128097, '-24.055080', '6.620687', '-614.076782', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151032, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128098', 4128098, '-25.895201', '4.928910', '-647.637573', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150760, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128099', 4128099, '-12.619260', '4.562378', '-658.594727', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150488, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128100', 4128100, '-9.942262', '4.207929', '-660.454895', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150216, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128102', 4128102, '-63.811069', '7.713764', '-671.437012', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149944, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128103', 4128103, '-56.610531', '6.680237', '-675.225220', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149672, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128104', 4128104, '-63.511070', '7.475504', '-669.236084', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149400, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128105', 4128105, '-82.276627', '12.964970', '-712.882813', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149128, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128106', 4128106, '-75.376091', '12.702090', '-718.871826', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148856, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128107', 4128107, '-82.576622', '13.183150', '-715.083679', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148584, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128108', 4128108, '-92.149231', '14.084050', '-719.172974', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128109', 4128109, '-50.418240', '10.700190', '-716.867188', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128110', 4128110, '-36.628948', '10.796120', '-721.924072', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128111', 4128111, '-34.110340', '9.565180', '-718.908081', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128112', 4128112, '-22.776590', '6.822047', '-697.630371', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128113', 4128113, '39.229660', '3.128414', '-685.332397', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128114', 4128114, '36.552662', '2.610799', '-683.472229', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128115', 4128115, '42.912899', '6.469104', '-652.670776', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128119', 4128119, '-65.089844', '4.250028', '-634.668091', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128250', 4128250, '40.021858', '6.264256', '-433.494293', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128252', 4128252, '55.418652', '12.390480', '-491.216187', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128253', 4128253, '77.684799', '10.281420', '-468.654602', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128254', 4128254, '89.542992', '10.303750', '-428.138397', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128255', 4128255, '137.875504', '10.065270', '-451.167206', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128256', 4128256, '35.210232', '9.730854', '-485.420990', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128257', 4128257, '183.695404', '14.216050', '-465.348206', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128258', 4128258, '-100.389198', '14.631890', '-227.392395', 2259, 0, 0, 0, 1, 6, 0, 0, 1998, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123312, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128259', 4128259, '-97.276253', '14.631890', '-215.328506', 2260, 0, 0, 0, 1, 6, 0, 0, 1999, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123046, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128260', 4128260, '-75.621529', '14.631890', '-214.231506', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128261', 4128261, '-120.924698', '14.520920', '-211.301697', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128262', 4128262, '-73.457458', '14.731040', '-236.287506', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128263', 4128263, '-89.280579', '15.629060', '-251.062103', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128264', 4128264, '-112.932098', '15.533810', '-246.046600', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128265', 4128265, '-121.350601', '14.949070', '-239.633499', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128269', 4128269, '-1.754883', '15.457340', '-292.500214', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142358, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(306, 'e0061', 'bnpc4128270', 4128270, '-5.172852', '15.518430', '-288.410797', 169, 0, 0, 0, 0, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142092, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4128271', 4128271, '-26.595400', '16.964270', '-310.556000', 169, 0, 0, 0, 1, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141820, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4128272', 4128272, '-6.968165', '15.539780', '-293.998108', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141542, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4128273', 4128273, '-3.867146', '14.547090', '-326.988495', 169, 0, 0, 0, 0, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141276, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(306, 'e0061', 'bnpc4128274', 4128274, '-1.742153', '14.339200', '-330.423615', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140998, 1, 0, 0, 0, 0, 30060, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(306, 'e0061', 'bnpc4128275', 4128275, '-16.894220', '15.891530', '-344.307587', 169, 0, 0, 0, 1, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140732, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4128276', 4128276, '-36.352852', '15.737740', '-281.239685', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140454, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4128285', 4128285, '86.811409', '3.880296', '-641.041382', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140194, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(306, 'e0061', 'bnpc4129531', 4129531, '154.758194', '4.167945', '-538.420471', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139922, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(306, 'e0061', 'bnpc4129542', 4129542, '86.147247', '2.628398', '-610.838013', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139656, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4130363', 4130363, '99.626099', '3.646851', '-655.359680', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4130365', 4130365, '137.834702', '3.433289', '-594.293091', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139112, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4130366', 4130366, '148.899902', '5.148987', '-530.581482', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138840, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4130369', 4130369, '124.284698', '2.822876', '-604.577820', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138562, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(306, 'e0061', 'bnpc4130372', 4130372, '124.864502', '2.731323', '-606.225708', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138296, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(306, 'e0061', 'bnpc4130374', 4130374, '161.030197', '2.624552', '-609.139282', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138018, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4130377', 4130377, '161.330200', '3.682087', '-563.744324', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137746, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4130378', 4130378, '98.850403', '6.344423', '-544.399780', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137480, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(306, 'e0061', 'bnpc4130379', 4130379, '100.378799', '6.344423', '-543.894287', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137202, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(306, 'e0061', 'bnpc4130380', 4130380, '11.922580', '6.840849', '-592.719177', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136936, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(306, 'e0061', 'bnpc4130381', 4130381, '13.302400', '7.038995', '-591.807983', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136658, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(306, 'e0061', 'bnpc4130382', 4130382, '19.505831', '19.298901', '-624.247314', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136392, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(306, 'e0061', 'bnpc4130383', 4130383, '20.782539', '19.319000', '-625.061401', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136114, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(306, 'e0061', 'bnpc4130386', 4130386, '37.483280', '18.026581', '-609.961670', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135848, 1, 0, 0, 0, 20, 30072, 0, 0, 0), +(306, 'e0061', 'bnpc4130388', 4130388, '36.074890', '17.983601', '-608.959229', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135570, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(306, 'e0061', 'bnpc4130389', 4130389, '37.643921', '17.440981', '-596.398926', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135298, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4130390', 4130390, '24.155029', '17.990360', '-604.119995', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135032, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4130403', 4130403, '22.943991', '6.252352', '-608.046997', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134754, 1, 0, 0, 0, 20, 30083, 0, 0, 0), +(306, 'e0061', 'bnpc4130404', 4130404, '38.940979', '7.903199', '-595.086975', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134488, 1, 0, 0, 0, 20, 30077, 0, 0, 0), +(306, 'e0061', 'bnpc4130431', 4130431, '66.514038', '9.567322', '-576.257019', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134216, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4130432', 4130432, '18.704010', '7.066027', '-628.667725', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133938, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4130682', 4130682, '95.351791', '6.393626', '-542.884888', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133666, 1, 0, 0, 0, 20, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4130683', 4130683, '84.609253', '6.344424', '-545.683472', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133400, 1, 0, 0, 0, 20, 30077, 0, 0, 0), +(306, 'e0061', 'bnpc4130705', 4130705, '92.140930', '6.705567', '-559.693420', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133128, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4130708', 4130708, '98.243317', '6.344424', '-537.346680', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132850, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4130800', 4130800, '-385.468414', '13.547760', '-376.772614', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4130805', 4130805, '-326.314209', '15.945620', '-388.265808', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4130806', 4130806, '-305.992188', '11.810610', '-274.036194', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4130807', 4130807, '-231.864395', '4.434839', '-243.585495', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4130808', 4130808, '-229.445007', '4.279073', '-242.303406', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4130809', 4130809, '-189.227203', '19.363649', '-294.819611', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4130811', 4130811, '-71.915771', '15.823550', '-267.627991', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4130813', 4130813, '-70.176270', '15.579410', '-265.919006', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4130814', 4130814, '-119.981796', '19.729919', '-275.562714', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4130819', 4130819, '-21.895340', '6.009452', '-485.204193', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4130821', 4130821, '-26.265631', '3.170915', '-553.012085', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4130827', 4130827, '-105.577202', '20.767460', '-487.358002', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4130829', 4130829, '-155.776306', '20.648140', '-534.493225', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4130832', 4130832, '-62.007500', '3.030127', '-631.860474', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4130836', 4130836, '-61.692261', '4.837097', '-580.163330', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4130839', 4130839, '-91.172493', '13.691580', '-698.557617', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4130842', 4130842, '-16.285299', '3.398638', '-675.862915', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4131461', 4131461, '82.139282', '2.612924', '-669.048584', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4131466', 4131466, '80.602791', '2.681827', '-667.547119', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4131467', 4131467, '142.968597', '2.741290', '-677.939270', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4131470', 4131470, '166.607895', '8.180286', '-517.830872', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4131473', 4131473, '97.571892', '10.129180', '-455.764313', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4131477', 4131477, '48.494888', '6.708367', '-437.703308', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4131480', 4131480, '12.300930', '7.902957', '-513.924316', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4131487', 4131487, '-19.243019', '5.989767', '-481.780304', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4131489', 4131489, '45.965000', '4.000000', '-353.260895', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4131491', 4131491, '44.038780', '4.000000', '-355.090515', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4131492', 4131492, '-277.563599', '21.317619', '-408.466705', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4131494', 4131494, '-220.691895', '23.733870', '-445.561493', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4131495', 4131495, '-203.367996', '20.050930', '-538.838074', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132134', 4132134, '-23.739849', '6.019080', '-587.944885', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124382, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132161', 4132161, '-219.349106', '4.013124', '-175.605194', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132178', 4132178, '-223.713196', '3.981025', '-172.004196', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132179', 4132179, '-217.822601', '5.111694', '-152.941193', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132181', 4132181, '-255.092102', '4.214314', '-101.690002', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132182', 4132182, '-260.379913', '3.866467', '-142.158005', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120264, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132184', 4132184, '-284.843506', '4.387352', '-61.849739', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119992, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132186', 4132186, '-281.833313', '4.514743', '-60.248520', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132187', 4132187, '-330.772186', '4.539914', '-70.267380', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132191', 4132191, '-395.325806', '4.134359', '-44.501831', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132194', 4132194, '-412.872314', '3.503397', '-46.007912', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132197', 4132197, '-392.828613', '4.906980', '-40.147282', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132355', 4132355, '-121.233002', '7.370056', '452.140015', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90682, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132356', 4132356, '-38.284969', '7.583679', '405.569489', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118360, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132357', 4132357, '-30.167110', '8.163513', '413.107391', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118088, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132358', 4132358, '-78.294067', '8.377136', '475.181000', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90410, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132359', 4132359, '-112.962601', '7.400574', '493.125702', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90138, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132360', 4132360, '-118.791496', '6.423950', '489.219513', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89866, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132361', 4132361, '-4.867676', '10.116700', '466.422485', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117816, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132362', 4132362, '74.448730', '8.224609', '416.708588', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117544, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132363', 4132363, '-96.391296', '12.802250', '545.708374', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117272, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132364', 4132364, '-162.951096', '7.675232', '421.805206', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89594, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132367', 4132367, '-195.513901', '8.987488', '460.166290', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89322, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4132371', 4132371, '-247.455597', '14.572330', '601.159729', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132373', 4132373, '-265.674896', '14.389220', '594.628723', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132374', 4132374, '-409.506897', '2.863013', '643.319275', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132375', 4132375, '-373.173615', '1.482062', '830.041687', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132376', 4132376, '-303.572998', '0.554237', '737.432800', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132377', 4132377, '-285.938812', '8.895996', '674.952271', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115664, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132378', 4132378, '-321.243011', '0.748059', '738.623108', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132379', 4132379, '-228.992203', '-0.198364', '779.568115', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132381', 4132381, '-214.807693', '1.408311', '692.128296', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132385', 4132385, '30.807980', '25.375731', '552.178101', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114576, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132386', 4132386, '86.625488', '18.020809', '513.389587', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114304, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132387', 4132387, '152.666504', '8.346619', '585.931030', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132389', 4132389, '95.506104', '14.938600', '536.278198', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132390', 4132390, '-41.311451', '8.914728', '618.996887', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132391', 4132391, '55.148140', '12.639380', '622.588928', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132394', 4132394, '99.351440', '5.569519', '656.366699', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132395', 4132395, '49.166569', '12.003170', '629.394592', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132398', 4132398, '-155.296402', '-0.249691', '684.087891', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112406, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132402', 4132402, '-128.552399', '-6.248472', '698.360413', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132403', 4132403, '-82.598297', '-7.092235', '672.947815', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132404', 4132404, '-47.857578', '-2.212809', '690.802612', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132405', 4132405, '-43.152802', '-0.921682', '679.936829', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132406', 4132406, '-28.558571', '-0.125700', '752.652527', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132407', 4132407, '-54.816002', '-0.469275', '771.766785', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132408', 4132408, '-157.322098', '-1.367114', '781.628418', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132409', 4132409, '-162.195999', '-0.433001', '772.940186', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132410', 4132410, '-153.362198', '0.387354', '735.776123', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132411', 4132411, '-99.790901', '-2.270120', '789.114685', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132415', 4132415, '-174.253799', '4.062513', '619.920715', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109408, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4132416', 4132416, '103.926498', '3.903357', '915.233887', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4133094', 4133094, '136.949707', '3.216623', '756.322510', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4133095', 4133095, '256.006012', '6.944463', '820.505676', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108604, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4133096', 4133096, '200.758102', '5.104731', '868.748230', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4133097', 4133097, '152.132797', '4.348816', '821.800720', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108060, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4133098', 4133098, '194.324295', '4.776027', '863.148987', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107788, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4133099', 4133099, '229.417892', '4.637394', '902.513123', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107516, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4133100', 4133100, '83.255379', '4.406397', '848.491577', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107244, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4133102', 4133102, '-428.485687', '5.673192', '569.950806', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106978, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4133105', 4133105, '-431.695404', '7.408978', '526.095520', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4133106', 4133106, '-391.061707', '7.983613', '532.203613', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106434, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4133107', 4133107, '-311.320892', '6.989801', '543.801514', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106162, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4133108', 4133108, '-385.831696', '6.261216', '581.952576', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105890, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4133109', 4133109, '-404.812103', '8.978989', '481.090607', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105618, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4133111', 4133111, '-435.612488', '7.492519', '530.732178', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4133112', 4133112, '-368.011810', '7.345028', '545.098206', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105074, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4133142', 4133142, '2.160542', '13.238140', '867.918884', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133143', 4133143, '-9.752866', '13.238140', '862.073975', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104452, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133146', 4133146, '-38.601059', '-3.610238', '870.833984', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104180, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133147', 4133147, '3.913166', '5.198262', '844.633179', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133149', 4133149, '-23.697269', '-3.494385', '830.106018', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103636, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133150', 4133150, '-47.257198', '-4.837158', '821.164185', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133152', 4133152, '-99.204224', '-4.564651', '854.179871', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103092, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133153', 4133153, '-91.265266', '-5.356507', '842.750183', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133155', 4133155, '-104.580101', '-4.512669', '850.706116', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102542, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133160', 4133160, '-40.085510', '-3.585876', '880.033630', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102270, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133166', 4133166, '23.838100', '-0.302399', '832.912781', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133167', 4133167, '31.011000', '5.208305', '877.738525', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101732, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133171', 4133171, '23.808920', '0.563182', '709.098083', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101520, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133175', 4133175, '-208.948196', '-2.203250', '889.001587', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101272, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133854', 4133854, '-169.319504', '-3.498206', '849.864197', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101000, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133856', 4133856, '-294.270294', '5.081238', '808.072021', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100728, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133857', 4133857, '-252.533798', '3.371831', '695.150513', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100456, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133858', 4133858, '-360.768585', '11.544860', '664.182312', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100184, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133859', 4133859, '-93.662338', '7.398253', '582.921509', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99912, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133860', 4133860, '-173.964798', '7.509760', '511.382202', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133861', 4133861, '-63.357861', '7.614773', '373.184204', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99368, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133862', 4133862, '30.766090', '9.412603', '441.489288', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133863', 4133863, '-36.250969', '13.359000', '500.993500', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133864', 4133864, '127.540901', '8.141046', '481.803406', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133865', 4133865, '80.714157', '14.492840', '579.852722', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133866', 4133866, '-16.843950', '17.676241', '580.152710', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133867', 4133867, '24.143961', '2.411896', '671.088074', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133868', 4133868, '140.561096', '7.403133', '627.360474', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133869', 4133869, '96.573219', '4.412809', '794.674683', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133870', 4133870, '197.362503', '4.724640', '803.828918', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133872', 4133872, '130.937607', '8.480643', '895.933289', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133874', 4133874, '-1.962330', '-3.925701', '819.197571', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133877', 4133877, '-40.858768', '-4.353204', '847.265625', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4133878', 4133878, '-102.367302', '-5.084877', '872.023987', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4134559', 4134559, '-383.817688', '-1.011531', '901.672424', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4134560', 4134560, '-288.511597', '10.613900', '859.882324', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4134561', 4134561, '-351.064606', '6.710670', '883.250427', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4134562', 4134562, '200.244095', '10.299800', '649.805420', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92580, 1, 0, 0, 0, 24, 30058, 0, 0, 0), +(306, 'e0061', 'bnpc4134563', 4134563, '226.015793', '8.615845', '608.168701', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94750, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4134564', 4134564, '183.543503', '9.768476', '646.637512', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94400, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4135246', 4135246, '243.579697', '8.834900', '694.209229', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92308, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(306, 'e0061', 'bnpc4135251', 4135251, '295.658600', '8.371674', '624.363525', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94128, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4135252', 4135252, '224.383896', '9.530697', '660.020325', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93934, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4135254', 4135254, '219.592499', '8.926453', '678.248291', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91764, 1, 0, 0, 0, 24, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4135932', 4135932, '214.160294', '8.957031', '677.332581', 168, 0, 0, 0, 0, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93662, 1, 0, 0, 0, 24, 30060, 0, 0, 0), +(306, 'e0061', 'bnpc4135934', 4135934, '323.184814', '6.857816', '665.903687', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93312, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4135935', 4135935, '329.342285', '7.113992', '659.138672', 166, 0, 0, 0, 1, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92036, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4135936', 4135936, '289.562012', '7.415476', '729.328918', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93040, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4135937', 4135937, '238.798294', '8.794422', '722.661011', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92846, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4136006', 4136006, '-7.705540', '1.187112', '-24.901859', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4136008', 4136008, '-62.727612', '-2.486439', '-1.833968', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4136009', 4136009, '-95.048462', '-2.365173', '28.824221', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4136012', 4136012, '-46.066471', '8.494778', '123.064003', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4136033', 4136033, '-271.290192', '10.421880', '211.047501', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4136034', 4136034, '-264.806305', '7.399314', '162.775604', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4136037', 4136037, '-177.294601', '7.125916', '20.614929', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4136039', 4136039, '43.869629', '35.416142', '165.728104', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4136040', 4136040, '-23.361570', '40.512569', '240.161697', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4136226', 4136226, '-131.853699', '13.179720', '86.700623', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4137046', 4137046, '52.658810', '2.883911', '-257.434998', 740, 0, 0, 0, 0, 6, 0, 0, 253, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68890, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(306, 'e0061', 'bnpc4137048', 4137048, '55.832760', '2.914429', '-254.505203', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66992, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4137050', 4137050, '79.179077', '3.768982', '-271.045990', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71054, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4137065', 4137065, '21.736320', '5.244883', '-278.538391', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70782, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4137066', 4137066, '57.419899', '4.007567', '-299.611694', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66176, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4137892', 4137892, '-39.719238', '-0.900330', '-152.208694', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71326, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4137893', 4137893, '-91.355766', '-1.724304', '-58.945621', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68074, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4137894', 4137894, '-71.905777', '-1.906798', '-74.343948', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66448, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4137912', 4137912, '-174.456406', '39.993900', '160.387604', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72414, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4137914', 4137914, '-174.029205', '39.993900', '155.352097', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55834, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4137915', 4137915, '-169.848206', '39.993900', '158.342804', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65088, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4137927', 4137927, '-140.215103', '18.539671', '118.211700', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67264, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(306, 'e0061', 'bnpc4137928', 4137928, '-103.074699', '27.908689', '120.592003', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70516, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4137929', 4137929, '-135.423798', '37.125118', '176.409500', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72686, 2, 0, 0, 0, 42, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4137937', 4137937, '-95.628304', '45.792240', '195.269699', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56106, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(306, 'e0061', 'bnpc4137938', 4137938, '-61.905880', '44.937740', '212.664902', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65632, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(306, 'e0061', 'bnpc4137941', 4137941, '-88.853271', '43.381351', '152.910599', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65904, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(306, 'e0061', 'bnpc4137947', 4137947, '-24.093990', '38.986820', '206.042603', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55018, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4137948', 4137948, '-44.113831', '43.259281', '222.186493', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71598, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4137953', 4137953, '-163.534897', '40.000000', '151.507095', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55290, 2, 0, 0, 0, 42, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4137955', 4137955, '24.765381', '2.761841', '-0.717224', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66720, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(306, 'e0061', 'bnpc4137956', 4137956, '-79.850456', '45.792240', '193.377594', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71870, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4137966', 4137966, '-42.954159', '8.255066', '51.499149', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70244, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4137967', 4137967, '-112.382797', '12.191960', '75.883057', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68618, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4137979', 4137979, '75.730469', '25.253660', '204.974396', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55562, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4137980', 4137980, '111.253502', '13.778870', '152.666504', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72142, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4137982', 4137982, '124.528801', '13.931460', '143.175400', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65360, 2, 0, 0, 0, 0, 30058, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(306, 'e0061', 'bnpc4137991', 4137991, '112.391602', '9.231154', '192.303696', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 49, 0, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 54734, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4137993', 4137993, '111.772301', '8.529010', '204.422699', 741, 0, 0, 0, 1, 6, 0, 0, 2296, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69700, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4138003', 4138003, '145.462601', '13.997980', '239.934799', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68346, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4138054', 4138054, '244.128998', '7.980469', '-24.460270', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40838, 2, 0, 0, 0, 44, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4138055', 4138055, '208.087296', '7.980469', '104.387001', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41110, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4138056', 4138056, '164.005997', '7.818353', '-31.478350', 739, 0, 0, 0, 1, 6, 0, 0, 1837, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40572, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4138061', 4138061, '345.326508', '8.771392', '-44.180370', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 48, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 41914, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4138062', 4138062, '273.090698', '11.734130', '-9.628479', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42464, 2, 0, 0, 0, 44, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4138065', 4138065, '103.105103', '15.030030', '20.462339', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 48, 0, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 41642, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4138066', 4138066, '76.493408', '12.191390', '20.402031', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42192, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4138067', 4138067, '117.584900', '15.938490', '11.404420', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41382, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4138716', 4138716, '176.348495', '13.992490', '240.985703', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54462, 2, 0, 0, 0, 35, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4138717', 4138717, '158.251205', '13.992490', '254.322006', 741, 0, 0, 0, 1, 6, 0, 0, 2296, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69428, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4138718', 4138718, '174.425797', '13.992490', '235.339798', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67802, 2, 0, 0, 0, 35, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4138722', 4138722, '129.299393', '7.759512', '330.730286', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69972, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4138723', 4138723, '127.946899', '7.071052', '376.910889', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67530, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4138736', 4138736, '45.873520', '23.511459', '-135.133301', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85730, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4138737', 4138737, '34.941601', '23.511471', '-143.619507', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85464, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4140356', 4140356, '38.925659', '23.483580', '-138.689301', 369, 0, 0, 0, 0, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85192, 1, 0, 0, 0, 32, 30073, 0, 0, 0), +(306, 'e0061', 'bnpc4140357', 4140357, '40.383900', '23.511459', '-138.534897', 367, 0, 0, 0, 0, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84914, 1, 0, 0, 0, 32, 30079, 0, 0, 0), +(306, 'e0061', 'bnpc4140358', 4140358, '42.540970', '17.713570', '-101.085297', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84642, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4140359', 4140359, '45.869240', '22.788361', '-122.945396', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84376, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4140360', 4140360, '-3.844561', '8.435183', '-93.056000', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84098, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4140361', 4140361, '-11.875860', '6.747277', '-75.913834', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83832, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(306, 'e0061', 'bnpc4140362', 4140362, '-6.949590', '8.713659', '-105.002502', 367, 0, 0, 0, 0, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83554, 1, 0, 0, 0, 32, 30082, 0, 0, 0), +(306, 'e0061', 'bnpc4140363', 4140363, '-8.319045', '8.596273', '-104.796700', 369, 0, 0, 0, 0, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83288, 1, 0, 0, 0, 32, 30079, 0, 0, 0), +(306, 'e0061', 'bnpc4140373', 4140373, '62.782619', '3.445141', '-267.002686', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82980, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140376', 4140376, '-24.128490', '-0.222955', '-159.058701', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82708, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140377', 4140377, '-83.108093', '-14.744680', '-157.238297', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82436, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140379', 4140379, '-97.737221', '-14.744680', '-145.298904', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140380', 4140380, '-94.201157', '-14.744680', '-142.907806', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81892, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140381', 4140381, '-95.134377', '-14.397570', '-169.786697', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81620, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140383', 4140383, '-53.365379', '-16.085800', '-169.063507', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81348, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140384', 4140384, '-62.683842', '-1.205086', '-107.887497', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81076, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140386', 4140386, '-131.578598', '1.541138', '-134.599899', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80804, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140387', 4140387, '-84.214539', '-1.937927', '-49.942810', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80532, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140388', 4140388, '-95.933533', '-0.900330', '-15.945740', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80260, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140392', 4140392, '-94.041443', '-0.961365', '-14.877620', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79988, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140393', 4140393, '-43.289860', '-1.571716', '1.235901', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140394', 4140394, '-14.218010', '4.090468', '36.143909', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140395', 4140395, '-17.297621', '4.967797', '39.749630', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140398', 4140398, '-101.304703', '12.741210', '80.552368', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140400', 4140400, '-144.371704', '-1.052405', '41.807720', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140401', 4140401, '-107.255699', '28.030760', '124.498299', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140402', 4140402, '-52.008862', '11.528760', '192.386597', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140404', 4140404, '-283.105499', '9.536800', '201.528900', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140405', 4140405, '-118.150597', '4.442561', '248.788605', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140406', 4140406, '-114.824203', '4.493244', '246.347107', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140407', 4140407, '-183.400894', '40.000000', '157.241699', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140408', 4140408, '-169.404205', '40.000000', '143.694000', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140409', 4140409, '-126.916702', '37.668209', '186.635406', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140410', 4140410, '-83.693520', '45.889679', '179.053299', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140411', 4140411, '-85.551117', '45.811230', '209.439102', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140412', 4140412, '20.889589', '36.758911', '209.735199', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140413', 4140413, '112.923897', '13.990590', '141.405304', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140414', 4140414, '160.982407', '13.997970', '233.444595', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140416', 4140416, '146.294601', '13.997970', '244.723495', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140417', 4140417, '124.652702', '8.457688', '313.738892', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140419', 4140419, '139.964203', '7.391594', '192.456802', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140420', 4140420, '224.634705', '8.093283', '86.476837', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140421', 4140421, '253.877808', '8.000000', '-33.567520', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140422', 4140422, '295.798798', '8.000000', '-26.774521', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140423', 4140423, '297.220490', '8.000000', '-29.494390', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4140427', 4140427, '117.781403', '9.346180', '-7.032808', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72916, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4142005', 4142005, '-268.913208', '4.851185', '-90.289322', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4142007', 4142007, '-359.236389', '4.669468', '-59.445290', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4142009', 4142009, '-420.227386', '6.206403', '-20.966650', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4142018', 4142018, '-42.274540', '10.032320', '171.660904', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69162, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4142028', 4142028, '-93.827759', '45.792240', '199.145401', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64816, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4313527', 4313527, '313.771210', '7.980469', '-31.998230', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51244, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(306, 'e0061', 'bnpc4313538', 4313538, '287.709015', '8.000000', '-40.641960', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50972, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(306, 'e0061', 'bnpc4313539', 4313539, '417.063385', '17.715700', '-63.623531', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50688, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4313540', 4313540, '355.620087', '9.881611', '-35.813759', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50422, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4313547', 4313547, '445.548096', '16.678040', '-115.800697', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50156, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(306, 'e0061', 'bnpc4313549', 4313549, '409.744812', '12.774850', '-100.924301', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49812, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4313550', 4313550, '552.483398', '7.583679', '-164.965302', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 49594, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4313551', 4313551, '481.528900', '7.614197', '-157.915604', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49328, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(306, 'e0061', 'bnpc4313552', 4313552, '484.977386', '7.614197', '-157.701996', 740, 0, 0, 0, 0, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49062, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(306, 'e0061', 'bnpc4313556', 4313556, '509.282410', '7.599621', '-134.754105', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48724, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4313557', 4313557, '519.299988', '7.581244', '-127.391800', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48452, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4313560', 4313560, '533.592712', '7.583679', '-79.881042', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47146, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4313561', 4313561, '549.797729', '7.583679', '-92.454468', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48240, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4313562', 4313562, '534.650330', '7.599616', '-75.784973', 740, 0, 0, 0, 0, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47974, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4313563', 4313563, '569.926575', '7.599619', '-77.731194', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47708, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(306, 'e0061', 'bnpc4313564', 4313564, '549.767212', '7.599621', '-67.267418', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 47436, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(306, 'e0061', 'bnpc4313565', 4313565, '442.353912', '18.401279', '-84.513977', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46820, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(306, 'e0061', 'bnpc4313572', 4313572, '631.942383', '7.123771', '-69.111237', 742, 0, 0, 0, 1, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46602, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4329911', 4329911, '-253.803406', '23.269960', '-431.265686', 2188, 0, 0, 0, 6, 6, 0, 0, 1993, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123578, 4, 1, 0, 0, 0, 0, 4329909, 0, 0), +(306, 'e0061', 'bnpc4333133', 4333133, '-201.984695', '24.429350', '-469.400787', 2188, 0, 0, 0, 6, 6, 0, 0, 1993, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122442, 4, 1, 0, 0, 0, 0, 4329909, 0, 0), +(306, 'e0061', 'bnpc4333143', 4333143, '-91.031189', '14.631890', '-220.647095', 2260, 0, 0, 0, 1, 6, 0, 0, 1999, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122182, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4333144', 4333144, '-95.213539', '14.640040', '-232.687607', 2259, 0, 0, 0, 1, 6, 0, 0, 1998, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121904, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4515628', 4515628, '230.071304', '10.431990', '28.589081', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45208, 2, 0, 0, 0, 0, 0, 4515627, 0, 0), +(306, 'e0061', 'bnpc4515630', 4515630, '306.129913', '8.000000', '-35.433121', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44936, 2, 0, 0, 0, 0, 0, 4515617, 0, 0), +(306, 'e0061', 'bnpc4515631', 4515631, '409.323212', '17.164120', '-66.182114', 2457, 0, 0, 0, 2, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44664, 2, 0, 0, 0, 0, 0, 4515622, 0, 0), +(306, 'e0061', 'bnpc4515632', 4515632, '450.431000', '18.142941', '-98.527527', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44392, 2, 0, 0, 0, 0, 0, 4515619, 0, 0), +(306, 'e0061', 'bnpc4515633', 4515633, '528.573975', '7.599619', '-123.610298', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44120, 2, 0, 0, 0, 0, 0, 4515626, 0, 0), +(306, 'e0061', 'bnpc4522053', 4522053, '-108.508598', '-1.658285', '50.827759', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4522057', 4522057, '-20.309811', '4.196167', '-48.355900', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 2, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64278, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4522061', 4522061, '-208.789200', '7.827881', '41.184078', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 3, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64006, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4522063', 4522063, '-277.088593', '16.372860', '105.149902', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 4, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63734, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4522065', 4522065, '-233.600403', '7.156433', '195.910507', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 5, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63462, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4522066', 4522066, '102.342300', '15.152160', '25.375731', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 39762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4522067', 4522067, '-24.155090', '7.522644', '120.195297', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4522069', 4522069, '-114.458000', '7.766785', '222.339096', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4522077', 4522077, '-43.839230', '7.949890', '350.362305', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4522101', 4522101, '108.016403', '9.690581', '194.451294', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4522396', 4522396, '-21.478930', '2.767368', '-38.678539', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62078, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4522398', 4522398, '-207.376999', '7.622232', '46.231140', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 3, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61824, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(306, 'e0061', 'bnpc4522399', 4522399, '-234.055893', '7.389282', '200.963898', 742, 0, 0, 0, 0, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 5, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61534, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4522406', 4522406, '-105.390503', '-1.773797', '46.289669', 742, 0, 0, 0, 0, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61262, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4522407', 4522407, '-271.650208', '14.867290', '104.792099', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 4, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61008, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(306, 'e0061', 'bnpc4522411', 4522411, '-100.910103', '-1.501870', '50.329479', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60736, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4522416', 4522416, '-109.675301', '7.278503', '224.872192', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 60452, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4522419', 4522419, '-28.614960', '7.609998', '118.196198', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 60180, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4522420', 4522420, '-39.757469', '7.899223', '353.966003', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 59908, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(306, 'e0061', 'bnpc4522421', 4522421, '-27.695190', '7.583679', '129.961105', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59642, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4522422', 4522422, '-117.326698', '6.179810', '229.419296', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59370, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4522424', 4522424, '-52.859360', '7.196684', '358.597412', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59098, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4522427', 4522427, '554.650085', '7.583679', '-67.246582', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43854, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4522544', 4522544, '557.138977', '7.599622', '-162.231705', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43582, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4522545', 4522545, '413.717804', '17.929260', '-60.318909', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43310, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4522546', 4522546, '349.712006', '9.286700', '-45.325851', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43038, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4522547', 4522547, '291.672913', '8.000000', '-42.948238', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 42766, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4522549', 4522549, '227.166595', '8.620508', '78.546181', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40288, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4522550', 4522550, '408.039398', '12.424580', '-131.584198', 742, 0, 0, 0, 1, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40010, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4524149', 4524149, '-46.524780', '-1.266479', '10.910160', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58826, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4524160', 4524160, '-52.610519', '-1.409638', '13.605740', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58548, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4524163', 4524163, '14.724910', '1.785278', '16.159300', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58276, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4524164', 4524164, '20.839840', '2.344519', '13.486760', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58010, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4524175', 4524175, '-136.317200', '10.889600', '-70.746132', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57738, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4524176', 4524176, '-142.403000', '11.520290', '-68.050552', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57460, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4524179', 4524179, '-124.245399', '6.484659', '-98.137253', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57200, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4524181', 4524181, '-155.565796', '6.332458', '-43.106812', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56910, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4524206', 4524206, '-163.683502', '7.064880', '7.705750', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56656, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4524215', 4524215, '-100.204201', '12.076750', '75.251801', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56366, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4553442', 4553442, '-200.593903', '7.600075', '38.475250', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54190, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4553443', 4553443, '-17.239441', '3.551795', '-44.301022', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 2, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 53936, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(306, 'e0061', 'bnpc4553444', 4553444, '-243.102203', '7.628644', '196.886398', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53664, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4553445', 4553445, '-277.132202', '14.459210', '114.208504', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53374, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4553446', 4553446, '-118.333702', '6.485046', '-90.318237', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53102, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4553447', 4553447, '-143.133606', '6.438087', '-36.288349', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52848, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4553448', 4553448, '-160.387604', '7.156433', '27.054199', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52576, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4553449', 4553449, '-63.000992', '-1.730121', '-63.235321', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52286, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(306, 'e0061', 'bnpc4577401', 4577401, '-110.148399', '-0.815602', '-20.043240', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4621851', 4621851, '-468.283295', '-2.650424', '95.657677', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28328, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4621852', 4621852, '-103.113701', '45.811230', '205.494797', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28062, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(306, 'e0061', 'bnpc4695634', 4695634, '-218.433502', '5.298542', '95.696121', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3760882', 3760882, '7.760897', '64.944183', '95.225662', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760883', 3760883, '11.569650', '64.269142', '103.174004', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760884', 3760884, '27.212851', '64.259323', '68.436661', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121286, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760886', 3760886, '35.300129', '63.748798', '70.756027', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122102, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760887', 3760887, '29.623779', '63.785370', '72.434517', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122918, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760888', 3760888, '12.674300', '64.363640', '96.110687', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122646, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760889', 3760889, '37.375351', '64.107178', '66.758171', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122374, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760890', 3760890, '35.361160', '64.320633', '64.408279', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760896', 3760896, '20.935301', '61.990829', '147.102097', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760898', 3760898, '32.574959', '59.535831', '128.579605', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119382, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760901', 3760901, '3.688727', '65.262871', '139.257401', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119110, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760902', 3760902, '1.674536', '65.722069', '135.412201', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760911', 3760911, '66.135712', '56.046421', '111.429703', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760912', 3760912, '62.577202', '57.663799', '106.370598', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120470, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760913', 3760913, '64.103104', '57.114471', '107.652298', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760917', 3760917, '60.457890', '61.337429', '74.236450', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121830, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760922', 3760922, '96.288940', '49.550621', '73.985641', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126182, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760923', 3760923, '110.317703', '42.549389', '102.239700', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125366, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760925', 3760925, '121.477097', '40.913620', '141.046600', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125638, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760927', 3760927, '99.690933', '44.016190', '125.932701', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126998, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760933', 3760933, '86.244019', '47.554829', '160.082397', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126726, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760937', 3760937, '87.891998', '47.433571', '161.638794', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123190, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760948', 3760948, '68.406143', '53.661510', '183.326599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123462, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760950', 3760950, '62.399029', '56.000351', '191.517303', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125910, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760952', 3760952, '63.992779', '55.493610', '189.245102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124550, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760958', 3760958, '51.348160', '55.864281', '150.438599', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124278, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760961', 3760961, '56.546551', '56.041698', '186.103394', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125094, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3760965', 3760965, '53.117081', '55.406071', '151.622894', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124822, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761027', 3761027, '-7.343534', '67.714622', '93.888710', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153092, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761030', 3761030, '15.512480', '63.992210', '99.894920', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152820, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761031', 3761031, '78.979568', '53.555161', '86.569473', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124006, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761032', 3761032, '80.505470', '52.852570', '87.851227', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123734, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761033', 3761033, '31.698999', '64.077950', '68.192520', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152548, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761034', 3761034, '111.202797', '42.291870', '104.620102', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126454, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761035', 3761035, '112.698097', '41.971249', '105.901901', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127270, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761036', 3761036, '16.824760', '63.905472', '97.575546', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152276, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761039', 3761039, '11.941870', '64.628357', '91.990753', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152004, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761041', 3761041, '54.459400', '59.806961', '102.917297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151732, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761042', 3761042, '30.722420', '63.595020', '74.784416', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151460, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761044', 3761044, '19.068230', '62.294941', '149.492599', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151188, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761045', 3761045, '22.420271', '61.734470', '145.882996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150916, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761046', 3761046, '31.079571', '59.608490', '125.924500', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150644, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761048', 3761048, '66.227257', '56.978741', '104.868301', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150372, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761049', 3761049, '81.546333', '52.845501', '84.585800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150100, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761050', 3761050, '62.755970', '60.386440', '76.019211', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149828, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761051', 3761051, '109.737900', '42.563049', '105.962898', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149556, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761052', 3761052, '98.714363', '44.085449', '129.594803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149284, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761053', 3761053, '98.425201', '49.276859', '70.598137', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149012, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761054', 3761054, '99.981613', '48.315552', '73.649940', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148740, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761080', 3761080, '100.606499', '43.794998', '128.557205', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148468, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761081', 3761081, '89.814621', '46.770222', '157.976593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148196, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761084', 3761084, '51.818901', '55.815891', '145.346603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147924, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761085', 3761085, '70.215584', '52.939968', '181.270401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147652, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761086', 3761086, '60.924660', '55.885761', '189.770996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147380, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761088', 3761088, '48.845680', '56.451950', '150.896393', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147108, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761089', 3761089, '50.420841', '56.054260', '153.244995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146836, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761096', 3761096, '199.256302', '27.059620', '91.574173', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146570, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761097', 3761097, '66.501930', '57.215820', '101.480797', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761099', 3761099, '111.690498', '36.582958', '4.053726', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146298, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761100', 3761100, '67.783684', '56.291199', '107.065697', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761102', 3761102, '156.633804', '34.653191', '70.542397', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146026, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761103', 3761103, '23.832260', '61.353020', '150.988007', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761104', 3761104, '24.717279', '61.225311', '149.156906', 347, 0, 0, 0, 1, 6, 0, 0, 417, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761105', 3761105, '167.377899', '33.443420', '75.522820', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145754, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761108', 3761108, '124.488503', '36.345482', '15.758260', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145482, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761109', 3761109, '159.302094', '33.928551', '78.777786', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145210, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761111', 3761111, '108.955002', '36.663021', '9.387772', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144938, 6, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(307, 'e0062', 'bnpc3761112', 3761112, '131.578506', '35.965469', '45.853310', 313, 0, 0, 0, 1, 6, 0, 0, 349, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144666, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761123', 3761123, '237.190399', '36.611149', '66.717194', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144400, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761124', 3761124, '242.137604', '44.361130', '44.958832', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144128, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761125', 3761125, '242.718903', '43.673290', '46.873840', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143856, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761128', 3761128, '187.436096', '42.116020', '51.900459', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143584, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761129', 3761129, '223.247696', '51.849850', '26.116220', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143312, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761130', 3761130, '223.430801', '52.761440', '22.759239', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143040, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761131', 3761131, '217.449295', '51.875561', '27.520050', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142768, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761134', 3761134, '223.010498', '31.021540', '165.483994', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142496, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761135', 3761135, '227.779602', '33.454979', '203.906296', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142224, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761136', 3761136, '242.318497', '38.158321', '234.873306', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141952, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761137', 3761137, '227.626999', '34.365898', '207.232697', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141680, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761139', 3761139, '245.897202', '37.488659', '235.919693', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141408, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761141', 3761141, '195.561203', '47.715080', '226.776001', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141136, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761142', 3761142, '197.033997', '48.159161', '228.423004', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761143', 3761143, '222.161804', '50.249969', '256.272888', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761145', 3761145, '180.566803', '43.422722', '197.741592', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761146', 3761146, '181.211105', '43.103500', '194.872894', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761147', 3761147, '150.769104', '55.568981', '248.645706', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761149', 3761149, '148.855896', '56.596169', '250.553299', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761150', 3761150, '152.127594', '64.016029', '312.689392', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761151', 3761151, '154.979797', '64.179688', '314.660492', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761152', 3761152, '153.705307', '64.400146', '315.376495', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761155', 3761155, '115.122803', '68.518044', '293.763489', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761164', 3761164, '69.781052', '51.086330', '157.761703', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761169', 3761169, '97.733994', '47.043510', '88.944794', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761303', 3761303, '204.358505', '46.098690', '45.780960', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761362', 3761362, '198.245804', '51.531582', '242.749405', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3761367', 3761367, '182.543594', '41.458710', '51.590698', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761369', 3761369, '186.119797', '42.655750', '49.950859', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761370', 3761370, '285.549408', '42.548729', '57.964470', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761371', 3761371, '285.078796', '44.421532', '49.076550', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761372', 3761372, '239.723694', '36.528450', '66.898483', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761373', 3761373, '148.845200', '38.711102', '41.285278', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761374', 3761374, '152.171600', '39.307671', '41.468391', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761375', 3761375, '182.186905', '54.291470', '262.783508', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761376', 3761376, '184.506195', '55.134689', '266.109985', 324, 0, 0, 0, 1, 6, 0, 0, 563, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761475', 3761475, '201.696899', '32.601101', '76.500427', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135684, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761552', 3761552, '150.981400', '38.858120', '42.405491', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135412, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761553', 3761553, '185.442902', '41.123051', '53.604858', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135140, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761554', 3761554, '206.775299', '43.330341', '53.446110', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134868, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761555', 3761555, '208.241592', '43.763321', '52.334370', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134596, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761556', 3761556, '239.497803', '36.005562', '68.131721', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134324, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761557', 3761557, '215.528305', '44.498230', '50.226871', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134052, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761572', 3761572, '223.339294', '51.412380', '27.733681', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133780, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761576', 3761576, '283.996399', '43.243752', '55.750099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133508, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761580', 3761580, '272.696899', '45.167171', '32.535080', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133236, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761585', 3761585, '215.465607', '53.837990', '20.867121', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132964, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761592', 3761592, '217.212097', '32.425369', '164.537994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132692, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761607', 3761607, '218.341293', '32.455891', '165.972305', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132420, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761622', 3761622, '202.532898', '37.857590', '176.104294', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132148, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761626', 3761626, '183.154007', '42.709949', '197.436401', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131876, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761716', 3761716, '184.920502', '44.981480', '218.420700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131604, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761718', 3761718, '224.420395', '35.250660', '205.197601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131332, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761720', 3761720, '242.515396', '37.441879', '232.829803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131060, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761721', 3761721, '215.690094', '51.411850', '255.712601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130788, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761722', 3761722, '217.734802', '50.606812', '253.454300', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130516, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761723', 3761723, '185.971100', '54.557800', '262.936096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130244, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761726', 3761726, '152.777603', '58.215248', '280.103607', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129972, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761727', 3761727, '152.238602', '58.132370', '277.662201', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129700, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761728', 3761728, '118.327202', '67.511993', '294.840210', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129428, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761730', 3761730, '114.320396', '68.359100', '296.500885', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129156, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3761731', 3761731, '153.412399', '63.654282', '311.208801', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128884, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766328', 3766328, '444.374390', '64.694489', '-36.484081', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766391', 3766391, '446.046112', '65.017601', '-33.594650', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766399', 3766399, '453.421814', '56.259960', '-0.534113', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766401', 3766401, '455.924286', '55.802189', '3.341679', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766402', 3766402, '448.874603', '55.222351', '4.837063', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766575', 3766575, '366.619385', '51.659290', '-12.188280', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766577', 3766577, '364.147400', '52.146080', '-17.895161', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766579', 3766579, '370.878113', '59.451641', '-59.303612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766580', 3766580, '368.924988', '58.367748', '-54.695389', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766581', 3766581, '373.350098', '58.395641', '-53.596741', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766584', 3766584, '363.439606', '63.704231', '-82.801590', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766586', 3766586, '341.616302', '51.478588', '-30.833561', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766588', 3766588, '305.806000', '47.806469', '0.503501', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766589', 3766589, '308.552612', '48.569420', '-3.769025', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766591', 3766591, '409.158112', '63.702721', '-82.786118', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766592', 3766592, '412.649689', '63.919991', '-86.564484', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766596', 3766596, '450.583588', '66.468239', '-76.957558', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766603', 3766603, '394.502594', '67.135857', '-121.089203', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766604', 3766604, '391.786499', '67.793007', '-123.530602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3766605', 3766605, '395.113007', '67.180733', '-122.828697', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767081', 3767081, '473.143494', '66.440041', '-148.859894', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767082', 3767082, '437.091309', '65.055496', '-127.757103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767083', 3767083, '438.506500', '65.198730', '-126.336800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767118', 3767118, '437.011108', '65.003197', '-124.078499', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767119', 3767119, '474.052002', '66.418793', '-147.307800', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767127', 3767127, '371.903290', '67.982323', '-110.760803', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3767131', 3767131, '460.464600', '68.698967', '-124.371498', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3767137', 3767137, '564.060181', '84.658661', '-310.397614', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3767139', 3767139, '425.864014', '78.873833', '-349.813110', 1447, 0, 0, 0, 1, 6, 0, 0, 354, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3767149', 3767149, '418.543213', '65.856056', '-158.386795', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767152', 3767152, '380.575195', '71.228844', '-138.534103', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767155', 3767155, '353.131409', '70.227692', '-126.119904', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767158', 3767158, '355.969604', '70.540512', '-125.082298', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767160', 3767160, '354.321594', '69.995934', '-123.739502', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767163', 3767163, '385.091888', '70.103569', '-139.968506', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767164', 3767164, '383.413391', '70.520859', '-137.771194', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767165', 3767165, '382.223206', '70.816437', '-140.151596', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767230', 3767230, '338.126892', '68.759033', '-132.386398', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767240', 3767240, '525.678589', '69.218857', '-235.317993', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91168, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767241', 3767241, '529.279724', '69.670998', '-238.980103', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90352, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767242', 3767242, '523.878113', '69.910103', '-240.231400', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90624, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767246', 3767246, '503.511597', '77.082458', '-297.441315', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767247', 3767247, '490.567688', '72.273407', '-273.391388', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767248', 3767248, '499.222992', '76.478897', '-297.574799', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767251', 3767251, '561.724976', '68.563721', '-232.711105', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90896, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767262', 3767262, '609.164307', '70.799339', '-269.442291', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767263', 3767263, '607.699524', '69.742554', '-262.681885', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767264', 3767264, '611.178528', '70.073822', '-266.496613', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767271', 3767271, '583.442871', '78.270691', '-293.369995', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767272', 3767272, '582.626099', '82.811012', '-321.008209', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767273', 3767273, '586.291077', '77.487671', '-291.515594', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767374', 3767374, '436.361908', '73.251167', '-304.983185', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767375', 3767375, '432.991608', '72.276894', '-303.043610', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767376', 3767376, '349.804901', '74.911560', '-321.936798', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767377', 3767377, '435.671997', '72.056473', '-300.979401', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104478, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767388', 3767388, '361.665588', '75.651962', '-325.562408', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767390', 3767390, '363.221985', '75.155243', '-322.388489', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767391', 3767391, '358.186493', '73.581299', '-315.714813', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767393', 3767393, '395.641113', '76.023048', '-328.902496', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767394', 3767394, '397.399597', '76.429916', '-332.825500', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767395', 3767395, '393.430298', '76.446228', '-331.738098', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767396', 3767396, '392.678711', '86.886810', '-395.321106', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767399', 3767399, '470.368805', '87.249977', '-348.957306', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767400', 3767400, '454.939209', '84.293327', '-350.549591', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767401', 3767401, '458.387787', '84.602448', '-346.643188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767402', 3767402, '428.051086', '76.420769', '-330.744385', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767425', 3767425, '422.176910', '67.247093', '-159.579803', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767426', 3767426, '420.543213', '66.332741', '-157.321503', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767435', 3767435, '384.954498', '71.312561', '-255.829102', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767436', 3767436, '381.795898', '71.738327', '-257.517487', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767437', 3767437, '387.359314', '69.869453', '-264.137299', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767445', 3767445, '628.911987', '66.716454', '-231.728607', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767446', 3767446, '630.792603', '66.280296', '-209.603195', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767447', 3767447, '629.602417', '66.422333', '-211.983597', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767448', 3767448, '627.954529', '66.392159', '-210.335602', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767449', 3767449, '632.471130', '66.334442', '-211.800507', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767450', 3767450, '630.285278', '66.806633', '-233.987000', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767455', 3767455, '662.184509', '66.885223', '-232.532303', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767456', 3767456, '663.832520', '66.880669', '-235.767197', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767457', 3767457, '660.994324', '67.126022', '-234.912704', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767458', 3767458, '679.883301', '64.783623', '-225.588394', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767462', 3767462, '683.051575', '64.449142', '-221.445694', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767463', 3767463, '686.133911', '64.440773', '-225.077301', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767464', 3767464, '682.532776', '64.535759', '-223.856598', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767465', 3767465, '680.213379', '64.599297', '-222.178101', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767466', 3767466, '644.667419', '61.202068', '-179.041107', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98228, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767467', 3767467, '646.345825', '61.561089', '-181.268906', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767468', 3767468, '625.297607', '63.148769', '-175.494003', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767469', 3767469, '624.534729', '62.919571', '-173.449295', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767472', 3767472, '612.920227', '62.437519', '-154.581299', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97140, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767473', 3767473, '618.413513', '60.995640', '-154.157501', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96868, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767474', 3767474, '611.729980', '62.836342', '-156.961700', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96596, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767475', 3767475, '610.081970', '62.919849', '-155.313705', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96324, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767480', 3767480, '599.736572', '66.081619', '-200.660995', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96052, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767481', 3767481, '603.400085', '66.248016', '-212.652893', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95780, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767482', 3767482, '600.591125', '66.117447', '-203.224594', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767487', 3767487, '582.119629', '63.525211', '-162.909500', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767488', 3767488, '583.554016', '63.640011', '-161.566696', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767504', 3767504, '384.336212', '81.769058', '-374.104706', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767505', 3767505, '386.960785', '82.047218', '-374.979614', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92250, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767508', 3767508, '420.230408', '83.041237', '-377.818695', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91978, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767509', 3767509, '416.202087', '83.456848', '-380.199188', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91706, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767510', 3767510, '414.218414', '82.361076', '-374.217590', 5, 0, 0, 0, 1, 6, 0, 0, 408, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91434, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767538', 3767538, '559.649475', '74.212418', '-273.297485', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90080, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767539', 3767539, '565.844971', '73.504051', '-271.077698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89808, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767541', 3767541, '530.575989', '78.841171', '-292.050598', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89536, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767542', 3767542, '536.018616', '73.912933', '-270.240601', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89264, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767543', 3767543, '527.257324', '78.277519', '-291.082397', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88992, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767550', 3767550, '559.405579', '68.352837', '-230.727402', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88720, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767551', 3767551, '504.920990', '71.617661', '-255.737900', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88448, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767552', 3767552, '562.426697', '74.626442', '-275.098114', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88176, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767553', 3767553, '515.106079', '86.958946', '-357.724792', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87886, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767554', 3767554, '555.815430', '86.288918', '-333.674286', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87614, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767555', 3767555, '550.172974', '86.038811', '-337.105713', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87342, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767556', 3767556, '556.703918', '86.005051', '-341.164612', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87070, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767558', 3767558, '595.652222', '100.886101', '-481.113007', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86798, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767559', 3767559, '565.758728', '90.501213', '-411.795288', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767560', 3767560, '593.128418', '99.817238', '-476.295013', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767561', 3767561, '597.171326', '86.616676', '-366.082886', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767562', 3767562, '592.898621', '86.573059', '-364.752991', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767565', 3767565, '659.080383', '68.157593', '-282.327087', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767566', 3767566, '655.601379', '67.872910', '-278.542786', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767568', 3767568, '696.297791', '66.817932', '-301.967896', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767583', 3767583, '629.275208', '76.769440', '-316.382690', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84622, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767584', 3767584, '635.718506', '76.129578', '-319.129303', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84350, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767675', 3767675, '637.937683', '75.470261', '-314.178314', 339, 0, 0, 0, 1, 6, 0, 0, 393, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84078, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767694', 3767694, '274.187408', '73.498833', '-235.511505', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767702', 3767702, '282.131287', '73.968918', '-250.520294', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767704', 3767704, '283.459686', '74.239098', '-252.146103', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767705', 3767705, '285.161987', '73.984657', '-268.017487', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767706', 3767706, '277.286194', '74.210907', '-280.408813', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767707', 3767707, '277.586212', '74.130417', '-281.519714', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767709', 3767709, '268.511505', '73.750023', '-310.081207', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767710', 3767710, '290.727997', '75.783447', '-320.191986', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767711', 3767711, '291.566193', '75.961906', '-321.088593', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767712', 3767712, '240.649994', '74.570793', '-328.847198', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767715', 3767715, '221.796799', '75.280907', '-305.122711', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767716', 3767716, '234.573196', '72.438171', '-271.531403', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767717', 3767717, '235.577301', '72.991150', '-274.815186', 38, 0, 0, 0, 1, 6, 0, 0, 364, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767721', 3767721, '341.847809', '47.013062', '1.602173', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80300, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767722', 3767722, '413.717804', '55.405399', '-18.570250', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80028, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767725', 3767725, '414.877411', '56.473511', '-20.889650', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79756, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767729', 3767729, '340.932404', '58.884521', '-68.986153', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 4, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767730', 3767730, '349.904510', '70.939087', '-141.039200', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767735', 3767735, '351.399994', '71.122192', '-139.177597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767772', 3767772, '385.992096', '79.489769', '-359.438690', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767779', 3767779, '406.035400', '88.015427', '-400.377411', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767782', 3767782, '403.608612', '88.645103', '-402.194885', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767814', 3767814, '635.174072', '71.616203', '-284.468597', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767845', 3767845, '633.182922', '72.289650', '-286.197998', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767846', 3767846, '635.372375', '67.114166', '-231.371002', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767853', 3767853, '622.306885', '64.499603', '-174.464905', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767854', 3767854, '645.827026', '60.818569', '-177.759293', 118, 0, 0, 0, 1, 6, 0, 0, 405, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767857', 3767857, '725.192871', '64.427238', '-240.193405', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76492, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(307, 'e0062', 'bnpc3767859', 3767859, '617.085510', '62.126339', '-147.285202', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767860', 3767860, '673.612427', '64.732903', '-189.639206', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767863', 3767863, '676.003723', '64.536713', '-188.308105', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767872', 3767872, '678.086914', '64.518532', '-207.618896', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767901', 3767901, '653.968079', '78.578423', '-360.327515', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767906', 3767906, '656.550293', '77.457336', '-356.077393', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767907', 3767907, '657.869080', '77.894173', '-358.050293', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3767910', 3767910, '590.645020', '90.549652', '-389.681702', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3768115', 3768115, '530.515381', '91.184883', '-383.319305', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3768118', 3768118, '533.323120', '90.657288', '-380.765015', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3768152', 3768152, '508.880707', '96.069290', '-437.340302', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71342, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(307, 'e0062', 'bnpc3768153', 3768153, '519.773071', '96.615059', '-445.083588', 752, 0, 0, 0, 0, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71608, 3, 0, 0, 0, 16, 30059, 0, 0, 0), +(307, 'e0062', 'bnpc3768154', 3768154, '523.339417', '94.818977', '-429.381287', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72962, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(307, 'e0062', 'bnpc3768156', 3768156, '535.457581', '96.545937', '-468.044800', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72690, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(307, 'e0062', 'bnpc3768157', 3768157, '520.360107', '95.886787', '-460.180389', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72424, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(307, 'e0062', 'bnpc3768158', 3768158, '535.493225', '94.402260', '-439.778015', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70526, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(307, 'e0062', 'bnpc3768159', 3768159, '502.875793', '97.415413', '-416.738495', 754, 0, 0, 0, 0, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73234, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(307, 'e0062', 'bnpc3768160', 3768160, '521.578979', '94.382271', '-413.852905', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72152, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(307, 'e0062', 'bnpc3768161', 3768161, '509.317200', '94.366043', '-398.691711', 751, 0, 0, 0, 1, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71070, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(307, 'e0062', 'bnpc3768165', 3768165, '517.667175', '95.947739', '-463.471588', 754, 0, 0, 0, 1, 6, 0, 0, 372, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73506, 3, 0, 0, 0, 0, 30063, 0, 0, 0), +(307, 'e0062', 'bnpc3768166', 3768166, '501.819092', '97.276329', '-413.591797', 751, 0, 0, 0, 0, 6, 0, 0, 378, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70798, 3, 0, 0, 0, 16, 30060, 0, 0, 0), +(307, 'e0062', 'bnpc3768167', 3768167, '534.916016', '94.227654', '-435.617798', 752, 0, 0, 0, 1, 6, 0, 0, 368, 0, '0.000000', 9, 0, 60, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71880, 3, 0, 0, 0, 16, 30063, 0, 0, 0), +(307, 'e0062', 'bnpc3873220', 3873220, '-19.011200', '59.577240', '478.601715', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68768, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873222', 3873222, '-57.635151', '54.398960', '509.264313', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68496, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873223', 3873223, '-72.043533', '60.186852', '494.941803', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68224, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873226', 3873226, '-82.569511', '59.009541', '500.667694', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67952, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873227', 3873227, '-85.215538', '58.176079', '495.797913', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67680, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873232', 3873232, '-26.285730', '45.126209', '554.549622', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67408, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873233', 3873233, '-80.450127', '53.830681', '543.885925', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67136, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873235', 3873235, '-77.768517', '54.979061', '539.636902', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66864, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873237', 3873237, '-49.665508', '40.839931', '590.425781', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66592, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873238', 3873238, '-51.547249', '40.978630', '596.975098', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66320, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873240', 3873240, '-56.989220', '40.385479', '595.949585', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66048, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873243', 3873243, '73.494881', '48.720230', '629.534424', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65776, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873244', 3873244, '83.244293', '50.021931', '641.594727', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65504, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873246', 3873246, '77.347931', '48.172680', '641.229797', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65232, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873247', 3873247, '77.649078', '56.774830', '716.941528', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64960, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873249', 3873249, '79.648613', '56.806110', '720.165710', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64688, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873250', 3873250, '52.669842', '55.384899', '724.728516', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873255', 3873255, '48.538898', '36.148571', '656.885620', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64144, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873256', 3873256, '46.513409', '36.839489', '684.859314', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63872, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873257', 3873257, '41.888302', '35.921108', '686.955078', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63600, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873265', 3873265, '34.495090', '45.667789', '819.153381', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63328, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873271', 3873271, '-18.570280', '43.203621', '763.671082', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63056, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873272', 3873272, '-24.521290', '43.172451', '761.992676', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62784, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873275', 3873275, '37.190269', '46.111851', '822.446777', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62512, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873324', 3873324, '79.270752', '49.720821', '871.732483', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62240, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873328', 3873328, '31.098160', '46.232330', '851.456421', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61968, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873329', 3873329, '-90.470787', '8.590782', '680.567627', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61702, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873330', 3873330, '-224.494995', '-0.300003', '686.536377', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61430, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873331', 3873331, '-215.466797', '-0.252817', '694.899719', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61158, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873332', 3873332, '-120.012199', '3.585823', '702.235413', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60886, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873333', 3873333, '-207.511307', '-0.292601', '666.813293', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60614, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873334', 3873334, '-171.158203', '-0.710317', '738.778076', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60342, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873335', 3873335, '-132.077698', '0.394896', '752.015930', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60070, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873336', 3873336, '-122.561096', '0.570598', '756.478577', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59798, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873337', 3873337, '-78.064957', '2.435715', '762.539001', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59526, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873339', 3873339, '-81.966408', '2.959849', '802.456604', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59254, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873340', 3873340, '-17.237820', '8.762830', '808.010925', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58982, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873343', 3873343, '91.020012', '21.945419', '806.005371', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58710, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873345', 3873345, '127.519600', '23.025820', '809.445313', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58438, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873348', 3873348, '121.338402', '24.555710', '817.927795', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58166, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873353', 3873353, '213.397400', '25.314671', '805.691528', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57894, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873359', 3873359, '80.472221', '24.632441', '756.982178', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57622, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873362', 3873362, '24.652531', '14.575950', '784.440430', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57350, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873363', 3873363, '139.838699', '21.711720', '778.939575', 326, 0, 0, 0, 1, 6, 0, 0, 561, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57078, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(307, 'e0062', 'bnpc3873367', 3873367, '251.139801', '6.797970', '788.702271', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873368', 3873368, '253.283096', '6.540766', '787.524292', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873369', 3873369, '254.565994', '6.283995', '780.385681', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873371', 3873371, '246.057800', '9.008336', '801.580994', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873374', 3873374, '248.002304', '6.721136', '783.831970', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873375', 3873375, '248.302399', '6.265314', '767.472473', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873376', 3873376, '246.801407', '6.267453', '768.374390', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873379', 3873379, '-3.098505', '41.687851', '623.973083', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54914, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873381', 3873381, '-0.691058', '42.488289', '627.270020', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873382', 3873382, '-6.383020', '41.661289', '631.828674', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873385', 3873385, '-12.702990', '41.812180', '707.756409', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873386', 3873386, '-10.462590', '41.960880', '705.075378', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873387', 3873387, '-52.108768', '38.325489', '665.766113', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873388', 3873388, '-55.987579', '36.343479', '670.810486', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873389', 3873389, '-59.405991', '38.476730', '658.650818', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53010, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873390', 3873390, '-59.105999', '36.026340', '668.374023', 205, 0, 0, 0, 1, 6, 0, 0, 409, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52738, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873396', 3873396, '-160.952896', '1.569027', '667.861206', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48398, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(307, 'e0062', 'bnpc3873398', 3873398, '-161.990494', '1.669328', '666.421692', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48126, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(307, 'e0062', 'bnpc3873399', 3873399, '-150.636902', '5.134464', '653.424011', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47854, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(307, 'e0062', 'bnpc3873401', 3873401, '-144.836700', '4.701064', '665.153870', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47582, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(307, 'e0062', 'bnpc3873402', 3873402, '-149.620605', '3.102985', '669.616089', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47310, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(307, 'e0062', 'bnpc3873403', 3873403, '-155.732605', '1.144920', '679.460327', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47038, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(307, 'e0062', 'bnpc3873404', 3873404, '-142.607895', '1.054965', '712.663025', 771, 0, 0, 0, 1, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46766, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(307, 'e0062', 'bnpc3873405', 3873405, '-148.567505', '0.750069', '714.199524', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46494, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(307, 'e0062', 'bnpc3873406', 3873406, '-149.139404', '0.759766', '712.362000', 771, 0, 0, 0, 0, 6, 0, 0, 350, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46222, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(307, 'e0062', 'bnpc3873420', 3873420, '-59.783230', '40.755260', '572.130127', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873421', 3873421, '-58.553791', '40.657639', '574.646973', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873422', 3873422, '-25.335461', '55.583641', '513.424194', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873425', 3873425, '142.979706', '22.710770', '829.297302', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51656, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873426', 3873426, '220.695999', '20.348419', '790.027283', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51384, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873427', 3873427, '69.222389', '20.622999', '778.105286', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51112, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873428', 3873428, '70.471992', '21.233120', '776.341980', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50840, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873430', 3873430, '66.086601', '57.020870', '725.806213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50568, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873431', 3873431, '79.195717', '52.007320', '685.675415', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50296, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873432', 3873432, '79.268204', '51.686298', '683.238892', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50024, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873433', 3873433, '-129.812698', '8.744282', '655.901672', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873434', 3873434, '-127.513100', '8.619234', '660.065491', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873435', 3873435, '-70.867996', '3.471146', '805.643616', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873461', 3873461, '18.223940', '44.911652', '832.339600', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc3873463', 3873463, '129.763306', '48.053009', '868.938477', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48664, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc4057136', 4057136, '-29.171040', '70.937523', '112.141998', 784, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23136, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(307, 'e0062', 'bnpc4057153', 4057153, '-33.309830', '59.142609', '456.249786', 785, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22870, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(307, 'e0062', 'bnpc4057178', 4057178, '-0.370673', '36.202759', '591.413818', 786, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22604, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(307, 'e0062', 'bnpc4057204', 4057204, '126.070801', '23.201380', '735.619629', 788, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22338, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(307, 'e0062', 'bnpc4510193', 4510193, '600.272400', '61.718521', '-115.521301', 787, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22072, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(307, 'e0062', 'bnpc4621602', 4621602, '205.951904', '73.024078', '-291.708496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26712, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc4867727', 4867727, '-103.902603', '2.225230', '731.826416', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26326, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc4867728', 4867728, '-115.780197', '1.850056', '725.665710', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26054, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc4867729', 4867729, '-96.687714', '2.097239', '744.887817', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25782, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc4867730', 4867730, '-98.053673', '1.671072', '759.716797', 3110, 0, 0, 0, 0, 6, 0, 0, 2910, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25510, 8, 0, 0, 0, 0, 0, 0, 0, 0), +(307, 'e0062', 'bnpc4867731', 4867731, '-109.169701', '1.535632', '746.508301', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23746, 8, 0, 0, 0, 0, 0, 4867752, 0, 0), +(307, 'e0062', 'bnpc4867733', 4867733, '-113.730499', '0.984999', '755.556274', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24018, 8, 0, 0, 0, 0, 0, 4867753, 0, 0), +(307, 'e0062', 'bnpc4867735', 4867735, '-122.788597', '0.819352', '748.165283', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25244, 8, 0, 0, 0, 0, 0, 4867761, 0, 0), +(307, 'e0062', 'bnpc4867736', 4867736, '-111.623299', '1.689789', '738.438904', 3111, 0, 0, 0, 2, 6, 0, 0, 2909, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24972, 8, 0, 0, 0, 0, 0, 4867748, 0, 0), +(307, 'e0062', 'bnpc4867737', 4867737, '-123.906197', '0.960864', '734.838501', 3238, 0, 0, 0, 2, 6, 0, 0, 2982, 0, '0.000000', 99, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23474, 8, 0, 0, 0, 0, 0, 4867754, 0, 0), +(308, 'e0065', 'bnpc4291568', 4291568, '76.290123', '30.749250', '-733.599182', 1776, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(308, 'e0065', 'bnpc4292672', 4292672, '-12.396590', '18.377340', '-670.928772', 1777, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22138, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(308, 'e0065', 'bnpc4292673', 4292673, '91.670517', '20.458050', '-614.237122', 1778, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21872, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(308, 'e0065', 'bnpc4295485', 4295485, '-266.791504', '-5.944477', '-526.778198', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295487', 4295487, '-276.140686', '-8.410786', '-516.253174', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295488', 4295488, '-298.914093', '-4.103804', '-550.291321', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295489', 4295489, '-103.196297', '1.542795', '-586.758179', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295490', 4295490, '-207.536301', '-2.690903', '-578.039001', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295491', 4295491, '-103.713898', '-0.832843', '-642.948425', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295492', 4295492, '-208.009796', '1.723610', '-616.185120', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71640, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295493', 4295493, '-172.408905', '4.990528', '-671.229126', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295495', 4295495, '-380.537506', '-16.898170', '-441.082001', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295496', 4295496, '-430.882507', '-16.898170', '-384.312195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295497', 4295497, '-390.139587', '-16.898170', '-350.704712', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70558, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295498', 4295498, '-398.062103', '-16.898170', '-358.104401', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70286, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295499', 4295499, '-336.279297', '-16.898170', '-437.756195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70014, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295500', 4295500, '-302.568298', '-16.898170', '-458.892609', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69742, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295501', 4295501, '-402.253601', '-16.898170', '-464.540710', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69470, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295503', 4295503, '-369.143799', '-16.898170', '-389.766815', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69198, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295505', 4295505, '-359.561707', '-16.042290', '-486.552094', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68932, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295506', 4295506, '-417.805786', '-6.910027', '-523.771912', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295507', 4295507, '-466.061310', '-9.446001', '-532.017029', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295508', 4295508, '-413.364410', '-2.492527', '-559.181519', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295514', 4295514, '-350.972809', '-6.607239', '-526.665222', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295515', 4295515, '-360.309296', '-4.290267', '-546.520813', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295516', 4295516, '-350.790710', '-3.296191', '-550.475586', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295520', 4295520, '-396.722198', '-14.513140', '-500.059692', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295524', 4295524, '-234.088699', '-4.989685', '-302.540588', 724, 0, 0, 0, 1, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4295525', 4295525, '-211.180405', '-2.844870', '-288.253998', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66496, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(308, 'e0065', 'bnpc4295526', 4295526, '-257.312897', '1.113892', '-308.064392', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66230, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4295528', 4295528, '-212.115707', '-2.955642', '-289.682190', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65946, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(308, 'e0065', 'bnpc4295529', 4295529, '-224.841705', '3.952026', '-259.540710', 725, 0, 0, 0, 1, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65680, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4295530', 4295530, '-203.875793', '24.704220', '-215.411697', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4295531', 4295531, '-234.943207', '21.774599', '-213.092300', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65136, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(308, 'e0065', 'bnpc4295532', 4295532, '-235.959198', '22.114910', '-212.031006', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64858, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(308, 'e0065', 'bnpc4295533', 4295533, '-234.301407', '21.966511', '-211.462402', 726, 0, 0, 0, 0, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(308, 'e0065', 'bnpc4295534', 4295534, '-127.288002', '47.127460', '-188.580307', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295535', 4295535, '-140.871399', '45.053020', '-179.736603', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295536', 4295536, '-136.478302', '46.067551', '-193.959702', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295537', 4295537, '-143.537201', '44.052780', '-181.398193', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295538', 4295538, '-146.514297', '42.327431', '-204.108902', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295539', 4295539, '-129.866394', '46.678692', '-196.996994', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295540', 4295540, '-145.364395', '42.544418', '-202.550705', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295541', 4295541, '-144.789993', '44.556961', '-194.376297', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295659', 4295659, '-53.322418', '17.072929', '-621.681213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295665', 4295665, '-88.710228', '0.643335', '-625.828125', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295666', 4295666, '-207.395203', '8.290789', '-665.648376', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295668', 4295668, '-156.229294', '-1.918439', '-604.694275', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295669', 4295669, '-304.707489', '-15.793150', '-491.020111', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295670', 4295670, '-386.814087', '-6.319692', '-539.647400', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295674', 4295674, '-375.356689', '-13.229610', '-505.729797', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295679', 4295679, '-327.840393', '-2.384109', '-563.164490', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295691', 4295691, '482.994690', '-1.037749', '-792.622070', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59992, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295693', 4295693, '473.960388', '0.503479', '-803.097595', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59720, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295694', 4295694, '450.441315', '-4.905994', '-755.835999', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59448, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295695', 4295695, '500.877289', '-5.020264', '-757.289978', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59176, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295697', 4295697, '456.274902', '-4.258285', '-763.958801', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295698', 4295698, '550.072510', '-9.750549', '-735.286499', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295700', 4295700, '487.731598', '2.187441', '-809.306885', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58360, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295702', 4295702, '268.736298', '32.329670', '-657.612671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295704', 4295704, '272.319611', '32.540180', '-659.312988', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295705', 4295705, '285.744507', '34.969521', '-689.040283', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295709', 4295709, '298.145996', '20.340210', '-684.382385', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295710', 4295710, '348.251495', '21.030451', '-726.475220', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295711', 4295711, '352.642487', '20.319700', '-740.209778', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295712', 4295712, '369.140015', '21.089970', '-736.832886', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56462, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295715', 4295715, '363.363007', '-1.968445', '-698.451172', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56190, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295716', 4295716, '557.910828', '-5.547063', '-643.875671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55918, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295717', 4295717, '557.692322', '16.908760', '-525.262085', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55646, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295718', 4295718, '576.089783', '12.066130', '-514.577271', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55374, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295719', 4295719, '594.596985', '7.711907', '-478.120911', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295720', 4295720, '616.268982', '8.446064', '-482.073486', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(308, 'e0065', 'bnpc4295726', 4295726, '356.740601', '-6.149414', '-463.218109', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295727', 4295727, '365.071991', '-14.602910', '-430.808014', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54298, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295728', 4295728, '350.667511', '-17.288509', '-404.379303', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295734', 4295734, '413.196686', '-20.564011', '-317.744904', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295735', 4295735, '387.892609', '-18.073410', '-346.505707', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53476, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295736', 4295736, '450.900513', '-17.914270', '-353.105286', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295737', 4295737, '481.724091', '-12.428540', '-382.045105', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295738', 4295738, '511.909393', '-9.373532', '-382.464996', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52660, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295739', 4295739, '522.073730', '0.990242', '-453.501709', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295747', 4295747, '588.058716', '-2.946974', '-271.337891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295749', 4295749, '568.700012', '-2.429443', '-330.453400', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295751', 4295751, '582.843079', '-3.006616', '-272.419891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295755', 4295755, '214.220200', '-22.109159', '-425.877502', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51324, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295757', 4295757, '208.472198', '-22.096960', '-422.660797', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295759', 4295759, '162.350601', '-27.989771', '-429.755402', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295760', 4295760, '152.123001', '-27.048130', '-440.418915', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295761', 4295761, '177.396194', '-25.049320', '-444.224487', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295762', 4295762, '267.297211', '-21.872410', '-406.569397', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295763', 4295763, '306.843597', '-26.993231', '-409.628510', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295764', 4295764, '304.550415', '-25.764360', '-424.008301', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49420, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(308, 'e0065', 'bnpc4295769', 4295769, '306.531403', '-6.106912', '-519.224976', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49130, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295770', 4295770, '282.576813', '-0.225863', '-572.515686', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48852, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295771', 4295771, '310.969513', '6.158492', '-563.194397', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48592, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295809', 4295809, '156.994202', '14.383940', '-592.509216', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48290, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295811', 4295811, '223.296295', '19.340050', '-610.880798', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48018, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295812', 4295812, '201.983597', '-0.198364', '-555.107971', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295813', 4295813, '341.647797', '-7.563892', '-456.047089', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295816', 4295816, '408.980713', '-16.354401', '-360.560699', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295818', 4295818, '509.696991', '-9.567444', '-375.661896', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295820', 4295820, '496.853485', '0.344957', '-504.120392', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295823', 4295823, '601.499573', '8.072348', '-517.726685', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295825', 4295825, '570.526428', '-2.482952', '-625.752014', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295827', 4295827, '556.342102', '-7.876167', '-657.103516', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295829', 4295829, '554.863770', '-9.262268', '-749.843628', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295831', 4295831, '503.838013', '-2.956629', '-777.365173', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295834', 4295834, '482.706696', '1.341902', '-807.133728', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295835', 4295835, '486.772400', '5.215003', '-836.320984', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295836', 4295836, '471.659790', '3.490144', '-819.978882', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295837', 4295837, '484.345886', '5.375706', '-837.509583', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295840', 4295840, '412.710693', '-9.353821', '-747.005371', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295844', 4295844, '384.603485', '-4.196289', '-690.486023', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295846', 4295846, '332.112701', '4.562378', '-690.424988', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43394, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295850', 4295850, '316.341492', '26.032160', '-728.249573', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43122, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295851', 4295851, '297.774597', '15.475720', '-651.450989', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295855', 4295855, '598.748718', '-3.250244', '-301.930298', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295858', 4295858, '591.221985', '-1.360156', '-323.232788', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295862', 4295862, '-314.692108', '-15.474820', '-327.581299', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295866', 4295866, '-272.613800', '-8.061660', '-332.045013', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295867', 4295867, '-217.273193', '-1.571716', '-276.691895', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295870', 4295870, '-229.022598', '14.450200', '-236.072403', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295871', 4295871, '-188.372696', '33.340939', '-195.666504', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4295884', 4295884, '-562.005005', '-2.945007', '-452.323212', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40722, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4295886', 4295886, '-554.466980', '-3.768982', '-380.758392', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40456, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4295887', 4295887, '-568.932678', '-2.945007', '-424.124603', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40190, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4295889', 4295889, '-543.789124', '-3.866000', '-411.311401', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4296050', 4296050, '-471.824188', '-6.332520', '-433.737701', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39640, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(308, 'e0065', 'bnpc4296052', 4296052, '-484.855499', '-6.027344', '-447.898102', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39368, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(308, 'e0065', 'bnpc4296053', 4296053, '-445.975494', '-12.710820', '-466.361511', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32130, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4296054', 4296054, '-473.746887', '-4.409851', '-480.766113', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32432, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4296055', 4296055, '-471.580109', '-6.668213', '-449.912292', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39102, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4296056', 4296056, '-453.727112', '-10.818660', '-442.862610', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38842, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4296060', 4296060, '-455.741211', '-7.492188', '-484.428192', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38552, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(308, 'e0065', 'bnpc4296081', 4296081, '-603.967285', '-3.891113', '-368.337494', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38298, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4296082', 4296082, '-640.680481', '-3.891113', '-370.046600', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38032, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4296091', 4296091, '-592.797729', '-2.945007', '-432.211792', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37736, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(308, 'e0065', 'bnpc4296093', 4296093, '-635.341492', '-2.933044', '-396.278687', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37464, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(308, 'e0065', 'bnpc4296094', 4296094, '-548.271912', '-1.937927', '-310.963593', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37204, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4296096', 4296096, '-498.711395', '-3.960067', '-255.747696', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36932, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(308, 'e0065', 'bnpc4296098', 4296098, '-558.028809', '-3.683542', '-364.324585', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36648, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(308, 'e0065', 'bnpc4296100', 4296100, '-489.250092', '-3.708008', '-282.124115', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36376, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(308, 'e0065', 'bnpc4296103', 4296103, '-446.294891', '-4.000447', '-219.651199', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36104, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(308, 'e0065', 'bnpc4296105', 4296105, '-437.867004', '-2.581742', '-273.708099', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35832, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(308, 'e0065', 'bnpc4296108', 4296108, '-527.244995', '-2.670410', '-288.624512', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35554, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4296110', 4296110, '-560.845276', '-2.975586', '-327.595886', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35294, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4296111', 4296111, '-547.325928', '-1.754883', '-291.645691', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35016, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4296113', 4296113, '-527.817322', '-3.767937', '-323.068909', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4296115', 4296115, '-543.791321', '-3.216822', '-330.542389', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34496, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4296118', 4296118, '-473.824707', '-3.767937', '-273.987488', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34224, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4296119', 4296119, '-488.912994', '-3.958386', '-246.223602', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33946, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4296120', 4296120, '-461.660309', '-3.996136', '-252.041306', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33650, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4296121', 4296121, '-428.786102', '-3.945695', '-301.904114', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4296122', 4296122, '-429.702698', '-3.990123', '-245.654495', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33118, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4296344', 4296344, '-618.398071', '-3.216822', '-419.669586', 201, 0, 0, 0, 5, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32692, 1, 0, 0, 0, 0, 0, 4296333, 0, 0), +(308, 'e0065', 'bnpc4331545', 4331545, '-431.193512', '-15.291800', '-426.211914', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31858, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4331546', 4331546, '-472.129791', '-5.294910', '-466.746185', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31586, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4331549', 4331549, '-455.329895', '-10.797180', '-446.420288', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4331550', 4331550, '-470.522400', '-4.822834', '-501.822296', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31072, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(308, 'e0065', 'bnpc4621627', 4621627, '459.067596', '6.191762', '-845.122498', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22746, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4291568', 4291568, '76.290123', '30.749250', '-733.599182', 1776, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(309, 'e0066', 'bnpc4292672', 4292672, '-12.396590', '18.377340', '-670.928772', 1777, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22138, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(309, 'e0066', 'bnpc4292673', 4292673, '91.670517', '20.458050', '-614.237122', 1778, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21872, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(309, 'e0066', 'bnpc4295485', 4295485, '-266.791504', '-5.944477', '-526.778198', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295487', 4295487, '-276.140686', '-8.410786', '-516.253174', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295488', 4295488, '-298.914093', '-4.103804', '-550.291321', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295489', 4295489, '-103.196297', '1.542795', '-586.758179', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295490', 4295490, '-207.536301', '-2.690903', '-578.039001', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295491', 4295491, '-103.713898', '-0.832843', '-642.948425', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295492', 4295492, '-208.009796', '1.723610', '-616.185120', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71640, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295493', 4295493, '-172.408905', '4.990528', '-671.229126', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295495', 4295495, '-380.537506', '-16.898170', '-441.082001', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295496', 4295496, '-430.882507', '-16.898170', '-384.312195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295497', 4295497, '-390.139587', '-16.898170', '-350.704712', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70558, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295498', 4295498, '-398.062103', '-16.898170', '-358.104401', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70286, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295499', 4295499, '-336.279297', '-16.898170', '-437.756195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70014, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295500', 4295500, '-302.568298', '-16.898170', '-458.892609', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69742, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295501', 4295501, '-402.253601', '-16.898170', '-464.540710', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69470, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295503', 4295503, '-369.143799', '-16.898170', '-389.766815', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69198, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295505', 4295505, '-359.561707', '-16.042290', '-486.552094', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68932, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295506', 4295506, '-417.805786', '-6.910027', '-523.771912', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295507', 4295507, '-466.061310', '-9.446001', '-532.017029', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295508', 4295508, '-413.364410', '-2.492527', '-559.181519', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295514', 4295514, '-350.972809', '-6.607239', '-526.665222', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295515', 4295515, '-360.309296', '-4.290267', '-546.520813', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295516', 4295516, '-350.790710', '-3.296191', '-550.475586', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295520', 4295520, '-396.722198', '-14.513140', '-500.059692', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295524', 4295524, '-234.088699', '-4.989685', '-302.540588', 724, 0, 0, 0, 1, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4295525', 4295525, '-211.180405', '-2.844870', '-288.253998', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66496, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(309, 'e0066', 'bnpc4295526', 4295526, '-257.312897', '1.113892', '-308.064392', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66230, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4295528', 4295528, '-212.115707', '-2.955642', '-289.682190', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65946, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(309, 'e0066', 'bnpc4295529', 4295529, '-224.841705', '3.952026', '-259.540710', 725, 0, 0, 0, 1, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65680, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4295530', 4295530, '-203.875793', '24.704220', '-215.411697', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4295531', 4295531, '-234.943207', '21.774599', '-213.092300', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65136, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(309, 'e0066', 'bnpc4295532', 4295532, '-235.959198', '22.114910', '-212.031006', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64858, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(309, 'e0066', 'bnpc4295533', 4295533, '-234.301407', '21.966511', '-211.462402', 726, 0, 0, 0, 0, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(309, 'e0066', 'bnpc4295534', 4295534, '-127.288002', '47.127460', '-188.580307', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295535', 4295535, '-140.871399', '45.053020', '-179.736603', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295536', 4295536, '-136.478302', '46.067551', '-193.959702', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295537', 4295537, '-143.537201', '44.052780', '-181.398193', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295538', 4295538, '-146.514297', '42.327431', '-204.108902', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295539', 4295539, '-129.866394', '46.678692', '-196.996994', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295540', 4295540, '-145.364395', '42.544418', '-202.550705', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295541', 4295541, '-144.789993', '44.556961', '-194.376297', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295659', 4295659, '-53.322418', '17.072929', '-621.681213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295665', 4295665, '-88.710228', '0.643335', '-625.828125', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295666', 4295666, '-207.395203', '8.290789', '-665.648376', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295668', 4295668, '-156.229294', '-1.918439', '-604.694275', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295669', 4295669, '-304.707489', '-15.793150', '-491.020111', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295670', 4295670, '-386.814087', '-6.319692', '-539.647400', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295674', 4295674, '-375.356689', '-13.229610', '-505.729797', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295679', 4295679, '-327.840393', '-2.384109', '-563.164490', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295691', 4295691, '482.994690', '-1.037749', '-792.622070', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59992, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295693', 4295693, '473.960388', '0.503479', '-803.097595', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59720, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295694', 4295694, '450.441315', '-4.905994', '-755.835999', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59448, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295695', 4295695, '500.877289', '-5.020264', '-757.289978', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59176, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295697', 4295697, '456.274902', '-4.258285', '-763.958801', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295698', 4295698, '550.072510', '-9.750549', '-735.286499', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295700', 4295700, '487.731598', '2.187441', '-809.306885', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58360, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295702', 4295702, '268.736298', '32.329670', '-657.612671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295704', 4295704, '272.319611', '32.540180', '-659.312988', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295705', 4295705, '285.744507', '34.969521', '-689.040283', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295709', 4295709, '298.145996', '20.340210', '-684.382385', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295710', 4295710, '348.251495', '21.030451', '-726.475220', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295711', 4295711, '352.642487', '20.319700', '-740.209778', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295712', 4295712, '369.140015', '21.089970', '-736.832886', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56462, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295715', 4295715, '363.363007', '-1.968445', '-698.451172', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56190, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295716', 4295716, '557.910828', '-5.547063', '-643.875671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55918, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295717', 4295717, '557.692322', '16.908760', '-525.262085', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55646, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295718', 4295718, '576.089783', '12.066130', '-514.577271', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55374, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295719', 4295719, '594.596985', '7.711907', '-478.120911', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295720', 4295720, '616.268982', '8.446064', '-482.073486', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(309, 'e0066', 'bnpc4295726', 4295726, '356.740601', '-6.149414', '-463.218109', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295727', 4295727, '365.071991', '-14.602910', '-430.808014', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54298, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295728', 4295728, '350.667511', '-17.288509', '-404.379303', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295734', 4295734, '413.196686', '-20.564011', '-317.744904', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295735', 4295735, '387.892609', '-18.073410', '-346.505707', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53476, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295736', 4295736, '450.900513', '-17.914270', '-353.105286', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295737', 4295737, '481.724091', '-12.428540', '-382.045105', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295738', 4295738, '511.909393', '-9.373532', '-382.464996', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52660, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295739', 4295739, '522.073730', '0.990242', '-453.501709', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295747', 4295747, '588.058716', '-2.946974', '-271.337891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295749', 4295749, '568.700012', '-2.429443', '-330.453400', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295751', 4295751, '582.843079', '-3.006616', '-272.419891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295755', 4295755, '214.220200', '-22.109159', '-425.877502', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51324, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295757', 4295757, '208.472198', '-22.096960', '-422.660797', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295759', 4295759, '162.350601', '-27.989771', '-429.755402', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295760', 4295760, '152.123001', '-27.048130', '-440.418915', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295761', 4295761, '177.396194', '-25.049320', '-444.224487', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295762', 4295762, '267.297211', '-21.872410', '-406.569397', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295763', 4295763, '306.843597', '-26.993231', '-409.628510', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295764', 4295764, '304.550415', '-25.764360', '-424.008301', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295769', 4295769, '306.531403', '-6.106912', '-519.224976', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49130, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295770', 4295770, '282.576813', '-0.225863', '-572.515686', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48852, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295771', 4295771, '310.969513', '6.158492', '-563.194397', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48592, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295809', 4295809, '156.994202', '14.383940', '-592.509216', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48290, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295811', 4295811, '223.296295', '19.340050', '-610.880798', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48018, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295812', 4295812, '201.983597', '-0.198364', '-555.107971', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295813', 4295813, '341.647797', '-7.563892', '-456.047089', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295816', 4295816, '408.980713', '-16.354401', '-360.560699', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295818', 4295818, '509.696991', '-9.567444', '-375.661896', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295820', 4295820, '496.853485', '0.344957', '-504.120392', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295823', 4295823, '601.499573', '8.072348', '-517.726685', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295825', 4295825, '570.526428', '-2.482952', '-625.752014', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295827', 4295827, '556.342102', '-7.876167', '-657.103516', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295829', 4295829, '554.863770', '-9.262268', '-749.843628', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295831', 4295831, '503.838013', '-2.956629', '-777.365173', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295834', 4295834, '482.706696', '1.341902', '-807.133728', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295835', 4295835, '486.772400', '5.215003', '-836.320984', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295836', 4295836, '471.659790', '3.490144', '-819.978882', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295837', 4295837, '484.345886', '5.375706', '-837.509583', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295840', 4295840, '412.710693', '-9.353821', '-747.005371', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295844', 4295844, '384.603485', '-4.196289', '-690.486023', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295846', 4295846, '332.112701', '4.562378', '-690.424988', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43394, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295850', 4295850, '316.341492', '26.032160', '-728.249573', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43122, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295851', 4295851, '297.774597', '15.475720', '-651.450989', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295855', 4295855, '598.748718', '-3.250244', '-301.930298', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295858', 4295858, '591.221985', '-1.360156', '-323.232788', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295862', 4295862, '-314.692108', '-15.474820', '-327.581299', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295866', 4295866, '-272.613800', '-8.061660', '-332.045013', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295867', 4295867, '-217.273193', '-1.571716', '-276.691895', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295870', 4295870, '-229.022598', '14.450200', '-236.072403', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295871', 4295871, '-188.372696', '33.340939', '-195.666504', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4295884', 4295884, '-562.005005', '-2.945007', '-452.323212', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40722, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4295886', 4295886, '-554.466980', '-3.768982', '-380.758392', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40456, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4295887', 4295887, '-568.932678', '-2.945007', '-424.124603', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40190, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4295889', 4295889, '-543.789124', '-3.866000', '-411.311401', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4296050', 4296050, '-471.824188', '-6.332520', '-433.737701', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39640, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(309, 'e0066', 'bnpc4296052', 4296052, '-484.855499', '-6.027344', '-447.898102', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39368, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(309, 'e0066', 'bnpc4296053', 4296053, '-445.975494', '-12.710820', '-466.361511', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32130, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4296054', 4296054, '-473.746887', '-4.409851', '-480.766113', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32432, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4296055', 4296055, '-471.580109', '-6.668213', '-449.912292', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39102, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4296056', 4296056, '-453.727112', '-10.818660', '-442.862610', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38842, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4296060', 4296060, '-455.741211', '-7.492188', '-484.428192', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38552, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(309, 'e0066', 'bnpc4296081', 4296081, '-603.967285', '-3.891113', '-368.337494', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38298, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4296082', 4296082, '-640.680481', '-3.891113', '-370.046600', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38032, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4296091', 4296091, '-592.797729', '-2.945007', '-432.211792', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37736, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(309, 'e0066', 'bnpc4296093', 4296093, '-635.341492', '-2.933044', '-396.278687', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37464, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(309, 'e0066', 'bnpc4296094', 4296094, '-548.271912', '-1.937927', '-310.963593', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37204, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4296096', 4296096, '-498.711395', '-3.960067', '-255.747696', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36932, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(309, 'e0066', 'bnpc4296098', 4296098, '-558.028809', '-3.683542', '-364.324585', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36648, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(309, 'e0066', 'bnpc4296100', 4296100, '-489.250092', '-3.708008', '-282.124115', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36376, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(309, 'e0066', 'bnpc4296103', 4296103, '-446.294891', '-4.000447', '-219.651199', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36104, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(309, 'e0066', 'bnpc4296105', 4296105, '-437.867004', '-2.581742', '-273.708099', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35832, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(309, 'e0066', 'bnpc4296108', 4296108, '-527.244995', '-2.670410', '-288.624512', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35554, 1, 0, 0, 0, 0, 30096, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(309, 'e0066', 'bnpc4296110', 4296110, '-560.845276', '-2.975586', '-327.595886', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35294, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4296111', 4296111, '-547.325928', '-1.754883', '-291.645691', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35016, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4296113', 4296113, '-527.817322', '-3.767937', '-323.068909', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4296115', 4296115, '-543.791321', '-3.216822', '-330.542389', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34496, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4296118', 4296118, '-473.824707', '-3.767937', '-273.987488', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34224, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4296119', 4296119, '-488.912994', '-3.958386', '-246.223602', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33946, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4296120', 4296120, '-461.660309', '-3.996136', '-252.041306', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33650, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4296121', 4296121, '-428.786102', '-3.945695', '-301.904114', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4296122', 4296122, '-429.702698', '-3.990123', '-245.654495', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33118, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4296344', 4296344, '-618.398071', '-3.216822', '-419.669586', 201, 0, 0, 0, 5, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32692, 1, 0, 0, 0, 0, 0, 4296333, 0, 0), +(309, 'e0066', 'bnpc4331545', 4331545, '-431.193512', '-15.291800', '-426.211914', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31858, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4331546', 4331546, '-472.129791', '-5.294910', '-466.746185', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31586, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4331549', 4331549, '-455.329895', '-10.797180', '-446.420288', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4331550', 4331550, '-470.522400', '-4.822834', '-501.822296', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31072, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(309, 'e0066', 'bnpc4621627', 4621627, '459.067596', '6.191762', '-845.122498', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22746, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3965984', 3965984, '290.117706', '43.654701', '749.469177', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107688, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3965987', 3965987, '293.200012', '43.134739', '746.661621', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107416, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3965988', 3965988, '324.116791', '32.547440', '699.946472', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107144, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3965990', 3965990, '392.568787', '27.054199', '712.336914', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106872, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3965997', 3965997, '390.188385', '27.145750', '714.442627', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106600, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966001', 3966001, '385.580200', '26.749020', '711.055115', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106328, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966005', 3966005, '389.669586', '25.009489', '695.277283', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106056, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966021', 3966021, '290.485901', '42.923580', '551.995117', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105790, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966030', 3966030, '281.486511', '40.675110', '660.846008', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105518, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966033', 3966033, '385.317902', '24.940651', '523.827576', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105246, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966039', 3966039, '452.273987', '34.051319', '541.621094', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104974, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966043', 3966043, '343.232605', '30.682180', '454.719208', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104702, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966045', 3966045, '288.452911', '42.365101', '363.512909', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104430, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966046', 3966046, '299.927887', '41.764408', '350.498810', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104158, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966078', 3966078, '418.940399', '16.917250', '740.596619', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103880, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966084', 3966084, '430.092010', '14.727770', '731.417480', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103608, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966085', 3966085, '432.472412', '14.548040', '729.311829', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103336, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966086', 3966086, '430.427704', '14.832140', '728.091003', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103064, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966092', 3966092, '387.587006', '24.567631', '693.317871', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102792, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966095', 3966095, '427.572998', '13.961960', '671.839417', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102520, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966096', 3966096, '429.953400', '13.687290', '669.733582', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102248, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966097', 3966097, '422.964813', '14.236620', '668.451904', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101976, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966100', 3966100, '428.580109', '13.809370', '659.082825', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101704, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966104', 3966104, '352.881012', '30.771620', '728.950378', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101432, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966108', 3966108, '504.101715', '8.999934', '681.622986', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966112', 3966112, '463.920013', '10.940670', '693.965027', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966115', 3966115, '475.702911', '9.703782', '729.907288', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966117', 3966117, '481.560486', '9.326057', '765.301697', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966118', 3966118, '489.679596', '8.999991', '754.903076', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966120', 3966120, '485.691986', '9.522070', '641.613586', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966122', 3966122, '502.346710', '8.999838', '630.363403', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966123', 3966123, '467.942596', '11.618370', '598.635376', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966128', 3966128, '523.159729', '8.999995', '252.453705', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99002, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966129', 3966129, '503.478210', '9.866951', '210.334000', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98730, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966132', 3966132, '506.041687', '9.747169', '207.556793', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98458, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966134', 3966134, '494.140015', '11.102120', '230.850998', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98186, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966135', 3966135, '513.192200', '8.999973', '265.080597', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97914, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966139', 3966139, '515.692383', '8.999988', '223.561798', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966142', 3966142, '536.347412', '9.170974', '198.358597', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97370, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966143', 3966143, '480.563690', '11.275560', '254.698898', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97098, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966185', 3966185, '225.319901', '54.344410', '564.565430', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96832, 1, 0, 0, 0, 27, 30059, 0, 0, 0), +(310, 'e0067', 'bnpc3966191', 3966191, '240.668304', '51.838989', '562.298584', 170, 0, 0, 0, 1, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96560, 1, 0, 0, 0, 27, 30063, 0, 0, 0), +(310, 'e0067', 'bnpc3966193', 3966193, '237.524506', '52.241501', '560.929688', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96288, 1, 0, 0, 0, 27, 30059, 0, 0, 0), +(310, 'e0067', 'bnpc3966195', 3966195, '238.675705', '52.019920', '558.354919', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96016, 1, 0, 0, 0, 27, 30059, 0, 0, 0), +(310, 'e0067', 'bnpc3966197', 3966197, '234.047104', '60.363258', '532.494019', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95744, 1, 0, 0, 0, 27, 30060, 0, 0, 0), +(310, 'e0067', 'bnpc3966198', 3966198, '232.410202', '60.349369', '532.799194', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95472, 1, 0, 0, 0, 27, 30060, 0, 0, 0), +(310, 'e0067', 'bnpc3966204', 3966204, '318.658203', '37.686790', '233.860397', 328, 0, 0, 0, 0, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95206, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(310, 'e0067', 'bnpc3966224', 3966224, '322.804413', '37.674561', '206.378204', 328, 0, 0, 0, 0, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94934, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(310, 'e0067', 'bnpc3966226', 3966226, '330.596191', '36.181511', '217.927505', 328, 0, 0, 0, 1, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94662, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(310, 'e0067', 'bnpc3966237', 3966237, '325.863403', '37.460819', '205.065903', 329, 0, 0, 0, 0, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94396, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(310, 'e0067', 'bnpc3966240', 3966240, '316.045197', '38.194221', '236.654907', 329, 0, 0, 0, 0, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94124, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(310, 'e0067', 'bnpc3966241', 3966241, '313.378113', '38.056759', '220.080307', 329, 0, 0, 0, 1, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93852, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(310, 'e0067', 'bnpc3966242', 3966242, '334.248901', '36.394051', '239.885498', 331, 0, 0, 0, 1, 6, 0, 0, 373, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93586, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(310, 'e0067', 'bnpc3966243', 3966243, '315.073486', '38.121010', '233.173004', 331, 0, 0, 0, 0, 6, 0, 0, 373, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93314, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(310, 'e0067', 'bnpc3966244', 3966244, '315.354797', '39.330219', '197.917297', 331, 0, 0, 0, 1, 6, 0, 0, 373, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93042, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(310, 'e0067', 'bnpc3966270', 3966270, '307.454010', '32.229580', '527.673584', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92776, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966278', 3966278, '282.918610', '42.498619', '402.770111', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92504, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966279', 3966279, '331.480194', '37.450062', '426.526886', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92232, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966281', 3966281, '411.184814', '27.695080', '488.273407', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966285', 3966285, '430.838409', '18.936399', '772.152222', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966288', 3966288, '445.507111', '13.025030', '702.326416', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966289', 3966289, '424.795807', '18.326040', '592.889221', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966291', 3966291, '236.732101', '53.718140', '616.643982', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966296', 3966296, '309.773285', '35.843399', '593.896301', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966311', 3966311, '460.890411', '14.134280', '275.800812', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966322', 3966322, '462.973907', '13.992480', '272.785492', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966331', 3966331, '436.391907', '17.167070', '328.657104', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966340', 3966340, '429.404114', '36.819969', '132.829697', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966343', 3966343, '438.622589', '35.297611', '196.059998', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966351', 3966351, '334.525085', '38.941391', '327.366913', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966355', 3966355, '368.808807', '33.632469', '253.976501', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85976, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966368', 3966368, '523.699890', '41.479031', '549.176697', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88696, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966375', 3966375, '522.691589', '41.801552', '546.826721', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88424, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966380', 3966380, '470.281799', '34.323669', '551.294006', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88152, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966581', 3966581, '350.408997', '30.882040', '725.654419', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87832, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966589', 3966589, '327.600098', '31.811251', '702.823730', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966594', 3966594, '368.138489', '29.659201', '745.547729', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87336, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966604', 3966604, '313.217499', '38.596272', '433.198486', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87022, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966613', 3966613, '414.287506', '29.365601', '516.322510', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86750, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966614', 3966614, '298.856689', '37.864361', '705.197083', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86472, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966630', 3966630, '399.514893', '36.100700', '222.557495', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86206, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966825', 3966825, '331.662201', '39.448109', '166.458801', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85704, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966829', 3966829, '334.347809', '38.871632', '163.773193', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85432, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966836', 3966836, '252.163696', '50.856651', '559.044678', 170, 0, 0, 0, 1, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85136, 1, 0, 0, 0, 27, 30063, 0, 0, 0), +(310, 'e0067', 'bnpc3966837', 3966837, '231.653397', '53.322651', '577.867188', 170, 0, 0, 0, 1, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84864, 1, 0, 0, 0, 27, 30063, 0, 0, 0), +(310, 'e0067', 'bnpc3966848', 3966848, '422.451294', '35.254921', '169.566895', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966849', 3966849, '428.958496', '37.325779', '102.728203', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966850', 3966850, '454.571808', '12.465490', '151.488907', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966851', 3966851, '459.783295', '12.487550', '182.865997', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966852', 3966852, '442.573303', '36.806381', '114.818901', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966853', 3966853, '426.489105', '37.229988', '104.534302', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966854', 3966854, '418.872314', '35.403931', '158.459900', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966855', 3966855, '446.885712', '37.061001', '190.656296', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966856', 3966856, '414.331604', '34.928871', '162.227295', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966857', 3966857, '485.124786', '44.077980', '161.297897', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82174, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966858', 3966858, '501.047394', '49.527180', '137.380997', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966859', 3966859, '476.396698', '32.421059', '208.906006', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81630, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966860', 3966860, '508.647186', '50.047180', '135.756897', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966861', 3966861, '517.712280', '31.487631', '183.328796', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81086, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966862', 3966862, '519.568970', '31.405090', '185.390900', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966932', 3966932, '-107.621902', '60.001968', '671.706909', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80092, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966938', 3966938, '-100.602798', '64.316727', '689.204224', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79820, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966939', 3966939, '-90.836998', '63.675850', '681.605225', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79548, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966940', 3966940, '-166.796707', '62.704250', '685.247925', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79276, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966941', 3966941, '-161.909302', '60.470612', '677.937500', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79004, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966942', 3966942, '-94.041397', '56.778770', '634.607422', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78732, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966944', 3966944, '-1.239546', '50.637169', '509.984985', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57280, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966947', 3966947, '-45.667271', '51.856998', '574.469299', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966949', 3966949, '-46.905361', '43.370399', '516.468689', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58640, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966950', 3966950, '-54.126480', '51.789631', '583.855896', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966951', 3966951, '-73.928673', '43.410858', '544.963013', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57552, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966952', 3966952, '-103.159698', '37.284828', '459.933807', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57824, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966954', 3966954, '-98.466507', '40.512650', '504.295288', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58096, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966958', 3966958, '-120.704201', '52.333061', '327.006989', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56470, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966982', 3966982, '-87.449501', '62.424610', '345.723602', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56742, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966983', 3966983, '-186.848404', '37.966789', '344.289215', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55382, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966984', 3966984, '-146.753799', '46.975368', '343.366302', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966987', 3966987, '-97.896507', '47.301010', '283.912598', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966988', 3966988, '-144.492203', '41.001541', '290.455414', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56198, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966993', 3966993, '-126.139099', '49.532829', '320.589905', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55926, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966994', 3966994, '-169.229095', '40.705471', '319.673706', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3966998', 3966998, '-196.612503', '34.134380', '262.104187', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78466, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3966999', 3966999, '-130.632507', '34.213940', '238.391602', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78194, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967000', 3967000, '-324.116913', '44.541031', '362.416992', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77922, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967001', 3967001, '-119.190002', '34.214378', '236.487305', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77650, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967002', 3967002, '-60.455029', '34.214390', '222.702805', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967003', 3967003, '-235.382202', '34.214390', '291.120911', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77106, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967006', 3967006, '-168.902100', '54.611992', '635.431396', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76828, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967008', 3967008, '-220.172501', '52.819180', '602.254089', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76568, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967012', 3967012, '-153.429504', '54.795101', '616.906921', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76296, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967013', 3967013, '-54.184830', '43.686531', '393.575897', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76024, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967015', 3967015, '-4.951565', '40.562092', '383.766205', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75752, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967016', 3967016, '-144.853897', '44.663109', '395.559601', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75480, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967019', 3967019, '-215.347198', '46.906521', '443.329498', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75208, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967021', 3967021, '-195.910599', '47.775951', '498.802094', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74936, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967023', 3967023, '-255.848099', '45.242950', '527.916321', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74664, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967024', 3967024, '-193.863693', '46.459171', '567.863098', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74392, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967040', 3967040, '-227.654999', '44.566780', '550.036011', 321, 0, 0, 0, 1, 6, 0, 0, 355, 0, '0.000000', 34, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967048', 3967048, '-245.306793', '50.107510', '203.033295', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967053', 3967053, '-231.670807', '44.156860', '229.440903', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967054', 3967054, '-239.386597', '43.805309', '236.070206', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73292, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967056', 3967056, '-308.054810', '53.123970', '249.850693', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73020, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967057', 3967057, '-279.167908', '51.349911', '221.039795', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967060', 3967060, '121.580902', '83.791519', '-63.093380', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72476, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967063', 3967063, '136.610001', '90.130913', '-77.008636', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72204, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967064', 3967064, '138.671295', '88.429123', '-72.254028', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71932, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967067', 3967067, '109.981201', '88.091492', '-91.405563', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71660, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967069', 3967069, '117.567299', '75.280457', '-31.443140', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71388, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967071', 3967071, '79.369293', '74.087349', '-7.523047', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71116, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967072', 3967072, '87.348160', '76.560066', '-62.532970', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70844, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967079', 3967079, '119.521301', '70.482773', '15.235610', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70572, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967232', 3967232, '-65.956238', '40.845070', '201.759201', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967236', 3967236, '-112.260201', '41.370239', '200.130005', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967238', 3967238, '-113.662697', '41.688950', '199.025208', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69780, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967239', 3967239, '-116.857201', '40.502911', '201.676895', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967240', 3967240, '-149.497101', '46.658821', '173.189301', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967241', 3967241, '-154.094101', '46.603470', '174.736206', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967242', 3967242, '-150.899704', '46.878399', '172.084595', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68692, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967244', 3967244, '-164.773300', '47.053860', '187.026794', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68420, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967245', 3967245, '-132.803101', '48.519630', '164.560394', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68148, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967246', 3967246, '-166.175903', '47.201370', '185.921997', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67876, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967247', 3967247, '-96.265427', '45.412338', '178.992096', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67604, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967248', 3967248, '-94.862892', '45.333729', '180.096893', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967250', 3967250, '-255.398605', '55.315521', '193.396301', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967251', 3967251, '-250.814499', '43.443932', '254.456497', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967252', 3967252, '-0.594336', '41.413090', '300.056488', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967253', 3967253, '-12.474910', '40.981110', '345.808990', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967254', 3967254, '-10.307140', '40.161018', '348.964508', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967255', 3967255, '-118.867302', '45.441109', '407.337494', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967256', 3967256, '-276.173096', '44.724140', '328.084198', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967257', 3967257, '-205.867706', '41.135929', '381.384705', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967260', 3967260, '-206.799393', '41.163960', '383.136597', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967261', 3967261, '-72.173149', '34.214340', '223.018997', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967262', 3967262, '-188.542496', '34.213940', '259.734406', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967263', 3967263, '-141.513000', '47.998859', '333.870789', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967264', 3967264, '-83.307388', '49.447201', '285.004303', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967265', 3967265, '-94.670761', '58.438599', '656.570923', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967266', 3967266, '-155.296707', '63.642780', '694.602295', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967267', 3967267, '-132.048401', '53.203049', '637.721985', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967268', 3967268, '-190.779999', '52.425701', '609.329773', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967269', 3967269, '-193.352798', '52.082130', '607.753784', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62442, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967270', 3967270, '-147.991806', '50.188049', '564.462830', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967271', 3967271, '-235.545898', '44.762379', '563.043518', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967272', 3967272, '-240.728607', '45.133591', '492.780487', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967275', 3967275, '-304.364014', '44.566818', '466.077515', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967276', 3967276, '-310.552399', '44.566750', '465.462799', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967277', 3967277, '-80.421982', '37.210289', '478.231903', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967278', 3967278, '-26.911261', '50.888149', '543.665771', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60538, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967280', 3967280, '-89.173988', '45.007820', '563.858215', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60266, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967290', 3967290, '76.708450', '77.890778', '-16.653400', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967292', 3967292, '140.583405', '74.160980', '12.732710', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967294', 3967294, '140.883408', '74.042503', '11.184050', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59450, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967295', 3967295, '116.940697', '83.753616', '-66.031197', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc3967308', 3967308, '-40.160881', '45.050510', '523.243713', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57008, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967595', 3967595, '-210.406693', '40.237991', '366.170685', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54536, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967644', 3967644, '-273.564209', '43.724400', '334.223694', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54264, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc3967651', 3967651, '-139.989197', '48.125320', '545.608582', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53992, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(310, 'e0067', 'bnpc4057235', 4057235, '404.560089', '20.446920', '453.365112', 789, 0, 0, 0, 0, 6, 0, 0, 1274, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23074, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(310, 'e0067', 'bnpc4057253', 4057253, '464.607697', '13.736580', '386.294098', 790, 0, 0, 0, 0, 6, 0, 0, 1274, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22808, 5, 0, 0, 0, 0, 30053, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(310, 'e0067', 'bnpc4057266', 4057266, '521.743530', '9.007294', '564.869080', 789, 0, 0, 0, 0, 6, 0, 0, 1274, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22530, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(310, 'e0067', 'bnpc4057293', 4057293, '8.463147', '64.817741', '50.653370', 788, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22270, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(310, 'e0067', 'bnpc4312742', 4312742, '183.886398', '74.509773', '-5.691650', 55, 0, 0, 0, 1, 6, 0, 0, 1821, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53536, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312743', 4312743, '204.760696', '75.181152', '-29.739870', 61, 0, 0, 0, 1, 6, 0, 0, 1822, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53270, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312744', 4312744, '232.166000', '75.577881', '-4.745544', 62, 0, 0, 0, 1, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53004, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312745', 4312745, '206.103500', '75.547363', '-31.540409', 63, 0, 0, 0, 1, 6, 0, 0, 1824, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52738, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312746', 4312746, '212.115601', '74.235107', '-9.903137', 64, 0, 0, 0, 1, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52472, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312748', 4312748, '242.298004', '74.479248', '-23.727840', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52188, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(310, 'e0067', 'bnpc4312759', 4312759, '335.849396', '76.161110', '-11.489540', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51916, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(310, 'e0067', 'bnpc4312813', 4312813, '429.465088', '76.157707', '-63.431820', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51644, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(310, 'e0067', 'bnpc4312814', 4312814, '387.136505', '76.218750', '-61.814331', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51372, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(310, 'e0067', 'bnpc4312815', 4312815, '287.367798', '76.123413', '-2.225652', 55, 0, 0, 0, 1, 6, 0, 0, 1821, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51088, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312816', 4312816, '314.246796', '76.070213', '-34.506378', 62, 0, 0, 0, 1, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50828, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312817', 4312817, '300.532501', '76.472076', '-15.301860', 61, 0, 0, 0, 1, 6, 0, 0, 1822, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50550, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312818', 4312818, '301.875214', '76.471893', '-17.102390', 63, 0, 0, 0, 1, 6, 0, 0, 1824, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50290, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312819', 4312819, '279.745087', '76.218422', '-22.320280', 64, 0, 0, 0, 1, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50024, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312874', 4312874, '444.379700', '76.086662', '-13.359130', 61, 0, 0, 0, 1, 6, 0, 0, 1822, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49734, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312875', 4312875, '358.754791', '76.249268', '-34.500729', 64, 0, 0, 0, 1, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49480, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312876', 4312876, '409.780914', '76.432373', '0.442505', 63, 0, 0, 0, 1, 6, 0, 0, 1824, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49202, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312877', 4312877, '412.466614', '76.066162', '-1.327576', 62, 0, 0, 0, 1, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48924, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312878', 4312878, '373.531311', '76.412163', '-19.283190', 55, 0, 0, 0, 1, 6, 0, 0, 1821, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48640, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312880', 4312880, '481.615387', '76.891281', '-107.208000', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48380, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(310, 'e0067', 'bnpc4312881', 4312881, '474.740814', '76.178452', '-92.284813', 64, 0, 0, 0, 1, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48120, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312882', 4312882, '476.438690', '76.178452', '-61.350609', 55, 0, 0, 0, 1, 6, 0, 0, 1821, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47824, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312883', 4312883, '433.289612', '76.178452', '-103.308701', 61, 0, 0, 0, 1, 6, 0, 0, 1822, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47558, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312885', 4312885, '455.140289', '76.178452', '-125.088303', 63, 0, 0, 0, 1, 6, 0, 0, 1824, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47298, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312886', 4312886, '435.969788', '76.178452', '-103.270302', 62, 0, 0, 0, 1, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47020, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(310, 'e0067', 'bnpc4312887', 4312887, '389.036896', '76.218277', '-42.814720', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc4312890', 4312890, '430.472198', '76.127197', '-39.200500', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc4312892', 4312892, '355.095093', '76.140678', '-93.768280', 201, 0, 0, 0, 0, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc4312893', 4312893, '362.949707', '76.156097', '-101.645103', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc4312895', 4312895, '376.375610', '79.863983', '-55.369541', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45672, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(310, 'e0067', 'bnpc4312896', 4312896, '401.510406', '79.863983', '-80.450699', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45400, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(310, 'e0067', 'bnpc4312897', 4312897, '448.056213', '79.863983', '-48.739960', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45128, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(310, 'e0067', 'bnpc4312908', 4312908, '336.851501', '79.863983', '1.148477', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44856, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(310, 'e0067', 'bnpc4312909', 4312909, '336.851501', '79.863983', '-34.551071', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44584, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(310, 'e0067', 'bnpc4312910', 4312910, '465.150513', '76.178452', '-77.636757', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc4312911', 4312911, '456.877289', '76.178452', '-100.076103', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(310, 'e0067', 'bnpc4312912', 4312912, '389.015991', '76.084824', '-102.386803', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43756, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(310, 'e0067', 'bnpc4312913', 4312913, '354.466187', '76.065430', '-67.588791', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43484, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(310, 'e0067', 'bnpc4621604', 4621604, '298.139404', '60.044762', '414.959106', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23804, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3965984', 3965984, '290.117706', '43.654701', '749.469177', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107688, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3965987', 3965987, '293.200012', '43.134739', '746.661621', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107416, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3965988', 3965988, '324.116791', '32.547440', '699.946472', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107144, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3965990', 3965990, '392.568787', '27.054199', '712.336914', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106872, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3965997', 3965997, '390.188385', '27.145750', '714.442627', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106600, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966001', 3966001, '385.580200', '26.749020', '711.055115', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106328, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966005', 3966005, '389.669586', '25.009489', '695.277283', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106056, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966021', 3966021, '290.485901', '42.923580', '551.995117', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105790, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966030', 3966030, '281.486511', '40.675110', '660.846008', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105518, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966033', 3966033, '385.317902', '24.940651', '523.827576', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105246, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966039', 3966039, '452.273987', '34.051319', '541.621094', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104974, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966043', 3966043, '343.232605', '30.682180', '454.719208', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104702, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966045', 3966045, '288.452911', '42.365101', '363.512909', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104430, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966046', 3966046, '299.927887', '41.764408', '350.498810', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104158, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966078', 3966078, '418.940399', '16.917250', '740.596619', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103880, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966084', 3966084, '430.092010', '14.727770', '731.417480', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103608, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966085', 3966085, '432.472412', '14.548040', '729.311829', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103336, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966086', 3966086, '430.427704', '14.832140', '728.091003', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103064, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966092', 3966092, '387.587006', '24.567631', '693.317871', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102792, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966095', 3966095, '427.572998', '13.961960', '671.839417', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102520, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966096', 3966096, '429.953400', '13.687290', '669.733582', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102248, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966097', 3966097, '422.964813', '14.236620', '668.451904', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101976, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966100', 3966100, '428.580109', '13.809370', '659.082825', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101704, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966104', 3966104, '352.881012', '30.771620', '728.950378', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101432, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966108', 3966108, '504.101715', '8.999934', '681.622986', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966112', 3966112, '463.920013', '10.940670', '693.965027', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966115', 3966115, '475.702911', '9.703782', '729.907288', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966117', 3966117, '481.560486', '9.326057', '765.301697', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966118', 3966118, '489.679596', '8.999991', '754.903076', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966120', 3966120, '485.691986', '9.522070', '641.613586', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966122', 3966122, '502.346710', '8.999838', '630.363403', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966123', 3966123, '467.942596', '11.618370', '598.635376', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966128', 3966128, '523.159729', '8.999995', '252.453705', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99002, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966129', 3966129, '503.478210', '9.866951', '210.334000', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98730, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966132', 3966132, '506.041687', '9.747169', '207.556793', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98458, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966134', 3966134, '494.140015', '11.102120', '230.850998', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98186, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966135', 3966135, '513.192200', '8.999973', '265.080597', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97914, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966139', 3966139, '515.692383', '8.999988', '223.561798', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966142', 3966142, '536.347412', '9.170974', '198.358597', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97370, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966143', 3966143, '480.563690', '11.275560', '254.698898', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97098, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966185', 3966185, '225.319901', '54.344410', '564.565430', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96832, 1, 0, 0, 0, 27, 30059, 0, 0, 0), +(311, 'e0068', 'bnpc3966191', 3966191, '240.668304', '51.838989', '562.298584', 170, 0, 0, 0, 1, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96560, 1, 0, 0, 0, 27, 30063, 0, 0, 0), +(311, 'e0068', 'bnpc3966193', 3966193, '237.524506', '52.241501', '560.929688', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96288, 1, 0, 0, 0, 27, 30059, 0, 0, 0), +(311, 'e0068', 'bnpc3966195', 3966195, '238.675705', '52.019920', '558.354919', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96016, 1, 0, 0, 0, 27, 30059, 0, 0, 0), +(311, 'e0068', 'bnpc3966197', 3966197, '234.047104', '60.363258', '532.494019', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95744, 1, 0, 0, 0, 27, 30060, 0, 0, 0), +(311, 'e0068', 'bnpc3966198', 3966198, '232.410202', '60.349369', '532.799194', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95472, 1, 0, 0, 0, 27, 30060, 0, 0, 0), +(311, 'e0068', 'bnpc3966204', 3966204, '318.658203', '37.686790', '233.860397', 328, 0, 0, 0, 0, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95206, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(311, 'e0068', 'bnpc3966224', 3966224, '322.804413', '37.674561', '206.378204', 328, 0, 0, 0, 0, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94934, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(311, 'e0068', 'bnpc3966226', 3966226, '330.596191', '36.181511', '217.927505', 328, 0, 0, 0, 1, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94662, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(311, 'e0068', 'bnpc3966237', 3966237, '325.863403', '37.460819', '205.065903', 329, 0, 0, 0, 0, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94396, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(311, 'e0068', 'bnpc3966240', 3966240, '316.045197', '38.194221', '236.654907', 329, 0, 0, 0, 0, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94124, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(311, 'e0068', 'bnpc3966241', 3966241, '313.378113', '38.056759', '220.080307', 329, 0, 0, 0, 1, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93852, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(311, 'e0068', 'bnpc3966242', 3966242, '334.248901', '36.394051', '239.885498', 331, 0, 0, 0, 1, 6, 0, 0, 373, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93586, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(311, 'e0068', 'bnpc3966243', 3966243, '315.073486', '38.121010', '233.173004', 331, 0, 0, 0, 0, 6, 0, 0, 373, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93314, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(311, 'e0068', 'bnpc3966244', 3966244, '315.354797', '39.330219', '197.917297', 331, 0, 0, 0, 1, 6, 0, 0, 373, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93042, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(311, 'e0068', 'bnpc3966270', 3966270, '307.454010', '32.229580', '527.673584', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92776, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966278', 3966278, '282.918610', '42.498619', '402.770111', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92504, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966279', 3966279, '331.480194', '37.450062', '426.526886', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92232, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966281', 3966281, '411.184814', '27.695080', '488.273407', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966285', 3966285, '430.838409', '18.936399', '772.152222', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966288', 3966288, '445.507111', '13.025030', '702.326416', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966289', 3966289, '424.795807', '18.326040', '592.889221', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966291', 3966291, '236.732101', '53.718140', '616.643982', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966296', 3966296, '309.773285', '35.843399', '593.896301', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966311', 3966311, '460.890411', '14.134280', '275.800812', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966322', 3966322, '462.973907', '13.992480', '272.785492', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966331', 3966331, '436.391907', '17.167070', '328.657104', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966340', 3966340, '429.404114', '36.819969', '132.829697', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966343', 3966343, '438.622589', '35.297611', '196.059998', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966351', 3966351, '334.525085', '38.941391', '327.366913', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966355', 3966355, '368.808807', '33.632469', '253.976501', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85976, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966368', 3966368, '523.699890', '41.479031', '549.176697', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88696, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966375', 3966375, '522.691589', '41.801552', '546.826721', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88424, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966380', 3966380, '470.281799', '34.323669', '551.294006', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88152, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966581', 3966581, '350.408997', '30.882040', '725.654419', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87832, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966589', 3966589, '327.600098', '31.811251', '702.823730', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966594', 3966594, '368.138489', '29.659201', '745.547729', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87336, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966604', 3966604, '313.217499', '38.596272', '433.198486', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87022, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966613', 3966613, '414.287506', '29.365601', '516.322510', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86750, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966614', 3966614, '298.856689', '37.864361', '705.197083', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86472, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966630', 3966630, '399.514893', '36.100700', '222.557495', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86206, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966825', 3966825, '331.662201', '39.448109', '166.458801', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85704, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966829', 3966829, '334.347809', '38.871632', '163.773193', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85432, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966836', 3966836, '252.163696', '50.856651', '559.044678', 170, 0, 0, 0, 1, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85136, 1, 0, 0, 0, 27, 30063, 0, 0, 0), +(311, 'e0068', 'bnpc3966837', 3966837, '231.653397', '53.322651', '577.867188', 170, 0, 0, 0, 1, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84864, 1, 0, 0, 0, 27, 30063, 0, 0, 0), +(311, 'e0068', 'bnpc3966848', 3966848, '422.451294', '35.254921', '169.566895', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966849', 3966849, '428.958496', '37.325779', '102.728203', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966850', 3966850, '454.571808', '12.465490', '151.488907', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966851', 3966851, '459.783295', '12.487550', '182.865997', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966852', 3966852, '442.573303', '36.806381', '114.818901', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966853', 3966853, '426.489105', '37.229988', '104.534302', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966854', 3966854, '418.872314', '35.403931', '158.459900', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966855', 3966855, '446.885712', '37.061001', '190.656296', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966856', 3966856, '414.331604', '34.928871', '162.227295', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966857', 3966857, '485.124786', '44.077980', '161.297897', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82174, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966858', 3966858, '501.047394', '49.527180', '137.380997', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966859', 3966859, '476.396698', '32.421059', '208.906006', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81630, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966860', 3966860, '508.647186', '50.047180', '135.756897', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966861', 3966861, '517.712280', '31.487631', '183.328796', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81086, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966862', 3966862, '519.568970', '31.405090', '185.390900', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966932', 3966932, '-107.621902', '60.001968', '671.706909', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80092, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966938', 3966938, '-100.602798', '64.316727', '689.204224', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79820, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966939', 3966939, '-90.836998', '63.675850', '681.605225', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79548, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966940', 3966940, '-166.796707', '62.704250', '685.247925', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79276, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966941', 3966941, '-161.909302', '60.470612', '677.937500', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79004, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966942', 3966942, '-94.041397', '56.778770', '634.607422', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78732, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966944', 3966944, '-1.239546', '50.637169', '509.984985', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57280, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966947', 3966947, '-45.667271', '51.856998', '574.469299', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966949', 3966949, '-46.905361', '43.370399', '516.468689', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58640, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966950', 3966950, '-54.126480', '51.789631', '583.855896', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966951', 3966951, '-73.928673', '43.410858', '544.963013', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57552, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966952', 3966952, '-103.159698', '37.284828', '459.933807', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57824, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966954', 3966954, '-98.466507', '40.512650', '504.295288', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58096, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966958', 3966958, '-120.704201', '52.333061', '327.006989', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56470, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966982', 3966982, '-87.449501', '62.424610', '345.723602', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56742, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966983', 3966983, '-186.848404', '37.966789', '344.289215', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55382, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966984', 3966984, '-146.753799', '46.975368', '343.366302', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966987', 3966987, '-97.896507', '47.301010', '283.912598', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966988', 3966988, '-144.492203', '41.001541', '290.455414', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56198, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966993', 3966993, '-126.139099', '49.532829', '320.589905', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55926, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966994', 3966994, '-169.229095', '40.705471', '319.673706', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3966998', 3966998, '-196.612503', '34.134380', '262.104187', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78466, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3966999', 3966999, '-130.632507', '34.213940', '238.391602', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78194, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967000', 3967000, '-324.116913', '44.541031', '362.416992', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77922, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967001', 3967001, '-119.190002', '34.214378', '236.487305', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77650, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967002', 3967002, '-60.455029', '34.214390', '222.702805', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967003', 3967003, '-235.382202', '34.214390', '291.120911', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77106, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967006', 3967006, '-168.902100', '54.611992', '635.431396', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76828, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967008', 3967008, '-220.172501', '52.819180', '602.254089', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76568, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967012', 3967012, '-153.429504', '54.795101', '616.906921', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76296, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967013', 3967013, '-54.184830', '43.686531', '393.575897', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76024, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967015', 3967015, '-4.951565', '40.562092', '383.766205', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75752, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967016', 3967016, '-144.853897', '44.663109', '395.559601', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75480, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967019', 3967019, '-215.347198', '46.906521', '443.329498', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75208, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967021', 3967021, '-195.910599', '47.775951', '498.802094', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74936, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967023', 3967023, '-255.848099', '45.242950', '527.916321', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74664, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967024', 3967024, '-193.863693', '46.459171', '567.863098', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74392, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967040', 3967040, '-227.654999', '44.566780', '550.036011', 321, 0, 0, 0, 1, 6, 0, 0, 355, 0, '0.000000', 34, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967048', 3967048, '-245.306793', '50.107510', '203.033295', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967053', 3967053, '-231.670807', '44.156860', '229.440903', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967054', 3967054, '-239.386597', '43.805309', '236.070206', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73292, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967056', 3967056, '-308.054810', '53.123970', '249.850693', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73020, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967057', 3967057, '-279.167908', '51.349911', '221.039795', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967060', 3967060, '121.580902', '83.791519', '-63.093380', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72476, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967063', 3967063, '136.610001', '90.130913', '-77.008636', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72204, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967064', 3967064, '138.671295', '88.429123', '-72.254028', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71932, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967067', 3967067, '109.981201', '88.091492', '-91.405563', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71660, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967069', 3967069, '117.567299', '75.280457', '-31.443140', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71388, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967071', 3967071, '79.369293', '74.087349', '-7.523047', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71116, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967072', 3967072, '87.348160', '76.560066', '-62.532970', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70844, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967079', 3967079, '119.521301', '70.482773', '15.235610', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70572, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967232', 3967232, '-65.956238', '40.845070', '201.759201', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967236', 3967236, '-112.260201', '41.370239', '200.130005', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967238', 3967238, '-113.662697', '41.688950', '199.025208', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69780, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967239', 3967239, '-116.857201', '40.502911', '201.676895', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967240', 3967240, '-149.497101', '46.658821', '173.189301', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967241', 3967241, '-154.094101', '46.603470', '174.736206', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967242', 3967242, '-150.899704', '46.878399', '172.084595', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68692, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967244', 3967244, '-164.773300', '47.053860', '187.026794', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68420, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967245', 3967245, '-132.803101', '48.519630', '164.560394', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68148, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967246', 3967246, '-166.175903', '47.201370', '185.921997', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67876, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967247', 3967247, '-96.265427', '45.412338', '178.992096', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67604, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967248', 3967248, '-94.862892', '45.333729', '180.096893', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967250', 3967250, '-255.398605', '55.315521', '193.396301', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967251', 3967251, '-250.814499', '43.443932', '254.456497', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967252', 3967252, '-0.594336', '41.413090', '300.056488', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967253', 3967253, '-12.474910', '40.981110', '345.808990', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967254', 3967254, '-10.307140', '40.161018', '348.964508', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967255', 3967255, '-118.867302', '45.441109', '407.337494', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967256', 3967256, '-276.173096', '44.724140', '328.084198', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967257', 3967257, '-205.867706', '41.135929', '381.384705', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967260', 3967260, '-206.799393', '41.163960', '383.136597', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967261', 3967261, '-72.173149', '34.214340', '223.018997', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64618, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(311, 'e0068', 'bnpc3967262', 3967262, '-188.542496', '34.213940', '259.734406', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967263', 3967263, '-141.513000', '47.998859', '333.870789', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967264', 3967264, '-83.307388', '49.447201', '285.004303', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967265', 3967265, '-94.670761', '58.438599', '656.570923', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967266', 3967266, '-155.296707', '63.642780', '694.602295', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967267', 3967267, '-132.048401', '53.203049', '637.721985', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967268', 3967268, '-190.779999', '52.425701', '609.329773', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967269', 3967269, '-193.352798', '52.082130', '607.753784', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62442, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967270', 3967270, '-147.991806', '50.188049', '564.462830', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967271', 3967271, '-235.545898', '44.762379', '563.043518', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967272', 3967272, '-240.728607', '45.133591', '492.780487', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967275', 3967275, '-304.364014', '44.566818', '466.077515', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967276', 3967276, '-310.552399', '44.566750', '465.462799', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967277', 3967277, '-80.421982', '37.210289', '478.231903', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967278', 3967278, '-26.911261', '50.888149', '543.665771', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60538, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967280', 3967280, '-89.173988', '45.007820', '563.858215', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60266, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967290', 3967290, '76.708450', '77.890778', '-16.653400', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967292', 3967292, '140.583405', '74.160980', '12.732710', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967294', 3967294, '140.883408', '74.042503', '11.184050', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59450, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967295', 3967295, '116.940697', '83.753616', '-66.031197', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc3967308', 3967308, '-40.160881', '45.050510', '523.243713', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57008, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967595', 3967595, '-210.406693', '40.237991', '366.170685', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54536, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967644', 3967644, '-273.564209', '43.724400', '334.223694', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54264, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc3967651', 3967651, '-139.989197', '48.125320', '545.608582', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53992, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(311, 'e0068', 'bnpc4057235', 4057235, '404.560089', '20.446920', '453.365112', 789, 0, 0, 0, 0, 6, 0, 0, 1274, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23074, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(311, 'e0068', 'bnpc4057253', 4057253, '464.607697', '13.736580', '386.294098', 790, 0, 0, 0, 0, 6, 0, 0, 1274, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22808, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(311, 'e0068', 'bnpc4057266', 4057266, '521.743530', '9.007294', '564.869080', 789, 0, 0, 0, 0, 6, 0, 0, 1274, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22530, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(311, 'e0068', 'bnpc4057293', 4057293, '8.463147', '64.817741', '50.653370', 788, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22270, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(311, 'e0068', 'bnpc4312742', 4312742, '183.886398', '74.509773', '-5.691650', 55, 0, 0, 0, 1, 6, 0, 0, 1821, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53536, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312743', 4312743, '204.760696', '75.181152', '-29.739870', 61, 0, 0, 0, 1, 6, 0, 0, 1822, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53270, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312744', 4312744, '232.166000', '75.577881', '-4.745544', 62, 0, 0, 0, 1, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53004, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312745', 4312745, '206.103500', '75.547363', '-31.540409', 63, 0, 0, 0, 1, 6, 0, 0, 1824, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52738, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312746', 4312746, '212.115601', '74.235107', '-9.903137', 64, 0, 0, 0, 1, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52472, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312748', 4312748, '242.298004', '74.479248', '-23.727840', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52188, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(311, 'e0068', 'bnpc4312759', 4312759, '335.849396', '76.161110', '-11.489540', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51916, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(311, 'e0068', 'bnpc4312813', 4312813, '429.465088', '76.157707', '-63.431820', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51644, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(311, 'e0068', 'bnpc4312814', 4312814, '387.136505', '76.218750', '-61.814331', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51372, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(311, 'e0068', 'bnpc4312815', 4312815, '287.367798', '76.123413', '-2.225652', 55, 0, 0, 0, 1, 6, 0, 0, 1821, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51088, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312816', 4312816, '314.246796', '76.070213', '-34.506378', 62, 0, 0, 0, 1, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50828, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312817', 4312817, '300.532501', '76.472076', '-15.301860', 61, 0, 0, 0, 1, 6, 0, 0, 1822, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50550, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312818', 4312818, '301.875214', '76.471893', '-17.102390', 63, 0, 0, 0, 1, 6, 0, 0, 1824, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50290, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312819', 4312819, '279.745087', '76.218422', '-22.320280', 64, 0, 0, 0, 1, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50024, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312874', 4312874, '444.379700', '76.086662', '-13.359130', 61, 0, 0, 0, 1, 6, 0, 0, 1822, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49734, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312875', 4312875, '358.754791', '76.249268', '-34.500729', 64, 0, 0, 0, 1, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49480, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312876', 4312876, '409.780914', '76.432373', '0.442505', 63, 0, 0, 0, 1, 6, 0, 0, 1824, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49202, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312877', 4312877, '412.466614', '76.066162', '-1.327576', 62, 0, 0, 0, 1, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48924, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312878', 4312878, '373.531311', '76.412163', '-19.283190', 55, 0, 0, 0, 1, 6, 0, 0, 1821, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48640, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312880', 4312880, '481.615387', '76.891281', '-107.208000', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48380, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(311, 'e0068', 'bnpc4312881', 4312881, '474.740814', '76.178452', '-92.284813', 64, 0, 0, 0, 1, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48120, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312882', 4312882, '476.438690', '76.178452', '-61.350609', 55, 0, 0, 0, 1, 6, 0, 0, 1821, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47824, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312883', 4312883, '433.289612', '76.178452', '-103.308701', 61, 0, 0, 0, 1, 6, 0, 0, 1822, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47558, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312885', 4312885, '455.140289', '76.178452', '-125.088303', 63, 0, 0, 0, 1, 6, 0, 0, 1824, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47298, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312886', 4312886, '435.969788', '76.178452', '-103.270302', 62, 0, 0, 0, 1, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47020, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(311, 'e0068', 'bnpc4312887', 4312887, '389.036896', '76.218277', '-42.814720', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc4312890', 4312890, '430.472198', '76.127197', '-39.200500', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc4312892', 4312892, '355.095093', '76.140678', '-93.768280', 201, 0, 0, 0, 0, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc4312893', 4312893, '362.949707', '76.156097', '-101.645103', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc4312895', 4312895, '376.375610', '79.863983', '-55.369541', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45672, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(311, 'e0068', 'bnpc4312896', 4312896, '401.510406', '79.863983', '-80.450699', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45400, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(311, 'e0068', 'bnpc4312897', 4312897, '448.056213', '79.863983', '-48.739960', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45128, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(311, 'e0068', 'bnpc4312908', 4312908, '336.851501', '79.863983', '1.148477', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44856, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(311, 'e0068', 'bnpc4312909', 4312909, '336.851501', '79.863983', '-34.551071', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44584, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(311, 'e0068', 'bnpc4312910', 4312910, '465.150513', '76.178452', '-77.636757', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc4312911', 4312911, '456.877289', '76.178452', '-100.076103', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(311, 'e0068', 'bnpc4312912', 4312912, '389.015991', '76.084824', '-102.386803', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43756, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(311, 'e0068', 'bnpc4312913', 4312913, '354.466187', '76.065430', '-67.588791', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43484, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(311, 'e0068', 'bnpc4621604', 4621604, '298.139404', '60.044762', '414.959106', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23804, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4057759', 4057759, '-167.171906', '25.428049', '-361.451508', 798, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27716, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(312, 'e0069', 'bnpc4057772', 4057772, '-250.234695', '27.956100', '-323.354889', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27450, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(312, 'e0069', 'bnpc4057782', 4057782, '-56.647308', '26.533920', '-382.801697', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27184, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(312, 'e0069', 'bnpc4057793', 4057793, '-250.333099', '7.167006', '413.444885', 1342, 0, 0, 0, 0, 6, 0, 0, 1278, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26918, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(312, 'e0069', 'bnpc4128048', 4128048, '-402.311707', '13.399570', '-383.545898', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128049', 4128049, '-398.984802', '13.399560', '-382.573486', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128050', 4128050, '-398.703003', '13.473630', '-399.130188', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128051', 4128051, '-349.172211', '14.053470', '-371.236786', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128052', 4128052, '-363.032715', '12.848900', '-352.263092', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128053', 4128053, '-344.625000', '14.389220', '-374.166504', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128054', 4128054, '-361.864685', '12.175190', '-319.089905', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128055', 4128055, '-357.923309', '12.323080', '-315.838715', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128056', 4128056, '-366.900909', '12.044570', '-313.915009', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128057', 4128057, '-345.540588', '14.114500', '-368.795288', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128058', 4128058, '-306.752106', '19.363649', '-347.920990', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128059', 4128059, '-303.998688', '19.825630', '-345.763611', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128061', 4128061, '-329.335510', '13.992490', '-311.024689', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128062', 4128062, '-334.273499', '12.735820', '-272.286011', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128063', 4128063, '-332.188293', '12.773240', '-274.762512', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128064', 4128064, '-275.553406', '19.811119', '-300.743988', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128065', 4128065, '-277.943207', '19.468559', '-300.616791', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128066', 4128066, '-216.697205', '19.814110', '-291.068909', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128067', 4128067, '-219.086899', '19.669310', '-290.941803', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128068', 4128068, '-215.855301', '18.862061', '-286.262787', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128069', 4128069, '-251.503403', '17.336300', '-282.862091', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155656, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128071', 4128071, '-277.037994', '27.629240', '-446.633911', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155390, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128072', 4128072, '-293.590302', '20.134371', '-406.301605', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128073', 4128073, '-241.107803', '23.575130', '-427.206787', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154846, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128074', 4128074, '-233.356293', '23.788820', '-423.636292', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128075', 4128075, '-192.850494', '24.439541', '-471.427490', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128076', 4128076, '-225.719101', '22.713610', '-511.794586', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128078', 4128078, '-234.581894', '23.154600', '-503.730499', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128080', 4128080, '-99.297150', '11.812300', '-624.887512', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128081', 4128081, '-101.063499', '14.100460', '-548.412415', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128082', 4128082, '-57.090172', '5.200434', '-542.299622', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128083', 4128083, '-1.143898', '7.618513', '-528.769287', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128085', 4128085, '5.080926', '7.618519', '-537.079224', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128089', 4128089, '-156.176102', '17.047890', '-567.528198', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128090', 4128090, '-129.437500', '14.855080', '-587.989197', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128095', 4128095, '-28.120790', '6.618664', '-619.769470', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151576, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128096', 4128096, '-29.463200', '6.619354', '-617.967285', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151304, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128097', 4128097, '-24.055080', '6.620687', '-614.076782', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151032, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128098', 4128098, '-25.895201', '4.928910', '-647.637573', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150760, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128099', 4128099, '-12.619260', '4.562378', '-658.594727', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150488, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128100', 4128100, '-9.942262', '4.207929', '-660.454895', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150216, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128102', 4128102, '-63.811069', '7.713764', '-671.437012', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149944, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128103', 4128103, '-56.610531', '6.680237', '-675.225220', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149672, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128104', 4128104, '-63.511070', '7.475504', '-669.236084', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149400, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128105', 4128105, '-82.276627', '12.964970', '-712.882813', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149128, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128106', 4128106, '-75.376091', '12.702090', '-718.871826', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148856, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128107', 4128107, '-82.576622', '13.183150', '-715.083679', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148584, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128108', 4128108, '-92.149231', '14.084050', '-719.172974', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128109', 4128109, '-50.418240', '10.700190', '-716.867188', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128110', 4128110, '-36.628948', '10.796120', '-721.924072', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128111', 4128111, '-34.110340', '9.565180', '-718.908081', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128112', 4128112, '-22.776590', '6.822047', '-697.630371', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128113', 4128113, '39.229660', '3.128414', '-685.332397', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128114', 4128114, '36.552662', '2.610799', '-683.472229', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128115', 4128115, '42.912899', '6.469104', '-652.670776', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128119', 4128119, '-65.089844', '4.250028', '-634.668091', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128250', 4128250, '40.021858', '6.264256', '-433.494293', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128252', 4128252, '55.418652', '12.390480', '-491.216187', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128253', 4128253, '77.684799', '10.281420', '-468.654602', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128254', 4128254, '89.542992', '10.303750', '-428.138397', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128255', 4128255, '137.875504', '10.065270', '-451.167206', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128256', 4128256, '35.210232', '9.730854', '-485.420990', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128257', 4128257, '183.695404', '14.216050', '-465.348206', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128258', 4128258, '-100.389198', '14.631890', '-227.392395', 2259, 0, 0, 0, 1, 6, 0, 0, 1998, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123312, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128259', 4128259, '-97.276253', '14.631890', '-215.328506', 2260, 0, 0, 0, 1, 6, 0, 0, 1999, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123046, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128260', 4128260, '-75.621529', '14.631890', '-214.231506', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128261', 4128261, '-120.924698', '14.520920', '-211.301697', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128262', 4128262, '-73.457458', '14.731040', '-236.287506', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128263', 4128263, '-89.280579', '15.629060', '-251.062103', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128264', 4128264, '-112.932098', '15.533810', '-246.046600', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128265', 4128265, '-121.350601', '14.949070', '-239.633499', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128269', 4128269, '-1.754883', '15.457340', '-292.500214', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142358, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(312, 'e0069', 'bnpc4128270', 4128270, '-5.172852', '15.518430', '-288.410797', 169, 0, 0, 0, 0, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142092, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4128271', 4128271, '-26.595400', '16.964270', '-310.556000', 169, 0, 0, 0, 1, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141820, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4128272', 4128272, '-6.968165', '15.539780', '-293.998108', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141542, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4128273', 4128273, '-3.867146', '14.547090', '-326.988495', 169, 0, 0, 0, 0, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141276, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(312, 'e0069', 'bnpc4128274', 4128274, '-1.742153', '14.339200', '-330.423615', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140998, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(312, 'e0069', 'bnpc4128275', 4128275, '-16.894220', '15.891530', '-344.307587', 169, 0, 0, 0, 1, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140732, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4128276', 4128276, '-36.352852', '15.737740', '-281.239685', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140454, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4128285', 4128285, '86.811409', '3.880296', '-641.041382', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140194, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(312, 'e0069', 'bnpc4129531', 4129531, '154.758194', '4.167945', '-538.420471', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139922, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(312, 'e0069', 'bnpc4129542', 4129542, '86.147247', '2.628398', '-610.838013', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139656, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4130363', 4130363, '99.626099', '3.646851', '-655.359680', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4130365', 4130365, '137.834702', '3.433289', '-594.293091', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139112, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4130366', 4130366, '148.899902', '5.148987', '-530.581482', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138840, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4130369', 4130369, '124.284698', '2.822876', '-604.577820', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138562, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(312, 'e0069', 'bnpc4130372', 4130372, '124.864502', '2.731323', '-606.225708', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138296, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(312, 'e0069', 'bnpc4130374', 4130374, '161.030197', '2.624552', '-609.139282', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138018, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4130377', 4130377, '161.330200', '3.682087', '-563.744324', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137746, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4130378', 4130378, '98.850403', '6.344423', '-544.399780', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137480, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(312, 'e0069', 'bnpc4130379', 4130379, '100.378799', '6.344423', '-543.894287', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137202, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(312, 'e0069', 'bnpc4130380', 4130380, '11.922580', '6.840849', '-592.719177', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136936, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(312, 'e0069', 'bnpc4130381', 4130381, '13.302400', '7.038995', '-591.807983', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136658, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(312, 'e0069', 'bnpc4130382', 4130382, '19.505831', '19.298901', '-624.247314', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136392, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(312, 'e0069', 'bnpc4130383', 4130383, '20.782539', '19.319000', '-625.061401', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136114, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(312, 'e0069', 'bnpc4130386', 4130386, '37.483280', '18.026581', '-609.961670', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135848, 1, 0, 0, 0, 20, 30072, 0, 0, 0), +(312, 'e0069', 'bnpc4130388', 4130388, '36.074890', '17.983601', '-608.959229', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135570, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(312, 'e0069', 'bnpc4130389', 4130389, '37.643921', '17.440981', '-596.398926', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135298, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4130390', 4130390, '24.155029', '17.990360', '-604.119995', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135032, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4130403', 4130403, '22.943991', '6.252352', '-608.046997', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134754, 1, 0, 0, 0, 20, 30083, 0, 0, 0), +(312, 'e0069', 'bnpc4130404', 4130404, '38.940979', '7.903199', '-595.086975', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134488, 1, 0, 0, 0, 20, 30077, 0, 0, 0), +(312, 'e0069', 'bnpc4130431', 4130431, '66.514038', '9.567322', '-576.257019', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134216, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4130432', 4130432, '18.704010', '7.066027', '-628.667725', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133938, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4130682', 4130682, '95.351791', '6.393626', '-542.884888', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133666, 1, 0, 0, 0, 20, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4130683', 4130683, '84.609253', '6.344424', '-545.683472', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133400, 1, 0, 0, 0, 20, 30077, 0, 0, 0), +(312, 'e0069', 'bnpc4130705', 4130705, '92.140930', '6.705567', '-559.693420', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133128, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4130708', 4130708, '98.243317', '6.344424', '-537.346680', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132850, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4130800', 4130800, '-385.468414', '13.547760', '-376.772614', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4130805', 4130805, '-326.314209', '15.945620', '-388.265808', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4130806', 4130806, '-305.992188', '11.810610', '-274.036194', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4130807', 4130807, '-231.864395', '4.434839', '-243.585495', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4130808', 4130808, '-229.445007', '4.279073', '-242.303406', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4130809', 4130809, '-189.227203', '19.363649', '-294.819611', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4130811', 4130811, '-71.915771', '15.823550', '-267.627991', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4130813', 4130813, '-70.176270', '15.579410', '-265.919006', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4130814', 4130814, '-119.981796', '19.729919', '-275.562714', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4130819', 4130819, '-21.895340', '6.009452', '-485.204193', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4130821', 4130821, '-26.265631', '3.170915', '-553.012085', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4130827', 4130827, '-105.577202', '20.767460', '-487.358002', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4130829', 4130829, '-155.776306', '20.648140', '-534.493225', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4130832', 4130832, '-62.007500', '3.030127', '-631.860474', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4130836', 4130836, '-61.692261', '4.837097', '-580.163330', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4130839', 4130839, '-91.172493', '13.691580', '-698.557617', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4130842', 4130842, '-16.285299', '3.398638', '-675.862915', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4131461', 4131461, '82.139282', '2.612924', '-669.048584', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4131466', 4131466, '80.602791', '2.681827', '-667.547119', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4131467', 4131467, '142.968597', '2.741290', '-677.939270', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4131470', 4131470, '166.607895', '8.180286', '-517.830872', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4131473', 4131473, '97.571892', '10.129180', '-455.764313', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4131477', 4131477, '48.494888', '6.708367', '-437.703308', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4131480', 4131480, '12.300930', '7.902957', '-513.924316', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4131487', 4131487, '-19.243019', '5.989767', '-481.780304', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4131489', 4131489, '45.965000', '4.000000', '-353.260895', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4131491', 4131491, '44.038780', '4.000000', '-355.090515', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4131492', 4131492, '-277.563599', '21.317619', '-408.466705', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4131494', 4131494, '-220.691895', '23.733870', '-445.561493', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4131495', 4131495, '-203.367996', '20.050930', '-538.838074', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132134', 4132134, '-23.739849', '6.019080', '-587.944885', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124382, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132161', 4132161, '-219.349106', '4.013124', '-175.605194', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132178', 4132178, '-223.713196', '3.981025', '-172.004196', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132179', 4132179, '-217.822601', '5.111694', '-152.941193', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132181', 4132181, '-255.092102', '4.214314', '-101.690002', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132182', 4132182, '-260.379913', '3.866467', '-142.158005', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120264, 5, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(312, 'e0069', 'bnpc4132184', 4132184, '-284.843506', '4.387352', '-61.849739', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119992, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132186', 4132186, '-281.833313', '4.514743', '-60.248520', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132187', 4132187, '-330.772186', '4.539914', '-70.267380', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132191', 4132191, '-395.325806', '4.134359', '-44.501831', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132194', 4132194, '-412.872314', '3.503397', '-46.007912', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132197', 4132197, '-392.828613', '4.906980', '-40.147282', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132355', 4132355, '-121.233002', '7.370056', '452.140015', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90682, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132356', 4132356, '-38.284969', '7.583679', '405.569489', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118360, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132357', 4132357, '-30.167110', '8.163513', '413.107391', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118088, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132358', 4132358, '-78.294067', '8.377136', '475.181000', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90410, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132359', 4132359, '-112.962601', '7.400574', '493.125702', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90138, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132360', 4132360, '-118.791496', '6.423950', '489.219513', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89866, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132361', 4132361, '-4.867676', '10.116700', '466.422485', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117816, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132362', 4132362, '74.448730', '8.224609', '416.708588', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117544, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132363', 4132363, '-96.391296', '12.802250', '545.708374', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117272, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132364', 4132364, '-162.951096', '7.675232', '421.805206', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89594, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132367', 4132367, '-195.513901', '8.987488', '460.166290', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89322, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4132371', 4132371, '-247.455597', '14.572330', '601.159729', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132373', 4132373, '-265.674896', '14.389220', '594.628723', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132374', 4132374, '-409.506897', '2.863013', '643.319275', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132375', 4132375, '-373.173615', '1.482062', '830.041687', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132376', 4132376, '-303.572998', '0.554237', '737.432800', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132377', 4132377, '-285.938812', '8.895996', '674.952271', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115664, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132378', 4132378, '-321.243011', '0.748059', '738.623108', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132379', 4132379, '-228.992203', '-0.198364', '779.568115', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132381', 4132381, '-214.807693', '1.408311', '692.128296', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132385', 4132385, '30.807980', '25.375731', '552.178101', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114576, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132386', 4132386, '86.625488', '18.020809', '513.389587', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114304, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132387', 4132387, '152.666504', '8.346619', '585.931030', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132389', 4132389, '95.506104', '14.938600', '536.278198', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132390', 4132390, '-41.311451', '8.914728', '618.996887', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132391', 4132391, '55.148140', '12.639380', '622.588928', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132394', 4132394, '99.351440', '5.569519', '656.366699', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132395', 4132395, '49.166569', '12.003170', '629.394592', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132398', 4132398, '-155.296402', '-0.249691', '684.087891', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112406, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132402', 4132402, '-128.552399', '-6.248472', '698.360413', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132403', 4132403, '-82.598297', '-7.092235', '672.947815', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132404', 4132404, '-47.857578', '-2.212809', '690.802612', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132405', 4132405, '-43.152802', '-0.921682', '679.936829', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132406', 4132406, '-28.558571', '-0.125700', '752.652527', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132407', 4132407, '-54.816002', '-0.469275', '771.766785', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132408', 4132408, '-157.322098', '-1.367114', '781.628418', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132409', 4132409, '-162.195999', '-0.433001', '772.940186', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132410', 4132410, '-153.362198', '0.387354', '735.776123', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132411', 4132411, '-99.790901', '-2.270120', '789.114685', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132415', 4132415, '-174.253799', '4.062513', '619.920715', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109408, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4132416', 4132416, '103.926498', '3.903357', '915.233887', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4133094', 4133094, '136.949707', '3.216623', '756.322510', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4133095', 4133095, '256.006012', '6.944463', '820.505676', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108604, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4133096', 4133096, '200.758102', '5.104731', '868.748230', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4133097', 4133097, '152.132797', '4.348816', '821.800720', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108060, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4133098', 4133098, '194.324295', '4.776027', '863.148987', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107788, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4133099', 4133099, '229.417892', '4.637394', '902.513123', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107516, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4133100', 4133100, '83.255379', '4.406397', '848.491577', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107244, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4133102', 4133102, '-428.485687', '5.673192', '569.950806', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106978, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4133105', 4133105, '-431.695404', '7.408978', '526.095520', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4133106', 4133106, '-391.061707', '7.983613', '532.203613', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106434, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4133107', 4133107, '-311.320892', '6.989801', '543.801514', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106162, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4133108', 4133108, '-385.831696', '6.261216', '581.952576', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105890, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4133109', 4133109, '-404.812103', '8.978989', '481.090607', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105618, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4133111', 4133111, '-435.612488', '7.492519', '530.732178', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4133112', 4133112, '-368.011810', '7.345028', '545.098206', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105074, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4133142', 4133142, '2.160542', '13.238140', '867.918884', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133143', 4133143, '-9.752866', '13.238140', '862.073975', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104452, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133146', 4133146, '-38.601059', '-3.610238', '870.833984', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104180, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133147', 4133147, '3.913166', '5.198262', '844.633179', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133149', 4133149, '-23.697269', '-3.494385', '830.106018', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103636, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133150', 4133150, '-47.257198', '-4.837158', '821.164185', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133152', 4133152, '-99.204224', '-4.564651', '854.179871', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103092, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133153', 4133153, '-91.265266', '-5.356507', '842.750183', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133155', 4133155, '-104.580101', '-4.512669', '850.706116', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102542, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133160', 4133160, '-40.085510', '-3.585876', '880.033630', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102270, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133166', 4133166, '23.838100', '-0.302399', '832.912781', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133167', 4133167, '31.011000', '5.208305', '877.738525', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101732, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133171', 4133171, '23.808920', '0.563182', '709.098083', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101520, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133175', 4133175, '-208.948196', '-2.203250', '889.001587', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101272, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133854', 4133854, '-169.319504', '-3.498206', '849.864197', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101000, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133856', 4133856, '-294.270294', '5.081238', '808.072021', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100728, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133857', 4133857, '-252.533798', '3.371831', '695.150513', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100456, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133858', 4133858, '-360.768585', '11.544860', '664.182312', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100184, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133859', 4133859, '-93.662338', '7.398253', '582.921509', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99912, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133860', 4133860, '-173.964798', '7.509760', '511.382202', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133861', 4133861, '-63.357861', '7.614773', '373.184204', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99368, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133862', 4133862, '30.766090', '9.412603', '441.489288', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133863', 4133863, '-36.250969', '13.359000', '500.993500', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133864', 4133864, '127.540901', '8.141046', '481.803406', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133865', 4133865, '80.714157', '14.492840', '579.852722', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133866', 4133866, '-16.843950', '17.676241', '580.152710', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133867', 4133867, '24.143961', '2.411896', '671.088074', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133868', 4133868, '140.561096', '7.403133', '627.360474', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133869', 4133869, '96.573219', '4.412809', '794.674683', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133870', 4133870, '197.362503', '4.724640', '803.828918', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133872', 4133872, '130.937607', '8.480643', '895.933289', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133874', 4133874, '-1.962330', '-3.925701', '819.197571', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133877', 4133877, '-40.858768', '-4.353204', '847.265625', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4133878', 4133878, '-102.367302', '-5.084877', '872.023987', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4134559', 4134559, '-383.817688', '-1.011531', '901.672424', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4134560', 4134560, '-288.511597', '10.613900', '859.882324', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4134561', 4134561, '-351.064606', '6.710670', '883.250427', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4134562', 4134562, '200.244095', '10.299800', '649.805420', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92580, 1, 0, 0, 0, 24, 30058, 0, 0, 0), +(312, 'e0069', 'bnpc4134563', 4134563, '226.015793', '8.615845', '608.168701', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94750, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4134564', 4134564, '183.543503', '9.768476', '646.637512', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94400, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4135246', 4135246, '243.579697', '8.834900', '694.209229', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92308, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(312, 'e0069', 'bnpc4135251', 4135251, '295.658600', '8.371674', '624.363525', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94128, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4135252', 4135252, '224.383896', '9.530697', '660.020325', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93934, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4135254', 4135254, '219.592499', '8.926453', '678.248291', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91764, 1, 0, 0, 0, 24, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4135932', 4135932, '214.160294', '8.957031', '677.332581', 168, 0, 0, 0, 0, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93662, 1, 0, 0, 0, 24, 30060, 0, 0, 0), +(312, 'e0069', 'bnpc4135934', 4135934, '323.184814', '6.857816', '665.903687', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93312, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4135935', 4135935, '329.342285', '7.113992', '659.138672', 166, 0, 0, 0, 1, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92036, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4135936', 4135936, '289.562012', '7.415476', '729.328918', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93040, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4135937', 4135937, '238.798294', '8.794422', '722.661011', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92846, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4136006', 4136006, '-7.705540', '1.187112', '-24.901859', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4136008', 4136008, '-62.727612', '-2.486439', '-1.833968', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4136009', 4136009, '-95.048462', '-2.365173', '28.824221', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4136012', 4136012, '-46.066471', '8.494778', '123.064003', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4136033', 4136033, '-271.290192', '10.421880', '211.047501', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4136034', 4136034, '-264.806305', '7.399314', '162.775604', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4136037', 4136037, '-177.294601', '7.125916', '20.614929', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4136039', 4136039, '43.869629', '35.416142', '165.728104', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4136040', 4136040, '-23.361570', '40.512569', '240.161697', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4136226', 4136226, '-131.853699', '13.179720', '86.700623', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4137046', 4137046, '52.658810', '2.883911', '-257.434998', 740, 0, 0, 0, 0, 6, 0, 0, 253, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68890, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(312, 'e0069', 'bnpc4137048', 4137048, '55.832760', '2.914429', '-254.505203', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66992, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4137050', 4137050, '79.179077', '3.768982', '-271.045990', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71054, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4137065', 4137065, '21.736320', '5.244883', '-278.538391', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70782, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4137066', 4137066, '57.419899', '4.007567', '-299.611694', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66176, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4137892', 4137892, '-39.719238', '-0.900330', '-152.208694', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71326, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4137893', 4137893, '-91.355766', '-1.724304', '-58.945621', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68074, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4137894', 4137894, '-71.905777', '-1.906798', '-74.343948', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66448, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4137912', 4137912, '-174.456406', '39.993900', '160.387604', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72414, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4137914', 4137914, '-174.029205', '39.993900', '155.352097', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55834, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4137915', 4137915, '-169.848206', '39.993900', '158.342804', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65088, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4137927', 4137927, '-140.215103', '18.539671', '118.211700', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67264, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(312, 'e0069', 'bnpc4137928', 4137928, '-103.074699', '27.908689', '120.592003', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70516, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4137929', 4137929, '-135.423798', '37.125118', '176.409500', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72686, 2, 0, 0, 0, 42, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4137937', 4137937, '-95.628304', '45.792240', '195.269699', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56106, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(312, 'e0069', 'bnpc4137938', 4137938, '-61.905880', '44.937740', '212.664902', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65632, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(312, 'e0069', 'bnpc4137941', 4137941, '-88.853271', '43.381351', '152.910599', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65904, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(312, 'e0069', 'bnpc4137947', 4137947, '-24.093990', '38.986820', '206.042603', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55018, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4137948', 4137948, '-44.113831', '43.259281', '222.186493', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71598, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4137953', 4137953, '-163.534897', '40.000000', '151.507095', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55290, 2, 0, 0, 0, 42, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4137955', 4137955, '24.765381', '2.761841', '-0.717224', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66720, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(312, 'e0069', 'bnpc4137956', 4137956, '-79.850456', '45.792240', '193.377594', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71870, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4137966', 4137966, '-42.954159', '8.255066', '51.499149', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70244, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4137967', 4137967, '-112.382797', '12.191960', '75.883057', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68618, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4137979', 4137979, '75.730469', '25.253660', '204.974396', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55562, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4137980', 4137980, '111.253502', '13.778870', '152.666504', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72142, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4137982', 4137982, '124.528801', '13.931460', '143.175400', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65360, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(312, 'e0069', 'bnpc4137991', 4137991, '112.391602', '9.231154', '192.303696', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 49, 0, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 54734, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4137993', 4137993, '111.772301', '8.529010', '204.422699', 741, 0, 0, 0, 1, 6, 0, 0, 2296, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69700, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4138003', 4138003, '145.462601', '13.997980', '239.934799', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68346, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4138054', 4138054, '244.128998', '7.980469', '-24.460270', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40838, 2, 0, 0, 0, 44, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4138055', 4138055, '208.087296', '7.980469', '104.387001', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41110, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4138056', 4138056, '164.005997', '7.818353', '-31.478350', 739, 0, 0, 0, 1, 6, 0, 0, 1837, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40572, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4138061', 4138061, '345.326508', '8.771392', '-44.180370', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 48, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 41914, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4138062', 4138062, '273.090698', '11.734130', '-9.628479', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42464, 2, 0, 0, 0, 44, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4138065', 4138065, '103.105103', '15.030030', '20.462339', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 48, 0, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 41642, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4138066', 4138066, '76.493408', '12.191390', '20.402031', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42192, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4138067', 4138067, '117.584900', '15.938490', '11.404420', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41382, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4138716', 4138716, '176.348495', '13.992490', '240.985703', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54462, 2, 0, 0, 0, 35, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4138717', 4138717, '158.251205', '13.992490', '254.322006', 741, 0, 0, 0, 1, 6, 0, 0, 2296, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69428, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4138718', 4138718, '174.425797', '13.992490', '235.339798', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67802, 2, 0, 0, 0, 35, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4138722', 4138722, '129.299393', '7.759512', '330.730286', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69972, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4138723', 4138723, '127.946899', '7.071052', '376.910889', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67530, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4138736', 4138736, '45.873520', '23.511459', '-135.133301', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85730, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4138737', 4138737, '34.941601', '23.511471', '-143.619507', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85464, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4140356', 4140356, '38.925659', '23.483580', '-138.689301', 369, 0, 0, 0, 0, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85192, 1, 0, 0, 0, 32, 30073, 0, 0, 0), +(312, 'e0069', 'bnpc4140357', 4140357, '40.383900', '23.511459', '-138.534897', 367, 0, 0, 0, 0, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84914, 1, 0, 0, 0, 32, 30079, 0, 0, 0), +(312, 'e0069', 'bnpc4140358', 4140358, '42.540970', '17.713570', '-101.085297', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84642, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4140359', 4140359, '45.869240', '22.788361', '-122.945396', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84376, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4140360', 4140360, '-3.844561', '8.435183', '-93.056000', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84098, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4140361', 4140361, '-11.875860', '6.747277', '-75.913834', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83832, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(312, 'e0069', 'bnpc4140362', 4140362, '-6.949590', '8.713659', '-105.002502', 367, 0, 0, 0, 0, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83554, 1, 0, 0, 0, 32, 30082, 0, 0, 0), +(312, 'e0069', 'bnpc4140363', 4140363, '-8.319045', '8.596273', '-104.796700', 369, 0, 0, 0, 0, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83288, 1, 0, 0, 0, 32, 30079, 0, 0, 0), +(312, 'e0069', 'bnpc4140373', 4140373, '62.782619', '3.445141', '-267.002686', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82980, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140376', 4140376, '-24.128490', '-0.222955', '-159.058701', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82708, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140377', 4140377, '-83.108093', '-14.744680', '-157.238297', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82436, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140379', 4140379, '-97.737221', '-14.744680', '-145.298904', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140380', 4140380, '-94.201157', '-14.744680', '-142.907806', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81892, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140381', 4140381, '-95.134377', '-14.397570', '-169.786697', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81620, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140383', 4140383, '-53.365379', '-16.085800', '-169.063507', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81348, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140384', 4140384, '-62.683842', '-1.205086', '-107.887497', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81076, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140386', 4140386, '-131.578598', '1.541138', '-134.599899', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80804, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140387', 4140387, '-84.214539', '-1.937927', '-49.942810', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80532, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140388', 4140388, '-95.933533', '-0.900330', '-15.945740', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80260, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140392', 4140392, '-94.041443', '-0.961365', '-14.877620', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79988, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140393', 4140393, '-43.289860', '-1.571716', '1.235901', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140394', 4140394, '-14.218010', '4.090468', '36.143909', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140395', 4140395, '-17.297621', '4.967797', '39.749630', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140398', 4140398, '-101.304703', '12.741210', '80.552368', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140400', 4140400, '-144.371704', '-1.052405', '41.807720', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140401', 4140401, '-107.255699', '28.030760', '124.498299', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140402', 4140402, '-52.008862', '11.528760', '192.386597', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140404', 4140404, '-283.105499', '9.536800', '201.528900', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140405', 4140405, '-118.150597', '4.442561', '248.788605', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140406', 4140406, '-114.824203', '4.493244', '246.347107', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140407', 4140407, '-183.400894', '40.000000', '157.241699', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140408', 4140408, '-169.404205', '40.000000', '143.694000', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140409', 4140409, '-126.916702', '37.668209', '186.635406', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140410', 4140410, '-83.693520', '45.889679', '179.053299', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140411', 4140411, '-85.551117', '45.811230', '209.439102', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140412', 4140412, '20.889589', '36.758911', '209.735199', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140413', 4140413, '112.923897', '13.990590', '141.405304', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140414', 4140414, '160.982407', '13.997970', '233.444595', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140416', 4140416, '146.294601', '13.997970', '244.723495', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140417', 4140417, '124.652702', '8.457688', '313.738892', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140419', 4140419, '139.964203', '7.391594', '192.456802', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140420', 4140420, '224.634705', '8.093283', '86.476837', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140421', 4140421, '253.877808', '8.000000', '-33.567520', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140422', 4140422, '295.798798', '8.000000', '-26.774521', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140423', 4140423, '297.220490', '8.000000', '-29.494390', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4140427', 4140427, '117.781403', '9.346180', '-7.032808', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72916, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4142005', 4142005, '-268.913208', '4.851185', '-90.289322', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4142007', 4142007, '-359.236389', '4.669468', '-59.445290', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91208, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(312, 'e0069', 'bnpc4142009', 4142009, '-420.227386', '6.206403', '-20.966650', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4142018', 4142018, '-42.274540', '10.032320', '171.660904', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69162, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4142028', 4142028, '-93.827759', '45.792240', '199.145401', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64816, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4313527', 4313527, '313.771210', '7.980469', '-31.998230', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51244, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(312, 'e0069', 'bnpc4313538', 4313538, '287.709015', '8.000000', '-40.641960', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50972, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(312, 'e0069', 'bnpc4313539', 4313539, '417.063385', '17.715700', '-63.623531', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50688, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4313540', 4313540, '355.620087', '9.881611', '-35.813759', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50422, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4313547', 4313547, '445.548096', '16.678040', '-115.800697', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50156, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(312, 'e0069', 'bnpc4313549', 4313549, '409.744812', '12.774850', '-100.924301', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49812, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4313550', 4313550, '552.483398', '7.583679', '-164.965302', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 49594, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4313551', 4313551, '481.528900', '7.614197', '-157.915604', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49328, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(312, 'e0069', 'bnpc4313552', 4313552, '484.977386', '7.614197', '-157.701996', 740, 0, 0, 0, 0, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49062, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(312, 'e0069', 'bnpc4313556', 4313556, '509.282410', '7.599621', '-134.754105', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48724, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4313557', 4313557, '519.299988', '7.581244', '-127.391800', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48452, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4313560', 4313560, '533.592712', '7.583679', '-79.881042', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47146, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4313561', 4313561, '549.797729', '7.583679', '-92.454468', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48240, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4313562', 4313562, '534.650330', '7.599616', '-75.784973', 740, 0, 0, 0, 0, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47974, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4313563', 4313563, '569.926575', '7.599619', '-77.731194', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47708, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(312, 'e0069', 'bnpc4313564', 4313564, '549.767212', '7.599621', '-67.267418', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 47436, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(312, 'e0069', 'bnpc4313565', 4313565, '442.353912', '18.401279', '-84.513977', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46820, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(312, 'e0069', 'bnpc4313572', 4313572, '631.942383', '7.123771', '-69.111237', 742, 0, 0, 0, 1, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46602, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4329911', 4329911, '-253.803406', '23.269960', '-431.265686', 2188, 0, 0, 0, 6, 6, 0, 0, 1993, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123578, 4, 1, 0, 0, 0, 0, 4329909, 0, 0), +(312, 'e0069', 'bnpc4333133', 4333133, '-201.984695', '24.429350', '-469.400787', 2188, 0, 0, 0, 6, 6, 0, 0, 1993, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122442, 4, 1, 0, 0, 0, 0, 4329909, 0, 0), +(312, 'e0069', 'bnpc4333143', 4333143, '-91.031189', '14.631890', '-220.647095', 2260, 0, 0, 0, 1, 6, 0, 0, 1999, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122182, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4333144', 4333144, '-95.213539', '14.640040', '-232.687607', 2259, 0, 0, 0, 1, 6, 0, 0, 1998, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121904, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4515628', 4515628, '230.071304', '10.431990', '28.589081', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45208, 2, 0, 0, 0, 0, 0, 4515627, 0, 0), +(312, 'e0069', 'bnpc4515630', 4515630, '306.129913', '8.000000', '-35.433121', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44936, 2, 0, 0, 0, 0, 0, 4515617, 0, 0), +(312, 'e0069', 'bnpc4515631', 4515631, '409.323212', '17.164120', '-66.182114', 2457, 0, 0, 0, 2, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44664, 2, 0, 0, 0, 0, 0, 4515622, 0, 0), +(312, 'e0069', 'bnpc4515632', 4515632, '450.431000', '18.142941', '-98.527527', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44392, 2, 0, 0, 0, 0, 0, 4515619, 0, 0), +(312, 'e0069', 'bnpc4515633', 4515633, '528.573975', '7.599619', '-123.610298', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44120, 2, 0, 0, 0, 0, 0, 4515626, 0, 0), +(312, 'e0069', 'bnpc4522053', 4522053, '-108.508598', '-1.658285', '50.827759', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4522057', 4522057, '-20.309811', '4.196167', '-48.355900', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 2, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64278, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4522061', 4522061, '-208.789200', '7.827881', '41.184078', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 3, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64006, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4522063', 4522063, '-277.088593', '16.372860', '105.149902', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 4, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63734, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4522065', 4522065, '-233.600403', '7.156433', '195.910507', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 5, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63462, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4522066', 4522066, '102.342300', '15.152160', '25.375731', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 39762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4522067', 4522067, '-24.155090', '7.522644', '120.195297', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4522069', 4522069, '-114.458000', '7.766785', '222.339096', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4522077', 4522077, '-43.839230', '7.949890', '350.362305', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4522101', 4522101, '108.016403', '9.690581', '194.451294', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4522396', 4522396, '-21.478930', '2.767368', '-38.678539', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62078, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4522398', 4522398, '-207.376999', '7.622232', '46.231140', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 3, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61824, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(312, 'e0069', 'bnpc4522399', 4522399, '-234.055893', '7.389282', '200.963898', 742, 0, 0, 0, 0, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 5, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61534, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4522406', 4522406, '-105.390503', '-1.773797', '46.289669', 742, 0, 0, 0, 0, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61262, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4522407', 4522407, '-271.650208', '14.867290', '104.792099', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 4, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61008, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(312, 'e0069', 'bnpc4522411', 4522411, '-100.910103', '-1.501870', '50.329479', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60736, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4522416', 4522416, '-109.675301', '7.278503', '224.872192', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 60452, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4522419', 4522419, '-28.614960', '7.609998', '118.196198', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 60180, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4522420', 4522420, '-39.757469', '7.899223', '353.966003', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 59908, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(312, 'e0069', 'bnpc4522421', 4522421, '-27.695190', '7.583679', '129.961105', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59642, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4522422', 4522422, '-117.326698', '6.179810', '229.419296', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59370, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4522424', 4522424, '-52.859360', '7.196684', '358.597412', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59098, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4522427', 4522427, '554.650085', '7.583679', '-67.246582', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43854, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4522544', 4522544, '557.138977', '7.599622', '-162.231705', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43582, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4522545', 4522545, '413.717804', '17.929260', '-60.318909', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43310, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4522546', 4522546, '349.712006', '9.286700', '-45.325851', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43038, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4522547', 4522547, '291.672913', '8.000000', '-42.948238', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 42766, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4522549', 4522549, '227.166595', '8.620508', '78.546181', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40288, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4522550', 4522550, '408.039398', '12.424580', '-131.584198', 742, 0, 0, 0, 1, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40010, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4524149', 4524149, '-46.524780', '-1.266479', '10.910160', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58826, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4524160', 4524160, '-52.610519', '-1.409638', '13.605740', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58548, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4524163', 4524163, '14.724910', '1.785278', '16.159300', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58276, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4524164', 4524164, '20.839840', '2.344519', '13.486760', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58010, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4524175', 4524175, '-136.317200', '10.889600', '-70.746132', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57738, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4524176', 4524176, '-142.403000', '11.520290', '-68.050552', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57460, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4524179', 4524179, '-124.245399', '6.484659', '-98.137253', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57200, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4524181', 4524181, '-155.565796', '6.332458', '-43.106812', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56910, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4524206', 4524206, '-163.683502', '7.064880', '7.705750', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56656, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4524215', 4524215, '-100.204201', '12.076750', '75.251801', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56366, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4553442', 4553442, '-200.593903', '7.600075', '38.475250', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54190, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4553443', 4553443, '-17.239441', '3.551795', '-44.301022', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 2, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 53936, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(312, 'e0069', 'bnpc4553444', 4553444, '-243.102203', '7.628644', '196.886398', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53664, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4553445', 4553445, '-277.132202', '14.459210', '114.208504', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53374, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4553446', 4553446, '-118.333702', '6.485046', '-90.318237', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53102, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4553447', 4553447, '-143.133606', '6.438087', '-36.288349', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52848, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4553448', 4553448, '-160.387604', '7.156433', '27.054199', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52576, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4553449', 4553449, '-63.000992', '-1.730121', '-63.235321', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52286, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(312, 'e0069', 'bnpc4577401', 4577401, '-110.148399', '-0.815602', '-20.043240', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4621851', 4621851, '-468.283295', '-2.650424', '95.657677', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28328, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4621852', 4621852, '-103.113701', '45.811230', '205.494797', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28062, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(312, 'e0069', 'bnpc4695634', 4695634, '-218.433502', '5.298542', '95.696121', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4291453', 4291453, '155.132599', '222.009995', '348.043488', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41428, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(313, 'e0070', 'bnpc4291457', 4291457, '272.663513', '222.247696', '334.248901', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41156, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(313, 'e0070', 'bnpc4291464', 4291464, '220.038406', '302.644592', '-149.387497', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(313, 'e0070', 'bnpc4291467', 4291467, '177.878494', '301.664612', '-190.712402', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40618, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(313, 'e0070', 'bnpc4291540', 4291540, '264.301514', '302.632202', '-284.870697', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40346, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(313, 'e0070', 'bnpc4291544', 4291544, '-136.888702', '304.096985', '-285.084290', 1775, 0, 0, 0, 0, 6, 0, 0, 1583, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40080, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(313, 'e0070', 'bnpc4291545', 4291545, '-494.600586', '204.213104', '-188.481094', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39796, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(313, 'e0070', 'bnpc4291549', 4291549, '-535.141113', '204.035507', '-287.671906', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39524, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(313, 'e0070', 'bnpc4296962', 4296962, '6.586450', '224.231003', '359.448090', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4296996', 4296996, '16.820339', '216.422195', '389.762604', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4296997', 4296997, '31.967649', '236.529999', '323.628510', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4296998', 4296998, '72.035683', '242.920105', '316.766113', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4296999', 4296999, '79.061470', '241.243393', '319.846802', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297000', 4297000, '112.809898', '239.429306', '294.575287', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163724, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297001', 4297001, '58.960991', '253.937698', '281.400696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163452, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297003', 4297003, '10.569400', '224.790207', '357.938599', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163180, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297008', 4297008, '354.657288', '224.892807', '300.765289', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297010', 4297010, '417.257904', '226.214996', '374.532593', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297011', 4297011, '421.699005', '227.744202', '370.285492', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297012', 4297012, '330.572113', '223.491394', '369.867493', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297013', 4297013, '429.534393', '217.970001', '417.141296', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161826, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297015', 4297015, '417.746185', '217.952194', '480.668488', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161554, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297016', 4297016, '422.541687', '219.795303', '494.286896', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161282, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297019', 4297019, '411.649689', '220.784195', '484.018890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161010, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297021', 4297021, '181.170303', '242.354599', '223.538406', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160744, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297025', 4297025, '342.033508', '264.985504', '103.754501', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160472, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297026', 4297026, '88.700684', '244.067993', '303.089813', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297027', 4297027, '88.700684', '222.003494', '420.492798', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297028', 4297028, '-25.009581', '205.387497', '480.682007', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297029', 4297029, '398.841614', '224.765701', '381.022705', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297232', 4297232, '-397.424805', '210.788193', '-238.255402', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38242, 8, 0, 0, 4128002, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4297234', 4297234, '-397.352997', '210.788193', '-233.666794', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37970, 8, 0, 0, 4128001, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4297235', 4297235, '-397.251587', '210.788193', '-228.848999', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37698, 8, 0, 0, 4128000, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4297236', 4297236, '-423.044800', '210.788193', '-221.963104', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37426, 8, 0, 0, 4297227, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4297238', 4297238, '-413.101990', '210.788193', '-212.035004', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37154, 8, 0, 0, 4297228, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4297239', 4297239, '-417.529114', '210.788193', '-217.341202', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36882, 8, 0, 0, 4297229, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4297336', 4297336, '168.169693', '276.447601', '-48.600040', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159112, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297337', 4297337, '264.687988', '294.602692', '-93.670403', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158840, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4297346', 4297346, '280.170807', '253.192902', '147.692001', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4297350', 4297350, '334.350311', '248.434402', '184.154297', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4297353', 4297353, '327.623993', '256.382294', '132.340805', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4297354', 4297354, '291.785187', '269.499786', '39.650711', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4297356', 4297356, '192.950302', '271.137512', '3.646851', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4297359', 4297359, '285.844391', '267.842712', '44.338120', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4297363', 4297363, '173.391296', '272.125793', '-12.465330', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4297364', 4297364, '249.355698', '270.133301', '26.395069', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4297365', 4297365, '203.100204', '254.232300', '149.502304', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298567', 4298567, '157.396698', '293.324097', '-98.374939', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298571', 4298571, '159.523300', '293.493011', '-99.299156', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298572', 4298572, '135.779297', '299.755890', '-101.941704', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298573', 4298573, '136.228699', '283.407715', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298574', 4298574, '258.647614', '289.809692', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298575', 4298575, '254.634094', '287.557098', '-64.855118', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298576', 4298576, '268.831512', '284.212891', '-40.760189', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298741', 4298741, '251.759094', '294.415894', '-111.584099', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298744', 4298744, '288.151489', '302.427002', '-86.886337', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153938, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298765', 4298765, '321.597290', '303.200989', '-338.780914', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298767', 4298767, '346.691895', '304.562286', '-319.108887', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298770', 4298770, '357.329712', '304.360687', '-356.956696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298772', 4298772, '407.769012', '305.618500', '-327.457397', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298773', 4298773, '412.865387', '304.484802', '-333.469391', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298780', 4298780, '365.239410', '319.169586', '-254.025299', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298781', 4298781, '388.845612', '321.034485', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298784', 4298784, '476.218811', '327.076996', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298787', 4298787, '494.638214', '304.602112', '-349.542206', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298790', 4298790, '182.909805', '336.140900', '-467.124512', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151236, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298792', 4298792, '150.108704', '345.173309', '-380.467590', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150964, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298794', 4298794, '146.329498', '347.075287', '-385.583313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150692, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298812', 4298812, '253.761307', '343.590393', '-494.726715', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150420, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298813', 4298813, '294.270294', '329.274292', '-477.805786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298814', 4298814, '212.636703', '327.759796', '-433.014313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298815', 4298815, '412.045288', '353.824188', '-499.736786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149604, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298816', 4298816, '394.674591', '355.184204', '-555.809875', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298823', 4298823, '260.181488', '356.282806', '-541.374878', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298824', 4298824, '188.311493', '357.747803', '-557.427429', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298825', 4298825, '285.877686', '359.578705', '-569.421021', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148522, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298835', 4298835, '126.756599', '376.088989', '-671.473328', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148250, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298837', 4298837, '356.375610', '356.320007', '-595.291321', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298842', 4298842, '468.223511', '349.470490', '-668.565430', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147700, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298844', 4298844, '531.422729', '348.817993', '-732.418884', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147428, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298845', 4298845, '539.850708', '348.653900', '-745.830627', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147156, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4298846', 4298846, '96.262070', '375.573090', '-645.236084', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298847', 4298847, '618.677002', '325.703705', '-430.685913', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298848', 4298848, '626.867126', '322.872803', '-394.244293', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298849', 4298849, '673.548279', '293.690308', '-320.820892', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298851', 4298851, '584.470276', '282.391998', '-315.705292', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298852', 4298852, '599.206482', '281.914215', '-300.226898', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298853', 4298853, '564.033630', '282.951599', '-300.851807', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298854', 4298854, '684.587830', '306.511292', '-363.764191', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298855', 4298855, '562.945190', '342.102997', '-474.200287', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298858', 4298858, '463.976410', '249.572906', '-308.802399', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298859', 4298859, '473.929901', '247.699707', '-302.357513', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298860', 4298860, '490.206787', '271.288086', '-298.332397', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298861', 4298861, '397.627808', '248.461594', '-320.859192', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298862', 4298862, '283.789703', '236.298401', '-325.220306', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298863', 4298863, '291.652496', '235.940796', '-331.188995', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143094, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298864', 4298864, '296.253906', '234.759995', '-368.673309', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298866', 4298866, '473.213501', '248.114304', '-259.048889', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298871', 4298871, '614.450012', '323.410309', '-400.318604', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298873', 4298873, '668.683716', '306.076996', '-365.426788', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298882', 4298882, '683.369995', '295.457611', '-324.276794', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298884', 4298884, '681.273376', '295.122589', '-325.174805', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298886', 4298886, '581.921387', '282.296997', '-294.985413', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298888', 4298888, '584.498718', '282.204895', '-290.600891', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298891', 4298891, '598.967285', '282.223602', '-314.123505', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298892', 4298892, '570.297485', '282.771301', '-310.753998', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298900', 4298900, '532.146484', '235.205200', '301.718414', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140114, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4298901', 4298901, '548.790588', '235.278793', '308.827301', 114, 0, 0, 0, 1, 6, 0, 0, 662, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139848, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4298902', 4298902, '539.909912', '235.309296', '290.943695', 115, 0, 0, 0, 0, 6, 0, 0, 661, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139582, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(313, 'e0070', 'bnpc4298903', 4298903, '543.114685', '235.512100', '292.484009', 116, 0, 0, 0, 0, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139316, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(313, 'e0070', 'bnpc4298911', 4298911, '465.921387', '232.736298', '321.428497', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4298914', 4298914, '485.744812', '233.755707', '315.057404', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4298917', 4298917, '8.385859', '200.822098', '514.171082', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298919', 4298919, '3.468143', '219.127502', '377.671387', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298921', 4298921, '56.439899', '213.878601', '395.393188', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298922', 4298922, '32.688740', '261.800201', '264.078491', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298924', 4298924, '31.549110', '262.086487', '260.424103', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298925', 4298925, '97.214867', '251.860901', '270.377808', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298926', 4298926, '65.567993', '240.283707', '329.732208', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298928', 4298928, '173.567596', '231.665298', '266.478912', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298932', 4298932, '267.711090', '226.465698', '281.598785', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298933', 4298933, '349.538513', '232.623795', '259.540588', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298934', 4298934, '353.841400', '234.302200', '255.420700', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298937', 4298937, '398.091797', '226.637100', '344.024994', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298938', 4298938, '278.828003', '242.816803', '203.601105', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298941', 4298941, '191.013199', '256.839386', '104.428802', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4298943', 4298943, '248.318405', '261.876587', '67.776207', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299053', 4299053, '152.027496', '277.941711', '34.020439', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299054', 4299054, '235.312393', '277.402405', '-48.467419', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299057', 4299057, '191.224899', '284.341797', '-81.645477', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299063', 4299063, '374.380005', '306.477386', '-331.197113', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133610, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(313, 'e0070', 'bnpc4299079', 4299079, '343.678802', '311.085602', '-403.738495', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299081', 4299081, '278.156586', '313.466095', '-429.770386', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299082', 4299082, '347.909790', '309.989197', '-275.124512', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299084', 4299084, '404.743988', '318.417908', '-277.971985', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299088', 4299088, '457.550507', '305.113708', '-285.144989', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299091', 4299091, '458.811310', '305.676910', '-289.211914', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299093', 4299093, '502.242096', '302.581390', '-245.190903', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299094', 4299094, '502.391815', '308.429413', '-356.438385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299096', 4299096, '502.046387', '342.161713', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299098', 4299098, '424.421387', '339.137909', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299099', 4299099, '429.241394', '341.024200', '-436.179199', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299100', 4299100, '218.158203', '330.586700', '-473.045013', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299102', 4299102, '173.367004', '339.026001', '-390.899200', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299103', 4299103, '119.335899', '353.367310', '-336.673615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299106', 4299106, '166.454803', '348.701294', '-492.608795', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299107', 4299107, '432.587189', '365.876801', '-537.769714', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299110', 4299110, '418.305603', '349.797699', '-685.625427', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299112', 4299112, '485.808594', '353.806305', '-658.057312', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299114', 4299114, '298.678589', '345.167297', '-521.747192', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128442, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299115', 4299115, '198.874802', '362.118011', '-601.265076', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299116', 4299116, '138.675293', '374.013306', '-661.681824', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299117', 4299117, '324.054291', '360.242188', '-582.895081', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299119', 4299119, '283.839905', '362.149506', '-625.782288', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299120', 4299120, '210.687897', '361.424805', '-658.411926', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299121', 4299121, '205.782394', '360.548187', '-666.505615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299188', 4299188, '105.119400', '289.448395', '-164.568604', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120116, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299192', 4299192, '62.638309', '289.814606', '-219.226395', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299194', 4299194, '-1.358093', '310.902496', '-142.015701', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299195', 4299195, '-58.910789', '304.604401', '-272.412598', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299197', 4299197, '-86.450127', '300.163605', '-170.834900', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299198', 4299198, '137.090607', '290.130798', '-258.218414', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299208', 4299208, '-115.231300', '298.469788', '-208.100098', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299210', 4299210, '-205.664902', '281.635010', '-192.517700', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118284, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299213', 4299213, '-107.621902', '300.038086', '-137.041306', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118012, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299215', 4299215, '-158.759003', '292.966492', '-201.171295', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299216', 4299216, '-162.136307', '291.173187', '-194.256607', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299217', 4299217, '-205.676498', '283.894012', '-114.763100', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117196, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299218', 4299218, '-212.088394', '285.828400', '-56.427200', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299219', 4299219, '-290.402100', '261.601898', '-157.738800', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116652, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299227', 4299227, '-318.632690', '255.833298', '-42.884541', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101716, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299230', 4299230, '-340.376007', '259.605804', '-64.511017', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101444, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299231', 4299231, '-317.614502', '256.207092', '-97.947693', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299233', 4299233, '-257.298615', '264.585693', '-65.689346', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299235', 4299235, '-249.965302', '269.336914', '-76.447701', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299236', 4299236, '-353.139587', '237.921494', '-157.603195', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299238', 4299238, '-423.544708', '240.253296', '-111.314598', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299241', 4299241, '-359.502197', '233.804596', '-160.537003', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299242', 4299242, '-578.240723', '227.008408', '-125.078201', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116386, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299244', 4299244, '-499.116089', '237.639496', '-97.965683', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116114, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299247', 4299247, '-655.179871', '229.729202', '-54.205719', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115842, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299249', 4299249, '-483.586609', '226.184692', '-125.489799', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299250', 4299250, '-477.837402', '228.009293', '-122.481400', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299252', 4299252, '-573.938416', '231.500397', '-73.804337', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299254', 4299254, '-600.372192', '209.926697', '-352.855804', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299256', 4299256, '-623.961182', '211.311707', '-374.720001', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299257', 4299257, '-624.778992', '210.859299', '-381.588593', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299258', 4299258, '-586.229492', '201.455200', '-440.921997', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299259', 4299259, '-583.154114', '188.738800', '-477.195404', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299260', 4299260, '-653.461182', '211.102798', '-435.622009', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299422', 4299422, '-650.603027', '204.070007', '-488.214691', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299424', 4299424, '-551.951416', '206.791595', '-350.856995', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112856, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299425', 4299425, '-612.623779', '216.144806', '-319.243988', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299426', 4299426, '-853.938416', '226.438599', '25.457430', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299427', 4299427, '-879.604614', '229.180099', '-15.122490', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299428', 4299428, '-894.004272', '228.026398', '0.443500', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299429', 4299429, '-907.681885', '249.338104', '26.397079', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299430', 4299430, '-907.681885', '247.122192', '-24.585300', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299431', 4299431, '-938.982971', '269.272095', '1.981136', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299433', 4299433, '-951.375916', '276.008698', '-32.272030', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299593', 4299593, '117.442703', '288.131500', '-217.671204', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299595', 4299595, '61.837181', '292.037506', '-153.092804', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299596', 4299596, '58.310040', '291.422913', '-157.591202', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299597', 4299597, '-17.296480', '300.204010', '-215.268906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299598', 4299598, '-102.796997', '298.673889', '-164.088501', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299599', 4299599, '-144.174805', '292.303986', '-187.728806', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299600', 4299600, '-141.522705', '298.377014', '-239.075500', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299602', 4299602, '-187.987900', '287.198914', '-119.562897', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299603', 4299603, '-250.437195', '273.614410', '-139.801193', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299604', 4299604, '-287.381409', '260.165009', '-74.592461', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299605', 4299605, '-249.896500', '264.386505', '-56.690639', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299606', 4299606, '-316.963898', '249.190399', '0.375132', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299607', 4299607, '-353.362305', '249.890305', '-112.803703', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107126, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299608', 4299608, '-317.082214', '255.914795', '-163.691803', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106854, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299610', 4299610, '-540.337280', '216.113495', '-165.331497', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106582, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299612', 4299612, '-494.751099', '227.817902', '-119.577698', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299614', 4299614, '-538.078918', '224.933197', '-115.343002', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299615', 4299615, '-679.120911', '223.608002', '-24.397600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299617', 4299617, '-748.989075', '226.855804', '-70.359383', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105494, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299618', 4299618, '-763.556213', '240.848099', '-149.583405', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105222, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299620', 4299620, '-791.189026', '244.109695', '-171.737000', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104950, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299628', 4299628, '-802.041016', '225.578995', '14.979860', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299805', 4299805, '-869.248901', '228.169098', '24.666691', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299806', 4299806, '-916.034790', '242.289902', '5.756409', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299808', 4299808, '-898.861877', '250.815994', '-36.228569', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299809', 4299809, '-932.563721', '262.462097', '18.376640', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299833', 4299833, '-528.303406', '207.486404', '-361.926514', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299835', 4299835, '-635.674072', '220.452301', '-338.610809', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299836', 4299836, '-582.583984', '206.158493', '-384.262085', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299839', 4299839, '-524.189880', '192.377594', '-420.327301', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299840', 4299840, '-649.544922', '206.868103', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299842', 4299842, '-652.836792', '207.443604', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299844', 4299844, '-459.800110', '286.182892', '196.642899', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99194, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299846', 4299846, '-523.050415', '277.612488', '197.807800', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98922, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299847', 4299847, '-532.402588', '240.741592', '331.532806', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98650, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299850', 4299850, '-475.198303', '237.443207', '403.405304', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299852', 4299852, '-369.299286', '237.950699', '382.602814', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98106, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299853', 4299853, '-350.165009', '237.914505', '384.625702', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97834, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299854', 4299854, '-269.214996', '226.703201', '429.251587', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97562, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299856', 4299856, '-231.006302', '225.146896', '420.889496', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299858', 4299858, '-634.704590', '244.070801', '300.718811', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97018, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299859', 4299859, '-706.643005', '237.401398', '303.170288', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96746, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299861', 4299861, '-766.720093', '254.688202', '421.683014', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96474, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299862', 4299862, '-743.321777', '254.701202', '428.467499', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299872', 4299872, '-358.874786', '272.546112', '253.455994', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299873', 4299873, '-357.118988', '248.051895', '290.108185', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299874', 4299874, '-401.256805', '239.983307', '278.980713', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299876', 4299876, '-288.120392', '293.587006', '256.741089', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299877', 4299877, '-277.870697', '258.656494', '334.187714', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299878', 4299878, '-321.083313', '262.754395', '217.010696', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299879', 4299879, '-440.215912', '244.465805', '319.074097', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94316, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299880', 4299880, '-394.308411', '303.990997', '193.089905', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299881', 4299881, '-460.690186', '270.367493', '260.074188', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4299886', 4299886, '-254.901993', '224.367096', '523.252625', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299887', 4299887, '-247.943405', '224.715195', '514.518921', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93096, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299888', 4299888, '-282.529114', '224.717606', '503.718506', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92824, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299889', 4299889, '-393.453888', '238.452805', '503.715515', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92552, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299909', 4299909, '-485.722290', '243.436295', '460.457214', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92280, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299910', 4299910, '-491.588287', '245.377701', '463.765594', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92008, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299912', 4299912, '-305.548096', '226.398407', '559.785400', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91736, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299914', 4299914, '-212.225906', '229.780594', '563.407715', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91464, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299915', 4299915, '-252.616806', '224.743301', '626.013428', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91192, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299917', 4299917, '-120.126801', '205.896805', '472.541412', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299933', 4299933, '-167.451797', '212.509293', '469.950714', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299935', 4299935, '-192.431595', '215.960907', '481.742401', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299937', 4299937, '-254.539902', '221.577606', '466.534088', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299939', 4299939, '-261.479614', '221.984207', '460.971405', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89970, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299940', 4299940, '-327.888702', '223.177307', '446.066895', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89698, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299942', 4299942, '-452.292694', '231.075394', '433.657410', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299943', 4299943, '-556.198486', '235.399994', '407.330414', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299944', 4299944, '-563.418518', '235.399994', '398.974304', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4299945', 4299945, '-533.244080', '235.399994', '407.132111', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4300046', 4300046, '-699.997925', '253.759995', '507.272186', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88344, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300048', 4300048, '-688.471802', '253.697205', '509.426910', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88072, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300049', 4300049, '-698.510803', '253.838196', '499.010101', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87800, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300050', 4300050, '-705.378479', '253.881699', '505.406494', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87528, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300051', 4300051, '-699.795776', '253.759995', '514.230591', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300052', 4300052, '-688.023315', '253.529099', '507.670410', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300053', 4300053, '-688.742798', '253.351105', '499.477112', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300054', 4300054, '-677.956787', '254.053894', '498.299103', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300056', 4300056, '-493.539612', '282.080109', '191.529907', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300057', 4300057, '-521.202393', '242.145401', '299.671906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300059', 4300059, '-521.172913', '237.402893', '377.595398', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300061', 4300061, '-438.483398', '245.206894', '362.585205', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300062', 4300062, '-248.297302', '227.611099', '410.760986', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300064', 4300064, '-153.368500', '221.118393', '416.250702', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300066', 4300066, '-98.785767', '213.591293', '426.872589', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300069', 4300069, '-272.282501', '264.869385', '321.059906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300070', 4300070, '-390.265106', '233.670807', '321.964600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83926, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300072', 4300072, '-383.889404', '248.725204', '219.890106', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83654, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300074', 4300074, '-416.929291', '233.443802', '461.940796', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300078', 4300078, '-295.979309', '224.444901', '485.191010', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300080', 4300080, '-346.028900', '236.543396', '518.089478', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300081', 4300081, '-227.039001', '229.327805', '547.600525', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300083', 4300083, '-286.249908', '221.550095', '669.298584', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300084', 4300084, '-282.240204', '222.570007', '672.355286', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300085', 4300085, '-254.344894', '224.215302', '580.497681', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300087', 4300087, '-149.461502', '217.410095', '485.622894', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300089', 4300089, '-604.956787', '244.740799', '337.663788', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300090', 4300090, '-649.166504', '245.258606', '286.166504', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300091', 4300091, '-748.151123', '238.541107', '350.326385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300171', 4300171, '566.598206', '289.624603', '98.502197', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4300176', 4300176, '527.275391', '303.059296', '-162.340805', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79372, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(313, 'e0070', 'bnpc4300177', 4300177, '586.301575', '302.701202', '-115.328102', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79100, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(313, 'e0070', 'bnpc4300178', 4300178, '654.442383', '298.421295', '-12.551030', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78828, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(313, 'e0070', 'bnpc4300179', 4300179, '669.497986', '301.708099', '-29.924919', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78556, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(313, 'e0070', 'bnpc4300180', 4300180, '602.427917', '290.487396', '-0.884406', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78284, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(313, 'e0070', 'bnpc4300181', 4300181, '664.371399', '287.443909', '73.074158', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78012, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(313, 'e0070', 'bnpc4300182', 4300182, '601.759216', '287.400208', '127.919098', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77740, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(313, 'e0070', 'bnpc4300183', 4300183, '565.585571', '287.455109', '154.665298', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77468, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(313, 'e0070', 'bnpc4300184', 4300184, '558.831116', '300.043915', '59.949520', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77196, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(313, 'e0070', 'bnpc4300191', 4300191, '511.356689', '303.173004', '-206.740097', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76930, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(313, 'e0070', 'bnpc4300194', 4300194, '494.438110', '303.700287', '-197.619598', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76646, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300196', 4300196, '508.591888', '303.338898', '-205.656296', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76392, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(313, 'e0070', 'bnpc4300198', 4300198, '523.491211', '302.387909', '-191.363495', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76120, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300200', 4300200, '559.439514', '303.965698', '-151.707001', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75836, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300201', 4300201, '555.992920', '301.960693', '-163.683502', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75570, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300203', 4300203, '593.473511', '302.708496', '-99.112923', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75304, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300204', 4300204, '642.703979', '303.166687', '-43.589840', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300205', 4300205, '650.994812', '303.095612', '-38.070992', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74742, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300206', 4300206, '625.239319', '302.690613', '-97.402184', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74476, 1, 0, 0, 0, 45, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300209', 4300209, '635.367188', '303.307190', '-92.580772', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74198, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(313, 'e0070', 'bnpc4300210', 4300210, '636.402405', '303.397003', '-95.636833', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73938, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(313, 'e0070', 'bnpc4300212', 4300212, '640.141296', '289.793488', '15.564350', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73654, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300213', 4300213, '632.201416', '287.460602', '83.472313', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73394, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300214', 4300214, '694.667114', '302.802002', '-25.909540', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73116, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300215', 4300215, '668.584900', '286.359985', '53.434738', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72856, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300219', 4300219, '653.565674', '286.929688', '35.585339', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72566, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(313, 'e0070', 'bnpc4300220', 4300220, '654.409180', '286.791412', '37.999821', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72312, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(313, 'e0070', 'bnpc4300221', 4300221, '655.671082', '286.824310', '34.141949', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72034, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(313, 'e0070', 'bnpc4300222', 4300222, '657.228088', '286.375885', '36.471931', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71756, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(313, 'e0070', 'bnpc4300226', 4300226, '639.859619', '286.099091', '135.124603', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71478, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(313, 'e0070', 'bnpc4300227', 4300227, '642.707703', '286.175110', '132.877899', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71212, 1, 0, 0, 0, 0, 30120, 0, 0, 0), +(313, 'e0070', 'bnpc4300229', 4300229, '708.942505', '286.232513', '46.920448', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70946, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300230', 4300230, '711.298828', '285.307404', '75.698997', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70680, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300232', 4300232, '613.615784', '284.572296', '166.852005', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70408, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300233', 4300233, '590.029480', '285.689209', '176.024506', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70130, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300234', 4300234, '646.990784', '285.135101', '149.341507', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69852, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300236', 4300236, '586.167297', '288.737610', '-28.609209', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4300238', 4300238, '582.383789', '289.517700', '-46.738300', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4300239', 4300239, '559.963928', '292.885193', '-35.993568', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65790, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4300241', 4300241, '576.693481', '289.831787', '-46.195572', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4300242', 4300242, '498.254486', '308.702209', '-165.574203', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66606, 1, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(313, 'e0070', 'bnpc4300244', 4300244, '507.927002', '303.303497', '-229.236298', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4300246', 4300246, '630.399292', '300.341187', '-66.790810', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65518, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4300250', 4300250, '684.486816', '291.013214', '7.434129', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4300253', 4300253, '639.507080', '287.656799', '38.046551', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66062, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4300254', 4300254, '630.756226', '286.750000', '109.616798', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4300256', 4300256, '570.830383', '286.569214', '120.215103', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4300257', 4300257, '555.228516', '297.855499', '84.213348', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4300284', 4300284, '605.249023', '330.830811', '-303.486786', 114, 0, 0, 0, 0, 6, 0, 0, 662, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68668, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(313, 'e0070', 'bnpc4300286', 4300286, '527.855225', '308.308502', '-299.702515', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69478, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300287', 4300287, '575.036316', '320.881805', '-289.906189', 115, 0, 0, 0, 1, 6, 0, 0, 661, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69218, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4300288', 4300288, '577.508118', '322.468903', '-294.789093', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68952, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(313, 'e0070', 'bnpc4325155', 4325155, '215.504501', '360.039307', '-581.431030', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4406869', 4406869, '311.001099', '307.036499', '-422.752106', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126194, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406870', 4406870, '323.323395', '303.822296', '-391.989014', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125922, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406871', 4406871, '317.110413', '305.692505', '-418.385315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125650, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406872', 4406872, '351.343506', '312.029114', '-396.169098', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125378, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406873', 4406873, '350.968994', '315.450592', '-416.192993', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125106, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406874', 4406874, '48.752670', '311.224213', '-250.581207', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124834, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406875', 4406875, '44.907230', '311.238312', '-245.044693', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124562, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406876', 4406876, '66.984810', '300.472412', '-252.706802', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124290, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406877', 4406877, '-17.150419', '311.581512', '-255.273895', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124018, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406878', 4406878, '7.231910', '312.528687', '-245.321793', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123746, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406879', 4406879, '-6.278003', '305.376709', '-233.466095', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123474, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406880', 4406880, '-10.073550', '305.779694', '-236.697601', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123202, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406884', 4406884, '357.847992', '311.662201', '-388.165497', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122930, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406885', 4406885, '363.148010', '313.250488', '-391.308411', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122658, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406886', 4406886, '331.929413', '319.783203', '-430.502808', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122386, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406888', 4406888, '113.582199', '354.933685', '-335.568512', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406890', 4406890, '121.680801', '354.167114', '-326.125214', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406891', 4406891, '110.022797', '357.553314', '-311.841187', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406892', 4406892, '111.824799', '358.195190', '-382.551514', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406893', 4406893, '115.392303', '357.688690', '-387.074890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4406894', 4406894, '93.907928', '362.855194', '-349.329315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4600355', 4600355, '547.412170', '348.384613', '-748.106018', 1699, 0, 0, 0, 8, 6, 0, 0, 2162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4614331', 4614331, '530.815125', '348.686096', '-743.006226', 1700, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43556, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4614332', 4614332, '535.935608', '348.616394', '-737.220215', 2222, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43290, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4621624', 4621624, '-332.429199', '307.678406', '234.107803', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44948, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(313, 'e0070', 'bnpc4890695', 4890695, '-188.798996', '226.035995', '400.288086', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(313, 'e0070', 'bnpc4890696', 4890696, '-132.585098', '216.182098', '435.066193', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc1368411', 1368411, '-66.155998', '-12.582840', '-8.814363', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc1368412', 1368412, '-64.537338', '-12.499180', '-8.712757', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc1368413', 1368413, '-62.951370', '-12.426580', '-8.677147', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc1368414', 1368414, '-61.258369', '-12.364150', '-8.589471', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc1368416', 1368416, '-66.693230', '-12.961350', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212726, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc1368417', 1368417, '-64.495934', '-12.860610', '-13.380810', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc1368418', 1368418, '-62.481739', '-12.772990', '-13.472360', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc1368419', 1368419, '-60.162369', '-12.662670', '-13.441840', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc1368420', 1368420, '-69.467598', '-13.149620', '-18.035919', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211644, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc1368440', 1368440, '-65.325943', '-13.142030', '-18.046921', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211372, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc1368441', 1368441, '-61.416431', '-13.052980', '-18.065041', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211100, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc1368442', 1368442, '-57.492748', '-12.665620', '-17.741350', 26, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210828, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746473', 3746473, '-134.012207', '9.916103', '267.132690', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208458, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746474', 3746474, '-139.248093', '11.343600', '270.767487', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208186, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746475', 3746475, '-116.714996', '8.743372', '266.243988', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207914, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746477', 3746477, '-123.143700', '11.980280', '281.311798', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207642, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746478', 3746478, '-128.526794', '6.043580', '250.778503', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207370, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746481', 3746481, '-87.065170', '8.131585', '270.853210', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207098, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746484', 3746484, '-77.385406', '9.277164', '278.146301', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206826, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746485', 3746485, '-79.850502', '9.815605', '280.807892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206554, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746486', 3746486, '-57.801540', '7.714478', '280.245697', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206282, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746487', 3746487, '-32.103970', '8.045358', '306.695404', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206010, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746488', 3746488, '-33.263660', '8.805240', '310.174408', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205738, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746489', 3746489, '-23.206301', '7.924604', '316.282593', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205466, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746490', 3746490, '-1.823452', '12.616180', '355.344391', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205194, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746491', 3746491, '1.058939', '11.460450', '352.323212', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204922, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746492', 3746492, '-1.840275', '11.813140', '350.644714', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204650, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746493', 3746493, '-56.592079', '0.108709', '220.398895', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204378, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746494', 3746494, '-56.292080', '3.881968', '249.628098', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204106, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746495', 3746495, '-31.334530', '2.359202', '278.398193', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203834, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746496', 3746496, '-104.320801', '1.025299', '207.824005', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203562, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746498', 3746498, '7.768722', '1.031246', '256.953094', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203290, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746499', 3746499, '-123.605797', '2.842937', '210.266296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203018, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746500', 3746500, '30.048519', '10.050760', '356.964386', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202746, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746501', 3746501, '-97.688263', '-3.294564', '184.145203', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202474, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746503', 3746503, '-99.971313', '-3.426347', '180.765198', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202202, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746505', 3746505, '-87.144318', '-1.876907', '198.901306', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201930, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746506', 3746506, '-47.697250', '-4.439452', '201.516296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201658, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746507', 3746507, '-14.522570', '0.676844', '242.620300', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201386, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746508', 3746508, '-11.261070', '0.694751', '245.484695', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201114, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746514', 3746514, '-119.246803', '8.981372', '268.429688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155702, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746519', 3746519, '-132.127899', '6.316744', '252.007797', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155974, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746522', 3746522, '-155.544296', '14.321210', '274.575500', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156246, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746523', 3746523, '-155.193604', '7.549813', '251.117706', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155430, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746524', 3746524, '-92.355728', '5.076609', '248.889801', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154614, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746525', 3746525, '-107.799896', '1.451139', '209.227798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154886, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746526', 3746526, '-114.793701', '4.013075', '226.245499', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155158, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746527', 3746527, '28.597651', '13.168800', '391.636688', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157606, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746528', 3746528, '-93.669998', '-2.292831', '193.599503', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157878, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746529', 3746529, '-86.737587', '1.982069', '218.821899', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158150, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746530', 3746530, '-94.103600', '-4.710398', '174.915298', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157334, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746532', 3746532, '-55.083771', '1.032392', '224.458603', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156518, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746533', 3746533, '-52.324100', '-0.635104', '220.185806', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156790, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746534', 3746534, '-52.024101', '-4.438385', '196.025299', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157062, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746535', 3746535, '-23.599480', '-4.862183', '218.164505', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162774, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746536', 3746536, '-2.930916', '14.263170', '364.690308', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165222, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746538', 3746538, '-40.705959', '2.362750', '241.470093', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165494, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746539', 3746539, '-66.280632', '6.869143', '269.246704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165766, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746541', 3746541, '4.373672', '4.711559', '297.562012', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164950, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746542', 3746542, '-63.836632', '11.354730', '293.474915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164134, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746543', 3746543, '-67.036057', '11.719290', '294.869385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164406, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746544', 3746544, '-40.587990', '10.584770', '307.244690', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164678, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746545', 3746545, '-18.006081', '5.176353', '307.655609', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159510, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746547', 3746547, '13.581710', '5.033936', '280.057404', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746557', 3746557, '59.891609', '12.558130', '450.125793', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746560', 3746560, '49.054600', '13.360080', '439.790100', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746579', 3746579, '-107.428101', '5.098667', '239.118896', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746589', 3746589, '15.346860', '15.164520', '392.385712', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200842, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746592', 3746592, '14.522880', '15.407670', '396.017303', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200570, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746594', 3746594, '34.258789', '14.106760', '421.936798', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159782, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746595', 3746595, '60.659401', '11.900060', '438.181702', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160054, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746616', 3746616, '55.188671', '13.295150', '508.984802', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159238, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746617', 3746617, '66.524231', '10.880620', '515.488220', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200298, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746618', 3746618, '49.532551', '14.712430', '506.886414', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200026, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746619', 3746619, '50.356541', '14.371650', '503.254791', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199754, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746620', 3746620, '59.248550', '11.443580', '491.395813', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199482, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746621', 3746621, '87.897888', '3.259133', '489.249908', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158422, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746622', 3746622, '84.418831', '4.091218', '486.350708', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158694, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746623', 3746623, '46.372120', '15.609930', '520.347778', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158966, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746624', 3746624, '84.031380', '8.407674', '556.939026', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199210, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746625', 3746625, '89.244087', '6.908536', '552.574890', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198938, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746626', 3746626, '105.598701', '4.370574', '521.843201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198666, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746628', 3746628, '107.891403', '6.906938', '609.728882', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161414, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746629', 3746629, '160.979904', '10.423200', '445.205414', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746630', 3746630, '189.060593', '11.863390', '607.536072', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746688', 3746688, '86.533859', '11.154300', '622.308594', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198394, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746689', 3746689, '77.714149', '12.588650', '626.672729', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198122, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746690', 3746690, '81.986671', '11.825690', '632.593201', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197850, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746691', 3746691, '42.256569', '15.522670', '621.038330', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197578, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746692', 3746692, '36.528320', '15.730630', '626.060913', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197306, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746693', 3746693, '33.963001', '15.853820', '622.955627', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197034, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746694', 3746694, '54.517780', '14.477480', '614.387390', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160870, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746695', 3746695, '75.144310', '14.202080', '664.210083', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160598, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746697', 3746697, '71.776787', '14.357050', '666.349792', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196762, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746699', 3746699, '110.074799', '9.705235', '672.023499', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196490, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746700', 3746700, '105.802299', '9.833974', '666.103027', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196218, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746701', 3746701, '114.622002', '9.802178', '661.738892', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195946, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746702', 3746702, '102.630096', '9.930755', '678.326416', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160326, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746703', 3746703, '124.601700', '9.267537', '672.118774', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161142, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746704', 3746704, '139.915802', '3.409252', '629.204895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161958, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746706', 3746706, '148.317993', '4.103824', '654.705994', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195674, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746707', 3746707, '140.430801', '4.620288', '650.824585', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195402, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746708', 3746708, '144.703293', '4.162472', '656.745178', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195130, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3746728', 3746728, '105.175301', '7.446661', '611.285278', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161686, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746741', 3746741, '123.709900', '4.546344', '401.381409', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194864, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746744', 3746744, '119.896500', '4.229595', '400.430603', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194592, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746745', 3746745, '121.385498', '4.562400', '415.457306', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746747', 3746747, '94.951797', '4.409234', '415.757996', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746748', 3746748, '98.573242', '3.713897', '402.903290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746753', 3746753, '105.931702', '3.887046', '438.676788', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746754', 3746754, '103.130402', '3.837232', '441.897888', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746756', 3746756, '101.549301', '2.579426', '385.163391', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746757', 3746757, '126.748802', '2.272390', '326.781708', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746762', 3746762, '128.648804', '2.609246', '322.621399', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746767', 3746767, '115.312401', '0.839199', '310.200592', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746769', 3746769, '60.052872', '2.658700', '301.575806', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746771', 3746771, '66.487648', '2.270967', '295.222290', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746772', 3746772, '59.572800', '2.550388', '279.994904', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746773', 3746773, '39.864429', '5.507329', '295.432587', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746775', 3746775, '28.239599', '1.102737', '258.417786', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746782', 3746782, '33.012630', '-0.000074', '236.507797', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746783', 3746783, '30.472219', '1.540232', '261.602997', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746790', 3746790, '40.329552', '0.198320', '191.668503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746791', 3746791, '42.740471', '0.381429', '188.281006', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189696, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746792', 3746792, '21.316620', '-1.942127', '212.041397', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189424, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746795', 3746795, '33.488029', '0.135540', '209.757507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189152, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746800', 3746800, '79.875580', '17.322849', '153.453400', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188880, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746801', 3746801, '86.274673', '14.097900', '174.830002', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188608, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746802', 3746802, '82.595718', '17.371531', '156.113602', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188336, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746803', 3746803, '68.047150', '12.851960', '169.148697', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188064, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746805', 3746805, '145.186905', '14.265870', '303.993011', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187792, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746806', 3746806, '134.595795', '15.951970', '271.548492', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187520, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746807', 3746807, '129.378799', '14.996020', '276.045807', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187248, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746808', 3746808, '102.709000', '6.216220', '218.986298', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186976, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746815', 3746815, '104.478500', '3.524787', '410.177704', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162502, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746820', 3746820, '134.782898', '6.790217', '393.331787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162230, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746821', 3746821, '109.756599', '2.337350', '358.451385', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163046, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746826', 3746826, '100.612602', '0.927920', '320.347412', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163862, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746828', 3746828, '122.748901', '1.776996', '318.298187', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163590, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746831', 3746831, '90.791931', '1.666962', '266.808197', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163318, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746834', 3746834, '115.643402', '6.086327', '252.986206', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153254, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746835', 3746835, '116.878197', '7.099676', '249.317596', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152982, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746839', 3746839, '134.754898', '15.738220', '277.605591', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152710, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746842', 3746842, '138.416901', '14.910950', '291.298401', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153526, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746843', 3746843, '69.640907', '10.773730', '192.122192', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154342, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746844', 3746844, '80.370789', '14.464900', '168.592697', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154070, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746845', 3746845, '58.563480', '13.422550', '142.645203', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153798, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746846', 3746846, '84.523247', '19.105749', '150.735306', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151350, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746847', 3746847, '44.427238', '1.305627', '214.361099', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151078, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746848', 3746848, '17.726910', '-2.276831', '214.661102', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150806, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746850', 3746850, '23.742001', '2.113425', '263.454895', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151622, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746857', 3746857, '39.223301', '5.294607', '322.688812', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152438, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746859', 3746859, '72.028061', '7.308271', '404.591492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152166, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746861', 3746861, '127.672203', '6.607109', '430.716309', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151894, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746864', 3746864, '165.074600', '12.246150', '482.778503', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186704, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746867', 3746867, '168.492706', '12.057270', '478.475494', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186432, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746868', 3746868, '162.989304', '12.037260', '478.563507', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186160, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746870', 3746870, '159.288895', '10.574450', '408.590790', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185888, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746871', 3746871, '163.653000', '10.757560', '411.825714', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185616, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746872', 3746872, '180.336197', '12.793920', '406.002014', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185344, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746873', 3746873, '161.736893', '16.236589', '388.045105', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185072, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746876', 3746876, '133.837296', '9.269427', '459.531403', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184800, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746878', 3746878, '131.557098', '8.976067', '457.624695', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184528, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746880', 3746880, '120.227203', '8.368025', '485.318115', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184256, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746885', 3746885, '134.445908', '12.144460', '507.273987', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183984, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746887', 3746887, '131.554993', '12.056210', '504.412415', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183712, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746889', 3746889, '140.997406', '11.949580', '487.139313', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183440, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746891', 3746891, '177.389404', '11.185200', '525.833618', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183168, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746894', 3746894, '180.637207', '11.258170', '523.414673', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182896, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746896', 3746896, '163.836105', '12.375020', '511.253387', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182624, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746898', 3746898, '147.262100', '7.242397', '543.931824', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182352, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746902', 3746902, '159.838196', '8.834927', '539.787781', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182080, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746905', 3746905, '155.880402', '7.197376', '556.779175', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181808, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746908', 3746908, '158.138794', '8.079927', '559.495300', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181536, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746910', 3746910, '143.386200', '7.563845', '583.138916', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181264, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746911', 3746911, '141.779205', '7.213043', '585.132019', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180992, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746913', 3746913, '138.754898', '6.737441', '570.297424', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180720, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(314, 'e0071', 'bnpc3746914', 3746914, '149.117798', '6.128607', '602.883972', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180448, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746915', 3746915, '169.704697', '11.348940', '603.184021', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180176, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746916', 3746916, '180.008804', '11.209140', '617.096130', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179904, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746917', 3746917, '182.074905', '11.129530', '618.747620', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179632, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746918', 3746918, '203.008896', '12.064710', '597.300476', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179360, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746919', 3746919, '222.377304', '10.658940', '600.289978', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179088, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746920', 3746920, '219.857101', '10.195060', '606.104126', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178816, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746921', 3746921, '216.053207', '12.886560', '579.694885', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178544, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746922', 3746922, '254.440308', '11.644550', '583.224670', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178272, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746923', 3746923, '187.395996', '12.680200', '480.674408', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178000, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746925', 3746925, '122.484100', '8.621300', '468.558685', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174198, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746927', 3746927, '152.697006', '11.123780', '465.049103', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173382, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746928', 3746928, '200.189301', '12.546850', '452.841888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173654, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746929', 3746929, '184.320801', '12.674630', '482.649414', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174470, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746930', 3746930, '161.638794', '12.497090', '508.781494', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175286, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746932', 3746932, '134.477707', '12.039320', '494.041290', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175558, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746933', 3746933, '157.244202', '8.895963', '538.017822', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174742, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746934', 3746934, '145.677795', '11.978280', '517.051880', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175014, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746937', 3746937, '112.465202', '5.551401', '523.979492', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168486, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746941', 3746941, '164.965195', '10.635490', '582.482483', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168214, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746945', 3746945, '140.062500', '7.095398', '581.505981', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167942, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746946', 3746946, '126.004097', '4.418174', '596.074219', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169302, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746951', 3746951, '205.096497', '11.978280', '595.452820', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169030, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746954', 3746954, '201.556396', '10.391350', '620.202881', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168758, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746956', 3746956, '223.407303', '9.658914', '609.063782', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167670, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746958', 3746958, '230.853699', '7.095398', '629.480286', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166582, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746959', 3746959, '228.412201', '6.607109', '632.684814', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166310, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746960', 3746960, '250.843002', '10.543940', '603.967285', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166038, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746962', 3746962, '251.148193', '11.947770', '580.346313', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167398, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746963', 3746963, '236.801498', '16.670509', '560.962524', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167126, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746965', 3746965, '239.996399', '16.684830', '564.761475', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166854, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746966', 3746966, '219.876907', '16.677370', '559.278870', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169574, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746967', 3746967, '255.603806', '16.647539', '552.574890', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172294, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746968', 3746968, '261.768494', '13.412630', '571.068787', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172022, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746969', 3746969, '261.341187', '16.678061', '523.765930', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171750, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746970', 3746970, '263.263885', '16.647539', '520.866577', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173110, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746971', 3746971, '247.730194', '16.647539', '499.259888', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172838, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746972', 3746972, '210.126297', '16.670370', '499.584686', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172566, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746973', 3746973, '206.265198', '16.709129', '502.872498', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171478, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746974', 3746974, '201.359299', '16.670370', '525.525696', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170390, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746975', 3746975, '199.202896', '16.634470', '546.190796', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170118, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746976', 3746976, '201.042099', '16.670389', '547.166199', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169846, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3746983', 3746983, '47.837040', '20.883829', '-297.468597', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79320, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3746984', 3746984, '30.218941', '19.809231', '-261.464111', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80402, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(314, 'e0071', 'bnpc3746985', 3746985, '45.726398', '19.952000', '-251.705505', 735, 0, 0, 0, 1, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79048, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3746988', 3746988, '37.782612', '19.928471', '-277.190186', 736, 0, 0, 0, 1, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80130, 4, 0, 0, 0, 0, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3746992', 3746992, '32.101620', '19.979660', '-229.510406', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79858, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(314, 'e0071', 'bnpc3746993', 3746993, '32.891548', '19.908630', '-233.898605', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78776, 4, 0, 0, 0, 0, 30060, 0, 0, 0), +(314, 'e0071', 'bnpc3746997', 3746997, '-40.889229', '-6.750034', '159.270004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88278, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747003', 3747003, '-38.858761', '-6.750058', '155.119003', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88550, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747004', 3747004, '-21.989389', '-6.750032', '151.563995', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87190, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747006', 3747006, '-1.016211', '-6.750022', '160.127197', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89638, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747009', 3747009, '3.375875', '-6.751163', '164.669601', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89910, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747010', 3747010, '5.926142', '-6.750027', '161.728195', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89366, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747012', 3747012, '22.984619', '-6.750012', '165.561600', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89094, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747015', 3747015, '30.818211', '-6.750096', '148.130096', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88822, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747018', 3747018, '-6.179034', '-6.750058', '138.765106', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90182, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747019', 3747019, '-2.610643', '-6.750058', '141.990707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87734, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747021', 3747021, '-15.651240', '-6.750003', '122.209503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87462, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747022', 3747022, '-52.276199', '-6.750027', '169.793900', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88006, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747028', 3747028, '-73.794739', '-6.750006', '155.086899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91814, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747033', 3747033, '-84.128677', '-6.750047', '148.117004', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90454, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747034', 3747034, '-88.289063', '-6.750033', '145.505707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90998, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747037', 3747037, '-81.662231', '-6.750007', '162.451996', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91542, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747042', 3747042, '-100.621399', '-6.750030', '133.779007', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91270, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747078', 3747078, '174.099396', '10.387860', '561.876526', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177728, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747306', 3747306, '166.825607', '12.296140', '403.792114', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171206, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747310', 3747310, '155.935303', '9.673933', '431.016296', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170934, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747330', 3747330, '-88.883842', '-0.106860', '109.147697', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747331', 3747331, '-61.120312', '0.636424', '88.682060', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747332', 3747332, '-80.643967', '-0.473077', '67.368530', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747333', 3747333, '-86.717056', '0.991789', '72.831261', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747336', 3747336, '-36.911621', '-3.830061', '32.700039', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747337', 3747337, '-40.695862', '-4.928711', '25.589331', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747338', 3747338, '-11.550680', '0.488563', '-28.281300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747339', 3747339, '17.013760', '3.036498', '-38.223900', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747340', 3747340, '-58.237549', '-4.110259', '-107.568703', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110020, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747341', 3747341, '-67.615173', '-4.777174', '-101.631897', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109476, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747342', 3747342, '-91.142181', '-0.778257', '-101.335197', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109748, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747344', 3747344, '-126.726303', '9.466410', '-79.290817', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110564, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747345', 3747345, '-162.798492', '10.177720', '-67.887444', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114644, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747347', 3747347, '-162.133194', '17.720350', '-97.090424', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114916, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747349', 3747349, '-170.820297', '17.510420', '-95.798119', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114372, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747353', 3747353, '-144.544800', '8.164017', '-26.941380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113828, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747356', 3747356, '-176.280701', '8.164456', '-26.641380', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114100, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747358', 3747358, '-181.261993', '6.912290', '-21.225349', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116004, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747359', 3747359, '-207.415894', '10.971190', '-31.418369', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116276, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747362', 3747362, '-142.900803', '6.271411', '-160.784302', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115732, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747363', 3747363, '-153.948898', '13.420070', '-190.044296', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115188, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747364', 3747364, '-199.122604', '1.060047', '7.769498', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112468, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747365', 3747365, '-100.182404', '-4.169586', '5.823180', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112196, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747366', 3747366, '-162.648407', '1.476818', '27.867500', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112740, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747368', 3747368, '-228.292801', '1.271454', '31.448839', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113284, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747369', 3747369, '-281.000000', '1.547629', '6.098617', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113012, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747370', 3747370, '-292.305786', '1.883296', '3.669711', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110292, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747371', 3747371, '-289.186615', '0.923461', '44.489441', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111108, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747372', 3747372, '-331.967499', '-0.344346', '37.288601', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110836, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747373', 3747373, '-367.222809', '14.331700', '37.588600', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111380, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747374', 3747374, '-362.704590', '17.228571', '24.585470', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111924, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747376', 3747376, '-337.512299', '2.239006', '84.820068', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111652, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747380', 3747380, '-350.515015', '5.752604', '108.384804', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113556, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747385', 3747385, '-374.964294', '1.092578', '72.868820', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115460, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747388', 3747388, '-52.163811', '-2.028311', '119.953003', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147810, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747389', 3747389, '-86.052368', '0.110645', '102.987396', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147538, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747390', 3747390, '-74.317467', '-4.983451', '25.989620', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147266, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747391', 3747391, '-33.861969', '-6.175569', '6.276085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146994, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747393', 3747393, '13.815840', '0.849448', '-43.540058', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146722, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747394', 3747394, '-25.443001', '-6.505634', '-66.767128', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146450, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747395', 3747395, '-66.218620', '-2.263651', '-110.189796', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146178, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747396', 3747396, '-92.423927', '2.517692', '-129.686493', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747397', 3747397, '-120.059502', '11.096300', '-65.332710', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747398', 3747398, '-123.346199', '11.132750', '-62.877190', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747399', 3747399, '-135.404602', '3.017960', '-134.773499', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145090, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747400', 3747400, '-155.932007', '14.084030', '-185.687103', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747401', 3747401, '-176.806305', '20.096081', '-127.183998', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144546, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747402', 3747402, '-182.692200', '11.068910', '-54.575550', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144274, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747403', 3747403, '-188.219101', '8.602026', '-26.668791', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144002, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747404', 3747404, '-125.142403', '-1.327417', '12.701530', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143730, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747405', 3747405, '-142.871094', '-0.211552', '-0.011758', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143458, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747406', 3747406, '-188.977707', '1.185343', '0.288242', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143186, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747407', 3747407, '-196.063202', '-0.991883', '44.632591', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747408', 3747408, '-198.598099', '-1.427130', '46.344830', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142642, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747409', 3747409, '-265.374908', '-0.871808', '46.644829', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747410', 3747410, '-245.222107', '0.679796', '27.065580', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747411', 3747411, '-236.532196', '4.119698', '-11.326280', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747413', 3747413, '-237.229904', '7.081615', '-22.989599', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141554, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747414', 3747414, '-238.542206', '7.219037', '-24.718719', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747415', 3747415, '-245.215302', '6.500818', '-25.125641', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747417', 3747417, '-335.459198', '7.751451', '2.210185', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747419', 3747419, '-332.434692', '-0.635067', '45.192638', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747420', 3747420, '-338.391815', '2.787159', '90.300163', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140194, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747635', 3747635, '-101.580002', '3.185857', '-122.629700', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747636', 3747636, '-113.067703', '0.190863', '-235.496902', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747637', 3747637, '-8.689189', '-2.987621', '-71.427528', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747853', 3747853, '-210.928299', '22.971910', '-101.417801', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82028, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3747854', 3747854, '-210.061996', '22.349720', '-98.801086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82844, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3747855', 3747855, '-199.564606', '24.777719', '-122.897400', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82572, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3747856', 3747856, '-217.284500', '27.674749', '-122.597397', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81756, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(314, 'e0071', 'bnpc3747858', 3747858, '-217.212097', '28.120930', '-124.432098', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81212, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(314, 'e0071', 'bnpc3747859', 3747859, '-208.813400', '29.458891', '-133.137894', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80940, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3747860', 3747860, '-223.520599', '24.171949', '-95.828552', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81484, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3747864', 3747864, '-228.529297', '20.575800', '-76.218086', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85564, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3747865', 3747865, '-241.385498', '18.354990', '-63.139381', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85292, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3747867', 3747867, '-243.216904', '18.379009', '-62.623611', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86380, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3747868', 3747868, '-255.936401', '24.723961', '-77.803009', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86108, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3747869', 3747869, '-267.446411', '25.988930', '-78.509064', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85836, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(314, 'e0071', 'bnpc3747870', 3747870, '-266.262207', '26.413910', '-80.013046', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86924, 2, 0, 0, 0, 18, 30060, 0, 0, 0), +(314, 'e0071', 'bnpc3747873', 3747873, '-288.302704', '28.840969', '-91.487991', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86652, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3747874', 3747874, '-273.846008', '27.999920', '-103.128998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83660, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3747876', 3747876, '-257.572906', '27.938169', '-88.810738', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83932, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3747877', 3747877, '-234.919403', '27.970850', '-103.431198', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84476, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(314, 'e0071', 'bnpc3747880', 3747880, '-245.382996', '27.999990', '-107.453003', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83116, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3747881', 3747881, '-254.081406', '28.000000', '-102.002197', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84204, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(314, 'e0071', 'bnpc3747883', 3747883, '-258.959106', '28.000000', '-105.536201', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82300, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3747884', 3747884, '-251.270294', '27.969730', '-102.616898', 771, 0, 0, 0, 0, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85020, 2, 0, 0, 0, 18, 30059, 0, 0, 0), +(314, 'e0071', 'bnpc3747886', 3747886, '-248.655701', '28.000000', '-96.725998', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84748, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3747889', 3747889, '-248.153000', '28.470831', '-127.263100', 771, 0, 0, 0, 1, 6, 0, 0, 266, 0, '0.000000', 9, 0, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83388, 2, 0, 0, 0, 18, 30063, 0, 0, 0), +(314, 'e0071', 'bnpc3747891', 3747891, '-234.992294', '9.310618', '-37.905788', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139922, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747893', 3747893, '-237.711700', '8.873294', '-42.033760', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139650, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747899', 3747899, '-214.038300', '-30.502831', '123.735397', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139384, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747900', 3747900, '-250.516998', '-31.060820', '85.115646', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139118, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747904', 3747904, '-201.968796', '-30.857059', '117.357803', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138840, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747905', 3747905, '-183.124893', '-31.750071', '106.885902', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138568, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747906', 3747906, '-185.311996', '-31.750059', '109.415100', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138296, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747907', 3747907, '-152.843002', '-31.750000', '109.715103', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138024, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747908', 3747908, '-166.101105', '-31.750000', '110.540100', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137758, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747909', 3747909, '-169.604507', '-27.712351', '77.843430', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137486, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747910', 3747910, '-167.071503', '-27.177780', '76.317528', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137214, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747911', 3747911, '-210.234406', '-30.382589', '95.879173', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136942, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747913', 3747913, '-195.861603', '-27.444660', '129.920502', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136670, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747914', 3747914, '-224.566406', '-31.750071', '110.176003', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136398, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747915', 3747915, '-263.312103', '-31.750090', '97.519081', 101, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136126, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747916', 3747916, '-255.968094', '-31.750130', '95.789261', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135848, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747919', 3747919, '-211.436401', '-30.614429', '97.981651', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135576, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747921', 3747921, '-244.620895', '-28.275660', '117.486801', 100, 0, 0, 0, 1, 6, 0, 0, 317, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135304, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747922', 3747922, '-225.970795', '-15.579620', '71.709572', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135026, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747923', 3747923, '-170.891495', '-26.165300', '72.662949', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134754, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747924', 3747924, '-154.802902', '-29.800900', '94.071899', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134482, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747925', 3747925, '-164.402603', '-31.750019', '112.296303', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747927', 3747927, '-213.131393', '-30.063490', '125.099403', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747928', 3747928, '-234.579193', '-29.342421', '117.079697', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747930', 3747930, '-206.002899', '-30.332180', '97.422249', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747931', 3747931, '-258.774902', '-31.750071', '93.732712', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747933', 3747933, '-124.520401', '25.876591', '-384.084900', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117364, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747935', 3747935, '-120.378502', '25.406219', '-376.089111', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117636, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747936', 3747936, '-71.168182', '15.618890', '-341.319214', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117908, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747937', 3747937, '-140.945007', '34.283039', '-443.520813', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116548, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747945', 3747945, '-104.844803', '10.208240', '-322.407898', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116820, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747953', 3747953, '-68.964897', '24.845461', '-295.047913', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117092, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747955', 3747955, '-30.148661', '20.242010', '-347.723907', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118180, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747958', 3747958, '-20.706499', '20.599291', '-342.888702', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118724, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747963', 3747963, '20.322849', '15.975690', '-350.654205', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118996, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747965', 3747965, '39.420231', '19.301970', '-356.003815', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119268, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3747975', 3747975, '-138.811401', '27.237310', '-416.372986', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747994', 3747994, '-93.431030', '7.583686', '-301.106293', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3747997', 3747997, '-65.966766', '21.859249', '-305.947601', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748004', 3748004, '-66.655212', '20.943001', '-309.725586', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748006', 3748006, '-38.712181', '21.255770', '-344.167297', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748009', 3748009, '-93.684303', '18.821621', '-371.862793', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748015', 3748015, '-113.144402', '27.605829', '-397.741913', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131490, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748017', 3748017, '-112.844398', '28.132500', '-450.977997', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748018', 3748018, '-108.119003', '27.149870', '-454.027008', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748020', 3748020, '-152.178299', '27.511971', '-419.668915', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748022', 3748022, '35.132519', '17.855400', '-352.433105', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748394', 3748394, '65.413780', '20.079309', '-340.723206', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748396', 3748396, '-140.276199', '-3.219701', '-317.433502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108938, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748397', 3748397, '-147.234299', '-4.593012', '-324.147400', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106762, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748399', 3748399, '-210.589798', '1.083344', '-288.624390', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107306, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748402', 3748402, '-72.186493', '11.340310', '-240.295197', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107850, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748407', 3748407, '-77.690918', '8.765988', '-234.389694', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109210, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748409', 3748409, '-50.269390', '11.709270', '-222.062698', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108666, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748410', 3748410, '-65.652512', '8.342214', '-211.891998', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108122, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748411', 3748411, '-21.376921', '8.231496', '-242.911896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108394, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748412', 3748412, '-16.418360', '6.341013', '-249.044601', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748413', 3748413, '-6.975120', '11.175980', '-282.658691', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106490, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(314, 'e0071', 'bnpc3748414', 3748414, '10.056190', '8.215180', '-250.173004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748415', 3748415, '5.360405', '-0.923770', '-218.657303', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748416', 3748416, '48.714218', '0.699683', '-174.900604', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105674, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748417', 3748417, '95.936577', '1.386500', '-186.119995', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105946, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748418', 3748418, '31.585911', '8.951487', '-139.193497', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106218, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748419', 3748419, '35.112041', '16.424919', '-113.143204', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748420', 3748420, '34.363049', '8.229201', '-145.052994', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105130, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748421', 3748421, '90.860474', '1.763928', '-189.065002', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105402, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748422', 3748422, '113.054001', '1.174898', '-202.746704', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748423', 3748423, '130.461395', '1.093745', '-233.497101', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748424', 3748424, '124.484100', '0.743076', '-229.449493', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748425', 3748425, '89.422256', '3.504610', '-218.853806', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748428', 3748428, '-184.704300', '-4.704755', '-317.082306', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107034, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748429', 3748429, '-177.061203', '-3.447654', '-291.626190', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107578, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748430', 3748430, '-168.688507', '-1.968461', '-348.439789', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102954, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748431', 3748431, '-142.835693', '-1.140769', '-353.109894', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748433', 3748433, '-167.528793', '6.179857', '-382.681000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748434', 3748434, '-192.189301', '-4.726788', '-315.063293', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97242, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748436', 3748436, '-213.360901', '-4.497713', '-340.979004', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748437', 3748437, '-234.150696', '5.014801', '-286.084686', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98602, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748438', 3748438, '-218.334900', '17.160500', '-255.482300', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748443', 3748443, '-212.971405', '13.338840', '-260.496307', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748479', 3748479, '-151.282501', '-4.870804', '-286.887787', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748499', 3748499, '-178.949402', '6.440631', '-256.865692', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748520', 3748520, '-148.505096', '-5.306737', '-314.775085', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129858, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748524', 3748524, '-185.881104', '-4.844985', '-310.895508', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129586, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748526', 3748526, '-164.369003', '1.507254', '-251.882507', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129314, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748528', 3748528, '-207.412399', '17.160610', '-247.635193', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129042, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748530', 3748530, '-229.519104', '3.459191', '-289.959412', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128770, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748532', 3748532, '-163.010803', '-1.945551', '-356.094696', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128498, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748534', 3748534, '-173.595505', '5.841309', '-388.489685', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128226, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748537', 3748537, '-232.440796', '-2.339301', '-322.417908', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127954, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748538', 3748538, '-251.794006', '-1.267901', '-386.990295', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748542', 3748542, '-234.040207', '-0.107224', '-383.030914', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748543', 3748543, '-272.222107', '0.687642', '-325.399811', 197, 0, 0, 0, 0, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748545', 3748545, '-263.308685', '4.237235', '-309.758392', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748546', 3748546, '-252.162598', '0.152196', '-318.392395', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748548', 3748548, '-251.430496', '-2.982757', '-348.143311', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748549', 3748549, '-240.737198', '1.345172', '-393.418396', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748550', 3748550, '-242.828506', '-3.567687', '-364.035309', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748551', 3748551, '-250.630707', '-3.725200', '-363.735291', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748552', 3748552, '-213.087494', '1.112077', '-382.537415', 197, 0, 0, 0, 1, 6, 0, 0, 293, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748553', 3748553, '-255.836105', '7.531438', '-290.196289', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748554', 3748554, '-246.018097', '-2.631598', '-372.254608', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748555', 3748555, '-236.562103', '3.655112', '-396.309387', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748557', 3748557, '-203.850494', '16.277430', '-409.920593', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748559', 3748559, '-242.042892', '18.601339', '-425.242401', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748564', 3748564, '-177.168198', '14.656220', '-411.592987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748565', 3748565, '-215.900406', '16.573481', '-408.014008', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748566', 3748566, '-221.473297', '17.321730', '-412.786896', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101866, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748567', 3748567, '-236.289001', '19.116409', '-424.877502', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102682, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748570', 3748570, '-254.304306', '22.347059', '-449.055695', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102410, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748654', 3748654, '-205.192398', '19.296721', '-445.294189', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102138, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748657', 3748657, '-207.202301', '25.558809', '-115.343002', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126322, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748660', 3748660, '-222.657104', '20.702950', '-78.345047', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126050, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748662', 3748662, '-247.438400', '20.240339', '-67.748871', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125778, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748663', 3748663, '-230.727005', '26.739140', '-98.761307', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125506, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748670', 3748670, '-271.961609', '27.969740', '-98.954803', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125234, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748672', 3748672, '-271.661285', '23.599831', '-70.352722', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124962, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748674', 3748674, '-231.617004', '30.324150', '-133.076996', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124690, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748726', 3748726, '33.854542', '6.542700', '-211.889801', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124418, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748728', 3748728, '55.167561', '0.798945', '-193.606598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124146, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748729', 3748729, '69.255318', '0.046956', '-152.350906', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123874, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748730', 3748730, '10.055020', '5.968488', '-132.156097', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123602, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748732', 3748732, '50.175282', '14.921620', '-128.489700', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123330, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748734', 3748734, '76.929573', '3.883048', '-205.706406', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123058, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748736', 3748736, '79.198738', '3.548813', '-202.087204', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122786, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748737', 3748737, '106.461601', '1.818933', '-204.985199', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122514, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748738', 3748738, '140.354401', '0.554754', '-232.614304', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122242, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748739', 3748739, '111.391197', '0.776695', '-238.240707', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121970, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748749', 3748749, '145.884293', '-1.750025', '-212.434097', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3748752', 3748752, '136.108398', '-1.750136', '-190.396194', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3748753', 3748753, '149.821106', '-1.750019', '-214.231293', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54188, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3748755', 3748755, '84.854179', '-1.750136', '-139.436905', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53916, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3748758', 3748758, '72.003227', '-1.750024', '-104.510002', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53644, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3748760', 3748760, '68.467178', '-1.754834', '-99.778793', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53372, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3748763', 3748763, '78.693497', '-3.269199', '-32.994751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53100, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3748765', 3748765, '68.721947', '-2.620518', '-49.466751', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52828, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3748770', 3748770, '166.277496', '-1.754834', '-241.382507', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52556, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3748772', 3748772, '187.884293', '-1.754834', '-278.858704', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52284, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3748773', 3748773, '194.766006', '-1.750224', '-280.991394', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52012, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3748775', 3748775, '71.615707', '-3.621419', '-26.438259', 160, 0, 0, 0, 1, 6, 0, 0, 289, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51740, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3748850', 3748850, '12.774460', '-6.750232', '111.257401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90726, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3748852', 3748852, '9.592600', '-6.750232', '107.837402', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92086, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3748876', 3748876, '11.520510', '1.022307', '-111.986000', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101594, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748879', 3748879, '-129.259201', '2.487174', '-193.926895', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118452, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3748904', 3748904, '176.132706', '4.710299', '-187.304703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748905', 3748905, '158.969894', '2.732193', '-177.146698', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748906', 3748906, '191.563705', '2.176362', '-156.220703', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748907', 3748907, '196.388000', '3.012704', '-160.659393', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748908', 3748908, '239.061295', '5.923066', '-187.296494', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748910', 3748910, '269.473785', '9.044052', '-198.574799', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748913', 3748913, '263.650208', '11.289570', '-202.903397', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748915', 3748915, '227.710297', '-1.205510', '-113.847603', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748923', 3748923, '231.280899', '-1.632762', '-106.462196', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748926', 3748926, '200.610306', '-1.358100', '-103.471497', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748930', 3748930, '207.171707', '-1.144474', '-84.519768', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748932', 3748932, '173.937500', '1.205416', '-81.071228', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73736, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748934', 3748934, '148.809097', '3.036994', '-133.465897', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73464, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748937', 3748937, '169.787094', '0.045730', '-115.892303', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73192, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748941', 3748941, '145.535507', '4.850001', '-129.478104', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72920, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748942', 3748942, '119.305603', '3.909301', '-132.622696', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72648, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748943', 3748943, '109.916496', '3.556486', '-129.240601', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748944', 3748944, '224.505905', '-2.975556', '-56.412651', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72104, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748945', 3748945, '175.332993', '6.489766', '-41.243931', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748946', 3748946, '186.449905', '4.165666', '-17.319040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748947', 3748947, '281.825989', '-9.100459', '2.598387', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71832, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748949', 3748949, '288.471710', '-11.734230', '-3.952133', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71560, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748950', 3748950, '278.492310', '-14.114640', '-37.338871', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71288, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748953', 3748953, '324.544098', '-13.504280', '-33.615669', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748954', 3748954, '329.030212', '-13.565320', '-29.770399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748955', 3748955, '356.861603', '-15.283880', '-44.573921', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748956', 3748956, '347.890411', '-17.502140', '8.102493', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748962', 3748962, '150.469193', '19.150021', '-76.524040', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748963', 3748963, '146.044098', '19.581060', '-88.241302', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748964', 3748964, '117.082397', '20.462299', '-97.062683', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748967', 3748967, '142.873703', '16.403400', '-46.097549', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748968', 3748968, '400.991608', '-12.783140', '-32.000870', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748969', 3748969, '366.536896', '-16.189871', '-58.854092', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748970', 3748970, '415.234192', '-14.170130', '-62.547722', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748972', 3748972, '432.695709', '-16.065250', '-112.148399', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748974', 3748974, '436.729889', '-14.846640', '-118.392700', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68840, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748976', 3748976, '441.284088', '-15.576560', '-96.939430', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68568, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748980', 3748980, '384.960602', '-17.809891', '-96.639427', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68296, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748986', 3748986, '389.761108', '-17.502140', '-101.701401', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3748990', 3748990, '391.353210', '-17.460060', '-135.489304', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749004', 3749004, '172.667496', '7.527369', '-42.066410', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749018', 3749018, '187.591705', '4.184689', '-15.078180', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749020', 3749020, '183.022797', '5.398401', '-15.566580', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749031', 3749031, '202.090393', '0.810960', '-15.619060', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749036', 3749036, '199.896393', '1.465439', '-15.630680', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749047', 3749047, '143.173706', '15.773830', '-43.893311', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749053', 3749053, '153.171097', '16.202070', '-56.630402', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749059', 3749059, '151.803696', '19.216890', '-78.848953', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749061', 3749061, '153.666504', '19.040461', '-76.088043', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749071', 3749071, '144.894501', '19.988741', '-106.295998', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749073', 3749073, '142.185501', '20.171949', '-108.059097', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749080', 3749080, '115.432404', '20.583151', '-99.077271', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749083', 3749083, '114.653099', '20.724030', '-96.549553', 175, 0, 0, 0, 1, 6, 0, 0, 288, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749168', 3749168, '312.979492', '-19.718349', '-75.451233', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62252, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749170', 3749170, '261.730194', '-19.718349', '-82.128349', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61980, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749172', 3749172, '274.699402', '-19.718349', '-117.167198', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61708, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749173', 3749173, '291.363098', '-19.718349', '-136.065598', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749174', 3749174, '342.729797', '-19.718349', '-131.071106', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749175', 3749175, '353.724091', '-19.718349', '-85.215424', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749176', 3749176, '333.410095', '-19.718349', '-136.385498', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60620, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749177', 3749177, '319.949188', '-19.718349', '-179.156403', 26, 0, 0, 0, 1, 6, 0, 0, 216, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60348, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749178', 3749178, '308.689301', '-19.718349', '-60.698299', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60142, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749180', 3749180, '311.695190', '-19.718349', '-58.346031', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59870, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749183', 3749183, '330.312012', '-19.729959', '-70.267838', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59598, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749186', 3749186, '296.119995', '-19.718349', '-90.360474', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59326, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749187', 3749187, '293.415802', '-19.718349', '-93.414520', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59054, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749188', 3749188, '290.216614', '-19.718349', '-87.193253', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58782, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749189', 3749189, '258.481415', '-19.718349', '-104.208000', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58510, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749190', 3749190, '252.984802', '-19.718349', '-103.640099', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58238, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749191', 3749191, '257.907715', '-19.718349', '-125.303101', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57966, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749192', 3749192, '286.451904', '-19.718349', '-129.699097', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57694, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749193', 3749193, '282.557892', '-19.718349', '-147.388199', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57422, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749195', 3749195, '310.290314', '-19.718349', '-172.318802', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57150, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749196', 3749196, '313.118591', '-19.718349', '-169.401993', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56878, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749197', 3749197, '310.587006', '-19.718349', '-142.173401', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56606, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749199', 3749199, '350.892212', '-19.718349', '-150.816696', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56334, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749200', 3749200, '368.409302', '-19.718349', '-144.276596', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56062, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749201', 3749201, '364.918213', '-19.718349', '-140.378006', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55790, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749202', 3749202, '359.256592', '-19.718349', '-116.557503', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55518, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749203', 3749203, '346.291199', '-19.718349', '-105.267899', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55246, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749204', 3749204, '371.776215', '-19.718349', '-104.967796', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54974, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(314, 'e0071', 'bnpc3749211', 3749211, '123.998703', '28.662880', '-17.350370', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51474, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(314, 'e0071', 'bnpc3749213', 3749213, '121.332397', '28.612700', '-23.583090', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51208, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(314, 'e0071', 'bnpc3749215', 3749215, '161.791397', '28.213881', '-14.786040', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50936, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(314, 'e0071', 'bnpc3749218', 3749218, '137.021805', '28.624880', '-23.498341', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50658, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(314, 'e0071', 'bnpc3749219', 3749219, '107.272903', '29.216610', '-36.643101', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749222', 3749222, '149.401093', '28.610600', '-15.610050', 353, 0, 0, 0, 0, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50120, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(314, 'e0071', 'bnpc3749223', 3749223, '148.790604', '28.610600', '-15.152280', 352, 0, 0, 0, 0, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49842, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(314, 'e0071', 'bnpc3749225', 3749225, '122.827698', '28.633169', '-37.359280', 352, 0, 0, 0, 1, 6, 0, 0, 326, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749226', 3749226, '104.128304', '29.031771', '-49.110481', 353, 0, 0, 0, 1, 6, 0, 0, 330, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49304, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(314, 'e0071', 'bnpc3749235', 3749235, '93.149368', '29.525270', '-84.964371', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749239', 3749239, '67.895287', '30.429380', '-70.394157', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749240', 3749240, '65.047180', '30.255060', '-77.079674', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749241', 3749241, '44.682369', '28.535789', '-84.546478', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749242', 3749242, '66.806038', '29.155720', '-109.342300', 197, 0, 0, 0, 1, 6, 0, 0, 292, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749245', 3749245, '204.538101', '7.350389', '-181.293304', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749246', 3749246, '174.853104', '5.172761', '-202.929794', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749247', 3749247, '263.069611', '8.545942', '-196.205307', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749252', 3749252, '231.435593', '1.119558', '-165.006302', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749253', 3749253, '173.375305', '2.771811', '-168.286102', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749255', 3749255, '157.126694', '3.796749', '-121.347397', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749257', 3749257, '115.770103', '4.592918', '-127.306099', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749275', 3749275, '161.730301', '-1.754834', '-239.398804', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749277', 3749277, '185.534393', '-1.754834', '-265.705414', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749279', 3749279, '210.539902', '-1.750040', '-309.299408', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749284', 3749284, '211.839401', '-1.750030', '-306.582611', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749290', 3749290, '143.733002', '-1.750026', '-193.558701', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749297', 3749297, '144.345306', '0.955883', '-165.104004', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749310', 3749310, '216.777496', '0.994229', '-97.056053', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749312', 3749312, '169.933899', '2.409006', '-84.351593', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749314', 3749314, '219.378906', '-3.433327', '-46.921539', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749321', 3749321, '277.040192', '-7.191899', '-0.686294', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749327', 3749327, '331.429810', '-13.937110', '-37.954071', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749332', 3749332, '384.322205', '-19.359289', '-5.627488', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749336', 3749336, '382.853088', '-20.412571', '-0.889114', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749338', 3749338, '359.951508', '-16.405090', '-60.846310', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749343', 3749343, '451.404602', '-11.420970', '-118.535599', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749351', 3749351, '384.249603', '-17.667879', '-125.562897', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749357', 3749357, '297.316589', '-19.718349', '-70.108559', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749359', 3749359, '289.558197', '-19.718349', '-103.097801', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749362', 3749362, '240.405807', '-18.104980', '-89.540627', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749364', 3749364, '283.065491', '-19.718349', '-125.167999', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749367', 3749367, '267.129913', '-18.000000', '-169.891296', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749369', 3749369, '264.685486', '-18.000000', '-168.247101', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749370', 3749370, '316.532898', '-19.718349', '-157.003693', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749371', 3749371, '353.619995', '-19.718349', '-109.615997', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749373', 3749373, '339.318695', '-19.718349', '-85.941147', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749376', 3749376, '165.671799', '11.656820', '-52.356880', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749380', 3749380, '172.813995', '6.716133', '-26.881840', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749388', 3749388, '191.772202', '-0.202088', '-35.283329', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38430, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(314, 'e0071', 'bnpc3749390', 3749390, '136.510300', '18.512560', '-57.480461', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749392', 3749392, '133.468002', '19.606770', '-81.872276', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749396', 3749396, '128.184402', '20.219101', '-102.714104', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749397', 3749397, '116.821999', '23.443171', '-63.701351', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749399', 3749399, '86.653412', '30.354231', '-83.224442', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749402', 3749402, '86.953407', '29.540970', '-103.119400', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3749404', 3749404, '58.939091', '30.914900', '-69.530090', 38, 0, 0, 0, 1, 6, 0, 0, 279, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3751223', 3751223, '27.075630', '19.825541', '-258.167999', 735, 0, 0, 0, 0, 6, 0, 0, 246, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79592, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(314, 'e0071', 'bnpc3751224', 3751224, '25.641180', '19.827999', '-262.593201', 736, 0, 0, 0, 0, 6, 0, 0, 254, 0, '0.000000', 6, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80674, 4, 0, 0, 0, 0, 30059, 0, 0, 0), +(314, 'e0071', 'bnpc3751325', 3751325, '-86.401451', '-0.314426', '-202.187195', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121698, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3751326', 3751326, '-89.241432', '-0.377375', '-203.793503', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121426, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3751327', 3751327, '-54.347431', '10.746100', '-226.743500', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121154, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3751329', 3751329, '14.423480', '6.148088', '-236.752106', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3751331', 3751331, '-1.214684', '-0.950067', '-207.831497', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3751332', 3751332, '-12.497190', '11.337410', '-273.731598', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3751350', 3751350, '12.680810', '9.512568', '-296.489288', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3751353', 3751353, '-5.330978', '16.424870', '-314.262909', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119794, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3751354', 3751354, '-110.742599', '-1.464606', '-173.727402', 41, 0, 0, 0, 1, 6, 0, 0, 201, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119522, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3782203', 3782203, '-10.133880', '-3.109667', '-92.309822', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95882, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3782206', 3782206, '-5.820518', '-2.317021', '-88.935387', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95610, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3782208', 3782208, '-16.094000', '-4.734633', '-82.939987', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95338, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3782210', 3782210, '-16.866150', '-3.490384', '-51.955761', 432, 0, 0, 0, 1, 6, 0, 0, 294, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95066, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3782566', 3782566, '219.465393', '20.017179', '421.855988', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177456, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3782567', 3782567, '215.101303', '19.951290', '418.621094', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177184, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3782571', 3782571, '276.496490', '14.358410', '504.494598', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176912, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3782572', 3782572, '274.299194', '14.525580', '502.022614', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170662, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3782576', 3782576, '223.506195', '14.214930', '465.799103', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176640, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3782578', 3782578, '228.904907', '14.555940', '463.312805', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176368, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3782579', 3782579, '240.208405', '14.734180', '473.802307', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176096, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3782581', 3782581, '203.301804', '12.792270', '451.523285', 205, 0, 0, 0, 1, 6, 0, 0, 318, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175824, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc3782585', 3782585, '230.220703', '14.451260', '471.293915', 385, 0, 0, 0, 1, 6, 0, 0, 632, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173926, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(314, 'e0071', 'bnpc4057631', 4057631, '-117.387497', '15.659340', '316.159485', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22414, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(314, 'e0071', 'bnpc4057642', 4057642, '32.356911', '15.912200', '575.715027', 797, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22148, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(314, 'e0071', 'bnpc4057659', 4057659, '-26.174540', '-2.337916', '-130.147400', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21882, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(314, 'e0071', 'bnpc4057662', 4057662, '7.597365', '-2.072273', '-178.519897', 794, 0, 0, 0, 0, 6, 0, 0, 1276, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21610, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(314, 'e0071', 'bnpc4621827', 4621827, '-293.653107', '18.424400', '-380.671600', 2770, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22760, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4291568', 4291568, '76.290123', '30.749250', '-733.599182', 1776, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(315, 'e0072', 'bnpc4292672', 4292672, '-12.396590', '18.377340', '-670.928772', 1777, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22138, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(315, 'e0072', 'bnpc4292673', 4292673, '91.670517', '20.458050', '-614.237122', 1778, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21872, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(315, 'e0072', 'bnpc4295485', 4295485, '-266.791504', '-5.944477', '-526.778198', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295487', 4295487, '-276.140686', '-8.410786', '-516.253174', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295488', 4295488, '-298.914093', '-4.103804', '-550.291321', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295489', 4295489, '-103.196297', '1.542795', '-586.758179', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295490', 4295490, '-207.536301', '-2.690903', '-578.039001', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295491', 4295491, '-103.713898', '-0.832843', '-642.948425', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295492', 4295492, '-208.009796', '1.723610', '-616.185120', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71640, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295493', 4295493, '-172.408905', '4.990528', '-671.229126', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295495', 4295495, '-380.537506', '-16.898170', '-441.082001', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295496', 4295496, '-430.882507', '-16.898170', '-384.312195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295497', 4295497, '-390.139587', '-16.898170', '-350.704712', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70558, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295498', 4295498, '-398.062103', '-16.898170', '-358.104401', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70286, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295499', 4295499, '-336.279297', '-16.898170', '-437.756195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70014, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295500', 4295500, '-302.568298', '-16.898170', '-458.892609', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69742, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295501', 4295501, '-402.253601', '-16.898170', '-464.540710', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69470, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295503', 4295503, '-369.143799', '-16.898170', '-389.766815', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69198, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295505', 4295505, '-359.561707', '-16.042290', '-486.552094', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68932, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295506', 4295506, '-417.805786', '-6.910027', '-523.771912', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295507', 4295507, '-466.061310', '-9.446001', '-532.017029', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295508', 4295508, '-413.364410', '-2.492527', '-559.181519', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295514', 4295514, '-350.972809', '-6.607239', '-526.665222', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295515', 4295515, '-360.309296', '-4.290267', '-546.520813', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295516', 4295516, '-350.790710', '-3.296191', '-550.475586', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295520', 4295520, '-396.722198', '-14.513140', '-500.059692', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295524', 4295524, '-234.088699', '-4.989685', '-302.540588', 724, 0, 0, 0, 1, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4295525', 4295525, '-211.180405', '-2.844870', '-288.253998', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66496, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(315, 'e0072', 'bnpc4295526', 4295526, '-257.312897', '1.113892', '-308.064392', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66230, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4295528', 4295528, '-212.115707', '-2.955642', '-289.682190', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65946, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(315, 'e0072', 'bnpc4295529', 4295529, '-224.841705', '3.952026', '-259.540710', 725, 0, 0, 0, 1, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65680, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4295530', 4295530, '-203.875793', '24.704220', '-215.411697', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4295531', 4295531, '-234.943207', '21.774599', '-213.092300', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65136, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(315, 'e0072', 'bnpc4295532', 4295532, '-235.959198', '22.114910', '-212.031006', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64858, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(315, 'e0072', 'bnpc4295533', 4295533, '-234.301407', '21.966511', '-211.462402', 726, 0, 0, 0, 0, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(315, 'e0072', 'bnpc4295534', 4295534, '-127.288002', '47.127460', '-188.580307', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295535', 4295535, '-140.871399', '45.053020', '-179.736603', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295536', 4295536, '-136.478302', '46.067551', '-193.959702', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295537', 4295537, '-143.537201', '44.052780', '-181.398193', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295538', 4295538, '-146.514297', '42.327431', '-204.108902', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295539', 4295539, '-129.866394', '46.678692', '-196.996994', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295540', 4295540, '-145.364395', '42.544418', '-202.550705', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295541', 4295541, '-144.789993', '44.556961', '-194.376297', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295659', 4295659, '-53.322418', '17.072929', '-621.681213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295665', 4295665, '-88.710228', '0.643335', '-625.828125', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295666', 4295666, '-207.395203', '8.290789', '-665.648376', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295668', 4295668, '-156.229294', '-1.918439', '-604.694275', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295669', 4295669, '-304.707489', '-15.793150', '-491.020111', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295670', 4295670, '-386.814087', '-6.319692', '-539.647400', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295674', 4295674, '-375.356689', '-13.229610', '-505.729797', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295679', 4295679, '-327.840393', '-2.384109', '-563.164490', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295691', 4295691, '482.994690', '-1.037749', '-792.622070', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59992, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295693', 4295693, '473.960388', '0.503479', '-803.097595', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59720, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295694', 4295694, '450.441315', '-4.905994', '-755.835999', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59448, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295695', 4295695, '500.877289', '-5.020264', '-757.289978', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59176, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295697', 4295697, '456.274902', '-4.258285', '-763.958801', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295698', 4295698, '550.072510', '-9.750549', '-735.286499', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295700', 4295700, '487.731598', '2.187441', '-809.306885', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58360, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295702', 4295702, '268.736298', '32.329670', '-657.612671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295704', 4295704, '272.319611', '32.540180', '-659.312988', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295705', 4295705, '285.744507', '34.969521', '-689.040283', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295709', 4295709, '298.145996', '20.340210', '-684.382385', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295710', 4295710, '348.251495', '21.030451', '-726.475220', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295711', 4295711, '352.642487', '20.319700', '-740.209778', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295712', 4295712, '369.140015', '21.089970', '-736.832886', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56462, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295715', 4295715, '363.363007', '-1.968445', '-698.451172', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56190, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295716', 4295716, '557.910828', '-5.547063', '-643.875671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55918, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295717', 4295717, '557.692322', '16.908760', '-525.262085', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55646, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295718', 4295718, '576.089783', '12.066130', '-514.577271', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55374, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295719', 4295719, '594.596985', '7.711907', '-478.120911', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295720', 4295720, '616.268982', '8.446064', '-482.073486', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(315, 'e0072', 'bnpc4295726', 4295726, '356.740601', '-6.149414', '-463.218109', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295727', 4295727, '365.071991', '-14.602910', '-430.808014', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54298, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295728', 4295728, '350.667511', '-17.288509', '-404.379303', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295734', 4295734, '413.196686', '-20.564011', '-317.744904', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295735', 4295735, '387.892609', '-18.073410', '-346.505707', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53476, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295736', 4295736, '450.900513', '-17.914270', '-353.105286', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295737', 4295737, '481.724091', '-12.428540', '-382.045105', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295738', 4295738, '511.909393', '-9.373532', '-382.464996', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52660, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295739', 4295739, '522.073730', '0.990242', '-453.501709', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295747', 4295747, '588.058716', '-2.946974', '-271.337891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295749', 4295749, '568.700012', '-2.429443', '-330.453400', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295751', 4295751, '582.843079', '-3.006616', '-272.419891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295755', 4295755, '214.220200', '-22.109159', '-425.877502', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51324, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295757', 4295757, '208.472198', '-22.096960', '-422.660797', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295759', 4295759, '162.350601', '-27.989771', '-429.755402', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295760', 4295760, '152.123001', '-27.048130', '-440.418915', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295761', 4295761, '177.396194', '-25.049320', '-444.224487', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295762', 4295762, '267.297211', '-21.872410', '-406.569397', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295763', 4295763, '306.843597', '-26.993231', '-409.628510', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295764', 4295764, '304.550415', '-25.764360', '-424.008301', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295769', 4295769, '306.531403', '-6.106912', '-519.224976', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49130, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295770', 4295770, '282.576813', '-0.225863', '-572.515686', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48852, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295771', 4295771, '310.969513', '6.158492', '-563.194397', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48592, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295809', 4295809, '156.994202', '14.383940', '-592.509216', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48290, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295811', 4295811, '223.296295', '19.340050', '-610.880798', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48018, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295812', 4295812, '201.983597', '-0.198364', '-555.107971', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295813', 4295813, '341.647797', '-7.563892', '-456.047089', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295816', 4295816, '408.980713', '-16.354401', '-360.560699', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295818', 4295818, '509.696991', '-9.567444', '-375.661896', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295820', 4295820, '496.853485', '0.344957', '-504.120392', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295823', 4295823, '601.499573', '8.072348', '-517.726685', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295825', 4295825, '570.526428', '-2.482952', '-625.752014', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295827', 4295827, '556.342102', '-7.876167', '-657.103516', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295829', 4295829, '554.863770', '-9.262268', '-749.843628', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295831', 4295831, '503.838013', '-2.956629', '-777.365173', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295834', 4295834, '482.706696', '1.341902', '-807.133728', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295835', 4295835, '486.772400', '5.215003', '-836.320984', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295836', 4295836, '471.659790', '3.490144', '-819.978882', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295837', 4295837, '484.345886', '5.375706', '-837.509583', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295840', 4295840, '412.710693', '-9.353821', '-747.005371', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295844', 4295844, '384.603485', '-4.196289', '-690.486023', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295846', 4295846, '332.112701', '4.562378', '-690.424988', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43394, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295850', 4295850, '316.341492', '26.032160', '-728.249573', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43122, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295851', 4295851, '297.774597', '15.475720', '-651.450989', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295855', 4295855, '598.748718', '-3.250244', '-301.930298', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295858', 4295858, '591.221985', '-1.360156', '-323.232788', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295862', 4295862, '-314.692108', '-15.474820', '-327.581299', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295866', 4295866, '-272.613800', '-8.061660', '-332.045013', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295867', 4295867, '-217.273193', '-1.571716', '-276.691895', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295870', 4295870, '-229.022598', '14.450200', '-236.072403', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295871', 4295871, '-188.372696', '33.340939', '-195.666504', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4295884', 4295884, '-562.005005', '-2.945007', '-452.323212', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40722, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4295886', 4295886, '-554.466980', '-3.768982', '-380.758392', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40456, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4295887', 4295887, '-568.932678', '-2.945007', '-424.124603', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40190, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4295889', 4295889, '-543.789124', '-3.866000', '-411.311401', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4296050', 4296050, '-471.824188', '-6.332520', '-433.737701', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39640, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(315, 'e0072', 'bnpc4296052', 4296052, '-484.855499', '-6.027344', '-447.898102', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39368, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(315, 'e0072', 'bnpc4296053', 4296053, '-445.975494', '-12.710820', '-466.361511', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32130, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4296054', 4296054, '-473.746887', '-4.409851', '-480.766113', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32432, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4296055', 4296055, '-471.580109', '-6.668213', '-449.912292', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39102, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4296056', 4296056, '-453.727112', '-10.818660', '-442.862610', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38842, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4296060', 4296060, '-455.741211', '-7.492188', '-484.428192', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38552, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(315, 'e0072', 'bnpc4296081', 4296081, '-603.967285', '-3.891113', '-368.337494', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38298, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4296082', 4296082, '-640.680481', '-3.891113', '-370.046600', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38032, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4296091', 4296091, '-592.797729', '-2.945007', '-432.211792', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37736, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(315, 'e0072', 'bnpc4296093', 4296093, '-635.341492', '-2.933044', '-396.278687', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37464, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(315, 'e0072', 'bnpc4296094', 4296094, '-548.271912', '-1.937927', '-310.963593', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37204, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4296096', 4296096, '-498.711395', '-3.960067', '-255.747696', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36932, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(315, 'e0072', 'bnpc4296098', 4296098, '-558.028809', '-3.683542', '-364.324585', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36648, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(315, 'e0072', 'bnpc4296100', 4296100, '-489.250092', '-3.708008', '-282.124115', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36376, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(315, 'e0072', 'bnpc4296103', 4296103, '-446.294891', '-4.000447', '-219.651199', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36104, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(315, 'e0072', 'bnpc4296105', 4296105, '-437.867004', '-2.581742', '-273.708099', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35832, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(315, 'e0072', 'bnpc4296108', 4296108, '-527.244995', '-2.670410', '-288.624512', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35554, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4296110', 4296110, '-560.845276', '-2.975586', '-327.595886', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35294, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4296111', 4296111, '-547.325928', '-1.754883', '-291.645691', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35016, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4296113', 4296113, '-527.817322', '-3.767937', '-323.068909', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4296115', 4296115, '-543.791321', '-3.216822', '-330.542389', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34496, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4296118', 4296118, '-473.824707', '-3.767937', '-273.987488', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34224, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4296119', 4296119, '-488.912994', '-3.958386', '-246.223602', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33946, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4296120', 4296120, '-461.660309', '-3.996136', '-252.041306', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33650, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4296121', 4296121, '-428.786102', '-3.945695', '-301.904114', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4296122', 4296122, '-429.702698', '-3.990123', '-245.654495', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33118, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4296344', 4296344, '-618.398071', '-3.216822', '-419.669586', 201, 0, 0, 0, 5, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32692, 1, 0, 0, 0, 0, 0, 4296333, 0, 0), +(315, 'e0072', 'bnpc4331545', 4331545, '-431.193512', '-15.291800', '-426.211914', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31858, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4331546', 4331546, '-472.129791', '-5.294910', '-466.746185', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31586, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4331549', 4331549, '-455.329895', '-10.797180', '-446.420288', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4331550', 4331550, '-470.522400', '-4.822834', '-501.822296', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31072, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(315, 'e0072', 'bnpc4621627', 4621627, '459.067596', '6.191762', '-845.122498', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22746, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4291453', 4291453, '155.132599', '222.009995', '348.043488', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41428, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(316, 'e0073', 'bnpc4291457', 4291457, '272.663513', '222.247696', '334.248901', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41156, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(316, 'e0073', 'bnpc4291464', 4291464, '220.038406', '302.644592', '-149.387497', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(316, 'e0073', 'bnpc4291467', 4291467, '177.878494', '301.664612', '-190.712402', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40618, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(316, 'e0073', 'bnpc4291540', 4291540, '264.301514', '302.632202', '-284.870697', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40346, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(316, 'e0073', 'bnpc4291544', 4291544, '-136.888702', '304.096985', '-285.084290', 1775, 0, 0, 0, 0, 6, 0, 0, 1583, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40080, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(316, 'e0073', 'bnpc4291545', 4291545, '-494.600586', '204.213104', '-188.481094', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39796, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(316, 'e0073', 'bnpc4291549', 4291549, '-535.141113', '204.035507', '-287.671906', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39524, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(316, 'e0073', 'bnpc4296962', 4296962, '6.586450', '224.231003', '359.448090', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4296996', 4296996, '16.820339', '216.422195', '389.762604', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4296997', 4296997, '31.967649', '236.529999', '323.628510', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4296998', 4296998, '72.035683', '242.920105', '316.766113', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4296999', 4296999, '79.061470', '241.243393', '319.846802', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297000', 4297000, '112.809898', '239.429306', '294.575287', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163724, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297001', 4297001, '58.960991', '253.937698', '281.400696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163452, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297003', 4297003, '10.569400', '224.790207', '357.938599', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163180, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297008', 4297008, '354.657288', '224.892807', '300.765289', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162914, 5, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(316, 'e0073', 'bnpc4297010', 4297010, '417.257904', '226.214996', '374.532593', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297011', 4297011, '421.699005', '227.744202', '370.285492', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297012', 4297012, '330.572113', '223.491394', '369.867493', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297013', 4297013, '429.534393', '217.970001', '417.141296', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161826, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297015', 4297015, '417.746185', '217.952194', '480.668488', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161554, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297016', 4297016, '422.541687', '219.795303', '494.286896', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161282, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297019', 4297019, '411.649689', '220.784195', '484.018890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161010, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297021', 4297021, '181.170303', '242.354599', '223.538406', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160744, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297025', 4297025, '342.033508', '264.985504', '103.754501', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160472, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297026', 4297026, '88.700684', '244.067993', '303.089813', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297027', 4297027, '88.700684', '222.003494', '420.492798', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297028', 4297028, '-25.009581', '205.387497', '480.682007', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297029', 4297029, '398.841614', '224.765701', '381.022705', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297232', 4297232, '-397.424805', '210.788193', '-238.255402', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38242, 8, 0, 0, 4128002, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4297234', 4297234, '-397.352997', '210.788193', '-233.666794', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37970, 8, 0, 0, 4128001, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4297235', 4297235, '-397.251587', '210.788193', '-228.848999', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37698, 8, 0, 0, 4128000, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4297236', 4297236, '-423.044800', '210.788193', '-221.963104', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37426, 8, 0, 0, 4297227, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4297238', 4297238, '-413.101990', '210.788193', '-212.035004', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37154, 8, 0, 0, 4297228, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4297239', 4297239, '-417.529114', '210.788193', '-217.341202', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36882, 8, 0, 0, 4297229, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4297336', 4297336, '168.169693', '276.447601', '-48.600040', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159112, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297337', 4297337, '264.687988', '294.602692', '-93.670403', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158840, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4297346', 4297346, '280.170807', '253.192902', '147.692001', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4297350', 4297350, '334.350311', '248.434402', '184.154297', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4297353', 4297353, '327.623993', '256.382294', '132.340805', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4297354', 4297354, '291.785187', '269.499786', '39.650711', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4297356', 4297356, '192.950302', '271.137512', '3.646851', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4297359', 4297359, '285.844391', '267.842712', '44.338120', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4297363', 4297363, '173.391296', '272.125793', '-12.465330', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4297364', 4297364, '249.355698', '270.133301', '26.395069', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4297365', 4297365, '203.100204', '254.232300', '149.502304', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298567', 4298567, '157.396698', '293.324097', '-98.374939', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298571', 4298571, '159.523300', '293.493011', '-99.299156', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298572', 4298572, '135.779297', '299.755890', '-101.941704', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298573', 4298573, '136.228699', '283.407715', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298574', 4298574, '258.647614', '289.809692', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298575', 4298575, '254.634094', '287.557098', '-64.855118', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298576', 4298576, '268.831512', '284.212891', '-40.760189', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298741', 4298741, '251.759094', '294.415894', '-111.584099', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298744', 4298744, '288.151489', '302.427002', '-86.886337', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153938, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298765', 4298765, '321.597290', '303.200989', '-338.780914', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298767', 4298767, '346.691895', '304.562286', '-319.108887', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298770', 4298770, '357.329712', '304.360687', '-356.956696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298772', 4298772, '407.769012', '305.618500', '-327.457397', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298773', 4298773, '412.865387', '304.484802', '-333.469391', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298780', 4298780, '365.239410', '319.169586', '-254.025299', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298781', 4298781, '388.845612', '321.034485', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298784', 4298784, '476.218811', '327.076996', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298787', 4298787, '494.638214', '304.602112', '-349.542206', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298790', 4298790, '182.909805', '336.140900', '-467.124512', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151236, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298792', 4298792, '150.108704', '345.173309', '-380.467590', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150964, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298794', 4298794, '146.329498', '347.075287', '-385.583313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150692, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298812', 4298812, '253.761307', '343.590393', '-494.726715', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150420, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298813', 4298813, '294.270294', '329.274292', '-477.805786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298814', 4298814, '212.636703', '327.759796', '-433.014313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298815', 4298815, '412.045288', '353.824188', '-499.736786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149604, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298816', 4298816, '394.674591', '355.184204', '-555.809875', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298823', 4298823, '260.181488', '356.282806', '-541.374878', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298824', 4298824, '188.311493', '357.747803', '-557.427429', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298825', 4298825, '285.877686', '359.578705', '-569.421021', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148522, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298835', 4298835, '126.756599', '376.088989', '-671.473328', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148250, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298837', 4298837, '356.375610', '356.320007', '-595.291321', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298842', 4298842, '468.223511', '349.470490', '-668.565430', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147700, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298844', 4298844, '531.422729', '348.817993', '-732.418884', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147428, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298845', 4298845, '539.850708', '348.653900', '-745.830627', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147156, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4298846', 4298846, '96.262070', '375.573090', '-645.236084', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298847', 4298847, '618.677002', '325.703705', '-430.685913', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298848', 4298848, '626.867126', '322.872803', '-394.244293', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298849', 4298849, '673.548279', '293.690308', '-320.820892', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298851', 4298851, '584.470276', '282.391998', '-315.705292', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298852', 4298852, '599.206482', '281.914215', '-300.226898', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298853', 4298853, '564.033630', '282.951599', '-300.851807', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298854', 4298854, '684.587830', '306.511292', '-363.764191', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298855', 4298855, '562.945190', '342.102997', '-474.200287', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298858', 4298858, '463.976410', '249.572906', '-308.802399', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298859', 4298859, '473.929901', '247.699707', '-302.357513', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298860', 4298860, '490.206787', '271.288086', '-298.332397', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298861', 4298861, '397.627808', '248.461594', '-320.859192', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298862', 4298862, '283.789703', '236.298401', '-325.220306', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298863', 4298863, '291.652496', '235.940796', '-331.188995', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143094, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298864', 4298864, '296.253906', '234.759995', '-368.673309', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298866', 4298866, '473.213501', '248.114304', '-259.048889', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298871', 4298871, '614.450012', '323.410309', '-400.318604', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298873', 4298873, '668.683716', '306.076996', '-365.426788', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298882', 4298882, '683.369995', '295.457611', '-324.276794', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298884', 4298884, '681.273376', '295.122589', '-325.174805', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298886', 4298886, '581.921387', '282.296997', '-294.985413', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298888', 4298888, '584.498718', '282.204895', '-290.600891', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298891', 4298891, '598.967285', '282.223602', '-314.123505', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298892', 4298892, '570.297485', '282.771301', '-310.753998', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298900', 4298900, '532.146484', '235.205200', '301.718414', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140114, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4298901', 4298901, '548.790588', '235.278793', '308.827301', 114, 0, 0, 0, 1, 6, 0, 0, 662, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139848, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4298902', 4298902, '539.909912', '235.309296', '290.943695', 115, 0, 0, 0, 0, 6, 0, 0, 661, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139582, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(316, 'e0073', 'bnpc4298903', 4298903, '543.114685', '235.512100', '292.484009', 116, 0, 0, 0, 0, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139316, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(316, 'e0073', 'bnpc4298911', 4298911, '465.921387', '232.736298', '321.428497', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4298914', 4298914, '485.744812', '233.755707', '315.057404', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4298917', 4298917, '8.385859', '200.822098', '514.171082', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298919', 4298919, '3.468143', '219.127502', '377.671387', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298921', 4298921, '56.439899', '213.878601', '395.393188', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298922', 4298922, '32.688740', '261.800201', '264.078491', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298924', 4298924, '31.549110', '262.086487', '260.424103', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298925', 4298925, '97.214867', '251.860901', '270.377808', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298926', 4298926, '65.567993', '240.283707', '329.732208', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298928', 4298928, '173.567596', '231.665298', '266.478912', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298932', 4298932, '267.711090', '226.465698', '281.598785', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298933', 4298933, '349.538513', '232.623795', '259.540588', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298934', 4298934, '353.841400', '234.302200', '255.420700', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298937', 4298937, '398.091797', '226.637100', '344.024994', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298938', 4298938, '278.828003', '242.816803', '203.601105', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298941', 4298941, '191.013199', '256.839386', '104.428802', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4298943', 4298943, '248.318405', '261.876587', '67.776207', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299053', 4299053, '152.027496', '277.941711', '34.020439', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299054', 4299054, '235.312393', '277.402405', '-48.467419', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299057', 4299057, '191.224899', '284.341797', '-81.645477', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299063', 4299063, '374.380005', '306.477386', '-331.197113', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299079', 4299079, '343.678802', '311.085602', '-403.738495', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299081', 4299081, '278.156586', '313.466095', '-429.770386', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299082', 4299082, '347.909790', '309.989197', '-275.124512', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299084', 4299084, '404.743988', '318.417908', '-277.971985', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299088', 4299088, '457.550507', '305.113708', '-285.144989', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299091', 4299091, '458.811310', '305.676910', '-289.211914', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299093', 4299093, '502.242096', '302.581390', '-245.190903', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299094', 4299094, '502.391815', '308.429413', '-356.438385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299096', 4299096, '502.046387', '342.161713', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299098', 4299098, '424.421387', '339.137909', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299099', 4299099, '429.241394', '341.024200', '-436.179199', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299100', 4299100, '218.158203', '330.586700', '-473.045013', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299102', 4299102, '173.367004', '339.026001', '-390.899200', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299103', 4299103, '119.335899', '353.367310', '-336.673615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299106', 4299106, '166.454803', '348.701294', '-492.608795', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299107', 4299107, '432.587189', '365.876801', '-537.769714', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299110', 4299110, '418.305603', '349.797699', '-685.625427', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299112', 4299112, '485.808594', '353.806305', '-658.057312', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299114', 4299114, '298.678589', '345.167297', '-521.747192', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128442, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299115', 4299115, '198.874802', '362.118011', '-601.265076', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299116', 4299116, '138.675293', '374.013306', '-661.681824', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299117', 4299117, '324.054291', '360.242188', '-582.895081', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299119', 4299119, '283.839905', '362.149506', '-625.782288', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299120', 4299120, '210.687897', '361.424805', '-658.411926', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299121', 4299121, '205.782394', '360.548187', '-666.505615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299188', 4299188, '105.119400', '289.448395', '-164.568604', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120116, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299192', 4299192, '62.638309', '289.814606', '-219.226395', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299194', 4299194, '-1.358093', '310.902496', '-142.015701', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299195', 4299195, '-58.910789', '304.604401', '-272.412598', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299197', 4299197, '-86.450127', '300.163605', '-170.834900', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299198', 4299198, '137.090607', '290.130798', '-258.218414', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299208', 4299208, '-115.231300', '298.469788', '-208.100098', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299210', 4299210, '-205.664902', '281.635010', '-192.517700', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118284, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299213', 4299213, '-107.621902', '300.038086', '-137.041306', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118012, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299215', 4299215, '-158.759003', '292.966492', '-201.171295', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299216', 4299216, '-162.136307', '291.173187', '-194.256607', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299217', 4299217, '-205.676498', '283.894012', '-114.763100', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117196, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299218', 4299218, '-212.088394', '285.828400', '-56.427200', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299219', 4299219, '-290.402100', '261.601898', '-157.738800', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116652, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299227', 4299227, '-318.632690', '255.833298', '-42.884541', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101716, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299230', 4299230, '-340.376007', '259.605804', '-64.511017', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101444, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299231', 4299231, '-317.614502', '256.207092', '-97.947693', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299233', 4299233, '-257.298615', '264.585693', '-65.689346', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299235', 4299235, '-249.965302', '269.336914', '-76.447701', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299236', 4299236, '-353.139587', '237.921494', '-157.603195', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299238', 4299238, '-423.544708', '240.253296', '-111.314598', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299241', 4299241, '-359.502197', '233.804596', '-160.537003', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299242', 4299242, '-578.240723', '227.008408', '-125.078201', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116386, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299244', 4299244, '-499.116089', '237.639496', '-97.965683', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116114, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299247', 4299247, '-655.179871', '229.729202', '-54.205719', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115842, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299249', 4299249, '-483.586609', '226.184692', '-125.489799', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299250', 4299250, '-477.837402', '228.009293', '-122.481400', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299252', 4299252, '-573.938416', '231.500397', '-73.804337', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299254', 4299254, '-600.372192', '209.926697', '-352.855804', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299256', 4299256, '-623.961182', '211.311707', '-374.720001', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299257', 4299257, '-624.778992', '210.859299', '-381.588593', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299258', 4299258, '-586.229492', '201.455200', '-440.921997', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299259', 4299259, '-583.154114', '188.738800', '-477.195404', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299260', 4299260, '-653.461182', '211.102798', '-435.622009', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299422', 4299422, '-650.603027', '204.070007', '-488.214691', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299424', 4299424, '-551.951416', '206.791595', '-350.856995', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112856, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299425', 4299425, '-612.623779', '216.144806', '-319.243988', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299426', 4299426, '-853.938416', '226.438599', '25.457430', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299427', 4299427, '-879.604614', '229.180099', '-15.122490', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299428', 4299428, '-894.004272', '228.026398', '0.443500', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299429', 4299429, '-907.681885', '249.338104', '26.397079', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299430', 4299430, '-907.681885', '247.122192', '-24.585300', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299431', 4299431, '-938.982971', '269.272095', '1.981136', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299433', 4299433, '-951.375916', '276.008698', '-32.272030', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299593', 4299593, '117.442703', '288.131500', '-217.671204', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299595', 4299595, '61.837181', '292.037506', '-153.092804', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299596', 4299596, '58.310040', '291.422913', '-157.591202', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299597', 4299597, '-17.296480', '300.204010', '-215.268906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299598', 4299598, '-102.796997', '298.673889', '-164.088501', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299599', 4299599, '-144.174805', '292.303986', '-187.728806', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299600', 4299600, '-141.522705', '298.377014', '-239.075500', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299602', 4299602, '-187.987900', '287.198914', '-119.562897', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299603', 4299603, '-250.437195', '273.614410', '-139.801193', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299604', 4299604, '-287.381409', '260.165009', '-74.592461', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299605', 4299605, '-249.896500', '264.386505', '-56.690639', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299606', 4299606, '-316.963898', '249.190399', '0.375132', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299607', 4299607, '-353.362305', '249.890305', '-112.803703', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107126, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299608', 4299608, '-317.082214', '255.914795', '-163.691803', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106854, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299610', 4299610, '-540.337280', '216.113495', '-165.331497', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106582, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299612', 4299612, '-494.751099', '227.817902', '-119.577698', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299614', 4299614, '-538.078918', '224.933197', '-115.343002', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299615', 4299615, '-679.120911', '223.608002', '-24.397600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299617', 4299617, '-748.989075', '226.855804', '-70.359383', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105494, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299618', 4299618, '-763.556213', '240.848099', '-149.583405', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105222, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299620', 4299620, '-791.189026', '244.109695', '-171.737000', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104950, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299628', 4299628, '-802.041016', '225.578995', '14.979860', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299805', 4299805, '-869.248901', '228.169098', '24.666691', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299806', 4299806, '-916.034790', '242.289902', '5.756409', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299808', 4299808, '-898.861877', '250.815994', '-36.228569', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299809', 4299809, '-932.563721', '262.462097', '18.376640', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299833', 4299833, '-528.303406', '207.486404', '-361.926514', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299835', 4299835, '-635.674072', '220.452301', '-338.610809', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299836', 4299836, '-582.583984', '206.158493', '-384.262085', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102774, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(316, 'e0073', 'bnpc4299839', 4299839, '-524.189880', '192.377594', '-420.327301', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299840', 4299840, '-649.544922', '206.868103', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299842', 4299842, '-652.836792', '207.443604', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299844', 4299844, '-459.800110', '286.182892', '196.642899', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99194, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299846', 4299846, '-523.050415', '277.612488', '197.807800', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98922, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299847', 4299847, '-532.402588', '240.741592', '331.532806', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98650, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299850', 4299850, '-475.198303', '237.443207', '403.405304', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299852', 4299852, '-369.299286', '237.950699', '382.602814', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98106, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299853', 4299853, '-350.165009', '237.914505', '384.625702', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97834, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299854', 4299854, '-269.214996', '226.703201', '429.251587', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97562, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299856', 4299856, '-231.006302', '225.146896', '420.889496', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299858', 4299858, '-634.704590', '244.070801', '300.718811', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97018, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299859', 4299859, '-706.643005', '237.401398', '303.170288', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96746, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299861', 4299861, '-766.720093', '254.688202', '421.683014', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96474, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299862', 4299862, '-743.321777', '254.701202', '428.467499', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299872', 4299872, '-358.874786', '272.546112', '253.455994', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299873', 4299873, '-357.118988', '248.051895', '290.108185', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299874', 4299874, '-401.256805', '239.983307', '278.980713', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299876', 4299876, '-288.120392', '293.587006', '256.741089', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299877', 4299877, '-277.870697', '258.656494', '334.187714', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299878', 4299878, '-321.083313', '262.754395', '217.010696', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299879', 4299879, '-440.215912', '244.465805', '319.074097', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94316, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299880', 4299880, '-394.308411', '303.990997', '193.089905', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299881', 4299881, '-460.690186', '270.367493', '260.074188', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4299886', 4299886, '-254.901993', '224.367096', '523.252625', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299887', 4299887, '-247.943405', '224.715195', '514.518921', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93096, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299888', 4299888, '-282.529114', '224.717606', '503.718506', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92824, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299889', 4299889, '-393.453888', '238.452805', '503.715515', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92552, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299909', 4299909, '-485.722290', '243.436295', '460.457214', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92280, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299910', 4299910, '-491.588287', '245.377701', '463.765594', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92008, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299912', 4299912, '-305.548096', '226.398407', '559.785400', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91736, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299914', 4299914, '-212.225906', '229.780594', '563.407715', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91464, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299915', 4299915, '-252.616806', '224.743301', '626.013428', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91192, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299917', 4299917, '-120.126801', '205.896805', '472.541412', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299933', 4299933, '-167.451797', '212.509293', '469.950714', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299935', 4299935, '-192.431595', '215.960907', '481.742401', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299937', 4299937, '-254.539902', '221.577606', '466.534088', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299939', 4299939, '-261.479614', '221.984207', '460.971405', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89970, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299940', 4299940, '-327.888702', '223.177307', '446.066895', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89698, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299942', 4299942, '-452.292694', '231.075394', '433.657410', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299943', 4299943, '-556.198486', '235.399994', '407.330414', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299944', 4299944, '-563.418518', '235.399994', '398.974304', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4299945', 4299945, '-533.244080', '235.399994', '407.132111', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4300046', 4300046, '-699.997925', '253.759995', '507.272186', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88344, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300048', 4300048, '-688.471802', '253.697205', '509.426910', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88072, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300049', 4300049, '-698.510803', '253.838196', '499.010101', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87800, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300050', 4300050, '-705.378479', '253.881699', '505.406494', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87528, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300051', 4300051, '-699.795776', '253.759995', '514.230591', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300052', 4300052, '-688.023315', '253.529099', '507.670410', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300053', 4300053, '-688.742798', '253.351105', '499.477112', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300054', 4300054, '-677.956787', '254.053894', '498.299103', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300056', 4300056, '-493.539612', '282.080109', '191.529907', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300057', 4300057, '-521.202393', '242.145401', '299.671906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300059', 4300059, '-521.172913', '237.402893', '377.595398', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300061', 4300061, '-438.483398', '245.206894', '362.585205', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300062', 4300062, '-248.297302', '227.611099', '410.760986', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300064', 4300064, '-153.368500', '221.118393', '416.250702', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300066', 4300066, '-98.785767', '213.591293', '426.872589', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300069', 4300069, '-272.282501', '264.869385', '321.059906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300070', 4300070, '-390.265106', '233.670807', '321.964600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83926, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300072', 4300072, '-383.889404', '248.725204', '219.890106', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83654, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300074', 4300074, '-416.929291', '233.443802', '461.940796', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300078', 4300078, '-295.979309', '224.444901', '485.191010', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300080', 4300080, '-346.028900', '236.543396', '518.089478', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300081', 4300081, '-227.039001', '229.327805', '547.600525', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300083', 4300083, '-286.249908', '221.550095', '669.298584', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300084', 4300084, '-282.240204', '222.570007', '672.355286', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300085', 4300085, '-254.344894', '224.215302', '580.497681', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300087', 4300087, '-149.461502', '217.410095', '485.622894', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300089', 4300089, '-604.956787', '244.740799', '337.663788', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300090', 4300090, '-649.166504', '245.258606', '286.166504', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300091', 4300091, '-748.151123', '238.541107', '350.326385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300171', 4300171, '566.598206', '289.624603', '98.502197', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4300176', 4300176, '527.275391', '303.059296', '-162.340805', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79372, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(316, 'e0073', 'bnpc4300177', 4300177, '586.301575', '302.701202', '-115.328102', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79100, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(316, 'e0073', 'bnpc4300178', 4300178, '654.442383', '298.421295', '-12.551030', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78828, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(316, 'e0073', 'bnpc4300179', 4300179, '669.497986', '301.708099', '-29.924919', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78556, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(316, 'e0073', 'bnpc4300180', 4300180, '602.427917', '290.487396', '-0.884406', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78284, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(316, 'e0073', 'bnpc4300181', 4300181, '664.371399', '287.443909', '73.074158', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78012, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(316, 'e0073', 'bnpc4300182', 4300182, '601.759216', '287.400208', '127.919098', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77740, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(316, 'e0073', 'bnpc4300183', 4300183, '565.585571', '287.455109', '154.665298', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77468, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(316, 'e0073', 'bnpc4300184', 4300184, '558.831116', '300.043915', '59.949520', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77196, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(316, 'e0073', 'bnpc4300191', 4300191, '511.356689', '303.173004', '-206.740097', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76930, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(316, 'e0073', 'bnpc4300194', 4300194, '494.438110', '303.700287', '-197.619598', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76646, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300196', 4300196, '508.591888', '303.338898', '-205.656296', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76392, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(316, 'e0073', 'bnpc4300198', 4300198, '523.491211', '302.387909', '-191.363495', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76120, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300200', 4300200, '559.439514', '303.965698', '-151.707001', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75836, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300201', 4300201, '555.992920', '301.960693', '-163.683502', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75570, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300203', 4300203, '593.473511', '302.708496', '-99.112923', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75304, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300204', 4300204, '642.703979', '303.166687', '-43.589840', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300205', 4300205, '650.994812', '303.095612', '-38.070992', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74742, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300206', 4300206, '625.239319', '302.690613', '-97.402184', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74476, 1, 0, 0, 0, 45, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300209', 4300209, '635.367188', '303.307190', '-92.580772', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74198, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(316, 'e0073', 'bnpc4300210', 4300210, '636.402405', '303.397003', '-95.636833', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73938, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(316, 'e0073', 'bnpc4300212', 4300212, '640.141296', '289.793488', '15.564350', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73654, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300213', 4300213, '632.201416', '287.460602', '83.472313', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73394, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300214', 4300214, '694.667114', '302.802002', '-25.909540', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73116, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300215', 4300215, '668.584900', '286.359985', '53.434738', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72856, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300219', 4300219, '653.565674', '286.929688', '35.585339', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72566, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(316, 'e0073', 'bnpc4300220', 4300220, '654.409180', '286.791412', '37.999821', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72312, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(316, 'e0073', 'bnpc4300221', 4300221, '655.671082', '286.824310', '34.141949', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72034, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(316, 'e0073', 'bnpc4300222', 4300222, '657.228088', '286.375885', '36.471931', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71756, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(316, 'e0073', 'bnpc4300226', 4300226, '639.859619', '286.099091', '135.124603', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71478, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(316, 'e0073', 'bnpc4300227', 4300227, '642.707703', '286.175110', '132.877899', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71212, 1, 0, 0, 0, 0, 30120, 0, 0, 0), +(316, 'e0073', 'bnpc4300229', 4300229, '708.942505', '286.232513', '46.920448', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70946, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300230', 4300230, '711.298828', '285.307404', '75.698997', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70680, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300232', 4300232, '613.615784', '284.572296', '166.852005', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70408, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300233', 4300233, '590.029480', '285.689209', '176.024506', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70130, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300234', 4300234, '646.990784', '285.135101', '149.341507', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69852, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300236', 4300236, '586.167297', '288.737610', '-28.609209', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4300238', 4300238, '582.383789', '289.517700', '-46.738300', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4300239', 4300239, '559.963928', '292.885193', '-35.993568', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65790, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4300241', 4300241, '576.693481', '289.831787', '-46.195572', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4300242', 4300242, '498.254486', '308.702209', '-165.574203', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4300244', 4300244, '507.927002', '303.303497', '-229.236298', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4300246', 4300246, '630.399292', '300.341187', '-66.790810', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65518, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4300250', 4300250, '684.486816', '291.013214', '7.434129', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4300253', 4300253, '639.507080', '287.656799', '38.046551', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66062, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4300254', 4300254, '630.756226', '286.750000', '109.616798', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4300256', 4300256, '570.830383', '286.569214', '120.215103', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4300257', 4300257, '555.228516', '297.855499', '84.213348', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4300284', 4300284, '605.249023', '330.830811', '-303.486786', 114, 0, 0, 0, 0, 6, 0, 0, 662, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68668, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(316, 'e0073', 'bnpc4300286', 4300286, '527.855225', '308.308502', '-299.702515', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69478, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300287', 4300287, '575.036316', '320.881805', '-289.906189', 115, 0, 0, 0, 1, 6, 0, 0, 661, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69218, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4300288', 4300288, '577.508118', '322.468903', '-294.789093', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68952, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(316, 'e0073', 'bnpc4325155', 4325155, '215.504501', '360.039307', '-581.431030', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4406869', 4406869, '311.001099', '307.036499', '-422.752106', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126194, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406870', 4406870, '323.323395', '303.822296', '-391.989014', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125922, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406871', 4406871, '317.110413', '305.692505', '-418.385315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125650, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406872', 4406872, '351.343506', '312.029114', '-396.169098', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125378, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406873', 4406873, '350.968994', '315.450592', '-416.192993', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125106, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406874', 4406874, '48.752670', '311.224213', '-250.581207', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124834, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406875', 4406875, '44.907230', '311.238312', '-245.044693', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124562, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406876', 4406876, '66.984810', '300.472412', '-252.706802', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124290, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406877', 4406877, '-17.150419', '311.581512', '-255.273895', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124018, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406878', 4406878, '7.231910', '312.528687', '-245.321793', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123746, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406879', 4406879, '-6.278003', '305.376709', '-233.466095', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123474, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406880', 4406880, '-10.073550', '305.779694', '-236.697601', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123202, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406884', 4406884, '357.847992', '311.662201', '-388.165497', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122930, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406885', 4406885, '363.148010', '313.250488', '-391.308411', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122658, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406886', 4406886, '331.929413', '319.783203', '-430.502808', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122386, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406888', 4406888, '113.582199', '354.933685', '-335.568512', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406890', 4406890, '121.680801', '354.167114', '-326.125214', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406891', 4406891, '110.022797', '357.553314', '-311.841187', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406892', 4406892, '111.824799', '358.195190', '-382.551514', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406893', 4406893, '115.392303', '357.688690', '-387.074890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4406894', 4406894, '93.907928', '362.855194', '-349.329315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4600355', 4600355, '547.412170', '348.384613', '-748.106018', 1699, 0, 0, 0, 8, 6, 0, 0, 2162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4614331', 4614331, '530.815125', '348.686096', '-743.006226', 1700, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43556, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4614332', 4614332, '535.935608', '348.616394', '-737.220215', 2222, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43290, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4621624', 4621624, '-332.429199', '307.678406', '234.107803', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44948, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(316, 'e0073', 'bnpc4890695', 4890695, '-188.798996', '226.035995', '400.288086', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(316, 'e0073', 'bnpc4890696', 4890696, '-132.585098', '216.182098', '435.066193', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1139214', 1139214, '-268.574097', '7.064880', '631.738708', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1139231', 1139231, '-15.879850', '-0.100045', '376.413208', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1139247', 1139247, '-122.621803', '1.180372', '288.650391', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1139253', 1139253, '-116.636803', '1.401093', '293.862488', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1139295', 1139295, '-239.337799', '0.869717', '266.651306', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1139296', 1139296, '-242.175995', '0.625573', '262.958710', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1139314', 1139314, '-234.854004', '-0.100137', '305.762085', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1139319', 1139319, '-284.558105', '1.846295', '342.205505', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1139327', 1139327, '-178.824295', '0.141551', '253.664703', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160176, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1139344', 1139344, '-179.793198', '0.669785', '323.976196', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159904, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1139407', 1139407, '-279.011292', '6.027267', '564.782104', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159632, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1139408', 1139408, '-254.932495', '6.759699', '578.911987', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159360, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1139409', 1139409, '-258.136902', '7.827831', '603.051819', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159088, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1139410', 1139410, '-257.221405', '6.637627', '578.881470', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1139423', 1139423, '-276.386688', '5.966230', '538.170288', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158544, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1139425', 1139425, '-266.529388', '5.020171', '542.473389', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1139430', 1139430, '-220.569199', '3.982558', '556.969482', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158000, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1140323', 1140323, '48.412201', '22.379660', '245.108307', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124060, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140341', 1140341, '148.210800', '18.142929', '63.034969', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134118, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140355', 1140355, '-167.689697', '4.657228', '188.189499', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157728, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1140356', 1140356, '-140.886597', '6.118821', '203.173798', 13, 0, 0, 0, 1, 6, 0, 0, 566, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157456, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1140376', 1140376, '-173.095795', '7.162746', '110.695396', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119830, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140378', 1140378, '-169.298904', '4.379292', '134.294601', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119558, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140379', 1140379, '-176.483307', '6.579963', '113.899696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119286, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140393', 1140393, '-213.883896', '11.384410', '78.615593', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119014, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140405', 1140405, '-204.099792', '10.836050', '82.086967', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118742, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140418', 1140418, '-170.832901', '8.611761', '46.359402', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118470, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140419', 1140419, '-163.073196', '7.441800', '53.057159', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118198, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140420', 1140420, '-208.158096', '10.773990', '72.948898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117926, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140429', 1140429, '-210.742401', '9.567359', '0.839199', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117654, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140430', 1140430, '-217.212204', '9.475805', '3.250124', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117382, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140459', 1140459, '-87.514954', '0.030696', '53.398781', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97846, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140460', 1140460, '-83.185509', '0.030617', '55.136490', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98118, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140461', 1140461, '-100.175499', '1.815776', '55.405460', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97302, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140462', 1140462, '-87.013252', '0.030600', '71.372276', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97574, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140539', 1140539, '-119.476097', '5.647681', '112.526497', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117110, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140540', 1140540, '-126.604202', '5.923794', '94.623161', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116838, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140541', 1140541, '-126.329498', '5.844177', '109.056198', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116566, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140980', 1140980, '-313.130402', '25.345190', '-208.453506', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116294, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140981', 1140981, '-326.970612', '26.883949', '-216.976898', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116022, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140982', 1140982, '-329.696594', '21.078899', '-165.243500', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115750, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140983', 1140983, '-338.267395', '24.724110', '-191.433197', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115478, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1140984', 1140984, '-323.896515', '19.876869', '-162.956696', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115206, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1144407', 1144407, '-272.144714', '17.696960', '57.133450', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105716, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1144408', 1144408, '-257.479095', '14.942520', '80.117462', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1144457', 1144457, '-241.510406', '16.161341', '12.992840', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105444, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1144491', 1144491, '-78.316467', '3.566922', '-36.424759', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106260, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1144547', 1144547, '-106.571297', '7.155371', '-106.524399', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1144577', 1144577, '-127.875000', '6.779816', '-22.488760', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105172, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1144585', 1144585, '-91.407356', '7.599404', '-74.910507', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104900, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1144597', 1144597, '-58.182690', '6.881772', '-97.795113', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1144598', 1144598, '-132.427704', '9.336102', '-104.286499', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99744, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1144629', 1144629, '-152.086700', '11.093260', '-140.581406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1144631', 1144631, '-151.639099', '11.652820', '-128.275406', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1144632', 1144632, '-167.772995', '9.292697', '-129.167694', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1144653', 1144653, '-78.954659', '4.479653', '-126.207397', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100016, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1144691', 1144691, '-129.860199', '13.845340', '-129.543701', 33, 0, 0, 0, 1, 6, 0, 0, 215, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1144692', 1144692, '-205.706894', '9.018035', '-138.750305', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1144694', 1144694, '-208.087296', '9.353733', '-141.039200', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1144747', 1144747, '2.112435', '6.781407', '-26.549141', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107620, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(317, 'e0074', 'bnpc1144748', 1144748, '17.348650', '6.534479', '-18.517111', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107892, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1144786', 1144786, '30.609501', '4.094535', '43.754768', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108164, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1144790', 1144790, '42.343739', '4.165666', '68.558739', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1144793', 1144793, '142.320801', '4.196184', '25.833481', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1144799', 1144799, '40.001209', '4.166452', '71.521370', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1144800', 1144800, '70.561348', '4.166210', '66.426353', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145309', 1145309, '99.839729', '6.729181', '-55.405548', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93954, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145310', 1145310, '104.112297', '7.125916', '-59.922218', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93682, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145311', 1145311, '111.009300', '12.405540', '-76.890251', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93410, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145312', 1145312, '53.134991', '10.581870', '-71.978127', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93138, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145330', 1145330, '33.785549', '7.920002', '-96.910088', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92866, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145331', 1145331, '30.485310', '6.219395', '-100.848801', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92594, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145342', 1145342, '7.202258', '5.720373', '-72.371872', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92322, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145343', 1145343, '0.456908', '5.833508', '-87.359497', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92050, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145344', 1145344, '9.624027', '5.417103', '-76.025612', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91778, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145371', 1145371, '323.490204', '5.164718', '-43.671810', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91506, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145380', 1145380, '267.748199', '4.639788', '9.815885', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91234, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145382', 1145382, '262.290802', '3.068853', '19.805670', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90962, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145556', 1145556, '396.724701', '3.565628', '167.813797', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68950, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145558', 1145558, '440.238007', '1.174898', '187.579102', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68678, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145559', 1145559, '499.565002', '1.571632', '166.216507', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68406, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145562', 1145562, '455.435913', '3.250124', '198.748703', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68134, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145578', 1145578, '484.519714', '3.768931', '199.908401', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67862, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145579', 1145579, '528.374084', '7.553168', '195.361206', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67590, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145581', 1145581, '509.391815', '4.440328', '204.577698', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67318, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145595', 1145595, '513.939880', '14.256400', '137.989304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1145607', 1145607, '549.889282', '11.612070', '204.730194', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66774, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145610', 1145610, '538.797913', '21.846140', '123.039803', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1145612', 1145612, '542.038208', '13.673390', '165.126495', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1145613', 1145613, '504.953491', '14.256390', '115.266296', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1145625', 1145625, '557.183105', '21.846149', '129.558304', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1145628', 1145628, '553.643005', '21.683020', '99.412483', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1145631', 1145631, '575.402405', '21.683020', '111.314499', 8, 0, 0, 0, 1, 6, 0, 0, 8, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc1145702', 1145702, '284.107697', '3.982544', '49.240841', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90690, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc1145703', 1145703, '342.275299', '7.889330', '-41.286991', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90418, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299623', 2299623, '-290.183014', '-0.100012', '465.039612', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299626', 2299626, '-303.145111', '-0.100187', '410.650696', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299628', 2299628, '-315.270905', '0.279321', '442.690002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299630', 2299630, '-290.338806', '-0.100002', '403.924103', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299631', 2299631, '-260.457001', '-0.100012', '454.819794', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299632', 2299632, '-166.141800', '-0.100048', '463.106415', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139002, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299636', 2299636, '-85.984627', '-0.137378', '426.901611', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299637', 2299637, '-105.242203', '-0.100010', '441.452209', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299638', 2299638, '-127.139801', '-0.100007', '331.296906', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299640', 2299640, '-106.279099', '-0.167896', '335.835785', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299642', 2299642, '-76.920776', '0.228838', '434.653198', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299644', 2299644, '-121.995903', '-0.106860', '397.177002', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299647', 2299647, '-213.092300', '-0.106860', '435.019409', 34, 0, 0, 0, 1, 12, 0, 0, 34, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299670', 2299670, '105.271896', '19.668831', '117.021400', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299672', 2299672, '179.124298', '15.917120', '38.983059', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299676', 2299676, '67.215942', '23.941410', '138.414597', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133302, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299677', 2299677, '92.332291', '22.476490', '171.373993', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124332, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299678', 2299678, '68.223038', '21.438881', '171.709702', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123788, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299681', 2299681, '27.293150', '20.375059', '193.801193', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299682', 2299682, '76.646019', '20.096081', '218.799103', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123516, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299685', 2299685, '222.992401', '6.174502', '28.347420', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132764, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299686', 2299686, '218.930206', '7.861652', '25.101040', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132492, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299687', 2299687, '219.145096', '9.429937', '43.394890', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132220, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299688', 2299688, '242.878006', '5.513403', '43.686531', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131948, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299693', 2299693, '203.440796', '11.769820', '11.092830', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131676, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299695', 2299695, '183.372894', '13.534710', '15.091120', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131404, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299696', 2299696, '190.876602', '14.557230', '16.119829', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131132, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299697', 2299697, '181.536499', '14.175580', '17.074800', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130860, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299701', 2299701, '46.014000', '24.951891', '129.998001', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299707', 2299707, '62.549999', '18.461660', '250.313202', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299711', 2299711, '-240.650101', '6.790217', '647.669128', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153932, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299712', 2299712, '-268.177307', '7.461614', '616.082886', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299713', 2299713, '-298.512299', '10.330310', '645.349670', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299714', 2299714, '-301.838715', '11.032230', '612.298706', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299716', 2299716, '-278.400909', '7.095398', '588.036926', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299719', 2299719, '-256.092194', '6.362965', '575.310913', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299720', 2299720, '-249.805496', '4.135148', '533.104370', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299722', 2299722, '-243.854507', '-0.167896', '489.982391', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299723', 2299723, '-273.384796', '-0.100012', '454.524109', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299725', 2299725, '-301.158295', '1.302513', '475.886902', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299729', 2299729, '-220.495697', '-0.100054', '427.954590', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151212, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299730', 2299730, '-295.158295', '-0.100004', '416.955688', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299731', 2299731, '-158.892197', '-0.137378', '438.498413', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150668, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299732', 2299732, '-97.367859', '-0.137378', '460.166290', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299733', 2299733, '-102.128700', '-0.106860', '387.319702', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299734', 2299734, '-103.898697', '-0.106860', '385.000305', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299735', 2299735, '-73.472237', '-0.100006', '383.004608', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299736', 2299736, '-119.829102', '-0.106860', '335.713715', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299737', 2299737, '-25.762659', '-0.100045', '385.324402', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299738', 2299738, '-12.145770', '-0.100007', '340.874298', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299739', 2299739, '-36.646210', '-0.100007', '330.899811', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299740', 2299740, '-69.291260', '-0.100006', '346.480591', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299741', 2299741, '-29.965321', '-0.106860', '383.686096', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299742', 2299742, '-152.754807', '-0.100000', '285.928711', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299746', 2299746, '-188.861404', '-0.100036', '279.196106', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299747', 2299747, '-138.628296', '-0.106860', '247.516495', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299748', 2299748, '-207.352600', '-0.100011', '323.235504', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299751', 2299751, '-240.541595', '-0.100076', '309.201599', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299754', 2299754, '-282.546997', '2.068284', '344.383087', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299756', 2299756, '-165.855804', '3.695794', '214.781403', 41, 0, 0, 0, 1, 6, 0, 0, 168, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299762', 2299762, '190.512695', '15.940850', '25.798840', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299764', 2299764, '193.374695', '15.528740', '58.982250', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299765', 2299765, '192.796906', '15.253090', '57.661560', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299767', 2299767, '162.554993', '16.909040', '69.378082', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299768', 2299768, '118.356201', '19.249180', '84.129753', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299769', 2299769, '119.667503', '18.832991', '86.148743', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299771', 2299771, '205.228104', '12.477170', '36.627281', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299772', 2299772, '218.183899', '10.623910', '45.217682', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299775', 2299775, '206.333893', '12.854360', '17.317181', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 35, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299777', 2299777, '114.394302', '18.347380', '106.921097', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 36, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299779', 2299779, '125.780098', '24.673790', '178.210098', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299781', 2299781, '135.240707', '28.061291', '166.094406', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299782', 2299782, '132.860199', '26.962641', '168.596893', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299783', 2299783, '145.372696', '31.326719', '173.479797', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299785', 2299785, '52.078991', '24.582239', '146.288193', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299786', 2299786, '52.109509', '24.917931', '143.633102', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299788', 2299788, '54.687038', '18.847170', '222.674896', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299789', 2299789, '71.783401', '22.789841', '205.433395', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299791', 2299791, '52.628319', '11.490000', '281.025391', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299792', 2299792, '55.405460', '12.252950', '279.835114', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299799', 2299799, '-333.285889', '20.722960', '-154.265701', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114934, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299800', 2299800, '-287.157501', '15.489150', '-84.197617', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299802', 2299802, '-262.604095', '12.804420', '-65.742996', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106532, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299803', 2299803, '-258.117889', '10.828210', '-67.787712', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299804', 2299804, '-235.706100', '8.377155', '-31.937180', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 21, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299812', 2299812, '-156.572906', '6.393483', '12.436060', 3, 0, 0, 0, 1, 6, 0, 0, 3, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114662, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299820', 2299820, '-231.464096', '9.353733', '-146.379807', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299822', 2299822, '-119.740601', '2.027413', '-74.048714', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299823', 2299823, '-98.963509', '2.027430', '-27.024349', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299882', 2299882, '-305.844391', '25.145599', '-209.288696', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114396, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299886', 2299886, '-345.664215', '23.928289', '-176.087097', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299887', 2299887, '-347.161285', '24.534389', '-177.381302', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113852, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299895', 2299895, '-261.350800', '12.694290', '-76.165604', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113580, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299901', 2299901, '-279.804291', '19.410770', '50.600639', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113308, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299908', 2299908, '-263.922089', '15.508790', '89.442383', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 24, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113036, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299911', 2299911, '-145.702393', '6.826308', '-14.807010', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112764, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299914', 2299914, '-186.113998', '9.086921', '28.118750', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112492, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299915', 2299915, '-149.863907', '4.337313', '105.397102', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112220, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299916', 2299916, '-212.124496', '12.717620', '104.362198', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111948, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299930', 2299930, '-56.242779', '6.495965', '-71.791733', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111676, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299933', 2299933, '-107.042099', '5.264315', '-76.487633', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111404, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299936', 2299936, '-66.982857', '5.925140', '-114.246902', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111132, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299938', 2299938, '-139.531906', '11.537960', '-122.054199', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110860, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299941', 2299941, '-121.466599', '10.386180', '-143.292297', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110588, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299945', 2299945, '0.868353', '6.550388', '-34.652611', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110316, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299949', 2299949, '57.447720', '3.129161', '-49.835171', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110044, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299951', 2299951, '20.675930', '4.623436', '23.544621', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 22, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109772, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2299953', 2299953, '102.866203', '4.166452', '53.437038', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2299954', 2299954, '105.180397', '4.165666', '50.461540', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2300024', 2300024, '124.376198', '19.407740', '-146.837601', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90098, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(317, 'e0074', 'bnpc2300025', 2300025, '124.414299', '19.130779', '-145.398300', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89832, 1, 0, 0, 0, 0, 30067, 0, 0, 0), +(317, 'e0074', 'bnpc2300029', 2300029, '83.634644', '9.048584', '-90.501282', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89566, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc2300030', 2300030, '71.000183', '18.234480', '-159.014297', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89282, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(317, 'e0074', 'bnpc2300031', 2300031, '71.760773', '18.225830', '-160.113007', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89016, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(317, 'e0074', 'bnpc2300041', 2300041, '179.222198', '18.223680', '-145.087006', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88744, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc2300042', 2300042, '170.907196', '17.193430', '-151.395401', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88466, 1, 0, 0, 0, 0, 30072, 0, 0, 0), +(317, 'e0074', 'bnpc2300044', 2300044, '121.843201', '20.218161', '-96.971130', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88200, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(317, 'e0074', 'bnpc2300045', 2300045, '123.185997', '20.370750', '-97.032173', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87922, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(317, 'e0074', 'bnpc2300047', 2300047, '131.347900', '20.830030', '-112.115501', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87650, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc2300048', 2300048, '136.095200', '18.936399', '-149.187500', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87378, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc2300050', 2300050, '99.198853', '17.898781', '-160.631805', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87118, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc2300051', 2300051, '171.717804', '17.307770', '-150.139297', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86846, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(317, 'e0074', 'bnpc2300067', 2300067, '435.940704', '-0.982693', '5.487583', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76704, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(317, 'e0074', 'bnpc2300068', 2300068, '440.817810', '-1.144474', '-14.663970', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86520, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc2300072', 2300072, '438.040710', '-0.412041', '-42.984711', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71530, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(317, 'e0074', 'bnpc2300074', 2300074, '441.568298', '0.782855', '-28.634399', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc2300077', 2300077, '426.413208', '-0.717224', '-50.309021', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72346, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(317, 'e0074', 'bnpc2300080', 2300080, '399.968506', '4.262952', '-41.852612', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74800, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(317, 'e0074', 'bnpc2300084', 2300084, '360.969208', '1.840043', '-6.628087', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75616, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc2300091', 2300091, '376.814392', '4.773165', '-33.204460', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71258, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(317, 'e0074', 'bnpc2300092', 2300092, '356.160797', '2.687235', '2.700800', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86248, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc2300095', 2300095, '366.384308', '1.052825', '12.741240', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76160, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(317, 'e0074', 'bnpc2300098', 2300098, '387.472290', '-0.900329', '20.340231', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85976, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(317, 'e0074', 'bnpc2300099', 2300099, '387.075500', '-1.022401', '21.408360', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75888, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(317, 'e0074', 'bnpc2300103', 2300103, '403.433197', '-2.121051', '16.250811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85704, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc2300104', 2300104, '436.545288', '-1.022401', '4.501364', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72074, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(317, 'e0074', 'bnpc2300105', 2300105, '435.723999', '-1.106398', '3.907724', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75344, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(317, 'e0074', 'bnpc2300115', 2300115, '389.150787', '4.287738', '-36.392811', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85432, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc2300119', 2300119, '397.360107', '0.381429', '115.953300', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64870, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2300123', 2300123, '371.755493', '-3.015678', '139.708099', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2300126', 2300126, '360.794006', '0.882443', '141.705902', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64326, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2300129', 2300129, '415.670990', '3.677377', '157.396805', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64054, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2300135', 2300135, '458.854004', '3.829967', '201.098602', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63782, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2300137', 2300137, '476.584991', '0.595055', '149.950302', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2300147', 2300147, '552.727478', '9.658914', '216.571198', 16, 0, 0, 0, 1, 6, 0, 0, 15, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2300183', 2300183, '383.639801', '-2.278431', '92.591690', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300184', 2300184, '382.528412', '-2.487267', '93.400421', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300186', 2300186, '375.396393', '-4.129155', '77.561340', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300187', 2300187, '364.309113', '-4.655180', '71.455116', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300189', 2300189, '365.917114', '-5.088186', '65.510399', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300192', 2300192, '411.093201', '3.616341', '129.442200', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300193', 2300193, '410.513397', '4.074111', '156.633804', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300197', 2300197, '458.426697', '0.625573', '163.103607', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300199', 2300199, '458.792908', '0.625573', '164.843201', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300201', 2300201, '504.417389', '3.433233', '169.054596', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300202', 2300202, '512.107971', '5.050689', '209.033295', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300204', 2300204, '495.841888', '5.844158', '182.604706', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300205', 2300205, '544.090881', '10.452380', '201.525803', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300207', 2300207, '540.215088', '16.250811', '152.025604', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300211', 2300211, '525.902100', '19.058470', '105.821297', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300212', 2300212, '526.207275', '19.119511', '106.095901', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300214', 2300214, '570.489014', '22.507010', '119.554398', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300215', 2300215, '558.794128', '21.835609', '103.813599', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300217', 2300217, '592.919678', '25.558809', '131.029205', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300218', 2300218, '595.269714', '25.497780', '132.829697', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300222', 2300222, '158.947800', '16.443180', '-139.791306', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300223', 2300223, '162.681396', '16.443199', '-145.830505', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300229', 2300229, '47.617500', '4.166452', '66.536598', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300236', 2300236, '296.403412', '-0.256715', '-3.540742', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300237', 2300237, '307.939301', '-0.256714', '-0.769719', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2300241', 2300241, '306.026306', '-0.256723', '1.577364', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83896, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2308368', 2308368, '-332.770508', '11.416920', '613.476685', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145778, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(317, 'e0074', 'bnpc2308369', 2308369, '-343.075592', '12.112200', '626.433289', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144424, 1, 0, 0, 0, 41, 30083, 0, 0, 0), +(317, 'e0074', 'bnpc2308372', 2308372, '-345.601593', '15.548900', '608.209290', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143880, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc2308373', 2308373, '-344.072388', '20.119520', '620.861877', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145506, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(317, 'e0074', 'bnpc2308806', 2308806, '-332.725800', '11.426350', '614.251526', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143608, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(317, 'e0074', 'bnpc2308807', 2308807, '-333.646912', '11.427370', '613.129211', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144152, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(317, 'e0074', 'bnpc2308808', 2308808, '-325.795410', '11.581550', '623.895630', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144696, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(317, 'e0074', 'bnpc2308809', 2308809, '-333.211304', '11.428960', '605.065918', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145234, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(317, 'e0074', 'bnpc2308811', 2308811, '-314.290100', '11.306890', '604.882813', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144962, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(317, 'e0074', 'bnpc2308812', 2308812, '-302.510101', '16.006670', '74.845451', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109506, 1, 0, 0, 0, 8, 30065, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(317, 'e0074', 'bnpc2308813', 2308813, '-305.806091', '17.837749', '80.064034', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109240, 1, 0, 0, 0, 8, 30072, 0, 0, 0), +(317, 'e0074', 'bnpc2308814', 2308814, '-302.204987', '16.159260', '76.035652', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108974, 1, 0, 0, 0, 8, 30079, 0, 0, 0), +(317, 'e0074', 'bnpc2308815', 2308815, '-306.242096', '16.501289', '63.830650', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108702, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc2308816', 2308816, '-295.566986', '17.347191', '79.688187', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108418, 1, 0, 0, 0, 8, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc2308817', 2308817, '73.624763', '7.705750', '-111.894501', 84, 0, 0, 0, 0, 6, 0, 0, 52, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83570, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(317, 'e0074', 'bnpc2308818', 2308818, '74.906487', '7.766785', '-112.382797', 86, 0, 0, 0, 0, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83304, 1, 0, 0, 0, 0, 30074, 0, 0, 0), +(317, 'e0074', 'bnpc2308819', 2308819, '68.253563', '7.766795', '-107.438797', 87, 0, 0, 0, 0, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83038, 1, 0, 0, 0, 0, 30081, 0, 0, 0), +(317, 'e0074', 'bnpc2308820', 2308820, '72.922729', '7.614197', '-102.708603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82766, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc2308822', 2308822, '80.979607', '7.614197', '-109.636101', 86, 0, 0, 0, 1, 6, 0, 0, 172, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82488, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc2310066', 2310066, '447.442291', '0.685165', '-106.462196', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82168, 1, 0, 0, 0, 5, 30073, 0, 0, 0), +(317, 'e0074', 'bnpc2310068', 2310068, '439.536102', '-0.228932', '-82.414017', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71802, 1, 0, 0, 0, 5, 30076, 0, 0, 0), +(317, 'e0074', 'bnpc2310072', 2310072, '447.196014', '-0.473083', '-64.896667', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81896, 1, 0, 0, 0, 5, 30079, 0, 0, 0), +(317, 'e0074', 'bnpc2310073', 2310073, '448.172607', '-0.473083', '-65.140808', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75072, 1, 0, 0, 0, 5, 30077, 0, 0, 0), +(317, 'e0074', 'bnpc2310077', 2310077, '606.902283', '21.846050', '94.322968', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310079', 2310079, '628.601990', '21.846140', '96.549973', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310080', 2310080, '634.544983', '21.846140', '87.894997', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310081', 2310081, '632.357971', '21.846130', '64.279701', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56692, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310082', 2310082, '626.666382', '21.845909', '61.769680', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56420, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310083', 2310083, '607.055603', '21.845909', '87.877663', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56148, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310084', 2310084, '607.202271', '21.845900', '69.260597', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55876, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310086', 2310086, '647.131470', '21.845940', '74.024300', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55604, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310087', 2310087, '631.244385', '21.845980', '119.611702', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310088', 2310088, '589.967102', '21.846029', '111.639000', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 50, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310106', 2310106, '62.454399', '22.173260', '-183.847000', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54504, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310110', 2310110, '11.996420', '22.107401', '-194.509094', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54232, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310121', 2310121, '43.552151', '31.746559', '-242.757904', 86, 0, 0, 0, 1, 6, 0, 0, 82, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310129', 2310129, '80.701881', '31.247450', '-236.730392', 77, 0, 0, 0, 1, 6, 0, 0, 74, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310142', 2310142, '1.488476', '42.615070', '-238.873703', 85, 0, 0, 0, 1, 6, 0, 0, 81, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310155', 2310155, '14.401670', '41.170448', '-236.977097', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310157', 2310157, '13.745920', '41.247570', '-234.937393', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310158', 2310158, '26.641451', '40.972401', '-238.464600', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52606, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310159', 2310159, '23.036869', '41.356541', '-231.651596', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310160', 2310160, '34.532631', '34.329281', '-248.540298', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310161', 2310161, '18.166571', '40.736420', '-243.886398', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310162', 2310162, '36.185360', '34.339809', '-251.152893', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51518, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310163', 2310163, '32.022099', '35.938412', '-251.996597', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51234, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310164', 2310164, '2.683093', '41.323040', '-231.439301', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50974, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310165', 2310165, '2.481253', '41.289459', '-247.178207', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310166', 2310166, '3.023275', '41.244370', '-229.524307', 88, 0, 0, 0, 1, 6, 0, 0, 84, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310168', 2310168, '26.339149', '41.310089', '-228.982193', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50146, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310169', 2310169, '43.691368', '23.807100', '-197.954498', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49886, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310170', 2310170, '47.955181', '23.796989', '-201.803207', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49614, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310171', 2310171, '27.500080', '23.900030', '-176.426407', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310173', 2310173, '8.713860', '24.977810', '-183.468903', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310174', 2310174, '25.766741', '25.453140', '-197.692993', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310175', 2310175, '21.326250', '25.217710', '-213.513397', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310176', 2310176, '56.209671', '30.207701', '-208.221603', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310177', 2310177, '50.222309', '30.207741', '-208.816299', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310178', 2310178, '55.211819', '31.096901', '-223.299698', 87, 0, 0, 0, 1, 6, 0, 0, 83, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310179', 2310179, '44.478668', '30.061560', '-213.305893', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47426, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310180', 2310180, '27.629330', '25.414169', '-203.556198', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47154, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310181', 2310181, '11.799320', '24.994440', '-208.841293', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310182', 2310182, '57.392250', '31.250860', '-237.443100', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46610, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310183', 2310183, '56.381592', '31.081989', '-222.324799', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310184', 2310184, '41.846550', '31.327400', '-233.639603', 84, 0, 0, 0, 1, 6, 0, 0, 52, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310185', 2310185, '49.764519', '31.322470', '-239.490097', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310186', 2310186, '45.229160', '30.849199', '-225.986694', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310187', 2310187, '54.603119', '30.526270', '-215.684494', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310188', 2310188, '26.807720', '25.469440', '-208.795700', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310191', 2310191, '53.416069', '23.647209', '-198.466995', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310192', 2310192, '16.458969', '23.952860', '-182.981705', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310193', 2310193, '34.354580', '23.728510', '-188.906204', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310194', 2310194, '24.826321', '38.422710', '-248.892502', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310195', 2310195, '19.778610', '41.225639', '-235.194595', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2310196', 2310196, '10.671480', '41.230179', '-245.656906', 53, 0, 0, 0, 1, 6, 0, 0, 173, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2313233', 2313233, '320.515686', '2.215992', '-18.509239', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81726, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(317, 'e0074', 'bnpc2313234', 2313234, '320.698792', '2.227228', '-15.091220', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81454, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(317, 'e0074', 'bnpc2313235', 2313235, '318.658691', '2.299638', '-15.389510', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81182, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(317, 'e0074', 'bnpc2313237', 2313237, '303.089905', '1.571632', '-19.974110', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80910, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(317, 'e0074', 'bnpc2313238', 2313238, '331.471710', '1.907331', '-17.807329', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80638, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(317, 'e0074', 'bnpc2320820', 2320820, '241.483994', '17.276871', '-145.913101', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80354, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2320821', 2320821, '252.963196', '12.221980', '-153.075394', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80082, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2320822', 2320822, '246.929703', '9.238781', '-175.852005', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79810, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2320826', 2320826, '292.604004', '10.691710', '-162.803802', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79538, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2320827', 2320827, '290.235687', '9.507468', '-185.479797', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79266, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2320828', 2320828, '295.598389', '11.637060', '-160.074707', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78994, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2320830', 2320830, '279.377411', '8.641194', '-170.115997', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78722, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2320832', 2320832, '250.518402', '10.279540', '-169.884796', 4, 0, 0, 0, 1, 6, 0, 0, 4, 0, '0.000000', 26, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78450, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2351462', 2351462, '48.281940', '25.165770', '125.730797', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2351466', 2351466, '33.028351', '19.801689', '204.600204', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2351468', 2351468, '17.664570', '21.473511', '187.304001', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2351469', 2351469, '15.638560', '21.324190', '188.309006', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 39, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2351473', 2351473, '48.142170', '19.912979', '204.211395', 24, 0, 0, 0, 1, 6, 0, 0, 24, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125142, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc2351480', 2351480, '31.650410', '24.598419', '125.582100', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc2763397', 2763397, '318.018890', '0.478852', '12.307590', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78190, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(317, 'e0074', 'bnpc2763398', 2763398, '317.199188', '0.290855', '13.417520', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77918, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(317, 'e0074', 'bnpc2763399', 2763399, '313.945190', '0.195134', '8.234367', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77646, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(317, 'e0074', 'bnpc2763400', 2763400, '289.082001', '0.747620', '16.617001', 52, 0, 0, 0, 1, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77374, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(317, 'e0074', 'bnpc2763402', 2763402, '292.225494', '0.411926', '13.809330', 52, 0, 0, 0, 0, 6, 0, 0, 50, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77102, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(317, 'e0074', 'bnpc3739171', 3739171, '-272.839386', '22.280479', '-182.574203', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104362, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(317, 'e0074', 'bnpc3739176', 3739176, '-271.384399', '22.233410', '-181.710205', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104090, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(317, 'e0074', 'bnpc3739178', 3739178, '-270.221985', '22.171329', '-172.442307', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103818, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(317, 'e0074', 'bnpc3739189', 3739189, '-286.671295', '22.598570', '-178.942596', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103546, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(317, 'e0074', 'bnpc3739195', 3739195, '-285.084290', '23.636169', '-193.682800', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103274, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(317, 'e0074', 'bnpc3739197', 3739197, '-302.441498', '24.263420', '-202.146301', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103002, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(317, 'e0074', 'bnpc3739198', 3739198, '-301.991302', '24.106640', '-200.335693', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102730, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(317, 'e0074', 'bnpc3739200', 3739200, '-307.179413', '23.056339', '-191.149796', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102458, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(317, 'e0074', 'bnpc3739223', 3739223, '-306.875397', '9.692472', '-137.887207', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3739241', 3739241, '-102.205200', '2.027415', '-36.144821', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3739247', 3739247, '-101.905197', '2.027430', '-31.359751', 302, 0, 0, 0, 1, 6, 0, 0, 234, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3739298', 3739298, '-64.469414', '0.015212', '63.034969', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97030, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3739305', 3739305, '-142.689407', '0.030637', '161.735504', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96758, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3739308', 3739308, '-173.166397', '0.030539', '149.329895', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96486, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3739310', 3739310, '-183.418106', '0.030539', '144.544296', 161, 0, 0, 0, 1, 6, 0, 0, 228, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96214, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3739417', 3739417, '151.785294', '4.236084', '20.237249', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3739423', 3739423, '152.085297', '4.236084', '15.201380', 159, 0, 0, 0, 1, 6, 0, 0, 226, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3740607', 3740607, '-135.541595', '-0.100001', '467.027588', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138730, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3740609', 3740609, '-138.985397', '-0.100003', '461.260590', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138458, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3740611', 3740611, '-176.964996', '-0.100092', '482.156586', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138186, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3740613', 3740613, '-197.264099', '-0.100169', '480.240295', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3740615', 3740615, '-183.840607', '-0.100061', '448.882111', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3740617', 3740617, '-178.071396', '-0.100048', '447.029205', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3740619', 3740619, '-182.900406', '-0.100169', '476.189514', 302, 0, 0, 0, 1, 12, 0, 0, 235, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3740632', 3740632, '-358.518585', '1.158285', '453.619598', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc3740634', 3740634, '-362.075012', '0.968366', '458.185486', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc3740635', 3740635, '-336.208405', '-0.100018', '460.011810', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc3740636', 3740636, '-362.780701', '1.532029', '454.955414', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc3740637', 3740637, '-338.199493', '-0.100187', '433.127808', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc3740638', 3740638, '-334.106689', '-0.100003', '437.684113', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc3740639', 3740639, '-345.628906', '-0.100008', '453.583313', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc3740640', 3740640, '-333.997498', '-0.100017', '457.273987', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc3740644', 3740644, '-79.519012', '-0.100045', '377.072388', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3740645', 3740645, '-20.504120', '-0.106860', '365.133087', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3740646', 3740646, '-52.782280', '-0.106860', '324.177887', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3740647', 3740647, '-59.319771', '-0.100007', '331.135590', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3740648', 3740648, '-4.964393', '-0.100007', '339.615601', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3740649', 3740649, '-18.177540', '-0.100615', '322.254089', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3740651', 3740651, '-42.146980', '-0.100005', '396.759399', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3740823', 3740823, '52.433182', '8.970453', '290.451111', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124604, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3740824', 3740824, '34.042301', '6.188347', '297.895691', 143, 0, 0, 0, 1, 6, 0, 0, 170, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123244, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(317, 'e0074', 'bnpc3740991', 3740991, '83.869347', '23.640280', '197.587494', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc3740992', 3740992, '83.668243', '23.758640', '201.089493', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc3740993', 3740993, '92.752083', '22.594500', '147.751404', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc3740994', 3740994, '69.937286', '22.357740', '174.791397', 45, 0, 0, 0, 1, 6, 0, 0, 45, 0, '0.000000', 38, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc3870245', 3870245, '-201.828995', '8.309389', '-77.948196', 584, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27764, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(317, 'e0074', 'bnpc3870249', 3870249, '-144.314499', '6.941079', '-45.049019', 585, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27498, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(317, 'e0074', 'bnpc3870258', 3870258, '-169.371506', '8.963833', '-15.339670', 586, 0, 0, 0, 0, 6, 0, 0, 454, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27232, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(317, 'e0074', 'bnpc3870312', 3870312, '213.284805', '9.756709', '-77.238258', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26966, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(317, 'e0074', 'bnpc3870333', 3870333, '150.590805', '8.698524', '-47.601891', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26700, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(317, 'e0074', 'bnpc3870347', 3870347, '213.854004', '6.490500', '-15.706390', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 36, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26434, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(317, 'e0074', 'bnpc3870372', 3870372, '-149.487900', '0.750592', '229.198502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26156, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(317, 'e0074', 'bnpc3870375', 3870375, '-161.511307', '0.485998', '346.191010', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(317, 'e0074', 'bnpc3870382', 3870382, '-231.008896', '0.795779', '399.749115', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25606, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(317, 'e0074', 'bnpc3870387', 3870387, '-228.300903', '0.984585', '517.848816', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 25334, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(317, 'e0074', 'bnpc3878991', 3878991, '400.476288', '4.241707', '-40.787842', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70986, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(317, 'e0074', 'bnpc3879006', 3879006, '442.368011', '0.843470', '-27.738720', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70714, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc3879018', 3879018, '447.624695', '0.635267', '-105.764603', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70442, 1, 0, 0, 0, 5, 30074, 0, 0, 0), +(317, 'e0074', 'bnpc3879051', 3879051, '431.967712', '-0.747742', '-65.507080', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70176, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(317, 'e0074', 'bnpc3879065', 3879065, '356.771088', '2.792354', '1.937849', 79, 0, 0, 0, 0, 6, 0, 0, 140, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69898, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(317, 'e0074', 'bnpc3879339', 3879339, '-343.618011', '11.367920', '624.658508', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(317, 'e0074', 'bnpc3879341', 3879341, '-324.269501', '11.551030', '603.662109', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136536, 1, 0, 0, 0, 41, 30077, 0, 0, 0), +(317, 'e0074', 'bnpc3879343', 3879343, '-320.241089', '11.612060', '616.174377', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136288, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc3879346', 3879346, '-319.234009', '11.551030', '602.227722', 81, 0, 0, 0, 1, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136016, 1, 0, 0, 0, 41, 30075, 0, 0, 0), +(317, 'e0074', 'bnpc3879348', 3879348, '-324.879913', '11.551030', '603.082275', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135744, 1, 0, 0, 0, 41, 30079, 0, 0, 0), +(317, 'e0074', 'bnpc3879351', 3879351, '-324.330505', '11.520510', '609.063782', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135448, 1, 0, 0, 0, 41, 0, 0, 0, 0), +(317, 'e0074', 'bnpc3879352', 3879352, '-342.671906', '20.065571', '624.475403', 311, 0, 0, 0, 0, 6, 0, 0, 169, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135176, 1, 0, 0, 0, 41, 30074, 0, 0, 0), +(317, 'e0074', 'bnpc3879353', 3879353, '-343.556885', '20.065571', '624.811096', 81, 0, 0, 0, 0, 6, 0, 0, 139, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134928, 1, 0, 0, 0, 41, 30073, 0, 0, 0), +(317, 'e0074', 'bnpc3879398', 3879398, '-335.561188', '11.520510', '620.843811', 79, 0, 0, 0, 1, 6, 0, 0, 140, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134626, 1, 0, 0, 0, 41, 30076, 0, 0, 0), +(317, 'e0074', 'bnpc3884509', 3884509, '125.859001', '4.166452', '44.953560', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc3917184', 3917184, '-60.455681', '3.894856', '-39.952641', 23, 0, 0, 0, 1, 6, 0, 0, 23, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc3939726', 3939726, '436.760712', '0.574082', '-105.544098', 311, 0, 0, 0, 1, 6, 0, 0, 169, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69360, 1, 0, 0, 0, 5, 30096, 0, 0, 0), +(317, 'e0074', 'bnpc4329476', 4329476, '-188.220093', '9.170593', '94.010742', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95676, 6, 1, 0, 0, 0, 30246, 4329477, 0, 0), +(317, 'e0074', 'bnpc4333062', 4333062, '-159.767395', '3.700634', '137.279205', 2187, 0, 0, 0, 6, 6, 0, 0, 1992, 0, '0.000000', 23, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94652, 6, 1, 0, 0, 0, 30246, 4333061, 0, 0), +(317, 'e0074', 'bnpc4621322', 4621322, '28.233730', '25.315451', '115.697998', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28790, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(317, 'e0074', 'bnpc4621339', 4621339, '-337.105499', '20.119471', '615.520508', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28518, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4057759', 4057759, '-167.171906', '25.428049', '-361.451508', 798, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27716, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(318, 'e0075', 'bnpc4057772', 4057772, '-250.234695', '27.956100', '-323.354889', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27450, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(318, 'e0075', 'bnpc4057782', 4057782, '-56.647308', '26.533920', '-382.801697', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27184, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(318, 'e0075', 'bnpc4057793', 4057793, '-250.333099', '7.167006', '413.444885', 1342, 0, 0, 0, 0, 6, 0, 0, 1278, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26918, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(318, 'e0075', 'bnpc4128048', 4128048, '-402.311707', '13.399570', '-383.545898', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128049', 4128049, '-398.984802', '13.399560', '-382.573486', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128050', 4128050, '-398.703003', '13.473630', '-399.130188', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128051', 4128051, '-349.172211', '14.053470', '-371.236786', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128052', 4128052, '-363.032715', '12.848900', '-352.263092', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128053', 4128053, '-344.625000', '14.389220', '-374.166504', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128054', 4128054, '-361.864685', '12.175190', '-319.089905', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128055', 4128055, '-357.923309', '12.323080', '-315.838715', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128056', 4128056, '-366.900909', '12.044570', '-313.915009', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128057', 4128057, '-345.540588', '14.114500', '-368.795288', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128058', 4128058, '-306.752106', '19.363649', '-347.920990', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128059', 4128059, '-303.998688', '19.825630', '-345.763611', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128061', 4128061, '-329.335510', '13.992490', '-311.024689', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128062', 4128062, '-334.273499', '12.735820', '-272.286011', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128063', 4128063, '-332.188293', '12.773240', '-274.762512', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128064', 4128064, '-275.553406', '19.811119', '-300.743988', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128065', 4128065, '-277.943207', '19.468559', '-300.616791', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128066', 4128066, '-216.697205', '19.814110', '-291.068909', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128067', 4128067, '-219.086899', '19.669310', '-290.941803', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128068', 4128068, '-215.855301', '18.862061', '-286.262787', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128069', 4128069, '-251.503403', '17.336300', '-282.862091', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155656, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128071', 4128071, '-277.037994', '27.629240', '-446.633911', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155390, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128072', 4128072, '-293.590302', '20.134371', '-406.301605', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128073', 4128073, '-241.107803', '23.575130', '-427.206787', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154846, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128074', 4128074, '-233.356293', '23.788820', '-423.636292', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128075', 4128075, '-192.850494', '24.439541', '-471.427490', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128076', 4128076, '-225.719101', '22.713610', '-511.794586', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128078', 4128078, '-234.581894', '23.154600', '-503.730499', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128080', 4128080, '-99.297150', '11.812300', '-624.887512', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128081', 4128081, '-101.063499', '14.100460', '-548.412415', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128082', 4128082, '-57.090172', '5.200434', '-542.299622', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128083', 4128083, '-1.143898', '7.618513', '-528.769287', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128085', 4128085, '5.080926', '7.618519', '-537.079224', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128089', 4128089, '-156.176102', '17.047890', '-567.528198', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128090', 4128090, '-129.437500', '14.855080', '-587.989197', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128095', 4128095, '-28.120790', '6.618664', '-619.769470', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151576, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128096', 4128096, '-29.463200', '6.619354', '-617.967285', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151304, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128097', 4128097, '-24.055080', '6.620687', '-614.076782', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151032, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128098', 4128098, '-25.895201', '4.928910', '-647.637573', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150760, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128099', 4128099, '-12.619260', '4.562378', '-658.594727', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150488, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128100', 4128100, '-9.942262', '4.207929', '-660.454895', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150216, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128102', 4128102, '-63.811069', '7.713764', '-671.437012', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149944, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128103', 4128103, '-56.610531', '6.680237', '-675.225220', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149672, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128104', 4128104, '-63.511070', '7.475504', '-669.236084', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149400, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128105', 4128105, '-82.276627', '12.964970', '-712.882813', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149128, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128106', 4128106, '-75.376091', '12.702090', '-718.871826', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148856, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(318, 'e0075', 'bnpc4128107', 4128107, '-82.576622', '13.183150', '-715.083679', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148584, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128108', 4128108, '-92.149231', '14.084050', '-719.172974', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128109', 4128109, '-50.418240', '10.700190', '-716.867188', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128110', 4128110, '-36.628948', '10.796120', '-721.924072', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128111', 4128111, '-34.110340', '9.565180', '-718.908081', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128112', 4128112, '-22.776590', '6.822047', '-697.630371', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128113', 4128113, '39.229660', '3.128414', '-685.332397', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128114', 4128114, '36.552662', '2.610799', '-683.472229', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128115', 4128115, '42.912899', '6.469104', '-652.670776', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128119', 4128119, '-65.089844', '4.250028', '-634.668091', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128250', 4128250, '40.021858', '6.264256', '-433.494293', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128252', 4128252, '55.418652', '12.390480', '-491.216187', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128253', 4128253, '77.684799', '10.281420', '-468.654602', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128254', 4128254, '89.542992', '10.303750', '-428.138397', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128255', 4128255, '137.875504', '10.065270', '-451.167206', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128256', 4128256, '35.210232', '9.730854', '-485.420990', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128257', 4128257, '183.695404', '14.216050', '-465.348206', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128258', 4128258, '-100.389198', '14.631890', '-227.392395', 2259, 0, 0, 0, 1, 6, 0, 0, 1998, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123312, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128259', 4128259, '-97.276253', '14.631890', '-215.328506', 2260, 0, 0, 0, 1, 6, 0, 0, 1999, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123046, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128260', 4128260, '-75.621529', '14.631890', '-214.231506', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128261', 4128261, '-120.924698', '14.520920', '-211.301697', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128262', 4128262, '-73.457458', '14.731040', '-236.287506', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128263', 4128263, '-89.280579', '15.629060', '-251.062103', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128264', 4128264, '-112.932098', '15.533810', '-246.046600', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128265', 4128265, '-121.350601', '14.949070', '-239.633499', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128269', 4128269, '-1.754883', '15.457340', '-292.500214', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142358, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(318, 'e0075', 'bnpc4128270', 4128270, '-5.172852', '15.518430', '-288.410797', 169, 0, 0, 0, 0, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142092, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4128271', 4128271, '-26.595400', '16.964270', '-310.556000', 169, 0, 0, 0, 1, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141820, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4128272', 4128272, '-6.968165', '15.539780', '-293.998108', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141542, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4128273', 4128273, '-3.867146', '14.547090', '-326.988495', 169, 0, 0, 0, 0, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141276, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(318, 'e0075', 'bnpc4128274', 4128274, '-1.742153', '14.339200', '-330.423615', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140998, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(318, 'e0075', 'bnpc4128275', 4128275, '-16.894220', '15.891530', '-344.307587', 169, 0, 0, 0, 1, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140732, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4128276', 4128276, '-36.352852', '15.737740', '-281.239685', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140454, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4128285', 4128285, '86.811409', '3.880296', '-641.041382', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140194, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(318, 'e0075', 'bnpc4129531', 4129531, '154.758194', '4.167945', '-538.420471', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139922, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(318, 'e0075', 'bnpc4129542', 4129542, '86.147247', '2.628398', '-610.838013', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139656, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4130363', 4130363, '99.626099', '3.646851', '-655.359680', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4130365', 4130365, '137.834702', '3.433289', '-594.293091', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139112, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4130366', 4130366, '148.899902', '5.148987', '-530.581482', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138840, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4130369', 4130369, '124.284698', '2.822876', '-604.577820', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138562, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(318, 'e0075', 'bnpc4130372', 4130372, '124.864502', '2.731323', '-606.225708', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138296, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(318, 'e0075', 'bnpc4130374', 4130374, '161.030197', '2.624552', '-609.139282', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138018, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4130377', 4130377, '161.330200', '3.682087', '-563.744324', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137746, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4130378', 4130378, '98.850403', '6.344423', '-544.399780', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137480, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(318, 'e0075', 'bnpc4130379', 4130379, '100.378799', '6.344423', '-543.894287', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137202, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(318, 'e0075', 'bnpc4130380', 4130380, '11.922580', '6.840849', '-592.719177', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136936, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(318, 'e0075', 'bnpc4130381', 4130381, '13.302400', '7.038995', '-591.807983', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136658, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(318, 'e0075', 'bnpc4130382', 4130382, '19.505831', '19.298901', '-624.247314', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136392, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(318, 'e0075', 'bnpc4130383', 4130383, '20.782539', '19.319000', '-625.061401', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136114, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(318, 'e0075', 'bnpc4130386', 4130386, '37.483280', '18.026581', '-609.961670', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135848, 1, 0, 0, 0, 20, 30072, 0, 0, 0), +(318, 'e0075', 'bnpc4130388', 4130388, '36.074890', '17.983601', '-608.959229', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135570, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(318, 'e0075', 'bnpc4130389', 4130389, '37.643921', '17.440981', '-596.398926', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135298, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4130390', 4130390, '24.155029', '17.990360', '-604.119995', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135032, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4130403', 4130403, '22.943991', '6.252352', '-608.046997', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134754, 1, 0, 0, 0, 20, 30083, 0, 0, 0), +(318, 'e0075', 'bnpc4130404', 4130404, '38.940979', '7.903199', '-595.086975', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134488, 1, 0, 0, 0, 20, 30077, 0, 0, 0), +(318, 'e0075', 'bnpc4130431', 4130431, '66.514038', '9.567322', '-576.257019', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134216, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4130432', 4130432, '18.704010', '7.066027', '-628.667725', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133938, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4130682', 4130682, '95.351791', '6.393626', '-542.884888', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133666, 1, 0, 0, 0, 20, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4130683', 4130683, '84.609253', '6.344424', '-545.683472', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133400, 1, 0, 0, 0, 20, 30077, 0, 0, 0), +(318, 'e0075', 'bnpc4130705', 4130705, '92.140930', '6.705567', '-559.693420', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133128, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4130708', 4130708, '98.243317', '6.344424', '-537.346680', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132850, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4130800', 4130800, '-385.468414', '13.547760', '-376.772614', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4130805', 4130805, '-326.314209', '15.945620', '-388.265808', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4130806', 4130806, '-305.992188', '11.810610', '-274.036194', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4130807', 4130807, '-231.864395', '4.434839', '-243.585495', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4130808', 4130808, '-229.445007', '4.279073', '-242.303406', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4130809', 4130809, '-189.227203', '19.363649', '-294.819611', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4130811', 4130811, '-71.915771', '15.823550', '-267.627991', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4130813', 4130813, '-70.176270', '15.579410', '-265.919006', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4130814', 4130814, '-119.981796', '19.729919', '-275.562714', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4130819', 4130819, '-21.895340', '6.009452', '-485.204193', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4130821', 4130821, '-26.265631', '3.170915', '-553.012085', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4130827', 4130827, '-105.577202', '20.767460', '-487.358002', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4130829', 4130829, '-155.776306', '20.648140', '-534.493225', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4130832', 4130832, '-62.007500', '3.030127', '-631.860474', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4130836', 4130836, '-61.692261', '4.837097', '-580.163330', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4130839', 4130839, '-91.172493', '13.691580', '-698.557617', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4130842', 4130842, '-16.285299', '3.398638', '-675.862915', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4131461', 4131461, '82.139282', '2.612924', '-669.048584', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4131466', 4131466, '80.602791', '2.681827', '-667.547119', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4131467', 4131467, '142.968597', '2.741290', '-677.939270', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4131470', 4131470, '166.607895', '8.180286', '-517.830872', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4131473', 4131473, '97.571892', '10.129180', '-455.764313', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4131477', 4131477, '48.494888', '6.708367', '-437.703308', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4131480', 4131480, '12.300930', '7.902957', '-513.924316', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4131487', 4131487, '-19.243019', '5.989767', '-481.780304', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4131489', 4131489, '45.965000', '4.000000', '-353.260895', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4131491', 4131491, '44.038780', '4.000000', '-355.090515', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4131492', 4131492, '-277.563599', '21.317619', '-408.466705', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4131494', 4131494, '-220.691895', '23.733870', '-445.561493', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4131495', 4131495, '-203.367996', '20.050930', '-538.838074', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132134', 4132134, '-23.739849', '6.019080', '-587.944885', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124382, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132161', 4132161, '-219.349106', '4.013124', '-175.605194', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132178', 4132178, '-223.713196', '3.981025', '-172.004196', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132179', 4132179, '-217.822601', '5.111694', '-152.941193', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132181', 4132181, '-255.092102', '4.214314', '-101.690002', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132182', 4132182, '-260.379913', '3.866467', '-142.158005', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120264, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132184', 4132184, '-284.843506', '4.387352', '-61.849739', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119992, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132186', 4132186, '-281.833313', '4.514743', '-60.248520', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132187', 4132187, '-330.772186', '4.539914', '-70.267380', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132191', 4132191, '-395.325806', '4.134359', '-44.501831', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132194', 4132194, '-412.872314', '3.503397', '-46.007912', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132197', 4132197, '-392.828613', '4.906980', '-40.147282', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132355', 4132355, '-121.233002', '7.370056', '452.140015', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90682, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132356', 4132356, '-38.284969', '7.583679', '405.569489', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118360, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132357', 4132357, '-30.167110', '8.163513', '413.107391', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118088, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132358', 4132358, '-78.294067', '8.377136', '475.181000', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90410, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132359', 4132359, '-112.962601', '7.400574', '493.125702', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90138, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132360', 4132360, '-118.791496', '6.423950', '489.219513', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89866, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132361', 4132361, '-4.867676', '10.116700', '466.422485', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117816, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132362', 4132362, '74.448730', '8.224609', '416.708588', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117544, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132363', 4132363, '-96.391296', '12.802250', '545.708374', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117272, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132364', 4132364, '-162.951096', '7.675232', '421.805206', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89594, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132367', 4132367, '-195.513901', '8.987488', '460.166290', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89322, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4132371', 4132371, '-247.455597', '14.572330', '601.159729', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132373', 4132373, '-265.674896', '14.389220', '594.628723', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132374', 4132374, '-409.506897', '2.863013', '643.319275', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132375', 4132375, '-373.173615', '1.482062', '830.041687', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132376', 4132376, '-303.572998', '0.554237', '737.432800', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132377', 4132377, '-285.938812', '8.895996', '674.952271', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115664, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132378', 4132378, '-321.243011', '0.748059', '738.623108', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132379', 4132379, '-228.992203', '-0.198364', '779.568115', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132381', 4132381, '-214.807693', '1.408311', '692.128296', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132385', 4132385, '30.807980', '25.375731', '552.178101', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114576, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132386', 4132386, '86.625488', '18.020809', '513.389587', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114304, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132387', 4132387, '152.666504', '8.346619', '585.931030', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132389', 4132389, '95.506104', '14.938600', '536.278198', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132390', 4132390, '-41.311451', '8.914728', '618.996887', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132391', 4132391, '55.148140', '12.639380', '622.588928', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132394', 4132394, '99.351440', '5.569519', '656.366699', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132395', 4132395, '49.166569', '12.003170', '629.394592', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132398', 4132398, '-155.296402', '-0.249691', '684.087891', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112406, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132402', 4132402, '-128.552399', '-6.248472', '698.360413', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132403', 4132403, '-82.598297', '-7.092235', '672.947815', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132404', 4132404, '-47.857578', '-2.212809', '690.802612', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132405', 4132405, '-43.152802', '-0.921682', '679.936829', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132406', 4132406, '-28.558571', '-0.125700', '752.652527', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132407', 4132407, '-54.816002', '-0.469275', '771.766785', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132408', 4132408, '-157.322098', '-1.367114', '781.628418', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132409', 4132409, '-162.195999', '-0.433001', '772.940186', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132410', 4132410, '-153.362198', '0.387354', '735.776123', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132411', 4132411, '-99.790901', '-2.270120', '789.114685', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132415', 4132415, '-174.253799', '4.062513', '619.920715', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109408, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4132416', 4132416, '103.926498', '3.903357', '915.233887', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4133094', 4133094, '136.949707', '3.216623', '756.322510', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4133095', 4133095, '256.006012', '6.944463', '820.505676', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108604, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4133096', 4133096, '200.758102', '5.104731', '868.748230', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4133097', 4133097, '152.132797', '4.348816', '821.800720', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108060, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4133098', 4133098, '194.324295', '4.776027', '863.148987', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107788, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4133099', 4133099, '229.417892', '4.637394', '902.513123', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107516, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4133100', 4133100, '83.255379', '4.406397', '848.491577', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107244, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4133102', 4133102, '-428.485687', '5.673192', '569.950806', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106978, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4133105', 4133105, '-431.695404', '7.408978', '526.095520', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4133106', 4133106, '-391.061707', '7.983613', '532.203613', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106434, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4133107', 4133107, '-311.320892', '6.989801', '543.801514', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106162, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4133108', 4133108, '-385.831696', '6.261216', '581.952576', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105890, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4133109', 4133109, '-404.812103', '8.978989', '481.090607', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105618, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4133111', 4133111, '-435.612488', '7.492519', '530.732178', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4133112', 4133112, '-368.011810', '7.345028', '545.098206', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105074, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4133142', 4133142, '2.160542', '13.238140', '867.918884', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133143', 4133143, '-9.752866', '13.238140', '862.073975', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104452, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133146', 4133146, '-38.601059', '-3.610238', '870.833984', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104180, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133147', 4133147, '3.913166', '5.198262', '844.633179', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133149', 4133149, '-23.697269', '-3.494385', '830.106018', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103636, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133150', 4133150, '-47.257198', '-4.837158', '821.164185', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133152', 4133152, '-99.204224', '-4.564651', '854.179871', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103092, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133153', 4133153, '-91.265266', '-5.356507', '842.750183', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133155', 4133155, '-104.580101', '-4.512669', '850.706116', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102542, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133160', 4133160, '-40.085510', '-3.585876', '880.033630', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102270, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133166', 4133166, '23.838100', '-0.302399', '832.912781', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133167', 4133167, '31.011000', '5.208305', '877.738525', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101732, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133171', 4133171, '23.808920', '0.563182', '709.098083', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101520, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133175', 4133175, '-208.948196', '-2.203250', '889.001587', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101272, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133854', 4133854, '-169.319504', '-3.498206', '849.864197', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101000, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133856', 4133856, '-294.270294', '5.081238', '808.072021', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100728, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133857', 4133857, '-252.533798', '3.371831', '695.150513', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100456, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133858', 4133858, '-360.768585', '11.544860', '664.182312', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100184, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133859', 4133859, '-93.662338', '7.398253', '582.921509', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99912, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133860', 4133860, '-173.964798', '7.509760', '511.382202', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133861', 4133861, '-63.357861', '7.614773', '373.184204', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99368, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133862', 4133862, '30.766090', '9.412603', '441.489288', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133863', 4133863, '-36.250969', '13.359000', '500.993500', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133864', 4133864, '127.540901', '8.141046', '481.803406', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133865', 4133865, '80.714157', '14.492840', '579.852722', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133866', 4133866, '-16.843950', '17.676241', '580.152710', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133867', 4133867, '24.143961', '2.411896', '671.088074', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133868', 4133868, '140.561096', '7.403133', '627.360474', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133869', 4133869, '96.573219', '4.412809', '794.674683', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133870', 4133870, '197.362503', '4.724640', '803.828918', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133872', 4133872, '130.937607', '8.480643', '895.933289', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133874', 4133874, '-1.962330', '-3.925701', '819.197571', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133877', 4133877, '-40.858768', '-4.353204', '847.265625', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4133878', 4133878, '-102.367302', '-5.084877', '872.023987', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4134559', 4134559, '-383.817688', '-1.011531', '901.672424', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4134560', 4134560, '-288.511597', '10.613900', '859.882324', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4134561', 4134561, '-351.064606', '6.710670', '883.250427', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4134562', 4134562, '200.244095', '10.299800', '649.805420', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92580, 1, 0, 0, 0, 24, 30058, 0, 0, 0), +(318, 'e0075', 'bnpc4134563', 4134563, '226.015793', '8.615845', '608.168701', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94750, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4134564', 4134564, '183.543503', '9.768476', '646.637512', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94400, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4135246', 4135246, '243.579697', '8.834900', '694.209229', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92308, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(318, 'e0075', 'bnpc4135251', 4135251, '295.658600', '8.371674', '624.363525', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94128, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4135252', 4135252, '224.383896', '9.530697', '660.020325', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93934, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4135254', 4135254, '219.592499', '8.926453', '678.248291', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91764, 1, 0, 0, 0, 24, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4135932', 4135932, '214.160294', '8.957031', '677.332581', 168, 0, 0, 0, 0, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93662, 1, 0, 0, 0, 24, 30060, 0, 0, 0), +(318, 'e0075', 'bnpc4135934', 4135934, '323.184814', '6.857816', '665.903687', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93312, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4135935', 4135935, '329.342285', '7.113992', '659.138672', 166, 0, 0, 0, 1, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92036, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4135936', 4135936, '289.562012', '7.415476', '729.328918', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93040, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4135937', 4135937, '238.798294', '8.794422', '722.661011', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92846, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4136006', 4136006, '-7.705540', '1.187112', '-24.901859', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4136008', 4136008, '-62.727612', '-2.486439', '-1.833968', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4136009', 4136009, '-95.048462', '-2.365173', '28.824221', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4136012', 4136012, '-46.066471', '8.494778', '123.064003', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4136033', 4136033, '-271.290192', '10.421880', '211.047501', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4136034', 4136034, '-264.806305', '7.399314', '162.775604', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87084, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(318, 'e0075', 'bnpc4136037', 4136037, '-177.294601', '7.125916', '20.614929', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4136039', 4136039, '43.869629', '35.416142', '165.728104', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4136040', 4136040, '-23.361570', '40.512569', '240.161697', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4136226', 4136226, '-131.853699', '13.179720', '86.700623', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4137046', 4137046, '52.658810', '2.883911', '-257.434998', 740, 0, 0, 0, 0, 6, 0, 0, 253, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68890, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(318, 'e0075', 'bnpc4137048', 4137048, '55.832760', '2.914429', '-254.505203', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66992, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4137050', 4137050, '79.179077', '3.768982', '-271.045990', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71054, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4137065', 4137065, '21.736320', '5.244883', '-278.538391', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70782, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4137066', 4137066, '57.419899', '4.007567', '-299.611694', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66176, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4137892', 4137892, '-39.719238', '-0.900330', '-152.208694', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71326, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4137893', 4137893, '-91.355766', '-1.724304', '-58.945621', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68074, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4137894', 4137894, '-71.905777', '-1.906798', '-74.343948', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66448, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4137912', 4137912, '-174.456406', '39.993900', '160.387604', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72414, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4137914', 4137914, '-174.029205', '39.993900', '155.352097', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55834, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4137915', 4137915, '-169.848206', '39.993900', '158.342804', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65088, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4137927', 4137927, '-140.215103', '18.539671', '118.211700', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67264, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(318, 'e0075', 'bnpc4137928', 4137928, '-103.074699', '27.908689', '120.592003', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70516, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4137929', 4137929, '-135.423798', '37.125118', '176.409500', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72686, 2, 0, 0, 0, 42, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4137937', 4137937, '-95.628304', '45.792240', '195.269699', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56106, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(318, 'e0075', 'bnpc4137938', 4137938, '-61.905880', '44.937740', '212.664902', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65632, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(318, 'e0075', 'bnpc4137941', 4137941, '-88.853271', '43.381351', '152.910599', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65904, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(318, 'e0075', 'bnpc4137947', 4137947, '-24.093990', '38.986820', '206.042603', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55018, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4137948', 4137948, '-44.113831', '43.259281', '222.186493', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71598, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4137953', 4137953, '-163.534897', '40.000000', '151.507095', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55290, 2, 0, 0, 0, 42, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4137955', 4137955, '24.765381', '2.761841', '-0.717224', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66720, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(318, 'e0075', 'bnpc4137956', 4137956, '-79.850456', '45.792240', '193.377594', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71870, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4137966', 4137966, '-42.954159', '8.255066', '51.499149', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70244, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4137967', 4137967, '-112.382797', '12.191960', '75.883057', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68618, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4137979', 4137979, '75.730469', '25.253660', '204.974396', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55562, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4137980', 4137980, '111.253502', '13.778870', '152.666504', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72142, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4137982', 4137982, '124.528801', '13.931460', '143.175400', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65360, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(318, 'e0075', 'bnpc4137991', 4137991, '112.391602', '9.231154', '192.303696', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 49, 0, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 54734, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4137993', 4137993, '111.772301', '8.529010', '204.422699', 741, 0, 0, 0, 1, 6, 0, 0, 2296, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69700, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4138003', 4138003, '145.462601', '13.997980', '239.934799', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68346, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4138054', 4138054, '244.128998', '7.980469', '-24.460270', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40838, 2, 0, 0, 0, 44, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4138055', 4138055, '208.087296', '7.980469', '104.387001', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41110, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4138056', 4138056, '164.005997', '7.818353', '-31.478350', 739, 0, 0, 0, 1, 6, 0, 0, 1837, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40572, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4138061', 4138061, '345.326508', '8.771392', '-44.180370', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 48, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 41914, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4138062', 4138062, '273.090698', '11.734130', '-9.628479', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42464, 2, 0, 0, 0, 44, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4138065', 4138065, '103.105103', '15.030030', '20.462339', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 48, 0, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 41642, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4138066', 4138066, '76.493408', '12.191390', '20.402031', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42192, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4138067', 4138067, '117.584900', '15.938490', '11.404420', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41382, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4138716', 4138716, '176.348495', '13.992490', '240.985703', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54462, 2, 0, 0, 0, 35, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4138717', 4138717, '158.251205', '13.992490', '254.322006', 741, 0, 0, 0, 1, 6, 0, 0, 2296, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69428, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4138718', 4138718, '174.425797', '13.992490', '235.339798', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67802, 2, 0, 0, 0, 35, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4138722', 4138722, '129.299393', '7.759512', '330.730286', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69972, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4138723', 4138723, '127.946899', '7.071052', '376.910889', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67530, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4138736', 4138736, '45.873520', '23.511459', '-135.133301', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85730, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4138737', 4138737, '34.941601', '23.511471', '-143.619507', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85464, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4140356', 4140356, '38.925659', '23.483580', '-138.689301', 369, 0, 0, 0, 0, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85192, 1, 0, 0, 0, 32, 30073, 0, 0, 0), +(318, 'e0075', 'bnpc4140357', 4140357, '40.383900', '23.511459', '-138.534897', 367, 0, 0, 0, 0, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84914, 1, 0, 0, 0, 32, 30079, 0, 0, 0), +(318, 'e0075', 'bnpc4140358', 4140358, '42.540970', '17.713570', '-101.085297', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84642, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4140359', 4140359, '45.869240', '22.788361', '-122.945396', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84376, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4140360', 4140360, '-3.844561', '8.435183', '-93.056000', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84098, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4140361', 4140361, '-11.875860', '6.747277', '-75.913834', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83832, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(318, 'e0075', 'bnpc4140362', 4140362, '-6.949590', '8.713659', '-105.002502', 367, 0, 0, 0, 0, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83554, 1, 0, 0, 0, 32, 30082, 0, 0, 0), +(318, 'e0075', 'bnpc4140363', 4140363, '-8.319045', '8.596273', '-104.796700', 369, 0, 0, 0, 0, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83288, 1, 0, 0, 0, 32, 30079, 0, 0, 0), +(318, 'e0075', 'bnpc4140373', 4140373, '62.782619', '3.445141', '-267.002686', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82980, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140376', 4140376, '-24.128490', '-0.222955', '-159.058701', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82708, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140377', 4140377, '-83.108093', '-14.744680', '-157.238297', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82436, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140379', 4140379, '-97.737221', '-14.744680', '-145.298904', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140380', 4140380, '-94.201157', '-14.744680', '-142.907806', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81892, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140381', 4140381, '-95.134377', '-14.397570', '-169.786697', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81620, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140383', 4140383, '-53.365379', '-16.085800', '-169.063507', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81348, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140384', 4140384, '-62.683842', '-1.205086', '-107.887497', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81076, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140386', 4140386, '-131.578598', '1.541138', '-134.599899', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80804, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140387', 4140387, '-84.214539', '-1.937927', '-49.942810', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80532, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140388', 4140388, '-95.933533', '-0.900330', '-15.945740', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80260, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140392', 4140392, '-94.041443', '-0.961365', '-14.877620', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79988, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140393', 4140393, '-43.289860', '-1.571716', '1.235901', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140394', 4140394, '-14.218010', '4.090468', '36.143909', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140395', 4140395, '-17.297621', '4.967797', '39.749630', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140398', 4140398, '-101.304703', '12.741210', '80.552368', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140400', 4140400, '-144.371704', '-1.052405', '41.807720', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140401', 4140401, '-107.255699', '28.030760', '124.498299', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140402', 4140402, '-52.008862', '11.528760', '192.386597', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140404', 4140404, '-283.105499', '9.536800', '201.528900', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140405', 4140405, '-118.150597', '4.442561', '248.788605', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140406', 4140406, '-114.824203', '4.493244', '246.347107', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140407', 4140407, '-183.400894', '40.000000', '157.241699', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140408', 4140408, '-169.404205', '40.000000', '143.694000', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140409', 4140409, '-126.916702', '37.668209', '186.635406', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140410', 4140410, '-83.693520', '45.889679', '179.053299', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140411', 4140411, '-85.551117', '45.811230', '209.439102', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140412', 4140412, '20.889589', '36.758911', '209.735199', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140413', 4140413, '112.923897', '13.990590', '141.405304', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140414', 4140414, '160.982407', '13.997970', '233.444595', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140416', 4140416, '146.294601', '13.997970', '244.723495', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140417', 4140417, '124.652702', '8.457688', '313.738892', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140419', 4140419, '139.964203', '7.391594', '192.456802', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140420', 4140420, '224.634705', '8.093283', '86.476837', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140421', 4140421, '253.877808', '8.000000', '-33.567520', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140422', 4140422, '295.798798', '8.000000', '-26.774521', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140423', 4140423, '297.220490', '8.000000', '-29.494390', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4140427', 4140427, '117.781403', '9.346180', '-7.032808', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72916, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4142005', 4142005, '-268.913208', '4.851185', '-90.289322', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4142007', 4142007, '-359.236389', '4.669468', '-59.445290', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4142009', 4142009, '-420.227386', '6.206403', '-20.966650', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4142018', 4142018, '-42.274540', '10.032320', '171.660904', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69162, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4142028', 4142028, '-93.827759', '45.792240', '199.145401', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64816, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4313527', 4313527, '313.771210', '7.980469', '-31.998230', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51244, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(318, 'e0075', 'bnpc4313538', 4313538, '287.709015', '8.000000', '-40.641960', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50972, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(318, 'e0075', 'bnpc4313539', 4313539, '417.063385', '17.715700', '-63.623531', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50688, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4313540', 4313540, '355.620087', '9.881611', '-35.813759', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50422, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4313547', 4313547, '445.548096', '16.678040', '-115.800697', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50156, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(318, 'e0075', 'bnpc4313549', 4313549, '409.744812', '12.774850', '-100.924301', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49812, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4313550', 4313550, '552.483398', '7.583679', '-164.965302', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 49594, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4313551', 4313551, '481.528900', '7.614197', '-157.915604', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49328, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(318, 'e0075', 'bnpc4313552', 4313552, '484.977386', '7.614197', '-157.701996', 740, 0, 0, 0, 0, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49062, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(318, 'e0075', 'bnpc4313556', 4313556, '509.282410', '7.599621', '-134.754105', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48724, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4313557', 4313557, '519.299988', '7.581244', '-127.391800', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48452, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4313560', 4313560, '533.592712', '7.583679', '-79.881042', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47146, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4313561', 4313561, '549.797729', '7.583679', '-92.454468', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48240, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4313562', 4313562, '534.650330', '7.599616', '-75.784973', 740, 0, 0, 0, 0, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47974, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4313563', 4313563, '569.926575', '7.599619', '-77.731194', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47708, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(318, 'e0075', 'bnpc4313564', 4313564, '549.767212', '7.599621', '-67.267418', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 47436, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(318, 'e0075', 'bnpc4313565', 4313565, '442.353912', '18.401279', '-84.513977', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46820, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(318, 'e0075', 'bnpc4313572', 4313572, '631.942383', '7.123771', '-69.111237', 742, 0, 0, 0, 1, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46602, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4329911', 4329911, '-253.803406', '23.269960', '-431.265686', 2188, 0, 0, 0, 6, 6, 0, 0, 1993, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123578, 4, 1, 0, 0, 0, 0, 4329909, 0, 0), +(318, 'e0075', 'bnpc4333133', 4333133, '-201.984695', '24.429350', '-469.400787', 2188, 0, 0, 0, 6, 6, 0, 0, 1993, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122442, 4, 1, 0, 0, 0, 0, 4329909, 0, 0), +(318, 'e0075', 'bnpc4333143', 4333143, '-91.031189', '14.631890', '-220.647095', 2260, 0, 0, 0, 1, 6, 0, 0, 1999, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122182, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4333144', 4333144, '-95.213539', '14.640040', '-232.687607', 2259, 0, 0, 0, 1, 6, 0, 0, 1998, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121904, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4515628', 4515628, '230.071304', '10.431990', '28.589081', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45208, 2, 0, 0, 0, 0, 0, 4515627, 0, 0), +(318, 'e0075', 'bnpc4515630', 4515630, '306.129913', '8.000000', '-35.433121', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44936, 2, 0, 0, 0, 0, 0, 4515617, 0, 0), +(318, 'e0075', 'bnpc4515631', 4515631, '409.323212', '17.164120', '-66.182114', 2457, 0, 0, 0, 2, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44664, 2, 0, 0, 0, 0, 0, 4515622, 0, 0), +(318, 'e0075', 'bnpc4515632', 4515632, '450.431000', '18.142941', '-98.527527', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44392, 2, 0, 0, 0, 0, 0, 4515619, 0, 0), +(318, 'e0075', 'bnpc4515633', 4515633, '528.573975', '7.599619', '-123.610298', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44120, 2, 0, 0, 0, 0, 0, 4515626, 0, 0), +(318, 'e0075', 'bnpc4522053', 4522053, '-108.508598', '-1.658285', '50.827759', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4522057', 4522057, '-20.309811', '4.196167', '-48.355900', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 2, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64278, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4522061', 4522061, '-208.789200', '7.827881', '41.184078', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 3, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64006, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4522063', 4522063, '-277.088593', '16.372860', '105.149902', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 4, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63734, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4522065', 4522065, '-233.600403', '7.156433', '195.910507', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 5, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63462, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4522066', 4522066, '102.342300', '15.152160', '25.375731', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 39762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4522067', 4522067, '-24.155090', '7.522644', '120.195297', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4522069', 4522069, '-114.458000', '7.766785', '222.339096', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4522077', 4522077, '-43.839230', '7.949890', '350.362305', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4522101', 4522101, '108.016403', '9.690581', '194.451294', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4522396', 4522396, '-21.478930', '2.767368', '-38.678539', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62078, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4522398', 4522398, '-207.376999', '7.622232', '46.231140', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 3, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61824, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(318, 'e0075', 'bnpc4522399', 4522399, '-234.055893', '7.389282', '200.963898', 742, 0, 0, 0, 0, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 5, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61534, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4522406', 4522406, '-105.390503', '-1.773797', '46.289669', 742, 0, 0, 0, 0, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61262, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4522407', 4522407, '-271.650208', '14.867290', '104.792099', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 4, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61008, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(318, 'e0075', 'bnpc4522411', 4522411, '-100.910103', '-1.501870', '50.329479', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60736, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4522416', 4522416, '-109.675301', '7.278503', '224.872192', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 60452, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4522419', 4522419, '-28.614960', '7.609998', '118.196198', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 60180, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4522420', 4522420, '-39.757469', '7.899223', '353.966003', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 59908, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(318, 'e0075', 'bnpc4522421', 4522421, '-27.695190', '7.583679', '129.961105', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59642, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4522422', 4522422, '-117.326698', '6.179810', '229.419296', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59370, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4522424', 4522424, '-52.859360', '7.196684', '358.597412', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59098, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4522427', 4522427, '554.650085', '7.583679', '-67.246582', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43854, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4522544', 4522544, '557.138977', '7.599622', '-162.231705', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43582, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4522545', 4522545, '413.717804', '17.929260', '-60.318909', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43310, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4522546', 4522546, '349.712006', '9.286700', '-45.325851', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43038, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4522547', 4522547, '291.672913', '8.000000', '-42.948238', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 42766, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4522549', 4522549, '227.166595', '8.620508', '78.546181', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40288, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4522550', 4522550, '408.039398', '12.424580', '-131.584198', 742, 0, 0, 0, 1, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40010, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4524149', 4524149, '-46.524780', '-1.266479', '10.910160', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58826, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4524160', 4524160, '-52.610519', '-1.409638', '13.605740', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58548, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4524163', 4524163, '14.724910', '1.785278', '16.159300', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58276, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4524164', 4524164, '20.839840', '2.344519', '13.486760', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58010, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4524175', 4524175, '-136.317200', '10.889600', '-70.746132', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57738, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4524176', 4524176, '-142.403000', '11.520290', '-68.050552', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57460, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4524179', 4524179, '-124.245399', '6.484659', '-98.137253', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57200, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4524181', 4524181, '-155.565796', '6.332458', '-43.106812', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56910, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4524206', 4524206, '-163.683502', '7.064880', '7.705750', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56656, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4524215', 4524215, '-100.204201', '12.076750', '75.251801', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56366, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4553442', 4553442, '-200.593903', '7.600075', '38.475250', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54190, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4553443', 4553443, '-17.239441', '3.551795', '-44.301022', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 2, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 53936, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(318, 'e0075', 'bnpc4553444', 4553444, '-243.102203', '7.628644', '196.886398', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53664, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4553445', 4553445, '-277.132202', '14.459210', '114.208504', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53374, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4553446', 4553446, '-118.333702', '6.485046', '-90.318237', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53102, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4553447', 4553447, '-143.133606', '6.438087', '-36.288349', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52848, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4553448', 4553448, '-160.387604', '7.156433', '27.054199', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52576, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4553449', 4553449, '-63.000992', '-1.730121', '-63.235321', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52286, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(318, 'e0075', 'bnpc4577401', 4577401, '-110.148399', '-0.815602', '-20.043240', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4621851', 4621851, '-468.283295', '-2.650424', '95.657677', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28328, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4621852', 4621852, '-103.113701', '45.811230', '205.494797', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28062, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(318, 'e0075', 'bnpc4695634', 4695634, '-218.433502', '5.298542', '95.696121', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1132780', 1132780, '42.705971', '6.489012', '-222.119598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132784', 1132784, '43.994171', '7.081282', '-226.261307', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132785', 1132785, '46.368141', '6.532326', '-222.363800', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230902, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132786', 1132786, '50.249649', '8.663927', '-237.583603', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132810', 1132810, '119.142403', '17.274370', '-264.585907', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132815', 1132815, '53.141479', '4.367238', '-208.718597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132818', 1132818, '57.950279', '4.701855', '-181.906006', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132819', 1132819, '53.380199', '3.647015', '-170.941803', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132823', 1132823, '85.892982', '4.386182', '-186.633102', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132827', 1132827, '136.440002', '-0.215091', '-142.126297', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132829', 1132829, '139.586502', '1.436886', '-162.906296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132833', 1132833, '144.692596', '1.594073', '-161.313507', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132834', 1132834, '169.345306', '-0.575563', '-143.321701', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132835', 1132835, '132.885803', '4.471908', '-182.040894', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132836', 1132836, '127.652000', '2.679112', '-179.060898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132837', 1132837, '133.402802', '5.498395', '-185.220093', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132842', 1132842, '104.130501', '4.751109', '-199.651596', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132988', 1132988, '145.939301', '0.761501', '-119.501801', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132990', 1132990, '165.896698', '-0.582151', '-142.284103', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132991', 1132991, '196.646301', '-2.798964', '-155.795898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132992', 1132992, '159.011398', '0.196450', '-113.407997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226012, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1132993', 1132993, '162.856598', '-0.357008', '-115.116997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225740, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133000', 1133000, '202.288803', '-2.206049', '-168.963196', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225468, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133001', 1133001, '223.772705', '-6.852091', '-140.217407', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225196, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133002', 1133002, '206.683395', '-2.759299', '-171.221497', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224924, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133005', 1133005, '231.146698', '-5.044106', '-178.307693', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224652, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133007', 1133007, '242.902496', '-0.494766', '-191.458496', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224380, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133008', 1133008, '239.977493', '-0.588080', '-191.828400', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224108, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133010', 1133010, '221.392303', '-6.460419', '-138.050598', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223836, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133022', 1133022, '332.788513', '-3.345333', '-151.251495', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201534, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133023', 1133023, '298.603699', '-6.332541', '-125.749603', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133029', 1133029, '302.693298', '-3.341390', '-184.143005', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133031', 1133031, '328.386993', '-0.505648', '-187.936401', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133032', 1133032, '342.892487', '-1.328422', '-175.218201', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133035', 1133035, '358.327515', '-2.255364', '-175.310898', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200174, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(319, 'e0076', 'bnpc1133036', 1133036, '335.507294', '0.561625', '-194.418793', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133042', 1133042, '439.946808', '10.149250', '-108.177101', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169468, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133044', 1133044, '458.584900', '14.997390', '-90.379593', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169740, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133047', 1133047, '463.401215', '25.778530', '-35.324680', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168380, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133049', 1133049, '445.243591', '31.812080', '-9.685579', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168652, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133052', 1133052, '486.745514', '31.609249', '-44.177990', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168924, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133053', 1133053, '487.618011', '31.024900', '-55.958771', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170012, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133054', 1133054, '483.304291', '30.900890', '-51.161331', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172188, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133056', 1133056, '482.511993', '23.910801', '-88.545013', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173276, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133057', 1133057, '480.679291', '24.104330', '-120.189201', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169196, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133063', 1133063, '504.435913', '29.146271', '-83.562149', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173004, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133064', 1133064, '482.169495', '24.010910', '-92.475502', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172732, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133065', 1133065, '459.642914', '24.454941', '-39.719559', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172460, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133066', 1133066, '453.938690', '26.000799', '-33.810230', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170828, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133070', 1133070, '351.512787', '3.052480', '46.861389', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133071', 1133071, '341.298492', '3.983801', '67.704231', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133072', 1133072, '348.626495', '0.976962', '28.015940', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133073', 1133073, '342.183502', '0.098491', '27.298340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133077', 1133077, '309.071411', '-2.609340', '63.065491', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133080', 1133080, '281.574707', '-7.184652', '26.169170', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133098', 1133098, '289.254913', '-5.168305', '48.585239', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133100', 1133100, '291.498688', '-5.368438', '47.821369', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133126', 1133126, '-82.030632', '1.519239', '-141.488693', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148770, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133128', 1133128, '-77.317497', '1.083344', '-136.644608', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148498, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133130', 1133130, '-63.375290', '0.643326', '-166.887497', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148226, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133131', 1133131, '-64.313164', '0.965167', '-162.181503', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147954, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133132', 1133132, '-75.591331', '1.176651', '-142.404297', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147682, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133138', 1133138, '-33.189919', '-4.914308', '-94.149628', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147410, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133148', 1133148, '86.244072', '-19.783070', '210.247406', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133152', 1133152, '70.510750', '-17.727341', '188.296799', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133156', 1133156, '56.609531', '-22.226370', '292.790710', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133163', 1133163, '25.970390', '-24.061230', '233.649994', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133165', 1133165, '37.231960', '-26.765560', '260.079498', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133167', 1133167, '36.484268', '-25.833570', '242.542099', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133172', 1133172, '94.585983', '-24.244490', '288.477509', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133176', 1133176, '98.126083', '-23.363501', '294.977814', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133177', 1133177, '85.597298', '-27.953020', '268.263000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133178', 1133178, '89.747749', '-28.194380', '266.065704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133179', 1133179, '141.949905', '-28.936390', '333.222290', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133181', 1133181, '160.046402', '-31.802570', '350.789795', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133185', 1133185, '164.906906', '-32.018280', '333.485504', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133186', 1133186, '146.226807', '-28.810591', '357.818298', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133187', 1133187, '196.479996', '-32.228100', '370.754303', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133189', 1133189, '179.687897', '-32.476631', '364.163086', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133193', 1133193, '213.929794', '-29.694580', '421.080688', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133194', 1133194, '210.157394', '-29.179230', '422.919312', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133195', 1133195, '202.300293', '-31.331381', '415.743286', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133196', 1133196, '197.350098', '-27.568890', '432.363586', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133197', 1133197, '127.580299', '-21.390261', '452.635986', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133198', 1133198, '140.825500', '-23.697309', '449.881714', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133199', 1133199, '140.459198', '-23.605749', '454.489899', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133202', 1133202, '12.397950', '-27.619690', '294.880493', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133205', 1133205, '-18.143021', '-24.734921', '265.369598', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133206', 1133206, '-12.771850', '-24.094040', '262.958710', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133207', 1133207, '-9.199866', '-28.976500', '329.645294', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140338, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133209', 1133209, '-28.712330', '-27.396271', '280.689209', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140066, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133235', 1133235, '-294.825012', '66.698837', '-219.308807', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94446, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133239', 1133239, '-293.659912', '67.460083', '-222.491806', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94174, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133246', 1133246, '-302.510101', '60.959740', '-159.319504', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93902, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133248', 1133248, '-302.700409', '62.132381', '-166.402496', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133255', 1133255, '-356.364685', '65.308533', '-258.518585', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133257', 1133257, '-369.039490', '65.567993', '-232.715393', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133258', 1133258, '-392.416290', '67.276978', '-249.713898', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1133287', 1133287, '197.283798', '-8.773984', '-27.176359', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133291', 1133291, '211.352707', '-8.651912', '-43.106781', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133293', 1133293, '157.305206', '-7.888961', '-17.929399', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133294', 1133294, '157.244202', '-8.163623', '-11.917340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133298', 1133298, '120.449799', '-4.840655', '13.528090', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1133303', 1133303, '104.203796', '-7.003938', '47.562321', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135577', 1135577, '335.133911', '-4.725379', '-24.794729', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196916, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135582', 1135582, '371.054596', '0.844982', '-35.208488', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196644, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135586', 1135586, '374.433105', '1.702958', '-25.284241', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135591', 1135591, '345.784607', '-2.975556', '-32.761169', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135593', 1135593, '332.478790', '-3.372291', '3.097534', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135605', 1135605, '395.773193', '2.548209', '-44.693722', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135606', 1135606, '415.025085', '5.625315', '-64.068764', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135607', 1135607, '388.509888', '0.304810', '-66.453087', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135612', 1135612, '394.000214', '3.556523', '-87.144318', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135613', 1135613, '375.936493', '0.686609', '-85.923592', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135614', 1135614, '343.831512', '-5.020265', '-80.094650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135616', 1135616, '409.009888', '5.209702', '-112.078003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135617', 1135617, '417.517700', '5.755183', '-68.232597', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135618', 1135618, '412.284607', '5.636008', '-106.424400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135619', 1135619, '406.314209', '5.571515', '-103.380302', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135624', 1135624, '386.668915', '4.336706', '-103.087303', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135625', 1135625, '364.309509', '0.784262', '-125.017197', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135627', 1135627, '359.853485', '-2.578822', '-152.483398', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135628', 1135628, '350.999207', '-2.118987', '-128.300003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135629', 1135629, '316.613586', '8.015758', '128.187897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135632', 1135632, '323.190002', '9.736116', '132.826904', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135633', 1135633, '322.078613', '10.136940', '134.004807', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135639', 1135639, '288.849091', '17.952721', '161.725601', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135643', 1135643, '286.915314', '19.626829', '172.441101', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135645', 1135645, '295.765594', '16.383280', '167.437195', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1135646', 1135646, '318.979004', '13.831220', '155.957001', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1135647', 1135647, '290.314087', '17.922770', '159.804199', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1135651', 1135651, '-262.056305', '55.970860', '36.748020', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135671', 1135671, '-462.059692', '64.698357', '68.829857', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1135673', 1135673, '-398.458893', '51.156910', '68.804077', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83602, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1135685', 1135685, '-418.844910', '58.274151', '-34.409142', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135687', 1135687, '-520.153870', '65.239517', '61.102520', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80888, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1135688', 1135688, '-508.781586', '65.293297', '40.634731', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81432, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1135931', 1135931, '272.581390', '23.939560', '195.025894', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135933', 1135933, '241.474594', '24.000601', '179.914902', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135937', 1135937, '-101.839104', '-40.043732', '299.745911', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1135938', 1135938, '-105.816902', '-40.028461', '306.239807', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1135939', 1135939, '-90.198776', '-40.129551', '324.673096', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1135940', 1135940, '-94.585022', '-40.032150', '311.676514', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1135941', 1135941, '-114.854698', '-40.054981', '302.937286', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135942', 1135942, '-97.734077', '-40.054981', '304.310608', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135943', 1135943, '-102.695999', '-40.032539', '320.445892', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1135944', 1135944, '-83.087273', '-39.867889', '327.616211', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162337', 1162337, '283.977112', '-6.509701', '-148.452805', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162338', 1162338, '281.871399', '-6.690229', '-150.039703', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162341', 1162341, '315.751801', '-4.718813', '-109.327103', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162344', 1162344, '309.980103', '1.983368', '92.979958', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162345', 1162345, '337.067413', '3.266761', '71.050873', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162348', 1162348, '130.357803', '-6.759793', '57.419651', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162351', 1162351, '222.430695', '-7.827925', '-60.441029', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162352', 1162352, '227.527206', '-7.187046', '-66.727753', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162353', 1162353, '203.082306', '-7.339636', '-68.925049', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162354', 1162354, '221.484604', '-7.400672', '-64.011642', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162358', 1162358, '-19.657080', '0.269221', '-140.150803', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1162368', 1162368, '112.853699', '-26.954611', '251.195801', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162369', 1162369, '89.158417', '-24.246630', '236.957306', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162371', 1162371, '217.547806', '-31.967699', '395.895294', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162374', 1162374, '-2.485424', '-31.687981', '451.364502', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162376', 1162376, '-10.696620', '-34.134480', '443.381287', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162378', 1162378, '-23.636271', '-35.911461', '462.485596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162380', 1162380, '-61.417610', '-36.118149', '490.745300', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162384', 1162384, '-4.128872', '-28.294901', '327.096588', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1162385', 1162385, '-48.920349', '-35.910400', '310.262909', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1162386', 1162386, '-66.916382', '-32.083370', '343.644196', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1162387', 1162387, '-65.420998', '-31.630421', '353.013306', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1162390', 1162390, '-298.542786', '20.650921', '132.768707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162391', 1162391, '-294.392303', '20.060690', '130.388306', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162392', 1162392, '-296.020508', '20.999870', '168.359299', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162393', 1162393, '-297.016907', '20.876789', '122.239998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162394', 1162394, '-208.026505', '3.601872', '2.164479', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162398', 1162398, '-396.566711', '63.980961', '-218.615997', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1162399', 1162399, '-347.955994', '66.968529', '-220.251999', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1162402', 1162402, '-291.152710', '61.247379', '-168.828796', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1162403', 1162403, '-351.183289', '63.740372', '-153.645599', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162412', 1162412, '-365.503204', '62.324249', '-85.497841', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162413', 1162413, '-365.240814', '62.204288', '-87.690971', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162416', 1162416, '-353.685791', '63.380310', '-149.922501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1162426', 1162426, '-501.091003', '65.293297', '90.318100', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1162427', 1162427, '-534.918823', '65.381104', '43.912449', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81160, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1180878', 1180878, '104.639297', '-8.000016', '-91.168152', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1180879', 1180879, '105.168701', '-8.000016', '-94.222618', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1180880', 1180880, '106.210297', '-8.000016', '-96.527153', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1183451', 1183451, '104.347603', '-8.000016', '-88.522499', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1183452', 1183452, '101.512100', '-8.064646', '-97.812950', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1183453', 1183453, '100.580399', '-8.000016', '-95.459229', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1183454', 1183454, '99.803108', '-8.184623', '-92.716454', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1183455', 1183455, '99.192757', '-8.361253', '-89.878258', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234346, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1183456', 1183456, '96.327393', '-8.500061', '-99.385361', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1183458', 1183458, '95.550194', '-8.460118', '-96.840134', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1183459', 1183459, '94.825958', '-8.500061', '-93.978119', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1183460', 1183460, '94.179993', '-8.500061', '-90.982887', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1408325', 1408325, '107.492897', '15.984340', '-270.054596', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1408329', 1408329, '119.554398', '17.410500', '-259.693298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1408332', 1408332, '111.600800', '16.549120', '-248.298096', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1408334', 1408334, '117.813103', '17.697479', '-247.780807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1408341', 1408341, '111.814400', '16.758829', '-244.880096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1408351', 1408351, '86.796638', '15.940370', '-262.601105', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1408352', 1408352, '68.921707', '16.132620', '-262.037811', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1408353', 1408353, '68.168861', '16.760660', '-264.307190', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1408357', 1408357, '72.243088', '10.935070', '-243.492706', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1408358', 1408358, '87.101822', '15.245950', '-260.648010', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221122, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410560', 1410560, '103.350998', '14.389260', '-254.875107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410688', 1410688, '50.217388', '6.559038', '-223.468399', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410689', 1410689, '39.352970', '4.053384', '-182.513199', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410690', 1410690, '37.860909', '3.934789', '-183.153900', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410691', 1410691, '55.661430', '4.710185', '-183.981201', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1410693', 1410693, '-1.083989', '1.339663', '-188.567398', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219478, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1410694', 1410694, '0.474049', '1.531124', '-191.204697', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219206, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1410695', 1410695, '8.437746', '1.980624', '-176.756195', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218934, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1410696', 1410696, '-15.013690', '1.551492', '-198.619598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218662, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1410698', 1410698, '7.450444', '1.514552', '-190.764694', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410699', 1410699, '8.438234', '3.222636', '-146.234497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410700', 1410700, '14.477130', '3.104484', '-138.479904', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410701', 1410701, '16.068541', '3.373573', '-139.535202', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217574, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1410703', 1410703, '-15.113390', '3.146425', '-233.722000', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217302, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1410704', 1410704, '-4.948251', '4.778366', '-234.155304', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217030, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1410705', 1410705, '8.210199', '5.748120', '-247.337402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1410707', 1410707, '9.591916', '5.570471', '-251.132996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216498, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410708', 1410708, '5.815275', '5.237663', '-249.501099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216226, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410709', 1410709, '-9.906527', '3.594761', '-217.097595', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215954, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410712', 1410712, '-13.648660', '3.344659', '-231.383408', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215682, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410714', 1410714, '-30.136610', '0.909592', '-224.200897', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1410715', 1410715, '48.355789', '9.194451', '-243.366196', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1410716', 1410716, '74.908539', '4.285552', '-211.076706', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1410851', 1410851, '88.732697', '4.082766', '-185.738998', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215138, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410853', 1410853, '130.975204', '4.971314', '-185.109497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214866, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410976', 1410976, '131.470093', '2.068069', '-173.581100', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214594, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410977', 1410977, '107.495903', '0.653863', '-168.558304', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214322, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410978', 1410978, '142.190598', '1.204836', '-160.400803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214050, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410979', 1410979, '148.032898', '0.649221', '-123.475403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213778, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410982', 1410982, '166.648804', '-1.181116', '-137.457901', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213506, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410983', 1410983, '178.145996', '-1.608972', '-140.621307', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213228, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1410984', 1410984, '168.844696', '2.701761', '-163.503296', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212962, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410990', 1410990, '199.114899', '-0.803801', '-174.853195', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212684, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1410996', 1410996, '202.197205', '-1.697314', '-172.655899', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212418, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410998', 1410998, '239.098404', '-2.190103', '-187.159805', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212146, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1410999', 1410999, '221.515396', '-6.264487', '-154.155502', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211874, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411000', 1411000, '227.837204', '-8.126032', '-125.948700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211602, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411003', 1411003, '174.579300', '-1.892151', '-102.278099', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411004', 1411004, '182.699707', '-4.339209', '-88.384857', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211058, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411005', 1411005, '161.154007', '4.078132', '-169.399704', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411032', 1411032, '271.173798', '-9.203460', '-119.877403', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411034', 1411034, '330.082886', '-2.640436', '-152.968796', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173790, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411036', 1411036, '305.867188', '-2.983790', '-188.262894', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411037', 1411037, '302.815399', '-3.417479', '-190.063507', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411038', 1411038, '283.192108', '-6.780017', '-171.401596', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411042', 1411042, '287.338715', '-5.114256', '-195.320007', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411049', 1411049, '276.640594', '-8.026556', '-141.155594', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185238, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(319, 'e0076', 'bnpc1411065', 1411065, '308.725311', '-4.528103', '-80.785583', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411066', 1411066, '311.802795', '-5.117999', '-76.683037', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411069', 1411069, '291.112213', '-5.409167', '-79.667397', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411071', 1411071, '346.714203', '-3.206666', '-41.466160', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411078', 1411078, '264.779999', '-11.621630', '-65.637466', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183878, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411084', 1411084, '234.546997', '-11.793010', '-2.134793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183606, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411085', 1411085, '250.625107', '-8.387555', '28.634951', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183334, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411086', 1411086, '313.420288', '-6.097115', '16.095341', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183038, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411087', 1411087, '314.703308', '-5.599903', '20.012140', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182766, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411119', 1411119, '309.285095', '2.975462', '97.764503', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182494, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411120', 1411120, '326.314087', '2.426137', '90.012917', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182222, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411121', 1411121, '371.612488', '7.304699', '55.979481', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411124', 1411124, '375.810211', '7.175481', '51.219879', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411135', 1411135, '420.071991', '5.244238', '-35.509991', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411136', 1411136, '417.919312', '5.091386', '-39.660309', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411137', 1411137, '425.005402', '6.439638', '-41.263420', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411148', 1411148, '449.318512', '32.509201', '-8.551085', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170556, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411152', 1411152, '505.440613', '42.969250', '-25.847120', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170284, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411155', 1411155, '511.920410', '44.121750', '-42.307079', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171644, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411157', 1411157, '502.891510', '43.241459', '-46.006001', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171372, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411159', 1411159, '481.475494', '41.105301', '-9.940406', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171100, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411160', 1411160, '484.982300', '41.536228', '-12.749530', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171916, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411162', 1411162, '201.709000', '-7.309118', '-73.014473', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181134, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411163', 1411163, '206.805496', '-9.964188', '-16.037279', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180862, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411164', 1411164, '183.550705', '-8.560358', '-4.379386', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180590, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411167', 1411167, '127.300301', '-5.901662', '12.460290', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180318, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411170', 1411170, '92.851097', '-4.928711', '4.867581', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180046, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411171', 1411171, '127.489098', '-7.126010', '58.609852', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179774, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411173', 1411173, '216.815399', '-9.170719', '-44.144390', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411174', 1411174, '218.066605', '-9.475899', '-42.282791', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411176', 1411176, '184.252594', '-8.621394', '-0.259450', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411178', 1411178, '102.749901', '-11.800030', '112.244499', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411179', 1411179, '107.205597', '-7.793041', '74.349869', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411180', 1411180, '84.061897', '-6.851347', '16.464439', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411181', 1411181, '84.336563', '-6.698757', '13.137970', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411182', 1411182, '275.292297', '23.606110', '190.161697', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411186', 1411186, '288.694397', '21.579050', '187.354996', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177344, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411187', 1411187, '286.440796', '21.978689', '190.167206', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177072, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411193', 1411193, '237.018204', '23.458019', '156.614304', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176800, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411197', 1411197, '211.473099', '23.453070', '169.805405', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176528, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411198', 1411198, '209.800598', '23.457560', '211.348297', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176256, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411202', 1411202, '205.811798', '24.000139', '204.175003', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175984, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411203', 1411203, '226.011993', '23.536930', '175.448105', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175712, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411206', 1411206, '227.024994', '24.063431', '228.666702', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175440, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411207', 1411207, '224.858200', '23.422550', '230.009598', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175168, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411208', 1411208, '234.736603', '23.544621', '214.365707', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411210', 1411210, '233.020493', '23.453070', '214.312897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411213', 1411213, '213.946701', '23.453070', '226.459106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411214', 1411214, '211.749405', '23.453070', '228.168106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411218', 1411218, '228.444595', '23.457581', '165.045898', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411220', 1411220, '382.833496', '13.565220', '79.972481', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159876, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411222', 1411222, '374.288513', '12.161390', '84.031380', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158516, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411223', 1411223, '409.964111', '18.326040', '60.501968', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159604, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411225', 1411225, '411.001709', '26.138660', '123.399696', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158788, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411227', 1411227, '436.179108', '32.211750', '101.823402', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159060, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411228', 1411228, '439.383514', '32.761070', '98.649529', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157972, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411233', 1411233, '-58.666859', '-4.080153', '-116.513397', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134082, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411234', 1411234, '-111.996201', '6.549166', '-145.525208', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411235', 1411235, '-123.994698', '12.085680', '-163.495407', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411236', 1411236, '-120.946297', '10.817430', '-167.745193', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411237', 1411237, '-179.948700', '2.732331', '-103.572197', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1411238', 1411238, '-212.568405', '1.504992', '-84.178993', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97676, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(319, 'e0076', 'bnpc1411240', 1411240, '-212.756607', '1.846313', '-94.163452', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96316, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(319, 'e0076', 'bnpc1411241', 1411241, '-214.172699', '1.359615', '-82.278023', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96044, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(319, 'e0076', 'bnpc1411242', 1411242, '-213.856293', '1.439267', '-83.871033', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96588, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(319, 'e0076', 'bnpc1411244', 1411244, '-193.905304', '2.125694', '-41.069290', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97948, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(319, 'e0076', 'bnpc1411253', 1411253, '-56.382130', '-4.928711', '-94.529694', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411254', 1411254, '-20.293131', '-2.590379', '-100.341103', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411255', 1411255, '-23.246990', '0.393718', '-138.153305', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411256', 1411256, '-59.128750', '0.758792', '-164.202393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411655', 1411655, '-92.954361', '1.786075', '-122.393898', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411656', 1411656, '-93.869904', '1.736482', '-119.067497', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411657', 1411657, '-109.805397', '6.718060', '-150.029800', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411658', 1411658, '-176.756607', '2.961861', '-114.443398', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1411659', 1411659, '-205.790604', '2.068845', '-61.951530', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412058', 1412058, '-196.154800', '1.939114', '-25.589430', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412059', 1412059, '-163.822601', '0.087921', '-11.411790', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412062', 1412062, '71.492859', '-11.893120', '161.389404', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412463', 1412463, '107.728401', '-8.259025', '159.304703', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412464', 1412464, '108.796501', '-7.985859', '156.375000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412465', 1412465, '45.309830', '-13.145570', '164.612595', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412467', 1412467, '86.263412', '-10.238450', '166.918396', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412470', 1412470, '43.860840', '-19.453880', '194.128098', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412471', 1412471, '40.686970', '-20.436541', '199.194107', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412474', 1412474, '83.274986', '-19.705959', '207.342194', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412475', 1412475, '56.498798', '-24.125010', '265.742401', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412476', 1412476, '56.595661', '-23.666790', '269.184387', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412477', 1412477, '67.313408', '-23.280479', '279.101715', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412478', 1412478, '130.256897', '-28.458679', '285.610504', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412480', 1412480, '84.874817', '-11.151300', '170.539902', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412482', 1412482, '48.863239', '-15.723400', '175.131393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412483', 1412483, '91.596550', '-15.216650', '191.087204', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412484', 1412484, '40.536888', '-24.919319', '239.885193', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412486', 1412486, '12.541730', '-30.409491', '274.885712', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412488', 1412488, '84.885887', '-24.795959', '238.330597', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412489', 1412489, '100.537003', '-25.090691', '289.606689', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412890', 1412890, '192.974106', '-32.093040', '371.993805', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412891', 1412891, '174.770096', '-30.985760', '392.154999', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412892', 1412892, '169.164200', '-29.940310', '393.395111', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412893', 1412893, '172.161407', '-30.924379', '389.056885', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412894', 1412894, '171.285507', '-29.285271', '402.230988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412895', 1412895, '154.779907', '-26.129629', '405.514008', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412896', 1412896, '168.913696', '-28.561871', '440.527588', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412897', 1412897, '173.811401', '-24.163700', '462.640015', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412898', 1412898, '172.581100', '-23.212021', '466.157715', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412900', 1412900, '157.804596', '-31.533340', '347.603088', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412901', 1412901, '181.335403', '-32.472290', '364.442596', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412902', 1412902, '173.037506', '-29.813890', '400.369385', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412903', 1412903, '215.503098', '-32.150810', '397.756897', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412904', 1412904, '151.140594', '-25.314760', '448.172699', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1412905', 1412905, '174.771194', '-22.925610', '465.693207', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413304', 1413304, '-10.375770', '-30.070101', '357.174011', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120482, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1413305', 1413305, '-73.187973', '-29.638651', '377.182007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120210, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1413306', 1413306, '7.099501', '-28.323009', '389.698700', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119938, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1413307', 1413307, '-25.474409', '-30.239300', '288.173004', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413309', 1413309, '2.871708', '-26.996679', '314.962891', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413310', 1413310, '-43.682961', '-31.251160', '365.171295', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413311', 1413311, '-60.904331', '-32.109970', '348.252411', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413312', 1413312, '-26.264040', '-32.967579', '411.424805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413711', 1413711, '1.843092', '-32.621689', '440.420288', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413712', 1413712, '-47.684052', '-34.975368', '436.820007', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413713', 1413713, '-62.874069', '-35.826691', '451.367706', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413714', 1413714, '-36.040771', '-30.235821', '405.258087', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413715', 1413715, '-77.531143', '-35.740108', '463.920013', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413716', 1413716, '-81.834183', '-35.561951', '465.537415', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413717', 1413717, '-81.132263', '-36.687901', '482.108704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413718', 1413718, '-64.000313', '-36.181229', '492.846497', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413719', 1413719, '-45.209900', '-36.768280', '469.442810', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413721', 1413721, '-49.479870', '-31.658331', '420.700195', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413723', 1413723, '-61.146591', '-34.546021', '439.197601', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413724', 1413724, '-12.636190', '-34.818890', '433.701904', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413725', 1413725, '-21.261789', '-35.776421', '463.813293', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1413726', 1413726, '-80.766037', '-35.860481', '467.917786', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1414923', 1414923, '-251.624496', '8.046767', '9.209213', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1414924', 1414924, '-237.355103', '14.172800', '56.681469', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1414925', 1414925, '-240.865097', '13.064570', '51.144550', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1414928', 1414928, '-261.738007', '16.472500', '59.800060', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1414929', 1414929, '-271.273499', '19.264000', '95.431259', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1414931', 1414931, '-299.224915', '20.999870', '171.197403', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1414932', 1414932, '-335.657013', '21.199930', '166.262405', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1414935', 1414935, '-333.186493', '21.314899', '161.005798', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1414936', 1414936, '-351.155914', '21.194731', '192.767197', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1414938', 1414938, '-239.843002', '7.295271', '0.194433', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1415337', 1415337, '-263.631592', '17.193020', '61.247459', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1415339', 1415339, '-340.596497', '21.199930', '161.368500', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1415340', 1415340, '-332.306000', '21.000000', '208.378098', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1415341', 1415341, '-328.043915', '21.000000', '211.118393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1415342', 1415342, '-292.652802', '20.981110', '203.265396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1415343', 1415343, '-87.174072', '-39.921982', '291.489105', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1415344', 1415344, '-112.985397', '-40.020420', '312.799713', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1415345', 1415345, '-86.737244', '-40.184792', '302.023285', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1415346', 1415346, '-116.616600', '-40.014709', '309.506805', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1415347', 1415347, '-244.678497', '66.147812', '-179.125702', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1415348', 1415348, '-241.352005', '66.788689', '-178.362701', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1415352', 1415352, '-351.735809', '67.765259', '-226.093002', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1415353', 1415353, '-354.085602', '67.313278', '-222.043106', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1415354', 1415354, '-354.115387', '66.529556', '-254.235596', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1415358', 1415358, '-429.221008', '60.624039', '-145.159103', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1415359', 1415359, '-431.571014', '61.023251', '-141.100204', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1415360', 1415360, '-409.323303', '61.264919', '-120.927803', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1415361', 1415361, '-290.298706', '60.229500', '-115.695396', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1415364', 1415364, '-313.710297', '62.882381', '-46.982571', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1415365', 1415365, '-308.186493', '62.943420', '-50.370079', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72208, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1415367', 1415367, '-304.768494', '62.180470', '-99.076874', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72480, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1415368', 1415368, '-275.257507', '60.807152', '-84.214577', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71664, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1415375', 1415375, '-262.012695', '62.577202', '-39.993938', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1415376', 1415376, '-417.990387', '64.377762', '-51.102509', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1415377', 1415377, '-416.159302', '65.476410', '-55.924358', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1415378', 1415378, '-446.097504', '57.907940', '-22.476589', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1415379', 1415379, '-454.154297', '61.631142', '-28.213980', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1415381', 1415381, '-285.852814', '61.458679', '25.148211', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1415382', 1415382, '-414.267212', '60.471451', '-98.405472', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1415383', 1415383, '-462.152802', '62.699409', '-106.490501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1415384', 1415384, '-465.866913', '62.824699', '-107.035797', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1416355', 1416355, '184.649399', '-7.461709', '-54.703640', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173518, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc1418012', 1418012, '397.388092', '18.876289', '87.758537', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149848, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc1418013', 1418013, '272.692596', '-2.411928', '61.854092', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150120, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154901', 2154901, '-288.593994', '59.581390', '-121.735901', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64604, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2154903', 2154903, '-303.822388', '59.830570', '-130.571503', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2154910', 2154910, '-290.943787', '61.814331', '-175.341400', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64876, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2154912', 2154912, '-384.725800', '64.377808', '-230.792694', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2154914', 2154914, '-416.247894', '61.594559', '-135.801102', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2154915', 2154915, '-397.116089', '56.778770', '-87.632607', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2154916', 2154916, '-408.031494', '53.104481', '35.133572', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2154917', 2154917, '-274.891388', '62.760250', '-48.600040', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2154925', 2154925, '-365.255188', '56.015820', '61.905800', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2154932', 2154932, '-452.140106', '63.523258', '-235.614594', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92276, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154933', 2154933, '-486.564514', '58.060532', '-222.186707', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154938', 2154938, '-449.027313', '55.863232', '-205.401703', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91732, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154939', 2154939, '-453.788086', '56.259960', '-203.845306', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91460, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154940', 2154940, '-449.607086', '55.100281', '-200.518799', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91188, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154941', 2154941, '-459.128693', '64.652428', '-264.026886', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154943', 2154943, '-483.543213', '58.182598', '-215.136993', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90112, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154944', 2154944, '-488.316101', '67.415604', '-265.598907', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89846, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154945', 2154945, '-487.007385', '67.617432', '-267.616608', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90916, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154950', 2154950, '-508.114197', '73.937157', '-289.616486', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154952', 2154952, '-505.210999', '72.800743', '-287.708893', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154954', 2154954, '-475.800293', '75.099243', '-316.311890', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88486, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154959', 2154959, '-474.076904', '71.450668', '-300.198914', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154963', 2154963, '-481.180389', '74.270866', '-319.393005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88752, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154965', 2154965, '-509.328613', '51.460609', '-230.011002', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154966', 2154966, '-530.510376', '48.020088', '-245.654999', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87670, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154968', 2154968, '-550.774414', '46.775639', '-245.014099', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154969', 2154969, '-546.684998', '46.860470', '-244.251205', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154970', 2154970, '-545.647400', '50.522579', '-203.540100', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154971', 2154971, '-547.356384', '51.163448', '-199.786407', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154973', 2154973, '-572.310486', '49.567921', '-226.453506', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90644, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154974', 2154974, '-564.080322', '50.297001', '-211.993607', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154976', 2154976, '-508.251099', '57.374981', '-255.303207', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154978', 2154978, '-533.645081', '43.546291', '-230.397507', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2154980', 2154980, '-468.316010', '57.494301', '-212.252502', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2154982', 2154982, '-485.247803', '68.405968', '-274.754211', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2154983', 2154983, '-505.135406', '73.043167', '-290.313904', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2154985', 2154985, '-528.526672', '48.142170', '-244.495300', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2154986', 2154986, '-568.407227', '50.556568', '-214.304596', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320574', 2320574, '261.921387', '1.753539', '-223.409698', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210786, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(319, 'e0076', 'bnpc2320575', 2320575, '261.238495', '0.534709', '-243.419296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320576', 2320576, '263.797699', '1.764011', '-223.470901', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320577', 2320577, '259.453186', '1.043279', '-240.840607', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320579', 2320579, '274.919800', '-1.072963', '-256.170593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209698, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320580', 2320580, '300.060089', '-0.888014', '-307.572510', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320581', 2320581, '324.245514', '-1.093548', '-288.072113', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320582', 2320582, '298.274811', '-0.855762', '-304.993805', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320583', 2320583, '325.011292', '-1.286943', '-316.835388', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208610, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320584', 2320584, '287.788513', '-0.475198', '-298.277313', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208338, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320585', 2320585, '329.843903', '-0.745502', '-290.159698', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320586', 2320586, '325.924103', '-0.928046', '-285.067993', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320587', 2320587, '327.193207', '-1.286943', '-313.833496', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207522, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320588', 2320588, '337.177185', '0.441468', '-264.191803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207250, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320589', 2320589, '332.682892', '0.959346', '-254.439896', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206978, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320590', 2320590, '329.305206', '0.991071', '-252.106293', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206706, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320591', 2320591, '304.253815', '-0.643113', '-258.978912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320596', 2320596, '346.493591', '-0.483981', '-328.131287', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206162, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320597', 2320597, '302.790710', '-1.010156', '-352.830505', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320598', 2320598, '273.957489', '-0.689871', '-328.818512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205618, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320599', 2320599, '268.469910', '-0.593068', '-327.086395', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205346, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320600', 2320600, '267.525513', '-0.806307', '-329.538208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205074, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320601', 2320601, '276.737091', '0.547026', '-314.840912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320610', 2320610, '288.781494', '-1.187131', '-281.665588', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320612', 2320612, '330.290802', '-1.286943', '-344.531311', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320617', 2320617, '92.850220', '-10.902450', '173.235596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320637', 2320637, '-108.605698', '-30.528610', '272.296295', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320638', 2320638, '-138.649902', '-23.382610', '264.698212', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320639', 2320639, '-99.474327', '-30.263571', '271.854614', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320641', 2320641, '-170.286606', '-27.619471', '297.813995', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320642', 2320642, '-171.781998', '-27.505461', '288.445007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320643', 2320643, '-165.769897', '-27.707670', '293.053192', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320645', 2320645, '-125.383400', '-25.040100', '360.402802', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320646', 2320646, '-137.475906', '-27.672729', '336.516113', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320647', 2320647, '-141.819901', '-30.193661', '309.942688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320649', 2320649, '-59.102539', '-28.549570', '296.388702', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320650', 2320650, '277.147400', '-31.644880', '389.827209', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320651', 2320651, '250.690399', '-30.350241', '408.346588', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106362, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320652', 2320652, '274.666290', '-31.273550', '391.993988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320654', 2320654, '299.640686', '-31.632290', '402.348511', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320655', 2320655, '300.434814', '-32.791679', '411.978302', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320656', 2320656, '342.732788', '-31.784590', '408.346588', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320658', 2320658, '308.735687', '-32.272881', '398.214600', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320659', 2320659, '329.910309', '-31.601860', '408.307800', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320660', 2320660, '332.175415', '-31.647480', '410.657013', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320661', 2320661, '344.838593', '-31.113190', '440.115906', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320664', 2320664, '144.316299', '-22.573250', '513.925293', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320665', 2320665, '141.166702', '-21.478600', '518.533508', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320666', 2320666, '165.008896', '-23.196131', '497.355591', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320667', 2320667, '137.956802', '-21.858990', '489.646698', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103642, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320668', 2320668, '130.324295', '-19.810080', '417.345490', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320669', 2320669, '98.407799', '-20.697760', '221.536407', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320671', 2320671, '97.314743', '-11.800020', '101.237198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320675', 2320675, '135.972794', '-11.800140', '133.207794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320678', 2320678, '185.468796', '-11.800210', '106.268402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320683', 2320683, '188.220001', '-11.825790', '62.851860', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320688', 2320688, '201.678406', '-11.795270', '23.117371', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320694', 2320694, '260.142914', '-12.002980', '-90.756157', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320695', 2320695, '258.451996', '-12.002920', '-92.319710', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320696', 2320696, '257.085999', '-12.006830', '-154.938705', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320697', 2320697, '264.474091', '-12.313630', '-187.969193', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320721', 2320721, '396.475098', '20.645411', '107.225098', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159332, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320722', 2320722, '419.413391', '27.114370', '102.443001', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158244, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320725', 2320725, '-159.887802', '18.109520', '-68.195572', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320727', 2320727, '-170.536102', '27.551260', '-85.891403', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320728', 2320728, '-170.885803', '27.966640', '-89.178688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320732', 2320732, '-547.753174', '19.485781', '-191.943298', 30, 0, 0, 0, 2, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63894, 1, 0, 0, 0, 0, 0, 4302234, 0, 0), +(319, 'e0076', 'bnpc2320790', 2320790, '-439.475098', '48.996670', '43.930679', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320791', 2320791, '-432.144196', '49.318508', '-4.165760', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2320793', 2320793, '-242.034393', '58.664711', '38.845100', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320794', 2320794, '-206.227997', '57.382519', '52.006420', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320797', 2320797, '-193.570099', '74.743111', '21.367661', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320800', 2320800, '-238.635895', '62.272018', '25.375710', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2320801', 2320801, '-219.805405', '67.608017', '9.079071', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2341782', 2341782, '345.014008', '-1.078350', '-177.896896', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2341783', 2341783, '319.296997', '-0.849605', '-171.347198', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2341784', 2341784, '292.707397', '-6.651216', '-123.136101', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2341785', 2341785, '347.310486', '6.679530', '84.092422', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2341786', 2341786, '354.267487', '5.193762', '60.841671', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2341787', 2341787, '348.283203', '3.086715', '49.707630', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2603191', 2603191, '256.015594', '-11.793030', '-185.891006', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164850, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2603192', 2603192, '260.232605', '-11.793140', '-180.095505', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164578, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612552', 2612552, '252.195404', '-11.793090', '-145.885406', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164306, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612553', 2612553, '254.433395', '-11.793010', '-113.328796', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164034, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612554', 2612554, '258.838715', '-11.793140', '-73.879280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163762, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612555', 2612555, '233.580307', '-11.793010', '-18.570280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163490, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612556', 2612556, '216.695099', '-11.793000', '8.959249', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163218, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612557', 2612557, '212.512299', '-11.795270', '12.741240', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162946, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612559', 2612559, '120.048798', '-11.800060', '124.326401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162680, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612561', 2612561, '191.515900', '-11.856310', '51.102409', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162408, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612562', 2612562, '189.768997', '-11.800210', '71.478256', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162136, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612563', 2612563, '192.239395', '-11.800030', '91.385788', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161864, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612564', 2612564, '179.480606', '-11.800260', '106.735802', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161592, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612565', 2612565, '165.069794', '-11.800630', '119.881798', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161320, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612566', 2612566, '146.988297', '-11.800000', '126.311401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161048, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612569', 2612569, '132.474792', '-11.800090', '139.979294', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160776, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612570', 2612570, '250.133804', '-11.793030', '-55.898849', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160498, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612571', 2612571, '205.980301', '-11.772920', '33.134300', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160226, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612573', 2612573, '421.064514', '24.757450', '78.823257', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2612574', 2612574, '428.320709', '31.721590', '124.805603', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157428, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2615184', 2615184, '360.341705', '-32.028728', '435.294006', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2615186', 2615186, '375.478699', '-32.089771', '448.966095', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2615187', 2615187, '382.955597', '-31.998211', '440.878815', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc2615503', 2615503, '253.211594', '-11.793080', '-161.360504', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154514, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc2615504', 2615504, '253.937607', '-11.793030', '-68.861298', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154242, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3693097', 3693097, '-224.085602', '1.055553', '-69.316994', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(319, 'e0076', 'bnpc3693102', 3693102, '-195.941101', '2.945007', '-104.081802', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96860, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(319, 'e0076', 'bnpc3693103', 3693103, '-189.283005', '2.362727', '-83.005783', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97404, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(319, 'e0076', 'bnpc3693105', 3693105, '-210.620300', '1.998901', '-96.299683', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95500, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(319, 'e0076', 'bnpc3693109', 3693109, '-195.513901', '2.216981', '-40.186169', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95228, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(319, 'e0076', 'bnpc3693111', 3693111, '-200.096695', '2.060742', '-67.256340', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(319, 'e0076', 'bnpc3693121', 3693121, '368.459503', '-32.364429', '413.199005', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3693136', 3693136, '242.206406', '-30.411280', '402.182007', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3693138', 3693138, '225.451996', '-28.488640', '423.605713', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3693140', 3693140, '215.350494', '-32.486500', '387.777496', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3693173', 3693173, '-508.842590', '40.237991', '-79.606361', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3693174', 3693174, '-516.899414', '40.146439', '-74.967621', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3693175', 3693175, '-514.549500', '40.207470', '-77.103882', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85228, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3693176', 3693176, '-520.866821', '40.146439', '-64.255783', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3693177', 3693177, '-515.685120', '40.359970', '-54.677021', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3693178', 3693178, '-503.929199', '41.000938', '-56.107471', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3693179', 3693179, '-483.658691', '45.245129', '-60.343559', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3693180', 3693180, '-481.533905', '45.933941', '-62.817669', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3693183', 3693183, '-378.957794', '51.132931', '52.109509', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3693184', 3693184, '-397.512787', '49.301849', '10.055650', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3693185', 3693185, '-433.121094', '49.318531', '34.558170', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3693188', 3693188, '-322.396393', '57.338970', '-6.726664', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65686, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3693623', 3693623, '-184.619797', '78.429970', '42.778721', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3693624', 3693624, '-191.994202', '77.183746', '37.510250', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72746, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3694403', 3694403, '-314.266113', '63.832611', '57.746510', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3742079', 3742079, '-530.733887', '65.311684', '98.466423', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3742133', 3742133, '-526.186829', '65.311691', '102.647400', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3742194', 3742194, '48.050610', '-11.800030', '-40.915428', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153976, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3742195', 3742195, '22.187790', '-11.800000', '-69.750504', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153704, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3742196', 3742196, '15.168640', '-11.800000', '-75.762558', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153432, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3742197', 3742197, '6.348711', '-11.800040', '-110.540199', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153160, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3742198', 3742198, '-54.153049', '-3.500003', '-186.530106', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152888, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3742199', 3742199, '-50.919399', '-3.500001', '-182.895996', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152616, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3742200', 3742200, '-69.779549', '-3.500144', '-196.820496', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152344, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3742201', 3742201, '-62.272110', '-3.500066', '-207.843399', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152072, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3742202', 3742202, '2.735321', '-11.800110', '-122.937599', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151782, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3742203', 3742203, '-6.886642', '-3.500000', '-135.990402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3742204', 3742204, '-6.586641', '-3.500000', '-139.267899', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3742205', 3742205, '-36.719379', '-3.500000', '-180.416794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150966, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3742206', 3742206, '-48.687111', '-3.500072', '-207.096298', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150694, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3746465', 3746465, '-208.691696', '52.495350', '-42.669102', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71120, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3746466', 3746466, '-219.824799', '58.286751', '-60.483898', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3746467', 3746467, '-215.491898', '57.635231', '-71.491089', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70576, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3869502', 3869502, '125.699600', '25.160120', '-311.621185', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41108, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(319, 'e0076', 'bnpc3869509', 3869509, '-307.502899', '63.448620', '-285.687714', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40842, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(319, 'e0076', 'bnpc3869525', 3869525, '-206.130997', '53.564651', '-126.977600', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40564, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(319, 'e0076', 'bnpc3869531', 3869531, '96.403351', '-6.334397', '-121.433502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40298, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(319, 'e0076', 'bnpc3869540', 3869540, '164.007095', '-6.013201', '-52.486290', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.750000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40020, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(319, 'e0076', 'bnpc3869598', 3869598, '-4.837158', '-7.919495', '-22.201900', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39760, 5, 0, 20, 0, 0, 30055, 0, 0, 0), +(319, 'e0076', 'bnpc3869604', 3869604, '85.465698', '-6.089244', '60.991131', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39482, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(319, 'e0076', 'bnpc3869607', 3869607, '14.362120', '-8.102512', '100.498901', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39204, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(319, 'e0076', 'bnpc3877513', 3877513, '121.019203', '24.917931', '-304.463287', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204518, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc3884907', 3884907, '-419.228607', '55.416000', '66.506737', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3897658', 3897658, '117.021400', '25.101040', '-311.604492', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204258, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc3898007', 3898007, '132.524597', '24.948450', '-305.562012', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203974, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc4083772', 4083772, '-327.757690', '21.357790', '204.228699', 58, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 5782, 1, 0, 0, 0, 0, 0, 4083771, 0, 0), +(319, 'e0076', 'bnpc4083778', 4083778, '-297.044800', '21.140360', '151.049896', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 8174, 1, 0, 0, 0, 0, 0, 4083775, 0, 0), +(319, 'e0076', 'bnpc4083795', 4083795, '-327.840088', '21.103210', '206.835907', 58, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6054, 1, 0, 0, 0, 0, 0, 4083794, 0, 0), +(319, 'e0076', 'bnpc4083796', 4083796, '-296.744812', '21.145109', '151.349899', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7662, 1, 0, 0, 0, 0, 0, 4083797, 0, 0), +(319, 'e0076', 'bnpc4083798', 4083798, '-296.444794', '21.149870', '151.649902', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7278, 1, 0, 0, 0, 0, 0, 4083799, 0, 0), +(319, 'e0076', 'bnpc4083800', 4083800, '-296.144806', '21.154619', '151.949905', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6894, 1, 0, 0, 0, 0, 0, 4083801, 0, 0), +(319, 'e0076', 'bnpc4083802', 4083802, '-295.844788', '21.159370', '152.249893', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6510, 1, 0, 0, 0, 0, 0, 4083803, 0, 0), +(319, 'e0076', 'bnpc4083871', 4083871, '127.641701', '-6.332520', '-100.389198', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38544, 8, 0, 0, 4295658, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4295672', 4295672, '132.951797', '-6.332520', '-100.114502', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37512, 8, 0, 0, 4295661, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4295673', 4295673, '137.910706', '-6.438695', '-96.608414', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37240, 8, 0, 0, 4295662, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4295675', 4295675, '126.695297', '-6.948534', '-90.459633', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36968, 8, 0, 0, 4295663, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4295677', 4295677, '126.418900', '-6.971872', '-84.529358', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36696, 8, 0, 0, 4295664, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4296957', 4296957, '95.628906', '-2.029270', '-42.382439', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35816, 1, 0, 0, 2280260, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4296958', 4296958, '98.693558', '-2.029731', '-43.942860', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35544, 1, 0, 0, 2280261, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4296959', 4296959, '101.467598', '-2.005454', '-46.176739', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35272, 1, 0, 0, 2280262, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4296960', 4296960, '104.146896', '-1.968804', '-48.332958', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35000, 1, 0, 0, 2280263, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302206', 4302206, '-555.148071', '29.067560', '-230.785706', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302207', 4302207, '-516.437683', '22.056881', '-221.606796', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302208', 4302208, '-524.244812', '24.477020', '-253.274597', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302209', 4302209, '-527.577820', '24.719191', '-254.932404', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302212', 4302212, '-582.818420', '21.723471', '-238.845596', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302213', 4302213, '-596.266602', '20.622200', '-226.349106', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302214', 4302214, '-579.272827', '21.076719', '-214.966003', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302215', 4302215, '-581.780823', '21.842831', '-241.897293', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302216', 4302216, '-528.772888', '19.922779', '-195.839096', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61374, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302217', 4302217, '-537.197327', '20.139130', '-199.348495', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302218', 4302218, '-563.208191', '18.867491', '-186.546005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302219', 4302219, '-527.765808', '20.129919', '-200.682007', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302220', 4302220, '-569.817627', '10.940670', '-130.235794', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302221', 4302221, '-617.120605', '21.896610', '-197.436493', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302222', 4302222, '-575.432983', '11.001710', '-129.716995', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302223', 4302223, '-568.810608', '10.910160', '-133.318100', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302225', 4302225, '-502.711792', '17.279470', '-157.029495', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59204, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302226', 4302226, '-496.089386', '16.799740', '-160.630707', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58938, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302228', 4302228, '-481.979004', '18.189381', '-229.549103', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302229', 4302229, '-555.941528', '25.463579', '-260.210693', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4302351', 4302351, '-572.925293', '18.257090', '-181.740707', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57718, 1, 0, 0, 0, 0, 0, 4302260, 0, 0), +(319, 'e0076', 'bnpc4302353', 4302353, '-513.667175', '23.842480', '-245.333893', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57446, 1, 0, 0, 0, 0, 0, 4302268, 0, 0), +(319, 'e0076', 'bnpc4333043', 4333043, '-309.205597', '57.338970', '-10.110600', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(319, 'e0076', 'bnpc4333385', 4333385, '-348.321503', '67.616417', '-233.774200', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4510293', 4510293, '213.253204', '-32.025242', '324.145386', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38950, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(319, 'e0076', 'bnpc4621046', 4621046, '370.051086', '-32.295422', '411.821198', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42124, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(319, 'e0076', 'bnpc4621047', 4621047, '-538.803589', '50.907551', '-203.075394', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41858, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1132780', 1132780, '42.705971', '6.489012', '-222.119598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132784', 1132784, '43.994171', '7.081282', '-226.261307', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 231174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132785', 1132785, '46.368141', '6.532326', '-222.363800', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230902, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132786', 1132786, '50.249649', '8.663927', '-237.583603', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230630, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132810', 1132810, '119.142403', '17.274370', '-264.585907', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230358, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132815', 1132815, '53.141479', '4.367238', '-208.718597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 230086, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132818', 1132818, '57.950279', '4.701855', '-181.906006', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229814, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132819', 1132819, '53.380199', '3.647015', '-170.941803', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229542, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132823', 1132823, '85.892982', '4.386182', '-186.633102', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132827', 1132827, '136.440002', '-0.215091', '-142.126297', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 229004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132829', 1132829, '139.586502', '1.436886', '-162.906296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132833', 1132833, '144.692596', '1.594073', '-161.313507', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132834', 1132834, '169.345306', '-0.575563', '-143.321701', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 228188, 7, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(320, 'e0077', 'bnpc1132835', 1132835, '132.885803', '4.471908', '-182.040894', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132836', 1132836, '127.652000', '2.679112', '-179.060898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132837', 1132837, '133.402802', '5.498395', '-185.220093', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132842', 1132842, '104.130501', '4.751109', '-199.651596', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 227100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132988', 1132988, '145.939301', '0.761501', '-119.501801', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132990', 1132990, '165.896698', '-0.582151', '-142.284103', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132991', 1132991, '196.646301', '-2.798964', '-155.795898', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132992', 1132992, '159.011398', '0.196450', '-113.407997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 226012, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1132993', 1132993, '162.856598', '-0.357008', '-115.116997', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225740, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133000', 1133000, '202.288803', '-2.206049', '-168.963196', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225468, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133001', 1133001, '223.772705', '-6.852091', '-140.217407', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 225196, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133002', 1133002, '206.683395', '-2.759299', '-171.221497', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224924, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133005', 1133005, '231.146698', '-5.044106', '-178.307693', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224652, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133007', 1133007, '242.902496', '-0.494766', '-191.458496', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224380, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133008', 1133008, '239.977493', '-0.588080', '-191.828400', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 224108, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133010', 1133010, '221.392303', '-6.460419', '-138.050598', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223836, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133022', 1133022, '332.788513', '-3.345333', '-151.251495', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201534, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133023', 1133023, '298.603699', '-6.332541', '-125.749603', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 201262, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133029', 1133029, '302.693298', '-3.341390', '-184.143005', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200990, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133031', 1133031, '328.386993', '-0.505648', '-187.936401', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200718, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133032', 1133032, '342.892487', '-1.328422', '-175.218201', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200446, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133035', 1133035, '358.327515', '-2.255364', '-175.310898', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 200174, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133036', 1133036, '335.507294', '0.561625', '-194.418793', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199902, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133042', 1133042, '439.946808', '10.149250', '-108.177101', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169468, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133044', 1133044, '458.584900', '14.997390', '-90.379593', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169740, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133047', 1133047, '463.401215', '25.778530', '-35.324680', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168380, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133049', 1133049, '445.243591', '31.812080', '-9.685579', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168652, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133052', 1133052, '486.745514', '31.609249', '-44.177990', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168924, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133053', 1133053, '487.618011', '31.024900', '-55.958771', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170012, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133054', 1133054, '483.304291', '30.900890', '-51.161331', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172188, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133056', 1133056, '482.511993', '23.910801', '-88.545013', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173276, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133057', 1133057, '480.679291', '24.104330', '-120.189201', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 169196, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133063', 1133063, '504.435913', '29.146271', '-83.562149', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173004, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133064', 1133064, '482.169495', '24.010910', '-92.475502', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172732, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133065', 1133065, '459.642914', '24.454941', '-39.719559', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 172460, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133066', 1133066, '453.938690', '26.000799', '-33.810230', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170828, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133070', 1133070, '351.512787', '3.052480', '46.861389', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133071', 1133071, '341.298492', '3.983801', '67.704231', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133072', 1133072, '348.626495', '0.976962', '28.015940', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133073', 1133073, '342.183502', '0.098491', '27.298340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133077', 1133077, '309.071411', '-2.609340', '63.065491', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133080', 1133080, '281.574707', '-7.184652', '26.169170', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133098', 1133098, '289.254913', '-5.168305', '48.585239', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 199086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133100', 1133100, '291.498688', '-5.368438', '47.821369', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198814, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133126', 1133126, '-82.030632', '1.519239', '-141.488693', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148770, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133128', 1133128, '-77.317497', '1.083344', '-136.644608', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148498, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133130', 1133130, '-63.375290', '0.643326', '-166.887497', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148226, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133131', 1133131, '-64.313164', '0.965167', '-162.181503', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147954, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133132', 1133132, '-75.591331', '1.176651', '-142.404297', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147682, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133138', 1133138, '-33.189919', '-4.914308', '-94.149628', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147410, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133148', 1133148, '86.244072', '-19.783070', '210.247406', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133152', 1133152, '70.510750', '-17.727341', '188.296799', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133156', 1133156, '56.609531', '-22.226370', '292.790710', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133163', 1133163, '25.970390', '-24.061230', '233.649994', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133165', 1133165, '37.231960', '-26.765560', '260.079498', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133167', 1133167, '36.484268', '-25.833570', '242.542099', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133172', 1133172, '94.585983', '-24.244490', '288.477509', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133176', 1133176, '98.126083', '-23.363501', '294.977814', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133177', 1133177, '85.597298', '-27.953020', '268.263000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133178', 1133178, '89.747749', '-28.194380', '266.065704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133179', 1133179, '141.949905', '-28.936390', '333.222290', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133181', 1133181, '160.046402', '-31.802570', '350.789795', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133185', 1133185, '164.906906', '-32.018280', '333.485504', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133186', 1133186, '146.226807', '-28.810591', '357.818298', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133187', 1133187, '196.479996', '-32.228100', '370.754303', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133189', 1133189, '179.687897', '-32.476631', '364.163086', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133193', 1133193, '213.929794', '-29.694580', '421.080688', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133194', 1133194, '210.157394', '-29.179230', '422.919312', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133195', 1133195, '202.300293', '-31.331381', '415.743286', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133196', 1133196, '197.350098', '-27.568890', '432.363586', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133197', 1133197, '127.580299', '-21.390261', '452.635986', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133198', 1133198, '140.825500', '-23.697309', '449.881714', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133199', 1133199, '140.459198', '-23.605749', '454.489899', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133202', 1133202, '12.397950', '-27.619690', '294.880493', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133205', 1133205, '-18.143021', '-24.734921', '265.369598', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133206', 1133206, '-12.771850', '-24.094040', '262.958710', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133207', 1133207, '-9.199866', '-28.976500', '329.645294', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140338, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133209', 1133209, '-28.712330', '-27.396271', '280.689209', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140066, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133235', 1133235, '-294.825012', '66.698837', '-219.308807', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94446, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133239', 1133239, '-293.659912', '67.460083', '-222.491806', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94174, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133246', 1133246, '-302.510101', '60.959740', '-159.319504', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93902, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133248', 1133248, '-302.700409', '62.132381', '-166.402496', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93630, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133255', 1133255, '-356.364685', '65.308533', '-258.518585', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133257', 1133257, '-369.039490', '65.567993', '-232.715393', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133258', 1133258, '-392.416290', '67.276978', '-249.713898', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1133287', 1133287, '197.283798', '-8.773984', '-27.176359', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198542, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133291', 1133291, '211.352707', '-8.651912', '-43.106781', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 198270, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133293', 1133293, '157.305206', '-7.888961', '-17.929399', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197998, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133294', 1133294, '157.244202', '-8.163623', '-11.917340', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197726, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133298', 1133298, '120.449799', '-4.840655', '13.528090', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197454, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1133303', 1133303, '104.203796', '-7.003938', '47.562321', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 197182, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135577', 1135577, '335.133911', '-4.725379', '-24.794729', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196916, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135582', 1135582, '371.054596', '0.844982', '-35.208488', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196644, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135586', 1135586, '374.433105', '1.702958', '-25.284241', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196372, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135591', 1135591, '345.784607', '-2.975556', '-32.761169', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 196100, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135593', 1135593, '332.478790', '-3.372291', '3.097534', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195828, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135605', 1135605, '395.773193', '2.548209', '-44.693722', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195556, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135606', 1135606, '415.025085', '5.625315', '-64.068764', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195284, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135607', 1135607, '388.509888', '0.304810', '-66.453087', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 195012, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135612', 1135612, '394.000214', '3.556523', '-87.144318', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194740, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135613', 1135613, '375.936493', '0.686609', '-85.923592', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194468, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135614', 1135614, '343.831512', '-5.020265', '-80.094650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 194196, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135616', 1135616, '409.009888', '5.209702', '-112.078003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193924, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135617', 1135617, '417.517700', '5.755183', '-68.232597', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193652, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135618', 1135618, '412.284607', '5.636008', '-106.424400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193380, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135619', 1135619, '406.314209', '5.571515', '-103.380302', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 193108, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135624', 1135624, '386.668915', '4.336706', '-103.087303', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192836, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135625', 1135625, '364.309509', '0.784262', '-125.017197', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192564, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135627', 1135627, '359.853485', '-2.578822', '-152.483398', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192292, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135628', 1135628, '350.999207', '-2.118987', '-128.300003', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 192020, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135629', 1135629, '316.613586', '8.015758', '128.187897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135632', 1135632, '323.190002', '9.736116', '132.826904', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135633', 1135633, '322.078613', '10.136940', '134.004807', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 191210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135639', 1135639, '288.849091', '17.952721', '161.725601', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135643', 1135643, '286.915314', '19.626829', '172.441101', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135645', 1135645, '295.765594', '16.383280', '167.437195', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1135646', 1135646, '318.979004', '13.831220', '155.957001', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 190128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1135647', 1135647, '290.314087', '17.922770', '159.804199', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1135651', 1135651, '-262.056305', '55.970860', '36.748020', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135671', 1135671, '-462.059692', '64.698357', '68.829857', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81704, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1135673', 1135673, '-398.458893', '51.156910', '68.804077', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83602, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1135685', 1135685, '-418.844910', '58.274151', '-34.409142', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135687', 1135687, '-520.153870', '65.239517', '61.102520', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80888, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1135688', 1135688, '-508.781586', '65.293297', '40.634731', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81432, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1135931', 1135931, '272.581390', '23.939560', '195.025894', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135933', 1135933, '241.474594', '24.000601', '179.914902', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135937', 1135937, '-101.839104', '-40.043732', '299.745911', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1135938', 1135938, '-105.816902', '-40.028461', '306.239807', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1135939', 1135939, '-90.198776', '-40.129551', '324.673096', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1135940', 1135940, '-94.585022', '-40.032150', '311.676514', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1135941', 1135941, '-114.854698', '-40.054981', '302.937286', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135942', 1135942, '-97.734077', '-40.054981', '304.310608', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135943', 1135943, '-102.695999', '-40.032539', '320.445892', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1135944', 1135944, '-83.087273', '-39.867889', '327.616211', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162337', 1162337, '283.977112', '-6.509701', '-148.452805', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 189022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162338', 1162338, '281.871399', '-6.690229', '-150.039703', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162341', 1162341, '315.751801', '-4.718813', '-109.327103', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162344', 1162344, '309.980103', '1.983368', '92.979958', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 188206, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162345', 1162345, '337.067413', '3.266761', '71.050873', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162348', 1162348, '130.357803', '-6.759793', '57.419651', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187934, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162351', 1162351, '222.430695', '-7.827925', '-60.441029', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187662, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162352', 1162352, '227.527206', '-7.187046', '-66.727753', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187390, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162353', 1162353, '203.082306', '-7.339636', '-68.925049', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 187118, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162354', 1162354, '221.484604', '-7.400672', '-64.011642', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186846, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162358', 1162358, '-19.657080', '0.269221', '-140.150803', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1162368', 1162368, '112.853699', '-26.954611', '251.195801', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162369', 1162369, '89.158417', '-24.246630', '236.957306', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138168, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162371', 1162371, '217.547806', '-31.967699', '395.895294', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162374', 1162374, '-2.485424', '-31.687981', '451.364502', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137624, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162376', 1162376, '-10.696620', '-34.134480', '443.381287', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137352, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162378', 1162378, '-23.636271', '-35.911461', '462.485596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137080, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162380', 1162380, '-61.417610', '-36.118149', '490.745300', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162384', 1162384, '-4.128872', '-28.294901', '327.096588', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1162385', 1162385, '-48.920349', '-35.910400', '310.262909', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1162386', 1162386, '-66.916382', '-32.083370', '343.644196', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1162387', 1162387, '-65.420998', '-31.630421', '353.013306', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1162390', 1162390, '-298.542786', '20.650921', '132.768707', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162391', 1162391, '-294.392303', '20.060690', '130.388306', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162392', 1162392, '-296.020508', '20.999870', '168.359299', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134910, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162393', 1162393, '-297.016907', '20.876789', '122.239998', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134638, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162394', 1162394, '-208.026505', '3.601872', '2.164479', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134366, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162398', 1162398, '-396.566711', '63.980961', '-218.615997', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1162399', 1162399, '-347.955994', '66.968529', '-220.251999', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1162402', 1162402, '-291.152710', '61.247379', '-168.828796', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93358, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1162403', 1162403, '-351.183289', '63.740372', '-153.645599', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162412', 1162412, '-365.503204', '62.324249', '-85.497841', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162413', 1162413, '-365.240814', '62.204288', '-87.690971', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162416', 1162416, '-353.685791', '63.380310', '-149.922501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1162426', 1162426, '-501.091003', '65.293297', '90.318100', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81976, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1162427', 1162427, '-534.918823', '65.381104', '43.912449', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81160, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1180878', 1180878, '104.639297', '-8.000016', '-91.168152', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1180879', 1180879, '105.168701', '-8.000016', '-94.222618', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 236080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1180880', 1180880, '106.210297', '-8.000016', '-96.527153', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1183451', 1183451, '104.347603', '-8.000016', '-88.522499', 14, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1183452', 1183452, '101.512100', '-8.064646', '-97.812950', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 235162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1183453', 1183453, '100.580399', '-8.000016', '-95.459229', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1183454', 1183454, '99.803108', '-8.184623', '-92.716454', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1183455', 1183455, '99.192757', '-8.361253', '-89.878258', 2, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234346, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1183456', 1183456, '96.327393', '-8.500061', '-99.385361', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 234080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1183458', 1183458, '95.550194', '-8.460118', '-96.840134', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1183459', 1183459, '94.825958', '-8.500061', '-93.978119', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1183460', 1183460, '94.179993', '-8.500061', '-90.982887', 11, 0, 0, 0, 1, 10, 0, 0, 0, 0, '0.000000', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 233264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1408325', 1408325, '107.492897', '15.984340', '-270.054596', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223558, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1408329', 1408329, '119.554398', '17.410500', '-259.693298', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1408332', 1408332, '111.600800', '16.549120', '-248.298096', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 223014, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1408334', 1408334, '117.813103', '17.697479', '-247.780807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222742, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1408341', 1408341, '111.814400', '16.758829', '-244.880096', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1408351', 1408351, '86.796638', '15.940370', '-262.601105', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 222198, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1408352', 1408352, '68.921707', '16.132620', '-262.037811', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221926, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1408353', 1408353, '68.168861', '16.760660', '-264.307190', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221654, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1408357', 1408357, '72.243088', '10.935070', '-243.492706', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1408358', 1408358, '87.101822', '15.245950', '-260.648010', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 221122, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410560', 1410560, '103.350998', '14.389260', '-254.875107', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410688', 1410688, '50.217388', '6.559038', '-223.468399', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410689', 1410689, '39.352970', '4.053384', '-182.513199', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410690', 1410690, '37.860909', '3.934789', '-183.153900', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 220034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410691', 1410691, '55.661430', '4.710185', '-183.981201', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1410693', 1410693, '-1.083989', '1.339663', '-188.567398', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219478, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1410694', 1410694, '0.474049', '1.531124', '-191.204697', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 219206, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1410695', 1410695, '8.437746', '1.980624', '-176.756195', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218934, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1410696', 1410696, '-15.013690', '1.551492', '-198.619598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218662, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1410698', 1410698, '7.450444', '1.514552', '-190.764694', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410699', 1410699, '8.438234', '3.222636', '-146.234497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 218130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410700', 1410700, '14.477130', '3.104484', '-138.479904', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410701', 1410701, '16.068541', '3.373573', '-139.535202', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217574, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1410703', 1410703, '-15.113390', '3.146425', '-233.722000', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217302, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1410704', 1410704, '-4.948251', '4.778366', '-234.155304', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 217030, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1410705', 1410705, '8.210199', '5.748120', '-247.337402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1410707', 1410707, '9.591916', '5.570471', '-251.132996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216498, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410708', 1410708, '5.815275', '5.237663', '-249.501099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 216226, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410709', 1410709, '-9.906527', '3.594761', '-217.097595', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215954, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410712', 1410712, '-13.648660', '3.344659', '-231.383408', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215682, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410714', 1410714, '-30.136610', '0.909592', '-224.200897', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1410715', 1410715, '48.355789', '9.194451', '-243.366196', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1410716', 1410716, '74.908539', '4.285552', '-211.076706', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1410851', 1410851, '88.732697', '4.082766', '-185.738998', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 215138, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410853', 1410853, '130.975204', '4.971314', '-185.109497', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214866, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(320, 'e0077', 'bnpc1410976', 1410976, '131.470093', '2.068069', '-173.581100', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214594, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410977', 1410977, '107.495903', '0.653863', '-168.558304', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214322, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410978', 1410978, '142.190598', '1.204836', '-160.400803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 214050, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410979', 1410979, '148.032898', '0.649221', '-123.475403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213778, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410982', 1410982, '166.648804', '-1.181116', '-137.457901', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213506, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410983', 1410983, '178.145996', '-1.608972', '-140.621307', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 213228, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1410984', 1410984, '168.844696', '2.701761', '-163.503296', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212962, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410990', 1410990, '199.114899', '-0.803801', '-174.853195', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212684, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1410996', 1410996, '202.197205', '-1.697314', '-172.655899', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212418, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410998', 1410998, '239.098404', '-2.190103', '-187.159805', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 212146, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1410999', 1410999, '221.515396', '-6.264487', '-154.155502', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211874, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411000', 1411000, '227.837204', '-8.126032', '-125.948700', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211602, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411003', 1411003, '174.579300', '-1.892151', '-102.278099', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211324, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411004', 1411004, '182.699707', '-4.339209', '-88.384857', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 211058, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411005', 1411005, '161.154007', '4.078132', '-169.399704', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411032', 1411032, '271.173798', '-9.203460', '-119.877403', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186574, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411034', 1411034, '330.082886', '-2.640436', '-152.968796', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173790, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411036', 1411036, '305.867188', '-2.983790', '-188.262894', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186302, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411037', 1411037, '302.815399', '-3.417479', '-190.063507', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 186030, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411038', 1411038, '283.192108', '-6.780017', '-171.401596', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185758, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411042', 1411042, '287.338715', '-5.114256', '-195.320007', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411049', 1411049, '276.640594', '-8.026556', '-141.155594', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 185238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411065', 1411065, '308.725311', '-4.528103', '-80.785583', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411066', 1411066, '311.802795', '-5.117999', '-76.683037', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411069', 1411069, '291.112213', '-5.409167', '-79.667397', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411071', 1411071, '346.714203', '-3.206666', '-41.466160', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 184132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411078', 1411078, '264.779999', '-11.621630', '-65.637466', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183878, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411084', 1411084, '234.546997', '-11.793010', '-2.134793', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183606, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411085', 1411085, '250.625107', '-8.387555', '28.634951', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183334, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411086', 1411086, '313.420288', '-6.097115', '16.095341', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 183038, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411087', 1411087, '314.703308', '-5.599903', '20.012140', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182766, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411119', 1411119, '309.285095', '2.975462', '97.764503', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182494, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411120', 1411120, '326.314087', '2.426137', '90.012917', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 182222, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411121', 1411121, '371.612488', '7.304699', '55.979481', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411124', 1411124, '375.810211', '7.175481', '51.219879', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154750, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411135', 1411135, '420.071991', '5.244238', '-35.509991', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411136', 1411136, '417.919312', '5.091386', '-39.660309', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411137', 1411137, '425.005402', '6.439638', '-41.263420', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411148', 1411148, '449.318512', '32.509201', '-8.551085', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170556, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411152', 1411152, '505.440613', '42.969250', '-25.847120', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 170284, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411155', 1411155, '511.920410', '44.121750', '-42.307079', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171644, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411157', 1411157, '502.891510', '43.241459', '-46.006001', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171372, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411159', 1411159, '481.475494', '41.105301', '-9.940406', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171100, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411160', 1411160, '484.982300', '41.536228', '-12.749530', 142, 0, 0, 0, 1, 6, 0, 0, 120, 0, '0.000000', 9, 2, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 171916, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411162', 1411162, '201.709000', '-7.309118', '-73.014473', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 181134, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411163', 1411163, '206.805496', '-9.964188', '-16.037279', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180862, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411164', 1411164, '183.550705', '-8.560358', '-4.379386', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180590, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411167', 1411167, '127.300301', '-5.901662', '12.460290', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180318, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411170', 1411170, '92.851097', '-4.928711', '4.867581', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 180046, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411171', 1411171, '127.489098', '-7.126010', '58.609852', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179774, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411173', 1411173, '216.815399', '-9.170719', '-44.144390', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179526, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411174', 1411174, '218.066605', '-9.475899', '-42.282791', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 179254, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411176', 1411176, '184.252594', '-8.621394', '-0.259450', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178982, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411178', 1411178, '102.749901', '-11.800030', '112.244499', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178710, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411179', 1411179, '107.205597', '-7.793041', '74.349869', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178438, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411180', 1411180, '84.061897', '-6.851347', '16.464439', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 178166, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411181', 1411181, '84.336563', '-6.698757', '13.137970', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177894, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411182', 1411182, '275.292297', '23.606110', '190.161697', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411186', 1411186, '288.694397', '21.579050', '187.354996', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177344, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411187', 1411187, '286.440796', '21.978689', '190.167206', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 177072, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411193', 1411193, '237.018204', '23.458019', '156.614304', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176800, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411197', 1411197, '211.473099', '23.453070', '169.805405', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176528, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411198', 1411198, '209.800598', '23.457560', '211.348297', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 176256, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411202', 1411202, '205.811798', '24.000139', '204.175003', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175984, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411203', 1411203, '226.011993', '23.536930', '175.448105', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175712, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411206', 1411206, '227.024994', '24.063431', '228.666702', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175440, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411207', 1411207, '224.858200', '23.422550', '230.009598', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 175168, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411208', 1411208, '234.736603', '23.544621', '214.365707', 21, 0, 0, 0, 1, 6, 0, 0, 21, 0, '0.000000', 9, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150416, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411210', 1411210, '233.020493', '23.453070', '214.312897', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411213', 1411213, '213.946701', '23.453070', '226.459106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411214', 1411214, '211.749405', '23.453070', '228.168106', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411218', 1411218, '228.444595', '23.457581', '165.045898', 41, 0, 0, 0, 1, 6, 0, 0, 41, 0, '0.000000', 8, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 174074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411220', 1411220, '382.833496', '13.565220', '79.972481', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159876, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411222', 1411222, '374.288513', '12.161390', '84.031380', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158516, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411223', 1411223, '409.964111', '18.326040', '60.501968', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159604, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411225', 1411225, '411.001709', '26.138660', '123.399696', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158788, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411227', 1411227, '436.179108', '32.211750', '101.823402', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159060, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411228', 1411228, '439.383514', '32.761070', '98.649529', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157972, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411233', 1411233, '-58.666859', '-4.080153', '-116.513397', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134082, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411234', 1411234, '-111.996201', '6.549166', '-145.525208', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411235', 1411235, '-123.994698', '12.085680', '-163.495407', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411236', 1411236, '-120.946297', '10.817430', '-167.745193', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411237', 1411237, '-179.948700', '2.732331', '-103.572197', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1411238', 1411238, '-212.568405', '1.504992', '-84.178993', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97676, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(320, 'e0077', 'bnpc1411240', 1411240, '-212.756607', '1.846313', '-94.163452', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96316, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(320, 'e0077', 'bnpc1411241', 1411241, '-214.172699', '1.359615', '-82.278023', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96044, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(320, 'e0077', 'bnpc1411242', 1411242, '-213.856293', '1.439267', '-83.871033', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96588, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(320, 'e0077', 'bnpc1411244', 1411244, '-193.905304', '2.125694', '-41.069290', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97948, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(320, 'e0077', 'bnpc1411253', 1411253, '-56.382130', '-4.928711', '-94.529694', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411254', 1411254, '-20.293131', '-2.590379', '-100.341103', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411255', 1411255, '-23.246990', '0.393718', '-138.153305', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411256', 1411256, '-59.128750', '0.758792', '-164.202393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411655', 1411655, '-92.954361', '1.786075', '-122.393898', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411656', 1411656, '-93.869904', '1.736482', '-119.067497', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411657', 1411657, '-109.805397', '6.718060', '-150.029800', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411658', 1411658, '-176.756607', '2.961861', '-114.443398', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1411659', 1411659, '-205.790604', '2.068845', '-61.951530', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412058', 1412058, '-196.154800', '1.939114', '-25.589430', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412059', 1412059, '-163.822601', '0.087921', '-11.411790', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412062', 1412062, '71.492859', '-11.893120', '161.389404', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412463', 1412463, '107.728401', '-8.259025', '159.304703', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412464', 1412464, '108.796501', '-7.985859', '156.375000', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412465', 1412465, '45.309830', '-13.145570', '164.612595', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412467', 1412467, '86.263412', '-10.238450', '166.918396', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412470', 1412470, '43.860840', '-19.453880', '194.128098', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412471', 1412471, '40.686970', '-20.436541', '199.194107', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412474', 1412474, '83.274986', '-19.705959', '207.342194', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412475', 1412475, '56.498798', '-24.125010', '265.742401', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412476', 1412476, '56.595661', '-23.666790', '269.184387', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127288, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412477', 1412477, '67.313408', '-23.280479', '279.101715', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412478', 1412478, '130.256897', '-28.458679', '285.610504', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412480', 1412480, '84.874817', '-11.151300', '170.539902', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412482', 1412482, '48.863239', '-15.723400', '175.131393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412483', 1412483, '91.596550', '-15.216650', '191.087204', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412484', 1412484, '40.536888', '-24.919319', '239.885193', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125674, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412486', 1412486, '12.541730', '-30.409491', '274.885712', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125402, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412488', 1412488, '84.885887', '-24.795959', '238.330597', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125130, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412489', 1412489, '100.537003', '-25.090691', '289.606689', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412890', 1412890, '192.974106', '-32.093040', '371.993805', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412891', 1412891, '174.770096', '-30.985760', '392.154999', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412892', 1412892, '169.164200', '-29.940310', '393.395111', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412893', 1412893, '172.161407', '-30.924379', '389.056885', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412894', 1412894, '171.285507', '-29.285271', '402.230988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412895', 1412895, '154.779907', '-26.129629', '405.514008', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412896', 1412896, '168.913696', '-28.561871', '440.527588', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412897', 1412897, '173.811401', '-24.163700', '462.640015', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412898', 1412898, '172.581100', '-23.212021', '466.157715', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412900', 1412900, '157.804596', '-31.533340', '347.603088', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122138, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412901', 1412901, '181.335403', '-32.472290', '364.442596', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121866, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412902', 1412902, '173.037506', '-29.813890', '400.369385', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121594, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412903', 1412903, '215.503098', '-32.150810', '397.756897', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121322, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412904', 1412904, '151.140594', '-25.314760', '448.172699', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121050, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1412905', 1412905, '174.771194', '-22.925610', '465.693207', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413304', 1413304, '-10.375770', '-30.070101', '357.174011', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120482, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1413305', 1413305, '-73.187973', '-29.638651', '377.182007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120210, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1413306', 1413306, '7.099501', '-28.323009', '389.698700', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119938, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1413307', 1413307, '-25.474409', '-30.239300', '288.173004', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413309', 1413309, '2.871708', '-26.996679', '314.962891', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413310', 1413310, '-43.682961', '-31.251160', '365.171295', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413311', 1413311, '-60.904331', '-32.109970', '348.252411', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413312', 1413312, '-26.264040', '-32.967579', '411.424805', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413711', 1413711, '1.843092', '-32.621689', '440.420288', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413712', 1413712, '-47.684052', '-34.975368', '436.820007', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413713', 1413713, '-62.874069', '-35.826691', '451.367706', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413714', 1413714, '-36.040771', '-30.235821', '405.258087', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413715', 1413715, '-77.531143', '-35.740108', '463.920013', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413716', 1413716, '-81.834183', '-35.561951', '465.537415', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413717', 1413717, '-81.132263', '-36.687901', '482.108704', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413718', 1413718, '-64.000313', '-36.181229', '492.846497', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413719', 1413719, '-45.209900', '-36.768280', '469.442810', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413721', 1413721, '-49.479870', '-31.658331', '420.700195', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115864, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413723', 1413723, '-61.146591', '-34.546021', '439.197601', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413724', 1413724, '-12.636190', '-34.818890', '433.701904', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413725', 1413725, '-21.261789', '-35.776421', '463.813293', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1413726', 1413726, '-80.766037', '-35.860481', '467.917786', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1414923', 1414923, '-251.624496', '8.046767', '9.209213', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1414924', 1414924, '-237.355103', '14.172800', '56.681469', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1414925', 1414925, '-240.865097', '13.064570', '51.144550', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1414928', 1414928, '-261.738007', '16.472500', '59.800060', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1414929', 1414929, '-271.273499', '19.264000', '95.431259', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1414931', 1414931, '-299.224915', '20.999870', '171.197403', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1414932', 1414932, '-335.657013', '21.199930', '166.262405', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1414935', 1414935, '-333.186493', '21.314899', '161.005798', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1414936', 1414936, '-351.155914', '21.194731', '192.767197', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1414938', 1414938, '-239.843002', '7.295271', '0.194433', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1415337', 1415337, '-263.631592', '17.193020', '61.247459', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1415339', 1415339, '-340.596497', '21.199930', '161.368500', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1415340', 1415340, '-332.306000', '21.000000', '208.378098', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1415341', 1415341, '-328.043915', '21.000000', '211.118393', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1415342', 1415342, '-292.652802', '20.981110', '203.265396', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1415343', 1415343, '-87.174072', '-39.921982', '291.489105', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110436, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1415344', 1415344, '-112.985397', '-40.020420', '312.799713', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110164, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1415345', 1415345, '-86.737244', '-40.184792', '302.023285', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109892, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1415346', 1415346, '-116.616600', '-40.014709', '309.506805', 20, 0, 0, 0, 1, 6, 0, 0, 20, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1415347', 1415347, '-244.678497', '66.147812', '-179.125702', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93086, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1415348', 1415348, '-241.352005', '66.788689', '-178.362701', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92814, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1415352', 1415352, '-351.735809', '67.765259', '-226.093002', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1415353', 1415353, '-354.085602', '67.313278', '-222.043106', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1415354', 1415354, '-354.115387', '66.529556', '-254.235596', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1415358', 1415358, '-429.221008', '60.624039', '-145.159103', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1415359', 1415359, '-431.571014', '61.023251', '-141.100204', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67294, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1415360', 1415360, '-409.323303', '61.264919', '-120.927803', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1415361', 1415361, '-290.298706', '60.229500', '-115.695396', 48, 0, 0, 0, 1, 6, 0, 0, 48, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92542, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1415364', 1415364, '-313.710297', '62.882381', '-46.982571', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1415365', 1415365, '-308.186493', '62.943420', '-50.370079', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72208, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1415367', 1415367, '-304.768494', '62.180470', '-99.076874', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72480, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1415368', 1415368, '-275.257507', '60.807152', '-84.214577', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71664, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1415375', 1415375, '-262.012695', '62.577202', '-39.993938', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1415376', 1415376, '-417.990387', '64.377762', '-51.102509', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1415377', 1415377, '-416.159302', '65.476410', '-55.924358', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1415378', 1415378, '-446.097504', '57.907940', '-22.476589', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1415379', 1415379, '-454.154297', '61.631142', '-28.213980', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1415381', 1415381, '-285.852814', '61.458679', '25.148211', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73562, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1415382', 1415382, '-414.267212', '60.471451', '-98.405472', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1415383', 1415383, '-462.152802', '62.699409', '-106.490501', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1415384', 1415384, '-465.866913', '62.824699', '-107.035797', 53, 0, 0, 0, 1, 6, 0, 0, 130, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1416355', 1416355, '184.649399', '-7.461709', '-54.703640', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 173518, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc1418012', 1418012, '397.388092', '18.876289', '87.758537', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149848, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc1418013', 1418013, '272.692596', '-2.411928', '61.854092', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150120, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154901', 2154901, '-288.593994', '59.581390', '-121.735901', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64604, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2154903', 2154903, '-303.822388', '59.830570', '-130.571503', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2154910', 2154910, '-290.943787', '61.814331', '-175.341400', 2267, 0, 0, 0, 1, 6, 0, 0, 2190, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64876, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2154912', 2154912, '-384.725800', '64.377808', '-230.792694', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2154914', 2154914, '-416.247894', '61.594559', '-135.801102', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2154915', 2154915, '-397.116089', '56.778770', '-87.632607', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2154916', 2154916, '-408.031494', '53.104481', '35.133572', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2154917', 2154917, '-274.891388', '62.760250', '-48.600040', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2154925', 2154925, '-365.255188', '56.015820', '61.905800', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2154932', 2154932, '-452.140106', '63.523258', '-235.614594', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92276, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154933', 2154933, '-486.564514', '58.060532', '-222.186707', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92004, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154938', 2154938, '-449.027313', '55.863232', '-205.401703', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91732, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154939', 2154939, '-453.788086', '56.259960', '-203.845306', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91460, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154940', 2154940, '-449.607086', '55.100281', '-200.518799', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91188, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154941', 2154941, '-459.128693', '64.652428', '-264.026886', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154943', 2154943, '-483.543213', '58.182598', '-215.136993', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90112, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154944', 2154944, '-488.316101', '67.415604', '-265.598907', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89846, 1, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(320, 'e0077', 'bnpc2154945', 2154945, '-487.007385', '67.617432', '-267.616608', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90916, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154950', 2154950, '-508.114197', '73.937157', '-289.616486', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89030, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154952', 2154952, '-505.210999', '72.800743', '-287.708893', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154954', 2154954, '-475.800293', '75.099243', '-316.311890', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88486, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154959', 2154959, '-474.076904', '71.450668', '-300.198914', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89574, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154963', 2154963, '-481.180389', '74.270866', '-319.393005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88752, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154965', 2154965, '-509.328613', '51.460609', '-230.011002', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154966', 2154966, '-530.510376', '48.020088', '-245.654999', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87670, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154968', 2154968, '-550.774414', '46.775639', '-245.014099', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87392, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154969', 2154969, '-546.684998', '46.860470', '-244.251205', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154970', 2154970, '-545.647400', '50.522579', '-203.540100', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154971', 2154971, '-547.356384', '51.163448', '-199.786407', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154973', 2154973, '-572.310486', '49.567921', '-226.453506', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90644, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154974', 2154974, '-564.080322', '50.297001', '-211.993607', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154976', 2154976, '-508.251099', '57.374981', '-255.303207', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154978', 2154978, '-533.645081', '43.546291', '-230.397507', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87936, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2154980', 2154980, '-468.316010', '57.494301', '-212.252502', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2154982', 2154982, '-485.247803', '68.405968', '-274.754211', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2154983', 2154983, '-505.135406', '73.043167', '-290.313904', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2154985', 2154985, '-528.526672', '48.142170', '-244.495300', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2154986', 2154986, '-568.407227', '50.556568', '-214.304596', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320574', 2320574, '261.921387', '1.753539', '-223.409698', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210786, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320575', 2320575, '261.238495', '0.534709', '-243.419296', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210508, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320576', 2320576, '263.797699', '1.764011', '-223.470901', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 210236, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320577', 2320577, '259.453186', '1.043279', '-240.840607', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209964, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320579', 2320579, '274.919800', '-1.072963', '-256.170593', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209698, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320580', 2320580, '300.060089', '-0.888014', '-307.572510', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209420, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320581', 2320581, '324.245514', '-1.093548', '-288.072113', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 209148, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320582', 2320582, '298.274811', '-0.855762', '-304.993805', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208876, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320583', 2320583, '325.011292', '-1.286943', '-316.835388', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208610, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320584', 2320584, '287.788513', '-0.475198', '-298.277313', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208338, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320585', 2320585, '329.843903', '-0.745502', '-290.159698', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 208060, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320586', 2320586, '325.924103', '-0.928046', '-285.067993', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207788, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320587', 2320587, '327.193207', '-1.286943', '-313.833496', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207522, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320588', 2320588, '337.177185', '0.441468', '-264.191803', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 207250, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320589', 2320589, '332.682892', '0.959346', '-254.439896', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206978, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320590', 2320590, '329.305206', '0.991071', '-252.106293', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206706, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320591', 2320591, '304.253815', '-0.643113', '-258.978912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206428, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320596', 2320596, '346.493591', '-0.483981', '-328.131287', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 206162, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320597', 2320597, '302.790710', '-1.010156', '-352.830505', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205884, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320598', 2320598, '273.957489', '-0.689871', '-328.818512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205618, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320599', 2320599, '268.469910', '-0.593068', '-327.086395', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205346, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320600', 2320600, '267.525513', '-0.806307', '-329.538208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 205074, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320601', 2320601, '276.737091', '0.547026', '-314.840912', 47, 0, 0, 0, 1, 6, 0, 0, 47, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204796, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320610', 2320610, '288.781494', '-1.187131', '-281.665588', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320612', 2320612, '330.290802', '-1.286943', '-344.531311', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 202632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320617', 2320617, '92.850220', '-10.902450', '173.235596', 22, 0, 0, 0, 1, 6, 0, 0, 22, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320637', 2320637, '-108.605698', '-30.528610', '272.296295', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320638', 2320638, '-138.649902', '-23.382610', '264.698212', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320639', 2320639, '-99.474327', '-30.263571', '271.854614', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320641', 2320641, '-170.286606', '-27.619471', '297.813995', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320642', 2320642, '-171.781998', '-27.505461', '288.445007', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320643', 2320643, '-165.769897', '-27.707670', '293.053192', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320645', 2320645, '-125.383400', '-25.040100', '360.402802', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320646', 2320646, '-137.475906', '-27.672729', '336.516113', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320647', 2320647, '-141.819901', '-30.193661', '309.942688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320649', 2320649, '-59.102539', '-28.549570', '296.388702', 10, 0, 0, 0, 1, 6, 0, 0, 10, 0, '0.000000', 12, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320650', 2320650, '277.147400', '-31.644880', '389.827209', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320651', 2320651, '250.690399', '-30.350241', '408.346588', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106362, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320652', 2320652, '274.666290', '-31.273550', '391.993988', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320654', 2320654, '299.640686', '-31.632290', '402.348511', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320655', 2320655, '300.434814', '-32.791679', '411.978302', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320656', 2320656, '342.732788', '-31.784590', '408.346588', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320658', 2320658, '308.735687', '-32.272881', '398.214600', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320659', 2320659, '329.910309', '-31.601860', '408.307800', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320660', 2320660, '332.175415', '-31.647480', '410.657013', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320661', 2320661, '344.838593', '-31.113190', '440.115906', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320664', 2320664, '144.316299', '-22.573250', '513.925293', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320665', 2320665, '141.166702', '-21.478600', '518.533508', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320666', 2320666, '165.008896', '-23.196131', '497.355591', 39, 0, 0, 0, 1, 6, 0, 0, 39, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320667', 2320667, '137.956802', '-21.858990', '489.646698', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103642, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320668', 2320668, '130.324295', '-19.810080', '417.345490', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103370, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320669', 2320669, '98.407799', '-20.697760', '221.536407', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103098, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320671', 2320671, '97.314743', '-11.800020', '101.237198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 168102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320675', 2320675, '135.972794', '-11.800140', '133.207794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320678', 2320678, '185.468796', '-11.800210', '106.268402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320683', 2320683, '188.220001', '-11.825790', '62.851860', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320688', 2320688, '201.678406', '-11.795270', '23.117371', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 167014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320694', 2320694, '260.142914', '-12.002980', '-90.756157', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320695', 2320695, '258.451996', '-12.002920', '-92.319710', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320696', 2320696, '257.085999', '-12.006830', '-154.938705', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 166198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320697', 2320697, '264.474091', '-12.313630', '-187.969193', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320721', 2320721, '396.475098', '20.645411', '107.225098', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159332, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320722', 2320722, '419.413391', '27.114370', '102.443001', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158244, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320725', 2320725, '-159.887802', '18.109520', '-68.195572', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102826, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320727', 2320727, '-170.536102', '27.551260', '-85.891403', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102554, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320728', 2320728, '-170.885803', '27.966640', '-89.178688', 57, 0, 0, 0, 1, 6, 0, 0, 54, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320732', 2320732, '-547.753174', '19.485781', '-191.943298', 30, 0, 0, 0, 2, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63894, 1, 0, 0, 0, 0, 0, 4302234, 0, 0), +(320, 'e0077', 'bnpc2320790', 2320790, '-439.475098', '48.996670', '43.930679', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83330, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320791', 2320791, '-432.144196', '49.318508', '-4.165760', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2320793', 2320793, '-242.034393', '58.664711', '38.845100', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74106, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320794', 2320794, '-206.227997', '57.382519', '52.006420', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73834, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320797', 2320797, '-193.570099', '74.743111', '21.367661', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320800', 2320800, '-238.635895', '62.272018', '25.375710', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2320801', 2320801, '-219.805405', '67.608017', '9.079071', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74378, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2341782', 2341782, '345.014008', '-1.078350', '-177.896896', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165630, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2341783', 2341783, '319.296997', '-0.849605', '-171.347198', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165358, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2341784', 2341784, '292.707397', '-6.651216', '-123.136101', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165086, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2341785', 2341785, '347.310486', '6.679530', '84.092422', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155294, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2341786', 2341786, '354.267487', '5.193762', '60.841671', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155022, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2341787', 2341787, '348.283203', '3.086715', '49.707630', 43, 0, 0, 0, 1, 6, 0, 0, 43, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2603191', 2603191, '256.015594', '-11.793030', '-185.891006', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164850, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2603192', 2603192, '260.232605', '-11.793140', '-180.095505', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164578, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612552', 2612552, '252.195404', '-11.793090', '-145.885406', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164306, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612553', 2612553, '254.433395', '-11.793010', '-113.328796', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164034, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612554', 2612554, '258.838715', '-11.793140', '-73.879280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163762, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612555', 2612555, '233.580307', '-11.793010', '-18.570280', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163490, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612556', 2612556, '216.695099', '-11.793000', '8.959249', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163218, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612557', 2612557, '212.512299', '-11.795270', '12.741240', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162946, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612559', 2612559, '120.048798', '-11.800060', '124.326401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162680, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612561', 2612561, '191.515900', '-11.856310', '51.102409', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162408, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612562', 2612562, '189.768997', '-11.800210', '71.478256', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162136, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612563', 2612563, '192.239395', '-11.800030', '91.385788', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161864, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612564', 2612564, '179.480606', '-11.800260', '106.735802', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161592, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612565', 2612565, '165.069794', '-11.800630', '119.881798', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161320, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612566', 2612566, '146.988297', '-11.800000', '126.311401', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161048, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612569', 2612569, '132.474792', '-11.800090', '139.979294', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '1.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160776, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612570', 2612570, '250.133804', '-11.793030', '-55.898849', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160498, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612571', 2612571, '205.980301', '-11.772920', '33.134300', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160226, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612573', 2612573, '421.064514', '24.757450', '78.823257', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2612574', 2612574, '428.320709', '31.721590', '124.805603', 14, 0, 0, 0, 1, 6, 0, 0, 195, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157428, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2615184', 2615184, '360.341705', '-32.028728', '435.294006', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101472, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2615186', 2615186, '375.478699', '-32.089771', '448.966095', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2615187', 2615187, '382.955597', '-31.998211', '440.878815', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc2615503', 2615503, '253.211594', '-11.793080', '-161.360504', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154514, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc2615504', 2615504, '253.937607', '-11.793030', '-68.861298', 160, 0, 0, 0, 1, 6, 0, 0, 196, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154242, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3693097', 3693097, '-224.085602', '1.055553', '-69.316994', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97132, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(320, 'e0077', 'bnpc3693102', 3693102, '-195.941101', '2.945007', '-104.081802', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96860, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(320, 'e0077', 'bnpc3693103', 3693103, '-189.283005', '2.362727', '-83.005783', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97404, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(320, 'e0077', 'bnpc3693105', 3693105, '-210.620300', '1.998901', '-96.299683', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95500, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(320, 'e0077', 'bnpc3693109', 3693109, '-195.513901', '2.216981', '-40.186169', 771, 0, 0, 0, 0, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95228, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(320, 'e0077', 'bnpc3693111', 3693111, '-200.096695', '2.060742', '-67.256340', 771, 0, 0, 0, 1, 6, 0, 0, 218, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(320, 'e0077', 'bnpc3693121', 3693121, '368.459503', '-32.364429', '413.199005', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3693136', 3693136, '242.206406', '-30.411280', '402.182007', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3693138', 3693138, '225.451996', '-28.488640', '423.605713', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3693140', 3693140, '215.350494', '-32.486500', '387.777496', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3693173', 3693173, '-508.842590', '40.237991', '-79.606361', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3693174', 3693174, '-516.899414', '40.146439', '-74.967621', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3693175', 3693175, '-514.549500', '40.207470', '-77.103882', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85228, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3693176', 3693176, '-520.866821', '40.146439', '-64.255783', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3693177', 3693177, '-515.685120', '40.359970', '-54.677021', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3693178', 3693178, '-503.929199', '41.000938', '-56.107471', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3693179', 3693179, '-483.658691', '45.245129', '-60.343559', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3693180', 3693180, '-481.533905', '45.933941', '-62.817669', 305, 0, 0, 0, 1, 6, 0, 0, 236, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3693183', 3693183, '-378.957794', '51.132931', '52.109509', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3693184', 3693184, '-397.512787', '49.301849', '10.055650', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3693185', 3693185, '-433.121094', '49.318531', '34.558170', 304, 0, 0, 0, 1, 6, 0, 0, 238, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3693188', 3693188, '-322.396393', '57.338970', '-6.726664', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65686, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3693623', 3693623, '-184.619797', '78.429970', '42.778721', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3693624', 3693624, '-191.994202', '77.183746', '37.510250', 58, 0, 0, 0, 1, 6, 0, 0, 55, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72746, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3694403', 3694403, '-314.266113', '63.832611', '57.746510', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3742079', 3742079, '-530.733887', '65.311684', '98.466423', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3742133', 3742133, '-526.186829', '65.311691', '102.647400', 182, 0, 0, 0, 1, 6, 0, 0, 207, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3742194', 3742194, '48.050610', '-11.800030', '-40.915428', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153976, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3742195', 3742195, '22.187790', '-11.800000', '-69.750504', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153704, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3742196', 3742196, '15.168640', '-11.800000', '-75.762558', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153432, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3742197', 3742197, '6.348711', '-11.800040', '-110.540199', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153160, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3742198', 3742198, '-54.153049', '-3.500003', '-186.530106', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152888, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3742199', 3742199, '-50.919399', '-3.500001', '-182.895996', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152616, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3742200', 3742200, '-69.779549', '-3.500144', '-196.820496', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152344, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3742201', 3742201, '-62.272110', '-3.500066', '-207.843399', 159, 0, 0, 0, 1, 6, 0, 0, 197, 0, '0.000000', 7, 2, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152072, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3742202', 3742202, '2.735321', '-11.800110', '-122.937599', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151782, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3742203', 3742203, '-6.886642', '-3.500000', '-135.990402', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151510, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3742204', 3742204, '-6.586641', '-3.500000', '-139.267899', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151238, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3742205', 3742205, '-36.719379', '-3.500000', '-180.416794', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150966, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3742206', 3742206, '-48.687111', '-3.500072', '-207.096298', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150694, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3746465', 3746465, '-208.691696', '52.495350', '-42.669102', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71120, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3746466', 3746466, '-219.824799', '58.286751', '-60.483898', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70848, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3746467', 3746467, '-215.491898', '57.635231', '-71.491089', 178, 0, 0, 0, 1, 6, 0, 0, 221, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70576, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3869502', 3869502, '125.699600', '25.160120', '-311.621185', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41108, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(320, 'e0077', 'bnpc3869509', 3869509, '-307.502899', '63.448620', '-285.687714', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40842, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(320, 'e0077', 'bnpc3869525', 3869525, '-206.130997', '53.564651', '-126.977600', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40564, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(320, 'e0077', 'bnpc3869531', 3869531, '96.403351', '-6.334397', '-121.433502', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40298, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(320, 'e0077', 'bnpc3869540', 3869540, '164.007095', '-6.013201', '-52.486290', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.750000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40020, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(320, 'e0077', 'bnpc3869598', 3869598, '-4.837158', '-7.919495', '-22.201900', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39760, 5, 0, 20, 0, 0, 30055, 0, 0, 0), +(320, 'e0077', 'bnpc3869604', 3869604, '85.465698', '-6.089244', '60.991131', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39482, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(320, 'e0077', 'bnpc3869607', 3869607, '14.362120', '-8.102512', '100.498901', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39204, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(320, 'e0077', 'bnpc3877513', 3877513, '121.019203', '24.917931', '-304.463287', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204518, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc3884907', 3884907, '-419.228607', '55.416000', '66.506737', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65940, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3897658', 3897658, '117.021400', '25.101040', '-311.604492', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 204258, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc3898007', 3898007, '132.524597', '24.948450', '-305.562012', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 203974, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc4083772', 4083772, '-327.757690', '21.357790', '204.228699', 58, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 5782, 1, 0, 0, 0, 0, 0, 4083771, 0, 0), +(320, 'e0077', 'bnpc4083778', 4083778, '-297.044800', '21.140360', '151.049896', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 8174, 1, 0, 0, 0, 0, 0, 4083775, 0, 0), +(320, 'e0077', 'bnpc4083795', 4083795, '-327.840088', '21.103210', '206.835907', 58, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6054, 1, 0, 0, 0, 0, 0, 4083794, 0, 0), +(320, 'e0077', 'bnpc4083796', 4083796, '-296.744812', '21.145109', '151.349899', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7662, 1, 0, 0, 0, 0, 0, 4083797, 0, 0), +(320, 'e0077', 'bnpc4083798', 4083798, '-296.444794', '21.149870', '151.649902', 56, 0, 0, 0, 5, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 7278, 1, 0, 0, 0, 0, 0, 4083799, 0, 0), +(320, 'e0077', 'bnpc4083800', 4083800, '-296.144806', '21.154619', '151.949905', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6894, 1, 0, 0, 0, 0, 0, 4083801, 0, 0), +(320, 'e0077', 'bnpc4083802', 4083802, '-295.844788', '21.159370', '152.249893', 56, 0, 0, 0, 6, 6, 0, 0, 0, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 6510, 1, 0, 0, 0, 0, 0, 4083803, 0, 0), +(320, 'e0077', 'bnpc4083871', 4083871, '127.641701', '-6.332520', '-100.389198', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38544, 8, 0, 0, 4295658, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4295672', 4295672, '132.951797', '-6.332520', '-100.114502', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37512, 8, 0, 0, 4295661, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4295673', 4295673, '137.910706', '-6.438695', '-96.608414', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37240, 8, 0, 0, 4295662, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4295675', 4295675, '126.695297', '-6.948534', '-90.459633', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36968, 8, 0, 0, 4295663, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4295677', 4295677, '126.418900', '-6.971872', '-84.529358', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36696, 8, 0, 0, 4295664, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4296957', 4296957, '95.628906', '-2.029270', '-42.382439', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35816, 1, 0, 0, 2280260, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4296958', 4296958, '98.693558', '-2.029731', '-43.942860', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35544, 1, 0, 0, 2280261, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4296959', 4296959, '101.467598', '-2.005454', '-46.176739', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35272, 1, 0, 0, 2280262, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4296960', 4296960, '104.146896', '-1.968804', '-48.332958', 901, 0, 0, 0, 1, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35000, 1, 0, 0, 2280263, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302206', 4302206, '-555.148071', '29.067560', '-230.785706', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302207', 4302207, '-516.437683', '22.056881', '-221.606796', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302208', 4302208, '-524.244812', '24.477020', '-253.274597', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302209', 4302209, '-527.577820', '24.719191', '-254.932404', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302212', 4302212, '-582.818420', '21.723471', '-238.845596', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302213', 4302213, '-596.266602', '20.622200', '-226.349106', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62184, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302214', 4302214, '-579.272827', '21.076719', '-214.966003', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302215', 4302215, '-581.780823', '21.842831', '-241.897293', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302216', 4302216, '-528.772888', '19.922779', '-195.839096', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61374, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302217', 4302217, '-537.197327', '20.139130', '-199.348495', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302218', 4302218, '-563.208191', '18.867491', '-186.546005', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302219', 4302219, '-527.765808', '20.129919', '-200.682007', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302220', 4302220, '-569.817627', '10.940670', '-130.235794', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302221', 4302221, '-617.120605', '21.896610', '-197.436493', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60008, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302222', 4302222, '-575.432983', '11.001710', '-129.716995', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302223', 4302223, '-568.810608', '10.910160', '-133.318100', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302225', 4302225, '-502.711792', '17.279470', '-157.029495', 100, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59204, 1, 0, 0, 0, 33, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302226', 4302226, '-496.089386', '16.799740', '-160.630707', 99, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58938, 1, 0, 0, 0, 33, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(320, 'e0077', 'bnpc4302228', 4302228, '-481.979004', '18.189381', '-229.549103', 98, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302229', 4302229, '-555.941528', '25.463579', '-260.210693', 101, 0, 0, 0, 1, 6, 0, 0, 91, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4302351', 4302351, '-572.925293', '18.257090', '-181.740707', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57718, 1, 0, 0, 0, 0, 0, 4302260, 0, 0), +(320, 'e0077', 'bnpc4302353', 4302353, '-513.667175', '23.842480', '-245.333893', 30, 0, 0, 0, 5, 6, 0, 0, 131, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57446, 1, 0, 0, 0, 0, 0, 4302268, 0, 0), +(320, 'e0077', 'bnpc4333043', 4333043, '-309.205597', '57.338970', '-10.110600', 2193, 0, 0, 0, 1, 6, 0, 0, 2057, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 4, 1, 0, 0, 0, 30246, 0, 0, 0), +(320, 'e0077', 'bnpc4333385', 4333385, '-348.321503', '67.616417', '-233.774200', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65124, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4510293', 4510293, '213.253204', '-32.025242', '324.145386', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38950, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(320, 'e0077', 'bnpc4621046', 4621046, '370.051086', '-32.295422', '411.821198', 2770, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42124, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(320, 'e0077', 'bnpc4621047', 4621047, '-538.803589', '50.907551', '-203.075394', 2772, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41858, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143752', 1143752, '468.733612', '-3.633345', '230.358597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161672, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143755', 1143755, '465.781586', '-3.677471', '229.602402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161400, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143766', 1143766, '444.779510', '-3.136452', '238.420898', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128760, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143773', 1143773, '465.263000', '-2.447129', '258.256592', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161128, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143778', 1143778, '428.447205', '-1.594615', '201.428604', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160856, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143785', 1143785, '418.397888', '-1.449695', '197.651093', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160584, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143787', 1143787, '419.881805', '-4.161774', '286.077789', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160312, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143790', 1143790, '437.705414', '-3.238991', '267.530212', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160040, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143793', 1143793, '423.775085', '-3.337628', '259.160889', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159768, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143797', 1143797, '424.763611', '-3.434183', '264.063385', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159496, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143811', 1143811, '449.264099', '-2.694139', '278.273193', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159224, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143813', 1143813, '447.361511', '-2.361451', '283.012695', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158952, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143833', 1143833, '324.665100', '-5.350893', '263.034088', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158680, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143834', 1143834, '326.416687', '-5.326731', '264.652008', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158408, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143836', 1143836, '228.076508', '-27.969830', '314.808807', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158142, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143844', 1143844, '226.947403', '-28.244499', '321.583801', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157870, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143846', 1143846, '232.074402', '-27.023769', '316.945099', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157598, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143852', 1143852, '245.166595', '-23.941450', '329.304901', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157326, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143853', 1143853, '243.701797', '-24.673880', '332.020996', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157054, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143858', 1143858, '238.841797', '-23.981850', '361.571594', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156782, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143859', 1143859, '234.742996', '-25.153990', '359.183594', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156510, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143860', 1143860, '184.706299', '-37.785229', '360.952393', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156238, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143861', 1143861, '217.364700', '-28.025049', '344.838593', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143862', 1143862, '218.412994', '-28.201860', '349.321411', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155966, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143865', 1143865, '215.228394', '-28.379271', '347.279999', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155694, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143866', 1143866, '185.345001', '-32.188919', '312.603790', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155422, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143868', 1143868, '188.006302', '-32.639091', '314.137390', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155150, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143873', 1143873, '209.412994', '-25.172079', '366.151306', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154878, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143875', 1143875, '178.562500', '-38.966068', '338.296814', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154606, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143876', 1143876, '144.823303', '-31.479410', '305.622894', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154334, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143877', 1143877, '146.196594', '-30.899561', '302.754211', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154062, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143878', 1143878, '152.851395', '-42.255760', '352.426392', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153790, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143879', 1143879, '149.193604', '-43.619991', '356.343506', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153518, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143881', 1143881, '158.525894', '-36.057110', '323.933685', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153246, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143882', 1143882, '163.927597', '-36.881100', '326.466705', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152974, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143885', 1143885, '159.594101', '-36.820061', '328.267303', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152702, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143886', 1143886, '172.482895', '-27.390930', '279.472900', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152430, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143887', 1143887, '176.999496', '-26.747681', '281.731201', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152158, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143889', 1143889, '171.282501', '-27.115330', '283.741486', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151886, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143891', 1143891, '197.201508', '-28.186390', '271.644287', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151614, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143892', 1143892, '200.589005', '-27.467010', '274.696106', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151342, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143895', 1143895, '197.110001', '-27.467581', '277.015503', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151070, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143897', 1143897, '246.082199', '-21.335920', '271.557007', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150798, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143900', 1143900, '229.912994', '-24.472389', '284.220306', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150526, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143904', 1143904, '243.488205', '-22.337280', '276.104187', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150254, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143905', 1143905, '237.018402', '-23.084021', '269.268188', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149982, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143907', 1143907, '242.685898', '-23.822359', '245.136795', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149710, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143911', 1143911, '224.510498', '-25.336050', '241.230103', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149438, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143915', 1143915, '241.148895', '-25.036400', '235.342697', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149166, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143916', 1143916, '236.107697', '-26.824610', '216.055893', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148894, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143919', 1143919, '246.995605', '-24.468109', '240.298096', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146718, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143920', 1143920, '265.723907', '-25.564400', '226.344604', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148622, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143921', 1143921, '265.719299', '-26.269621', '219.037994', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148350, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143923', 1143923, '268.421387', '-21.408449', '246.509399', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148078, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143924', 1143924, '264.054688', '-19.323090', '252.478806', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147806, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143925', 1143925, '295.377899', '-18.290230', '266.437103', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147534, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1143934', 1143934, '316.585999', '-16.832951', '187.871704', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143935', 1143935, '314.021301', '-17.296310', '192.256302', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143936', 1143936, '311.854492', '-17.875420', '189.936905', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143938', 1143938, '283.100586', '-25.497869', '192.706100', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143941', 1143941, '280.262390', '-25.619940', '193.316498', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143944', 1143944, '273.152496', '-20.649960', '128.760193', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110300, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143945', 1143945, '303.365509', '-8.872850', '95.128830', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143946', 1143946, '296.499603', '-11.734670', '103.927902', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109756, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143949', 1143949, '301.016296', '-10.037700', '103.164902', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110028, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143952', 1143952, '274.860687', '-13.992570', '103.746002', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143953', 1143953, '277.363190', '-13.962050', '102.250702', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143962', 1143962, '297.610199', '-23.044500', '220.886002', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143963', 1143963, '309.994110', '-18.136681', '184.117996', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143966', 1143966, '299.197113', '-21.964729', '223.815796', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143969', 1143969, '297.872894', '-12.140140', '107.895203', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143970', 1143970, '276.631500', '-19.656750', '126.440804', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143971', 1143971, '297.779785', '-22.690210', '161.913406', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98332, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143972', 1143972, '371.881592', '-6.723549', '84.641747', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98604, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143973', 1143973, '376.154114', '-6.318017', '85.862457', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97788, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143974', 1143974, '371.085114', '-5.840127', '88.055183', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98060, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143983', 1143983, '419.912994', '-4.654048', '77.439484', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98876, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143984', 1143984, '424.551697', '-3.646953', '81.803574', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99692, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143985', 1143985, '428.493103', '-1.675420', '69.168533', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143987', 1143987, '401.540802', '-6.912460', '58.247761', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143988', 1143988, '403.463715', '-6.369321', '60.898708', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99148, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143989', 1143989, '378.988312', '-7.187046', '68.955467', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99420, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143990', 1143990, '405.752197', '-6.460996', '59.106491', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97516, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143991', 1143991, '387.045013', '-4.837157', '93.705597', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97244, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1143998', 1143998, '390.177887', '-4.509761', '93.888512', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96972, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144003', 1144003, '223.302307', '-22.244350', '140.968201', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91864, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144004', 1144004, '217.578293', '-21.988300', '138.200897', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90504, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144007', 1144007, '185.015701', '-24.153931', '154.465500', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90232, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144008', 1144008, '179.410904', '-23.832951', '152.981903', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91592, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144009', 1144009, '167.197998', '-27.995230', '192.997803', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91320, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144011', 1144011, '177.798798', '-24.733610', '159.351395', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91048, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144015', 1144015, '138.902802', '-27.603621', '237.109894', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92680, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144017', 1144017, '88.530487', '-27.058380', '290.765411', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92136, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144019', 1144019, '84.896217', '-28.451370', '271.261688', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92408, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144027', 1144027, '-15.138880', '-52.068508', '438.953705', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144028', 1144028, '-12.361740', '-51.361629', '435.444214', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73126, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144030', 1144030, '-9.676152', '-51.078831', '436.725891', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144031', 1144031, '-21.414761', '-45.509689', '411.041412', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70950, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144042', 1144042, '9.536865', '-48.508480', '474.235107', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67964, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144043', 1144043, '3.205714', '-47.435299', '471.491486', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67420, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144045', 1144045, '-11.876680', '-52.218342', '458.182587', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68236, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144047', 1144047, '-30.001869', '-55.355400', '500.188385', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71222, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144049', 1144049, '-35.678230', '-53.471958', '498.265686', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144050', 1144050, '-16.922300', '-53.971210', '467.582214', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144051', 1144051, '-30.825859', '-54.086170', '495.671692', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144066', 1144066, '-215.322098', '-30.287540', '345.076813', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144067', 1144067, '-217.336304', '-30.232090', '345.381989', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72582, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144068', 1144068, '-241.359406', '-30.546400', '355.281891', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72854, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144074', 1144074, '-187.557999', '-30.827459', '327.431396', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144076', 1144076, '-189.083893', '-30.732161', '329.140411', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144079', 1144079, '-207.943893', '-30.040119', '327.783203', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144085', 1144085, '-207.568497', '-30.624901', '298.084900', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71494, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144088', 1144088, '-217.678604', '-29.217609', '281.772491', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144089', 1144089, '-232.330093', '-26.492390', '293.040802', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144090', 1144090, '-230.365494', '-26.618240', '295.168701', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144095', 1144095, '-236.490906', '-26.792789', '270.853088', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144102', 1144102, '-269.982300', '-15.041580', '257.233795', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88056, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144103', 1144103, '-256.205414', '-24.029810', '238.507599', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88328, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144108', 1144108, '-250.331604', '-26.539511', '245.353897', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87512, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144111', 1144111, '-247.374802', '-26.295010', '199.152298', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87784, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144115', 1144115, '-145.718704', '-44.456711', '245.994507', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89144, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144117', 1144117, '-194.954300', '-56.667259', '298.548615', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89688, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144124', 1144124, '-88.115013', '-50.887539', '355.110413', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144132', 1144132, '-180.289703', '-58.090000', '341.292908', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144134', 1144134, '-173.453705', '-58.488270', '346.267395', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144136', 1144136, '-248.384903', '-70.863403', '400.043610', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144155', 1144155, '-265.522308', '-78.660339', '495.811401', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64452, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1144156', 1144156, '94.651657', '-28.693371', '205.296204', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52672, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144157', 1144157, '58.451691', '-24.165310', '201.325806', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144161', 1144161, '142.662994', '-27.379681', '171.947693', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51584, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144163', 1144163, '72.983849', '-14.541890', '160.479095', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53216, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144165', 1144165, '28.954960', '-9.060006', '115.734299', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53760, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144166', 1144166, '62.516159', '-10.939160', '113.847504', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53488, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144167', 1144167, '33.890240', '-7.635654', '75.669441', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1144171', 1144171, '38.681568', '-7.743955', '37.247219', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1145781', 1145781, '314.148712', '-9.873041', '137.315598', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1145783', 1145783, '316.563904', '-11.553430', '155.556900', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102140, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1145785', 1145785, '310.839111', '-10.058590', '146.018997', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101868, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1145786', 1145786, '335.961487', '-6.303717', '151.505005', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1145792', 1145792, '334.663391', '-4.191054', '173.662903', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1145794', 1145794, '342.177307', '-3.911723', '174.273193', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100780, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1145797', 1145797, '356.749786', '-1.121761', '182.588501', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368415', 1368415, '451.260101', '-3.443870', '238.795807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147256, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1368437', 1368437, '390.890289', '-7.586338', '269.886292', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146984, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1368491', 1368491, '313.954803', '-6.875740', '27.206791', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368493', 1368493, '318.414001', '-7.856604', '-8.765156', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368494', 1368494, '337.636292', '-5.691662', '26.687981', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368495', 1368495, '360.321503', '-3.134459', '15.892390', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368496', 1368496, '364.258301', '-3.572027', '19.096781', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368497', 1368497, '353.728394', '-5.753780', '25.100679', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368498', 1368498, '321.866913', '-7.314247', '-15.243810', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114918, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368499', 1368499, '317.799591', '-6.363059', '23.605659', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114646, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368501', 1368501, '310.197205', '-8.609804', '2.999502', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368502', 1368502, '307.043396', '-8.701551', '-1.767205', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114374, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368503', 1368503, '307.209808', '-7.736371', '-25.314760', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368506', 1368506, '279.991913', '-7.195922', '-25.793631', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368507', 1368507, '275.332886', '-6.079346', '-51.364719', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117366, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368508', 1368508, '268.817902', '-7.622407', '-26.344280', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368509', 1368509, '276.584106', '-5.971716', '-40.277569', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368513', 1368513, '273.210785', '-9.038651', '1.056271', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368515', 1368515, '271.523804', '-11.769340', '30.395180', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368516', 1368516, '255.359695', '-9.109683', '4.562400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368517', 1368517, '251.891006', '-8.924417', '10.996560', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368519', 1368519, '238.113907', '-10.699850', '39.986820', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368520', 1368520, '236.666702', '-11.041180', '47.762650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368521', 1368521, '216.099899', '-5.217842', '15.486120', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368522', 1368522, '219.648102', '-5.708765', '19.837851', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368527', 1368527, '226.886307', '-11.459570', '69.291168', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368528', 1368528, '232.117203', '-11.721460', '66.985252', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368530', 1368530, '217.647400', '-9.632435', '55.535179', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368531', 1368531, '262.570892', '-13.984700', '50.050228', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368532', 1368532, '253.925293', '-13.748430', '50.339458', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368537', 1368537, '36.721581', '-13.599010', '-35.811329', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368539', 1368539, '45.805561', '-2.063314', '-62.499821', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368540', 1368540, '43.942150', '-1.029362', '-68.421707', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368542', 1368542, '19.448151', '-0.446853', '-89.062424', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368546', 1368546, '57.928291', '9.733817', '-102.176399', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48054, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368548', 1368548, '55.925640', '6.821295', '-37.389530', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48326, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368554', 1368554, '68.129494', '7.053471', '-60.042889', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49142, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368555', 1368555, '94.406288', '8.411647', '-78.379066', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48598, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368556', 1368556, '145.311600', '6.469276', '-59.126930', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48870, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368560', 1368560, '117.309502', '6.760285', '-52.052681', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368561', 1368561, '160.460007', '3.641483', '-40.868118', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368562', 1368562, '-193.135696', '-32.369289', '261.702515', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368569', 1368569, '-19.247980', '-45.409012', '412.262085', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368570', 1368570, '-46.799500', '-47.531921', '426.291290', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368571', 1368571, '-36.310310', '-47.774849', '409.386902', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368577', 1368577, '354.033691', '-1.282395', '183.656601', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122256, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368578', 1368578, '338.217590', '-3.919866', '175.769104', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123072, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368579', 1368579, '320.962494', '-8.541780', '134.309296', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119264, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368580', 1368580, '311.398987', '-9.954162', '140.459198', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123344, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368582', 1368582, '313.089508', '-17.740789', '185.998001', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118176, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368583', 1368583, '274.723297', '-26.291660', '183.940598', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124160, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368584', 1368584, '304.162506', '-21.746981', '213.237000', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122800, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368587', 1368587, '273.532806', '-13.660890', '101.165001', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124976, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368590', 1368590, '303.309204', '-10.197260', '107.375298', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121984, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368591', 1368591, '372.633514', '-5.472790', '90.196060', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123888, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368594', 1368594, '376.821503', '-7.339636', '68.955467', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123616, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368596', 1368596, '410.155609', '-6.183658', '55.648460', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121440, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368597', 1368597, '412.797699', '-4.115298', '93.821388', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121168, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368598', 1368598, '362.752686', '-7.221369', '55.588570', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120624, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368600', 1368600, '330.403503', '-5.478035', '19.729870', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120080, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368601', 1368601, '340.436401', '-5.850005', '23.485689', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118720, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368602', 1368602, '334.164093', '-4.736384', '-1.168072', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120352, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368604', 1368604, '280.384491', '-6.088397', '-46.768951', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121712, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368605', 1368605, '246.078796', '-5.873863', '-10.449420', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122528, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368606', 1368606, '275.931305', '-10.226560', '7.661325', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118448, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368607', 1368607, '279.562286', '-10.758130', '40.909191', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118992, 6, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(321, 'e0078', 'bnpc1368608', 1368608, '281.362915', '-10.660460', '38.721069', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119536, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368610', 1368610, '219.226303', '-10.849210', '70.298264', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125792, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368612', 1368612, '233.086899', '-9.948204', '40.259239', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124432, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368613', 1368613, '213.180206', '-3.941148', '-4.296664', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124704, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368614', 1368614, '207.285202', '-5.140594', '20.525330', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119808, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368616', 1368616, '239.936707', '-7.773538', '10.082270', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125520, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1368727', 1368727, '278.431305', '-15.600310', '291.462494', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1368728', 1368728, '265.339111', '-16.501490', '289.234711', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1369057', 1369057, '450.064789', '-3.280736', '237.567703', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145908, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369058', 1369058, '417.631012', '-3.443490', '258.794006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145636, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369059', 1369059, '431.584900', '-2.734727', '225.736801', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145364, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369060', 1369060, '433.904297', '-2.631201', '225.675797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145092, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369063', 1369063, '420.105713', '-3.826969', '244.376099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144820, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369064', 1369064, '420.595215', '-1.434317', '198.139404', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144548, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369066', 1369066, '420.503693', '-1.383187', '195.789505', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144264, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1369067', 1369067, '327.321198', '-5.054865', '262.409302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144004, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369069', 1369069, '418.255005', '-3.347633', '257.236389', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143720, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1369078', 1369078, '405.129486', '-6.796501', '230.618896', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143448, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1369079', 1369079, '379.850403', '-9.137354', '273.382690', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143188, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369081', 1369081, '282.579498', '-14.737670', '288.410797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142916, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369082', 1369082, '297.790985', '-17.412251', '269.611206', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142644, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369083', 1369083, '268.697693', '-19.984810', '251.224106', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142372, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369084', 1369084, '289.845093', '-14.468090', '305.104095', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142100, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369085', 1369085, '324.574585', '-14.779820', '286.915314', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141828, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369086', 1369086, '329.182800', '-13.956880', '285.480988', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141556, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369087', 1369087, '345.143799', '-11.551130', '289.967102', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141272, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1369088', 1369088, '252.741592', '-21.175320', '288.406799', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141012, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369089', 1369089, '218.890594', '-26.504971', '301.258789', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140740, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369090', 1369090, '219.501007', '-26.810150', '303.212006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140468, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369091', 1369091, '241.351898', '-22.922640', '271.923187', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140196, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369092', 1369092, '194.140503', '-27.267920', '297.596588', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139924, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369093', 1369093, '196.285995', '-27.929461', '274.390991', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139652, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369095', 1369095, '185.564896', '-32.730652', '315.266602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139380, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369096', 1369096, '161.730301', '-36.392811', '324.788208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139108, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369097', 1369097, '167.315094', '-27.481541', '282.978485', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138836, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369098', 1369098, '142.931198', '-30.685940', '303.578186', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138564, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369099', 1369099, '172.080307', '-41.270390', '355.679108', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138292, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369101', 1369101, '217.456299', '-28.130699', '347.341095', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138020, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369102', 1369102, '216.124100', '-28.447210', '349.443512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137748, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369103', 1369103, '185.566101', '-37.807560', '358.326202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137476, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369104', 1369104, '238.333801', '-24.868570', '356.358398', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137204, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369105', 1369105, '230.975800', '-27.237400', '321.187103', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136932, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369109', 1369109, '262.285889', '-26.207680', '223.339996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136660, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369112', 1369112, '226.922302', '-24.500299', '282.846985', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136388, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369113', 1369113, '270.740814', '-25.894609', '219.684097', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136116, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369114', 1369114, '226.555206', '-25.225269', '239.887299', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135844, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369116', 1369116, '282.357086', '-23.535101', '244.795303', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135572, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369121', 1369121, '333.561310', '2.185390', '242.975006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135300, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369126', 1369126, '391.683807', '0.442465', '197.375397', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135016, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1369127', 1369127, '374.291687', '0.069733', '177.932404', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125248, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369128', 1369128, '340.926086', '-4.172237', '171.404495', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103228, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369129', 1369129, '274.308289', '-21.454750', '133.409195', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101052, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369131', 1369131, '284.565399', '-25.650459', '196.215698', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101324, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369135', 1369135, '164.769394', '-24.938990', '163.613800', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92952, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1369136', 1369136, '126.420898', '-26.382891', '167.406693', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369137', 1369137, '128.709793', '-25.925119', '164.324402', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57556, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369138', 1369138, '131.686401', '-24.799540', '198.020599', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369139', 1369139, '74.797401', '-28.214760', '204.149094', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58372, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369140', 1369140, '71.341454', '-16.064501', '165.951599', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57828, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369141', 1369141, '69.103951', '-17.105560', '168.596893', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58100, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369142', 1369142, '48.614868', '-17.861691', '162.486298', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369143', 1369143, '69.590843', '-13.496570', '146.253998', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369146', 1369146, '39.957119', '-8.666501', '105.835701', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369147', 1369147, '52.015511', '-8.974514', '78.552917', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369148', 1369148, '45.149349', '-13.324360', '7.012329', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369149', 1369149, '17.379999', '-13.717900', '-20.370790', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369150', 1369150, '35.561901', '-13.693350', '-33.797138', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369151', 1369151, '44.338890', '-1.270125', '-66.438026', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369152', 1369152, '14.275760', '-0.570236', '-87.355873', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369153', 1369153, '31.780800', '-0.130703', '-85.079163', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369154', 1369154, '64.954559', '6.905480', '-85.581947', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369157', 1369157, '46.957291', '12.114440', '-121.487297', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369160', 1369160, '68.467163', '6.973328', '-53.543949', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369161', 1369161, '82.078217', '7.186952', '-63.706459', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58916, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369162', 1369162, '91.386230', '8.010939', '-78.294083', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58644, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369163', 1369163, '141.008499', '6.515503', '-53.391361', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369166', 1369166, '163.313705', '6.032107', '-46.804680', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369169', 1369169, '-31.436220', '-54.130669', '497.960510', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369174', 1369174, '21.103210', '-49.546139', '475.272614', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369177', 1369177, '-15.233060', '-53.066551', '466.036011', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369180', 1369180, '-48.539001', '-47.348751', '424.643188', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369183', 1369183, '-11.764770', '-51.560242', '438.742706', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369184', 1369184, '-91.746658', '-51.122200', '356.392212', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369185', 1369185, '-89.732468', '-51.292042', '358.650513', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369186', 1369186, '-116.542198', '-54.847111', '366.704803', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369187', 1369187, '-215.533707', '-63.035099', '360.219604', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369188', 1369188, '-179.797104', '-59.525509', '348.256592', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369189', 1369189, '-217.090103', '-64.042107', '364.888885', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369190', 1369190, '-255.542892', '-74.143631', '419.790894', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369191', 1369191, '-297.823914', '-79.049583', '481.552887', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369194', 1369194, '-267.105286', '-78.933182', '492.746185', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369197', 1369197, '-195.056107', '-32.913761', '285.816711', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63370, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369203', 1369203, '-194.417404', '-31.711460', '260.054596', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63914, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369206', 1369206, '-219.511200', '-30.548080', '332.944885', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63642, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369210', 1369210, '-169.922607', '-51.790081', '281.324493', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369225', 1369225, '415.314301', '-4.384437', '279.848297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134484, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369226', 1369226, '417.664215', '-4.268155', '279.787292', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134200, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1369227', 1369227, '416.351898', '-4.344605', '282.320313', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133928, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1369245', 1369245, '106.026802', '-24.064631', '188.681503', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52944, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1369266', 1369266, '110.856796', '6.893584', '-48.683529', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369268', 1369268, '106.950401', '7.553162', '-65.018799', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369270', 1369270, '448.720703', '-3.422734', '241.608597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133656, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1369283', 1369283, '400.411896', '-3.097628', '212.787003', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133396, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1369346', 1369346, '72.281059', '-23.743839', '185.561203', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1373459', 1373459, '443.619507', '-3.181869', '264.612488', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127146, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1373461', 1373461, '448.051788', '-2.900265', '234.756104', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133112, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1373462', 1373462, '416.268707', '-3.808599', '263.633698', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132840, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1373464', 1373464, '474.141296', '-3.220261', '248.381897', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132568, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1373465', 1373465, '472.096588', '-3.385255', '246.489807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132296, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1373466', 1373466, '475.150604', '-3.341773', '246.356903', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132036, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1373468', 1373468, '274.396088', '-14.909590', '275.718201', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127690, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1373469', 1373469, '166.918396', '-41.534370', '347.432587', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126874, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1373472', 1373472, '315.059814', '-12.244580', '158.583603', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101596, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1373473', 1373473, '320.444611', '-9.346396', '146.037094', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1373474', 1373474, '315.725800', '-9.276663', '126.870499', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1373475', 1373475, '321.508789', '-8.653498', '126.646599', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1373476', 1373476, '336.930115', '-3.588053', '182.083405', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1373477', 1373477, '323.688599', '-14.094800', '192.991898', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1373479', 1373479, '170.224701', '-26.854139', '298.491211', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1373480', 1373480, '259.386292', '-22.771570', '242.221405', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131486, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1373481', 1373481, '296.304993', '-24.768950', '202.106201', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1373482', 1373482, '160.660004', '-38.959309', '337.590302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131220, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1373497', 1373497, '335.683197', '-4.748982', '10.208240', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126602, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1373500', 1373500, '232.074402', '-6.008647', '2.020233', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127418, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1373502', 1373502, '393.522491', '-5.844142', '73.170151', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1373503', 1373503, '411.140686', '-5.930238', '61.455570', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1373504', 1373504, '347.812195', '-6.402293', '271.350494', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130936, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1373505', 1373505, '346.218903', '-6.677882', '272.394409', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130676, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1373507', 1373507, '292.224792', '-18.765341', '132.923004', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1373508', 1373508, '307.241913', '-8.558214', '101.772003', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1417935', 1417935, '204.363998', '-30.869049', '325.184998', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1417936', 1417936, '206.500305', '-30.502831', '322.743500', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130126, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1417937', 1417937, '206.591797', '-30.411280', '325.246002', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129860, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1417940', 1417940, '-165.340302', '-39.282860', '193.438599', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88872, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1417946', 1417946, '-298.084991', '-79.301208', '470.145599', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64724, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1417947', 1417947, '-302.235504', '-79.240173', '463.034912', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64180, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1417948', 1417948, '-232.433594', '-26.853029', '279.165588', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78554, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1417949', 1417949, '-298.420685', '-54.795170', '303.761414', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1417950', 1417950, '-300.953705', '-54.459469', '309.101898', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79370, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1417951', 1417951, '-271.875885', '-52.291519', '281.696686', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78282, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1417952', 1417952, '-278.400909', '-54.097359', '324.329590', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79098, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1417953', 1417953, '-275.976593', '-51.020748', '335.645813', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1417954', 1417954, '-252.932907', '-58.400982', '302.113312', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78826, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1417955', 1417955, '-229.778000', '-27.208941', '284.492401', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78010, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1417956', 1417956, '-202.834305', '-30.699909', '342.864288', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77466, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1417957', 1417957, '-191.225204', '-44.687611', '220.141800', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1417958', 1417958, '-264.080414', '-22.174829', '238.910095', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1417959', 1417959, '-229.297394', '-35.111050', '231.403000', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1417960', 1417960, '-174.044495', '-40.534210', '200.048401', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89416, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1417961', 1417961, '-149.616501', '-45.683731', '252.513397', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc1417968', 1417968, '-35.348652', '-13.415600', '-78.564903', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45346, 1, 0, 0, 0, 40, 30119, 0, 0, 0), +(321, 'e0078', 'bnpc1417973', 1417973, '-116.777298', '-9.689575', '-86.778084', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45074, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(321, 'e0078', 'bnpc1417975', 1417975, '-66.605652', '-8.194153', '-62.211121', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43714, 1, 0, 0, 0, 40, 30125, 0, 0, 0), +(321, 'e0078', 'bnpc1417976', 1417976, '-38.827709', '-13.552420', '-78.398163', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42904, 1, 0, 0, 0, 40, 30057, 0, 0, 0), +(321, 'e0078', 'bnpc1417977', 1417977, '-64.164253', '-8.163635', '-66.880310', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43986, 1, 0, 0, 0, 40, 30119, 0, 0, 0), +(321, 'e0078', 'bnpc1417978', 1417978, '-10.940770', '-10.482990', '-42.618488', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43176, 1, 0, 0, 0, 0, 30124, 0, 0, 0), +(321, 'e0078', 'bnpc1417979', 1417979, '-110.368500', '-9.353821', '-74.723450', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42632, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(321, 'e0078', 'bnpc1417981', 1417981, '-130.923203', '-9.875401', '-94.172653', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44802, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(321, 'e0078', 'bnpc1417982', 1417982, '-128.984497', '-10.045940', '-97.250549', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42088, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(321, 'e0078', 'bnpc1417983', 1417983, '-119.401901', '-9.597961', '-63.828548', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44530, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(321, 'e0078', 'bnpc1417984', 1417984, '-25.987261', '-7.826045', '-143.341904', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(321, 'e0078', 'bnpc1417985', 1417985, '-46.618172', '-8.729055', '-147.223099', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44258, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(321, 'e0078', 'bnpc1417986', 1417986, '-28.136749', '-8.067919', '-139.809906', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42360, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(321, 'e0078', 'bnpc1417987', 1417987, '-37.033691', '-9.445435', '-137.254898', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41816, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(321, 'e0078', 'bnpc1417988', 1417988, '-28.400631', '-7.899245', '-144.824905', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45618, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(321, 'e0078', 'bnpc1417991', 1417991, '59.539070', '-37.771149', '294.833313', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88600, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc1418004', 1418004, '315.449707', '-8.316214', '-13.626350', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120896, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc2315589', 2315589, '-77.122833', '-6.427255', '-71.078758', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55386, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc2315590', 2315590, '-133.217896', '-9.529019', '-60.232140', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55930, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc2315591', 2315591, '-106.534103', '-12.212950', '-111.347603', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55658, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc2315592', 2315592, '-105.572998', '-9.525784', '-86.103401', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54570, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc2315593', 2315593, '-77.411713', '-13.583240', '-132.304901', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54298, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc2315595', 2315595, '-37.583012', '-11.337520', '-125.597000', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55114, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc2315596', 2315596, '-4.898193', '-11.638100', '-36.911621', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc2320968', 2320968, '417.338806', '-2.166638', '180.231598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129576, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc2320969', 2320969, '422.079498', '-2.088056', '179.054596', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129316, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc2320970', 2320970, '421.093597', '-1.981825', '181.915405', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129032, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc2321008', 2321008, '38.345871', '11.978280', '-107.103104', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49414, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc2321010', 2321010, '-46.306919', '-9.823078', '-139.634399', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54842, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc2321012', 2321012, '205.010406', '-24.383320', '145.800797', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89960, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc2321013', 2321013, '115.746803', '-26.867279', '252.730103', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90776, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc2321016', 2321016, '14.364810', '-47.184280', '446.981415', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81268, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(321, 'e0078', 'bnpc2321017', 2321017, '8.855011', '-47.052078', '437.906494', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80996, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(321, 'e0078', 'bnpc2321018', 2321018, '23.615641', '-45.878761', '447.495605', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79908, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(321, 'e0078', 'bnpc2321019', 2321019, '-29.630119', '-53.701389', '454.788208', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc2342034', 2342034, '-104.783699', '-51.407688', '385.580200', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc2615829', 2615829, '247.882797', '-28.305531', '212.390305', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93998, 4, 0, 0, 0, 0, 30126, 0, 0, 0), +(321, 'e0078', 'bnpc2615830', 2615830, '219.897705', '-25.925119', '230.212799', 744, 0, 0, 0, 1, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95624, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc2615831', 2615831, '251.972198', '-28.702271', '209.338501', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95890, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc2615832', 2615832, '213.214203', '-27.298441', '257.099213', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96434, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc2615833', 2615833, '215.472595', '-27.237400', '253.040298', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94542, 4, 0, 0, 0, 0, 30119, 0, 0, 0), +(321, 'e0078', 'bnpc2615834', 2615834, '212.019608', '-27.601471', '252.518906', 744, 0, 0, 0, 0, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95080, 4, 0, 0, 0, 0, 30057, 0, 0, 0), +(321, 'e0078', 'bnpc2615835', 2615835, '223.315704', '-26.199789', '217.486801', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93726, 4, 0, 0, 0, 0, 30125, 0, 0, 0), +(321, 'e0078', 'bnpc2615836', 2615836, '230.090698', '-25.436840', '224.750107', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96162, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc2615837', 2615837, '251.606003', '-27.756210', '214.862198', 744, 0, 0, 0, 1, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94808, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc2849611', 2849611, '245.960098', '-27.145849', '217.639404', 743, 0, 0, 0, 1, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94270, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc2849612', 2849612, '221.789795', '-25.833570', '222.369705', 745, 0, 0, 0, 0, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96706, 4, 0, 0, 0, 0, 30119, 0, 0, 0), +(321, 'e0078', 'bnpc2849614', 2849614, '218.411407', '-26.477131', '218.507996', 744, 0, 0, 0, 0, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95352, 4, 0, 0, 0, 0, 30120, 0, 0, 0), +(321, 'e0078', 'bnpc3741110', 3741110, '73.289063', '-41.763981', '357.900299', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65534, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(321, 'e0078', 'bnpc3741111', 3741111, '90.043427', '-40.634819', '352.315491', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66072, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(321, 'e0078', 'bnpc3741112', 3741112, '85.557281', '-40.634819', '351.460999', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66610, 1, 0, 0, 0, 0, 30125, 0, 0, 0), +(321, 'e0078', 'bnpc3741117', 3741117, '73.065964', '-38.481918', '332.600189', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65262, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(321, 'e0078', 'bnpc3741118', 3741118, '52.970268', '-40.324650', '335.009186', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66344, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(321, 'e0078', 'bnpc3741119', 3741119, '68.443611', '-40.187721', '343.554413', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67154, 1, 0, 0, 0, 0, 30057, 0, 0, 0), +(321, 'e0078', 'bnpc3741122', 3741122, '53.208130', '-40.756901', '339.009613', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65800, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(321, 'e0078', 'bnpc3741123', 3741123, '50.547020', '-40.461750', '336.659790', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66882, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(321, 'e0078', 'bnpc3741124', 3741124, '53.528259', '-38.479301', '320.227112', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64990, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(321, 'e0078', 'bnpc3741132', 3741132, '-284.870697', '-49.925079', '340.580109', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77738, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc3741133', 3741133, '21.243629', '-45.595200', '442.469513', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80724, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(321, 'e0078', 'bnpc3741134', 3741134, '10.489580', '-47.098289', '439.071106', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81540, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(321, 'e0078', 'bnpc3741135', 3741135, '23.118601', '-45.096272', '440.785797', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80180, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(321, 'e0078', 'bnpc3741136', 3741136, '14.816470', '-45.761841', '435.965515', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79636, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(321, 'e0078', 'bnpc3741137', 3741137, '21.488041', '-45.079990', '439.112488', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80452, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(321, 'e0078', 'bnpc3741144', 3741144, '30.237329', '-47.804062', '466.828094', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69052, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc3741148', 3741148, '3.116203', '-49.230431', '481.867706', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69324, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc3741173', 3741173, '-41.599140', '-53.307251', '487.071014', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68508, 1, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(321, 'e0078', 'bnpc3741178', 3741178, '28.775129', '-50.812210', '483.936310', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67692, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc3741198', 3741198, '-42.711262', '-52.666340', '491.020508', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68780, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc3741238', 3741238, '106.088799', '-22.112341', '171.394897', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc3741243', 3741243, '90.759720', '-19.997610', '170.030807', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46156, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc3741245', 3741245, '112.405098', '-22.569309', '167.395905', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45884, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc3741251', 3741251, '98.788353', '-23.465191', '165.496506', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc3741254', 3741254, '99.891838', '-23.128969', '165.796494', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc3741257', 3741257, '104.599197', '-23.865101', '164.789703', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc3741264', 3741264, '112.733398', '-22.251949', '161.306900', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc3741271', 3741271, '111.878098', '-22.535490', '167.695908', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc3870413', 3870413, '454.933990', '-1.199433', '198.847107', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21300, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(321, 'e0078', 'bnpc3870422', 3870422, '355.536987', '-9.878284', '296.848114', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21034, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(321, 'e0078', 'bnpc3870434', 3870434, '313.523193', '-6.315191', '-66.822891', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20768, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(321, 'e0078', 'bnpc3870455', 3870455, '187.612900', '-2.180824', '-4.180596', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 49, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20484, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(321, 'e0078', 'bnpc3870460', 3870460, '107.120598', '-28.211399', '276.198486', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20230, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(321, 'e0078', 'bnpc3870467', 3870467, '52.319149', '-39.485619', '244.958893', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19952, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(321, 'e0078', 'bnpc3870476', 3870476, '-125.156197', '-45.844360', '225.082901', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19680, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(321, 'e0078', 'bnpc3870506', 3870506, '-54.058109', '-47.078789', '320.834991', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19396, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(321, 'e0078', 'bnpc3871285', 3871285, '245.121399', '-27.767639', '161.763901', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19130, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(321, 'e0078', 'bnpc3877610', 3877610, '460.799194', '-1.088999', '205.124603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128500, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc3897788', 3897788, '454.380188', '-1.495000', '207.570404', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128216, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(321, 'e0078', 'bnpc3898013', 3898013, '448.109894', '-1.597685', '204.794403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127956, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(321, 'e0078', 'bnpc4621558', 4621558, '-39.931252', '-7.787434', '-153.907501', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22586, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4291453', 4291453, '155.132599', '222.009995', '348.043488', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41428, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(322, 'e0079', 'bnpc4291457', 4291457, '272.663513', '222.247696', '334.248901', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41156, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(322, 'e0079', 'bnpc4291464', 4291464, '220.038406', '302.644592', '-149.387497', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(322, 'e0079', 'bnpc4291467', 4291467, '177.878494', '301.664612', '-190.712402', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40618, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(322, 'e0079', 'bnpc4291540', 4291540, '264.301514', '302.632202', '-284.870697', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40346, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(322, 'e0079', 'bnpc4291544', 4291544, '-136.888702', '304.096985', '-285.084290', 1775, 0, 0, 0, 0, 6, 0, 0, 1583, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40080, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(322, 'e0079', 'bnpc4291545', 4291545, '-494.600586', '204.213104', '-188.481094', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39796, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(322, 'e0079', 'bnpc4291549', 4291549, '-535.141113', '204.035507', '-287.671906', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39524, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(322, 'e0079', 'bnpc4296962', 4296962, '6.586450', '224.231003', '359.448090', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4296996', 4296996, '16.820339', '216.422195', '389.762604', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4296997', 4296997, '31.967649', '236.529999', '323.628510', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4296998', 4296998, '72.035683', '242.920105', '316.766113', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4296999', 4296999, '79.061470', '241.243393', '319.846802', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297000', 4297000, '112.809898', '239.429306', '294.575287', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163724, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297001', 4297001, '58.960991', '253.937698', '281.400696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163452, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297003', 4297003, '10.569400', '224.790207', '357.938599', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163180, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297008', 4297008, '354.657288', '224.892807', '300.765289', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297010', 4297010, '417.257904', '226.214996', '374.532593', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297011', 4297011, '421.699005', '227.744202', '370.285492', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297012', 4297012, '330.572113', '223.491394', '369.867493', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297013', 4297013, '429.534393', '217.970001', '417.141296', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161826, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297015', 4297015, '417.746185', '217.952194', '480.668488', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161554, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297016', 4297016, '422.541687', '219.795303', '494.286896', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161282, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297019', 4297019, '411.649689', '220.784195', '484.018890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161010, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297021', 4297021, '181.170303', '242.354599', '223.538406', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160744, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297025', 4297025, '342.033508', '264.985504', '103.754501', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160472, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297026', 4297026, '88.700684', '244.067993', '303.089813', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297027', 4297027, '88.700684', '222.003494', '420.492798', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297028', 4297028, '-25.009581', '205.387497', '480.682007', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297029', 4297029, '398.841614', '224.765701', '381.022705', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297232', 4297232, '-397.424805', '210.788193', '-238.255402', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38242, 8, 0, 0, 4128002, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4297234', 4297234, '-397.352997', '210.788193', '-233.666794', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37970, 8, 0, 0, 4128001, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4297235', 4297235, '-397.251587', '210.788193', '-228.848999', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37698, 8, 0, 0, 4128000, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4297236', 4297236, '-423.044800', '210.788193', '-221.963104', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37426, 8, 0, 0, 4297227, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4297238', 4297238, '-413.101990', '210.788193', '-212.035004', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37154, 8, 0, 0, 4297228, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4297239', 4297239, '-417.529114', '210.788193', '-217.341202', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36882, 8, 0, 0, 4297229, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4297336', 4297336, '168.169693', '276.447601', '-48.600040', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159112, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297337', 4297337, '264.687988', '294.602692', '-93.670403', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158840, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4297346', 4297346, '280.170807', '253.192902', '147.692001', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4297350', 4297350, '334.350311', '248.434402', '184.154297', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4297353', 4297353, '327.623993', '256.382294', '132.340805', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4297354', 4297354, '291.785187', '269.499786', '39.650711', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4297356', 4297356, '192.950302', '271.137512', '3.646851', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4297359', 4297359, '285.844391', '267.842712', '44.338120', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4297363', 4297363, '173.391296', '272.125793', '-12.465330', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4297364', 4297364, '249.355698', '270.133301', '26.395069', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4297365', 4297365, '203.100204', '254.232300', '149.502304', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298567', 4298567, '157.396698', '293.324097', '-98.374939', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298571', 4298571, '159.523300', '293.493011', '-99.299156', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298572', 4298572, '135.779297', '299.755890', '-101.941704', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298573', 4298573, '136.228699', '283.407715', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298574', 4298574, '258.647614', '289.809692', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298575', 4298575, '254.634094', '287.557098', '-64.855118', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298576', 4298576, '268.831512', '284.212891', '-40.760189', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298741', 4298741, '251.759094', '294.415894', '-111.584099', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298744', 4298744, '288.151489', '302.427002', '-86.886337', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153938, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298765', 4298765, '321.597290', '303.200989', '-338.780914', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298767', 4298767, '346.691895', '304.562286', '-319.108887', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298770', 4298770, '357.329712', '304.360687', '-356.956696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298772', 4298772, '407.769012', '305.618500', '-327.457397', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298773', 4298773, '412.865387', '304.484802', '-333.469391', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298780', 4298780, '365.239410', '319.169586', '-254.025299', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298781', 4298781, '388.845612', '321.034485', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298784', 4298784, '476.218811', '327.076996', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298787', 4298787, '494.638214', '304.602112', '-349.542206', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298790', 4298790, '182.909805', '336.140900', '-467.124512', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151236, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298792', 4298792, '150.108704', '345.173309', '-380.467590', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150964, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298794', 4298794, '146.329498', '347.075287', '-385.583313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150692, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298812', 4298812, '253.761307', '343.590393', '-494.726715', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150420, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298813', 4298813, '294.270294', '329.274292', '-477.805786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298814', 4298814, '212.636703', '327.759796', '-433.014313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298815', 4298815, '412.045288', '353.824188', '-499.736786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149604, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298816', 4298816, '394.674591', '355.184204', '-555.809875', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298823', 4298823, '260.181488', '356.282806', '-541.374878', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298824', 4298824, '188.311493', '357.747803', '-557.427429', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298825', 4298825, '285.877686', '359.578705', '-569.421021', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148522, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298835', 4298835, '126.756599', '376.088989', '-671.473328', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148250, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298837', 4298837, '356.375610', '356.320007', '-595.291321', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298842', 4298842, '468.223511', '349.470490', '-668.565430', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147700, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298844', 4298844, '531.422729', '348.817993', '-732.418884', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147428, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298845', 4298845, '539.850708', '348.653900', '-745.830627', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147156, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4298846', 4298846, '96.262070', '375.573090', '-645.236084', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298847', 4298847, '618.677002', '325.703705', '-430.685913', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298848', 4298848, '626.867126', '322.872803', '-394.244293', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298849', 4298849, '673.548279', '293.690308', '-320.820892', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298851', 4298851, '584.470276', '282.391998', '-315.705292', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298852', 4298852, '599.206482', '281.914215', '-300.226898', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298853', 4298853, '564.033630', '282.951599', '-300.851807', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298854', 4298854, '684.587830', '306.511292', '-363.764191', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298855', 4298855, '562.945190', '342.102997', '-474.200287', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298858', 4298858, '463.976410', '249.572906', '-308.802399', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298859', 4298859, '473.929901', '247.699707', '-302.357513', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298860', 4298860, '490.206787', '271.288086', '-298.332397', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298861', 4298861, '397.627808', '248.461594', '-320.859192', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298862', 4298862, '283.789703', '236.298401', '-325.220306', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298863', 4298863, '291.652496', '235.940796', '-331.188995', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143094, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298864', 4298864, '296.253906', '234.759995', '-368.673309', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298866', 4298866, '473.213501', '248.114304', '-259.048889', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298871', 4298871, '614.450012', '323.410309', '-400.318604', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298873', 4298873, '668.683716', '306.076996', '-365.426788', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298882', 4298882, '683.369995', '295.457611', '-324.276794', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298884', 4298884, '681.273376', '295.122589', '-325.174805', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298886', 4298886, '581.921387', '282.296997', '-294.985413', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298888', 4298888, '584.498718', '282.204895', '-290.600891', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298891', 4298891, '598.967285', '282.223602', '-314.123505', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298892', 4298892, '570.297485', '282.771301', '-310.753998', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298900', 4298900, '532.146484', '235.205200', '301.718414', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140114, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4298901', 4298901, '548.790588', '235.278793', '308.827301', 114, 0, 0, 0, 1, 6, 0, 0, 662, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139848, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4298902', 4298902, '539.909912', '235.309296', '290.943695', 115, 0, 0, 0, 0, 6, 0, 0, 661, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139582, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(322, 'e0079', 'bnpc4298903', 4298903, '543.114685', '235.512100', '292.484009', 116, 0, 0, 0, 0, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139316, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(322, 'e0079', 'bnpc4298911', 4298911, '465.921387', '232.736298', '321.428497', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4298914', 4298914, '485.744812', '233.755707', '315.057404', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4298917', 4298917, '8.385859', '200.822098', '514.171082', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298919', 4298919, '3.468143', '219.127502', '377.671387', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298921', 4298921, '56.439899', '213.878601', '395.393188', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298922', 4298922, '32.688740', '261.800201', '264.078491', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298924', 4298924, '31.549110', '262.086487', '260.424103', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298925', 4298925, '97.214867', '251.860901', '270.377808', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298926', 4298926, '65.567993', '240.283707', '329.732208', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298928', 4298928, '173.567596', '231.665298', '266.478912', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298932', 4298932, '267.711090', '226.465698', '281.598785', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298933', 4298933, '349.538513', '232.623795', '259.540588', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298934', 4298934, '353.841400', '234.302200', '255.420700', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298937', 4298937, '398.091797', '226.637100', '344.024994', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298938', 4298938, '278.828003', '242.816803', '203.601105', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298941', 4298941, '191.013199', '256.839386', '104.428802', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4298943', 4298943, '248.318405', '261.876587', '67.776207', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299053', 4299053, '152.027496', '277.941711', '34.020439', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299054', 4299054, '235.312393', '277.402405', '-48.467419', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299057', 4299057, '191.224899', '284.341797', '-81.645477', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299063', 4299063, '374.380005', '306.477386', '-331.197113', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299079', 4299079, '343.678802', '311.085602', '-403.738495', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299081', 4299081, '278.156586', '313.466095', '-429.770386', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299082', 4299082, '347.909790', '309.989197', '-275.124512', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299084', 4299084, '404.743988', '318.417908', '-277.971985', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299088', 4299088, '457.550507', '305.113708', '-285.144989', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299091', 4299091, '458.811310', '305.676910', '-289.211914', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299093', 4299093, '502.242096', '302.581390', '-245.190903', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299094', 4299094, '502.391815', '308.429413', '-356.438385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299096', 4299096, '502.046387', '342.161713', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299098', 4299098, '424.421387', '339.137909', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299099', 4299099, '429.241394', '341.024200', '-436.179199', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299100', 4299100, '218.158203', '330.586700', '-473.045013', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299102', 4299102, '173.367004', '339.026001', '-390.899200', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299103', 4299103, '119.335899', '353.367310', '-336.673615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299106', 4299106, '166.454803', '348.701294', '-492.608795', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299107', 4299107, '432.587189', '365.876801', '-537.769714', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299110', 4299110, '418.305603', '349.797699', '-685.625427', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299112', 4299112, '485.808594', '353.806305', '-658.057312', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299114', 4299114, '298.678589', '345.167297', '-521.747192', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128442, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299115', 4299115, '198.874802', '362.118011', '-601.265076', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299116', 4299116, '138.675293', '374.013306', '-661.681824', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299117', 4299117, '324.054291', '360.242188', '-582.895081', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299119', 4299119, '283.839905', '362.149506', '-625.782288', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299120', 4299120, '210.687897', '361.424805', '-658.411926', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299121', 4299121, '205.782394', '360.548187', '-666.505615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299188', 4299188, '105.119400', '289.448395', '-164.568604', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120116, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299192', 4299192, '62.638309', '289.814606', '-219.226395', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299194', 4299194, '-1.358093', '310.902496', '-142.015701', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299195', 4299195, '-58.910789', '304.604401', '-272.412598', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299197', 4299197, '-86.450127', '300.163605', '-170.834900', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299198', 4299198, '137.090607', '290.130798', '-258.218414', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299208', 4299208, '-115.231300', '298.469788', '-208.100098', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299210', 4299210, '-205.664902', '281.635010', '-192.517700', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118284, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299213', 4299213, '-107.621902', '300.038086', '-137.041306', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118012, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299215', 4299215, '-158.759003', '292.966492', '-201.171295', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299216', 4299216, '-162.136307', '291.173187', '-194.256607', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299217', 4299217, '-205.676498', '283.894012', '-114.763100', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117196, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299218', 4299218, '-212.088394', '285.828400', '-56.427200', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299219', 4299219, '-290.402100', '261.601898', '-157.738800', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116652, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299227', 4299227, '-318.632690', '255.833298', '-42.884541', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101716, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299230', 4299230, '-340.376007', '259.605804', '-64.511017', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101444, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299231', 4299231, '-317.614502', '256.207092', '-97.947693', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299233', 4299233, '-257.298615', '264.585693', '-65.689346', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299235', 4299235, '-249.965302', '269.336914', '-76.447701', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299236', 4299236, '-353.139587', '237.921494', '-157.603195', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299238', 4299238, '-423.544708', '240.253296', '-111.314598', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299241', 4299241, '-359.502197', '233.804596', '-160.537003', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299242', 4299242, '-578.240723', '227.008408', '-125.078201', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116386, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299244', 4299244, '-499.116089', '237.639496', '-97.965683', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116114, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299247', 4299247, '-655.179871', '229.729202', '-54.205719', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115842, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299249', 4299249, '-483.586609', '226.184692', '-125.489799', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299250', 4299250, '-477.837402', '228.009293', '-122.481400', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299252', 4299252, '-573.938416', '231.500397', '-73.804337', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299254', 4299254, '-600.372192', '209.926697', '-352.855804', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299256', 4299256, '-623.961182', '211.311707', '-374.720001', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299257', 4299257, '-624.778992', '210.859299', '-381.588593', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299258', 4299258, '-586.229492', '201.455200', '-440.921997', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299259', 4299259, '-583.154114', '188.738800', '-477.195404', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(322, 'e0079', 'bnpc4299260', 4299260, '-653.461182', '211.102798', '-435.622009', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299422', 4299422, '-650.603027', '204.070007', '-488.214691', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299424', 4299424, '-551.951416', '206.791595', '-350.856995', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112856, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299425', 4299425, '-612.623779', '216.144806', '-319.243988', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299426', 4299426, '-853.938416', '226.438599', '25.457430', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299427', 4299427, '-879.604614', '229.180099', '-15.122490', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299428', 4299428, '-894.004272', '228.026398', '0.443500', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299429', 4299429, '-907.681885', '249.338104', '26.397079', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299430', 4299430, '-907.681885', '247.122192', '-24.585300', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299431', 4299431, '-938.982971', '269.272095', '1.981136', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299433', 4299433, '-951.375916', '276.008698', '-32.272030', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299593', 4299593, '117.442703', '288.131500', '-217.671204', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299595', 4299595, '61.837181', '292.037506', '-153.092804', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299596', 4299596, '58.310040', '291.422913', '-157.591202', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299597', 4299597, '-17.296480', '300.204010', '-215.268906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299598', 4299598, '-102.796997', '298.673889', '-164.088501', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299599', 4299599, '-144.174805', '292.303986', '-187.728806', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299600', 4299600, '-141.522705', '298.377014', '-239.075500', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299602', 4299602, '-187.987900', '287.198914', '-119.562897', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299603', 4299603, '-250.437195', '273.614410', '-139.801193', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299604', 4299604, '-287.381409', '260.165009', '-74.592461', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299605', 4299605, '-249.896500', '264.386505', '-56.690639', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299606', 4299606, '-316.963898', '249.190399', '0.375132', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299607', 4299607, '-353.362305', '249.890305', '-112.803703', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107126, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299608', 4299608, '-317.082214', '255.914795', '-163.691803', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106854, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299610', 4299610, '-540.337280', '216.113495', '-165.331497', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106582, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299612', 4299612, '-494.751099', '227.817902', '-119.577698', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299614', 4299614, '-538.078918', '224.933197', '-115.343002', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299615', 4299615, '-679.120911', '223.608002', '-24.397600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299617', 4299617, '-748.989075', '226.855804', '-70.359383', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105494, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299618', 4299618, '-763.556213', '240.848099', '-149.583405', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105222, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299620', 4299620, '-791.189026', '244.109695', '-171.737000', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104950, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299628', 4299628, '-802.041016', '225.578995', '14.979860', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299805', 4299805, '-869.248901', '228.169098', '24.666691', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299806', 4299806, '-916.034790', '242.289902', '5.756409', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299808', 4299808, '-898.861877', '250.815994', '-36.228569', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299809', 4299809, '-932.563721', '262.462097', '18.376640', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299833', 4299833, '-528.303406', '207.486404', '-361.926514', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299835', 4299835, '-635.674072', '220.452301', '-338.610809', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299836', 4299836, '-582.583984', '206.158493', '-384.262085', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299839', 4299839, '-524.189880', '192.377594', '-420.327301', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299840', 4299840, '-649.544922', '206.868103', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299842', 4299842, '-652.836792', '207.443604', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299844', 4299844, '-459.800110', '286.182892', '196.642899', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99194, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299846', 4299846, '-523.050415', '277.612488', '197.807800', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98922, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299847', 4299847, '-532.402588', '240.741592', '331.532806', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98650, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299850', 4299850, '-475.198303', '237.443207', '403.405304', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299852', 4299852, '-369.299286', '237.950699', '382.602814', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98106, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299853', 4299853, '-350.165009', '237.914505', '384.625702', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97834, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299854', 4299854, '-269.214996', '226.703201', '429.251587', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97562, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299856', 4299856, '-231.006302', '225.146896', '420.889496', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299858', 4299858, '-634.704590', '244.070801', '300.718811', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97018, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299859', 4299859, '-706.643005', '237.401398', '303.170288', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96746, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299861', 4299861, '-766.720093', '254.688202', '421.683014', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96474, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299862', 4299862, '-743.321777', '254.701202', '428.467499', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299872', 4299872, '-358.874786', '272.546112', '253.455994', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299873', 4299873, '-357.118988', '248.051895', '290.108185', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299874', 4299874, '-401.256805', '239.983307', '278.980713', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299876', 4299876, '-288.120392', '293.587006', '256.741089', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299877', 4299877, '-277.870697', '258.656494', '334.187714', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299878', 4299878, '-321.083313', '262.754395', '217.010696', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299879', 4299879, '-440.215912', '244.465805', '319.074097', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94316, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299880', 4299880, '-394.308411', '303.990997', '193.089905', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299881', 4299881, '-460.690186', '270.367493', '260.074188', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4299886', 4299886, '-254.901993', '224.367096', '523.252625', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299887', 4299887, '-247.943405', '224.715195', '514.518921', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93096, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299888', 4299888, '-282.529114', '224.717606', '503.718506', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92824, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299889', 4299889, '-393.453888', '238.452805', '503.715515', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92552, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299909', 4299909, '-485.722290', '243.436295', '460.457214', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92280, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299910', 4299910, '-491.588287', '245.377701', '463.765594', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92008, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299912', 4299912, '-305.548096', '226.398407', '559.785400', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91736, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299914', 4299914, '-212.225906', '229.780594', '563.407715', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91464, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299915', 4299915, '-252.616806', '224.743301', '626.013428', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91192, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299917', 4299917, '-120.126801', '205.896805', '472.541412', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299933', 4299933, '-167.451797', '212.509293', '469.950714', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299935', 4299935, '-192.431595', '215.960907', '481.742401', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299937', 4299937, '-254.539902', '221.577606', '466.534088', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299939', 4299939, '-261.479614', '221.984207', '460.971405', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89970, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299940', 4299940, '-327.888702', '223.177307', '446.066895', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89698, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299942', 4299942, '-452.292694', '231.075394', '433.657410', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299943', 4299943, '-556.198486', '235.399994', '407.330414', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299944', 4299944, '-563.418518', '235.399994', '398.974304', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4299945', 4299945, '-533.244080', '235.399994', '407.132111', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4300046', 4300046, '-699.997925', '253.759995', '507.272186', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88344, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300048', 4300048, '-688.471802', '253.697205', '509.426910', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88072, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300049', 4300049, '-698.510803', '253.838196', '499.010101', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87800, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300050', 4300050, '-705.378479', '253.881699', '505.406494', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87528, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300051', 4300051, '-699.795776', '253.759995', '514.230591', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300052', 4300052, '-688.023315', '253.529099', '507.670410', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300053', 4300053, '-688.742798', '253.351105', '499.477112', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300054', 4300054, '-677.956787', '254.053894', '498.299103', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300056', 4300056, '-493.539612', '282.080109', '191.529907', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300057', 4300057, '-521.202393', '242.145401', '299.671906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300059', 4300059, '-521.172913', '237.402893', '377.595398', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300061', 4300061, '-438.483398', '245.206894', '362.585205', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300062', 4300062, '-248.297302', '227.611099', '410.760986', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300064', 4300064, '-153.368500', '221.118393', '416.250702', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300066', 4300066, '-98.785767', '213.591293', '426.872589', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300069', 4300069, '-272.282501', '264.869385', '321.059906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300070', 4300070, '-390.265106', '233.670807', '321.964600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83926, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300072', 4300072, '-383.889404', '248.725204', '219.890106', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83654, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300074', 4300074, '-416.929291', '233.443802', '461.940796', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300078', 4300078, '-295.979309', '224.444901', '485.191010', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300080', 4300080, '-346.028900', '236.543396', '518.089478', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300081', 4300081, '-227.039001', '229.327805', '547.600525', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300083', 4300083, '-286.249908', '221.550095', '669.298584', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300084', 4300084, '-282.240204', '222.570007', '672.355286', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300085', 4300085, '-254.344894', '224.215302', '580.497681', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300087', 4300087, '-149.461502', '217.410095', '485.622894', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300089', 4300089, '-604.956787', '244.740799', '337.663788', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300090', 4300090, '-649.166504', '245.258606', '286.166504', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300091', 4300091, '-748.151123', '238.541107', '350.326385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300171', 4300171, '566.598206', '289.624603', '98.502197', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4300176', 4300176, '527.275391', '303.059296', '-162.340805', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79372, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(322, 'e0079', 'bnpc4300177', 4300177, '586.301575', '302.701202', '-115.328102', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79100, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(322, 'e0079', 'bnpc4300178', 4300178, '654.442383', '298.421295', '-12.551030', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78828, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(322, 'e0079', 'bnpc4300179', 4300179, '669.497986', '301.708099', '-29.924919', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78556, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(322, 'e0079', 'bnpc4300180', 4300180, '602.427917', '290.487396', '-0.884406', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78284, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(322, 'e0079', 'bnpc4300181', 4300181, '664.371399', '287.443909', '73.074158', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78012, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(322, 'e0079', 'bnpc4300182', 4300182, '601.759216', '287.400208', '127.919098', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77740, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(322, 'e0079', 'bnpc4300183', 4300183, '565.585571', '287.455109', '154.665298', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77468, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(322, 'e0079', 'bnpc4300184', 4300184, '558.831116', '300.043915', '59.949520', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77196, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(322, 'e0079', 'bnpc4300191', 4300191, '511.356689', '303.173004', '-206.740097', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76930, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(322, 'e0079', 'bnpc4300194', 4300194, '494.438110', '303.700287', '-197.619598', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76646, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300196', 4300196, '508.591888', '303.338898', '-205.656296', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76392, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(322, 'e0079', 'bnpc4300198', 4300198, '523.491211', '302.387909', '-191.363495', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76120, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300200', 4300200, '559.439514', '303.965698', '-151.707001', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75836, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300201', 4300201, '555.992920', '301.960693', '-163.683502', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75570, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300203', 4300203, '593.473511', '302.708496', '-99.112923', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75304, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300204', 4300204, '642.703979', '303.166687', '-43.589840', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300205', 4300205, '650.994812', '303.095612', '-38.070992', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74742, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300206', 4300206, '625.239319', '302.690613', '-97.402184', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74476, 1, 0, 0, 0, 45, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300209', 4300209, '635.367188', '303.307190', '-92.580772', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74198, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(322, 'e0079', 'bnpc4300210', 4300210, '636.402405', '303.397003', '-95.636833', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73938, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(322, 'e0079', 'bnpc4300212', 4300212, '640.141296', '289.793488', '15.564350', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73654, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300213', 4300213, '632.201416', '287.460602', '83.472313', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73394, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300214', 4300214, '694.667114', '302.802002', '-25.909540', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73116, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300215', 4300215, '668.584900', '286.359985', '53.434738', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72856, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300219', 4300219, '653.565674', '286.929688', '35.585339', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72566, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(322, 'e0079', 'bnpc4300220', 4300220, '654.409180', '286.791412', '37.999821', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72312, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(322, 'e0079', 'bnpc4300221', 4300221, '655.671082', '286.824310', '34.141949', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72034, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(322, 'e0079', 'bnpc4300222', 4300222, '657.228088', '286.375885', '36.471931', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71756, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(322, 'e0079', 'bnpc4300226', 4300226, '639.859619', '286.099091', '135.124603', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71478, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(322, 'e0079', 'bnpc4300227', 4300227, '642.707703', '286.175110', '132.877899', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71212, 1, 0, 0, 0, 0, 30120, 0, 0, 0), +(322, 'e0079', 'bnpc4300229', 4300229, '708.942505', '286.232513', '46.920448', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70946, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300230', 4300230, '711.298828', '285.307404', '75.698997', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70680, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300232', 4300232, '613.615784', '284.572296', '166.852005', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70408, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300233', 4300233, '590.029480', '285.689209', '176.024506', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70130, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300234', 4300234, '646.990784', '285.135101', '149.341507', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69852, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300236', 4300236, '586.167297', '288.737610', '-28.609209', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4300238', 4300238, '582.383789', '289.517700', '-46.738300', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4300239', 4300239, '559.963928', '292.885193', '-35.993568', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65790, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4300241', 4300241, '576.693481', '289.831787', '-46.195572', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4300242', 4300242, '498.254486', '308.702209', '-165.574203', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4300244', 4300244, '507.927002', '303.303497', '-229.236298', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4300246', 4300246, '630.399292', '300.341187', '-66.790810', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65518, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4300250', 4300250, '684.486816', '291.013214', '7.434129', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4300253', 4300253, '639.507080', '287.656799', '38.046551', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66062, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4300254', 4300254, '630.756226', '286.750000', '109.616798', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4300256', 4300256, '570.830383', '286.569214', '120.215103', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4300257', 4300257, '555.228516', '297.855499', '84.213348', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4300284', 4300284, '605.249023', '330.830811', '-303.486786', 114, 0, 0, 0, 0, 6, 0, 0, 662, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68668, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(322, 'e0079', 'bnpc4300286', 4300286, '527.855225', '308.308502', '-299.702515', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69478, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300287', 4300287, '575.036316', '320.881805', '-289.906189', 115, 0, 0, 0, 1, 6, 0, 0, 661, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69218, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4300288', 4300288, '577.508118', '322.468903', '-294.789093', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68952, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(322, 'e0079', 'bnpc4325155', 4325155, '215.504501', '360.039307', '-581.431030', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4406869', 4406869, '311.001099', '307.036499', '-422.752106', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126194, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406870', 4406870, '323.323395', '303.822296', '-391.989014', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125922, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406871', 4406871, '317.110413', '305.692505', '-418.385315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125650, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406872', 4406872, '351.343506', '312.029114', '-396.169098', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125378, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406873', 4406873, '350.968994', '315.450592', '-416.192993', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125106, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406874', 4406874, '48.752670', '311.224213', '-250.581207', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124834, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406875', 4406875, '44.907230', '311.238312', '-245.044693', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124562, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406876', 4406876, '66.984810', '300.472412', '-252.706802', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124290, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406877', 4406877, '-17.150419', '311.581512', '-255.273895', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124018, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406878', 4406878, '7.231910', '312.528687', '-245.321793', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123746, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406879', 4406879, '-6.278003', '305.376709', '-233.466095', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123474, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406880', 4406880, '-10.073550', '305.779694', '-236.697601', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123202, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406884', 4406884, '357.847992', '311.662201', '-388.165497', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122930, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406885', 4406885, '363.148010', '313.250488', '-391.308411', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122658, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406886', 4406886, '331.929413', '319.783203', '-430.502808', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122386, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406888', 4406888, '113.582199', '354.933685', '-335.568512', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406890', 4406890, '121.680801', '354.167114', '-326.125214', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406891', 4406891, '110.022797', '357.553314', '-311.841187', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406892', 4406892, '111.824799', '358.195190', '-382.551514', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406893', 4406893, '115.392303', '357.688690', '-387.074890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4406894', 4406894, '93.907928', '362.855194', '-349.329315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4600355', 4600355, '547.412170', '348.384613', '-748.106018', 1699, 0, 0, 0, 8, 6, 0, 0, 2162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4614331', 4614331, '530.815125', '348.686096', '-743.006226', 1700, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43556, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4614332', 4614332, '535.935608', '348.616394', '-737.220215', 2222, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43290, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4621624', 4621624, '-332.429199', '307.678406', '234.107803', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44948, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(322, 'e0079', 'bnpc4890695', 4890695, '-188.798996', '226.035995', '400.288086', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(322, 'e0079', 'bnpc4890696', 4890696, '-132.585098', '216.182098', '435.066193', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4057759', 4057759, '-167.171906', '25.428049', '-361.451508', 798, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27716, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(323, 'e0080', 'bnpc4057772', 4057772, '-250.234695', '27.956100', '-323.354889', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27450, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(323, 'e0080', 'bnpc4057782', 4057782, '-56.647308', '26.533920', '-382.801697', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 27184, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(323, 'e0080', 'bnpc4057793', 4057793, '-250.333099', '7.167006', '413.444885', 1342, 0, 0, 0, 0, 6, 0, 0, 1278, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 26918, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(323, 'e0080', 'bnpc4128048', 4128048, '-402.311707', '13.399570', '-383.545898', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128049', 4128049, '-398.984802', '13.399560', '-382.573486', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128050', 4128050, '-398.703003', '13.473630', '-399.130188', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160552, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128051', 4128051, '-349.172211', '14.053470', '-371.236786', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128052', 4128052, '-363.032715', '12.848900', '-352.263092', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128053', 4128053, '-344.625000', '14.389220', '-374.166504', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128054', 4128054, '-361.864685', '12.175190', '-319.089905', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128055', 4128055, '-357.923309', '12.323080', '-315.838715', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128056', 4128056, '-366.900909', '12.044570', '-313.915009', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128057', 4128057, '-345.540588', '14.114500', '-368.795288', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128058', 4128058, '-306.752106', '19.363649', '-347.920990', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128059', 4128059, '-303.998688', '19.825630', '-345.763611', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128061', 4128061, '-329.335510', '13.992490', '-311.024689', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128062', 4128062, '-334.273499', '12.735820', '-272.286011', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157560, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128063', 4128063, '-332.188293', '12.773240', '-274.762512', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157288, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(323, 'e0080', 'bnpc4128064', 4128064, '-275.553406', '19.811119', '-300.743988', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128065', 4128065, '-277.943207', '19.468559', '-300.616791', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156744, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128066', 4128066, '-216.697205', '19.814110', '-291.068909', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156472, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128067', 4128067, '-219.086899', '19.669310', '-290.941803', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156200, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128068', 4128068, '-215.855301', '18.862061', '-286.262787', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155928, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128069', 4128069, '-251.503403', '17.336300', '-282.862091', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155656, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128071', 4128071, '-277.037994', '27.629240', '-446.633911', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155390, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128072', 4128072, '-293.590302', '20.134371', '-406.301605', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155118, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128073', 4128073, '-241.107803', '23.575130', '-427.206787', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154846, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128074', 4128074, '-233.356293', '23.788820', '-423.636292', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128075', 4128075, '-192.850494', '24.439541', '-471.427490', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128076', 4128076, '-225.719101', '22.713610', '-511.794586', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128078', 4128078, '-234.581894', '23.154600', '-503.730499', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128080', 4128080, '-99.297150', '11.812300', '-624.887512', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128081', 4128081, '-101.063499', '14.100460', '-548.412415', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128082', 4128082, '-57.090172', '5.200434', '-542.299622', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128083', 4128083, '-1.143898', '7.618513', '-528.769287', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128085', 4128085, '5.080926', '7.618519', '-537.079224', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128089', 4128089, '-156.176102', '17.047890', '-567.528198', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128090', 4128090, '-129.437500', '14.855080', '-587.989197', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128095', 4128095, '-28.120790', '6.618664', '-619.769470', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151576, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128096', 4128096, '-29.463200', '6.619354', '-617.967285', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151304, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128097', 4128097, '-24.055080', '6.620687', '-614.076782', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151032, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128098', 4128098, '-25.895201', '4.928910', '-647.637573', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150760, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128099', 4128099, '-12.619260', '4.562378', '-658.594727', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150488, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128100', 4128100, '-9.942262', '4.207929', '-660.454895', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150216, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128102', 4128102, '-63.811069', '7.713764', '-671.437012', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149944, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128103', 4128103, '-56.610531', '6.680237', '-675.225220', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149672, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128104', 4128104, '-63.511070', '7.475504', '-669.236084', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149400, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128105', 4128105, '-82.276627', '12.964970', '-712.882813', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149128, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128106', 4128106, '-75.376091', '12.702090', '-718.871826', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148856, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128107', 4128107, '-82.576622', '13.183150', '-715.083679', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148584, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128108', 4128108, '-92.149231', '14.084050', '-719.172974', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128109', 4128109, '-50.418240', '10.700190', '-716.867188', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128110', 4128110, '-36.628948', '10.796120', '-721.924072', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128111', 4128111, '-34.110340', '9.565180', '-718.908081', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128112', 4128112, '-22.776590', '6.822047', '-697.630371', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128113', 4128113, '39.229660', '3.128414', '-685.332397', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146952, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128114', 4128114, '36.552662', '2.610799', '-683.472229', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146680, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128115', 4128115, '42.912899', '6.469104', '-652.670776', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146408, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128119', 4128119, '-65.089844', '4.250028', '-634.668091', 176, 0, 0, 0, 1, 6, 0, 0, 286, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146136, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128250', 4128250, '40.021858', '6.264256', '-433.494293', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128252', 4128252, '55.418652', '12.390480', '-491.216187', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128253', 4128253, '77.684799', '10.281420', '-468.654602', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128254', 4128254, '89.542992', '10.303750', '-428.138397', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128255', 4128255, '137.875504', '10.065270', '-451.167206', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128256', 4128256, '35.210232', '9.730854', '-485.420990', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128257', 4128257, '183.695404', '14.216050', '-465.348206', 30, 0, 0, 0, 1, 6, 0, 0, 280, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128258', 4128258, '-100.389198', '14.631890', '-227.392395', 2259, 0, 0, 0, 1, 6, 0, 0, 1998, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123312, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128259', 4128259, '-97.276253', '14.631890', '-215.328506', 2260, 0, 0, 0, 1, 6, 0, 0, 1999, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123046, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128260', 4128260, '-75.621529', '14.631890', '-214.231506', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128261', 4128261, '-120.924698', '14.520920', '-211.301697', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128262', 4128262, '-73.457458', '14.731040', '-236.287506', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128263', 4128263, '-89.280579', '15.629060', '-251.062103', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128264', 4128264, '-112.932098', '15.533810', '-246.046600', 19, 0, 0, 0, 1, 6, 0, 0, 323, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128265', 4128265, '-121.350601', '14.949070', '-239.633499', 18, 0, 0, 0, 1, 6, 0, 0, 320, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142618, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128269', 4128269, '-1.754883', '15.457340', '-292.500214', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142358, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(323, 'e0080', 'bnpc4128270', 4128270, '-5.172852', '15.518430', '-288.410797', 169, 0, 0, 0, 0, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142092, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4128271', 4128271, '-26.595400', '16.964270', '-310.556000', 169, 0, 0, 0, 1, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141820, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4128272', 4128272, '-6.968165', '15.539780', '-293.998108', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141542, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4128273', 4128273, '-3.867146', '14.547090', '-326.988495', 169, 0, 0, 0, 0, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141276, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(323, 'e0080', 'bnpc4128274', 4128274, '-1.742153', '14.339200', '-330.423615', 167, 0, 0, 0, 0, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140998, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(323, 'e0080', 'bnpc4128275', 4128275, '-16.894220', '15.891530', '-344.307587', 169, 0, 0, 0, 1, 6, 0, 0, 259, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140732, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4128276', 4128276, '-36.352852', '15.737740', '-281.239685', 167, 0, 0, 0, 1, 6, 0, 0, 256, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140454, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4128285', 4128285, '86.811409', '3.880296', '-641.041382', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140194, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(323, 'e0080', 'bnpc4129531', 4129531, '154.758194', '4.167945', '-538.420471', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139922, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(323, 'e0080', 'bnpc4129542', 4129542, '86.147247', '2.628398', '-610.838013', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139656, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4130363', 4130363, '99.626099', '3.646851', '-655.359680', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4130365', 4130365, '137.834702', '3.433289', '-594.293091', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139112, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4130366', 4130366, '148.899902', '5.148987', '-530.581482', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138840, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4130369', 4130369, '124.284698', '2.822876', '-604.577820', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138562, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(323, 'e0080', 'bnpc4130372', 4130372, '124.864502', '2.731323', '-606.225708', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138296, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(323, 'e0080', 'bnpc4130374', 4130374, '161.030197', '2.624552', '-609.139282', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138018, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4130377', 4130377, '161.330200', '3.682087', '-563.744324', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137746, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4130378', 4130378, '98.850403', '6.344423', '-544.399780', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137480, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(323, 'e0080', 'bnpc4130379', 4130379, '100.378799', '6.344423', '-543.894287', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137202, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(323, 'e0080', 'bnpc4130380', 4130380, '11.922580', '6.840849', '-592.719177', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136936, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(323, 'e0080', 'bnpc4130381', 4130381, '13.302400', '7.038995', '-591.807983', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136658, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(323, 'e0080', 'bnpc4130382', 4130382, '19.505831', '19.298901', '-624.247314', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136392, 1, 0, 0, 0, 20, 30073, 0, 0, 0), +(323, 'e0080', 'bnpc4130383', 4130383, '20.782539', '19.319000', '-625.061401', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136114, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(323, 'e0080', 'bnpc4130386', 4130386, '37.483280', '18.026581', '-609.961670', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135848, 1, 0, 0, 0, 20, 30072, 0, 0, 0), +(323, 'e0080', 'bnpc4130388', 4130388, '36.074890', '17.983601', '-608.959229', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135570, 1, 0, 0, 0, 20, 30079, 0, 0, 0), +(323, 'e0080', 'bnpc4130389', 4130389, '37.643921', '17.440981', '-596.398926', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135298, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4130390', 4130390, '24.155029', '17.990360', '-604.119995', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135032, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4130403', 4130403, '22.943991', '6.252352', '-608.046997', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134754, 1, 0, 0, 0, 20, 30083, 0, 0, 0), +(323, 'e0080', 'bnpc4130404', 4130404, '38.940979', '7.903199', '-595.086975', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134488, 1, 0, 0, 0, 20, 30077, 0, 0, 0), +(323, 'e0080', 'bnpc4130431', 4130431, '66.514038', '9.567322', '-576.257019', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134216, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4130432', 4130432, '18.704010', '7.066027', '-628.667725', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133938, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4130682', 4130682, '95.351791', '6.393626', '-542.884888', 363, 0, 0, 0, 0, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133666, 1, 0, 0, 0, 20, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4130683', 4130683, '84.609253', '6.344424', '-545.683472', 365, 0, 0, 0, 0, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133400, 1, 0, 0, 0, 20, 30077, 0, 0, 0), +(323, 'e0080', 'bnpc4130705', 4130705, '92.140930', '6.705567', '-559.693420', 365, 0, 0, 0, 1, 6, 0, 0, 332, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133128, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4130708', 4130708, '98.243317', '6.344424', '-537.346680', 363, 0, 0, 0, 1, 6, 0, 0, 331, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132850, 1, 0, 0, 0, 20, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4130800', 4130800, '-385.468414', '13.547760', '-376.772614', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4130805', 4130805, '-326.314209', '15.945620', '-388.265808', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4130806', 4130806, '-305.992188', '11.810610', '-274.036194', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4130807', 4130807, '-231.864395', '4.434839', '-243.585495', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4130808', 4130808, '-229.445007', '4.279073', '-242.303406', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 25, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4130809', 4130809, '-189.227203', '19.363649', '-294.819611', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4130811', 4130811, '-71.915771', '15.823550', '-267.627991', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4130813', 4130813, '-70.176270', '15.579410', '-265.919006', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4130814', 4130814, '-119.981796', '19.729919', '-275.562714', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4130819', 4130819, '-21.895340', '6.009452', '-485.204193', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4130821', 4130821, '-26.265631', '3.170915', '-553.012085', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4130827', 4130827, '-105.577202', '20.767460', '-487.358002', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4130829', 4130829, '-155.776306', '20.648140', '-534.493225', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4130832', 4130832, '-62.007500', '3.030127', '-631.860474', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4130836', 4130836, '-61.692261', '4.837097', '-580.163330', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4130839', 4130839, '-91.172493', '13.691580', '-698.557617', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4130842', 4130842, '-16.285299', '3.398638', '-675.862915', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 27, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4131461', 4131461, '82.139282', '2.612924', '-669.048584', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4131466', 4131466, '80.602791', '2.681827', '-667.547119', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4131467', 4131467, '142.968597', '2.741290', '-677.939270', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4131470', 4131470, '166.607895', '8.180286', '-517.830872', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127150, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4131473', 4131473, '97.571892', '10.129180', '-455.764313', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126878, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4131477', 4131477, '48.494888', '6.708367', '-437.703308', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126606, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4131480', 4131480, '12.300930', '7.902957', '-513.924316', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126334, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4131487', 4131487, '-19.243019', '5.989767', '-481.780304', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 26, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126062, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4131489', 4131489, '45.965000', '4.000000', '-353.260895', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125790, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4131491', 4131491, '44.038780', '4.000000', '-355.090515', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 29, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125518, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4131492', 4131492, '-277.563599', '21.317619', '-408.466705', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4131494', 4131494, '-220.691895', '23.733870', '-445.561493', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4131495', 4131495, '-203.367996', '20.050930', '-538.838074', 57, 0, 0, 0, 1, 6, 0, 0, 564, 0, '0.000000', 28, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132134', 4132134, '-23.739849', '6.019080', '-587.944885', 174, 0, 0, 0, 1, 6, 0, 0, 303, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124382, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132161', 4132161, '-219.349106', '4.013124', '-175.605194', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132178', 4132178, '-223.713196', '3.981025', '-172.004196', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132179', 4132179, '-217.822601', '5.111694', '-152.941193', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132181', 4132181, '-255.092102', '4.214314', '-101.690002', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132182', 4132182, '-260.379913', '3.866467', '-142.158005', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120264, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132184', 4132184, '-284.843506', '4.387352', '-61.849739', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119992, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132186', 4132186, '-281.833313', '4.514743', '-60.248520', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119720, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132187', 4132187, '-330.772186', '4.539914', '-70.267380', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119448, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132191', 4132191, '-395.325806', '4.134359', '-44.501831', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119176, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132194', 4132194, '-412.872314', '3.503397', '-46.007912', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118904, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132197', 4132197, '-392.828613', '4.906980', '-40.147282', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118632, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132355', 4132355, '-121.233002', '7.370056', '452.140015', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90682, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132356', 4132356, '-38.284969', '7.583679', '405.569489', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118360, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132357', 4132357, '-30.167110', '8.163513', '413.107391', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118088, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132358', 4132358, '-78.294067', '8.377136', '475.181000', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90410, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132359', 4132359, '-112.962601', '7.400574', '493.125702', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90138, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132360', 4132360, '-118.791496', '6.423950', '489.219513', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89866, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132361', 4132361, '-4.867676', '10.116700', '466.422485', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117816, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132362', 4132362, '74.448730', '8.224609', '416.708588', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117544, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132363', 4132363, '-96.391296', '12.802250', '545.708374', 356, 0, 0, 0, 1, 6, 0, 0, 307, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117272, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132364', 4132364, '-162.951096', '7.675232', '421.805206', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89594, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132367', 4132367, '-195.513901', '8.987488', '460.166290', 2268, 0, 0, 0, 1, 6, 0, 0, 2191, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89322, 6, 1, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4132371', 4132371, '-247.455597', '14.572330', '601.159729', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117024, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132373', 4132373, '-265.674896', '14.389220', '594.628723', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116752, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132374', 4132374, '-409.506897', '2.863013', '643.319275', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116480, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132375', 4132375, '-373.173615', '1.482062', '830.041687', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116208, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132376', 4132376, '-303.572998', '0.554237', '737.432800', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132377', 4132377, '-285.938812', '8.895996', '674.952271', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115664, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132378', 4132378, '-321.243011', '0.748059', '738.623108', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132379', 4132379, '-228.992203', '-0.198364', '779.568115', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132381', 4132381, '-214.807693', '1.408311', '692.128296', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132385', 4132385, '30.807980', '25.375731', '552.178101', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114576, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132386', 4132386, '86.625488', '18.020809', '513.389587', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114304, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132387', 4132387, '152.666504', '8.346619', '585.931030', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132389', 4132389, '95.506104', '14.938600', '536.278198', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132390', 4132390, '-41.311451', '8.914728', '618.996887', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132391', 4132391, '55.148140', '12.639380', '622.588928', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132394', 4132394, '99.351440', '5.569519', '656.366699', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132395', 4132395, '49.166569', '12.003170', '629.394592', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132398', 4132398, '-155.296402', '-0.249691', '684.087891', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112406, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132402', 4132402, '-128.552399', '-6.248472', '698.360413', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132403', 4132403, '-82.598297', '-7.092235', '672.947815', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132404', 4132404, '-47.857578', '-2.212809', '690.802612', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132405', 4132405, '-43.152802', '-0.921682', '679.936829', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132406', 4132406, '-28.558571', '-0.125700', '752.652527', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132407', 4132407, '-54.816002', '-0.469275', '771.766785', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132408', 4132408, '-157.322098', '-1.367114', '781.628418', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132409', 4132409, '-162.195999', '-0.433001', '772.940186', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132410', 4132410, '-153.362198', '0.387354', '735.776123', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132411', 4132411, '-99.790901', '-2.270120', '789.114685', 17, 0, 0, 0, 1, 6, 0, 0, 132, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132415', 4132415, '-174.253799', '4.062513', '619.920715', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109408, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4132416', 4132416, '103.926498', '3.903357', '915.233887', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4133094', 4133094, '136.949707', '3.216623', '756.322510', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4133095', 4133095, '256.006012', '6.944463', '820.505676', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108604, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4133096', 4133096, '200.758102', '5.104731', '868.748230', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4133097', 4133097, '152.132797', '4.348816', '821.800720', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108060, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4133098', 4133098, '194.324295', '4.776027', '863.148987', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107788, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4133099', 4133099, '229.417892', '4.637394', '902.513123', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107516, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4133100', 4133100, '83.255379', '4.406397', '848.491577', 190, 0, 0, 0, 1, 6, 0, 0, 264, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107244, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4133102', 4133102, '-428.485687', '5.673192', '569.950806', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106978, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4133105', 4133105, '-431.695404', '7.408978', '526.095520', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4133106', 4133106, '-391.061707', '7.983613', '532.203613', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106434, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4133107', 4133107, '-311.320892', '6.989801', '543.801514', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106162, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4133108', 4133108, '-385.831696', '6.261216', '581.952576', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105890, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4133109', 4133109, '-404.812103', '8.978989', '481.090607', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105618, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4133111', 4133111, '-435.612488', '7.492519', '530.732178', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4133112', 4133112, '-368.011810', '7.345028', '545.098206', 42, 0, 0, 0, 1, 6, 0, 0, 285, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105074, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4133142', 4133142, '2.160542', '13.238140', '867.918884', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133143', 4133143, '-9.752866', '13.238140', '862.073975', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104452, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133146', 4133146, '-38.601059', '-3.610238', '870.833984', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104180, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133147', 4133147, '3.913166', '5.198262', '844.633179', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133149', 4133149, '-23.697269', '-3.494385', '830.106018', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103636, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133150', 4133150, '-47.257198', '-4.837158', '821.164185', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133152', 4133152, '-99.204224', '-4.564651', '854.179871', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103092, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133153', 4133153, '-91.265266', '-5.356507', '842.750183', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133155', 4133155, '-104.580101', '-4.512669', '850.706116', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102542, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133160', 4133160, '-40.085510', '-3.585876', '880.033630', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102270, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133166', 4133166, '23.838100', '-0.302399', '832.912781', 18, 0, 0, 0, 1, 6, 0, 0, 321, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133167', 4133167, '31.011000', '5.208305', '877.738525', 19, 0, 0, 0, 1, 6, 0, 0, 324, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101732, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133171', 4133171, '23.808920', '0.563182', '709.098083', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101520, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133175', 4133175, '-208.948196', '-2.203250', '889.001587', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101272, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133854', 4133854, '-169.319504', '-3.498206', '849.864197', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101000, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133856', 4133856, '-294.270294', '5.081238', '808.072021', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100728, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133857', 4133857, '-252.533798', '3.371831', '695.150513', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100456, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133858', 4133858, '-360.768585', '11.544860', '664.182312', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100184, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133859', 4133859, '-93.662338', '7.398253', '582.921509', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99912, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133860', 4133860, '-173.964798', '7.509760', '511.382202', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133861', 4133861, '-63.357861', '7.614773', '373.184204', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99368, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133862', 4133862, '30.766090', '9.412603', '441.489288', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133863', 4133863, '-36.250969', '13.359000', '500.993500', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133864', 4133864, '127.540901', '8.141046', '481.803406', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98552, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(323, 'e0080', 'bnpc4133865', 4133865, '80.714157', '14.492840', '579.852722', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98280, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133866', 4133866, '-16.843950', '17.676241', '580.152710', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98008, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133867', 4133867, '24.143961', '2.411896', '671.088074', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97736, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133868', 4133868, '140.561096', '7.403133', '627.360474', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97464, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133869', 4133869, '96.573219', '4.412809', '794.674683', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133870', 4133870, '197.362503', '4.724640', '803.828918', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133872', 4133872, '130.937607', '8.480643', '895.933289', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 32, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133874', 4133874, '-1.962330', '-3.925701', '819.197571', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133877', 4133877, '-40.858768', '-4.353204', '847.265625', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4133878', 4133878, '-102.367302', '-5.084877', '872.023987', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95832, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4134559', 4134559, '-383.817688', '-1.011531', '901.672424', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4134560', 4134560, '-288.511597', '10.613900', '859.882324', 357, 0, 0, 0, 1, 6, 0, 0, 290, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4134561', 4134561, '-351.064606', '6.710670', '883.250427', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95016, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4134562', 4134562, '200.244095', '10.299800', '649.805420', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92580, 1, 0, 0, 0, 24, 30058, 0, 0, 0), +(323, 'e0080', 'bnpc4134563', 4134563, '226.015793', '8.615845', '608.168701', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94750, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4134564', 4134564, '183.543503', '9.768476', '646.637512', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94400, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4135246', 4135246, '243.579697', '8.834900', '694.209229', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92308, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(323, 'e0080', 'bnpc4135251', 4135251, '295.658600', '8.371674', '624.363525', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94128, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4135252', 4135252, '224.383896', '9.530697', '660.020325', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93934, 1, 0, 0, 0, 24, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4135254', 4135254, '219.592499', '8.926453', '678.248291', 166, 0, 0, 0, 0, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91764, 1, 0, 0, 0, 24, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4135932', 4135932, '214.160294', '8.957031', '677.332581', 168, 0, 0, 0, 0, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93662, 1, 0, 0, 0, 24, 30060, 0, 0, 0), +(323, 'e0080', 'bnpc4135934', 4135934, '323.184814', '6.857816', '665.903687', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93312, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4135935', 4135935, '329.342285', '7.113992', '659.138672', 166, 0, 0, 0, 1, 6, 0, 0, 2155, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92036, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4135936', 4135936, '289.562012', '7.415476', '729.328918', 169, 0, 0, 0, 1, 6, 0, 0, 260, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93040, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4135937', 4135937, '238.798294', '8.794422', '722.661011', 168, 0, 0, 0, 1, 6, 0, 0, 252, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92846, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4136006', 4136006, '-7.705540', '1.187112', '-24.901859', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4136008', 4136008, '-62.727612', '-2.486439', '-1.833968', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4136009', 4136009, '-95.048462', '-2.365173', '28.824221', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4136012', 4136012, '-46.066471', '8.494778', '123.064003', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4136033', 4136033, '-271.290192', '10.421880', '211.047501', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4136034', 4136034, '-264.806305', '7.399314', '162.775604', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4136037', 4136037, '-177.294601', '7.125916', '20.614929', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4136039', 4136039, '43.869629', '35.416142', '165.728104', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4136040', 4136040, '-23.361570', '40.512569', '240.161697', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4136226', 4136226, '-131.853699', '13.179720', '86.700623', 358, 0, 0, 0, 1, 6, 0, 0, 243, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4137046', 4137046, '52.658810', '2.883911', '-257.434998', 740, 0, 0, 0, 0, 6, 0, 0, 253, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68890, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(323, 'e0080', 'bnpc4137048', 4137048, '55.832760', '2.914429', '-254.505203', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66992, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4137050', 4137050, '79.179077', '3.768982', '-271.045990', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71054, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4137065', 4137065, '21.736320', '5.244883', '-278.538391', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70782, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4137066', 4137066, '57.419899', '4.007567', '-299.611694', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66176, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4137892', 4137892, '-39.719238', '-0.900330', '-152.208694', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71326, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4137893', 4137893, '-91.355766', '-1.724304', '-58.945621', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68074, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4137894', 4137894, '-71.905777', '-1.906798', '-74.343948', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66448, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4137912', 4137912, '-174.456406', '39.993900', '160.387604', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72414, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4137914', 4137914, '-174.029205', '39.993900', '155.352097', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55834, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4137915', 4137915, '-169.848206', '39.993900', '158.342804', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65088, 2, 0, 0, 0, 42, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4137927', 4137927, '-140.215103', '18.539671', '118.211700', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67264, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(323, 'e0080', 'bnpc4137928', 4137928, '-103.074699', '27.908689', '120.592003', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70516, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4137929', 4137929, '-135.423798', '37.125118', '176.409500', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72686, 2, 0, 0, 0, 42, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4137937', 4137937, '-95.628304', '45.792240', '195.269699', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56106, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(323, 'e0080', 'bnpc4137938', 4137938, '-61.905880', '44.937740', '212.664902', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65632, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(323, 'e0080', 'bnpc4137941', 4137941, '-88.853271', '43.381351', '152.910599', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65904, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(323, 'e0080', 'bnpc4137947', 4137947, '-24.093990', '38.986820', '206.042603', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55018, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4137948', 4137948, '-44.113831', '43.259281', '222.186493', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71598, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4137953', 4137953, '-163.534897', '40.000000', '151.507095', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55290, 2, 0, 0, 0, 42, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4137955', 4137955, '24.765381', '2.761841', '-0.717224', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66720, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(323, 'e0080', 'bnpc4137956', 4137956, '-79.850456', '45.792240', '193.377594', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71870, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4137966', 4137966, '-42.954159', '8.255066', '51.499149', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70244, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4137967', 4137967, '-112.382797', '12.191960', '75.883057', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68618, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4137979', 4137979, '75.730469', '25.253660', '204.974396', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55562, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4137980', 4137980, '111.253502', '13.778870', '152.666504', 742, 0, 0, 0, 1, 6, 0, 0, 1879, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72142, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4137982', 4137982, '124.528801', '13.931460', '143.175400', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65360, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(323, 'e0080', 'bnpc4137991', 4137991, '112.391602', '9.231154', '192.303696', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 49, 0, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 54734, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4137993', 4137993, '111.772301', '8.529010', '204.422699', 741, 0, 0, 0, 1, 6, 0, 0, 2296, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69700, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4138003', 4138003, '145.462601', '13.997980', '239.934799', 740, 0, 0, 0, 1, 6, 0, 0, 1880, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68346, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4138054', 4138054, '244.128998', '7.980469', '-24.460270', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40838, 2, 0, 0, 0, 44, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4138055', 4138055, '208.087296', '7.980469', '104.387001', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41110, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4138056', 4138056, '164.005997', '7.818353', '-31.478350', 739, 0, 0, 0, 1, 6, 0, 0, 1837, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40572, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4138061', 4138061, '345.326508', '8.771392', '-44.180370', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 48, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 41914, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4138062', 4138062, '273.090698', '11.734130', '-9.628479', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42464, 2, 0, 0, 0, 44, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4138065', 4138065, '103.105103', '15.030030', '20.462339', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 48, 0, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 41642, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4138066', 4138066, '76.493408', '12.191390', '20.402031', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42192, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4138067', 4138067, '117.584900', '15.938490', '11.404420', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41382, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4138716', 4138716, '176.348495', '13.992490', '240.985703', 742, 0, 0, 0, 0, 6, 0, 0, 1879, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54462, 2, 0, 0, 0, 35, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4138717', 4138717, '158.251205', '13.992490', '254.322006', 741, 0, 0, 0, 1, 6, 0, 0, 2296, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69428, 2, 0, 0, 0, 35, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4138718', 4138718, '174.425797', '13.992490', '235.339798', 740, 0, 0, 0, 0, 6, 0, 0, 1880, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67802, 2, 0, 0, 0, 35, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4138722', 4138722, '129.299393', '7.759512', '330.730286', 741, 0, 0, 0, 1, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69972, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4138723', 4138723, '127.946899', '7.071052', '376.910889', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67530, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4138736', 4138736, '45.873520', '23.511459', '-135.133301', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85730, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4138737', 4138737, '34.941601', '23.511471', '-143.619507', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85464, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4140356', 4140356, '38.925659', '23.483580', '-138.689301', 369, 0, 0, 0, 0, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85192, 1, 0, 0, 0, 32, 30073, 0, 0, 0), +(323, 'e0080', 'bnpc4140357', 4140357, '40.383900', '23.511459', '-138.534897', 367, 0, 0, 0, 0, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84914, 1, 0, 0, 0, 32, 30079, 0, 0, 0), +(323, 'e0080', 'bnpc4140358', 4140358, '42.540970', '17.713570', '-101.085297', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84642, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4140359', 4140359, '45.869240', '22.788361', '-122.945396', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84376, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4140360', 4140360, '-3.844561', '8.435183', '-93.056000', 367, 0, 0, 0, 1, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84098, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4140361', 4140361, '-11.875860', '6.747277', '-75.913834', 369, 0, 0, 0, 1, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83832, 1, 0, 0, 0, 32, 30096, 0, 0, 0), +(323, 'e0080', 'bnpc4140362', 4140362, '-6.949590', '8.713659', '-105.002502', 367, 0, 0, 0, 0, 6, 0, 0, 337, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83554, 1, 0, 0, 0, 32, 30082, 0, 0, 0), +(323, 'e0080', 'bnpc4140363', 4140363, '-8.319045', '8.596273', '-104.796700', 369, 0, 0, 0, 0, 6, 0, 0, 339, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83288, 1, 0, 0, 0, 32, 30079, 0, 0, 0), +(323, 'e0080', 'bnpc4140373', 4140373, '62.782619', '3.445141', '-267.002686', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82980, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140376', 4140376, '-24.128490', '-0.222955', '-159.058701', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82708, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140377', 4140377, '-83.108093', '-14.744680', '-157.238297', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82436, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140379', 4140379, '-97.737221', '-14.744680', '-145.298904', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82164, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140380', 4140380, '-94.201157', '-14.744680', '-142.907806', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81892, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140381', 4140381, '-95.134377', '-14.397570', '-169.786697', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81620, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140383', 4140383, '-53.365379', '-16.085800', '-169.063507', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81348, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140384', 4140384, '-62.683842', '-1.205086', '-107.887497', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81076, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140386', 4140386, '-131.578598', '1.541138', '-134.599899', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80804, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140387', 4140387, '-84.214539', '-1.937927', '-49.942810', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80532, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140388', 4140388, '-95.933533', '-0.900330', '-15.945740', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80260, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140392', 4140392, '-94.041443', '-0.961365', '-14.877620', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79988, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140393', 4140393, '-43.289860', '-1.571716', '1.235901', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140394', 4140394, '-14.218010', '4.090468', '36.143909', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140395', 4140395, '-17.297621', '4.967797', '39.749630', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140398', 4140398, '-101.304703', '12.741210', '80.552368', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140400', 4140400, '-144.371704', '-1.052405', '41.807720', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140401', 4140401, '-107.255699', '28.030760', '124.498299', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140402', 4140402, '-52.008862', '11.528760', '192.386597', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140404', 4140404, '-283.105499', '9.536800', '201.528900', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140405', 4140405, '-118.150597', '4.442561', '248.788605', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140406', 4140406, '-114.824203', '4.493244', '246.347107', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140407', 4140407, '-183.400894', '40.000000', '157.241699', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140408', 4140408, '-169.404205', '40.000000', '143.694000', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140409', 4140409, '-126.916702', '37.668209', '186.635406', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140410', 4140410, '-83.693520', '45.889679', '179.053299', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140411', 4140411, '-85.551117', '45.811230', '209.439102', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140412', 4140412, '20.889589', '36.758911', '209.735199', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140413', 4140413, '112.923897', '13.990590', '141.405304', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140414', 4140414, '160.982407', '13.997970', '233.444595', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140416', 4140416, '146.294601', '13.997970', '244.723495', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140417', 4140417, '124.652702', '8.457688', '313.738892', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140419', 4140419, '139.964203', '7.391594', '192.456802', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140420', 4140420, '224.634705', '8.093283', '86.476837', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140421', 4140421, '253.877808', '8.000000', '-33.567520', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140422', 4140422, '295.798798', '8.000000', '-26.774521', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140423', 4140423, '297.220490', '8.000000', '-29.494390', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4140427', 4140427, '117.781403', '9.346180', '-7.032808', 134, 0, 0, 0, 1, 6, 0, 0, 912, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72916, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4142005', 4142005, '-268.913208', '4.851185', '-90.289322', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4142007', 4142007, '-359.236389', '4.669468', '-59.445290', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4142009', 4142009, '-420.227386', '6.206403', '-20.966650', 134, 0, 0, 0, 1, 6, 0, 0, 116, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4142018', 4142018, '-42.274540', '10.032320', '171.660904', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69162, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4142028', 4142028, '-93.827759', '45.792240', '199.145401', 739, 0, 0, 0, 0, 6, 0, 0, 2297, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64816, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4313527', 4313527, '313.771210', '7.980469', '-31.998230', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51244, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(323, 'e0080', 'bnpc4313538', 4313538, '287.709015', '8.000000', '-40.641960', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50972, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(323, 'e0080', 'bnpc4313539', 4313539, '417.063385', '17.715700', '-63.623531', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50688, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4313540', 4313540, '355.620087', '9.881611', '-35.813759', 740, 0, 0, 0, 1, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50422, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4313547', 4313547, '445.548096', '16.678040', '-115.800697', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50156, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(323, 'e0080', 'bnpc4313549', 4313549, '409.744812', '12.774850', '-100.924301', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49812, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4313550', 4313550, '552.483398', '7.583679', '-164.965302', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 49594, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4313551', 4313551, '481.528900', '7.614197', '-157.915604', 741, 0, 0, 0, 0, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49328, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(323, 'e0080', 'bnpc4313552', 4313552, '484.977386', '7.614197', '-157.701996', 740, 0, 0, 0, 0, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49062, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(323, 'e0080', 'bnpc4313556', 4313556, '509.282410', '7.599621', '-134.754105', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48724, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4313557', 4313557, '519.299988', '7.581244', '-127.391800', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48452, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4313560', 4313560, '533.592712', '7.583679', '-79.881042', 742, 0, 0, 0, 0, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47146, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4313561', 4313561, '549.797729', '7.583679', '-92.454468', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48240, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4313562', 4313562, '534.650330', '7.599616', '-75.784973', 740, 0, 0, 0, 0, 6, 0, 0, 1839, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47974, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4313563', 4313563, '569.926575', '7.599619', '-77.731194', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47708, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(323, 'e0080', 'bnpc4313564', 4313564, '549.767212', '7.599621', '-67.267418', 739, 0, 0, 0, 0, 6, 0, 0, 1837, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 47436, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(323, 'e0080', 'bnpc4313565', 4313565, '442.353912', '18.401279', '-84.513977', 190, 0, 0, 0, 1, 6, 0, 0, 1841, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46820, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(323, 'e0080', 'bnpc4313572', 4313572, '631.942383', '7.123771', '-69.111237', 742, 0, 0, 0, 1, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46602, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4329911', 4329911, '-253.803406', '23.269960', '-431.265686', 2188, 0, 0, 0, 6, 6, 0, 0, 1993, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123578, 4, 1, 0, 0, 0, 0, 4329909, 0, 0), +(323, 'e0080', 'bnpc4333133', 4333133, '-201.984695', '24.429350', '-469.400787', 2188, 0, 0, 0, 6, 6, 0, 0, 1993, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122442, 4, 1, 0, 0, 0, 0, 4329909, 0, 0), +(323, 'e0080', 'bnpc4333143', 4333143, '-91.031189', '14.631890', '-220.647095', 2260, 0, 0, 0, 1, 6, 0, 0, 1999, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122182, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4333144', 4333144, '-95.213539', '14.640040', '-232.687607', 2259, 0, 0, 0, 1, 6, 0, 0, 1998, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121904, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4515628', 4515628, '230.071304', '10.431990', '28.589081', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45208, 2, 0, 0, 0, 0, 0, 4515627, 0, 0), +(323, 'e0080', 'bnpc4515630', 4515630, '306.129913', '8.000000', '-35.433121', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44936, 2, 0, 0, 0, 0, 0, 4515617, 0, 0), +(323, 'e0080', 'bnpc4515631', 4515631, '409.323212', '17.164120', '-66.182114', 2457, 0, 0, 0, 2, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44664, 2, 0, 0, 0, 0, 0, 4515622, 0, 0), +(323, 'e0080', 'bnpc4515632', 4515632, '450.431000', '18.142941', '-98.527527', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44392, 2, 0, 0, 0, 0, 0, 4515619, 0, 0), +(323, 'e0080', 'bnpc4515633', 4515633, '528.573975', '7.599619', '-123.610298', 2457, 0, 0, 0, 5, 6, 0, 0, 2303, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44120, 2, 0, 0, 0, 0, 0, 4515626, 0, 0), +(323, 'e0080', 'bnpc4522053', 4522053, '-108.508598', '-1.658285', '50.827759', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64550, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4522057', 4522057, '-20.309811', '4.196167', '-48.355900', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 2, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64278, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4522061', 4522061, '-208.789200', '7.827881', '41.184078', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 3, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 64006, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4522063', 4522063, '-277.088593', '16.372860', '105.149902', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 4, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63734, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4522065', 4522065, '-233.600403', '7.156433', '195.910507', 2452, 0, 0, 0, 0, 6, 0, 0, 1390, 0, '0.000000', 43, 1, 120, 1, 0, 5, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63462, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4522066', 4522066, '102.342300', '15.152160', '25.375731', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 10, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 39762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4522067', 4522067, '-24.155090', '7.522644', '120.195297', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 63190, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4522069', 4522069, '-114.458000', '7.766785', '222.339096', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62918, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4522077', 4522077, '-43.839230', '7.949890', '350.362305', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4522101', 4522101, '108.016403', '9.690581', '194.451294', 2452, 0, 0, 0, 0, 6, 0, 0, 1877, 0, '0.000000', 46, 1, 120, 1, 0, 9, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 62374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4522396', 4522396, '-21.478930', '2.767368', '-38.678539', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62078, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4522398', 4522398, '-207.376999', '7.622232', '46.231140', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 3, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61824, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(323, 'e0080', 'bnpc4522399', 4522399, '-234.055893', '7.389282', '200.963898', 742, 0, 0, 0, 0, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 5, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61534, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4522406', 4522406, '-105.390503', '-1.773797', '46.289669', 742, 0, 0, 0, 0, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 1, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61262, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4522407', 4522407, '-271.650208', '14.867290', '104.792099', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 4, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 61008, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(323, 'e0080', 'bnpc4522411', 4522411, '-100.910103', '-1.501870', '50.329479', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60736, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4522416', 4522416, '-109.675301', '7.278503', '224.872192', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 7, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 60452, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4522419', 4522419, '-28.614960', '7.609998', '118.196198', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 6, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 60180, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4522420', 4522420, '-39.757469', '7.899223', '353.966003', 741, 0, 0, 0, 0, 6, 0, 0, 249, 0, '0.000000', 47, 0, 120, 1, 0, 8, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 59908, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(323, 'e0080', 'bnpc4522421', 4522421, '-27.695190', '7.583679', '129.961105', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59642, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4522422', 4522422, '-117.326698', '6.179810', '229.419296', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59370, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4522424', 4522424, '-52.859360', '7.196684', '358.597412', 740, 0, 0, 0, 1, 6, 0, 0, 253, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59098, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4522427', 4522427, '554.650085', '7.583679', '-67.246582', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 14, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43854, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4522544', 4522544, '557.138977', '7.599622', '-162.231705', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 15, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43582, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4522545', 4522545, '413.717804', '17.929260', '-60.318909', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 12, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43310, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4522546', 4522546, '349.712006', '9.286700', '-45.325851', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 13, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 43038, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4522547', 4522547, '291.672913', '8.000000', '-42.948238', 2453, 0, 0, 0, 0, 6, 0, 0, 1878, 0, '0.000000', 49, 0, 120, 1, 0, 11, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 42766, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4522549', 4522549, '227.166595', '8.620508', '78.546181', 741, 0, 0, 0, 1, 6, 0, 0, 1838, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40288, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4522550', 4522550, '408.039398', '12.424580', '-131.584198', 742, 0, 0, 0, 1, 6, 0, 0, 1840, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40010, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4524149', 4524149, '-46.524780', '-1.266479', '10.910160', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58826, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4524160', 4524160, '-52.610519', '-1.409638', '13.605740', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58548, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4524163', 4524163, '14.724910', '1.785278', '16.159300', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58276, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4524164', 4524164, '20.839840', '2.344519', '13.486760', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58010, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4524175', 4524175, '-136.317200', '10.889600', '-70.746132', 740, 0, 0, 0, 1, 6, 0, 0, 1388, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57738, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4524176', 4524176, '-142.403000', '11.520290', '-68.050552', 741, 0, 0, 0, 1, 6, 0, 0, 1389, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57460, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4524179', 4524179, '-124.245399', '6.484659', '-98.137253', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57200, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4524181', 4524181, '-155.565796', '6.332458', '-43.106812', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56910, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4524206', 4524206, '-163.683502', '7.064880', '7.705750', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56656, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4524215', 4524215, '-100.204201', '12.076750', '75.251801', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56366, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4553442', 4553442, '-200.593903', '7.600075', '38.475250', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54190, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4553443', 4553443, '-17.239441', '3.551795', '-44.301022', 739, 0, 0, 0, 0, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 2, 0, 32, 1, 0, 0, 0, 1, 0, '0.000000', '1.000000', 53936, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(323, 'e0080', 'bnpc4553444', 4553444, '-243.102203', '7.628644', '196.886398', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53664, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4553445', 4553445, '-277.132202', '14.459210', '114.208504', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53374, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4553446', 4553446, '-118.333702', '6.485046', '-90.318237', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53102, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4553447', 4553447, '-143.133606', '6.438087', '-36.288349', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52848, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4553448', 4553448, '-160.387604', '7.156433', '27.054199', 739, 0, 0, 0, 1, 6, 0, 0, 245, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52576, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4553449', 4553449, '-63.000992', '-1.730121', '-63.235321', 742, 0, 0, 0, 1, 6, 0, 0, 258, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52286, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(323, 'e0080', 'bnpc4577401', 4577401, '-110.148399', '-0.815602', '-20.043240', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4621851', 4621851, '-468.283295', '-2.650424', '95.657677', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28328, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4621852', 4621852, '-103.113701', '45.811230', '205.494797', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 28062, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(323, 'e0080', 'bnpc4695634', 4695634, '-218.433502', '5.298542', '95.696121', 358, 0, 0, 0, 1, 6, 0, 0, 2511, 0, '0.000000', 43, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143752', 1143752, '468.733612', '-3.633345', '230.358597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161672, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143755', 1143755, '465.781586', '-3.677471', '229.602402', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161400, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143766', 1143766, '444.779510', '-3.136452', '238.420898', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128760, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143773', 1143773, '465.263000', '-2.447129', '258.256592', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161128, 7, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(324, 'e0081', 'bnpc1143778', 1143778, '428.447205', '-1.594615', '201.428604', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160856, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143785', 1143785, '418.397888', '-1.449695', '197.651093', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160584, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143787', 1143787, '419.881805', '-4.161774', '286.077789', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160312, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143790', 1143790, '437.705414', '-3.238991', '267.530212', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160040, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143793', 1143793, '423.775085', '-3.337628', '259.160889', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159768, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143797', 1143797, '424.763611', '-3.434183', '264.063385', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159496, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143811', 1143811, '449.264099', '-2.694139', '278.273193', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159224, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143813', 1143813, '447.361511', '-2.361451', '283.012695', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158952, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143833', 1143833, '324.665100', '-5.350893', '263.034088', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158680, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143834', 1143834, '326.416687', '-5.326731', '264.652008', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158408, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143836', 1143836, '228.076508', '-27.969830', '314.808807', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158142, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143844', 1143844, '226.947403', '-28.244499', '321.583801', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157870, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143846', 1143846, '232.074402', '-27.023769', '316.945099', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157598, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143852', 1143852, '245.166595', '-23.941450', '329.304901', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157326, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143853', 1143853, '243.701797', '-24.673880', '332.020996', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157054, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143858', 1143858, '238.841797', '-23.981850', '361.571594', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156782, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143859', 1143859, '234.742996', '-25.153990', '359.183594', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156510, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143860', 1143860, '184.706299', '-37.785229', '360.952393', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156238, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143861', 1143861, '217.364700', '-28.025049', '344.838593', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134750, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143862', 1143862, '218.412994', '-28.201860', '349.321411', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155966, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143865', 1143865, '215.228394', '-28.379271', '347.279999', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155694, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143866', 1143866, '185.345001', '-32.188919', '312.603790', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155422, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143868', 1143868, '188.006302', '-32.639091', '314.137390', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155150, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143873', 1143873, '209.412994', '-25.172079', '366.151306', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154878, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143875', 1143875, '178.562500', '-38.966068', '338.296814', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154606, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143876', 1143876, '144.823303', '-31.479410', '305.622894', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154334, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143877', 1143877, '146.196594', '-30.899561', '302.754211', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154062, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143878', 1143878, '152.851395', '-42.255760', '352.426392', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153790, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143879', 1143879, '149.193604', '-43.619991', '356.343506', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153518, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143881', 1143881, '158.525894', '-36.057110', '323.933685', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153246, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143882', 1143882, '163.927597', '-36.881100', '326.466705', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152974, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143885', 1143885, '159.594101', '-36.820061', '328.267303', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152702, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143886', 1143886, '172.482895', '-27.390930', '279.472900', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152430, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143887', 1143887, '176.999496', '-26.747681', '281.731201', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152158, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143889', 1143889, '171.282501', '-27.115330', '283.741486', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151886, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143891', 1143891, '197.201508', '-28.186390', '271.644287', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151614, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143892', 1143892, '200.589005', '-27.467010', '274.696106', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151342, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143895', 1143895, '197.110001', '-27.467581', '277.015503', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151070, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143897', 1143897, '246.082199', '-21.335920', '271.557007', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150798, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143900', 1143900, '229.912994', '-24.472389', '284.220306', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150526, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143904', 1143904, '243.488205', '-22.337280', '276.104187', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150254, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143905', 1143905, '237.018402', '-23.084021', '269.268188', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149982, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143907', 1143907, '242.685898', '-23.822359', '245.136795', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149710, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143911', 1143911, '224.510498', '-25.336050', '241.230103', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149438, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143915', 1143915, '241.148895', '-25.036400', '235.342697', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149166, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143916', 1143916, '236.107697', '-26.824610', '216.055893', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148894, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143919', 1143919, '246.995605', '-24.468109', '240.298096', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146718, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143920', 1143920, '265.723907', '-25.564400', '226.344604', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148622, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143921', 1143921, '265.719299', '-26.269621', '219.037994', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148350, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143923', 1143923, '268.421387', '-21.408449', '246.509399', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148078, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143924', 1143924, '264.054688', '-19.323090', '252.478806', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147806, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143925', 1143925, '295.377899', '-18.290230', '266.437103', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147534, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1143934', 1143934, '316.585999', '-16.832951', '187.871704', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143935', 1143935, '314.021301', '-17.296310', '192.256302', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143936', 1143936, '311.854492', '-17.875420', '189.936905', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143938', 1143938, '283.100586', '-25.497869', '192.706100', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109484, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143941', 1143941, '280.262390', '-25.619940', '193.316498', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143944', 1143944, '273.152496', '-20.649960', '128.760193', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110300, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143945', 1143945, '303.365509', '-8.872850', '95.128830', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143946', 1143946, '296.499603', '-11.734670', '103.927902', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109756, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143949', 1143949, '301.016296', '-10.037700', '103.164902', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110028, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143952', 1143952, '274.860687', '-13.992570', '103.746002', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143953', 1143953, '277.363190', '-13.962050', '102.250702', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143962', 1143962, '297.610199', '-23.044500', '220.886002', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143963', 1143963, '309.994110', '-18.136681', '184.117996', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143966', 1143966, '299.197113', '-21.964729', '223.815796', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143969', 1143969, '297.872894', '-12.140140', '107.895203', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143970', 1143970, '276.631500', '-19.656750', '126.440804', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143971', 1143971, '297.779785', '-22.690210', '161.913406', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98332, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143972', 1143972, '371.881592', '-6.723549', '84.641747', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98604, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143973', 1143973, '376.154114', '-6.318017', '85.862457', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97788, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143974', 1143974, '371.085114', '-5.840127', '88.055183', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98060, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143983', 1143983, '419.912994', '-4.654048', '77.439484', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98876, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143984', 1143984, '424.551697', '-3.646953', '81.803574', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99692, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143985', 1143985, '428.493103', '-1.675420', '69.168533', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143987', 1143987, '401.540802', '-6.912460', '58.247761', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143988', 1143988, '403.463715', '-6.369321', '60.898708', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99148, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143989', 1143989, '378.988312', '-7.187046', '68.955467', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99420, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143990', 1143990, '405.752197', '-6.460996', '59.106491', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97516, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143991', 1143991, '387.045013', '-4.837157', '93.705597', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97244, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1143998', 1143998, '390.177887', '-4.509761', '93.888512', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96972, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144003', 1144003, '223.302307', '-22.244350', '140.968201', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91864, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144004', 1144004, '217.578293', '-21.988300', '138.200897', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90504, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144007', 1144007, '185.015701', '-24.153931', '154.465500', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90232, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144008', 1144008, '179.410904', '-23.832951', '152.981903', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91592, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144009', 1144009, '167.197998', '-27.995230', '192.997803', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91320, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144011', 1144011, '177.798798', '-24.733610', '159.351395', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91048, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144015', 1144015, '138.902802', '-27.603621', '237.109894', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92680, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144017', 1144017, '88.530487', '-27.058380', '290.765411', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92136, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144019', 1144019, '84.896217', '-28.451370', '271.261688', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92408, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144027', 1144027, '-15.138880', '-52.068508', '438.953705', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144028', 1144028, '-12.361740', '-51.361629', '435.444214', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73126, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144030', 1144030, '-9.676152', '-51.078831', '436.725891', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144031', 1144031, '-21.414761', '-45.509689', '411.041412', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70950, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144042', 1144042, '9.536865', '-48.508480', '474.235107', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67964, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144043', 1144043, '3.205714', '-47.435299', '471.491486', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67420, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144045', 1144045, '-11.876680', '-52.218342', '458.182587', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68236, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144047', 1144047, '-30.001869', '-55.355400', '500.188385', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71222, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144049', 1144049, '-35.678230', '-53.471958', '498.265686', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144050', 1144050, '-16.922300', '-53.971210', '467.582214', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144051', 1144051, '-30.825859', '-54.086170', '495.671692', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144066', 1144066, '-215.322098', '-30.287540', '345.076813', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144067', 1144067, '-217.336304', '-30.232090', '345.381989', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72582, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144068', 1144068, '-241.359406', '-30.546400', '355.281891', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72854, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144074', 1144074, '-187.557999', '-30.827459', '327.431396', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144076', 1144076, '-189.083893', '-30.732161', '329.140411', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144079', 1144079, '-207.943893', '-30.040119', '327.783203', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144085', 1144085, '-207.568497', '-30.624901', '298.084900', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71494, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144088', 1144088, '-217.678604', '-29.217609', '281.772491', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144089', 1144089, '-232.330093', '-26.492390', '293.040802', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144090', 1144090, '-230.365494', '-26.618240', '295.168701', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144095', 1144095, '-236.490906', '-26.792789', '270.853088', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144102', 1144102, '-269.982300', '-15.041580', '257.233795', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88056, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144103', 1144103, '-256.205414', '-24.029810', '238.507599', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88328, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144108', 1144108, '-250.331604', '-26.539511', '245.353897', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87512, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144111', 1144111, '-247.374802', '-26.295010', '199.152298', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87784, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144115', 1144115, '-145.718704', '-44.456711', '245.994507', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89144, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144117', 1144117, '-194.954300', '-56.667259', '298.548615', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89688, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144124', 1144124, '-88.115013', '-50.887539', '355.110413', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76112, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144132', 1144132, '-180.289703', '-58.090000', '341.292908', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77200, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144134', 1144134, '-173.453705', '-58.488270', '346.267395', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76928, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144136', 1144136, '-248.384903', '-70.863403', '400.043610', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76656, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144155', 1144155, '-265.522308', '-78.660339', '495.811401', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64452, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1144156', 1144156, '94.651657', '-28.693371', '205.296204', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52672, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144157', 1144157, '58.451691', '-24.165310', '201.325806', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51856, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144161', 1144161, '142.662994', '-27.379681', '171.947693', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51584, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144163', 1144163, '72.983849', '-14.541890', '160.479095', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53216, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144165', 1144165, '28.954960', '-9.060006', '115.734299', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53760, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144166', 1144166, '62.516159', '-10.939160', '113.847504', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53488, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144167', 1144167, '33.890240', '-7.635654', '75.669441', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52400, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1144171', 1144171, '38.681568', '-7.743955', '37.247219', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52128, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1145781', 1145781, '314.148712', '-9.873041', '137.315598', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102412, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1145783', 1145783, '316.563904', '-11.553430', '155.556900', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102140, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1145785', 1145785, '310.839111', '-10.058590', '146.018997', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101868, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1145786', 1145786, '335.961487', '-6.303717', '151.505005', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102956, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1145792', 1145792, '334.663391', '-4.191054', '173.662903', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102684, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1145794', 1145794, '342.177307', '-3.911723', '174.273193', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100780, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1145797', 1145797, '356.749786', '-1.121761', '182.588501', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368415', 1368415, '451.260101', '-3.443870', '238.795807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147256, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1368437', 1368437, '390.890289', '-7.586338', '269.886292', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146984, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1368491', 1368491, '313.954803', '-6.875740', '27.206791', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112470, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368493', 1368493, '318.414001', '-7.856604', '-8.765156', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112198, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368494', 1368494, '337.636292', '-5.691662', '26.687981', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117910, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368495', 1368495, '360.321503', '-3.134459', '15.892390', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113830, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368496', 1368496, '364.258301', '-3.572027', '19.096781', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368497', 1368497, '353.728394', '-5.753780', '25.100679', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368498', 1368498, '321.866913', '-7.314247', '-15.243810', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114918, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368499', 1368499, '317.799591', '-6.363059', '23.605659', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114646, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368501', 1368501, '310.197205', '-8.609804', '2.999502', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113558, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368502', 1368502, '307.043396', '-8.701551', '-1.767205', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114374, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368503', 1368503, '307.209808', '-7.736371', '-25.314760', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114102, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368506', 1368506, '279.991913', '-7.195922', '-25.793631', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368507', 1368507, '275.332886', '-6.079346', '-51.364719', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117366, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368508', 1368508, '268.817902', '-7.622407', '-26.344280', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368509', 1368509, '276.584106', '-5.971716', '-40.277569', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112742, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368513', 1368513, '273.210785', '-9.038651', '1.056271', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117638, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368515', 1368515, '271.523804', '-11.769340', '30.395180', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368516', 1368516, '255.359695', '-9.109683', '4.562400', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368517', 1368517, '251.891006', '-8.924417', '10.996560', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368519', 1368519, '238.113907', '-10.699850', '39.986820', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368520', 1368520, '236.666702', '-11.041180', '47.762650', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111382, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368521', 1368521, '216.099899', '-5.217842', '15.486120', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111654, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368522', 1368522, '219.648102', '-5.708765', '19.837851', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111110, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368527', 1368527, '226.886307', '-11.459570', '69.291168', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110566, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368528', 1368528, '232.117203', '-11.721460', '66.985252', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110838, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368530', 1368530, '217.647400', '-9.632435', '55.535179', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111926, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368531', 1368531, '262.570892', '-13.984700', '50.050228', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113014, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368532', 1368532, '253.925293', '-13.748430', '50.339458', 32, 0, 0, 0, 1, 6, 0, 0, 32, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113286, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368537', 1368537, '36.721581', '-13.599010', '-35.811329', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368539', 1368539, '45.805561', '-2.063314', '-62.499821', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368540', 1368540, '43.942150', '-1.029362', '-68.421707', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368542', 1368542, '19.448151', '-0.446853', '-89.062424', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368546', 1368546, '57.928291', '9.733817', '-102.176399', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48054, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368548', 1368548, '55.925640', '6.821295', '-37.389530', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48326, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368554', 1368554, '68.129494', '7.053471', '-60.042889', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49142, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368555', 1368555, '94.406288', '8.411647', '-78.379066', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48598, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368556', 1368556, '145.311600', '6.469276', '-59.126930', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48870, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368560', 1368560, '117.309502', '6.760285', '-52.052681', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368561', 1368561, '160.460007', '3.641483', '-40.868118', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368562', 1368562, '-193.135696', '-32.369289', '261.702515', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368569', 1368569, '-19.247980', '-45.409012', '412.262085', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368570', 1368570, '-46.799500', '-47.531921', '426.291290', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368571', 1368571, '-36.310310', '-47.774849', '409.386902', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368577', 1368577, '354.033691', '-1.282395', '183.656601', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122256, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368578', 1368578, '338.217590', '-3.919866', '175.769104', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123072, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368579', 1368579, '320.962494', '-8.541780', '134.309296', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119264, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368580', 1368580, '311.398987', '-9.954162', '140.459198', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123344, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368582', 1368582, '313.089508', '-17.740789', '185.998001', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118176, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368583', 1368583, '274.723297', '-26.291660', '183.940598', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124160, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368584', 1368584, '304.162506', '-21.746981', '213.237000', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122800, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368587', 1368587, '273.532806', '-13.660890', '101.165001', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124976, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368590', 1368590, '303.309204', '-10.197260', '107.375298', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121984, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368591', 1368591, '372.633514', '-5.472790', '90.196060', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123888, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368594', 1368594, '376.821503', '-7.339636', '68.955467', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123616, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368596', 1368596, '410.155609', '-6.183658', '55.648460', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121440, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368597', 1368597, '412.797699', '-4.115298', '93.821388', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121168, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368598', 1368598, '362.752686', '-7.221369', '55.588570', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120624, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368600', 1368600, '330.403503', '-5.478035', '19.729870', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120080, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368601', 1368601, '340.436401', '-5.850005', '23.485689', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118720, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368602', 1368602, '334.164093', '-4.736384', '-1.168072', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120352, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368604', 1368604, '280.384491', '-6.088397', '-46.768951', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121712, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368605', 1368605, '246.078796', '-5.873863', '-10.449420', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122528, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368606', 1368606, '275.931305', '-10.226560', '7.661325', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118448, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368607', 1368607, '279.562286', '-10.758130', '40.909191', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118992, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368608', 1368608, '281.362915', '-10.660460', '38.721069', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119536, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368610', 1368610, '219.226303', '-10.849210', '70.298264', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125792, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368612', 1368612, '233.086899', '-9.948204', '40.259239', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124432, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368613', 1368613, '213.180206', '-3.941148', '-4.296664', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124704, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368614', 1368614, '207.285202', '-5.140594', '20.525330', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119808, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368616', 1368616, '239.936707', '-7.773538', '10.082270', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125520, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1368727', 1368727, '278.431305', '-15.600310', '291.462494', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146446, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1368728', 1368728, '265.339111', '-16.501490', '289.234711', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146174, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1369057', 1369057, '450.064789', '-3.280736', '237.567703', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145908, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369058', 1369058, '417.631012', '-3.443490', '258.794006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145636, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369059', 1369059, '431.584900', '-2.734727', '225.736801', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145364, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369060', 1369060, '433.904297', '-2.631201', '225.675797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145092, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369063', 1369063, '420.105713', '-3.826969', '244.376099', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144820, 7, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(324, 'e0081', 'bnpc1369064', 1369064, '420.595215', '-1.434317', '198.139404', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144548, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369066', 1369066, '420.503693', '-1.383187', '195.789505', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144264, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1369067', 1369067, '327.321198', '-5.054865', '262.409302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144004, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369069', 1369069, '418.255005', '-3.347633', '257.236389', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143720, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1369078', 1369078, '405.129486', '-6.796501', '230.618896', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143448, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1369079', 1369079, '379.850403', '-9.137354', '273.382690', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143188, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369081', 1369081, '282.579498', '-14.737670', '288.410797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142916, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369082', 1369082, '297.790985', '-17.412251', '269.611206', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142644, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369083', 1369083, '268.697693', '-19.984810', '251.224106', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142372, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369084', 1369084, '289.845093', '-14.468090', '305.104095', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142100, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369085', 1369085, '324.574585', '-14.779820', '286.915314', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141828, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369086', 1369086, '329.182800', '-13.956880', '285.480988', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141556, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369087', 1369087, '345.143799', '-11.551130', '289.967102', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141272, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1369088', 1369088, '252.741592', '-21.175320', '288.406799', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141012, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369089', 1369089, '218.890594', '-26.504971', '301.258789', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140740, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369090', 1369090, '219.501007', '-26.810150', '303.212006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140468, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369091', 1369091, '241.351898', '-22.922640', '271.923187', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140196, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369092', 1369092, '194.140503', '-27.267920', '297.596588', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139924, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369093', 1369093, '196.285995', '-27.929461', '274.390991', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139652, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369095', 1369095, '185.564896', '-32.730652', '315.266602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139380, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369096', 1369096, '161.730301', '-36.392811', '324.788208', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139108, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369097', 1369097, '167.315094', '-27.481541', '282.978485', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138836, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369098', 1369098, '142.931198', '-30.685940', '303.578186', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138564, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369099', 1369099, '172.080307', '-41.270390', '355.679108', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138292, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369101', 1369101, '217.456299', '-28.130699', '347.341095', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138020, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369102', 1369102, '216.124100', '-28.447210', '349.443512', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137748, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369103', 1369103, '185.566101', '-37.807560', '358.326202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137476, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369104', 1369104, '238.333801', '-24.868570', '356.358398', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137204, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369105', 1369105, '230.975800', '-27.237400', '321.187103', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136932, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369109', 1369109, '262.285889', '-26.207680', '223.339996', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136660, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369112', 1369112, '226.922302', '-24.500299', '282.846985', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136388, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369113', 1369113, '270.740814', '-25.894609', '219.684097', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136116, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369114', 1369114, '226.555206', '-25.225269', '239.887299', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135844, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369116', 1369116, '282.357086', '-23.535101', '244.795303', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135572, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369121', 1369121, '333.561310', '2.185390', '242.975006', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135300, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369126', 1369126, '391.683807', '0.442465', '197.375397', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135016, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1369127', 1369127, '374.291687', '0.069733', '177.932404', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125248, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369128', 1369128, '340.926086', '-4.172237', '171.404495', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103228, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369129', 1369129, '274.308289', '-21.454750', '133.409195', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101052, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369131', 1369131, '284.565399', '-25.650459', '196.215698', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101324, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369135', 1369135, '164.769394', '-24.938990', '163.613800', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92952, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1369136', 1369136, '126.420898', '-26.382891', '167.406693', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369137', 1369137, '128.709793', '-25.925119', '164.324402', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57556, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369138', 1369138, '131.686401', '-24.799540', '198.020599', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59188, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369139', 1369139, '74.797401', '-28.214760', '204.149094', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58372, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369140', 1369140, '71.341454', '-16.064501', '165.951599', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57828, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369141', 1369141, '69.103951', '-17.105560', '168.596893', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58100, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369142', 1369142, '48.614868', '-17.861691', '162.486298', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369143', 1369143, '69.590843', '-13.496570', '146.253998', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369146', 1369146, '39.957119', '-8.666501', '105.835701', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369147', 1369147, '52.015511', '-8.974514', '78.552917', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59732, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369148', 1369148, '45.149349', '-13.324360', '7.012329', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59460, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369149', 1369149, '17.379999', '-13.717900', '-20.370790', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 46, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369150', 1369150, '35.561901', '-13.693350', '-33.797138', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60004, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369151', 1369151, '44.338890', '-1.270125', '-66.438026', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60548, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369152', 1369152, '14.275760', '-0.570236', '-87.355873', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60276, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369153', 1369153, '31.780800', '-0.130703', '-85.079163', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369154', 1369154, '64.954559', '6.905480', '-85.581947', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369157', 1369157, '46.957291', '12.114440', '-121.487297', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 48, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369160', 1369160, '68.467163', '6.973328', '-53.543949', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369161', 1369161, '82.078217', '7.186952', '-63.706459', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58916, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369162', 1369162, '91.386230', '8.010939', '-78.294083', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58644, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369163', 1369163, '141.008499', '6.515503', '-53.391361', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369166', 1369166, '163.313705', '6.032107', '-46.804680', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369169', 1369169, '-31.436220', '-54.130669', '497.960510', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85614, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369174', 1369174, '21.103210', '-49.546139', '475.272614', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87246, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369177', 1369177, '-15.233060', '-53.066551', '466.036011', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85342, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369180', 1369180, '-48.539001', '-47.348751', '424.643188', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85070, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369183', 1369183, '-11.764770', '-51.560242', '438.742706', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86430, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369184', 1369184, '-91.746658', '-51.122200', '356.392212', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369185', 1369185, '-89.732468', '-51.292042', '358.650513', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369186', 1369186, '-116.542198', '-54.847111', '366.704803', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369187', 1369187, '-215.533707', '-63.035099', '360.219604', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369188', 1369188, '-179.797104', '-59.525509', '348.256592', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369189', 1369189, '-217.090103', '-64.042107', '364.888885', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84798, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369190', 1369190, '-255.542892', '-74.143631', '419.790894', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84526, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369191', 1369191, '-297.823914', '-79.049583', '481.552887', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369194', 1369194, '-267.105286', '-78.933182', '492.746185', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86702, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369197', 1369197, '-195.056107', '-32.913761', '285.816711', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63370, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369203', 1369203, '-194.417404', '-31.711460', '260.054596', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63914, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369206', 1369206, '-219.511200', '-30.548080', '332.944885', 2266, 0, 0, 0, 1, 6, 0, 0, 2189, 0, '0.000000', 29, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63642, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369210', 1369210, '-169.922607', '-51.790081', '281.324493', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86974, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369225', 1369225, '415.314301', '-4.384437', '279.848297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134484, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369226', 1369226, '417.664215', '-4.268155', '279.787292', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134200, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1369227', 1369227, '416.351898', '-4.344605', '282.320313', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133928, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1369245', 1369245, '106.026802', '-24.064631', '188.681503', 25, 0, 0, 0, 1, 6, 0, 0, 25, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52944, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1369266', 1369266, '110.856796', '6.893584', '-48.683529', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369268', 1369268, '106.950401', '7.553162', '-65.018799', 130, 0, 0, 0, 1, 6, 0, 0, 112, 0, '0.000000', 47, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60820, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369270', 1369270, '448.720703', '-3.422734', '241.608597', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133656, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1369283', 1369283, '400.411896', '-3.097628', '212.787003', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133396, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1369346', 1369346, '72.281059', '-23.743839', '185.561203', 130, 0, 0, 0, 1, 6, 0, 0, 171, 0, '0.000000', 37, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1373459', 1373459, '443.619507', '-3.181869', '264.612488', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127146, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1373461', 1373461, '448.051788', '-2.900265', '234.756104', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133112, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1373462', 1373462, '416.268707', '-3.808599', '263.633698', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132840, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1373464', 1373464, '474.141296', '-3.220261', '248.381897', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132568, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1373465', 1373465, '472.096588', '-3.385255', '246.489807', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132296, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1373466', 1373466, '475.150604', '-3.341773', '246.356903', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132036, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1373468', 1373468, '274.396088', '-14.909590', '275.718201', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127690, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1373469', 1373469, '166.918396', '-41.534370', '347.432587', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126874, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1373472', 1373472, '315.059814', '-12.244580', '158.583603', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101596, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1373473', 1373473, '320.444611', '-9.346396', '146.037094', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1373474', 1373474, '315.725800', '-9.276663', '126.870499', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1373475', 1373475, '321.508789', '-8.653498', '126.646599', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1373476', 1373476, '336.930115', '-3.588053', '182.083405', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1373477', 1373477, '323.688599', '-14.094800', '192.991898', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1373479', 1373479, '170.224701', '-26.854139', '298.491211', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131758, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1373480', 1373480, '259.386292', '-22.771570', '242.221405', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131486, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1373481', 1373481, '296.304993', '-24.768950', '202.106201', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1373482', 1373482, '160.660004', '-38.959309', '337.590302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131220, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1373497', 1373497, '335.683197', '-4.748982', '10.208240', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126602, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1373500', 1373500, '232.074402', '-6.008647', '2.020233', 1446, 0, 0, 0, 1, 6, 0, 0, 128, 0, '0.500000', 17, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127418, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1373502', 1373502, '393.522491', '-5.844142', '73.170151', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1373503', 1373503, '411.140686', '-5.930238', '61.455570', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1373504', 1373504, '347.812195', '-6.402293', '271.350494', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130936, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1373505', 1373505, '346.218903', '-6.677882', '272.394409', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130676, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1373507', 1373507, '292.224792', '-18.765341', '132.923004', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1373508', 1373508, '307.241913', '-8.558214', '101.772003', 5, 0, 0, 0, 1, 6, 0, 0, 5, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1417935', 1417935, '204.363998', '-30.869049', '325.184998', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130398, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1417936', 1417936, '206.500305', '-30.502831', '322.743500', 9, 0, 0, 0, 1, 6, 0, 0, 9, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130126, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1417937', 1417937, '206.591797', '-30.411280', '325.246002', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129860, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1417940', 1417940, '-165.340302', '-39.282860', '193.438599', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88872, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1417946', 1417946, '-298.084991', '-79.301208', '470.145599', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64724, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1417947', 1417947, '-302.235504', '-79.240173', '463.034912', 2265, 0, 0, 0, 1, 6, 0, 0, 2188, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64180, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1417948', 1417948, '-232.433594', '-26.853029', '279.165588', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78554, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1417949', 1417949, '-298.420685', '-54.795170', '303.761414', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1417950', 1417950, '-300.953705', '-54.459469', '309.101898', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79370, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1417951', 1417951, '-271.875885', '-52.291519', '281.696686', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78282, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1417952', 1417952, '-278.400909', '-54.097359', '324.329590', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79098, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1417953', 1417953, '-275.976593', '-51.020748', '335.645813', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 28, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1417954', 1417954, '-252.932907', '-58.400982', '302.113312', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78826, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1417955', 1417955, '-229.778000', '-27.208941', '284.492401', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78010, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1417956', 1417956, '-202.834305', '-30.699909', '342.864288', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77466, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1417957', 1417957, '-191.225204', '-44.687611', '220.141800', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1417958', 1417958, '-264.080414', '-22.174829', '238.910095', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1417959', 1417959, '-229.297394', '-35.111050', '231.403000', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1417960', 1417960, '-174.044495', '-40.534210', '200.048401', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89416, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1417961', 1417961, '-149.616501', '-45.683731', '252.513397', 17, 0, 0, 0, 1, 6, 0, 0, 17, 0, '0.000000', 27, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc1417968', 1417968, '-35.348652', '-13.415600', '-78.564903', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45346, 1, 0, 0, 0, 40, 30119, 0, 0, 0), +(324, 'e0081', 'bnpc1417973', 1417973, '-116.777298', '-9.689575', '-86.778084', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45074, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(324, 'e0081', 'bnpc1417975', 1417975, '-66.605652', '-8.194153', '-62.211121', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43714, 1, 0, 0, 0, 40, 30125, 0, 0, 0), +(324, 'e0081', 'bnpc1417976', 1417976, '-38.827709', '-13.552420', '-78.398163', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42904, 1, 0, 0, 0, 40, 30057, 0, 0, 0), +(324, 'e0081', 'bnpc1417977', 1417977, '-64.164253', '-8.163635', '-66.880310', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43986, 1, 0, 0, 0, 40, 30119, 0, 0, 0), +(324, 'e0081', 'bnpc1417978', 1417978, '-10.940770', '-10.482990', '-42.618488', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43176, 1, 0, 0, 0, 0, 30124, 0, 0, 0), +(324, 'e0081', 'bnpc1417979', 1417979, '-110.368500', '-9.353821', '-74.723450', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42632, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(324, 'e0081', 'bnpc1417981', 1417981, '-130.923203', '-9.875401', '-94.172653', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44802, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(324, 'e0081', 'bnpc1417982', 1417982, '-128.984497', '-10.045940', '-97.250549', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42088, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(324, 'e0081', 'bnpc1417983', 1417983, '-119.401901', '-9.597961', '-63.828548', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44530, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(324, 'e0081', 'bnpc1417984', 1417984, '-25.987261', '-7.826045', '-143.341904', 748, 0, 0, 0, 0, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(324, 'e0081', 'bnpc1417985', 1417985, '-46.618172', '-8.729055', '-147.223099', 747, 0, 0, 0, 1, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44258, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(324, 'e0081', 'bnpc1417986', 1417986, '-28.136749', '-8.067919', '-139.809906', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42360, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(324, 'e0081', 'bnpc1417987', 1417987, '-37.033691', '-9.445435', '-137.254898', 748, 0, 0, 0, 1, 6, 0, 0, 103, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41816, 1, 0, 0, 0, 40, 30063, 0, 0, 0), +(324, 'e0081', 'bnpc1417988', 1417988, '-28.400631', '-7.899245', '-144.824905', 747, 0, 0, 0, 0, 6, 0, 0, 436, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45618, 1, 0, 0, 0, 40, 30059, 0, 0, 0), +(324, 'e0081', 'bnpc1417991', 1417991, '59.539070', '-37.771149', '294.833313', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88600, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc1418004', 1418004, '315.449707', '-8.316214', '-13.626350', 136, 0, 0, 0, 1, 6, 0, 0, 118, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120896, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc2315589', 2315589, '-77.122833', '-6.427255', '-71.078758', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55386, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc2315590', 2315590, '-133.217896', '-9.529019', '-60.232140', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55930, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc2315591', 2315591, '-106.534103', '-12.212950', '-111.347603', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55658, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc2315592', 2315592, '-105.572998', '-9.525784', '-86.103401', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54570, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc2315593', 2315593, '-77.411713', '-13.583240', '-132.304901', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54298, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc2315595', 2315595, '-37.583012', '-11.337520', '-125.597000', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55114, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc2315596', 2315596, '-4.898193', '-11.638100', '-36.911621', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc2320968', 2320968, '417.338806', '-2.166638', '180.231598', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129576, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc2320969', 2320969, '422.079498', '-2.088056', '179.054596', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129316, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc2320970', 2320970, '421.093597', '-1.981825', '181.915405', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129032, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc2321008', 2321008, '38.345871', '11.978280', '-107.103104', 29, 0, 0, 0, 1, 6, 0, 0, 29, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49414, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc2321010', 2321010, '-46.306919', '-9.823078', '-139.634399', 141, 0, 0, 0, 1, 6, 0, 0, 174, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54842, 1, 0, 0, 0, 40, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc2321012', 2321012, '205.010406', '-24.383320', '145.800797', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89960, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc2321013', 2321013, '115.746803', '-26.867279', '252.730103', 11, 0, 0, 0, 1, 6, 0, 0, 11, 0, '0.000000', 25, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90776, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc2321016', 2321016, '14.364810', '-47.184280', '446.981415', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81268, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(324, 'e0081', 'bnpc2321017', 2321017, '8.855011', '-47.052078', '437.906494', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80996, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(324, 'e0081', 'bnpc2321018', 2321018, '23.615641', '-45.878761', '447.495605', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79908, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(324, 'e0081', 'bnpc2321019', 2321019, '-29.630119', '-53.701389', '454.788208', 40, 0, 0, 0, 1, 6, 0, 0, 40, 0, '0.000000', 25, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc2342034', 2342034, '-104.783699', '-51.407688', '385.580200', 30, 0, 0, 0, 1, 6, 0, 0, 30, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76384, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc2615829', 2615829, '247.882797', '-28.305531', '212.390305', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93998, 4, 0, 0, 0, 0, 30126, 0, 0, 0), +(324, 'e0081', 'bnpc2615830', 2615830, '219.897705', '-25.925119', '230.212799', 744, 0, 0, 0, 1, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95624, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc2615831', 2615831, '251.972198', '-28.702271', '209.338501', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95890, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc2615832', 2615832, '213.214203', '-27.298441', '257.099213', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96434, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc2615833', 2615833, '215.472595', '-27.237400', '253.040298', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94542, 4, 0, 0, 0, 0, 30119, 0, 0, 0), +(324, 'e0081', 'bnpc2615834', 2615834, '212.019608', '-27.601471', '252.518906', 744, 0, 0, 0, 0, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95080, 4, 0, 0, 0, 0, 30057, 0, 0, 0), +(324, 'e0081', 'bnpc2615835', 2615835, '223.315704', '-26.199789', '217.486801', 743, 0, 0, 0, 0, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93726, 4, 0, 0, 0, 0, 30125, 0, 0, 0), +(324, 'e0081', 'bnpc2615836', 2615836, '230.090698', '-25.436840', '224.750107', 745, 0, 0, 0, 1, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96162, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc2615837', 2615837, '251.606003', '-27.756210', '214.862198', 744, 0, 0, 0, 1, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94808, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc2849611', 2849611, '245.960098', '-27.145849', '217.639404', 743, 0, 0, 0, 1, 6, 0, 0, 192, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94270, 4, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc2849612', 2849612, '221.789795', '-25.833570', '222.369705', 745, 0, 0, 0, 0, 6, 0, 0, 194, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96706, 4, 0, 0, 0, 0, 30119, 0, 0, 0), +(324, 'e0081', 'bnpc2849614', 2849614, '218.411407', '-26.477131', '218.507996', 744, 0, 0, 0, 0, 6, 0, 0, 193, 0, '0.000000', 5, 0, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95352, 4, 0, 0, 0, 0, 30120, 0, 0, 0), +(324, 'e0081', 'bnpc3741110', 3741110, '73.289063', '-41.763981', '357.900299', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65534, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(324, 'e0081', 'bnpc3741111', 3741111, '90.043427', '-40.634819', '352.315491', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66072, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(324, 'e0081', 'bnpc3741112', 3741112, '85.557281', '-40.634819', '351.460999', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66610, 1, 0, 0, 0, 0, 30125, 0, 0, 0), +(324, 'e0081', 'bnpc3741117', 3741117, '73.065964', '-38.481918', '332.600189', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65262, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(324, 'e0081', 'bnpc3741118', 3741118, '52.970268', '-40.324650', '335.009186', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66344, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(324, 'e0081', 'bnpc3741119', 3741119, '68.443611', '-40.187721', '343.554413', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67154, 1, 0, 0, 0, 0, 30057, 0, 0, 0), +(324, 'e0081', 'bnpc3741122', 3741122, '53.208130', '-40.756901', '339.009613', 114, 0, 0, 0, 0, 6, 0, 0, 208, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65800, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(324, 'e0081', 'bnpc3741123', 3741123, '50.547020', '-40.461750', '336.659790', 113, 0, 0, 0, 0, 6, 0, 0, 209, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66882, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(324, 'e0081', 'bnpc3741124', 3741124, '53.528259', '-38.479301', '320.227112', 115, 0, 0, 0, 1, 6, 0, 0, 210, 0, '0.000000', 27, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64990, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(324, 'e0081', 'bnpc3741132', 3741132, '-284.870697', '-49.925079', '340.580109', 179, 0, 0, 0, 1, 6, 0, 0, 224, 0, '0.000000', 28, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77738, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc3741133', 3741133, '21.243629', '-45.595200', '442.469513', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80724, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(324, 'e0081', 'bnpc3741134', 3741134, '10.489580', '-47.098289', '439.071106', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81540, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(324, 'e0081', 'bnpc3741135', 3741135, '23.118601', '-45.096272', '440.785797', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80180, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(324, 'e0081', 'bnpc3741136', 3741136, '14.816470', '-45.761841', '435.965515', 170, 0, 0, 0, 1, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79636, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(324, 'e0081', 'bnpc3741137', 3741137, '21.488041', '-45.079990', '439.112488', 170, 0, 0, 0, 0, 6, 0, 0, 219, 0, '0.000000', 29, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80452, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(324, 'e0081', 'bnpc3741144', 3741144, '30.237329', '-47.804062', '466.828094', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69052, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc3741148', 3741148, '3.116203', '-49.230431', '481.867706', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69324, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc3741173', 3741173, '-41.599140', '-53.307251', '487.071014', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68508, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc3741178', 3741178, '28.775129', '-50.812210', '483.936310', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67692, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc3741198', 3741198, '-42.711262', '-52.666340', '491.020508', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 26, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68780, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc3741238', 3741238, '106.088799', '-22.112341', '171.394897', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc3741243', 3741243, '90.759720', '-19.997610', '170.030807', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46156, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc3741245', 3741245, '112.405098', '-22.569309', '167.395905', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45884, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc3741251', 3741251, '98.788353', '-23.465191', '165.496506', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc3741254', 3741254, '99.891838', '-23.128969', '165.796494', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc3741257', 3741257, '104.599197', '-23.865101', '164.789703', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc3741264', 3741264, '112.733398', '-22.251949', '161.306900', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc3741271', 3741271, '111.878098', '-22.535490', '167.695908', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc3870413', 3870413, '454.933990', '-1.199433', '198.847107', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21300, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(324, 'e0081', 'bnpc3870422', 3870422, '355.536987', '-9.878284', '296.848114', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21034, 5, 0, 0, 0, 0, 30055, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(324, 'e0081', 'bnpc3870434', 3870434, '313.523193', '-6.315191', '-66.822891', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20768, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(324, 'e0081', 'bnpc3870455', 3870455, '187.612900', '-2.180824', '-4.180596', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 49, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20484, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(324, 'e0081', 'bnpc3870460', 3870460, '107.120598', '-28.211399', '276.198486', 583, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20230, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(324, 'e0081', 'bnpc3870467', 3870467, '52.319149', '-39.485619', '244.958893', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19952, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(324, 'e0081', 'bnpc3870476', 3870476, '-125.156197', '-45.844360', '225.082901', 580, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19680, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(324, 'e0081', 'bnpc3870506', 3870506, '-54.058109', '-47.078789', '320.834991', 582, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19396, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(324, 'e0081', 'bnpc3871285', 3871285, '245.121399', '-27.767639', '161.763901', 581, 0, 0, 0, 0, 6, 0, 0, 453, 0, '0.000000', 35, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19130, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(324, 'e0081', 'bnpc3877610', 3877610, '460.799194', '-1.088999', '205.124603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128500, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc3897788', 3897788, '454.380188', '-1.495000', '207.570404', 37, 0, 0, 0, 1, 6, 0, 0, 37, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128216, 9, 0, 0, 0, 0, 30246, 0, 0, 0), +(324, 'e0081', 'bnpc3898013', 3898013, '448.109894', '-1.597685', '204.794403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127956, 9, 0, 0, 0, 0, 0, 0, 0, 0), +(324, 'e0081', 'bnpc4621558', 4621558, '-39.931252', '-7.787434', '-153.907501', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22586, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814948', 2814948, '110.277000', '23.605650', '-612.115723', 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34884, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814949', 2814949, '113.238602', '23.607740', '-612.232422', 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34612, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814952', 2814952, '45.401741', '23.520571', '-738.022583', 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34340, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814953', 2814953, '49.056969', '23.479090', '-738.310486', 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34068, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814956', 2814956, '125.655403', '23.332590', '-720.434692', 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33796, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814958', 2814958, '126.027397', '23.528891', '-716.605408', 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33524, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814959', 2814959, '123.335297', '24.111179', '-715.039612', 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33252, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814960', 2814960, '122.829903', '24.176411', '-721.965210', 2, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32980, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814963', 2814963, '179.367203', '23.644270', '-643.441711', 2, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32708, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814964', 2814964, '173.567703', '23.885700', '-643.233398', 2, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32436, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814965', 2814965, '173.492706', '24.805450', '-645.949890', 2, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32164, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814966', 2814966, '179.938599', '24.128510', '-646.818604', 2, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31892, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814968', 2814968, '219.743896', '21.668949', '-597.828430', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31588, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814969', 2814969, '224.665207', '21.489120', '-599.825989', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31316, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814970', 2814970, '212.328598', '24.061720', '-592.069397', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31044, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814971', 2814971, '213.743103', '23.057211', '-588.350891', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814972', 2814972, '214.443100', '23.136209', '-594.038330', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30500, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814973', 2814973, '211.407898', '23.471350', '-587.490173', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30228, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814974', 2814974, '216.601196', '22.318830', '-599.648804', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814975', 2814975, '227.137405', '21.547720', '-600.464783', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814976', 2814976, '230.325806', '22.214239', '-594.779114', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814977', 2814977, '233.022598', '23.435221', '-590.906799', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814978', 2814978, '230.522095', '21.769470', '-586.837280', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28868, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814979', 2814979, '230.497803', '22.280220', '-592.141724', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28596, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814980', 2814980, '229.057205', '21.380760', '-580.463013', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28324, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814981', 2814981, '220.652405', '21.268190', '-579.902893', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814982', 2814982, '224.434601', '21.299841', '-579.601196', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814983', 2814983, '215.952393', '21.829670', '-581.185974', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27508, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814984', 2814984, '220.055298', '21.624020', '-597.523926', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23300, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814985', 2814985, '224.965195', '21.470369', '-599.526001', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23844, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814986', 2814986, '212.628601', '23.976170', '-591.769287', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23572, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814987', 2814987, '214.043198', '22.886690', '-588.050903', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23028, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814988', 2814988, '214.738998', '22.981199', '-593.739014', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27108, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814989', 2814989, '211.707901', '23.226761', '-587.190186', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814990', 2814990, '216.901199', '22.299160', '-599.348816', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814991', 2814991, '227.437393', '21.589239', '-600.164795', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26292, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814992', 2814992, '230.625793', '22.337589', '-594.479126', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26020, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814993', 2814993, '233.322601', '23.534229', '-590.606812', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814994', 2814994, '230.822205', '21.784060', '-586.537292', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25476, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814995', 2814995, '230.797806', '22.351339', '-591.841675', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25204, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814996', 2814996, '229.357193', '21.307800', '-580.163025', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24932, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814997', 2814997, '220.952393', '21.263281', '-579.602905', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24660, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814998', 2814998, '224.734604', '21.337351', '-579.301086', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24388, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2814999', 2814999, '216.252396', '21.750050', '-580.885986', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24116, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2815000', 2815000, '215.013504', '22.981199', '-593.464172', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2815001', 2815001, '212.007904', '23.226761', '-586.890076', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22356, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2815002', 2815002, '217.201202', '22.299160', '-599.048828', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22084, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2815003', 2815003, '227.737396', '21.589239', '-599.864685', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21812, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2815004', 2815004, '230.925797', '22.337589', '-594.179077', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21540, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2815005', 2815005, '233.622604', '23.534229', '-590.306824', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21268, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2815006', 2815006, '231.122192', '21.784060', '-586.237305', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20996, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2815007', 2815007, '231.097794', '22.351339', '-591.541687', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20724, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2815008', 2815008, '229.657196', '21.307800', '-579.862976', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20452, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2815009', 2815009, '221.252396', '21.263281', '-579.302917', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20180, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2815010', 2815010, '225.034607', '21.337351', '-579.001221', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19908, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2815011', 2815011, '216.552399', '21.750050', '-580.585876', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19636, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2815012', 2815012, '225.265198', '21.470369', '-599.226013', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19364, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2815013', 2815013, '212.928604', '23.976170', '-591.469421', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19092, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2815014', 2815014, '220.355301', '21.624020', '-597.223877', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18820, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc2815015', 2815015, '214.343201', '22.886690', '-587.750916', 4, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18548, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126437', 4126437, '-350.774414', '60.171631', '-114.217003', 65, 0, 0, 0, 1, 6, 0, 0, 62, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126772', 4126772, '-352.653290', '55.848209', '-94.491707', 65, 0, 0, 0, 1, 6, 0, 0, 62, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81536, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126774', 4126774, '-320.438599', '53.743549', '-96.806549', 65, 0, 0, 0, 1, 6, 0, 0, 62, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81264, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126775', 4126775, '-320.138611', '60.230400', '-127.837799', 65, 0, 0, 0, 1, 6, 0, 0, 62, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80992, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126776', 4126776, '-317.718689', '59.229080', '-124.074898', 65, 0, 0, 0, 1, 6, 0, 0, 62, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126778', 4126778, '-342.451508', '64.508537', '-161.939301', 65, 0, 0, 0, 1, 6, 0, 0, 62, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80448, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126779', 4126779, '-340.071991', '64.500938', '-156.101807', 65, 0, 0, 0, 1, 6, 0, 0, 62, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80176, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126781', 4126781, '-303.273102', '62.302608', '-149.981003', 13, 0, 0, 0, 1, 6, 0, 0, 398, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126790', 4126790, '-302.025085', '63.145451', '-181.170395', 13, 0, 0, 0, 1, 6, 0, 0, 398, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126791', 4126791, '-252.109604', '63.981121', '-185.517593', 13, 0, 0, 0, 1, 6, 0, 0, 398, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126793', 4126793, '-247.891998', '63.959759', '-187.246796', 13, 0, 0, 0, 1, 6, 0, 0, 398, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79094, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126797', 4126797, '-212.220093', '67.001152', '-238.484497', 13, 0, 0, 0, 1, 6, 0, 0, 398, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126798', 4126798, '-234.424393', '64.164063', '-246.631607', 13, 0, 0, 0, 1, 6, 0, 0, 398, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126800', 4126800, '-265.156189', '63.779259', '-249.456497', 13, 0, 0, 0, 1, 6, 0, 0, 398, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78278, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126802', 4126802, '-211.217896', '67.209122', '-240.810501', 13, 0, 0, 0, 1, 6, 0, 0, 398, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78006, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126809', 4126809, '-193.176697', '71.634018', '-272.623596', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126812', 4126812, '-164.668396', '79.828140', '-263.318298', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126813', 4126813, '-127.923798', '82.259918', '-325.613312', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77196, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126828', 4126828, '-140.334305', '81.612297', '-316.766205', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126829', 4126829, '-124.052200', '79.229347', '-291.640015', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76652, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126830', 4126830, '-50.246071', '64.465584', '-307.680511', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76380, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126832', 4126832, '-54.884800', '64.472954', '-305.849396', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76108, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126839', 4126839, '-47.205139', '63.834221', '-271.118011', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126840', 4126840, '-9.166920', '67.539864', '-213.059998', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126843', 4126843, '20.694170', '71.412910', '-188.727600', 2, 0, 0, 0, 1, 6, 0, 0, 412, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75292, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126848', 4126848, '-320.332611', '55.375000', '-223.437897', 30, 0, 0, 0, 1, 6, 0, 0, 365, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75026, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126851', 4126851, '-335.856598', '50.124779', '-293.071106', 30, 0, 0, 0, 1, 6, 0, 0, 365, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74754, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126853', 4126853, '-291.706696', '54.062618', '-289.723114', 30, 0, 0, 0, 1, 6, 0, 0, 365, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126854', 4126854, '-350.974792', '51.937672', '-265.973114', 30, 0, 0, 0, 1, 6, 0, 0, 365, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126856', 4126856, '-394.270294', '47.225811', '-265.673096', 30, 0, 0, 0, 1, 6, 0, 0, 365, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126857', 4126857, '-380.974609', '48.795952', '-318.552704', 30, 0, 0, 0, 1, 6, 0, 0, 365, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126859', 4126859, '-403.050812', '46.469891', '-308.322906', 30, 0, 0, 0, 1, 6, 0, 0, 365, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126864', 4126864, '-252.033295', '64.316650', '-320.058014', 2269, 0, 0, 0, 1, 6, 0, 0, 2192, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66618, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126867', 4126867, '-302.418610', '67.307503', '-302.326996', 2269, 0, 0, 0, 1, 6, 0, 0, 2192, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66074, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126870', 4126870, '-371.969208', '60.471439', '-353.597412', 117, 0, 0, 0, 1, 6, 0, 0, 106, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126872', 4126872, '-373.159393', '60.013672', '-369.466705', 117, 0, 0, 0, 1, 6, 0, 0, 106, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72856, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126876', 4126876, '-364.485809', '64.772636', '-305.346100', 117, 0, 0, 0, 1, 6, 0, 0, 106, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126877', 4126877, '-289.906189', '70.603394', '-268.879211', 117, 0, 0, 0, 1, 6, 0, 0, 106, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72312, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126883', 4126883, '-267.841705', '64.469360', '-327.412811', 2269, 0, 0, 0, 1, 6, 0, 0, 2192, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66346, 4, 1, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126885', 4126885, '-307.302704', '32.962261', '-455.989990', 6, 0, 0, 0, 1, 6, 0, 0, 407, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126888', 4126888, '-310.050690', '32.641781', '-441.091614', 6, 0, 0, 0, 1, 6, 0, 0, 407, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126889', 4126889, '-308.762909', '32.686890', '-438.783905', 6, 0, 0, 0, 1, 6, 0, 0, 407, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126891', 4126891, '-293.472809', '32.249420', '-445.536591', 6, 0, 0, 0, 1, 6, 0, 0, 407, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126894', 4126894, '-324.815308', '33.758869', '-447.159790', 6, 0, 0, 0, 1, 6, 0, 0, 407, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126896', 4126896, '-337.932007', '21.784920', '-514.140076', 6, 0, 0, 0, 1, 6, 0, 0, 407, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126897', 4126897, '-289.174194', '16.068911', '-525.213928', 6, 0, 0, 0, 1, 6, 0, 0, 407, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4126898', 4126898, '-283.628113', '15.642390', '-526.527771', 6, 0, 0, 0, 1, 6, 0, 0, 407, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127166', 4127166, '-357.878510', '61.652580', '-120.536697', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69876, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127167', 4127167, '-345.085114', '63.068939', '-130.748306', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69604, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127168', 4127168, '-326.303711', '64.375679', '-183.813004', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127170', 4127170, '-270.283112', '62.668701', '-222.644394', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127171', 4127171, '-169.899994', '78.435280', '-264.339996', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127172', 4127172, '-149.763107', '81.401901', '-310.291107', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127175', 4127175, '-293.792908', '54.872101', '-262.400299', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127178', 4127178, '-354.115814', '52.784729', '-241.254807', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127180', 4127180, '-378.213013', '52.894810', '-295.929199', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127181', 4127181, '-389.473297', '50.199680', '-340.988098', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127183', 4127183, '-333.614197', '63.203400', '-339.065613', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67156, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127184', 4127184, '-311.483185', '64.156174', '-313.589203', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66884, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127399', 4127399, '193.652206', '64.744019', '-256.824585', 755, 0, 0, 0, 0, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65508, 2, 0, 0, 0, 39, 30060, 0, 0, 0), +(325, 'e0082', 'bnpc4127400', 4127400, '196.185196', '64.744019', '-255.054596', 756, 0, 0, 0, 0, 6, 0, 0, 562, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65242, 2, 0, 0, 0, 39, 30060, 0, 0, 0), +(325, 'e0082', 'bnpc4127401', 4127401, '184.893402', '64.621948', '-259.540710', 757, 0, 0, 0, 1, 6, 0, 0, 375, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64976, 2, 0, 0, 0, 39, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127404', 4127404, '194.659302', '64.591431', '-234.760101', 756, 0, 0, 0, 1, 6, 0, 0, 562, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64698, 2, 0, 0, 0, 39, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127405', 4127405, '193.255493', '64.072510', '-206.164703', 755, 0, 0, 0, 1, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64420, 2, 0, 0, 0, 39, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127406', 4127406, '194.720306', '64.652344', '-240.711105', 757, 0, 0, 0, 1, 6, 0, 0, 375, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64160, 2, 0, 0, 0, 39, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127408', 4127408, '188.769302', '64.225220', '-283.039612', 755, 0, 0, 0, 1, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63876, 2, 0, 0, 0, 39, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127409', 4127409, '192.187393', '63.797970', '-284.504486', 757, 0, 0, 0, 1, 6, 0, 0, 375, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63616, 2, 0, 0, 0, 39, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127410', 4127410, '144.182495', '70.359253', '-264.820313', 756, 0, 0, 0, 1, 6, 0, 0, 562, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63338, 2, 0, 0, 0, 39, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127411', 4127411, '71.641113', '66.514038', '-263.721710', 756, 0, 0, 0, 1, 6, 0, 0, 562, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63066, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127412', 4127412, '61.875240', '65.812134', '-240.528000', 757, 0, 0, 0, 1, 6, 0, 0, 375, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62800, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127413', 4127413, '79.789307', '67.826286', '-250.385300', 755, 0, 0, 0, 0, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62516, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(325, 'e0082', 'bnpc4127415', 4127415, '66.242851', '48.572620', '-363.161499', 757, 0, 0, 0, 1, 6, 0, 0, 375, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62256, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127416', 4127416, '16.586550', '48.386349', '-372.640594', 756, 0, 0, 0, 1, 6, 0, 0, 562, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61978, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127417', 4127417, '23.453131', '48.477909', '-367.849213', 755, 0, 0, 0, 1, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61700, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127418', 4127418, '-17.715820', '48.355709', '-302.571198', 757, 0, 0, 0, 1, 6, 0, 0, 375, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61440, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127419', 4127419, '-3.524841', '48.325321', '-324.818787', 756, 0, 0, 0, 1, 6, 0, 0, 562, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61162, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127420', 4127420, '-4.867676', '48.325321', '-320.820892', 755, 0, 0, 0, 1, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60884, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127422', 4127422, '43.717041', '48.416870', '-344.197815', 757, 0, 0, 0, 0, 6, 0, 0, 375, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60624, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(325, 'e0082', 'bnpc4127423', 4127423, '46.616211', '48.294800', '-346.456085', 756, 0, 0, 0, 0, 6, 0, 0, 562, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60346, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(325, 'e0082', 'bnpc4127424', 4127424, '73.006866', '57.422729', '-306.696289', 755, 0, 0, 0, 1, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60068, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127426', 4127426, '76.829102', '48.447269', '-395.132385', 757, 0, 0, 0, 1, 6, 0, 0, 375, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59808, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127427', 4127427, '71.335938', '48.508419', '-408.346710', 756, 0, 0, 0, 0, 6, 0, 0, 562, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59530, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(325, 'e0082', 'bnpc4127428', 4127428, '74.143547', '48.569462', '-406.118896', 755, 0, 0, 0, 0, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59252, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(325, 'e0082', 'bnpc4127429', 4127429, '73.258537', '55.588619', '-459.098206', 757, 0, 0, 0, 1, 6, 0, 0, 375, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58992, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127430', 4127430, '61.299801', '55.422451', '-506.939392', 756, 0, 0, 0, 0, 6, 0, 0, 562, 0, '0.000000', 44, 0, 120, 1, 0, 13, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 58714, 2, 0, 0, 0, 0, 30406, 0, 0, 0), +(325, 'e0082', 'bnpc4127431', 4127431, '71.572182', '55.522911', '-505.706207', 755, 0, 0, 0, 1, 6, 0, 0, 377, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58436, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127432', 4127432, '53.985661', '55.599010', '-492.126312', 757, 0, 0, 0, 0, 6, 0, 0, 375, 0, '0.000000', 44, 0, 120, 1, 0, 11, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 58176, 2, 0, 0, 0, 0, 30406, 0, 0, 0), +(325, 'e0082', 'bnpc4127433', 4127433, '53.829788', '55.176491', '-510.031586', 756, 0, 0, 0, 0, 6, 0, 0, 562, 0, '0.000000', 44, 0, 120, 1, 0, 12, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 57898, 2, 0, 0, 0, 0, 30406, 0, 0, 0), +(325, 'e0082', 'bnpc4127434', 4127434, '47.135010', '56.961788', '-498.527496', 755, 0, 0, 0, 0, 6, 0, 0, 377, 0, '0.000000', 44, 0, 120, 1, 0, 14, 0, 16, 2, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57620, 2, 0, 0, 0, 0, 30406, 0, 0, 0), +(325, 'e0082', 'bnpc4127436', 4127436, '4.565907', '48.924049', '-305.236511', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57366, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127440', 4127440, '-4.979307', '49.903141', '-348.367401', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57094, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127441', 4127441, '-3.104779', '49.903141', '-346.222290', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56822, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127442', 4127442, '19.638371', '48.996700', '-333.150299', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56550, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127443', 4127443, '48.050659', '48.172729', '-360.189209', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56278, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127444', 4127444, '88.884468', '56.055801', '-453.066589', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56006, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127445', 4127445, '57.083981', '48.172729', '-382.833588', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55734, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127447', 4127447, '59.189701', '48.172729', '-384.481598', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55462, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127449', 4127449, '56.408760', '56.256931', '-477.200592', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55190, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127450', 4127450, '54.048340', '55.394890', '-501.484192', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54918, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127451', 4127451, '182.757202', '60.685059', '-158.617599', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127453', 4127453, '181.444901', '60.379879', '-152.727600', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127454', 4127454, '186.205795', '60.013672', '-148.607697', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54108, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127455', 4127455, '193.804794', '61.478519', '-160.479202', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53836, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127456', 4127456, '191.729599', '61.356449', '-163.164795', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53564, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127457', 4127457, '172.228500', '60.715580', '-159.716202', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53292, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127458', 4127458, '191.088593', '60.074711', '-148.546600', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53020, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127459', 4127459, '179.858002', '60.318851', '-151.354294', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52748, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4127504', 4127504, '-28.430149', '54.872589', '-343.271301', 758, 0, 0, 0, 1, 6, 0, 0, 371, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52482, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127505', 4127505, '42.459599', '48.215618', '-395.711212', 758, 0, 0, 0, 1, 6, 0, 0, 371, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52210, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4127506', 4127506, '98.225403', '55.508629', '-465.979492', 758, 0, 0, 0, 1, 6, 0, 0, 371, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51938, 2, 0, 0, 0, 0, 30061, 0, 0, 0), +(325, 'e0082', 'bnpc4313099', 4313099, '177.686096', '23.920490', '-654.072205', 755, 0, 0, 0, 0, 6, 0, 0, 2518, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49452, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(325, 'e0082', 'bnpc4313100', 4313100, '167.681305', '21.744020', '-713.588074', 756, 0, 0, 0, 1, 6, 0, 0, 2519, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49186, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4313101', 4313101, '158.525894', '21.622009', '-698.329224', 757, 0, 0, 0, 0, 6, 0, 0, 2521, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48920, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(325, 'e0082', 'bnpc4313102', 4313102, '155.508408', '21.852791', '-697.356995', 758, 0, 0, 0, 0, 6, 0, 0, 2520, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48666, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(325, 'e0082', 'bnpc4313104', 4313104, '81.315308', '39.322510', '-575.951782', 757, 0, 0, 0, 1, 6, 0, 0, 1834, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41304, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4313105', 4313105, '117.540199', '24.338131', '-605.890015', 755, 0, 0, 0, 0, 6, 0, 0, 1832, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44828, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(325, 'e0082', 'bnpc4313106', 4313106, '105.720299', '22.417379', '-652.046082', 758, 0, 0, 0, 0, 6, 0, 0, 1835, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48394, 2, 0, 0, 0, 46, 30060, 0, 0, 0), +(325, 'e0082', 'bnpc4313107', 4313107, '86.533943', '22.171329', '-650.598877', 757, 0, 0, 0, 1, 6, 0, 0, 1834, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48104, 2, 0, 0, 0, 46, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4313108', 4313108, '108.436302', '22.716089', '-649.299500', 755, 0, 0, 0, 0, 6, 0, 0, 1832, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47820, 2, 0, 0, 0, 46, 30060, 0, 0, 0), +(325, 'e0082', 'bnpc4313109', 4313109, '74.762131', '25.395679', '-678.056274', 756, 0, 0, 0, 0, 6, 0, 0, 1833, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41842, 2, 0, 0, 0, 0, 30061, 0, 0, 0), +(325, 'e0082', 'bnpc4313111', 4313111, '15.157670', '24.357340', '-602.802673', 758, 0, 0, 0, 1, 6, 0, 0, 1835, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47578, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4313113', 4313113, '57.968990', '24.124390', '-720.912476', 757, 0, 0, 0, 1, 6, 0, 0, 1834, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47288, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4313116', 4313116, '30.990971', '22.995300', '-758.266602', 758, 0, 0, 0, 0, 6, 0, 0, 1835, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47034, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(325, 'e0082', 'bnpc4313117', 4313117, '26.596439', '21.469419', '-778.408508', 757, 0, 0, 0, 1, 6, 0, 0, 1834, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46744, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4313118', 4313118, '28.824221', '21.469419', '-780.575317', 756, 0, 0, 0, 1, 6, 0, 0, 1833, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41026, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4313119', 4313119, '8.132996', '21.683041', '-791.897522', 758, 0, 0, 0, 1, 6, 0, 0, 1835, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40778, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4313121', 4313121, '118.760902', '23.636169', '-718.165894', 755, 0, 0, 0, 0, 6, 0, 0, 1832, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45100, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(325, 'e0082', 'bnpc4313235', 4313235, '34.154140', '24.129841', '-623.851013', 756, 0, 0, 0, 1, 6, 0, 0, 1833, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44562, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4313247', 4313247, '223.987198', '23.392031', '-653.345581', 756, 0, 0, 0, 1, 6, 0, 0, 2519, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46466, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4313251', 4313251, '175.829697', '23.483580', '-792.629883', 755, 0, 0, 0, 0, 6, 0, 0, 2518, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46188, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(325, 'e0082', 'bnpc4313253', 4313253, '176.165405', '22.751160', '-781.368713', 757, 0, 0, 0, 1, 6, 0, 0, 2521, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41576, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4313254', 4313254, '150.774307', '25.406250', '-753.932983', 756, 0, 0, 0, 1, 6, 0, 0, 2519, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45922, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4313257', 4313257, '134.355606', '23.941410', '-656.183716', 758, 0, 0, 0, 1, 6, 0, 0, 2520, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45674, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4313258', 4313258, '144.212906', '26.169189', '-626.703186', 755, 0, 0, 0, 0, 6, 0, 0, 2518, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45372, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(325, 'e0082', 'bnpc4313458', 4313458, '59.114868', '23.909389', '-624.353394', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44326, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(325, 'e0082', 'bnpc4313461', 4313461, '16.525450', '24.093990', '-606.225708', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44054, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(325, 'e0082', 'bnpc4313463', 4313463, '16.495001', '21.499880', '-769.832886', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43782, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(325, 'e0082', 'bnpc4313465', 4313465, '22.885611', '26.030411', '-798.416687', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43510, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(325, 'e0082', 'bnpc4313467', 4313467, '83.440170', '23.678129', '-711.246216', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43238, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(325, 'e0082', 'bnpc4313469', 4313469, '209.796295', '23.269960', '-686.884888', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42966, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(325, 'e0082', 'bnpc4313470', 4313470, '206.103500', '22.873230', '-681.574829', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42694, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(325, 'e0082', 'bnpc4313471', 4313471, '207.601898', '23.979940', '-743.415222', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42422, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(325, 'e0082', 'bnpc4313472', 4313472, '174.547897', '23.605650', '-678.583984', 189, 0, 0, 0, 1, 6, 0, 0, 1836, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42150, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(325, 'e0082', 'bnpc4621617', 4621617, '-293.118896', '4.716263', '-591.364014', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 13194, 11, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(325, 'e0082', 'bnpc4621619', 4621619, '90.922218', '50.569962', '-370.084991', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 12928, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4634057', 4634057, '66.335922', '57.498440', '-320.802185', 755, 0, 0, 0, 1, 6, 0, 0, 377, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51636, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4634058', 4634058, '34.751041', '48.305031', '-377.871490', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51382, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4634061', 4634061, '80.979736', '49.537529', '-371.567688', 327, 0, 0, 0, 1, 6, 0, 0, 270, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51110, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4634101', 4634101, '47.787540', '24.000000', '-671.779602', 756, 0, 0, 0, 1, 6, 0, 0, 1833, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40482, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4634102', 4634102, '112.947899', '23.665751', '-753.267578', 756, 0, 0, 0, 1, 6, 0, 0, 1833, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40210, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4634103', 4634103, '17.829220', '22.967340', '-655.728821', 757, 0, 0, 0, 1, 6, 0, 0, 1834, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39944, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4634105', 4634105, '117.893402', '23.059460', '-785.317871', 758, 0, 0, 0, 0, 6, 0, 0, 1835, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39690, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(325, 'e0082', 'bnpc4634112', 4634112, '83.363541', '24.900320', '-818.427979', 755, 0, 0, 0, 1, 6, 0, 0, 1832, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39388, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4634115', 4634115, '48.438782', '24.181250', '-583.040222', 755, 0, 0, 0, 1, 6, 0, 0, 1832, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39116, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4634128', 4634128, '279.447388', '21.881470', '-807.844788', 757, 0, 0, 0, 0, 6, 0, 0, 2521, 0, '0.000000', 49, 0, 120, 1, 0, 23, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 38856, 2, 0, 0, 0, 0, 30406, 0, 0, 0), +(325, 'e0082', 'bnpc4634130', 4634130, '254.602600', '21.611750', '-797.892212', 758, 0, 0, 0, 1, 6, 0, 0, 2520, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38602, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4634147', 4634147, '306.611389', '22.334221', '-728.344421', 2838, 0, 0, 0, 1, 6, 0, 0, 2522, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38348, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4634149', 4634149, '245.748596', '24.521351', '-839.557800', 2838, 0, 0, 0, 1, 6, 0, 0, 2522, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38076, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4634150', 4634150, '255.938904', '21.608480', '-819.697388', 2838, 0, 0, 0, 1, 6, 0, 0, 2522, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37804, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4634151', 4634151, '284.750702', '21.642660', '-703.160583', 2838, 0, 0, 0, 1, 6, 0, 0, 2522, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37532, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4634153', 4634153, '278.747314', '23.306129', '-734.708130', 2838, 0, 0, 0, 1, 6, 0, 0, 2522, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37260, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4664779', 4664779, '51.481640', '55.599010', '-491.209015', 2833, 0, 0, 0, 0, 6, 0, 0, 2528, 0, '0.000000', 44, 1, 120, 1, 0, 11, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50856, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4664780', 4664780, '50.868221', '55.176491', '-509.842285', 2833, 0, 0, 0, 0, 6, 0, 0, 2528, 0, '0.000000', 44, 1, 120, 1, 0, 12, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50584, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4664781', 4664781, '61.290409', '55.318249', '-509.565887', 2833, 0, 0, 0, 0, 6, 0, 0, 2528, 0, '0.000000', 44, 1, 120, 1, 0, 13, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50312, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4664782', 4664782, '285.487915', '22.096889', '-798.198914', 2834, 0, 0, 0, 0, 6, 0, 0, 2529, 0, '0.000000', 48, 1, 120, 1, 0, 21, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 36994, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4664783', 4664783, '280.820007', '21.850000', '-818.599976', 2834, 0, 0, 0, 0, 6, 0, 0, 2529, 0, '0.000000', 48, 1, 120, 1, 0, 22, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 36722, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4664784', 4664784, '282.380005', '22.062380', '-807.590027', 2834, 0, 0, 0, 0, 6, 0, 0, 2529, 0, '0.000000', 48, 1, 120, 1, 0, 23, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 36450, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4666224', 4666224, '283.243195', '22.311359', '-796.170898', 756, 0, 0, 0, 0, 6, 0, 0, 2519, 0, '0.000000', 49, 0, 120, 1, 0, 21, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 36130, 2, 0, 0, 0, 0, 30406, 0, 0, 0), +(325, 'e0082', 'bnpc4666225', 4666225, '281.156311', '21.832199', '-815.852112', 755, 0, 0, 0, 0, 6, 0, 0, 2518, 0, '0.000000', 49, 0, 120, 1, 0, 22, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 35852, 2, 0, 0, 0, 0, 30406, 0, 0, 0), +(325, 'e0082', 'bnpc4681187', 4681187, '47.109711', '56.992210', '-500.873199', 2833, 0, 0, 0, 0, 6, 0, 0, 2528, 0, '0.000000', 44, 1, 120, 1, 0, 14, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 50040, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(325, 'e0082', 'bnpc4681310', 4681310, '-14.819780', '24.425871', '-666.209473', 755, 0, 0, 0, 1, 6, 0, 0, 1832, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35580, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(325, 'e0082', 'bnpc4681311', 4681311, '86.037354', '24.478621', '-699.376709', 756, 0, 0, 0, 0, 6, 0, 0, 1833, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35314, 2, 0, 0, 0, 0, 30061, 0, 0, 0), +(326, 'e0083', 'bnpc4291568', 4291568, '76.290123', '30.749250', '-733.599182', 1776, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(326, 'e0083', 'bnpc4292672', 4292672, '-12.396590', '18.377340', '-670.928772', 1777, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22138, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(326, 'e0083', 'bnpc4292673', 4292673, '91.670517', '20.458050', '-614.237122', 1778, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21872, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(326, 'e0083', 'bnpc4295485', 4295485, '-266.791504', '-5.944477', '-526.778198', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295487', 4295487, '-276.140686', '-8.410786', '-516.253174', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295488', 4295488, '-298.914093', '-4.103804', '-550.291321', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295489', 4295489, '-103.196297', '1.542795', '-586.758179', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295490', 4295490, '-207.536301', '-2.690903', '-578.039001', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295491', 4295491, '-103.713898', '-0.832843', '-642.948425', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295492', 4295492, '-208.009796', '1.723610', '-616.185120', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71640, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295493', 4295493, '-172.408905', '4.990528', '-671.229126', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295495', 4295495, '-380.537506', '-16.898170', '-441.082001', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295496', 4295496, '-430.882507', '-16.898170', '-384.312195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295497', 4295497, '-390.139587', '-16.898170', '-350.704712', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70558, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295498', 4295498, '-398.062103', '-16.898170', '-358.104401', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70286, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295499', 4295499, '-336.279297', '-16.898170', '-437.756195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70014, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295500', 4295500, '-302.568298', '-16.898170', '-458.892609', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69742, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295501', 4295501, '-402.253601', '-16.898170', '-464.540710', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69470, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295503', 4295503, '-369.143799', '-16.898170', '-389.766815', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69198, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295505', 4295505, '-359.561707', '-16.042290', '-486.552094', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68932, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295506', 4295506, '-417.805786', '-6.910027', '-523.771912', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295507', 4295507, '-466.061310', '-9.446001', '-532.017029', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295508', 4295508, '-413.364410', '-2.492527', '-559.181519', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295514', 4295514, '-350.972809', '-6.607239', '-526.665222', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295515', 4295515, '-360.309296', '-4.290267', '-546.520813', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295516', 4295516, '-350.790710', '-3.296191', '-550.475586', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295520', 4295520, '-396.722198', '-14.513140', '-500.059692', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295524', 4295524, '-234.088699', '-4.989685', '-302.540588', 724, 0, 0, 0, 1, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4295525', 4295525, '-211.180405', '-2.844870', '-288.253998', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66496, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(326, 'e0083', 'bnpc4295526', 4295526, '-257.312897', '1.113892', '-308.064392', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66230, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4295528', 4295528, '-212.115707', '-2.955642', '-289.682190', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65946, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(326, 'e0083', 'bnpc4295529', 4295529, '-224.841705', '3.952026', '-259.540710', 725, 0, 0, 0, 1, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65680, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4295530', 4295530, '-203.875793', '24.704220', '-215.411697', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4295531', 4295531, '-234.943207', '21.774599', '-213.092300', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65136, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(326, 'e0083', 'bnpc4295532', 4295532, '-235.959198', '22.114910', '-212.031006', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64858, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(326, 'e0083', 'bnpc4295533', 4295533, '-234.301407', '21.966511', '-211.462402', 726, 0, 0, 0, 0, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(326, 'e0083', 'bnpc4295534', 4295534, '-127.288002', '47.127460', '-188.580307', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295535', 4295535, '-140.871399', '45.053020', '-179.736603', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295536', 4295536, '-136.478302', '46.067551', '-193.959702', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295537', 4295537, '-143.537201', '44.052780', '-181.398193', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295538', 4295538, '-146.514297', '42.327431', '-204.108902', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295539', 4295539, '-129.866394', '46.678692', '-196.996994', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295540', 4295540, '-145.364395', '42.544418', '-202.550705', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295541', 4295541, '-144.789993', '44.556961', '-194.376297', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295659', 4295659, '-53.322418', '17.072929', '-621.681213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295665', 4295665, '-88.710228', '0.643335', '-625.828125', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295666', 4295666, '-207.395203', '8.290789', '-665.648376', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295668', 4295668, '-156.229294', '-1.918439', '-604.694275', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295669', 4295669, '-304.707489', '-15.793150', '-491.020111', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295670', 4295670, '-386.814087', '-6.319692', '-539.647400', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295674', 4295674, '-375.356689', '-13.229610', '-505.729797', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295679', 4295679, '-327.840393', '-2.384109', '-563.164490', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295691', 4295691, '482.994690', '-1.037749', '-792.622070', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59992, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295693', 4295693, '473.960388', '0.503479', '-803.097595', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59720, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295694', 4295694, '450.441315', '-4.905994', '-755.835999', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59448, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295695', 4295695, '500.877289', '-5.020264', '-757.289978', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59176, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295697', 4295697, '456.274902', '-4.258285', '-763.958801', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295698', 4295698, '550.072510', '-9.750549', '-735.286499', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295700', 4295700, '487.731598', '2.187441', '-809.306885', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58360, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295702', 4295702, '268.736298', '32.329670', '-657.612671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295704', 4295704, '272.319611', '32.540180', '-659.312988', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295705', 4295705, '285.744507', '34.969521', '-689.040283', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295709', 4295709, '298.145996', '20.340210', '-684.382385', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295710', 4295710, '348.251495', '21.030451', '-726.475220', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295711', 4295711, '352.642487', '20.319700', '-740.209778', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295712', 4295712, '369.140015', '21.089970', '-736.832886', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56462, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295715', 4295715, '363.363007', '-1.968445', '-698.451172', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56190, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295716', 4295716, '557.910828', '-5.547063', '-643.875671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55918, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295717', 4295717, '557.692322', '16.908760', '-525.262085', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55646, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295718', 4295718, '576.089783', '12.066130', '-514.577271', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55374, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295719', 4295719, '594.596985', '7.711907', '-478.120911', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295720', 4295720, '616.268982', '8.446064', '-482.073486', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(326, 'e0083', 'bnpc4295726', 4295726, '356.740601', '-6.149414', '-463.218109', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295727', 4295727, '365.071991', '-14.602910', '-430.808014', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54298, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295728', 4295728, '350.667511', '-17.288509', '-404.379303', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295734', 4295734, '413.196686', '-20.564011', '-317.744904', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295735', 4295735, '387.892609', '-18.073410', '-346.505707', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53476, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295736', 4295736, '450.900513', '-17.914270', '-353.105286', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295737', 4295737, '481.724091', '-12.428540', '-382.045105', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295738', 4295738, '511.909393', '-9.373532', '-382.464996', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52660, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295739', 4295739, '522.073730', '0.990242', '-453.501709', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295747', 4295747, '588.058716', '-2.946974', '-271.337891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295749', 4295749, '568.700012', '-2.429443', '-330.453400', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295751', 4295751, '582.843079', '-3.006616', '-272.419891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295755', 4295755, '214.220200', '-22.109159', '-425.877502', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51324, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295757', 4295757, '208.472198', '-22.096960', '-422.660797', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295759', 4295759, '162.350601', '-27.989771', '-429.755402', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295760', 4295760, '152.123001', '-27.048130', '-440.418915', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295761', 4295761, '177.396194', '-25.049320', '-444.224487', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295762', 4295762, '267.297211', '-21.872410', '-406.569397', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295763', 4295763, '306.843597', '-26.993231', '-409.628510', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295764', 4295764, '304.550415', '-25.764360', '-424.008301', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295769', 4295769, '306.531403', '-6.106912', '-519.224976', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49130, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295770', 4295770, '282.576813', '-0.225863', '-572.515686', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48852, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295771', 4295771, '310.969513', '6.158492', '-563.194397', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48592, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295809', 4295809, '156.994202', '14.383940', '-592.509216', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48290, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295811', 4295811, '223.296295', '19.340050', '-610.880798', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48018, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295812', 4295812, '201.983597', '-0.198364', '-555.107971', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295813', 4295813, '341.647797', '-7.563892', '-456.047089', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295816', 4295816, '408.980713', '-16.354401', '-360.560699', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295818', 4295818, '509.696991', '-9.567444', '-375.661896', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295820', 4295820, '496.853485', '0.344957', '-504.120392', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295823', 4295823, '601.499573', '8.072348', '-517.726685', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295825', 4295825, '570.526428', '-2.482952', '-625.752014', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295827', 4295827, '556.342102', '-7.876167', '-657.103516', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295829', 4295829, '554.863770', '-9.262268', '-749.843628', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295831', 4295831, '503.838013', '-2.956629', '-777.365173', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295834', 4295834, '482.706696', '1.341902', '-807.133728', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295835', 4295835, '486.772400', '5.215003', '-836.320984', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295836', 4295836, '471.659790', '3.490144', '-819.978882', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295837', 4295837, '484.345886', '5.375706', '-837.509583', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295840', 4295840, '412.710693', '-9.353821', '-747.005371', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295844', 4295844, '384.603485', '-4.196289', '-690.486023', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295846', 4295846, '332.112701', '4.562378', '-690.424988', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43394, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295850', 4295850, '316.341492', '26.032160', '-728.249573', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43122, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295851', 4295851, '297.774597', '15.475720', '-651.450989', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295855', 4295855, '598.748718', '-3.250244', '-301.930298', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295858', 4295858, '591.221985', '-1.360156', '-323.232788', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295862', 4295862, '-314.692108', '-15.474820', '-327.581299', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295866', 4295866, '-272.613800', '-8.061660', '-332.045013', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295867', 4295867, '-217.273193', '-1.571716', '-276.691895', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295870', 4295870, '-229.022598', '14.450200', '-236.072403', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295871', 4295871, '-188.372696', '33.340939', '-195.666504', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4295884', 4295884, '-562.005005', '-2.945007', '-452.323212', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40722, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4295886', 4295886, '-554.466980', '-3.768982', '-380.758392', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40456, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4295887', 4295887, '-568.932678', '-2.945007', '-424.124603', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40190, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4295889', 4295889, '-543.789124', '-3.866000', '-411.311401', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4296050', 4296050, '-471.824188', '-6.332520', '-433.737701', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39640, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(326, 'e0083', 'bnpc4296052', 4296052, '-484.855499', '-6.027344', '-447.898102', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39368, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(326, 'e0083', 'bnpc4296053', 4296053, '-445.975494', '-12.710820', '-466.361511', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32130, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4296054', 4296054, '-473.746887', '-4.409851', '-480.766113', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32432, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4296055', 4296055, '-471.580109', '-6.668213', '-449.912292', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39102, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4296056', 4296056, '-453.727112', '-10.818660', '-442.862610', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38842, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4296060', 4296060, '-455.741211', '-7.492188', '-484.428192', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38552, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(326, 'e0083', 'bnpc4296081', 4296081, '-603.967285', '-3.891113', '-368.337494', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38298, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4296082', 4296082, '-640.680481', '-3.891113', '-370.046600', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38032, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4296091', 4296091, '-592.797729', '-2.945007', '-432.211792', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37736, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(326, 'e0083', 'bnpc4296093', 4296093, '-635.341492', '-2.933044', '-396.278687', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37464, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(326, 'e0083', 'bnpc4296094', 4296094, '-548.271912', '-1.937927', '-310.963593', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37204, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4296096', 4296096, '-498.711395', '-3.960067', '-255.747696', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36932, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(326, 'e0083', 'bnpc4296098', 4296098, '-558.028809', '-3.683542', '-364.324585', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36648, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(326, 'e0083', 'bnpc4296100', 4296100, '-489.250092', '-3.708008', '-282.124115', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36376, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(326, 'e0083', 'bnpc4296103', 4296103, '-446.294891', '-4.000447', '-219.651199', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36104, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(326, 'e0083', 'bnpc4296105', 4296105, '-437.867004', '-2.581742', '-273.708099', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35832, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(326, 'e0083', 'bnpc4296108', 4296108, '-527.244995', '-2.670410', '-288.624512', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35554, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4296110', 4296110, '-560.845276', '-2.975586', '-327.595886', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35294, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4296111', 4296111, '-547.325928', '-1.754883', '-291.645691', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35016, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4296113', 4296113, '-527.817322', '-3.767937', '-323.068909', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4296115', 4296115, '-543.791321', '-3.216822', '-330.542389', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34496, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4296118', 4296118, '-473.824707', '-3.767937', '-273.987488', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34224, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4296119', 4296119, '-488.912994', '-3.958386', '-246.223602', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33946, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4296120', 4296120, '-461.660309', '-3.996136', '-252.041306', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33650, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4296121', 4296121, '-428.786102', '-3.945695', '-301.904114', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4296122', 4296122, '-429.702698', '-3.990123', '-245.654495', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33118, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4296344', 4296344, '-618.398071', '-3.216822', '-419.669586', 201, 0, 0, 0, 5, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32692, 1, 0, 0, 0, 0, 0, 4296333, 0, 0), +(326, 'e0083', 'bnpc4331545', 4331545, '-431.193512', '-15.291800', '-426.211914', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31858, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4331546', 4331546, '-472.129791', '-5.294910', '-466.746185', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31586, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4331549', 4331549, '-455.329895', '-10.797180', '-446.420288', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4331550', 4331550, '-470.522400', '-4.822834', '-501.822296', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31072, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(326, 'e0083', 'bnpc4621627', 4621627, '459.067596', '6.191762', '-845.122498', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22746, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3965984', 3965984, '290.117706', '43.654701', '749.469177', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107688, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3965987', 3965987, '293.200012', '43.134739', '746.661621', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107416, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3965988', 3965988, '324.116791', '32.547440', '699.946472', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107144, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3965990', 3965990, '392.568787', '27.054199', '712.336914', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106872, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3965997', 3965997, '390.188385', '27.145750', '714.442627', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106600, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966001', 3966001, '385.580200', '26.749020', '711.055115', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106328, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966005', 3966005, '389.669586', '25.009489', '695.277283', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106056, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966021', 3966021, '290.485901', '42.923580', '551.995117', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105790, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966030', 3966030, '281.486511', '40.675110', '660.846008', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105518, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966033', 3966033, '385.317902', '24.940651', '523.827576', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105246, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966039', 3966039, '452.273987', '34.051319', '541.621094', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104974, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966043', 3966043, '343.232605', '30.682180', '454.719208', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104702, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966045', 3966045, '288.452911', '42.365101', '363.512909', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104430, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966046', 3966046, '299.927887', '41.764408', '350.498810', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104158, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966078', 3966078, '418.940399', '16.917250', '740.596619', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103880, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966084', 3966084, '430.092010', '14.727770', '731.417480', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103608, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966085', 3966085, '432.472412', '14.548040', '729.311829', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103336, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966086', 3966086, '430.427704', '14.832140', '728.091003', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103064, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966092', 3966092, '387.587006', '24.567631', '693.317871', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102792, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966095', 3966095, '427.572998', '13.961960', '671.839417', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102520, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966096', 3966096, '429.953400', '13.687290', '669.733582', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102248, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966097', 3966097, '422.964813', '14.236620', '668.451904', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101976, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966100', 3966100, '428.580109', '13.809370', '659.082825', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101704, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966104', 3966104, '352.881012', '30.771620', '728.950378', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101432, 5, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(327, 'e0084', 'bnpc3966108', 3966108, '504.101715', '8.999934', '681.622986', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966112', 3966112, '463.920013', '10.940670', '693.965027', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966115', 3966115, '475.702911', '9.703782', '729.907288', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966117', 3966117, '481.560486', '9.326057', '765.301697', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966118', 3966118, '489.679596', '8.999991', '754.903076', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966120', 3966120, '485.691986', '9.522070', '641.613586', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966122', 3966122, '502.346710', '8.999838', '630.363403', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966123', 3966123, '467.942596', '11.618370', '598.635376', 325, 0, 0, 0, 1, 6, 0, 0, 560, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966128', 3966128, '523.159729', '8.999995', '252.453705', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99002, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966129', 3966129, '503.478210', '9.866951', '210.334000', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98730, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966132', 3966132, '506.041687', '9.747169', '207.556793', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98458, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966134', 3966134, '494.140015', '11.102120', '230.850998', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98186, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966135', 3966135, '513.192200', '8.999973', '265.080597', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97914, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966139', 3966139, '515.692383', '8.999988', '223.561798', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966142', 3966142, '536.347412', '9.170974', '198.358597', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97370, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966143', 3966143, '480.563690', '11.275560', '254.698898', 312, 0, 0, 0, 1, 6, 0, 0, 361, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97098, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966185', 3966185, '225.319901', '54.344410', '564.565430', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96832, 1, 0, 0, 0, 27, 30059, 0, 0, 0), +(327, 'e0084', 'bnpc3966191', 3966191, '240.668304', '51.838989', '562.298584', 170, 0, 0, 0, 1, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96560, 1, 0, 0, 0, 27, 30063, 0, 0, 0), +(327, 'e0084', 'bnpc3966193', 3966193, '237.524506', '52.241501', '560.929688', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96288, 1, 0, 0, 0, 27, 30059, 0, 0, 0), +(327, 'e0084', 'bnpc3966195', 3966195, '238.675705', '52.019920', '558.354919', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96016, 1, 0, 0, 0, 27, 30059, 0, 0, 0), +(327, 'e0084', 'bnpc3966197', 3966197, '234.047104', '60.363258', '532.494019', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95744, 1, 0, 0, 0, 27, 30060, 0, 0, 0), +(327, 'e0084', 'bnpc3966198', 3966198, '232.410202', '60.349369', '532.799194', 170, 0, 0, 0, 0, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95472, 1, 0, 0, 0, 27, 30060, 0, 0, 0), +(327, 'e0084', 'bnpc3966204', 3966204, '318.658203', '37.686790', '233.860397', 328, 0, 0, 0, 0, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95206, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(327, 'e0084', 'bnpc3966224', 3966224, '322.804413', '37.674561', '206.378204', 328, 0, 0, 0, 0, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94934, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(327, 'e0084', 'bnpc3966226', 3966226, '330.596191', '36.181511', '217.927505', 328, 0, 0, 0, 1, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94662, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(327, 'e0084', 'bnpc3966237', 3966237, '325.863403', '37.460819', '205.065903', 329, 0, 0, 0, 0, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94396, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(327, 'e0084', 'bnpc3966240', 3966240, '316.045197', '38.194221', '236.654907', 329, 0, 0, 0, 0, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94124, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(327, 'e0084', 'bnpc3966241', 3966241, '313.378113', '38.056759', '220.080307', 329, 0, 0, 0, 1, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93852, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(327, 'e0084', 'bnpc3966242', 3966242, '334.248901', '36.394051', '239.885498', 331, 0, 0, 0, 1, 6, 0, 0, 373, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93586, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(327, 'e0084', 'bnpc3966243', 3966243, '315.073486', '38.121010', '233.173004', 331, 0, 0, 0, 0, 6, 0, 0, 373, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93314, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(327, 'e0084', 'bnpc3966244', 3966244, '315.354797', '39.330219', '197.917297', 331, 0, 0, 0, 1, 6, 0, 0, 373, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93042, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(327, 'e0084', 'bnpc3966270', 3966270, '307.454010', '32.229580', '527.673584', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92776, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966278', 3966278, '282.918610', '42.498619', '402.770111', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92504, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966279', 3966279, '331.480194', '37.450062', '426.526886', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92232, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966281', 3966281, '411.184814', '27.695080', '488.273407', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966285', 3966285, '430.838409', '18.936399', '772.152222', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966288', 3966288, '445.507111', '13.025030', '702.326416', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966289', 3966289, '424.795807', '18.326040', '592.889221', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966291', 3966291, '236.732101', '53.718140', '616.643982', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966296', 3966296, '309.773285', '35.843399', '593.896301', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966311', 3966311, '460.890411', '14.134280', '275.800812', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966322', 3966322, '462.973907', '13.992480', '272.785492', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966331', 3966331, '436.391907', '17.167070', '328.657104', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89784, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966340', 3966340, '429.404114', '36.819969', '132.829697', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966343', 3966343, '438.622589', '35.297611', '196.059998', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89240, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966351', 3966351, '334.525085', '38.941391', '327.366913', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88968, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966355', 3966355, '368.808807', '33.632469', '253.976501', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85976, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966368', 3966368, '523.699890', '41.479031', '549.176697', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88696, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966375', 3966375, '522.691589', '41.801552', '546.826721', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88424, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966380', 3966380, '470.281799', '34.323669', '551.294006', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 31, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88152, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966581', 3966581, '350.408997', '30.882040', '725.654419', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87832, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966589', 3966589, '327.600098', '31.811251', '702.823730', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87608, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966594', 3966594, '368.138489', '29.659201', '745.547729', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87336, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966604', 3966604, '313.217499', '38.596272', '433.198486', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87022, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966613', 3966613, '414.287506', '29.365601', '516.322510', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86750, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966614', 3966614, '298.856689', '37.864361', '705.197083', 314, 0, 0, 0, 1, 6, 0, 0, 341, 0, '0.000000', 30, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86472, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966630', 3966630, '399.514893', '36.100700', '222.557495', 322, 0, 0, 0, 1, 6, 0, 0, 1313, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86206, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966825', 3966825, '331.662201', '39.448109', '166.458801', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85704, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966829', 3966829, '334.347809', '38.871632', '163.773193', 133, 0, 0, 0, 1, 6, 0, 0, 115, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85432, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966836', 3966836, '252.163696', '50.856651', '559.044678', 170, 0, 0, 0, 1, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85136, 1, 0, 0, 0, 27, 30063, 0, 0, 0), +(327, 'e0084', 'bnpc3966837', 3966837, '231.653397', '53.322651', '577.867188', 170, 0, 0, 0, 1, 6, 0, 0, 351, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84864, 1, 0, 0, 0, 27, 30063, 0, 0, 0), +(327, 'e0084', 'bnpc3966848', 3966848, '422.451294', '35.254921', '169.566895', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84622, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966849', 3966849, '428.958496', '37.325779', '102.728203', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84350, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966850', 3966850, '454.571808', '12.465490', '151.488907', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84078, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966851', 3966851, '459.783295', '12.487550', '182.865997', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83806, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966852', 3966852, '442.573303', '36.806381', '114.818901', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83534, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966853', 3966853, '426.489105', '37.229988', '104.534302', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83262, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966854', 3966854, '418.872314', '35.403931', '158.459900', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82990, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966855', 3966855, '446.885712', '37.061001', '190.656296', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82718, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966856', 3966856, '414.331604', '34.928871', '162.227295', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966857', 3966857, '485.124786', '44.077980', '161.297897', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82174, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966858', 3966858, '501.047394', '49.527180', '137.380997', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966859', 3966859, '476.396698', '32.421059', '208.906006', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81630, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966860', 3966860, '508.647186', '50.047180', '135.756897', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966861', 3966861, '517.712280', '31.487631', '183.328796', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81086, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966862', 3966862, '519.568970', '31.405090', '185.390900', 386, 0, 0, 0, 1, 6, 0, 0, 639, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80814, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966932', 3966932, '-107.621902', '60.001968', '671.706909', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80092, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966938', 3966938, '-100.602798', '64.316727', '689.204224', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79820, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966939', 3966939, '-90.836998', '63.675850', '681.605225', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79548, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966940', 3966940, '-166.796707', '62.704250', '685.247925', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79276, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966941', 3966941, '-161.909302', '60.470612', '677.937500', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79004, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966942', 3966942, '-94.041397', '56.778770', '634.607422', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78732, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966944', 3966944, '-1.239546', '50.637169', '509.984985', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57280, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966947', 3966947, '-45.667271', '51.856998', '574.469299', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966949', 3966949, '-46.905361', '43.370399', '516.468689', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58640, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966950', 3966950, '-54.126480', '51.789631', '583.855896', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966951', 3966951, '-73.928673', '43.410858', '544.963013', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57552, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966952', 3966952, '-103.159698', '37.284828', '459.933807', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57824, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966954', 3966954, '-98.466507', '40.512650', '504.295288', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58096, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966958', 3966958, '-120.704201', '52.333061', '327.006989', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56470, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966982', 3966982, '-87.449501', '62.424610', '345.723602', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56742, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966983', 3966983, '-186.848404', '37.966789', '344.289215', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55382, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966984', 3966984, '-146.753799', '46.975368', '343.366302', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966987', 3966987, '-97.896507', '47.301010', '283.912598', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966988', 3966988, '-144.492203', '41.001541', '290.455414', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56198, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966993', 3966993, '-126.139099', '49.532829', '320.589905', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55926, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966994', 3966994, '-169.229095', '40.705471', '319.673706', 117, 0, 0, 0, 1, 6, 0, 0, 352, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55654, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3966998', 3966998, '-196.612503', '34.134380', '262.104187', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78466, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3966999', 3966999, '-130.632507', '34.213940', '238.391602', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78194, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967000', 3967000, '-324.116913', '44.541031', '362.416992', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77922, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967001', 3967001, '-119.190002', '34.214378', '236.487305', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77650, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967002', 3967002, '-60.455029', '34.214390', '222.702805', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967003', 3967003, '-235.382202', '34.214390', '291.120911', 26, 0, 0, 0, 1, 6, 0, 0, 26, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77106, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967006', 3967006, '-168.902100', '54.611992', '635.431396', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76828, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967008', 3967008, '-220.172501', '52.819180', '602.254089', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76568, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967012', 3967012, '-153.429504', '54.795101', '616.906921', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76296, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967013', 3967013, '-54.184830', '43.686531', '393.575897', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76024, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967015', 3967015, '-4.951565', '40.562092', '383.766205', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75752, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967016', 3967016, '-144.853897', '44.663109', '395.559601', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75480, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967019', 3967019, '-215.347198', '46.906521', '443.329498', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75208, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967021', 3967021, '-195.910599', '47.775951', '498.802094', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74936, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967023', 3967023, '-255.848099', '45.242950', '527.916321', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74664, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967024', 3967024, '-193.863693', '46.459171', '567.863098', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74392, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967040', 3967040, '-227.654999', '44.566780', '550.036011', 321, 0, 0, 0, 1, 6, 0, 0, 355, 0, '0.000000', 34, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74126, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967048', 3967048, '-245.306793', '50.107510', '203.033295', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967053', 3967053, '-231.670807', '44.156860', '229.440903', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967054', 3967054, '-239.386597', '43.805309', '236.070206', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73292, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967056', 3967056, '-308.054810', '53.123970', '249.850693', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73020, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967057', 3967057, '-279.167908', '51.349911', '221.039795', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72748, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967060', 3967060, '121.580902', '83.791519', '-63.093380', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72476, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967063', 3967063, '136.610001', '90.130913', '-77.008636', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72204, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967064', 3967064, '138.671295', '88.429123', '-72.254028', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71932, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967067', 3967067, '109.981201', '88.091492', '-91.405563', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71660, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967069', 3967069, '117.567299', '75.280457', '-31.443140', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71388, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967071', 3967071, '79.369293', '74.087349', '-7.523047', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71116, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967072', 3967072, '87.348160', '76.560066', '-62.532970', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70844, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967079', 3967079, '119.521301', '70.482773', '15.235610', 2, 0, 0, 0, 1, 6, 0, 0, 411, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70572, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967232', 3967232, '-65.956238', '40.845070', '201.759201', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967236', 3967236, '-112.260201', '41.370239', '200.130005', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967238', 3967238, '-113.662697', '41.688950', '199.025208', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69780, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967239', 3967239, '-116.857201', '40.502911', '201.676895', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69508, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967240', 3967240, '-149.497101', '46.658821', '173.189301', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69236, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967241', 3967241, '-154.094101', '46.603470', '174.736206', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68964, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967242', 3967242, '-150.899704', '46.878399', '172.084595', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68692, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967244', 3967244, '-164.773300', '47.053860', '187.026794', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68420, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967245', 3967245, '-132.803101', '48.519630', '164.560394', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68148, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967246', 3967246, '-166.175903', '47.201370', '185.921997', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67876, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967247', 3967247, '-96.265427', '45.412338', '178.992096', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67604, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967248', 3967248, '-94.862892', '45.333729', '180.096893', 384, 0, 0, 0, 1, 6, 0, 0, 684, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967250', 3967250, '-255.398605', '55.315521', '193.396301', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967251', 3967251, '-250.814499', '43.443932', '254.456497', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967252', 3967252, '-0.594336', '41.413090', '300.056488', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967253', 3967253, '-12.474910', '40.981110', '345.808990', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967254', 3967254, '-10.307140', '40.161018', '348.964508', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967255', 3967255, '-118.867302', '45.441109', '407.337494', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967256', 3967256, '-276.173096', '44.724140', '328.084198', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967257', 3967257, '-205.867706', '41.135929', '381.384705', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967260', 3967260, '-206.799393', '41.163960', '383.136597', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967261', 3967261, '-72.173149', '34.214340', '223.018997', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967262', 3967262, '-188.542496', '34.213940', '259.734406', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967263', 3967263, '-141.513000', '47.998859', '333.870789', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967264', 3967264, '-83.307388', '49.447201', '285.004303', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967265', 3967265, '-94.670761', '58.438599', '656.570923', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967266', 3967266, '-155.296707', '63.642780', '694.602295', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967267', 3967267, '-132.048401', '53.203049', '637.721985', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967268', 3967268, '-190.779999', '52.425701', '609.329773', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967269', 3967269, '-193.352798', '52.082130', '607.753784', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62442, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967270', 3967270, '-147.991806', '50.188049', '564.462830', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967271', 3967271, '-235.545898', '44.762379', '563.043518', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967272', 3967272, '-240.728607', '45.133591', '492.780487', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967275', 3967275, '-304.364014', '44.566818', '466.077515', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967276', 3967276, '-310.552399', '44.566750', '465.462799', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967277', 3967277, '-80.421982', '37.210289', '478.231903', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967278', 3967278, '-26.911261', '50.888149', '543.665771', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60538, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967280', 3967280, '-89.173988', '45.007820', '563.858215', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 34, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60266, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967290', 3967290, '76.708450', '77.890778', '-16.653400', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59994, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967292', 3967292, '140.583405', '74.160980', '12.732710', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59722, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967294', 3967294, '140.883408', '74.042503', '11.184050', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59450, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967295', 3967295, '116.940697', '83.753616', '-66.031197', 136, 0, 0, 0, 1, 6, 0, 0, 396, 0, '0.000000', 32, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59178, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc3967308', 3967308, '-40.160881', '45.050510', '523.243713', 178, 0, 0, 0, 1, 6, 0, 0, 366, 0, '0.000000', 32, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57008, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967595', 3967595, '-210.406693', '40.237991', '366.170685', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54536, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967644', 3967644, '-273.564209', '43.724400', '334.223694', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54264, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc3967651', 3967651, '-139.989197', '48.125320', '545.608582', 320, 0, 0, 0, 1, 6, 0, 0, 353, 0, '0.000000', 33, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53992, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(327, 'e0084', 'bnpc4057235', 4057235, '404.560089', '20.446920', '453.365112', 789, 0, 0, 0, 0, 6, 0, 0, 1274, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23074, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(327, 'e0084', 'bnpc4057253', 4057253, '464.607697', '13.736580', '386.294098', 790, 0, 0, 0, 0, 6, 0, 0, 1274, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22808, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(327, 'e0084', 'bnpc4057266', 4057266, '521.743530', '9.007294', '564.869080', 789, 0, 0, 0, 0, 6, 0, 0, 1274, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22530, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(327, 'e0084', 'bnpc4057293', 4057293, '8.463147', '64.817741', '50.653370', 788, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22270, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(327, 'e0084', 'bnpc4312742', 4312742, '183.886398', '74.509773', '-5.691650', 55, 0, 0, 0, 1, 6, 0, 0, 1821, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53536, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312743', 4312743, '204.760696', '75.181152', '-29.739870', 61, 0, 0, 0, 1, 6, 0, 0, 1822, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53270, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312744', 4312744, '232.166000', '75.577881', '-4.745544', 62, 0, 0, 0, 1, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53004, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312745', 4312745, '206.103500', '75.547363', '-31.540409', 63, 0, 0, 0, 1, 6, 0, 0, 1824, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52738, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312746', 4312746, '212.115601', '74.235107', '-9.903137', 64, 0, 0, 0, 1, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52472, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312748', 4312748, '242.298004', '74.479248', '-23.727840', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52188, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(327, 'e0084', 'bnpc4312759', 4312759, '335.849396', '76.161110', '-11.489540', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51916, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(327, 'e0084', 'bnpc4312813', 4312813, '429.465088', '76.157707', '-63.431820', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51644, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(327, 'e0084', 'bnpc4312814', 4312814, '387.136505', '76.218750', '-61.814331', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51372, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(327, 'e0084', 'bnpc4312815', 4312815, '287.367798', '76.123413', '-2.225652', 55, 0, 0, 0, 1, 6, 0, 0, 1821, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51088, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312816', 4312816, '314.246796', '76.070213', '-34.506378', 62, 0, 0, 0, 1, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50828, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312817', 4312817, '300.532501', '76.472076', '-15.301860', 61, 0, 0, 0, 1, 6, 0, 0, 1822, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50550, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312818', 4312818, '301.875214', '76.471893', '-17.102390', 63, 0, 0, 0, 1, 6, 0, 0, 1824, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50290, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312819', 4312819, '279.745087', '76.218422', '-22.320280', 64, 0, 0, 0, 1, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50024, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312874', 4312874, '444.379700', '76.086662', '-13.359130', 61, 0, 0, 0, 1, 6, 0, 0, 1822, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49734, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312875', 4312875, '358.754791', '76.249268', '-34.500729', 64, 0, 0, 0, 1, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49480, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312876', 4312876, '409.780914', '76.432373', '0.442505', 63, 0, 0, 0, 1, 6, 0, 0, 1824, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49202, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312877', 4312877, '412.466614', '76.066162', '-1.327576', 62, 0, 0, 0, 1, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48924, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312878', 4312878, '373.531311', '76.412163', '-19.283190', 55, 0, 0, 0, 1, 6, 0, 0, 1821, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48640, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312880', 4312880, '481.615387', '76.891281', '-107.208000', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48380, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(327, 'e0084', 'bnpc4312881', 4312881, '474.740814', '76.178452', '-92.284813', 64, 0, 0, 0, 1, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48120, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312882', 4312882, '476.438690', '76.178452', '-61.350609', 55, 0, 0, 0, 1, 6, 0, 0, 1821, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47824, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312883', 4312883, '433.289612', '76.178452', '-103.308701', 61, 0, 0, 0, 1, 6, 0, 0, 1822, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47558, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312885', 4312885, '455.140289', '76.178452', '-125.088303', 63, 0, 0, 0, 1, 6, 0, 0, 1824, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47298, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312886', 4312886, '435.969788', '76.178452', '-103.270302', 62, 0, 0, 0, 1, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47020, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(327, 'e0084', 'bnpc4312887', 4312887, '389.036896', '76.218277', '-42.814720', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc4312890', 4312890, '430.472198', '76.127197', '-39.200500', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46494, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc4312892', 4312892, '355.095093', '76.140678', '-93.768280', 201, 0, 0, 0, 0, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46222, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc4312893', 4312893, '362.949707', '76.156097', '-101.645103', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc4312895', 4312895, '376.375610', '79.863983', '-55.369541', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45672, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(327, 'e0084', 'bnpc4312896', 4312896, '401.510406', '79.863983', '-80.450699', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45400, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(327, 'e0084', 'bnpc4312897', 4312897, '448.056213', '79.863983', '-48.739960', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45128, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(327, 'e0084', 'bnpc4312908', 4312908, '336.851501', '79.863983', '1.148477', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44856, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(327, 'e0084', 'bnpc4312909', 4312909, '336.851501', '79.863983', '-34.551071', 64, 0, 0, 0, 0, 6, 0, 0, 1825, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44584, 1, 0, 0, 0, 0, 30075, 0, 0, 0), +(327, 'e0084', 'bnpc4312910', 4312910, '465.150513', '76.178452', '-77.636757', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc4312911', 4312911, '456.877289', '76.178452', '-100.076103', 201, 0, 0, 0, 1, 6, 0, 0, 1826, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(327, 'e0084', 'bnpc4312912', 4312912, '389.015991', '76.084824', '-102.386803', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43756, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(327, 'e0084', 'bnpc4312913', 4312913, '354.466187', '76.065430', '-67.588791', 62, 0, 0, 0, 0, 6, 0, 0, 1823, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43484, 1, 0, 0, 0, 0, 30076, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(327, 'e0084', 'bnpc4621604', 4621604, '298.139404', '60.044762', '414.959106', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23804, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4057424', 4057424, '373.678802', '0.422750', '77.136467', 787, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 13576, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(328, 'e0085', 'bnpc4125683', 4125683, '-430.132813', '-4.460994', '252.733902', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70376, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4125744', 4125744, '-425.421906', '-5.333291', '249.054504', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70104, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4125745', 4125745, '-466.306793', '-7.092595', '232.199203', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69832, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4125747', 4125747, '-443.584503', '-13.024020', '208.694595', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69560, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4125750', 4125750, '-384.939392', '-2.456726', '215.991302', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69288, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4125752', 4125752, '-401.977203', '-3.269313', '175.769104', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69016, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4125755', 4125755, '-369.548309', '0.004147', '192.516693', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68744, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4125756', 4125756, '-398.737305', '-2.894251', '174.231705', 303, 0, 0, 0, 1, 6, 0, 0, 1180, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68472, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4125763', 4125763, '-396.099915', '-3.100000', '145.190201', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125766', 4125766, '-393.865906', '-3.100000', '143.932800', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125767', 4125767, '-386.391907', '-3.100003', '157.227005', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125768', 4125768, '-378.088715', '-3.100000', '148.268097', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125769', 4125769, '-406.202789', '-3.100000', '152.051300', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125772', 4125772, '-405.765289', '-3.100000', '141.705704', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125778', 4125778, '-366.663391', '-1.920207', '156.406006', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125779', 4125779, '-420.247314', '-1.484060', '141.641296', 382, 0, 0, 0, 1, 6, 0, 0, 638, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125784', 4125784, '-410.220001', '-3.100000', '26.344061', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66036, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4125795', 4125795, '-409.830414', '-3.100000', '41.699661', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65764, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4125797', 4125797, '-431.816986', '-3.100000', '23.416639', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65492, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4125801', 4125801, '-433.412598', '-3.100000', '18.522329', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65220, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4125802', 4125802, '-479.417297', '-3.100000', '-1.863089', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64948, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4125803', 4125803, '-512.265808', '-3.100000', '-6.092242', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64676, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4125804', 4125804, '-518.534912', '-3.100008', '-9.719651', 159, 0, 0, 0, 1, 6, 0, 0, 381, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64404, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4125808', 4125808, '-593.263123', '-2.203172', '-36.779171', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64138, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125810', 4125810, '-564.081787', '-1.780965', '-9.216994', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125812', 4125812, '-595.108887', '-1.485892', '9.388672', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63594, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125815', 4125815, '-650.354675', '-3.100002', '5.733859', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63322, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125820', 4125820, '-627.241516', '-3.100004', '-1.093794', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63050, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125822', 4125822, '-593.917175', '-1.481592', '-0.002720', 28, 0, 0, 0, 1, 6, 0, 0, 28, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125843', 4125843, '-400.381500', '43.564449', '-4.135254', 328, 0, 0, 0, 1, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62512, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(328, 'e0085', 'bnpc4125844', 4125844, '-391.328400', '44.270889', '-5.423687', 329, 0, 0, 0, 0, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62246, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(328, 'e0085', 'bnpc4125848', 4125848, '-440.943298', '31.565310', '58.753658', 328, 0, 0, 0, 1, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61968, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(328, 'e0085', 'bnpc4125849', 4125849, '-428.585693', '37.782028', '19.815300', 329, 0, 0, 0, 1, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61702, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(328, 'e0085', 'bnpc4125851', 4125851, '-404.069885', '36.076439', '36.532841', 328, 0, 0, 0, 0, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61424, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(328, 'e0085', 'bnpc4125852', 4125852, '-402.817291', '36.137718', '33.293110', 329, 0, 0, 0, 0, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61158, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(328, 'e0085', 'bnpc4125853', 4125853, '-478.698395', '28.016800', '54.543690', 329, 0, 0, 0, 1, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60886, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(328, 'e0085', 'bnpc4125854', 4125854, '-378.043213', '38.659840', '29.684401', 328, 0, 0, 0, 1, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60608, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(328, 'e0085', 'bnpc4125855', 4125855, '-482.932800', '26.474369', '57.663818', 329, 0, 0, 0, 1, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60342, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125856', 4125856, '-465.260010', '36.882080', '31.197201', 328, 0, 0, 0, 1, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60064, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125938', 4125938, '-477.459015', '-2.084961', '31.291599', 329, 0, 0, 0, 1, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59798, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(328, 'e0085', 'bnpc4125940', 4125940, '-486.273987', '-2.193239', '25.343540', 328, 0, 0, 0, 1, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59520, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(328, 'e0085', 'bnpc4125942', 4125942, '-489.859711', '-2.618297', '38.082218', 328, 0, 0, 0, 0, 6, 0, 0, 380, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59248, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(328, 'e0085', 'bnpc4125943', 4125943, '-491.041992', '-2.412468', '34.461601', 329, 0, 0, 0, 0, 6, 0, 0, 370, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58982, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(328, 'e0085', 'bnpc4125949', 4125949, '-467.209808', '-2.220885', '253.157806', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58716, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125951', 4125951, '-468.934601', '-2.134753', '251.403000', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58444, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125952', 4125952, '-435.089508', '-7.852676', '240.201996', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58172, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125953', 4125953, '-421.885315', '-7.810967', '200.294296', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57900, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125954', 4125954, '-385.569489', '-1.927866', '179.288498', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57628, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125955', 4125955, '-355.833588', '-0.654633', '170.008102', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 20, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57356, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125957', 4125957, '-414.132385', '-3.313842', '165.281601', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57084, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125959', 4125959, '-438.587494', '-1.647789', '125.521599', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56812, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125961', 4125961, '-439.676910', '-1.549295', '123.968102', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56540, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125964', 4125964, '-425.339294', '-2.050552', '105.144096', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 21, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56268, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125968', 4125968, '-430.014313', '-2.101961', '59.509911', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 22, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55996, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125972', 4125972, '-479.200195', '-2.255513', '23.531839', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 22, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55724, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125974', 4125974, '-553.856689', '-2.609314', '1.632629', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 23, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55452, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125977', 4125977, '-585.334229', '-2.232086', '-15.587410', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 23, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55180, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125978', 4125978, '-586.275085', '-2.093815', '-14.228230', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 23, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54908, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125981', 4125981, '-429.866486', '34.005150', '42.804970', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54636, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125985', 4125985, '-469.631805', '31.277020', '45.936749', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54364, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4125986', 4125986, '-382.392395', '40.251968', '10.964420', 36, 0, 0, 0, 1, 6, 0, 0, 296, 0, '0.000000', 24, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54092, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126060', 4126060, '590.199829', '-3.100000', '139.805496', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53466, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126064', 4126064, '637.447083', '-3.100000', '169.287994', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53194, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126065', 4126065, '624.633972', '-3.100000', '133.809998', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52922, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126066', 4126066, '576.989380', '-3.128174', '128.160400', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52650, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126068', 4126068, '585.121216', '-3.100000', '167.812897', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52378, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126069', 4126069, '574.338806', '-3.100000', '131.902802', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52106, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126070', 4126070, '640.462585', '-3.100000', '171.417999', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51834, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126071', 4126071, '633.408691', '-3.100000', '187.767105', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51562, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126072', 4126072, '564.760071', '-3.100325', '203.277802', 383, 0, 0, 0, 1, 6, 0, 0, 642, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51290, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126110', 4126110, '420.178009', '-3.100000', '155.939606', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51024, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126111', 4126111, '446.875000', '-3.100000', '175.658096', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50752, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126112', 4126112, '437.292786', '-3.100000', '194.681793', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50480, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126113', 4126113, '401.780914', '-3.100000', '183.057205', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50208, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126114', 4126114, '394.433014', '-3.100000', '141.594101', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49936, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126115', 4126115, '390.221100', '-3.100000', '144.688904', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49664, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126116', 4126116, '369.374298', '-3.100012', '127.962303', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49392, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126117', 4126117, '380.599792', '-3.100016', '17.808519', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49120, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126118', 4126118, '376.532288', '-3.100016', '22.182360', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48848, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126119', 4126119, '358.780792', '-3.100016', '33.644321', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48576, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126120', 4126120, '440.921600', '-3.100000', '192.138596', 389, 0, 0, 0, 1, 6, 0, 0, 643, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48304, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126121', 4126121, '299.763397', '-3.100003', '155.110306', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4126122', 4126122, '328.125793', '-3.100003', '150.720703', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4126124', 4126124, '287.582489', '-3.100012', '33.655041', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40724, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4126125', 4126125, '327.775513', '-3.100016', '30.262211', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40452, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4126127', 4126127, '293.655487', '-3.100016', '37.213219', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40180, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4126129', 4126129, '272.029205', '-3.100012', '83.103783', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39908, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4126131', 4126131, '303.497009', '-3.100003', '149.039093', 139, 0, 0, 0, 1, 6, 0, 0, 391, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39636, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(328, 'e0085', 'bnpc4126133', 4126133, '338.338287', '-0.869812', '206.256104', 343, 0, 0, 0, 1, 6, 0, 0, 414, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48038, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126134', 4126134, '342.366699', '-1.510742', '208.392303', 344, 0, 0, 0, 1, 6, 0, 0, 413, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47772, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126135', 4126135, '363.240997', '-1.083435', '209.918304', 345, 0, 0, 0, 1, 6, 0, 0, 416, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47506, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126136', 4126136, '352.468109', '-2.426208', '192.339798', 346, 0, 0, 0, 1, 6, 0, 0, 415, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47240, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126137', 4126137, '323.811615', '-2.517761', '78.690804', 344, 0, 0, 0, 1, 6, 0, 0, 413, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46956, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126138', 4126138, '334.004608', '-2.517761', '104.631104', 345, 0, 0, 0, 1, 6, 0, 0, 416, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46690, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126139', 4126139, '301.655487', '-2.548279', '92.088127', 346, 0, 0, 0, 1, 6, 0, 0, 415, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46424, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126140', 4126140, '299.427704', '-2.548279', '95.109383', 343, 0, 0, 0, 1, 6, 0, 0, 414, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126141', 4126141, '595.239075', '-2.517761', '216.113495', 343, 0, 0, 0, 1, 6, 0, 0, 414, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126142', 4126142, '590.905579', '-1.602234', '208.758698', 345, 0, 0, 0, 1, 6, 0, 0, 416, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45602, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126143', 4126143, '571.892822', '-2.517761', '189.532196', 344, 0, 0, 0, 1, 6, 0, 0, 413, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45324, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126144', 4126144, '614.526489', '-2.548279', '199.420197', 346, 0, 0, 0, 1, 6, 0, 0, 415, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45064, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126145', 4126145, '377.982513', '3.082690', '-10.971560', 344, 0, 0, 0, 1, 6, 0, 0, 413, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126146', 4126146, '358.682709', '1.620175', '-3.517888', 345, 0, 0, 0, 1, 6, 0, 0, 416, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44514, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126147', 4126147, '356.030396', '0.471913', '-0.493977', 346, 0, 0, 0, 1, 6, 0, 0, 415, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44248, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126148', 4126148, '321.975311', '-2.309778', '2.777854', 343, 0, 0, 0, 1, 6, 0, 0, 414, 0, '0.000000', 33, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126149', 4126149, '369.527588', '23.636169', '-126.329498', 328, 0, 0, 0, 1, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43656, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(328, 'e0085', 'bnpc4126150', 4126150, '365.261505', '24.531950', '-141.892105', 329, 0, 0, 0, 0, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43390, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(328, 'e0085', 'bnpc4126151', 4126151, '376.211090', '23.514099', '-136.919296', 330, 0, 0, 0, 1, 6, 0, 0, 376, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43166, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(328, 'e0085', 'bnpc4126152', 4126152, '262.362488', '26.421909', '-92.842506', 329, 0, 0, 0, 0, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42846, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(328, 'e0085', 'bnpc4126153', 4126153, '259.484711', '26.393141', '-94.860497', 330, 0, 0, 0, 0, 6, 0, 0, 376, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42622, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(328, 'e0085', 'bnpc4126154', 4126154, '289.894501', '21.974110', '-95.414726', 328, 0, 0, 0, 1, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42296, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(328, 'e0085', 'bnpc4126155', 4126155, '342.356110', '27.484810', '-150.423996', 328, 0, 0, 0, 1, 6, 0, 0, 379, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42024, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(328, 'e0085', 'bnpc4126156', 4126156, '336.954010', '12.465180', '-69.307114', 329, 0, 0, 0, 1, 6, 0, 0, 369, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41758, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(328, 'e0085', 'bnpc4126157', 4126157, '263.538513', '33.493530', '-145.616898', 330, 0, 0, 0, 1, 6, 0, 0, 376, 0, '0.000000', 34, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41534, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(328, 'e0085', 'bnpc4126201', 4126201, '687.981384', '-0.741994', '125.134102', 345, 0, 0, 0, 1, 6, 0, 0, 416, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39346, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126202', 4126202, '665.960205', '-1.478390', '135.026901', 343, 0, 0, 0, 1, 6, 0, 0, 414, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39062, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126203', 4126203, '704.842712', '-0.435132', '136.984604', 346, 0, 0, 0, 1, 6, 0, 0, 415, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126204', 4126204, '700.169128', '-0.449296', '142.053299', 344, 0, 0, 0, 1, 6, 0, 0, 413, 0, '0.000000', 31, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38524, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126250', 4126250, '663.416870', '-3.100000', '163.420700', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38282, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126251', 4126251, '601.270325', '-3.100000', '130.947296', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38010, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126253', 4126253, '620.669922', '-3.051413', '181.877808', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37738, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126254', 4126254, '541.538879', '-3.100000', '155.849396', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37466, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126256', 4126256, '538.999573', '-3.100000', '152.828400', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 30, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37194, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126259', 4126259, '390.150787', '-3.100000', '175.607697', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36922, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126266', 4126266, '359.669403', '-3.100003', '142.000702', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36650, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126267', 4126267, '359.969391', '-3.100016', '53.416809', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 31, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36378, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126268', 4126268, '325.831085', '-3.128174', '90.616592', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36106, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126270', 4126270, '250.098404', '-3.100526', '79.563713', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35834, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126271', 4126271, '302.732788', '-3.100012', '124.098297', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35562, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126273', 4126273, '273.024994', '-3.100202', '221.399399', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 33, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35290, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126274', 4126274, '249.098404', '-3.100000', '249.991501', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 33, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35018, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126275', 4126275, '271.496887', '-3.100202', '223.957397', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 33, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126277', 4126277, '246.158798', '-3.100526', '39.638111', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126278', 4126278, '246.458801', '-3.100526', '81.666367', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4126279', 4126279, '308.674408', '-3.100016', '18.911890', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 34, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4621610', 4621610, '488.661896', '8.812365', '96.352119', 2772, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 14176, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(328, 'e0085', 'bnpc4621612', 4621612, '-355.266296', '10.754760', '92.445412', 2771, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 13910, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084012', 4084012, '179.888504', '-14.023070', '326.667511', 1063, 0, 0, 0, 0, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 105, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36788, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084013', 4084013, '129.197800', '-18.081970', '377.597900', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '5.000000', 50, 3, 120, 1, 0, 102, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39212, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084017', 4084017, '124.991203', '-11.999890', '98.268700', 1052, 0, 0, 0, 0, 6, 0, 0, 1548, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44246, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084019', 4084019, '43.260269', '-0.038252', '-243.015701', 1053, 0, 0, 0, 0, 6, 0, 0, 1549, 0, '0.000000', 50, 0, 120, 1, 0, 101, 0, 0, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43980, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084020', 4084020, '37.211861', '0.085123', '-238.371597', 1054, 0, 0, 0, 0, 6, 0, 0, 1551, 0, '0.000000', 50, 0, 120, 1, 0, 101, 0, 0, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43714, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084021', 4084021, '48.930859', '-0.038412', '-237.455994', 1055, 0, 0, 0, 0, 6, 0, 0, 1552, 0, '0.000000', 50, 0, 120, 1, 0, 101, 0, 0, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084022', 4084022, '32.664619', '-0.026817', '-233.183502', 1056, 0, 0, 0, 0, 6, 0, 0, 1553, 0, '0.000000', 50, 0, 120, 1, 0, 101, 0, 0, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084023', 4084023, '53.508499', '0.046601', '-232.481598', 1057, 0, 0, 0, 0, 6, 0, 0, 1554, 0, '0.000000', 50, 0, 120, 1, 0, 101, 0, 0, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42916, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084026', 4084026, '43.223949', '-0.056296', '-232.420593', 1058, 0, 0, 0, 0, 6, 0, 0, 1555, 0, '0.000000', 50, 0, 120, 1, 0, 101, 0, 0, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42650, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084028', 4084028, '73.001823', '6.050000', '-448.694305', 884, 0, 0, 0, 0, 6, 0, 0, 1547, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44512, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084036', 4084036, '75.822021', '-10.330380', '27.041380', 1072, 0, 0, 0, 1, 6, 0, 0, 1562, 0, '0.000000', 50, 0, 120, 1, 0, 112, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29004, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084037', 4084037, '78.843384', '-10.055730', '24.538940', 1072, 0, 0, 0, 1, 6, 0, 0, 1562, 0, '0.000000', 50, 0, 120, 1, 0, 112, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29276, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084408', 4084408, '132.218796', '-18.066629', '377.637299', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '5.000000', 50, 3, 120, 1, 0, 102, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38940, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084411', 4084411, '186.514603', '-18.020941', '371.556000', 1073, 0, 0, 0, 1, 6, 0, 0, 1563, 0, '0.000000', 50, 0, 120, 1, 0, 104, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38142, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084414', 4084414, '180.712494', '-18.020941', '378.561005', 1073, 0, 0, 0, 1, 6, 0, 0, 1563, 0, '0.000000', 50, 0, 120, 1, 0, 104, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31070, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084415', 4084415, '126.726196', '-14.053590', '226.673492', 1070, 0, 0, 0, 1, 6, 0, 0, 1560, 0, '0.000000', 50, 0, 120, 1, 0, 109, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34902, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084416', 4084416, '151.203003', '-14.049900', '264.766815', 1071, 0, 0, 0, 1, 5, 0, 0, 1561, 0, '0.000000', 50, 0, 120, 1, 0, 108, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35434, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084417', 4084417, '116.807701', '-14.023070', '281.208496', 890, 0, 0, 0, 6, 6, 0, 0, 35, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35676, 1, 3, 2000, 0, 0, 0, 4247545, 0, 0), +(329, 'e0086', 'bnpc4084433', 4084433, '125.108597', '-14.023070', '186.785599', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 111, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31596, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084435', 4084435, '183.521896', '-14.053590', '275.784698', 890, 0, 0, 0, 1, 6, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 106, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31324, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084444', 4084444, '107.774200', '-18.000010', '375.161194', 919, 0, 0, 0, 2, 6, 0, 0, 1556, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42384, 1, 3, 2000, 0, 0, 0, 4331109, 0, 0), +(329, 'e0086', 'bnpc4084457', 4084457, '122.606201', '-10.055730', '52.719849', 890, 0, 0, 0, 2, 6, 0, 0, 35, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30056, 1, 3, 2000, 0, 0, 0, 4247774, 0, 0), +(329, 'e0086', 'bnpc4084458', 4084458, '91.172607', '-10.055730', '27.267820', 890, 0, 0, 0, 2, 6, 0, 0, 35, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29784, 1, 3, 2000, 0, 0, 0, 4247775, 0, 0), +(329, 'e0086', 'bnpc4084459', 4084459, '37.333488', '-0.164260', '-16.769711', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 50, 2, 120, 1, 0, 113, 0, 100, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29512, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084465', 4084465, '110.761497', '-0.000034', '-51.805130', 919, 0, 0, 0, 2, 6, 0, 0, 1556, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42112, 1, 3, 2000, 0, 0, 0, 4331095, 0, 0), +(329, 'e0086', 'bnpc4084466', 4084466, '42.899948', '8.255061', '-114.172997', 919, 0, 0, 0, 2, 6, 0, 0, 1556, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41840, 1, 3, 2000, 0, 0, 0, 4331098, 0, 0), +(329, 'e0086', 'bnpc4084482', 4084482, '28.179529', '-0.000163', '-145.814606', 919, 0, 0, 0, 2, 6, 0, 0, 1556, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41568, 1, 3, 2000, 0, 0, 0, 4331100, 0, 0), +(329, 'e0086', 'bnpc4084488', 4084488, '37.997730', '0.000000', '-146.913101', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 119, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24072, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084489', 4084489, '48.068661', '0.000000', '-146.577393', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 119, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24344, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084493', 4084493, '5.142273', '7.980469', '-96.159912', 1075, 0, 0, 0, 1, 6, 0, 0, 1565, 0, '0.000000', 50, 0, 120, 1, 0, 117, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26308, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(329, 'e0086', 'bnpc4084494', 4084494, '5.355835', '7.980469', '-89.140808', 1062, 0, 0, 0, 1, 6, 0, 0, 1558, 0, '0.000000', 50, 0, 120, 1, 0, 117, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26586, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084497', 4084497, '81.589973', '7.950102', '-96.495667', 1075, 0, 0, 0, 1, 6, 0, 0, 1565, 0, '0.000000', 50, 0, 120, 1, 0, 115, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27668, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(329, 'e0086', 'bnpc4084534', 4084534, '45.975342', '7.827881', '-98.008789', 1075, 0, 0, 0, 1, 6, 0, 0, 1565, 0, '0.000000', 50, 0, 120, 1, 0, 116, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26852, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(329, 'e0086', 'bnpc4084573', 4084573, '42.979328', '-0.040156', '-260.770386', 919, 0, 0, 0, 2, 6, 0, 0, 1556, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41024, 1, 3, 2000, 0, 0, 0, 4247834, 0, 0), +(329, 'e0086', 'bnpc4084578', 4084578, '45.033428', '0.000001', '-279.235504', 1061, 0, 0, 0, 1, 5, 0, 0, 1557, 0, '0.000000', 50, 0, 120, 1, 0, 121, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 20228, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084581', 4084581, '45.334469', '-0.045776', '-282.978607', 1061, 0, 0, 0, 1, 5, 0, 0, 1557, 0, '0.000000', 50, 0, 120, 1, 0, 121, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 20500, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084583', 4084583, '40.394760', '-0.045097', '-281.951599', 1062, 0, 0, 0, 1, 5, 0, 0, 1558, 0, '0.000000', 50, 0, 120, 1, 0, 121, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 19950, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084590', 4084590, '74.096893', '9.933594', '-376.446594', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 123, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 21244, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4084591', 4084591, '68.897972', '9.933594', '-319.045197', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 122, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 20972, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4087552', 4087552, '75.254829', '6.000000', '-435.065704', 931, 0, 0, 0, 1, 6, 0, 0, 1550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40214, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4101303', 4101303, '129.869507', '-18.081970', '375.221710', 1452, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39478, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4101304', 4101304, '149.854904', '-18.051510', '375.815796', 1060, 0, 0, 0, 0, 6, 0, 0, 1566, 0, '0.000000', 50, 0, 120, 1, 0, 103, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38674, 1, 0, 2000, 0, 0, 0, 4254773, 0, 0), +(329, 'e0086', 'bnpc4101306', 4101306, '148.014206', '-18.051510', '374.528687', 1512, 0, 0, 0, 0, 6, 0, 0, 1566, 0, '0.000000', 50, 0, 120, 1, 0, 103, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38408, 1, 0, 2000, 0, 0, 0, 4254774, 0, 0), +(329, 'e0086', 'bnpc4101977', 4101977, '111.863800', '-0.167908', '-38.725040', 1511, 0, 0, 0, 0, 6, 0, 0, 1566, 0, '0.000000', 50, 0, 120, 1, 0, 114, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28200, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4101978', 4101978, '110.032799', '-0.167908', '-37.748470', 1510, 0, 0, 0, 0, 6, 0, 0, 1566, 0, '0.000000', 50, 0, 120, 1, 0, 114, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27934, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4246781', 4246781, '111.147598', '-0.000166', '-107.654503', 919, 0, 0, 0, 2, 6, 0, 0, 1556, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41296, 1, 3, 2000, 0, 0, 0, 4331102, 0, 0), +(329, 'e0086', 'bnpc4246782', 4246782, '42.520988', '4.950057', '-317.772614', 919, 0, 0, 0, 2, 6, 0, 0, 1556, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40752, 1, 3, 2000, 0, 0, 0, 4247839, 0, 0), +(329, 'e0086', 'bnpc4246783', 4246783, '73.336823', '9.012489', '-318.880493', 919, 0, 0, 0, 2, 6, 0, 0, 1556, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40480, 1, 3, 2000, 0, 0, 0, 4330770, 0, 0), +(329, 'e0086', 'bnpc4248246', 4248246, '148.663803', '-14.049900', '266.914093', 1072, 0, 0, 0, 1, 5, 0, 0, 1562, 0, '0.000000', 50, 0, 120, 1, 0, 108, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35168, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4248248', 4248248, '124.284698', '-14.053590', '211.365997', 1072, 0, 0, 0, 1, 6, 0, 0, 1562, 0, '0.000000', 50, 0, 120, 1, 0, 109, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34624, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4248255', 4248255, '180.590500', '-14.114620', '280.811615', 1073, 0, 0, 0, 1, 6, 0, 0, 1563, 0, '0.000000', 50, 0, 120, 1, 0, 106, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 35966, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4248256', 4248256, '186.480499', '-14.114620', '271.442688', 1073, 0, 0, 0, 1, 6, 0, 0, 1563, 0, '0.000000', 50, 0, 120, 1, 0, 106, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36238, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4248288', 4248288, '41.567841', '-0.167908', '-13.809450', 1071, 0, 0, 0, 1, 6, 0, 0, 1561, 0, '0.000000', 50, 0, 120, 1, 0, 113, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28726, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4248292', 4248292, '46.097530', '7.827881', '-94.438171', 1075, 0, 0, 0, 1, 6, 0, 0, 1565, 0, '0.000000', 50, 0, 120, 1, 0, 116, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27124, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(329, 'e0086', 'bnpc4248295', 4248295, '81.620483', '7.980469', '-89.232361', 1062, 0, 0, 0, 1, 6, 0, 0, 1558, 0, '0.000000', 50, 0, 120, 1, 0, 115, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27402, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4248296', 4248296, '108.232201', '-0.167908', '-148.864594', 1075, 0, 0, 0, 1, 6, 0, 0, 1565, 0, '0.000000', 50, 0, 120, 1, 0, 120, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23588, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(329, 'e0086', 'bnpc4248302', 4248302, '109.025597', '-0.167908', '-138.933502', 1061, 0, 0, 0, 1, 6, 0, 0, 1557, 0, '0.000000', 50, 0, 120, 1, 0, 120, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23872, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4248311', 4248311, '69.702148', '9.994568', '-316.407715', 1075, 0, 0, 0, 0, 6, 0, 0, 1565, 0, '0.000000', 50, 0, 120, 1, 0, 122, 0, 100, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21848, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4248312', 4248312, '66.962502', '9.933594', '-321.467010', 1075, 0, 0, 0, 1, 10, 0, 0, 1565, 0, '0.000000', 50, 0, 120, 1, 0, 122, 0, 100, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21576, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250458', 4250458, '106.279099', '-14.023070', '265.478912', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 110, 0, 100, 7, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33252, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250586', 4250586, '-35.599300', '-0.167908', '-146.514694', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 118, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24912, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250643', 4250643, '179.410294', '-14.023070', '325.202606', 1063, 0, 0, 0, 0, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 105, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36516, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250645', 4250645, '179.897995', '-14.023070', '323.792389', 1063, 0, 0, 0, 0, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 105, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37060, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250646', 4250646, '189.929001', '-14.023070', '326.698090', 1063, 0, 0, 0, 0, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 105, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37332, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250647', 4250647, '190.537994', '-14.023070', '325.416290', 1063, 0, 0, 0, 0, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 105, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37604, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250648', 4250648, '189.885193', '-14.023070', '324.047089', 1063, 0, 0, 0, 0, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 105, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37876, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250658', 4250658, '106.309601', '-14.023070', '268.378113', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 110, 0, 100, 7, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33796, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250659', 4250659, '115.190300', '-14.023070', '248.188004', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 110, 0, 100, 7, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32980, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250660', 4250660, '116.929802', '-14.023070', '285.925903', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 110, 0, 100, 7, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32708, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250661', 4250661, '143.755203', '-14.023070', '260.840088', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 110, 0, 100, 7, 0, 1, 0, 1, 0, '0.000000', '1.000000', 33524, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250662', 4250662, '143.724594', '-14.023070', '257.239014', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 110, 0, 100, 7, 0, 1, 0, 1, 0, '0.000000', '1.000000', 31892, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250663', 4250663, '143.816299', '-14.114620', '273.334808', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 110, 0, 100, 7, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32164, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250664', 4250664, '143.846802', '-14.114620', '276.600189', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 110, 0, 100, 7, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32436, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250683', 4250683, '-35.599300', '-0.167908', '-144.225906', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 118, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25184, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250684', 4250684, '-35.599300', '-0.167908', '-147.826996', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 118, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26000, 1, 3, 2000, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(329, 'e0086', 'bnpc4250685', 4250685, '-35.599300', '-0.167908', '-143.035599', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 118, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25728, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250686', 4250686, '-35.568851', '-0.167908', '-149.078201', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 118, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25456, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250687', 4250687, '-35.599300', '-0.167908', '-141.723404', 1063, 0, 0, 0, 1, 6, 0, 0, 1559, 0, '0.000000', 50, 0, 120, 1, 0, 118, 0, 100, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24640, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250786', 4250786, '38.982391', '5.000000', '-322.761200', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 120, 0, 0, 1, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22332, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4250787', 4250787, '44.063000', '4.950058', '-317.588409', 890, 0, 0, 0, 1, 10, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 120, 0, 0, 1, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22060, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4329484', 4329484, '153.623398', '-14.049900', '268.394714', 1071, 0, 0, 0, 1, 5, 0, 0, 1561, 0, '0.000000', 50, 0, 120, 1, 0, 108, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34346, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4329485', 4329485, '122.789299', '-14.053590', '218.989105', 1070, 0, 0, 0, 1, 6, 0, 0, 1560, 0, '0.000000', 50, 0, 120, 1, 0, 109, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 34086, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4329508', 4329508, '41.501999', '-0.167908', '-21.988279', 1071, 0, 0, 0, 1, 6, 0, 0, 1561, 0, '0.000000', 50, 0, 120, 1, 0, 113, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28454, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4329515', 4329515, '72.097458', '9.933594', '-376.475311', 890, 0, 0, 0, 0, 6, 0, 0, 35, 0, '0.000000', 50, 0, 120, 1, 0, 123, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 20700, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4330603', 4330603, '70.817139', '5.996765', '-435.080505', 2261, 0, 0, 0, 1, 6, 0, 0, 2180, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39948, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4406921', 4406921, '130.418793', '-14.053590', '194.252396', 1072, 0, 0, 0, 1, 6, 0, 0, 1562, 0, '0.000000', 50, 0, 120, 1, 0, 111, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30816, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4406922', 4406922, '120.247498', '-14.053590', '193.993393', 1070, 0, 0, 0, 1, 6, 0, 0, 1560, 0, '0.000000', 50, 0, 120, 1, 0, 111, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 30550, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4406924', 4406924, '48.535030', '7.827881', '-97.298958', 1075, 0, 0, 0, 1, 6, 0, 0, 1565, 0, '0.000000', 50, 0, 120, 1, 0, 116, 0, 100, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23316, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(329, 'e0086', 'bnpc4406926', 4406926, '17.563339', '9.237017', '-118.370499', 1061, 0, 0, 0, 1, 6, 0, 0, 1557, 0, '0.000000', 50, 0, 120, 1, 0, 200, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23056, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(329, 'e0086', 'bnpc4406927', 4406927, '20.600620', '9.237017', '-116.369698', 1061, 0, 0, 0, 1, 6, 0, 0, 1557, 0, '0.000000', 50, 0, 120, 1, 0, 200, 0, 100, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 22784, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969486', 3969486, '557.060974', '28.946320', '333.730011', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135904, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969499', 3969499, '706.892212', '28.174080', '410.894989', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135638, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc3969501', 3969501, '698.946899', '27.231220', '412.552002', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135366, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc3969502', 3969502, '658.104797', '40.675949', '339.546509', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc3969504', 3969504, '688.856689', '42.308319', '338.199005', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc3969505', 3969505, '695.458374', '32.764568', '395.995209', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc3969506', 3969506, '714.097778', '41.205120', '366.676910', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc3969507', 3969507, '672.780518', '40.217781', '354.945709', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc3969508', 3969508, '719.824585', '40.851952', '370.876312', 138, 0, 0, 0, 1, 6, 0, 0, 399, 0, '0.000000', 11, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc3969542', 3969542, '560.540100', '24.185499', '348.622803', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133456, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969548', 3969548, '522.148376', '23.025820', '338.460297', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133184, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969554', 3969554, '549.980774', '37.888100', '297.108398', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132912, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969559', 3969559, '529.777893', '26.199690', '320.881897', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969858', 3969858, '676.691772', '12.588650', '446.555206', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969860', 3969860, '668.372314', '21.641729', '428.498291', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132108, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969864', 3969864, '682.858887', '19.865379', '433.932312', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131836, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969865', 3969865, '734.760376', '26.661579', '441.483093', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131564, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969866', 3969866, '738.361572', '27.470659', '441.561615', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131292, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969867', 3969867, '743.555115', '43.828701', '397.126801', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131020, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969868', 3969868, '749.288208', '49.819462', '361.199493', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130748, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969869', 3969869, '745.879089', '49.587929', '364.109314', 22, 0, 0, 0, 1, 6, 0, 0, 400, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130476, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969870', 3969870, '554.436523', '29.648230', '329.762695', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130192, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969874', 3969874, '501.999603', '16.372259', '323.036591', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129920, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969875', 3969875, '516.929810', '22.049240', '301.594513', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129648, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969876', 3969876, '565.178772', '35.629768', '313.008209', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129376, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969877', 3969877, '634.964478', '23.582150', '394.616089', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129104, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969913', 3969913, '617.781311', '28.683889', '370.071503', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969920', 3969920, '611.048096', '35.477501', '345.262604', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969921', 3969921, '586.014709', '27.906170', '353.311188', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969922', 3969922, '619.215576', '29.112610', '369.491608', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969923', 3969923, '588.120422', '28.606050', '352.456696', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969924', 3969924, '613.825195', '35.926769', '345.689789', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969925', 3969925, '619.487122', '27.800541', '373.672699', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969928', 3969928, '586.106323', '30.585791', '346.139404', 205, 0, 0, 0, 1, 6, 0, 0, 410, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969938', 3969938, '607.670898', '42.955601', '306.352112', 348, 0, 0, 0, 0, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126680, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(330, 'e0087', 'bnpc3969940', 3969940, '601.888184', '42.074169', '311.211304', 349, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126414, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(330, 'e0087', 'bnpc3969942', 3969942, '586.741699', '40.893959', '312.224213', 349, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126142, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(330, 'e0087', 'bnpc3969943', 3969943, '615.350525', '43.930660', '306.935211', 348, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125864, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(330, 'e0087', 'bnpc3969944', 3969944, '582.392395', '43.245682', '301.571014', 349, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125598, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(330, 'e0087', 'bnpc3969945', 3969945, '593.642029', '43.886150', '301.072693', 348, 0, 0, 0, 1, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125320, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(330, 'e0087', 'bnpc3969946', 3969946, '601.489197', '43.885170', '302.896698', 348, 0, 0, 0, 0, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125048, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(330, 'e0087', 'bnpc3969947', 3969947, '600.182373', '43.875881', '302.854614', 349, 0, 0, 0, 0, 6, 0, 0, 420, 0, '0.000000', 14, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124782, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(330, 'e0087', 'bnpc3969953', 3969953, '466.849701', '12.710720', '359.487213', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969954', 3969954, '457.877411', '9.353733', '383.566010', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969977', 3969977, '450.522614', '9.018035', '388.296295', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123972, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969978', 3969978, '489.053406', '7.208063', '402.681610', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969979', 3969979, '510.520996', '1.643817', '421.411987', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969980', 3969980, '516.838318', '2.083105', '418.970612', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123156, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969981', 3969981, '454.281586', '8.893167', '420.949799', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122884, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3969983', 3969983, '510.302307', '3.759752', '406.295197', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122612, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970016', 3970016, '598.226685', '25.550039', '368.222595', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122304, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970018', 3970018, '617.181580', '32.516930', '357.289886', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122032, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970021', 3970021, '643.447693', '23.634590', '398.243011', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121760, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970023', 3970023, '635.004395', '20.669270', '404.579987', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121488, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970025', 3970025, '599.237000', '30.746880', '353.353088', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121216, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970032', 3970032, '622.963623', '41.739059', '320.949005', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120944, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970034', 3970034, '634.595825', '42.144840', '321.818115', 340, 0, 0, 0, 0, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120672, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970036', 3970036, '626.665527', '41.288631', '324.601715', 340, 0, 0, 0, 1, 6, 0, 0, 394, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120400, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970043', 3970043, '657.099609', '17.239750', '446.592987', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970044', 3970044, '603.288696', '6.133514', '483.976501', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970045', 3970045, '601.175476', '6.050048', '482.055298', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970058', 3970058, '513.097290', '16.847160', '355.958801', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970061', 3970061, '447.827789', '5.457586', '281.886292', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970133', 3970133, '416.984497', '-8.646816', '202.035202', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970135', 3970135, '412.728088', '-9.469052', '205.053802', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970136', 3970136, '346.358093', '-20.858730', '218.121307', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970139', 3970139, '349.959106', '-18.572670', '169.900894', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970140', 3970140, '354.643799', '-18.085939', '171.731094', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970155', 3970155, '335.827911', '-17.950689', '158.445908', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117108, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970159', 3970159, '307.105988', '-20.876850', '162.587708', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116836, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970161', 3970161, '298.054413', '-13.534800', '141.344299', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116564, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970162', 3970162, '293.618408', '-13.544960', '146.169205', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116292, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970166', 3970166, '194.223495', '-9.052984', '64.264412', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102994, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc3970168', 3970168, '126.745399', '-15.229580', '95.719521', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103266, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc3970170', 3970170, '165.697601', '-14.725040', '79.575813', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103538, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc3970171', 3970171, '84.276093', '-14.942520', '126.744102', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102450, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc3970174', 3970174, '97.569847', '-16.128820', '166.516693', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102722, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc3970177', 3970177, '7.003844', '-24.124559', '109.025703', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116026, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970184', 3970184, '24.765341', '-23.209021', '107.560799', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115754, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970186', 3970186, '-19.180639', '-22.568140', '51.071899', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115482, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970187', 3970187, '-12.954960', '-22.781759', '46.860409', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970190', 3970190, '7.797313', '-22.598660', '68.039932', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114938, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970193', 3970193, '104.600502', '-10.910250', '5.996748', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114666, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970194', 3970194, '55.405460', '-5.264410', '-30.655420', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970196', 3970196, '38.071209', '-5.203373', '-34.836391', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970199', 3970199, '64.013428', '-4.214352', '-64.780800', 397, 0, 0, 0, 1, 6, 0, 0, 644, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970214', 3970214, '176.327301', '-12.764270', '112.090401', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103810, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc3970222', 3970222, '89.666710', '-1.146154', '-60.931259', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113584, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970231', 3970231, '82.380707', '-1.466871', '-63.000511', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113312, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970232', 3970232, '87.757019', '-2.006091', '-55.761841', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113040, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970236', 3970236, '82.076691', '-1.472959', '-64.535721', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112768, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970238', 3970238, '81.548286', '-2.522091', '-54.485199', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112496, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970241', 3970241, '76.980713', '-2.383074', '-61.994930', 306, 0, 0, 0, 1, 6, 0, 0, 129, 0, '0.000000', 19, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112224, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970308', 3970308, '344.824890', '-17.982759', '163.365295', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970320', 3970320, '261.840088', '-17.578510', '163.665298', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111686, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970328', 3970328, '262.914001', '-17.209499', '160.012894', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111414, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970331', 3970331, '324.945801', '-5.662250', '104.268402', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111142, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970344', 3970344, '367.757294', '4.986305', '78.445778', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110870, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970353', 3970353, '366.964111', '4.318256', '81.956146', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110598, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970357', 3970357, '383.822998', '15.624690', '27.171089', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110326, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970366', 3970366, '253.742203', '2.639771', '62.302608', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100280, 5, 0, 0, 0, 28, 30059, 0, 0, 0), +(330, 'e0087', 'bnpc3970369', 3970369, '250.293701', '2.426147', '62.638309', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100552, 5, 0, 0, 0, 28, 30059, 0, 0, 0), +(330, 'e0087', 'bnpc3970370', 3970370, '253.833694', '2.365112', '64.438843', 769, 0, 0, 0, 0, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99736, 5, 0, 0, 0, 28, 30059, 0, 0, 0), +(330, 'e0087', 'bnpc3970371', 3970371, '242.913300', '1.349542', '71.061279', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100008, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc3970372', 3970372, '243.379196', '1.981285', '58.301060', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101368, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc3970373', 3970373, '264.349487', '2.966964', '67.594612', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101640, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc3970374', 3970374, '258.144806', '5.613231', '48.790150', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100824, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc3970375', 3970375, '272.358307', '5.020142', '58.945560', 769, 0, 0, 0, 1, 6, 0, 0, 225, 0, '0.000000', 18, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101096, 5, 0, 0, 0, 28, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc3970378', 3970378, '170.397400', '-15.426920', '64.652428', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110054, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970381', 3970381, '148.926498', '-12.439410', '99.620064', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109782, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970382', 3970382, '150.743805', '-12.130980', '102.494904', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109510, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970389', 3970389, '5.355869', '-23.270050', '51.895889', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109238, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970391', 3970391, '79.423157', '-4.654048', '-18.814421', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108966, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970394', 3970394, '50.156361', '-2.487267', '-15.762620', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108694, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970399', 3970399, '48.172680', '-2.487267', '-15.457440', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 16, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108422, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970406', 3970406, '269.703186', '-9.597971', '96.116524', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108156, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970411', 3970411, '267.261688', '-10.238850', '98.008636', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107884, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970412', 3970412, '263.263885', '-10.391440', '90.897942', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107612, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970414', 3970414, '241.901199', '-11.703720', '95.231506', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107340, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970415', 3970415, '239.032501', '-11.642680', '94.010780', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107068, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970416', 3970416, '246.860504', '-13.252180', '112.323097', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106796, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970419', 3970419, '249.271500', '-13.493160', '115.100197', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106524, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970420', 3970420, '243.442505', '-14.033920', '117.877403', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106252, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970433', 3970433, '222.674896', '-14.938630', '104.905701', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105980, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970434', 3970434, '219.775604', '-15.091220', '103.654503', 206, 0, 0, 0, 1, 6, 0, 0, 403, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105708, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970437', 3970437, '293.079987', '-11.703720', '132.432999', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105412, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970680', 3970680, '216.784897', '-14.389340', '95.933472', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105158, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3970681', 3970681, '272.755005', '-9.750549', '103.227303', 38, 0, 0, 0, 1, 6, 0, 0, 363, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104886, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3972576', 3972576, '303.465607', '3.314056', '68.397324', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104596, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3972577', 3972577, '306.798889', '3.292596', '65.152077', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104324, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc3972584', 3972584, '338.778503', '-21.646130', '187.870697', 341, 0, 0, 0, 1, 6, 0, 0, 402, 0, '0.000000', 15, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104052, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4057318', 4057318, '654.975586', '9.882965', '475.443115', 783, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21436, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(330, 'e0087', 'bnpc4057321', 4057321, '299.487488', '-24.761221', '213.123703', 785, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21170, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(330, 'e0087', 'bnpc4057322', 4057322, '221.054092', '-24.836121', '213.135193', 784, 0, 0, 0, 0, 6, 0, 0, 1272, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20904, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(330, 'e0087', 'bnpc4057324', 4057324, '-96.358551', '-25.164360', '54.821659', 786, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20638, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(330, 'e0087', 'bnpc4057391', 4057391, '14.877870', '-10.652030', '-83.785133', 787, 0, 0, 0, 0, 6, 0, 0, 1273, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20372, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(330, 'e0087', 'bnpc4108563', 4108563, '134.623199', '-16.564131', '55.533340', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102178, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4108567', 4108567, '124.950996', '-18.103809', '158.397507', 181, 0, 0, 0, 1, 6, 0, 0, 1181, 0, '0.000000', 16, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101906, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4114576', 4114576, '-69.169189', '-25.864071', '-73.624763', 768, 0, 0, 0, 1, 6, 0, 0, 565, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89138, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(330, 'e0087', 'bnpc4114578', 4114578, '-48.966251', '-22.781740', '-124.681503', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96990, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4114591', 4114591, '-75.944153', '-28.244450', '-144.487701', 766, 0, 0, 0, 0, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97528, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(330, 'e0087', 'bnpc4114593', 4114593, '-75.913696', '-28.427610', '-146.562897', 765, 0, 0, 0, 0, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98610, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(330, 'e0087', 'bnpc4114594', 4114594, '-97.522850', '-30.215300', '-148.102402', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97800, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4114595', 4114595, '-106.523300', '-31.509951', '-130.479904', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97262, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4116530', 4116530, '-157.610504', '-38.071289', '-31.235229', 766, 0, 0, 0, 0, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98072, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(330, 'e0087', 'bnpc4116531', 4116531, '-146.562897', '-27.573059', '20.462339', 765, 0, 0, 0, 1, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99154, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(330, 'e0087', 'bnpc4116532', 4116532, '-119.035599', '-27.328920', '23.208981', 767, 0, 0, 0, 1, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96446, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4116538', 4116538, '-155.565796', '-38.010250', '-31.357361', 765, 0, 0, 0, 0, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98882, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(330, 'e0087', 'bnpc4116539', 4116539, '-166.765900', '-32.578060', '5.874695', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96718, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4116540', 4116540, '-134.447296', '-30.472290', '-5.020264', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98344, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(330, 'e0087', 'bnpc4125231', 4125231, '-370.973785', '-40.882549', '-198.661697', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96180, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4125233', 4125233, '-63.096130', '-25.253719', '-114.000198', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95914, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4125234', 4125234, '-50.309021', '-23.849850', '-91.264221', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95642, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4125235', 4125235, '-90.898071', '-29.831421', '-137.163406', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95370, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4125236', 4125236, '-129.961105', '-32.852779', '-108.934097', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95098, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4125238', 4125238, '-158.037796', '-34.042912', '-99.229492', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94826, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4125239', 4125239, '-185.717606', '-39.169922', '-80.796570', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94554, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4125240', 4125240, '-190.905594', '-41.001041', '-49.210388', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94282, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4125241', 4125241, '-202.166794', '-40.024479', '-90.806519', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94010, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4125242', 4125242, '-140.642502', '-30.411249', '1.815735', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93738, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4125243', 4125243, '-166.796402', '-36.392818', '-12.100400', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93466, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4125244', 4125244, '-222.583405', '-40.634769', '-87.815727', 59, 0, 0, 0, 1, 6, 0, 0, 56, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93194, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4125247', 4125247, '-423.331085', '-40.756901', '-220.508102', 773, 0, 0, 0, 1, 6, 0, 0, 347, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92928, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(330, 'e0087', 'bnpc4125248', 4125248, '-412.832886', '-41.458801', '-213.153305', 776, 0, 0, 0, 0, 6, 0, 0, 559, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92662, 1, 0, 0, 0, 36, 30079, 0, 0, 0), +(330, 'e0087', 'bnpc4125250', 4125250, '-411.978394', '-41.641911', '-212.024200', 774, 0, 0, 0, 0, 6, 0, 0, 345, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92396, 1, 0, 0, 0, 36, 30065, 0, 0, 0), +(330, 'e0087', 'bnpc4125261', 4125261, '-441.245209', '-39.475101', '-220.111496', 774, 0, 0, 0, 0, 6, 0, 0, 345, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92124, 1, 0, 0, 0, 0, 30077, 0, 0, 0), +(330, 'e0087', 'bnpc4125262', 4125262, '-440.054993', '-39.475101', '-218.646606', 776, 0, 0, 0, 1, 6, 0, 0, 559, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91846, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(330, 'e0087', 'bnpc4125263', 4125263, '-435.568787', '-41.001041', '-232.898407', 773, 0, 0, 0, 1, 6, 0, 0, 347, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91568, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(330, 'e0087', 'bnpc4125282', 4125282, '-406.515594', '-28.397030', '-253.040405', 774, 0, 0, 0, 0, 6, 0, 0, 345, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91308, 1, 0, 0, 0, 36, 30077, 0, 0, 0), +(330, 'e0087', 'bnpc4125283', 4125283, '-407.217499', '-28.397030', '-253.528702', 776, 0, 0, 0, 0, 6, 0, 0, 559, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91030, 1, 0, 0, 0, 36, 30079, 0, 0, 0), +(330, 'e0087', 'bnpc4125285', 4125285, '-412.985413', '-28.397030', '-250.843094', 773, 0, 0, 0, 1, 6, 0, 0, 347, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90752, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(330, 'e0087', 'bnpc4125286', 4125286, '-405.966309', '-37.644100', '-243.823898', 773, 0, 0, 0, 1, 6, 0, 0, 347, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90480, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(330, 'e0087', 'bnpc4125289', 4125289, '-398.519897', '-40.817928', '-218.188797', 774, 0, 0, 0, 1, 6, 0, 0, 345, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90220, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(330, 'e0087', 'bnpc4125290', 4125290, '-391.042999', '-38.651119', '-244.220703', 776, 0, 0, 0, 1, 6, 0, 0, 559, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89942, 1, 0, 0, 0, 36, 30096, 0, 0, 0), +(330, 'e0087', 'bnpc4316913', 4316913, '-221.667801', '-42.008121', '-198.138397', 765, 0, 0, 0, 1, 6, 0, 0, 2525, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81986, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4316918', 4316918, '-211.239502', '-41.783859', '-229.267593', 766, 0, 0, 0, 1, 6, 0, 0, 2524, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81720, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4316920', 4316920, '-242.389603', '-42.008121', '-221.606796', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81490, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4316922', 4316922, '-243.732407', '-41.367310', '-179.705597', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81182, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4316928', 4316928, '-237.445602', '-41.977600', '-231.189499', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80910, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4316930', 4316930, '-202.472000', '-42.008121', '-244.739395', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80638, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4316933', 4316933, '-197.619598', '-41.428280', '-317.036713', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80366, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4316935', 4316935, '-237.476196', '-42.008121', '-307.362488', 767, 0, 0, 0, 0, 6, 0, 0, 2523, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80094, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4316938', 4316938, '-292.652802', '-41.672421', '-327.657013', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79822, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4316939', 4316939, '-440.940002', '-33.005310', '-363.149506', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79550, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4316942', 4316942, '-458.416687', '-32.786930', '-362.740295', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79278, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4316943', 4316943, '-263.904785', '-43.381409', '-271.076599', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72514, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4316944', 4316944, '-319.625488', '-39.391800', '-300.050995', 766, 0, 0, 0, 0, 6, 0, 0, 1828, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79000, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(330, 'e0087', 'bnpc4316945', 4316945, '-317.930511', '-39.354549', '-298.395599', 768, 0, 0, 0, 0, 6, 0, 0, 1830, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78770, 2, 0, 0, 0, 0, 30060, 0, 0, 0), +(330, 'e0087', 'bnpc4316950', 4316950, '-207.660095', '-42.008121', '-279.957306', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72786, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4316951', 4316951, '-144.609802', '-41.153629', '-241.840302', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78498, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4316958', 4316958, '-146.990204', '-41.031559', '-289.265289', 766, 0, 0, 0, 0, 6, 0, 0, 2524, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78184, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(330, 'e0087', 'bnpc4316959', 4316959, '-147.081696', '-41.031559', '-291.035309', 768, 0, 0, 0, 0, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77954, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(330, 'e0087', 'bnpc4316960', 4316960, '-167.712006', '-41.336731', '-290.058807', 765, 0, 0, 0, 1, 6, 0, 0, 2525, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77634, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4316963', 4316963, '-232.440704', '-40.146481', '-349.050201', 768, 0, 0, 0, 1, 6, 0, 0, 1830, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77410, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4316964', 4316964, '-282.307190', '-42.008121', '-365.072113', 766, 0, 0, 0, 0, 6, 0, 0, 1828, 0, '0.000000', 47, 0, 120, 1, 0, 25, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 66216, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(330, 'e0087', 'bnpc4316965', 4316965, '-281.116913', '-42.008121', '-359.151611', 766, 0, 0, 0, 0, 6, 0, 0, 1828, 0, '0.000000', 47, 0, 120, 1, 0, 21, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 77096, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(330, 'e0087', 'bnpc4316980', 4316980, '-375.469208', '-39.479321', '-346.811401', 768, 0, 0, 0, 0, 6, 0, 0, 1830, 0, '0.000000', 49, 0, 120, 1, 0, 31, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 76866, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(330, 'e0087', 'bnpc4316981', 4316981, '-360.719788', '-35.466740', '-409.681396', 766, 0, 0, 0, 1, 6, 0, 0, 1828, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76552, 2, 0, 0, 0, 0, 30063, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(330, 'e0087', 'bnpc4316987', 4316987, '-351.952209', '-35.287498', '-400.680786', 768, 0, 0, 0, 1, 6, 0, 0, 1830, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72242, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4317006', 4317006, '-425.589386', '-33.107040', '-354.529510', 766, 0, 0, 0, 0, 6, 0, 0, 1828, 0, '0.000000', 49, 0, 120, 1, 0, 35, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 76280, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(330, 'e0087', 'bnpc4317012', 4317012, '-354.351501', '-39.271420', '-303.235596', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76062, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4317015', 4317015, '-507.061493', '-32.206131', '-362.981293', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75790, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4317016', 4317016, '-496.515411', '-31.640949', '-381.532288', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75518, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4317017', 4317017, '-386.895294', '-35.722141', '-293.090790', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75246, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4317019', 4317019, '-374.123108', '-37.690010', '-300.576691', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74974, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4317020', 4317020, '-364.905487', '-37.562908', '-288.443298', 139, 0, 0, 0, 1, 6, 0, 0, 1831, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74702, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4321460', 4321460, '-315.388794', '-38.406979', '624.200806', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321461', 4321461, '-274.008301', '-39.855450', '650.736206', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321463', 4321463, '-243.883301', '-39.120640', '668.059570', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321464', 4321464, '-281.698914', '-40.244148', '655.379211', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321465', 4321465, '-345.691711', '-40.588310', '660.238220', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321466', 4321466, '-392.988892', '-41.449879', '655.634277', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64414, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321467', 4321467, '-363.413086', '-40.854279', '695.693970', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64142, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321468', 4321468, '-450.857391', '-37.997330', '733.822021', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321469', 4321469, '-476.772797', '-38.142120', '757.051270', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63604, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321470', 4321470, '-447.854492', '-37.912220', '730.335571', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63332, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321471', 4321471, '-477.072906', '-37.196659', '711.034729', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63060, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321472', 4321472, '-507.253998', '-37.196659', '740.505798', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62788, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321473', 4321473, '-479.166901', '-37.732540', '738.016785', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62516, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321474', 4321474, '-451.650787', '-37.109020', '704.282288', 403, 0, 0, 0, 1, 6, 0, 0, 1853, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62244, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321475', 4321475, '-308.953400', '-42.000000', '713.766479', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61978, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4321477', 4321477, '-348.667999', '-42.000000', '722.773987', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61706, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4321478', 4321478, '-268.398895', '-42.000000', '721.376526', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61434, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4321479', 4321479, '-229.397903', '-41.984539', '738.036926', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61162, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4321480', 4321480, '-226.253403', '-41.385059', '735.099487', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60890, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4321481', 4321481, '-322.466187', '-41.807381', '693.960083', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60618, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4321482', 4321482, '-286.179810', '-41.791012', '697.924927', 20, 0, 0, 0, 1, 6, 0, 0, 1854, 0, '0.000000', 42, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4321483', 4321483, '-259.243988', '-38.144661', '566.177124', 396, 0, 0, 0, 1, 6, 0, 0, 1852, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60062, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321486', 4321486, '-292.149994', '-40.520851', '429.086090', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59808, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321487', 4321487, '-311.995514', '-41.332989', '414.272888', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59536, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321488', 4321488, '-288.225800', '-40.390610', '430.941986', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59264, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321489', 4321489, '-255.620697', '-40.477798', '440.482300', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58992, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321490', 4321490, '-240.806793', '-38.337589', '480.157013', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58720, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321492', 4321492, '-223.535095', '-38.907558', '511.755188', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58448, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321493', 4321493, '-250.595703', '-38.072151', '503.112091', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58176, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321494', 4321494, '-227.069397', '-38.621010', '515.364319', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57904, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321495', 4321495, '-208.841599', '-38.722130', '493.455811', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57632, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321496', 4321496, '-241.072998', '-38.224331', '544.913513', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57360, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321497', 4321497, '-291.392700', '-38.949532', '627.616089', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57088, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321498', 4321498, '-261.889404', '-39.899719', '661.304077', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56816, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321499', 4321499, '-370.138092', '-40.451721', '688.807495', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56544, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321500', 4321500, '-291.260986', '-41.491730', '693.390076', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56272, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321501', 4321501, '-332.560211', '-42.000000', '711.026123', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56000, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321502', 4321502, '-329.420013', '-42.000000', '712.776611', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55728, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321503', 4321503, '-246.192200', '-40.441620', '709.686218', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55456, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321505', 4321505, '-240.736298', '-42.000000', '742.566528', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 41, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55184, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321506', 4321506, '-468.364594', '-38.197491', '749.200073', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54912, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321508', 4321508, '-469.616486', '-37.505680', '723.021729', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54640, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321509', 4321509, '-467.157196', '-37.692699', '722.171387', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54368, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321510', 4321510, '-443.166687', '-37.068859', '715.848694', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54096, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321511', 4321511, '-438.206390', '-35.766102', '670.497375', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 42, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53824, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321526', 4321526, '-71.423027', '-25.768869', '-86.368896', 768, 0, 0, 0, 1, 6, 0, 0, 565, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88866, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4321527', 4321527, '-78.263550', '-26.108219', '-70.908691', 768, 0, 0, 0, 0, 6, 0, 0, 565, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89410, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4321528', 4321528, '-39.536190', '-22.232420', '-158.983795', 765, 0, 0, 0, 1, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89634, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(330, 'e0087', 'bnpc4621608', 4621608, '430.063690', '14.976550', '469.112305', 2770, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21786, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633063', 4633063, '-390.393707', '-41.813049', '-203.727905', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88564, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633067', 4633067, '-360.463898', '-39.780331', '-216.723907', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88292, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633068', 4633068, '-355.794708', '-40.390629', '-201.770096', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88020, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633073', 4633073, '-373.761292', '-40.459530', '-206.054901', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87748, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633074', 4633074, '-349.660492', '-38.529110', '-232.227097', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87476, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633076', 4633076, '-357.646790', '-38.274658', '-239.828094', 312, 0, 0, 0, 1, 6, 0, 0, 360, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87204, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633118', 4633118, '-155.500198', '-34.403210', '-88.681213', 765, 0, 0, 0, 1, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86914, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(330, 'e0087', 'bnpc4633119', 4633119, '-216.104294', '-40.840759', '-85.531441', 765, 0, 0, 0, 1, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86642, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(330, 'e0087', 'bnpc4633122', 4633122, '-180.251999', '-39.087090', '-75.459579', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86376, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(330, 'e0087', 'bnpc4633123', 4633123, '-193.427002', '-38.091850', '-114.042099', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86104, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(330, 'e0087', 'bnpc4633124', 4633124, '-121.586899', '-32.542980', '-106.177200', 766, 0, 0, 0, 1, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85832, 2, 0, 0, 0, 0, 30062, 0, 0, 0), +(330, 'e0087', 'bnpc4633125', 4633125, '-145.063293', '-32.872959', '-115.359398', 767, 0, 0, 0, 1, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85566, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633126', 4633126, '-216.646500', '-41.021160', '-66.576988', 767, 0, 0, 0, 1, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85294, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633128', 4633128, '-196.023407', '-42.000118', '-288.500702', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74436, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633131', 4633131, '-181.510605', '-42.000141', '-270.853699', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74164, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633132', 4633132, '-221.403793', '-42.000000', '-294.279510', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73892, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633133', 4633133, '-255.104706', '-42.000011', '-324.852905', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73620, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633134', 4633134, '-272.297607', '-42.000000', '-331.539307', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73348, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633135', 4633135, '-275.837311', '-41.886051', '-348.195587', 2832, 0, 0, 0, 1, 6, 0, 0, 2527, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73076, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633157', 4633157, '-96.910004', '-30.450001', '-92.839996', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 12, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 85064, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633224', 4633224, '-103.441002', '-31.479370', '-116.075401', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 14, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84792, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633232', 4633232, '-118.730499', '-32.303410', '-133.012894', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 15, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84520, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633233', 4633233, '-84.733398', '-29.587280', '-110.399101', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 11, 0, 16, 22, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83976, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633236', 4633236, '-91.264221', '-30.197689', '-128.465698', 2835, 0, 0, 0, 0, 6, 0, 0, 2530, 0, '0.000000', 44, 1, 120, 1, 0, 13, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 84248, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633263', 4633263, '-789.705627', '-41.480991', '683.228088', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53234, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633264', 4633264, '-759.089783', '-38.575909', '689.571106', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52962, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633265', 4633265, '-805.386475', '-40.817928', '661.463318', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52690, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633266', 4633266, '-794.361572', '-39.456490', '648.005005', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52418, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633267', 4633267, '-775.544617', '-38.485760', '658.247375', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52146, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633268', 4633268, '-775.478821', '-40.268620', '671.290222', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51874, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633269', 4633269, '-818.600830', '-42.008121', '650.415771', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51602, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633270', 4633270, '-762.932495', '-38.970909', '687.098389', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51330, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633271', 4633271, '-776.258606', '-39.190811', '705.569885', 383, 0, 0, 0, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51058, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633276', 4633276, '-283.527893', '-41.916561', '-357.747803', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 21, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 70090, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633279', 4633279, '-294.392303', '-41.489319', '-349.569000', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 22, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 69818, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633281', 4633281, '-296.894806', '-41.733459', '-359.090607', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 23, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 70362, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633283', 4633283, '-293.720886', '-41.641911', '-367.788208', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 24, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 70906, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633285', 4633285, '-282.062988', '-42.038639', '-367.910309', 2836, 0, 0, 0, 0, 6, 0, 0, 2531, 0, '0.000000', 46, 1, 120, 1, 0, 25, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 70634, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633286', 4633286, '-377.859192', '-39.444641', '-348.989105', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 31, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 69552, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633288', 4633288, '-395.040802', '-38.559631', '-343.953613', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 32, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 69280, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633289', 4633289, '-415.392700', '-33.349609', '-358.443909', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 33, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 69008, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633290', 4633290, '-423.105713', '-32.905010', '-367.492004', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 34, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 68736, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633291', 4633291, '-425.528412', '-33.066349', '-357.686798', 2837, 0, 0, 0, 0, 6, 0, 0, 2532, 0, '0.000000', 48, 2, 120, 1, 0, 35, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 68464, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4633377', 4633377, '-188.154800', '-41.040760', '-213.112900', 768, 0, 0, 0, 1, 6, 0, 0, 2526, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71970, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4633783', 4633783, '-343.341888', '-39.413860', '-362.948090', 765, 0, 0, 0, 1, 6, 0, 0, 1827, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71650, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4633784', 4633784, '-423.791107', '-33.754879', '-325.509613', 765, 0, 0, 0, 1, 6, 0, 0, 1827, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71378, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4633787', 4633787, '-415.514801', '-33.350899', '-355.147888', 765, 0, 0, 0, 0, 6, 0, 0, 1827, 0, '0.000000', 49, 0, 120, 1, 0, 33, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 71106, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(330, 'e0087', 'bnpc4664481', 4664481, '-777.584473', '-42.008121', '724.696716', 383, 0, 18, 5, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50786, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4664485', 4664485, '-809.964111', '-41.672421', '665.003418', 383, 0, 18, 5, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50514, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4664488', 4664488, '-789.944275', '-41.458801', '705.134583', 383, 0, 18, 5, 1, 6, 0, 0, 2533, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50242, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4666236', 4666236, '-878.239990', '-20.652750', '883.271118', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49862, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4666257', 4666257, '-828.987305', '-25.652750', '888.069519', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49590, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4666258', 4666258, '-829.739929', '-25.680969', '889.829773', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49318, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4666259', 4666259, '-815.924316', '-23.649630', '888.875488', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49046, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4666260', 4666260, '-817.754517', '-23.649630', '894.566589', 765, 0, 0, 0, 1, 6, 0, 0, 2534, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48774, 2, 0, 0, 0, 0, 30246, 0, 0, 0), +(330, 'e0087', 'bnpc4666261', 4666261, '-877.169678', '-20.873289', '876.188171', 775, 0, 0, 0, 1, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48616, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(330, 'e0087', 'bnpc4666262', 4666262, '-875.114197', '-20.902760', '890.589722', 776, 0, 0, 0, 1, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48266, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(330, 'e0087', 'bnpc4666265', 4666265, '-832.192383', '-25.647751', '899.698303', 775, 0, 0, 0, 0, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48072, 2, 0, 0, 0, 0, 30079, 0, 0, 282), +(330, 'e0087', 'bnpc4666266', 4666266, '-883.583496', '-20.647829', '889.883484', 776, 0, 0, 0, 0, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47722, 2, 0, 0, 0, 0, 30065, 0, 0, 282), +(330, 'e0087', 'bnpc4666267', 4666267, '-888.256775', '-20.652750', '881.349426', 775, 0, 0, 0, 0, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47528, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(330, 'e0087', 'bnpc4666268', 4666268, '-887.970093', '-20.652760', '879.854126', 776, 0, 0, 0, 0, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47178, 2, 0, 0, 0, 0, 30073, 0, 0, 282), +(330, 'e0087', 'bnpc4666269', 4666269, '-822.368286', '-24.341749', '895.894714', 775, 0, 0, 0, 1, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46984, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(330, 'e0087', 'bnpc4666270', 4666270, '-824.196777', '-25.652750', '884.833923', 776, 0, 0, 0, 1, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46634, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(330, 'e0087', 'bnpc4666271', 4666271, '-830.350220', '-25.650511', '879.239990', 775, 0, 0, 0, 0, 6, 0, 0, 2536, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46440, 2, 0, 0, 0, 0, 30066, 0, 0, 282), +(330, 'e0087', 'bnpc4666272', 4666272, '-834.023621', '-25.647751', '899.649170', 776, 0, 0, 0, 0, 6, 0, 0, 2535, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46090, 2, 0, 0, 0, 0, 30065, 0, 0, 282), +(330, 'e0087', 'bnpc4666281', 4666281, '-922.445129', '-20.652750', '935.165527', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45794, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666282', 4666282, '-913.466614', '-20.902750', '923.657410', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45522, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666283', 4666283, '-912.036621', '-20.902750', '938.072876', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45250, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666284', 4666284, '-867.946289', '-25.647751', '918.489319', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44978, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666285', 4666285, '-853.890320', '-23.649630', '930.090576', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44706, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666286', 4666286, '-857.944092', '-24.538349', '922.393616', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44434, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666287', 4666287, '-867.256897', '-25.652750', '934.697571', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44162, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666288', 4666288, '-914.135620', '-20.652750', '930.937622', 2832, 0, 0, 0, 1, 6, 0, 0, 2538, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43944, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4666291', 4666291, '-853.015991', '-23.649630', '925.301086', 2832, 0, 0, 0, 1, 6, 0, 0, 2538, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43672, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4666292', 4666292, '-864.342407', '-25.652750', '926.222717', 2832, 0, 0, 0, 1, 6, 0, 0, 2538, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43400, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4666293', 4666293, '-860.802307', '-25.647760', '930.098389', 2832, 0, 0, 0, 1, 6, 0, 0, 2538, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43128, 2, 0, 0, 0, 0, 0, 0, 0, 0), +(330, 'e0087', 'bnpc4666294', 4666294, '-921.446472', '-20.676029', '926.420898', 767, 0, 0, 0, 1, 6, 0, 0, 2537, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42802, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666705', 4666705, '-862.519897', '-20.652750', '958.568176', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42548, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(330, 'e0087', 'bnpc4666706', 4666706, '-853.286377', '-20.902750', '958.398071', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42276, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(330, 'e0087', 'bnpc4666707', 4666707, '-857.476013', '-20.902750', '972.392212', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42004, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(330, 'e0087', 'bnpc4666708', 4666708, '-807.939697', '-25.652750', '970.221191', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41732, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(330, 'e0087', 'bnpc4666709', 4666709, '-813.264771', '-25.652750', '979.515930', 773, 0, 0, 0, 1, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41460, 2, 0, 0, 0, 0, 30096, 0, 0, 282), +(330, 'e0087', 'bnpc4666710', 4666710, '-813.351990', '-25.647751', '985.380127', 773, 0, 0, 0, 0, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41188, 2, 0, 0, 0, 0, 30065, 0, 0, 282), +(330, 'e0087', 'bnpc4666711', 4666711, '-808.987488', '-25.650511', '964.934692', 773, 0, 0, 0, 0, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40916, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(330, 'e0087', 'bnpc4666712', 4666712, '-799.837708', '-23.649639', '983.904175', 773, 0, 0, 0, 0, 6, 0, 0, 2539, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40644, 2, 0, 0, 0, 0, 30066, 0, 0, 282), +(330, 'e0087', 'bnpc4666714', 4666714, '-855.103516', '-20.652750', '965.275879', 766, 0, 0, 0, 1, 6, 0, 0, 2540, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40348, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666715', 4666715, '-807.366516', '-25.652750', '978.315125', 766, 0, 0, 0, 1, 6, 0, 0, 2540, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40076, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666716', 4666716, '-798.339783', '-23.649630', '975.416626', 766, 0, 0, 0, 1, 6, 0, 0, 2540, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39804, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666717', 4666717, '-805.016602', '-25.647760', '974.326172', 768, 0, 0, 0, 1, 6, 0, 0, 2541, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39574, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666718', 4666718, '-798.632202', '-23.649630', '979.035828', 768, 0, 0, 0, 1, 6, 0, 0, 2541, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39302, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666719', 4666719, '-861.894470', '-20.652750', '968.356384', 768, 0, 0, 0, 1, 6, 0, 0, 2541, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39030, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666720', 4666720, '-936.066711', '-31.750019', '852.472473', 775, 0, 0, 0, 0, 6, 0, 0, 2542, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38824, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(330, 'e0087', 'bnpc4666721', 4666721, '-933.356873', '-30.260000', '832.557922', 775, 0, 0, 0, 0, 6, 0, 0, 2542, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38552, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(330, 'e0087', 'bnpc4666722', 4666722, '-923.082092', '-30.250000', '842.560730', 775, 0, 0, 0, 0, 6, 0, 0, 2542, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38280, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(330, 'e0087', 'bnpc4666723', 4666723, '-914.793579', '-28.763309', '805.386414', 775, 0, 0, 0, 0, 6, 0, 0, 2542, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38008, 2, 0, 0, 0, 0, 30067, 0, 0, 282), +(330, 'e0087', 'bnpc4666724', 4666724, '-936.587219', '-31.755150', '843.129822', 765, 0, 0, 0, 1, 6, 0, 0, 2543, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37622, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666725', 4666725, '-926.512573', '-30.258671', '834.653076', 765, 0, 0, 0, 1, 6, 0, 0, 2543, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37350, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666726', 4666726, '-917.355713', '-28.760000', '806.922974', 765, 0, 0, 0, 1, 6, 0, 0, 2543, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37078, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666728', 4666728, '-910.490601', '-28.763309', '809.658813', 765, 0, 0, 0, 1, 6, 0, 0, 2543, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36806, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4666734', 4666734, '-89.256203', '-30.084669', '-124.693199', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 13, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83662, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4666735', 4666735, '-94.161926', '-30.635151', '-89.379402', 767, 0, 0, 0, 0, 6, 0, 0, 389, 0, '0.000000', 44, 0, 120, 1, 0, 12, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83390, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4666736', 4666736, '-85.840622', '-29.611879', '-107.485497', 766, 0, 0, 0, 0, 6, 0, 0, 384, 0, '0.000000', 44, 0, 120, 1, 0, 11, 0, 16, 22, 0, 0, 0, 1, 0, '0.000000', '1.000000', 83112, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(330, 'e0087', 'bnpc4666746', 4666746, '-104.014999', '-31.623831', '-118.950104', 765, 0, 0, 0, 0, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 14, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 82834, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(330, 'e0087', 'bnpc4666747', 4666747, '-118.166702', '-32.339401', '-135.991302', 765, 0, 0, 0, 0, 6, 0, 0, 386, 0, '0.000000', 44, 0, 120, 1, 0, 15, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 82562, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(330, 'e0087', 'bnpc4667026', 4667026, '-292.652802', '-41.733459', '-365.011108', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 47, 0, 120, 1, 0, 24, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 68126, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4667027', 4667027, '-293.720886', '-41.580872', '-346.913910', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 47, 0, 120, 1, 0, 22, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 67854, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4667028', 4667028, '-294.453400', '-41.580872', '-359.822998', 768, 0, 0, 0, 0, 6, 0, 0, 1830, 0, '0.000000', 47, 0, 120, 1, 0, 23, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 67618, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(330, 'e0087', 'bnpc4667036', 4667036, '-425.913300', '-32.791721', '-368.407501', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 49, 0, 120, 1, 0, 34, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 67310, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4667037', 4667037, '-397.546295', '-37.902161', '-342.084900', 767, 0, 0, 0, 0, 6, 0, 0, 1829, 0, '0.000000', 49, 0, 120, 1, 0, 32, 0, 16, 2, 0, 0, 0, 1, 0, '0.000000', '1.000000', 67038, 2, 0, 0, 0, 0, 30058, 0, 0, 0), +(330, 'e0087', 'bnpc4681259', 4681259, '-351.697388', '-38.557800', '-379.104797', 766, 0, 0, 0, 1, 6, 0, 0, 1828, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66760, 2, 0, 0, 0, 0, 30063, 0, 0, 0), +(330, 'e0087', 'bnpc4681260', 4681260, '-370.744995', '-35.287498', '-414.281708', 768, 0, 0, 0, 0, 6, 0, 0, 1830, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66530, 2, 0, 0, 0, 0, 30059, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4246138', 4246138, '-4.867000', '-1.838936', '5.020000', 237, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4246139', 4246139, '7.907000', '-1.805731', '6.310000', 237, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34312, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4246140', 4246140, '-6.369000', '-1.830306', '-6.360000', 237, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34040, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4246141', 4246141, '5.828000', '-1.855612', '-5.600000', 237, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4246177', 4246177, '1.144171', '-1.945755', '-18.000000', 239, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33502, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4246290', 4246290, '-18.705700', '-0.947082', '-28.606661', 238, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33236, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4246291', 4246291, '-22.962111', '-0.969582', '-28.392599', 688, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32970, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4246418', 4246418, '-18.315870', '-1.038592', '-26.613710', 1571, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31240, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4246419', 4246419, '-21.552139', '-0.780132', '-26.515720', 1570, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32704, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261604', 4261604, '-4.867000', '-1.838900', '5.020000', 240, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32322, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261605', 4261605, '7.907000', '-1.805700', '6.310000', 240, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32050, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261606', 4261606, '-6.369000', '-1.830300', '-6.360000', 240, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261607', 4261607, '5.828000', '-1.855600', '-5.600000', 240, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31506, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261623', 4261623, '1.144200', '-1.945800', '-18.000000', 242, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29378, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261625', 4261625, '-18.405701', '-0.969582', '-28.306660', 241, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30974, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261626', 4261626, '-22.662109', '-0.996960', '-28.092600', 1534, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30708, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261627', 4261627, '-21.252140', '-0.817303', '-26.215719', 1572, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261629', 4261629, '-21.414070', '1.523027', '-26.817900', 1535, 0, 0, 0, 0, 6, 0, 0, 1648, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30176, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261631', 4261631, '-24.530930', '1.801132', '-24.986460', 1566, 0, 0, 0, 0, 6, 0, 0, 1646, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29910, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261632', 4261632, '-23.328560', '1.094606', '-23.104679', 1567, 0, 0, 0, 0, 6, 0, 0, 1645, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29644, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261645', 4261645, '-7.000000', '-1.871653', '7.000000', 243, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261646', 4261646, '7.000000', '-1.823288', '7.000000', 243, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261647', 4261647, '-7.000000', '-1.825691', '-7.000000', 243, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28440, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261648', 4261648, '7.000000', '-1.851377', '-7.000000', 243, 0, 0, 0, 0, 6, 0, 0, 1649, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28168, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261649', 4261649, '-18.015869', '-1.174013', '-26.313709', 1573, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261650', 4261650, '0.000000', '-2.033095', '-18.000000', 245, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27636, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261651', 4261651, '-18.105700', '-0.992081', '-28.006660', 244, 0, 0, 0, 0, 6, 0, 0, 1647, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27370, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261652', 4261652, '-22.362110', '-1.034364', '-27.792601', 1536, 0, 0, 0, 0, 6, 0, 0, 2091, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27104, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261653', 4261653, '-20.952141', '-0.853879', '-25.915720', 1574, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261654', 4261654, '-21.114071', '1.387607', '-26.517900', 1537, 0, 0, 0, 0, 6, 0, 0, 1648, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26572, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261655', 4261655, '-24.230930', '1.663378', '-24.686460', 1568, 0, 0, 0, 0, 6, 0, 0, 1646, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26306, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4261656', 4261656, '-23.028561', '0.956851', '-22.804680', 1569, 0, 0, 0, 0, 6, 0, 0, 1645, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26040, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4406566', 4406566, '0.033980', '-1.803072', '-0.779799', 434, 0, 0, 0, 0, 6, 0, 0, 1644, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25774, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4527499', 4527499, '0.947333', '-1.798869', '0.131422', 434, 0, 0, 0, 0, 6, 0, 0, 1646, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25502, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(331, 'r1fa_event', 'bnpc4527500', 4527500, '-0.905001', '-1.798869', '0.131422', 434, 0, 0, 0, 0, 6, 0, 0, 1645, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25230, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926308', 3926308, '376.795502', '84.142036', '107.708504', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154812, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926338', 3926338, '375.147491', '84.022469', '106.274200', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154540, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926351', 3926351, '405.431488', '88.082703', '99.945763', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154268, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926354', 3926354, '409.251190', '88.844963', '97.093102', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153996, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926358', 3926358, '378.901215', '84.631958', '104.412598', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153724, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926365', 3926365, '407.170990', '88.157288', '101.532700', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153452, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926371', 3926371, '392.339203', '86.636040', '181.099197', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153180, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926372', 3926372, '396.068207', '86.811653', '179.238007', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152908, 7, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(332, 'w1f1_battle', 'bnpc3926373', 3926373, '393.988495', '86.897270', '182.527893', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152636, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926381', 3926381, '411.703613', '88.297813', '162.003098', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152364, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926382', 3926382, '410.055603', '88.039360', '160.599197', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152092, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926386', 3926386, '394.559601', '85.026733', '153.758499', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151820, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926391', 3926391, '410.144012', '88.683350', '189.622894', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151548, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926417', 3926417, '417.375885', '87.742783', '131.569901', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151276, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926439', 3926439, '345.812805', '76.219322', '212.725998', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151004, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926440', 3926440, '344.548309', '75.438789', '207.299393', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150732, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926441', 3926441, '348.012512', '76.039337', '211.108795', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150460, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926464', 3926464, '356.043793', '74.743179', '151.343094', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150188, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926465', 3926465, '352.759186', '74.743149', '149.888596', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149916, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926467', 3926467, '367.410095', '80.423607', '133.246597', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149644, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926481', 3926481, '353.852814', '80.577820', '117.643204', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149372, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926484', 3926484, '351.360199', '79.902428', '120.108704', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149100, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926487', 3926487, '355.985199', '80.082771', '121.892502', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148828, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926490', 3926490, '373.090698', '84.220062', '99.076653', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148556, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926522', 3926522, '406.246887', '86.759048', '111.752296', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148284, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926526', 3926526, '325.732788', '66.676826', '171.598495', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135512, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926537', 3926537, '328.927612', '68.512451', '191.103607', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136328, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926539', 3926539, '326.017792', '67.722847', '188.876999', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137144, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926541', 3926541, '342.366608', '72.409378', '178.265305', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136872, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926543', 3926543, '340.851105', '72.117889', '182.389893', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136600, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926545', 3926545, '339.368805', '71.684380', '180.432800', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135784, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926547', 3926547, '329.747711', '68.403687', '149.117706', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136056, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926548', 3926548, '327.065491', '67.092491', '170.001404', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137416, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926552', 3926552, '319.223511', '67.064529', '203.825699', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138776, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926557', 3926557, '307.153687', '65.648338', '183.776306', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139048, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926564', 3926564, '315.245087', '65.419243', '134.686005', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139320, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926565', 3926565, '313.912415', '65.218117', '136.283096', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138504, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926572', 3926572, '310.648285', '65.000732', '131.124893', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137688, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926578', 3926578, '301.380890', '64.171013', '142.769608', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137960, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926601', 3926601, '261.503296', '53.867599', '124.334000', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926644', 3926644, '295.185699', '60.044201', '169.695496', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138232, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926653', 3926653, '293.079987', '59.372799', '172.716797', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132792, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926658', 3926658, '296.070709', '60.135750', '174.090103', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133064, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926660', 3926660, '257.465393', '54.488819', '176.080399', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134152, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926665', 3926665, '279.163788', '55.806110', '134.904999', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133336, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926667', 3926667, '277.598999', '55.429420', '137.030197', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131976, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926670', 3926670, '269.266907', '56.155140', '106.412498', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132520, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926677', 3926677, '260.700409', '54.871441', '108.842598', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132248, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926683', 3926683, '261.666290', '55.104469', '106.238503', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134696, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926716', 3926716, '257.191193', '55.945511', '220.022095', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134968, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926717', 3926717, '258.076202', '55.964081', '224.416702', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135240, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926718', 3926718, '255.085403', '55.855000', '223.043396', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134424, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926733', 3926733, '243.941101', '55.670811', '235.884598', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133608, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926750', 3926750, '258.564087', '54.697350', '178.949097', 175, 0, 0, 0, 1, 6, 0, 0, 287, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133880, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926769', 3926769, '413.944397', '89.309250', '158.034897', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148018, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926800', 3926800, '407.416199', '87.761620', '175.019302', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147746, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926801', 3926801, '406.609985', '87.629570', '176.598602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147474, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926804', 3926804, '392.991699', '87.757637', '191.946198', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147202, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926805', 3926805, '387.339111', '84.919083', '134.093994', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146930, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926808', 3926808, '354.084900', '81.902718', '100.424797', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146658, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926810', 3926810, '422.356903', '89.050278', '114.571297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146386, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926812', 3926812, '421.045013', '88.772667', '115.796600', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146114, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926815', 3926815, '403.283386', '86.085800', '113.897499', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 1, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145842, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926821', 3926821, '370.507996', '82.400093', '117.661697', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145570, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926825', 3926825, '367.792389', '81.913681', '118.807602', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145298, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926829', 3926829, '360.534485', '74.935432', '148.181396', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145026, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926837', 3926837, '378.317413', '79.842934', '162.415802', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144754, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926847', 3926847, '376.053986', '78.965889', '164.143707', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144482, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926848', 3926848, '369.552399', '77.052002', '192.962997', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144210, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926854', 3926854, '346.371490', '75.720573', '208.895203', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143938, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926858', 3926858, '363.167694', '77.767464', '219.355392', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143666, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926860', 3926860, '371.780212', '77.339363', '194.397400', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143394, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926868', 3926868, '369.826996', '77.102577', '196.960907', 351, 0, 0, 0, 1, 6, 0, 0, 262, 0, '0.000000', 2, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143116, 7, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926883', 3926883, '344.452301', '72.995819', '181.059906', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142850, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926890', 3926890, '328.520813', '67.640129', '172.850403', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142578, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926891', 3926891, '311.090302', '65.890671', '189.672195', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142306, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926896', 3926896, '309.819885', '64.657661', '145.602493', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142034, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926898', 3926898, '328.420197', '67.645653', '147.350800', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141762, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926899', 3926899, '317.188690', '65.970573', '128.639603', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141490, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926902', 3926902, '318.570007', '65.981651', '129.865601', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 3, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141218, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926912', 3926912, '275.386810', '55.162628', '134.854202', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140946, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926915', 3926915, '264.207703', '55.231709', '109.226501', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140674, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926917', 3926917, '260.486694', '54.760460', '176.782303', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140402, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926928', 3926928, '254.790497', '55.815201', '226.529297', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140130, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926929', 3926929, '242.801407', '55.684689', '237.647995', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139858, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3926930', 3926930, '241.351593', '55.604931', '235.930405', 49, 0, 0, 0, 1, 6, 0, 0, 49, 0, '0.000000', 4, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139586, 7, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927149', 3927149, '27.696630', '50.949940', '203.695496', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130588, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927150', 3927150, '15.640450', '53.696449', '252.796204', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927151', 3927151, '-61.356571', '57.144989', '351.064209', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927152', 3927152, '173.737106', '54.352638', '226.520096', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130316, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927153', 3927153, '183.533401', '54.215019', '225.513000', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130044, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927154', 3927154, '99.898514', '49.255638', '188.131607', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129772, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927156', 3927156, '128.718903', '50.518780', '195.651794', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129500, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927158', 3927158, '115.929298', '48.682110', '176.508408', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129228, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927162', 3927162, '108.506699', '47.551449', '175.644897', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128956, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927163', 3927163, '32.919010', '50.990910', '198.741592', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128684, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927164', 3927164, '31.915621', '47.200191', '163.456696', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128412, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927165', 3927165, '65.425613', '51.619080', '219.897705', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128140, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927166', 3927166, '70.552643', '50.994259', '212.756500', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127868, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927168', 3927168, '60.756340', '51.112720', '213.427902', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127596, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927169', 3927169, '1.910973', '44.523701', '152.350204', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127324, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927170', 3927170, '6.149339', '47.714909', '180.407394', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127052, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927171', 3927171, '175.777206', '50.666649', '65.453201', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126780, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927172', 3927172, '170.246994', '50.547649', '69.196983', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126508, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927174', 3927174, '240.923996', '51.465309', '71.654427', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126236, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927175', 3927175, '249.684906', '51.468151', '78.309212', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125964, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927176', 3927176, '255.227203', '51.199020', '67.745193', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125692, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927178', 3927178, '253.462494', '51.509102', '19.847630', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125420, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927179', 3927179, '201.886398', '51.465870', '22.835030', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125148, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927182', 3927182, '111.507797', '59.949421', '283.252502', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124882, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927185', 3927185, '98.313828', '59.311771', '302.754211', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124610, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927186', 3927186, '110.092697', '60.098831', '287.907593', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124338, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927187', 3927187, '128.731201', '60.436340', '298.911407', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124066, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927188', 3927188, '83.256920', '55.503361', '283.185394', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123794, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927189', 3927189, '91.296028', '55.644341', '266.384308', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123522, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927190', 3927190, '82.101891', '55.164581', '275.573212', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123250, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927191', 3927191, '115.385597', '59.492580', '287.027496', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122978, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927192', 3927192, '178.888199', '53.984070', '219.121597', 431, 0, 0, 0, 1, 6, 0, 0, 282, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122700, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927194', 3927194, '131.716507', '57.952309', '278.151306', 42, 0, 0, 0, 1, 6, 0, 0, 284, 0, '0.000000', 5, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122434, 3, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927197', 3927197, '-22.751249', '56.290482', '304.371613', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122168, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927200', 3927200, '-18.722870', '56.046341', '317.952209', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121896, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927201', 3927201, '-14.837500', '56.125702', '314.598206', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121624, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927203', 3927203, '8.417153', '55.567989', '320.395599', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121352, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927204', 3927204, '20.042080', '57.618370', '350.774109', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121080, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927205', 3927205, '26.145691', '57.755730', '356.084290', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120808, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927206', 3927206, '22.476490', '58.182598', '359.426208', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120536, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927209', 3927209, '49.869179', '57.280979', '352.553101', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120264, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927211', 3927211, '21.927170', '54.917171', '311.085602', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119992, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927213', 3927213, '25.229980', '54.764481', '306.841705', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119720, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927218', 3927218, '-21.114670', '53.540970', '264.998993', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119448, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927220', 3927220, '-5.313622', '54.065811', '256.266205', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119176, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927221', 3927221, '-23.334700', '53.561840', '260.473511', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118904, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927222', 3927222, '5.204782', '54.084610', '236.687195', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118632, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927224', 3927224, '8.561768', '54.060150', '238.457199', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118360, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927226', 3927226, '-8.821225', '50.881729', '201.391602', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118094, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927229', 3927229, '-6.608897', '50.901840', '203.446304', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117822, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927230', 3927230, '-18.636290', '51.201260', '221.737701', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117550, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927231', 3927231, '-35.276581', '49.465691', '214.633698', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117278, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927236', 3927236, '-11.411140', '50.721111', '205.313904', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117006, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927239', 3927239, '-38.801102', '49.907009', '218.520004', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116734, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927240', 3927240, '6.279222', '50.975891', '212.108902', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116462, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927241', 3927241, '-35.700180', '46.975208', '193.506195', 12, 0, 0, 0, 1, 6, 0, 0, 299, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116190, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927246', 3927246, '-141.250000', '50.637089', '227.672501', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97168, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927250', 3927250, '-140.879105', '50.598660', '225.798996', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97440, 6, 0, 0, 0, 0, 30059, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927252', 3927252, '-133.580704', '50.071732', '219.991806', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96624, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927255', 3927255, '-132.305801', '49.998920', '219.510193', 769, 0, 0, 0, 0, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96896, 6, 0, 0, 0, 0, 30060, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927256', 3927256, '-130.444595', '50.881111', '227.569397', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98256, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927333', 3927333, '-125.582298', '49.131699', '207.139694', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98528, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927334', 3927334, '-153.431595', '49.478130', '221.025101', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97712, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927339', 3927339, '-121.896698', '49.490898', '212.546097', 769, 0, 0, 0, 1, 6, 0, 0, 283, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97984, 6, 0, 0, 0, 0, 30063, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927343', 3927343, '-45.193470', '62.185181', '363.152100', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115912, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927345', 3927345, '-79.881020', '55.100281', '361.379395', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115640, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927346', 3927346, '-83.391731', '54.977058', '365.606995', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115368, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927347', 3927347, '-54.476139', '65.540337', '392.423004', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115096, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927349', 3927349, '-51.241718', '65.802643', '390.513214', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114824, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927352', 3927352, '-1.297064', '68.802879', '377.553894', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114552, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927353', 3927353, '2.885915', '68.536720', '372.786896', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114280, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927354', 3927354, '-109.941299', '48.966148', '357.015289', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114008, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927356', 3927356, '-125.981003', '51.453751', '311.388885', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113736, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927357', 3927357, '-130.879105', '51.717690', '309.097412', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113464, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927358', 3927358, '-131.425293', '51.394489', '312.798096', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113192, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927359', 3927359, '-118.158401', '53.802921', '271.080597', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112920, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927360', 3927360, '-115.932800', '53.461861', '267.407501', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112648, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927361', 3927361, '-95.500458', '52.359612', '245.109894', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112376, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927364', 3927364, '-138.997604', '45.849251', '391.546814', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112104, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927366', 3927366, '-131.347107', '47.246719', '398.411713', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111832, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927367', 3927367, '-141.612305', '45.939159', '395.010193', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111560, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927368', 3927368, '-175.499496', '39.137119', '393.656799', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111288, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927370', 3927370, '-156.301407', '40.866211', '345.757813', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111016, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927371', 3927371, '-162.614700', '39.951931', '342.568695', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110744, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927373', 3927373, '-157.533707', '40.302212', '350.198212', 187, 0, 0, 0, 1, 6, 0, 0, 276, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110472, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927375', 3927375, '28.610620', '55.466499', '328.511414', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110212, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927379', 3927379, '37.804600', '58.140781', '363.465912', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109940, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927382', 3927382, '32.272758', '55.471779', '329.481689', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109668, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927384', 3927384, '6.784028', '54.128811', '253.378204', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109396, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927387', 3927387, '-20.690559', '53.685650', '251.224396', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 6, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109124, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927388', 3927388, '45.252361', '48.095360', '180.655197', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108852, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927394', 3927394, '69.706589', '56.137440', '318.697693', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108580, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927398', 3927398, '104.150002', '56.064339', '263.215607', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108308, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927403', 3927403, '156.664307', '54.703541', '236.652100', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108036, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927404', 3927404, '44.327412', '52.658840', '244.800400', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107764, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927408', 3927408, '-26.490999', '44.862301', '177.075394', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 5, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107492, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927413', 3927413, '152.993607', '50.116879', '72.775887', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107220, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927414', 3927414, '220.945801', '50.242329', '4.633916', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106948, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927417', 3927417, '219.309296', '49.916939', '6.135899', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 7, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106676, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927424', 3927424, '-14.541890', '67.307503', '362.722107', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106404, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927425', 3927425, '-65.254753', '64.638290', '395.066498', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106132, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927431', 3927431, '-117.631798', '47.959061', '380.300507', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105860, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927432', 3927432, '-172.127304', '40.469398', '398.069092', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105588, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927433', 3927433, '-189.330597', '36.909599', '341.340210', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105316, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927435', 3927435, '-140.326401', '45.201859', '337.794006', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105044, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927436', 3927436, '-110.657700', '52.097160', '290.219696', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104772, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927437', 3927437, '-145.151993', '56.686409', '288.573792', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 8, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104500, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927730', 3927730, '120.638901', '17.207850', '96.590080', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104234, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927734', 3927734, '123.778503', '17.206751', '88.372543', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103962, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927735', 3927735, '128.407593', '16.559820', '98.111130', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103690, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927736', 3927736, '78.465424', '21.109140', '92.377060', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103418, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927737', 3927737, '100.497498', '16.583630', '126.907097', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103146, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927739', 3927739, '-25.650459', '22.079760', '105.851799', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102874, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927742', 3927742, '-20.340321', '21.438881', '108.873100', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102602, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927745', 3927745, '78.228539', '22.345881', '63.241020', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102330, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927746', 3927746, '86.209900', '22.246161', '56.213009', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102058, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927748', 3927748, '127.763702', '25.986071', '49.240810', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101786, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927750', 3927750, '70.167282', '16.789490', '139.201706', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101508, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927760', 3927760, '95.818649', '15.165110', '168.324600', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101236, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927771', 3927771, '96.919411', '15.051520', '166.152405', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100964, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927776', 3927776, '126.695602', '15.793040', '128.007904', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100692, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927784', 3927784, '58.284618', '22.640039', '59.899170', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100420, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927789', 3927789, '14.317140', '20.384331', '98.519272', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100148, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927870', 3927870, '123.073700', '18.194111', '18.950350', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99882, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927874', 3927874, '164.476593', '18.193741', '-3.313263', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99610, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927875', 3927875, '161.316605', '18.193520', '6.161218', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99338, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927880', 3927880, '179.117905', '18.193710', '3.609651', 313, 0, 0, 0, 1, 6, 0, 0, 265, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99066, 6, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927883', 3927883, '103.653801', '19.374020', '93.697792', 131, 0, 0, 0, 1, 6, 0, 0, 113, 0, '0.000000', 9, 1, 30, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98788, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927890', 3927890, '122.968102', '56.939259', '-36.773190', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95074, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927910', 3927910, '123.268097', '55.511478', '-56.716091', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94802, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927911', 3927911, '129.320206', '55.924271', '-51.987530', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927912', 3927912, '154.660400', '55.357391', '-41.330311', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94258, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(332, 'w1f1_battle', 'bnpc3927919', 3927919, '189.631897', '50.414280', '-25.954390', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93986, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927923', 3927923, '183.639099', '52.017891', '-84.284233', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93714, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927925', 3927925, '153.890793', '52.284729', '-77.195427', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93442, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927934', 3927934, '191.650803', '52.446129', '-77.491463', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93170, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3927952', 3927952, '199.298004', '52.109509', '-110.399101', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92898, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928005', 3928005, '249.801102', '63.548111', '-129.309692', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92626, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928007', 3928007, '233.766098', '63.274509', '-115.512901', 172, 0, 0, 0, 1, 6, 0, 0, 305, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92354, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928013', 3928013, '75.352249', '58.717110', '35.270901', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92088, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928021', 3928021, '86.804192', '58.856110', '31.969290', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91816, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928022', 3928022, '84.852730', '58.771778', '28.421551', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91544, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928152', 3928152, '58.122269', '59.502029', '1.331460', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928154', 3928154, '99.899971', '53.697948', '21.844801', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928157', 3928157, '28.599730', '59.945721', '27.529560', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928160', 3928160, '25.558041', '59.878441', '30.178419', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928161', 3928161, '14.973360', '62.347179', '18.278700', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928165', 3928165, '6.374675', '59.338470', '42.109829', 138, 0, 0, 0, 1, 6, 0, 0, 302, 0, '0.000000', 10, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928314', 3928314, '319.607910', '63.456242', '-187.854004', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89646, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928315', 3928315, '318.191406', '63.387531', '-186.084000', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89374, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928317', 3928317, '311.617798', '62.671181', '-255.173492', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928319', 3928319, '306.148010', '62.678329', '-255.381195', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928320', 3928320, '310.641205', '62.731220', '-257.553894', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928321', 3928321, '288.386597', '62.264820', '-212.191498', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928323', 3928323, '281.432892', '62.276360', '-175.724792', 17, 0, 0, 0, 1, 6, 0, 0, 316, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928324', 3928324, '294.345215', '62.536160', '-229.177994', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87700, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928326', 3928326, '324.076385', '63.986629', '-248.880295', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87428, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928327', 3928327, '294.358307', '62.940811', '-234.107498', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87156, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928328', 3928328, '298.334686', '62.391232', '-190.659805', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86884, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928329', 3928329, '288.392303', '62.534901', '-229.239197', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86612, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928331', 3928331, '298.725800', '62.141201', '-195.515305', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86340, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928332', 3928332, '265.782898', '63.307018', '-219.574600', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86068, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928335', 3928335, '316.656586', '63.109501', '-200.695007', 187, 0, 0, 0, 1, 6, 0, 0, 277, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85796, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928360', 3928360, '-105.641998', '14.974850', '-248.369598', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928364', 3928364, '-110.496902', '14.974860', '-245.931396', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928366', 3928366, '-96.993607', '14.974790', '-263.062500', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928370', 3928370, '-134.325607', '14.974520', '-268.556091', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928372', 3928372, '-137.674500', '14.974520', '-281.872009', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84484, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928373', 3928373, '-140.064697', '14.974790', '-279.290314', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84212, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928374', 3928374, '-183.464493', '14.974900', '-240.699707', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83940, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928376', 3928376, '-180.748398', '14.974890', '-244.758606', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83668, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928378', 3928378, '-186.089096', '14.974890', '-243.232697', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83396, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928379', 3928379, '-147.631104', '14.969050', '-274.158905', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83124, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928383', 3928383, '-224.475494', '14.969050', '-348.714386', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82858, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928386', 3928386, '-209.268402', '14.974940', '-344.686401', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82586, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928387', 3928387, '-206.509598', '14.974940', '-340.343994', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82314, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928388', 3928388, '-218.735199', '14.974420', '-379.859985', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82042, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928389', 3928389, '-223.490601', '14.974420', '-382.159912', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81770, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928391', 3928391, '-258.752411', '14.974870', '-325.427490', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81498, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928392', 3928392, '-264.535492', '14.974880', '-327.510101', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81226, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928394', 3928394, '-281.808807', '14.974920', '-208.237701', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80960, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928519', 3928519, '-253.182007', '14.974930', '-267.783295', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80688, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928520', 3928520, '-255.348694', '14.974930', '-265.372406', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80416, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928523', 3928523, '-283.110809', '14.974940', '-291.602112', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80144, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928524', 3928524, '-282.531006', '14.974940', '-294.806488', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79872, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928525', 3928525, '-286.528809', '14.974940', '-293.707794', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79600, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928527', 3928527, '-298.754211', '14.974940', '-221.860397', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79328, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928528', 3928528, '-295.336212', '14.974940', '-225.644699', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79056, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928531', 3928531, '-217.611801', '14.974770', '-304.205109', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78778, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928534', 3928534, '-250.701904', '14.974930', '-243.696503', 382, 0, 0, 0, 1, 6, 0, 0, 636, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78512, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928783', 3928783, '-182.680801', '14.974910', '-276.838287', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78228, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928784', 3928784, '-170.103302', '14.974860', '-253.832504', 302, 0, 0, 0, 1, 6, 0, 0, 308, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77956, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928788', 3928788, '-212.801102', '14.974940', '-333.462799', 389, 0, 0, 0, 1, 6, 0, 0, 635, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928795', 3928795, '-266.258698', '15.546460', '-234.426102', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77370, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928796', 3928796, '-219.789307', '14.974930', '-267.238892', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77098, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928797', 3928797, '-285.191498', '14.974940', '-268.444397', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76826, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928798', 3928798, '-203.762299', '14.974910', '-250.822205', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76554, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928799', 3928799, '-278.737915', '14.974940', '-262.906189', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76282, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928800', 3928800, '-277.257599', '14.974940', '-267.571411', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76010, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928801', 3928801, '-256.085907', '14.974930', '-289.433411', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75738, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928802', 3928802, '-224.033401', '14.974930', '-264.018097', 12, 0, 0, 0, 1, 6, 0, 0, 13, 0, '0.000000', 13, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75466, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928803', 3928803, '146.532303', '54.459400', '-51.499241', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75254, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928804', 3928804, '102.067497', '53.818520', '-56.137989', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74982, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928805', 3928805, '78.182693', '57.105598', '-30.773781', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74710, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928806', 3928806, '76.842499', '57.456390', '-29.140619', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928807', 3928807, '86.645050', '57.952759', '6.113357', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74166, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928808', 3928808, '22.705441', '61.685020', '19.656160', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73894, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928809', 3928809, '10.100620', '59.973881', '35.668980', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73622, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928810', 3928810, '166.031296', '50.849098', '-100.283997', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73350, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928811', 3928811, '186.388901', '51.621220', '-160.082397', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73078, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928812', 3928812, '238.300095', '63.248600', '-122.148499', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72806, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928813', 3928813, '184.099701', '52.311790', '-57.823231', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72534, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928814', 3928814, '179.929794', '52.482571', '-55.958038', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72262, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928815', 3928815, '142.056702', '53.278130', '-130.908096', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 10, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71990, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928816', 3928816, '268.193207', '63.254810', '-222.082703', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71718, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928822', 3928822, '302.263489', '62.065739', '-193.318497', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 11, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71446, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928825', 3928825, '-123.838997', '14.974520', '-263.543488', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71174, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928831', 3928831, '-176.301498', '14.974870', '-250.083099', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70902, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928832', 3928832, '-144.984497', '14.974770', '-287.996185', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70630, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928833', 3928833, '-185.416595', '14.974910', '-280.625488', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 12, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70358, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928834', 3928834, '-244.850296', '14.974930', '-244.881104', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70086, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928835', 3928835, '-244.690704', '15.599670', '-289.695801', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69814, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928836', 3928836, '-287.953003', '14.974940', '-254.367096', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69542, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928837', 3928837, '-288.296387', '14.974940', '-221.930298', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 13, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69270, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928838', 3928838, '-242.570297', '14.974810', '-341.476898', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68998, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928839', 3928839, '-294.252502', '14.974850', '-321.210785', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68726, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928840', 3928840, '-213.266998', '14.974420', '-364.787292', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68454, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928841', 3928841, '-196.042206', '14.974940', '-319.922791', 136, 0, 0, 0, 1, 6, 0, 0, 298, 0, '0.000000', 14, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68182, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928894', 3928894, '-427.363312', '23.320280', '-482.444489', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67692, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928895', 3928895, '-414.236694', '24.246580', '-480.094604', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67420, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928896', 3928896, '-399.069214', '24.662140', '-486.445496', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67148, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928897', 3928897, '-426.661407', '23.254721', '-480.735504', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66876, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928898', 3928898, '-385.109589', '24.366320', '-508.717590', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66604, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928899', 3928899, '-383.622498', '24.283310', '-510.090912', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66332, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928900', 3928900, '-397.867401', '24.621420', '-483.869110', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66060, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928902', 3928902, '-395.742706', '24.800859', '-486.720215', 342, 0, 0, 0, 1, 6, 0, 0, 309, 0, '0.000000', 20, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65788, 5, 0, 0, 0, 29, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928905', 3928905, '-372.182800', '14.915100', '-682.187012', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65438, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928915', 3928915, '-343.109711', '14.951240', '-708.646729', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65166, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928916', 3928916, '-336.488098', '15.011050', '-702.973022', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64894, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928917', 3928917, '-342.475098', '14.886180', '-699.100403', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64622, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928918', 3928918, '-346.725800', '15.000050', '-648.932983', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64350, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928919', 3928919, '-360.611603', '15.143860', '-728.342285', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64078, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928920', 3928920, '-369.109985', '17.086229', '-625.858582', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63806, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928921', 3928921, '-368.551208', '14.932670', '-677.304016', 42, 0, 0, 0, 1, 6, 0, 0, 227, 0, '0.000000', 22, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63534, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928922', 3928922, '-289.976898', '15.036210', '-766.856018', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63346, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928923', 3928923, '-329.499603', '13.228890', '-734.741028', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63074, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928924', 3928924, '-308.522186', '13.199010', '-741.054382', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62802, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928926', 3928926, '-330.769806', '14.999570', '-781.734985', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62530, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928927', 3928927, '-282.568512', '14.996440', '-714.049622', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62258, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928928', 3928928, '-288.031189', '15.033810', '-704.314270', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61986, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928929', 3928929, '-340.138885', '14.999570', '-765.682495', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61714, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928930', 3928930, '-375.273102', '24.057680', '-530.949707', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61364, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928931', 3928931, '-376.594513', '24.104771', '-528.967224', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61092, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928932', 3928932, '-385.780304', '23.495701', '-548.185181', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60820, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928933', 3928933, '-388.991913', '23.634899', '-551.127014', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60548, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928934', 3928934, '-380.102814', '23.848009', '-554.942871', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60276, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928935', 3928935, '-383.823486', '24.014250', '-580.209229', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60004, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928936', 3928936, '-384.645203', '22.916321', '-600.375427', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59732, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928937', 3928937, '-382.814087', '22.623171', '-601.962280', 187, 0, 0, 0, 1, 6, 0, 0, 278, 0, '0.000000', 21, 1, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59460, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928938', 3928938, '-160.448700', '15.121640', '-740.138916', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59272, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928939', 3928939, '-163.418106', '15.126450', '-733.144714', 109, 0, 0, 0, 1, 6, 0, 0, 310, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59006, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928940', 3928940, '-154.855392', '15.126450', '-735.291016', 111, 0, 0, 0, 1, 6, 0, 0, 312, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928941', 3928941, '-184.969193', '15.126200', '-748.799011', 111, 0, 0, 0, 1, 6, 0, 0, 312, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928942', 3928942, '-245.304596', '14.639280', '-736.399902', 109, 0, 0, 0, 1, 6, 0, 0, 310, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58190, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928943', 3928943, '-208.907501', '15.126340', '-737.954224', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57912, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928944', 3928944, '-177.706696', '15.126430', '-724.218872', 110, 0, 0, 0, 1, 6, 0, 0, 314, 0, '0.000000', 24, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928945', 3928945, '129.798294', '53.983780', '241.581604', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 17, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc3928946', 3928946, '358.728088', '75.113953', '188.477402', 1445, 0, 0, 0, 1, 6, 0, 0, 244, 0, '0.000000', 12, 1, 15, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131438, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4057505', 4057505, '425.836700', '93.949097', '147.345596', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.500000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23758, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4057530', 4057530, '246.828796', '52.038040', '143.148804', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.800000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23492, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4057532', 4057532, '209.687393', '52.005539', '110.727303', 797, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 23226, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4057541', 4057541, '192.848099', '52.038040', '162.149994', 796, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22942, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4057553', 4057553, '108.028297', '49.844238', '-189.682297', 798, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22688, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4057563', 4057563, '-82.688713', '15.467950', '-260.648010', 795, 0, 0, 0, 0, 6, 0, 0, 1277, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4057572', 4057572, '-436.003998', '23.000170', '-484.805511', 791, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22150, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4190759', 4190759, '-345.540588', '14.999600', '-775.448181', 26, 0, 0, 0, 1, 6, 0, 0, 217, 0, '0.000000', 23, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57362, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4267191', 4267191, '-707.860779', '67.740463', '-822.422119', 1439, 0, 0, 0, 0, 6, 0, 0, 2160, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57014, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4267197', 4267197, '-665.501282', '62.452560', '-807.101318', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56748, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4267200', 4267200, '-665.515930', '62.330540', '-804.663086', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56476, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4267201', 4267201, '-678.426575', '63.899670', '-816.868713', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56204, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4267202', 4267202, '-697.547180', '65.602493', '-808.171204', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55932, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4267203', 4267203, '-691.117920', '65.001953', '-800.783875', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55660, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4267204', 4267204, '-707.367920', '67.125900', '-815.833374', 1872, 0, 0, 0, 0, 6, 0, 0, 2159, 0, '0.000000', 49, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55388, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4267205', 4267205, '-691.542114', '65.307541', '-815.101807', 434, 0, 0, 0, 0, 6, 0, 0, 2160, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4296870', 4296870, '242.172607', '52.038120', '112.691498', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20750, 8, 0, 0, 4296864, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4296871', 4296871, '246.709503', '52.038120', '124.038902', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20478, 8, 0, 0, 4296863, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4296872', 4296872, '237.477707', '52.017941', '108.608101', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20206, 8, 0, 0, 4296858, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4296873', 4296873, '244.254303', '52.038120', '162.449799', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19934, 8, 0, 0, 4296867, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4296874', 4296874, '244.299103', '52.038120', '166.290298', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19662, 8, 0, 0, 4296868, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308066', 4308066, '-421.159485', '44.462021', '-712.226013', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54672, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308069', 4308069, '-514.378784', '51.624359', '-759.622498', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54400, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308070', 4308070, '-599.843384', '57.051182', '-784.518921', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54128, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308071', 4308071, '-656.681274', '62.116219', '-804.503601', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53856, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308072', 4308072, '-492.048187', '50.155430', '-704.991577', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53590, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308073', 4308073, '-517.815491', '50.450741', '-713.017395', 63, 0, 0, 0, 0, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53324, 1, 0, 0, 0, 0, 30066, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308074', 4308074, '-456.002014', '51.014610', '-752.579285', 55, 0, 0, 0, 0, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53058, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308075', 4308075, '-495.700897', '50.855309', '-742.115417', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52792, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308082', 4308082, '-441.168610', '50.899448', '-705.323914', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52514, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308083', 4308083, '-518.314270', '50.452862', '-714.412109', 62, 0, 0, 0, 0, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52224, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308084', 4308084, '-479.211487', '51.372540', '-761.453186', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51964, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308085', 4308085, '-402.046509', '49.868610', '-739.848206', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51704, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308086', 4308086, '-454.328613', '50.848831', '-752.713074', 64, 0, 0, 0, 0, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51414, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308091', 4308091, '-536.909607', '51.647678', '-772.339600', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51154, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308092', 4308092, '-566.559387', '53.197552', '-772.416382', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50870, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308093', 4308093, '-534.190186', '55.472980', '-738.915771', 62, 0, 0, 0, 1, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50592, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308094', 4308094, '-570.383728', '53.322189', '-740.588013', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308095', 4308095, '-576.705811', '54.865730', '-790.850830', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50060, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308096', 4308096, '-598.254211', '63.233582', '-755.445496', 63, 0, 0, 0, 1, 6, 0, 0, 1818, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49788, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308097', 4308097, '-601.317322', '62.751640', '-757.922485', 64, 0, 0, 0, 1, 6, 0, 0, 1819, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49510, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308098', 4308098, '-621.487915', '61.777660', '-742.445374', 61, 0, 0, 0, 1, 6, 0, 0, 1816, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49256, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308099', 4308099, '-621.786072', '58.863022', '-795.647095', 55, 0, 0, 0, 1, 6, 0, 0, 1815, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48978, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308100', 4308100, '-646.074890', '61.267559', '-800.385315', 62, 0, 0, 0, 1, 6, 0, 0, 1817, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48688, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308102', 4308102, '-555.229980', '53.299679', '-753.444702', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48446, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308104', 4308104, '-410.261810', '51.000069', '-758.953003', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48174, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308105', 4308105, '-468.451904', '50.148300', '-723.755676', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308109', 4308109, '-626.947510', '60.044189', '-813.534790', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47630, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308112', 4308112, '-635.044800', '58.894249', '-777.102417', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4308164', 4308164, '-544.952698', '55.549671', '-803.447388', 201, 0, 0, 0, 1, 6, 0, 0, 1820, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47086, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4510228', 4510228, '320.279907', '67.275337', '234.176498', 793, 0, 0, 0, 0, 6, 0, 0, 1275, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21884, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(332, 'w1f1_battle', 'bnpc4621821', 4621821, '-91.708687', '15.670890', '217.180496', 2769, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 24120, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4291453', 4291453, '155.132599', '222.009995', '348.043488', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41428, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(333, 'e0088', 'bnpc4291457', 4291457, '272.663513', '222.247696', '334.248901', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41156, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(333, 'e0088', 'bnpc4291464', 4291464, '220.038406', '302.644592', '-149.387497', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(333, 'e0088', 'bnpc4291467', 4291467, '177.878494', '301.664612', '-190.712402', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40618, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(333, 'e0088', 'bnpc4291540', 4291540, '264.301514', '302.632202', '-284.870697', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40346, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(333, 'e0088', 'bnpc4291544', 4291544, '-136.888702', '304.096985', '-285.084290', 1775, 0, 0, 0, 0, 6, 0, 0, 1583, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40080, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(333, 'e0088', 'bnpc4291545', 4291545, '-494.600586', '204.213104', '-188.481094', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39796, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(333, 'e0088', 'bnpc4291549', 4291549, '-535.141113', '204.035507', '-287.671906', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39524, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(333, 'e0088', 'bnpc4296962', 4296962, '6.586450', '224.231003', '359.448090', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4296996', 4296996, '16.820339', '216.422195', '389.762604', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4296997', 4296997, '31.967649', '236.529999', '323.628510', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4296998', 4296998, '72.035683', '242.920105', '316.766113', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4296999', 4296999, '79.061470', '241.243393', '319.846802', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297000', 4297000, '112.809898', '239.429306', '294.575287', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163724, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297001', 4297001, '58.960991', '253.937698', '281.400696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163452, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297003', 4297003, '10.569400', '224.790207', '357.938599', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163180, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297008', 4297008, '354.657288', '224.892807', '300.765289', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297010', 4297010, '417.257904', '226.214996', '374.532593', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297011', 4297011, '421.699005', '227.744202', '370.285492', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297012', 4297012, '330.572113', '223.491394', '369.867493', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162098, 5, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(333, 'e0088', 'bnpc4297013', 4297013, '429.534393', '217.970001', '417.141296', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161826, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297015', 4297015, '417.746185', '217.952194', '480.668488', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161554, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297016', 4297016, '422.541687', '219.795303', '494.286896', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161282, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297019', 4297019, '411.649689', '220.784195', '484.018890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161010, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297021', 4297021, '181.170303', '242.354599', '223.538406', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160744, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297025', 4297025, '342.033508', '264.985504', '103.754501', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160472, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297026', 4297026, '88.700684', '244.067993', '303.089813', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297027', 4297027, '88.700684', '222.003494', '420.492798', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297028', 4297028, '-25.009581', '205.387497', '480.682007', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297029', 4297029, '398.841614', '224.765701', '381.022705', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297232', 4297232, '-397.424805', '210.788193', '-238.255402', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38242, 8, 0, 0, 4128002, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4297234', 4297234, '-397.352997', '210.788193', '-233.666794', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37970, 8, 0, 0, 4128001, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4297235', 4297235, '-397.251587', '210.788193', '-228.848999', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37698, 8, 0, 0, 4128000, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4297236', 4297236, '-423.044800', '210.788193', '-221.963104', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37426, 8, 0, 0, 4297227, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4297238', 4297238, '-413.101990', '210.788193', '-212.035004', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37154, 8, 0, 0, 4297228, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4297239', 4297239, '-417.529114', '210.788193', '-217.341202', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36882, 8, 0, 0, 4297229, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4297336', 4297336, '168.169693', '276.447601', '-48.600040', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159112, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297337', 4297337, '264.687988', '294.602692', '-93.670403', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158840, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4297346', 4297346, '280.170807', '253.192902', '147.692001', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4297350', 4297350, '334.350311', '248.434402', '184.154297', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4297353', 4297353, '327.623993', '256.382294', '132.340805', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4297354', 4297354, '291.785187', '269.499786', '39.650711', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4297356', 4297356, '192.950302', '271.137512', '3.646851', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4297359', 4297359, '285.844391', '267.842712', '44.338120', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4297363', 4297363, '173.391296', '272.125793', '-12.465330', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4297364', 4297364, '249.355698', '270.133301', '26.395069', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4297365', 4297365, '203.100204', '254.232300', '149.502304', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298567', 4298567, '157.396698', '293.324097', '-98.374939', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298571', 4298571, '159.523300', '293.493011', '-99.299156', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298572', 4298572, '135.779297', '299.755890', '-101.941704', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298573', 4298573, '136.228699', '283.407715', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298574', 4298574, '258.647614', '289.809692', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298575', 4298575, '254.634094', '287.557098', '-64.855118', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298576', 4298576, '268.831512', '284.212891', '-40.760189', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298741', 4298741, '251.759094', '294.415894', '-111.584099', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298744', 4298744, '288.151489', '302.427002', '-86.886337', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153938, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298765', 4298765, '321.597290', '303.200989', '-338.780914', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298767', 4298767, '346.691895', '304.562286', '-319.108887', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298770', 4298770, '357.329712', '304.360687', '-356.956696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298772', 4298772, '407.769012', '305.618500', '-327.457397', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298773', 4298773, '412.865387', '304.484802', '-333.469391', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298780', 4298780, '365.239410', '319.169586', '-254.025299', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298781', 4298781, '388.845612', '321.034485', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298784', 4298784, '476.218811', '327.076996', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298787', 4298787, '494.638214', '304.602112', '-349.542206', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298790', 4298790, '182.909805', '336.140900', '-467.124512', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151236, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298792', 4298792, '150.108704', '345.173309', '-380.467590', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150964, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298794', 4298794, '146.329498', '347.075287', '-385.583313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150692, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298812', 4298812, '253.761307', '343.590393', '-494.726715', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150420, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298813', 4298813, '294.270294', '329.274292', '-477.805786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298814', 4298814, '212.636703', '327.759796', '-433.014313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298815', 4298815, '412.045288', '353.824188', '-499.736786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149604, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298816', 4298816, '394.674591', '355.184204', '-555.809875', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298823', 4298823, '260.181488', '356.282806', '-541.374878', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298824', 4298824, '188.311493', '357.747803', '-557.427429', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298825', 4298825, '285.877686', '359.578705', '-569.421021', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148522, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298835', 4298835, '126.756599', '376.088989', '-671.473328', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148250, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298837', 4298837, '356.375610', '356.320007', '-595.291321', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298842', 4298842, '468.223511', '349.470490', '-668.565430', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147700, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298844', 4298844, '531.422729', '348.817993', '-732.418884', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147428, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298845', 4298845, '539.850708', '348.653900', '-745.830627', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147156, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4298846', 4298846, '96.262070', '375.573090', '-645.236084', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298847', 4298847, '618.677002', '325.703705', '-430.685913', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298848', 4298848, '626.867126', '322.872803', '-394.244293', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298849', 4298849, '673.548279', '293.690308', '-320.820892', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298851', 4298851, '584.470276', '282.391998', '-315.705292', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298852', 4298852, '599.206482', '281.914215', '-300.226898', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298853', 4298853, '564.033630', '282.951599', '-300.851807', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298854', 4298854, '684.587830', '306.511292', '-363.764191', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298855', 4298855, '562.945190', '342.102997', '-474.200287', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298858', 4298858, '463.976410', '249.572906', '-308.802399', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298859', 4298859, '473.929901', '247.699707', '-302.357513', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144182, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298860', 4298860, '490.206787', '271.288086', '-298.332397', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298861', 4298861, '397.627808', '248.461594', '-320.859192', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298862', 4298862, '283.789703', '236.298401', '-325.220306', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298863', 4298863, '291.652496', '235.940796', '-331.188995', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143094, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298864', 4298864, '296.253906', '234.759995', '-368.673309', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298866', 4298866, '473.213501', '248.114304', '-259.048889', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298871', 4298871, '614.450012', '323.410309', '-400.318604', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298873', 4298873, '668.683716', '306.076996', '-365.426788', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298882', 4298882, '683.369995', '295.457611', '-324.276794', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298884', 4298884, '681.273376', '295.122589', '-325.174805', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298886', 4298886, '581.921387', '282.296997', '-294.985413', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298888', 4298888, '584.498718', '282.204895', '-290.600891', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298891', 4298891, '598.967285', '282.223602', '-314.123505', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298892', 4298892, '570.297485', '282.771301', '-310.753998', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298900', 4298900, '532.146484', '235.205200', '301.718414', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140114, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4298901', 4298901, '548.790588', '235.278793', '308.827301', 114, 0, 0, 0, 1, 6, 0, 0, 662, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139848, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4298902', 4298902, '539.909912', '235.309296', '290.943695', 115, 0, 0, 0, 0, 6, 0, 0, 661, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139582, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(333, 'e0088', 'bnpc4298903', 4298903, '543.114685', '235.512100', '292.484009', 116, 0, 0, 0, 0, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139316, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(333, 'e0088', 'bnpc4298911', 4298911, '465.921387', '232.736298', '321.428497', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4298914', 4298914, '485.744812', '233.755707', '315.057404', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4298917', 4298917, '8.385859', '200.822098', '514.171082', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298919', 4298919, '3.468143', '219.127502', '377.671387', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298921', 4298921, '56.439899', '213.878601', '395.393188', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298922', 4298922, '32.688740', '261.800201', '264.078491', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298924', 4298924, '31.549110', '262.086487', '260.424103', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298925', 4298925, '97.214867', '251.860901', '270.377808', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298926', 4298926, '65.567993', '240.283707', '329.732208', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298928', 4298928, '173.567596', '231.665298', '266.478912', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298932', 4298932, '267.711090', '226.465698', '281.598785', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298933', 4298933, '349.538513', '232.623795', '259.540588', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298934', 4298934, '353.841400', '234.302200', '255.420700', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298937', 4298937, '398.091797', '226.637100', '344.024994', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298938', 4298938, '278.828003', '242.816803', '203.601105', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298941', 4298941, '191.013199', '256.839386', '104.428802', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4298943', 4298943, '248.318405', '261.876587', '67.776207', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299053', 4299053, '152.027496', '277.941711', '34.020439', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299054', 4299054, '235.312393', '277.402405', '-48.467419', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299057', 4299057, '191.224899', '284.341797', '-81.645477', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299063', 4299063, '374.380005', '306.477386', '-331.197113', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299079', 4299079, '343.678802', '311.085602', '-403.738495', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299081', 4299081, '278.156586', '313.466095', '-429.770386', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299082', 4299082, '347.909790', '309.989197', '-275.124512', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299084', 4299084, '404.743988', '318.417908', '-277.971985', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299088', 4299088, '457.550507', '305.113708', '-285.144989', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299091', 4299091, '458.811310', '305.676910', '-289.211914', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299093', 4299093, '502.242096', '302.581390', '-245.190903', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299094', 4299094, '502.391815', '308.429413', '-356.438385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299096', 4299096, '502.046387', '342.161713', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299098', 4299098, '424.421387', '339.137909', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299099', 4299099, '429.241394', '341.024200', '-436.179199', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299100', 4299100, '218.158203', '330.586700', '-473.045013', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299102', 4299102, '173.367004', '339.026001', '-390.899200', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299103', 4299103, '119.335899', '353.367310', '-336.673615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299106', 4299106, '166.454803', '348.701294', '-492.608795', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299107', 4299107, '432.587189', '365.876801', '-537.769714', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299110', 4299110, '418.305603', '349.797699', '-685.625427', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299112', 4299112, '485.808594', '353.806305', '-658.057312', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299114', 4299114, '298.678589', '345.167297', '-521.747192', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128442, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299115', 4299115, '198.874802', '362.118011', '-601.265076', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299116', 4299116, '138.675293', '374.013306', '-661.681824', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299117', 4299117, '324.054291', '360.242188', '-582.895081', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299119', 4299119, '283.839905', '362.149506', '-625.782288', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299120', 4299120, '210.687897', '361.424805', '-658.411926', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299121', 4299121, '205.782394', '360.548187', '-666.505615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299188', 4299188, '105.119400', '289.448395', '-164.568604', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120116, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299192', 4299192, '62.638309', '289.814606', '-219.226395', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299194', 4299194, '-1.358093', '310.902496', '-142.015701', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299195', 4299195, '-58.910789', '304.604401', '-272.412598', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299197', 4299197, '-86.450127', '300.163605', '-170.834900', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299198', 4299198, '137.090607', '290.130798', '-258.218414', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299208', 4299208, '-115.231300', '298.469788', '-208.100098', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299210', 4299210, '-205.664902', '281.635010', '-192.517700', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118284, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299213', 4299213, '-107.621902', '300.038086', '-137.041306', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118012, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299215', 4299215, '-158.759003', '292.966492', '-201.171295', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299216', 4299216, '-162.136307', '291.173187', '-194.256607', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299217', 4299217, '-205.676498', '283.894012', '-114.763100', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117196, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299218', 4299218, '-212.088394', '285.828400', '-56.427200', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299219', 4299219, '-290.402100', '261.601898', '-157.738800', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116652, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299227', 4299227, '-318.632690', '255.833298', '-42.884541', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101716, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299230', 4299230, '-340.376007', '259.605804', '-64.511017', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101444, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299231', 4299231, '-317.614502', '256.207092', '-97.947693', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299233', 4299233, '-257.298615', '264.585693', '-65.689346', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299235', 4299235, '-249.965302', '269.336914', '-76.447701', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299236', 4299236, '-353.139587', '237.921494', '-157.603195', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299238', 4299238, '-423.544708', '240.253296', '-111.314598', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299241', 4299241, '-359.502197', '233.804596', '-160.537003', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299242', 4299242, '-578.240723', '227.008408', '-125.078201', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116386, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299244', 4299244, '-499.116089', '237.639496', '-97.965683', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116114, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299247', 4299247, '-655.179871', '229.729202', '-54.205719', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115842, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299249', 4299249, '-483.586609', '226.184692', '-125.489799', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299250', 4299250, '-477.837402', '228.009293', '-122.481400', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299252', 4299252, '-573.938416', '231.500397', '-73.804337', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299254', 4299254, '-600.372192', '209.926697', '-352.855804', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299256', 4299256, '-623.961182', '211.311707', '-374.720001', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299257', 4299257, '-624.778992', '210.859299', '-381.588593', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299258', 4299258, '-586.229492', '201.455200', '-440.921997', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299259', 4299259, '-583.154114', '188.738800', '-477.195404', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299260', 4299260, '-653.461182', '211.102798', '-435.622009', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299422', 4299422, '-650.603027', '204.070007', '-488.214691', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299424', 4299424, '-551.951416', '206.791595', '-350.856995', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112856, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299425', 4299425, '-612.623779', '216.144806', '-319.243988', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299426', 4299426, '-853.938416', '226.438599', '25.457430', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299427', 4299427, '-879.604614', '229.180099', '-15.122490', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299428', 4299428, '-894.004272', '228.026398', '0.443500', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299429', 4299429, '-907.681885', '249.338104', '26.397079', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299430', 4299430, '-907.681885', '247.122192', '-24.585300', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299431', 4299431, '-938.982971', '269.272095', '1.981136', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299433', 4299433, '-951.375916', '276.008698', '-32.272030', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299593', 4299593, '117.442703', '288.131500', '-217.671204', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299595', 4299595, '61.837181', '292.037506', '-153.092804', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299596', 4299596, '58.310040', '291.422913', '-157.591202', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299597', 4299597, '-17.296480', '300.204010', '-215.268906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299598', 4299598, '-102.796997', '298.673889', '-164.088501', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299599', 4299599, '-144.174805', '292.303986', '-187.728806', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299600', 4299600, '-141.522705', '298.377014', '-239.075500', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299602', 4299602, '-187.987900', '287.198914', '-119.562897', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299603', 4299603, '-250.437195', '273.614410', '-139.801193', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299604', 4299604, '-287.381409', '260.165009', '-74.592461', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299605', 4299605, '-249.896500', '264.386505', '-56.690639', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299606', 4299606, '-316.963898', '249.190399', '0.375132', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299607', 4299607, '-353.362305', '249.890305', '-112.803703', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107126, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299608', 4299608, '-317.082214', '255.914795', '-163.691803', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106854, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299610', 4299610, '-540.337280', '216.113495', '-165.331497', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106582, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299612', 4299612, '-494.751099', '227.817902', '-119.577698', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299614', 4299614, '-538.078918', '224.933197', '-115.343002', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299615', 4299615, '-679.120911', '223.608002', '-24.397600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299617', 4299617, '-748.989075', '226.855804', '-70.359383', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105494, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299618', 4299618, '-763.556213', '240.848099', '-149.583405', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105222, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299620', 4299620, '-791.189026', '244.109695', '-171.737000', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104950, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299628', 4299628, '-802.041016', '225.578995', '14.979860', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299805', 4299805, '-869.248901', '228.169098', '24.666691', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299806', 4299806, '-916.034790', '242.289902', '5.756409', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299808', 4299808, '-898.861877', '250.815994', '-36.228569', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299809', 4299809, '-932.563721', '262.462097', '18.376640', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299833', 4299833, '-528.303406', '207.486404', '-361.926514', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299835', 4299835, '-635.674072', '220.452301', '-338.610809', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299836', 4299836, '-582.583984', '206.158493', '-384.262085', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299839', 4299839, '-524.189880', '192.377594', '-420.327301', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299840', 4299840, '-649.544922', '206.868103', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299842', 4299842, '-652.836792', '207.443604', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101958, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(333, 'e0088', 'bnpc4299844', 4299844, '-459.800110', '286.182892', '196.642899', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99194, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299846', 4299846, '-523.050415', '277.612488', '197.807800', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98922, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299847', 4299847, '-532.402588', '240.741592', '331.532806', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98650, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299850', 4299850, '-475.198303', '237.443207', '403.405304', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299852', 4299852, '-369.299286', '237.950699', '382.602814', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98106, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299853', 4299853, '-350.165009', '237.914505', '384.625702', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97834, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299854', 4299854, '-269.214996', '226.703201', '429.251587', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97562, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299856', 4299856, '-231.006302', '225.146896', '420.889496', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299858', 4299858, '-634.704590', '244.070801', '300.718811', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97018, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299859', 4299859, '-706.643005', '237.401398', '303.170288', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96746, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299861', 4299861, '-766.720093', '254.688202', '421.683014', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96474, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299862', 4299862, '-743.321777', '254.701202', '428.467499', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299872', 4299872, '-358.874786', '272.546112', '253.455994', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299873', 4299873, '-357.118988', '248.051895', '290.108185', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299874', 4299874, '-401.256805', '239.983307', '278.980713', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299876', 4299876, '-288.120392', '293.587006', '256.741089', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299877', 4299877, '-277.870697', '258.656494', '334.187714', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299878', 4299878, '-321.083313', '262.754395', '217.010696', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299879', 4299879, '-440.215912', '244.465805', '319.074097', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94316, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299880', 4299880, '-394.308411', '303.990997', '193.089905', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299881', 4299881, '-460.690186', '270.367493', '260.074188', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4299886', 4299886, '-254.901993', '224.367096', '523.252625', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299887', 4299887, '-247.943405', '224.715195', '514.518921', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93096, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299888', 4299888, '-282.529114', '224.717606', '503.718506', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92824, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299889', 4299889, '-393.453888', '238.452805', '503.715515', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92552, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299909', 4299909, '-485.722290', '243.436295', '460.457214', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92280, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299910', 4299910, '-491.588287', '245.377701', '463.765594', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92008, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299912', 4299912, '-305.548096', '226.398407', '559.785400', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91736, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299914', 4299914, '-212.225906', '229.780594', '563.407715', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91464, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299915', 4299915, '-252.616806', '224.743301', '626.013428', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91192, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299917', 4299917, '-120.126801', '205.896805', '472.541412', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299933', 4299933, '-167.451797', '212.509293', '469.950714', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299935', 4299935, '-192.431595', '215.960907', '481.742401', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299937', 4299937, '-254.539902', '221.577606', '466.534088', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299939', 4299939, '-261.479614', '221.984207', '460.971405', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89970, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299940', 4299940, '-327.888702', '223.177307', '446.066895', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89698, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299942', 4299942, '-452.292694', '231.075394', '433.657410', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299943', 4299943, '-556.198486', '235.399994', '407.330414', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299944', 4299944, '-563.418518', '235.399994', '398.974304', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4299945', 4299945, '-533.244080', '235.399994', '407.132111', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4300046', 4300046, '-699.997925', '253.759995', '507.272186', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88344, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300048', 4300048, '-688.471802', '253.697205', '509.426910', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88072, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300049', 4300049, '-698.510803', '253.838196', '499.010101', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87800, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300050', 4300050, '-705.378479', '253.881699', '505.406494', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87528, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300051', 4300051, '-699.795776', '253.759995', '514.230591', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300052', 4300052, '-688.023315', '253.529099', '507.670410', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300053', 4300053, '-688.742798', '253.351105', '499.477112', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300054', 4300054, '-677.956787', '254.053894', '498.299103', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300056', 4300056, '-493.539612', '282.080109', '191.529907', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300057', 4300057, '-521.202393', '242.145401', '299.671906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300059', 4300059, '-521.172913', '237.402893', '377.595398', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300061', 4300061, '-438.483398', '245.206894', '362.585205', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300062', 4300062, '-248.297302', '227.611099', '410.760986', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300064', 4300064, '-153.368500', '221.118393', '416.250702', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300066', 4300066, '-98.785767', '213.591293', '426.872589', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300069', 4300069, '-272.282501', '264.869385', '321.059906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300070', 4300070, '-390.265106', '233.670807', '321.964600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83926, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300072', 4300072, '-383.889404', '248.725204', '219.890106', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83654, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300074', 4300074, '-416.929291', '233.443802', '461.940796', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300078', 4300078, '-295.979309', '224.444901', '485.191010', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300080', 4300080, '-346.028900', '236.543396', '518.089478', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300081', 4300081, '-227.039001', '229.327805', '547.600525', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300083', 4300083, '-286.249908', '221.550095', '669.298584', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300084', 4300084, '-282.240204', '222.570007', '672.355286', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300085', 4300085, '-254.344894', '224.215302', '580.497681', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300087', 4300087, '-149.461502', '217.410095', '485.622894', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300089', 4300089, '-604.956787', '244.740799', '337.663788', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81206, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300090', 4300090, '-649.166504', '245.258606', '286.166504', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300091', 4300091, '-748.151123', '238.541107', '350.326385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300171', 4300171, '566.598206', '289.624603', '98.502197', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4300176', 4300176, '527.275391', '303.059296', '-162.340805', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79372, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(333, 'e0088', 'bnpc4300177', 4300177, '586.301575', '302.701202', '-115.328102', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79100, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(333, 'e0088', 'bnpc4300178', 4300178, '654.442383', '298.421295', '-12.551030', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78828, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(333, 'e0088', 'bnpc4300179', 4300179, '669.497986', '301.708099', '-29.924919', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78556, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(333, 'e0088', 'bnpc4300180', 4300180, '602.427917', '290.487396', '-0.884406', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78284, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(333, 'e0088', 'bnpc4300181', 4300181, '664.371399', '287.443909', '73.074158', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78012, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(333, 'e0088', 'bnpc4300182', 4300182, '601.759216', '287.400208', '127.919098', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77740, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(333, 'e0088', 'bnpc4300183', 4300183, '565.585571', '287.455109', '154.665298', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77468, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(333, 'e0088', 'bnpc4300184', 4300184, '558.831116', '300.043915', '59.949520', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77196, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(333, 'e0088', 'bnpc4300191', 4300191, '511.356689', '303.173004', '-206.740097', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76930, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(333, 'e0088', 'bnpc4300194', 4300194, '494.438110', '303.700287', '-197.619598', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76646, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300196', 4300196, '508.591888', '303.338898', '-205.656296', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76392, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(333, 'e0088', 'bnpc4300198', 4300198, '523.491211', '302.387909', '-191.363495', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76120, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300200', 4300200, '559.439514', '303.965698', '-151.707001', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75836, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300201', 4300201, '555.992920', '301.960693', '-163.683502', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75570, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300203', 4300203, '593.473511', '302.708496', '-99.112923', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75304, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300204', 4300204, '642.703979', '303.166687', '-43.589840', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300205', 4300205, '650.994812', '303.095612', '-38.070992', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74742, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300206', 4300206, '625.239319', '302.690613', '-97.402184', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74476, 1, 0, 0, 0, 45, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300209', 4300209, '635.367188', '303.307190', '-92.580772', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74198, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(333, 'e0088', 'bnpc4300210', 4300210, '636.402405', '303.397003', '-95.636833', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73938, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(333, 'e0088', 'bnpc4300212', 4300212, '640.141296', '289.793488', '15.564350', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73654, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300213', 4300213, '632.201416', '287.460602', '83.472313', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73394, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300214', 4300214, '694.667114', '302.802002', '-25.909540', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73116, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300215', 4300215, '668.584900', '286.359985', '53.434738', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72856, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300219', 4300219, '653.565674', '286.929688', '35.585339', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72566, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(333, 'e0088', 'bnpc4300220', 4300220, '654.409180', '286.791412', '37.999821', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72312, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(333, 'e0088', 'bnpc4300221', 4300221, '655.671082', '286.824310', '34.141949', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72034, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(333, 'e0088', 'bnpc4300222', 4300222, '657.228088', '286.375885', '36.471931', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71756, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(333, 'e0088', 'bnpc4300226', 4300226, '639.859619', '286.099091', '135.124603', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71478, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(333, 'e0088', 'bnpc4300227', 4300227, '642.707703', '286.175110', '132.877899', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71212, 1, 0, 0, 0, 0, 30120, 0, 0, 0), +(333, 'e0088', 'bnpc4300229', 4300229, '708.942505', '286.232513', '46.920448', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70946, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300230', 4300230, '711.298828', '285.307404', '75.698997', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70680, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300232', 4300232, '613.615784', '284.572296', '166.852005', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70408, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300233', 4300233, '590.029480', '285.689209', '176.024506', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70130, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300234', 4300234, '646.990784', '285.135101', '149.341507', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69852, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300236', 4300236, '586.167297', '288.737610', '-28.609209', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4300238', 4300238, '582.383789', '289.517700', '-46.738300', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4300239', 4300239, '559.963928', '292.885193', '-35.993568', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65790, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4300241', 4300241, '576.693481', '289.831787', '-46.195572', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4300242', 4300242, '498.254486', '308.702209', '-165.574203', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4300244', 4300244, '507.927002', '303.303497', '-229.236298', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4300246', 4300246, '630.399292', '300.341187', '-66.790810', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65518, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4300250', 4300250, '684.486816', '291.013214', '7.434129', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4300253', 4300253, '639.507080', '287.656799', '38.046551', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66062, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4300254', 4300254, '630.756226', '286.750000', '109.616798', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4300256', 4300256, '570.830383', '286.569214', '120.215103', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4300257', 4300257, '555.228516', '297.855499', '84.213348', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4300284', 4300284, '605.249023', '330.830811', '-303.486786', 114, 0, 0, 0, 0, 6, 0, 0, 662, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68668, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(333, 'e0088', 'bnpc4300286', 4300286, '527.855225', '308.308502', '-299.702515', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69478, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300287', 4300287, '575.036316', '320.881805', '-289.906189', 115, 0, 0, 0, 1, 6, 0, 0, 661, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69218, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4300288', 4300288, '577.508118', '322.468903', '-294.789093', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68952, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(333, 'e0088', 'bnpc4325155', 4325155, '215.504501', '360.039307', '-581.431030', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4406869', 4406869, '311.001099', '307.036499', '-422.752106', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126194, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406870', 4406870, '323.323395', '303.822296', '-391.989014', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125922, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406871', 4406871, '317.110413', '305.692505', '-418.385315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125650, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406872', 4406872, '351.343506', '312.029114', '-396.169098', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125378, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406873', 4406873, '350.968994', '315.450592', '-416.192993', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125106, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406874', 4406874, '48.752670', '311.224213', '-250.581207', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124834, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406875', 4406875, '44.907230', '311.238312', '-245.044693', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124562, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406876', 4406876, '66.984810', '300.472412', '-252.706802', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124290, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406877', 4406877, '-17.150419', '311.581512', '-255.273895', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124018, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406878', 4406878, '7.231910', '312.528687', '-245.321793', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123746, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406879', 4406879, '-6.278003', '305.376709', '-233.466095', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123474, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406880', 4406880, '-10.073550', '305.779694', '-236.697601', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123202, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406884', 4406884, '357.847992', '311.662201', '-388.165497', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122930, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406885', 4406885, '363.148010', '313.250488', '-391.308411', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122658, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406886', 4406886, '331.929413', '319.783203', '-430.502808', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122386, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406888', 4406888, '113.582199', '354.933685', '-335.568512', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406890', 4406890, '121.680801', '354.167114', '-326.125214', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406891', 4406891, '110.022797', '357.553314', '-311.841187', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406892', 4406892, '111.824799', '358.195190', '-382.551514', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406893', 4406893, '115.392303', '357.688690', '-387.074890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4406894', 4406894, '93.907928', '362.855194', '-349.329315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4600355', 4600355, '547.412170', '348.384613', '-748.106018', 1699, 0, 0, 0, 8, 6, 0, 0, 2162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4614331', 4614331, '530.815125', '348.686096', '-743.006226', 1700, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43556, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4614332', 4614332, '535.935608', '348.616394', '-737.220215', 2222, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43290, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4621624', 4621624, '-332.429199', '307.678406', '234.107803', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44948, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(333, 'e0088', 'bnpc4890695', 4890695, '-188.798996', '226.035995', '400.288086', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(333, 'e0088', 'bnpc4890696', 4890696, '-132.585098', '216.182098', '435.066193', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc3985408', 3985408, '188.372604', '6.271411', '-36.606441', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 11, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52794, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3985409', 3985409, '190.630905', '6.240893', '-34.012409', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 11, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52528, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc3985410', 3985410, '146.990097', '-1.236023', '-43.839230', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 18, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51984, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc3985412', 3985412, '148.546494', '-1.236023', '-38.040829', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 18, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 54154, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3985416', 3985416, '104.265602', '-3.711910', '55.363880', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 14, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53338, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3985471', 3985471, '109.147697', '-3.738525', '84.183960', 1415, 0, 0, 0, 5, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54420, 1, 3, 2000, 0, 0, 0, 4099481, 0, 0), +(334, 'e0089', 'bnpc3985472', 3985472, '94.773682', '-3.738525', '36.209591', 1415, 0, 0, 0, 5, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54692, 1, 3, 2000, 0, 0, 0, 4099479, 0, 0), +(334, 'e0089', 'bnpc3987549', 3987549, '135.484894', '-1.693787', '-6.088379', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 12, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53066, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3987550', 3987550, '137.804199', '-1.663330', '-8.773987', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 12, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52256, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc3987551', 3987551, '139.879395', '-1.663330', '-5.996826', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 12, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51712, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc3987552', 3987552, '165.056793', '6.210388', '-65.232361', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 19, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53882, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3987553', 3987553, '163.744507', '6.240893', '-68.040024', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 19, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51168, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc3987555', 3987555, '104.997200', '-3.738525', '58.518311', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 14, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51440, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc3987556', 3987556, '77.012230', '-10.879730', '-96.665947', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 21, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47108, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3987557', 3987557, '73.227997', '-10.879730', '-95.811440', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 21, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46564, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3987558', 3987558, '48.477859', '-10.910250', '-85.771004', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46020, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3987559', 3987559, '44.235859', '-10.910250', '-92.484978', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46292, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3987560', 3987560, '48.569420', '-10.940770', '-90.867523', 1412, 0, 0, 0, 1, 6, 0, 0, 1190, 0, '0.000000', 20, 0, 120, 1, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48734, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3987562', 3987562, '-5.882465', '-2.500548', '-112.894798', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 23, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45748, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3987563', 3987563, '-12.134020', '-1.660716', '-116.404404', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 23, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45476, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3987564', 3987564, '9.079041', '-11.062810', '-182.909897', 1412, 0, 0, 0, 1, 6, 0, 0, 1190, 0, '0.000000', 20, 0, 120, 1, 0, 24, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48190, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3987565', 3987565, '12.466550', '-11.062810', '-180.743195', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 24, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47652, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3987566', 3987566, '12.313960', '-11.062810', '-187.060394', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 24, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47924, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3987572', 3987572, '-83.115967', '-10.818660', '-97.581482', 1412, 0, 0, 0, 1, 6, 0, 0, 1190, 0, '0.000000', 20, 0, 120, 1, 0, 26, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48462, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3987624', 3987624, '-82.963379', '-10.788150', '-91.050659', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 26, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47380, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3987626', 3987626, '-10.551780', '-1.897295', '-112.223503', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 23, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46836, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3987628', 3987628, '21.628969', '0.927666', '135.966904', 973, 0, 0, 0, 0, 6, 0, 0, 1194, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28462, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3998626', 3998626, '57.816410', '9.140137', '107.225098', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 15, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53610, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc3998629', 3998629, '-131.242905', '3.646851', '-31.540409', 1413, 0, 0, 0, 1, 6, 0, 0, 1191, 0, '0.000000', 20, 0, 120, 1, 0, 31, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42994, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc3998632', 3998632, '-153.490494', '9.384277', '11.093260', 1413, 0, 0, 0, 1, 6, 0, 0, 1191, 0, '0.000000', 20, 0, 120, 1, 0, 32, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42722, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc3998633', 3998633, '-158.801300', '9.416150', '4.597439', 1413, 0, 0, 0, 1, 6, 0, 0, 1191, 0, '0.000000', 20, 0, 120, 1, 0, 32, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42450, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc4101016', 4101016, '-179.701599', '-15.010420', '-135.818604', 975, 0, 0, 0, 0, 6, 0, 0, 1196, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24020, 1, 6, 2000, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc4101020', 4101020, '-271.131409', '17.225630', '19.957199', 979, 0, 0, 0, 0, 6, 0, 0, 1197, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39450, 1, 2, 2000, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc4101025', 4101025, '74.758507', '-11.019170', '-106.685204', 980, 0, 0, 0, 0, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12102, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101034', 4101034, '42.389832', '-10.958640', '-84.790253', 980, 0, 0, 0, 0, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11830, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101041', 4101041, '17.399370', '-11.009910', '-190.064896', 980, 0, 0, 0, 0, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11558, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101069', 4101069, '-38.694679', '-11.068510', '-128.949997', 980, 0, 0, 0, 0, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11286, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101077', 4101077, '-82.434219', '-10.965880', '-112.949203', 980, 0, 0, 0, 0, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11014, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101086', 4101086, '76.646004', '-11.093380', '-106.126503', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 51, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 7928, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101092', 4101092, '73.380623', '-10.879700', '-108.445900', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 51, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 8744, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101093', 4101093, '73.672859', '-11.132110', '-105.518997', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 51, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 9560, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101094', 4101094, '41.112499', '-10.851840', '-83.733414', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 52, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 8472, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101095', 4101095, '40.833912', '-10.910920', '-86.653191', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 52, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 8200, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101096', 4101096, '44.106239', '-11.004630', '-84.335793', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 52, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 9016, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101102', 4101102, '16.404329', '-11.333980', '-188.701797', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 53, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 9832, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101103', 4101103, '16.125740', '-11.264760', '-191.621597', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 53, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 10104, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101104', 4101104, '19.398069', '-11.096800', '-189.304199', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 53, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 9288, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101105', 4101105, '-37.876389', '-11.062810', '-127.699898', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 54, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 6296, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101106', 4101106, '-38.241859', '-10.987660', '-130.443604', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 54, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 7656, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101107', 4101107, '-40.016979', '-10.960150', '-128.126099', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 54, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 7384, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101109', 4101109, '-81.944260', '-11.055860', '-111.718002', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 55, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 6568, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101110', 4101110, '-80.835564', '-10.933210', '-113.694901', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 55, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 7112, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101111', 4101111, '-84.084839', '-11.002010', '-112.144203', 1416, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 55, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 6840, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101127', 4101127, '-125.108803', '9.811523', '-0.320496', 1414, 0, 0, 0, 0, 6, 0, 0, 1192, 0, '0.000000', 20, 0, 120, 1, 0, 35, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41640, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101177', 4101177, '-108.254402', '10.234440', '3.719265', 1413, 0, 0, 0, 1, 6, 0, 0, 1191, 0, '0.000000', 20, 0, 120, 1, 0, 33, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42178, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc4101178', 4101178, '-111.794998', '9.833187', '-3.942090', 1413, 0, 0, 0, 1, 6, 0, 0, 1191, 0, '0.000000', 20, 0, 120, 1, 0, 33, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41906, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc4101380', 4101380, '-19.621960', '2.187741', '152.235504', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28196, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101382', 4101382, '-19.622000', '2.187700', '152.235504', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27924, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101387', 4101387, '-19.622000', '2.187700', '152.235504', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27652, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101388', 4101388, '-19.622000', '2.187700', '152.235504', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27380, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101392', 4101392, '24.526211', '2.233568', '180.544693', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27108, 1, 0, 2000, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(334, 'e0089', 'bnpc4101393', 4101393, '24.526171', '2.233568', '180.544601', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26836, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101394', 4101394, '24.526171', '2.233568', '180.544601', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26564, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101395', 4101395, '24.526171', '2.233568', '180.544601', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26292, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101398', 4101398, '88.949608', '2.247609', '139.983795', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26020, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101399', 4101399, '88.949562', '2.247609', '139.983795', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25748, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101400', 4101400, '88.949562', '2.247609', '139.983795', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25476, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101401', 4101401, '88.949562', '2.247609', '139.983795', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25204, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101405', 4101405, '-19.622000', '2.187700', '152.235504', 972, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24938, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101408', 4101408, '24.526199', '2.233600', '180.544601', 972, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24666, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101409', 4101409, '88.944817', '2.243042', '139.970901', 972, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24394, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101411', 4101411, '-176.216599', '-15.010410', '-132.392700', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23754, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101413', 4101413, '-175.270493', '-15.010420', '-133.125107', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23482, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101414', 4101414, '-175.941895', '-15.010400', '-131.416107', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23210, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101415', 4101415, '-175.112595', '-15.010410', '-131.973206', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22938, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101416', 4101416, '-175.112595', '-15.010410', '-131.973206', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22666, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101417', 4101417, '-175.117905', '-15.010410', '-131.996002', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22394, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101418', 4101418, '-175.112595', '-15.010410', '-131.973206', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22122, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101419', 4101419, '-175.112595', '-15.010410', '-131.973206', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21850, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101420', 4101420, '-175.112595', '-15.010410', '-131.973206', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21578, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101424', 4101424, '-277.452209', '17.568609', '40.437000', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39184, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101447', 4101447, '-277.452209', '17.568600', '40.437000', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38912, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101448', 4101448, '-277.452209', '17.568600', '40.437000', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38640, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101449', 4101449, '-277.452209', '17.568600', '40.437000', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38368, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101450', 4101450, '-255.683197', '17.570080', '47.316502', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38096, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101451', 4101451, '-255.683197', '17.570080', '47.316502', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37824, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101452', 4101452, '-255.683197', '17.570080', '47.316502', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37552, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101453', 4101453, '-255.683197', '17.570080', '47.316502', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37280, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101456', 4101456, '-237.304703', '17.604349', '38.752121', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37008, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101457', 4101457, '-237.304703', '17.604349', '38.752110', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36736, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101458', 4101458, '-237.304703', '17.604349', '38.752110', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36464, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101459', 4101459, '-237.304703', '17.604349', '38.752110', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36192, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101460', 4101460, '-278.928406', '17.555901', '-2.495306', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35920, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101461', 4101461, '-278.928497', '17.555901', '-2.495310', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35648, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101462', 4101462, '-278.928497', '17.555901', '-2.495310', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35376, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101463', 4101463, '-278.928497', '17.555901', '-2.495310', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35104, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101465', 4101465, '-261.221313', '17.568060', '-10.768690', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34832, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101466', 4101466, '-261.221313', '17.568060', '-10.768700', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34560, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101467', 4101467, '-261.221313', '17.568060', '-10.768700', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34288, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101468', 4101468, '-261.221313', '17.568060', '-10.768700', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34016, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101469', 4101469, '-239.437195', '17.568661', '-4.146132', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33744, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101470', 4101470, '-239.437195', '17.568661', '-4.146136', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33472, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101471', 4101471, '-239.437195', '17.568661', '-4.146136', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33200, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101472', 4101472, '-239.437195', '17.568661', '-4.146136', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32928, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101474', 4101474, '-277.452209', '17.568600', '40.437000', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32662, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101476', 4101476, '-255.683197', '17.570101', '47.316502', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32390, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101477', 4101477, '-237.304703', '17.604401', '38.752102', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32118, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101478', 4101478, '-278.928497', '17.555901', '-2.495300', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31846, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101498', 4101498, '-261.221313', '17.568100', '-10.768700', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31574, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101503', 4101503, '-239.437195', '17.568701', '-4.146100', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31302, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101506', 4101506, '-238.260498', '17.225630', '16.361401', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31036, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101509', 4101509, '-237.357101', '17.270950', '17.146231', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30764, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101510', 4101510, '-237.269501', '17.225630', '15.551390', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30492, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101511', 4101511, '-237.011200', '17.225630', '16.393320', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30220, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101512', 4101512, '-237.011200', '17.225630', '16.393270', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29948, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101513', 4101513, '-237.011200', '17.225630', '16.393270', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29676, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101514', 4101514, '-237.011200', '17.225630', '16.393270', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29404, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101515', 4101515, '-237.011200', '17.225630', '16.393270', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29132, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4101516', 4101516, '-237.011200', '17.225630', '16.393270', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28860, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4145049', 4145049, '-126.115898', '9.811523', '2.945007', 1414, 0, 0, 0, 0, 6, 0, 0, 1192, 0, '0.000000', 20, 0, 120, 1, 0, 35, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41368, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4184459', 4184459, '151.811905', '-1.236023', '-42.374329', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 18, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50896, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc4184460', 4184460, '100.752899', '-3.711910', '56.330582', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 14, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50624, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc4186800', 4186800, '54.306759', '9.140137', '108.995102', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 15, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50352, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc4186801', 4186801, '53.818481', '9.140137', '105.546600', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 15, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50080, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(334, 'e0089', 'bnpc4195685', 4195685, '-78.782349', '-10.727110', '-92.668091', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 26, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45204, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4195704', 4195704, '-140.581406', '9.414734', '26.657471', 1415, 0, 0, 0, 2, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40676, 1, 3, 2000, 0, 0, 0, 4195689, 0, 0), +(334, 'e0089', 'bnpc4195708', 4195708, '-117.237000', '9.870837', '-16.448339', 1415, 0, 0, 0, 2, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40404, 1, 3, 2000, 0, 0, 0, 4195703, 0, 0), +(334, 'e0089', 'bnpc4205320', 4205320, '-14.206180', '-11.123840', '-149.065399', 1412, 0, 0, 0, 1, 6, 0, 0, 1190, 0, '0.000000', 20, 0, 120, 1, 0, 25, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44926, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4205321', 4205321, '-10.959080', '-11.071360', '-153.204498', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 25, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44660, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4205322', 4205322, '-10.806490', '-11.287730', '-146.887207', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 25, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44388, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4205423', 4205423, '-1.384451', '-11.093320', '-189.403397', 1411, 0, 0, 0, 2, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43908, 1, 3, 2000, 0, 0, 0, 4205333, 0, 0), +(334, 'e0089', 'bnpc4223448', 4223448, '143.410599', '-1.641949', '-48.361370', 1415, 0, 0, 0, 2, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49620, 1, 3, 2000, 0, 0, 0, 4222729, 0, 0), +(334, 'e0089', 'bnpc4223455', 4223455, '32.704960', '5.047771', '95.782066', 1415, 0, 0, 0, 5, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49140, 1, 3, 2000, 0, 0, 0, 4223451, 0, 0), +(334, 'e0089', 'bnpc4223458', 4223458, '0.564514', '-11.032290', '-175.127808', 1412, 0, 0, 0, 5, 6, 0, 0, 1190, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43374, 1, 3, 2000, 0, 0, 0, 4223456, 0, 0), +(334, 'e0089', 'bnpc4223460', 4223460, '-124.084900', '2.072251', '-33.390331', 1415, 0, 0, 0, 5, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39908, 1, 3, 2000, 0, 0, 0, 4223459, 0, 0), +(334, 'e0089', 'bnpc4600278', 4600278, '-274.195587', '17.225630', '18.911619', 1697, 0, 0, 0, 8, 6, 0, 0, 2161, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4614872', 4614872, '-261.326599', '17.225630', '-3.968693', 1698, 0, 0, 0, 8, 6, 0, 0, 656, 0, '80.000000', 49, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20178, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4614873', 4614873, '-265.108704', '17.327801', '34.212910', 1698, 0, 0, 0, 8, 6, 0, 0, 656, 0, '80.000000', 49, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19906, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4614874', 4614874, '-239.788300', '17.225630', '27.443600', 1698, 0, 0, 0, 8, 6, 0, 0, 656, 0, '80.000000', 49, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19634, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4614883', 4614883, '-257.017609', '17.206200', '17.462620', 2043, 0, 0, 0, 3, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4614886', 4614886, '-259.853485', '17.225630', '10.268560', 1993, 0, 0, 0, 3, 6, 0, 0, 0, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19102, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(334, 'e0089', 'bnpc4614887', 4614887, '-260.101105', '17.232479', '22.606119', 1994, 0, 0, 0, 3, 6, 0, 0, 0, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4291568', 4291568, '76.290123', '30.749250', '-733.599182', 1776, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4292672', 4292672, '-12.396590', '18.377340', '-670.928772', 1777, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22138, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4292673', 4292673, '91.670517', '20.458050', '-614.237122', 1778, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21872, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295485', 4295485, '-266.791504', '-5.944477', '-526.778198', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295487', 4295487, '-276.140686', '-8.410786', '-516.253174', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295488', 4295488, '-298.914093', '-4.103804', '-550.291321', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295489', 4295489, '-103.196297', '1.542795', '-586.758179', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295490', 4295490, '-207.536301', '-2.690903', '-578.039001', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295491', 4295491, '-103.713898', '-0.832843', '-642.948425', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295492', 4295492, '-208.009796', '1.723610', '-616.185120', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71640, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295493', 4295493, '-172.408905', '4.990528', '-671.229126', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295495', 4295495, '-380.537506', '-16.898170', '-441.082001', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295496', 4295496, '-430.882507', '-16.898170', '-384.312195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295497', 4295497, '-390.139587', '-16.898170', '-350.704712', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70558, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295498', 4295498, '-398.062103', '-16.898170', '-358.104401', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70286, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295499', 4295499, '-336.279297', '-16.898170', '-437.756195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70014, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295500', 4295500, '-302.568298', '-16.898170', '-458.892609', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69742, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295501', 4295501, '-402.253601', '-16.898170', '-464.540710', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69470, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295503', 4295503, '-369.143799', '-16.898170', '-389.766815', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69198, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295505', 4295505, '-359.561707', '-16.042290', '-486.552094', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68932, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295506', 4295506, '-417.805786', '-6.910027', '-523.771912', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295507', 4295507, '-466.061310', '-9.446001', '-532.017029', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295508', 4295508, '-413.364410', '-2.492527', '-559.181519', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295514', 4295514, '-350.972809', '-6.607239', '-526.665222', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295515', 4295515, '-360.309296', '-4.290267', '-546.520813', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295516', 4295516, '-350.790710', '-3.296191', '-550.475586', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295520', 4295520, '-396.722198', '-14.513140', '-500.059692', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295524', 4295524, '-234.088699', '-4.989685', '-302.540588', 724, 0, 0, 0, 1, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295525', 4295525, '-211.180405', '-2.844870', '-288.253998', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66496, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295526', 4295526, '-257.312897', '1.113892', '-308.064392', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66230, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295528', 4295528, '-212.115707', '-2.955642', '-289.682190', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65946, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295529', 4295529, '-224.841705', '3.952026', '-259.540710', 725, 0, 0, 0, 1, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65680, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295530', 4295530, '-203.875793', '24.704220', '-215.411697', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295531', 4295531, '-234.943207', '21.774599', '-213.092300', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65136, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295532', 4295532, '-235.959198', '22.114910', '-212.031006', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64858, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295533', 4295533, '-234.301407', '21.966511', '-211.462402', 726, 0, 0, 0, 0, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295534', 4295534, '-127.288002', '47.127460', '-188.580307', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295535', 4295535, '-140.871399', '45.053020', '-179.736603', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295536', 4295536, '-136.478302', '46.067551', '-193.959702', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295537', 4295537, '-143.537201', '44.052780', '-181.398193', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295538', 4295538, '-146.514297', '42.327431', '-204.108902', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295539', 4295539, '-129.866394', '46.678692', '-196.996994', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295540', 4295540, '-145.364395', '42.544418', '-202.550705', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295541', 4295541, '-144.789993', '44.556961', '-194.376297', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295659', 4295659, '-53.322418', '17.072929', '-621.681213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295665', 4295665, '-88.710228', '0.643335', '-625.828125', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295666', 4295666, '-207.395203', '8.290789', '-665.648376', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295668', 4295668, '-156.229294', '-1.918439', '-604.694275', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295669', 4295669, '-304.707489', '-15.793150', '-491.020111', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295670', 4295670, '-386.814087', '-6.319692', '-539.647400', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295674', 4295674, '-375.356689', '-13.229610', '-505.729797', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295679', 4295679, '-327.840393', '-2.384109', '-563.164490', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295691', 4295691, '482.994690', '-1.037749', '-792.622070', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59992, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295693', 4295693, '473.960388', '0.503479', '-803.097595', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59720, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295694', 4295694, '450.441315', '-4.905994', '-755.835999', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59448, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295695', 4295695, '500.877289', '-5.020264', '-757.289978', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59176, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295697', 4295697, '456.274902', '-4.258285', '-763.958801', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295698', 4295698, '550.072510', '-9.750549', '-735.286499', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295700', 4295700, '487.731598', '2.187441', '-809.306885', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58360, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295702', 4295702, '268.736298', '32.329670', '-657.612671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295704', 4295704, '272.319611', '32.540180', '-659.312988', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295705', 4295705, '285.744507', '34.969521', '-689.040283', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295709', 4295709, '298.145996', '20.340210', '-684.382385', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295710', 4295710, '348.251495', '21.030451', '-726.475220', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295711', 4295711, '352.642487', '20.319700', '-740.209778', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295712', 4295712, '369.140015', '21.089970', '-736.832886', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56462, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295715', 4295715, '363.363007', '-1.968445', '-698.451172', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56190, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295716', 4295716, '557.910828', '-5.547063', '-643.875671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55918, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295717', 4295717, '557.692322', '16.908760', '-525.262085', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55646, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295718', 4295718, '576.089783', '12.066130', '-514.577271', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55374, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295719', 4295719, '594.596985', '7.711907', '-478.120911', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295720', 4295720, '616.268982', '8.446064', '-482.073486', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295726', 4295726, '356.740601', '-6.149414', '-463.218109', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295727', 4295727, '365.071991', '-14.602910', '-430.808014', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54298, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295728', 4295728, '350.667511', '-17.288509', '-404.379303', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295734', 4295734, '413.196686', '-20.564011', '-317.744904', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295735', 4295735, '387.892609', '-18.073410', '-346.505707', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53476, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295736', 4295736, '450.900513', '-17.914270', '-353.105286', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295737', 4295737, '481.724091', '-12.428540', '-382.045105', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295738', 4295738, '511.909393', '-9.373532', '-382.464996', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52660, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295739', 4295739, '522.073730', '0.990242', '-453.501709', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295747', 4295747, '588.058716', '-2.946974', '-271.337891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295749', 4295749, '568.700012', '-2.429443', '-330.453400', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295751', 4295751, '582.843079', '-3.006616', '-272.419891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295755', 4295755, '214.220200', '-22.109159', '-425.877502', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51324, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295757', 4295757, '208.472198', '-22.096960', '-422.660797', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295759', 4295759, '162.350601', '-27.989771', '-429.755402', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295760', 4295760, '152.123001', '-27.048130', '-440.418915', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295761', 4295761, '177.396194', '-25.049320', '-444.224487', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295762', 4295762, '267.297211', '-21.872410', '-406.569397', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295763', 4295763, '306.843597', '-26.993231', '-409.628510', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295764', 4295764, '304.550415', '-25.764360', '-424.008301', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295769', 4295769, '306.531403', '-6.106912', '-519.224976', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49130, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295770', 4295770, '282.576813', '-0.225863', '-572.515686', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48852, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295771', 4295771, '310.969513', '6.158492', '-563.194397', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48592, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295809', 4295809, '156.994202', '14.383940', '-592.509216', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48290, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295811', 4295811, '223.296295', '19.340050', '-610.880798', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48018, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295812', 4295812, '201.983597', '-0.198364', '-555.107971', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295813', 4295813, '341.647797', '-7.563892', '-456.047089', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295816', 4295816, '408.980713', '-16.354401', '-360.560699', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295818', 4295818, '509.696991', '-9.567444', '-375.661896', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295820', 4295820, '496.853485', '0.344957', '-504.120392', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295823', 4295823, '601.499573', '8.072348', '-517.726685', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295825', 4295825, '570.526428', '-2.482952', '-625.752014', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295827', 4295827, '556.342102', '-7.876167', '-657.103516', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295829', 4295829, '554.863770', '-9.262268', '-749.843628', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295831', 4295831, '503.838013', '-2.956629', '-777.365173', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295834', 4295834, '482.706696', '1.341902', '-807.133728', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295835', 4295835, '486.772400', '5.215003', '-836.320984', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295836', 4295836, '471.659790', '3.490144', '-819.978882', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295837', 4295837, '484.345886', '5.375706', '-837.509583', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295840', 4295840, '412.710693', '-9.353821', '-747.005371', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295844', 4295844, '384.603485', '-4.196289', '-690.486023', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295846', 4295846, '332.112701', '4.562378', '-690.424988', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43394, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295850', 4295850, '316.341492', '26.032160', '-728.249573', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43122, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295851', 4295851, '297.774597', '15.475720', '-651.450989', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295855', 4295855, '598.748718', '-3.250244', '-301.930298', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295858', 4295858, '591.221985', '-1.360156', '-323.232788', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295862', 4295862, '-314.692108', '-15.474820', '-327.581299', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295866', 4295866, '-272.613800', '-8.061660', '-332.045013', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295867', 4295867, '-217.273193', '-1.571716', '-276.691895', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295870', 4295870, '-229.022598', '14.450200', '-236.072403', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295871', 4295871, '-188.372696', '33.340939', '-195.666504', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295884', 4295884, '-562.005005', '-2.945007', '-452.323212', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40722, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295886', 4295886, '-554.466980', '-3.768982', '-380.758392', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40456, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295887', 4295887, '-568.932678', '-2.945007', '-424.124603', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40190, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4295889', 4295889, '-543.789124', '-3.866000', '-411.311401', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296050', 4296050, '-471.824188', '-6.332520', '-433.737701', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39640, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296052', 4296052, '-484.855499', '-6.027344', '-447.898102', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39368, 1, 0, 0, 0, 0, 30076, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(335, 'l1f1_event', 'bnpc4296053', 4296053, '-445.975494', '-12.710820', '-466.361511', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32130, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296054', 4296054, '-473.746887', '-4.409851', '-480.766113', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32432, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296055', 4296055, '-471.580109', '-6.668213', '-449.912292', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39102, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296056', 4296056, '-453.727112', '-10.818660', '-442.862610', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38842, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296060', 4296060, '-455.741211', '-7.492188', '-484.428192', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38552, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296081', 4296081, '-603.967285', '-3.891113', '-368.337494', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38298, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296082', 4296082, '-640.680481', '-3.891113', '-370.046600', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38032, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296091', 4296091, '-592.797729', '-2.945007', '-432.211792', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37736, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296093', 4296093, '-635.341492', '-2.933044', '-396.278687', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37464, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296094', 4296094, '-548.271912', '-1.937927', '-310.963593', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37204, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296096', 4296096, '-498.711395', '-3.960067', '-255.747696', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36932, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296098', 4296098, '-558.028809', '-3.683542', '-364.324585', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36648, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296100', 4296100, '-489.250092', '-3.708008', '-282.124115', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36376, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296103', 4296103, '-446.294891', '-4.000447', '-219.651199', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36104, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296105', 4296105, '-437.867004', '-2.581742', '-273.708099', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35832, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296108', 4296108, '-527.244995', '-2.670410', '-288.624512', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35554, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296110', 4296110, '-560.845276', '-2.975586', '-327.595886', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35294, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296111', 4296111, '-547.325928', '-1.754883', '-291.645691', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35016, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296113', 4296113, '-527.817322', '-3.767937', '-323.068909', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296115', 4296115, '-543.791321', '-3.216822', '-330.542389', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34496, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296118', 4296118, '-473.824707', '-3.767937', '-273.987488', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34224, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296119', 4296119, '-488.912994', '-3.958386', '-246.223602', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33946, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296120', 4296120, '-461.660309', '-3.996136', '-252.041306', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33650, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296121', 4296121, '-428.786102', '-3.945695', '-301.904114', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296122', 4296122, '-429.702698', '-3.990123', '-245.654495', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33118, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4296344', 4296344, '-618.398071', '-3.216822', '-419.669586', 201, 0, 0, 0, 5, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32692, 1, 0, 0, 0, 0, 0, 4296333, 0, 0), +(335, 'l1f1_event', 'bnpc4331545', 4331545, '-431.193512', '-15.291800', '-426.211914', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31858, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4331546', 4331546, '-472.129791', '-5.294910', '-466.746185', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31586, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4331549', 4331549, '-455.329895', '-10.797180', '-446.420288', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4331550', 4331550, '-470.522400', '-4.822834', '-501.822296', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31072, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(335, 'l1f1_event', 'bnpc4621627', 4621627, '459.067596', '6.191762', '-845.122498', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22746, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4391945', 4391945, '-8.184062', '0.068419', '-3.643234', 434, 0, 0, 0, 0, 6, 0, 0, 2137, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35672, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4391946', 4391946, '0.000000', '-0.130726', '-9.630427', 2319, 0, 0, 0, 0, 6, 0, 0, 2137, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35406, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4391947', 4391947, '-6.297779', '-0.062501', '2.265377', 2320, 0, 0, 0, 0, 6, 0, 0, 2139, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35140, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4391948', 4391948, '-0.874792', '-0.090699', '1.347854', 2321, 0, 0, 0, 0, 6, 0, 0, 2140, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34874, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4391949', 4391949, '6.249414', '0.068419', '2.908603', 2322, 0, 0, 0, 0, 6, 0, 0, 2141, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34608, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4391950', 4391950, '-3.868140', '0.068419', '-3.146975', 2323, 0, 0, 0, 0, 6, 0, 0, 2138, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34342, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4391951', 4391951, '-0.051858', '0.068420', '-2.855260', 2324, 0, 0, 0, 0, 6, 0, 0, 2324, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34076, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4391952', 4391952, '3.520819', '0.068419', '-2.759409', 2325, 0, 0, 0, 0, 6, 0, 0, 2142, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33810, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4391953', 4391953, '6.664665', '0.068419', '-2.725165', 2326, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33544, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4392988', 4392988, '9.613314', '0.068419', '-3.643234', 434, 0, 0, 0, 0, 6, 0, 0, 510, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32912, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4488654', 4488654, '4.998253', '0.068419', '5.179171', 2286, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32694, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4553221', 4553221, '-8.184100', '0.068400', '-3.643200', 434, 0, 0, 0, 0, 6, 0, 0, 2137, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32252, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4553222', 4553222, '0.000000', '-0.130700', '-9.630400', 2669, 0, 0, 0, 0, 6, 0, 0, 2137, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31496, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4553223', 4553223, '-6.297800', '-0.062500', '2.265400', 2670, 0, 0, 0, 0, 6, 0, 0, 2139, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31230, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4553224', 4553224, '-0.874800', '-0.090700', '1.347900', 2671, 0, 0, 0, 0, 6, 0, 0, 2140, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30964, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4553225', 4553225, '6.249400', '0.068400', '2.908600', 2672, 0, 0, 0, 0, 6, 0, 0, 2141, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30698, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4553226', 4553226, '-3.868100', '0.068400', '-3.147000', 2673, 0, 0, 0, 0, 6, 0, 0, 2138, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29634, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4553227', 4553227, '-0.051900', '0.068400', '-2.855300', 2674, 0, 0, 0, 0, 6, 0, 0, 2324, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29900, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4553228', 4553228, '3.520800', '0.068400', '-2.759400', 2675, 0, 0, 0, 0, 6, 0, 0, 2142, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30432, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4553229', 4553229, '6.664700', '0.068400', '-2.725200', 2676, 0, 0, 0, 0, 6, 0, 0, 1803, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30166, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4553231', 4553231, '9.613300', '0.068400', '-3.643200', 434, 0, 0, 0, 0, 6, 0, 0, 510, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31980, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(348, 'w1fb', 'bnpc4553232', 4553232, '4.998300', '0.068400', '5.179200', 2286, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31762, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4497410', 4497410, '75.456253', '-12.000000', '-90.976273', 2375, 0, 0, 0, 0, 6, 0, 0, 2282, 0, '0.000000', 50, 0, 120, 1, 0, 50, 0, 30, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38974, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4497412', 4497412, '77.674072', '-12.000000', '-81.075104', 2376, 0, 0, 0, 0, 6, 0, 0, 2283, 0, '0.000000', 50, 0, 120, 1, 0, 50, 0, 30, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38442, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4497414', 4497414, '78.469978', '-12.000000', '-79.099220', 2376, 0, 0, 0, 0, 6, 0, 0, 2283, 0, '0.000000', 50, 0, 120, 1, 0, 50, 0, 30, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38170, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4497416', 4497416, '80.877663', '-12.000020', '-79.191544', 2376, 0, 0, 0, 0, 6, 0, 0, 2283, 0, '0.000000', 50, 0, 120, 1, 0, 50, 0, 30, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37898, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4497424', 4497424, '86.264359', '-12.000060', '-78.639587', 2377, 0, 0, 0, 0, 6, 0, 0, 2283, 0, '0.000000', 50, 0, 120, 1, 0, 51, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37632, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4497425', 4497425, '87.848984', '-12.000060', '-77.356560', 2377, 0, 0, 0, 0, 6, 0, 0, 2283, 0, '0.000000', 50, 0, 120, 1, 0, 51, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37360, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4497427', 4497427, '89.791550', '-12.000060', '-78.619003', 2377, 0, 0, 0, 0, 6, 0, 0, 2283, 0, '0.000000', 50, 0, 120, 1, 0, 51, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37088, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4497429', 4497429, '76.046341', '-12.000020', '-51.161289', 2378, 0, 0, 0, 0, 6, 0, 0, 2283, 0, '0.000000', 50, 0, 120, 1, 0, 52, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36822, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4497430', 4497430, '74.126266', '-12.000010', '-50.706329', 2378, 0, 0, 0, 0, 6, 0, 0, 2283, 0, '0.000000', 50, 0, 120, 1, 0, 52, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36550, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4497431', 4497431, '73.327408', '-12.000000', '-48.522099', 2378, 0, 0, 0, 0, 6, 0, 0, 2283, 0, '0.000000', 50, 0, 120, 1, 0, 52, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 36278, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4497437', 4497437, '68.181023', '-12.083000', '-48.288368', 2379, 0, 0, 0, 2, 6, 0, 0, 983, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38708, 1, 0, 2000, 0, 0, 0, 4511400, 0, 0), +(349, 'w1d6', 'bnpc4498668', 4498668, '27.631769', '-37.904789', '111.818398', 2381, 0, 0, 0, 0, 6, 0, 0, 2285, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25612, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4498669', 4498669, '34.918091', '-37.992668', '109.431602', 2383, 0, 0, 0, 0, 6, 0, 0, 1303, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33586, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4498670', 4498670, '31.363310', '-37.873081', '109.778702', 2384, 0, 0, 0, 0, 6, 0, 0, 2287, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33320, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4498671', 4498671, '28.492800', '-37.907940', '110.375702', 2385, 0, 0, 0, 0, 6, 0, 0, 2288, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33054, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4498690', 4498690, '37.561741', '-38.056808', '109.926102', 2683, 0, 0, 0, 3, 6, 0, 0, 2295, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24594, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4505649', 4505649, '-56.339161', '-3.189148', '-192.830704', 2433, 0, 0, 0, 0, 6, 0, 0, 2286, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67812, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4505654', 4505654, '-67.548737', '-1.137708', '-189.003403', 2389, 0, 0, 0, 3, 6, 0, 0, 2281, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67546, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4505659', 4505659, '-70.312401', '-0.076549', '-196.404007', 2389, 0, 0, 0, 3, 6, 0, 0, 2281, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67274, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4505663', 4505663, '-57.175598', '0.045776', '-208.545105', 2389, 0, 0, 0, 3, 6, 0, 0, 2281, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67002, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4505665', 4505665, '-42.526981', '-1.419189', '-203.296005', 2389, 0, 0, 0, 3, 6, 0, 0, 2281, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 66730, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4505667', 4505667, '-42.907860', '-1.487516', '-191.569794', 2389, 0, 0, 0, 3, 6, 0, 0, 2281, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 66458, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4505669', 4505669, '9.231689', '-5.539063', '-207.446396', 2389, 0, 0, 0, 3, 6, 0, 0, 2281, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 66186, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4505671', 4505671, '11.699440', '-4.281213', '-194.873001', 2389, 0, 0, 0, 3, 6, 0, 0, 2281, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 65914, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4505672', 4505672, '9.202485', '-5.524918', '-185.489304', 2389, 0, 0, 0, 3, 6, 0, 0, 2281, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 65642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4505694', 4505694, '58.458569', '-9.873078', '-21.461990', 2433, 0, 0, 0, 0, 6, 0, 0, 2286, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 65364, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4505727', 4505727, '-54.041340', '-6.579142', '-157.456207', 2345, 0, 0, 0, 6, 6, 0, 0, 2281, 0, '0.000000', 50, 2, 120, 1, 0, 15, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 65104, 1, 0, 130, 0, 0, 30246, 4505357, 0, 0), +(349, 'w1d6', 'bnpc4505729', 4505729, '-15.287730', '-6.958161', '-218.821503', 2345, 0, 0, 0, 9, 6, 0, 0, 2281, 0, '0.000000', 50, 2, 120, 1, 0, 16, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 64832, 1, 0, 159, 0, 0, 30246, 4505387, 0, 0), +(349, 'w1d6', 'bnpc4505730', 4505730, '-42.319801', '-6.209507', '-220.681702', 2345, 0, 0, 0, 9, 6, 0, 0, 2281, 0, '0.000000', 50, 2, 120, 1, 0, 17, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 64560, 1, 0, 132, 0, 0, 30246, 4505404, 0, 0), +(349, 'w1d6', 'bnpc4505731', 4505731, '-3.135466', '-6.973389', '-219.165298', 2345, 0, 0, 0, 9, 6, 0, 0, 2281, 0, '0.000000', 50, 2, 120, 1, 0, 18, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 64288, 1, 0, 172, 0, 0, 30246, 4505444, 0, 0), +(349, 'w1d6', 'bnpc4505732', 4505732, '-6.240967', '-8.957031', '-155.077499', 2345, 0, 0, 0, 6, 6, 0, 0, 2281, 0, '0.000000', 50, 2, 120, 1, 0, 19, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 64016, 1, 0, 162, 0, 0, 30246, 4505467, 0, 0), +(349, 'w1d6', 'bnpc4505776', 4505776, '-48.889820', '-1.663811', '-203.957397', 2431, 0, 0, 0, 0, 6, 0, 0, 2293, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 63750, 1, 0, 0, 4498400, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4505779', 4505779, '25.559690', '-7.756702', '-140.696594', 2431, 0, 0, 0, 0, 6, 0, 0, 2293, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 63478, 1, 0, 0, 4498416, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4505781', 4505781, '-11.599820', '-5.923680', '-219.030197', 2430, 0, 0, 0, 0, 6, 0, 0, 2293, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 63212, 1, 0, 0, 4498406, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4505784', 4505784, '17.421801', '-5.856862', '-207.760300', 2430, 0, 0, 0, 0, 6, 0, 0, 2293, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 62940, 1, 0, 0, 4498409, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4505785', 4505785, '17.295380', '-5.909341', '-184.254807', 2430, 0, 0, 0, 0, 6, 0, 0, 2293, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 62668, 1, 0, 0, 4498410, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4505902', 4505902, '-202.441498', '22.842710', '-208.392502', 2335, 0, 0, 0, 2, 6, 0, 0, 2271, 0, '22.000000', 50, 2, 120, 1, 0, 11, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 60080, 1, 3, 90, 0, 0, 0, 4588780, 357, 0), +(349, 'w1d6', 'bnpc4506613', 4506613, '59.311771', '-37.186279', '55.771729', 2432, 0, 0, 0, 0, 6, 0, 0, 2293, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58618, 1, 0, 0, 4498451, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4506621', 4506621, '44.616081', '-38.654018', '37.841042', 2337, 0, 0, 0, 6, 4, 0, 0, 2273, 0, '1.200000', 50, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58352, 1, 0, 2000, 0, 0, 0, 4590160, 356, 0), +(349, 'w1d6', 'bnpc4506622', 4506622, '76.469597', '-39.436729', '41.361210', 2336, 0, 0, 0, 9, 4, 0, 0, 2272, 0, '1.200000', 50, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58086, 1, 0, 2000, 0, 0, 0, 4590159, 358, 0), +(349, 'w1d6', 'bnpc4506629', 4506629, '55.954830', '-38.681641', '53.299679', 2344, 0, 0, 0, 1, 6, 0, 0, 2280, 0, '2.000000', 50, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57820, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4506632', 4506632, '56.106499', '-38.885620', '23.776850', 2426, 0, 0, 0, 0, 6, 0, 0, 2291, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57554, 1, 0, 2000, 0, 0, 30068, 0, 53, 0), +(349, 'w1d6', 'bnpc4506633', 4506633, '54.865459', '-39.631161', '18.997660', 2427, 0, 0, 0, 0, 6, 0, 0, 2292, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57288, 1, 0, 2000, 0, 0, 30077, 0, 54, 0), +(349, 'w1d6', 'bnpc4506634', 4506634, '54.126961', '-39.282101', '21.669979', 2428, 0, 0, 0, 0, 6, 0, 0, 2292, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57022, 1, 0, 2000, 0, 0, 30073, 0, 54, 0), +(349, 'w1d6', 'bnpc4506635', 4506635, '53.179428', '-39.156952', '21.412840', 2429, 0, 0, 0, 0, 6, 0, 0, 2292, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56756, 1, 0, 2000, 0, 0, 30323, 0, 54, 0), +(349, 'w1d6', 'bnpc4506664', 4506664, '-91.996643', '-43.381409', '94.224487', 2335, 0, 0, 0, 5, 6, 0, 0, 2271, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52980, 1, 3, 2000, 0, 0, 0, 4578906, 357, 0), +(349, 'w1d6', 'bnpc4506667', 4506667, '-83.085388', '-39.414059', '101.609703', 2332, 0, 0, 0, 0, 6, 0, 0, 2268, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52690, 1, 3, 2000, 0, 0, 0, 0, 355, 0), +(349, 'w1d6', 'bnpc4507086', 4507086, '-99.321037', '-58.121639', '4.440308', 2386, 0, 0, 0, 0, 6, 0, 0, 2289, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 51378, 1, 2, 2000, 0, 0, 0, 0, 756, 0), +(349, 'w1d6', 'bnpc4507181', 4507181, '69.914978', '-12.000000', '-48.314529', 2380, 0, 0, 0, 0, 6, 0, 0, 2284, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36012, 1, 0, 2000, 0, 0, 0, 0, 357, 0), +(349, 'w1d6', 'bnpc4507182', 4507182, '68.611847', '-12.000000', '-47.949921', 2380, 0, 0, 0, 0, 6, 0, 0, 2284, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35740, 1, 0, 2000, 0, 0, 0, 0, 357, 0), +(349, 'w1d6', 'bnpc4507199', 4507199, '27.617689', '-37.901131', '111.603401', 2382, 0, 0, 0, 0, 6, 0, 0, 2286, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25346, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4508145', 4508145, '-100.663101', '-58.225430', '7.240038', 2388, 0, 0, 0, 0, 6, 0, 0, 2290, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 50968, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4508154', 4508154, '-101.161003', '-57.626671', '-3.826762', 2387, 0, 0, 0, 0, 6, 0, 0, 2290, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 50702, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4508187', 4508187, '-98.809547', '-57.743389', '5.382940', 434, 0, 0, 0, 3, 6, 0, 0, 2294, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 48152, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4514480', 4514480, '70.663986', '-12.000000', '-48.419971', 2380, 0, 0, 0, 0, 6, 0, 0, 2284, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34956, 1, 0, 2000, 0, 0, 0, 0, 357, 0), +(349, 'w1d6', 'bnpc4517707', 4517707, '-214.030502', '23.872240', '-212.201401', 2339, 0, 0, 0, 1, 6, 0, 0, 2275, 0, '0.000000', 50, 2, 120, 1, 0, 11, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 62402, 1, 3, 80, 0, 0, 30246, 0, 0, 0), +(349, 'w1d6', 'bnpc4517944', 4517944, '-214.557098', '23.178410', '-204.730301', 2339, 0, 0, 0, 1, 6, 0, 0, 2275, 0, '0.000000', 50, 2, 120, 1, 0, 11, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 62130, 1, 3, 80, 0, 0, 30246, 0, 0, 0), +(349, 'w1d6', 'bnpc4518074', 4518074, '-104.936302', '-3.654281', '-174.517502', 2333, 0, 0, 0, 5, 0, 0, 0, 2269, 0, '0.000000', 50, 2, 120, 1, 0, 12, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 60346, 1, 3, 26, 0, 0, 0, 4517945, 355, 0), +(349, 'w1d6', 'bnpc4518075', 4518075, '-144.648300', '-9.266429', '-206.555801', 2338, 0, 0, 0, 1, 6, 0, 0, 2274, 0, '0.000000', 50, 2, 120, 1, 0, 12, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 61688, 1, 3, 30, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4518077', 4518077, '-144.914307', '-7.564291', '-202.435898', 2338, 0, 0, 0, 1, 6, 0, 0, 2274, 0, '0.000000', 50, 2, 120, 1, 0, 12, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 61416, 1, 3, 30, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4518207', 4518207, '-71.963097', '-5.783203', '-167.905304', 2339, 0, 0, 0, 1, 6, 0, 0, 2275, 0, '0.000000', 50, 2, 120, 1, 0, 13, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 59778, 1, 3, 109, 0, 0, 30246, 0, 0, 0), +(349, 'w1d6', 'bnpc4518208', 4518208, '-69.992371', '-5.996826', '-165.148407', 2339, 0, 0, 0, 1, 6, 0, 0, 2275, 0, '0.000000', 50, 2, 120, 1, 0, 13, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 58962, 1, 3, 112, 0, 0, 30246, 0, 0, 0), +(349, 'w1d6', 'bnpc4518209', 4518209, '-75.019432', '-5.996826', '-165.116806', 2339, 0, 0, 0, 1, 6, 0, 0, 2275, 0, '0.000000', 50, 2, 120, 1, 0, 13, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 59234, 1, 3, 108, 0, 0, 30246, 0, 0, 0), +(349, 'w1d6', 'bnpc4518210', 4518210, '-13.656920', '-6.820801', '-218.951706', 2334, 0, 0, 0, 0, 6, 0, 0, 2270, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60612, 1, 3, 161, 0, 0, 0, 0, 357, 0), +(349, 'w1d6', 'bnpc4518378', 4518378, '15.579410', '-9.903137', '-146.562897', 2332, 0, 0, 0, 1, 6, 0, 0, 2268, 0, '0.000000', 50, 2, 120, 1, 0, 14, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 61150, 1, 3, 148, 0, 0, 0, 0, 355, 0), +(349, 'w1d6', 'bnpc4518379', 4518379, '13.778870', '-9.597961', '-137.163406', 2334, 0, 0, 0, 1, 6, 0, 0, 2270, 0, '0.000000', 50, 2, 120, 1, 0, 14, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 59524, 1, 3, 140, 0, 0, 0, 0, 357, 0), +(349, 'w1d6', 'bnpc4518380', 4518380, '7.659675', '-10.086240', '-144.095795', 2338, 0, 0, 0, 1, 6, 0, 0, 2274, 0, '0.000000', 50, 2, 120, 1, 0, 14, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 60872, 1, 3, 148, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4518393', 4518393, '-55.710751', '-40.268620', '115.464996', 2340, 0, 0, 0, 1, 6, 0, 0, 2276, 0, '0.000000', 50, 2, 120, 1, 0, 31, 0, 30, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 55898, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(349, 'w1d6', 'bnpc4518402', 4518402, '-49.118839', '-39.566650', '111.436600', 2340, 0, 0, 0, 1, 6, 0, 0, 2276, 0, '0.000000', 50, 2, 120, 1, 0, 31, 0, 30, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 56170, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(349, 'w1d6', 'bnpc4518422', 4518422, '-41.912491', '-41.700001', '159.840103', 2343, 0, 0, 0, 1, 6, 0, 0, 2279, 0, '0.000000', 50, 2, 120, 1, 0, 32, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 55632, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(349, 'w1d6', 'bnpc4518423', 4518423, '-48.120998', '-41.700001', '157.726700', 2341, 0, 0, 0, 1, 6, 0, 0, 2277, 0, '0.000000', 50, 2, 120, 1, 0, 32, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 55366, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4518661', 4518661, '-43.625889', '-41.700001', '166.806900', 2341, 0, 0, 0, 1, 6, 0, 0, 2277, 0, '0.000000', 50, 2, 120, 1, 0, 32, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 55094, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4518768', 4518768, '-59.680389', '-41.700001', '139.470093', 2343, 0, 0, 0, 1, 6, 0, 0, 2279, 0, '0.000000', 50, 2, 120, 1, 0, 33, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 54816, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(349, 'w1d6', 'bnpc4518837', 4518837, '-50.477322', '-40.310440', '137.085007', 2341, 0, 0, 0, 1, 6, 0, 0, 2277, 0, '0.000000', 50, 2, 120, 1, 0, 33, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 54550, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4519015', 4519015, '-80.259941', '-38.451229', '108.221199', 2333, 0, 0, 0, 5, 6, 0, 0, 2269, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54062, 1, 3, 2000, 0, 0, 0, 4518974, 355, 0), +(349, 'w1d6', 'bnpc4519092', 4519092, '-92.581177', '-38.158821', '115.059601', 2342, 0, 0, 0, 1, 6, 0, 0, 2278, 0, '0.000000', 50, 0, 120, 1, 0, 34, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53868, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4519093', 4519093, '-89.072853', '-37.726879', '116.914803', 2342, 0, 0, 0, 1, 6, 0, 0, 2278, 0, '0.000000', 50, 0, 120, 1, 0, 34, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53596, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4519095', 4519095, '-92.380951', '-37.458771', '117.918404', 2342, 0, 0, 0, 1, 6, 0, 0, 2278, 0, '0.000000', 50, 0, 120, 1, 0, 34, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53324, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4522548', 4522548, '-54.734192', '-39.658199', '107.835403', 2334, 0, 0, 0, 1, 6, 0, 0, 2270, 0, '0.000000', 50, 2, 120, 1, 0, 31, 0, 30, 4, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52424, 1, 3, 2000, 0, 0, 0, 0, 357, 0), +(349, 'w1d6', 'bnpc4527477', 4527477, '40.318958', '-37.301571', '114.179398', 2661, 0, 0, 0, 3, 6, 0, 0, 2374, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24860, 1, 0, 0, 4500271, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4536274', 4536274, '-98.509537', '-57.747742', '5.682940', 434, 0, 0, 0, 3, 6, 0, 0, 2294, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47880, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4536279', 4536279, '-98.209541', '-57.751759', '5.982940', 434, 0, 0, 0, 3, 6, 0, 0, 2294, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47608, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4536280', 4536280, '-97.909538', '-57.755779', '6.282940', 434, 0, 0, 0, 3, 6, 0, 0, 2294, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47336, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4536281', 4536281, '-97.609543', '-57.759789', '6.582941', 434, 0, 0, 0, 3, 6, 0, 0, 2294, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47064, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4536282', 4536282, '-97.309532', '-57.763809', '6.882941', 434, 0, 0, 0, 3, 6, 0, 0, 2294, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 46792, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4536359', 4536359, '-98.509537', '-57.747742', '5.682940', 434, 0, 0, 0, 3, 6, 0, 0, 2294, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 46520, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4536360', 4536360, '-98.209534', '-57.751759', '5.982940', 434, 0, 0, 0, 3, 6, 0, 0, 2294, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 46248, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4536361', 4536361, '-97.909538', '-57.755779', '6.282940', 434, 0, 0, 0, 3, 6, 0, 0, 2294, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45976, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4536364', 4536364, '-97.609543', '-57.759800', '6.582940', 434, 0, 0, 0, 3, 6, 0, 0, 2294, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45704, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4536365', 4536365, '-97.309540', '-57.763809', '6.882941', 434, 0, 0, 0, 3, 6, 0, 0, 2294, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45432, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4536366', 4536366, '-97.009529', '-57.767830', '7.182941', 434, 0, 0, 0, 3, 6, 0, 0, 2294, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45160, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4549506', 4549506, '-100.631798', '-58.232849', '7.474482', 2388, 0, 0, 0, 0, 6, 0, 0, 2290, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44876, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4573680', 4573680, '-92.952148', '-59.298222', '41.637699', 2677, 0, 0, 0, 0, 6, 0, 0, 2291, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14220, 1, 0, 0, 0, 0, 30064, 0, 53, 0), +(349, 'w1d6', 'bnpc4573681', 4573681, '-90.255127', '-59.218460', '42.659752', 2678, 0, 0, 0, 0, 6, 0, 0, 2292, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13954, 1, 0, 0, 0, 0, 30066, 0, 54, 0), +(349, 'w1d6', 'bnpc4573682', 4573682, '-93.334412', '-59.037239', '44.770161', 2679, 0, 0, 0, 0, 6, 0, 0, 2292, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13688, 1, 0, 0, 0, 0, 30067, 0, 54, 0), +(349, 'w1d6', 'bnpc4573683', 4573683, '-90.738937', '-58.910801', '45.536968', 2680, 0, 0, 0, 0, 6, 0, 0, 2292, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13422, 1, 0, 0, 0, 0, 30323, 0, 54, 0), +(349, 'w1d6', 'bnpc4577552', 4577552, '-99.443047', '-58.152222', '6.729187', 2681, 0, 0, 0, 0, 6, 0, 0, 2290, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42054, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(349, 'w1d6', 'bnpc4577644', 4577644, '-123.216698', '-57.694401', '35.538212', 2682, 0, 0, 0, 0, 6, 0, 0, 2273, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41788, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4498540', 4498540, '10.895120', '17.000000', '0.554853', 2412, 0, 0, 0, 0, 6, 0, 0, 426, 0, '0.000000', 50, 0, 120, 1, 0, 15, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49812, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4498541', 4498541, '9.995219', '17.000000', '-3.035847', 2413, 0, 0, 0, 0, 6, 0, 0, 2340, 0, '0.000000', 50, 0, 120, 1, 0, 15, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49546, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4498544', 4498544, '10.685510', '16.983280', '4.413328', 2413, 0, 0, 0, 0, 6, 0, 0, 2340, 0, '0.000000', 50, 0, 120, 1, 0, 15, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49274, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4498545', 4498545, '8.769233', '17.000000', '2.298658', 2413, 0, 0, 0, 0, 6, 0, 0, 2340, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49002, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4498546', 4498546, '10.696530', '16.983280', '4.409851', 2413, 0, 0, 0, 0, 6, 0, 0, 2340, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 48730, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4498548', 4498548, '-10.848270', '16.999990', '18.350451', 2413, 0, 0, 0, 0, 6, 0, 0, 2340, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 48458, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4498549', 4498549, '-13.598170', '16.999990', '17.142139', 2413, 0, 0, 0, 0, 6, 0, 0, 2340, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 48186, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4498551', 4498551, '5.106156', '17.000000', '-11.328230', 2413, 0, 0, 0, 0, 6, 0, 0, 2340, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47914, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4498552', 4498552, '2.356262', '17.000000', '-12.536540', 2413, 0, 0, 0, 0, 6, 0, 0, 2340, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47642, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4498566', 4498566, '-2.596015', '17.000000', '-0.076942', 2414, 0, 0, 0, 0, 6, 0, 0, 427, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 46616, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4504687', 4504687, '44.235840', '16.983280', '-64.407951', 2665, 0, 0, 0, 0, 6, 0, 0, 2334, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 62034, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4504781', 4504781, '41.794430', '16.983280', '-62.302170', 2425, 0, 0, 0, 0, 6, 0, 0, 2349, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67160, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4504865', 4504865, '41.733398', '16.983280', '-62.180099', 2365, 0, 0, 0, 1, 6, 0, 0, 2371, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 66894, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4504889', 4504889, '8.926453', '16.983280', '0.595032', 2286, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45826, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4504958', 4504958, '14.669340', '16.983280', '-55.752918', 2364, 0, 0, 0, 0, 6, 0, 0, 2370, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 66628, 1, 3, 22, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4504959', 4504959, '18.309010', '16.983299', '-55.752899', 2364, 0, 0, 0, 0, 6, 0, 0, 2370, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 66356, 1, 3, 22, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4504960', 4504960, '14.671940', '16.983299', '-98.483101', 2364, 0, 0, 0, 0, 6, 0, 0, 2370, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 66084, 1, 3, 22, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4504961', 4504961, '18.102350', '16.983280', '-98.483109', 2364, 0, 0, 0, 0, 6, 0, 0, 2370, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 65812, 1, 3, 22, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4504962', 4504962, '-16.586599', '17.441000', '-94.649567', 2364, 0, 0, 0, 0, 6, 0, 0, 2370, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 65540, 1, 3, 22, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4504963', 4504963, '-16.586611', '17.440981', '-99.221939', 2364, 0, 0, 0, 0, 6, 0, 0, 2370, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 65268, 1, 3, 22, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4504964', 4504964, '16.562241', '17.000000', '-60.350040', 2425, 0, 0, 0, 1, 6, 0, 0, 2349, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 63352, 1, 3, 13, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4504965', 4504965, '15.748090', '16.983280', '-94.005676', 2424, 0, 0, 0, 1, 6, 0, 0, 2348, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 65002, 1, 3, 13, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4504968', 4504968, '-13.939250', '17.288389', '-96.036003', 2425, 0, 0, 0, 1, 6, 0, 0, 2349, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 64712, 1, 3, 13, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4504976', 4504976, '16.525450', '17.000000', '-60.044312', 2365, 0, 0, 0, 1, 6, 0, 0, 2371, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 64446, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4504978', 4504978, '15.622230', '17.000000', '-94.308144', 2365, 0, 0, 0, 1, 6, 0, 0, 2371, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 64174, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4504981', 4504981, '-14.464930', '16.983280', '-96.384171', 2366, 0, 0, 0, 1, 6, 0, 0, 2371, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 63920, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4504982', 4504982, '-30.623350', '16.983280', '-5.935791', 2369, 0, 0, 0, 0, 6, 0, 0, 2335, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 50, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 63654, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4505862', 4505862, '-12.156540', '0.000000', '-0.056069', 2415, 0, 0, 0, 0, 6, 0, 0, 2341, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44944, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4505865', 4505865, '-7.082181', '0.000000', '2.833405', 434, 0, 0, 0, 0, 6, 0, 0, 2345, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32822, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4505866', 4505866, '-6.010222', '0.000000', '-6.815221', 2416, 0, 0, 0, 0, 6, 0, 0, 2342, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44678, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4505869', 4505869, '-1.494994', '0.000000', '-13.813630', 2423, 0, 0, 0, 1, 6, 0, 0, 2347, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44412, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4505870', 4505870, '20.127529', '0.000000', '-0.031287', 2423, 0, 0, 0, 1, 6, 0, 0, 2347, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 44140, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4505871', 4505871, '-1.660240', '0.000000', '13.393670', 2423, 0, 0, 0, 1, 6, 0, 0, 2347, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43868, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4505872', 4505872, '-19.397829', '0.000000', '0.043887', 2423, 0, 0, 0, 0, 6, 0, 0, 2347, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43596, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4507226', 4507226, '-29.661501', '0.000000', '-70.463249', 434, 0, 0, 0, 0, 6, 0, 0, 148, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4507227', 4507227, '-17.135530', '0.000000', '-84.066299', 434, 0, 0, 0, 0, 6, 0, 0, 148, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4507369', 4507369, '37.568119', '-0.015320', '-74.089737', 2374, 0, 0, 0, 5, 6, 0, 0, 2339, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59476, 1, 3, 2000, 0, 0, 0, 4507409, 0, 0), +(350, 'f1d4', 'bnpc4507370', 4507370, '-15.640560', '-0.015320', '-60.404251', 2365, 0, 0, 0, 5, 6, 0, 0, 2371, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59162, 1, 3, 2000, 0, 0, 0, 4581913, 0, 0), +(350, 'f1d4', 'bnpc4507371', 4507371, '-16.798330', '-0.015320', '-65.901688', 2365, 0, 0, 0, 5, 6, 0, 0, 2371, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58890, 1, 3, 2000, 0, 0, 0, 4581918, 0, 0), +(350, 'f1d4', 'bnpc4507372', 4507372, '-18.326111', '-0.015320', '-62.811890', 2365, 0, 0, 0, 5, 6, 0, 0, 2371, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58618, 1, 3, 2000, 0, 0, 0, 4581919, 0, 0), +(350, 'f1d4', 'bnpc4507374', 4507374, '17.624149', '-0.015320', '-90.642174', 2366, 0, 0, 0, 5, 6, 0, 0, 2371, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58364, 1, 3, 2000, 0, 0, 0, 4581925, 0, 0), +(350, 'f1d4', 'bnpc4507375', 4507375, '15.396300', '-0.015320', '-96.227013', 2366, 0, 0, 0, 5, 6, 0, 0, 2371, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58092, 1, 3, 2000, 0, 0, 0, 4581927, 0, 0), +(350, 'f1d4', 'bnpc4507385', 4507385, '62.791550', '-0.015320', '-31.631960', 2370, 0, 0, 0, 0, 6, 0, 0, 428, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57856, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4508134', 4508134, '-30.922649', '-18.814390', '1.711815', 2370, 0, 0, 0, 1, 6, 0, 0, 428, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56072, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4508420', 4508420, '43.282879', '-18.799990', '6.958000', 2367, 0, 0, 0, 0, 6, 0, 0, 2333, 0, '0.000000', 50, 0, 120, 1, 0, 30, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55806, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4508421', 4508421, '45.482460', '-18.740141', '4.043579', 2367, 0, 0, 0, 1, 6, 0, 0, 2333, 0, '0.000000', 50, 0, 120, 1, 0, 30, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55534, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4508422', 4508422, '44.079479', '-18.814390', '1.388489', 2367, 0, 0, 0, 1, 6, 0, 0, 2333, 0, '0.000000', 50, 0, 120, 1, 0, 30, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55262, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4508423', 4508423, '41.679169', '-18.814390', '4.379272', 2367, 0, 0, 0, 1, 6, 0, 0, 2333, 0, '0.000000', 50, 0, 120, 1, 0, 30, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54990, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4508424', 4508424, '25.325211', '-18.799990', '-46.557159', 2365, 0, 0, 0, 1, 6, 0, 0, 2371, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 50578, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4508425', 4508425, '31.466450', '-18.799990', '-47.655510', 2365, 0, 0, 0, 1, 6, 0, 0, 2371, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 50850, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4508426', 4508426, '34.927860', '-18.814390', '-46.218590', 2367, 0, 0, 0, 1, 6, 0, 0, 2333, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54718, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4508427', 4508427, '30.447149', '-18.799999', '-43.692322', 2366, 0, 0, 0, 1, 6, 0, 0, 2371, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 51140, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4508428', 4508428, '0.656067', '-18.814390', '-51.123932', 2367, 0, 0, 0, 1, 6, 0, 0, 2333, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54446, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4508429', 4508429, '4.389812', '-18.814390', '-47.359489', 2367, 0, 0, 0, 1, 6, 0, 0, 2333, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54174, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4508430', 4508430, '-2.690387', '-18.814390', '-47.512081', 2367, 0, 0, 0, 1, 6, 0, 0, 2333, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 53902, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4508431', 4508431, '2.043087', '-18.814390', '-45.393742', 2372, 0, 0, 0, 1, 6, 0, 0, 2337, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 53636, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4508432', 4508432, '-27.344650', '-18.800211', '-46.123192', 2367, 0, 0, 0, 1, 6, 0, 0, 2333, 0, '0.000000', 50, 0, 120, 1, 0, 33, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 53358, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4508433', 4508433, '-22.726431', '-18.800079', '-47.781200', 2367, 0, 0, 0, 1, 6, 0, 0, 2333, 0, '0.000000', 50, 0, 120, 1, 0, 33, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 53086, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4508434', 4508434, '-19.650881', '-18.800060', '-45.728008', 2367, 0, 0, 0, 1, 6, 0, 0, 2333, 0, '0.000000', 50, 0, 120, 1, 0, 33, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52814, 1, 3, 2000, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(350, 'f1d4', 'bnpc4508435', 4508435, '-24.566660', '-18.800159', '-42.228001', 2373, 0, 0, 0, 1, 6, 0, 0, 2338, 0, '0.000000', 50, 0, 120, 1, 0, 33, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52554, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4509150', 4509150, '14.626790', '-18.799999', '0.122392', 2419, 0, 0, 0, 0, 6, 0, 0, 2346, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32286, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4509151', 4509151, '13.076900', '-18.814390', '-9.445435', 2420, 0, 0, 0, 0, 6, 0, 0, 2917, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32020, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4509152', 4509152, '-14.023820', '-18.799999', '-7.169511', 2421, 0, 0, 0, 0, 6, 0, 0, 633, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31754, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4509154', 4509154, '14.167150', '-18.800070', '10.524120', 2422, 0, 0, 0, 0, 6, 0, 0, 428, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31488, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4509519', 4509519, '-14.053590', '-18.814390', '7.309021', 2421, 0, 0, 0, 0, 6, 0, 0, 633, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31074, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4510688', 4510688, '-8.050238', '0.000000', '5.226341', 2418, 0, 0, 0, 0, 6, 0, 0, 2344, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36466, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4510689', 4510689, '-6.900673', '0.000000', '0.060136', 2417, 0, 0, 0, 0, 6, 0, 0, 2343, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36200, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4515661', 4515661, '-0.096704', '-18.779980', '-0.052709', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4518211', 4518211, '54.622669', '0.000000', '-37.251282', 2364, 0, 0, 0, 0, 6, 0, 0, 2370, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57536, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4518212', 4518212, '54.753590', '0.000000', '-34.597439', 2364, 0, 0, 0, 0, 6, 0, 0, 2370, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57264, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4540218', 4540218, '16.239370', '16.983280', '-54.157890', 2368, 0, 0, 0, 0, 6, 0, 0, 2334, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 63116, 1, 3, 22, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4540219', 4540219, '16.257441', '17.226891', '-100.566498', 2368, 0, 0, 0, 0, 6, 0, 0, 2334, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 62844, 1, 3, 22, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4540220', 4540220, '-30.623400', '16.983299', '6.190567', 2369, 0, 0, 0, 0, 6, 0, 0, 2335, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 50, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 62566, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4544205', 4544205, '-18.532160', '16.983280', '-96.696007', 2368, 0, 0, 0, 0, 6, 0, 0, 2334, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 62300, 1, 3, 22, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4544812', 4544812, '41.056831', '0.000000', '-21.452450', 2374, 0, 0, 0, 5, 6, 0, 0, 2339, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57028, 1, 3, 2000, 0, 0, 0, 4545132, 0, 0), +(350, 'f1d4', 'bnpc4549581', 4549581, '-41.537590', '17.000000', '-51.310120', 2364, 0, 0, 0, 0, 6, 0, 0, 2370, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 61732, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4549582', 4549582, '-39.569820', '17.000000', '-48.077690', 2364, 0, 0, 0, 1, 6, 0, 0, 2370, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 61460, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4549583', 4549583, '-42.928631', '17.000000', '-44.831348', 2364, 0, 0, 0, 1, 6, 0, 0, 2370, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 50, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 61188, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4575551', 4575551, '41.336670', '-0.015320', '-34.491032', 2364, 0, 0, 0, 0, 6, 0, 0, 2370, 0, '0.000000', 50, 0, 120, 1, 0, 24, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56720, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4575552', 4575552, '43.991699', '-0.015320', '-32.446350', 2364, 0, 0, 0, 1, 6, 0, 0, 2370, 0, '0.000000', 50, 0, 120, 1, 0, 24, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56448, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4575554', 4575554, '4.803211', '-18.799990', '-28.397619', 2367, 0, 0, 0, 0, 6, 0, 0, 2333, 0, '0.000000', 50, 0, 120, 1, 0, 34, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52270, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4575555', 4575555, '2.492003', '-18.799990', '-29.949110', 2367, 0, 0, 0, 1, 6, 0, 0, 2333, 0, '0.000000', 50, 0, 120, 1, 0, 34, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 51998, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4575556', 4575556, '1.801035', '-18.799990', '-27.082260', 2367, 0, 0, 0, 1, 6, 0, 0, 2333, 0, '0.000000', 50, 0, 120, 1, 0, 34, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 51726, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(350, 'f1d4', 'bnpc4575557', 4575557, '-32.525150', '-18.799990', '30.699240', 2374, 0, 0, 0, 5, 6, 0, 0, 2339, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 51436, 1, 3, 2000, 0, 0, 0, 4575559, 0, 0), +(350, 'f1d4', 'bnpc4575643', 4575643, '-42.136490', '17.000000', '-3.968035', 2374, 0, 0, 0, 5, 6, 0, 0, 2339, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60952, 1, 3, 2000, 0, 0, 0, 4575641, 0, 0), +(350, 'f1d4', 'bnpc4588210', 4588210, '41.672359', '16.983280', '-61.630730', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4589928', 4589928, '-5.863300', '0.000000', '-70.600304', 434, 0, 0, 0, 0, 6, 0, 0, 148, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4589929', 4589929, '6.999800', '0.000000', '-83.469261', 434, 0, 0, 0, 0, 6, 0, 0, 148, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4589930', 4589930, '17.007090', '0.000000', '-69.980400', 434, 0, 0, 0, 0, 6, 0, 0, 148, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4589931', 4589931, '27.076200', '0.000000', '-83.519547', 434, 0, 0, 0, 0, 6, 0, 0, 148, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4589932', 4589932, '34.974430', '0.000000', '-61.914909', 434, 0, 0, 0, 0, 6, 0, 0, 148, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4589933', 4589933, '47.938210', '0.000000', '-53.808640', 434, 0, 0, 0, 0, 6, 0, 0, 148, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4589934', 4589934, '24.862400', '0.000000', '-55.528648', 434, 0, 0, 0, 0, 6, 0, 0, 148, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4589935', 4589935, '16.529900', '17.000000', '-60.644520', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60414, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4590086', 4590086, '15.445650', '17.000000', '-94.877213', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60142, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(350, 'f1d4', 'bnpc4590087', 4590087, '-14.260910', '17.000000', '-96.161469', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59870, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4600253', 4600253, '0.000000', '0.025700', '-19.000000', 2663, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4600281', 4600281, '-14.373760', '0.025694', '-14.166860', 2694, 0, 0, 0, 0, 6, 0, 0, 2551, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29694, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4600362', 4600362, '-3.436191', '0.025694', '-3.515284', 2696, 0, 0, 0, 3, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4600387', 4600387, '6.379251', '0.025694', '-16.615959', 2692, 0, 0, 0, 0, 6, 0, 0, 2553, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4600398', 4600398, '8.298884', '0.025694', '-16.615959', 2691, 0, 0, 0, 0, 6, 0, 0, 2552, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4600405', 4600405, '6.233904', '0.025700', '-9.148590', 2695, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28630, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4600453', 4600453, '7.271183', '0.025694', '-12.110490', 2693, 0, 0, 0, 0, 6, 0, 0, 2554, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28364, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4619402', 4619402, '-1.214509', '0.025694', '-3.320351', 2765, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28098, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4621155', 4621155, '-13.521420', '0.005472', '1.885355', 2801, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21156, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4621157', 4621157, '-10.004050', '0.005472', '10.072770', 2801, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20884, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4621158', 4621158, '4.713486', '0.005472', '7.360640', 2801, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20612, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4621313', 4621313, '13.703960', '0.005472', '-9.921053', 2801, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20340, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4633752', 4633752, '0.000000', '0.025700', '-19.000000', 2802, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4633753', 4633753, '-14.373760', '0.025694', '-14.166860', 2803, 0, 0, 0, 0, 6, 0, 0, 2551, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4633754', 4633754, '-3.436191', '0.025694', '-3.515284', 2805, 0, 0, 0, 3, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4633755', 4633755, '6.379251', '0.025694', '-16.615959', 2808, 0, 0, 0, 0, 6, 0, 0, 2553, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24152, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4633756', 4633756, '8.298884', '0.025694', '-16.615959', 2807, 0, 0, 0, 0, 6, 0, 0, 2552, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23886, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4633757', 4633757, '6.233904', '0.025700', '-9.148590', 2804, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23620, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4633758', 4633758, '7.271183', '0.025694', '-12.110490', 2809, 0, 0, 0, 0, 6, 0, 0, 2554, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23082, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4633759', 4633759, '-1.214509', '0.025694', '-3.320351', 2929, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22550, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4633766', 4633766, '14.598000', '0.025700', '-14.176900', 2804, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4633769', 4633769, '9.085173', '0.025694', '-12.110490', 2810, 0, 0, 0, 0, 6, 0, 0, 2555, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4634284', 4634284, '-0.045776', '1.632629', '0.045776', 2948, 0, 0, 0, 0, 6, 0, 0, 2608, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27832, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4634287', 4634287, '-0.045776', '1.632629', '0.045776', 2948, 0, 0, 0, 0, 6, 0, 0, 2608, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22176, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4680346', 4680346, '0.000000', '0.025700', '-19.000000', 2938, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4680347', 4680347, '-14.373760', '0.025694', '-14.166860', 2942, 0, 0, 0, 0, 6, 0, 0, 2551, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27196, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4680348', 4680348, '-3.463867', '0.015198', '-3.524841', 2944, 0, 0, 0, 3, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26930, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4680349', 4680349, '6.379251', '0.025694', '-16.615959', 2940, 0, 0, 0, 0, 6, 0, 0, 2553, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26664, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4680350', 4680350, '8.298884', '0.025694', '-16.615959', 2939, 0, 0, 0, 0, 6, 0, 0, 2552, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4680351', 4680351, '6.233904', '0.025700', '-9.148590', 2943, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4680352', 4680352, '7.271183', '0.025694', '-12.110490', 2941, 0, 0, 0, 0, 6, 0, 0, 2554, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4680353', 4680353, '-1.236023', '0.015198', '-3.341736', 2945, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25600, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(353, 'z1z1', 'bnpc4680354', 4680354, '-0.045776', '1.632629', '0.045776', 2948, 0, 0, 0, 0, 6, 0, 0, 2608, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25280, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(354, 'z1z2', 'bnpc4712010', 4712010, '0.000000', '75.084084', '0.000000', 2987, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22088, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(354, 'z1z2', 'bnpc4712011', 4712011, '5.027565', '75.000000', '1.469313', 2989, 0, 0, 0, 0, 6, 0, 0, 2833, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(354, 'z1z2', 'bnpc4724036', 4724036, '4.951025', '75.000000', '3.833662', 2988, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(354, 'z1z2', 'bnpc4724037', 4724037, '0.000000', '75.084084', '0.000000', 2990, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20328, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(354, 'z1z2', 'bnpc4724038', 4724038, '5.027565', '75.000000', '1.469313', 2992, 0, 0, 0, 0, 6, 0, 0, 2833, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20062, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(354, 'z1z2', 'bnpc4724039', 4724039, '4.951025', '75.000000', '3.833662', 2991, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19796, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(354, 'z1z2', 'bnpc4725363', 4725363, '7.940563', '75.000000', '2.130820', 2997, 0, 0, 0, 0, 6, 0, 0, 2833, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(354, 'z1z2', 'bnpc4891505', 4891505, '0.000000', '75.084084', '0.000000', 3128, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(354, 'z1z2', 'bnpc4891506', 4891506, '5.027565', '75.000000', '1.469313', 3130, 0, 0, 0, 0, 6, 0, 0, 2833, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(354, 'z1z2', 'bnpc4891507', 4891507, '4.951025', '75.000000', '3.833662', 3129, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20678, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4572944', 4572944, '-146.338303', '6.373298', '-19.666241', 2911, 0, 0, 0, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 24592, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4572945', 4572945, '-135.501099', '8.852708', '-10.660940', 2911, 0, 0, 0, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 24320, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4572990', 4572990, '-188.433701', '-0.778198', '36.179081', 2911, 0, 0, 5, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '0.000000', '1.000000', 23232, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4594889', 4594889, '-200.132004', '2.104434', '22.672791', 2912, 0, 0, 0, 0, 6, 0, 0, 2640, 0, '0.500000', 50, 0, 114, 1, 0, 30, 0, 6, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 22966, 0, 4, 2000, 0, 0, 0, 4619735, 0, 0), +(355, 'f1b1', 'bnpc4594890', 4594890, '-205.547806', '0.795838', '20.843929', 2912, 0, 0, 0, 0, 6, 0, 0, 2640, 0, '0.500000', 50, 0, 120, 1, 0, 30, 0, 6, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 22694, 1, 4, 2000, 0, 0, 0, 4619736, 0, 0), +(355, 'f1b1', 'bnpc4597484', 4597484, '-207.901794', '0.576092', '26.368891', 2912, 0, 0, 0, 0, 6, 0, 0, 2640, 0, '0.500000', 50, 0, 120, 1, 0, 30, 0, 6, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 22422, 1, 4, 2000, 0, 0, 0, 4619737, 0, 0), +(355, 'f1b1', 'bnpc4616594', 4616594, '-280.674103', '10.421330', '32.743111', 2726, 0, 0, 0, 0, 6, 0, 0, 2609, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17354, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4616595', 4616595, '-277.311005', '10.421330', '28.666361', 2727, 0, 0, 0, 0, 6, 0, 0, 2619, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17088, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4616596', 4616596, '-278.322205', '10.421330', '42.406460', 2728, 0, 0, 0, 0, 6, 0, 0, 2620, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16822, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4616597', 4616597, '-279.931305', '10.421330', '25.123070', 2729, 0, 0, 0, 0, 6, 0, 0, 2621, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16556, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4616598', 4616598, '-271.632202', '10.421330', '22.440451', 2730, 0, 0, 0, 0, 6, 0, 0, 2622, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16290, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4616599', 4616599, '-270.140411', '10.421330', '30.752750', 2731, 0, 0, 0, 0, 6, 0, 0, 2609, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16024, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4616665', 4616665, '-137.604507', '11.106360', '-10.588380', 2913, 0, 0, 0, 3, 21, 0, 0, 2742, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22156, 1, 4, 0, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4616666', 4616666, '-195.538101', '5.241385', '24.348860', 2914, 0, 0, 0, 3, 21, 0, 0, 2742, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21890, 1, 4, 0, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4619732', 4619732, '-150.190903', '5.802513', '-28.170679', 2911, 0, 0, 0, 1, 6, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 24048, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4619733', 4619733, '-129.789001', '7.449677', '-8.540951', 2911, 0, 0, 0, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 23776, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4619734', 4619734, '-142.123993', '7.839766', '-9.058794', 2911, 0, 0, 0, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 23504, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4620610', 4620610, '-264.215302', '10.421330', '28.436081', 2756, 0, 0, 0, 0, 6, 0, 0, 2623, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15758, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4663772', 4663772, '-137.595901', '11.098200', '-10.575710', 410, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4663775', 4663775, '-195.541504', '5.243267', '24.347481', 410, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4695639', 4695639, '-270.140411', '10.421330', '30.752750', 2731, 0, 0, 0, 0, 6, 0, 0, 2621, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15480, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760567', 4760567, '-146.338303', '6.373298', '-19.666241', 3160, 0, 0, 0, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 19606, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760568', 4760568, '-135.501099', '8.852708', '-10.660940', 3160, 0, 0, 0, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 19334, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760569', 4760569, '-150.190903', '5.802513', '-28.170679', 3160, 0, 0, 0, 1, 6, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 19062, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760570', 4760570, '-129.789001', '7.449677', '-8.540951', 3160, 0, 0, 0, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 20422, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760571', 4760571, '-142.123993', '7.839766', '-9.058794', 3160, 0, 0, 0, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 20150, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760572', 4760572, '-188.433701', '-0.778198', '36.179081', 3160, 0, 0, 5, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '0.000000', '1.000000', 19878, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760573', 4760573, '-200.132004', '2.104434', '22.672791', 3161, 0, 0, 0, 0, 6, 0, 0, 2640, 0, '0.500000', 50, 0, 114, 1, 0, 30, 0, 6, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 18252, 0, 4, 2000, 0, 0, 0, 4619735, 0, 0), +(355, 'f1b1', 'bnpc4760574', 4760574, '-205.547806', '0.795838', '20.843929', 3161, 0, 0, 0, 0, 6, 0, 0, 2640, 0, '0.500000', 50, 0, 120, 1, 0, 30, 0, 6, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 18524, 1, 4, 2000, 0, 0, 0, 4619736, 0, 0), +(355, 'f1b1', 'bnpc4760575', 4760575, '-207.901794', '0.576092', '26.368891', 3161, 0, 0, 0, 0, 6, 0, 0, 2640, 0, '0.500000', 50, 0, 120, 1, 0, 30, 0, 6, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 18796, 1, 4, 2000, 0, 0, 0, 4619737, 0, 0), +(355, 'f1b1', 'bnpc4760576', 4760576, '-137.604507', '11.106360', '-10.588380', 3162, 0, 0, 0, 3, 21, 0, 0, 2742, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17986, 1, 4, 0, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760577', 4760577, '-195.538101', '5.241385', '24.348860', 3163, 0, 0, 0, 3, 21, 0, 0, 2742, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17720, 1, 4, 0, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760578', 4760578, '-137.595901', '11.098200', '-10.575710', 410, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760579', 4760579, '-195.541504', '5.243267', '24.347481', 410, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20688, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760582', 4760582, '-280.674103', '10.421330', '32.743111', 3131, 0, 0, 0, 0, 6, 0, 0, 2609, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15120, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760583', 4760583, '-277.311005', '10.421330', '28.666361', 3132, 0, 0, 0, 0, 6, 0, 0, 2619, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14854, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760584', 4760584, '-278.322205', '10.421330', '42.406460', 3133, 0, 0, 0, 0, 6, 0, 0, 2620, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14588, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760585', 4760585, '-279.931305', '10.421330', '25.123070', 3134, 0, 0, 0, 0, 6, 0, 0, 2621, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14322, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760586', 4760586, '-271.632202', '10.421330', '22.440451', 3135, 0, 0, 0, 0, 6, 0, 0, 2622, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14056, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760587', 4760587, '-270.140411', '10.421330', '30.752750', 3137, 0, 0, 0, 0, 6, 0, 0, 2609, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13524, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760589', 4760589, '-264.215302', '10.421330', '28.436081', 3136, 0, 0, 0, 0, 6, 0, 0, 2623, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13790, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(355, 'f1b1', 'bnpc4760611', 4760611, '-270.140411', '10.421330', '30.752750', 3137, 0, 0, 0, 0, 6, 0, 0, 2621, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13252, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4646826', 4646826, '-462.256287', '800.031372', '0.039109', 2915, 0, 0, 0, 1, 6, 0, 0, 2641, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 26692, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(356, 'f1b2', 'bnpc4646827', 4646827, '-462.256287', '800.031372', '0.039100', 2915, 0, 0, 0, 1, 6, 0, 0, 2641, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 26420, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(356, 'f1b2', 'bnpc4646828', 4646828, '-467.826294', '800.093384', '-0.253989', 2915, 0, 0, 0, 1, 6, 0, 0, 1471, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3868, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(356, 'f1b2', 'bnpc4646829', 4646829, '-467.826294', '800.093384', '-0.253989', 2915, 0, 0, 0, 1, 6, 0, 0, 1471, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3596, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(356, 'f1b2', 'bnpc4646830', 4646830, '-438.158386', '800.031494', '0.039100', 2915, 0, 0, 0, 1, 6, 0, 0, 2641, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 24788, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(356, 'f1b2', 'bnpc4646831', 4646831, '-462.256287', '800.031372', '0.039100', 2915, 0, 0, 0, 1, 6, 0, 0, 2641, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 23700, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(356, 'f1b2', 'bnpc4646832', 4646832, '-467.809601', '800.089600', '-0.240992', 2915, 0, 0, 0, 1, 6, 0, 0, 1471, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3324, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(356, 'f1b2', 'bnpc4646878', 4646878, '-449.946503', '800.076172', '86.717041', 2732, 0, 0, 0, 0, 6, 0, 0, 2610, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16440, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4646879', 4646879, '-455.402588', '800.000000', '82.679207', 2733, 0, 0, 0, 0, 6, 0, 0, 2624, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16174, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4646880', 4646880, '-444.663910', '800.000000', '82.888397', 2734, 0, 0, 0, 0, 6, 0, 0, 2625, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15908, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4646881', 4646881, '-460.004913', '800.000000', '80.935921', 2735, 0, 0, 0, 0, 6, 0, 0, 2626, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4646882', 4646882, '-440.270905', '800.000000', '80.656990', 2736, 0, 0, 0, 0, 6, 0, 0, 2627, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4646883', 4646883, '-450.033295', '800.000000', '78.355843', 2737, 0, 0, 0, 0, 6, 0, 0, 2610, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4649708', 4649708, '-464.727905', '800.000916', '4.150533', 2919, 0, 0, 0, 1, 6, 0, 0, 2644, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 27230, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4649709', 4649709, '-465.637512', '800.011780', '-3.258655', 2919, 0, 0, 0, 1, 6, 0, 0, 2644, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 26958, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4649710', 4649710, '-466.647491', '800.028381', '-7.849937', 2918, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 27496, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4649711', 4649711, '-467.102692', '800.003113', '-1.731705', 2919, 0, 0, 0, 1, 6, 0, 0, 2644, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 25870, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4649712', 4649712, '-464.253387', '800.114075', '4.044464', 2918, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 26136, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4649713', 4649713, '-433.654510', '799.919006', '7.050138', 2920, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 25344, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4649714', 4649714, '-433.654510', '800.053406', '-6.030566', 2920, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 25072, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4649715', 4649715, '-434.447601', '799.926514', '0.107254', 2916, 0, 0, 0, 0, 6, 0, 0, 2642, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 25610, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4649716', 4649716, '-435.859314', '800.011780', '1.753515', 2919, 0, 0, 0, 1, 6, 0, 0, 2644, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 23966, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4649717', 4649717, '-430.733185', '800.040283', '-4.300975', 2920, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 24256, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4649718', 4649718, '-436.241211', '799.997009', '4.892796', 2918, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 24504, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4649719', 4649719, '-465.934387', '800.028381', '4.852085', 2918, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 23416, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4649720', 4649720, '-469.182190', '800.068787', '-3.083111', 2918, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 23144, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4649721', 4649721, '-468.181793', '800.024719', '1.094773', 2920, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 22896, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4649722', 4649722, '-435.845795', '800.007385', '0.107300', 2917, 0, 0, 0, 0, 6, 0, 0, 2643, 0, '0.000000', 50, 0, 120, 1, 0, 7, 0, 100, 1, 0, 1, 0, 1, 1, '0.000000', '1.000000', 22630, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4649723', 4649723, '-435.050903', '800.000000', '4.277941', 2920, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 7, 0, 100, 1, 0, 1, 0, 1, 1, '0.000000', '1.000000', 22352, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4663940', 4663940, '-450.033295', '800.000000', '78.355843', 2737, 0, 0, 0, 0, 6, 0, 0, 2613, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760618', 4760618, '-466.647491', '800.028381', '-7.849937', 3167, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 19238, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760619', 4760619, '-464.727905', '800.000916', '4.150533', 3168, 0, 0, 0, 1, 6, 0, 0, 2644, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 18700, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760620', 4760620, '-465.637512', '800.011780', '-3.258655', 3168, 0, 0, 0, 1, 6, 0, 0, 2644, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 18428, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760621', 4760621, '-462.256287', '800.031372', '0.039109', 3164, 0, 0, 0, 1, 6, 0, 0, 2641, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 21396, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(356, 'f1b2', 'bnpc4760622', 4760622, '-462.256287', '800.031372', '0.039100', 3164, 0, 0, 0, 1, 6, 0, 0, 2641, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 21668, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(356, 'f1b2', 'bnpc4760623', 4760623, '-464.253387', '800.114075', '4.044464', 3167, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 19510, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760624', 4760624, '-467.102692', '800.003113', '-1.731705', 3168, 0, 0, 0, 1, 6, 0, 0, 2644, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 18156, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760625', 4760625, '-434.447601', '799.926514', '0.107254', 3165, 0, 0, 0, 0, 6, 0, 0, 2642, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 20858, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760626', 4760626, '-433.654510', '799.919006', '7.050138', 3169, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 17346, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760627', 4760627, '-433.654510', '800.053406', '-6.030566', 3169, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 17074, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760628', 4760628, '-438.158386', '800.031494', '0.039100', 3164, 0, 0, 0, 1, 6, 0, 0, 2641, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 21940, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(356, 'f1b2', 'bnpc4760629', 4760629, '-436.241211', '799.997009', '4.892796', 3167, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 20054, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760630', 4760630, '-430.733185', '800.040283', '-4.300975', 3169, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 16802, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760631', 4760631, '-435.859314', '800.011780', '1.753515', 3168, 0, 0, 0, 1, 6, 0, 0, 2644, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 18972, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760632', 4760632, '-462.256287', '800.031372', '0.039100', 3164, 0, 0, 0, 1, 6, 0, 0, 2641, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 21124, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(356, 'f1b2', 'bnpc4760633', 4760633, '-465.934387', '800.028381', '4.852085', 3167, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 20326, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760634', 4760634, '-469.182190', '800.068787', '-3.083111', 3167, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 19782, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760635', 4760635, '-468.181793', '800.024719', '1.094773', 3169, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 17618, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760636', 4760636, '-435.845795', '800.007385', '0.107300', 3166, 0, 0, 0, 0, 6, 0, 0, 2643, 0, '0.000000', 50, 0, 120, 1, 0, 7, 0, 100, 1, 0, 1, 0, 1, 1, '0.000000', '1.000000', 20592, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760637', 4760637, '-435.050903', '800.000000', '4.277941', 3169, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 7, 0, 100, 1, 0, 1, 0, 1, 1, '0.000000', '1.000000', 17890, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760645', 4760645, '-449.946503', '800.076172', '86.717041', 3138, 0, 0, 0, 0, 6, 0, 0, 2610, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14472, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760646', 4760646, '-455.402588', '800.000000', '82.679207', 3139, 0, 0, 0, 0, 6, 0, 0, 2624, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760647', 4760647, '-444.663910', '800.000000', '82.888397', 3140, 0, 0, 0, 0, 6, 0, 0, 2625, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13940, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760648', 4760648, '-460.004913', '800.000000', '80.935921', 3141, 0, 0, 0, 0, 6, 0, 0, 2626, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13674, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760649', 4760649, '-440.270905', '800.000000', '80.656990', 3142, 0, 0, 0, 0, 6, 0, 0, 2627, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13408, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760650', 4760650, '-450.033295', '800.000000', '78.355843', 3143, 0, 0, 0, 0, 6, 0, 0, 2610, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12870, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(356, 'f1b2', 'bnpc4760671', 4760671, '-450.033295', '800.000000', '78.355843', 3143, 0, 0, 0, 0, 6, 0, 0, 2613, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13142, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4649169', 4649169, '71.584702', '-531.981079', '-48.587280', 2925, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 88890, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4649170', 4649170, '71.418488', '-543.166626', '7.215824', 2924, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 89156, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4649171', 4649171, '42.010639', '-511.416901', '-27.783140', 2923, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 89422, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4649172', 4649172, '39.797489', '-504.526306', '-62.479160', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 89688, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4649173', 4649173, '-0.007818', '-482.796692', '-84.345177', 2921, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 73132, 1, 4, 2000, 0, 0, 0, 4649420, 0, 0), +(357, 'f1b3', 'bnpc4649174', 4649174, '71.732674', '-450.459686', '-35.599300', 2921, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 72860, 1, 4, 2000, 0, 0, 0, 4649421, 0, 0), +(357, 'f1b3', 'bnpc4649175', 4649175, '-71.793762', '-450.441895', '-35.690861', 2921, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 72588, 1, 4, 2000, 0, 0, 0, 4649423, 0, 0), +(357, 'f1b3', 'bnpc4649176', 4649176, '-71.702209', '-434.603302', '-117.174103', 2921, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 72316, 1, 4, 2000, 0, 0, 0, 4649422, 0, 0), +(357, 'f1b3', 'bnpc4649177', 4649177, '-71.671631', '-466.251007', '45.639648', 2921, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 72044, 1, 4, 2000, 0, 0, 0, 4649425, 0, 0), +(357, 'f1b3', 'bnpc4649178', 4649178, '71.824219', '-434.597412', '-117.204498', 2921, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 71772, 1, 4, 2000, 0, 0, 0, 4649424, 0, 0), +(357, 'f1b3', 'bnpc4649234', 4649234, '-2.700867', '-506.950500', '105.332901', 2738, 0, 0, 0, 0, 6, 0, 0, 2611, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 69692, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4649235', 4649235, '12.619710', '-507.203491', '114.856300', 2739, 0, 0, 0, 0, 6, 0, 0, 1478, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 69426, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4649236', 4649236, '-2.490683', '-507.203491', '103.471703', 2741, 0, 0, 0, 0, 6, 0, 0, 2611, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 69160, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652025', 4652025, '6.590415', '-501.161987', '7.959057', 2923, 0, 0, 0, 0, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 88606, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652026', 4652026, '-6.599143', '-501.163910', '7.969008', 2924, 0, 0, 0, 0, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 88340, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652615', 4652615, '71.418488', '-543.166626', '7.215824', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 85336, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652635', 4652635, '39.797489', '-504.526306', '-62.479160', 2924, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 87796, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652636', 4652636, '39.797489', '-504.526306', '-62.479160', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 88056, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652637', 4652637, '39.797489', '-504.526306', '-62.479160', 2924, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 85076, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652639', 4652639, '71.418488', '-543.166626', '7.215824', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 84792, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652640', 4652640, '39.797489', '-504.526306', '-62.479160', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 84520, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652641', 4652641, '39.797489', '-504.526306', '-62.479160', 2923, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 87246, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652642', 4652642, '39.797489', '-504.526306', '-62.479160', 2923, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 87518, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652646', 4652646, '71.418488', '-543.166626', '7.215824', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 83704, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652647', 4652647, '39.797489', '-504.526306', '-62.479160', 2925, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 82362, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652648', 4652648, '39.797489', '-504.526306', '-62.479160', 2924, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 83444, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652649', 4652649, '39.797489', '-504.526306', '-62.479160', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 86968, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652650', 4652650, '71.418488', '-543.166626', '7.215824', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 83160, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652651', 4652651, '39.797489', '-504.526306', '-62.479160', 2925, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 82634, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652652', 4652652, '39.797489', '-504.526306', '-62.479160', 2923, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 82894, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652653', 4652653, '39.797489', '-504.526306', '-62.479160', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 86696, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652655', 4652655, '71.418488', '-543.166626', '7.215824', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 81800, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652656', 4652656, '39.797489', '-504.526306', '-62.479160', 2924, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 86436, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652657', 4652657, '39.797489', '-504.526306', '-62.479160', 2925, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 86170, 1, 4, 2000, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(357, 'f1b3', 'bnpc4652658', 4652658, '39.797489', '-504.526306', '-62.479160', 2924, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 84260, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652664', 4652664, '71.418488', '-543.166626', '7.215824', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 82072, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652665', 4652665, '39.797489', '-504.526306', '-62.479160', 2923, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 85614, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652666', 4652666, '39.797489', '-504.526306', '-62.479160', 2925, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 85898, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4652667', 4652667, '39.797489', '-504.526306', '-62.479160', 2923, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 83982, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4663915', 4663915, '12.619710', '-507.203491', '114.856300', 2741, 0, 0, 0, 0, 6, 0, 0, 2614, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 68888, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4663916', 4663916, '12.619710', '-507.203491', '114.856300', 2741, 0, 0, 0, 0, 6, 0, 0, 2615, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 68616, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4663917', 4663917, '12.619710', '-507.203491', '114.856300', 2741, 0, 0, 0, 0, 6, 0, 0, 2616, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 68344, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760699', 4760699, '39.797489', '-504.526306', '-62.479160', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 79456, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760700', 4760700, '42.010639', '-511.416901', '-27.783140', 3172, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 77830, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760701', 4760701, '71.418488', '-543.166626', '7.215824', 3173, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 75116, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760702', 4760702, '71.584702', '-531.981079', '-48.587280', 3174, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 73762, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760703', 4760703, '6.590415', '-501.161987', '7.959057', 3172, 0, 0, 0, 0, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 77558, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760704', 4760704, '-6.599143', '-501.163910', '7.969008', 3173, 0, 0, 0, 0, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 75660, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760705', 4760705, '39.797489', '-504.526306', '-62.479160', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 79728, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760706', 4760706, '39.797489', '-504.526306', '-62.479160', 3173, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 74844, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760707', 4760707, '39.797489', '-504.526306', '-62.479160', 3172, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 77286, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760708', 4760708, '39.797489', '-504.526306', '-62.479160', 3172, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 76742, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760709', 4760709, '39.797489', '-504.526306', '-62.479160', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 80000, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760710', 4760710, '39.797489', '-504.526306', '-62.479160', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 80272, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760711', 4760711, '39.797489', '-504.526306', '-62.479160', 3173, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 75932, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760712', 4760712, '39.797489', '-504.526306', '-62.479160', 3174, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 74578, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760713', 4760713, '39.797489', '-504.526306', '-62.479160', 3174, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 73490, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760714', 4760714, '39.797489', '-504.526306', '-62.479160', 3172, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 78102, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760715', 4760715, '71.418488', '-543.166626', '7.215824', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 78640, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760716', 4760716, '39.797489', '-504.526306', '-62.479160', 3173, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 76476, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760717', 4760717, '71.418488', '-543.166626', '7.215824', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 78912, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760718', 4760718, '39.797489', '-504.526306', '-62.479160', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 79184, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760719', 4760719, '39.797489', '-504.526306', '-62.479160', 3173, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 76204, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760720', 4760720, '39.797489', '-504.526306', '-62.479160', 3172, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 77014, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760721', 4760721, '71.418488', '-543.166626', '7.215824', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 80544, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760722', 4760722, '39.797489', '-504.526306', '-62.479160', 3173, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 75388, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760723', 4760723, '71.418488', '-543.166626', '7.215824', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 80816, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760724', 4760724, '39.797489', '-504.526306', '-62.479160', 3172, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 78374, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760725', 4760725, '39.797489', '-504.526306', '-62.479160', 3174, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 74306, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760726', 4760726, '39.797489', '-504.526306', '-62.479160', 3174, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 74034, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760727', 4760727, '71.418488', '-543.166626', '7.215824', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 81360, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760728', 4760728, '71.418488', '-543.166626', '7.215824', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 81088, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760731', 4760731, '-0.007818', '-482.796692', '-84.345177', 3170, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 70594, 1, 4, 2000, 0, 0, 0, 4649420, 0, 0), +(357, 'f1b3', 'bnpc4760732', 4760732, '71.732674', '-450.459686', '-35.599300', 3170, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 70322, 1, 4, 2000, 0, 0, 0, 4649421, 0, 0), +(357, 'f1b3', 'bnpc4760733', 4760733, '-71.793762', '-450.441895', '-35.690861', 3170, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 70050, 1, 4, 2000, 0, 0, 0, 4649423, 0, 0), +(357, 'f1b3', 'bnpc4760734', 4760734, '-71.702209', '-434.603302', '-117.174103', 3170, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 71410, 1, 4, 2000, 0, 0, 0, 4649422, 0, 0), +(357, 'f1b3', 'bnpc4760735', 4760735, '-71.671631', '-466.251007', '45.639648', 3170, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 71138, 1, 4, 2000, 0, 0, 0, 4649425, 0, 0), +(357, 'f1b3', 'bnpc4760736', 4760736, '71.824219', '-434.597412', '-117.204498', 3170, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 70866, 1, 4, 2000, 0, 0, 0, 4649424, 0, 0), +(357, 'f1b3', 'bnpc4760738', 4760738, '-2.700867', '-506.950500', '105.332901', 3144, 0, 0, 0, 0, 6, 0, 0, 2611, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67982, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760739', 4760739, '12.619710', '-507.203491', '114.856300', 3145, 0, 0, 0, 0, 6, 0, 0, 1478, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67716, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760740', 4760740, '-2.490683', '-507.203491', '103.471703', 3146, 0, 0, 0, 0, 6, 0, 0, 2611, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 66634, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760777', 4760777, '12.619710', '-507.203491', '114.856300', 3146, 0, 0, 0, 0, 6, 0, 0, 2614, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67450, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760778', 4760778, '12.619710', '-507.203491', '114.856300', 3146, 0, 0, 0, 0, 6, 0, 0, 2615, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67178, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(357, 'f1b3', 'bnpc4760779', 4760779, '12.619710', '-507.203491', '114.856300', 3146, 0, 0, 0, 0, 6, 0, 0, 2616, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 66906, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4616639', 4616639, '0.024889', '-0.017127', '-11.085740', 2742, 0, 0, 0, 0, 6, 0, 0, 2612, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20832, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4616640', 4616640, '-2.351260', '0.000001', '1.161737', 2743, 0, 0, 0, 0, 6, 0, 0, 2628, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4616641', 4616641, '5.721556', '-0.000002', '0.674415', 2744, 0, 0, 0, 0, 6, 0, 0, 2629, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20300, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4616642', 4616642, '-6.250584', '0.000002', '-2.554785', 2745, 0, 0, 0, 0, 6, 0, 0, 2630, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20034, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4616643', 4616643, '-8.779049', '0.000002', '6.828046', 2746, 0, 0, 0, 0, 6, 0, 0, 2631, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4616644', 4616644, '-8.961830', '0.000002', '12.768570', 2747, 0, 0, 0, 0, 6, 0, 0, 2632, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4616645', 4616645, '2.187796', '0.000000', '-6.911135', 2748, 0, 0, 0, 0, 6, 0, 0, 2634, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4616646', 4616646, '7.732144', '-0.000002', '-7.276749', 2749, 0, 0, 0, 0, 6, 0, 0, 2634, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18970, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4616647', 4616647, '4.230211', '0.000000', '-14.066310', 2750, 0, 0, 0, 0, 6, 0, 0, 2635, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18704, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4616648', 4616648, '-0.004181', '0.000001', '-15.559050', 2751, 0, 0, 0, 0, 6, 0, 0, 2636, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4616649', 4616649, '-4.360467', '0.000002', '-14.949770', 2752, 0, 0, 0, 0, 6, 0, 0, 2637, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18172, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4616651', 4616651, '-0.034670', '0.000000', '-0.052984', 2755, 0, 0, 0, 0, 6, 0, 0, 2612, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17906, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4635023', 4635023, '7.957073', '0.000000', '-15.062980', 2753, 0, 0, 0, 1, 6, 0, 0, 2638, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4656745', 4656745, '-0.034670', '0.000000', '-0.052984', 2933, 0, 0, 0, 0, 6, 0, 0, 2634, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17102, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4663902', 4663902, '-0.034670', '0.000000', '-0.052984', 2933, 0, 0, 0, 0, 6, 0, 0, 2618, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17374, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4663903', 4663903, '-0.034670', '0.000000', '-0.052984', 2933, 0, 0, 0, 0, 6, 0, 0, 2617, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16830, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4664051', 4664051, '-0.034670', '0.000000', '-0.052984', 2933, 0, 0, 0, 0, 6, 0, 0, 2632, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16558, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4760788', 4760788, '0.024889', '-0.017127', '-11.085740', 3147, 0, 0, 0, 0, 6, 0, 0, 2612, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16156, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4760789', 4760789, '-2.351260', '0.000001', '1.161737', 3148, 0, 0, 0, 0, 6, 0, 0, 2628, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4760790', 4760790, '5.721556', '-0.000002', '0.674415', 3149, 0, 0, 0, 0, 6, 0, 0, 2629, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4760791', 4760791, '-6.250584', '0.000002', '-2.554785', 3150, 0, 0, 0, 0, 6, 0, 0, 2630, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4760792', 4760792, '-8.779049', '0.000002', '6.828046', 3151, 0, 0, 0, 0, 6, 0, 0, 2631, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15092, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4760793', 4760793, '-8.961830', '0.000002', '12.768570', 3152, 0, 0, 0, 0, 6, 0, 0, 2632, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14826, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4760794', 4760794, '2.187796', '0.000000', '-6.911135', 3153, 0, 0, 0, 0, 6, 0, 0, 2634, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14560, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4760795', 4760795, '7.732144', '-0.000002', '-7.276749', 3153, 0, 0, 0, 0, 6, 0, 0, 2634, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14288, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4760796', 4760796, '4.230211', '0.000000', '-14.066310', 3154, 0, 0, 0, 0, 6, 0, 0, 2635, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4760797', 4760797, '-0.004181', '0.000001', '-15.559050', 3155, 0, 0, 0, 0, 6, 0, 0, 2636, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13756, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4760798', 4760798, '-4.360467', '0.000002', '-14.949770', 3156, 0, 0, 0, 0, 6, 0, 0, 2637, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13490, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4760800', 4760800, '-0.034670', '0.000000', '-0.052984', 3158, 0, 0, 0, 0, 6, 0, 0, 2612, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4760806', 4760806, '7.957073', '0.000000', '-15.062980', 3157, 0, 0, 0, 1, 6, 0, 0, 2638, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13224, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4760824', 4760824, '-0.034670', '0.000000', '-0.052984', 3159, 0, 0, 0, 0, 6, 0, 0, 2618, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4760825', 4760825, '-0.034670', '0.000000', '-0.052984', 3159, 0, 0, 0, 0, 6, 0, 0, 2634, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4760826', 4760826, '-0.034670', '0.000000', '-0.052984', 3159, 0, 0, 0, 0, 6, 0, 0, 2617, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(358, 'f1b4', 'bnpc4760827', 4760827, '-0.034670', '0.000000', '-0.052984', 3159, 0, 0, 0, 0, 6, 0, 0, 2632, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4600253', 4600253, '0.000000', '0.025700', '-19.000000', 2663, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4600281', 4600281, '-14.373760', '0.025694', '-14.166860', 2694, 0, 0, 0, 0, 6, 0, 0, 2551, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29694, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4600362', 4600362, '-3.436191', '0.025694', '-3.515284', 2696, 0, 0, 0, 3, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4600387', 4600387, '6.379251', '0.025694', '-16.615959', 2692, 0, 0, 0, 0, 6, 0, 0, 2553, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29162, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4600398', 4600398, '8.298884', '0.025694', '-16.615959', 2691, 0, 0, 0, 0, 6, 0, 0, 2552, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4600405', 4600405, '6.233904', '0.025700', '-9.148590', 2695, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28630, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4600453', 4600453, '7.271183', '0.025694', '-12.110490', 2693, 0, 0, 0, 0, 6, 0, 0, 2554, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28364, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4619402', 4619402, '-1.214509', '0.025694', '-3.320351', 2765, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28098, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4621155', 4621155, '-13.521420', '0.005472', '1.885355', 2801, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21156, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4621157', 4621157, '-10.004050', '0.005472', '10.072770', 2801, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20884, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4621158', 4621158, '4.713486', '0.005472', '7.360640', 2801, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20612, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4621313', 4621313, '13.703960', '0.005472', '-9.921053', 2801, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20340, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4633752', 4633752, '0.000000', '0.025700', '-19.000000', 2802, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24950, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4633753', 4633753, '-14.373760', '0.025694', '-14.166860', 2803, 0, 0, 0, 0, 6, 0, 0, 2551, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24684, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4633754', 4633754, '-3.436191', '0.025694', '-3.515284', 2805, 0, 0, 0, 3, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24418, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4633755', 4633755, '6.379251', '0.025694', '-16.615959', 2808, 0, 0, 0, 0, 6, 0, 0, 2553, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24152, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4633756', 4633756, '8.298884', '0.025694', '-16.615959', 2807, 0, 0, 0, 0, 6, 0, 0, 2552, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23886, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4633757', 4633757, '6.233904', '0.025700', '-9.148590', 2804, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23620, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4633758', 4633758, '7.271183', '0.025694', '-12.110490', 2809, 0, 0, 0, 0, 6, 0, 0, 2554, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23082, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4633759', 4633759, '-1.214509', '0.025694', '-3.320351', 2929, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22550, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4633766', 4633766, '14.598000', '0.025700', '-14.176900', 2804, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4633769', 4633769, '9.085173', '0.025694', '-12.110490', 2810, 0, 0, 0, 0, 6, 0, 0, 2555, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22816, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4634284', 4634284, '-0.045776', '1.632629', '0.045776', 2948, 0, 0, 0, 0, 6, 0, 0, 2608, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27832, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4634287', 4634287, '-0.045776', '1.632629', '0.045776', 2948, 0, 0, 0, 0, 6, 0, 0, 2608, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22176, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4680346', 4680346, '0.000000', '0.025700', '-19.000000', 2938, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27462, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4680347', 4680347, '-14.373760', '0.025694', '-14.166860', 2942, 0, 0, 0, 0, 6, 0, 0, 2551, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27196, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4680348', 4680348, '-3.463867', '0.015198', '-3.524841', 2944, 0, 0, 0, 3, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26930, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4680349', 4680349, '6.379251', '0.025694', '-16.615959', 2940, 0, 0, 0, 0, 6, 0, 0, 2553, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26664, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4680350', 4680350, '8.298884', '0.025694', '-16.615959', 2939, 0, 0, 0, 0, 6, 0, 0, 2552, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4680351', 4680351, '6.233904', '0.025700', '-9.148590', 2943, 0, 0, 0, 0, 6, 0, 0, 2550, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4680352', 4680352, '7.271183', '0.025694', '-12.110490', 2941, 0, 0, 0, 0, 6, 0, 0, 2554, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4680353', 4680353, '-1.236023', '0.015198', '-3.341736', 2945, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25600, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(359, 'o1fa_2', 'bnpc4680354', 4680354, '-0.045776', '1.632629', '0.045776', 2948, 0, 0, 0, 0, 6, 0, 0, 2608, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25280, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600222', 4600222, '-73.624763', '-10.208310', '-100.877403', 2757, 0, 0, 0, 0, 6, 0, 0, 2597, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23996, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600223', 4600223, '155.413101', '4.501404', '227.985001', 2761, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17764, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600224', 4600224, '-296.958710', '17.404200', '17.564131', 2724, 0, 0, 0, 0, 6, 0, 0, 2602, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31322, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600436', 4600436, '-13.861610', '-11.263960', '-146.508804', 2814, 0, 0, 0, 1, 6, 0, 0, 2589, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40802, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600438', 4600438, '-9.082000', '-2.426208', '-112.477699', 2813, 0, 0, 0, 1, 6, 0, 0, 2591, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40536, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600440', 4600440, '14.877500', '-11.099520', '-183.886307', 2814, 0, 0, 0, 1, 6, 0, 0, 2589, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 40258, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600442', 4600442, '-17.134460', '-11.100300', '-148.660507', 2813, 0, 0, 0, 1, 6, 0, 0, 2591, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39992, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600452', 4600452, '93.372711', '-3.731028', '33.454021', 2818, 0, 0, 0, 0, 6, 0, 0, 2750, 0, '4.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39318, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600454', 4600454, '134.813400', '-3.738525', '63.004391', 2818, 0, 0, 0, 0, 6, 0, 0, 2750, 0, '4.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39046, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600455', 4600455, '75.547363', '-3.738525', '57.083981', 2934, 0, 0, 0, 0, 6, 0, 0, 2592, 0, '4.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35502, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600457', 4600457, '109.709602', '-3.714834', '87.203979', 2935, 0, 0, 0, 0, 6, 0, 0, 2751, 0, '4.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35236, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600460', 4600460, '-9.039840', '0.781528', '147.498993', 2819, 0, 0, 0, 0, 6, 0, 0, 2593, 0, '4.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36040, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600462', 4600462, '26.260740', '0.819950', '172.289597', 2819, 0, 0, 0, 0, 6, 0, 0, 2593, 0, '4.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36312, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600463', 4600463, '75.455811', '0.832446', '138.292496', 2819, 0, 0, 0, 0, 6, 0, 0, 2593, 0, '4.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35768, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600467', 4600467, '-159.197403', '10.696530', '102.738998', 2720, 0, 0, 0, 0, 6, 0, 0, 2595, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34850, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600468', 4600468, '-60.929321', '14.419740', '60.837650', 2718, 0, 0, 0, 0, 6, 0, 0, 2594, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34584, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600469', 4600469, '-132.646698', '10.177730', '1.388489', 2719, 0, 0, 0, 0, 6, 0, 0, 2596, 0, '0.000000', 50, 0, 120, 1, 0, 33, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34318, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600470', 4600470, '77.747589', '-10.582350', '-91.129044', 434, 0, 0, 0, 0, 6, 0, 0, 2633, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600471', 4600471, '35.650700', '-9.480681', '-105.288300', 434, 0, 0, 0, 0, 6, 0, 0, 2633, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600472', 4600472, '2.619149', '-11.303330', '-188.718796', 434, 0, 0, 0, 0, 6, 0, 0, 2633, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4824, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4600473', 4600473, '-10.247380', '-11.049300', '-152.855896', 434, 0, 0, 0, 0, 6, 0, 0, 2633, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620336', 4620336, '-67.338127', '-10.178000', '-104.387001', 2758, 0, 0, 0, 1, 6, 0, 0, 2591, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23730, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620339', 4620339, '-67.826424', '-10.178000', '-104.936302', 2759, 0, 0, 0, 1, 6, 0, 0, 2589, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23464, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620352', 4620352, '-82.261414', '-10.208310', '-94.499153', 2760, 0, 0, 0, 0, 20, 0, 0, 2590, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23198, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620358', 4620358, '150.201004', '4.509544', '222.629196', 2762, 0, 0, 0, 1, 6, 0, 0, 2600, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17498, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620359', 4620359, '147.698898', '4.509544', '227.653793', 2763, 0, 0, 0, 1, 6, 0, 0, 2601, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17232, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620363', 4620363, '-264.850891', '17.593571', '18.997379', 2721, 0, 0, 0, 0, 6, 0, 0, 2604, 0, '0.000000', 50, 0, 120, 1, 0, 91, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31056, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620364', 4620364, '-264.881409', '17.593571', '17.807249', 2722, 0, 0, 0, 0, 6, 0, 0, 2605, 0, '0.000000', 50, 0, 120, 1, 0, 91, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30790, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620365', 4620365, '-267.811096', '17.593571', '15.976140', 2723, 0, 0, 0, 0, 6, 0, 0, 2606, 0, '0.000000', 50, 0, 120, 1, 0, 91, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30524, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620366', 4620366, '-267.627991', '17.593571', '21.103210', 2725, 0, 0, 0, 0, 6, 0, 0, 2607, 0, '0.000000', 50, 0, 120, 1, 0, 91, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30258, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620368', 4620368, '-296.589600', '17.379999', '20.492800', 2764, 0, 0, 0, 0, 6, 0, 0, 2603, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29992, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620537', 4620537, '162.378494', '4.509542', '225.365494', 434, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15616, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620538', 4620538, '162.052704', '4.509544', '226.875107', 434, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620539', 4620539, '161.621399', '4.509542', '228.542297', 434, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15072, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620540', 4620540, '161.041901', '4.509542', '230.164398', 434, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620541', 4620541, '160.113007', '4.509544', '231.862503', 434, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620542', 4620542, '159.149994', '4.509544', '233.482895', 434, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14256, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620543', 4620543, '158.188995', '4.509544', '234.966599', 434, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13984, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620544', 4620544, '157.086304', '4.509544', '236.526398', 434, 0, 0, 0, 0, 6, 0, 0, 2598, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13712, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620561', 4620561, '-261.078186', '17.622761', '18.472710', 434, 0, 0, 0, 0, 6, 0, 0, 2605, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24632, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620562', 4620562, '-261.078186', '17.622709', '17.592739', 434, 0, 0, 0, 0, 6, 0, 0, 2605, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24360, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4620919', 4620919, '-20.418261', '-11.049300', '-136.294998', 434, 0, 0, 0, 0, 6, 0, 0, 2633, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4621580', 4621580, '-85.833862', '-8.580495', '-92.962219', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20908, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4632468', 4632468, '-261.265900', '17.622780', '18.439501', 2831, 0, 0, 0, 0, 6, 0, 0, 2603, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27962, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4634925', 4634925, '46.737961', '-11.116050', '-96.431511', 2817, 0, 0, 0, 1, 6, 0, 0, 2585, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43392, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(360, 'w1d7', 'bnpc4634926', 4634926, '41.106880', '-10.871090', '-92.364250', 2816, 0, 0, 0, 1, 6, 0, 0, 2584, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43126, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4634929', 4634929, '-4.962070', '-2.130528', '-111.616302', 2816, 0, 0, 0, 1, 6, 0, 0, 2584, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42854, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4634930', 4634930, '-6.214492', '-1.875767', '-115.117500', 2816, 0, 0, 0, 1, 6, 0, 0, 2584, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42582, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4634933', 4634933, '11.487220', '-11.043880', '-186.641800', 2817, 0, 0, 0, 1, 6, 0, 0, 2585, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42304, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(360, 'w1d7', 'bnpc4634934', 4634934, '16.325800', '-11.008110', '-186.755203', 2816, 0, 0, 0, 1, 6, 0, 0, 2584, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42038, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4634936', 4634936, '-14.053210', '-11.096940', '-149.542099', 2817, 0, 0, 0, 1, 6, 0, 0, 2585, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 39696, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(360, 'w1d7', 'bnpc4634939', 4634939, '-4.806641', '-10.788150', '-189.135605', 2820, 0, 0, 0, 5, 6, 0, 0, 2586, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41772, 1, 3, 2000, 0, 0, 0, 4634940, 0, 0), +(360, 'w1d7', 'bnpc4634943', 4634943, '3.421977', '-3.527810', '-114.145897', 2820, 0, 0, 0, 5, 6, 0, 0, 2586, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41068, 1, 3, 2000, 0, 0, 0, 4634941, 0, 0), +(360, 'w1d7', 'bnpc4634968', 4634968, '57.596401', '9.157762', '109.399498', 2821, 0, 0, 0, 1, 6, 0, 0, 2587, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38780, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4634969', 4634969, '52.988110', '9.149729', '109.155403', 2822, 0, 0, 0, 1, 6, 0, 0, 2588, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38514, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4634970', 4634970, '54.880329', '9.141557', '105.279503', 2821, 0, 0, 0, 1, 6, 0, 0, 2587, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38236, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4634975', 4634975, '86.624207', '-1.678856', '193.072998', 2822, 0, 0, 0, 1, 6, 0, 0, 2588, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37970, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4634976', 4634976, '81.527771', '-2.076723', '192.706802', 2822, 0, 0, 0, 1, 6, 0, 0, 2588, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37698, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4634977', 4634977, '83.419861', '-2.208830', '189.227798', 2821, 0, 0, 0, 1, 6, 0, 0, 2587, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 32, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 37420, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4634978', 4634978, '50.874310', '9.141564', '101.452698', 2820, 0, 0, 0, 5, 6, 0, 0, 2586, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37124, 1, 3, 2000, 0, 0, 0, 4634979, 0, 0), +(360, 'w1d7', 'bnpc4634981', 4634981, '-248.218506', '-1.236023', '141.985107', 2820, 0, 0, 0, 2, 6, 0, 0, 2586, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33980, 1, 3, 2000, 0, 0, 0, 4634983, 0, 0), +(360, 'w1d7', 'bnpc4635011', 4635011, '67.678963', '-3.638154', '173.726196', 2820, 0, 0, 0, 5, 6, 0, 0, 2586, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36548, 1, 3, 2000, 0, 0, 0, 4635010, 0, 0), +(360, 'w1d7', 'bnpc4635019', 4635019, '-281.528412', '0.010568', '141.592102', 2820, 0, 0, 0, 5, 6, 0, 0, 2586, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33324, 1, 3, 2000, 0, 0, 0, 4635018, 0, 0), +(360, 'w1d7', 'bnpc4649857', 4649857, '-158.159805', '10.696530', '102.250702', 434, 0, 0, 0, 0, 6, 0, 0, 2595, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33124, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4679014', 4679014, '-163.042694', '10.696530', '98.588501', 2817, 0, 0, 0, 0, 6, 0, 0, 2585, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32768, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(360, 'w1d7', 'bnpc4679016', 4679016, '-155.321701', '10.696530', '98.588501', 2817, 0, 0, 0, 0, 6, 0, 0, 2585, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 16, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 32496, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(360, 'w1d7', 'bnpc4679931', 4679931, '-59.189758', '14.419740', '61.600590', 2937, 0, 0, 0, 0, 6, 0, 0, 2753, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32314, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4679932', 4679932, '-135.973206', '10.177730', '4.837097', 2936, 0, 0, 0, 0, 6, 0, 0, 2754, 0, '0.000000', 50, 0, 120, 1, 0, 33, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32048, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4679933', 4679933, '-135.973206', '10.177730', '-1.724304', 2936, 0, 0, 0, 0, 6, 0, 0, 2754, 0, '0.000000', 50, 0, 120, 1, 0, 33, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31776, 1, 3, 0, 0, 0, 0, 0, 0, 437), +(360, 'w1d7', 'bnpc4681668', 4681668, '-270.068298', '17.622801', '32.008701', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27432, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4682335', 4682335, '-270.068298', '17.622801', '32.008701', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27160, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4682336', 4682336, '-271.883514', '17.622801', '6.202800', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26888, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4682337', 4682337, '-271.883514', '17.622801', '6.202800', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26616, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4682338', 4682338, '-244.251801', '17.593599', '30.251499', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26344, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4682339', 4682339, '-244.251801', '17.593599', '30.251499', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26072, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4682340', 4682340, '-246.038696', '17.593599', '4.371000', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25800, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(360, 'w1d7', 'bnpc4682341', 4682341, '-246.038696', '17.593599', '4.371000', 434, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25528, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4685195', 4685195, '219.867203', '65.037819', '46.933300', 2968, 0, 0, 0, 0, 6, 0, 0, 2901, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58736, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4685196', 4685196, '220.233398', '64.682983', '-24.917971', 2968, 0, 0, 0, 0, 6, 0, 0, 2901, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18520, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4685199', 4685199, '-87.632568', '44.296879', '-124.864601', 2994, 0, 0, 0, 0, 6, 0, 0, 2903, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16240, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691512', 4691512, '220.172394', '63.889530', '66.117310', 2958, 0, 0, 0, 5, 6, 0, 0, 2890, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59546, 1, 0, 0, 0, 0, 0, 4742944, 0, 0), +(361, 's1d5', 'bnpc4691514', 4691514, '228.445602', '61.555710', '123.665298', 2956, 0, 0, 0, 1, 6, 0, 0, 2888, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691515', 4691515, '229.818893', '60.687939', '127.236000', 2956, 0, 0, 0, 1, 6, 0, 0, 2888, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691521', 4691521, '282.368195', '18.753229', '243.884903', 2955, 0, 0, 0, 1, 6, 0, 0, 2887, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 61976, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691522', 4691522, '283.277191', '26.236589', '203.021301', 2955, 0, 0, 0, 1, 6, 0, 0, 2887, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 62520, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691523', 4691523, '286.023712', '26.749611', '200.213699', 2955, 0, 0, 0, 1, 6, 0, 0, 2887, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 62792, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691527', 4691527, '251.697495', '27.389891', '218.677002', 2956, 0, 0, 0, 1, 6, 0, 0, 2888, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 61710, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691609', 4691609, '316.395813', '49.484989', '133.043304', 2956, 0, 0, 0, 1, 6, 0, 0, 2888, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 61438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691616', 4691616, '295.094208', '27.389891', '199.725296', 2958, 0, 0, 0, 5, 6, 0, 0, 2890, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59002, 1, 0, 0, 0, 0, 0, 4742885, 0, 0), +(361, 's1d5', 'bnpc4691617', 4691617, '251.239700', '30.136600', '187.609604', 2958, 0, 0, 0, 5, 6, 0, 0, 2890, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59274, 1, 0, 0, 0, 0, 0, 4742886, 0, 0), +(361, 's1d5', 'bnpc4691701', 4691701, '231.314301', '61.150761', '124.977600', 2957, 0, 0, 0, 1, 6, 0, 0, 2889, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691702', 4691702, '221.118393', '64.534630', '82.387077', 2957, 0, 0, 0, 1, 6, 0, 0, 2889, 0, '0.000000', 50, 0, 120, 1, 0, 15, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60356, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691704', 4691704, '218.982193', '64.499817', '81.654663', 2957, 0, 0, 0, 1, 6, 0, 0, 2889, 0, '0.000000', 50, 0, 120, 1, 0, 15, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60084, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691705', 4691705, '282.605713', '26.702280', '198.474197', 2956, 0, 0, 0, 1, 6, 0, 0, 2888, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 61166, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691706', 4691706, '284.586487', '19.185511', '240.082703', 2956, 0, 0, 0, 1, 6, 0, 0, 2888, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60894, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691707', 4691707, '254.322006', '27.084721', '220.324997', 2955, 0, 0, 0, 1, 6, 0, 0, 2887, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 62248, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691711', 4691711, '318.532013', '49.118771', '134.538696', 2957, 0, 0, 0, 1, 6, 0, 0, 2889, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59812, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(361, 's1d5', 'bnpc4691779', 4691779, '220.630096', '63.065552', '-131.700607', 2959, 0, 0, 0, 1, 6, 0, 0, 2892, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56478, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691780', 4691780, '216.784897', '63.340092', '-127.458603', 2959, 0, 0, 0, 1, 6, 0, 0, 2892, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691782', 4691782, '36.886051', '43.217800', '-168.730194', 2961, 0, 0, 0, 5, 6, 0, 0, 2894, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55940, 1, 0, 0, 0, 0, 0, 4742947, 0, 0), +(361, 's1d5', 'bnpc4691787', 4691787, '32.452221', '44.457920', '-133.988403', 2959, 0, 0, 0, 1, 6, 0, 0, 2892, 0, '0.000000', 50, 0, 120, 1, 0, 23, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56750, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691788', 4691788, '96.853691', '48.883320', '-186.838501', 2961, 0, 0, 0, 5, 6, 0, 0, 2894, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55668, 1, 0, 0, 0, 0, 0, 4742946, 0, 0), +(361, 's1d5', 'bnpc4691789', 4691789, '25.432800', '44.583111', '-132.810898', 2959, 0, 0, 0, 1, 6, 0, 0, 2892, 0, '0.000000', 50, 0, 120, 1, 0, 23, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691793', 4691793, '-201.220703', '-0.015320', '-22.629150', 2964, 0, 0, 0, 1, 6, 0, 0, 2897, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 53090, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691794', 4691794, '-201.068100', '-0.015320', '-25.558901', 2964, 0, 0, 0, 1, 6, 0, 0, 2897, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52818, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691795', 4691795, '-204.333603', '-0.015320', '-23.941410', 2965, 0, 0, 0, 1, 6, 0, 0, 2898, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52552, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691799', 4691799, '-265.766388', '4.776001', '-8.285706', 2966, 0, 0, 0, 1, 6, 0, 0, 2899, 0, '0.000000', 50, 0, 120, 1, 0, 33, 16, 0, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52014, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691807', 4691807, '-296.143799', '4.588197', '-3.825752', 2965, 0, 0, 0, 1, 6, 0, 0, 2898, 0, '0.000000', 50, 0, 120, 1, 0, 35, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52280, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691845', 4691845, '-265.400085', '4.714966', '-10.391420', 2964, 0, 0, 0, 1, 6, 0, 0, 2897, 0, '0.000000', 50, 0, 120, 1, 0, 33, 16, 0, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 53362, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691846', 4691846, '-262.684113', '4.928650', '-10.055730', 2964, 0, 0, 0, 1, 6, 0, 0, 2897, 0, '0.000000', 50, 0, 120, 1, 0, 33, 16, 0, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 53634, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4691848', 4691848, '-296.810699', '4.614835', '-31.530710', 2958, 0, 0, 0, 5, 6, 0, 0, 2890, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 51150, 1, 0, 0, 0, 0, 0, 4742949, 0, 0), +(361, 's1d5', 'bnpc4691850', 4691850, '-258.899811', '2.639771', '24.521240', 2958, 0, 0, 0, 5, 6, 0, 0, 2890, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 51422, 1, 0, 0, 0, 0, 0, 4742948, 0, 0), +(361, 's1d5', 'bnpc4691851', 4691851, '-273.701111', '5.722107', '-41.672421', 2958, 0, 0, 0, 5, 6, 0, 0, 2890, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 51694, 1, 0, 0, 0, 0, 0, 4742950, 0, 0), +(361, 's1d5', 'bnpc4719784', 4719784, '-215.472702', '0.045776', '-5.691650', 2967, 0, 0, 0, 0, 6, 0, 0, 2900, 0, '0.000000', 50, 0, 120, 1, 0, 51, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 50932, 1, 0, 16, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4719785', 4719785, '-214.770798', '0.045776', '-7.492188', 2967, 0, 0, 0, 0, 6, 0, 0, 2900, 0, '0.000000', 50, 0, 120, 1, 0, 51, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 50660, 1, 0, 16, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4719786', 4719786, '-216.308594', '0.135434', '-9.049723', 2967, 0, 0, 0, 0, 6, 0, 0, 2900, 0, '0.000000', 50, 0, 120, 1, 0, 51, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 50388, 1, 0, 16, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4719790', 4719790, '-304.842010', '4.883896', '12.075760', 2967, 0, 0, 0, 0, 6, 0, 0, 2900, 0, '0.000000', 50, 0, 120, 1, 0, 52, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 50116, 1, 0, 16, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4719791', 4719791, '-306.491791', '4.638403', '10.370730', 2967, 0, 0, 0, 0, 6, 0, 0, 2900, 0, '0.000000', 50, 0, 120, 1, 0, 52, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49844, 1, 0, 16, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4719792', 4719792, '-308.770203', '4.350281', '11.732490', 2967, 0, 0, 0, 0, 6, 0, 0, 2900, 0, '0.000000', 50, 0, 120, 1, 0, 52, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49572, 1, 0, 16, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4719793', 4719793, '214.709702', '64.713501', '-25.986210', 2969, 0, 0, 0, 1, 6, 0, 0, 2902, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18338, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4719794', 4719794, '287.098389', '18.112431', '243.884903', 2957, 0, 0, 0, 1, 6, 0, 0, 2889, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58452, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4721277', 4721277, '329.610107', '1.846313', '320.851288', 2993, 0, 0, 0, 0, 6, 0, 0, 2891, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4721279', 4721279, '334.279297', '3.067017', '320.851288', 2993, 0, 0, 0, 0, 6, 0, 0, 2891, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2664, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4721280', 4721280, '340.688110', '4.074097', '320.851288', 2993, 0, 0, 0, 0, 6, 0, 0, 2891, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4721281', 4721281, '329.030304', '0.930786', '326.710907', 2993, 0, 0, 0, 0, 6, 0, 0, 2891, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4721282', 4721282, '334.126709', '1.846313', '326.710907', 2993, 0, 0, 0, 0, 6, 0, 0, 2891, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 1848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4721283', 4721283, '338.826508', '2.548157', '326.710907', 2993, 0, 0, 0, 0, 6, 0, 0, 2891, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 1576, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4721284', 4721284, '331.868408', '0.564514', '331.502197', 2993, 0, 0, 0, 0, 6, 0, 0, 2891, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 1304, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4721285', 4721285, '337.239594', '1.205444', '331.502197', 2993, 0, 0, 0, 0, 6, 0, 0, 2891, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 1032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4724952', 4724952, '-401.052887', '-0.015320', '57.816410', 2970, 0, 0, 0, 0, 6, 0, 0, 2904, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 48142, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4724958', 4724958, '-332.349213', '0.001000', '53.530281', 2972, 0, 0, 0, 1, 6, 0, 0, 2905, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47876, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4725273', 4725273, '203.500107', '61.842449', '-154.306702', 2963, 0, 0, 0, 1, 6, 0, 0, 2896, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24780, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4725425', 4725425, '-90.192741', '44.200001', '-129.404404', 2995, 0, 0, 0, 0, 6, 0, 0, 2916, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15974, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4725438', 4725438, '93.243103', '49.435909', '-191.990601', 2962, 0, 0, 0, 1, 6, 0, 0, 2895, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55402, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4738419', 4738419, '-322.943512', '1.522797', '24.816710', 2972, 0, 0, 0, 1, 6, 0, 0, 2905, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47604, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4738420', 4738420, '-365.572388', '0.001000', '71.022057', 2972, 0, 0, 0, 1, 6, 0, 0, 2905, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47332, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4738421', 4738421, '-390.782013', '0.001000', '19.374041', 2972, 0, 0, 0, 1, 6, 0, 0, 2905, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47060, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4738422', 4738422, '-341.185913', '0.001000', '-7.451838', 2972, 0, 0, 0, 1, 6, 0, 0, 2905, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 46788, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4738423', 4738423, '-371.244812', '0.001000', '11.024700', 2972, 0, 0, 0, 1, 6, 0, 0, 2905, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 46516, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4738424', 4738424, '-359.203186', '0.000998', '0.721384', 2972, 0, 0, 0, 1, 6, 0, 0, 2905, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 46244, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4738425', 4738425, '-343.984100', '-0.015320', '62.424561', 2972, 0, 0, 0, 1, 6, 0, 0, 2905, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45972, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4738426', 4738426, '-390.782013', '0.001000', '30.169250', 2971, 0, 0, 0, 1, 6, 0, 0, 2906, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45706, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4738427', 4738427, '-331.137390', '0.001000', '12.662110', 2971, 0, 0, 0, 1, 6, 0, 0, 2906, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45434, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4758721', 4758721, '-78.767662', '44.200001', '-124.519897', 434, 0, 0, 0, 0, 6, 0, 0, 2903, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9120, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4768181', 4768181, '-332.223297', '2.000000', '34.627140', 434, 0, 0, 0, 0, 6, 0, 0, 2907, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34896, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4770637', 4770637, '-323.064087', '2.000000', '40.682598', 2973, 0, 0, 0, 0, 6, 0, 0, 2904, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34630, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4867773', 4867773, '87.388313', '47.440189', '-181.139801', 2960, 0, 0, 0, 1, 6, 0, 0, 2893, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54864, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4867774', 4867774, '85.728233', '47.412941', '-174.626205', 2960, 0, 0, 0, 1, 6, 0, 0, 2893, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54592, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4867777', 4867777, '80.115730', '46.764030', '-177.980392', 2960, 0, 0, 0, 1, 6, 0, 0, 2893, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54320, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4867780', 4867780, '28.668230', '44.378090', '-140.440201', 2959, 0, 0, 0, 1, 6, 0, 0, 2892, 0, '0.000000', 50, 0, 120, 1, 0, 23, 0, 16, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(361, 's1d5', 'bnpc4895534', 4895534, '-293.828613', '4.367013', '-0.490658', 2966, 0, 0, 0, 1, 6, 0, 0, 2899, 0, '0.000000', 50, 0, 120, 1, 0, 35, 16, 0, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 48830, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4543709', 4543709, '93.423759', '5.570610', '-114.460403', 2782, 0, 0, 0, 0, 6, 0, 0, 0, 35, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598095', 4598095, '-78.263290', '-0.150992', '68.049667', 2781, 0, 0, 0, 0, 6, 0, 0, 1300, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 73460, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598097', 4598097, '62.549511', '3.549308', '-6.726474', 2777, 0, 0, 0, 1, 6, 0, 0, 1289, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 74536, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598100', 4598100, '110.887199', '0.629032', '18.098110', 2780, 0, 0, 0, 1, 6, 0, 0, 1287, 0, '1.100000', 50, 0, 120, 1, 0, 5, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 76422, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598101', 4598101, '90.334427', '0.329811', '23.187321', 2779, 0, 0, 0, 0, 6, 0, 0, 1288, 0, '1.500000', 50, 0, 120, 1, 0, 5, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 76156, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598102', 4598102, '-113.664497', '-2.182068', '44.235840', 2776, 0, 0, 0, 1, 6, 0, 0, 2659, 0, '1.500000', 50, 0, 120, 0, 0, 1, 0, 40, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 75890, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598104', 4598104, '-106.584297', '-2.182068', '33.646118', 2776, 0, 0, 0, 0, 4, 0, 0, 2659, 0, '1.500000', 50, 0, 120, 0, 0, 1, 0, 40, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 75618, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598105', 4598105, '-106.736900', '-1.571716', '8.010925', 2785, 0, 0, 0, 2, 6, 0, 0, 1297, 0, '1.200000', 50, 0, 120, 1, 0, 0, 0, 30, 10, 0, 1, 0, 1, 1, '0.000000', '1.000000', 76688, 1, 3, 2000, 0, 0, 0, 4694541, 0, 0), +(362, 's1d6', 'bnpc4598106', 4598106, '-38.101810', '-2.182068', '51.804321', 2775, 0, 0, 0, 1, 6, 0, 0, 2660, 0, '0.000000', 50, 0, 120, 1, 0, 2, 1, 30, 1, 0, 1, 1, 1, 0, '0.000000', '1.000000', 73726, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598107', 4598107, '-1.455458', '-2.182068', '-5.943653', 2776, 0, 0, 0, 1, 6, 0, 0, 2659, 0, '1.500000', 50, 0, 120, 0, 0, 3, 2, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 75074, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598108', 4598108, '-53.147221', '-2.182068', '51.224491', 2776, 0, 0, 0, 1, 6, 0, 0, 2659, 0, '1.500000', 50, 0, 120, 0, 0, 2, 1, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 75346, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598109', 4598109, '-0.045776', '-0.412048', '1.205444', 2775, 0, 0, 0, 0, 6, 0, 0, 2660, 0, '0.000000', 50, 0, 120, 1, 0, 3, 2, 30, 2, 0, 1, 1, 1, 0, '0.000000', '1.000000', 73998, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598110', 4598110, '3.825801', '-1.991517', '-8.781772', 2775, 0, 0, 0, 1, 6, 0, 0, 2660, 0, '0.000000', 50, 0, 120, 1, 0, 3, 2, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 72374, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598112', 4598112, '-78.355103', '-2.212585', '12.405520', 2775, 0, 0, 0, 1, 6, 0, 0, 2660, 0, '0.000000', 50, 0, 120, 0, 0, 0, 0, 30, 10, 0, 1, 0, 1, 1, '0.000000', '1.000000', 72102, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598114', 4598114, '68.467163', '3.609900', '-8.636992', 2777, 0, 0, 0, 1, 6, 0, 0, 1289, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 74808, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598115', 4598115, '68.699707', '3.297478', '-2.640728', 2777, 0, 0, 0, 1, 6, 0, 0, 1289, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 74264, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598116', 4598116, '25.593880', '7.695513', '-123.868401', 2782, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22096, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598117', 4598117, '28.961260', '9.163200', '-78.883820', 2782, 0, 0, 0, 0, 6, 0, 0, 0, 35, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598118', 4598118, '122.260002', '-2.620853', '-35.947922', 2800, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60692, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598119', 4598119, '103.904198', '-2.508160', '-35.947922', 2800, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60420, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598120', 4598120, '111.466698', '-2.443487', '-40.176300', 2791, 0, 0, 0, 0, 6, 0, 0, 2548, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 61224, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598122', 4598122, '109.693298', '-2.493201', '-37.952068', 2800, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60148, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598123', 4598123, '114.305298', '-2.548279', '-37.979801', 2792, 0, 0, 0, 0, 6, 0, 0, 2654, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 60958, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598124', 4598124, '117.651497', '-2.555323', '-37.952068', 2800, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59876, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598125', 4598125, '105.750504', '-2.483121', '-37.952068', 2800, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59604, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598126', 4598126, '-22.568180', '25.523510', '-174.303802', 2793, 0, 0, 0, 0, 6, 0, 0, 2549, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41832, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598127', 4598127, '83.385208', '4.698184', '-102.556297', 2784, 0, 0, 0, 0, 6, 0, 0, 2656, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 69086, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598128', 4598128, '85.977249', '4.726597', '-97.913834', 2784, 0, 0, 0, 0, 6, 0, 0, 2656, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 69358, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598129', 4598129, '91.075493', '4.921527', '-110.656197', 2775, 0, 0, 0, 0, 6, 0, 0, 2660, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 67042, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598130', 4598130, '38.864620', '6.547797', '-85.587891', 2784, 0, 0, 0, 0, 6, 0, 0, 2656, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 68542, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598131', 4598131, '27.450930', '6.393494', '-88.761719', 2784, 0, 0, 0, 0, 6, 0, 0, 2656, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 68814, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598132', 4598132, '31.967649', '8.285820', '-80.888123', 2775, 0, 0, 0, 0, 6, 0, 0, 2660, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 66698, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598133', 4598133, '27.645050', '6.989963', '-119.125198', 2784, 0, 0, 0, 0, 6, 0, 0, 2656, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 68270, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598134', 4598134, '30.390289', '6.654240', '-117.235100', 2784, 0, 0, 0, 0, 6, 0, 0, 2656, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 67998, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4598135', 4598135, '28.918051', '7.111780', '-122.528397', 2775, 0, 0, 0, 0, 6, 0, 0, 2660, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 66154, 5, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4599002', 4599002, '-95.928123', '12.905680', '-122.721001', 2783, 0, 0, 0, 0, 6, 0, 0, 2661, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '-5.000000', 63490, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4599012', 4599012, '-75.386192', '14.520860', '-124.839104', 2775, 0, 0, 0, 1, 6, 0, 0, 2660, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 40, 1, 0, 1, 0, 1, 0, '0.000000', '-5.000000', 63998, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4599017', 4599017, '-83.024406', '12.924380', '-120.347900', 2775, 0, 0, 0, 0, 6, 0, 0, 2660, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 40, 1, 0, 1, 0, 1, 0, '0.000000', '-5.000000', 63726, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4599018', 4599018, '-149.797897', '7.827881', '-126.085297', 2786, 0, 0, 0, 1, 6, 0, 0, 2658, 0, '2.200000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '-5.000000', 64572, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4599019', 4599019, '-114.229103', '17.675200', '-153.625900', 2783, 0, 0, 0, 0, 6, 0, 0, 2661, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '-5.000000', 63218, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4599020', 4599020, '-122.947998', '15.713230', '-153.339294', 2775, 0, 0, 0, 0, 6, 0, 0, 2660, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 30, 0, 0, 1, 0, 0, 0, '0.000000', '-5.000000', 62910, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4599021', 4599021, '-100.355904', '21.282869', '-188.830704', 2783, 0, 0, 0, 0, 6, 0, 0, 2661, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '-5.000000', 62674, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4599022', 4599022, '-98.458557', '20.751940', '-183.944595', 2775, 0, 0, 0, 0, 6, 0, 0, 2660, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '-5.000000', 62366, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4599023', 4599023, '-104.234398', '20.852329', '-186.274704', 2775, 0, 0, 0, 0, 6, 0, 0, 2660, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '-5.000000', 62094, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4599024', 4599024, '-107.283699', '22.112190', '-169.392197', 2787, 0, 0, 0, 0, 6, 0, 0, 2662, 0, '0.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, '0.000000', '-5.000000', 65104, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4599035', 4599035, '-64.774658', '32.608521', '-191.576996', 2788, 0, 0, 0, 1, 6, 0, 0, 2663, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 64838, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4599073', 4599073, '-26.093220', '35.284260', '-228.399704', 2796, 0, 0, 0, 0, 6, 0, 0, 2547, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35834, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4599107', 4599107, '-47.123081', '-1.241950', '22.896099', 434, 0, 0, 0, 0, 6, 0, 0, 2547, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 77332, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4599108', 4599108, '-3.287240', '-0.405810', '-24.327801', 2778, 0, 0, 0, 0, 6, 0, 0, 2547, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 76954, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4599110', 4599110, '100.854599', '-1.411243', '-46.854450', 2781, 0, 0, 0, 0, 6, 0, 0, 1300, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67720, 1, 0, 3, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4599121', 4599121, '23.819731', '15.713710', '-61.245682', 2778, 0, 0, 0, 0, 6, 0, 0, 2547, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 69854, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4600554', 4600554, '-37.155701', '18.478640', '-123.674400', 2785, 0, 0, 0, 2, 6, 0, 0, 1297, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 64240, 1, 3, 0, 0, 0, 0, 4600557, 0, 0), +(362, 's1d6', 'bnpc4604053', 4604053, '-32.160110', '35.109791', '-237.069305', 434, 0, 0, 0, 0, 6, 0, 0, 2547, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35980, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4614300', 4614300, '62.577148', '3.158569', '-62.851990', 2777, 0, 0, 0, 1, 6, 0, 0, 1289, 0, '1.200000', 50, 0, 120, 0, 0, 13, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 66420, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4614301', 4614301, '66.453003', '3.433289', '-70.603523', 2776, 0, 0, 0, 0, 6, 0, 0, 2659, 0, '1.200000', 50, 0, 120, 0, 0, 13, 0, 30, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 69606, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621488', 4621488, '105.750504', '-2.483121', '-37.952068', 2800, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59332, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621489', 4621489, '108.318703', '-2.501143', '-37.979801', 2792, 0, 0, 0, 0, 6, 0, 0, 2654, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 59054, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621490', 4621490, '112.356201', '-1.367447', '-37.659481', 410, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58794, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621491', 4621491, '112.356201', '-1.367447', '-37.659481', 410, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58522, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621492', 4621492, '112.356201', '-1.367447', '-37.659481', 410, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58250, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621493', 4621493, '112.356201', '-1.367447', '-37.659481', 410, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57978, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621494', 4621494, '112.356201', '-1.367447', '-37.659481', 410, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57706, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621495', 4621495, '112.356201', '-1.367447', '-37.659481', 410, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57434, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621496', 4621496, '112.356201', '-1.367447', '-37.659481', 410, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57162, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621497', 4621497, '112.356201', '-1.367447', '-37.659481', 410, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56890, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621498', 4621498, '112.356201', '-1.367447', '-37.659481', 410, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56618, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621499', 4621499, '112.356201', '-1.367447', '-37.659481', 410, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56346, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621500', 4621500, '112.356201', '-1.367447', '-37.659481', 410, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56074, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621501', 4621501, '112.356201', '-1.367447', '-37.659481', 410, 0, 0, 0, 0, 6, 0, 0, 2655, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55802, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621512', 4621512, '-18.623011', '25.569229', '-178.149094', 2794, 0, 0, 0, 0, 6, 0, 0, 2656, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41566, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621513', 4621513, '-27.573059', '25.410990', '-168.130203', 2794, 0, 0, 0, 0, 6, 0, 0, 2656, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41294, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621514', 4621514, '-2.748077', '33.525291', '-186.490799', 2795, 0, 0, 0, 0, 6, 0, 0, 2660, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41028, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621581', 4621581, '-26.191490', '35.282249', '-226.824799', 2797, 0, 0, 0, 0, 6, 0, 0, 2654, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35568, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621582', 4621582, '-26.744490', '35.274521', '-229.473007', 2798, 0, 0, 0, 0, 6, 0, 0, 1385, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35302, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4621583', 4621583, '-31.524651', '35.131321', '-234.695007', 2799, 0, 0, 0, 0, 6, 0, 0, 2650, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35036, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4634027', 4634027, '-17.592890', '25.503700', '-175.064896', 434, 0, 0, 0, 0, 6, 0, 0, 2549, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4639168', 4639168, '-33.770729', '35.120850', '-241.719604', 2789, 0, 0, 0, 0, 6, 0, 0, 1300, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21830, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4639169', 4639169, '-28.915890', '35.202511', '-231.189499', 2790, 0, 0, 0, 0, 6, 0, 0, 2653, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4639172', 4639172, '-74.011917', '35.120850', '-234.725693', 2789, 0, 0, 0, 0, 6, 0, 0, 1300, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21286, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4649705', 4649705, '67.215942', '3.128052', '-62.150021', 2776, 0, 0, 0, 5, 6, 0, 0, 2659, 0, '1.200000', 50, 0, 120, 0, 0, 13, 0, 30, 1, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67430, 1, 3, 2000, 0, 0, 0, 4649706, 0, 0), +(362, 's1d6', 'bnpc4651211', 4651211, '-22.688841', '35.373371', '-231.680695', 2740, 0, 0, 0, 0, 6, 0, 0, 2660, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34458, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4685407', 4685407, '-33.870300', '35.024860', '-233.772293', 2790, 0, 0, 0, 0, 6, 0, 0, 2653, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4685408', 4685408, '-31.519329', '35.149040', '-232.723007', 2811, 0, 0, 0, 0, 6, 0, 0, 2652, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19882, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4685409', 4685409, '-33.246849', '35.069839', '-231.649200', 2812, 0, 0, 0, 0, 6, 0, 0, 2651, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19616, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(362, 's1d6', 'bnpc4722777', 4722777, '13.900940', '7.095398', '20.553890', 2785, 0, 0, 0, 5, 6, 0, 0, 1297, 0, '1.400000', 50, 0, 120, 1, 0, 0, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 71800, 1, 3, 2000, 0, 0, 0, 4651268, 0, 0), +(363, 'f1d5', 'bnpc4574970', 4574970, '142.251801', '66.269897', '-32.985401', 2927, 0, 0, 0, 3, 6, 0, 0, 2569, 0, '0.000000', 50, 2, 120, 1, 0, 17, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25566, 1, 0, 0, 4538596, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4574979', 4574979, '150.618698', '66.000000', '-41.303059', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 50324, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4574985', 4574985, '135.264099', '66.000000', '-31.526260', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 50052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4574986', 4574986, '154.526596', '66.000000', '-27.547750', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4574994', 4574994, '159.075302', '65.995239', '-45.426090', 2707, 0, 0, 0, 1, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 17, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52222, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4574998', 4574998, '137.491806', '66.068970', '-26.743490', 2707, 0, 0, 0, 1, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 17, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51950, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4575002', 4575002, '148.153595', '65.995239', '-35.139980', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4575005', 4575005, '139.016205', '65.995239', '-38.428879', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4575006', 4575006, '144.802399', '66.000000', '-25.826509', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 48964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4575007', 4575007, '138.692703', '65.995239', '-26.851160', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 48692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4575008', 4575008, '155.901398', '65.995239', '-20.645510', 2707, 0, 0, 0, 2, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 17, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51678, 1, 3, 0, 0, 0, 0, 4664434, 0, 0), +(363, 'f1d5', 'bnpc4575010', 4575010, '138.445099', '65.995239', '-42.862610', 2707, 0, 0, 0, 2, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 17, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51406, 1, 3, 0, 0, 0, 0, 4681284, 0, 0), +(363, 'f1d5', 'bnpc4577475', 4577475, '128.091003', '58.000000', '25.335770', 2710, 0, 0, 0, 0, 6, 0, 0, 2577, 0, '0.000000', 50, 0, 120, 1, 0, 16, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51092, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577479', 4577479, '128.278702', '58.000000', '18.950460', 2710, 0, 0, 0, 0, 6, 0, 0, 2577, 0, '0.000000', 50, 0, 120, 1, 0, 16, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50820, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577481', 4577481, '129.470993', '58.000000', '17.511971', 2710, 0, 0, 0, 0, 6, 0, 0, 2577, 0, '0.000000', 50, 0, 120, 1, 0, 16, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50548, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577658', 4577658, '98.017616', '42.115002', '-39.387249', 2688, 0, 0, 0, 0, 6, 0, 0, 2556, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14782, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577702', 4577702, '1.269450', '34.836300', '-95.609016', 2927, 0, 0, 0, 3, 6, 0, 0, 2569, 0, '0.000000', 50, 2, 120, 1, 0, 26, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 22654, 1, 0, 0, 4538597, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577703', 4577703, '10.905280', '7.289955', '18.237431', 2927, 0, 0, 0, 3, 6, 0, 0, 2569, 0, '0.000000', 50, 2, 120, 1, 0, 29, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 22926, 1, 0, 0, 4538791, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577723', 4577723, '6.059662', '34.099991', '-96.928528', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43164, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577727', 4577727, '-2.998388', '34.080009', '-95.884720', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42892, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577728', 4577728, '2.006936', '34.158340', '-99.309181', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42620, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577730', 4577730, '-4.874641', '34.080009', '-106.686897', 2707, 0, 0, 0, 1, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 26, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47510, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577734', 4577734, '6.654556', '34.179451', '-88.270538', 2707, 0, 0, 0, 1, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 26, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47238, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577737', 4577737, '6.910639', '34.099991', '-102.189003', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42348, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577741', 4577741, '2.359734', '34.099991', '-88.441620', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42076, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577742', 4577742, '-6.703142', '34.080009', '-95.966957', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41804, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577743', 4577743, '-7.287206', '33.943249', '-88.609734', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41532, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577747', 4577747, '9.889132', '34.064140', '-104.829597', 2707, 0, 0, 0, 2, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 26, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46966, 1, 3, 0, 0, 0, 0, 4681288, 0, 0), +(363, 'f1d5', 'bnpc4577749', 4577749, '-11.154100', '34.080009', '-95.688683', 2707, 0, 0, 0, 2, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 26, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46694, 1, 3, 0, 0, 0, 0, 4664446, 0, 0), +(363, 'f1d5', 'bnpc4577750', 4577750, '10.125500', '34.099991', '-87.194580', 2707, 0, 0, 0, 2, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 26, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46422, 1, 3, 0, 0, 0, 0, 4681297, 0, 0), +(363, 'f1d5', 'bnpc4577906', 4577906, '9.962699', '24.364691', '-25.309719', 2711, 0, 0, 0, 1, 6, 0, 0, 2578, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 56226, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577907', 4577907, '14.850660', '28.043570', '-32.661678', 2711, 0, 0, 0, 1, 6, 0, 0, 2578, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 55954, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577917', 4577917, '-30.075560', '20.404390', '-11.551090', 2712, 0, 0, 0, 0, 6, 0, 0, 2579, 0, '0.000000', 50, 0, 120, 1, 0, 28, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43654, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577925', 4577925, '-38.586040', '19.720760', '-13.014280', 2713, 0, 0, 0, 0, 6, 0, 0, 2580, 0, '0.000000', 50, 0, 120, 1, 0, 28, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 38232, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4577927', 4577927, '-34.256592', '20.099421', '-21.835751', 2713, 0, 0, 0, 0, 6, 0, 0, 2580, 0, '0.000000', 50, 0, 120, 1, 0, 28, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43400, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4578014', 4578014, '7.499823', '5.104593', '24.031931', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41260, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4578016', 4578016, '6.055747', '5.104593', '16.722410', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40988, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4578017', 4578017, '17.278460', '4.886215', '19.383711', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40716, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4578019', 4578019, '-38.399811', '11.047670', '24.404650', 2711, 0, 0, 0, 1, 6, 0, 0, 2578, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 55682, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4578020', 4578020, '-34.143051', '10.771230', '29.069920', 2711, 0, 0, 0, 1, 6, 0, 0, 2578, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 55410, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4578023', 4578023, '0.690392', '4.842963', '6.954437', 2707, 0, 0, 0, 1, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 29, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46150, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4578024', 4578024, '24.555140', '4.886215', '19.062420', 2707, 0, 0, 0, 1, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 29, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45878, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4578025', 4578025, '5.275396', '4.977459', '31.954750', 2707, 0, 0, 0, 1, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 29, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45606, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4578027', 4578027, '12.870890', '4.886215', '27.764799', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40444, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4578028', 4578028, '0.916161', '4.886215', '19.155350', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40172, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4578029', 4578029, '7.857332', '4.886215', '11.456060', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39900, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4578030', 4578030, '15.754270', '4.886215', '13.812640', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39628, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4578031', 4578031, '-3.945889', '4.886215', '15.782760', 2707, 0, 0, 0, 2, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 29, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45334, 1, 3, 0, 0, 0, 0, 4681298, 0, 0), +(363, 'f1d5', 'bnpc4578032', 4578032, '15.562830', '4.888366', '8.894380', 2707, 0, 0, 0, 2, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 29, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45062, 1, 3, 0, 0, 0, 0, 4681299, 0, 0), +(363, 'f1d5', 'bnpc4578033', 4578033, '15.534590', '4.886215', '33.604969', 2707, 0, 0, 0, 2, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 29, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44790, 1, 3, 0, 0, 0, 0, 4664448, 0, 0), +(363, 'f1d5', 'bnpc4578034', 4578034, '15.080020', '5.104593', '23.621410', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39356, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4578036', 4578036, '-2.029032', '4.886215', '13.802740', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39084, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4578038', 4578038, '13.122130', '4.899491', '10.251180', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38812, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4578039', 4578039, '3.457377', '4.977459', '26.604290', 2926, 0, 0, 0, 3, 6, 0, 0, 2570, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38540, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4578040', 4578040, '-7.735624', '4.886215', '25.134150', 2707, 0, 0, 0, 2, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 29, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44518, 1, 3, 0, 0, 0, 0, 4681300, 0, 0), +(363, 'f1d5', 'bnpc4578041', 4578041, '27.573000', '4.867554', '14.236630', 2707, 0, 0, 0, 2, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 29, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44246, 1, 3, 0, 0, 0, 0, 4664452, 0, 0), +(363, 'f1d5', 'bnpc4578042', 4578042, '21.382050', '4.867554', '30.899429', 2707, 0, 0, 0, 2, 6, 0, 0, 2574, 0, '0.000000', 50, 0, 120, 1, 0, 29, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 43974, 1, 3, 0, 0, 0, 0, 4681301, 0, 0), +(363, 'f1d5', 'bnpc4578116', 4578116, '-37.613529', '11.978270', '69.535278', 2701, 0, 0, 0, 0, 6, 0, 0, 2560, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11880, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4579257', 4579257, '25.557961', '-252.145905', '-69.588310', 2928, 0, 0, 0, 3, 6, 0, 0, 2571, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20120, 1, 0, 0, 4583478, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4579262', 4579262, '7.761974', '-252.224396', '-54.120468', 2928, 0, 0, 0, 3, 6, 0, 0, 2571, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19848, 1, 0, 0, 4583476, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4579269', 4579269, '47.718361', '-272.144714', '56.867901', 2928, 0, 0, 0, 3, 6, 0, 0, 2571, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19576, 1, 0, 0, 4583473, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4579270', 4579270, '34.029701', '-272.290192', '41.368149', 2928, 0, 0, 0, 3, 6, 0, 0, 2571, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19304, 1, 0, 0, 4583472, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4579273', 4579273, '43.040890', '-272.138794', '33.573349', 2928, 0, 0, 0, 3, 6, 0, 0, 2571, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19032, 1, 0, 0, 4583471, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4579276', 4579276, '56.921398', '-272.177399', '47.477730', 2928, 0, 0, 0, 3, 6, 0, 0, 2571, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18760, 1, 0, 0, 4583474, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4579287', 4579287, '16.585770', '-252.460602', '-61.928871', 2706, 0, 0, 0, 0, 6, 0, 0, 2573, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35974, 1, 3, 40, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4579288', 4579288, '45.365108', '-272.386292', '44.815670', 2706, 0, 0, 0, 0, 6, 0, 0, 2573, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36246, 1, 3, 40, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4579347', 4579347, '-3.740080', '-279.600006', '-9.000183', 2684, 0, 0, 0, 0, 6, 0, 0, 2564, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34960, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4617313', 4617313, '4.331043', '-279.600006', '-3.024300', 2948, 0, 0, 0, 0, 6, 0, 0, 2568, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26268, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4617314', 4617314, '8.995679', '-279.600006', '-3.767360', 2699, 0, 0, 0, 0, 6, 0, 0, 2567, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29334, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4617316', 4617316, '-0.207069', '-279.600006', '-22.642191', 2948, 0, 0, 0, 0, 6, 0, 0, 2568, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27084, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4617317', 4617317, '15.569690', '-279.600006', '-16.252871', 2948, 0, 0, 0, 0, 6, 0, 0, 2568, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27356, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4617318', 4617318, '21.597260', '-279.600006', '0.032278', 2948, 0, 0, 0, 0, 6, 0, 0, 2568, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26812, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4617319', 4617319, '16.073681', '-279.600006', '15.637000', 2948, 0, 0, 0, 0, 6, 0, 0, 2568, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26540, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4617320', 4617320, '-0.344160', '-279.600006', '22.251051', 2948, 0, 0, 0, 0, 6, 0, 0, 2568, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27900, 1, 0, 2000, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(363, 'f1d5', 'bnpc4617321', 4617321, '-16.291470', '-279.600006', '15.711980', 2948, 0, 0, 0, 0, 6, 0, 0, 2568, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28172, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4617322', 4617322, '-22.321779', '-279.600006', '0.139908', 2948, 0, 0, 0, 0, 6, 0, 0, 2568, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28444, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4617323', 4617323, '-15.778870', '-279.600006', '-15.981220', 2948, 0, 0, 0, 0, 6, 0, 0, 2568, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27628, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4618277', 4618277, '93.704300', '42.000000', '-33.972801', 2700, 0, 0, 0, 0, 6, 0, 0, 2558, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14516, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4618278', 4618278, '102.777199', '42.000000', '-34.308899', 2690, 0, 0, 0, 0, 6, 0, 0, 2559, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14250, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4619009', 4619009, '-24.994230', '12.000000', '63.379341', 2702, 0, 0, 0, 1, 6, 0, 0, 2561, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11614, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4619010', 4619010, '-24.951719', '12.166690', '67.714890', 2703, 0, 0, 0, 1, 6, 0, 0, 2562, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11348, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4619011', 4619011, '-24.866711', '12.000000', '75.705902', 2704, 0, 0, 0, 1, 6, 0, 0, 2563, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11082, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4630864', 4630864, '125.195503', '58.287701', '24.791700', 2717, 0, 0, 0, 0, 6, 0, 0, 2566, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52488, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4630883', 4630883, '-39.169922', '18.680960', '-1.968445', 2717, 0, 0, 0, 0, 6, 0, 0, 2566, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47776, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631710', 4631710, '247.986206', '82.347504', '-84.235458', 2709, 0, 0, 0, 1, 6, 0, 0, 2576, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 59984, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631711', 4631711, '247.690903', '82.287498', '-87.458977', 2709, 0, 0, 0, 1, 6, 0, 0, 2576, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 59712, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631755', 4631755, '205.534897', '82.261353', '-71.411186', 2708, 0, 0, 0, 1, 6, 0, 0, 2575, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 59446, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631759', 4631759, '211.540100', '82.261353', '-74.908653', 2712, 0, 0, 0, 0, 6, 0, 0, 2579, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 57394, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631760', 4631760, '212.931793', '82.261353', '-70.913261', 2708, 0, 0, 0, 1, 6, 0, 0, 2575, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 59174, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631763', 4631763, '215.564102', '73.990967', '-34.226009', 2708, 0, 0, 0, 1, 6, 0, 0, 2575, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 58902, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631764', 4631764, '209.023102', '74.000000', '-39.437119', 2712, 0, 0, 0, 0, 6, 0, 0, 2579, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 56850, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631813', 4631813, '196.086395', '72.971611', '-43.525822', 2705, 0, 0, 0, 5, 6, 0, 0, 2572, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58508, 1, 3, 2000, 0, 0, 0, 4631799, 0, 0), +(363, 'f1d5', 'bnpc4631823', 4631823, '208.539703', '74.000000', '-21.384439', 2705, 0, 0, 0, 5, 6, 0, 0, 2572, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 58092, 1, 3, 2000, 0, 0, 0, 4631819, 0, 0), +(363, 'f1d5', 'bnpc4631830', 4631830, '155.299896', '58.187500', '14.151450', 2705, 0, 0, 0, 5, 6, 0, 0, 2572, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 57660, 1, 3, 2000, 0, 0, 0, 4631828, 0, 0), +(363, 'f1d5', 'bnpc4631832', 4631832, '155.875305', '58.182621', '18.410879', 2710, 0, 0, 0, 1, 6, 0, 0, 2577, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 56584, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631833', 4631833, '161.691299', '58.182621', '20.271860', 2712, 0, 0, 0, 1, 6, 0, 0, 2579, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 57122, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631926', 4631926, '70.509163', '44.000019', '-78.865547', 2713, 0, 0, 0, 1, 6, 0, 0, 2580, 0, '0.000000', 50, 0, 120, 1, 0, 24, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 55144, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631927', 4631927, '68.214394', '44.075359', '-84.057213', 2712, 0, 0, 0, 1, 6, 0, 0, 2579, 0, '0.000000', 50, 0, 120, 1, 0, 24, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 54854, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631938', 4631938, '23.763590', '-252.421204', '-65.620193', 2715, 0, 0, 0, 0, 6, 0, 0, 2582, 0, '0.000000', 50, 0, 120, 1, 0, 41, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 54510, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631942', 4631942, '20.463511', '-252.516098', '-68.267609', 2715, 0, 0, 0, 0, 6, 0, 0, 2582, 0, '0.000000', 50, 0, 120, 1, 0, 41, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 54238, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631950', 4631950, '9.111257', '-252.591797', '-57.392769', 2714, 0, 0, 0, 0, 6, 0, 0, 2581, 0, '0.000000', 50, 0, 120, 1, 0, 41, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52890, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631953', 4631953, '44.208679', '-272.200012', '35.845711', 2716, 0, 0, 0, 0, 6, 0, 0, 2583, 0, '0.000000', 50, 0, 120, 1, 0, 42, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53972, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631957', 4631957, '37.015759', '-272.400085', '41.958561', 2716, 0, 0, 0, 0, 6, 0, 0, 2583, 0, '0.000000', 50, 0, 120, 1, 0, 42, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53700, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631960', 4631960, '47.338520', '-272.350006', '54.234310', 2716, 0, 0, 0, 0, 6, 0, 0, 2583, 0, '0.000000', 50, 0, 120, 1, 0, 42, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53428, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4631962', 4631962, '52.941559', '-272.399994', '46.068550', 2716, 0, 0, 0, 0, 6, 0, 0, 2583, 0, '0.000000', 50, 0, 120, 1, 0, 42, 0, 99, 8, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53156, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(363, 'f1d5', 'bnpc4635164', 4635164, '-21.158211', '12.000000', '70.006020', 2702, 0, 0, 0, 1, 6, 0, 0, 2561, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5806, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4405787', 4405787, '0.000000', '0.000000', '-10.000000', 221, 0, 0, 0, 8, 6, 0, 0, 718, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19580, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4405789', 4405789, '-15.000000', '0.000000', '13.000000', 222, 0, 0, 0, 8, 6, 0, 0, 719, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19314, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4405791', 4405791, '-21.000000', '0.000000', '0.000000', 223, 0, 0, 0, 8, 6, 0, 0, 720, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19048, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4405792', 4405792, '0.000000', '0.000000', '-21.000000', 224, 0, 0, 0, 8, 6, 0, 0, 721, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18782, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4405794', 4405794, '16.000000', '0.000000', '0.000000', 225, 0, 0, 0, 8, 6, 0, 0, 722, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18516, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4405795', 4405795, '0.000000', '0.000000', '0.000000', 226, 0, 0, 0, 8, 6, 0, 0, 723, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18250, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4405797', 4405797, '0.000000', '-0.000003', '21.000000', 227, 0, 0, 0, 8, 6, 0, 0, 724, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17984, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4405798', 4405798, '0.000000', '0.000000', '0.000000', 228, 0, 0, 0, 8, 6, 0, 0, 725, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17718, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4406218', 4406218, '-0.121937', '0.000000', '3.948129', 2946, 0, 0, 0, 8, 6, 0, 0, 721, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 17186, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4440620', 4440620, '2.148135', '0.000000', '3.522915', 2286, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17452, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4493420', 4493420, '-1.239345', '0.000000', '2.318576', 2946, 0, 0, 0, 8, 6, 0, 0, 722, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16914, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4493421', 4493421, '0.559351', '0.000000', '2.318576', 2946, 0, 0, 0, 8, 6, 0, 0, 725, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16642, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4620975', 4620975, '-2.000000', '0.000000', '-3.000000', 229, 0, 0, 0, 0, 6, 0, 0, 718, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16260, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4620976', 4620976, '2.000000', '0.000000', '3.000000', 230, 0, 0, 0, 0, 6, 0, 0, 719, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15994, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4620977', 4620977, '2.000000', '0.000000', '-3.000000', 231, 0, 0, 0, 0, 6, 0, 0, 720, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15728, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4620978', 4620978, '-4.000000', '0.000000', '0.000000', 232, 0, 0, 0, 0, 6, 0, 0, 721, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15462, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4620979', 4620979, '4.000000', '0.000000', '0.000000', 233, 0, 0, 0, 0, 6, 0, 0, 722, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15196, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4620980', 4620980, '-2.000000', '0.000000', '3.000000', 234, 0, 0, 0, 0, 6, 0, 0, 723, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14930, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4620981', 4620981, '0.000000', '0.000000', '4.000000', 235, 0, 0, 0, 0, 6, 0, 0, 724, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14664, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4620982', 4620982, '0.000000', '0.000000', '-8.000000', 236, 0, 0, 0, 0, 6, 0, 0, 2752, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14398, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4620983', 4620983, '8.853262', '0.000000', '-4.575181', 2946, 0, 0, 0, 0, 6, 0, 0, 720, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14078, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4620984', 4620984, '8.853262', '0.000000', '-0.780932', 2946, 0, 0, 0, 0, 6, 0, 0, 721, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13806, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4620985', 4620985, '8.853262', '0.000000', '2.281526', 2946, 0, 0, 0, 0, 6, 0, 0, 722, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13534, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(364, 'f1fa_2', 'bnpc4660347', 4660347, '9.008945', '0.000000', '4.349893', 2947, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13316, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(366, 'r1fb', 'bnpc4630943', 4630943, '132.175293', '-5.000000', '-0.434507', 2823, 0, 0, 0, 0, 6, 0, 0, 2665, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9676, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(366, 'r1fb', 'bnpc4635053', 4635053, '129.321899', '-5.000000', '-4.245176', 2824, 0, 0, 0, 0, 6, 0, 0, 2666, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9046, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(366, 'r1fb', 'bnpc4635054', 4635054, '129.324493', '-5.000000', '3.398318', 2930, 0, 0, 0, 0, 6, 0, 0, 2665, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5972, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(366, 'r1fb', 'bnpc4635067', 4635067, '-49.243591', '2.000000', '-0.113708', 2823, 0, 0, 0, 0, 6, 0, 0, 2665, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4592, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(366, 'r1fb', 'bnpc4635068', 4635068, '-52.840260', '2.000000', '-3.918317', 2824, 0, 0, 0, 0, 6, 0, 0, 2666, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4326, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(366, 'r1fb', 'bnpc4635069', 4635069, '-55.286400', '2.000000', '-0.140135', 2825, 0, 0, 0, 0, 6, 0, 0, 2667, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4072, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(366, 'r1fb', 'bnpc4635081', 4635081, '-7.773800', '0.000000', '-2.802737', 2826, 0, 0, 0, 1, 6, 0, 0, 2668, 0, '0.000000', 50, 0, 120, 1, 0, 0, 10, 99, 8, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12252, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(366, 'r1fb', 'bnpc4635082', 4635082, '-7.629676', '0.000000', '1.957764', 2826, 0, 0, 0, 1, 6, 0, 0, 2668, 0, '0.000000', 50, 0, 120, 1, 0, 0, 10, 99, 8, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11980, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(366, 'r1fb', 'bnpc4635083', 4635083, '-4.349111', '0.000000', '-0.537839', 2827, 0, 0, 0, 0, 6, 0, 0, 2669, 0, '0.000000', 50, 0, 120, 1, 0, 0, 10, 99, 8, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10354, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(366, 'r1fb', 'bnpc4635084', 4635084, '40.315090', '-7.000000', '0.157485', 2826, 0, 0, 0, 0, 6, 0, 0, 2668, 0, '0.000000', 50, 0, 120, 1, 0, 0, 11, 99, 8, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11708, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(366, 'r1fb', 'bnpc4635085', 4635085, '45.258869', '-7.000000', '-2.667388', 2827, 0, 0, 0, 0, 6, 0, 0, 2669, 0, '0.000000', 50, 0, 120, 1, 0, 0, 11, 99, 8, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11442, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(366, 'r1fb', 'bnpc4635086', 4635086, '44.728580', '-7.000000', '3.766137', 2827, 0, 0, 0, 0, 6, 0, 0, 2669, 0, '0.000000', 50, 0, 120, 1, 0, 0, 11, 99, 8, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10082, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(366, 'r1fb', 'bnpc4635088', 4635088, '86.752617', '-7.000000', '0.368643', 2826, 0, 0, 0, 0, 6, 0, 0, 2668, 0, '0.000000', 50, 0, 120, 1, 0, 0, 12, 99, 8, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11164, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(366, 'r1fb', 'bnpc4635089', 4635089, '81.714943', '-7.000000', '-2.735896', 2827, 0, 0, 0, 0, 6, 0, 0, 2669, 0, '0.000000', 50, 0, 120, 1, 0, 0, 12, 99, 8, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10898, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(366, 'r1fb', 'bnpc4635090', 4635090, '81.717140', '-7.000000', '3.645530', 2827, 0, 0, 0, 0, 6, 0, 0, 2669, 0, '0.000000', 50, 0, 120, 1, 0, 0, 12, 99, 8, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10626, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(366, 'r1fb', 'bnpc4651256', 4651256, '128.233398', '-5.000000', '-4.260827', 2931, 0, 0, 0, 0, 6, 0, 0, 2665, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877907', 4877907, '-60.514729', '-12.000010', '-56.188679', 1758, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877909', 4877909, '-69.099564', '-12.000010', '-63.725731', 1764, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877910', 4877910, '-79.890457', '-12.000010', '-62.288101', 1768, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877911', 4877911, '-74.570992', '-12.000000', '-53.318352', 1764, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24114, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877912', 4877912, '-34.256039', '-17.999990', '-4.091128', 1765, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23854, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877913', 4877913, '-42.131271', '-17.999990', '2.425258', 1765, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877916', 4877916, '-26.743610', '-17.999990', '2.409045', 1766, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23316, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877917', 4877917, '-147.128006', '12.000000', '-0.294096', 1762, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23050, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877918', 4877918, '-150.647797', '12.000000', '5.331558', 1762, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877919', 4877919, '-151.324203', '12.000000', '-4.778393', 1762, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22506, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877933', 4877933, '60.410889', '-40.560020', '-59.673981', 9, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21802, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877934', 4877934, '68.750412', '-41.953850', '-47.966480', 10, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877935', 4877935, '67.946220', '-40.285271', '-57.330341', 9, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21258, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877936', 4877936, '54.947750', '-49.942810', '-7.980469', 1756, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20998, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877938', 4877938, '86.045647', '-34.592220', '65.506958', 1759, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20732, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877939', 4877939, '58.422260', '-38.278461', '60.683121', 10, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20448, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877940', 4877940, '56.679401', '-41.250259', '50.223381', 10, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 20176, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877941', 4877941, '64.814217', '-38.743500', '58.930710', 9, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19898, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877942', 4877942, '134.254593', '-36.984200', '51.619411', 1766, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19608, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877943', 4877943, '144.290405', '-40.365360', '44.900589', 1766, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19336, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877944', 4877944, '126.450798', '-35.926041', '56.177269', 1766, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 19064, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877946', 4877946, '192.456696', '-46.220531', '-3.260695', 1756, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4877947', 4877947, '190.883408', '-45.430889', '8.270744', 1756, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4878023', 4878023, '192.647400', '-4.000017', '-75.434982', 1510, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4878024', 4878024, '189.812500', '-4.000017', '-76.352188', 1511, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14392, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4878025', 4878025, '188.921906', '-4.013123', '-73.594299', 1512, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14126, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4878041', 4878041, '39.472130', '-19.000059', '3.469959', 29, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 13860, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4879963', 4879963, '-37.422562', '-18.792400', '-59.404079', 20, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13594, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4879964', 4879964, '-30.068300', '-19.000000', '-46.686050', 20, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13322, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4879965', 4879965, '10.203960', '-18.906370', '-37.652119', 20, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13050, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4879966', 4879966, '75.755432', '-17.999941', '-32.984379', 20, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 12778, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4879967', 4879967, '77.096138', '-17.999941', '30.672050', 20, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 12506, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4893271', 4893271, '66.612717', '-49.294571', '-7.984327', 1757, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18290, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4893272', 4893272, '59.370850', '-49.534069', '-3.836365', 1757, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18018, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4893275', 4893275, '50.890591', '-50.301559', '-8.228319', 1757, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17746, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4893276', 4893276, '47.162380', '-49.835381', '-14.901880', 1757, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17474, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4893296', 4893296, '188.389999', '-45.691792', '-14.493370', 1757, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17202, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4893297', 4893297, '191.938095', '-45.900959', '-12.129670', 1757, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16930, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4893298', 4893298, '195.079605', '-46.132961', '-9.224874', 1757, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16658, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4893300', 4893300, '199.022995', '-46.331539', '-6.323536', 1757, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16386, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4893301', 4893301, '202.311203', '-46.236759', '0.717613', 1757, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16114, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4893302', 4893302, '199.951797', '-45.628361', '6.326140', 1757, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15842, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4893303', 4893303, '196.647003', '-44.959499', '10.983840', 1757, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15570, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4893304', 4893304, '192.687195', '-44.291241', '14.768750', 1757, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15298, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4893332', 4893332, '-45.304081', '-51.010990', '-1.236023', 1901, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22240, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4893336', 4893336, '240.037506', '-3.999998', '2.428795', 1998, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(367, 'w1d8', 'bnpc4893337', 4893337, '114.888802', '-3.999329', '-0.185507', 1756, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12186, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4291453', 4291453, '155.132599', '222.009995', '348.043488', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41428, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4291457', 4291457, '272.663513', '222.247696', '334.248901', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41156, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4291464', 4291464, '220.038406', '302.644592', '-149.387497', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40890, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4291467', 4291467, '177.878494', '301.664612', '-190.712402', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40618, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4291540', 4291540, '264.301514', '302.632202', '-284.870697', 1774, 0, 0, 0, 0, 6, 0, 0, 1582, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40346, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4291544', 4291544, '-136.888702', '304.096985', '-285.084290', 1775, 0, 0, 0, 0, 6, 0, 0, 1583, 0, '0.000000', 41, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40080, 5, 0, 0, 0, 0, 30051, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4291545', 4291545, '-494.600586', '204.213104', '-188.481094', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39796, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4291549', 4291549, '-535.141113', '204.035507', '-287.671906', 1773, 0, 0, 0, 0, 6, 0, 0, 1581, 0, '0.000000', 43, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39524, 5, 0, 0, 0, 0, 30053, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4296962', 4296962, '6.586450', '224.231003', '359.448090', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 165084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4296996', 4296996, '16.820339', '216.422195', '389.762604', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4296997', 4296997, '31.967649', '236.529999', '323.628510', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164540, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4296998', 4296998, '72.035683', '242.920105', '316.766113', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 164268, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4296999', 4296999, '79.061470', '241.243393', '319.846802', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163996, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297000', 4297000, '112.809898', '239.429306', '294.575287', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163724, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297001', 4297001, '58.960991', '253.937698', '281.400696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163452, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297003', 4297003, '10.569400', '224.790207', '357.938599', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 35, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 163180, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297008', 4297008, '354.657288', '224.892807', '300.765289', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162914, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297010', 4297010, '417.257904', '226.214996', '374.532593', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162642, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297011', 4297011, '421.699005', '227.744202', '370.285492', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162370, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297012', 4297012, '330.572113', '223.491394', '369.867493', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 162098, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297013', 4297013, '429.534393', '217.970001', '417.141296', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161826, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297015', 4297015, '417.746185', '217.952194', '480.668488', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161554, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297016', 4297016, '422.541687', '219.795303', '494.286896', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161282, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297019', 4297019, '411.649689', '220.784195', '484.018890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 161010, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297021', 4297021, '181.170303', '242.354599', '223.538406', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160744, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297025', 4297025, '342.033508', '264.985504', '103.754501', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160472, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297026', 4297026, '88.700684', '244.067993', '303.089813', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 160200, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297027', 4297027, '88.700684', '222.003494', '420.492798', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159928, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297028', 4297028, '-25.009581', '205.387497', '480.682007', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159656, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297029', 4297029, '398.841614', '224.765701', '381.022705', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159384, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297232', 4297232, '-397.424805', '210.788193', '-238.255402', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38242, 8, 0, 0, 4128002, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297234', 4297234, '-397.352997', '210.788193', '-233.666794', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37970, 8, 0, 0, 4128001, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297235', 4297235, '-397.251587', '210.788193', '-228.848999', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 50, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37698, 8, 0, 0, 4128000, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297236', 4297236, '-423.044800', '210.788193', '-221.963104', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37426, 8, 0, 0, 4297227, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297238', 4297238, '-413.101990', '210.788193', '-212.035004', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37154, 8, 0, 0, 4297228, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297239', 4297239, '-417.529114', '210.788193', '-217.341202', 901, 0, 0, 0, 0, 6, 0, 0, 541, 0, '0.000000', 1, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36882, 8, 0, 0, 4297229, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297336', 4297336, '168.169693', '276.447601', '-48.600040', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 159112, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297337', 4297337, '264.687988', '294.602692', '-93.670403', 720, 0, 0, 0, 1, 6, 0, 0, 1612, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158840, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297346', 4297346, '280.170807', '253.192902', '147.692001', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158574, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297350', 4297350, '334.350311', '248.434402', '184.154297', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158302, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297353', 4297353, '327.623993', '256.382294', '132.340805', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 158030, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297354', 4297354, '291.785187', '269.499786', '39.650711', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157758, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297356', 4297356, '192.950302', '271.137512', '3.646851', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157486, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297359', 4297359, '285.844391', '267.842712', '44.338120', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 157214, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297363', 4297363, '173.391296', '272.125793', '-12.465330', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156942, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297364', 4297364, '249.355698', '270.133301', '26.395069', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4297365', 4297365, '203.100204', '254.232300', '149.502304', 395, 0, 0, 0, 1, 6, 0, 0, 784, 0, '0.000000', 36, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156398, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298567', 4298567, '157.396698', '293.324097', '-98.374939', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 156114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298571', 4298571, '159.523300', '293.493011', '-99.299156', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298572', 4298572, '135.779297', '299.755890', '-101.941704', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298573', 4298573, '136.228699', '283.407715', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298574', 4298574, '258.647614', '289.809692', '-69.530281', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 155026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298575', 4298575, '254.634094', '287.557098', '-64.855118', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298576', 4298576, '268.831512', '284.212891', '-40.760189', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154482, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298741', 4298741, '251.759094', '294.415894', '-111.584099', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 154210, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298744', 4298744, '288.151489', '302.427002', '-86.886337', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153938, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298765', 4298765, '321.597290', '303.200989', '-338.780914', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298767', 4298767, '346.691895', '304.562286', '-319.108887', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298770', 4298770, '357.329712', '304.360687', '-356.956696', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 153116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298772', 4298772, '407.769012', '305.618500', '-327.457397', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298773', 4298773, '412.865387', '304.484802', '-333.469391', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298780', 4298780, '365.239410', '319.169586', '-254.025299', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152300, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298781', 4298781, '388.845612', '321.034485', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 152028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298784', 4298784, '476.218811', '327.076996', '-401.632813', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151756, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298787', 4298787, '494.638214', '304.602112', '-349.542206', 731, 0, 0, 0, 1, 6, 0, 0, 659, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151484, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298790', 4298790, '182.909805', '336.140900', '-467.124512', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 151236, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298792', 4298792, '150.108704', '345.173309', '-380.467590', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150964, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298794', 4298794, '146.329498', '347.075287', '-385.583313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150692, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298812', 4298812, '253.761307', '343.590393', '-494.726715', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150420, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298813', 4298813, '294.270294', '329.274292', '-477.805786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 150148, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298814', 4298814, '212.636703', '327.759796', '-433.014313', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149876, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298815', 4298815, '412.045288', '353.824188', '-499.736786', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149604, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298816', 4298816, '394.674591', '355.184204', '-555.809875', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149332, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298823', 4298823, '260.181488', '356.282806', '-541.374878', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 149066, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298824', 4298824, '188.311493', '357.747803', '-557.427429', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298825', 4298825, '285.877686', '359.578705', '-569.421021', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148522, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298835', 4298835, '126.756599', '376.088989', '-671.473328', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 148250, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298837', 4298837, '356.375610', '356.320007', '-595.291321', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147978, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298842', 4298842, '468.223511', '349.470490', '-668.565430', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147700, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298844', 4298844, '531.422729', '348.817993', '-732.418884', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147428, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298845', 4298845, '539.850708', '348.653900', '-745.830627', 646, 0, 0, 0, 1, 6, 0, 0, 794, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 147156, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298846', 4298846, '96.262070', '375.573090', '-645.236084', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298847', 4298847, '618.677002', '325.703705', '-430.685913', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298848', 4298848, '626.867126', '322.872803', '-394.244293', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298849', 4298849, '673.548279', '293.690308', '-320.820892', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 146080, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298851', 4298851, '584.470276', '282.391998', '-315.705292', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145808, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298852', 4298852, '599.206482', '281.914215', '-300.226898', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145536, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298853', 4298853, '564.033630', '282.951599', '-300.851807', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 145264, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298854', 4298854, '684.587830', '306.511292', '-363.764191', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144992, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298855', 4298855, '562.945190', '342.102997', '-474.200287', 390, 0, 0, 0, 1, 6, 0, 0, 1182, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144720, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298858', 4298858, '463.976410', '249.572906', '-308.802399', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144454, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298859', 4298859, '473.929901', '247.699707', '-302.357513', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 144182, 1, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(368, 'r1f1_battle', 'bnpc4298860', 4298860, '490.206787', '271.288086', '-298.332397', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143910, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298861', 4298861, '397.627808', '248.461594', '-320.859192', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298862', 4298862, '283.789703', '236.298401', '-325.220306', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143366, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298863', 4298863, '291.652496', '235.940796', '-331.188995', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 143094, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298864', 4298864, '296.253906', '234.759995', '-368.673309', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298866', 4298866, '473.213501', '248.114304', '-259.048889', 388, 0, 0, 0, 1, 6, 0, 0, 658, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142550, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298871', 4298871, '614.450012', '323.410309', '-400.318604', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142284, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298873', 4298873, '668.683716', '306.076996', '-365.426788', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 142012, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298882', 4298882, '683.369995', '295.457611', '-324.276794', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141740, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298884', 4298884, '681.273376', '295.122589', '-325.174805', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141468, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298886', 4298886, '581.921387', '282.296997', '-294.985413', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 141196, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298888', 4298888, '584.498718', '282.204895', '-290.600891', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140924, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298891', 4298891, '598.967285', '282.223602', '-314.123505', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140652, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298892', 4298892, '570.297485', '282.771301', '-310.753998', 45, 0, 0, 0, 1, 6, 0, 0, 2918, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140380, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298900', 4298900, '532.146484', '235.205200', '301.718414', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 140114, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298901', 4298901, '548.790588', '235.278793', '308.827301', 114, 0, 0, 0, 1, 6, 0, 0, 662, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139848, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298902', 4298902, '539.909912', '235.309296', '290.943695', 115, 0, 0, 0, 0, 6, 0, 0, 661, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139582, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298903', 4298903, '543.114685', '235.512100', '292.484009', 116, 0, 0, 0, 0, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139316, 1, 0, 0, 0, 0, 30119, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298911', 4298911, '465.921387', '232.736298', '321.428497', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 139026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298914', 4298914, '485.744812', '233.755707', '315.057404', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 30, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138772, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298917', 4298917, '8.385859', '200.822098', '514.171082', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138506, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298919', 4298919, '3.468143', '219.127502', '377.671387', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 138234, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298921', 4298921, '56.439899', '213.878601', '395.393188', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137962, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298922', 4298922, '32.688740', '261.800201', '264.078491', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137690, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298924', 4298924, '31.549110', '262.086487', '260.424103', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137418, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298925', 4298925, '97.214867', '251.860901', '270.377808', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 137146, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298926', 4298926, '65.567993', '240.283707', '329.732208', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136874, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298928', 4298928, '173.567596', '231.665298', '266.478912', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136602, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298932', 4298932, '267.711090', '226.465698', '281.598785', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136330, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298933', 4298933, '349.538513', '232.623795', '259.540588', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 136058, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298934', 4298934, '353.841400', '234.302200', '255.420700', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135786, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298937', 4298937, '398.091797', '226.637100', '344.024994', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 35, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135514, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298938', 4298938, '278.828003', '242.816803', '203.601105', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 135242, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298941', 4298941, '191.013199', '256.839386', '104.428802', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134970, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4298943', 4298943, '248.318405', '261.876587', '67.776207', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134698, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299053', 4299053, '152.027496', '277.941711', '34.020439', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134426, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299054', 4299054, '235.312393', '277.402405', '-48.467419', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 134154, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299057', 4299057, '191.224899', '284.341797', '-81.645477', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 36, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133882, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299063', 4299063, '374.380005', '306.477386', '-331.197113', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133610, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299079', 4299079, '343.678802', '311.085602', '-403.738495', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133338, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299081', 4299081, '278.156586', '313.466095', '-429.770386', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 133066, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299082', 4299082, '347.909790', '309.989197', '-275.124512', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132794, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299084', 4299084, '404.743988', '318.417908', '-277.971985', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132522, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299088', 4299088, '457.550507', '305.113708', '-285.144989', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 132250, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299091', 4299091, '458.811310', '305.676910', '-289.211914', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131978, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299093', 4299093, '502.242096', '302.581390', '-245.190903', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131706, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299094', 4299094, '502.391815', '308.429413', '-356.438385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131434, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299096', 4299096, '502.046387', '342.161713', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 131162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299098', 4299098, '424.421387', '339.137909', '-432.669098', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299099', 4299099, '429.241394', '341.024200', '-436.179199', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299100', 4299100, '218.158203', '330.586700', '-473.045013', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299102', 4299102, '173.367004', '339.026001', '-390.899200', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 130074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299103', 4299103, '119.335899', '353.367310', '-336.673615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299106', 4299106, '166.454803', '348.701294', '-492.608795', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299107', 4299107, '432.587189', '365.876801', '-537.769714', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 129258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299110', 4299110, '418.305603', '349.797699', '-685.625427', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128986, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299112', 4299112, '485.808594', '353.806305', '-658.057312', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128714, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299114', 4299114, '298.678589', '345.167297', '-521.747192', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128442, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299115', 4299115, '198.874802', '362.118011', '-601.265076', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 128170, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299116', 4299116, '138.675293', '374.013306', '-661.681824', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127898, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299117', 4299117, '324.054291', '360.242188', '-582.895081', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127626, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299119', 4299119, '283.839905', '362.149506', '-625.782288', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127354, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299120', 4299120, '210.687897', '361.424805', '-658.411926', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 127082, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299121', 4299121, '205.782394', '360.548187', '-666.505615', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126810, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299188', 4299188, '105.119400', '289.448395', '-164.568604', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120116, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299192', 4299192, '62.638309', '289.814606', '-219.226395', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119844, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299194', 4299194, '-1.358093', '310.902496', '-142.015701', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119572, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299195', 4299195, '-58.910789', '304.604401', '-272.412598', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119300, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299197', 4299197, '-86.450127', '300.163605', '-170.834900', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 119028, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299198', 4299198, '137.090607', '290.130798', '-258.218414', 720, 0, 0, 0, 1, 6, 0, 0, 1611, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118756, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299208', 4299208, '-115.231300', '298.469788', '-208.100098', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299210', 4299210, '-205.664902', '281.635010', '-192.517700', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118284, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299213', 4299213, '-107.621902', '300.038086', '-137.041306', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 118012, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299215', 4299215, '-158.759003', '292.966492', '-201.171295', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117740, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299216', 4299216, '-162.136307', '291.173187', '-194.256607', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117468, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299217', 4299217, '-205.676498', '283.894012', '-114.763100', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 117196, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299218', 4299218, '-212.088394', '285.828400', '-56.427200', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299219', 4299219, '-290.402100', '261.601898', '-157.738800', 403, 0, 0, 0, 1, 6, 0, 0, 1183, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116652, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299227', 4299227, '-318.632690', '255.833298', '-42.884541', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101716, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299230', 4299230, '-340.376007', '259.605804', '-64.511017', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101444, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299231', 4299231, '-317.614502', '256.207092', '-97.947693', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101172, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299233', 4299233, '-257.298615', '264.585693', '-65.689346', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100900, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299235', 4299235, '-249.965302', '269.336914', '-76.447701', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100628, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299236', 4299236, '-353.139587', '237.921494', '-157.603195', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100356, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299238', 4299238, '-423.544708', '240.253296', '-111.314598', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 100084, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299241', 4299241, '-359.502197', '233.804596', '-160.537003', 143, 0, 0, 0, 1, 6, 0, 0, 2156, 0, '0.000000', 39, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99812, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299242', 4299242, '-578.240723', '227.008408', '-125.078201', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116386, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299244', 4299244, '-499.116089', '237.639496', '-97.965683', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 116114, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299247', 4299247, '-655.179871', '229.729202', '-54.205719', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115842, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299249', 4299249, '-483.586609', '226.184692', '-125.489799', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115570, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299250', 4299250, '-477.837402', '228.009293', '-122.481400', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115298, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299252', 4299252, '-573.938416', '231.500397', '-73.804337', 644, 0, 0, 0, 1, 6, 0, 0, 790, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 115026, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299254', 4299254, '-600.372192', '209.926697', '-352.855804', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299256', 4299256, '-623.961182', '211.311707', '-374.720001', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114488, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299257', 4299257, '-624.778992', '210.859299', '-381.588593', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 114216, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299258', 4299258, '-586.229492', '201.455200', '-440.921997', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299259', 4299259, '-583.154114', '188.738800', '-477.195404', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113672, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299260', 4299260, '-653.461182', '211.102798', '-435.622009', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113400, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299422', 4299422, '-650.603027', '204.070007', '-488.214691', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 113128, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299424', 4299424, '-551.951416', '206.791595', '-350.856995', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112856, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299425', 4299425, '-612.623779', '216.144806', '-319.243988', 387, 0, 0, 0, 1, 6, 0, 0, 637, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299426', 4299426, '-853.938416', '226.438599', '25.457430', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112318, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299427', 4299427, '-879.604614', '229.180099', '-15.122490', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 112046, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299428', 4299428, '-894.004272', '228.026398', '0.443500', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111774, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299429', 4299429, '-907.681885', '249.338104', '26.397079', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299430', 4299430, '-907.681885', '247.122192', '-24.585300', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 111230, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299431', 4299431, '-938.982971', '269.272095', '1.981136', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299433', 4299433, '-951.375916', '276.008698', '-32.272030', 394, 0, 0, 0, 1, 6, 0, 0, 1850, 0, '0.000000', 40, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110686, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299593', 4299593, '117.442703', '288.131500', '-217.671204', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110390, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299595', 4299595, '61.837181', '292.037506', '-153.092804', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 110118, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299596', 4299596, '58.310040', '291.422913', '-157.591202', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109846, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299597', 4299597, '-17.296480', '300.204010', '-215.268906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109574, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299598', 4299598, '-102.796997', '298.673889', '-164.088501', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109302, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299599', 4299599, '-144.174805', '292.303986', '-187.728806', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 109030, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299600', 4299600, '-141.522705', '298.377014', '-239.075500', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108758, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299602', 4299602, '-187.987900', '287.198914', '-119.562897', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108486, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299603', 4299603, '-250.437195', '273.614410', '-139.801193', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 108214, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299604', 4299604, '-287.381409', '260.165009', '-74.592461', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107942, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299605', 4299605, '-249.896500', '264.386505', '-56.690639', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107670, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299606', 4299606, '-316.963898', '249.190399', '0.375132', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107398, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299607', 4299607, '-353.362305', '249.890305', '-112.803703', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 107126, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299608', 4299608, '-317.082214', '255.914795', '-163.691803', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106854, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299610', 4299610, '-540.337280', '216.113495', '-165.331497', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106582, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299612', 4299612, '-494.751099', '227.817902', '-119.577698', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106310, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299614', 4299614, '-538.078918', '224.933197', '-115.343002', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 106038, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299615', 4299615, '-679.120911', '223.608002', '-24.397600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105766, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299617', 4299617, '-748.989075', '226.855804', '-70.359383', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105494, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299618', 4299618, '-763.556213', '240.848099', '-149.583405', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 105222, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299620', 4299620, '-791.189026', '244.109695', '-171.737000', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104950, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299628', 4299628, '-802.041016', '225.578995', '14.979860', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104678, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299805', 4299805, '-869.248901', '228.169098', '24.666691', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104406, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299806', 4299806, '-916.034790', '242.289902', '5.756409', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 104134, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299808', 4299808, '-898.861877', '250.815994', '-36.228569', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103862, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299809', 4299809, '-932.563721', '262.462097', '18.376640', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103590, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299833', 4299833, '-528.303406', '207.486404', '-361.926514', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103318, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299835', 4299835, '-635.674072', '220.452301', '-338.610809', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 103046, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299836', 4299836, '-582.583984', '206.158493', '-384.262085', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102774, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299839', 4299839, '-524.189880', '192.377594', '-420.327301', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102502, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299840', 4299840, '-649.544922', '206.868103', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 102230, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299842', 4299842, '-652.836792', '207.443604', '-459.938385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 40, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 101958, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299844', 4299844, '-459.800110', '286.182892', '196.642899', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 99194, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299846', 4299846, '-523.050415', '277.612488', '197.807800', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98922, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299847', 4299847, '-532.402588', '240.741592', '331.532806', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98650, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299850', 4299850, '-475.198303', '237.443207', '403.405304', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98378, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299852', 4299852, '-369.299286', '237.950699', '382.602814', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 98106, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299853', 4299853, '-350.165009', '237.914505', '384.625702', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97834, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299854', 4299854, '-269.214996', '226.703201', '429.251587', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97562, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299856', 4299856, '-231.006302', '225.146896', '420.889496', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97290, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299858', 4299858, '-634.704590', '244.070801', '300.718811', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 97018, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299859', 4299859, '-706.643005', '237.401398', '303.170288', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96746, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299861', 4299861, '-766.720093', '254.688202', '421.683014', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96474, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299862', 4299862, '-743.321777', '254.701202', '428.467499', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 96202, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299872', 4299872, '-358.874786', '272.546112', '253.455994', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95936, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299873', 4299873, '-357.118988', '248.051895', '290.108185', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95670, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299874', 4299874, '-401.256805', '239.983307', '278.980713', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95404, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299876', 4299876, '-288.120392', '293.587006', '256.741089', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 95132, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299877', 4299877, '-277.870697', '258.656494', '334.187714', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94848, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299878', 4299878, '-321.083313', '262.754395', '217.010696', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94582, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299879', 4299879, '-440.215912', '244.465805', '319.074097', 723, 0, 0, 0, 1, 6, 0, 0, 787, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94316, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299880', 4299880, '-394.308411', '303.990997', '193.089905', 721, 0, 0, 0, 1, 6, 0, 0, 785, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 94032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299881', 4299881, '-460.690186', '270.367493', '260.074188', 722, 0, 0, 0, 1, 6, 0, 0, 786, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93766, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299886', 4299886, '-254.901993', '224.367096', '523.252625', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299887', 4299887, '-247.943405', '224.715195', '514.518921', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 93096, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299888', 4299888, '-282.529114', '224.717606', '503.718506', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92824, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299889', 4299889, '-393.453888', '238.452805', '503.715515', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92552, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299909', 4299909, '-485.722290', '243.436295', '460.457214', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92280, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299910', 4299910, '-491.588287', '245.377701', '463.765594', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 92008, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299912', 4299912, '-305.548096', '226.398407', '559.785400', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91736, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299914', 4299914, '-212.225906', '229.780594', '563.407715', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91464, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299915', 4299915, '-252.616806', '224.743301', '626.013428', 731, 0, 0, 0, 1, 6, 0, 0, 653, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91192, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299917', 4299917, '-120.126801', '205.896805', '472.541412', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 91058, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299933', 4299933, '-167.451797', '212.509293', '469.950714', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90786, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299935', 4299935, '-192.431595', '215.960907', '481.742401', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90514, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299937', 4299937, '-254.539902', '221.577606', '466.534088', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 90242, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299939', 4299939, '-261.479614', '221.984207', '460.971405', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89970, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299940', 4299940, '-327.888702', '223.177307', '446.066895', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89698, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299942', 4299942, '-452.292694', '231.075394', '433.657410', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299943', 4299943, '-556.198486', '235.399994', '407.330414', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 89154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299944', 4299944, '-563.418518', '235.399994', '398.974304', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88882, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4299945', 4299945, '-533.244080', '235.399994', '407.132111', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88610, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300046', 4300046, '-699.997925', '253.759995', '507.272186', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88344, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300048', 4300048, '-688.471802', '253.697205', '509.426910', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 88072, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300049', 4300049, '-698.510803', '253.838196', '499.010101', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87800, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300050', 4300050, '-705.378479', '253.881699', '505.406494', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87528, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300051', 4300051, '-699.795776', '253.759995', '514.230591', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 87256, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300052', 4300052, '-688.023315', '253.529099', '507.670410', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86984, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300053', 4300053, '-688.742798', '253.351105', '499.477112', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86712, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300054', 4300054, '-677.956787', '254.053894', '498.299103', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86440, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300056', 4300056, '-493.539612', '282.080109', '191.529907', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 86102, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300057', 4300057, '-521.202393', '242.145401', '299.671906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85830, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300059', 4300059, '-521.172913', '237.402893', '377.595398', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85558, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300061', 4300061, '-438.483398', '245.206894', '362.585205', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85286, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300062', 4300062, '-248.297302', '227.611099', '410.760986', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 85014, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300064', 4300064, '-153.368500', '221.118393', '416.250702', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84742, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300066', 4300066, '-98.785767', '213.591293', '426.872589', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84470, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300069', 4300069, '-272.282501', '264.869385', '321.059906', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 84198, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300070', 4300070, '-390.265106', '233.670807', '321.964600', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83926, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300072', 4300072, '-383.889404', '248.725204', '219.890106', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83654, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300074', 4300074, '-416.929291', '233.443802', '461.940796', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83382, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300078', 4300078, '-295.979309', '224.444901', '485.191010', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 83110, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300080', 4300080, '-346.028900', '236.543396', '518.089478', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82838, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300081', 4300081, '-227.039001', '229.327805', '547.600525', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82566, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300083', 4300083, '-286.249908', '221.550095', '669.298584', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82294, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300084', 4300084, '-282.240204', '222.570007', '672.355286', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 82022, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300085', 4300085, '-254.344894', '224.215302', '580.497681', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81750, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300087', 4300087, '-149.461502', '217.410095', '485.622894', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81478, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300089', 4300089, '-604.956787', '244.740799', '337.663788', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 81206, 5, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(368, 'r1f1_battle', 'bnpc4300090', 4300090, '-649.166504', '245.258606', '286.166504', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80934, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300091', 4300091, '-748.151123', '238.541107', '350.326385', 132, 0, 0, 0, 1, 6, 0, 0, 114, 0, '0.000000', 47, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80662, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300171', 4300171, '566.598206', '289.624603', '98.502197', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79638, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300176', 4300176, '527.275391', '303.059296', '-162.340805', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79372, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300177', 4300177, '586.301575', '302.701202', '-115.328102', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 79100, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300178', 4300178, '654.442383', '298.421295', '-12.551030', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78828, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300179', 4300179, '669.497986', '301.708099', '-29.924919', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78556, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300180', 4300180, '602.427917', '290.487396', '-0.884406', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78284, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300181', 4300181, '664.371399', '287.443909', '73.074158', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 78012, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300182', 4300182, '601.759216', '287.400208', '127.919098', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77740, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300183', 4300183, '565.585571', '287.455109', '154.665298', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77468, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300184', 4300184, '558.831116', '300.043915', '59.949520', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 77196, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300191', 4300191, '511.356689', '303.173004', '-206.740097', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76930, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300194', 4300194, '494.438110', '303.700287', '-197.619598', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76646, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300196', 4300196, '508.591888', '303.338898', '-205.656296', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76392, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300198', 4300198, '523.491211', '302.387909', '-191.363495', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 76120, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300200', 4300200, '559.439514', '303.965698', '-151.707001', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75836, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300201', 4300201, '555.992920', '301.960693', '-163.683502', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75570, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300203', 4300203, '593.473511', '302.708496', '-99.112923', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75304, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300204', 4300204, '642.703979', '303.166687', '-43.589840', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 75026, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300205', 4300205, '650.994812', '303.095612', '-38.070992', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74742, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300206', 4300206, '625.239319', '302.690613', '-97.402184', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74476, 1, 0, 0, 0, 45, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300209', 4300209, '635.367188', '303.307190', '-92.580772', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 74198, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300210', 4300210, '636.402405', '303.397003', '-95.636833', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73938, 1, 0, 0, 0, 45, 30059, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300212', 4300212, '640.141296', '289.793488', '15.564350', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73654, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300213', 4300213, '632.201416', '287.460602', '83.472313', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73394, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300214', 4300214, '694.667114', '302.802002', '-25.909540', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73116, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300215', 4300215, '668.584900', '286.359985', '53.434738', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72856, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300219', 4300219, '653.565674', '286.929688', '35.585339', 749, 0, 0, 0, 1, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72566, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300220', 4300220, '654.409180', '286.791412', '37.999821', 747, 0, 0, 0, 0, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72312, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300221', 4300221, '655.671082', '286.824310', '34.141949', 750, 0, 0, 0, 0, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72034, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300222', 4300222, '657.228088', '286.375885', '36.471931', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71756, 1, 0, 0, 0, 0, 30059, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300226', 4300226, '639.859619', '286.099091', '135.124603', 749, 0, 0, 0, 0, 6, 0, 0, 1844, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71478, 1, 0, 0, 0, 0, 30060, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300227', 4300227, '642.707703', '286.175110', '132.877899', 748, 0, 0, 0, 0, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71212, 1, 0, 0, 0, 0, 30120, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300229', 4300229, '708.942505', '286.232513', '46.920448', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70946, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300230', 4300230, '711.298828', '285.307404', '75.698997', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70680, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300232', 4300232, '613.615784', '284.572296', '166.852005', 747, 0, 0, 0, 1, 6, 0, 0, 1842, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70408, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300233', 4300233, '590.029480', '285.689209', '176.024506', 750, 0, 0, 0, 1, 6, 0, 0, 1845, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70130, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300234', 4300234, '646.990784', '285.135101', '149.341507', 748, 0, 0, 0, 1, 6, 0, 0, 1843, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69852, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300236', 4300236, '586.167297', '288.737610', '-28.609209', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67694, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300238', 4300238, '582.383789', '289.517700', '-46.738300', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68510, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300239', 4300239, '559.963928', '292.885193', '-35.993568', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65790, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300241', 4300241, '576.693481', '289.831787', '-46.195572', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66334, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300242', 4300242, '498.254486', '308.702209', '-165.574203', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66606, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300244', 4300244, '507.927002', '303.303497', '-229.236298', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66878, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300246', 4300246, '630.399292', '300.341187', '-66.790810', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65518, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300250', 4300250, '684.486816', '291.013214', '7.434129', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67966, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300253', 4300253, '639.507080', '287.656799', '38.046551', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66062, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300254', 4300254, '630.756226', '286.750000', '109.616798', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67150, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300256', 4300256, '570.830383', '286.569214', '120.215103', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68238, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300257', 4300257, '555.228516', '297.855499', '84.213348', 141, 0, 0, 0, 1, 6, 0, 0, 1846, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67422, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300284', 4300284, '605.249023', '330.830811', '-303.486786', 114, 0, 0, 0, 0, 6, 0, 0, 662, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68668, 1, 0, 0, 0, 0, 30058, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300286', 4300286, '527.855225', '308.308502', '-299.702515', 113, 0, 0, 0, 1, 6, 0, 0, 660, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69478, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300287', 4300287, '575.036316', '320.881805', '-289.906189', 115, 0, 0, 0, 1, 6, 0, 0, 661, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69218, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4300288', 4300288, '577.508118', '322.468903', '-294.789093', 116, 0, 0, 0, 1, 6, 0, 0, 663, 0, '0.000000', 37, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68952, 1, 0, 0, 0, 0, 30063, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4325155', 4325155, '215.504501', '360.039307', '-581.431030', 398, 0, 0, 0, 1, 6, 0, 0, 1849, 0, '0.000000', 38, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126490, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406869', 4406869, '311.001099', '307.036499', '-422.752106', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 126194, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406870', 4406870, '323.323395', '303.822296', '-391.989014', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125922, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406871', 4406871, '317.110413', '305.692505', '-418.385315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125650, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406872', 4406872, '351.343506', '312.029114', '-396.169098', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125378, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406873', 4406873, '350.968994', '315.450592', '-416.192993', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 125106, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406874', 4406874, '48.752670', '311.224213', '-250.581207', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124834, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406875', 4406875, '44.907230', '311.238312', '-245.044693', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124562, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406876', 4406876, '66.984810', '300.472412', '-252.706802', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124290, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406877', 4406877, '-17.150419', '311.581512', '-255.273895', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 124018, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406878', 4406878, '7.231910', '312.528687', '-245.321793', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123746, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406879', 4406879, '-6.278003', '305.376709', '-233.466095', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123474, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406880', 4406880, '-10.073550', '305.779694', '-236.697601', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 39, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 123202, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406884', 4406884, '357.847992', '311.662201', '-388.165497', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122930, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406885', 4406885, '363.148010', '313.250488', '-391.308411', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122658, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406886', 4406886, '331.929413', '319.783203', '-430.502808', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 37, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122386, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406888', 4406888, '113.582199', '354.933685', '-335.568512', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 122114, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406890', 4406890, '121.680801', '354.167114', '-326.125214', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121842, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406891', 4406891, '110.022797', '357.553314', '-311.841187', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121570, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406892', 4406892, '111.824799', '358.195190', '-382.551514', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121298, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406893', 4406893, '115.392303', '357.688690', '-387.074890', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 121026, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4406894', 4406894, '93.907928', '362.855194', '-349.329315', 719, 0, 0, 0, 1, 6, 0, 0, 795, 0, '0.000000', 38, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 120754, 5, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4600355', 4600355, '547.412170', '348.384613', '-748.106018', 1699, 0, 0, 0, 8, 6, 0, 0, 2162, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43902, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4614331', 4614331, '530.815125', '348.686096', '-743.006226', 1700, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43556, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4614332', 4614332, '535.935608', '348.616394', '-737.220215', 2222, 0, 0, 0, 8, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43290, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4621624', 4621624, '-332.429199', '307.678406', '234.107803', 2773, 0, 0, 0, 0, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44948, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4890695', 4890695, '-188.798996', '226.035995', '400.288086', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80426, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(368, 'r1f1_battle', 'bnpc4890696', 4890696, '-132.585098', '216.182098', '435.066193', 191, 0, 0, 0, 1, 6, 0, 0, 788, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 80154, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3985408', 3985408, '188.372604', '6.271411', '-36.606441', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 11, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52794, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3985409', 3985409, '190.630905', '6.240893', '-34.012409', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 11, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52528, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3985410', 3985410, '146.990097', '-1.236023', '-43.839230', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 18, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51984, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3985412', 3985412, '148.546494', '-1.236023', '-38.040829', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 18, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 54154, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3985416', 3985416, '104.265602', '-3.711910', '55.363880', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 14, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53338, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3985471', 3985471, '109.147697', '-3.738525', '84.183960', 1415, 0, 0, 0, 5, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54420, 1, 3, 2000, 0, 0, 0, 4099481, 0, 0), +(369, 'w1d2_battle', 'bnpc3985472', 3985472, '94.773682', '-3.738525', '36.209591', 1415, 0, 0, 0, 5, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54692, 1, 3, 2000, 0, 0, 0, 4099479, 0, 0), +(369, 'w1d2_battle', 'bnpc3987549', 3987549, '135.484894', '-1.693787', '-6.088379', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 12, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53066, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987550', 3987550, '137.804199', '-1.663330', '-8.773987', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 12, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 52256, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987551', 3987551, '139.879395', '-1.663330', '-5.996826', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 12, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51712, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987552', 3987552, '165.056793', '6.210388', '-65.232361', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 19, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53882, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987553', 3987553, '163.744507', '6.240893', '-68.040024', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 19, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51168, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987555', 3987555, '104.997200', '-3.738525', '58.518311', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 14, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 51440, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987556', 3987556, '77.012230', '-10.879730', '-96.665947', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 21, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47108, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987557', 3987557, '73.227997', '-10.879730', '-95.811440', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 21, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46564, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987558', 3987558, '48.477859', '-10.910250', '-85.771004', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46020, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987559', 3987559, '44.235859', '-10.910250', '-92.484978', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46292, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987560', 3987560, '48.569420', '-10.940770', '-90.867523', 1412, 0, 0, 0, 1, 6, 0, 0, 1190, 0, '0.000000', 20, 0, 120, 1, 0, 22, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48734, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987562', 3987562, '-5.882465', '-2.500548', '-112.894798', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 23, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45748, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987563', 3987563, '-12.134020', '-1.660716', '-116.404404', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 23, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45476, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987564', 3987564, '9.079041', '-11.062810', '-182.909897', 1412, 0, 0, 0, 1, 6, 0, 0, 1190, 0, '0.000000', 20, 0, 120, 1, 0, 24, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48190, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987565', 3987565, '12.466550', '-11.062810', '-180.743195', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 24, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47652, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987566', 3987566, '12.313960', '-11.062810', '-187.060394', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 24, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47924, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987572', 3987572, '-83.115967', '-10.818660', '-97.581482', 1412, 0, 0, 0, 1, 6, 0, 0, 1190, 0, '0.000000', 20, 0, 120, 1, 0, 26, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 48462, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987624', 3987624, '-82.963379', '-10.788150', '-91.050659', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 26, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 47380, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987626', 3987626, '-10.551780', '-1.897295', '-112.223503', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 23, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 46836, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3987628', 3987628, '21.628969', '0.927666', '135.966904', 973, 0, 0, 0, 0, 6, 0, 0, 1194, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28462, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3998626', 3998626, '57.816410', '9.140137', '107.225098', 1410, 0, 0, 0, 1, 6, 0, 0, 1188, 0, '0.000000', 20, 0, 120, 1, 0, 15, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 53610, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3998629', 3998629, '-131.242905', '3.646851', '-31.540409', 1413, 0, 0, 0, 1, 6, 0, 0, 1191, 0, '0.000000', 20, 0, 120, 1, 0, 31, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42994, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3998632', 3998632, '-153.490494', '9.384277', '11.093260', 1413, 0, 0, 0, 1, 6, 0, 0, 1191, 0, '0.000000', 20, 0, 120, 1, 0, 32, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42722, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc3998633', 3998633, '-158.801300', '9.416150', '4.597439', 1413, 0, 0, 0, 1, 6, 0, 0, 1191, 0, '0.000000', 20, 0, 120, 1, 0, 32, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42450, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101016', 4101016, '-179.701599', '-15.010420', '-135.818604', 975, 0, 0, 0, 0, 6, 0, 0, 1196, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24020, 1, 6, 2000, 0, 0, 30246, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101020', 4101020, '-271.131409', '17.225630', '19.957199', 979, 0, 0, 0, 0, 6, 0, 0, 1197, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39450, 1, 2, 2000, 0, 0, 30246, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101025', 4101025, '74.758507', '-11.019170', '-106.685204', 980, 0, 0, 0, 0, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12102, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101034', 4101034, '42.389832', '-10.958640', '-84.790253', 980, 0, 0, 0, 0, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11830, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101041', 4101041, '17.399370', '-11.009910', '-190.064896', 980, 0, 0, 0, 0, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11558, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101069', 4101069, '-38.694679', '-11.068510', '-128.949997', 980, 0, 0, 0, 0, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11286, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101077', 4101077, '-82.434219', '-10.965880', '-112.949203', 980, 0, 0, 0, 0, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11014, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101086', 4101086, '76.646004', '-11.093380', '-106.126503', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 51, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 7928, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101092', 4101092, '73.380623', '-10.879700', '-108.445900', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 51, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 8744, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101093', 4101093, '73.672859', '-11.132110', '-105.518997', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 51, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 9560, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101094', 4101094, '41.112499', '-10.851840', '-83.733414', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 52, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 8472, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101095', 4101095, '40.833912', '-10.910920', '-86.653191', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 52, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 8200, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101096', 4101096, '44.106239', '-11.004630', '-84.335793', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 52, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 9016, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101102', 4101102, '16.404329', '-11.333980', '-188.701797', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 53, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 9832, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101103', 4101103, '16.125740', '-11.264760', '-191.621597', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 53, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 10104, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101104', 4101104, '19.398069', '-11.096800', '-189.304199', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 53, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 9288, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101105', 4101105, '-37.876389', '-11.062810', '-127.699898', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 54, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 6296, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101106', 4101106, '-38.241859', '-10.987660', '-130.443604', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 54, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 7656, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101107', 4101107, '-40.016979', '-10.960150', '-128.126099', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 54, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 7384, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101109', 4101109, '-81.944260', '-11.055860', '-111.718002', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 55, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 6568, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101110', 4101110, '-80.835564', '-10.933210', '-113.694901', 1416, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 55, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 7112, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101111', 4101111, '-84.084839', '-11.002010', '-112.144203', 1416, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 55, 0, 16, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 6840, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101127', 4101127, '-125.108803', '9.811523', '-0.320496', 1414, 0, 0, 0, 0, 6, 0, 0, 1192, 0, '0.000000', 20, 0, 120, 1, 0, 35, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41640, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101177', 4101177, '-108.254402', '10.234440', '3.719265', 1413, 0, 0, 0, 1, 6, 0, 0, 1191, 0, '0.000000', 20, 0, 120, 1, 0, 33, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 42178, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101178', 4101178, '-111.794998', '9.833187', '-3.942090', 1413, 0, 0, 0, 1, 6, 0, 0, 1191, 0, '0.000000', 20, 0, 120, 1, 0, 33, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41906, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101380', 4101380, '-19.621960', '2.187741', '152.235504', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28196, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101382', 4101382, '-19.622000', '2.187700', '152.235504', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27924, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101387', 4101387, '-19.622000', '2.187700', '152.235504', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27652, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101388', 4101388, '-19.622000', '2.187700', '152.235504', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27380, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101392', 4101392, '24.526211', '2.233568', '180.544693', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27108, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101393', 4101393, '24.526171', '2.233568', '180.544601', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26836, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101394', 4101394, '24.526171', '2.233568', '180.544601', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26564, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101395', 4101395, '24.526171', '2.233568', '180.544601', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26292, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101398', 4101398, '88.949608', '2.247609', '139.983795', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 26020, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101399', 4101399, '88.949562', '2.247609', '139.983795', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25748, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101400', 4101400, '88.949562', '2.247609', '139.983795', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25476, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101401', 4101401, '88.949562', '2.247609', '139.983795', 971, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25204, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101405', 4101405, '-19.622000', '2.187700', '152.235504', 972, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24938, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101408', 4101408, '24.526199', '2.233600', '180.544601', 972, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24666, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101409', 4101409, '88.944817', '2.243042', '139.970901', 972, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 24394, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101411', 4101411, '-176.216599', '-15.010410', '-132.392700', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23754, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101413', 4101413, '-175.270493', '-15.010420', '-133.125107', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23482, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101414', 4101414, '-175.941895', '-15.010400', '-131.416107', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 23210, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101415', 4101415, '-175.112595', '-15.010410', '-131.973206', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22938, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101416', 4101416, '-175.112595', '-15.010410', '-131.973206', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22666, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101417', 4101417, '-175.117905', '-15.010410', '-131.996002', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22394, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101418', 4101418, '-175.112595', '-15.010410', '-131.973206', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22122, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101419', 4101419, '-175.112595', '-15.010410', '-131.973206', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21850, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101420', 4101420, '-175.112595', '-15.010410', '-131.973206', 974, 0, 0, 0, 0, 6, 0, 0, 117, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21578, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101424', 4101424, '-277.452209', '17.568609', '40.437000', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39184, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101447', 4101447, '-277.452209', '17.568600', '40.437000', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38912, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101448', 4101448, '-277.452209', '17.568600', '40.437000', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38640, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101449', 4101449, '-277.452209', '17.568600', '40.437000', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38368, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101450', 4101450, '-255.683197', '17.570080', '47.316502', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 38096, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101451', 4101451, '-255.683197', '17.570080', '47.316502', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37824, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101452', 4101452, '-255.683197', '17.570080', '47.316502', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37552, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101453', 4101453, '-255.683197', '17.570080', '47.316502', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37280, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101456', 4101456, '-237.304703', '17.604349', '38.752121', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37008, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101457', 4101457, '-237.304703', '17.604349', '38.752110', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36736, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101458', 4101458, '-237.304703', '17.604349', '38.752110', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36464, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101459', 4101459, '-237.304703', '17.604349', '38.752110', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36192, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101460', 4101460, '-278.928406', '17.555901', '-2.495306', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35920, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101461', 4101461, '-278.928497', '17.555901', '-2.495310', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35648, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101462', 4101462, '-278.928497', '17.555901', '-2.495310', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35376, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101463', 4101463, '-278.928497', '17.555901', '-2.495310', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35104, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101465', 4101465, '-261.221313', '17.568060', '-10.768690', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34832, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101466', 4101466, '-261.221313', '17.568060', '-10.768700', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34560, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101467', 4101467, '-261.221313', '17.568060', '-10.768700', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34288, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101468', 4101468, '-261.221313', '17.568060', '-10.768700', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34016, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101469', 4101469, '-239.437195', '17.568661', '-4.146132', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33744, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101470', 4101470, '-239.437195', '17.568661', '-4.146136', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33472, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101471', 4101471, '-239.437195', '17.568661', '-4.146136', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33200, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101472', 4101472, '-239.437195', '17.568661', '-4.146136', 976, 0, 0, 0, 0, 6, 0, 0, 1187, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32928, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101474', 4101474, '-277.452209', '17.568600', '40.437000', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32662, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101476', 4101476, '-255.683197', '17.570101', '47.316502', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32390, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101477', 4101477, '-237.304703', '17.604401', '38.752102', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32118, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101478', 4101478, '-278.928497', '17.555901', '-2.495300', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31846, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101498', 4101498, '-261.221313', '17.568100', '-10.768700', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31574, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101503', 4101503, '-239.437195', '17.568701', '-4.146100', 977, 0, 0, 0, 0, 6, 0, 0, 1195, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31302, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101506', 4101506, '-238.260498', '17.225630', '16.361401', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31036, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101509', 4101509, '-237.357101', '17.270950', '17.146231', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30764, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101510', 4101510, '-237.269501', '17.225630', '15.551390', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30492, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101511', 4101511, '-237.011200', '17.225630', '16.393320', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30220, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101512', 4101512, '-237.011200', '17.225630', '16.393270', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29948, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101513', 4101513, '-237.011200', '17.225630', '16.393270', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29676, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101514', 4101514, '-237.011200', '17.225630', '16.393270', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29404, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101515', 4101515, '-237.011200', '17.225630', '16.393270', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29132, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4101516', 4101516, '-237.011200', '17.225630', '16.393270', 978, 0, 0, 0, 0, 6, 0, 0, 116, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28860, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4145049', 4145049, '-126.115898', '9.811523', '2.945007', 1414, 0, 0, 0, 0, 6, 0, 0, 1192, 0, '0.000000', 20, 0, 120, 1, 0, 35, 0, 32, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 41368, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4184459', 4184459, '151.811905', '-1.236023', '-42.374329', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 18, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50896, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4184460', 4184460, '100.752899', '-3.711910', '56.330582', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 14, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50624, 1, 3, 2000, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(369, 'w1d2_battle', 'bnpc4186800', 4186800, '54.306759', '9.140137', '108.995102', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 15, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50352, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4186801', 4186801, '53.818481', '9.140137', '105.546600', 1424, 0, 0, 0, 1, 6, 0, 0, 1354, 0, '0.000000', 20, 0, 120, 1, 0, 15, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 50080, 1, 3, 2000, 0, 0, 30246, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4195685', 4195685, '-78.782349', '-10.727110', '-92.668091', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 26, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 45204, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4195704', 4195704, '-140.581406', '9.414734', '26.657471', 1415, 0, 0, 0, 2, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40676, 1, 3, 2000, 0, 0, 0, 4195689, 0, 0), +(369, 'w1d2_battle', 'bnpc4195708', 4195708, '-117.237000', '9.870837', '-16.448339', 1415, 0, 0, 0, 2, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40404, 1, 3, 2000, 0, 0, 0, 4195703, 0, 0), +(369, 'w1d2_battle', 'bnpc4205320', 4205320, '-14.206180', '-11.123840', '-149.065399', 1412, 0, 0, 0, 1, 6, 0, 0, 1190, 0, '0.000000', 20, 0, 120, 1, 0, 25, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44926, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4205321', 4205321, '-10.959080', '-11.071360', '-153.204498', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 25, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44660, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4205322', 4205322, '-10.806490', '-11.287730', '-146.887207', 1411, 0, 0, 0, 1, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 25, 0, 32, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 44388, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4205423', 4205423, '-1.384451', '-11.093320', '-189.403397', 1411, 0, 0, 0, 2, 6, 0, 0, 1189, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43908, 1, 3, 2000, 0, 0, 0, 4205333, 0, 0), +(369, 'w1d2_battle', 'bnpc4223448', 4223448, '143.410599', '-1.641949', '-48.361370', 1415, 0, 0, 0, 2, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49620, 1, 3, 2000, 0, 0, 0, 4222729, 0, 0), +(369, 'w1d2_battle', 'bnpc4223455', 4223455, '32.704960', '5.047771', '95.782066', 1415, 0, 0, 0, 5, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49140, 1, 3, 2000, 0, 0, 0, 4223451, 0, 0), +(369, 'w1d2_battle', 'bnpc4223458', 4223458, '0.564514', '-11.032290', '-175.127808', 1412, 0, 0, 0, 5, 6, 0, 0, 1190, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43374, 1, 3, 2000, 0, 0, 0, 4223456, 0, 0), +(369, 'w1d2_battle', 'bnpc4223460', 4223460, '-124.084900', '2.072251', '-33.390331', 1415, 0, 0, 0, 5, 6, 0, 0, 1193, 0, '0.000000', 20, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 39908, 1, 3, 2000, 0, 0, 0, 4223459, 0, 0), +(369, 'w1d2_battle', 'bnpc4600278', 4600278, '-274.195587', '17.225630', '18.911619', 1697, 0, 0, 0, 8, 6, 0, 0, 2161, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20584, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4614872', 4614872, '-261.326599', '17.225630', '-3.968693', 1698, 0, 0, 0, 8, 6, 0, 0, 656, 0, '80.000000', 49, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20178, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4614873', 4614873, '-265.108704', '17.327801', '34.212910', 1698, 0, 0, 0, 8, 6, 0, 0, 656, 0, '80.000000', 49, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19906, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4614874', 4614874, '-239.788300', '17.225630', '27.443600', 1698, 0, 0, 0, 8, 6, 0, 0, 656, 0, '80.000000', 49, 3, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19634, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4614883', 4614883, '-257.017609', '17.206200', '17.462620', 2043, 0, 0, 0, 3, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19368, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4614886', 4614886, '-259.853485', '17.225630', '10.268560', 1993, 0, 0, 0, 3, 6, 0, 0, 0, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19102, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(369, 'w1d2_battle', 'bnpc4614887', 4614887, '-260.101105', '17.232479', '22.606119', 1994, 0, 0, 0, 3, 6, 0, 0, 0, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18836, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725519', 4725519, '67.260834', '-3.462909', '40.132641', 2, 0, 0, 0, 3, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11794, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725523', 4725523, '50.686520', '4.197485', '15.422300', 2, 0, 0, 0, 3, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11138, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725529', 4725529, '81.627502', '7.716181', '-7.246117', 3, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21956, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725531', 4725531, '102.375900', '7.796128', '-12.985140', 3, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21684, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725532', 4725532, '103.666901', '6.432870', '-36.354710', 3, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21412, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725533', 4725533, '101.714104', '6.693071', '-47.709431', 3, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21140, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725534', 4725534, '78.884407', '5.433334', '-49.322948', 3, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20868, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725542', 4725542, '34.272690', '1.635704', '-55.265862', 5, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20602, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725543', 4725543, '37.825802', '1.635704', '-55.110619', 5, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20330, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725544', 4725544, '42.328510', '1.635704', '-53.142559', 5, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20058, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725546', 4725546, '44.668571', '-2.500000', '-68.341026', 5, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19786, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725569', 4725569, '11.027090', '40.000000', '60.291111', 7, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19412, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725571', 4725571, '12.690910', '40.000000', '66.749527', 7, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19140, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725575', 4725575, '-34.701408', '-10.635750', '-156.951294', 9, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18874, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725576', 4725576, '-36.497940', '-9.771273', '-163.874802', 9, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18602, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725577', 4725577, '-36.701061', '-9.733520', '-171.243698', 9, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18330, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725579', 4725579, '-43.464001', '-9.733520', '-147.922806', 9, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18058, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725595', 4725595, '-48.024849', '3.382114', '-103.560204', 12, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17792, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725599', 4725599, '-55.567532', '4.357405', '-99.602364', 12, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17520, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725600', 4725600, '-54.089020', '3.686252', '-105.119102', 12, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17248, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725601', 4725601, '-69.568604', '7.413407', '-105.498001', 12, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16976, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725663', 4725663, '-97.609322', '10.237480', '-114.763397', 15, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4454, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4725664', 4725664, '61.794159', '-2.500000', '-91.034897', 21, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5096, 1, 6, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4729302', 4729302, '-87.348396', '28.400009', '-26.018410', 26, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16586, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4729303', 4729303, '-86.185097', '28.396971', '-0.281289', 26, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16314, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4729304', 4729304, '-74.263779', '28.440969', '13.804020', 26, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16042, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4729307', 4729307, '-59.349781', '31.297680', '16.862110', 26, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15770, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4729310', 4729310, '-43.124989', '29.889280', '14.405630', 26, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15498, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4729313', 4729313, '-24.653561', '28.405531', '-6.693773', 24, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14144, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4729314', 4729314, '-94.286469', '38.376339', '-12.118160', 26, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15226, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4729315', 4729315, '-93.420624', '39.391319', '0.544784', 26, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14954, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4729316', 4729316, '-75.535042', '38.999989', '17.383579', 26, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14682, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4729317', 4729317, '-42.868359', '38.999969', '16.787870', 26, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14410, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4729341', 4729341, '-69.307137', '28.400000', '-8.160501', 2, 0, 0, 0, 3, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7006, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4729342', 4729342, '-54.107651', '28.400000', '-6.758264', 2, 0, 0, 0, 3, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6734, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4729347', 4729347, '-98.560837', '34.000000', '33.519779', 18, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13878, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4729348', 4729348, '-63.707279', '40.128410', '65.980186', 18, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13606, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4729349', 4729349, '-98.338341', '34.000000', '35.488689', 398, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13340, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(371, 'r1d3', 'bnpc4729350', 4729350, '-64.173126', '40.000000', '62.491982', 398, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13068, 1, 3, 0, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4694988', 4694988, '-57.785950', '44.357910', '-82.898354', 3080, 0, 0, 0, 0, 6, 0, 0, 2836, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56812, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4694989', 4694989, '-51.712830', '44.357910', '-82.898354', 3080, 0, 0, 0, 0, 6, 0, 0, 2836, 0, '0.000000', 50, 0, 120, 1, 0, 10, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56540, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4694991', 4694991, '-2.513119', '39.840031', '-60.523369', 3081, 0, 0, 0, 5, 6, 0, 0, 2835, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55730, 1, 3, 2000, 0, 0, 0, 4719998, 0, 0), +(373, 'f1d6', 'bnpc4695000', 4695000, '4.653992', '37.155640', '-53.635502', 3080, 0, 0, 0, 0, 6, 0, 0, 2836, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 56268, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695002', 4695002, '7.928601', '37.033569', '-51.097618', 3079, 0, 0, 0, 2, 6, 0, 0, 2834, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55192, 1, 3, 2000, 0, 0, 0, 4760215, 0, 0), +(373, 'f1d6', 'bnpc4695003', 4695003, '3.738403', '37.094601', '-48.477970', 3079, 0, 0, 0, 2, 6, 0, 0, 2834, 0, '0.000000', 50, 0, 120, 1, 0, 11, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54920, 1, 3, 2000, 0, 0, 0, 4760207, 0, 0), +(373, 'f1d6', 'bnpc4695007', 4695007, '-2.576381', '24.519541', '27.407351', 3081, 0, 0, 0, 5, 6, 0, 0, 2835, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55458, 1, 3, 2000, 0, 0, 0, 4719999, 0, 0), +(373, 'f1d6', 'bnpc4695011', 4695011, '-4.760932', '23.752199', '30.885500', 3080, 0, 0, 0, 0, 6, 0, 0, 2836, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 55996, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695012', 4695012, '-8.712891', '23.392031', '37.125118', 3079, 0, 0, 0, 2, 6, 0, 0, 2834, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54648, 1, 3, 2000, 0, 0, 0, 4760238, 0, 0), +(373, 'f1d6', 'bnpc4695015', 4695015, '-11.093380', '23.666691', '33.371460', 3079, 0, 0, 0, 2, 6, 0, 0, 2834, 0, '0.000000', 50, 0, 120, 1, 0, 12, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54376, 1, 3, 2000, 0, 0, 0, 4760218, 0, 0), +(373, 'f1d6', 'bnpc4695028', 4695028, '83.276253', '16.372860', '91.386230', 3085, 0, 0, 0, 2, 6, 0, 0, 2840, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 54010, 1, 3, 125, 0, 0, 0, 4841679, 0, 0), +(373, 'f1d6', 'bnpc4695030', 4695030, '85.713997', '16.372860', '89.693336', 3086, 0, 0, 0, 0, 6, 0, 0, 2841, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52928, 1, 3, 125, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695031', 4695031, '89.768799', '16.372860', '91.386230', 3085, 0, 0, 0, 2, 6, 0, 0, 2840, 0, '0.000000', 50, 0, 120, 1, 0, 20, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 53738, 1, 3, 125, 0, 0, 0, 4841680, 0, 0), +(373, 'f1d6', 'bnpc4695033', 4695033, '102.747299', '17.280670', '58.491982', 3086, 0, 0, 0, 0, 6, 0, 0, 2841, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 53472, 1, 3, 100, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695034', 4695034, '105.434303', '17.280670', '59.701340', 3085, 0, 0, 0, 2, 6, 0, 0, 2840, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52650, 1, 3, 95, 0, 0, 0, 4841690, 0, 0), +(373, 'f1d6', 'bnpc4695035', 4695035, '101.926003', '17.108690', '62.228741', 3085, 0, 0, 0, 2, 6, 0, 0, 2840, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 52378, 1, 3, 95, 0, 0, 0, 4841683, 0, 0), +(373, 'f1d6', 'bnpc4695039', 4695039, '102.769402', '17.349430', '66.021667', 3090, 0, 0, 0, 5, 6, 0, 0, 2845, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 53206, 1, 3, 100, 0, 0, 0, 4720003, 0, 0), +(373, 'f1d6', 'bnpc4695043', 4695043, '-132.934204', '16.084280', '79.111862', 3088, 0, 0, 0, 1, 6, 0, 0, 2843, 0, '0.000000', 50, 0, 120, 1, 0, 30, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3518, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695049', 4695049, '-136.062302', '16.135540', '77.584312', 3087, 0, 0, 0, 1, 6, 0, 0, 2842, 0, '0.000000', 50, 0, 120, 1, 0, 30, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2980, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695050', 4695050, '-131.687393', '16.124470', '75.855957', 3087, 0, 0, 0, 1, 6, 0, 0, 2842, 0, '0.000000', 50, 0, 120, 1, 0, 30, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2708, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695051', 4695051, '-115.179901', '16.010139', '65.060448', 3088, 0, 0, 0, 1, 6, 0, 0, 2843, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3246, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695056', 4695056, '-113.025497', '15.992930', '62.672359', 3095, 0, 0, 0, 1, 6, 0, 0, 2850, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2424, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695057', 4695057, '-111.627098', '15.948800', '65.319908', 3095, 0, 0, 0, 1, 6, 0, 0, 2850, 0, '0.000000', 50, 0, 120, 1, 0, 31, 0, 30, 3, 0, 1, 0, 0, 0, '0.000000', '1.000000', 2152, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695069', 4695069, '-3.699209', '29.526119', '-16.495001', 3127, 0, 0, 0, 0, 6, 0, 0, 2915, 0, '0.000000', 50, 0, 120, 1, 0, 13, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17076, 1, 3, 25, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695070', 4695070, '8.945326', '29.693380', '-14.623210', 3082, 0, 0, 0, 0, 6, 0, 0, 2837, 0, '0.550000', 50, 0, 120, 1, 0, 13, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18696, 1, 3, 20, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695071', 4695071, '8.688545', '29.693380', '-18.283951', 3082, 0, 0, 0, 0, 6, 0, 0, 2837, 0, '0.550000', 50, 0, 120, 1, 0, 13, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18424, 1, 3, 20, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695072', 4695072, '-15.352030', '23.392031', '32.883690', 3082, 0, 0, 0, 0, 6, 0, 0, 2837, 0, '0.650000', 50, 0, 120, 1, 0, 14, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18152, 1, 3, 20, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695073', 4695073, '-11.950290', '23.392031', '30.697241', 3082, 0, 0, 0, 0, 6, 0, 0, 2837, 0, '0.650000', 50, 0, 120, 1, 0, 14, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17880, 1, 3, 20, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695074', 4695074, '-20.492920', '23.392031', '24.246580', 3126, 0, 0, 0, 0, 6, 0, 0, 2914, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16810, 1, 3, 25, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695075', 4695075, '-27.069521', '23.410250', '24.152710', 3089, 0, 0, 0, 1, 6, 0, 0, 2844, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17614, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695076', 4695076, '-17.087839', '23.410250', '18.515350', 3089, 0, 0, 0, 1, 6, 0, 0, 2844, 0, '0.000000', 50, 0, 120, 1, 0, 14, 0, 30, 2, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17342, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695085', 4695085, '77.193192', '16.403440', '144.830994', 3091, 0, 0, 0, 1, 6, 0, 0, 2846, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14368, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695086', 4695086, '75.109070', '16.889780', '53.594501', 3091, 0, 0, 0, 1, 6, 0, 0, 2846, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14096, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695089', 4695089, '72.456093', '16.881041', '60.635170', 3093, 0, 0, 0, 1, 6, 0, 0, 2848, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13830, 1, 3, 97, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695091', 4695091, '77.633217', '16.861151', '60.006672', 3093, 0, 0, 0, 1, 6, 0, 0, 2848, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13558, 1, 3, 97, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695093', 4695093, '141.503098', '16.464420', '67.307503', 3091, 0, 0, 0, 1, 6, 0, 0, 2846, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13280, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695096', 4695096, '133.157593', '16.519760', '60.053570', 3092, 0, 0, 0, 1, 6, 0, 0, 2847, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13020, 1, 3, 105, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695097', 4695097, '122.902802', '16.539690', '61.471272', 3092, 0, 0, 0, 1, 6, 0, 0, 2847, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12748, 1, 3, 100, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695098', 4695098, '132.400497', '16.543871', '74.010483', 3092, 0, 0, 0, 1, 6, 0, 0, 2847, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12476, 1, 3, 115, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695099', 4695099, '122.949097', '16.515779', '73.473412', 3092, 0, 0, 0, 1, 6, 0, 0, 2847, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12204, 1, 3, 115, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695102', 4695102, '-100.458900', '13.839900', '10.140920', 3082, 0, 0, 0, 0, 6, 0, 0, 2837, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 30, 4, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8468, 1, 3, 30, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695103', 4695103, '-97.634712', '13.839900', '15.030030', 3082, 0, 0, 0, 0, 6, 0, 0, 2837, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 30, 4, 0, 1, 0, 0, 0, '0.000000', '1.000000', 8196, 1, 3, 30, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695104', 4695104, '-96.822487', '13.839900', '11.453120', 3084, 0, 0, 0, 0, 6, 0, 0, 2839, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 30, 4, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7700, 1, 3, 30, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695149', 4695149, '127.339401', '16.544559', '59.349178', 3092, 0, 0, 0, 1, 6, 0, 0, 2847, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11932, 1, 3, 100, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695150', 4695150, '127.530098', '16.538601', '75.651657', 3092, 0, 0, 0, 1, 6, 0, 0, 2847, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11660, 1, 3, 120, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695282', 4695282, '-109.276001', '13.859010', '8.739391', 3095, 0, 0, 0, 1, 6, 0, 0, 2850, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5688, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695283', 4695283, '-110.142899', '13.859010', '7.986779', 3095, 0, 0, 0, 1, 6, 0, 0, 2850, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5416, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695284', 4695284, '-109.234497', '13.914770', '7.658845', 3095, 0, 0, 0, 1, 6, 0, 0, 2850, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 5144, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695285', 4695285, '-109.782600', '13.770630', '6.902270', 3095, 0, 0, 0, 1, 6, 0, 0, 2850, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4872, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695286', 4695286, '-100.897903', '13.859010', '22.665730', 3095, 0, 0, 0, 1, 6, 0, 0, 2850, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4600, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695287', 4695287, '-100.920601', '13.859010', '24.167259', 3095, 0, 0, 0, 1, 6, 0, 0, 2850, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4056, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695288', 4695288, '-99.593163', '13.872320', '23.333759', 3095, 0, 0, 0, 1, 6, 0, 0, 2850, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3784, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4695289', 4695289, '-101.853996', '13.839900', '23.361509', 3095, 0, 0, 0, 1, 6, 0, 0, 2850, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 4328, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4696004', 4696004, '-101.183701', '13.839900', '13.797190', 3082, 0, 0, 0, 0, 6, 0, 0, 2837, 0, '0.000000', 50, 0, 120, 1, 0, 32, 0, 30, 4, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7924, 1, 3, 30, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4746722', 4746722, '39.780071', '16.283739', '98.562279', 3050, 0, 0, 0, 0, 6, 0, 0, 2852, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 40510, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4752747', 4752747, '45.517361', '16.283739', '93.384171', 3048, 0, 0, 0, 0, 6, 0, 0, 2851, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37436, 1, 0, 2000, 0, 0, 0, 0, 824, 448), +(373, 'f1d6', 'bnpc4752748', 4752748, '43.404129', '16.283701', '90.593407', 3048, 0, 0, 0, 0, 6, 0, 0, 2851, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 37164, 1, 0, 2000, 0, 0, 0, 0, 825, 449), +(373, 'f1d6', 'bnpc4752749', 4752749, '41.355221', '16.283701', '87.726227', 3048, 0, 0, 0, 0, 6, 0, 0, 2851, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36892, 1, 0, 2000, 0, 0, 0, 0, 826, 450), +(373, 'f1d6', 'bnpc4752750', 4752750, '39.383808', '16.283701', '85.303421', 3048, 0, 0, 0, 0, 6, 0, 0, 2851, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36620, 1, 0, 2000, 0, 0, 0, 0, 827, 451), +(373, 'f1d6', 'bnpc4752751', 4752751, '37.458759', '16.283701', '82.859444', 3048, 0, 0, 0, 0, 6, 0, 0, 2851, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36348, 1, 0, 2000, 0, 0, 0, 0, 825, 452), +(373, 'f1d6', 'bnpc4752752', 4752752, '35.765041', '16.283701', '80.643944', 3048, 0, 0, 0, 0, 6, 0, 0, 2851, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 36076, 1, 0, 2000, 0, 0, 0, 0, 827, 448), +(373, 'f1d6', 'bnpc4752753', 4752753, '33.987049', '16.283701', '78.457703', 3048, 0, 0, 0, 0, 6, 0, 0, 2851, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35804, 1, 0, 2000, 0, 0, 0, 0, 824, 449), +(373, 'f1d6', 'bnpc4752754', 4752754, '42.770359', '16.283701', '95.841431', 3048, 0, 0, 0, 0, 6, 0, 0, 2970, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35532, 1, 0, 2000, 0, 0, 0, 0, 826, 458), +(373, 'f1d6', 'bnpc4752755', 4752755, '40.601830', '16.283701', '92.791077', 3048, 0, 0, 0, 0, 6, 0, 0, 2970, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 35260, 1, 0, 2000, 0, 0, 0, 0, 825, 459), +(373, 'f1d6', 'bnpc4752756', 4752756, '38.528831', '16.283701', '89.999817', 3048, 0, 0, 0, 0, 6, 0, 0, 2970, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34988, 1, 0, 2000, 0, 0, 0, 0, 827, 460), +(373, 'f1d6', 'bnpc4752757', 4752757, '36.512539', '16.283701', '87.725052', 3048, 0, 0, 0, 0, 6, 0, 0, 2970, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34716, 1, 0, 2000, 0, 0, 0, 0, 824, 460), +(373, 'f1d6', 'bnpc4752758', 4752758, '34.791061', '16.283701', '85.341057', 3048, 0, 0, 0, 0, 6, 0, 0, 2970, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34444, 1, 0, 2000, 0, 0, 0, 0, 825, 461), +(373, 'f1d6', 'bnpc4752759', 4752759, '32.737171', '16.283701', '83.011620', 3048, 0, 0, 0, 0, 6, 0, 0, 2970, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 34172, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4752760', 4752760, '30.742720', '16.283701', '80.617218', 3048, 0, 0, 0, 0, 6, 0, 0, 2970, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33900, 1, 0, 2000, 0, 0, 0, 0, 825, 459), +(373, 'f1d6', 'bnpc4752761', 4752761, '35.865978', '16.283739', '101.223503', 3049, 0, 0, 0, 0, 6, 0, 0, 2970, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33634, 1, 0, 2000, 0, 0, 0, 0, 824, 460), +(373, 'f1d6', 'bnpc4752762', 4752762, '33.817741', '16.283701', '98.517021', 3049, 0, 0, 0, 0, 6, 0, 0, 2851, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 33362, 1, 0, 2000, 0, 0, 0, 0, 828, 452), +(373, 'f1d6', 'bnpc4752989', 4752989, '87.835442', '22.101000', '-41.466450', 3054, 0, 0, 0, 3, 6, 0, 0, 2856, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32504, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4752990', 4752990, '88.213287', '22.101000', '-57.073410', 3053, 0, 0, 0, 0, 6, 0, 0, 2855, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32238, 1, 6, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753174', 4753174, '80.168152', '22.101000', '-35.700199', 3051, 0, 0, 0, 1, 6, 0, 0, 2854, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28932, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753175', 4753175, '80.168152', '22.101000', '-38.527611', 3051, 0, 0, 0, 1, 6, 0, 0, 2854, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28660, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753176', 4753176, '80.168152', '22.101000', '-41.561310', 3051, 0, 0, 0, 1, 6, 0, 0, 2854, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28388, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753177', 4753177, '80.168159', '22.101000', '-45.019588', 3051, 0, 0, 0, 1, 6, 0, 0, 2854, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 28116, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753178', 4753178, '95.693260', '22.101000', '-36.211578', 3052, 0, 0, 0, 1, 6, 0, 0, 2853, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27850, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753179', 4753179, '95.693260', '22.101000', '-40.659882', 3052, 0, 0, 0, 1, 6, 0, 0, 2853, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 27578, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753365', 4753365, '-51.109161', '14.055000', '-12.035770', 3060, 0, 0, 0, 0, 6, 0, 0, 2861, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 50572, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753366', 4753366, '-48.114819', '14.055000', '-10.614270', 3059, 0, 0, 0, 0, 6, 0, 0, 2860, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 50306, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753449', 4753449, '-49.576550', '14.055000', '4.325246', 3058, 0, 0, 0, 0, 6, 0, 0, 2859, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 50040, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753450', 4753450, '-54.196930', '14.055000', '4.040049', 3057, 0, 0, 0, 0, 6, 0, 0, 2858, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 49774, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753789', 4753789, '-45.843391', '14.055000', '-28.085119', 3057, 0, 0, 0, 0, 6, 0, 0, 2858, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47630, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753790', 4753790, '-34.225239', '14.055000', '-15.378870', 3057, 0, 0, 0, 0, 6, 0, 0, 2858, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47358, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753791', 4753791, '-61.272362', '14.055000', '-25.936399', 3057, 0, 0, 0, 0, 6, 0, 0, 2858, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 47086, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753793', 4753793, '-38.171589', '14.055000', '-1.021181', 3057, 0, 0, 0, 0, 6, 0, 0, 2858, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 46814, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753794', 4753794, '-67.522408', '14.055000', '-13.133630', 3057, 0, 0, 0, 0, 6, 0, 0, 2858, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 46542, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753795', 4753795, '-64.497719', '14.055000', '-21.683950', 3058, 0, 0, 0, 0, 6, 0, 0, 2859, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 46264, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753796', 4753796, '-36.101200', '14.055000', '-5.814932', 3058, 0, 0, 0, 0, 6, 0, 0, 2859, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45992, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753797', 4753797, '-51.728401', '14.055000', '-28.429880', 3058, 0, 0, 0, 0, 6, 0, 0, 2859, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 45720, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753801', 4753801, '-56.269741', '14.055000', '-13.882980', 3056, 0, 0, 0, 0, 6, 0, 0, 2857, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43188, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753802', 4753802, '-56.245392', '14.055000', '-16.442921', 3056, 0, 0, 0, 0, 6, 0, 0, 2857, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43460, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753803', 4753803, '-56.383221', '14.055000', '-11.562530', 3056, 0, 0, 0, 0, 6, 0, 0, 2857, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 43732, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4753804', 4753804, '-53.314968', '14.055000', '-6.910931', 3056, 0, 0, 0, 0, 6, 0, 0, 2857, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42916, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4756955', 4756955, '-90.514809', '14.447630', '41.511509', 3094, 0, 0, 0, 2, 6, 0, 0, 2849, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7434, 1, 3, 0, 0, 0, 0, 4756972, 0, 0), +(373, 'f1d6', 'bnpc4756956', 4756956, '-113.777397', '13.368050', '9.215479', 3094, 0, 0, 0, 2, 6, 0, 0, 2849, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 7162, 1, 3, 0, 0, 0, 0, 4756999, 0, 0), +(373, 'f1d6', 'bnpc4756960', 4756960, '-91.782700', '13.592040', '8.722582', 3094, 0, 0, 0, 2, 6, 0, 0, 2849, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 6890, 1, 3, 0, 0, 0, 0, 4757048, 0, 0), +(373, 'f1d6', 'bnpc4866709', 4866709, '80.676743', '18.020809', '149.369995', 434, 0, 0, 0, 0, 6, 0, 0, 2846, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4866710', 4866710, '74.485046', '18.389790', '47.303890', 434, 0, 0, 0, 0, 6, 0, 0, 2846, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11122, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4866711', 4866711, '147.816193', '18.005850', '67.424843', 434, 0, 0, 0, 0, 6, 0, 0, 2846, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 10850, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4894702', 4894702, '80.049072', '22.101000', '-48.113659', 3051, 0, 0, 0, 1, 6, 0, 0, 2854, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25700, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4894703', 4894703, '79.998611', '22.101000', '-50.979149', 3051, 0, 0, 0, 1, 6, 0, 0, 2854, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25428, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4895750', 4895750, '-51.744751', '14.055000', '-5.696849', 3056, 0, 0, 0, 1, 6, 0, 0, 2857, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42644, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4895751', 4895751, '-50.276039', '14.055000', '-4.713238', 3056, 0, 0, 0, 1, 6, 0, 0, 2857, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42372, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4902926', 4902926, '-55.015499', '14.055000', '-5.309750', 3056, 0, 0, 0, 0, 6, 0, 0, 2857, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 42100, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4902927', 4902927, '-53.320320', '14.055000', '-4.003378', 3056, 0, 0, 0, 0, 6, 0, 0, 2857, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41828, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(373, 'f1d6', 'bnpc4902928', 4902928, '-51.274189', '14.055000', '-2.604702', 3056, 0, 0, 0, 0, 6, 0, 0, 2857, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 41556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(374, 'f1fb', 'bnpc4712010', 4712010, '0.000000', '75.084084', '0.000000', 2987, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22088, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(374, 'f1fb', 'bnpc4712011', 4712011, '5.027565', '75.000000', '1.469313', 2989, 0, 0, 0, 0, 6, 0, 0, 2833, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(374, 'f1fb', 'bnpc4724036', 4724036, '4.951025', '75.000000', '3.833662', 2988, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(374, 'f1fb', 'bnpc4724037', 4724037, '0.000000', '75.084084', '0.000000', 2990, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20328, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(374, 'f1fb', 'bnpc4724038', 4724038, '5.027565', '75.000000', '1.469313', 2992, 0, 0, 0, 0, 6, 0, 0, 2833, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20062, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(374, 'f1fb', 'bnpc4724039', 4724039, '4.951025', '75.000000', '3.833662', 2991, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19796, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(374, 'f1fb', 'bnpc4725363', 4725363, '7.940563', '75.000000', '2.130820', 2997, 0, 0, 0, 0, 6, 0, 0, 2833, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(374, 'f1fb', 'bnpc4891505', 4891505, '0.000000', '75.084084', '0.000000', 3128, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(374, 'f1fb', 'bnpc4891506', 4891506, '5.027565', '75.000000', '1.469313', 3130, 0, 0, 0, 0, 6, 0, 0, 2833, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(374, 'f1fb', 'bnpc4891507', 4891507, '4.951025', '75.000000', '3.833662', 3129, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20678, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(375, 'f1fb_2', 'bnpc4712010', 4712010, '0.000000', '75.084084', '0.000000', 2987, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22088, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(375, 'f1fb_2', 'bnpc4712011', 4712011, '5.027565', '75.000000', '1.469313', 2989, 0, 0, 0, 0, 6, 0, 0, 2833, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21822, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(375, 'f1fb_2', 'bnpc4724036', 4724036, '4.951025', '75.000000', '3.833662', 2988, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21556, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(375, 'f1fb_2', 'bnpc4724037', 4724037, '0.000000', '75.084084', '0.000000', 2990, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20328, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(375, 'f1fb_2', 'bnpc4724038', 4724038, '5.027565', '75.000000', '1.469313', 2992, 0, 0, 0, 0, 6, 0, 0, 2833, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20062, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(375, 'f1fb_2', 'bnpc4724039', 4724039, '4.951025', '75.000000', '3.833662', 2991, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19796, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(375, 'f1fb_2', 'bnpc4725363', 4725363, '7.940563', '75.000000', '2.130820', 2997, 0, 0, 0, 0, 6, 0, 0, 2833, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19530, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(375, 'f1fb_2', 'bnpc4891505', 4891505, '0.000000', '75.084084', '0.000000', 3128, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(375, 'f1fb_2', 'bnpc4891506', 4891506, '5.027565', '75.000000', '1.469313', 3130, 0, 0, 0, 0, 6, 0, 0, 2833, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(375, 'f1fb_2', 'bnpc4891507', 4891507, '4.951025', '75.000000', '3.833662', 3129, 0, 0, 0, 0, 6, 0, 0, 2832, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20678, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4291568', 4291568, '76.290123', '30.749250', '-733.599182', 1776, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22404, 5, 0, 0, 0, 0, 30052, 0, 0, 0), +(379, 'e0090', 'bnpc4292672', 4292672, '-12.396590', '18.377340', '-670.928772', 1777, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22138, 5, 0, 0, 0, 0, 30055, 0, 0, 0), +(379, 'e0090', 'bnpc4292673', 4292673, '91.670517', '20.458050', '-614.237122', 1778, 0, 0, 0, 0, 6, 0, 0, 1584, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 21872, 5, 0, 0, 0, 0, 30054, 0, 0, 0), +(379, 'e0090', 'bnpc4295485', 4295485, '-266.791504', '-5.944477', '-526.778198', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73272, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295487', 4295487, '-276.140686', '-8.410786', '-516.253174', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 73000, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295488', 4295488, '-298.914093', '-4.103804', '-550.291321', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72728, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295489', 4295489, '-103.196297', '1.542795', '-586.758179', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72456, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295490', 4295490, '-207.536301', '-2.690903', '-578.039001', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 72184, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295491', 4295491, '-103.713898', '-0.832843', '-642.948425', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71912, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295492', 4295492, '-208.009796', '1.723610', '-616.185120', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71640, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295493', 4295493, '-172.408905', '4.990528', '-671.229126', 27, 0, 0, 0, 1, 6, 0, 0, 27, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71368, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295495', 4295495, '-380.537506', '-16.898170', '-441.082001', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 71102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295496', 4295496, '-430.882507', '-16.898170', '-384.312195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295497', 4295497, '-390.139587', '-16.898170', '-350.704712', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70558, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295498', 4295498, '-398.062103', '-16.898170', '-358.104401', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70286, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295499', 4295499, '-336.279297', '-16.898170', '-437.756195', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 70014, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295500', 4295500, '-302.568298', '-16.898170', '-458.892609', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69742, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295501', 4295501, '-402.253601', '-16.898170', '-464.540710', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69470, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295503', 4295503, '-369.143799', '-16.898170', '-389.766815', 140, 0, 0, 0, 1, 6, 0, 0, 237, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 69198, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295505', 4295505, '-359.561707', '-16.042290', '-486.552094', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68932, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295506', 4295506, '-417.805786', '-6.910027', '-523.771912', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68660, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295507', 4295507, '-466.061310', '-9.446001', '-532.017029', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68388, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295508', 4295508, '-413.364410', '-2.492527', '-559.181519', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 68116, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295514', 4295514, '-350.972809', '-6.607239', '-526.665222', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67844, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295515', 4295515, '-360.309296', '-4.290267', '-546.520813', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67572, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295516', 4295516, '-350.790710', '-3.296191', '-550.475586', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67300, 1, 0, 0, 0, 0, 30246, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(379, 'e0090', 'bnpc4295520', 4295520, '-396.722198', '-14.513140', '-500.059692', 139, 0, 0, 0, 1, 6, 0, 0, 645, 0, '0.000000', 44, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 67028, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295524', 4295524, '-234.088699', '-4.989685', '-302.540588', 724, 0, 0, 0, 1, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4295525', 4295525, '-211.180405', '-2.844870', '-288.253998', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66496, 1, 0, 0, 0, 0, 30079, 0, 0, 0), +(379, 'e0090', 'bnpc4295526', 4295526, '-257.312897', '1.113892', '-308.064392', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 66230, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4295528', 4295528, '-212.115707', '-2.955642', '-289.682190', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65946, 1, 0, 0, 0, 0, 30065, 0, 0, 0), +(379, 'e0090', 'bnpc4295529', 4295529, '-224.841705', '3.952026', '-259.540710', 725, 0, 0, 0, 1, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65680, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4295530', 4295530, '-203.875793', '24.704220', '-215.411697', 726, 0, 0, 0, 1, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65414, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4295531', 4295531, '-234.943207', '21.774599', '-213.092300', 725, 0, 0, 0, 0, 6, 0, 0, 651, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 65136, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(379, 'e0090', 'bnpc4295532', 4295532, '-235.959198', '22.114910', '-212.031006', 724, 0, 0, 0, 0, 6, 0, 0, 650, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64858, 1, 0, 0, 0, 0, 30073, 0, 0, 0), +(379, 'e0090', 'bnpc4295533', 4295533, '-234.301407', '21.966511', '-211.462402', 726, 0, 0, 0, 0, 6, 0, 0, 652, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64598, 1, 0, 0, 0, 0, 30082, 0, 0, 0), +(379, 'e0090', 'bnpc4295534', 4295534, '-127.288002', '47.127460', '-188.580307', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64332, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295535', 4295535, '-140.871399', '45.053020', '-179.736603', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 64060, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295536', 4295536, '-136.478302', '46.067551', '-193.959702', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63788, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295537', 4295537, '-143.537201', '44.052780', '-181.398193', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63516, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295538', 4295538, '-146.514297', '42.327431', '-204.108902', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 63244, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295539', 4295539, '-129.866394', '46.678692', '-196.996994', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62972, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295540', 4295540, '-145.364395', '42.544418', '-202.550705', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62700, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295541', 4295541, '-144.789993', '44.556961', '-194.376297', 46, 0, 0, 0, 1, 6, 0, 0, 46, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62428, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295659', 4295659, '-53.322418', '17.072929', '-621.681213', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 62162, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295665', 4295665, '-88.710228', '0.643335', '-625.828125', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61890, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295666', 4295666, '-207.395203', '8.290789', '-665.648376', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61618, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295668', 4295668, '-156.229294', '-1.918439', '-604.694275', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61346, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295669', 4295669, '-304.707489', '-15.793150', '-491.020111', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 61074, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295670', 4295670, '-386.814087', '-6.319692', '-539.647400', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60802, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295674', 4295674, '-375.356689', '-13.229610', '-505.729797', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60530, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295679', 4295679, '-327.840393', '-2.384109', '-563.164490', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 44, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 60258, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295691', 4295691, '482.994690', '-1.037749', '-792.622070', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59992, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295693', 4295693, '473.960388', '0.503479', '-803.097595', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59720, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295694', 4295694, '450.441315', '-4.905994', '-755.835999', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59448, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295695', 4295695, '500.877289', '-5.020264', '-757.289978', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 59176, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295697', 4295697, '456.274902', '-4.258285', '-763.958801', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58904, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295698', 4295698, '550.072510', '-9.750549', '-735.286499', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58632, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295700', 4295700, '487.731598', '2.187441', '-809.306885', 647, 0, 0, 0, 1, 6, 0, 0, 793, 0, '0.000000', 48, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58360, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295702', 4295702, '268.736298', '32.329670', '-657.612671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 58094, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295704', 4295704, '272.319611', '32.540180', '-659.312988', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57822, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295705', 4295705, '285.744507', '34.969521', '-689.040283', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57550, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295709', 4295709, '298.145996', '20.340210', '-684.382385', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57278, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295710', 4295710, '348.251495', '21.030451', '-726.475220', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 57006, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295711', 4295711, '352.642487', '20.319700', '-740.209778', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56734, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295712', 4295712, '369.140015', '21.089970', '-736.832886', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56462, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295715', 4295715, '363.363007', '-1.968445', '-698.451172', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 56190, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295716', 4295716, '557.910828', '-5.547063', '-643.875671', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55918, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295717', 4295717, '557.692322', '16.908760', '-525.262085', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55646, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295718', 4295718, '576.089783', '12.066130', '-514.577271', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55374, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295719', 4295719, '594.596985', '7.711907', '-478.120911', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 55102, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295720', 4295720, '616.268982', '8.446064', '-482.073486', 645, 0, 0, 0, 1, 6, 0, 0, 789, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54830, 1, 0, 0, 0, 0, 30246, 0, 0, 0), +(379, 'e0090', 'bnpc4295726', 4295726, '356.740601', '-6.149414', '-463.218109', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54564, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295727', 4295727, '365.071991', '-14.602910', '-430.808014', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54298, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295728', 4295728, '350.667511', '-17.288509', '-404.379303', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 54032, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295734', 4295734, '413.196686', '-20.564011', '-317.744904', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53760, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295735', 4295735, '387.892609', '-18.073410', '-346.505707', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53476, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295736', 4295736, '450.900513', '-17.914270', '-353.105286', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 53210, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295737', 4295737, '481.724091', '-12.428540', '-382.045105', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52944, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295738', 4295738, '511.909393', '-9.373532', '-382.464996', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52660, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295739', 4295739, '522.073730', '0.990242', '-453.501709', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52394, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295747', 4295747, '588.058716', '-2.946974', '-271.337891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 52134, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295749', 4295749, '568.700012', '-2.429443', '-330.453400', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51862, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295751', 4295751, '582.843079', '-3.006616', '-272.419891', 730, 0, 0, 0, 1, 6, 0, 0, 649, 0, '0.000000', 49, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51590, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295755', 4295755, '214.220200', '-22.109159', '-425.877502', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51324, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295757', 4295757, '208.472198', '-22.096960', '-422.660797', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 51052, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295759', 4295759, '162.350601', '-27.989771', '-429.755402', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50780, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295760', 4295760, '152.123001', '-27.048130', '-440.418915', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50508, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295761', 4295761, '177.396194', '-25.049320', '-444.224487', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 50236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295762', 4295762, '267.297211', '-21.872410', '-406.569397', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49964, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295763', 4295763, '306.843597', '-26.993231', '-409.628510', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295764', 4295764, '304.550415', '-25.764360', '-424.008301', 777, 0, 0, 0, 1, 6, 0, 0, 1851, 0, '0.000000', 45, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295769', 4295769, '306.531403', '-6.106912', '-519.224976', 727, 0, 0, 0, 1, 6, 0, 0, 647, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 49130, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295770', 4295770, '282.576813', '-0.225863', '-572.515686', 728, 0, 0, 0, 1, 6, 0, 0, 646, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48852, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295771', 4295771, '310.969513', '6.158492', '-563.194397', 729, 0, 0, 0, 1, 6, 0, 0, 648, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48592, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295809', 4295809, '156.994202', '14.383940', '-592.509216', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48290, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295811', 4295811, '223.296295', '19.340050', '-610.880798', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 48018, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295812', 4295812, '201.983597', '-0.198364', '-555.107971', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47746, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295813', 4295813, '341.647797', '-7.563892', '-456.047089', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47474, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295816', 4295816, '408.980713', '-16.354401', '-360.560699', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 47202, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295818', 4295818, '509.696991', '-9.567444', '-375.661896', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46930, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295820', 4295820, '496.853485', '0.344957', '-504.120392', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46658, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295823', 4295823, '601.499573', '8.072348', '-517.726685', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46386, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295825', 4295825, '570.526428', '-2.482952', '-625.752014', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 46114, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295827', 4295827, '556.342102', '-7.876167', '-657.103516', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45842, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295829', 4295829, '554.863770', '-9.262268', '-749.843628', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45570, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295831', 4295831, '503.838013', '-2.956629', '-777.365173', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45298, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295834', 4295834, '482.706696', '1.341902', '-807.133728', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 45026, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295835', 4295835, '486.772400', '5.215003', '-836.320984', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44754, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295836', 4295836, '471.659790', '3.490144', '-819.978882', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44482, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295837', 4295837, '484.345886', '5.375706', '-837.509583', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 44210, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295840', 4295840, '412.710693', '-9.353821', '-747.005371', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 48, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43938, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295844', 4295844, '384.603485', '-4.196289', '-690.486023', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43666, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295846', 4295846, '332.112701', '4.562378', '-690.424988', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43394, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295850', 4295850, '316.341492', '26.032160', '-728.249573', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 43122, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295851', 4295851, '297.774597', '15.475720', '-651.450989', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 46, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42850, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295855', 4295855, '598.748718', '-3.250244', '-301.930298', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42578, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295858', 4295858, '591.221985', '-1.360156', '-323.232788', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 49, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42306, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295862', 4295862, '-314.692108', '-15.474820', '-327.581299', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 42034, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295866', 4295866, '-272.613800', '-8.061660', '-332.045013', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41762, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295867', 4295867, '-217.273193', '-1.571716', '-276.691895', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41490, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295870', 4295870, '-229.022598', '14.450200', '-236.072403', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 41218, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295871', 4295871, '-188.372696', '33.340939', '-195.666504', 135, 0, 0, 0, 1, 6, 0, 0, 117, 0, '0.000000', 45, 1, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40946, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4295884', 4295884, '-562.005005', '-2.945007', '-452.323212', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40722, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4295886', 4295886, '-554.466980', '-3.768982', '-380.758392', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40456, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4295887', 4295887, '-568.932678', '-2.945007', '-424.124603', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 40190, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4295889', 4295889, '-543.789124', '-3.866000', '-411.311401', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39924, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4296050', 4296050, '-471.824188', '-6.332520', '-433.737701', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39640, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(379, 'e0090', 'bnpc4296052', 4296052, '-484.855499', '-6.027344', '-447.898102', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39368, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(379, 'e0090', 'bnpc4296053', 4296053, '-445.975494', '-12.710820', '-466.361511', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32130, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4296054', 4296054, '-473.746887', '-4.409851', '-480.766113', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32432, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4296055', 4296055, '-471.580109', '-6.668213', '-449.912292', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 39102, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4296056', 4296056, '-453.727112', '-10.818660', '-442.862610', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38842, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4296060', 4296060, '-455.741211', '-7.492188', '-484.428192', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38552, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(379, 'e0090', 'bnpc4296081', 4296081, '-603.967285', '-3.891113', '-368.337494', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38298, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4296082', 4296082, '-640.680481', '-3.891113', '-370.046600', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 38032, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4296091', 4296091, '-592.797729', '-2.945007', '-432.211792', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37736, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(379, 'e0090', 'bnpc4296093', 4296093, '-635.341492', '-2.933044', '-396.278687', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37464, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(379, 'e0090', 'bnpc4296094', 4296094, '-548.271912', '-1.937927', '-310.963593', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 37204, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4296096', 4296096, '-498.711395', '-3.960067', '-255.747696', 201, 0, 0, 0, 1, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36932, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(379, 'e0090', 'bnpc4296098', 4296098, '-558.028809', '-3.683542', '-364.324585', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36648, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(379, 'e0090', 'bnpc4296100', 4296100, '-489.250092', '-3.708008', '-282.124115', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36376, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(379, 'e0090', 'bnpc4296103', 4296103, '-446.294891', '-4.000447', '-219.651199', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 36104, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(379, 'e0090', 'bnpc4296105', 4296105, '-437.867004', '-2.581742', '-273.708099', 62, 0, 0, 0, 0, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35832, 1, 0, 0, 0, 0, 30076, 0, 0, 0), +(379, 'e0090', 'bnpc4296108', 4296108, '-527.244995', '-2.670410', '-288.624512', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35554, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4296110', 4296110, '-560.845276', '-2.975586', '-327.595886', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35294, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4296111', 4296111, '-547.325928', '-1.754883', '-291.645691', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 35016, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4296113', 4296113, '-527.817322', '-3.767937', '-323.068909', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34762, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4296115', 4296115, '-543.791321', '-3.216822', '-330.542389', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34496, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4296118', 4296118, '-473.824707', '-3.767937', '-273.987488', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 34224, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4296119', 4296119, '-488.912994', '-3.958386', '-246.223602', 64, 0, 0, 0, 1, 6, 0, 0, 1813, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33946, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4296120', 4296120, '-461.660309', '-3.996136', '-252.041306', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33650, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4296121', 4296121, '-428.786102', '-3.945695', '-301.904114', 62, 0, 0, 0, 1, 6, 0, 0, 1811, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33384, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4296122', 4296122, '-429.702698', '-3.990123', '-245.654495', 63, 0, 0, 0, 1, 6, 0, 0, 1812, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 33118, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4296344', 4296344, '-618.398071', '-3.216822', '-419.669586', 201, 0, 0, 0, 5, 6, 0, 0, 1814, 0, '0.000000', 47, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 32692, 1, 0, 0, 0, 0, 0, 4296333, 0, 0), +(379, 'e0090', 'bnpc4331545', 4331545, '-431.193512', '-15.291800', '-426.211914', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31858, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4331546', 4331546, '-472.129791', '-5.294910', '-466.746185', 55, 0, 0, 0, 1, 6, 0, 0, 1809, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31586, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4331549', 4331549, '-455.329895', '-10.797180', '-446.420288', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31344, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4331550', 4331550, '-470.522400', '-4.822834', '-501.822296', 61, 0, 0, 0, 1, 6, 0, 0, 1810, 0, '0.000000', 46, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 31072, 1, 0, 0, 0, 0, 30096, 0, 0, 0), +(379, 'e0090', 'bnpc4621627', 4621627, '459.067596', '6.191762', '-845.122498', 2773, 0, 0, 0, 1, 6, 0, 0, 2514, 0, '0.000000', 5, 0, 120, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '0.000000', '1.000000', 22746, 11, 0, 0, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4572944', 4572944, '-146.338303', '6.373298', '-19.666241', 2911, 0, 0, 0, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 24592, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4572945', 4572945, '-135.501099', '8.852708', '-10.660940', 2911, 0, 0, 0, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 24320, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4572990', 4572990, '-188.433701', '-0.778198', '36.179081', 2911, 0, 0, 5, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '0.000000', '1.000000', 23232, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4594889', 4594889, '-200.132004', '2.104434', '22.672791', 2912, 0, 0, 0, 0, 6, 0, 0, 2640, 0, '0.500000', 50, 0, 114, 1, 0, 30, 0, 6, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 22966, 0, 4, 2000, 0, 0, 0, 4619735, 0, 0), +(380, 'f1b1_2', 'bnpc4594890', 4594890, '-205.547806', '0.795838', '20.843929', 2912, 0, 0, 0, 0, 6, 0, 0, 2640, 0, '0.500000', 50, 0, 120, 1, 0, 30, 0, 6, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 22694, 1, 4, 2000, 0, 0, 0, 4619736, 0, 0), +(380, 'f1b1_2', 'bnpc4597484', 4597484, '-207.901794', '0.576092', '26.368891', 2912, 0, 0, 0, 0, 6, 0, 0, 2640, 0, '0.500000', 50, 0, 120, 1, 0, 30, 0, 6, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 22422, 1, 4, 2000, 0, 0, 0, 4619737, 0, 0), +(380, 'f1b1_2', 'bnpc4616594', 4616594, '-280.674103', '10.421330', '32.743111', 2726, 0, 0, 0, 0, 6, 0, 0, 2609, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17354, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4616595', 4616595, '-277.311005', '10.421330', '28.666361', 2727, 0, 0, 0, 0, 6, 0, 0, 2619, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17088, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4616596', 4616596, '-278.322205', '10.421330', '42.406460', 2728, 0, 0, 0, 0, 6, 0, 0, 2620, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16822, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4616597', 4616597, '-279.931305', '10.421330', '25.123070', 2729, 0, 0, 0, 0, 6, 0, 0, 2621, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16556, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4616598', 4616598, '-271.632202', '10.421330', '22.440451', 2730, 0, 0, 0, 0, 6, 0, 0, 2622, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16290, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4616599', 4616599, '-270.140411', '10.421330', '30.752750', 2731, 0, 0, 0, 0, 6, 0, 0, 2609, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16024, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4616665', 4616665, '-137.604507', '11.106360', '-10.588380', 2913, 0, 0, 0, 3, 21, 0, 0, 2742, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22156, 1, 4, 0, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4616666', 4616666, '-195.538101', '5.241385', '24.348860', 2914, 0, 0, 0, 3, 21, 0, 0, 2742, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21890, 1, 4, 0, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4619732', 4619732, '-150.190903', '5.802513', '-28.170679', 2911, 0, 0, 0, 1, 6, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 24048, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4619733', 4619733, '-129.789001', '7.449677', '-8.540951', 2911, 0, 0, 0, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 23776, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4619734', 4619734, '-142.123993', '7.839766', '-9.058794', 2911, 0, 0, 0, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 23504, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4620610', 4620610, '-264.215302', '10.421330', '28.436081', 2756, 0, 0, 0, 0, 6, 0, 0, 2623, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15758, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4663772', 4663772, '-137.595901', '11.098200', '-10.575710', 410, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4663775', 4663775, '-195.541504', '5.243267', '24.347481', 410, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 21352, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4695639', 4695639, '-270.140411', '10.421330', '30.752750', 2731, 0, 0, 0, 0, 6, 0, 0, 2621, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15480, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760567', 4760567, '-146.338303', '6.373298', '-19.666241', 3160, 0, 0, 0, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 19606, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760568', 4760568, '-135.501099', '8.852708', '-10.660940', 3160, 0, 0, 0, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 19334, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760569', 4760569, '-150.190903', '5.802513', '-28.170679', 3160, 0, 0, 0, 1, 6, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 19062, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760570', 4760570, '-129.789001', '7.449677', '-8.540951', 3160, 0, 0, 0, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 20422, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760571', 4760571, '-142.123993', '7.839766', '-9.058794', 3160, 0, 0, 0, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '5.000000', '1.000000', 20150, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760572', 4760572, '-188.433701', '-0.778198', '36.179081', 3160, 0, 0, 5, 1, 8, 0, 0, 539, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 12, 4, 0, 1, 0, 1, 1, '0.000000', '1.000000', 19878, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760573', 4760573, '-200.132004', '2.104434', '22.672791', 3161, 0, 0, 0, 0, 6, 0, 0, 2640, 0, '0.500000', 50, 0, 114, 1, 0, 30, 0, 6, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 18252, 0, 4, 2000, 0, 0, 0, 4619735, 0, 0), +(380, 'f1b1_2', 'bnpc4760574', 4760574, '-205.547806', '0.795838', '20.843929', 3161, 0, 0, 0, 0, 6, 0, 0, 2640, 0, '0.500000', 50, 0, 120, 1, 0, 30, 0, 6, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 18524, 1, 4, 2000, 0, 0, 0, 4619736, 0, 0), +(380, 'f1b1_2', 'bnpc4760575', 4760575, '-207.901794', '0.576092', '26.368891', 3161, 0, 0, 0, 0, 6, 0, 0, 2640, 0, '0.500000', 50, 0, 120, 1, 0, 30, 0, 6, 1, 0, 1, 0, 1, 0, '0.000000', '1.000000', 18796, 1, 4, 2000, 0, 0, 0, 4619737, 0, 0), +(380, 'f1b1_2', 'bnpc4760576', 4760576, '-137.604507', '11.106360', '-10.588380', 3162, 0, 0, 0, 3, 21, 0, 0, 2742, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17986, 1, 4, 0, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760577', 4760577, '-195.538101', '5.241385', '24.348860', 3163, 0, 0, 0, 3, 21, 0, 0, 2742, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17720, 1, 4, 0, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760578', 4760578, '-137.595901', '11.098200', '-10.575710', 410, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20960, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760579', 4760579, '-195.541504', '5.243267', '24.347481', 410, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20688, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760582', 4760582, '-280.674103', '10.421330', '32.743111', 3131, 0, 0, 0, 0, 6, 0, 0, 2609, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15120, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760583', 4760583, '-277.311005', '10.421330', '28.666361', 3132, 0, 0, 0, 0, 6, 0, 0, 2619, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14854, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760584', 4760584, '-278.322205', '10.421330', '42.406460', 3133, 0, 0, 0, 0, 6, 0, 0, 2620, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14588, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760585', 4760585, '-279.931305', '10.421330', '25.123070', 3134, 0, 0, 0, 0, 6, 0, 0, 2621, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14322, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760586', 4760586, '-271.632202', '10.421330', '22.440451', 3135, 0, 0, 0, 0, 6, 0, 0, 2622, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14056, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760587', 4760587, '-270.140411', '10.421330', '30.752750', 3137, 0, 0, 0, 0, 6, 0, 0, 2609, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13524, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760589', 4760589, '-264.215302', '10.421330', '28.436081', 3136, 0, 0, 0, 0, 6, 0, 0, 2623, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13790, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(380, 'f1b1_2', 'bnpc4760611', 4760611, '-270.140411', '10.421330', '30.752750', 3137, 0, 0, 0, 0, 6, 0, 0, 2621, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13252, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4646826', 4646826, '-462.256287', '800.031372', '0.039109', 2915, 0, 0, 0, 1, 6, 0, 0, 2641, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 26692, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(381, 'f1b2_2', 'bnpc4646827', 4646827, '-462.256287', '800.031372', '0.039100', 2915, 0, 0, 0, 1, 6, 0, 0, 2641, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 26420, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(381, 'f1b2_2', 'bnpc4646828', 4646828, '-467.826294', '800.093384', '-0.253989', 2915, 0, 0, 0, 1, 6, 0, 0, 1471, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3868, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(381, 'f1b2_2', 'bnpc4646829', 4646829, '-467.826294', '800.093384', '-0.253989', 2915, 0, 0, 0, 1, 6, 0, 0, 1471, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3596, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(381, 'f1b2_2', 'bnpc4646830', 4646830, '-438.158386', '800.031494', '0.039100', 2915, 0, 0, 0, 1, 6, 0, 0, 2641, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 24788, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(381, 'f1b2_2', 'bnpc4646831', 4646831, '-462.256287', '800.031372', '0.039100', 2915, 0, 0, 0, 1, 6, 0, 0, 2641, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 23700, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(381, 'f1b2_2', 'bnpc4646832', 4646832, '-467.809601', '800.089600', '-0.240992', 2915, 0, 0, 0, 1, 6, 0, 0, 1471, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 3324, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(381, 'f1b2_2', 'bnpc4646878', 4646878, '-449.946503', '800.076172', '86.717041', 2732, 0, 0, 0, 0, 6, 0, 0, 2610, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16440, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4646879', 4646879, '-455.402588', '800.000000', '82.679207', 2733, 0, 0, 0, 0, 6, 0, 0, 2624, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16174, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4646880', 4646880, '-444.663910', '800.000000', '82.888397', 2734, 0, 0, 0, 0, 6, 0, 0, 2625, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15908, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4646881', 4646881, '-460.004913', '800.000000', '80.935921', 2735, 0, 0, 0, 0, 6, 0, 0, 2626, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15642, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4646882', 4646882, '-440.270905', '800.000000', '80.656990', 2736, 0, 0, 0, 0, 6, 0, 0, 2627, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15376, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4646883', 4646883, '-450.033295', '800.000000', '78.355843', 2737, 0, 0, 0, 0, 6, 0, 0, 2610, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15110, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4649708', 4649708, '-464.727905', '800.000916', '4.150533', 2919, 0, 0, 0, 1, 6, 0, 0, 2644, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 27230, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4649709', 4649709, '-465.637512', '800.011780', '-3.258655', 2919, 0, 0, 0, 1, 6, 0, 0, 2644, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 26958, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4649710', 4649710, '-466.647491', '800.028381', '-7.849937', 2918, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 27496, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4649711', 4649711, '-467.102692', '800.003113', '-1.731705', 2919, 0, 0, 0, 1, 6, 0, 0, 2644, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 25870, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4649712', 4649712, '-464.253387', '800.114075', '4.044464', 2918, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 26136, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4649713', 4649713, '-433.654510', '799.919006', '7.050138', 2920, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 25344, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4649714', 4649714, '-433.654510', '800.053406', '-6.030566', 2920, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 25072, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4649715', 4649715, '-434.447601', '799.926514', '0.107254', 2916, 0, 0, 0, 0, 6, 0, 0, 2642, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 25610, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4649716', 4649716, '-435.859314', '800.011780', '1.753515', 2919, 0, 0, 0, 1, 6, 0, 0, 2644, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 23966, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4649717', 4649717, '-430.733185', '800.040283', '-4.300975', 2920, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 24256, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4649718', 4649718, '-436.241211', '799.997009', '4.892796', 2918, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 24504, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4649719', 4649719, '-465.934387', '800.028381', '4.852085', 2918, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 23416, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4649720', 4649720, '-469.182190', '800.068787', '-3.083111', 2918, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 23144, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4649721', 4649721, '-468.181793', '800.024719', '1.094773', 2920, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 22896, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4649722', 4649722, '-435.845795', '800.007385', '0.107300', 2917, 0, 0, 0, 0, 6, 0, 0, 2643, 0, '0.000000', 50, 0, 120, 1, 0, 7, 0, 100, 1, 0, 1, 0, 1, 1, '0.000000', '1.000000', 22630, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4649723', 4649723, '-435.050903', '800.000000', '4.277941', 2920, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 7, 0, 100, 1, 0, 1, 0, 1, 1, '0.000000', '1.000000', 22352, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4663940', 4663940, '-450.033295', '800.000000', '78.355843', 2737, 0, 0, 0, 0, 6, 0, 0, 2613, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14838, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760618', 4760618, '-466.647491', '800.028381', '-7.849937', 3167, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 19238, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760619', 4760619, '-464.727905', '800.000916', '4.150533', 3168, 0, 0, 0, 1, 6, 0, 0, 2644, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 18700, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760620', 4760620, '-465.637512', '800.011780', '-3.258655', 3168, 0, 0, 0, 1, 6, 0, 0, 2644, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 18428, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760621', 4760621, '-462.256287', '800.031372', '0.039109', 3164, 0, 0, 0, 1, 6, 0, 0, 2641, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 21396, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(381, 'f1b2_2', 'bnpc4760622', 4760622, '-462.256287', '800.031372', '0.039100', 3164, 0, 0, 0, 1, 6, 0, 0, 2641, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 21668, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(381, 'f1b2_2', 'bnpc4760623', 4760623, '-464.253387', '800.114075', '4.044464', 3167, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 19510, 1, 4, 2000, 0, 0, 0, 0, 0, 0); +INSERT INTO `battlenpc` (`TerritoryType`, `TerritoryName`, `name`, `instanceId`, `x`, `y`, `z`, `BaseId`, `PopWeather`, `PopTimeStart`, `PopTimeEnd`, `MoveAI`, `WanderingRange`, `Route`, `EventGroup`, `NameId`, `DropItem`, `SenseRangeRate`, `Level`, `ActiveType`, `PopInterval`, `PopRate`, `PopEvent`, `LinkGroup`, `LinkFamily`, `LinkRange`, `LinkCountLimit`, `NonpopInitZone`, `InvalidRepop`, `LinkParent`, `LinkOverride`, `LinkReply`, `HorizontalPopRange`, `VerticalPopRange`, `BNpcBaseData`, `RepopId`, `BNPCRankId`, `TerritoryRange`, `BoundInstanceID`, `FateLayoutLabelId`, `NormalAI`, `ServerPathId`, `EquipmentID`, `CustomizeID`) VALUES +(381, 'f1b2_2', 'bnpc4760624', 4760624, '-467.102692', '800.003113', '-1.731705', 3168, 0, 0, 0, 1, 6, 0, 0, 2644, 0, '0.000000', 50, 0, 120, 1, 0, 2, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 18156, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760625', 4760625, '-434.447601', '799.926514', '0.107254', 3165, 0, 0, 0, 0, 6, 0, 0, 2642, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 20858, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760626', 4760626, '-433.654510', '799.919006', '7.050138', 3169, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 17346, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760627', 4760627, '-433.654510', '800.053406', '-6.030566', 3169, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 100, 2, 0, 1, 0, 1, 1, '0.000000', '1.000000', 17074, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760628', 4760628, '-438.158386', '800.031494', '0.039100', 3164, 0, 0, 0, 1, 6, 0, 0, 2641, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 21940, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(381, 'f1b2_2', 'bnpc4760629', 4760629, '-436.241211', '799.997009', '4.892796', 3167, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 20054, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760630', 4760630, '-430.733185', '800.040283', '-4.300975', 3169, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 16802, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760631', 4760631, '-435.859314', '800.011780', '1.753515', 3168, 0, 0, 0, 1, 6, 0, 0, 2644, 0, '0.000000', 50, 0, 120, 1, 0, 5, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 18972, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760632', 4760632, '-462.256287', '800.031372', '0.039100', 3164, 0, 0, 0, 1, 6, 0, 0, 2641, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 21124, 1, 4, 2000, 0, 0, 0, 4629397, 0, 0), +(381, 'f1b2_2', 'bnpc4760633', 4760633, '-465.934387', '800.028381', '4.852085', 3167, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 20326, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760634', 4760634, '-469.182190', '800.068787', '-3.083111', 3167, 0, 0, 0, 1, 6, 0, 0, 2174, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 19782, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760635', 4760635, '-468.181793', '800.024719', '1.094773', 3169, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 6, 0, 100, 3, 0, 1, 0, 1, 1, '0.000000', '1.000000', 17618, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760636', 4760636, '-435.845795', '800.007385', '0.107300', 3166, 0, 0, 0, 0, 6, 0, 0, 2643, 0, '0.000000', 50, 0, 120, 1, 0, 7, 0, 100, 1, 0, 1, 0, 1, 1, '0.000000', '1.000000', 20592, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760637', 4760637, '-435.050903', '800.000000', '4.277941', 3169, 0, 0, 0, 0, 6, 0, 0, 2645, 0, '0.000000', 50, 0, 120, 1, 0, 7, 0, 100, 1, 0, 1, 0, 1, 1, '0.000000', '1.000000', 17890, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760645', 4760645, '-449.946503', '800.076172', '86.717041', 3138, 0, 0, 0, 0, 6, 0, 0, 2610, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14472, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760646', 4760646, '-455.402588', '800.000000', '82.679207', 3139, 0, 0, 0, 0, 6, 0, 0, 2624, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14206, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760647', 4760647, '-444.663910', '800.000000', '82.888397', 3140, 0, 0, 0, 0, 6, 0, 0, 2625, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13940, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760648', 4760648, '-460.004913', '800.000000', '80.935921', 3141, 0, 0, 0, 0, 6, 0, 0, 2626, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13674, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760649', 4760649, '-440.270905', '800.000000', '80.656990', 3142, 0, 0, 0, 0, 6, 0, 0, 2627, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13408, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760650', 4760650, '-450.033295', '800.000000', '78.355843', 3143, 0, 0, 0, 0, 6, 0, 0, 2610, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12870, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(381, 'f1b2_2', 'bnpc4760671', 4760671, '-450.033295', '800.000000', '78.355843', 3143, 0, 0, 0, 0, 6, 0, 0, 2613, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13142, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4649169', 4649169, '71.584702', '-531.981079', '-48.587280', 2925, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 88890, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4649170', 4649170, '71.418488', '-543.166626', '7.215824', 2924, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 89156, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4649171', 4649171, '42.010639', '-511.416901', '-27.783140', 2923, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 89422, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4649172', 4649172, '39.797489', '-504.526306', '-62.479160', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 89688, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4649173', 4649173, '-0.007818', '-482.796692', '-84.345177', 2921, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 73132, 1, 4, 2000, 0, 0, 0, 4649420, 0, 0), +(382, 'f1b3_2', 'bnpc4649174', 4649174, '71.732674', '-450.459686', '-35.599300', 2921, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 72860, 1, 4, 2000, 0, 0, 0, 4649421, 0, 0), +(382, 'f1b3_2', 'bnpc4649175', 4649175, '-71.793762', '-450.441895', '-35.690861', 2921, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 72588, 1, 4, 2000, 0, 0, 0, 4649423, 0, 0), +(382, 'f1b3_2', 'bnpc4649176', 4649176, '-71.702209', '-434.603302', '-117.174103', 2921, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 72316, 1, 4, 2000, 0, 0, 0, 4649422, 0, 0), +(382, 'f1b3_2', 'bnpc4649177', 4649177, '-71.671631', '-466.251007', '45.639648', 2921, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 72044, 1, 4, 2000, 0, 0, 0, 4649425, 0, 0), +(382, 'f1b3_2', 'bnpc4649178', 4649178, '71.824219', '-434.597412', '-117.204498', 2921, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 71772, 1, 4, 2000, 0, 0, 0, 4649424, 0, 0), +(382, 'f1b3_2', 'bnpc4649234', 4649234, '-2.700867', '-506.950500', '105.332901', 2738, 0, 0, 0, 0, 6, 0, 0, 2611, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 69692, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4649235', 4649235, '12.619710', '-507.203491', '114.856300', 2739, 0, 0, 0, 0, 6, 0, 0, 1478, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 69426, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4649236', 4649236, '-2.490683', '-507.203491', '103.471703', 2741, 0, 0, 0, 0, 6, 0, 0, 2611, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 69160, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652025', 4652025, '6.590415', '-501.161987', '7.959057', 2923, 0, 0, 0, 0, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 88606, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652026', 4652026, '-6.599143', '-501.163910', '7.969008', 2924, 0, 0, 0, 0, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 88340, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652615', 4652615, '71.418488', '-543.166626', '7.215824', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 85336, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652635', 4652635, '39.797489', '-504.526306', '-62.479160', 2924, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 87796, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652636', 4652636, '39.797489', '-504.526306', '-62.479160', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 88056, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652637', 4652637, '39.797489', '-504.526306', '-62.479160', 2924, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 85076, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652639', 4652639, '71.418488', '-543.166626', '7.215824', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 84792, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652640', 4652640, '39.797489', '-504.526306', '-62.479160', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 84520, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652641', 4652641, '39.797489', '-504.526306', '-62.479160', 2923, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 87246, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652642', 4652642, '39.797489', '-504.526306', '-62.479160', 2923, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 87518, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652646', 4652646, '71.418488', '-543.166626', '7.215824', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 83704, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652647', 4652647, '39.797489', '-504.526306', '-62.479160', 2925, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 82362, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652648', 4652648, '39.797489', '-504.526306', '-62.479160', 2924, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 83444, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652649', 4652649, '39.797489', '-504.526306', '-62.479160', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 86968, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652650', 4652650, '71.418488', '-543.166626', '7.215824', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 83160, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652651', 4652651, '39.797489', '-504.526306', '-62.479160', 2925, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 82634, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652652', 4652652, '39.797489', '-504.526306', '-62.479160', 2923, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 82894, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652653', 4652653, '39.797489', '-504.526306', '-62.479160', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 86696, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652655', 4652655, '71.418488', '-543.166626', '7.215824', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 81800, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652656', 4652656, '39.797489', '-504.526306', '-62.479160', 2924, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 86436, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652657', 4652657, '39.797489', '-504.526306', '-62.479160', 2925, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 86170, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652658', 4652658, '39.797489', '-504.526306', '-62.479160', 2924, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 84260, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652664', 4652664, '71.418488', '-543.166626', '7.215824', 2922, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 82072, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652665', 4652665, '39.797489', '-504.526306', '-62.479160', 2923, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 85614, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652666', 4652666, '39.797489', '-504.526306', '-62.479160', 2925, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 85898, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4652667', 4652667, '39.797489', '-504.526306', '-62.479160', 2923, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 83982, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4663915', 4663915, '12.619710', '-507.203491', '114.856300', 2741, 0, 0, 0, 0, 6, 0, 0, 2614, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 68888, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4663916', 4663916, '12.619710', '-507.203491', '114.856300', 2741, 0, 0, 0, 0, 6, 0, 0, 2615, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 68616, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4663917', 4663917, '12.619710', '-507.203491', '114.856300', 2741, 0, 0, 0, 0, 6, 0, 0, 2616, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 68344, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760699', 4760699, '39.797489', '-504.526306', '-62.479160', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 79456, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760700', 4760700, '42.010639', '-511.416901', '-27.783140', 3172, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 77830, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760701', 4760701, '71.418488', '-543.166626', '7.215824', 3173, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 75116, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760702', 4760702, '71.584702', '-531.981079', '-48.587280', 3174, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 73762, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760703', 4760703, '6.590415', '-501.161987', '7.959057', 3172, 0, 0, 0, 0, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 77558, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760704', 4760704, '-6.599143', '-501.163910', '7.969008', 3173, 0, 0, 0, 0, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 32, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 75660, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760705', 4760705, '39.797489', '-504.526306', '-62.479160', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 79728, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760706', 4760706, '39.797489', '-504.526306', '-62.479160', 3173, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 74844, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760707', 4760707, '39.797489', '-504.526306', '-62.479160', 3172, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 77286, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760708', 4760708, '39.797489', '-504.526306', '-62.479160', 3172, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 76742, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760709', 4760709, '39.797489', '-504.526306', '-62.479160', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 80000, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760710', 4760710, '39.797489', '-504.526306', '-62.479160', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 80272, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760711', 4760711, '39.797489', '-504.526306', '-62.479160', 3173, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 75932, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760712', 4760712, '39.797489', '-504.526306', '-62.479160', 3174, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 74578, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760713', 4760713, '39.797489', '-504.526306', '-62.479160', 3174, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 73490, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760714', 4760714, '39.797489', '-504.526306', '-62.479160', 3172, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 78102, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760715', 4760715, '71.418488', '-543.166626', '7.215824', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 78640, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760716', 4760716, '39.797489', '-504.526306', '-62.479160', 3173, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 76476, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760717', 4760717, '71.418488', '-543.166626', '7.215824', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 78912, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760718', 4760718, '39.797489', '-504.526306', '-62.479160', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 79184, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760719', 4760719, '39.797489', '-504.526306', '-62.479160', 3173, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 76204, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760720', 4760720, '39.797489', '-504.526306', '-62.479160', 3172, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 77014, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760721', 4760721, '71.418488', '-543.166626', '7.215824', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 80544, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760722', 4760722, '39.797489', '-504.526306', '-62.479160', 3173, 0, 0, 0, 1, 6, 0, 0, 2648, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 75388, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760723', 4760723, '71.418488', '-543.166626', '7.215824', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 80816, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760724', 4760724, '39.797489', '-504.526306', '-62.479160', 3172, 0, 0, 0, 1, 6, 0, 0, 2647, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 78374, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760725', 4760725, '39.797489', '-504.526306', '-62.479160', 3174, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 74306, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760726', 4760726, '39.797489', '-504.526306', '-62.479160', 3174, 0, 0, 0, 1, 6, 0, 0, 2649, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 74034, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760727', 4760727, '71.418488', '-543.166626', '7.215824', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 81360, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760728', 4760728, '71.418488', '-543.166626', '7.215824', 3171, 0, 0, 0, 1, 6, 0, 0, 1474, 0, '0.000000', 50, 0, 120, 1, 0, 1, 0, 20, 5, 0, 1, 0, 1, 0, '0.000000', '1.000000', 81088, 1, 4, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760731', 4760731, '-0.007818', '-482.796692', '-84.345177', 3170, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 70594, 1, 4, 2000, 0, 0, 0, 4649420, 0, 0), +(382, 'f1b3_2', 'bnpc4760732', 4760732, '71.732674', '-450.459686', '-35.599300', 3170, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 70322, 1, 4, 2000, 0, 0, 0, 4649421, 0, 0), +(382, 'f1b3_2', 'bnpc4760733', 4760733, '-71.793762', '-450.441895', '-35.690861', 3170, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 70050, 1, 4, 2000, 0, 0, 0, 4649423, 0, 0), +(382, 'f1b3_2', 'bnpc4760734', 4760734, '-71.702209', '-434.603302', '-117.174103', 3170, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 71410, 1, 4, 2000, 0, 0, 0, 4649422, 0, 0), +(382, 'f1b3_2', 'bnpc4760735', 4760735, '-71.671631', '-466.251007', '45.639648', 3170, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 71138, 1, 4, 2000, 0, 0, 0, 4649425, 0, 0), +(382, 'f1b3_2', 'bnpc4760736', 4760736, '71.824219', '-434.597412', '-117.204498', 3170, 0, 0, 0, 2, 6, 0, 0, 2646, 0, '1.500000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 70866, 1, 4, 2000, 0, 0, 0, 4649424, 0, 0), +(382, 'f1b3_2', 'bnpc4760738', 4760738, '-2.700867', '-506.950500', '105.332901', 3144, 0, 0, 0, 0, 6, 0, 0, 2611, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67982, 1, 2, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760739', 4760739, '12.619710', '-507.203491', '114.856300', 3145, 0, 0, 0, 0, 6, 0, 0, 1478, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67716, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760740', 4760740, '-2.490683', '-507.203491', '103.471703', 3146, 0, 0, 0, 0, 6, 0, 0, 2611, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 66634, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760777', 4760777, '12.619710', '-507.203491', '114.856300', 3146, 0, 0, 0, 0, 6, 0, 0, 2614, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67450, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760778', 4760778, '12.619710', '-507.203491', '114.856300', 3146, 0, 0, 0, 0, 6, 0, 0, 2615, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 67178, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(382, 'f1b3_2', 'bnpc4760779', 4760779, '12.619710', '-507.203491', '114.856300', 3146, 0, 0, 0, 0, 6, 0, 0, 2616, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 66906, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4616639', 4616639, '0.024889', '-0.017127', '-11.085740', 2742, 0, 0, 0, 0, 6, 0, 0, 2612, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20832, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4616640', 4616640, '-2.351260', '0.000001', '1.161737', 2743, 0, 0, 0, 0, 6, 0, 0, 2628, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20566, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4616641', 4616641, '5.721556', '-0.000002', '0.674415', 2744, 0, 0, 0, 0, 6, 0, 0, 2629, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20300, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4616642', 4616642, '-6.250584', '0.000002', '-2.554785', 2745, 0, 0, 0, 0, 6, 0, 0, 2630, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 20034, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4616643', 4616643, '-8.779049', '0.000002', '6.828046', 2746, 0, 0, 0, 0, 6, 0, 0, 2631, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19768, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4616644', 4616644, '-8.961830', '0.000002', '12.768570', 2747, 0, 0, 0, 0, 6, 0, 0, 2632, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19502, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4616645', 4616645, '2.187796', '0.000000', '-6.911135', 2748, 0, 0, 0, 0, 6, 0, 0, 2634, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 19236, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4616646', 4616646, '7.732144', '-0.000002', '-7.276749', 2749, 0, 0, 0, 0, 6, 0, 0, 2634, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18970, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4616647', 4616647, '4.230211', '0.000000', '-14.066310', 2750, 0, 0, 0, 0, 6, 0, 0, 2635, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18704, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4616648', 4616648, '-0.004181', '0.000001', '-15.559050', 2751, 0, 0, 0, 0, 6, 0, 0, 2636, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18438, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4616649', 4616649, '-4.360467', '0.000002', '-14.949770', 2752, 0, 0, 0, 0, 6, 0, 0, 2637, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 18172, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4616651', 4616651, '-0.034670', '0.000000', '-0.052984', 2755, 0, 0, 0, 0, 6, 0, 0, 2612, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17906, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4635023', 4635023, '7.957073', '0.000000', '-15.062980', 2753, 0, 0, 0, 1, 6, 0, 0, 2638, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17640, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4656745', 4656745, '-0.034670', '0.000000', '-0.052984', 2933, 0, 0, 0, 0, 6, 0, 0, 2634, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17102, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4663902', 4663902, '-0.034670', '0.000000', '-0.052984', 2933, 0, 0, 0, 0, 6, 0, 0, 2618, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17374, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4663903', 4663903, '-0.034670', '0.000000', '-0.052984', 2933, 0, 0, 0, 0, 6, 0, 0, 2617, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16830, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4664051', 4664051, '-0.034670', '0.000000', '-0.052984', 2933, 0, 0, 0, 0, 6, 0, 0, 2632, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16558, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4760788', 4760788, '0.024889', '-0.017127', '-11.085740', 3147, 0, 0, 0, 0, 6, 0, 0, 2612, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16156, 1, 2, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4760789', 4760789, '-2.351260', '0.000001', '1.161737', 3148, 0, 0, 0, 0, 6, 0, 0, 2628, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15890, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4760790', 4760790, '5.721556', '-0.000002', '0.674415', 3149, 0, 0, 0, 0, 6, 0, 0, 2629, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15624, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4760791', 4760791, '-6.250584', '0.000002', '-2.554785', 3150, 0, 0, 0, 0, 6, 0, 0, 2630, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15358, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4760792', 4760792, '-8.779049', '0.000002', '6.828046', 3151, 0, 0, 0, 0, 6, 0, 0, 2631, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15092, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4760793', 4760793, '-8.961830', '0.000002', '12.768570', 3152, 0, 0, 0, 0, 6, 0, 0, 2632, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14826, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4760794', 4760794, '2.187796', '0.000000', '-6.911135', 3153, 0, 0, 0, 0, 6, 0, 0, 2634, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14560, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4760795', 4760795, '7.732144', '-0.000002', '-7.276749', 3153, 0, 0, 0, 0, 6, 0, 0, 2634, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14288, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4760796', 4760796, '4.230211', '0.000000', '-14.066310', 3154, 0, 0, 0, 0, 6, 0, 0, 2635, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 14022, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4760797', 4760797, '-0.004181', '0.000001', '-15.559050', 3155, 0, 0, 0, 0, 6, 0, 0, 2636, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13756, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4760798', 4760798, '-4.360467', '0.000002', '-14.949770', 3156, 0, 0, 0, 0, 6, 0, 0, 2637, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13490, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4760800', 4760800, '-0.034670', '0.000000', '-0.052984', 3158, 0, 0, 0, 0, 6, 0, 0, 2612, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12958, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4760806', 4760806, '7.957073', '0.000000', '-15.062980', 3157, 0, 0, 0, 1, 6, 0, 0, 2638, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 13224, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4760824', 4760824, '-0.034670', '0.000000', '-0.052984', 3159, 0, 0, 0, 0, 6, 0, 0, 2618, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12148, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4760825', 4760825, '-0.034670', '0.000000', '-0.052984', 3159, 0, 0, 0, 0, 6, 0, 0, 2634, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 11876, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4760826', 4760826, '-0.034670', '0.000000', '-0.052984', 3159, 0, 0, 0, 0, 6, 0, 0, 2617, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12692, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(383, 'f1b4_2', 'bnpc4760827', 4760827, '-0.034670', '0.000000', '-0.052984', 3159, 0, 0, 0, 0, 6, 0, 0, 2632, 0, '0.000000', 50, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 12420, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880431', 4880431, '324.982208', '44.012600', '-218.578400', 1436, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30522, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880444', 4880444, '273.625702', '45.470299', '-199.347305', 1436, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 29866, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880457', 4880457, '259.000793', '46.482700', '-204.591003', 934, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 1, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29600, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880474', 4880474, '263.983490', '46.473240', '-196.719604', 934, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 1, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29328, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880475', 4880475, '266.569489', '45.672070', '-205.045303', 934, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 1, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 29056, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880494', 4880494, '225.331604', '40.062340', '-160.530807', 934, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 2, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28332, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880498', 4880498, '227.023697', '40.225231', '-158.654602', 934, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 2, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 28060, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880516', 4880516, '120.399696', '14.000000', '-66.404823', 2966, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 11, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26984, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880523', 4880523, '125.307503', '14.005830', '-62.752998', 2949, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 11, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26718, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880543', 4880543, '98.284866', '14.227000', '-68.708298', 156, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 12, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26452, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880544', 4880544, '101.516296', '14.237520', '-75.044533', 156, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 12, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 26180, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880546', 4880546, '75.318359', '14.007500', '-83.151550', 2949, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25902, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880584', 4880584, '116.441498', '13.992490', '-60.166321', 326, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 25498, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880587', 4880587, '93.333000', '14.000000', '-75.773712', 326, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 13, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 25226, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880588', 4880588, '93.614014', '13.961910', '-72.434631', 326, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 13, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24954, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880589', 4880589, '67.064163', '16.920401', '-84.642677', 326, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 14, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24410, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880591', 4880591, '67.885094', '16.648350', '-89.907516', 326, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 14, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24138, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880593', 4880593, '64.137100', '17.136930', '-87.552803', 1233, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 14, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 24688, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880682', 4880682, '-28.619240', '12.103500', '-21.767929', 2734, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 15, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 23558, 1, 3, 30, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880714', 4880714, '-28.044910', '12.118760', '-20.259420', 2810, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 22152, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880738', 4880738, '-22.589870', '12.156850', '-24.160530', 2733, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 15, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 21886, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880740', 4880740, '-27.768339', '12.153220', '-28.453190', 2733, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 15, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 21614, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880792', 4880792, '-87.676407', '7.388843', '8.621636', 2734, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 16, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 21106, 1, 3, 30, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880795', 4880795, '-81.116997', '7.400973', '5.657200', 2733, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 16, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 20846, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880798', 4880798, '-88.385178', '7.399533', '1.021518', 2733, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 16, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 20574, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880852', 4880852, '-99.842751', '19.600010', '61.986809', 934, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 17140, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880875', 4880875, '-144.569199', '15.365030', '159.612396', 1436, 0, 0, 0, 0, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 16702, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880885', 4880885, '-184.496094', '6.702641', '249.986404', 934, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 16052, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880886', 4880886, '-183.757401', '6.400117', '242.935806', 934, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 21, 0, 30, 2, 0, 1, 0, 1, 0, '0.000000', '1.000000', 15780, 1, 0, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880951', 4880951, '-300.300415', '5.576687', '284.150909', 2968, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 2, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 15188, 1, 3, 30, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880955', 4880955, '-255.163605', '5.576687', '254.991699', 934, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 14544, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880956', 4880956, '-256.267303', '5.576687', '260.270905', 934, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 14272, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880957', 4880957, '-252.806000', '5.576687', '257.396088', 934, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 22, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 14000, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880959', 4880959, '-272.233887', '5.576687', '255.266693', 934, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 23, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 13728, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880960', 4880960, '-270.712585', '5.576687', '251.463593', 934, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 23, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 13456, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880961', 4880961, '-271.634003', '5.576687', '258.548004', 934, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 23, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 13184, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880962', 4880962, '-286.233612', '5.576687', '260.375885', 934, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 24, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 12912, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880963', 4880963, '-282.848785', '5.576687', '255.980301', 934, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 24, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 12640, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880964', 4880964, '-283.154388', '5.576687', '263.599792', 934, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 24, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 12368, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880967', 4880967, '-307.628387', '5.048906', '271.648407', 2413, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 25, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 12162, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880968', 4880968, '-304.459290', '5.485939', '268.419006', 2413, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 25, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 11890, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880969', 4880969, '-303.691711', '5.576687', '272.884003', 2413, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 25, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 11618, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880970', 4880970, '-293.385498', '5.576687', '272.455994', 2413, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 26, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 11346, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880971', 4880971, '-291.123993', '5.576687', '268.382385', 2413, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 26, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 11074, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880972', 4880972, '-288.875214', '5.576687', '272.692688', 2413, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 26, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 10802, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880973', 4880973, '-300.576813', '5.576687', '260.814392', 2413, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 27, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 10530, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880974', 4880974, '-296.024292', '5.576687', '261.099304', 2413, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 27, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 10258, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880975', 4880975, '-298.046509', '5.799900', '258.590698', 2413, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 27, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 9986, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4880977', 4880977, '-304.414215', '5.829985', '293.706787', 1436, 0, 0, 0, 2, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 9642, 1, 0, 0, 0, 0, 0, 4893653, 0, 0), +(387, 's1d7', 'bnpc4887906', 4887906, '165.345200', '13.999990', '-83.200691', 2972, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 32576, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4888017', 4888017, '-103.578697', '15.631220', '135.334793', 2987, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 31786, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4888166', 4888166, '-322.878387', '5.576687', '319.686798', 2738, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 0, 0, 120, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, '0.000000', '1.000000', 30920, 1, 0, 0, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4891236', 4891236, '198.343597', '29.413639', '-65.464653', 2581, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27658, 1, 3, 2000, 0, 0, 0, 0, 0, 0), +(387, 's1d7', 'bnpc4891237', 4891237, '195.176193', '28.359890', '-65.211342', 2581, 0, 0, 0, 1, 6, 0, 0, 0, 0, '0.000000', 50, 0, 120, 1, 0, 3, 0, 30, 3, 0, 1, 0, 1, 0, '0.000000', '1.000000', 27386, 1, 3, 2000, 0, 0, 0, 0, 0, 0); + diff --git a/sql/migrations/20200508031420_UpdateBattleNpcs.sql b/sql/migrations/20200508031420_UpdateBattleNpcs.sql new file mode 100644 index 00000000..66d9ef4b --- /dev/null +++ b/sql/migrations/20200508031420_UpdateBattleNpcs.sql @@ -0,0 +1,16680 @@ +DROP TABLE BattleNpc; +CREATE TABLE BattleNpc( + GroupId INTEGER NOT NULL + ,GroupName VARCHAR(30) NOT NULL + ,TerritoryName VARCHAR(12) NOT NULL + ,name VARCHAR(12) + ,instanceId INTEGER NOT NULL PRIMARY KEY + ,x NUMERIC(12,6) NOT NULL + ,y NUMERIC(12,6) NOT NULL + ,z NUMERIC(12,6) NOT NULL + ,Rotation NUMERIC(10,6) NOT NULL + ,BaseId INTEGER NOT NULL + ,PopWeather INTEGER NOT NULL + ,PopTimeStart INTEGER NOT NULL + ,PopTimeEnd INTEGER NOT NULL + ,MoveAI INTEGER NOT NULL + ,WanderingRange INTEGER NOT NULL + ,Route INTEGER NOT NULL + ,EventGroup INTEGER NOT NULL + ,NameId INTEGER NOT NULL + ,DropItem INTEGER NOT NULL + ,SenseRangeRate NUMERIC(10,6) NOT NULL + ,Level INTEGER NOT NULL + ,ActiveType INTEGER NOT NULL + ,PopInterval INTEGER NOT NULL + ,PopRate INTEGER NOT NULL + ,PopEvent INTEGER NOT NULL + ,LinkGroup INTEGER NOT NULL + ,LinkFamily INTEGER NOT NULL + ,LinkRange INTEGER NOT NULL + ,LinkCountLimit INTEGER NOT NULL + ,NonpopInitZone NUMERIC(2,0) NOT NULL + ,InvalidRepop INTEGER NOT NULL + ,LinkParent INTEGER NOT NULL + ,LinkOverride INTEGER NOT NULL + ,LinkReply INTEGER NOT NULL + ,HorizontalPopRange NUMERIC(10,6) NOT NULL + ,VerticalPopRange NUMERIC(11,6) NOT NULL + ,BNpcBaseData INTEGER NOT NULL + ,RepopId INTEGER NOT NULL + ,BNPCRankId INTEGER NOT NULL + ,TerritoryRange INTEGER NOT NULL + ,BoundInstanceID INTEGER NOT NULL + ,FateLayoutLabelId INTEGER NOT NULL + ,NormalAI INTEGER NOT NULL + ,ServerPathId INTEGER NOT NULL + ,EquipmentID INTEGER NOT NULL + ,CustomizeID INTEGER NOT NULL +); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335361',1335361,53.582802,-3.282185,39.103851,-0.000000,2,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17992,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335362',1335362,51.701271,-2.897263,49.692612,-0.000000,4,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17726,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335364',1335364,62.402969,-2.964890,19.279970,-0.000000,5,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17460,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335366',1335366,76.393547,-3.373252,-7.892784,-0.000000,7,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17194,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335368',1335368,69.210457,-4.286955,-36.612061,-0.000000,9,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16928,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335369',1335369,67.103600,-3.385882,-41.041401,-0.000000,10,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16662,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335370',1335370,63.194889,-3.486949,-39.298340,-0.000000,11,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16396,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335371',1335371,46.328041,-2.759755,66.703323,-0.000000,12,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16130,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335373',1335373,9.025414,-2.767523,24.671740,-0.000000,14,0,0,0,1,10,0,0,1,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15864,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335374',1335374,2.225965,-3.193245,23.995270,-0.000000,15,0,0,0,1,10,0,0,1,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15598,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335376',1335376,11.595230,-2.627986,55.238468,-0.000000,17,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15332,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335377',1335377,31.810850,-4.792551,-51.622440,-0.000000,18,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15066,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335378',1335378,27.160391,-4.408709,-54.121750,-0.000000,19,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14800,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335379',1335379,32.416901,-4.540170,-57.529942,-0.000000,20,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14534,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335380',1335380,32.250420,-3.894587,72.964256,-0.000000,21,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14268,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335381',1335381,-21.333950,-5.345487,-55.607300,-0.000000,22,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14002,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335383',1335383,-58.759399,-2.546762,-48.027458,-0.000000,24,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13736,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335385',1335385,70.127617,-2.205903,-75.716087,-0.000048,26,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13470,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335387',1335387,66.107933,-2.013181,-58.185242,-0.000000,28,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13204,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335388',1335388,24.366529,-2.814852,-1.839217,-0.000000,119,0,0,0,0,0,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12938,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335389',1335389,11.361650,-2.301019,-69.036972,-0.000000,29,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12672,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335390',1335390,8.147669,-2.898581,-73.788269,-0.000000,75,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12406,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335391',1335391,-6.637928,-3.489191,-84.930199,-0.000000,30,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12140,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335393',1335393,60.863949,-3.311255,-105.226898,-0.000048,34,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11874,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335394',1335394,3.594090,-1.999797,71.309448,-0.000000,36,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11608,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335395',1335395,4.968206,-4.391820,94.582314,-0.000000,37,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11342,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335396',1335396,6.728159,-2.005020,64.217003,-0.000000,38,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11076,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335397',1335397,-11.136880,-3.832189,78.722092,-0.000000,39,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10810,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335399',1335399,2.347202,-3.264940,106.356102,-0.000000,41,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10544,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335400',1335400,52.770489,-3.570192,90.223511,-0.000000,57,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10278,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335401',1335401,65.110237,-2.029462,64.343727,-0.000000,42,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10012,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335402',1335402,-20.697460,-1.943276,111.180397,-0.000000,43,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9746,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335405',1335405,87.341827,-3.285558,6.756943,-0.000000,45,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9480,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335406',1335406,89.635887,-2.711255,0.977799,-0.000000,46,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9214,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335407',1335407,48.968269,-2.670376,-66.659599,-0.000048,47,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8948,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335409',1335409,63.312851,-2.701544,-81.144348,-0.000000,49,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8682,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335412',1335412,24.403469,-3.417114,64.100327,-0.000000,53,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8416,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335414',1335414,-0.374985,-3.163044,44.315380,-0.000000,118,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8150,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335489',1335489,58.773350,-2.238615,-12.706460,-0.000000,50,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7884,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335490',1335490,59.859791,-2.003045,-8.017021,-0.000000,51,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7618,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335491',1335491,57.322250,-1.994352,-5.225227,-0.000000,52,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7352,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335505',1335505,66.877518,-2.970958,-19.036110,-0.000000,55,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7086,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335506',1335506,64.455460,-3.241537,-21.067320,-0.000000,82,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6820,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335507',1335507,69.210152,-3.626319,-23.816179,-0.000000,84,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6554,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1335510',1335510,64.071327,-3.633439,-25.299040,-0.000000,88,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6288,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1514259',1514259,11.828580,2.880065,-110.907204,-0.000048,123,0,0,0,2,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6022,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1944552',1944552,-59.906239,-2.212123,6.745935,1.493105,76,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5756,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1944554',1944554,-60.204239,-3.322237,13.827030,1.401078,21,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5292,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1944556',1944556,36.185570,-1.322102,-111.657799,-0.000000,124,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5218,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1944560',1944560,80.404556,-3.277745,-64.993210,-0.000000,66,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4952,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73464,'BNpc','default','bnpc1944561',1944561,85.566887,-3.297602,-64.698128,-0.000000,106,0,0,0,1,10,0,0,0,0,0.000000,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73568,'QuestBNpc','default','bnpc1360024',1360024,7.956960,-1.993956,-0.167396,-1.482591,17,0,0,0,1,10,0,0,0,0,0.000000,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,1544,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73568,'QuestBNpc','default','bnpc1360098',1360098,4.767298,-4.967649,-20.021561,-0.000000,17,0,0,0,1,10,0,0,1,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,1272,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73568,'QuestBNpc','default','bnpc1369074',1369074,-3.957726,-2.029446,-2.496396,-0.000000,53,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1156,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73568,'QuestBNpc','default','bnpc1369269',1369269,0.939588,-5.282777,-21.898081,-0.000000,2,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,668,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82613,'Prog001','event2_test','bnpc3875398',3875398,4.262620,0.000000,-5.661937,-0.000000,2,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1436,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82613,'Prog001','event2_test','bnpc4156165',4156165,-16.296391,0.000000,-23.870630,-0.000000,2,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,752,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96762,'PlanEvent_hasegawa','event_test','bnpc4600254',4600254,1.083300,-2.060000,1.815700,-1.158113,333,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8848,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96762,'PlanEvent_hasegawa','event_test','bnpc4616698',4616698,11.551610,-3.036998,-12.208190,-0.000000,2,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7210,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96762,'PlanEvent_hasegawa','event_test','bnpc4616699',4616699,-12.542450,-3.260771,-9.681023,-0.000000,2,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6938,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96762,'PlanEvent_hasegawa','event_test','bnpc4616700',4616700,12.263230,-2.252991,6.044630,-0.000048,2,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6666,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96762,'PlanEvent_hasegawa','event_test','bnpc4616701',4616701,-12.857520,-3.683713,10.768200,-0.000000,2,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6394,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96762,'PlanEvent_hasegawa','event_test','bnpc4617337',4617337,9.756575,-3.142273,-12.358090,-0.000000,2,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6122,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96762,'PlanEvent_hasegawa','event_test','bnpc4617341',4617341,-13.677860,-3.300163,-9.601439,-0.000000,2,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5850,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96762,'PlanEvent_hasegawa','event_test','bnpc4617342',4617342,12.553260,-2.278884,7.255367,-0.000000,2,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5578,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96762,'PlanEvent_hasegawa','event_test','bnpc4617343',4617343,-13.487220,-3.796547,10.893170,-0.000000,2,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5306,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91510,'PlanEvent_kawase','event_test','bnpc4234990',4234990,4.043579,-2.160531,-5.447510,-0.000048,1442,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4560,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100965,'QST_TstPln040','event_test','bnpc4769872',4769872,-94.757317,6.708667,72.704872,0.712802,2860,0,0,0,8,6,0,0,713,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3478,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102755,'QST_TstPln067','event_test','bnpc4867713',4867713,27.042330,-6.173573,-41.987942,-0.000048,3116,0,0,0,1,6,0,0,2869,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2012,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102755,'QST_TstPln067','event_test','bnpc4867714',4867714,29.567711,-6.116317,-41.833359,-0.000000,3117,0,0,0,1,6,0,0,2870,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1746,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102755,'QST_TstPln067','event_test','bnpc4867715',4867715,25.304729,-5.983183,-43.823250,-0.000000,3114,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1480,1,0,0,0,0,0,0,0,249); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102755,'QST_TstPln067','event_test','bnpc4867716',4867716,30.441610,-5.893485,-44.461761,-0.000000,3115,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1214,1,0,0,0,0,0,0,0,218); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102755,'QST_TstPln067','event_test','bnpc4867717',4867717,25.658180,-6.073694,-40.121700,-0.000000,3119,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,948,1,0,0,0,0,0,0,0,249); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102755,'QST_TstPln067','event_test','bnpc4867718',4867718,30.142330,-6.154870,-39.805069,-0.000000,3120,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,682,1,0,0,0,0,0,0,0,217); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102755,'QST_TstPln067','event_test','bnpc4867722',4867722,28.343439,-5.593543,-46.131180,-0.000000,3120,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,410,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73688,'QST_BNPC','event_test','bnpc1369248',1369248,-5.462712,-1.142520,27.215050,-0.000000,2,0,0,0,1,10,0,0,0,0,0.000000,0,0,255,0,0,0,6,0,0,1,1,0,0,0,0.000000,1.000000,17692,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73688,'QST_BNPC','event_test','bnpc1436586',1436586,-3.298221,-2.029446,-2.001976,-0.000000,17,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17426,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73688,'QST_BNPC','event_test','bnpc1419630',1419630,-8.944762,-3.619123,16.681681,-0.000000,2,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17148,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73688,'QST_BNPC','event_test','bnpc3447751',3447751,-3.311255,-2.029497,4.379292,-0.000048,2,0,0,0,1,6,0,0,0,0,0.000000,3,0,120,1,0,0,0,0,0,0,0,0,0,0,51.000000,1.000000,16876,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73688,'QST_BNPC','event_test','bnpc3684617',3684617,-13.717910,-4.867675,-53.086182,-0.000048,9,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16616,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73688,'QST_BNPC','event_test','bnpc3965860',3965860,-15.582850,-5.991881,-50.280571,0.492473,9,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16344,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73688,'QST_BNPC','event_test','bnpc4008058',4008058,2.365101,-4.325043,-47.715012,-0.000048,9,0,0,0,1,6,0,0,0,0,0.000000,1,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16072,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73688,'QST_BNPC','event_test','bnpc4249304',4249304,-24.551821,-2.024112,37.918701,-0.000048,1415,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15806,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70470,'QST_ENPC_00','event_test','bnpc1162305',1162305,11.005640,-2.815261,27.556259,-0.000000,37,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14316,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70470,'QST_ENPC_00','event_test','bnpc1162306',1162306,9.569049,-2.935960,28.227039,-0.000000,37,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14044,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70470,'QST_ENPC_00','event_test','bnpc1162307',1162307,11.974010,-2.747403,27.306170,-0.000000,37,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13772,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70470,'QST_ENPC_00','event_test','bnpc1162308',1162308,11.491710,-2.827797,28.376511,-0.000000,37,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13500,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70470,'QST_ENPC_00','event_test','bnpc1162309',1162309,9.745089,-3.046474,29.772329,-0.000000,37,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13228,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70470,'QST_ENPC_00','event_test','bnpc1162310',1162310,11.031550,-2.937451,29.406071,-0.000000,37,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12956,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70470,'QST_ENPC_00','event_test','bnpc1162314',1162314,12.453520,-2.903641,29.959869,-0.000000,47,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12690,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70470,'QST_ENPC_00','event_test','bnpc1162315',1162315,10.100110,-3.153408,31.421320,-0.000000,47,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12418,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70470,'QST_ENPC_00','event_test','bnpc1162316',1162316,12.823700,-2.982959,31.144991,-0.000000,47,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12146,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73698,'QuestBNpc','event_test','bnpc1369484',1369484,-11.962230,-2.344676,21.032709,-0.000000,10,0,0,0,1,10,0,0,0,0,0.000000,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,592,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73698,'QuestBNpc','event_test','bnpc1411063',1411063,-11.462490,-4.293701,16.042589,-0.000000,12,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,326,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97627,'LVD_BNPC_01_01','f1b1','bnpc4572944',4572944,-146.338303,6.373298,-19.666241,0.219554,2911,0,0,0,1,8,0,0,539,0,0.000000,50,0,120,1,0,0,0,12,4,0,1,0,1,1,5.000000,1.000000,24592,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97627,'LVD_BNPC_01_01','f1b1','bnpc4572945',4572945,-135.501099,8.852708,-10.660940,0.219554,2911,0,0,0,1,8,0,0,539,0,0.000000,50,0,120,1,0,0,0,12,4,0,1,0,1,1,5.000000,1.000000,24320,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97627,'LVD_BNPC_01_01','f1b1','bnpc4619732',4619732,-150.190903,5.802513,-28.170679,0.219554,2911,0,0,0,1,6,0,0,539,0,0.000000,50,0,120,1,0,0,0,12,4,0,1,0,1,1,5.000000,1.000000,24048,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97627,'LVD_BNPC_01_01','f1b1','bnpc4619733',4619733,-129.789001,7.449677,-8.540951,0.219363,2911,0,0,0,1,8,0,0,539,0,0.000000,50,0,120,1,0,0,0,12,4,0,1,0,1,1,5.000000,1.000000,23776,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97627,'LVD_BNPC_01_01','f1b1','bnpc4619734',4619734,-142.123993,7.839766,-9.058794,0.219458,2911,0,0,0,1,8,0,0,539,0,0.000000,50,0,120,1,0,0,0,12,4,0,1,0,1,1,5.000000,1.000000,23504,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97627,'LVD_BNPC_01_01','f1b1','bnpc4572990',4572990,-188.433701,-0.778198,36.179081,0.219458,2911,0,0,5,1,8,0,0,539,0,0.000000,50,0,120,1,0,0,0,12,4,0,1,0,1,1,0.000000,1.000000,23232,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97627,'LVD_BNPC_01_01','f1b1','bnpc4594889',4594889,-200.132004,2.104434,22.672791,-1.506845,2912,0,0,0,0,6,0,0,2640,0,0.500000,50,0,114,1,0,30,0,6,1,0,1,0,1,0,0.000000,1.000000,22966,0,4,2000,0,0,0,4619735,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97627,'LVD_BNPC_01_01','f1b1','bnpc4594890',4594890,-205.547806,0.795838,20.843929,0.169628,2912,0,0,0,0,6,0,0,2640,0,0.500000,50,0,120,1,0,30,0,6,1,0,1,0,1,0,0.000000,1.000000,22694,1,4,2000,0,0,0,4619736,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97627,'LVD_BNPC_01_01','f1b1','bnpc4597484',4597484,-207.901794,0.576092,26.368891,1.547219,2912,0,0,0,0,6,0,0,2640,0,0.500000,50,0,120,1,0,30,0,6,1,0,1,0,1,0,0.000000,1.000000,22422,1,4,2000,0,0,0,4619737,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97627,'LVD_BNPC_01_01','f1b1','bnpc4616665',4616665,-137.604507,11.106360,-10.588380,-0.000000,2913,0,0,0,3,21,0,0,2742,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22156,1,4,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97627,'LVD_BNPC_01_01','f1b1','bnpc4616666',4616666,-195.538101,5.241385,24.348860,-1.370561,2914,0,0,0,3,21,0,0,2742,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21890,1,4,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97627,'LVD_BNPC_01_01','f1b1','bnpc4663772',4663772,-137.595901,11.098200,-10.575710,-0.000000,410,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21624,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97627,'LVD_BNPC_01_01','f1b1','bnpc4663775',4663775,-195.541504,5.243267,24.347481,-0.000000,410,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21352,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100858,'LVD_BNPC_01_01_HARD','f1b1','bnpc4760578',4760578,-137.595901,11.098200,-10.575710,-0.000000,410,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20960,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100858,'LVD_BNPC_01_01_HARD','f1b1','bnpc4760579',4760579,-195.541504,5.243267,24.347481,-0.000000,410,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20688,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100858,'LVD_BNPC_01_01_HARD','f1b1','bnpc4760570',4760570,-129.789001,7.449677,-8.540951,0.219363,3160,0,0,0,1,8,0,0,539,0,0.000000,50,0,120,1,0,0,0,12,4,0,1,0,1,1,5.000000,1.000000,20422,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100858,'LVD_BNPC_01_01_HARD','f1b1','bnpc4760571',4760571,-142.123993,7.839766,-9.058794,0.219458,3160,0,0,0,1,8,0,0,539,0,0.000000,50,0,120,1,0,0,0,12,4,0,1,0,1,1,5.000000,1.000000,20150,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100858,'LVD_BNPC_01_01_HARD','f1b1','bnpc4760572',4760572,-188.433701,-0.778198,36.179081,0.219458,3160,0,0,5,1,8,0,0,539,0,0.000000,50,0,120,1,0,0,0,12,4,0,1,0,1,1,0.000000,1.000000,19878,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100858,'LVD_BNPC_01_01_HARD','f1b1','bnpc4760567',4760567,-146.338303,6.373298,-19.666241,0.219554,3160,0,0,0,1,8,0,0,539,0,0.000000,50,0,120,1,0,0,0,12,4,0,1,0,1,1,5.000000,1.000000,19606,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100858,'LVD_BNPC_01_01_HARD','f1b1','bnpc4760568',4760568,-135.501099,8.852708,-10.660940,0.219554,3160,0,0,0,1,8,0,0,539,0,0.000000,50,0,120,1,0,0,0,12,4,0,1,0,1,1,5.000000,1.000000,19334,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100858,'LVD_BNPC_01_01_HARD','f1b1','bnpc4760569',4760569,-150.190903,5.802513,-28.170679,0.219554,3160,0,0,0,1,6,0,0,539,0,0.000000,50,0,120,1,0,0,0,12,4,0,1,0,1,1,5.000000,1.000000,19062,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100858,'LVD_BNPC_01_01_HARD','f1b1','bnpc4760575',4760575,-207.901794,0.576092,26.368891,1.547219,3161,0,0,0,0,6,0,0,2640,0,0.500000,50,0,120,1,0,30,0,6,1,0,1,0,1,0,0.000000,1.000000,18796,1,4,2000,0,0,0,4619737,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100858,'LVD_BNPC_01_01_HARD','f1b1','bnpc4760574',4760574,-205.547806,0.795838,20.843929,0.169628,3161,0,0,0,0,6,0,0,2640,0,0.500000,50,0,120,1,0,30,0,6,1,0,1,0,1,0,0.000000,1.000000,18524,1,4,2000,0,0,0,4619736,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100858,'LVD_BNPC_01_01_HARD','f1b1','bnpc4760573',4760573,-200.132004,2.104434,22.672791,-1.506845,3161,0,0,0,0,6,0,0,2640,0,0.500000,50,0,114,1,0,30,0,6,1,0,1,0,1,0,0.000000,1.000000,18252,0,4,2000,0,0,0,4619735,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100858,'LVD_BNPC_01_01_HARD','f1b1','bnpc4760576',4760576,-137.604507,11.106360,-10.588380,-0.000000,3162,0,0,0,3,21,0,0,2742,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17986,1,4,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100858,'LVD_BNPC_01_01_HARD','f1b1','bnpc4760577',4760577,-195.538101,5.241385,24.348860,-1.370561,3163,0,0,0,3,21,0,0,2742,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17720,1,4,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98183,'LVD_Boss_01','f1b1','bnpc4616594',4616594,-280.674103,10.421330,32.743111,1.570451,2726,0,0,0,0,6,0,0,2609,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17354,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98183,'LVD_Boss_01','f1b1','bnpc4616595',4616595,-277.311005,10.421330,28.666361,-0.000000,2727,0,0,0,0,6,0,0,2619,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17088,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98183,'LVD_Boss_01','f1b1','bnpc4616596',4616596,-278.322205,10.421330,42.406460,-0.000000,2728,0,0,0,0,6,0,0,2620,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16822,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98183,'LVD_Boss_01','f1b1','bnpc4616597',4616597,-279.931305,10.421330,25.123070,-0.000000,2729,0,0,0,0,6,0,0,2621,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16556,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98183,'LVD_Boss_01','f1b1','bnpc4616598',4616598,-271.632202,10.421330,22.440451,-0.000000,2730,0,0,0,0,6,0,0,2622,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16290,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98183,'LVD_Boss_01','f1b1','bnpc4616599',4616599,-270.140411,10.421330,30.752750,-0.000000,2731,0,0,0,0,6,0,0,2609,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16024,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98183,'LVD_Boss_01','f1b1','bnpc4620610',4620610,-264.215302,10.421330,28.436081,-0.000000,2756,0,0,0,0,6,0,0,2623,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15758,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98183,'LVD_Boss_01','f1b1','bnpc4695639',4695639,-270.140411,10.421330,30.752750,-0.000000,2731,0,0,0,0,6,0,0,2621,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15480,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100859,'LVD_Boss_01_HARD','f1b1','bnpc4760582',4760582,-280.674103,10.421330,32.743111,1.570451,3131,0,0,0,0,6,0,0,2609,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15120,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100859,'LVD_Boss_01_HARD','f1b1','bnpc4760583',4760583,-277.311005,10.421330,28.666361,-0.000000,3132,0,0,0,0,6,0,0,2619,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14854,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100859,'LVD_Boss_01_HARD','f1b1','bnpc4760584',4760584,-278.322205,10.421330,42.406460,-0.000000,3133,0,0,0,0,6,0,0,2620,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14588,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100859,'LVD_Boss_01_HARD','f1b1','bnpc4760585',4760585,-279.931305,10.421330,25.123070,-0.000000,3134,0,0,0,0,6,0,0,2621,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14322,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100859,'LVD_Boss_01_HARD','f1b1','bnpc4760586',4760586,-271.632202,10.421330,22.440451,-0.000000,3135,0,0,0,0,6,0,0,2622,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14056,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100859,'LVD_Boss_01_HARD','f1b1','bnpc4760589',4760589,-264.215302,10.421330,28.436081,-0.000000,3136,0,0,0,0,6,0,0,2623,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13790,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100859,'LVD_Boss_01_HARD','f1b1','bnpc4760587',4760587,-270.140411,10.421330,30.752750,-0.000000,3137,0,0,0,0,6,0,0,2609,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13524,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100859,'LVD_Boss_01_HARD','f1b1','bnpc4760611',4760611,-270.140411,10.421330,30.752750,-0.000000,3137,0,0,0,0,6,0,0,2621,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13252,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4649710',4649710,-466.647491,800.028381,-7.849937,1.532944,2918,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,1,0,100,3,0,1,0,1,1,0.000000,1.000000,27496,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4649708',4649708,-464.727905,800.000916,4.150533,1.570451,2919,0,0,0,1,6,0,0,2644,0,0.000000,50,0,120,1,0,1,0,100,3,0,1,0,1,1,0.000000,1.000000,27230,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4649709',4649709,-465.637512,800.011780,-3.258655,1.570451,2919,0,0,0,1,6,0,0,2644,0,0.000000,50,0,120,1,0,1,0,100,3,0,1,0,1,1,0.000000,1.000000,26958,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4646826',4646826,-462.256287,800.031372,0.039109,1.570796,2915,0,0,0,1,6,0,0,2641,0,0.000000,50,0,120,1,0,1,0,100,3,0,1,0,1,1,0.000000,1.000000,26692,1,4,2000,0,0,0,4629397,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4646827',4646827,-462.256287,800.031372,0.039100,1.570796,2915,0,0,0,1,6,0,0,2641,0,0.000000,50,0,120,1,0,2,0,100,2,0,1,0,1,1,0.000000,1.000000,26420,1,4,2000,0,0,0,4629397,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4649712',4649712,-464.253387,800.114075,4.044464,1.570451,2918,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,2,0,100,2,0,1,0,1,1,0.000000,1.000000,26136,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4649711',4649711,-467.102692,800.003113,-1.731705,1.570451,2919,0,0,0,1,6,0,0,2644,0,0.000000,50,0,120,1,0,2,0,100,2,0,1,0,1,1,0.000000,1.000000,25870,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4649715',4649715,-434.447601,799.926514,0.107254,-1.570451,2916,0,0,0,0,6,0,0,2642,0,0.000000,50,0,120,1,0,3,0,100,2,0,1,0,1,1,0.000000,1.000000,25610,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4649713',4649713,-433.654510,799.919006,7.050138,-1.003524,2920,0,0,0,0,6,0,0,2645,0,0.000000,50,0,120,1,0,3,0,100,2,0,1,0,1,1,0.000000,1.000000,25344,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4649714',4649714,-433.654510,800.053406,-6.030566,-1.174101,2920,0,0,0,0,6,0,0,2645,0,0.000000,50,0,120,1,0,3,0,100,2,0,1,0,1,1,0.000000,1.000000,25072,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4646830',4646830,-438.158386,800.031494,0.039100,-1.570451,2915,0,0,0,1,6,0,0,2641,0,0.000000,50,0,120,1,0,5,0,100,3,0,1,0,1,1,0.000000,1.000000,24788,1,4,2000,0,0,0,4629397,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4649718',4649718,-436.241211,799.997009,4.892796,-1.570451,2918,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,5,0,100,3,0,1,0,1,1,0.000000,1.000000,24504,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4649717',4649717,-430.733185,800.040283,-4.300975,-1.570451,2920,0,0,0,0,6,0,0,2645,0,0.000000,50,0,120,1,0,5,0,100,3,0,1,0,1,1,0.000000,1.000000,24256,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4649716',4649716,-435.859314,800.011780,1.753515,-1.570451,2919,0,0,0,1,6,0,0,2644,0,0.000000,50,0,120,1,0,5,0,100,3,0,1,0,1,1,0.000000,1.000000,23966,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4646831',4646831,-462.256287,800.031372,0.039100,1.570451,2915,0,0,0,1,6,0,0,2641,0,0.000000,50,0,120,1,0,6,0,100,3,0,1,0,1,1,0.000000,1.000000,23700,1,4,2000,0,0,0,4629397,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4649719',4649719,-465.934387,800.028381,4.852085,1.570451,2918,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,6,0,100,3,0,1,0,1,1,0.000000,1.000000,23416,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4649720',4649720,-469.182190,800.068787,-3.083111,1.570451,2918,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,6,0,100,3,0,1,0,1,1,0.000000,1.000000,23144,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4649721',4649721,-468.181793,800.024719,1.094773,1.570451,2920,0,0,0,0,6,0,0,2645,0,0.000000,50,0,120,1,0,6,0,100,3,0,1,0,1,1,0.000000,1.000000,22896,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4649722',4649722,-435.845795,800.007385,0.107300,-1.570451,2917,0,0,0,0,6,0,0,2643,0,0.000000,50,0,120,1,0,7,0,100,1,0,1,0,1,1,0.000000,1.000000,22630,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98902,'LVD_BNPC_02_01','f1b2','bnpc4649723',4649723,-435.050903,800.000000,4.277941,-1.570451,2920,0,0,0,0,6,0,0,2645,0,0.000000,50,0,120,1,0,7,0,100,1,0,1,0,1,1,0.000000,1.000000,22352,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760628',4760628,-438.158386,800.031494,0.039100,-1.570451,3164,0,0,0,1,6,0,0,2641,0,0.000000,50,0,120,1,0,5,0,100,3,0,1,0,1,1,0.000000,1.000000,21940,1,4,2000,0,0,0,4629397,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760622',4760622,-462.256287,800.031372,0.039100,1.570796,3164,0,0,0,1,6,0,0,2641,0,0.000000,50,0,120,1,0,2,0,100,2,0,1,0,1,1,0.000000,1.000000,21668,1,4,2000,0,0,0,4629397,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760621',4760621,-462.256287,800.031372,0.039109,1.570796,3164,0,0,0,1,6,0,0,2641,0,0.000000,50,0,120,1,0,1,0,100,3,0,1,0,1,1,0.000000,1.000000,21396,1,4,2000,0,0,0,4629397,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760632',4760632,-462.256287,800.031372,0.039100,1.570451,3164,0,0,0,1,6,0,0,2641,0,0.000000,50,0,120,1,0,6,0,100,3,0,1,0,1,1,0.000000,1.000000,21124,1,4,2000,0,0,0,4629397,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760625',4760625,-434.447601,799.926514,0.107254,-1.570451,3165,0,0,0,0,6,0,0,2642,0,0.000000,50,0,120,1,0,3,0,100,2,0,1,0,1,1,0.000000,1.000000,20858,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760636',4760636,-435.845795,800.007385,0.107300,-1.570451,3166,0,0,0,0,6,0,0,2643,0,0.000000,50,0,120,1,0,7,0,100,1,0,1,0,1,1,0.000000,1.000000,20592,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760633',4760633,-465.934387,800.028381,4.852085,1.570451,3167,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,6,0,100,3,0,1,0,1,1,0.000000,1.000000,20326,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760629',4760629,-436.241211,799.997009,4.892796,-1.570451,3167,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,5,0,100,3,0,1,0,1,1,0.000000,1.000000,20054,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760634',4760634,-469.182190,800.068787,-3.083111,1.570451,3167,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,6,0,100,3,0,1,0,1,1,0.000000,1.000000,19782,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760623',4760623,-464.253387,800.114075,4.044464,1.570451,3167,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,2,0,100,2,0,1,0,1,1,0.000000,1.000000,19510,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760618',4760618,-466.647491,800.028381,-7.849937,1.532944,3167,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,1,0,100,3,0,1,0,1,1,0.000000,1.000000,19238,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760631',4760631,-435.859314,800.011780,1.753515,-1.570451,3168,0,0,0,1,6,0,0,2644,0,0.000000,50,0,120,1,0,5,0,100,3,0,1,0,1,1,0.000000,1.000000,18972,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760619',4760619,-464.727905,800.000916,4.150533,1.570451,3168,0,0,0,1,6,0,0,2644,0,0.000000,50,0,120,1,0,1,0,100,3,0,1,0,1,1,0.000000,1.000000,18700,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760620',4760620,-465.637512,800.011780,-3.258655,1.570451,3168,0,0,0,1,6,0,0,2644,0,0.000000,50,0,120,1,0,1,0,100,3,0,1,0,1,1,0.000000,1.000000,18428,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760624',4760624,-467.102692,800.003113,-1.731705,1.570451,3168,0,0,0,1,6,0,0,2644,0,0.000000,50,0,120,1,0,2,0,100,2,0,1,0,1,1,0.000000,1.000000,18156,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760637',4760637,-435.050903,800.000000,4.277941,-1.570451,3169,0,0,0,0,6,0,0,2645,0,0.000000,50,0,120,1,0,7,0,100,1,0,1,0,1,1,0.000000,1.000000,17890,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760635',4760635,-468.181793,800.024719,1.094773,1.570451,3169,0,0,0,0,6,0,0,2645,0,0.000000,50,0,120,1,0,6,0,100,3,0,1,0,1,1,0.000000,1.000000,17618,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760626',4760626,-433.654510,799.919006,7.050138,-1.003524,3169,0,0,0,0,6,0,0,2645,0,0.000000,50,0,120,1,0,3,0,100,2,0,1,0,1,1,0.000000,1.000000,17346,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760627',4760627,-433.654510,800.053406,-6.030566,-1.174101,3169,0,0,0,0,6,0,0,2645,0,0.000000,50,0,120,1,0,3,0,100,2,0,1,0,1,1,0.000000,1.000000,17074,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100861,'LVD_BNPC_02_01_HARD','f1b2','bnpc4760630',4760630,-430.733185,800.040283,-4.300975,-1.570451,3169,0,0,0,0,6,0,0,2645,0,0.000000,50,0,120,1,0,5,0,100,3,0,1,0,1,1,0.000000,1.000000,16802,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98906,'LVD_Boss_02','f1b2','bnpc4646878',4646878,-449.946503,800.076172,86.717041,0.000096,2732,0,0,0,0,6,0,0,2610,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16440,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98906,'LVD_Boss_02','f1b2','bnpc4646879',4646879,-455.402588,800.000000,82.679207,0.000000,2733,0,0,0,0,6,0,0,2624,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16174,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98906,'LVD_Boss_02','f1b2','bnpc4646880',4646880,-444.663910,800.000000,82.888397,0.000000,2734,0,0,0,0,6,0,0,2625,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98906,'LVD_Boss_02','f1b2','bnpc4646881',4646881,-460.004913,800.000000,80.935921,0.000000,2735,0,0,0,0,6,0,0,2626,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15642,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98906,'LVD_Boss_02','f1b2','bnpc4646882',4646882,-440.270905,800.000000,80.656990,0.000000,2736,0,0,0,0,6,0,0,2627,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15376,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98906,'LVD_Boss_02','f1b2','bnpc4646883',4646883,-450.033295,800.000000,78.355843,0.000000,2737,0,0,0,0,6,0,0,2610,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15110,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98906,'LVD_Boss_02','f1b2','bnpc4663940',4663940,-450.033295,800.000000,78.355843,0.000000,2737,0,0,0,0,6,0,0,2613,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100862,'LVD_Boss_02_HARD','f1b2','bnpc4760645',4760645,-449.946503,800.076172,86.717041,0.000096,3138,0,0,0,0,6,0,0,2610,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14472,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100862,'LVD_Boss_02_HARD','f1b2','bnpc4760646',4760646,-455.402588,800.000000,82.679207,0.000000,3139,0,0,0,0,6,0,0,2624,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14206,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100862,'LVD_Boss_02_HARD','f1b2','bnpc4760647',4760647,-444.663910,800.000000,82.888397,0.000000,3140,0,0,0,0,6,0,0,2625,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13940,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100862,'LVD_Boss_02_HARD','f1b2','bnpc4760648',4760648,-460.004913,800.000000,80.935921,0.000000,3141,0,0,0,0,6,0,0,2626,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13674,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100862,'LVD_Boss_02_HARD','f1b2','bnpc4760649',4760649,-440.270905,800.000000,80.656990,0.000000,3142,0,0,0,0,6,0,0,2627,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13408,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100862,'LVD_Boss_02_HARD','f1b2','bnpc4760671',4760671,-450.033295,800.000000,78.355843,0.000000,3143,0,0,0,0,6,0,0,2613,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13142,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100862,'LVD_Boss_02_HARD','f1b2','bnpc4760650',4760650,-450.033295,800.000000,78.355843,0.000000,3143,0,0,0,0,6,0,0,2610,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12870,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98909,'LVD_gimmick_02_01','f1b2','bnpc4646828',4646828,-467.826294,800.093384,-0.253989,-0.000048,2915,0,0,0,1,6,0,0,1471,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,3868,1,4,2000,0,0,0,4629397,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98909,'LVD_gimmick_02_01','f1b2','bnpc4646829',4646829,-467.826294,800.093384,-0.253989,-0.000048,2915,0,0,0,1,6,0,0,1471,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,3596,1,4,2000,0,0,0,4629397,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98909,'LVD_gimmick_02_01','f1b2','bnpc4646832',4646832,-467.809601,800.089600,-0.240992,-0.000048,2915,0,0,0,1,6,0,0,1471,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,3324,1,4,2000,0,0,0,4629397,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4649172',4649172,39.797489,-504.526306,-62.479160,-0.000000,2922,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,32,5,0,1,0,1,0,0.000000,1.000000,89688,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4649171',4649171,42.010639,-511.416901,-27.783140,-0.000000,2923,0,0,0,1,6,0,0,2647,0,0.000000,50,0,120,1,0,1,0,32,5,0,1,0,1,0,0.000000,1.000000,89422,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4649170',4649170,71.418488,-543.166626,7.215824,-0.000000,2924,0,0,0,1,6,0,0,2648,0,0.000000,50,0,120,1,0,1,0,32,5,0,1,0,1,0,0.000000,1.000000,89156,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4649169',4649169,71.584702,-531.981079,-48.587280,-0.000000,2925,0,0,0,1,6,0,0,2649,0,0.000000,50,0,120,1,0,1,0,32,5,0,1,0,1,0,0.000000,1.000000,88890,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652025',4652025,6.590415,-501.161987,7.959057,-0.000000,2923,0,0,0,0,6,0,0,2647,0,0.000000,50,0,120,1,0,1,0,32,5,0,1,0,1,0,0.000000,1.000000,88606,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652026',4652026,-6.599143,-501.163910,7.969008,-0.000000,2924,0,0,0,0,6,0,0,2648,0,0.000000,50,0,120,1,0,1,0,32,5,0,1,0,1,0,0.000000,1.000000,88340,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652636',4652636,39.797489,-504.526306,-62.479160,-0.000000,2922,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,88056,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652635',4652635,39.797489,-504.526306,-62.479160,-0.000000,2924,0,0,0,1,6,0,0,2648,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,87796,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652642',4652642,39.797489,-504.526306,-62.479160,-0.000000,2923,0,0,0,1,6,0,0,2647,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,87518,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652641',4652641,39.797489,-504.526306,-62.479160,-0.000000,2923,0,0,0,1,6,0,0,2647,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,87246,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652649',4652649,39.797489,-504.526306,-62.479160,-0.000000,2922,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,86968,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652653',4652653,39.797489,-504.526306,-62.479160,-0.000000,2922,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,86696,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652656',4652656,39.797489,-504.526306,-62.479160,-0.000000,2924,0,0,0,1,6,0,0,2648,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,86436,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652657',4652657,39.797489,-504.526306,-62.479160,-0.000000,2925,0,0,0,1,6,0,0,2649,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,86170,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652666',4652666,39.797489,-504.526306,-62.479160,-0.000000,2925,0,0,0,1,6,0,0,2649,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,85898,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652665',4652665,39.797489,-504.526306,-62.479160,-0.000000,2923,0,0,0,1,6,0,0,2647,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,85614,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652615',4652615,71.418488,-543.166626,7.215824,-0.000000,2922,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,85336,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652637',4652637,39.797489,-504.526306,-62.479160,-0.000000,2924,0,0,0,1,6,0,0,2648,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,85076,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652639',4652639,71.418488,-543.166626,7.215824,-0.000000,2922,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,84792,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652640',4652640,39.797489,-504.526306,-62.479160,-0.000000,2922,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,84520,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652658',4652658,39.797489,-504.526306,-62.479160,-0.000000,2924,0,0,0,1,6,0,0,2648,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,84260,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652667',4652667,39.797489,-504.526306,-62.479160,-0.000000,2923,0,0,0,1,6,0,0,2647,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,83982,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652646',4652646,71.418488,-543.166626,7.215824,-0.000000,2922,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,83704,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652648',4652648,39.797489,-504.526306,-62.479160,-0.000000,2924,0,0,0,1,6,0,0,2648,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,83444,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652650',4652650,71.418488,-543.166626,7.215824,-0.000000,2922,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,83160,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652652',4652652,39.797489,-504.526306,-62.479160,-0.000000,2923,0,0,0,1,6,0,0,2647,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,82894,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652651',4652651,39.797489,-504.526306,-62.479160,-0.000000,2925,0,0,0,1,6,0,0,2649,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,82634,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652647',4652647,39.797489,-504.526306,-62.479160,-0.000000,2925,0,0,0,1,6,0,0,2649,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,82362,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652664',4652664,71.418488,-543.166626,7.215824,-0.000000,2922,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,82072,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98951,'LVD_BNPC_03_01','f1b3','bnpc4652655',4652655,71.418488,-543.166626,7.215824,-0.000000,2922,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,81800,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760727',4760727,71.418488,-543.166626,7.215824,-0.000000,3171,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,81360,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760728',4760728,71.418488,-543.166626,7.215824,-0.000000,3171,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,81088,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760723',4760723,71.418488,-543.166626,7.215824,-0.000000,3171,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,80816,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760721',4760721,71.418488,-543.166626,7.215824,-0.000000,3171,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,80544,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760710',4760710,39.797489,-504.526306,-62.479160,-0.000000,3171,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,80272,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760709',4760709,39.797489,-504.526306,-62.479160,-0.000000,3171,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,80000,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760705',4760705,39.797489,-504.526306,-62.479160,-0.000000,3171,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,79728,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760699',4760699,39.797489,-504.526306,-62.479160,-0.000000,3171,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,32,5,0,1,0,1,0,0.000000,1.000000,79456,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760718',4760718,39.797489,-504.526306,-62.479160,-0.000000,3171,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,79184,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760717',4760717,71.418488,-543.166626,7.215824,-0.000000,3171,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,78912,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760715',4760715,71.418488,-543.166626,7.215824,-0.000000,3171,0,0,0,1,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,78640,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760724',4760724,39.797489,-504.526306,-62.479160,-0.000000,3172,0,0,0,1,6,0,0,2647,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,78374,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760714',4760714,39.797489,-504.526306,-62.479160,-0.000000,3172,0,0,0,1,6,0,0,2647,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,78102,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760700',4760700,42.010639,-511.416901,-27.783140,-0.000000,3172,0,0,0,1,6,0,0,2647,0,0.000000,50,0,120,1,0,1,0,32,5,0,1,0,1,0,0.000000,1.000000,77830,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760703',4760703,6.590415,-501.161987,7.959057,-0.000000,3172,0,0,0,0,6,0,0,2647,0,0.000000,50,0,120,1,0,1,0,32,5,0,1,0,1,0,0.000000,1.000000,77558,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760707',4760707,39.797489,-504.526306,-62.479160,-0.000000,3172,0,0,0,1,6,0,0,2647,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,77286,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760720',4760720,39.797489,-504.526306,-62.479160,-0.000000,3172,0,0,0,1,6,0,0,2647,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,77014,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760708',4760708,39.797489,-504.526306,-62.479160,-0.000000,3172,0,0,0,1,6,0,0,2647,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,76742,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760716',4760716,39.797489,-504.526306,-62.479160,-0.000000,3173,0,0,0,1,6,0,0,2648,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,76476,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760719',4760719,39.797489,-504.526306,-62.479160,-0.000000,3173,0,0,0,1,6,0,0,2648,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,76204,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760711',4760711,39.797489,-504.526306,-62.479160,-0.000000,3173,0,0,0,1,6,0,0,2648,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,75932,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760704',4760704,-6.599143,-501.163910,7.969008,-0.000000,3173,0,0,0,0,6,0,0,2648,0,0.000000,50,0,120,1,0,1,0,32,5,0,1,0,1,0,0.000000,1.000000,75660,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760722',4760722,39.797489,-504.526306,-62.479160,-0.000000,3173,0,0,0,1,6,0,0,2648,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,75388,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760701',4760701,71.418488,-543.166626,7.215824,-0.000000,3173,0,0,0,1,6,0,0,2648,0,0.000000,50,0,120,1,0,1,0,32,5,0,1,0,1,0,0.000000,1.000000,75116,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760706',4760706,39.797489,-504.526306,-62.479160,-0.000000,3173,0,0,0,1,6,0,0,2648,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,74844,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760712',4760712,39.797489,-504.526306,-62.479160,-0.000000,3174,0,0,0,1,6,0,0,2649,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,74578,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760725',4760725,39.797489,-504.526306,-62.479160,-0.000000,3174,0,0,0,1,6,0,0,2649,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,74306,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760726',4760726,39.797489,-504.526306,-62.479160,-0.000000,3174,0,0,0,1,6,0,0,2649,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,74034,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760702',4760702,71.584702,-531.981079,-48.587280,-0.000000,3174,0,0,0,1,6,0,0,2649,0,0.000000,50,0,120,1,0,1,0,32,5,0,1,0,1,0,0.000000,1.000000,73762,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100864,'LVD_BNPC_03_01_HARD','f1b3','bnpc4760713',4760713,39.797489,-504.526306,-62.479160,-0.000000,3174,0,0,0,1,6,0,0,2649,0,0.000000,50,0,120,1,0,1,0,20,5,0,1,0,1,0,0.000000,1.000000,73490,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98952,'LVD_BNPC_03_02','f1b3','bnpc4649173',4649173,-0.007818,-482.796692,-84.345177,-0.000048,2921,0,0,0,2,6,0,0,2646,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,73132,1,4,2000,0,0,0,4649420,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98952,'LVD_BNPC_03_02','f1b3','bnpc4649174',4649174,71.732674,-450.459686,-35.599300,-0.000048,2921,0,0,0,2,6,0,0,2646,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,72860,1,4,2000,0,0,0,4649421,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98952,'LVD_BNPC_03_02','f1b3','bnpc4649175',4649175,-71.793762,-450.441895,-35.690861,-0.000048,2921,0,0,0,2,6,0,0,2646,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,72588,1,4,2000,0,0,0,4649423,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98952,'LVD_BNPC_03_02','f1b3','bnpc4649176',4649176,-71.702209,-434.603302,-117.174103,-0.000048,2921,0,0,0,2,6,0,0,2646,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,72316,1,4,2000,0,0,0,4649422,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98952,'LVD_BNPC_03_02','f1b3','bnpc4649177',4649177,-71.671631,-466.251007,45.639648,-0.000048,2921,0,0,0,2,6,0,0,2646,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,72044,1,4,2000,0,0,0,4649425,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98952,'LVD_BNPC_03_02','f1b3','bnpc4649178',4649178,71.824219,-434.597412,-117.204498,-0.000048,2921,0,0,0,2,6,0,0,2646,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,71772,1,4,2000,0,0,0,4649424,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100865,'LVD_BNPC_03_02_HARD','f1b3','bnpc4760734',4760734,-71.702209,-434.603302,-117.174103,-0.000048,3170,0,0,0,2,6,0,0,2646,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,71410,1,4,2000,0,0,0,4649422,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100865,'LVD_BNPC_03_02_HARD','f1b3','bnpc4760735',4760735,-71.671631,-466.251007,45.639648,-0.000048,3170,0,0,0,2,6,0,0,2646,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,71138,1,4,2000,0,0,0,4649425,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100865,'LVD_BNPC_03_02_HARD','f1b3','bnpc4760736',4760736,71.824219,-434.597412,-117.204498,-0.000048,3170,0,0,0,2,6,0,0,2646,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,70866,1,4,2000,0,0,0,4649424,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100865,'LVD_BNPC_03_02_HARD','f1b3','bnpc4760731',4760731,-0.007818,-482.796692,-84.345177,-0.000048,3170,0,0,0,2,6,0,0,2646,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,70594,1,4,2000,0,0,0,4649420,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100865,'LVD_BNPC_03_02_HARD','f1b3','bnpc4760732',4760732,71.732674,-450.459686,-35.599300,-0.000048,3170,0,0,0,2,6,0,0,2646,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,70322,1,4,2000,0,0,0,4649421,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100865,'LVD_BNPC_03_02_HARD','f1b3','bnpc4760733',4760733,-71.793762,-450.441895,-35.690861,-0.000048,3170,0,0,0,2,6,0,0,2646,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,70050,1,4,2000,0,0,0,4649423,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98955,'LVD_Boss_03','f1b3','bnpc4649234',4649234,-2.700867,-506.950500,105.332901,0.000000,2738,0,0,0,0,6,0,0,2611,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,69692,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98955,'LVD_Boss_03','f1b3','bnpc4649235',4649235,12.619710,-507.203491,114.856300,3.141593,2739,0,0,0,0,6,0,0,1478,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,69426,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98955,'LVD_Boss_03','f1b3','bnpc4649236',4649236,-2.490683,-507.203491,103.471703,3.141593,2741,0,0,0,0,6,0,0,2611,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,69160,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98955,'LVD_Boss_03','f1b3','bnpc4663915',4663915,12.619710,-507.203491,114.856300,-0.000000,2741,0,0,0,0,6,0,0,2614,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,68888,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98955,'LVD_Boss_03','f1b3','bnpc4663916',4663916,12.619710,-507.203491,114.856300,-0.000000,2741,0,0,0,0,6,0,0,2615,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,68616,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98955,'LVD_Boss_03','f1b3','bnpc4663917',4663917,12.619710,-507.203491,114.856300,-0.000000,2741,0,0,0,0,6,0,0,2616,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,68344,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100866,'LVD_Boss_03_HARD','f1b3','bnpc4760738',4760738,-2.700867,-506.950500,105.332901,0.000000,3144,0,0,0,0,6,0,0,2611,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,67982,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100866,'LVD_Boss_03_HARD','f1b3','bnpc4760739',4760739,12.619710,-507.203491,114.856300,3.141593,3145,0,0,0,0,6,0,0,1478,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,67716,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100866,'LVD_Boss_03_HARD','f1b3','bnpc4760777',4760777,12.619710,-507.203491,114.856300,-0.000000,3146,0,0,0,0,6,0,0,2614,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,67450,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100866,'LVD_Boss_03_HARD','f1b3','bnpc4760778',4760778,12.619710,-507.203491,114.856300,-0.000000,3146,0,0,0,0,6,0,0,2615,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,67178,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100866,'LVD_Boss_03_HARD','f1b3','bnpc4760779',4760779,12.619710,-507.203491,114.856300,-0.000000,3146,0,0,0,0,6,0,0,2616,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,66906,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100866,'LVD_Boss_03_HARD','f1b3','bnpc4760740',4760740,-2.490683,-507.203491,103.471703,3.141593,3146,0,0,0,0,6,0,0,2611,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,66634,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98189,'LVD_Boss_01','f1b4','bnpc4616639',4616639,0.024889,-0.017127,-11.085740,-0.000000,2742,0,0,0,0,6,0,0,2612,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20832,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98189,'LVD_Boss_01','f1b4','bnpc4616640',4616640,-2.351260,0.000001,1.161737,-0.000000,2743,0,0,0,0,6,0,0,2628,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20566,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98189,'LVD_Boss_01','f1b4','bnpc4616641',4616641,5.721556,-0.000002,0.674415,-0.000000,2744,0,0,0,0,6,0,0,2629,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20300,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98189,'LVD_Boss_01','f1b4','bnpc4616642',4616642,-6.250584,0.000002,-2.554785,-0.000000,2745,0,0,0,0,6,0,0,2630,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20034,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98189,'LVD_Boss_01','f1b4','bnpc4616643',4616643,-8.779049,0.000002,6.828046,-0.000000,2746,0,0,0,0,6,0,0,2631,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19768,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98189,'LVD_Boss_01','f1b4','bnpc4616644',4616644,-8.961830,0.000002,12.768570,-0.000000,2747,0,0,0,0,6,0,0,2632,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19502,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98189,'LVD_Boss_01','f1b4','bnpc4616645',4616645,2.187796,-0.000000,-6.911135,-0.000000,2748,0,0,0,0,6,0,0,2634,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19236,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98189,'LVD_Boss_01','f1b4','bnpc4616646',4616646,7.732144,-0.000002,-7.276749,-0.000000,2749,0,0,0,0,6,0,0,2634,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18970,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98189,'LVD_Boss_01','f1b4','bnpc4616647',4616647,4.230211,-0.000000,-14.066310,-0.000000,2750,0,0,0,0,6,0,0,2635,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18704,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98189,'LVD_Boss_01','f1b4','bnpc4616648',4616648,-0.004181,0.000001,-15.559050,-0.000000,2751,0,0,0,0,6,0,0,2636,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18438,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98189,'LVD_Boss_01','f1b4','bnpc4616649',4616649,-4.360467,0.000002,-14.949770,-0.000000,2752,0,0,0,0,6,0,0,2637,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18172,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98189,'LVD_Boss_01','f1b4','bnpc4616651',4616651,-0.034670,0.000000,-0.052984,-0.000000,2755,0,0,0,0,6,0,0,2612,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17906,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98189,'LVD_Boss_01','f1b4','bnpc4635023',4635023,7.957073,-0.000000,-15.062980,-0.000000,2753,0,0,0,1,6,0,0,2638,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17640,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98189,'LVD_Boss_01','f1b4','bnpc4663902',4663902,-0.034670,0.000000,-0.052984,-0.000000,2933,0,0,0,0,6,0,0,2618,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17374,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98189,'LVD_Boss_01','f1b4','bnpc4656745',4656745,-0.034670,0.000000,-0.052984,-0.000000,2933,0,0,0,0,6,0,0,2634,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17102,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98189,'LVD_Boss_01','f1b4','bnpc4663903',4663903,-0.034670,0.000000,-0.052984,-0.000000,2933,0,0,0,0,6,0,0,2617,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16830,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98189,'LVD_Boss_01','f1b4','bnpc4664051',4664051,-0.034670,0.000000,-0.052984,-0.000000,2933,0,0,0,0,6,0,0,2632,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16558,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100867,'LVD_Boss_01_HARD','f1b4','bnpc4760788',4760788,0.024889,-0.017127,-11.085740,-0.000000,3147,0,0,0,0,6,0,0,2612,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16156,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100867,'LVD_Boss_01_HARD','f1b4','bnpc4760789',4760789,-2.351260,0.000001,1.161737,-0.000000,3148,0,0,0,0,6,0,0,2628,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15890,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100867,'LVD_Boss_01_HARD','f1b4','bnpc4760790',4760790,5.721556,-0.000002,0.674415,-0.000000,3149,0,0,0,0,6,0,0,2629,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15624,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100867,'LVD_Boss_01_HARD','f1b4','bnpc4760791',4760791,-6.250584,0.000002,-2.554785,-0.000000,3150,0,0,0,0,6,0,0,2630,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15358,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100867,'LVD_Boss_01_HARD','f1b4','bnpc4760792',4760792,-8.779049,0.000002,6.828046,-0.000000,3151,0,0,0,0,6,0,0,2631,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15092,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100867,'LVD_Boss_01_HARD','f1b4','bnpc4760793',4760793,-8.961830,0.000002,12.768570,-0.000000,3152,0,0,0,0,6,0,0,2632,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14826,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100867,'LVD_Boss_01_HARD','f1b4','bnpc4760794',4760794,2.187796,-0.000000,-6.911135,-0.000000,3153,0,0,0,0,6,0,0,2634,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14560,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100867,'LVD_Boss_01_HARD','f1b4','bnpc4760795',4760795,7.732144,-0.000002,-7.276749,-0.000000,3153,0,0,0,0,6,0,0,2634,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14288,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100867,'LVD_Boss_01_HARD','f1b4','bnpc4760796',4760796,4.230211,-0.000000,-14.066310,-0.000000,3154,0,0,0,0,6,0,0,2635,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14022,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100867,'LVD_Boss_01_HARD','f1b4','bnpc4760797',4760797,-0.004181,0.000001,-15.559050,-0.000000,3155,0,0,0,0,6,0,0,2636,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13756,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100867,'LVD_Boss_01_HARD','f1b4','bnpc4760798',4760798,-4.360467,0.000002,-14.949770,-0.000000,3156,0,0,0,0,6,0,0,2637,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13490,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100867,'LVD_Boss_01_HARD','f1b4','bnpc4760806',4760806,7.957073,-0.000000,-15.062980,-0.000000,3157,0,0,0,1,6,0,0,2638,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13224,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100867,'LVD_Boss_01_HARD','f1b4','bnpc4760800',4760800,-0.034670,0.000000,-0.052984,-0.000000,3158,0,0,0,0,6,0,0,2612,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100867,'LVD_Boss_01_HARD','f1b4','bnpc4760826',4760826,-0.034670,0.000000,-0.052984,-0.000000,3159,0,0,0,0,6,0,0,2617,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12692,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100867,'LVD_Boss_01_HARD','f1b4','bnpc4760827',4760827,-0.034670,0.000000,-0.052984,-0.000000,3159,0,0,0,0,6,0,0,2632,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12420,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100867,'LVD_Boss_01_HARD','f1b4','bnpc4760824',4760824,-0.034670,0.000000,-0.052984,-0.000000,3159,0,0,0,0,6,0,0,2618,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12148,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100867,'LVD_Boss_01_HARD','f1b4','bnpc4760825',4760825,-0.034670,0.000000,-0.052984,-0.000000,3159,0,0,0,0,6,0,0,2634,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11876,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73442,'LVD_BNPC_Dungeon_01','f1d1','bnpc2372348',2372348,59.586430,40.115971,-81.406921,-1.028790,1348,0,0,0,1,6,0,0,145,0,0.000000,16,0,120,1,0,14,0,20,1,0,1,0,1,0,0.000000,1.000000,34784,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73442,'LVD_BNPC_Dungeon_01','f1d1','bnpc2372328',2372328,12.680240,41.092529,-88.731262,-0.666381,1348,0,0,0,1,6,0,0,145,0,0.000000,16,0,120,1,0,13,0,20,1,0,1,0,1,0,0.000000,1.000000,34512,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73442,'LVD_BNPC_Dungeon_01','f1d1','bnpc2380810',2380810,-17.783590,41.350811,-71.202271,-0.000527,1349,0,0,0,1,6,0,0,146,0,0.000000,16,0,120,1,0,12,0,20,1,0,1,0,1,0,0.000000,1.000000,34246,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73442,'LVD_BNPC_Dungeon_01','f1d1','bnpc2380805',2380805,16.449720,41.094021,-86.946388,-0.000335,1349,0,0,0,1,6,0,0,146,0,0.000000,16,0,120,1,0,13,0,20,1,0,1,0,1,0,0.000000,1.000000,33974,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73442,'LVD_BNPC_Dungeon_01','f1d1','bnpc2372249',2372249,81.677719,40.937019,-87.882561,-0.000048,1352,0,0,0,2,6,0,0,147,0,0.000000,16,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33708,1,3,2000,0,0,0,4217086,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73442,'LVD_BNPC_Dungeon_01','f1d1','bnpc2372239',2372239,69.126572,35.354961,-42.002979,-0.127706,1346,0,0,0,1,6,0,0,143,0,0.000000,16,0,120,1,0,15,0,20,1,0,1,0,1,0,0.000000,1.000000,33442,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73442,'LVD_BNPC_Dungeon_01','f1d1','bnpc2372233',2372233,40.470921,32.851158,-29.631550,0.830952,1346,0,0,0,2,0,0,0,143,0,0.000000,16,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33170,1,3,2000,0,0,0,4217087,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73442,'LVD_BNPC_Dungeon_01','f1d1','bnpc2372238',2372238,64.605553,35.355011,-41.091770,-0.121474,1346,0,0,0,1,0,0,0,143,0,0.000000,16,0,120,1,0,15,0,20,1,0,1,0,1,0,0.000000,1.000000,32898,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73442,'LVD_BNPC_Dungeon_01','f1d1','bnpc4174607',4174607,-57.175598,44.296879,-81.000000,-0.000000,1346,0,0,0,0,6,0,0,143,0,0.000000,16,0,120,1,0,11,0,20,1,0,1,0,1,0,0.000000,1.000000,32626,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73442,'LVD_BNPC_Dungeon_01','f1d1','bnpc4174608',4174608,-52.406731,44.357910,-81.000000,-0.000000,1346,0,0,0,0,0,0,0,143,0,0.000000,16,0,120,1,0,11,0,20,1,0,1,0,1,0,0.000000,1.000000,32354,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73442,'LVD_BNPC_Dungeon_01','f1d1','bnpc4174609',4174609,29.039829,41.000000,-89.874382,-1.215557,1346,0,0,0,2,0,0,0,143,0,0.000000,16,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32082,1,3,2000,0,0,0,4217084,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73442,'LVD_BNPC_Dungeon_01','f1d1','bnpc4217124',4217124,-14.097060,41.316799,-69.614777,-0.000527,1349,0,0,0,1,6,0,0,146,0,0.000000,16,0,120,1,0,12,0,20,1,0,1,0,1,0,0.000000,1.000000,31798,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73442,'LVD_BNPC_Dungeon_01','f1d1','bnpc4217125',4217125,56.482510,40.030540,-76.111214,0.268049,1348,0,0,0,1,6,0,0,145,0,0.000000,16,0,120,1,0,14,0,20,1,0,1,0,1,0,0.000000,1.000000,31520,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73442,'LVD_BNPC_Dungeon_01','f1d1','bnpc4217126',4217126,96.232140,40.815369,-92.025398,-0.000048,1352,0,0,0,2,6,0,0,147,0,0.000000,16,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31260,1,3,2000,0,0,0,4217086,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73443,'LVD_BNPC_Dungeon_02','f1d1','bnpc2373657',2373657,31.414961,23.535040,34.148060,-0.000335,1349,0,0,0,1,6,0,0,146,0,0.000000,16,0,120,1,0,22,0,20,2,0,1,0,1,0,0.000000,1.000000,30866,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73443,'LVD_BNPC_Dungeon_02','f1d1','bnpc2373649',2373649,33.138599,23.572519,39.973331,-0.579806,1347,0,0,0,2,6,0,0,144,0,0.000000,16,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30612,1,3,2000,0,0,0,4217089,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73443,'LVD_BNPC_Dungeon_02','f1d1','bnpc2373653',2373653,67.364571,23.706730,9.159799,-0.411169,1350,0,0,0,1,6,0,0,111,0,0.000000,16,0,120,1,0,23,0,20,1,0,1,0,1,0,0.000000,1.000000,30346,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73443,'LVD_BNPC_Dungeon_02','f1d1','bnpc2372998',2372998,12.928850,23.384501,75.450447,1.242639,1350,0,0,0,1,6,0,0,111,0,0.000000,16,0,120,1,0,24,0,20,2,0,1,0,1,0,0.000000,1.000000,30074,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73443,'LVD_BNPC_Dungeon_02','f1d1','bnpc2372999',2372999,14.970920,23.453131,68.173920,0.236093,1350,0,0,0,1,6,0,0,111,0,0.000000,16,0,120,1,0,24,0,20,2,0,1,0,1,0,0.000000,1.000000,29802,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73443,'LVD_BNPC_Dungeon_02','f1d1','bnpc2380915',2380915,8.138228,29.253321,14.000250,-1.444121,1350,0,0,0,1,6,0,0,111,0,0.000000,16,0,120,1,0,21,0,20,1,0,1,0,1,0,0.000000,1.000000,29530,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73443,'LVD_BNPC_Dungeon_02','f1d1','bnpc2380906',2380906,21.159510,23.392019,74.739922,-1.397478,1350,0,0,0,1,6,0,0,111,0,0.000000,16,0,120,1,0,24,0,20,2,0,1,0,1,0,0.000000,1.000000,29258,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73443,'LVD_BNPC_Dungeon_02','f1d1','bnpc4174646',4174646,69.138550,23.727720,5.813660,-0.000048,1352,0,0,0,1,6,0,0,147,0,0.000000,16,0,120,1,0,23,0,20,1,0,1,0,1,0,0.000000,1.000000,28968,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73443,'LVD_BNPC_Dungeon_02','f1d1','bnpc4217128',4217128,16.734699,28.361031,19.855450,-1.000514,1388,0,0,0,2,6,0,0,1271,0,0.000000,16,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28720,1,3,2000,0,0,0,4217088,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73443,'LVD_BNPC_Dungeon_02','f1d1','bnpc4217129',4217129,5.583970,31.072531,10.059360,0.992746,1350,0,0,0,1,6,0,0,111,0,0.000000,16,0,120,1,0,21,0,20,1,0,1,0,1,0,0.000000,1.000000,28442,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73443,'LVD_BNPC_Dungeon_02','f1d1','bnpc4217130',4217130,34.267551,23.549999,30.522020,-1.028790,1348,0,0,0,1,6,0,0,145,0,0.000000,16,0,120,1,0,22,0,20,2,0,1,0,1,0,0.000000,1.000000,28140,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73443,'LVD_BNPC_Dungeon_02','f1d1','bnpc4217131',4217131,35.855000,23.514099,34.362549,-0.858353,1348,0,0,0,1,6,0,0,145,0,0.000000,16,0,120,1,0,22,0,20,2,0,1,0,1,0,0.000000,1.000000,27868,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc2373676',2373676,-146.990204,15.915160,107.927002,-0.000048,1352,0,0,0,2,6,0,0,147,0,0.000000,16,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27456,1,3,2000,0,0,0,4217145,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc2373677',2373677,-150.957504,15.976140,99.320923,-0.000048,1352,0,0,0,2,6,0,0,147,0,0.000000,16,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27184,1,3,2000,0,0,0,4217145,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc2373715',2373715,-122.514702,15.976140,67.399048,-1.467275,1351,0,0,0,1,6,0,0,284,0,0.000000,16,0,120,1,0,35,0,20,1,0,1,0,1,0,0.000000,1.000000,26942,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc2380939',2380939,-116.838402,15.945620,65.842651,0.153352,1351,0,0,0,1,6,0,0,284,0,0.000000,16,0,120,1,0,35,0,20,1,0,1,0,1,0,0.000000,1.000000,26670,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc2373664',2373664,-106.498497,13.782470,16.511530,-0.957842,1346,0,0,0,2,6,0,0,143,0,0.000000,16,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26374,1,3,2000,0,0,0,4217097,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc2373667',2373667,-174.395401,12.527650,-3.097595,1.479595,1347,0,0,0,0,6,0,0,144,0,0.000000,16,0,120,1,0,41,0,30,3,0,1,0,1,0,0.000000,1.000000,26108,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc2373663',2373663,-110.948402,13.778870,15.976140,0.641645,1347,0,0,0,1,6,0,0,144,0,0.000000,16,0,120,1,0,36,0,20,1,0,1,0,1,0,0.000000,1.000000,25836,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc2380947',2380947,-174.700607,12.649660,-7.888916,1.479690,1347,0,0,0,0,6,0,0,144,0,0.000000,16,0,120,1,0,41,0,30,3,0,1,0,1,0,0.000000,1.000000,25564,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc4174678',4174678,-19.363770,18.478640,83.848267,-0.119556,1388,0,0,0,2,0,0,0,1271,0,0.000000,16,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25304,1,3,2000,0,0,0,4217095,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc4174715',4174715,-43.778141,18.631229,91.935547,-1.332996,1351,0,0,0,1,6,0,0,284,0,0.000000,16,0,120,1,0,33,0,20,1,0,1,0,1,0,0.000000,1.000000,25038,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc4174716',4174716,-49.499729,18.298790,93.392548,1.358263,1351,0,0,0,1,6,0,0,284,0,0.000000,16,0,120,1,0,33,0,20,1,0,1,0,1,0,0.000000,1.000000,24766,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc4174717',4174717,-34.967670,22.459360,44.253990,-0.000048,1351,0,0,0,1,6,0,0,284,0,0.000000,16,0,120,1,0,31,0,20,1,0,1,0,1,0,0.000000,1.000000,24494,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc4174720',4174720,-107.621902,13.778870,21.225281,-0.157044,1388,0,0,0,1,0,0,0,1271,0,0.000000,16,0,120,1,0,36,0,20,1,0,1,0,1,0,0.000000,1.000000,24216,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc4217134',4217134,-36.365040,22.427361,47.503910,-0.000048,1351,0,0,0,1,6,0,0,284,0,0.000000,16,0,120,1,0,31,0,20,1,0,1,0,1,0,0.000000,1.000000,23950,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc4217140',4217140,-23.116039,18.237049,89.044937,-0.000335,1349,0,0,0,1,6,0,0,146,0,0.000000,16,0,120,1,0,32,0,20,1,0,1,0,1,0,0.000000,1.000000,23642,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc4217141',4217141,-21.102160,18.475571,84.030884,-0.000335,1349,0,0,0,1,6,0,0,146,0,0.000000,16,0,120,1,0,32,0,20,1,0,1,0,1,0,0.000000,1.000000,23370,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc4217142',4217142,-126.203102,15.986050,93.396667,0.357388,1347,0,0,0,1,6,0,0,144,0,0.000000,16,0,120,1,0,34,0,20,1,0,1,0,1,0,0.000000,1.000000,23116,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc4217143',4217143,-128.609100,15.956230,88.970192,1.094352,1388,0,0,0,1,0,0,0,1271,0,0.000000,16,0,120,1,0,34,0,20,1,0,1,0,1,0,0.000000,1.000000,22856,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc4217144',4217144,-125.389297,16.065760,89.869827,0.576531,1347,0,0,0,2,6,0,0,144,0,0.000000,16,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22572,1,3,2000,0,0,0,4217096,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc2373665',2373665,-171.587799,12.649660,-4.409851,1.479595,1388,0,0,0,0,6,0,0,1271,0,0.000000,16,0,120,1,0,41,0,30,3,0,1,0,1,0,0.000000,1.000000,22312,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73627,'LVD_BNPC_Dungeon_03','f1d1','bnpc2373666',2373666,-171.831894,12.649660,-7.309082,1.479595,1346,0,0,0,0,6,0,0,143,0,0.000000,16,0,120,1,0,41,0,30,3,0,1,0,1,0,0.000000,1.000000,22022,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1332316',1332316,-48.829159,14.045880,-13.919290,-0.876696,76,0,0,0,0,0,0,0,73,0,0.000000,16,0,0,0,0,4,0,50,15,0,1,0,1,1,0.000000,1.000000,21588,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334974',1334974,-45.151489,14.053510,-24.673880,0.703453,125,0,0,0,0,0,0,0,456,0,0.000000,16,0,0,0,0,4,0,50,15,0,1,0,1,1,0.000000,1.000000,21322,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334973',1334973,-37.568890,14.686780,-11.828650,1.259533,125,0,0,0,0,0,0,0,456,0,0.000000,16,0,0,0,0,4,0,50,15,0,1,0,1,1,0.000000,1.000000,21050,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334967',1334967,-52.977772,14.391350,-24.628670,-0.110975,126,0,0,0,0,0,0,0,110,0,0.000000,16,0,0,0,0,4,0,50,15,0,1,0,1,1,0.000000,1.000000,20784,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334968',1334968,-50.477921,14.391350,-23.966190,-0.730269,126,0,0,0,0,0,0,0,110,0,0.000000,16,0,0,0,0,4,0,50,15,0,1,0,1,1,0.000000,1.000000,20512,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334969',1334969,-41.627171,14.048270,-18.482430,-1.358793,126,0,0,0,0,0,0,0,110,0,0.000000,16,0,0,0,0,4,0,50,15,0,1,0,1,1,0.000000,1.000000,20240,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334970',1334970,-40.026581,14.391350,-16.062910,-1.135847,126,0,0,0,0,0,0,0,110,0,0.000000,16,0,0,0,0,4,0,50,15,0,1,0,1,1,0.000000,1.000000,19968,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334971',1334971,-40.237289,14.391350,-6.984694,-1.118756,126,0,0,0,0,0,0,0,110,0,0.000000,16,0,0,0,0,4,0,50,15,0,1,0,1,1,0.000000,1.000000,19696,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334972',1334972,-41.977619,14.389210,-5.233891,-0.802763,126,0,0,0,0,0,0,0,110,0,0.000000,16,0,0,0,0,4,0,50,15,0,1,0,1,1,0.000000,1.000000,19424,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334976',1334976,-51.377171,14.297660,-25.040100,0.262794,127,0,0,0,0,0,0,0,111,0,0.000000,16,0,0,0,0,4,0,50,15,0,1,0,1,1,0.000000,1.000000,19158,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334975',1334975,-39.749802,14.022990,-17.898880,-1.186409,127,0,0,0,0,0,0,0,111,0,0.000000,16,0,0,0,0,4,0,50,15,0,1,0,1,1,0.000000,1.000000,18886,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334952',1334952,-7.879776,30.829121,-16.246740,-1.560600,82,0,0,0,0,0,0,0,79,0,0.000000,16,0,0,0,0,1,0,30,2,0,1,0,1,0,0.000000,1.000000,18620,1,6,2000,0,0,30111,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334955',1334955,-23.165661,24.713131,20.988779,-0.494620,83,0,0,0,0,0,0,0,79,0,0.000000,16,0,0,0,0,2,0,30,3,0,1,0,1,0,0.000000,1.000000,18354,1,6,2000,0,0,30111,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334960',1334960,-95.201912,14.906600,3.900912,0.576573,137,0,0,0,0,0,0,0,119,0,0.000000,16,0,0,0,0,3,0,30,4,0,1,0,1,0,0.000000,1.000000,18088,1,6,2000,0,0,30111,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc2029061',2029061,-43.534031,14.053510,0.167802,0.699170,125,0,0,0,0,0,0,0,456,0,0.000000,16,0,0,0,0,4,0,50,15,0,1,0,1,1,0.000000,1.000000,17786,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc2029064',2029064,-58.609951,14.053510,2.273547,-0.171377,125,0,0,0,0,0,0,0,456,0,0.000000,16,0,0,0,0,4,0,50,15,0,1,0,1,1,0.000000,1.000000,17514,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc2029065',2029065,-67.399147,13.992480,-16.250900,-1.462194,125,0,0,0,0,0,0,0,456,0,0.000000,16,0,0,0,0,4,0,50,15,0,1,0,1,1,0.000000,1.000000,17242,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc2029067',2029067,-58.518391,14.053510,-26.108231,-0.378132,125,0,0,0,0,0,0,0,456,0,0.000000,16,0,0,0,0,4,0,50,15,0,1,0,1,1,0.000000,1.000000,16970,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc2029118',2029118,-39.963421,14.022990,-5.142337,-1.021647,127,0,0,0,0,0,0,0,111,0,0.000000,16,0,0,0,0,4,0,50,15,0,1,0,1,1,0.000000,1.000000,16710,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc3859972',3859972,-6.003298,30.123409,-16.575911,1.570796,567,0,0,0,0,6,0,0,455,0,0.000000,16,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16462,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc3859980',3859980,-21.867100,24.093081,22.095341,0.740588,567,0,0,0,0,6,0,0,455,0,0.000000,16,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16190,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc3859984',3859984,-91.435806,13.839910,8.472486,-1.053717,567,0,0,0,0,6,0,0,455,0,0.000000,16,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15918,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334953',1334953,-5.509180,29.614531,-18.574800,1.570796,1345,0,0,0,0,6,0,0,109,0,0.500000,16,0,0,0,0,1,0,30,2,0,1,0,1,0,0.000000,1.000000,15652,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334954',1334954,-5.502441,29.720200,-14.650200,1.570796,1345,0,0,0,0,6,0,0,109,0,0.500000,16,0,0,0,0,1,0,30,2,0,1,0,1,0,0.000000,1.000000,15380,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334956',1334956,-20.111259,23.654711,21.363100,0.677790,1345,0,0,0,0,6,0,0,109,0,0.500000,16,0,0,0,0,2,0,30,3,0,1,0,1,0,0.000000,1.000000,15108,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334957',1334957,-23.262150,23.700979,23.572571,0.677790,1345,0,0,0,0,6,0,0,109,0,0.500000,16,0,0,0,0,2,0,30,3,0,1,0,1,0,0.000000,1.000000,14836,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334959',1334959,-21.286381,23.605650,22.873230,0.677790,1345,0,0,0,0,6,0,0,109,0,0.500000,16,0,0,0,0,2,0,30,3,0,1,0,1,0,0.000000,1.000000,14564,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334961',1334961,-92.004013,13.656780,12.243930,-1.284046,1345,0,0,0,0,6,0,0,109,0,0.500000,16,0,0,0,0,3,0,30,4,0,1,0,1,0,0.000000,1.000000,14292,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334962',1334962,-94.882767,13.839910,6.681185,-0.550180,1345,0,0,0,0,6,0,0,109,0,0.500000,16,0,0,0,0,3,0,30,4,0,1,0,1,0,0.000000,1.000000,14020,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334963',1334963,-92.223839,13.656800,15.158940,-1.507429,1345,0,0,0,0,6,0,0,109,0,0.500000,16,0,0,0,0,3,0,30,4,0,1,0,1,0,0.000000,1.000000,13748,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73383,'LVD_BNPC_Dungeon_boss','f1d1','bnpc1334965',1334965,-97.796120,13.656800,4.496320,-0.545980,1345,0,0,0,0,6,0,0,109,0,0.500000,16,0,0,0,0,3,0,30,4,0,1,0,1,0,0.000000,1.000000,13476,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86574,'LVD_BNPC_00','f1d2','bnpc4090802',4090802,41.397709,-0.015320,76.981689,0.000000,276,0,0,0,5,6,0,0,633,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,40664,1,3,2000,0,0,0,4090791,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86574,'LVD_BNPC_00','f1d2','bnpc4090855',4090855,66.971802,-0.015320,29.984011,0.374824,276,0,0,0,5,6,0,0,633,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,40296,1,3,2000,0,0,0,4090851,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86574,'LVD_BNPC_00','f1d2','bnpc4090987',4090987,16.573429,0.000000,97.002113,-0.000000,276,0,0,0,5,6,0,0,633,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39912,1,3,2000,0,0,0,4090977,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86574,'LVD_BNPC_00','f1d2','bnpc4091011',4091011,-27.250710,0.000000,62.152168,-0.000000,276,0,0,0,5,6,0,0,633,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39544,1,3,2000,0,0,0,4091007,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86574,'LVD_BNPC_00','f1d2','bnpc4091013',4091013,-40.848450,-0.015320,47.470699,0.000096,276,0,0,0,5,6,0,0,633,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39272,1,3,2000,0,0,0,4091021,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86574,'LVD_BNPC_00','f1d2','bnpc4091042',4091042,-31.601500,-0.015320,11.917240,0.000096,276,0,0,0,5,6,0,0,633,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,38808,1,3,2000,0,0,0,4091025,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86574,'LVD_BNPC_00','f1d2','bnpc4091061',4091061,-42.130192,-0.015320,47.710388,0.000096,276,0,0,0,5,6,0,0,633,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,38536,1,3,2000,0,0,0,4091606,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86574,'LVD_BNPC_00','f1d2','bnpc4091159',4091159,-24.063540,-18.814390,28.030760,-1.570451,276,0,0,0,2,6,0,0,633,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,37896,1,3,2000,0,0,0,4178235,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86574,'LVD_BNPC_00','f1d2','bnpc4091293',4091293,24.521240,-18.814390,-28.000311,1.570451,276,0,0,0,2,6,0,0,633,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,37624,1,3,2000,0,0,0,4091133,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81667,'LVD_BNPC_01','f1d2','bnpc3633631',3633631,17.230471,-18.856701,4.000000,-1.570451,273,0,0,0,0,6,0,0,426,0,0.000000,28,0,120,1,0,20,0,20,1,0,1,0,1,0,0.000000,1.000000,36842,1,6,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81667,'LVD_BNPC_01','f1d2','bnpc3633633',3633633,17.230471,-18.814421,-4.000000,-1.570451,274,0,0,0,0,6,0,0,427,0,0.000000,28,0,120,1,0,20,0,20,1,0,1,0,1,0,0.000000,1.000000,36576,1,6,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81667,'LVD_BNPC_01','f1d2','bnpc3633689',3633689,30.945589,17.000000,-0.020543,1.570451,275,0,0,0,1,6,0,0,428,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36310,1,6,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81667,'LVD_BNPC_01','f1d2','bnpc3633770',3633770,10.496440,0.000000,0.000000,-1.570451,272,0,0,0,0,6,0,0,423,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36044,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83469,'LVD_BNPC_02','f1d2','bnpc3910736',3910736,8.005100,-0.000000,50.934299,-0.000000,1362,0,0,0,1,6,0,0,430,0,0.000000,28,0,120,1,0,21,0,20,2,0,1,0,1,0,0.000000,1.000000,35678,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83469,'LVD_BNPC_02','f1d2','bnpc3915161',3915161,10.111340,0.000000,56.711811,-0.000000,1362,0,0,0,1,6,0,0,430,0,0.000000,28,0,120,1,0,21,0,20,2,0,1,0,1,0,0.000000,1.000000,35406,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83469,'LVD_BNPC_02','f1d2','bnpc3830293',3830293,42.810539,0.000000,71.067757,-0.000527,1362,0,0,0,1,6,0,0,430,0,0.000000,28,0,120,1,0,2,0,20,2,0,1,0,1,0,0.000000,1.000000,35134,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83469,'LVD_BNPC_02','f1d2','bnpc3830727',3830727,67.002312,-0.198414,34.683708,-0.000623,1362,0,0,0,1,6,0,0,430,0,0.000000,28,0,120,1,0,1,0,20,1,0,1,0,1,0,0.000000,1.000000,34862,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83469,'LVD_BNPC_02','f1d2','bnpc3915162',3915162,8.402333,0.000000,54.453480,-0.000000,1364,0,0,0,1,6,0,0,432,0,0.000000,28,0,120,1,0,21,0,20,2,0,1,0,1,0,0.000000,1.000000,34596,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83469,'LVD_BNPC_02','f1d2','bnpc3830312',3830312,64.133621,-0.198414,34.897339,0.594523,1364,0,0,0,1,6,0,0,432,0,0.000000,28,0,120,1,0,1,0,20,1,0,1,0,1,0,0.000000,1.000000,34324,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83469,'LVD_BNPC_02','f1d2','bnpc3829881',3829881,41.101528,-0.000000,68.809433,0.594523,1364,0,0,0,1,6,0,0,432,0,0.000000,28,0,120,1,0,2,0,20,2,0,1,0,1,0,0.000000,1.000000,34052,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83469,'LVD_BNPC_02','f1d2','bnpc3829880',3829880,44.061779,0.000000,67.954918,0.594714,1364,0,0,0,1,6,0,0,432,0,0.000000,28,0,120,1,0,2,0,20,2,0,1,0,1,0,0.000000,1.000000,33780,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83597,'LVD_BNPC_03','f1d2','bnpc3910740',3910740,-40.604301,-0.228932,34.988892,-0.000144,1365,0,0,0,1,6,0,0,433,0,0.000000,28,0,120,1,0,4,0,20,3,0,1,0,1,0,0.000000,1.000000,33410,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83597,'LVD_BNPC_03','f1d2','bnpc3910743',3910743,-41.977619,-0.259450,-28.152941,-0.000048,1365,0,0,0,1,6,0,0,433,0,0.000000,28,0,120,1,0,5,0,20,2,0,1,0,1,0,0.000000,1.000000,33138,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83597,'LVD_BNPC_03','f1d2','bnpc3910742',3910742,-40.238091,-0.228932,-26.504971,-0.000048,1365,0,0,0,1,6,0,0,433,0,0.000000,28,0,120,1,0,5,0,20,2,0,1,0,1,0,0.000000,1.000000,32866,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83597,'LVD_BNPC_03','f1d2','bnpc3910741',3910741,-41.214661,-0.198414,-23.483681,-0.000048,1365,0,0,0,1,6,0,0,433,0,0.000000,28,0,120,1,0,5,0,20,2,0,1,0,1,0,0.000000,1.000000,32594,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83597,'LVD_BNPC_03','f1d2','bnpc3910739',3910739,-42.191238,-0.198414,36.697899,-0.001103,1365,0,0,0,1,6,0,0,433,0,0.000000,28,0,120,1,0,4,0,20,3,0,1,0,1,0,0.000000,1.000000,32322,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83597,'LVD_BNPC_03','f1d2','bnpc3829865',3829865,-14.603660,0.000000,100.777496,-0.000000,1365,0,0,0,1,6,0,0,433,0,0.000000,28,0,120,1,0,3,0,20,1,0,1,0,1,0,0.000000,1.000000,32050,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83597,'LVD_BNPC_03','f1d2','bnpc3830301',3830301,-12.955690,0.000000,100.289200,0.000000,1362,0,0,0,1,6,0,0,430,0,0.000000,28,0,120,1,0,3,0,20,1,0,1,0,1,0,0.000000,1.000000,31766,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83597,'LVD_BNPC_03','f1d2','bnpc3910738',3910738,-41.702950,-0.106860,34.958370,-1.537215,1362,0,0,0,1,6,0,0,430,0,0.000000,28,0,120,1,0,4,0,20,3,0,1,0,1,0,0.000000,1.000000,31494,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83597,'LVD_BNPC_03','f1d2','bnpc3830302',3830302,-40.353050,0.000000,38.128288,-0.000000,1362,0,0,0,1,6,0,0,430,0,0.000000,28,0,120,1,0,4,0,20,3,0,1,0,1,0,0.000000,1.000000,31222,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847757',3847757,3.585823,-19.211149,48.294750,-0.000048,1366,0,0,0,1,6,0,0,434,0,0.000000,28,0,120,1,0,12,0,20,2,0,1,0,1,0,0.000000,1.000000,30816,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847744',3847744,43.930679,-18.905970,11.795180,-0.002349,1366,0,0,0,1,6,0,0,434,0,0.000000,28,0,120,1,0,11,0,20,3,0,1,0,1,0,0.000000,1.000000,30544,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847743',3847743,45.303989,-18.905970,9.323215,-0.002157,1366,0,0,0,1,6,0,0,434,0,0.000000,28,0,120,1,0,11,0,20,3,0,1,0,1,0,0.000000,1.000000,30272,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847765',3847765,-40.512749,-18.905970,43.442390,-0.001390,1366,0,0,0,1,6,0,0,434,0,0.000000,28,0,120,1,0,8,0,20,2,0,1,0,1,0,0.000000,1.000000,30000,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847762',3847762,45.792271,-18.814421,13.168490,-0.000048,1366,0,0,0,1,6,0,0,434,0,0.000000,28,0,120,1,0,11,0,20,3,0,1,0,1,0,0.000000,1.000000,29728,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847758',3847758,1.205416,-19.180639,47.043510,-0.000048,1366,0,0,0,1,6,0,0,434,0,0.000000,28,0,120,1,0,12,0,20,2,0,1,0,1,0,0.000000,1.000000,29456,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847712',3847712,-58.915131,-16.830750,2.609246,-0.000048,1366,0,0,0,1,6,0,0,434,0,0.000000,28,0,120,1,0,7,0,20,2,0,1,0,1,0,0.000000,1.000000,29184,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847709',3847709,-60.837761,-16.830750,5.661050,-0.000048,1366,0,0,0,1,6,0,0,434,0,0.000000,28,0,120,1,0,7,0,20,2,0,1,0,1,0,0.000000,1.000000,28912,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847759',3847759,6.027267,-18.875460,46.616261,-0.000048,1366,0,0,0,1,6,0,0,434,0,0.000000,28,0,120,1,0,12,0,20,2,0,1,0,1,0,0.000000,1.000000,28640,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847732',3847732,-7.126010,-18.875460,-29.007450,-0.001486,1366,0,0,0,1,6,0,0,434,0,0.000000,28,0,120,1,0,9,0,20,2,0,1,0,1,0,0.000000,1.000000,28368,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847733',3847733,-5.691662,-18.844940,-27.817240,-0.001486,1366,0,0,0,1,6,0,0,434,0,0.000000,28,0,120,1,0,9,0,20,2,0,1,0,1,0,0.000000,1.000000,28096,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847719',3847719,-81.742622,-11.001800,-6.027360,-0.000048,1366,0,0,0,1,6,0,0,434,0,0.000000,28,0,120,1,0,6,0,20,2,0,1,0,1,0,0.000000,1.000000,27824,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847742',3847742,36.850491,-18.814421,-49.332458,-0.000048,1362,0,0,0,1,6,0,0,430,0,0.000000,28,0,120,1,0,10,0,20,2,0,1,0,1,0,0.000000,1.000000,27534,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847746',3847746,45.120880,-18.905970,14.572320,-0.002733,1362,0,0,0,1,6,0,0,430,0,0.000000,28,0,120,1,0,11,0,20,3,0,1,0,1,0,0.000000,1.000000,27262,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847698',3847698,-83.273140,-11.000400,-4.425170,-0.000000,1362,0,0,0,1,6,0,0,430,0,0.000000,28,0,120,1,0,6,0,20,2,0,1,0,1,0,0.000000,1.000000,26990,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847703',3847703,-82.749718,-11.001800,-7.522745,-0.000048,1367,0,0,0,1,6,0,0,435,0,0.000000,28,0,120,1,0,6,0,20,2,0,1,0,1,0,0.000000,1.000000,26742,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847803',3847803,-1.174992,-18.844940,-27.817240,-0.000815,1367,0,0,0,1,6,0,0,435,0,0.000000,28,0,120,1,0,9,0,20,2,0,1,0,1,0,0.000000,1.000000,26470,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847806',3847806,33.524021,-19.119600,-47.165680,-0.001007,1367,0,0,0,1,6,0,0,435,0,0.000000,28,0,120,1,0,10,0,20,2,0,1,0,1,0,0.000000,1.000000,26198,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847808',3847808,31.387760,-19.180639,-49.698681,-0.001199,1367,0,0,0,1,6,0,0,435,0,0.000000,28,0,120,1,0,10,0,20,2,0,1,0,1,0,0.000000,1.000000,25926,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847818',3847818,-36.392811,-18.875460,47.562321,-0.001486,1367,0,0,0,1,6,0,0,435,0,0.000000,28,0,120,1,0,8,0,20,2,0,1,0,1,0,0.000000,1.000000,25654,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83598,'LVD_BNPC_04','f1d2','bnpc3847705',3847705,-61.661751,-16.769711,3.067016,-0.000048,1367,0,0,0,1,6,0,0,435,0,0.000000,28,0,120,1,0,7,0,20,2,0,1,0,1,0,0.000000,1.000000,25382,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83600,'LVD_BNPC_05','f1d2','bnpc3910746',3910746,24.826380,16.678061,96.482742,-0.000048,1368,0,0,0,1,6,0,0,625,0,0.000000,28,0,120,1,0,14,0,20,3,0,1,0,1,0,0.000000,1.000000,25020,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83600,'LVD_BNPC_05','f1d2','bnpc3910745',3910745,10.269270,16.678061,101.152000,-0.000048,1368,0,0,0,1,6,0,0,625,0,0.000000,28,0,120,1,0,14,0,20,3,0,1,0,1,0,0.000000,1.000000,24748,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83600,'LVD_BNPC_05','f1d2','bnpc3847990',3847990,40.512650,16.678061,53.787998,-0.000048,1368,0,0,0,1,6,0,0,625,0,0.000000,28,0,120,1,0,13,0,20,2,0,1,0,1,0,0.000000,1.000000,24476,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83600,'LVD_BNPC_05','f1d2','bnpc3910744',3910744,8.010939,16.678061,99.412483,-0.000048,1368,0,0,0,1,6,0,0,625,0,0.000000,28,0,120,1,0,14,0,20,3,0,1,0,1,0,0.000000,1.000000,24204,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83600,'LVD_BNPC_05','f1d2','bnpc3910747',3910747,21.591471,16.464439,101.823402,-1.336645,1363,0,0,0,1,6,0,0,431,0,0.000000,28,0,120,1,0,14,0,20,3,0,1,0,1,0,0.000000,1.000000,23938,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83600,'LVD_BNPC_05','f1d2','bnpc3847947',3847947,39.017269,16.464439,57.694309,-0.000048,1363,0,0,0,1,6,0,0,431,0,0.000000,28,0,120,1,0,13,0,20,2,0,1,0,1,0,0.000000,1.000000,23666,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83600,'LVD_BNPC_05','f1d2','bnpc3847946',3847946,43.320309,16.555990,56.141708,-0.000000,1363,0,0,0,1,6,0,0,431,0,0.000000,28,0,120,1,0,13,0,20,2,0,1,0,1,0,0.000000,1.000000,23394,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3632938',3632938,-17.549959,16.999559,-0.015306,1.570451,255,0,0,0,0,6,0,0,422,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22936,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3632939',3632939,-11.642680,16.952730,16.952730,0.871219,256,0,0,0,0,6,0,0,424,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22670,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3632940',3632940,-11.764750,16.952730,5.386387,1.570451,256,0,0,0,0,6,0,0,424,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22398,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3632944',3632944,-10.757660,16.952730,-5.722180,0.835697,256,0,0,0,1,6,0,0,424,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22126,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3632945',3632945,15.735680,16.999950,0.982255,-1.255700,258,0,0,0,0,6,0,0,428,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21860,1,1,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3632946',3632946,-8.500743,16.999990,13.100490,1.570451,257,0,0,0,1,6,0,0,425,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21594,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3632947',3632947,-4.820143,16.999701,13.056220,1.570451,257,0,0,0,1,6,0,0,425,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21322,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3632949',3632949,-0.607302,16.999680,13.118200,1.570451,257,0,0,0,1,6,0,0,425,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21050,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3632941',3632941,-3.933290,16.999910,-13.396540,1.570451,268,0,0,0,1,6,0,0,430,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20784,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3632942',3632942,-2.395713,16.983240,-13.034760,1.570451,268,0,0,0,1,6,0,0,430,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20512,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3632943',3632943,-2.670376,16.983240,-11.900090,1.570451,268,0,0,0,1,6,0,0,430,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20240,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3765532',3765532,3.343092,16.999680,13.074220,1.570451,257,0,0,0,1,6,0,0,425,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19962,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3765535',3765535,3.643092,16.999680,8.569304,1.570451,257,0,0,0,1,6,0,0,425,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19690,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3765536',3765536,-8.200743,16.999990,8.595573,1.570451,257,0,0,0,1,6,0,0,425,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19418,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3765537',3765537,-4.520143,16.999701,8.551302,1.570451,257,0,0,0,1,6,0,0,425,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19146,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3765538',3765538,-0.307302,16.999680,8.613277,1.570451,257,0,0,0,1,6,0,0,425,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18874,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3765547',3765547,-0.307302,16.999680,4.026476,1.570451,257,0,0,0,1,6,0,0,425,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18602,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3765548',3765548,-0.007302,16.999680,-0.478443,1.570451,257,0,0,0,1,6,0,0,425,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18330,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3765549',3765549,-4.520143,16.999701,3.964502,1.570451,257,0,0,0,1,6,0,0,425,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18058,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3765550',3765550,3.643092,16.999680,3.982503,1.570451,257,0,0,0,1,6,0,0,425,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17786,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3765551',3765551,3.943092,16.999680,-0.522416,1.570451,257,0,0,0,1,6,0,0,425,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17514,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3765552',3765552,-8.200743,16.999990,4.008773,1.570451,257,0,0,0,1,6,0,0,425,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17242,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3765553',3765553,-7.900743,16.999990,-0.496146,1.570451,257,0,0,0,1,6,0,0,425,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16970,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3765554',3765554,-4.220142,16.999701,-0.540418,1.570451,257,0,0,0,1,6,0,0,425,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16698,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3759943',3759943,-24.491131,17.000000,21.988319,0.785398,434,0,0,0,3,6,0,0,148,0,0.000000,28,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16438,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3759975',3759975,-24.499519,17.000000,-13.997830,0.785398,434,0,0,0,3,6,0,0,148,0,0.000000,28,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16166,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3759978',3759978,19.492319,17.000000,-14.006760,-0.785398,434,0,0,0,3,6,0,0,148,0,0.000000,28,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15894,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3760036',3760036,19.498489,16.999981,22.002020,-0.785398,434,0,0,0,3,6,0,0,148,0,0.000000,28,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15622,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3883210',3883210,8.651818,16.922211,-5.447517,-0.685173,256,0,0,0,1,6,0,0,424,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15326,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3883211',3883211,7.644722,16.922211,5.630532,-1.494456,256,0,0,0,0,6,0,0,424,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15054,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81654,'LVD_BNPC_BossBattle','f1d2','bnpc3883212',3883212,7.766795,16.922211,17.227390,-0.911678,256,0,0,0,0,6,0,0,424,0,0.000000,28,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14782,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc3995243',3995243,-94.895866,-2.822998,-0.045776,-1.340480,1503,0,0,0,5,6,0,0,29,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,51020,1,3,2000,0,0,0,4303717,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc3995255',3995255,-196.368301,-4.013123,0.198364,-0.197167,1493,0,0,0,0,6,0,0,1681,0,1.200000,50,0,120,1,0,14,0,32,3,0,1,0,1,0,0.000000,1.000000,50754,1,3,2000,0,0,30265,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc3995253',3995253,-196.612503,-4.135254,1.968323,-0.040363,1496,0,0,0,0,6,0,0,1681,0,1.200000,50,0,120,1,0,14,0,32,3,0,1,0,1,0,0.000000,1.000000,50488,1,3,2000,0,0,30265,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4248635',4248635,-125.011497,-2.000000,45.935741,0.978694,1493,0,0,0,0,6,0,0,1681,0,0.000000,50,0,120,1,0,15,0,32,3,0,1,0,0,0,0.000000,1.000000,50210,1,3,2000,0,0,30265,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4248636',4248636,-123.119301,-2.000000,45.294868,-1.375522,1496,0,0,0,0,6,0,0,1681,0,0.000000,50,0,120,1,0,15,0,32,3,0,1,0,0,0,0.000000,1.000000,49944,1,3,2000,0,0,30265,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4248637',4248637,-124.553703,-2.000000,43.921581,0.414133,1494,0,0,0,0,6,0,0,1681,0,0.000000,50,0,120,1,0,15,0,32,3,0,1,0,0,0,0.000000,1.000000,49678,1,3,2000,0,0,30265,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4248642',4248642,-101.226501,-2.000000,-30.710079,-1.069344,1493,0,0,0,0,6,0,0,1681,0,0.000000,50,0,120,1,0,17,0,32,3,0,1,0,1,0,0.000000,1.000000,49394,1,3,2000,0,0,30265,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4248643',4248643,-101.548798,-2.029480,-28.915890,-0.466050,1495,0,0,0,0,6,0,0,1681,0,0.000000,50,0,120,1,0,17,0,32,3,0,1,0,1,0,0.000000,1.000000,49140,1,3,2000,0,0,30265,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4248644',4248644,-102.844002,-2.000000,-29.947201,1.423508,1496,0,0,0,0,6,0,0,1681,0,0.000000,50,0,120,1,0,17,0,32,3,0,1,0,1,0,0.000000,1.000000,48856,1,3,2000,0,0,30265,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4248646',4248646,-83.268547,-0.015320,-1.236023,0.785362,1494,0,0,0,0,6,0,0,1681,0,0.000000,50,0,120,1,0,16,0,32,3,0,1,0,1,0,0.000000,1.000000,48590,1,3,2000,0,0,30111,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4248647',4248647,-84.061951,-0.015320,0.198364,1.326722,1493,0,0,0,0,6,0,0,1681,0,0.000000,50,0,120,1,0,16,0,32,3,0,1,0,1,0,0.000000,1.000000,48306,1,3,2000,0,0,30111,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4248648',4248648,-83.421143,-0.015320,1.327454,0.785410,1496,0,0,0,0,6,0,0,1681,0,0.000000,50,0,120,1,0,16,0,32,3,0,1,0,1,0,0.000000,1.000000,48040,1,3,2000,0,0,30111,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4248687',4248687,-87.976212,-1.587277,0.189259,-0.000048,1500,0,0,0,1,6,0,0,1685,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47786,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4303738',4303738,-143.198700,-2.800003,-0.263433,0.104501,1503,0,0,0,2,6,0,0,29,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47180,1,3,2000,0,0,0,4303720,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4248623',4248623,-98.191833,-0.015320,84.519653,-1.200071,1740,0,0,0,1,6,0,0,1688,0,0.000000,50,0,120,1,0,12,0,32,3,0,1,0,1,0,0.000000,1.000000,46944,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4248624',4248624,-96.940666,-0.015320,88.639526,-1.200071,1740,0,0,0,1,6,0,0,1688,0,0.000000,50,0,120,1,0,12,0,32,3,0,1,0,1,0,0.000000,1.000000,46672,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4304019',4304019,-179.217300,-4.013123,77.103760,-0.852427,1740,0,0,0,1,6,0,0,1688,0,0.000000,50,0,120,1,0,18,0,32,3,0,1,0,1,0,0.000000,1.000000,46400,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4304020',4304020,-170.427994,-3.830017,75.059082,-1.200071,1740,0,0,0,1,6,0,0,1688,0,0.000000,50,0,120,1,0,18,0,32,3,0,1,0,1,0,0.000000,1.000000,46128,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4323284',4323284,-18.964451,-0.000000,86.288437,-1.387200,1503,0,0,0,5,6,0,0,29,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45580,1,3,2000,0,0,0,4323283,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4328413',4328413,-169.970306,-4.013123,86.503304,-0.852427,1740,0,0,0,1,6,0,0,1688,0,0.000000,50,0,120,1,0,18,0,32,3,0,1,0,1,0,0.000000,1.000000,45344,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4388373',4388373,-36.804951,-0.000000,75.904633,-0.905314,1503,0,0,0,5,6,0,0,29,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44876,1,3,2000,0,0,0,4388282,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4388375',4388375,-71.842796,-2.000000,-50.315510,-1.028499,1503,0,0,0,5,6,0,0,29,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44412,1,3,2000,0,0,0,4388374,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4388376',4388376,-149.523193,-2.029480,-26.993231,-1.200071,1740,0,0,0,1,6,0,0,1688,0,0.000000,50,0,120,1,0,9,0,32,3,0,1,0,1,0,0.000000,1.000000,44176,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4388378',4388378,-154.680695,-2.029480,-21.377930,-0.852427,1740,0,0,0,1,6,0,0,1688,0,0.000000,50,0,120,1,0,9,0,32,3,0,1,0,1,0,0.000000,1.000000,43904,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4388379',4388379,-134.277206,-2.029480,-52.438610,1.260253,1740,0,0,0,1,6,0,0,1688,0,0.000000,50,0,120,1,0,8,0,32,3,0,1,0,1,0,0.000000,1.000000,43632,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4388380',4388380,-125.151299,-2.000000,-51.991371,-0.852427,1740,0,0,0,1,6,0,0,1688,0,0.000000,50,0,120,1,0,8,0,32,3,0,1,0,1,0,0.000000,1.000000,43360,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4388381',4388381,-104.570099,-2.029480,22.384890,-0.852427,1740,0,0,0,1,6,0,0,1688,0,0.000000,50,0,120,1,0,7,0,32,3,0,1,0,1,0,0.000000,1.000000,43088,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4388399',4388399,-17.302200,0.000000,93.760948,-1.200071,1740,0,0,0,1,6,0,0,1688,0,0.000000,50,0,120,1,0,6,0,32,3,0,1,0,1,0,0.000000,1.000000,42816,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4388400',4388400,-13.329700,0.199951,98.791550,-1.200071,1740,0,0,0,1,6,0,0,1688,0,0.000000,50,0,120,1,0,6,0,32,3,0,1,0,1,0,0.000000,1.000000,42544,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85261,'LVD_BNPC_01','f1d3','bnpc4388401',4388401,-32.929298,0.000000,99.568550,-1.200071,1740,0,0,0,1,6,0,0,1688,0,0.000000,50,0,120,1,0,6,0,32,3,0,1,0,1,0,0.000000,1.000000,42272,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85262,'LVD_BNPC_02','f1d3','bnpc3995303',3995303,200.488297,21.988159,-0.015320,0.000000,1503,0,0,0,5,6,0,0,29,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41828,1,3,2000,0,0,0,4306042,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85262,'LVD_BNPC_02','f1d3','bnpc3995263',3995263,-23.270020,21.957701,-27.206909,1.427870,1497,0,0,0,1,6,0,0,1682,0,0.000000,50,0,120,1,0,21,0,30,2,0,1,0,0,0,0.000000,1.000000,41598,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85262,'LVD_BNPC_02','f1d3','bnpc3995265',3995265,-19.363770,21.957701,-23.453131,-0.000048,1498,0,0,0,1,6,0,0,1683,0,0.000000,50,0,120,1,0,21,0,30,2,0,1,0,0,0,0.000000,1.000000,41332,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85262,'LVD_BNPC_02','f1d3','bnpc4248702',4248702,-17.502140,21.988159,-27.420469,-0.000048,1498,0,0,0,1,6,0,0,1683,0,0.000000,50,0,120,1,0,21,0,30,2,0,1,0,0,0,0.000000,1.000000,41060,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85262,'LVD_BNPC_02','f1d3','bnpc4248706',4248706,163.805496,20.798031,48.874630,-0.000048,1498,0,0,0,1,6,0,0,1683,0,0.000000,50,0,120,1,0,22,0,30,2,0,1,0,0,0,0.000000,1.000000,40788,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85262,'LVD_BNPC_02','f1d3','bnpc4248707',4248707,159.899307,20.889589,45.120972,1.427870,1497,0,0,0,1,6,0,0,1682,0,0.000000,50,0,120,1,0,22,0,30,2,0,1,0,0,0,0.000000,1.000000,40510,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85262,'LVD_BNPC_02','f1d3','bnpc4248708',4248708,165.667099,20.798031,44.907230,-0.000048,1498,0,0,0,1,6,0,0,1683,0,0.000000,50,0,120,1,0,22,0,30,2,0,1,0,0,0,0.000000,1.000000,40244,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85262,'LVD_BNPC_02','f1d3','bnpc4248715',4248715,250.109406,21.999990,-4.843838,1.427870,1497,0,0,0,1,6,0,0,1682,0,0.000000,50,0,120,1,0,24,0,30,2,0,1,0,0,0,0.000000,1.000000,39966,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85262,'LVD_BNPC_02','f1d3','bnpc4248717',4248717,254.015701,21.999990,-1.090054,-0.000048,1498,0,0,0,1,6,0,0,1683,0,0.000000,50,0,120,1,0,24,0,30,2,0,1,0,0,0,0.000000,1.000000,39700,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85262,'LVD_BNPC_02','f1d3','bnpc4248728',4248728,199.945999,22.128679,84.789299,-0.126756,1503,0,0,0,5,6,0,0,29,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39380,1,3,2000,0,0,0,4306036,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85262,'LVD_BNPC_02','f1d3','bnpc3995267',3995267,179.807693,21.999990,-0.267257,0.000000,1499,0,0,0,0,6,0,0,1684,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39162,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85262,'LVD_BNPC_02','f1d3','bnpc4388480',4388480,211.782303,21.999889,-87.304337,-1.570451,1503,0,0,0,5,6,0,0,29,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,38468,1,3,2000,0,0,0,4388479,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85262,'LVD_BNPC_02','f1d3','bnpc4388481',4388481,190.498703,22.099991,-76.614517,1.115127,1497,0,0,0,1,6,0,0,1682,0,0.000000,50,0,120,1,0,29,0,30,2,0,1,0,0,0,0.000000,1.000000,38238,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85262,'LVD_BNPC_02','f1d3','bnpc4388482',4388482,187.074600,21.999990,-71.081169,-0.000048,1498,0,0,0,1,6,0,0,1683,0,0.000000,50,0,120,1,0,29,0,30,2,0,1,0,0,0,0.000000,1.000000,37972,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc3995389',3995389,225.589493,44.199989,-18.240000,0.858132,1503,0,0,0,5,6,0,0,29,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,37496,1,3,2000,0,0,0,4306044,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc3995390',3995390,147.600494,43.991699,1.358032,0.606555,1503,0,0,0,5,6,0,0,29,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,37224,1,3,2000,0,0,0,4306063,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc4248757',4248757,213.488998,44.083248,-33.188351,-1.161529,1502,0,0,0,1,6,0,0,1687,0,0.000000,50,0,120,1,0,32,0,30,2,0,1,0,0,0,0.000000,1.000000,37012,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc4248767',4248767,231.982895,43.991699,14.938600,-1.161529,1502,0,0,0,1,6,0,0,1687,0,0.000000,50,0,120,1,0,34,0,30,2,0,1,0,0,0,0.000000,1.000000,36740,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc4248793',4248793,137.729706,44.000000,-2.604836,-1.161529,1502,0,0,0,1,6,0,0,1687,0,0.000000,50,0,120,1,0,36,0,30,2,0,1,0,0,0,0.000000,1.000000,36468,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc4248765',4248765,294.727905,43.991699,1.266479,-0.554111,1500,0,0,0,1,6,0,0,1685,0,0.000000,50,0,120,1,0,33,0,30,2,0,1,0,0,0,0.000000,1.000000,36166,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc4248776',4248776,180.397095,43.999989,19.029421,-0.554111,1500,0,0,0,1,6,0,0,1685,0,0.000000,50,0,120,1,0,35,0,30,2,0,1,0,0,0,0.000000,1.000000,35894,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc4248769',4248769,238.452805,43.991699,15.548890,-0.554111,1500,0,0,0,1,6,0,0,1685,0,0.000000,50,0,120,1,0,34,0,30,3,0,1,0,0,0,0.000000,1.000000,35622,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc4248759',4248759,213.397293,43.991699,-42.313290,-0.554111,1500,0,0,0,1,6,0,0,1685,0,0.000000,50,0,120,1,0,32,0,30,2,0,1,0,0,0,0.000000,1.000000,35350,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc4248792',4248792,145.562500,44.000000,2.760544,-0.554111,1500,0,0,0,1,6,0,0,1685,0,0.000000,50,0,120,1,0,36,0,30,3,0,1,0,0,0,0.000000,1.000000,35078,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc4248758',4248758,215.777802,43.991699,-37.796692,-0.554111,1500,0,0,0,1,6,0,0,1685,0,0.000000,50,0,120,1,0,32,0,30,2,0,1,0,0,0,0.000000,1.000000,34806,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc4248774',4248774,178.087997,43.991699,23.636169,-1.161529,1501,0,0,0,1,6,0,0,1686,0,0.000000,50,0,120,1,0,35,0,30,2,0,1,0,0,0,0.000000,1.000000,34570,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc4248763',4248763,292.453094,44.000031,5.885651,-1.161624,1501,0,0,0,1,6,0,0,1686,0,0.000000,50,0,120,1,0,33,0,30,2,0,1,0,0,0,0.000000,1.000000,34298,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc4323288',4323288,240.913193,44.000000,12.414400,-0.000048,1498,0,0,0,1,6,0,0,1683,0,0.000000,50,0,120,1,0,34,0,30,3,0,1,0,0,0,0.000000,1.000000,33576,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc4323291',4323291,143.059097,44.000000,-3.338936,-0.000048,1498,0,0,0,1,6,0,0,1683,0,0.000000,50,0,120,1,0,36,0,30,3,0,1,0,0,0,0.000000,1.000000,33304,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc4323292',4323292,138.908600,44.000000,1.208244,-0.000048,1498,0,0,0,1,6,0,0,1683,0,0.000000,50,0,120,1,0,36,0,30,3,0,1,0,0,0,0.000000,1.000000,33032,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc4388485',4388485,106.528603,44.075939,-25.110710,0.228629,1503,0,0,0,5,6,0,0,29,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32440,1,3,2000,0,0,0,4388483,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85267,'LVD_BNPC_03','f1d3','bnpc4388486',4388486,79.034203,48.000000,26.665680,-0.397946,1503,0,0,0,5,6,0,0,29,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32168,1,3,2000,0,0,0,4388484,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92097,'LVD_boss','f1d3','bnpc3995394',3995394,-0.045776,47.989620,0.000000,1.379405,1484,0,0,0,0,6,0,0,1696,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31852,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92097,'LVD_boss','f1d3','bnpc4248828',4248828,-8.016767,48.000000,-9.433253,1.203858,1485,0,0,0,1,6,0,0,1697,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31586,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92097,'LVD_boss','f1d3','bnpc4265600',4265600,12.323910,48.000011,0.062773,-0.000000,1486,0,0,0,0,6,0,0,1698,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31008,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92095,'LVD_mboss_01','f1d3','bnpc3995259',3995259,-25.711491,0.198364,0.076233,-1.499249,1488,0,0,0,0,6,0,0,1689,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9582,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92095,'LVD_mboss_01','f1d3','bnpc4270132',4270132,-26.277420,0.000000,-22.733410,-0.000000,1490,0,0,0,0,6,0,0,1691,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9316,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92095,'LVD_mboss_01','f1d3','bnpc4270133',4270133,-27.148970,0.054968,23.241230,0.067285,1491,0,0,0,0,6,0,0,1692,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9050,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92095,'LVD_mboss_01','f1d3','bnpc4270134',4270134,8.857988,0.605719,-0.426426,-1.481226,1492,0,0,0,0,6,0,0,1693,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,8784,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92095,'LVD_mboss_01','f1d3','bnpc4270171',4270171,-33.379841,0.100000,0.076233,-1.570451,1489,0,0,0,0,6,0,0,1690,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,6958,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92096,'LVD_mboss_02','f1d3','bnpc3995506',3995506,200.000000,21.988159,-152.025604,-0.000048,643,0,0,0,0,6,0,0,1694,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,6480,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92096,'LVD_mboss_02','f1d3','bnpc4248835',4248835,206.370697,22.000000,-141.053299,-0.000000,1487,0,0,0,1,6,0,0,1695,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,6214,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92096,'LVD_mboss_02','f1d3','bnpc4265065',4265065,194.595001,22.000000,-141.053299,-0.000000,1487,0,0,0,1,6,0,0,1695,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,5942,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92096,'LVD_mboss_02','f1d3','bnpc4265066',4265066,200.000000,22.000000,-152.025604,-0.000048,410,0,0,0,0,6,0,0,1694,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,2552,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92096,'LVD_mboss_02','f1d3','bnpc4306242',4306242,193.000000,22.000000,-152.025604,-0.000048,410,0,0,0,0,6,0,0,1694,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,2280,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92096,'LVD_mboss_02','f1d3','bnpc4306240',4306240,207.000000,22.000000,-152.025604,-0.000048,410,0,0,0,0,6,0,0,1694,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,2008,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4504781',4504781,41.794430,16.983280,-62.302170,-0.144820,2425,0,0,0,0,6,0,0,2349,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,67160,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4504865',4504865,41.733398,16.983280,-62.180099,0.178280,2365,0,0,0,1,6,0,0,2371,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,66894,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4504958',4504958,14.669340,16.983280,-55.752918,0.824023,2364,0,0,0,0,6,0,0,2370,0,0.000000,50,0,120,1,0,10,0,50,3,0,1,0,0,0,0.000000,1.000000,66628,1,3,22,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4504959',4504959,18.309010,16.983299,-55.752899,-0.404937,2364,0,0,0,0,6,0,0,2370,0,0.000000,50,0,120,1,0,10,0,50,3,0,1,0,0,0,0.000000,1.000000,66356,1,3,22,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4504960',4504960,14.671940,16.983299,-98.483101,0.440919,2364,0,0,0,0,6,0,0,2370,0,0.000000,50,0,120,1,0,11,0,50,3,0,1,0,0,0,0.000000,1.000000,66084,1,3,22,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4504961',4504961,18.102350,16.983280,-98.483109,-0.341076,2364,0,0,0,0,6,0,0,2370,0,0.000000,50,0,120,1,0,11,0,50,3,0,1,0,0,0,0.000000,1.000000,65812,1,3,22,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4504962',4504962,-16.586599,17.441000,-94.649567,0.888220,2364,0,0,0,0,6,0,0,2370,0,0.000000,50,0,120,1,0,12,0,50,3,0,1,0,0,0,0.000000,1.000000,65540,1,3,22,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4504963',4504963,-16.586611,17.440981,-99.221939,1.195612,2364,0,0,0,0,6,0,0,2370,0,0.000000,50,0,120,1,0,12,0,50,3,0,1,0,0,0,0.000000,1.000000,65268,1,3,22,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4504965',4504965,15.748090,16.983280,-94.005676,1.331612,2424,0,0,0,1,6,0,0,2348,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,65002,1,3,13,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4504968',4504968,-13.939250,17.288389,-96.036003,1.023289,2425,0,0,0,1,6,0,0,2349,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,64712,1,3,13,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4504976',4504976,16.525450,17.000000,-60.044312,-0.139498,2365,0,0,0,1,6,0,0,2371,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,64446,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4504978',4504978,15.622230,17.000000,-94.308144,0.491370,2365,0,0,0,1,6,0,0,2371,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,64174,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4504981',4504981,-14.464930,16.983280,-96.384171,0.853503,2366,0,0,0,1,6,0,0,2371,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,63920,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4504982',4504982,-30.623350,16.983280,-5.935791,-1.523793,2369,0,0,0,0,6,0,0,2335,0,0.000000,50,0,120,1,0,14,0,50,2,0,1,0,0,0,0.000000,1.000000,63654,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4504964',4504964,16.562241,17.000000,-60.350040,-0.676208,2425,0,0,0,1,6,0,0,2349,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,63352,1,3,13,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4540218',4540218,16.239370,16.983280,-54.157890,0.046070,2368,0,0,0,0,6,0,0,2334,0,0.000000,50,0,120,1,0,10,0,50,3,0,1,0,0,0,0.000000,1.000000,63116,1,3,22,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4540219',4540219,16.257441,17.226891,-100.566498,-0.000048,2368,0,0,0,0,6,0,0,2334,0,0.000000,50,0,120,1,0,11,0,50,3,0,1,0,0,0,0.000000,1.000000,62844,1,3,22,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4540220',4540220,-30.623400,16.983299,6.190567,-1.523793,2369,0,0,0,0,6,0,0,2335,0,0.000000,50,0,120,1,0,14,0,50,2,0,1,0,0,0,0.000000,1.000000,62566,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4544205',4544205,-18.532160,16.983280,-96.696007,1.563628,2368,0,0,0,0,6,0,0,2334,0,0.000000,50,0,120,1,0,12,0,50,3,0,1,0,0,0,0.000000,1.000000,62300,1,3,22,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4504687',4504687,44.235840,16.983280,-64.407951,-0.751518,2665,0,0,0,0,6,0,0,2334,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,62034,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4549581',4549581,-41.537590,17.000000,-51.310120,0.063256,2364,0,0,0,0,6,0,0,2370,0,0.000000,50,0,120,1,0,13,0,50,3,0,1,0,0,0,0.000000,1.000000,61732,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4549582',4549582,-39.569820,17.000000,-48.077690,0.321889,2364,0,0,0,1,6,0,0,2370,0,0.000000,50,0,120,1,0,13,0,50,3,0,1,0,0,0,0.000000,1.000000,61460,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4549583',4549583,-42.928631,17.000000,-44.831348,0.361632,2364,0,0,0,1,6,0,0,2370,0,0.000000,50,0,120,1,0,13,0,50,3,0,1,0,0,0,0.000000,1.000000,61188,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4575643',4575643,-42.136490,17.000000,-3.968035,-0.006459,2374,0,0,0,5,6,0,0,2339,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60952,1,3,2000,0,0,0,4575641,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4588210',4588210,41.672359,16.983280,-61.630730,-0.000048,434,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4589935',4589935,16.529900,17.000000,-60.644520,-0.000000,434,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60414,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4590086',4590086,15.445650,17.000000,-94.877213,-0.000000,434,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60142,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96510,'LVD_BNPC_01','f1d4','bnpc4590087',4590087,-14.260910,17.000000,-96.161469,-0.000000,434,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59870,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96511,'LVD_BNPC_02','f1d4','bnpc4507369',4507369,37.568119,-0.015320,-74.089737,-1.463871,2374,0,0,0,5,6,0,0,2339,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59476,1,3,2000,0,0,0,4507409,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96511,'LVD_BNPC_02','f1d4','bnpc4507370',4507370,-15.640560,-0.015320,-60.404251,0.055224,2365,0,0,0,5,6,0,0,2371,0,0.000000,50,0,120,1,0,21,0,50,3,0,1,0,0,0,0.000000,1.000000,59162,1,3,2000,0,0,0,4581913,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96511,'LVD_BNPC_02','f1d4','bnpc4507371',4507371,-16.798330,-0.015320,-65.901688,0.308623,2365,0,0,0,5,6,0,0,2371,0,0.000000,50,0,120,1,0,21,0,50,3,0,1,0,0,0,0.000000,1.000000,58890,1,3,2000,0,0,0,4581918,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96511,'LVD_BNPC_02','f1d4','bnpc4507372',4507372,-18.326111,-0.015320,-62.811890,-0.018312,2365,0,0,0,5,6,0,0,2371,0,0.000000,50,0,120,1,0,21,0,50,3,0,1,0,0,0,0.000000,1.000000,58618,1,3,2000,0,0,0,4581919,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96511,'LVD_BNPC_02','f1d4','bnpc4507374',4507374,17.624149,-0.015320,-90.642174,-0.509529,2366,0,0,0,5,6,0,0,2371,0,0.000000,50,0,120,1,0,22,0,50,3,0,1,0,0,0,0.000000,1.000000,58364,1,3,2000,0,0,0,4581925,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96511,'LVD_BNPC_02','f1d4','bnpc4507375',4507375,15.396300,-0.015320,-96.227013,0.405792,2366,0,0,0,5,6,0,0,2371,0,0.000000,50,0,120,1,0,22,0,50,3,0,1,0,0,0,0.000000,1.000000,58092,1,3,2000,0,0,0,4581927,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96511,'LVD_BNPC_02','f1d4','bnpc4507385',4507385,62.791550,-0.015320,-31.631960,-1.113783,2370,0,0,0,0,6,0,0,428,0,0.000000,50,0,120,1,0,20,0,30,2,0,1,0,0,0,0.000000,1.000000,57856,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96511,'LVD_BNPC_02','f1d4','bnpc4518211',4518211,54.622669,-0.000000,-37.251282,-0.711200,2364,0,0,0,0,6,0,0,2370,0,0.000000,50,0,120,1,0,20,0,30,2,0,1,0,0,0,0.000000,1.000000,57536,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96511,'LVD_BNPC_02','f1d4','bnpc4518212',4518212,54.753590,-0.000000,-34.597439,-1.110283,2364,0,0,0,0,6,0,0,2370,0,0.000000,50,0,120,1,0,20,0,30,2,0,1,0,0,0,0.000000,1.000000,57264,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96511,'LVD_BNPC_02','f1d4','bnpc4544812',4544812,41.056831,0.000000,-21.452450,0.009386,2374,0,0,0,5,6,0,0,2339,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57028,1,3,2000,0,0,0,4545132,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96511,'LVD_BNPC_02','f1d4','bnpc4575551',4575551,41.336670,-0.015320,-34.491032,-0.183601,2364,0,0,0,0,6,0,0,2370,0,0.000000,50,0,120,1,0,24,0,30,3,0,1,0,0,0,0.000000,1.000000,56720,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96511,'LVD_BNPC_02','f1d4','bnpc4575552',4575552,43.991699,-0.015320,-32.446350,-0.452723,2364,0,0,0,1,6,0,0,2370,0,0.000000,50,0,120,1,0,24,0,30,3,0,1,0,0,0,0.000000,1.000000,56448,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4508134',4508134,-30.922649,-18.814390,1.711815,-0.000048,2370,0,0,0,1,6,0,0,428,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,56072,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4508420',4508420,43.282879,-18.799990,6.958000,-0.000000,2367,0,0,0,0,6,0,0,2333,0,0.000000,50,0,120,1,0,30,0,30,3,0,1,0,0,0,0.000000,1.000000,55806,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4508421',4508421,45.482460,-18.740141,4.043579,-0.000048,2367,0,0,0,1,6,0,0,2333,0,0.000000,50,0,120,1,0,30,0,30,3,0,1,0,0,0,0.000000,1.000000,55534,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4508422',4508422,44.079479,-18.814390,1.388489,-0.000048,2367,0,0,0,1,6,0,0,2333,0,0.000000,50,0,120,1,0,30,0,30,3,0,1,0,0,0,0.000000,1.000000,55262,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4508423',4508423,41.679169,-18.814390,4.379272,-0.000048,2367,0,0,0,1,6,0,0,2333,0,0.000000,50,0,120,1,0,30,0,30,3,0,1,0,0,0,0.000000,1.000000,54990,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4508426',4508426,34.927860,-18.814390,-46.218590,-0.000048,2367,0,0,0,1,6,0,0,2333,0,0.000000,50,0,120,1,0,31,0,30,3,0,1,0,0,0,0.000000,1.000000,54718,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4508428',4508428,0.656067,-18.814390,-51.123932,-0.157188,2367,0,0,0,1,6,0,0,2333,0,0.000000,50,0,120,1,0,32,0,30,3,0,1,0,0,0,0.000000,1.000000,54446,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4508429',4508429,4.389812,-18.814390,-47.359489,0.200187,2367,0,0,0,1,6,0,0,2333,0,0.000000,50,0,120,1,0,32,0,30,3,0,1,0,0,0,0.000000,1.000000,54174,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4508430',4508430,-2.690387,-18.814390,-47.512081,-0.552338,2367,0,0,0,1,6,0,0,2333,0,0.000000,50,0,120,1,0,32,0,30,3,0,1,0,0,0,0.000000,1.000000,53902,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4508431',4508431,2.043087,-18.814390,-45.393742,0.209823,2372,0,0,0,1,6,0,0,2337,0,0.000000,50,0,120,1,0,32,0,30,3,0,1,0,0,0,0.000000,1.000000,53636,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4508432',4508432,-27.344650,-18.800211,-46.123192,-0.422678,2367,0,0,0,1,6,0,0,2333,0,0.000000,50,0,120,1,0,33,0,30,3,0,1,0,0,0,0.000000,1.000000,53358,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4508433',4508433,-22.726431,-18.800079,-47.781200,-0.065782,2367,0,0,0,1,6,0,0,2333,0,0.000000,50,0,120,1,0,33,0,30,3,0,1,0,0,0,0.000000,1.000000,53086,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4508434',4508434,-19.650881,-18.800060,-45.728008,-1.006161,2367,0,0,0,1,6,0,0,2333,0,0.000000,50,0,120,1,0,33,0,30,3,0,1,0,0,0,0.000000,1.000000,52814,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4508435',4508435,-24.566660,-18.800159,-42.228001,-0.058095,2373,0,0,0,1,6,0,0,2338,0,0.000000,50,0,120,1,0,33,0,30,3,0,1,0,0,0,0.000000,1.000000,52554,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4575554',4575554,4.803211,-18.799990,-28.397619,1.181187,2367,0,0,0,0,6,0,0,2333,0,0.000000,50,0,120,1,0,34,0,30,3,0,1,0,0,0,0.000000,1.000000,52270,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4575555',4575555,2.492003,-18.799990,-29.949110,1.181187,2367,0,0,0,1,6,0,0,2333,0,0.000000,50,0,120,1,0,34,0,30,3,0,1,0,0,0,0.000000,1.000000,51998,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4575556',4575556,1.801035,-18.799990,-27.082260,1.181187,2367,0,0,0,1,6,0,0,2333,0,0.000000,50,0,120,1,0,34,0,30,3,0,1,0,0,0,0.000000,1.000000,51726,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4575557',4575557,-32.525150,-18.799990,30.699240,-0.095024,2374,0,0,0,5,6,0,0,2339,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,51436,1,3,2000,0,0,0,4575559,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4508427',4508427,30.447149,-18.799999,-43.692322,-0.000000,2366,0,0,0,1,6,0,0,2371,0,0.000000,50,0,120,1,0,31,0,30,3,0,1,0,0,0,0.000000,1.000000,51140,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4508425',4508425,31.466450,-18.799990,-47.655510,-0.000000,2365,0,0,0,1,6,0,0,2371,0,0.000000,50,0,120,1,0,31,0,30,3,0,1,0,0,0,0.000000,1.000000,50850,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96512,'LVD_BNPC_03','f1d4','bnpc4508424',4508424,25.325211,-18.799990,-46.557159,-0.000000,2365,0,0,0,1,6,0,0,2371,0,0.000000,50,0,120,1,0,31,0,30,3,0,1,0,0,0,0.000000,1.000000,50578,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96690,'LVD_bnpc_mboss_01','f1d4','bnpc4498540',4498540,10.895120,17.000000,0.554853,-1.570796,2412,0,0,0,0,6,0,0,426,0,0.000000,50,0,120,1,0,15,0,50,3,0,1,0,0,0,0.000000,1.000000,49812,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96690,'LVD_bnpc_mboss_01','f1d4','bnpc4498541',4498541,9.995219,17.000000,-3.035847,-1.338658,2413,0,0,0,0,6,0,0,2340,0,0.000000,50,0,120,1,0,15,0,50,3,0,1,0,0,0,0.000000,1.000000,49546,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96690,'LVD_bnpc_mboss_01','f1d4','bnpc4498544',4498544,10.685510,16.983280,4.413328,-1.338515,2413,0,0,0,0,6,0,0,2340,0,0.000000,50,0,120,1,0,15,0,50,3,0,1,0,0,0,0.000000,1.000000,49274,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96690,'LVD_bnpc_mboss_01','f1d4','bnpc4498545',4498545,8.769233,17.000000,2.298658,-1.338658,2413,0,0,0,0,6,0,0,2340,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,49002,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96690,'LVD_bnpc_mboss_01','f1d4','bnpc4498546',4498546,10.696530,16.983280,4.409851,-1.338515,2413,0,0,0,0,6,0,0,2340,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,48730,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96690,'LVD_bnpc_mboss_01','f1d4','bnpc4498548',4498548,-10.848270,16.999990,18.350451,-1.338658,2413,0,0,0,0,6,0,0,2340,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,48458,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96690,'LVD_bnpc_mboss_01','f1d4','bnpc4498549',4498549,-13.598170,16.999990,17.142139,-1.338658,2413,0,0,0,0,6,0,0,2340,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,48186,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96690,'LVD_bnpc_mboss_01','f1d4','bnpc4498551',4498551,5.106156,17.000000,-11.328230,-1.338658,2413,0,0,0,0,6,0,0,2340,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47914,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96690,'LVD_bnpc_mboss_01','f1d4','bnpc4498552',4498552,2.356262,17.000000,-12.536540,-1.338658,2413,0,0,0,0,6,0,0,2340,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47642,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96690,'LVD_bnpc_mboss_01','f1d4','bnpc4498566',4498566,-2.596015,17.000000,-0.076942,-0.000000,2414,0,0,0,0,6,0,0,427,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46616,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96690,'LVD_bnpc_mboss_01','f1d4','bnpc4504889',4504889,8.926453,16.983280,0.595032,-0.000048,2286,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45826,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96797,'LVD_bnpc_mboss_02','f1d4','bnpc4505862',4505862,-12.156540,0.000000,-0.056069,1.570796,2415,0,0,0,0,6,0,0,2341,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44944,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96797,'LVD_bnpc_mboss_02','f1d4','bnpc4505866',4505866,-6.010222,0.000000,-6.815221,1.570796,2416,0,0,0,0,6,0,0,2342,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44678,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96797,'LVD_bnpc_mboss_02','f1d4','bnpc4505869',4505869,-1.494994,0.000000,-13.813630,-0.000000,2423,0,0,0,1,6,0,0,2347,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44412,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96797,'LVD_bnpc_mboss_02','f1d4','bnpc4505870',4505870,20.127529,0.000000,-0.031287,-0.000000,2423,0,0,0,1,6,0,0,2347,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44140,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96797,'LVD_bnpc_mboss_02','f1d4','bnpc4505871',4505871,-1.660240,0.000000,13.393670,-0.000000,2423,0,0,0,1,6,0,0,2347,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43868,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96797,'LVD_bnpc_mboss_02','f1d4','bnpc4505872',4505872,-19.397829,0.000000,0.043887,-0.000000,2423,0,0,0,0,6,0,0,2347,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43596,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96797,'LVD_bnpc_mboss_02','f1d4','bnpc4510688',4510688,-8.050238,0.000000,5.226341,-0.609089,2418,0,0,0,0,6,0,0,2344,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36466,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96797,'LVD_bnpc_mboss_02','f1d4','bnpc4510689',4510689,-6.900673,0.000000,0.060136,-0.000000,2417,0,0,0,0,6,0,0,2343,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36200,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96797,'LVD_bnpc_mboss_02','f1d4','bnpc4505865',4505865,-7.082181,0.000000,2.833405,-0.000000,434,0,0,0,0,6,0,0,2345,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32822,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96870,'LVD_bnpc_mboss_03','f1d4','bnpc4509150',4509150,14.626790,-18.799999,0.122392,-1.506711,2419,0,0,0,0,6,0,0,2346,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32286,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96870,'LVD_bnpc_mboss_03','f1d4','bnpc4509151',4509151,13.076900,-18.814390,-9.445435,-0.738288,2420,0,0,0,0,6,0,0,2917,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32020,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96870,'LVD_bnpc_mboss_03','f1d4','bnpc4509152',4509152,-14.023820,-18.799999,-7.169511,0.874883,2421,0,0,0,0,6,0,0,633,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31754,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96870,'LVD_bnpc_mboss_03','f1d4','bnpc4509154',4509154,14.167150,-18.800070,10.524120,-0.479594,2422,0,0,0,0,6,0,0,428,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31488,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96870,'LVD_bnpc_mboss_03','f1d4','bnpc4509519',4509519,-14.053590,-18.814390,7.309021,1.389616,2421,0,0,0,0,6,0,0,633,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31074,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96870,'LVD_bnpc_mboss_03','f1d4','bnpc4515661',4515661,-0.096704,-18.779980,-0.052709,-0.000000,434,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30566,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96833,'LVD_gimmick_02','f1d4','bnpc4507226',4507226,-29.661501,-0.000000,-70.463249,3.141593,434,0,0,0,0,6,0,0,148,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18134,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96833,'LVD_gimmick_02','f1d4','bnpc4507227',4507227,-17.135530,0.000000,-84.066299,0.000000,434,0,0,0,0,6,0,0,148,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17862,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96833,'LVD_gimmick_02','f1d4','bnpc4589928',4589928,-5.863300,0.000000,-70.600304,3.141593,434,0,0,0,0,6,0,0,148,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17590,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96833,'LVD_gimmick_02','f1d4','bnpc4589929',4589929,6.999800,0.000000,-83.469261,0.000000,434,0,0,0,0,6,0,0,148,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17318,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96833,'LVD_gimmick_02','f1d4','bnpc4589930',4589930,17.007090,0.000000,-69.980400,3.141593,434,0,0,0,0,6,0,0,148,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96833,'LVD_gimmick_02','f1d4','bnpc4589931',4589931,27.076200,0.000000,-83.519547,0.000000,434,0,0,0,0,6,0,0,148,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16774,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96833,'LVD_gimmick_02','f1d4','bnpc4589932',4589932,34.974430,-0.000000,-61.914909,1.570796,434,0,0,0,0,6,0,0,148,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16502,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96833,'LVD_gimmick_02','f1d4','bnpc4589933',4589933,47.938210,0.000000,-53.808640,-1.570796,434,0,0,0,0,6,0,0,148,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96833,'LVD_gimmick_02','f1d4','bnpc4589934',4589934,24.862400,0.000000,-55.528648,-1.481764,434,0,0,0,0,6,0,0,148,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98525,'LVD_bnpc_01','f1d5','bnpc4631710',4631710,247.986206,82.347504,-84.235458,-0.000000,2709,0,0,0,1,6,0,0,2576,0,0.000000,50,0,120,1,0,11,0,99,8,0,1,0,1,0,0.000000,1.000000,59984,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98525,'LVD_bnpc_01','f1d5','bnpc4631711',4631711,247.690903,82.287498,-87.458977,-0.000000,2709,0,0,0,1,6,0,0,2576,0,0.000000,50,0,120,1,0,11,0,99,8,0,1,0,1,0,0.000000,1.000000,59712,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98525,'LVD_bnpc_01','f1d5','bnpc4631755',4631755,205.534897,82.261353,-71.411186,0.417172,2708,0,0,0,1,6,0,0,2575,0,0.000000,50,0,120,1,0,12,0,99,8,0,1,0,1,0,0.000000,1.000000,59446,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98525,'LVD_bnpc_01','f1d5','bnpc4631760',4631760,212.931793,82.261353,-70.913261,-0.021860,2708,0,0,0,1,6,0,0,2575,0,0.000000,50,0,120,1,0,12,0,99,8,0,1,0,1,0,0.000000,1.000000,59174,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98525,'LVD_bnpc_01','f1d5','bnpc4631763',4631763,215.564102,73.990967,-34.226009,-0.324825,2708,0,0,0,1,6,0,0,2575,0,0.000000,50,0,120,1,0,13,0,99,8,0,1,0,1,0,0.000000,1.000000,58902,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98525,'LVD_bnpc_01','f1d5','bnpc4631813',4631813,196.086395,72.971611,-43.525822,-0.324827,2705,0,0,0,5,6,0,0,2572,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,58508,1,3,2000,0,0,0,4631799,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98525,'LVD_bnpc_01','f1d5','bnpc4631823',4631823,208.539703,74.000000,-21.384439,-0.324827,2705,0,0,0,5,6,0,0,2572,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,58092,1,3,2000,0,0,0,4631819,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98525,'LVD_bnpc_01','f1d5','bnpc4631830',4631830,155.299896,58.187500,14.151450,-0.324827,2705,0,0,0,5,6,0,0,2572,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57660,1,3,2000,0,0,0,4631828,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98525,'LVD_bnpc_01','f1d5','bnpc4631759',4631759,211.540100,82.261353,-74.908653,0.411732,2712,0,0,0,0,6,0,0,2579,0,0.000000,50,0,120,1,0,12,0,99,8,0,1,0,1,0,0.000000,1.000000,57394,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98525,'LVD_bnpc_01','f1d5','bnpc4631833',4631833,161.691299,58.182621,20.271860,-0.578801,2712,0,0,0,1,6,0,0,2579,0,0.000000,50,0,120,1,0,14,0,99,8,0,1,0,1,0,0.000000,1.000000,57122,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98525,'LVD_bnpc_01','f1d5','bnpc4631764',4631764,209.023102,74.000000,-39.437119,-0.324825,2712,0,0,0,0,6,0,0,2579,0,0.000000,50,0,120,1,0,13,0,99,8,0,1,0,1,0,0.000000,1.000000,56850,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98525,'LVD_bnpc_01','f1d5','bnpc4631832',4631832,155.875305,58.182621,18.410879,-0.333840,2710,0,0,0,1,6,0,0,2577,0,0.000000,50,0,120,1,0,14,0,99,8,0,1,0,1,0,0.000000,1.000000,56584,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97693,'LVD_bnpc_02','f1d5','bnpc4577906',4577906,9.962699,24.364691,-25.309719,0.717607,2711,0,0,0,1,6,0,0,2578,0,0.000000,50,0,120,1,0,21,0,99,8,0,1,0,1,0,0.000000,1.000000,56226,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97693,'LVD_bnpc_02','f1d5','bnpc4577907',4577907,14.850660,28.043570,-32.661678,-0.399553,2711,0,0,0,1,6,0,0,2578,0,0.000000,50,0,120,1,0,21,0,99,8,0,1,0,1,0,0.000000,1.000000,55954,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97693,'LVD_bnpc_02','f1d5','bnpc4578019',4578019,-38.399811,11.047670,24.404650,-0.000000,2711,0,0,0,1,6,0,0,2578,0,0.000000,50,0,120,1,0,22,0,99,8,0,1,0,1,0,0.000000,1.000000,55682,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97693,'LVD_bnpc_02','f1d5','bnpc4578020',4578020,-34.143051,10.771230,29.069920,-0.000000,2711,0,0,0,1,6,0,0,2578,0,0.000000,50,0,120,1,0,22,0,99,8,0,1,0,1,0,0.000000,1.000000,55410,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97693,'LVD_bnpc_02','f1d5','bnpc4631926',4631926,70.509163,44.000019,-78.865547,-0.000000,2713,0,0,0,1,6,0,0,2580,0,0.000000,50,0,120,1,0,24,0,99,8,0,1,0,1,0,0.000000,1.000000,55144,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97693,'LVD_bnpc_02','f1d5','bnpc4631927',4631927,68.214394,44.075359,-84.057213,-0.000000,2712,0,0,0,1,6,0,0,2579,0,0.000000,50,0,120,1,0,24,0,99,8,0,1,0,1,0,0.000000,1.000000,54854,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98533,'LVD_bnpc_03','f1d5','bnpc4631938',4631938,23.763590,-252.421204,-65.620193,-0.972547,2715,0,0,0,0,6,0,0,2582,0,0.000000,50,0,120,1,0,41,0,99,8,0,1,0,1,0,0.000000,1.000000,54510,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98533,'LVD_bnpc_03','f1d5','bnpc4631942',4631942,20.463511,-252.516098,-68.267609,-0.972547,2715,0,0,0,0,6,0,0,2582,0,0.000000,50,0,120,1,0,41,0,99,8,0,1,0,1,0,0.000000,1.000000,54238,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98533,'LVD_bnpc_03','f1d5','bnpc4631953',4631953,44.208679,-272.200012,35.845711,0.181603,2716,0,0,0,0,6,0,0,2583,0,0.000000,50,0,120,1,0,42,0,99,8,0,1,0,1,0,0.000000,1.000000,53972,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98533,'LVD_bnpc_03','f1d5','bnpc4631957',4631957,37.015759,-272.400085,41.958561,1.159516,2716,0,0,0,0,6,0,0,2583,0,0.000000,50,0,120,1,0,42,0,99,8,0,1,0,1,0,0.000000,1.000000,53700,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98533,'LVD_bnpc_03','f1d5','bnpc4631960',4631960,47.338520,-272.350006,54.234310,0.494176,2716,0,0,0,0,6,0,0,2583,0,0.000000,50,0,120,1,0,42,0,99,8,0,1,0,1,0,0.000000,1.000000,53428,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98533,'LVD_bnpc_03','f1d5','bnpc4631962',4631962,52.941559,-272.399994,46.068550,-0.939914,2716,0,0,0,0,6,0,0,2583,0,0.000000,50,0,120,1,0,42,0,99,8,0,1,0,1,0,0.000000,1.000000,53156,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98533,'LVD_bnpc_03','f1d5','bnpc4631950',4631950,9.111257,-252.591797,-57.392769,0.911566,2714,0,0,0,0,6,0,0,2581,0,0.000000,50,0,120,1,0,41,0,99,8,0,1,0,1,0,0.000000,1.000000,52890,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97666,'LVD_bnpc_gim_01','f1d5','bnpc4630864',4630864,125.195503,58.287701,24.791700,1.568236,2717,0,0,0,0,6,0,0,2566,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,52488,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97666,'LVD_bnpc_gim_01','f1d5','bnpc4574994',4574994,159.075302,65.995239,-45.426090,-0.000048,2707,0,0,0,1,6,0,0,2574,0,0.000000,50,0,120,1,0,17,0,99,8,0,1,0,1,0,0.000000,1.000000,52222,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97666,'LVD_bnpc_gim_01','f1d5','bnpc4574998',4574998,137.491806,66.068970,-26.743490,0.743704,2707,0,0,0,1,6,0,0,2574,0,0.000000,50,0,120,1,0,17,0,99,8,0,1,0,1,0,0.000000,1.000000,51950,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97666,'LVD_bnpc_gim_01','f1d5','bnpc4575008',4575008,155.901398,65.995239,-20.645510,1.185140,2707,0,0,0,2,6,0,0,2574,0,0.000000,50,0,120,1,0,17,0,99,8,0,1,0,1,0,0.000000,1.000000,51678,1,3,0,0,0,0,4664434,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97666,'LVD_bnpc_gim_01','f1d5','bnpc4575010',4575010,138.445099,65.995239,-42.862610,0.598571,2707,0,0,0,2,6,0,0,2574,0,0.000000,50,0,120,1,0,17,0,99,8,0,1,0,1,0,0.000000,1.000000,51406,1,3,0,0,0,0,4681284,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97666,'LVD_bnpc_gim_01','f1d5','bnpc4577475',4577475,128.091003,58.000000,25.335770,1.000500,2710,0,0,0,0,6,0,0,2577,0,0.000000,50,0,120,1,0,16,0,99,8,0,1,0,1,0,0.000000,1.000000,51092,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97666,'LVD_bnpc_gim_01','f1d5','bnpc4577479',4577479,128.278702,58.000000,18.950460,1.435940,2710,0,0,0,0,6,0,0,2577,0,0.000000,50,0,120,1,0,16,0,99,8,0,1,0,1,0,0.000000,1.000000,50820,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97666,'LVD_bnpc_gim_01','f1d5','bnpc4577481',4577481,129.470993,58.000000,17.511971,1.153910,2710,0,0,0,0,6,0,0,2577,0,0.000000,50,0,120,1,0,16,0,99,8,0,1,0,1,0,0.000000,1.000000,50548,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97666,'LVD_bnpc_gim_01','f1d5','bnpc4574979',4574979,150.618698,66.000000,-41.303059,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,50324,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97666,'LVD_bnpc_gim_01','f1d5','bnpc4574985',4574985,135.264099,66.000000,-31.526260,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,50052,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97666,'LVD_bnpc_gim_01','f1d5','bnpc4574986',4574986,154.526596,66.000000,-27.547750,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,49780,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97666,'LVD_bnpc_gim_01','f1d5','bnpc4575002',4575002,148.153595,65.995239,-35.139980,-0.000048,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,49508,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97666,'LVD_bnpc_gim_01','f1d5','bnpc4575005',4575005,139.016205,65.995239,-38.428879,-0.000048,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,49236,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97666,'LVD_bnpc_gim_01','f1d5','bnpc4575006',4575006,144.802399,66.000000,-25.826509,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,48964,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97666,'LVD_bnpc_gim_01','f1d5','bnpc4575007',4575007,138.692703,65.995239,-26.851160,-0.000048,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,48692,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4630883',4630883,-39.169922,18.680960,-1.968445,0.789916,2717,0,0,0,0,6,0,0,2566,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47776,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4577730',4577730,-4.874641,34.080009,-106.686897,-0.000000,2707,0,0,0,1,6,0,0,2574,0,0.000000,50,0,120,1,0,26,0,99,8,0,1,0,1,0,0.000000,1.000000,47510,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4577734',4577734,6.654556,34.179451,-88.270538,-0.764375,2707,0,0,0,1,6,0,0,2574,0,0.000000,50,0,120,1,0,26,0,99,8,0,1,0,1,0,0.000000,1.000000,47238,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4577747',4577747,9.889132,34.064140,-104.829597,-0.461521,2707,0,0,0,2,6,0,0,2574,0,0.000000,50,0,120,1,0,26,0,99,8,0,1,0,1,0,0.000000,1.000000,46966,1,3,0,0,0,0,4681288,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4577749',4577749,-11.154100,34.080009,-95.688683,0.755655,2707,0,0,0,2,6,0,0,2574,0,0.000000,50,0,120,1,0,26,0,99,8,0,1,0,1,0,0.000000,1.000000,46694,1,3,0,0,0,0,4664446,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4577750',4577750,10.125500,34.099991,-87.194580,-0.795275,2707,0,0,0,2,6,0,0,2574,0,0.000000,50,0,120,1,0,26,0,99,8,0,1,0,1,0,0.000000,1.000000,46422,1,3,0,0,0,0,4681297,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578023',4578023,0.690392,4.842963,6.954437,0.595395,2707,0,0,0,1,6,0,0,2574,0,0.000000,50,0,120,1,0,29,0,99,8,0,1,0,1,0,0.000000,1.000000,46150,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578024',4578024,24.555140,4.886215,19.062420,-1.268128,2707,0,0,0,1,6,0,0,2574,0,0.000000,50,0,120,1,0,29,0,99,8,0,1,0,1,0,0.000000,1.000000,45878,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578025',4578025,5.275396,4.977459,31.954750,0.394374,2707,0,0,0,1,6,0,0,2574,0,0.000000,50,0,120,1,0,29,0,99,8,0,1,0,1,0,0.000000,1.000000,45606,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578031',4578031,-3.945889,4.886215,15.782760,1.319067,2707,0,0,0,2,6,0,0,2574,0,0.000000,50,0,120,1,0,29,0,99,8,0,1,0,1,0,0.000000,1.000000,45334,1,3,0,0,0,0,4681298,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578032',4578032,15.562830,4.888366,8.894380,-0.384691,2707,0,0,0,2,6,0,0,2574,0,0.000000,50,0,120,1,0,29,0,99,8,0,1,0,1,0,0.000000,1.000000,45062,1,3,0,0,0,0,4681299,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578033',4578033,15.534590,4.886215,33.604969,-0.805593,2707,0,0,0,2,6,0,0,2574,0,0.000000,50,0,120,1,0,29,0,99,8,0,1,0,1,0,0.000000,1.000000,44790,1,3,0,0,0,0,4664448,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578040',4578040,-7.735624,4.886215,25.134150,1.304813,2707,0,0,0,2,6,0,0,2574,0,0.000000,50,0,120,1,0,29,0,99,8,0,1,0,1,0,0.000000,1.000000,44518,1,3,0,0,0,0,4681300,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578041',4578041,27.573000,4.867554,14.236630,-1.111078,2707,0,0,0,2,6,0,0,2574,0,0.000000,50,0,120,1,0,29,0,99,8,0,1,0,1,0,0.000000,1.000000,44246,1,3,0,0,0,0,4664452,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578042',4578042,21.382050,4.867554,30.899429,-0.791366,2707,0,0,0,2,6,0,0,2574,0,0.000000,50,0,120,1,0,29,0,99,8,0,1,0,1,0,0.000000,1.000000,43974,1,3,0,0,0,0,4681301,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4577917',4577917,-30.075560,20.404390,-11.551090,0.011218,2712,0,0,0,0,6,0,0,2579,0,0.000000,50,0,120,1,0,28,0,99,8,0,1,0,1,0,0.000000,1.000000,43654,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4577927',4577927,-34.256592,20.099421,-21.835751,1.061517,2713,0,0,0,0,6,0,0,2580,0,0.000000,50,0,120,1,0,28,0,99,8,0,1,0,1,0,0.000000,1.000000,43400,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4577723',4577723,6.059662,34.099991,-96.928528,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43164,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4577727',4577727,-2.998388,34.080009,-95.884720,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,42892,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4577728',4577728,2.006936,34.158340,-99.309181,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,42620,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4577737',4577737,6.910639,34.099991,-102.189003,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,42348,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4577741',4577741,2.359734,34.099991,-88.441620,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,42076,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4577742',4577742,-6.703142,34.080009,-95.966957,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41804,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4577743',4577743,-7.287206,33.943249,-88.609734,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41532,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578014',4578014,7.499823,5.104593,24.031931,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41260,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578016',4578016,6.055747,5.104593,16.722410,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,40988,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578017',4578017,17.278460,4.886215,19.383711,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,40716,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578027',4578027,12.870890,4.886215,27.764799,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,40444,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578028',4578028,0.916161,4.886215,19.155350,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,40172,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578029',4578029,7.857332,4.886215,11.456060,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39900,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578030',4578030,15.754270,4.886215,13.812640,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39628,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578034',4578034,15.080020,5.104593,23.621410,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39356,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578036',4578036,-2.029032,4.886215,13.802740,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39084,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578038',4578038,13.122130,4.899491,10.251180,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,38812,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4578039',4578039,3.457377,4.977459,26.604290,-0.000000,2926,0,0,0,3,6,0,0,2570,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,38540,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97692,'LVD_bnpc_gim_02','f1d5','bnpc4577925',4577925,-38.586040,19.720760,-13.014280,0.884060,2713,0,0,0,0,6,0,0,2580,0,0.000000,50,0,120,1,0,28,0,99,8,0,1,0,1,0,0.000000,1.000000,38232,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97703,'LVD_bnpc_gim_03','f1d5','bnpc4579288',4579288,45.365108,-272.386292,44.815670,0.834736,2706,0,0,0,0,6,0,0,2573,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36246,1,3,40,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97703,'LVD_bnpc_gim_03','f1d5','bnpc4579287',4579287,16.585770,-252.460602,-61.928871,-1.241316,2706,0,0,0,0,6,0,0,2573,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35974,1,3,40,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97704,'LVD_boss_01','f1d5','bnpc4579347',4579347,-3.740080,-279.600006,-9.000183,0.393688,2684,0,0,0,0,6,0,0,2564,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34960,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97704,'LVD_boss_01','f1d5','bnpc4617314',4617314,8.995679,-279.600006,-3.767360,-0.000000,2699,0,0,0,0,6,0,0,2567,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29334,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97704,'LVD_boss_01','f1d5','bnpc4617322',4617322,-22.321779,-279.600006,0.139908,-0.000000,2948,0,0,0,0,6,0,0,2568,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28444,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97704,'LVD_boss_01','f1d5','bnpc4617321',4617321,-16.291470,-279.600006,15.711980,-0.000000,2948,0,0,0,0,6,0,0,2568,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28172,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97704,'LVD_boss_01','f1d5','bnpc4617320',4617320,-0.344160,-279.600006,22.251051,-0.000000,2948,0,0,0,0,6,0,0,2568,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27900,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97704,'LVD_boss_01','f1d5','bnpc4617323',4617323,-15.778870,-279.600006,-15.981220,-0.000000,2948,0,0,0,0,6,0,0,2568,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27628,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97704,'LVD_boss_01','f1d5','bnpc4617317',4617317,15.569690,-279.600006,-16.252871,-0.000000,2948,0,0,0,0,6,0,0,2568,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27356,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97704,'LVD_boss_01','f1d5','bnpc4617316',4617316,-0.207069,-279.600006,-22.642191,-0.000000,2948,0,0,0,0,6,0,0,2568,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27084,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97704,'LVD_boss_01','f1d5','bnpc4617318',4617318,21.597260,-279.600006,0.032278,-0.000000,2948,0,0,0,0,6,0,0,2568,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26812,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97704,'LVD_boss_01','f1d5','bnpc4617319',4617319,16.073681,-279.600006,15.637000,-0.000000,2948,0,0,0,0,6,0,0,2568,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26540,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97704,'LVD_boss_01','f1d5','bnpc4617313',4617313,4.331043,-279.600006,-3.024300,-0.000000,2948,0,0,0,0,6,0,0,2568,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26268,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97665,'LVD_gimmick_01','f1d5','bnpc4574970',4574970,142.251801,66.269897,-32.985401,1.570451,2927,0,0,0,3,6,0,0,2569,0,0.000000,50,2,120,1,0,17,0,99,8,0,1,0,1,0,0.000000,1.000000,25566,1,0,0,4538596,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97690,'LVD_gimmick_02','f1d5','bnpc4577703',4577703,10.905280,7.289955,18.237431,-1.570796,2927,0,0,0,3,6,0,0,2569,0,0.000000,50,2,120,1,0,29,0,99,8,0,1,0,1,0,0.000000,1.000000,22926,1,0,0,4538791,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97690,'LVD_gimmick_02','f1d5','bnpc4577702',4577702,1.269450,34.836300,-95.609016,1.570451,2927,0,0,0,3,6,0,0,2569,0,0.000000,50,2,120,1,0,26,0,99,8,0,1,0,1,0,0.000000,1.000000,22654,1,0,0,4538597,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97702,'LVD_gimmick_03','f1d5','bnpc4579257',4579257,25.557961,-252.145905,-69.588310,-0.770192,2928,0,0,0,3,6,0,0,2571,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20120,1,0,0,4583478,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97702,'LVD_gimmick_03','f1d5','bnpc4579262',4579262,7.761974,-252.224396,-54.120468,0.795603,2928,0,0,0,3,6,0,0,2571,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19848,1,0,0,4583476,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97702,'LVD_gimmick_03','f1d5','bnpc4579269',4579269,47.718361,-272.144714,56.867901,-0.237783,2928,0,0,0,3,6,0,0,2571,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19576,1,0,0,4583473,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97702,'LVD_gimmick_03','f1d5','bnpc4579270',4579270,34.029701,-272.290192,41.368149,1.050797,2928,0,0,0,3,6,0,0,2571,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19304,1,0,0,4583472,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97702,'LVD_gimmick_03','f1d5','bnpc4579273',4579273,43.040890,-272.138794,33.573349,0.172920,2928,0,0,0,3,6,0,0,2571,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19032,1,0,0,4583471,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97702,'LVD_gimmick_03','f1d5','bnpc4579276',4579276,56.921398,-272.177399,47.477730,-1.262760,2928,0,0,0,3,6,0,0,2571,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18760,1,0,0,4583474,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97689,'LVD_mboss_01','f1d5','bnpc4577658',4577658,98.017616,42.115002,-39.387249,-0.000000,2688,0,0,0,0,6,0,0,2556,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14782,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97689,'LVD_mboss_01','f1d5','bnpc4618277',4618277,93.704300,42.000000,-33.972801,-0.000000,2700,0,0,0,0,6,0,0,2558,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14516,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97689,'LVD_mboss_01','f1d5','bnpc4618278',4618278,102.777199,42.000000,-34.308899,-0.000000,2690,0,0,0,0,6,0,0,2559,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14250,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97691,'LVD_mboss_02','f1d5','bnpc4578116',4578116,-37.613529,11.978270,69.535278,1.570451,2701,0,0,0,0,6,0,0,2560,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11880,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97691,'LVD_mboss_02','f1d5','bnpc4619009',4619009,-24.994230,12.000000,63.379341,1.570796,2702,0,0,0,1,6,0,0,2561,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11614,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97691,'LVD_mboss_02','f1d5','bnpc4619010',4619010,-24.951719,12.166690,67.714890,1.570796,2703,0,0,0,1,6,0,0,2562,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11348,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97691,'LVD_mboss_02','f1d5','bnpc4619011',4619011,-24.866711,12.000000,75.705902,1.570796,2704,0,0,0,1,6,0,0,2563,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11082,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97691,'LVD_mboss_02','f1d5','bnpc4635164',4635164,-21.158211,12.000000,70.006020,1.569820,2702,0,0,0,1,6,0,0,2561,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,5806,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99167,'LVD_BNPC_Dungeon_01','f1d6','bnpc4694988',4694988,-57.785950,44.357910,-82.898354,0.162988,3080,0,0,0,0,6,0,0,2836,0,0.000000,50,0,120,1,0,10,0,30,2,0,1,0,0,0,0.000000,1.000000,56812,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99167,'LVD_BNPC_Dungeon_01','f1d6','bnpc4694989',4694989,-51.712830,44.357910,-82.898354,-0.171041,3080,0,0,0,0,6,0,0,2836,0,0.000000,50,0,120,1,0,10,0,30,2,0,1,0,0,0,0.000000,1.000000,56540,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99167,'LVD_BNPC_Dungeon_01','f1d6','bnpc4695000',4695000,4.653992,37.155640,-53.635502,-0.768824,3080,0,0,0,0,6,0,0,2836,0,0.000000,50,0,120,1,0,11,0,30,3,0,1,0,0,0,0.000000,1.000000,56268,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99167,'LVD_BNPC_Dungeon_01','f1d6','bnpc4695011',4695011,-4.760932,23.752199,30.885500,0.512996,3080,0,0,0,0,6,0,0,2836,0,0.000000,50,0,120,1,0,12,0,30,3,0,1,0,0,0,0.000000,1.000000,55996,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99167,'LVD_BNPC_Dungeon_01','f1d6','bnpc4694991',4694991,-2.513119,39.840031,-60.523369,-0.571716,3081,0,0,0,5,6,0,0,2835,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,55730,1,3,2000,0,0,0,4719998,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99167,'LVD_BNPC_Dungeon_01','f1d6','bnpc4695007',4695007,-2.576381,24.519541,27.407351,0.420613,3081,0,0,0,5,6,0,0,2835,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,55458,1,3,2000,0,0,0,4719999,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99167,'LVD_BNPC_Dungeon_01','f1d6','bnpc4695002',4695002,7.928601,37.033569,-51.097618,-0.787999,3079,0,0,0,2,6,0,0,2834,0,0.000000,50,0,120,1,0,11,0,30,3,0,1,0,0,0,0.000000,1.000000,55192,1,3,2000,0,0,0,4760215,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99167,'LVD_BNPC_Dungeon_01','f1d6','bnpc4695003',4695003,3.738403,37.094601,-48.477970,-0.156372,3079,0,0,0,2,6,0,0,2834,0,0.000000,50,0,120,1,0,11,0,30,3,0,1,0,0,0,0.000000,1.000000,54920,1,3,2000,0,0,0,4760207,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99167,'LVD_BNPC_Dungeon_01','f1d6','bnpc4695012',4695012,-8.712891,23.392031,37.125118,0.731528,3079,0,0,0,2,6,0,0,2834,0,0.000000,50,0,120,1,0,12,0,30,3,0,1,0,0,0,0.000000,1.000000,54648,1,3,2000,0,0,0,4760238,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99167,'LVD_BNPC_Dungeon_01','f1d6','bnpc4695015',4695015,-11.093380,23.666691,33.371460,1.078213,3079,0,0,0,2,6,0,0,2834,0,0.000000,50,0,120,1,0,12,0,30,3,0,1,0,0,0,0.000000,1.000000,54376,1,3,2000,0,0,0,4760218,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99168,'LVD_BNPC_Dungeon_02','f1d6','bnpc4695028',4695028,83.276253,16.372860,91.386230,-0.000048,3085,0,0,0,2,6,0,0,2840,0,0.000000,50,0,120,1,0,20,0,30,3,0,1,0,0,0,0.000000,1.000000,54010,1,3,125,0,0,0,4841679,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99168,'LVD_BNPC_Dungeon_02','f1d6','bnpc4695031',4695031,89.768799,16.372860,91.386230,-0.000048,3085,0,0,0,2,6,0,0,2840,0,0.000000,50,0,120,1,0,20,0,30,3,0,1,0,0,0,0.000000,1.000000,53738,1,3,125,0,0,0,4841680,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99168,'LVD_BNPC_Dungeon_02','f1d6','bnpc4695033',4695033,102.747299,17.280670,58.491982,0.426786,3086,0,0,0,0,6,0,0,2841,0,0.000000,50,0,120,1,0,21,0,30,3,0,1,0,0,0,0.000000,1.000000,53472,1,3,100,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99168,'LVD_BNPC_Dungeon_02','f1d6','bnpc4695039',4695039,102.769402,17.349430,66.021667,0.456702,3090,0,0,0,5,6,0,0,2845,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,53206,1,3,100,0,0,0,4720003,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99168,'LVD_BNPC_Dungeon_02','f1d6','bnpc4695030',4695030,85.713997,16.372860,89.693336,-0.000048,3086,0,0,0,0,6,0,0,2841,0,0.000000,50,0,120,1,0,20,0,30,3,0,1,0,0,0,0.000000,1.000000,52928,1,3,125,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99168,'LVD_BNPC_Dungeon_02','f1d6','bnpc4695034',4695034,105.434303,17.280670,59.701340,-0.000000,3085,0,0,0,2,6,0,0,2840,0,0.000000,50,0,120,1,0,21,0,30,3,0,1,0,0,0,0.000000,1.000000,52650,1,3,95,0,0,0,4841690,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99168,'LVD_BNPC_Dungeon_02','f1d6','bnpc4695035',4695035,101.926003,17.108690,62.228741,0.973704,3085,0,0,0,2,6,0,0,2840,0,0.000000,50,0,120,1,0,21,0,30,3,0,1,0,0,0,0.000000,1.000000,52378,1,3,95,0,0,0,4841683,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4753365',4753365,-51.109161,14.055000,-12.035770,-1.038012,3060,0,0,0,0,6,0,0,2861,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,50572,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4753366',4753366,-48.114819,14.055000,-10.614270,-1.275862,3059,0,0,0,0,6,0,0,2860,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,50306,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4753449',4753449,-49.576550,14.055000,4.325246,-0.144324,3058,0,0,0,0,6,0,0,2859,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,50040,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4753450',4753450,-54.196930,14.055000,4.040049,0.116093,3057,0,0,0,0,6,0,0,2858,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,49774,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4753789',4753789,-45.843391,14.055000,-28.085119,-0.343215,3057,0,0,0,0,6,0,0,2858,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47630,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4753790',4753790,-34.225239,14.055000,-15.378870,-1.171962,3057,0,0,0,0,6,0,0,2858,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47358,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4753791',4753791,-61.272362,14.055000,-25.936399,0.537025,3057,0,0,0,0,6,0,0,2858,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47086,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4753793',4753793,-38.171589,14.055000,-1.021181,-0.895357,3057,0,0,0,0,6,0,0,2858,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46814,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4753794',4753794,-67.522408,14.055000,-13.133630,1.541034,3057,0,0,0,0,6,0,0,2858,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46542,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4753795',4753795,-64.497719,14.055000,-21.683950,0.843259,3058,0,0,0,0,6,0,0,2859,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46264,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4753796',4753796,-36.101200,14.055000,-5.814932,-1.282646,3058,0,0,0,0,6,0,0,2859,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45992,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4753797',4753797,-51.728401,14.055000,-28.429880,-0.000000,3058,0,0,0,0,6,0,0,2859,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45720,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4753803',4753803,-56.383221,14.055000,-11.562530,1.232380,3056,0,0,0,0,6,0,0,2857,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43732,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4753802',4753802,-56.245392,14.055000,-16.442921,1.296817,3056,0,0,0,0,6,0,0,2857,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43460,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4753801',4753801,-56.269741,14.055000,-13.882980,1.231680,3056,0,0,0,0,6,0,0,2857,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43188,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4753804',4753804,-53.314968,14.055000,-6.910931,0.560936,3056,0,0,0,0,6,0,0,2857,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,42916,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4895750',4895750,-51.744751,14.055000,-5.696849,0.597890,3056,0,0,0,1,6,0,0,2857,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,42644,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4895751',4895751,-50.276039,14.055000,-4.713238,0.099607,3056,0,0,0,1,6,0,0,2857,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,42372,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4902926',4902926,-55.015499,14.055000,-5.309750,0.520599,3056,0,0,0,0,6,0,0,2857,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,42100,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4902927',4902927,-53.320320,14.055000,-4.003378,0.617754,3056,0,0,0,0,6,0,0,2857,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41828,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99877,'LVD_BNPC_Dungeon_HARD_Boss','f1d6','bnpc4902928',4902928,-51.274189,14.055000,-2.604702,0.352294,3056,0,0,0,0,6,0,0,2857,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41556,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99875,'LVD_BNPC_Dungeon_HARD_Mboss01','f1d6','bnpc4746722',4746722,39.780071,16.283739,98.562279,-0.663001,3050,0,0,0,0,6,0,0,2852,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,40510,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99875,'LVD_BNPC_Dungeon_HARD_Mboss01','f1d6','bnpc4752747',4752747,45.517361,16.283739,93.384171,-1.277658,3048,0,0,0,0,6,0,0,2851,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,37436,1,0,2000,0,0,0,0,824,448); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99875,'LVD_BNPC_Dungeon_HARD_Mboss01','f1d6','bnpc4752748',4752748,43.404129,16.283701,90.593407,-1.277658,3048,0,0,0,0,6,0,0,2851,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,37164,1,0,2000,0,0,0,0,825,449); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99875,'LVD_BNPC_Dungeon_HARD_Mboss01','f1d6','bnpc4752749',4752749,41.355221,16.283701,87.726227,-1.277658,3048,0,0,0,0,6,0,0,2851,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36892,1,0,2000,0,0,0,0,826,450); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99875,'LVD_BNPC_Dungeon_HARD_Mboss01','f1d6','bnpc4752750',4752750,39.383808,16.283701,85.303421,-1.277658,3048,0,0,0,0,6,0,0,2851,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36620,1,0,2000,0,0,0,0,827,451); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99875,'LVD_BNPC_Dungeon_HARD_Mboss01','f1d6','bnpc4752751',4752751,37.458759,16.283701,82.859444,-1.277658,3048,0,0,0,0,6,0,0,2851,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36348,1,0,2000,0,0,0,0,825,452); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99875,'LVD_BNPC_Dungeon_HARD_Mboss01','f1d6','bnpc4752752',4752752,35.765041,16.283701,80.643944,-1.277658,3048,0,0,0,0,6,0,0,2851,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36076,1,0,2000,0,0,0,0,827,448); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99875,'LVD_BNPC_Dungeon_HARD_Mboss01','f1d6','bnpc4752753',4752753,33.987049,16.283701,78.457703,-1.277658,3048,0,0,0,0,6,0,0,2851,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35804,1,0,2000,0,0,0,0,824,449); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99875,'LVD_BNPC_Dungeon_HARD_Mboss01','f1d6','bnpc4752754',4752754,42.770359,16.283701,95.841431,-1.277658,3048,0,0,0,0,6,0,0,2970,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35532,1,0,2000,0,0,0,0,826,458); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99875,'LVD_BNPC_Dungeon_HARD_Mboss01','f1d6','bnpc4752755',4752755,40.601830,16.283701,92.791077,-1.277658,3048,0,0,0,0,6,0,0,2970,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35260,1,0,2000,0,0,0,0,825,459); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99875,'LVD_BNPC_Dungeon_HARD_Mboss01','f1d6','bnpc4752756',4752756,38.528831,16.283701,89.999817,-1.277658,3048,0,0,0,0,6,0,0,2970,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34988,1,0,2000,0,0,0,0,827,460); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99875,'LVD_BNPC_Dungeon_HARD_Mboss01','f1d6','bnpc4752757',4752757,36.512539,16.283701,87.725052,-1.277658,3048,0,0,0,0,6,0,0,2970,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34716,1,0,2000,0,0,0,0,824,460); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99875,'LVD_BNPC_Dungeon_HARD_Mboss01','f1d6','bnpc4752758',4752758,34.791061,16.283701,85.341057,-1.277658,3048,0,0,0,0,6,0,0,2970,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34444,1,0,2000,0,0,0,0,825,461); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99875,'LVD_BNPC_Dungeon_HARD_Mboss01','f1d6','bnpc4752759',4752759,32.737171,16.283701,83.011620,-1.277658,3048,0,0,0,0,6,0,0,2970,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34172,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99875,'LVD_BNPC_Dungeon_HARD_Mboss01','f1d6','bnpc4752760',4752760,30.742720,16.283701,80.617218,-1.277658,3048,0,0,0,0,6,0,0,2970,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33900,1,0,2000,0,0,0,0,825,459); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99875,'LVD_BNPC_Dungeon_HARD_Mboss01','f1d6','bnpc4752761',4752761,35.865978,16.283739,101.223503,0.775403,3049,0,0,0,0,6,0,0,2970,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33634,1,0,2000,0,0,0,0,824,460); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99875,'LVD_BNPC_Dungeon_HARD_Mboss01','f1d6','bnpc4752762',4752762,33.817741,16.283701,98.517021,0.775403,3049,0,0,0,0,6,0,0,2851,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33362,1,0,2000,0,0,0,0,828,452); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99876,'LVD_BNPC_Dungeon_HARD_Mboss02','f1d6','bnpc4752989',4752989,87.835442,22.101000,-41.466450,-0.000000,3054,0,0,0,3,6,0,0,2856,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32504,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99876,'LVD_BNPC_Dungeon_HARD_Mboss02','f1d6','bnpc4752990',4752990,88.213287,22.101000,-57.073410,-0.123419,3053,0,0,0,0,6,0,0,2855,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32238,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99876,'LVD_BNPC_Dungeon_HARD_Mboss02','f1d6','bnpc4753174',4753174,80.168152,22.101000,-35.700199,-0.000000,3051,0,0,0,1,6,0,0,2854,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28932,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99876,'LVD_BNPC_Dungeon_HARD_Mboss02','f1d6','bnpc4753175',4753175,80.168152,22.101000,-38.527611,-0.000000,3051,0,0,0,1,6,0,0,2854,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28660,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99876,'LVD_BNPC_Dungeon_HARD_Mboss02','f1d6','bnpc4753176',4753176,80.168152,22.101000,-41.561310,-0.000000,3051,0,0,0,1,6,0,0,2854,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28388,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99876,'LVD_BNPC_Dungeon_HARD_Mboss02','f1d6','bnpc4753177',4753177,80.168159,22.101000,-45.019588,-0.000000,3051,0,0,0,1,6,0,0,2854,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28116,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99876,'LVD_BNPC_Dungeon_HARD_Mboss02','f1d6','bnpc4753178',4753178,95.693260,22.101000,-36.211578,-0.000000,3052,0,0,0,1,6,0,0,2853,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27850,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99876,'LVD_BNPC_Dungeon_HARD_Mboss02','f1d6','bnpc4753179',4753179,95.693260,22.101000,-40.659882,-0.000000,3052,0,0,0,1,6,0,0,2853,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27578,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99876,'LVD_BNPC_Dungeon_HARD_Mboss02','f1d6','bnpc4894702',4894702,80.049072,22.101000,-48.113659,-0.000000,3051,0,0,0,1,6,0,0,2854,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25700,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99876,'LVD_BNPC_Dungeon_HARD_Mboss02','f1d6','bnpc4894703',4894703,79.998611,22.101000,-50.979149,-0.000000,3051,0,0,0,1,6,0,0,2854,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25428,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99686,'LVD_phase01gimmick','f1d6','bnpc4695070',4695070,8.945326,29.693380,-14.623210,1.510850,3082,0,0,0,0,6,0,0,2837,0,0.550000,50,0,120,1,0,13,0,30,2,0,1,0,0,0,0.000000,1.000000,18696,1,3,20,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99686,'LVD_phase01gimmick','f1d6','bnpc4695071',4695071,8.688545,29.693380,-18.283951,1.487794,3082,0,0,0,0,6,0,0,2837,0,0.550000,50,0,120,1,0,13,0,30,2,0,1,0,0,0,0.000000,1.000000,18424,1,3,20,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99686,'LVD_phase01gimmick','f1d6','bnpc4695072',4695072,-15.352030,23.392031,32.883690,0.502051,3082,0,0,0,0,6,0,0,2837,0,0.650000,50,0,120,1,0,14,0,30,2,0,1,0,0,0,0.000000,1.000000,18152,1,3,20,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99686,'LVD_phase01gimmick','f1d6','bnpc4695073',4695073,-11.950290,23.392031,30.697241,0.996759,3082,0,0,0,0,6,0,0,2837,0,0.650000,50,0,120,1,0,14,0,30,2,0,1,0,0,0,0.000000,1.000000,17880,1,3,20,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99686,'LVD_phase01gimmick','f1d6','bnpc4695075',4695075,-27.069521,23.410250,24.152710,1.136710,3089,0,0,0,1,6,0,0,2844,0,0.000000,50,0,120,1,0,14,0,30,2,0,1,0,0,0,0.000000,1.000000,17614,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99686,'LVD_phase01gimmick','f1d6','bnpc4695076',4695076,-17.087839,23.410250,18.515350,-0.000000,3089,0,0,0,1,6,0,0,2844,0,0.000000,50,0,120,1,0,14,0,30,2,0,1,0,0,0,0.000000,1.000000,17342,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99686,'LVD_phase01gimmick','f1d6','bnpc4695069',4695069,-3.699209,29.526119,-16.495001,-1.459078,3127,0,0,0,0,6,0,0,2915,0,0.000000,50,0,120,1,0,13,0,30,2,0,1,0,0,0,0.000000,1.000000,17076,1,3,25,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99686,'LVD_phase01gimmick','f1d6','bnpc4695074',4695074,-20.492920,23.392031,24.246580,-0.577840,3126,0,0,0,0,6,0,0,2914,0,0.000000,50,0,120,1,0,14,0,30,2,0,1,0,0,0,0.000000,1.000000,16810,1,3,25,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99687,'LVD_phase02gimmick','f1d6','bnpc4695085',4695085,77.193192,16.403440,144.830994,0.604560,3091,0,0,0,1,6,0,0,2846,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14368,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99687,'LVD_phase02gimmick','f1d6','bnpc4695086',4695086,75.109070,16.889780,53.594501,0.100415,3091,0,0,0,1,6,0,0,2846,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14096,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99687,'LVD_phase02gimmick','f1d6','bnpc4695089',4695089,72.456093,16.881041,60.635170,0.928917,3093,0,0,0,1,6,0,0,2848,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13830,1,3,97,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99687,'LVD_phase02gimmick','f1d6','bnpc4695091',4695091,77.633217,16.861151,60.006672,-0.887901,3093,0,0,0,1,6,0,0,2848,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13558,1,3,97,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99687,'LVD_phase02gimmick','f1d6','bnpc4695093',4695093,141.503098,16.464420,67.307503,1.567396,3091,0,0,0,1,6,0,0,2846,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13280,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99687,'LVD_phase02gimmick','f1d6','bnpc4695096',4695096,133.157593,16.519760,60.053570,-0.000000,3092,0,0,0,1,6,0,0,2847,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13020,1,3,105,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99687,'LVD_phase02gimmick','f1d6','bnpc4695097',4695097,122.902802,16.539690,61.471272,-0.000000,3092,0,0,0,1,6,0,0,2847,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12748,1,3,100,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99687,'LVD_phase02gimmick','f1d6','bnpc4695098',4695098,132.400497,16.543871,74.010483,0.227653,3092,0,0,0,1,6,0,0,2847,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12476,1,3,115,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99687,'LVD_phase02gimmick','f1d6','bnpc4695099',4695099,122.949097,16.515779,73.473412,0.947743,3092,0,0,0,1,6,0,0,2847,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12204,1,3,115,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99687,'LVD_phase02gimmick','f1d6','bnpc4695149',4695149,127.339401,16.544559,59.349178,-0.000000,3092,0,0,0,1,6,0,0,2847,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11932,1,3,100,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99687,'LVD_phase02gimmick','f1d6','bnpc4695150',4695150,127.530098,16.538601,75.651657,0.193684,3092,0,0,0,1,6,0,0,2847,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11660,1,3,120,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99687,'LVD_phase02gimmick','f1d6','bnpc4866709',4866709,80.676743,18.020809,149.369995,-0.755785,434,0,0,0,0,6,0,0,2846,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11394,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99687,'LVD_phase02gimmick','f1d6','bnpc4866710',4866710,74.485046,18.389790,47.303890,-0.000000,434,0,0,0,0,6,0,0,2846,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11122,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99687,'LVD_phase02gimmick','f1d6','bnpc4866711',4866711,147.816193,18.005850,67.424843,-1.488708,434,0,0,0,0,6,0,0,2846,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10850,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4695102',4695102,-100.458900,13.839900,10.140920,-1.302130,3082,0,0,0,0,6,0,0,2837,0,0.000000,50,0,120,1,0,32,0,30,4,0,1,0,0,0,0.000000,1.000000,8468,1,3,30,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4695103',4695103,-97.634712,13.839900,15.030030,-0.544332,3082,0,0,0,0,6,0,0,2837,0,0.000000,50,0,120,1,0,32,0,30,4,0,1,0,0,0,0.000000,1.000000,8196,1,3,30,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4696004',4696004,-101.183701,13.839900,13.797190,-1.335015,3082,0,0,0,0,6,0,0,2837,0,0.000000,50,0,120,1,0,32,0,30,4,0,1,0,0,0,0.000000,1.000000,7924,1,3,30,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4695104',4695104,-96.822487,13.839900,11.453120,0.895187,3084,0,0,0,0,6,0,0,2839,0,0.000000,50,0,120,1,0,32,0,30,4,0,1,0,0,0,0.000000,1.000000,7700,1,3,30,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4756955',4756955,-90.514809,14.447630,41.511509,-0.000000,3094,0,0,0,2,6,0,0,2849,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,7434,1,3,0,0,0,0,4756972,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4756956',4756956,-113.777397,13.368050,9.215479,-0.000000,3094,0,0,0,2,6,0,0,2849,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,7162,1,3,0,0,0,0,4756999,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4756960',4756960,-91.782700,13.592040,8.722582,-0.000000,3094,0,0,0,2,6,0,0,2849,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,6890,1,3,0,0,0,0,4757048,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4695282',4695282,-109.276001,13.859010,8.739391,1.445505,3095,0,0,0,1,6,0,0,2850,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,5688,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4695283',4695283,-110.142899,13.859010,7.986779,0.536648,3095,0,0,0,1,6,0,0,2850,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,5416,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4695284',4695284,-109.234497,13.914770,7.658845,0.869703,3095,0,0,0,1,6,0,0,2850,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,5144,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4695285',4695285,-109.782600,13.770630,6.902270,0.709812,3095,0,0,0,1,6,0,0,2850,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,4872,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4695286',4695286,-100.897903,13.859010,22.665730,0.045384,3095,0,0,0,1,6,0,0,2850,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,4600,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4695289',4695289,-101.853996,13.839900,23.361509,0.335372,3095,0,0,0,1,6,0,0,2850,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,4328,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4695287',4695287,-100.920601,13.859010,24.167259,0.593514,3095,0,0,0,1,6,0,0,2850,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,4056,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4695288',4695288,-99.593163,13.872320,23.333759,0.039308,3095,0,0,0,1,6,0,0,2850,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,3784,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4695043',4695043,-132.934204,16.084280,79.111862,-0.611328,3088,0,0,0,1,6,0,0,2843,0,0.000000,50,0,120,1,0,30,0,30,3,0,1,0,0,0,0.000000,1.000000,3518,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4695051',4695051,-115.179901,16.010139,65.060448,-1.078207,3088,0,0,0,1,6,0,0,2843,0,0.000000,50,0,120,1,0,31,0,30,3,0,1,0,0,0,0.000000,1.000000,3246,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4695049',4695049,-136.062302,16.135540,77.584312,-0.000000,3087,0,0,0,1,6,0,0,2842,0,0.000000,50,0,120,1,0,30,0,30,3,0,1,0,0,0,0.000000,1.000000,2980,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4695050',4695050,-131.687393,16.124470,75.855957,-0.000000,3087,0,0,0,1,6,0,0,2842,0,0.000000,50,0,120,1,0,30,0,30,3,0,1,0,0,0,0.000000,1.000000,2708,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4695056',4695056,-113.025497,15.992930,62.672359,-0.770278,3095,0,0,0,1,6,0,0,2850,0,0.000000,50,0,120,1,0,31,0,30,3,0,1,0,0,0,0.000000,1.000000,2424,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99688,'LVD_phase03gimmick','f1d6','bnpc4695057',4695057,-111.627098,15.948800,65.319908,-1.303641,3095,0,0,0,1,6,0,0,2850,0,0.000000,50,0,120,1,0,31,0,30,3,0,1,0,0,0,0.000000,1.000000,2152,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73095,'LVD_benchmark_01','f1f1','bnpc1180878',1180878,104.639297,-8.000016,-91.168152,1.499247,14,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,236352,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73095,'LVD_benchmark_01','f1f1','bnpc1180879',1180879,105.168701,-8.000016,-94.222618,1.499153,14,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,236080,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73095,'LVD_benchmark_01','f1f1','bnpc1180880',1180880,106.210297,-8.000016,-96.527153,1.499153,14,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,235808,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73095,'LVD_benchmark_01','f1f1','bnpc1183451',1183451,104.347603,-8.000016,-88.522499,1.499247,14,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,235428,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73095,'LVD_benchmark_01','f1f1','bnpc1183452',1183452,101.512100,-8.064646,-97.812950,1.320250,2,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,235162,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73095,'LVD_benchmark_01','f1f1','bnpc1183453',1183453,100.580399,-8.000016,-95.459229,1.320154,2,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,234890,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73095,'LVD_benchmark_01','f1f1','bnpc1183454',1183454,99.803108,-8.184623,-92.716454,1.320058,2,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,234618,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73095,'LVD_benchmark_01','f1f1','bnpc1183455',1183455,99.192757,-8.361253,-89.878258,1.319963,2,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,234346,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73095,'LVD_benchmark_01','f1f1','bnpc1183456',1183456,96.327393,-8.500061,-99.385361,1.384966,11,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,234080,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73095,'LVD_benchmark_01','f1f1','bnpc1183458',1183458,95.550194,-8.460118,-96.840134,1.384870,11,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,233808,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73095,'LVD_benchmark_01','f1f1','bnpc1183459',1183459,94.825958,-8.500061,-93.978119,1.384774,11,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,233536,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73095,'LVD_benchmark_01','f1f1','bnpc1183460',1183460,94.179993,-8.500061,-90.982887,1.384679,11,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,233264,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132780',1132780,42.705971,6.489012,-222.119598,0.705498,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,231446,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132784',1132784,43.994171,7.081282,-226.261307,0.567342,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,231174,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132785',1132785,46.368141,6.532326,-222.363800,-0.000240,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,230902,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132786',1132786,50.249649,8.663927,-237.583603,-0.000144,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,230630,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132810',1132810,119.142403,17.274370,-264.585907,-1.228354,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,230358,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132815',1132815,53.141479,4.367238,-208.718597,-1.228354,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,230086,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132818',1132818,57.950279,4.701855,-181.906006,-1.183916,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,229814,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132819',1132819,53.380199,3.647015,-170.941803,-1.183916,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,229542,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132823',1132823,85.892982,4.386182,-186.633102,-0.000144,47,0,0,0,1,6,0,0,47,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,229276,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132827',1132827,136.440002,-0.215091,-142.126297,-1.000123,47,0,0,0,1,6,0,0,47,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,229004,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132829',1132829,139.586502,1.436886,-162.906296,0.867288,47,0,0,0,1,6,0,0,47,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,228732,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132833',1132833,144.692596,1.594073,-161.313507,0.867269,47,0,0,0,1,6,0,0,47,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,228460,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132834',1132834,169.345306,-0.575563,-143.321701,0.867384,47,0,0,0,1,6,0,0,47,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,228188,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132835',1132835,132.885803,4.471908,-182.040894,0.867288,47,0,0,0,1,6,0,0,47,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,227916,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132836',1132836,127.652000,2.679112,-179.060898,0.867288,47,0,0,0,1,6,0,0,47,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,227644,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132837',1132837,133.402802,5.498395,-185.220093,0.867384,47,0,0,0,1,6,0,0,47,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,227372,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132842',1132842,104.130501,4.751109,-199.651596,0.867288,47,0,0,0,1,6,0,0,47,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,227100,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132988',1132988,145.939301,0.761501,-119.501801,-1.000123,47,0,0,0,1,6,0,0,47,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,226828,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132990',1132990,165.896698,-0.582151,-142.284103,0.502291,47,0,0,0,1,6,0,0,47,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,226556,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132991',1132991,196.646301,-2.798964,-155.795898,0.502482,47,0,0,0,1,6,0,0,47,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,226284,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132992',1132992,159.011398,0.196450,-113.407997,-1.000219,47,0,0,0,1,6,0,0,47,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,226012,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1132993',1132993,162.856598,-0.357008,-115.116997,-1.000219,47,0,0,0,1,6,0,0,47,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,225740,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1133000',1133000,202.288803,-2.206049,-168.963196,0.502387,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,225468,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1133001',1133001,223.772705,-6.852091,-140.217407,0.502482,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,225196,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1133002',1133002,206.683395,-2.759299,-171.221497,0.502387,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,224924,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1133005',1133005,231.146698,-5.044106,-178.307693,0.502195,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,224652,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1133007',1133007,242.902496,-0.494766,-191.458496,0.502291,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,224380,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1133008',1133008,239.977493,-0.588080,-191.828400,0.502291,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,224108,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1133010',1133010,221.392303,-6.460419,-138.050598,0.502387,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,223836,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1408325',1408325,107.492897,15.984340,-270.054596,-1.228354,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,223558,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1408329',1408329,119.554398,17.410500,-259.693298,-0.000144,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,223298,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1408332',1408332,111.600800,16.549120,-248.298096,-1.228354,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,223014,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1408334',1408334,117.813103,17.697479,-247.780807,-1.228354,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,222742,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1408341',1408341,111.814400,16.758829,-244.880096,-0.000144,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,222482,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1408351',1408351,86.796638,15.940370,-262.601105,-1.228354,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,222198,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1408352',1408352,68.921707,16.132620,-262.037811,-1.228354,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,221926,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1408353',1408353,68.168861,16.760660,-264.307190,-1.228354,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,221654,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1408357',1408357,72.243088,10.935070,-243.492706,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,221394,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1408358',1408358,87.101822,15.245950,-260.648010,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,221122,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410560',1410560,103.350998,14.389260,-254.875107,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,220850,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410688',1410688,50.217388,6.559038,-223.468399,-0.000144,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,220578,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410689',1410689,39.352970,4.053384,-182.513199,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,220306,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410690',1410690,37.860909,3.934789,-183.153900,-0.000144,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,220034,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410691',1410691,55.661430,4.710185,-183.981201,-1.183916,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,219750,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410693',1410693,-1.083989,1.339663,-188.567398,-0.000144,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,219478,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410694',1410694,0.474049,1.531124,-191.204697,-0.000144,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,219206,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410695',1410695,8.437746,1.980624,-176.756195,-0.000144,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,218934,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410696',1410696,-15.013690,1.551492,-198.619598,-0.000144,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,218662,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410698',1410698,7.450444,1.514552,-190.764694,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,218402,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410699',1410699,8.438234,3.222636,-146.234497,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,218130,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410700',1410700,14.477130,3.104484,-138.479904,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,217858,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410701',1410701,16.068541,3.373573,-139.535202,-0.000144,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,217574,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410703',1410703,-15.113390,3.146425,-233.722000,-0.000240,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,217302,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410704',1410704,-4.948251,4.778366,-234.155304,-0.000144,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,217030,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410705',1410705,8.210199,5.748120,-247.337402,-0.000144,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,216758,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410707',1410707,9.591916,5.570471,-251.132996,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,216498,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410708',1410708,5.815275,5.237663,-249.501099,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,216226,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410709',1410709,-9.906527,3.594761,-217.097595,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,215954,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410712',1410712,-13.648660,3.344659,-231.383408,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,215682,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410716',1410716,74.908539,4.285552,-211.076706,-1.228354,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,215398,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410851',1410851,88.732697,4.082766,-185.738998,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,215138,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410853',1410853,130.975204,4.971314,-185.109497,-0.000623,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,214866,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410976',1410976,131.470093,2.068069,-173.581100,-0.000815,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,214594,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410977',1410977,107.495903,0.653863,-168.558304,-0.001007,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,214322,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410978',1410978,142.190598,1.204836,-160.400803,-0.001199,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,214050,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410979',1410979,148.032898,0.649221,-123.475403,-0.001582,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,213778,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410982',1410982,166.648804,-1.181116,-137.457901,-0.002157,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,213506,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410983',1410983,178.145996,-1.608972,-140.621307,0.867480,47,0,0,0,1,6,0,0,47,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,213228,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410984',1410984,168.844696,2.701761,-163.503296,-0.002253,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,212962,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410990',1410990,199.114899,-0.803801,-174.853195,0.502578,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,212684,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410996',1410996,202.197205,-1.697314,-172.655899,-0.002445,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,212418,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410998',1410998,239.098404,-2.190103,-187.159805,-0.002445,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,212146,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410999',1410999,221.515396,-6.264487,-154.155502,-0.002541,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,211874,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1411000',1411000,227.837204,-8.126032,-125.948700,-0.002733,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,211602,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1411003',1411003,174.579300,-1.892151,-102.278099,0.459099,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,211324,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1411004',1411004,182.699707,-4.339209,-88.384857,-0.001678,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,211058,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320574',2320574,261.921387,1.753539,-223.409698,-0.002445,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,210786,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320575',2320575,261.238495,0.534709,-243.419296,0.502578,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,210508,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320576',2320576,263.797699,1.764011,-223.470901,0.502387,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,210236,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320577',2320577,259.453186,1.043279,-240.840607,0.502387,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,209964,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320579',2320579,274.919800,-1.072963,-256.170593,-0.002445,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,209698,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320580',2320580,300.060089,-0.888014,-307.572510,0.502578,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,209420,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320581',2320581,324.245514,-1.093548,-288.072113,0.502387,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,209148,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320582',2320582,298.274811,-0.855762,-304.993805,0.502387,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,208876,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320583',2320583,325.011292,-1.286943,-316.835388,-0.002445,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,208610,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320584',2320584,287.788513,-0.475198,-298.277313,-0.002445,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,208338,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320585',2320585,329.843903,-0.745502,-290.159698,0.502578,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,208060,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320586',2320586,325.924103,-0.928046,-285.067993,0.502387,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,207788,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320587',2320587,327.193207,-1.286943,-313.833496,-0.002445,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,207522,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320588',2320588,337.177185,0.441468,-264.191803,-0.002445,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,207250,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320589',2320589,332.682892,0.959346,-254.439896,-0.002445,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,206978,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320590',2320590,329.305206,0.991071,-252.106293,-0.002445,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,206706,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320591',2320591,304.253815,-0.643113,-258.978912,0.502578,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,206428,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320596',2320596,346.493591,-0.483981,-328.131287,-0.002445,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,206162,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320597',2320597,302.790710,-1.010156,-352.830505,0.502578,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,205884,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320598',2320598,273.957489,-0.689871,-328.818512,-0.002445,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,205618,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320599',2320599,268.469910,-0.593068,-327.086395,-0.002445,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,205346,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320600',2320600,267.525513,-0.806307,-329.538208,-0.002445,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,205074,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320601',2320601,276.737091,0.547026,-314.840912,0.502387,47,0,0,0,1,6,0,0,47,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,204796,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc3877513',3877513,121.019203,24.917931,-304.463287,0.306130,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,255,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,204518,9,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc3897658',3897658,117.021400,25.101040,-311.604492,0.996000,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,255,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,204258,9,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc3898007',3898007,132.524597,24.948450,-305.562012,-0.734692,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,255,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,203974,9,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320610',2320610,288.781494,-1.187131,-281.665588,-0.000527,1446,0,0,0,1,6,0,0,128,0,0.500000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,203720,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1411005',1411005,161.154007,4.078132,-169.399704,-0.000527,1446,0,0,0,1,6,0,0,128,0,0.500000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,203448,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410714',1410714,-30.136610,0.909592,-224.200897,-0.000048,1446,0,0,0,1,6,0,0,128,0,0.500000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,203176,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc1410715',1410715,48.355789,9.194451,-243.366196,-0.000240,1446,0,0,0,1,6,0,0,128,0,0.500000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,202904,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67219,'LVD_BNPC_01','f1f1','bnpc2320612',2320612,330.290802,-1.286943,-344.531311,-0.000527,1446,0,0,0,1,6,0,0,128,0,0.500000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,202632,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133022',1133022,332.788513,-3.345333,-151.251495,-0.000144,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,201534,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133023',1133023,298.603699,-6.332541,-125.749603,-0.000240,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,201262,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133029',1133029,302.693298,-3.341390,-184.143005,-0.000144,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,200990,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133031',1133031,328.386993,-0.505648,-187.936401,-0.000432,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,200718,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133032',1133032,342.892487,-1.328422,-175.218201,-0.000240,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,200446,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133035',1133035,358.327515,-2.255364,-175.310898,-0.000144,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,200174,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133036',1133036,335.507294,0.561625,-194.418793,-0.000432,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,199902,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133077',1133077,309.071411,-2.609340,63.065491,-0.363559,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,199630,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133080',1133080,281.574707,-7.184652,26.169170,0.645337,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,199358,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133098',1133098,289.254913,-5.168305,48.585239,1.237126,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,199086,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133100',1133100,291.498688,-5.368438,47.821369,1.237126,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,198814,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133287',1133287,197.283798,-8.773984,-27.176359,1.236551,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,198542,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133291',1133291,211.352707,-8.651912,-43.106781,1.237031,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,198270,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133293',1133293,157.305206,-7.888961,-17.929399,1.236934,43,0,0,0,1,6,0,0,43,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,197998,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133294',1133294,157.244202,-8.163623,-11.917340,1.236934,43,0,0,0,1,6,0,0,43,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,197726,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133298',1133298,120.449799,-4.840655,13.528090,1.237031,43,0,0,0,1,6,0,0,43,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,197454,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133303',1133303,104.203796,-7.003938,47.562321,1.237031,43,0,0,0,1,6,0,0,43,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,197182,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135577',1135577,335.133911,-4.725379,-24.794729,-0.767673,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,196916,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135582',1135582,371.054596,0.844982,-35.208488,-0.767673,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,196644,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135586',1135586,374.433105,1.702958,-25.284241,-0.767673,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,196372,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135591',1135591,345.784607,-2.975556,-32.761169,-0.767673,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,196100,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135593',1135593,332.478790,-3.372291,3.097534,-0.767673,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,195828,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135605',1135605,395.773193,2.548209,-44.693722,-0.767673,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,195556,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135606',1135606,415.025085,5.625315,-64.068764,-0.767673,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,195284,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135607',1135607,388.509888,0.304810,-66.453087,-0.767673,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,195012,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135612',1135612,394.000214,3.556523,-87.144318,0.104360,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,194740,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135613',1135613,375.936493,0.686609,-85.923592,0.104456,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,194468,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135614',1135614,343.831512,-5.020265,-80.094650,0.104552,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,194196,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135616',1135616,409.009888,5.209702,-112.078003,0.104552,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,193924,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135617',1135617,417.517700,5.755183,-68.232597,0.104552,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,193652,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135618',1135618,412.284607,5.636008,-106.424400,0.104456,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,193380,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135619',1135619,406.314209,5.571515,-103.380302,0.104552,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,193108,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135624',1135624,386.668915,4.336706,-103.087303,0.104552,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,192836,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135625',1135625,364.309509,0.784262,-125.017197,0.104552,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,192564,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135627',1135627,359.853485,-2.578822,-152.483398,0.104552,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,192292,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135628',1135628,350.999207,-2.118987,-128.300003,0.104552,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,192020,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135629',1135629,316.613586,8.015758,128.187897,-0.000048,41,0,0,0,1,6,0,0,41,0,0.000000,8,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,191754,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135632',1135632,323.190002,9.736116,132.826904,-0.000048,41,0,0,0,1,6,0,0,41,0,0.000000,8,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,191482,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135633',1135633,322.078613,10.136940,134.004807,-0.000048,41,0,0,0,1,6,0,0,41,0,0.000000,8,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,191210,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135639',1135639,288.849091,17.952721,161.725601,-0.000048,41,0,0,0,1,6,0,0,41,0,0.000000,8,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,190938,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135643',1135643,286.915314,19.626829,172.441101,-0.000240,41,0,0,0,1,6,0,0,41,0,0.000000,8,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,190666,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135645',1135645,295.765594,16.383280,167.437195,-1.393930,21,0,0,0,1,6,0,0,21,0,0.000000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,190400,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135646',1135646,318.979004,13.831220,155.957001,-0.805065,21,0,0,0,1,6,0,0,21,0,0.000000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,190128,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135647',1135647,290.314087,17.922770,159.804199,-0.805065,21,0,0,0,1,6,0,0,21,0,0.000000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,189856,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135931',1135931,272.581390,23.939560,195.025894,-0.000336,41,0,0,0,1,6,0,0,41,0,0.000000,8,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,189578,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1135933',1135933,241.474594,24.000601,179.914902,-0.000240,41,0,0,0,1,6,0,0,41,0,0.000000,8,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,189306,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1162337',1162337,283.977112,-6.509701,-148.452805,-0.000144,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,189022,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1162338',1162338,281.871399,-6.690229,-150.039703,-0.000144,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,188750,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1162341',1162341,315.751801,-4.718813,-109.327103,0.104648,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,188484,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1162344',1162344,309.980103,1.983368,92.979958,1.039479,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,188206,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1162348',1162348,130.357803,-6.759793,57.419651,1.236647,43,0,0,0,1,6,0,0,43,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,187934,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1162351',1162351,222.430695,-7.827925,-60.441029,1.236839,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,187662,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1162352',1162352,227.527206,-7.187046,-66.727753,1.237031,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,187390,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1162353',1162353,203.082306,-7.339636,-68.925049,1.236743,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,187118,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1162354',1162354,221.484604,-7.400672,-64.011642,1.236839,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,186846,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411032',1411032,271.173798,-9.203460,-119.877403,-0.000048,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,186574,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411036',1411036,305.867188,-2.983790,-188.262894,-0.000240,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,186302,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411037',1411037,302.815399,-3.417479,-190.063507,-0.000240,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,186030,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411038',1411038,283.192108,-6.780017,-171.401596,-0.000144,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,185758,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411042',1411042,287.338715,-5.114256,-195.320007,-0.000144,59,0,0,0,1,6,0,0,56,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,185510,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411049',1411049,276.640594,-8.026556,-141.155594,-0.000240,59,0,0,0,1,6,0,0,56,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,185238,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411065',1411065,308.725311,-4.528103,-80.785583,0.104168,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,184948,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411066',1411066,311.802795,-5.117999,-76.683037,0.103977,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,184676,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411069',1411069,291.112213,-5.409167,-79.667397,0.104264,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,184404,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411071',1411071,346.714203,-3.206666,-41.466160,-0.767673,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,184132,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411078',1411078,264.779999,-11.621630,-65.637466,-0.001007,59,0,0,0,1,6,0,0,56,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,183878,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411084',1411084,234.546997,-11.793010,-2.134793,-0.001870,59,0,0,0,1,6,0,0,56,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,183606,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411085',1411085,250.625107,-8.387555,28.634951,-0.001582,59,0,0,0,1,6,0,0,56,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,183334,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411086',1411086,313.420288,-6.097115,16.095341,0.645145,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,183038,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411087',1411087,314.703308,-5.599903,20.012140,0.645240,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,182766,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411119',1411119,309.285095,2.975462,97.764503,1.039479,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,182494,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411120',1411120,326.314087,2.426137,90.012917,1.039479,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,182222,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411135',1411135,420.071991,5.244238,-35.509991,-0.767673,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,181956,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411136',1411136,417.919312,5.091386,-39.660309,-0.767673,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,181684,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411137',1411137,425.005402,6.439638,-41.263420,-0.767673,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,181412,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411162',1411162,201.709000,-7.309118,-73.014473,1.236743,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,181134,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411163',1411163,206.805496,-9.964188,-16.037279,1.236551,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,180862,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411164',1411164,183.550705,-8.560358,-4.379386,1.236551,43,0,0,0,1,6,0,0,43,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,180590,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411167',1411167,127.300301,-5.901662,12.460290,1.236934,43,0,0,0,1,6,0,0,43,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,180318,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411170',1411170,92.851097,-4.928711,4.867581,1.236455,43,0,0,0,1,6,0,0,43,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,180046,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411171',1411171,127.489098,-7.126010,58.609852,1.236647,43,0,0,0,1,6,0,0,43,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,179774,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411173',1411173,216.815399,-9.170719,-44.144390,-0.001390,59,0,0,0,1,6,0,0,56,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,179526,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411174',1411174,218.066605,-9.475899,-42.282791,-0.001582,59,0,0,0,1,6,0,0,56,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,179254,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411176',1411176,184.252594,-8.621394,-0.259450,-0.001678,59,0,0,0,1,6,0,0,56,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,178982,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411178',1411178,102.749901,-11.800030,112.244499,-0.002253,59,0,0,0,1,6,0,0,56,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,178710,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411179',1411179,107.205597,-7.793041,74.349869,-0.002061,59,0,0,0,1,6,0,0,56,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,178438,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411180',1411180,84.061897,-6.851347,16.464439,-0.001774,59,0,0,0,1,6,0,0,56,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,178166,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411181',1411181,84.336563,-6.698757,13.137970,-0.001966,59,0,0,0,1,6,0,0,56,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,177894,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411182',1411182,275.292297,23.606110,190.161697,-0.000240,41,0,0,0,1,6,0,0,41,0,0.000000,8,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,177610,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411186',1411186,288.694397,21.579050,187.354996,-1.393739,21,0,0,0,1,6,0,0,21,0,0.000000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,177344,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411187',1411187,286.440796,21.978689,190.167206,-1.393739,21,0,0,0,1,6,0,0,21,0,0.000000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,177072,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411193',1411193,237.018204,23.458019,156.614304,-1.393930,21,0,0,0,1,6,0,0,21,0,0.000000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176800,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411197',1411197,211.473099,23.453070,169.805405,-1.393739,21,0,0,0,1,6,0,0,21,0,0.000000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176528,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411198',1411198,209.800598,23.457560,211.348297,-1.393739,21,0,0,0,1,6,0,0,21,0,0.000000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176256,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411202',1411202,205.811798,24.000139,204.175003,-1.393739,21,0,0,0,1,6,0,0,21,0,0.000000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,175984,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411203',1411203,226.011993,23.536930,175.448105,-0.002043,21,0,0,0,1,6,0,0,21,0,0.000000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,175712,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411206',1411206,227.024994,24.063431,228.666702,-1.393739,21,0,0,0,1,6,0,0,21,0,0.000000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,175440,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411207',1411207,224.858200,23.422550,230.009598,-1.393739,21,0,0,0,1,6,0,0,21,0,0.000000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,175168,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411210',1411210,233.020493,23.453070,214.312897,-0.000144,41,0,0,0,1,6,0,0,41,0,0.000000,8,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,174890,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411213',1411213,213.946701,23.453070,226.459106,-0.000144,41,0,0,0,1,6,0,0,41,0,0.000000,8,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,174618,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411214',1411214,211.749405,23.453070,228.168106,-0.000144,41,0,0,0,1,6,0,0,41,0,0.000000,8,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,174346,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411218',1411218,228.444595,23.457581,165.045898,-0.000048,41,0,0,0,1,6,0,0,41,0,0.000000,8,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,174074,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411034',1411034,330.082886,-2.640436,-152.968796,-0.000240,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,173790,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1416355',1416355,184.649399,-7.461709,-54.703640,1.236647,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,173518,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133056',1133056,482.511993,23.910801,-88.545013,-0.794566,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,173276,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133063',1133063,504.435913,29.146271,-83.562149,-0.994418,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,173004,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133064',1133064,482.169495,24.010910,-92.475502,-1.245851,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,172732,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133065',1133065,459.642914,24.454941,-39.719559,-1.408503,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,172460,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133054',1133054,483.304291,30.900890,-51.161331,-1.408861,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,172188,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411160',1411160,484.982300,41.536228,-12.749530,-0.546393,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,171916,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411155',1411155,511.920410,44.121750,-42.307079,-0.546393,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,171644,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411157',1411157,502.891510,43.241459,-46.006001,-0.546393,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,171372,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411159',1411159,481.475494,41.105301,-9.940406,-0.546393,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,171100,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133066',1133066,453.938690,26.000799,-33.810230,-1.168575,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,170828,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411148',1411148,449.318512,32.509201,-8.551085,-0.284654,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,170556,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411152',1411152,505.440613,42.969250,-25.847120,-0.546393,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,170284,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133053',1133053,487.618011,31.024900,-55.958771,-1.408861,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,170012,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133044',1133044,458.584900,14.997390,-90.379593,-0.361114,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,169740,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133042',1133042,439.946808,10.149250,-108.177101,-0.361210,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,169468,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133057',1133057,480.679291,24.104330,-120.189201,-0.794566,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,169196,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133052',1133052,486.745514,31.609249,-44.177990,-1.185498,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,168924,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133049',1133049,445.243591,31.812080,-9.685579,-0.284654,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,168652,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133047',1133047,463.401215,25.778530,-35.324680,-0.546393,142,0,0,0,1,6,0,0,120,0,0.000000,9,2,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,168380,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2320671',2320671,97.314743,-11.800020,101.237198,-0.002061,59,0,0,0,1,6,0,0,56,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,168102,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2320675',2320675,135.972794,-11.800140,133.207794,-0.001966,59,0,0,0,1,6,0,0,56,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,167830,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2320678',2320678,185.468796,-11.800210,106.268402,-0.001870,59,0,0,0,1,6,0,0,56,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,167558,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2320683',2320683,188.220001,-11.825790,62.851860,-0.002157,59,0,0,0,1,6,0,0,56,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,167286,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2320688',2320688,201.678406,-11.795270,23.117371,-0.001678,59,0,0,0,1,6,0,0,56,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,167014,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2320694',2320694,260.142914,-12.002980,-90.756157,-0.001390,59,0,0,0,1,6,0,0,56,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,166742,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2320695',2320695,258.451996,-12.002920,-92.319710,-0.001390,59,0,0,0,1,6,0,0,56,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,166470,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2320696',2320696,257.085999,-12.006830,-154.938705,-0.001390,59,0,0,0,1,6,0,0,56,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,166198,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2320697',2320697,264.474091,-12.313630,-187.969193,-0.001390,59,0,0,0,1,6,0,0,56,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,165926,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2341782',2341782,345.014008,-1.078350,-177.896896,-0.000240,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,165630,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2341783',2341783,319.296997,-0.849605,-171.347198,-0.000432,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,165358,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2341784',2341784,292.707397,-6.651216,-123.136101,-0.000240,43,0,0,0,1,6,0,0,43,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,165086,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2603191',2603191,256.015594,-11.793030,-185.891006,0.460537,160,0,0,0,1,6,0,0,196,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164850,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2603192',2603192,260.232605,-11.793140,-180.095505,-0.629181,160,0,0,0,1,6,0,0,196,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164578,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612552',2612552,252.195404,-11.793090,-145.885406,0.254516,160,0,0,0,1,6,0,0,196,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164306,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612553',2612553,254.433395,-11.793010,-113.328796,0.640830,160,0,0,0,1,6,0,0,196,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164034,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612554',2612554,258.838715,-11.793140,-73.879280,-0.236716,160,0,0,0,1,6,0,0,196,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163762,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612555',2612555,233.580307,-11.793010,-18.570280,-1.175575,160,0,0,0,1,6,0,0,196,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163490,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612556',2612556,216.695099,-11.793000,8.959249,-0.250812,160,0,0,0,1,6,0,0,196,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163218,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612557',2612557,212.512299,-11.795270,12.741240,0.124446,160,0,0,0,1,6,0,0,196,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162946,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612559',2612559,120.048798,-11.800060,124.326401,-0.000336,159,0,0,0,1,6,0,0,197,0,1.000000,7,2,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162680,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612561',2612561,191.515900,-11.856310,51.102409,-0.000240,159,0,0,0,1,6,0,0,197,0,0.000000,7,2,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162408,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612562',2612562,189.768997,-11.800210,71.478256,-0.000144,159,0,0,0,1,6,0,0,197,0,0.000000,7,2,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162136,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612563',2612563,192.239395,-11.800030,91.385788,-0.000144,159,0,0,0,1,6,0,0,197,0,0.000000,7,2,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161864,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612564',2612564,179.480606,-11.800260,106.735802,-0.000048,159,0,0,0,1,6,0,0,197,0,0.000000,7,2,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161592,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612565',2612565,165.069794,-11.800630,119.881798,-0.000048,159,0,0,0,1,6,0,0,197,0,0.000000,7,2,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161320,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612566',2612566,146.988297,-11.800000,126.311401,-0.000048,159,0,0,0,1,6,0,0,197,0,0.000000,7,2,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161048,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612569',2612569,132.474792,-11.800090,139.979294,-0.000336,159,0,0,0,1,6,0,0,197,0,1.000000,7,2,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160776,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612570',2612570,250.133804,-11.793030,-55.898849,-0.721800,160,0,0,0,1,6,0,0,196,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160498,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612571',2612571,205.980301,-11.772920,33.134300,1.366015,160,0,0,0,1,6,0,0,196,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160226,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411220',1411220,382.833496,13.565220,79.972481,0.104264,14,0,0,0,1,6,0,0,195,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159876,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411223',1411223,409.964111,18.326040,60.501968,0.103881,14,0,0,0,1,6,0,0,195,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159604,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2320721',2320721,396.475098,20.645411,107.225098,0.103881,14,0,0,0,1,6,0,0,195,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159332,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411227',1411227,436.179108,32.211750,101.823402,0.103785,14,0,0,0,1,6,0,0,195,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159060,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411225',1411225,411.001709,26.138660,123.399696,0.103881,14,0,0,0,1,6,0,0,195,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158788,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411222',1411222,374.288513,12.161390,84.031380,0.104073,14,0,0,0,1,6,0,0,195,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158516,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2320722',2320722,419.413391,27.114370,102.443001,0.103881,14,0,0,0,1,6,0,0,195,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158244,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411228',1411228,439.383514,32.761070,98.649529,0.103785,14,0,0,0,1,6,0,0,195,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157972,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612573',2612573,421.064514,24.757450,78.823257,0.104264,14,0,0,0,1,6,0,0,195,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157700,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2612574',2612574,428.320709,31.721590,124.805603,0.104264,14,0,0,0,1,6,0,0,195,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157428,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133072',1133072,348.626495,0.976962,28.015940,-0.363655,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157198,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133073',1133073,342.183502,0.098491,27.298340,-0.363559,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156926,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2341787',2341787,348.283203,3.086715,49.707630,-0.363559,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156654,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411121',1411121,371.612488,7.304699,55.979481,-0.363559,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156382,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133071',1133071,341.298492,3.983801,67.704231,-0.363559,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156110,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1133070',1133070,351.512787,3.052480,46.861389,-0.363559,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155838,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1162345',1162345,337.067413,3.266761,71.050873,-0.363559,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155566,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2341785',2341785,347.310486,6.679530,84.092422,-0.363559,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155294,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2341786',2341786,354.267487,5.193762,60.841671,-0.363559,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155022,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411124',1411124,375.810211,7.175481,51.219879,-0.363559,43,0,0,0,1,6,0,0,43,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154750,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2615503',2615503,253.211594,-11.793080,-161.360504,-1.278545,160,0,0,0,1,6,0,0,196,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154514,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc2615504',2615504,253.937607,-11.793030,-68.861298,0.377649,160,0,0,0,1,6,0,0,196,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154242,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc3742194',3742194,48.050610,-11.800030,-40.915428,-0.000432,159,0,0,0,1,6,0,0,197,0,0.000000,7,2,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153976,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc3742195',3742195,22.187790,-11.800000,-69.750504,-0.000432,159,0,0,0,1,6,0,0,197,0,0.000000,7,2,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153704,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc3742196',3742196,15.168640,-11.800000,-75.762558,-0.000432,159,0,0,0,1,6,0,0,197,0,0.000000,7,2,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153432,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc3742197',3742197,6.348711,-11.800040,-110.540199,-0.000336,159,0,0,0,1,6,0,0,197,0,0.000000,7,2,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153160,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc3742198',3742198,-54.153049,-3.500003,-186.530106,-0.000432,159,0,0,0,1,6,0,0,197,0,0.000000,7,2,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152888,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc3742199',3742199,-50.919399,-3.500001,-182.895996,-0.000432,159,0,0,0,1,6,0,0,197,0,0.000000,7,2,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152616,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc3742200',3742200,-69.779549,-3.500144,-196.820496,-0.000432,159,0,0,0,1,6,0,0,197,0,0.000000,7,2,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152344,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc3742201',3742201,-62.272110,-3.500066,-207.843399,-0.000432,159,0,0,0,1,6,0,0,197,0,0.000000,7,2,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152072,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc3742202',3742202,2.735321,-11.800110,-122.937599,-0.002349,59,0,0,0,1,6,0,0,56,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151782,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc3742203',3742203,-6.886642,-3.500000,-135.990402,-0.002349,59,0,0,0,1,6,0,0,56,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151510,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc3742204',3742204,-6.586641,-3.500000,-139.267899,-0.002349,59,0,0,0,1,6,0,0,56,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151238,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc3742205',3742205,-36.719379,-3.500000,-180.416794,-0.002349,59,0,0,0,1,6,0,0,56,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150966,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc3742206',3742206,-48.687111,-3.500072,-207.096298,-0.002349,59,0,0,0,1,6,0,0,56,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150694,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1411208',1411208,234.736603,23.544621,214.365707,-1.393739,21,0,0,0,1,6,0,0,21,0,0.000000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150416,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1418013',1418013,272.692596,-2.411928,61.854092,0.668384,1446,0,0,0,1,6,0,0,128,0,0.500000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150120,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69263,'LVD_BNPC_02','f1f1','bnpc1418012',1418012,397.388092,18.876289,87.758537,-0.000144,1446,0,0,0,1,6,0,0,128,0,0.500000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149848,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133126',1133126,-82.030632,1.519239,-141.488693,0.013039,10,0,0,0,1,6,0,0,10,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148770,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133128',1133128,-77.317497,1.083344,-136.644608,0.013231,10,0,0,0,1,6,0,0,10,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148498,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133130',1133130,-63.375290,0.643326,-166.887497,0.871219,10,0,0,0,1,6,0,0,10,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148226,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133131',1133131,-64.313164,0.965167,-162.181503,0.871219,10,0,0,0,1,6,0,0,10,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147954,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133132',1133132,-75.591331,1.176651,-142.404297,0.871219,10,0,0,0,1,6,0,0,10,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147682,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133138',1133138,-33.189919,-4.914308,-94.149628,0.871123,10,0,0,0,1,6,0,0,10,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147410,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133148',1133148,86.244072,-19.783070,210.247406,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147144,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133152',1133152,70.510750,-17.727341,188.296799,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146872,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133156',1133156,56.609531,-22.226370,292.790710,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146600,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133163',1133163,25.970390,-24.061230,233.649994,1.313683,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146328,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133165',1133165,37.231960,-26.765560,260.079498,-0.239592,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146056,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133172',1133172,94.585983,-24.244490,288.477509,0.235086,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145784,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133176',1133176,98.126083,-23.363501,294.977814,0.235086,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145512,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133177',1133177,85.597298,-27.953020,268.263000,0.234990,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145240,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133178',1133178,89.747749,-28.194380,266.065704,0.234990,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144968,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133179',1133179,141.949905,-28.936390,333.222290,0.091273,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144702,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133181',1133181,160.046402,-31.802570,350.789795,0.091273,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144430,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133185',1133185,164.906906,-32.018280,333.485504,0.091177,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144158,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133186',1133186,146.226807,-28.810591,357.818298,0.091177,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143886,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133187',1133187,196.479996,-32.228100,370.754303,0.091081,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143614,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133189',1133189,179.687897,-32.476631,364.163086,0.091273,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143342,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133193',1133193,213.929794,-29.694580,421.080688,0.091177,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143070,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133194',1133194,210.157394,-29.179230,422.919312,0.091177,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142798,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133195',1133195,202.300293,-31.331381,415.743286,0.091075,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142526,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133196',1133196,197.350098,-27.568890,432.363586,0.091081,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142254,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133197',1133197,127.580299,-21.390261,452.635986,0.091081,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141982,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133198',1133198,140.825500,-23.697309,449.881714,0.091177,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141710,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133199',1133199,140.459198,-23.605749,454.489899,0.091177,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141438,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133202',1133202,12.397950,-27.619690,294.880493,0.193764,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141154,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133205',1133205,-18.143021,-24.734921,265.369598,-0.264232,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140882,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133206',1133206,-12.771850,-24.094040,262.958710,0.727310,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140610,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133207',1133207,-9.199866,-28.976500,329.645294,0.727406,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140338,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133209',1133209,-28.712330,-27.396271,280.689209,0.727310,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140066,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1135937',1135937,-101.839104,-40.043732,299.745911,-0.000144,20,0,0,0,1,6,0,0,20,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139812,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1135938',1135938,-105.816902,-40.028461,306.239807,-0.000144,20,0,0,0,1,6,0,0,20,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139540,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1135939',1135939,-90.198776,-40.129551,324.673096,-0.000144,20,0,0,0,1,6,0,0,20,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139268,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1135940',1135940,-94.585022,-40.032150,311.676514,-0.000048,20,0,0,0,1,6,0,0,20,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138996,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1162358',1162358,-19.657080,0.269221,-140.150803,0.013039,10,0,0,0,1,6,0,0,10,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138706,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1162368',1162368,112.853699,-26.954611,251.195801,0.235086,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138440,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1162369',1162369,89.158417,-24.246630,236.957306,0.235278,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138168,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1162371',1162371,217.547806,-31.967699,395.895294,0.091273,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137902,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1162374',1162374,-2.485424,-31.687981,451.364502,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137624,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1162376',1162376,-10.696620,-34.134480,443.381287,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137352,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1162378',1162378,-23.636271,-35.911461,462.485596,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137080,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1162380',1162380,-61.417610,-36.118149,490.745300,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136808,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1162384',1162384,-4.128872,-28.294901,327.096588,0.727406,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136530,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1162385',1162385,-48.920349,-35.910400,310.262909,0.727310,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136258,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1162386',1162386,-66.916382,-32.083370,343.644196,0.727406,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135986,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1162387',1162387,-65.420998,-31.630421,353.013306,0.727406,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135714,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1162390',1162390,-298.542786,20.650921,132.768707,-0.000336,39,0,0,0,1,6,0,0,39,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135454,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1162391',1162391,-294.392303,20.060690,130.388306,-0.000336,39,0,0,0,1,6,0,0,39,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135182,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1162392',1162392,-296.020508,20.999870,168.359299,-0.000432,39,0,0,0,1,6,0,0,39,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134910,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1162393',1162393,-297.016907,20.876789,122.239998,-0.000144,39,0,0,0,1,6,0,0,39,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134638,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1162394',1162394,-208.026505,3.601872,2.164479,-0.000240,39,0,0,0,1,6,0,0,39,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134366,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411233',1411233,-58.666859,-4.080153,-116.513397,0.012943,10,0,0,0,1,6,0,0,10,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134082,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411234',1411234,-111.996201,6.549166,-145.525208,0.012943,10,0,0,0,1,6,0,0,10,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133810,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411235',1411235,-123.994698,12.085680,-163.495407,0.012943,10,0,0,0,1,6,0,0,10,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133538,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411236',1411236,-120.946297,10.817430,-167.745193,0.012943,10,0,0,0,1,6,0,0,10,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133266,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411237',1411237,-179.948700,2.732331,-103.572197,0.012943,10,0,0,0,1,6,0,0,10,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132994,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411253',1411253,-56.382130,-4.928711,-94.529694,-0.000240,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132746,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411254',1411254,-20.293131,-2.590379,-100.341103,-0.000000,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132474,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411255',1411255,-23.246990,0.393718,-138.153305,-0.000000,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132202,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411256',1411256,-59.128750,0.758792,-164.202393,-0.000048,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131930,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411655',1411655,-92.954361,1.786075,-122.393898,-0.000240,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131658,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411656',1411656,-93.869904,1.736482,-119.067497,-0.000144,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131386,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411657',1411657,-109.805397,6.718060,-150.029800,-0.000048,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131114,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411658',1411658,-176.756607,2.961861,-114.443398,-0.000144,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130842,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411659',1411659,-205.790604,2.068845,-61.951530,-0.000144,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130570,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412058',1412058,-196.154800,1.939114,-25.589430,-0.000240,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130298,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412059',1412059,-163.822601,0.087921,-11.411790,-0.000048,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130026,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412062',1412062,71.492859,-11.893120,161.389404,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129736,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412463',1412463,107.728401,-8.259025,159.304703,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129464,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412464',1412464,108.796501,-7.985859,156.375000,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129192,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412465',1412465,45.309830,-13.145570,164.612595,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128920,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412467',1412467,86.263412,-10.238450,166.918396,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128648,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412470',1412470,43.860840,-19.453880,194.128098,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128376,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412471',1412471,40.686970,-20.436541,199.194107,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128104,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412474',1412474,83.274986,-19.705959,207.342194,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127832,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412475',1412475,56.498798,-24.125010,265.742401,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127560,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412476',1412476,56.595661,-23.666790,269.184387,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127288,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412477',1412477,67.313408,-23.280479,279.101715,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127016,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412478',1412478,130.256897,-28.458679,285.610504,0.234894,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126744,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412480',1412480,84.874817,-11.151300,170.539902,-0.000719,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126490,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412482',1412482,48.863239,-15.723400,175.131393,-0.000623,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126218,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412483',1412483,91.596550,-15.216650,191.087204,-0.000432,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125946,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412484',1412484,40.536888,-24.919319,239.885193,-0.000623,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125674,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412486',1412486,12.541730,-30.409491,274.885712,-0.000719,57,0,0,0,1,6,0,0,54,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125402,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412488',1412488,84.885887,-24.795959,238.330597,-0.000623,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125130,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412489',1412489,100.537003,-25.090691,289.606689,-0.000815,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124858,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412890',1412890,192.974106,-32.093040,371.993805,0.091081,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124574,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412891',1412891,174.770096,-30.985760,392.154999,0.091081,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124302,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412892',1412892,169.164200,-29.940310,393.395111,0.091081,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124030,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412893',1412893,172.161407,-30.924379,389.056885,0.091081,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123758,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412894',1412894,171.285507,-29.285271,402.230988,0.091081,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123486,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412895',1412895,154.779907,-26.129629,405.514008,0.091081,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123214,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412896',1412896,168.913696,-28.561871,440.527588,0.091081,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122942,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412897',1412897,173.811401,-24.163700,462.640015,0.091177,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122670,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412898',1412898,172.581100,-23.212021,466.157715,0.091177,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122398,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412900',1412900,157.804596,-31.533340,347.603088,-0.000527,57,0,0,0,1,6,0,0,54,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122138,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412901',1412901,181.335403,-32.472290,364.442596,-0.000527,57,0,0,0,1,6,0,0,54,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121866,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412902',1412902,173.037506,-29.813890,400.369385,-0.000527,57,0,0,0,1,6,0,0,54,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121594,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412903',1412903,215.503098,-32.150810,397.756897,-0.000623,57,0,0,0,1,6,0,0,54,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121322,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412904',1412904,151.140594,-25.314760,448.172699,-0.000623,57,0,0,0,1,6,0,0,54,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121050,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1412905',1412905,174.771194,-22.925610,465.693207,-0.000527,57,0,0,0,1,6,0,0,54,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120778,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413304',1413304,-10.375770,-30.070101,357.174011,0.727406,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120482,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413305',1413305,-73.187973,-29.638651,377.182007,0.727406,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120210,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413306',1413306,7.099501,-28.323009,389.698700,0.727406,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119938,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413307',1413307,-25.474409,-30.239300,288.173004,-0.000527,57,0,0,0,1,6,0,0,54,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119690,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413309',1413309,2.871708,-26.996679,314.962891,-0.000527,57,0,0,0,1,6,0,0,54,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119418,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413310',1413310,-43.682961,-31.251160,365.171295,-0.000623,57,0,0,0,1,6,0,0,54,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119146,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413311',1413311,-60.904331,-32.109970,348.252411,-0.000719,57,0,0,0,1,6,0,0,54,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118874,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413312',1413312,-26.264040,-32.967579,411.424805,-0.000815,57,0,0,0,1,6,0,0,54,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118602,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413711',1413711,1.843092,-32.621689,440.420288,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118312,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413712',1413712,-47.684052,-34.975368,436.820007,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118040,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413713',1413713,-62.874069,-35.826691,451.367706,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117768,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413714',1413714,-36.040771,-30.235821,405.258087,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117496,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413715',1413715,-77.531143,-35.740108,463.920013,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117224,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413716',1413716,-81.834183,-35.561951,465.537415,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116952,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413717',1413717,-81.132263,-36.687901,482.108704,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116680,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413718',1413718,-64.000313,-36.181229,492.846497,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116408,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413719',1413719,-45.209900,-36.768280,469.442810,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116136,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413721',1413721,-49.479870,-31.658331,420.700195,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115864,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413723',1413723,-61.146591,-34.546021,439.197601,-0.000719,57,0,0,0,1,6,0,0,54,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115610,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413724',1413724,-12.636190,-34.818890,433.701904,-0.000911,57,0,0,0,1,6,0,0,54,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115338,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413725',1413725,-21.261789,-35.776421,463.813293,-0.000719,57,0,0,0,1,6,0,0,54,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115066,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1413726',1413726,-80.766037,-35.860481,467.917786,-0.000815,57,0,0,0,1,6,0,0,54,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114794,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1414923',1414923,-251.624496,8.046767,9.209213,-0.000144,39,0,0,0,1,6,0,0,39,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114510,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1414924',1414924,-237.355103,14.172800,56.681469,-0.000240,39,0,0,0,1,6,0,0,39,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114238,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1414925',1414925,-240.865097,13.064570,51.144550,-0.000240,39,0,0,0,1,6,0,0,39,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113966,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1414928',1414928,-261.738007,16.472500,59.800060,-0.000240,39,0,0,0,1,6,0,0,39,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113694,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1414929',1414929,-271.273499,19.264000,95.431259,-0.000144,39,0,0,0,1,6,0,0,39,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113422,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1414931',1414931,-299.224915,20.999870,171.197403,-0.000432,39,0,0,0,1,6,0,0,39,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113150,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1414932',1414932,-335.657013,21.199930,166.262405,-0.000432,39,0,0,0,1,6,0,0,39,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112878,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1414935',1414935,-333.186493,21.314899,161.005798,-0.000336,39,0,0,0,1,6,0,0,39,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112606,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1414936',1414936,-351.155914,21.194731,192.767197,-0.000527,39,0,0,0,1,6,0,0,39,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112334,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1414938',1414938,-239.843002,7.295271,0.194433,-0.000144,57,0,0,0,1,6,0,0,54,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112074,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1415337',1415337,-263.631592,17.193020,61.247459,-0.000240,57,0,0,0,1,6,0,0,54,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111802,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1415339',1415339,-340.596497,21.199930,161.368500,-0.000432,57,0,0,0,1,6,0,0,54,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111530,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1415340',1415340,-332.306000,21.000000,208.378098,-0.000240,57,0,0,0,1,6,0,0,54,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111258,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1415341',1415341,-328.043915,21.000000,211.118393,-0.000240,57,0,0,0,1,6,0,0,54,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110986,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1415342',1415342,-292.652802,20.981110,203.265396,-0.000432,57,0,0,0,1,6,0,0,54,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110714,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1415343',1415343,-87.174072,-39.921982,291.489105,-0.000144,20,0,0,0,1,6,0,0,20,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110436,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1415344',1415344,-112.985397,-40.020420,312.799713,-0.000144,20,0,0,0,1,6,0,0,20,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110164,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1415345',1415345,-86.737244,-40.184792,302.023285,-0.000144,20,0,0,0,1,6,0,0,20,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109892,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320617',2320617,92.850220,-10.902450,173.235596,-1.194510,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109608,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320637',2320637,-108.605698,-30.528610,272.296295,0.727406,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109330,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320638',2320638,-138.649902,-23.382610,264.698212,0.727406,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109058,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320639',2320639,-99.474327,-30.263571,271.854614,-0.000623,57,0,0,0,1,6,0,0,54,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108810,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320641',2320641,-170.286606,-27.619471,297.813995,0.727406,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108514,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320642',2320642,-171.781998,-27.505461,288.445007,0.727406,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108242,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320643',2320643,-165.769897,-27.707670,293.053192,-0.000719,57,0,0,0,1,6,0,0,54,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107994,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320645',2320645,-125.383400,-25.040100,360.402802,-0.000815,57,0,0,0,1,6,0,0,54,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107722,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320646',2320646,-137.475906,-27.672729,336.516113,0.727406,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107426,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320647',2320647,-141.819901,-30.193661,309.942688,-0.000719,57,0,0,0,1,6,0,0,54,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107178,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320649',2320649,-59.102539,-28.549570,296.388702,0.727406,10,0,0,0,1,6,0,0,10,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106882,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320650',2320650,277.147400,-31.644880,389.827209,0.091273,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106622,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320651',2320651,250.690399,-30.350241,408.346588,-0.000719,57,0,0,0,1,6,0,0,54,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106362,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320652',2320652,274.666290,-31.273550,391.993988,0.091273,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106078,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320654',2320654,299.640686,-31.632290,402.348511,0.091273,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105806,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320658',2320658,308.735687,-32.272881,398.214600,0.091465,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105534,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320659',2320659,329.910309,-31.601860,408.307800,0.091273,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105262,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320660',2320660,332.175415,-31.647480,410.657013,0.091273,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104990,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320661',2320661,344.838593,-31.113190,440.115906,0.091369,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104718,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320664',2320664,144.316299,-22.573250,513.925293,0.091177,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104446,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320665',2320665,141.166702,-21.478600,518.533508,0.091177,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104174,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320666',2320666,165.008896,-23.196131,497.355591,0.091177,39,0,0,0,1,6,0,0,39,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103902,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320667',2320667,137.956802,-21.858990,489.646698,-0.000719,57,0,0,0,1,6,0,0,54,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103642,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320668',2320668,130.324295,-19.810080,417.345490,-0.000623,57,0,0,0,1,6,0,0,54,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103370,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320669',2320669,98.407799,-20.697760,221.536407,-0.000623,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103098,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320725',2320725,-159.887802,18.109520,-68.195572,-0.000144,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102826,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320727',2320727,-170.536102,27.551260,-85.891403,-0.000144,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102554,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320728',2320728,-170.885803,27.966640,-89.178688,-0.000144,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102282,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1415346',1415346,-116.616600,-40.014709,309.506805,-0.000144,20,0,0,0,1,6,0,0,20,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102004,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1133167',1133167,36.484268,-25.833570,242.542099,1.313779,22,0,0,0,1,6,0,0,22,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101720,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2615184',2615184,360.341705,-32.028728,435.294006,-0.000144,12,0,0,0,1,6,0,0,13,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101472,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320656',2320656,342.732788,-31.784590,408.346588,-0.000815,12,0,0,0,1,6,0,0,13,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101200,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2320655',2320655,300.434814,-32.791679,411.978302,-0.000815,12,0,0,0,1,6,0,0,13,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100928,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2615186',2615186,375.478699,-32.089771,448.966095,-0.000048,12,0,0,0,1,6,0,0,13,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100656,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc2615187',2615187,382.955597,-31.998211,440.878815,-0.000048,12,0,0,0,1,6,0,0,13,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100384,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1135941',1135941,-114.854698,-40.054981,302.937286,-0.000144,306,0,0,0,1,6,0,0,129,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100118,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1135942',1135942,-97.734077,-40.054981,304.310608,-0.000144,306,0,0,0,1,6,0,0,129,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99846,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1135943',1135943,-102.695999,-40.032539,320.445892,-0.000048,306,0,0,0,1,6,0,0,129,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99574,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1135944',1135944,-83.087273,-39.867889,327.616211,-0.000048,306,0,0,0,1,6,0,0,129,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99302,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc3693121',3693121,368.459503,-32.364429,413.199005,-0.000815,12,0,0,0,1,6,0,0,13,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99024,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc3693136',3693136,242.206406,-30.411280,402.182007,-0.000911,12,0,0,0,1,6,0,0,13,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98752,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc3693138',3693138,225.451996,-28.488640,423.605713,-0.000911,12,0,0,0,1,6,0,0,13,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98480,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc3693140',3693140,215.350494,-32.486500,387.777496,-0.000911,12,0,0,0,1,6,0,0,13,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98208,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411244',1411244,-193.905304,2.125694,-41.069290,-0.918835,771,0,0,0,0,6,0,0,218,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97948,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411238',1411238,-212.568405,1.504992,-84.178993,-0.253683,771,0,0,0,0,6,0,0,218,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97676,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc3693103',3693103,-189.283005,2.362727,-83.005783,0.013135,771,0,0,0,1,6,0,0,218,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97404,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc3693097',3693097,-224.085602,1.055553,-69.316994,0.013135,771,0,0,0,1,6,0,0,218,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97132,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc3693102',3693102,-195.941101,2.945007,-104.081802,0.013135,771,0,0,0,1,6,0,0,218,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96860,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411242',1411242,-213.856293,1.439267,-83.871033,0.857281,771,0,0,0,0,6,0,0,218,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96588,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411240',1411240,-212.756607,1.846313,-94.163452,0.013039,771,0,0,0,1,6,0,0,218,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96316,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc1411241',1411241,-214.172699,1.359615,-82.278023,0.895459,771,0,0,0,0,6,0,0,218,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96044,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc3693111',3693111,-200.096695,2.060742,-67.256340,0.013135,771,0,0,0,1,6,0,0,218,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95772,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc3693105',3693105,-210.620300,1.998901,-96.299683,0.013231,771,0,0,0,1,6,0,0,218,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95500,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69268,'LVD_BNPC_03','f1f1','bnpc3693109',3693109,-195.513901,2.216981,-40.186169,1.312537,771,0,0,0,0,6,0,0,218,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95228,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1133235',1133235,-294.825012,66.698837,-219.308807,-0.000336,48,0,0,0,1,6,0,0,48,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94446,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1133239',1133239,-293.659912,67.460083,-222.491806,-0.000144,48,0,0,0,1,6,0,0,48,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94174,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1133246',1133246,-302.510101,60.959740,-159.319504,-0.000240,48,0,0,0,1,6,0,0,48,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93902,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1133248',1133248,-302.700409,62.132381,-166.402496,-0.000336,48,0,0,0,1,6,0,0,48,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93630,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1162402',1162402,-291.152710,61.247379,-168.828796,-0.000623,48,0,0,0,1,6,0,0,48,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93358,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415347',1415347,-244.678497,66.147812,-179.125702,-0.000432,48,0,0,0,1,6,0,0,48,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93086,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415348',1415348,-241.352005,66.788689,-178.362701,-0.000432,48,0,0,0,1,6,0,0,48,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92814,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415361',1415361,-290.298706,60.229500,-115.695396,-0.000527,48,0,0,0,1,6,0,0,48,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92542,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154932',2154932,-452.140106,63.523258,-235.614594,1.309273,101,0,0,0,1,6,0,0,91,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92276,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154933',2154933,-486.564514,58.060532,-222.186707,1.309464,101,0,0,0,1,6,0,0,91,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92004,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154938',2154938,-449.027313,55.863232,-205.401703,1.309369,101,0,0,0,1,6,0,0,91,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91732,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154939',2154939,-453.788086,56.259960,-203.845306,1.309369,101,0,0,0,1,6,0,0,91,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91460,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154940',2154940,-449.607086,55.100281,-200.518799,1.309369,101,0,0,0,1,6,0,0,91,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91188,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154945',2154945,-487.007385,67.617432,-267.616608,1.309369,101,0,0,0,1,6,0,0,91,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90916,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154973',2154973,-572.310486,49.567921,-226.453506,1.309177,101,0,0,0,1,6,0,0,91,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90644,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154941',2154941,-459.128693,64.652428,-264.026886,1.309369,98,0,0,0,1,6,0,0,91,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90378,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154943',2154943,-483.543213,58.182598,-215.136993,1.309369,100,0,0,0,1,6,0,0,91,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90112,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154944',2154944,-488.316101,67.415604,-265.598907,1.309177,99,0,0,0,1,6,0,0,91,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89846,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154959',2154959,-474.076904,71.450668,-300.198914,1.309176,99,0,0,0,1,6,0,0,91,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89574,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154952',2154952,-505.210999,72.800743,-287.708893,1.309273,98,0,0,0,1,6,0,0,91,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89290,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154950',2154950,-508.114197,73.937157,-289.616486,1.309176,99,0,0,0,1,6,0,0,91,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89030,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154963',2154963,-481.180389,74.270866,-319.393005,1.309176,100,0,0,0,1,6,0,0,91,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88752,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154954',2154954,-475.800293,75.099243,-316.311890,1.309369,99,0,0,0,1,6,0,0,91,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88486,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154965',2154965,-509.328613,51.460609,-230.011002,1.309177,98,0,0,0,1,6,0,0,91,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88202,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154978',2154978,-533.645081,43.546291,-230.397507,1.309369,100,0,0,0,1,6,0,0,91,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87936,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154966',2154966,-530.510376,48.020088,-245.654999,1.309177,99,0,0,0,1,6,0,0,91,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87670,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154968',2154968,-550.774414,46.775639,-245.014099,1.309176,100,0,0,0,1,6,0,0,91,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87392,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154969',2154969,-546.684998,46.860470,-244.251205,1.309273,99,0,0,0,1,6,0,0,91,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87126,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154976',2154976,-508.251099,57.374981,-255.303207,1.309273,100,0,0,0,1,6,0,0,91,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86848,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154971',2154971,-547.356384,51.163448,-199.786407,1.309177,98,0,0,0,1,6,0,0,91,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86570,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154970',2154970,-545.647400,50.522579,-203.540100,1.309273,98,0,0,0,1,6,0,0,91,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86298,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154974',2154974,-564.080322,50.297001,-211.993607,1.309176,98,0,0,0,1,6,0,0,91,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86026,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3693173',3693173,-508.842590,40.237991,-79.606361,-0.000048,305,0,0,0,1,6,0,0,236,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85772,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3693174',3693174,-516.899414,40.146439,-74.967621,-0.000048,305,0,0,0,1,6,0,0,236,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85500,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3693175',3693175,-514.549500,40.207470,-77.103882,-0.000048,305,0,0,0,1,6,0,0,236,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85228,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3693176',3693176,-520.866821,40.146439,-64.255783,-0.000048,305,0,0,0,1,6,0,0,236,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84956,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3693177',3693177,-515.685120,40.359970,-54.677021,1.257989,305,0,0,0,1,6,0,0,236,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84684,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3693178',3693178,-503.929199,41.000938,-56.107471,-0.000048,305,0,0,0,1,6,0,0,236,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84412,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3693179',3693179,-483.658691,45.245129,-60.343559,-0.000000,305,0,0,0,1,6,0,0,236,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84140,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3693180',3693180,-481.533905,45.933941,-62.817669,-0.000000,305,0,0,0,1,6,0,0,236,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83868,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1135673',1135673,-398.458893,51.156910,68.804077,0.208145,304,0,0,0,1,6,0,0,238,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83602,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2320790',2320790,-439.475098,48.996670,43.930679,-0.283120,304,0,0,0,1,6,0,0,238,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83330,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2320791',2320791,-432.144196,49.318508,-4.165760,-0.283120,304,0,0,0,1,6,0,0,238,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83058,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3693183',3693183,-378.957794,51.132931,52.109509,-0.283120,304,0,0,0,1,6,0,0,238,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82786,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3693184',3693184,-397.512787,49.301849,10.055650,-0.283120,304,0,0,0,1,6,0,0,238,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82514,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3693185',3693185,-433.121094,49.318531,34.558170,-0.283120,304,0,0,0,1,6,0,0,238,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82242,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1162426',1162426,-501.091003,65.293297,90.318100,0.997247,182,0,0,0,1,6,0,0,207,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81976,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1135671',1135671,-462.059692,64.698357,68.829857,1.433236,182,0,0,0,1,6,0,0,207,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81704,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1135688',1135688,-508.781586,65.293297,40.634731,1.243166,182,0,0,0,1,6,0,0,207,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81432,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1162427',1162427,-534.918823,65.381104,43.912449,1.437218,182,0,0,0,1,6,0,0,207,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81160,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1135687',1135687,-520.153870,65.239517,61.102520,0.966710,182,0,0,0,1,6,0,0,207,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80888,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415379',1415379,-454.154297,61.631142,-28.213980,-0.283120,53,0,0,0,1,6,0,0,130,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80622,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415378',1415378,-446.097504,57.907940,-22.476589,-0.283120,53,0,0,0,1,6,0,0,130,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80350,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415377',1415377,-416.159302,65.476410,-55.924358,-0.283120,53,0,0,0,1,6,0,0,130,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80078,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415376',1415376,-417.990387,64.377762,-51.102509,-0.283120,53,0,0,0,1,6,0,0,130,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79806,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1135685',1135685,-418.844910,58.274151,-34.409142,-0.283120,53,0,0,0,1,6,0,0,130,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79534,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1162412',1162412,-365.503204,62.324249,-85.497841,-0.283120,53,0,0,0,1,6,0,0,130,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79262,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1162413',1162413,-365.240814,62.204288,-87.690971,-0.283120,53,0,0,0,1,6,0,0,130,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78990,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2320800',2320800,-238.635895,62.272018,25.375710,-0.001294,135,0,0,0,1,6,0,0,117,0,0.000000,34,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78724,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2320797',2320797,-193.570099,74.743111,21.367661,-0.001199,135,0,0,0,1,6,0,0,117,0,0.000000,34,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78452,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154983',2154983,-505.135406,73.043167,-290.313904,-0.000527,135,0,0,0,1,6,0,0,117,0,0.000000,34,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78180,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154980',2154980,-468.316010,57.494301,-212.252502,-0.000527,135,0,0,0,1,6,0,0,117,0,0.000000,34,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77908,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154916',2154916,-408.031494,53.104481,35.133572,-0.001486,135,0,0,0,1,6,0,0,117,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77636,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154915',2154915,-397.116089,56.778770,-87.632607,-0.001007,135,0,0,0,1,6,0,0,117,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77364,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154917',2154917,-274.891388,62.760250,-48.600040,-0.001199,135,0,0,0,1,6,0,0,117,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77092,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154912',2154912,-384.725800,64.377808,-230.792694,-0.000527,135,0,0,0,1,6,0,0,117,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76820,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154986',2154986,-568.407227,50.556568,-214.304596,-0.000527,135,0,0,0,1,6,0,0,117,0,0.000000,34,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76548,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154985',2154985,-528.526672,48.142170,-244.495300,-0.000527,135,0,0,0,1,6,0,0,117,0,0.000000,34,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76276,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154914',2154914,-416.247894,61.594559,-135.801102,-0.001103,135,0,0,0,1,6,0,0,117,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76004,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3694403',3694403,-314.266113,63.832611,57.746510,-0.001199,135,0,0,0,1,6,0,0,117,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75732,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154982',2154982,-485.247803,68.405968,-274.754211,-0.000623,135,0,0,0,1,6,0,0,117,0,0.000000,34,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75460,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154925',2154925,-365.255188,56.015820,61.905800,-0.001199,135,0,0,0,1,6,0,0,117,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75188,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3742079',3742079,-530.733887,65.311684,98.466423,1.286934,182,0,0,0,1,6,0,0,207,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74904,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3742133',3742133,-526.186829,65.311691,102.647400,1.180224,182,0,0,0,1,6,0,0,207,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74632,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2320801',2320801,-219.805405,67.608017,9.079071,0.207954,58,0,0,0,1,6,0,0,55,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74378,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2320793',2320793,-242.034393,58.664711,38.845100,0.208049,58,0,0,0,1,6,0,0,55,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74106,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2320794',2320794,-206.227997,57.382519,52.006420,0.207954,58,0,0,0,1,6,0,0,55,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73834,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415381',1415381,-285.852814,61.458679,25.148211,0.208241,58,0,0,0,1,6,0,0,55,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73562,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1135651',1135651,-262.056305,55.970860,36.748020,0.787759,58,0,0,0,1,6,0,0,55,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73290,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3693623',3693623,-184.619797,78.429970,42.778721,0.207954,58,0,0,0,1,6,0,0,55,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73018,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3693624',3693624,-191.994202,77.183746,37.510250,0.208049,58,0,0,0,1,6,0,0,55,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72746,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415367',1415367,-304.768494,62.180470,-99.076874,-0.283120,178,0,0,0,1,6,0,0,221,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72480,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415365',1415365,-308.186493,62.943420,-50.370079,-0.283120,178,0,0,0,1,6,0,0,221,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72208,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415364',1415364,-313.710297,62.882381,-46.982571,-0.283120,178,0,0,0,1,6,0,0,221,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71936,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415368',1415368,-275.257507,60.807152,-84.214577,-0.283120,178,0,0,0,1,6,0,0,221,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71664,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415375',1415375,-262.012695,62.577202,-39.993938,-0.283120,178,0,0,0,1,6,0,0,221,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71392,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3746465',3746465,-208.691696,52.495350,-42.669102,-0.283120,178,0,0,0,1,6,0,0,221,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71120,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3746466',3746466,-219.824799,58.286751,-60.483898,-0.283120,178,0,0,0,1,6,0,0,221,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70848,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3746467',3746467,-215.491898,57.635231,-71.491089,-0.283120,178,0,0,0,1,6,0,0,221,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70576,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1133255',1133255,-356.364685,65.308533,-258.518585,-0.000048,48,0,0,0,1,6,0,0,48,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70238,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1133257',1133257,-369.039490,65.567993,-232.715393,-0.000048,48,0,0,0,1,6,0,0,48,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69966,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1133258',1133258,-392.416290,67.276978,-249.713898,-0.000144,48,0,0,0,1,6,0,0,48,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69694,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1162398',1162398,-396.566711,63.980961,-218.615997,-0.000432,48,0,0,0,1,6,0,0,48,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69422,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1162399',1162399,-347.955994,66.968529,-220.251999,-0.000336,48,0,0,0,1,6,0,0,48,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69150,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415352',1415352,-351.735809,67.765259,-226.093002,-0.000335,48,0,0,0,1,6,0,0,48,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68878,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415353',1415353,-354.085602,67.313278,-222.043106,-0.000336,48,0,0,0,1,6,0,0,48,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68606,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415354',1415354,-354.115387,66.529556,-254.235596,-0.000048,48,0,0,0,1,6,0,0,48,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68334,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1162403',1162403,-351.183289,63.740372,-153.645599,-0.000336,53,0,0,0,1,6,0,0,130,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68110,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1162416',1162416,-353.685791,63.380310,-149.922501,-0.000240,53,0,0,0,1,6,0,0,130,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415358',1415358,-429.221008,60.624039,-145.159103,-0.000144,53,0,0,0,1,6,0,0,130,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67566,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415359',1415359,-431.571014,61.023251,-141.100204,-0.000144,53,0,0,0,1,6,0,0,130,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67294,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415360',1415360,-409.323303,61.264919,-120.927803,-0.000336,53,0,0,0,1,6,0,0,130,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67022,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415382',1415382,-414.267212,60.471451,-98.405472,-0.000336,53,0,0,0,1,6,0,0,130,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66750,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415383',1415383,-462.152802,62.699409,-106.490501,-0.000240,53,0,0,0,1,6,0,0,130,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66478,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc1415384',1415384,-465.866913,62.824699,-107.035797,-0.000240,53,0,0,0,1,6,0,0,130,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66206,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3884907',3884907,-419.228607,55.416000,66.506737,-0.001486,135,0,0,0,1,6,0,0,117,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65940,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc3693188',3693188,-322.396393,57.338970,-6.726664,-0.283120,2193,0,0,0,1,6,0,0,2057,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65686,4,1,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc4333043',4333043,-309.205597,57.338970,-10.110600,-0.283120,2193,0,0,0,1,6,0,0,2057,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65414,4,1,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc4333385',4333385,-348.321503,67.616417,-233.774200,-0.000527,135,0,0,0,1,6,0,0,117,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65124,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154910',2154910,-290.943787,61.814331,-175.341400,-0.000815,2267,0,0,0,1,6,0,0,2190,0,0.000000,29,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64876,6,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154901',2154901,-288.593994,59.581390,-121.735901,-0.000527,2267,0,0,0,1,6,0,0,2190,0,0.000000,29,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64604,6,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69317,'LVD_BNPC_04','f1f1','bnpc2154903',2154903,-303.822388,59.830570,-130.571503,-0.001007,2267,0,0,0,1,6,0,0,2190,0,0.000000,29,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64332,6,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc2320732',2320732,-547.753174,19.485781,-191.943298,1.566639,30,0,0,0,2,6,0,0,131,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63894,1,0,0,0,0,0,4302234,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302206',4302206,-555.148071,29.067560,-230.785706,1.309273,98,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63550,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302207',4302207,-516.437683,22.056881,-221.606796,1.309369,101,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63272,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302208',4302208,-524.244812,24.477020,-253.274597,1.309273,99,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63018,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302209',4302209,-527.577820,24.719191,-254.932404,1.309273,100,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62740,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302212',4302212,-582.818420,21.723471,-238.845596,1.309273,98,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62462,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302213',4302213,-596.266602,20.622200,-226.349106,1.309273,101,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62184,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302214',4302214,-579.272827,21.076719,-214.966003,1.309273,100,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61924,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302215',4302215,-581.780823,21.842831,-241.897293,1.309273,99,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61658,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302216',4302216,-528.772888,19.922779,-195.839096,1.309273,98,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61374,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302217',4302217,-537.197327,20.139130,-199.348495,1.309273,101,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61096,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302218',4302218,-563.208191,18.867491,-186.546005,1.309273,100,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60836,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302219',4302219,-527.765808,20.129919,-200.682007,1.309273,99,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60570,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302220',4302220,-569.817627,10.940670,-130.235794,1.309273,98,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60286,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302221',4302221,-617.120605,21.896610,-197.436493,1.309369,101,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60008,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302222',4302222,-575.432983,11.001710,-129.716995,1.309273,100,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59748,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302223',4302223,-568.810608,10.910160,-133.318100,1.309273,99,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59482,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302225',4302225,-502.711792,17.279470,-157.029495,1.309273,100,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59204,1,0,0,0,33,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302226',4302226,-496.089386,16.799740,-160.630707,1.309273,99,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58938,1,0,0,0,33,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302228',4302228,-481.979004,18.189381,-229.549103,1.309273,98,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58654,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302229',4302229,-555.941528,25.463579,-260.210693,1.309369,101,0,0,0,1,6,0,0,91,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58376,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302351',4302351,-572.925293,18.257090,-181.740707,-0.527342,30,0,0,0,5,6,0,0,131,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57718,1,0,0,0,0,0,4302260,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93217,'LVD_BNPC_05','f1f1','bnpc4302353',4302353,-513.667175,23.842480,-245.333893,1.396474,30,0,0,0,5,6,0,0,131,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57446,1,0,0,0,0,0,4302268,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98151,'LVD_easter_2014','f1f1','bnpc4621046',4621046,370.051086,-32.295422,411.821198,-0.000000,2770,0,0,0,1,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42124,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98151,'LVD_easter_2014','f1f1','bnpc4621047',4621047,-538.803589,50.907551,-203.075394,-0.230401,2772,0,0,0,1,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41858,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82198,'LVD_guard_01','f1f1','bnpc3869502',3869502,125.699600,25.160120,-311.621185,-0.000000,582,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41108,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82198,'LVD_guard_01','f1f1','bnpc3869509',3869509,-307.502899,63.448620,-285.687714,-0.000000,580,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40842,5,0,0,0,0,30052,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82198,'LVD_guard_01','f1f1','bnpc3869525',3869525,-206.130997,53.564651,-126.977600,-1.483250,582,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40564,5,0,0,0,0,30053,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82198,'LVD_guard_01','f1f1','bnpc3869531',3869531,96.403351,-6.334397,-121.433502,-0.553801,580,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40298,5,0,0,0,0,30054,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82198,'LVD_guard_01','f1f1','bnpc3869540',3869540,164.007095,-6.013201,-52.486290,1.527773,582,0,0,0,0,6,0,0,453,0,0.750000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40020,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82198,'LVD_guard_01','f1f1','bnpc3869598',3869598,-4.837158,-7.919495,-22.201900,0.000000,583,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39760,5,0,20,0,0,30055,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82198,'LVD_guard_01','f1f1','bnpc3869604',3869604,85.465698,-6.089244,60.991131,1.570451,580,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39482,5,0,0,0,0,30052,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82198,'LVD_guard_01','f1f1','bnpc3869607',3869607,14.362120,-8.102512,100.498901,0.413666,582,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39204,5,0,0,0,0,30053,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82198,'LVD_guard_01','f1f1','bnpc4510293',4510293,213.253204,-32.025242,324.145386,-0.541245,581,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38950,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86467,'LVD_kakashi','f1f1','bnpc4083871',4083871,127.641701,-6.332520,-100.389198,0.000000,901,0,0,0,0,6,0,0,541,0,0.000000,1,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38544,8,0,0,4295658,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86467,'LVD_kakashi','f1f1','bnpc4295672',4295672,132.951797,-6.332520,-100.114502,0.128808,901,0,0,0,0,6,0,0,541,0,0.000000,1,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37512,8,0,0,4295661,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86467,'LVD_kakashi','f1f1','bnpc4295673',4295673,137.910706,-6.438695,-96.608414,-1.152252,901,0,0,0,0,6,0,0,541,0,0.000000,1,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37240,8,0,0,4295662,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86467,'LVD_kakashi','f1f1','bnpc4295675',4295675,126.695297,-6.948534,-90.459633,1.558816,901,0,0,0,0,6,0,0,541,0,0.000000,1,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36968,8,0,0,4295663,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86467,'LVD_kakashi','f1f1','bnpc4295677',4295677,126.418900,-6.971872,-84.529358,1.464010,901,0,0,0,0,6,0,0,541,0,0.000000,1,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36696,8,0,0,4295664,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86467,'LVD_kakashi','f1f1','bnpc4296957',4296957,95.628906,-2.029270,-42.382439,-0.153371,901,0,0,0,0,6,0,0,541,0,0.000000,1,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35816,1,0,0,2280260,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86467,'LVD_kakashi','f1f1','bnpc4296958',4296958,98.693558,-2.029731,-43.942860,-0.378425,901,0,0,0,1,6,0,0,541,0,0.000000,1,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35544,1,0,0,2280261,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86467,'LVD_kakashi','f1f1','bnpc4296959',4296959,101.467598,-2.005454,-46.176739,-0.533575,901,0,0,0,1,6,0,0,541,0,0.000000,1,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35272,1,0,0,2280262,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86467,'LVD_kakashi','f1f1','bnpc4296960',4296960,104.146896,-1.968804,-48.332958,-0.636762,901,0,0,0,1,6,0,0,541,0,0.000000,1,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35000,1,0,0,2280263,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81860,'LVD_test','f1f1','bnpc4083778',4083778,-297.044800,21.140360,151.049896,0.659253,56,0,0,0,5,6,0,0,0,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8174,1,0,0,0,0,0,4083775,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81860,'LVD_test','f1f1','bnpc4083796',4083796,-296.744812,21.145109,151.349899,0.659253,56,0,0,0,5,6,0,0,0,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7662,1,0,0,0,0,0,4083797,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81860,'LVD_test','f1f1','bnpc4083798',4083798,-296.444794,21.149870,151.649902,0.659253,56,0,0,0,5,6,0,0,0,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7278,1,0,0,0,0,0,4083799,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81860,'LVD_test','f1f1','bnpc4083800',4083800,-296.144806,21.154619,151.949905,0.659253,56,0,0,0,6,6,0,0,0,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6894,1,0,0,0,0,0,4083801,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81860,'LVD_test','f1f1','bnpc4083802',4083802,-295.844788,21.159370,152.249893,0.659253,56,0,0,0,6,6,0,0,0,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6510,1,0,0,0,0,0,4083803,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81860,'LVD_test','f1f1','bnpc4083795',4083795,-327.840088,21.103210,206.835907,1.139142,58,0,0,0,6,6,0,0,0,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6054,1,0,0,0,0,0,4083794,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81860,'LVD_test','f1f1','bnpc4083772',4083772,-327.757690,21.357790,204.228699,1.139222,58,0,0,0,2,6,0,0,0,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5782,1,0,0,0,0,0,4083771,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77548,'Behest_b201_01','f1f1','bnpc3757576',3757576,-101.762497,-40.054981,311.940094,1.371400,515,0,0,0,0,6,0,0,72,0,0.000000,10,0,120,1,0,1,0,60,20,1,1,0,1,1,0.000000,1.000000,174708,1,1,80,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77548,'Behest_b201_01','f1f1','bnpc3794370',3794370,-101.609703,-40.037930,301.800415,-0.000000,516,0,0,0,1,6,0,0,20,0,0.000000,10,0,120,1,0,1,0,60,20,1,1,0,1,1,0.000000,1.000000,174442,1,0,80,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77548,'Behest_b201_01','f1f1','bnpc3794371',3794371,-102.454399,-40.038940,322.033112,0.386067,516,0,0,0,1,6,0,0,20,0,0.000000,10,0,120,1,0,1,0,60,20,1,1,0,1,1,0.000000,1.000000,174170,1,0,80,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77548,'Behest_b201_01','f1f1','bnpc3794372',3794372,-100.147202,-40.035809,321.185211,0.259298,516,0,0,0,1,6,0,0,20,0,0.000000,10,0,120,1,0,1,0,60,20,1,1,0,1,1,0.000000,1.000000,173898,1,0,80,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77548,'Behest_b201_01','f1f1','bnpc3794373',3794373,-99.594093,-40.037621,302.394501,-0.000000,516,0,0,0,1,6,0,0,20,0,0.000000,10,0,120,1,0,1,0,60,20,1,1,0,1,1,0.000000,1.000000,173626,1,0,80,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77548,'Behest_b201_01','f1f1','bnpc3794374',3794374,-111.253502,-40.023159,315.073395,0.816039,517,0,0,0,1,6,0,0,19,0,0.000000,10,0,120,1,0,1,0,60,20,1,1,0,1,1,0.000000,1.000000,173360,1,0,80,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649534',3649534,-116.608498,-3.008211,-56.169800,0.955493,528,0,0,0,1,6,0,0,462,0,0.000000,24,0,120,1,0,2,0,20,20,1,1,0,1,0,0.000000,1.000000,152246,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649536',3649536,-112.725601,-4.231061,-44.251598,-0.013720,528,0,0,0,1,6,0,0,462,0,0.000000,24,0,120,1,0,2,0,20,20,1,1,0,1,0,0.000000,1.000000,151974,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649538',3649538,-33.162628,-6.881468,-59.787571,0.054298,528,0,0,0,1,6,0,0,462,0,0.000000,24,0,120,1,0,3,0,20,20,1,1,0,1,0,0.000000,1.000000,151702,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649541',3649541,-29.821199,-6.106857,-62.489349,0.433051,528,0,0,0,1,6,0,0,462,0,0.000000,24,0,120,1,0,3,0,20,20,1,1,0,1,0,0.000000,1.000000,151430,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649542',3649542,-34.066101,-6.987216,-60.996029,0.520726,528,0,0,0,1,6,0,0,462,0,0.000000,24,0,120,1,0,4,0,20,20,1,1,0,1,0,0.000000,1.000000,151158,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649535',3649535,-81.651070,-5.900000,-60.142941,1.055924,530,0,0,0,1,6,0,0,464,0,0.000000,25,0,120,1,0,1,0,20,20,1,1,0,1,0,0.000000,1.000000,150892,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649537',3649537,-83.001892,-5.807223,-61.376400,1.047197,530,0,0,0,1,6,0,0,464,0,0.000000,25,0,120,1,0,1,0,20,20,1,1,0,1,0,0.000000,1.000000,150620,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649539',3649539,-96.645416,-4.500000,-57.114269,1.308997,530,0,0,0,1,6,0,0,464,0,0.000000,25,0,120,1,0,2,0,20,20,1,1,0,1,0,0.000000,1.000000,150348,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649540',3649540,-96.492447,-4.500000,-59.377861,1.308997,530,0,0,0,1,6,0,0,464,0,0.000000,25,0,120,1,0,2,0,20,20,1,1,0,1,0,0.000000,1.000000,150076,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649543',3649543,-36.202900,-5.917986,-61.761318,0.651788,530,0,0,0,1,6,0,0,464,0,0.000000,25,0,120,1,0,4,0,20,20,1,1,0,1,0,0.000000,1.000000,149804,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649546',3649546,-35.807590,-4.544854,-62.467838,0.253780,530,0,0,0,1,6,0,0,464,0,0.000000,25,0,120,1,0,5,0,20,20,1,1,0,1,0,0.000000,1.000000,149532,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649544',3649544,-113.143700,-2.430933,-42.524570,0.463308,529,0,0,0,1,6,0,0,463,0,0.000000,25,0,120,1,0,2,0,20,20,1,1,0,1,0,0.000000,1.000000,149266,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649545',3649545,-120.959396,-2.897995,-63.854069,0.759149,529,0,0,0,1,6,0,0,463,0,0.000000,25,0,120,1,0,2,0,20,20,1,1,0,1,0,0.000000,1.000000,148994,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649551',3649551,-125.939301,4.279900,-56.284279,1.227560,531,0,0,0,0,6,0,0,464,0,0.000000,24,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,148728,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649552',3649552,-126.547096,4.148329,-54.434261,0.329251,531,0,0,0,0,6,0,0,464,0,0.000000,24,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,148456,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649553',3649553,-126.817802,4.135148,-52.536861,1.202899,531,0,0,0,0,6,0,0,464,0,0.000000,24,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,148184,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649554',3649554,-127.813904,4.147610,-50.080341,1.481600,531,0,0,0,0,6,0,0,464,0,0.000000,24,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,147912,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649555',3649555,-126.909302,4.135148,-48.447441,0.489156,531,0,0,0,0,6,0,0,464,0,0.000000,24,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,147640,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649653',3649653,-154.608200,15.368350,-65.067238,0.773975,530,0,0,0,1,6,0,0,464,0,0.000000,25,0,120,1,0,3,0,20,20,1,1,0,1,0,0.000000,1.000000,147356,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649655',3649655,-156.136703,16.583481,-67.473389,0.409369,530,0,0,0,1,6,0,0,464,0,0.000000,25,0,120,1,0,3,0,20,20,1,1,0,1,0,0.000000,1.000000,147084,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649656',3649656,-179.670303,32.833000,-94.155411,0.599055,530,0,0,0,1,6,0,0,464,0,0.000000,25,0,120,1,0,4,0,20,20,1,1,0,1,0,0.000000,1.000000,146812,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649657',3649657,-178.025101,32.147640,-93.475937,0.351527,530,0,0,0,1,6,0,0,464,0,0.000000,25,0,120,1,0,4,0,20,20,1,1,0,1,0,0.000000,1.000000,146540,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649664',3649664,-189.532303,41.885971,-119.310303,-0.000048,528,0,0,0,1,6,0,0,462,0,0.000000,24,0,120,1,0,7,0,20,20,1,1,0,1,0,0.000000,1.000000,146262,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649665',3649665,-184.905197,41.942249,-123.664001,-0.000000,528,0,0,0,1,6,0,0,462,0,0.000000,24,0,120,1,0,7,0,20,20,1,1,0,1,0,0.000000,1.000000,145990,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649666',3649666,-187.473801,41.957771,-121.142601,-0.000000,529,0,0,0,1,6,0,0,463,0,0.000000,25,0,120,1,0,7,0,20,20,1,1,0,1,0,0.000000,1.000000,145730,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649667',3649667,-178.057602,41.916481,-126.604103,-1.072700,529,0,0,0,1,6,0,0,463,0,0.000000,25,0,120,1,0,7,0,20,20,1,1,0,1,0,0.000000,1.000000,145458,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649668',3649668,-181.902802,49.881691,-128.282593,-0.000048,531,0,0,0,0,6,0,0,464,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,145192,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649669',3649669,-182.190796,49.878880,-129.845306,-0.000000,531,0,0,0,0,6,0,0,464,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,144920,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649670',3649670,-183.679596,49.884739,-127.695602,-0.000000,531,0,0,0,0,6,0,0,464,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,144648,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649671',3649671,-186.005096,48.500000,-132.451096,1.492879,531,0,0,0,0,6,0,0,464,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,144376,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649672',3649672,-184.254196,49.527012,-131.269897,1.485076,531,0,0,0,0,6,0,0,464,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,144104,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649691',3649691,-210.157394,54.304661,-118.056503,0.147625,532,0,0,0,1,6,0,0,464,0,0.000000,26,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,143838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649692',3649692,-208.234695,54.273369,-115.708199,0.701095,532,0,0,0,1,6,0,0,464,0,0.000000,26,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,143566,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3649693',3649693,-221.769302,63.284500,-165.444504,-0.000000,533,0,0,0,0,6,0,0,465,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,143300,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3689199',3689199,-119.756401,3.351500,-51.224579,-0.000048,587,0,0,0,0,6,0,0,511,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,142450,1,0,0,3757610,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694556',3694556,-182.887802,43.122002,-123.571899,-1.570451,587,0,0,0,0,9,0,0,511,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,142178,1,0,0,3757624,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694708',3694708,-183.886505,46.944870,-138.964005,-0.000048,587,0,0,0,0,6,0,0,511,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,141906,1,0,0,3757631,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3689198',3689198,-106.594704,-4.170164,-45.760490,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,141436,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3693874',3693874,-103.121201,-3.580267,-49.454700,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,141164,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3693875',3693875,-104.982101,-3.196634,-53.098911,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,140892,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3693876',3693876,-108.902603,-3.220144,-57.378609,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,140620,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3693877',3693877,-112.914299,-2.920370,-61.152161,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,140348,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3693878',3693878,-118.541496,-3.524223,-65.074699,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,140076,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3693879',3693879,-127.421204,-1.894447,-64.911987,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,139804,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3693882',3693882,-117.238998,2.062697,-50.861721,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,139532,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3693883',3693883,-111.594101,-0.943726,-50.930599,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,139260,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3693895',3693895,-177.021194,42.962742,-127.235199,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,138988,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3693896',3693896,-179.115005,43.081501,-125.303001,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,138716,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3693897',3693897,-185.542801,43.096100,-122.654099,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,138444,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3693898',3693898,-189.556000,41.885941,-119.257698,-0.000048,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,138172,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3693899',3693899,-178.174698,42.801109,-131.694199,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,137900,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3693900',3693900,-182.111496,45.414440,-136.136200,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,137628,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3693901',3693901,-183.720001,46.815128,-138.470795,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,137356,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694231',3694231,-223.525299,65.249573,-170.207108,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,137084,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694232',3694232,-227.344406,63.823719,-164.692505,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,136812,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694233',3694233,-223.804092,61.882381,-161.242096,-0.000048,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,136540,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694234',3694234,-220.047302,61.837791,-160.947006,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,136268,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694235',3694235,-224.761902,60.228039,-156.415405,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,135996,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694236',3694236,-205.020996,58.000000,-156.367096,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,135724,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694237',3694237,-211.748398,61.883240,-163.842606,-0.000048,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,135452,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694238',3694238,-216.468796,60.165791,-156.489304,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,135180,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694385',3694385,-213.465607,60.589409,-160.413696,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,134908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694386',3694386,-210.821396,59.119900,-157.051804,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,134636,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694387',3694387,-223.927094,55.000000,-140.171799,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,134364,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694388',3694388,-226.103302,58.664471,-152.343796,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,134092,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694389',3694389,-219.954895,58.599998,-152.264801,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,133820,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694390',3694390,-225.741501,57.509960,-147.460693,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,133548,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3847262',3847262,-219.378998,56.799999,-145.252808,-0.000048,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,133276,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3847265',3847265,-213.845306,58.269249,-151.179092,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,133004,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3847268',3847268,-206.978104,57.500000,-152.613297,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,132732,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3847269',3847269,-213.041397,54.890949,-139.595398,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,132460,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3847272',3847272,-207.738907,55.158810,-140.686600,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,132188,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3847274',3847274,-214.379593,57.000000,-145.399094,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,131916,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694397',3694397,-219.951004,59.547138,-155.322601,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,131644,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694398',3694398,-222.347504,56.272770,-143.199295,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,131372,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694399',3694399,-212.869400,59.964981,-159.143494,-0.000048,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,131100,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694400',3694400,-214.366898,55.786701,-141.797897,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,130828,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3694401',3694401,-226.424393,63.148739,-164.934906,-0.000144,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,130556,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3915772',3915772,-191.631607,41.498100,-115.714798,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,126892,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3915774',3915774,-186.461502,40.815510,-115.714699,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,126620,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3915775',3915775,-191.290802,39.453892,-110.621498,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,126348,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc3915776',3915776,-183.433807,37.026119,-102.480698,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,126076,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096536',4096536,-186.529602,39.686901,-111.568199,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,118796,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096537',4096537,-181.427994,39.344261,-112.939499,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,118524,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096538',4096538,-186.559402,36.195530,-100.596802,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,118252,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096539',4096539,-183.201904,38.158939,-107.253899,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,117980,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096540',4096540,-178.322098,36.695381,-107.774803,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,117708,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096541',4096541,-177.306396,35.299992,-103.577698,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,117436,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096542',4096542,-179.883301,34.760460,-98.921440,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,117164,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096543',4096543,-182.122192,37.660160,-116.731796,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,116892,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096546',4096546,-188.680405,37.935089,-105.966400,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,116620,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096547',4096547,-181.238098,41.939281,-130.417404,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,116348,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096548',4096548,-182.352997,41.921391,-125.871902,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,116076,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096550',4096550,-220.316299,59.718418,-155.768097,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,115804,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096551',4096551,-226.915497,65.542610,-170.789902,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,115532,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096552',4096552,-215.660599,61.884190,-163.419998,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,115260,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096553',4096553,-206.914001,60.896561,-165.819702,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,114988,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096554',4096554,-218.194504,54.570061,-138.647797,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,114716,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096555',4096555,-222.748993,56.050701,-144.099106,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,114444,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096556',4096556,-203.668396,56.015011,-150.776199,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,114172,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81946,'Behest_b252_02','f1f1','bnpc4096557',4096557,-215.235397,53.917820,-133.987595,-0.000000,596,0,0,0,0,6,0,0,1385,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,113900,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80466,'FATE_001','f1f1','bnpc3842558',3842558,201.877106,-5.000009,-120.503700,-0.000000,439,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104130,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80466,'FATE_001','f1f1','bnpc3842559',3842559,202.143906,-4.714014,-132.620499,-0.000000,439,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103858,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80466,'FATE_001','f1f1','bnpc3877639',3877639,206.260193,-5.020264,-116.932198,0.795244,463,0,0,0,0,6,0,0,453,0,0.000000,5,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,103496,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83954,'FATE_002','f1f1','bnpc3872274',3872274,525.912292,41.498161,-6.711665,-0.936330,481,0,0,0,1,6,0,0,51,0,0.000000,9,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,103150,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83955,'FATE_003','f1f1','bnpc3895686',3895686,430.323395,30.946659,107.234703,-0.193899,14,0,0,0,1,6,0,0,195,0,0.000000,8,1,30,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,101088,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83957,'FATE_004','f1f1','bnpc3872329',3872329,198.106796,24.210800,190.831604,1.525976,482,0,0,0,1,6,0,0,512,0,0.000000,9,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,100746,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82416,'FATE_006','f1f1','bnpc3868020',3868020,-316.530090,21.784460,197.661102,0.514416,440,0,0,0,0,0,0,0,519,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,98884,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83707,'FATE_008','f1f1','bnpc3854653',3854653,-187.139603,77.766182,39.777210,-0.441356,483,0,0,0,1,6,0,0,446,0,0.000000,34,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,96966,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83921,'FATE_013','f1f1','bnpc3876580',3876580,131.438095,-7.015956,-90.585762,0.826826,484,0,0,0,8,6,0,0,517,0,0.000000,5,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,96544,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83921,'FATE_013','f1f1','bnpc3895606',3895606,144.126099,-7.000000,-76.638496,-1.128044,485,0,0,0,8,6,0,0,518,0,0.000000,3,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,95966,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83656,'FATE_015','f1f1','bnpc3854662',3854662,119.024498,-11.800020,133.180496,-0.000000,486,0,0,0,1,6,0,0,445,0,0.000000,8,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,93828,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83657,'FATE_017','f1f1','bnpc3862268',3862268,-57.322392,-36.758179,479.119995,-0.000000,487,0,0,0,1,6,0,0,447,0,0.000000,13,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,90742,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83662,'FATE_021','f1f1','bnpc3888695',3888695,320.302185,13.964800,156.219894,0.000000,443,0,0,0,0,6,0,0,453,0,0.000000,8,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,84740,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83663,'FATE_022','f1f1','bnpc3888722',3888722,47.735310,-24.009480,224.699600,-0.000000,444,0,0,0,0,6,0,0,453,0,0.000000,11,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,82962,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83664,'FATE_023','f1f1','bnpc3863423',3863423,-343.958801,21.199970,191.461395,0.691173,488,0,0,0,1,6,0,0,448,0,0.000000,14,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,82232,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84152,'FATE_024','f1f1','bnpc3891799',3891799,-401.969513,61.367790,-155.572296,-0.000000,579,0,0,0,1,3,0,0,558,0,0.000000,33,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,81818,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85551,'FATE_025','f1f1','bnpc4035024',4035024,306.045898,-5.840064,-50.683071,1.387395,1212,0,0,0,0,6,0,0,1328,0,0.000000,6,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,79824,1,0,0,0,0,30139,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85808,'FATE_026','f1f1','bnpc4039044',4039044,-404.323486,53.126431,41.089840,-0.299859,782,0,0,0,1,6,0,0,1329,0,0.000000,31,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,79094,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85912,'FATE_027','f1f1','bnpc4054992',4054992,-161.082199,1.333683,-51.602650,0.659532,781,0,0,0,0,0,0,0,1,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,77700,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93780,'FATE_028','f1f1','bnpc4321539',4321539,-322.761108,60.910992,-97.959091,0.201131,1213,0,0,0,0,6,0,0,519,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,76690,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93780,'FATE_028','f1f1','bnpc4321540',4321540,-340.205902,60.174019,-74.387733,0.794980,53,0,0,0,1,6,0,0,130,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,76424,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93952,'FATE_029','f1f1','bnpc4326449',4326449,-335.822815,62.039070,-39.702980,0.830182,1183,0,0,0,0,6,0,0,526,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,72222,1,0,0,0,0,30052,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93526,'FATE_031','f1f1','bnpc4309315',4309315,-448.186890,63.223598,-249.467407,-0.000000,1221,0,0,0,0,6,0,0,2175,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,67620,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93527,'FATE_032','f1f1','bnpc4309354',4309354,-500.660187,17.033569,-157.655106,-1.448624,2117,0,0,0,1,6,0,0,1661,0,0.000000,43,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,66654,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100807,'FATE_CNY_2015_01','f1f1','bnpc4867455',4867455,186.677505,-32.641251,408.803802,0.103891,3112,0,0,0,1,6,0,0,2908,0,0.000000,11,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,65864,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96894,'FATE_DQX_01','f1f1','bnpc4510303',4510303,112.321701,-11.825810,121.599098,-0.711375,2310,0,0,0,1,6,0,0,2221,0,0.000000,7,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,65518,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93919,'FATE_Firefall_2013_01','f1f1','bnpc4325227',4325227,145.200699,-25.442301,400.508209,1.361357,2227,0,0,0,0,6,0,0,1807,0,0.000000,11,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,62032,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93919,'FATE_Firefall_2013_01','f1f1','bnpc4325228',4325228,179.812393,-32.584591,366.992615,0.191986,2227,0,0,0,0,6,0,0,1807,0,0.000000,11,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,61760,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93919,'FATE_Firefall_2013_01','f1f1','bnpc4325229',4325229,232.781296,-30.883249,402.702087,-1.535888,2227,0,0,0,0,6,0,0,1807,0,0.000000,11,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,61488,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93919,'FATE_Firefall_2013_01','f1f1','bnpc4325230',4325230,167.737396,-27.791960,451.751312,0.436332,2227,0,0,0,0,6,0,0,1807,0,0.000000,11,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,61216,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93919,'FATE_Firefall_2013_01','f1f1','bnpc4325226',4325226,188.001404,-32.634659,409.081787,-0.000000,2087,0,0,0,0,6,0,0,1641,0,0.000000,11,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,60950,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97167,'FATE_XMAS_2013_01','f1f1','bnpc4537005',4537005,188.761703,-32.636230,409.015991,0.355944,2440,0,0,0,0,6,0,0,2329,0,0.000000,11,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,59056,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97167,'FATE_XMAS_2013_01','f1f1','bnpc4537006',4537006,199.778702,-32.612209,392.068390,-0.300178,2441,0,0,0,1,6,0,0,2331,0,0.000000,5,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,58790,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293115',4293115,-284.256012,19.851200,121.283897,-0.000048,1675,0,0,0,1,6,0,0,1422,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32824,1,0,0,0,0,0,0,677,315); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293116',4293116,-285.878693,19.814951,120.784897,-0.000048,1676,0,0,0,1,6,0,0,1423,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32558,1,0,0,0,0,0,0,678,316); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293124',4293124,-288.583588,20.138100,137.313797,0.190502,1674,0,0,0,1,6,0,0,11,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32292,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293129',4293129,-292.469696,20.187620,136.430801,0.352193,1678,0,0,0,1,6,0,0,130,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32026,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293131',4293131,-285.201385,19.963831,134.960602,0.171350,1678,0,0,0,1,6,0,0,130,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31754,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293132',4293132,-287.191315,20.226179,140.904694,0.171350,1678,0,0,0,1,6,0,0,130,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31482,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293133',4293133,-295.704712,20.431761,139.543701,-0.086527,1680,0,0,0,1,6,0,0,201,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31216,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293134',4293134,-293.965088,20.462339,140.642303,-0.086527,1680,0,0,0,1,6,0,0,201,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30944,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293135',4293135,-291.401611,20.401251,141.405304,-0.086527,1680,0,0,0,1,6,0,0,201,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30672,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293136',4293136,-284.138306,20.096069,138.658707,-0.086527,1680,0,0,0,1,6,0,0,201,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30400,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293144',4293144,-296.375885,21.175091,157.169296,-0.171205,1677,0,0,0,1,6,0,0,40,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30134,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293145',4293145,-300.524506,21.173849,156.905701,0.164868,1677,0,0,0,1,6,0,0,40,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29862,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293146',4293146,-319.822906,21.194759,169.187195,-0.000048,1680,0,0,0,1,6,0,0,201,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29584,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293147',4293147,-316.771088,21.194771,169.400803,-0.000048,1680,0,0,0,1,6,0,0,201,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29312,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293148',4293148,-308.915802,21.194759,172.893005,0.567703,1678,0,0,0,1,6,0,0,130,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29034,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293149',4293149,-306.675995,21.194759,173.963699,0.421716,1677,0,0,0,1,6,0,0,40,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28774,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293151',4293151,-287.362701,19.832130,119.330803,-0.000048,1679,0,0,0,1,6,0,0,56,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28508,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293152',4293152,-282.311615,19.831770,119.502602,-0.000000,1679,0,0,0,1,6,0,0,56,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28236,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293153',4293153,-322.243805,21.200001,172.576599,-0.000000,1680,0,0,0,1,6,0,0,201,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27952,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293154',4293154,-319.829010,21.200001,174.048904,-0.000000,1680,0,0,0,1,6,0,0,201,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27680,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293155',4293155,-311.299286,21.194759,177.294601,0.608083,1678,0,0,0,1,6,0,0,130,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27402,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92941,'QB_JobWhm300_001','f1f1','bnpc4293156',4293156,-308.512787,21.200001,179.504395,-0.000000,1679,0,0,0,1,6,0,0,56,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27148,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290072',4290072,-315.720001,21.340000,173.519302,-0.453265,1708,0,0,0,8,6,0,0,1452,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26282,1,0,0,0,0,0,0,679,317); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290082',4290082,-316.459991,21.410000,201.080002,-0.013941,1706,0,0,0,8,6,0,0,1422,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26016,1,0,0,0,0,0,0,677,315); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290083',4290083,-329.779999,21.400000,186.070007,1.069597,1707,0,0,0,8,6,0,0,1423,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25750,1,0,0,0,0,0,0,678,316); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290091',4290091,-318.428986,22.014410,185.500595,-0.000000,1702,0,0,0,8,6,0,0,1450,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25484,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290093',4290093,-296.377899,21.200001,178.480392,-0.860107,1701,0,0,0,8,6,0,0,1927,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25218,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290094',4290094,-341.921814,21.200001,177.981796,1.419387,1701,0,0,0,8,6,0,0,1927,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24946,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290095',4290095,-315.830414,21.106911,211.395203,-0.017622,1701,0,0,0,8,6,0,0,1927,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24674,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290106',4290106,-342.302399,21.200001,171.585403,1.390198,1705,0,0,0,8,6,0,0,1929,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24408,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290109',4290109,-301.965912,21.200001,184.063400,-0.663560,1705,0,0,0,8,6,0,0,1929,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24136,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290111',4290111,-325.155792,21.106911,209.157501,-0.000000,1705,0,0,0,8,6,0,0,1929,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23864,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290117',4290117,-294.699890,21.200001,178.716797,-0.000000,1704,0,0,0,8,6,0,0,1451,0,80.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23598,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290118',4290118,-296.814911,21.200001,167.351196,-0.000000,1704,0,0,0,8,6,0,0,1451,0,80.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23326,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290120',4290120,-315.853790,21.200001,165.037201,-0.000000,1704,0,0,0,8,6,0,0,1451,0,80.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23054,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290121',4290121,-328.507294,21.200001,166.136002,-0.000000,1704,0,0,0,8,6,0,0,1451,0,80.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22782,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290122',4290122,-343.918610,21.200001,168.767593,-0.000000,1704,0,0,0,8,6,0,0,1451,0,80.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22510,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290123',4290123,-338.650391,21.200001,175.718201,-0.000000,1704,0,0,0,8,6,0,0,1451,0,80.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22238,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290124',4290124,-312.164307,21.200001,171.768997,-0.000000,1704,0,0,0,8,6,0,0,1451,0,80.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21966,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290126',4290126,-305.189087,21.200001,184.464203,-0.000000,1704,0,0,0,8,6,0,0,1451,0,80.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21694,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290127',4290127,-293.699097,21.157240,199.574997,-0.000000,1704,0,0,0,8,6,0,0,1451,0,80.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21422,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290128',4290128,-303.735107,21.172911,196.193604,-0.000000,1704,0,0,0,8,6,0,0,1451,0,80.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21150,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290129',4290129,-337.248993,21.200001,185.006805,-0.000000,1704,0,0,0,8,6,0,0,1451,0,80.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20878,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290130',4290130,-353.931702,21.200001,181.433594,-0.000000,1704,0,0,0,8,6,0,0,1451,0,80.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20606,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290132',4290132,-308.746399,21.106911,213.708206,-0.000000,1704,0,0,0,8,6,0,0,1451,0,80.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20334,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290133',4290133,-318.861694,21.106911,214.789200,-0.000000,1704,0,0,0,8,6,0,0,1451,0,80.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20062,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290134',4290134,-329.497498,21.142839,204.662704,-0.000000,1704,0,0,0,8,6,0,0,1451,0,80.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19790,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290136',4290136,-341.061096,21.200001,194.468002,-0.000000,1704,0,0,0,8,6,0,0,1451,0,80.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19518,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4290137',4290137,-347.234985,21.200001,184.434692,-0.000000,1704,0,0,0,8,6,0,0,1451,0,80.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19246,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4292762',4292762,-296.077911,21.200001,178.780396,-0.860107,1701,0,0,0,8,6,0,0,1927,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18822,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4292763',4292763,-341.621796,21.200001,178.281799,1.419387,1701,0,0,0,8,6,0,0,1927,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18550,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4292764',4292764,-315.530396,21.106911,211.695206,-0.017622,1701,0,0,0,8,6,0,0,1927,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18278,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4292765',4292765,-342.002411,21.200001,171.885406,1.390198,1703,0,0,0,8,6,0,0,213,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18024,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4292766',4292766,-301.665894,21.200001,184.363403,-0.663560,1703,0,0,0,8,6,0,0,213,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17752,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4292767',4292767,-324.855804,21.106911,209.457504,-0.000000,1703,0,0,0,8,6,0,0,213,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17480,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4292906',4292906,-295.777893,21.200001,179.080399,-0.860107,1701,0,0,0,8,6,0,0,1927,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17190,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4292907',4292907,-341.321808,21.200001,178.581802,1.419387,1701,0,0,0,8,6,0,0,1927,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16918,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4292908',4292908,-315.230408,21.106911,211.995193,-0.017622,1701,0,0,0,8,6,0,0,1927,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16646,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92886,'QB_JobWhm500_001','f1f1','bnpc4306921',4306921,-319.468597,21.846149,184.048004,-0.000000,2043,0,0,0,8,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16398,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83854,'QB_SubFst055_001','f1f1','bnpc2319770',2319770,-183.847900,-27.379181,293.688202,1.230677,152,0,0,0,0,10,0,0,185,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15204,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83854,'QB_SubFst055_001','f1f1','bnpc2319771',2319771,-180.418900,-27.333010,285.725098,0.129747,153,0,0,0,0,10,0,0,186,0,0.400000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14938,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83854,'QB_SubFst055_001','f1f1','bnpc2319772',2319772,-172.529999,-27.490250,289.128815,-1.036939,154,0,0,0,0,10,0,0,186,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14672,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83854,'QB_SubFst055_001','f1f1','bnpc2319773',2319773,-177.611206,-27.472490,296.621002,0.650423,153,0,0,0,0,10,0,0,186,0,0.400000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14394,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83854,'QB_SubFst055_001','f1f1','bnpc4097283',4097283,-188.974396,-26.767450,295.118286,1.503846,932,0,0,0,8,6,0,0,0,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13822,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93425,'QST_JobWhm350_001','f1f1','bnpc4306588',4306588,-414.727509,60.940830,-152.757202,-0.000000,1937,0,0,0,1,6,0,0,2043,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11732,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93425,'QST_JobWhm350_001','f1f1','bnpc4306589',4306589,-412.019592,61.315781,-145.378204,-0.000000,1937,0,0,0,1,6,0,0,2043,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11460,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93425,'QST_JobWhm350_001','f1f1','bnpc4306590',4306590,-419.288086,61.051128,-144.073700,-1.324381,1937,0,0,0,1,6,0,0,2043,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11188,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83292,'QST_SubFst057','f1f1','bnpc3812252',3812252,-182.424301,41.923161,-128.309998,1.201012,10,0,0,0,1,6,0,0,589,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6682,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83292,'QST_SubFst057','f1f1','bnpc3856501',3856501,-129.796005,-2.322618,-62.179089,0.702647,10,0,0,0,1,6,0,0,589,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6410,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83536,'QST_SubFst060','f1f1','bnpc3838969',3838969,104.966797,-16.464540,194.323593,-1.127014,12,0,0,0,1,6,0,0,590,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5580,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83536,'QST_SubFst060','f1f1','bnpc3838970',3838970,97.979897,-16.864571,198.715897,0.431544,12,0,0,0,1,6,0,0,590,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5308,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82588,'QST_SubFst067','f1f1','bnpc3841338',3841338,-142.762695,-23.459000,346.498901,-0.000000,306,0,0,0,1,6,0,0,591,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4458,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82588,'QST_SubFst067','f1f1','bnpc3841340',3841340,-154.555695,-23.672741,350.206085,-0.000000,306,0,0,0,1,6,0,0,591,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4186,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83574,'QST_SubFst073','f1f1','bnpc3842567',3842567,158.348694,-24.027540,498.065796,-0.766152,26,0,0,0,1,6,0,0,592,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2956,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82967,'QB_ClsArc005_001','f1f1','bnpc3777844',3777844,134.596497,-7.000007,-57.714512,-0.093997,539,0,0,0,0,6,0,0,598,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65644,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82967,'QB_ClsArc005_001','f1f1','bnpc3906824',3906824,138.665894,-7.000007,-55.251621,-0.451880,1428,0,0,0,0,6,0,0,602,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63130,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82967,'QB_ClsArc005_001','f1f1','bnpc3906825',3906825,131.246201,-7.000007,-55.143242,0.085833,1428,0,0,0,0,6,0,0,602,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62858,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83082,'QB_ClsLnc003_001','f1f1','bnpc3792898',3792898,323.344208,0.323779,-309.860107,-0.797993,543,0,0,0,0,0,0,0,608,0,0.000000,15,3,120,1,0,1,0,15,2,0,0,0,1,0,0.000000,1.000000,61984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83082,'QB_ClsLnc003_001','f1f1','bnpc3792905',3792905,308.470886,-1.165222,-306.891907,-0.000048,1433,0,0,0,1,6,0,0,212,0,0.000000,12,3,120,1,0,2,0,15,1,0,0,0,1,1,0.000000,1.000000,61066,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83082,'QB_ClsLnc003_001','f1f1','bnpc3792907',3792907,306.829712,-1.174103,-299.366791,-1.044513,1433,0,0,0,1,6,0,0,212,0,0.000000,12,3,120,1,0,2,0,15,1,0,0,0,1,1,0.000000,1.000000,60794,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83082,'QB_ClsLnc003_001','f1f1','bnpc3792908',3792908,317.230286,-1.286873,-299.063293,-0.838050,1433,0,0,0,1,6,0,0,212,0,0.000000,12,3,120,1,0,1,0,30,0,0,0,0,1,1,0.000000,1.000000,60522,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83082,'QB_ClsLnc003_001','f1f1','bnpc3792909',3792909,322.437408,-1.284508,-295.046509,-1.425617,1433,0,0,0,1,6,0,0,212,0,0.000000,12,3,120,0,0,6,0,15,1,0,0,0,1,1,0.000000,1.000000,60250,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83082,'QB_ClsLnc003_001','f1f1','bnpc3792911',3792911,335.078186,0.290655,-287.124786,0.106934,1433,0,0,0,1,6,0,0,212,0,0.000000,12,3,120,0,0,5,0,15,1,0,0,0,1,1,0.000000,1.000000,59978,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83082,'QB_ClsLnc003_001','f1f1','bnpc3792912',3792912,311.350708,-1.240247,-291.376801,-1.097888,1433,0,0,0,1,6,0,0,212,0,0.000000,12,3,120,0,0,7,0,0,0,0,0,0,1,0,0.000000,1.000000,59706,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83082,'QB_ClsLnc003_001','f1f1','bnpc3792913',3792913,313.200195,-1.156119,-313.966797,-1.250117,1433,0,0,0,1,6,0,0,212,0,0.000000,12,3,120,1,0,1,0,30,0,0,0,0,1,1,0.000000,1.000000,59434,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83082,'QB_ClsLnc003_001','f1f1','bnpc3792914',3792914,277.565002,1.041425,-306.164612,0.027237,1433,0,0,0,1,6,0,0,212,0,0.000000,12,3,120,1,0,1,0,30,0,0,0,0,1,1,0.000000,1.000000,59162,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83082,'QB_ClsLnc003_001','f1f1','bnpc3792916',3792916,278.039886,0.901859,-307.610413,0.458313,1433,0,0,0,1,6,0,0,212,0,0.000000,12,3,120,1,0,7,0,0,0,0,0,0,1,0,0.000000,1.000000,58890,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83082,'QB_ClsLnc003_001','f1f1','bnpc3792917',3792917,330.192993,0.178467,-265.550598,-1.100578,1433,0,0,0,1,6,0,0,212,0,0.000000,12,3,120,1,0,3,0,0,0,0,0,0,1,0,0.000000,1.000000,58618,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83082,'QB_ClsLnc003_001','f1f1','bnpc3911020',3911020,330.243713,0.422802,-260.355804,-1.223839,1433,0,0,0,1,6,0,0,212,0,0.000000,12,3,120,0,0,4,0,15,1,0,0,0,1,1,0.000000,1.000000,58346,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83082,'QB_ClsLnc003_001','f1f1','bnpc4259221',4259221,265.605713,-0.831620,-257.840393,1.444221,1638,0,0,0,8,6,0,0,614,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58080,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83337,'QB_ClsLnc006_001','f1f1','bnpc3818776',3818776,-389.922302,60.945992,-156.446396,-0.248417,1435,0,0,0,0,6,0,0,130,0,0.200000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,0.000000,56130,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83337,'QB_ClsLnc006_001','f1f1','bnpc3818777',3818777,-395.363892,61.069180,-158.113998,0.802129,1435,0,0,0,0,6,0,0,130,0,0.002000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,0.000000,55858,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83337,'QB_ClsLnc006_001','f1f1','bnpc3818778',3818778,-393.969696,60.299950,-166.399597,0.425174,1435,0,0,0,0,6,0,0,130,0,0.002000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,0.000000,55586,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83337,'QB_ClsLnc006_001','f1f1','bnpc3818779',3818779,-387.426910,59.805710,-165.891907,-1.169983,1435,0,0,0,0,6,0,0,130,0,0.002000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,0.000000,55314,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83337,'QB_ClsLnc006_001','f1f1','bnpc3927421',3927421,-450.525787,63.741131,-242.090607,-0.000000,1435,0,0,0,0,6,0,0,130,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55042,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83337,'QB_ClsLnc006_001','f1f1','bnpc3906892',3906892,-391.439697,60.349380,-160.540207,-1.505433,598,0,0,0,3,6,0,0,627,0,0.001000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,0.000000,54776,1,0,0,0,0,30138,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83209,'QB_ManFst005_001','f1f1','bnpc3802271',3802271,318.422791,-1.279670,-327.112000,0.219171,249,0,0,0,8,6,0,3,1375,0,0.010000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83209,'QB_ManFst005_001','f1f1','bnpc3802272',3802272,327.190613,-1.358100,-326.784210,-0.056662,250,0,0,0,8,6,0,0,1376,0,0.010000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53780,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83209,'QB_ManFst005_001','f1f1','bnpc3802315',3802315,317.280792,-1.144470,-356.649200,-0.000048,548,0,0,0,0,6,0,0,939,0,1.700000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53202,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83209,'QB_ManFst005_001','f1f1','bnpc4094218',4094218,311.655609,-1.168414,-356.376007,-0.000000,886,0,0,0,1,6,0,0,938,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52416,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83209,'QB_ManFst005_001','f1f1','bnpc4094220',4094220,323.858490,-1.109118,-355.685486,-0.000000,886,0,0,0,1,6,0,0,938,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52144,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83209,'QB_ManFst005_001','f1f1','bnpc4094232',4094232,361.034393,0.297863,-341.072998,-0.000000,886,0,0,0,1,6,0,0,938,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51872,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83209,'QB_ManFst005_001','f1f1','bnpc4094233',4094233,364.922302,0.482588,-345.529510,-0.000000,886,0,0,0,1,6,0,0,938,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51600,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83209,'QB_ManFst005_001','f1f1','bnpc4094238',4094238,357.197113,0.057471,-338.799713,-0.000000,717,0,0,0,1,6,0,0,937,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51334,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83209,'QB_ManFst005_001','f1f1','bnpc4094239',4094239,357.574310,0.006210,-340.529999,-0.000000,717,0,0,0,1,6,0,0,937,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51062,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83209,'QB_ManFst005_001','f1f1','bnpc4094240',4094240,356.385010,0.042279,-337.572998,-0.000000,717,0,0,0,1,6,0,0,937,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50790,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83209,'QB_ManFst005_001','f1f1','bnpc4094471',4094471,357.760803,0.120152,-336.152893,-0.000000,717,0,0,0,1,6,0,0,937,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50518,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83209,'QB_ManFst005_001','f1f1','bnpc4094472',4094472,356.661194,-0.069418,-335.307098,-0.000000,717,0,0,0,1,6,0,0,937,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50246,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83209,'QB_ManFst005_001','f1f1','bnpc4094473',4094473,355.370300,-0.168655,-335.326202,-0.000000,717,0,0,0,1,6,0,0,937,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49974,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83209,'QB_ManFst005_001','f1f1','bnpc4094474',4094474,359.018097,0.100060,-334.924988,-0.000000,886,0,0,0,1,6,0,0,938,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49696,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83209,'QB_ManFst005_001','f1f1','bnpc4094475',4094475,357.446198,-0.052746,-333.822510,-0.000000,886,0,0,0,1,6,0,0,938,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49424,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3854581',3854581,-297.688690,21.199980,162.199203,-0.000000,550,0,0,0,0,6,0,0,621,0,0.500000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48484,1,0,0,0,0,30102,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3854582',3854582,-306.208008,21.194771,158.443405,-0.000048,551,0,0,0,0,0,0,0,622,0,0.500000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48218,1,0,0,0,0,30102,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3854583',3854583,-293.105103,21.194731,186.130295,-0.000048,552,0,0,0,0,6,0,0,621,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47952,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3854584',3854584,-292.713806,21.194731,175.368301,-0.000048,554,0,0,0,0,6,0,0,193,0,0.500000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3854586',3854586,-293.203400,21.180889,194.661697,-0.023298,557,0,0,0,0,6,0,0,947,0,0.700000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47420,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3854588',3854588,-291.706787,21.164221,177.906601,-0.243811,553,0,0,0,0,6,0,0,622,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47154,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3854673',3854673,-338.520996,21.199961,172.563400,1.431584,552,0,0,0,0,6,0,0,621,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46864,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3854674',3854674,-332.532288,21.245211,165.681503,0.136485,553,0,0,0,0,6,0,0,622,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46610,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3854675',3854675,-303.181488,20.996580,143.871796,1.106832,553,0,0,0,0,6,0,0,622,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46338,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3854715',3854715,-300.007690,20.827829,142.542603,-1.203666,555,0,0,0,0,6,0,0,194,0,0.500000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46072,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3854719',3854719,-329.143311,21.241199,159.634003,-0.443162,556,0,0,0,0,6,0,0,192,0,0.500000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45806,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3854720',3854720,-336.017212,21.199940,179.558395,-0.555789,557,0,0,0,0,6,0,0,947,0,0.500000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45516,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3854721',3854721,-289.936707,21.194731,176.441605,-0.742410,556,0,0,0,0,6,0,0,192,0,0.500000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45262,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3854723',3854723,-299.458313,20.939421,145.459305,-1.103045,554,0,0,0,0,6,0,0,193,0,0.500000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44966,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3854724',3854724,-327.930389,21.199930,164.414398,-1.096873,555,0,0,0,0,6,0,0,194,0,0.500000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44712,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc4089289',4089289,-310.342804,21.199961,176.524002,0.544566,924,0,0,0,0,6,0,0,946,0,0.010000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44080,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc4089292',4089292,-304.081207,21.199961,183.301300,0.420823,926,0,0,0,0,6,0,0,194,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43814,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc4089293',4089293,-299.977814,21.199961,183.667603,0.267869,926,0,0,0,0,6,0,0,194,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43542,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc4089294',4089294,-301.781311,21.199961,180.350098,-0.026647,926,0,0,0,0,6,0,0,194,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43270,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc4089296',4089296,-317.655487,21.199930,171.625900,0.886738,925,0,0,0,0,6,0,0,193,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43004,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc4089297',4089297,-319.151398,21.199930,174.381607,1.172149,925,0,0,0,0,6,0,0,193,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42732,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc4089298',4089298,-322.124512,21.216320,179.388000,0.845619,925,0,0,0,0,6,0,0,193,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42460,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc4089305',4089305,-303.916595,21.199980,159.653702,-0.458090,923,0,0,0,0,6,0,0,517,0,0.010000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42194,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc4089330',4089330,-317.943298,21.199930,176.052094,0.705222,928,0,0,0,0,6,0,0,945,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41928,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc4089338',4089338,-310.503693,21.199961,176.348297,0.681197,929,0,0,0,0,6,0,0,980,0,0.010000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41662,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3854784',3854784,-315.526093,21.194731,178.271103,0.771413,930,0,0,0,0,6,0,0,617,0,0.010000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41396,1,0,0,0,0,30102,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc4089300',4089300,-302.468597,21.267620,161.706604,-0.906909,922,0,0,0,8,6,0,0,948,0,0.010000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41130,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc4018837',4018837,-285.176697,20.922569,126.477402,-0.543292,920,0,0,0,8,6,0,0,619,0,0.010000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40864,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc4018839',4018839,-288.711792,19.911860,125.174896,0.154584,921,0,0,0,8,6,0,0,620,0,0.010000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40598,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3803263',3803263,-309.551788,21.371780,194.917892,0.662232,927,0,0,0,0,6,0,0,947,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40332,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3803264',3803264,-308.917694,21.329161,193.935394,0.906071,927,0,0,0,0,6,0,0,947,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40060,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3803267',3803267,-303.130005,21.119820,205.539795,0.510404,926,0,0,0,0,6,0,0,194,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39734,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3803268',3803268,-306.722412,21.141180,201.578995,0.699945,926,0,0,0,0,6,0,0,194,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39462,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc4089325',4089325,-334.907196,21.199930,177.078598,1.482305,925,0,0,0,0,6,0,0,193,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39196,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83231,'QB_ManFst007_001','f1f1','bnpc3803269',3803269,-335.535614,21.199961,174.557297,1.438183,925,0,0,0,0,6,0,0,193,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38924,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83940,'QB_SubFst035_001','f1f1','bnpc3869528',3869528,241.932404,24.790890,190.981903,1.519477,549,0,0,0,0,6,0,0,30,0,0.500000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38090,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82790,'QST_ClsCnj004_001','f1f1','bnpc3796339',3796339,146.498596,-5.979228,-35.527409,-0.000000,299,0,0,0,1,6,0,0,135,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35168,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82790,'QST_ClsCnj004_001','f1f1','bnpc3878392',3878392,-74.701424,1.000000,-32.809582,-0.000000,294,0,0,0,1,6,0,0,134,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34570,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82790,'QST_ClsCnj004_001','f1f1','bnpc3876177',3876177,332.290314,-31.683889,414.685913,-0.000000,297,0,0,0,1,6,0,0,136,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34184,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76855,'QST_ClsLnc001_001','f1f1','bnpc3776272',3776272,271.492401,-11.759330,-192.938095,-0.000000,42,0,0,0,1,6,0,0,603,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,33494,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76855,'QST_ClsLnc001_001','f1f1','bnpc3776273',3776273,271.819397,-11.683300,-187.853302,-0.000048,42,0,0,0,1,6,0,0,603,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,33222,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76855,'QST_ClsLnc001_001','f1f1','bnpc3776274',3776274,251.112000,-10.906820,-184.824707,-0.000048,42,0,0,0,1,6,0,0,603,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,32950,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76855,'QST_ClsLnc001_001','f1f1','bnpc3776275',3776275,253.784195,-11.808950,-193.729095,-0.000048,42,0,0,0,1,6,0,0,603,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,32678,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76855,'QST_ClsLnc001_001','f1f1','bnpc3776276',3776276,264.322815,-11.793010,-172.290894,-0.000000,42,0,0,0,1,6,0,0,603,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,32406,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76855,'QST_ClsLnc001_001','f1f1','bnpc3776277',3776277,267.334991,-10.940890,-176.571503,-0.000000,42,0,0,0,1,6,0,0,603,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,32134,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76855,'QST_ClsLnc001_001','f1f1','bnpc3776278',3776278,263.047089,-10.033850,-163.925095,-0.000000,42,0,0,0,1,6,0,0,603,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,31862,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76855,'QST_ClsLnc001_001','f1f1','bnpc3776279',3776279,261.755310,-13.101370,-158.919693,-0.000000,42,0,0,0,1,6,0,0,603,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,31590,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76855,'QST_ClsLnc001_001','f1f1','bnpc3777647',3777647,302.697296,2.311270,88.188423,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,30848,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76855,'QST_ClsLnc001_001','f1f1','bnpc3777652',3777652,326.398102,3.637664,93.702133,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,30576,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76855,'QST_ClsLnc001_001','f1f1','bnpc3777654',3777654,298.914490,3.191502,104.050598,1.489252,26,0,0,0,1,6,0,0,592,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,30310,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83040,'QST_ClsLnc002_001','f1f1','bnpc3785539',3785539,514.749512,44.007858,-45.018761,-0.400804,142,0,0,0,1,6,0,0,605,7,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,29696,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83040,'QST_ClsLnc002_001','f1f1','bnpc3785540',3785540,508.661102,43.407619,-50.561710,-0.000000,142,0,0,0,1,6,0,0,605,7,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,29424,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83040,'QST_ClsLnc002_001','f1f1','bnpc3785703',3785703,213.670303,23.460661,157.077606,-0.000000,21,0,0,0,1,6,0,0,606,7,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,4.000000,1.000000,28950,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83040,'QST_ClsLnc002_001','f1f1','bnpc3785704',3785704,210.014008,23.461161,157.174805,-0.000000,21,0,0,0,1,6,0,0,606,7,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,4.000000,1.000000,28678,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73436,'QST_ENPC_012','f1f1','bnpc1886902',1886902,-62.370522,-31.588551,424.233002,1.421384,39,0,0,0,1,10,0,0,188,0,0.000000,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15260,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73436,'QST_ENPC_012','f1f1','bnpc1886903',1886903,-52.400921,-32.963379,427.468109,-1.210237,39,0,0,0,1,10,0,0,188,0,0.000000,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14988,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73436,'QST_ENPC_012','f1f1','bnpc1887083',1887083,-33.791740,-36.615181,466.891602,0.881146,39,0,0,0,1,10,0,0,188,0,0.000000,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14716,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73436,'QST_ENPC_012','f1f1','bnpc1887164',1887164,-24.291889,-36.477280,474.002106,-0.607777,39,0,0,0,1,10,0,0,188,0,0.000000,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14444,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73436,'QST_ENPC_012','f1f1','bnpc1887165',1887165,-97.113182,-35.405350,481.442596,1.458690,39,0,0,0,1,10,0,0,188,0,0.000000,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14172,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73436,'QST_ENPC_012','f1f1','bnpc1887166',1887166,-90.638779,-35.925030,478.014496,-1.263492,39,0,0,0,1,10,0,0,188,0,0.000000,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13900,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (75549,'QST_ENPC_013','f1f1','bnpc1943223',1943223,380.804413,-31.602600,439.033295,-1.270578,45,0,0,0,1,10,0,0,187,0,0.000000,9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,13346,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (75549,'QST_ENPC_013','f1f1','bnpc1943224',1943224,378.628296,-31.633101,435.710785,-1.094504,45,0,0,0,1,10,0,0,187,0,0.000000,9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,13074,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (75549,'QST_ENPC_013','f1f1','bnpc1943225',1943225,378.506104,-31.730410,441.803894,-0.847464,45,0,0,0,1,10,0,0,187,0,0.000000,9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,12802,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92716,'QST_GaiUsa908','f1f1','bnpc4287003',4287003,-259.288086,54.760319,-126.797600,-1.078254,40,0,0,0,1,6,0,0,40,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8672,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92743,'QST_GaiUsa912','f1f1','bnpc4287072',4287072,-354.203400,56.537731,25.722389,-0.848802,2193,0,0,0,1,6,0,0,2057,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7590,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93200,'QST_GaiUsc307','f1f1','bnpc4300668',4300668,-518.257385,23.172720,-234.944000,-1.141057,1894,0,0,0,1,6,0,0,1982,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7048,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73749,'QST_SubFst033_001','f1f1','bnpc2114368',2114368,263.599487,-6.623665,1.705656,-0.000000,47,0,0,0,1,10,0,0,141,0,0.000000,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,1234,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73749,'QST_SubFst033_001','f1f1','bnpc2114369',2114369,286.708588,-6.865474,30.608271,-0.000000,47,0,0,0,1,10,0,0,141,0,0.000000,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,962,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73749,'QST_SubFst033_001','f1f1','bnpc2114370',2114370,311.555115,-5.417542,25.131701,-0.000000,47,0,0,0,1,10,0,0,141,0,0.000000,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,690,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136062',1136062,-505.795593,9.752348,104.621803,-0.000144,12,0,0,0,1,6,0,0,12,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,205580,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136063',1136063,-515.044922,11.400910,112.794899,-0.000240,12,0,0,0,1,6,0,0,12,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,205308,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136064',1136064,-501.586090,9.603134,109.964401,-0.000240,12,0,0,0,1,6,0,0,12,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,205036,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136065',1136065,-475.682312,6.895020,108.614403,0.382734,12,0,0,0,1,6,0,0,12,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,204764,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136067',1136067,-478.398712,7.440553,105.715897,0.382638,12,0,0,0,1,6,0,0,12,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,204492,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136075',1136075,-414.835693,4.099017,268.726593,-0.000048,39,0,0,0,1,6,0,0,39,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,204226,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136076',1136076,-390.326385,4.860912,278.225494,-0.000048,39,0,0,0,1,6,0,0,39,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,203954,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136077',1136077,-430.838715,8.406867,277.241089,-0.000048,39,0,0,0,1,6,0,0,39,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,203682,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136078',1136078,-459.421692,5.690572,240.230301,-0.000048,39,0,0,0,1,6,0,0,39,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,203410,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136079',1136079,-450.953796,11.975280,268.649994,-0.000048,39,0,0,0,1,6,0,0,39,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,203138,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136081',1136081,-461.788513,5.891314,238.861206,-0.000144,39,0,0,0,1,6,0,0,39,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,202866,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136082',1136082,-473.594299,10.086170,246.936707,-0.000144,39,0,0,0,1,6,0,0,39,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,202594,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136085',1136085,-435.743011,1.967827,88.564453,-0.000144,14,0,0,0,1,6,0,0,14,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,202328,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136086',1136086,-390.760986,0.834163,111.607300,-0.000144,14,0,0,0,1,6,0,0,14,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,202056,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136087',1136087,-418.825409,0.336109,91.913406,-0.000144,14,0,0,0,1,6,0,0,14,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,201784,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136089',1136089,-414.658203,0.079596,95.602753,-0.000144,14,0,0,0,1,6,0,0,14,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,201512,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136091',1136091,-415.322693,-0.226261,151.930603,-0.000240,14,0,0,0,1,6,0,0,14,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,201240,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136092',1136092,-421.841888,0.864481,141.020401,-0.000048,14,0,0,0,1,6,0,0,14,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,200968,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136093',1136093,-381.670593,0.762653,137.407394,-0.000048,14,0,0,0,1,6,0,0,14,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,200696,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136094',1136094,-430.745300,0.804663,164.744202,-0.000144,14,0,0,0,1,6,0,0,14,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,200424,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136097',1136097,-431.509888,2.089151,233.463394,-0.000048,39,0,0,0,1,6,0,0,39,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,200146,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136098',1136098,-446.728088,0.504031,188.779205,-0.000144,39,0,0,0,1,6,0,0,39,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,199874,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136099',1136099,-432.335907,1.523763,185.544998,-0.000144,39,0,0,0,1,6,0,0,39,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,199602,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136100',1136100,-400.007599,-0.063123,184.140106,-0.000144,39,0,0,0,1,6,0,0,39,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,199330,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136101',1136101,-403.100311,-0.089608,188.898804,-0.000144,39,0,0,0,1,6,0,0,39,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,199058,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136102',1136102,-360.642303,0.164527,231.393402,0.382734,12,0,0,0,1,6,0,0,12,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,198780,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136103',1136103,-384.551605,0.763345,233.278397,0.382638,12,0,0,0,1,6,0,0,12,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,198508,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136104',1136104,-386.850494,0.112991,227.897705,0.382734,12,0,0,0,1,6,0,0,12,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,198236,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313925',2313925,-482.564789,6.955613,61.610111,-0.000240,12,0,0,0,1,6,0,0,12,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,197964,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313933',2313933,-429.003693,2.320748,236.438400,-0.000048,39,0,0,0,1,6,0,0,39,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,197698,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313934',2313934,-409.316101,1.057956,244.817902,-0.000144,39,0,0,0,1,6,0,0,39,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,197426,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313935',2313935,-442.272491,2.403773,206.166901,-0.000048,39,0,0,0,1,6,0,0,39,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,197154,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313937',2313937,-428.366699,7.934575,277.541107,-0.000048,39,0,0,0,1,6,0,0,39,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,196882,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313938',2313938,-418.558289,9.127686,293.699799,-0.000144,39,0,0,0,1,6,0,0,39,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,196610,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313939',2313939,-424.849213,10.891960,297.223694,-0.000048,39,0,0,0,1,6,0,0,39,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,196338,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313940',2313940,-380.392212,6.912290,296.833710,0.382542,12,0,0,0,1,6,0,0,12,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,196060,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313942',2313942,-357.351105,2.181993,273.792603,0.382542,12,0,0,0,1,6,0,0,12,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,195788,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313943',2313943,-347.798889,4.318256,294.331207,0.382542,12,0,0,0,1,6,0,0,12,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,195516,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313944',2313944,-351.491608,4.226702,289.814514,0.382542,12,0,0,0,1,6,0,0,12,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,195244,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313946',2313946,-350.392914,9.353733,319.966400,0.382542,12,0,0,0,1,6,0,0,12,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,194972,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313948',2313948,-347.768402,-0.140188,238.560394,0.382734,12,0,0,0,1,6,0,0,12,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,194700,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313949',2313949,-334.432007,0.900235,197.100693,0.382638,12,0,0,0,1,6,0,0,12,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,194428,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313952',2313952,-512.518005,10.681730,106.017303,-0.000048,57,0,0,0,1,6,0,0,54,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,194174,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313954',2313954,-466.272797,4.568396,120.049896,-0.000144,57,0,0,0,1,6,0,0,54,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,193902,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313955',2313955,-503.845398,11.240590,124.209396,-0.000432,57,0,0,0,1,6,0,0,54,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,193630,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313959',2313959,-429.545593,1.312407,120.378799,-0.000048,57,0,0,0,1,6,0,0,54,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,193358,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313963',2313963,-417.238586,0.076732,65.064568,-0.000048,57,0,0,0,1,6,0,0,54,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,193086,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313964',2313964,-397.897705,-0.211857,75.408188,-0.000000,57,0,0,0,1,6,0,0,54,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,192814,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313967',2313967,-395.162506,-0.289825,72.009888,-0.000000,57,0,0,0,1,6,0,0,54,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,192542,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313971',2313971,-435.869385,1.346877,216.851196,-0.000048,57,0,0,0,1,6,0,0,54,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,192270,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313974',2313974,-381.439911,-0.122663,184.500702,-0.000048,57,0,0,0,1,6,0,0,54,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,191998,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313980',2313980,-464.159210,9.409202,251.654099,-0.000000,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,191726,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313982',2313982,-452.844788,11.917580,265.924805,-0.000000,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,191454,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313984',2313984,-436.512909,7.460858,266.224792,-0.000000,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,191182,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313985',2313985,-410.069000,6.296681,281.448486,-0.000000,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,190910,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313988',2313988,-425.559387,12.804490,309.608093,-0.000048,57,0,0,0,1,6,0,0,54,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,190638,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313989',2313989,-371.467285,4.569370,282.813202,-0.000048,57,0,0,0,1,6,0,0,54,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,190366,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313991',2313991,-342.802002,1.347080,267.457001,-0.000000,57,0,0,0,1,6,0,0,54,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,190094,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313993',2313993,-365.310303,-0.244142,207.010696,-0.000144,57,0,0,0,1,6,0,0,54,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,189822,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc2313994',2313994,-370.665497,1.130038,238.255402,-0.000144,57,0,0,0,1,6,0,0,54,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,189550,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3694900',3694900,-355.928314,-0.308188,209.458206,-0.000144,118,0,0,0,1,6,0,0,107,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,189284,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3694901',3694901,-358.039886,-0.389206,203.009705,-0.000048,118,0,0,0,1,6,0,0,107,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,189012,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3694902',3694902,-359.232910,-0.298962,198.263794,-0.000048,118,0,0,0,1,6,0,0,107,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,188740,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3694903',3694903,-364.384613,-0.113241,212.442200,-0.000048,118,0,0,0,1,6,0,0,107,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,188468,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3694904',3694904,-376.390198,-0.538467,203.341293,-0.000048,118,0,0,0,1,6,0,0,107,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,188196,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3694905',3694905,-364.056610,-0.145500,194.541702,-0.000048,118,0,0,0,1,6,0,0,107,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,187924,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3694906',3694906,-378.323914,-0.373772,200.093002,-0.000048,118,0,0,0,1,6,0,0,107,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,187652,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3694907',3694907,-368.149506,-0.318695,203.149994,-0.000048,118,0,0,0,1,6,0,0,107,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,187380,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136080',1136080,-390.585205,9.262146,310.566895,-0.000432,769,0,0,0,1,6,0,0,225,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,187114,5,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc1136074',1136074,-391.806000,9.109558,308.461090,-0.000527,769,0,0,0,1,6,0,0,225,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,186842,5,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3694733',3694733,-401.218414,11.367920,318.654388,0.884737,769,0,0,0,0,6,0,0,225,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,186570,5,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3694734',3694734,-406.210388,11.893380,317.922485,-0.000335,769,0,0,0,1,6,0,0,225,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,186298,5,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3694735',3694735,-390.079987,10.675150,320.996399,-0.000335,769,0,0,0,1,6,0,0,225,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,186026,5,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3694736',3694736,-405.569611,9.872559,309.346100,-0.000432,769,0,0,0,1,6,0,0,225,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,185754,5,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3694737',3694737,-399.718811,10.832540,315.967102,0.053588,769,0,0,0,0,6,0,0,225,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,185482,5,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3694738',3694738,-398.236786,11.123780,318.544708,-0.879943,769,0,0,0,0,6,0,0,225,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,185210,5,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3695053',3695053,-421.990997,0.316387,76.746277,-1.160055,1446,0,0,0,1,6,0,0,128,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,184944,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3694910',3694910,-391.653412,-0.503595,210.406601,0.255651,1446,0,0,0,1,6,0,0,128,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,184672,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3694908',3694908,-401.144989,0.532858,100.339798,-1.160055,1446,0,0,0,1,6,0,0,128,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,184400,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3694909',3694909,-394.740112,-0.280364,154.306000,-1.205238,1446,0,0,0,1,6,0,0,128,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,184128,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67137,'LVD_BNPC_PUB_01','f1f2','bnpc3695051',3695051,-419.371887,0.232080,192.587006,-0.870931,1446,0,0,0,1,6,0,0,128,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,183856,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136130',1136130,-325.468597,10.213140,333.038086,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,183114,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136131',1136131,-242.241394,-5.472987,226.931595,-0.311978,6,0,0,0,1,6,0,0,6,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,182842,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136132',1136132,-328.277710,4.935143,305.884399,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,182570,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136134',1136134,-321.859711,9.391951,328.320587,-0.311978,6,0,0,0,1,6,0,0,6,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,182298,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136136',1136136,-268.451996,-2.822966,243.274506,0.051629,6,0,0,0,1,6,0,0,6,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,182026,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136137',1136137,-184.086700,-8.314297,238.537598,0.051533,6,0,0,0,1,6,0,0,6,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,181754,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136139',1136139,-95.525383,-7.421386,293.721008,-0.000048,7,0,0,0,1,6,0,0,7,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,181488,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136140',1136140,-126.314003,-8.479818,267.845093,-0.000144,7,0,0,0,1,6,0,0,7,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,181216,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136141',1136141,-103.592903,-7.979246,256.096588,-0.000048,7,0,0,0,1,6,0,0,7,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,180944,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136142',1136142,-128.252106,-6.729275,293.324097,-0.000144,7,0,0,0,1,6,0,0,7,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,180672,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136143',1136143,-124.302597,-8.155410,276.504700,-0.000048,7,0,0,0,1,6,0,0,7,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,180400,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136158',1136158,-113.634003,-4.072056,313.771210,-0.000048,7,0,0,0,1,6,0,0,7,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,180128,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136163',1136163,-74.857803,4.447460,383.016602,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,179850,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136164',1136164,-32.537300,7.616392,412.410797,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,179578,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136165',1136165,-64.080299,11.043260,430.339905,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,179306,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136167',1136167,-5.813734,2.975462,373.769714,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,179034,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136168',1136168,37.950851,7.949909,464.214691,-0.000240,7,0,0,0,1,6,0,0,2157,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,178768,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136172',1136172,-27.413450,-5.802525,309.247986,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,178490,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136173',1136173,4.164327,-4.588222,319.364899,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,178218,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136174',1136174,-5.613925,-6.047291,306.725403,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,177946,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136175',1136175,-60.686939,-2.369054,328.478394,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,177674,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136177',1136177,-22.903839,-5.355963,311.696014,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,177402,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314003',2314003,-253.246994,-4.236800,221.935196,-0.311978,6,0,0,0,1,6,0,0,6,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,177130,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314004',2314004,-227.049805,-5.537235,202.864395,-0.311978,6,0,0,0,1,6,0,0,6,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176858,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314005',2314005,-197.435196,-7.994266,221.269196,-0.311978,6,0,0,0,1,6,0,0,6,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176586,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314006',2314006,-200.220596,-8.231664,224.271805,-0.311978,6,0,0,0,1,6,0,0,6,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176314,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314009',2314009,-125.018700,-7.681337,231.549805,-0.000048,7,0,0,0,1,6,0,0,7,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176048,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314010',2314010,-129.776001,-7.944516,225.414200,-0.000048,7,0,0,0,1,6,0,0,7,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,175776,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314041',2314041,-43.174789,-3.827868,319.130188,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,175498,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314070',2314070,-59.919048,11.628480,435.431305,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,175226,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314088',2314088,-35.123161,16.027519,447.688507,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,174954,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314102',2314102,-45.542999,11.092310,429.655396,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,174682,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314107',2314107,-24.940210,7.788889,415.915497,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,174410,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314112',2314112,2.340681,1.029590,360.915588,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,174138,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314133',2314133,-1.470222,0.327971,355.323486,-0.311882,6,0,0,0,1,6,0,0,6,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,173866,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314135',2314135,-2.340280,16.406719,467.504791,-0.000048,7,0,0,0,1,6,0,0,2157,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,173600,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314136',2314136,1.744962,15.965160,463.338013,-0.000048,7,0,0,0,1,6,0,0,2157,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,173328,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314137',2314137,67.368530,7.949890,446.280609,-0.000144,7,0,0,0,1,6,0,0,2157,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,173056,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314138',2314138,46.122662,7.817679,439.927185,-0.000336,7,0,0,0,1,6,0,0,2157,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,172784,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314144',2314144,68.332771,7.866884,474.070587,-0.000144,36,0,0,0,1,6,0,0,36,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,172518,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314145',2314145,42.399090,7.746444,460.622803,-0.000048,36,0,0,0,1,6,0,0,36,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,172246,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314146',2314146,97.762482,7.782855,392.593201,-0.000000,36,0,0,0,1,6,0,0,36,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,171974,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314147',2314147,82.413742,7.833769,430.187286,-0.000048,36,0,0,0,1,6,0,0,36,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,171702,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314148',2314148,4.571571,14.724090,481.634888,-0.000000,36,0,0,0,1,6,0,0,36,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,171430,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314149',2314149,115.912598,11.103390,432.906311,-0.000144,36,0,0,0,1,6,0,0,36,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,171158,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314150',2314150,2.013238,9.902340,432.648193,-0.000000,36,0,0,0,1,6,0,0,36,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,170886,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314151',2314151,-58.361721,5.610658,400.360504,-0.000000,36,0,0,0,1,6,0,0,36,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,170614,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314152',2314152,-85.923592,7.095398,408.499207,-0.000048,36,0,0,0,1,6,0,0,36,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,170342,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314153',2314153,-89.646797,6.881772,406.576599,-0.000048,36,0,0,0,1,6,0,0,36,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,170070,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314154',2314154,-6.062557,1.064418,360.585297,-0.000048,36,0,0,0,1,6,0,0,36,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,169798,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314155',2314155,5.446085,-3.557740,326.017792,-0.000144,36,0,0,0,1,6,0,0,36,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,169526,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314156',2314156,4.316917,-3.595564,325.071686,-0.000048,36,0,0,0,1,6,0,0,36,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,169254,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314157',2314157,-28.881241,-5.070975,313.819092,-0.000000,36,0,0,0,1,6,0,0,36,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,168982,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314159',2314159,-46.860470,-8.011047,221.606705,-0.000144,36,0,0,0,1,6,0,0,36,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,168710,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314160',2314160,-69.568810,-5.347832,198.726303,-0.000240,36,0,0,0,1,6,0,0,36,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,168438,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314161',2314161,-58.732021,-3.341773,321.766907,-0.000048,36,0,0,0,1,6,0,0,36,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,168166,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314163',2314163,-122.044701,1.863278,351.901215,-0.000048,36,0,0,0,1,6,0,0,36,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,167894,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314164',2314164,-134.686493,5.714658,377.345215,-0.000000,36,0,0,0,1,6,0,0,36,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,167622,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314165',2314165,-91.805458,-7.624840,295.133911,-0.000000,36,0,0,0,1,6,0,0,36,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,167350,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314166',2314166,-113.416000,-7.987957,278.087799,-0.000000,36,0,0,0,1,6,0,0,36,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,167078,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314173',2314173,-122.484200,-7.126010,289.814514,-0.000048,36,0,0,0,1,6,0,0,36,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,166806,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314174',2314174,-230.604599,-5.478079,208.442703,-0.000000,36,0,0,0,1,6,0,0,36,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,166534,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314175',2314175,-207.367706,-5.861229,204.890305,-0.000000,36,0,0,0,1,6,0,0,36,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,166262,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314177',2314177,-255.068893,-4.175101,226.840500,-0.000000,36,0,0,0,1,6,0,0,36,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,165990,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314180',2314180,-330.692505,7.278777,313.762604,-0.000000,36,0,0,0,1,6,0,0,36,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,165718,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314181',2314181,-317.594910,9.477072,339.549591,-0.000000,36,0,0,0,1,6,0,0,36,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,165446,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2341765',2341765,66.095573,7.840286,477.260101,-0.000144,7,0,0,0,1,6,0,0,2157,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,165168,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2341766',2341766,43.036430,7.860031,467.247192,-0.000240,7,0,0,0,1,6,0,0,2157,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164896,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2341767',2341767,24.573021,9.672716,473.677795,-0.000240,7,0,0,0,1,6,0,0,2157,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164624,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314034',2314034,-112.974503,2.718925,356.892609,-0.000144,47,0,0,0,1,6,0,0,220,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164364,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314035',2314035,-118.974602,1.573215,349.996094,-0.000144,47,0,0,0,1,6,0,0,220,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164092,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136162',1136162,-92.474274,0.803288,352.180786,-0.000144,47,0,0,0,1,6,0,0,220,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163820,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136161',1136161,-133.257095,-0.167896,343.312714,-0.000240,47,0,0,0,1,6,0,0,220,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163548,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3696616',3696616,-96.760498,3.493882,366.300812,-0.000144,47,0,0,0,1,6,0,0,220,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163276,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3696617',3696617,-93.824730,3.873965,372.828613,-0.000144,47,0,0,0,1,6,0,0,220,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163004,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3696618',3696618,-127.003799,2.972143,361.243103,-0.000144,47,0,0,0,1,6,0,0,220,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162732,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3696619',3696619,-133.940903,6.157478,379.316498,-0.000144,47,0,0,0,1,6,0,0,220,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162460,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3696870',3696870,-90.013023,12.924340,438.193298,-0.000240,311,0,0,0,1,6,0,0,241,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162194,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3696872',3696872,-97.337341,11.276370,431.967590,-0.000240,311,0,0,0,1,6,0,0,241,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161922,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3696873',3696873,-91.318466,10.895230,429.915894,0.743560,311,0,0,0,0,6,0,0,241,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161650,1,0,0,0,0,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3696876',3696876,-81.651070,11.886730,434.470093,-0.650897,79,0,0,0,1,6,0,0,239,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161384,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3696877',3696877,-91.226921,11.092580,430.953491,0.491744,79,0,0,0,0,6,0,0,239,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161112,1,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3696878',3696878,-87.327423,11.154300,431.082611,-1.208795,79,0,0,0,0,6,0,0,239,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160840,1,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3696879',3696879,-90.402939,11.068160,430.739899,-1.434438,81,0,0,0,0,6,0,0,240,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160574,1,0,0,0,0,30065,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3697774',3697774,-88.120903,11.001710,430.441711,0.320943,81,0,0,0,0,6,0,0,240,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160302,1,0,0,0,0,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3697775',3697775,-88.426071,11.490000,427.695099,0.268547,81,0,0,0,0,6,0,0,240,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160030,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314140',2314140,104.234299,8.804408,412.466614,-0.000240,33,0,0,0,1,6,0,0,214,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159764,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314141',2314141,123.021004,12.317820,423.590515,-0.000240,33,0,0,0,1,6,0,0,214,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159492,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314139',2314139,108.354301,9.109589,407.461609,-0.000240,33,0,0,0,1,6,0,0,214,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159220,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314142',2314142,109.849602,10.971190,457.846893,-0.000144,33,0,0,0,1,6,0,0,214,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158948,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc1136170',1136170,78.733383,6.701904,382.834015,-0.000432,33,0,0,0,1,6,0,0,214,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158676,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3697778',3697778,92.364197,7.706964,389.248596,-0.000336,33,0,0,0,1,6,0,0,214,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158404,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3697779',3697779,108.716797,9.727629,431.794403,-0.000240,33,0,0,0,1,6,0,0,214,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158132,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3697780',3697780,80.686493,7.961041,421.256897,-0.000336,33,0,0,0,1,6,0,0,214,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157860,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314048',2314048,-54.297371,-4.774252,197.991501,-0.449032,179,0,0,0,1,6,0,0,223,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157594,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314043',2314043,-31.562269,-4.485572,194.662094,-0.814988,179,0,0,0,1,6,0,0,223,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157322,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc2314047',2314047,-33.348999,-6.685591,211.045303,-1.567708,179,0,0,0,1,6,0,0,223,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157050,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3698022',3698022,-75.550377,-5.582465,200.264694,0.036001,179,0,0,0,1,6,0,0,223,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156778,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3698023',3698023,-38.882149,-4.081942,191.941605,1.077206,179,0,0,0,1,6,0,0,223,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156506,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3698921',3698921,-37.577309,-8.258268,242.908295,-1.461235,179,0,0,0,1,6,0,0,223,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156234,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3700086',3700086,-37.311859,-8.389291,259.427307,-0.750647,179,0,0,0,1,6,0,0,223,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155962,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70479,'LVD_BNPC_PUB_02','f1f2','bnpc3701093',3701093,-28.851320,-7.961150,249.751205,-0.724194,179,0,0,0,1,6,0,0,223,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155690,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc1136178',1136178,-138.536697,-2.761930,180.468399,-0.000336,15,0,0,0,1,6,0,0,16,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155116,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc1136179',1136179,-156.542297,2.639764,135.026993,-0.000240,15,0,0,0,1,6,0,0,16,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154844,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc1136180',1136180,-150.621796,2.365101,138.292496,-0.000336,15,0,0,0,1,6,0,0,16,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154572,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc1136182',1136182,-172.930496,-0.839293,164.965195,-0.000240,15,0,0,0,1,6,0,0,16,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154300,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314228',2314228,-134.111603,-2.151569,175.158295,-0.000240,15,0,0,0,1,6,0,0,16,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154028,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314253',2314253,-336.507202,6.607109,55.985298,-0.000048,38,0,0,0,1,6,0,0,38,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153762,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314258',2314258,-287.312195,8.499228,64.072594,-0.000048,38,0,0,0,1,6,0,0,38,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153490,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314261',2314261,-285.236908,7.675241,65.262787,-0.000048,38,0,0,0,1,6,0,0,38,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153218,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314262',2314262,-249.378204,7.888867,63.401192,-0.000048,38,0,0,0,1,6,0,0,38,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152946,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314265',2314265,-295.246887,5.966230,120.439400,-0.000048,38,0,0,0,1,6,0,0,38,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152674,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314267',2314267,-244.488403,4.113512,102.499100,-0.000144,38,0,0,0,1,6,0,0,38,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152402,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314270',2314270,-200.428696,4.427309,103.759300,-0.000144,38,0,0,0,1,6,0,0,38,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152130,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314275',2314275,-199.511703,13.382110,47.836979,-0.000048,38,0,0,0,1,6,0,0,38,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151858,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314280',2314280,-188.377304,27.717520,-44.157928,-0.000000,38,0,0,0,1,6,0,0,38,0,0.000000,24,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151586,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314286',2314286,-183.089706,31.517771,-61.713600,-0.000000,38,0,0,0,1,6,0,0,38,0,0.000000,24,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151314,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314288',2314288,-189.410294,46.463669,-104.997398,-0.000048,38,0,0,0,1,6,0,0,38,0,0.000000,24,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151042,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314290',2314290,-191.485504,47.196110,-107.194702,-0.000048,38,0,0,0,1,6,0,0,38,0,0.000000,24,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150770,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314302',2314302,-182.177505,1.937849,136.217194,-0.000240,38,0,0,0,1,6,0,0,38,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150498,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314304',2314304,-186.236404,2.212511,133.592697,-0.000240,38,0,0,0,1,6,0,0,38,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150226,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314305',2314305,-141.374893,-2.090533,175.005707,-0.000144,38,0,0,0,1,6,0,0,38,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149954,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314308',2314308,-187.396103,-1.052920,170.153305,-0.000144,38,0,0,0,1,6,0,0,38,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149682,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314309',2314309,-129.839096,0.320392,156.450699,-0.000240,38,0,0,0,1,6,0,0,38,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149410,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314314',2314314,-186.266907,-0.961365,166.521698,-0.000144,38,0,0,0,1,6,0,0,38,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149138,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314276',2314276,-226.188293,11.478340,8.346189,-0.000336,15,0,0,0,1,6,0,0,16,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148860,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314196',2314196,-237.055405,3.071132,110.837601,-0.000240,15,0,0,0,1,6,0,0,16,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148588,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc1136196',1136196,-216.479797,5.813640,85.984543,-0.000144,15,0,0,0,1,6,0,0,16,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148316,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc1136198',1136198,-280.833405,6.822407,95.059250,-0.000240,15,0,0,0,1,6,0,0,16,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148044,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc1136197',1136197,-296.681213,8.743372,66.361427,-0.000144,15,0,0,0,1,6,0,0,16,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147772,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314197',2314197,-241.022705,2.939748,114.865997,-0.000240,15,0,0,0,1,6,0,0,16,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147500,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2314192',2314192,-345.082794,6.485037,63.248600,-0.000144,15,0,0,0,1,6,0,0,16,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147228,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc1136194',1136194,-253.040405,11.428960,-3.524881,-0.000144,44,0,0,0,1,6,0,0,44,0,0.000000,24,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146968,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc1136190',1136190,-288.410797,11.764660,-25.711500,-0.000527,44,0,0,0,1,6,0,0,44,0,0.000000,24,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146696,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2350399',2350399,-284.382385,11.856210,-27.054291,-0.000527,44,0,0,0,1,6,0,0,44,0,0.000000,24,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146424,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2350400',2350400,-260.730988,11.703620,-32.242359,-0.000432,44,0,0,0,1,6,0,0,44,0,0.000000,24,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146152,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2350402',2350402,-285.664215,12.558130,-52.719971,-0.000432,44,0,0,0,1,6,0,0,44,0,0.000000,24,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145880,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2499386',2499386,-228.497696,12.354860,2.668262,-0.000048,38,0,0,0,1,6,0,0,38,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145602,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3726783',3726783,-306.845306,7.615899,107.505699,0.770070,24,0,0,0,1,6,0,0,232,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145342,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3726785',3726785,-258.686188,7.797313,66.056259,0.357087,24,0,0,0,1,6,0,0,232,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145070,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3726788',3726788,-219.973602,2.520791,114.552399,-0.722575,24,0,0,0,1,6,0,0,232,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144798,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3726789',3726789,-199.571198,6.403381,88.836418,-1.320582,24,0,0,0,1,6,0,0,232,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144526,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3727336',3727336,-233.240204,11.494870,34.787762,0.858004,24,0,0,0,1,6,0,0,232,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144254,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3727339',3727339,-197.756302,14.999770,41.853489,-1.039859,24,0,0,0,1,6,0,0,232,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143982,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3727712',3727712,-313.497192,11.569130,-31.583179,-0.000048,306,0,0,0,1,6,0,0,211,0,0.000000,24,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143716,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3727713',3727713,-314.589386,11.902390,-35.298470,-0.000048,306,0,0,0,1,6,0,0,211,0,0.000000,24,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143444,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3727714',3727714,-306.619385,11.253370,-13.814930,-0.000000,306,0,0,0,1,6,0,0,211,0,0.000000,24,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143172,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3727715',3727715,-278.890808,12.580250,-40.299412,-0.000048,306,0,0,0,1,6,0,0,211,0,0.000000,24,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142900,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3727717',3727717,-267.242004,11.943940,-40.949741,-0.000048,306,0,0,0,1,6,0,0,211,0,0.000000,24,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142628,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3727718',3727718,-273.701111,11.886720,-21.286381,-0.000048,306,0,0,0,1,6,0,0,211,0,0.000000,24,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142356,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3727732',3727732,-134.691406,15.243710,-3.646973,-0.723618,70,0,0,0,0,6,0,0,229,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142090,1,0,0,0,17,30120,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3727734',3727734,-137.071793,14.908020,-3.555420,-1.464879,71,0,0,0,1,6,0,0,230,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141824,1,0,0,0,17,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3727735',3727735,-134.325195,15.182740,-2.365173,-0.232402,72,0,0,0,0,6,0,0,231,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141558,1,0,0,0,17,30119,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3727738',3727738,-101.701401,19.180540,10.727050,-1.041349,70,0,0,0,1,6,0,0,229,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141274,1,0,0,0,17,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3727739',3727739,-69.779541,17.349430,6.759644,-1.300404,71,0,0,0,0,6,0,0,230,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141008,1,0,0,0,17,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3727740',3727740,-74.509888,17.685120,8.499207,-0.857173,72,0,0,0,1,6,0,0,231,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140742,1,0,0,0,17,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3727743',3727743,-106.065498,18.173450,14.633350,0.697876,71,0,0,0,0,6,0,0,230,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140464,1,0,0,0,17,30121,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3727744',3727744,-104.844803,18.509150,14.328170,-1.205536,72,0,0,0,0,6,0,0,231,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140198,1,0,0,0,17,30120,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc3727745',3727745,-105.729797,18.387070,12.954860,-0.000432,70,0,0,0,0,6,0,0,229,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139914,1,0,0,0,17,30119,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc2350401',2350401,-287.373199,11.490000,-7.705853,-0.000432,2264,0,0,0,1,6,0,0,2187,0,0.000000,24,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139660,6,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc1136191',1136191,-269.916901,12.741240,-45.975479,-0.000432,2264,0,0,0,1,6,0,0,2187,0,0.000000,24,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139388,6,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70480,'LVD_BNPC_PUB_03','f1f2','bnpc1136192',1136192,-305.683990,11.673100,-35.629860,-0.000336,2264,0,0,0,1,6,0,0,2187,0,0.000000,24,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139116,6,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314451',2314451,-12.582740,19.341261,-16.372990,-0.000048,133,0,0,0,1,6,0,0,115,0,0.000000,43,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138382,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314457',2314457,-8.483642,19.834230,12.296340,-0.000048,133,0,0,0,1,6,0,0,115,0,0.000000,43,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138110,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314458',2314458,60.166260,13.473630,9.872559,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,43,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137838,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314460',2314460,90.726227,9.726084,-48.813629,-0.000048,133,0,0,0,1,6,0,0,115,0,0.000000,43,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137566,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314462',2314462,184.311996,-2.061695,22.900990,-0.000000,133,0,0,0,1,6,0,0,115,0,0.000000,43,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137294,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314464',2314464,212.298294,-3.300554,68.344177,-0.000000,133,0,0,0,1,6,0,0,115,0,0.000000,40,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137022,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314465',2314465,254.499100,-0.309484,161.274002,-0.000000,133,0,0,0,1,6,0,0,115,0,0.000000,40,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136750,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314466',2314466,216.507706,0.515230,114.319603,-0.000048,133,0,0,0,1,6,0,0,115,0,0.000000,40,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136478,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314610',2314610,306.118286,-6.238892,11.614130,-0.000048,133,0,0,0,1,6,0,0,115,0,0.000000,41,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136206,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314612',2314612,236.715302,-5.231476,-56.311989,-0.000000,133,0,0,0,1,6,0,0,115,0,0.000000,41,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135934,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314613',2314613,213.666504,-2.576396,-14.211420,-0.000000,133,0,0,0,1,6,0,0,115,0,0.000000,41,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135662,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314617',2314617,332.661499,-4.732603,-51.060032,-0.000048,133,0,0,0,1,6,0,0,115,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135390,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314621',2314621,364.126007,-2.822966,-30.502831,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135118,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314623',2314623,361.654114,-2.670410,-53.025211,-0.000048,133,0,0,0,1,6,0,0,115,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134846,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314626',2314626,519.135681,-12.154410,-35.360329,-0.000000,133,0,0,0,1,6,0,0,115,0,0.000000,44,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134574,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314632',2314632,562.935120,-12.088730,-2.092934,-0.000000,133,0,0,0,1,6,0,0,115,0,0.000000,44,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134302,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314634',2314634,546.164124,-11.988440,-64.370163,-0.000000,133,0,0,0,1,6,0,0,115,0,0.000000,44,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134030,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314640',2314640,622.314026,-13.134470,-6.901284,-0.000000,133,0,0,0,1,6,0,0,115,0,0.000000,44,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133758,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314642',2314642,619.809082,-12.711930,-6.546345,-0.000000,133,0,0,0,1,6,0,0,115,0,0.000000,44,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133486,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314715',2314715,570.641479,-12.100450,-40.116009,-0.000336,63,0,0,0,1,6,0,0,60,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133220,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314717',2314717,566.063782,-11.947860,-47.776039,-1.255678,64,0,0,0,0,6,0,0,61,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132954,1,0,0,0,0,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314726',2314726,556.389587,-12.008900,-42.404869,-0.000048,55,0,0,0,1,6,0,0,53,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132688,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1136230',1136230,507.865997,-11.795270,4.501364,-0.000240,33,0,0,0,1,6,0,0,33,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132332,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1136231',1136231,537.636780,-12.274270,-13.554320,-0.000144,33,0,0,0,1,6,0,0,33,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132060,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1136232',1136232,536.101196,-12.090500,-2.388316,-0.000048,33,0,0,0,1,6,0,0,33,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131788,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1136233',1136233,530.091492,-12.161830,-4.477412,-0.000048,33,0,0,0,1,6,0,0,33,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131516,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1136234',1136234,514.392822,-12.155740,-30.914129,-0.000048,33,0,0,0,1,6,0,0,33,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131244,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1136235',1136235,594.192078,-12.117190,-6.794415,-0.000048,33,0,0,0,1,6,0,0,33,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130972,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162438',1162438,234.721100,4.423762,180.467896,-0.000048,33,0,0,0,1,6,0,0,33,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130700,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162439',1162439,236.722900,4.611117,188.587906,-0.000048,33,0,0,0,1,6,0,0,33,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130428,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162445',1162445,199.757599,6.240894,156.164093,-0.000048,33,0,0,0,1,6,0,0,33,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130156,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162461',1162461,279.461212,-4.218416,42.329281,-1.370013,33,0,0,0,1,6,0,0,33,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129884,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162462',1162462,294.178589,-5.478088,38.284790,-0.000144,33,0,0,0,1,6,0,0,33,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129612,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162472',1162472,227.649307,-3.036592,-15.976240,-0.000144,33,0,0,0,1,6,0,0,33,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129340,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162476',1162476,220.935303,-2.975586,-22.720699,-0.000144,33,0,0,0,1,6,0,0,33,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129068,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2320483',2320483,376.638397,-2.304138,-39.993961,-0.000527,61,0,0,0,1,6,0,0,58,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128886,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2320484',2320484,381.979004,-2.517761,-36.209721,-1.510323,62,0,0,0,0,6,0,0,59,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128620,1,0,0,0,0,30065,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2320487',2320487,378.164307,-2.273621,-37.033691,-0.000527,55,0,0,0,1,6,0,0,53,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128336,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2320488',2320488,413.927094,-11.864880,-0.202001,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128046,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2320489',2320489,450.408203,-11.066550,-6.123241,-0.000240,33,0,0,0,1,6,0,0,33,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127708,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162452',1162452,286.884094,0.589654,176.855103,-0.868946,178,0,0,0,1,6,0,0,222,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127538,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162453',1162453,298.563293,-0.085100,171.096207,-0.093916,178,0,0,0,1,6,0,0,222,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127266,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162451',1162451,252.094193,0.076233,155.870804,-0.000432,178,0,0,0,1,6,0,0,222,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126994,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162458',1162458,203.268799,1.655764,106.938103,0.896386,178,0,0,0,1,6,0,0,222,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126722,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162467',1162467,241.840195,-1.764643,99.107300,-1.329596,178,0,0,0,1,6,0,0,222,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126450,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162460',1162460,243.554703,-3.339902,84.717239,-1.311461,178,0,0,0,1,6,0,0,222,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126178,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162477',1162477,207.324203,-4.013123,-42.343868,-0.000144,24,0,0,0,1,6,0,0,233,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125834,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc3727746',3727746,246.108398,-4.984168,-31.182381,-0.671005,24,0,0,0,1,6,0,0,233,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125562,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc3727747',3727747,221.653900,-5.011750,-51.817490,-0.000144,24,0,0,0,1,6,0,0,233,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125290,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162463',1162463,301.736115,-5.423965,50.006149,-0.000432,24,0,0,0,1,6,0,0,233,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125018,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162469',1162469,274.593109,-5.942087,11.604580,-0.000144,24,0,0,0,1,6,0,0,233,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124746,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc3729074',3729074,76.092232,11.110100,-47.602612,-0.000048,140,0,0,0,1,6,0,0,237,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124552,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc3729746',3729746,86.654007,8.922870,-28.246519,-0.000048,140,0,0,0,1,6,0,0,237,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124280,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc3729747',3729747,108.261803,6.031532,-26.458651,-1.095710,140,0,0,0,1,6,0,0,237,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124008,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc3729748',3729748,115.837196,4.964785,13.643280,-0.000000,140,0,0,0,1,6,0,0,237,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123736,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc3729749',3729749,71.684547,11.649810,-44.096661,-0.000048,140,0,0,0,1,6,0,0,237,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123464,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc3741023',3741023,381.093994,-2.365173,-37.277828,-0.770694,55,0,0,0,0,6,0,0,53,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123168,1,0,0,0,0,30082,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc3741027',3741027,379.934296,-2.304138,-35.904541,1.132574,62,0,0,0,0,6,0,0,59,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122908,1,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc3741028',3741028,378.072815,-2.426208,-33.066349,-0.000527,61,0,0,0,1,6,0,0,58,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122630,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc3741029',3741029,565.056824,-11.978380,-48.966251,0.119700,55,0,0,0,0,6,0,0,53,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122352,1,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc3741030',3741030,546.837524,-12.436150,-46.677391,-0.000240,64,0,0,0,1,6,0,0,61,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122074,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc3741031',3741031,549.614624,-12.436150,-49.210388,-0.000336,63,0,0,0,1,6,0,0,60,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121796,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162483',1162483,356.642700,-2.987466,-35.734451,-0.000527,762,0,0,0,1,6,0,0,64,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121566,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2350715',2350715,350.270203,-2.804400,-50.397419,-0.587332,762,0,0,0,0,6,0,0,64,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121294,2,0,0,0,0,30120,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314363',2314363,-6.294857,20.221451,15.311720,-0.000144,762,0,0,0,1,6,0,0,64,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121022,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162490',1162490,-9.318063,19.332541,-19.108101,-1.131696,762,0,0,0,1,6,0,0,64,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120750,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162482',1162482,181.322906,-0.473083,58.762451,-0.000144,762,0,0,0,1,6,0,0,64,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120478,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162479',1162479,154.222900,0.015198,7.949890,-0.000144,762,0,0,0,1,6,0,0,64,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120206,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1136224',1136224,68.558739,11.184820,-24.826481,0.626305,762,0,0,0,0,6,0,0,64,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119934,2,0,0,0,0,30122,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314366',2314366,113.664398,5.874695,-41.245178,-0.000335,762,0,0,0,1,6,0,0,64,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119662,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162492',1162492,-20.523430,17.990339,11.642590,-0.000144,763,0,0,0,1,6,0,0,65,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119396,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162486',1162486,111.986000,6.118835,-40.909481,-0.000527,763,0,0,0,1,6,0,0,65,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119124,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2350717',2350717,364.079590,-4.248232,-7.079392,-0.000335,763,0,0,0,1,6,0,0,65,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118852,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162484',1162484,333.913086,-4.135254,-40.177059,-0.000432,763,0,0,0,1,6,0,0,65,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118580,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1136225',1136225,69.687866,11.001710,-24.643370,-1.523410,763,0,0,0,0,6,0,0,65,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118308,2,0,0,0,0,30119,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314369',2314369,176.512604,-4.252202,-4.205355,-0.577169,763,0,0,0,0,6,0,0,65,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118036,2,0,0,0,0,30119,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314364',2314364,80.094597,9.658875,14.206050,-0.136526,763,0,0,0,0,6,0,0,65,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117764,2,0,0,0,0,30124,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162480',1162480,176.019806,-4.055645,-3.018583,0.429334,763,0,0,0,0,6,0,0,65,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117492,2,0,0,0,0,30120,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314398',2314398,350.148193,-2.774287,-52.136921,-0.876444,764,0,0,0,0,6,0,0,66,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117226,2,0,0,0,0,30119,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314365',2314365,111.406097,6.393494,-42.557430,-0.000527,764,0,0,0,0,6,0,0,66,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116954,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc2314362',2314362,-5.424891,19.709511,-18.332621,-0.643782,764,0,0,0,0,6,0,0,66,0,0.000000,43,0,120,1,0,1,0,32,1,0,0,0,1,0,0.000000,1.000000,116682,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1136229',1136229,349.049408,-2.892388,-51.221401,1.541818,764,0,0,0,0,6,0,0,66,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116410,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1136228',1136228,333.638397,-4.043701,-37.918701,-0.000432,764,0,0,0,1,6,0,0,66,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116138,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162487',1162487,74.814934,10.482900,-18.448200,-0.000240,764,0,0,0,1,6,0,0,66,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115866,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc1162481',1162481,178.942505,-0.503601,60.196781,-0.000144,764,0,0,0,1,6,0,0,66,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115594,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc4526163',4526163,295.063599,0.717163,180.926102,-1.311334,2660,0,0,0,0,6,0,0,2314,0,0.000000,41,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115328,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc4526153',4526153,101.728302,6.775696,-29.255630,-0.350376,2660,0,0,0,0,6,0,0,2314,0,0.000000,41,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115056,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc4526159',4526159,-5.661133,19.302610,-20.096189,0.459099,2660,0,0,0,0,6,0,0,2314,0,0.000000,41,1,120,1,0,1,0,32,1,0,0,0,1,0,0.000000,1.000000,114784,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc4526138',4526138,207.189499,-4.405000,-55.771381,1.211957,2660,0,0,0,0,6,0,0,2314,0,0.000000,41,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114512,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc4526170',4526170,243.762802,-2.334717,93.644531,-0.029194,2660,0,0,0,0,6,0,0,2314,0,0.000000,41,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114240,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc4618294',4618294,99.668091,8.096478,-41.502491,-0.000048,140,0,0,0,1,6,0,0,237,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113944,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc4618295',4618295,114.137100,6.064597,-18.577110,-0.000048,140,0,0,0,1,6,0,0,237,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113672,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc4618296',4618296,119.902702,5.962872,-52.469212,-0.000048,140,0,0,0,1,6,0,0,237,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113400,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc4618297',4618297,273.146088,-0.359490,138.990295,-0.000432,178,0,0,0,1,6,0,0,222,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113122,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc4618298',4618298,194.044495,3.506398,122.434998,1.232559,178,0,0,0,1,6,0,0,222,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112850,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc4618299',4618299,301.813202,-6.703927,30.420111,-0.000144,24,0,0,0,1,6,0,0,233,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112506,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc4618300',4618300,344.534210,-4.776098,-14.875460,-0.000144,24,0,0,0,1,6,0,0,233,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112234,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc4618301',4618301,198.657104,2.212463,118.242104,1.465645,2660,0,0,0,0,6,0,0,2314,0,0.000000,41,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112064,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc4618302',4618302,280.378998,-4.542100,48.923759,-1.319474,2660,0,0,0,0,6,0,0,2314,0,0.000000,41,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111792,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70481,'LVD_BNPC_PUB_04','f1f2','bnpc4618303',4618303,221.648804,-2.880372,-13.690810,0.607819,2660,0,0,0,0,6,0,0,2314,0,0.000000,41,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111520,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317800',4317800,498.771515,-17.898861,-313.954407,-0.000048,762,0,0,0,1,6,0,0,67,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110750,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317801',4317801,451.322998,-15.501170,-279.865692,-1.546818,763,0,0,0,0,6,0,0,68,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110484,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317802',4317802,514.823975,-20.341690,-358.783813,-0.000048,764,0,0,0,0,6,0,0,69,0,0.000000,47,0,120,1,0,6,0,32,1,0,0,0,1,0,0.000000,1.000000,110218,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317803',4317803,260.486694,-11.080910,-154.824493,-0.000048,27,0,0,0,1,6,0,0,164,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109958,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317804',4317804,357.625610,-18.265079,-146.196701,-0.000048,27,0,0,0,1,6,0,0,164,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109686,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317805',4317805,327.286591,-17.372709,-188.968796,-0.000048,27,0,0,0,1,6,0,0,164,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109414,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317817',4317817,294.575806,-12.980530,-180.587906,-0.000048,27,0,0,0,1,6,0,0,164,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109142,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317818',4317818,388.959412,-18.823000,-212.157593,-0.000048,403,0,0,0,1,6,0,0,567,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108876,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317819',4317819,314.365814,-18.527800,-289.215912,-0.000048,403,0,0,0,1,6,0,0,567,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108604,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317820',4317820,329.818115,-17.597429,-223.296097,-0.000048,403,0,0,0,1,6,0,0,567,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108332,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317821',4317821,370.788086,-17.580059,-245.788101,-0.000048,403,0,0,0,1,6,0,0,567,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108060,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317822',4317822,291.974792,-19.793560,-289.794800,-0.000048,403,0,0,0,1,6,0,0,567,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107788,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317826',4317826,253.924606,-23.493771,-397.838715,-0.000048,48,0,0,0,1,6,0,0,166,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107522,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317827',4317827,253.467499,-24.551821,-431.753998,-0.000048,48,0,0,0,1,6,0,0,166,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107250,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317829',4317829,213.044601,-20.737579,-407.032990,-0.000048,48,0,0,0,1,6,0,0,166,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106978,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317830',4317830,215.188202,-20.979630,-409.962799,-0.000048,48,0,0,0,1,6,0,0,166,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106706,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317832',4317832,145.520706,-23.570749,-477.912994,-0.000048,24,0,0,0,1,6,0,0,163,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106314,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317833',4317833,133.494904,-23.758650,-547.963074,-0.000048,24,0,0,0,1,6,0,0,163,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106042,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317834',4317834,173.863693,-25.574671,-517.082520,-0.000048,24,0,0,0,1,6,0,0,163,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105770,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317836',4317836,-10.175820,-35.238060,-550.143311,-0.000000,24,0,0,0,1,6,0,0,163,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105498,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317838',4317838,-52.048519,-35.202579,-528.496216,-0.000048,24,0,0,0,1,6,0,0,163,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105226,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317839',4317839,186.907700,-23.727840,-376.882599,-0.000048,48,0,0,0,1,6,0,0,166,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105074,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317840',4317840,126.817703,-25.925110,-347.127502,-0.000048,23,0,0,0,1,6,0,0,162,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104808,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317842',4317842,115.994499,-26.717680,-354.423096,-0.000048,23,0,0,0,1,6,0,0,162,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104536,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317844',4317844,88.409050,-26.293819,-339.833893,-0.000048,23,0,0,0,1,6,0,0,162,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104264,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317849',4317849,137.315903,-23.270020,-304.951599,-0.000048,23,0,0,0,1,6,0,0,162,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103992,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317852',4317852,155.825104,-29.775539,-226.307693,-0.000048,33,0,0,0,1,6,0,0,165,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103564,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317853',4317853,113.237198,-29.434690,-221.118500,-0.000048,33,0,0,0,1,6,0,0,165,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103292,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317854',4317854,146.903900,-29.527519,-215.189804,-0.000048,33,0,0,0,1,6,0,0,165,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103020,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317855',4317855,129.991104,-29.535959,-245.124496,-0.000048,33,0,0,0,1,6,0,0,165,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102748,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317863',4317863,207.402206,-6.915606,-189.063599,1.010190,763,0,0,0,1,6,0,0,68,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102596,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317864',4317864,351.494507,-15.727020,-259.491211,-0.234290,764,0,0,0,0,6,0,0,69,0,0.000000,47,0,120,1,0,7,0,32,1,0,0,0,1,0,0.000000,1.000000,102330,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317873',4317873,284.544312,-19.539360,-291.495911,-0.110059,762,0,0,0,0,6,0,0,67,0,0.000000,45,0,120,1,0,10,0,32,1,0,0,0,1,0,0.000000,1.000000,102046,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317874',4317874,368.856201,-20.248779,-184.771500,-0.908754,763,0,0,0,0,6,0,0,68,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101780,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317875',4317875,368.581512,-20.218201,-183.856003,-0.079672,764,0,0,0,0,6,0,0,69,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101514,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317885',4317885,366.659302,-17.544319,-237.723404,-0.000048,763,0,0,0,1,6,0,0,68,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101236,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317886',4317886,443.139709,-18.693390,-238.559097,-0.000048,764,0,0,0,1,6,0,0,69,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100970,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317887',4317887,249.626694,-24.511021,-435.444397,-0.542111,764,0,0,0,0,6,0,0,2318,0,0.000000,49,0,120,1,0,13,0,32,1,0,0,0,1,0,0.000000,1.000000,100698,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317891',4317891,131.792099,-25.070620,-394.277893,-0.000048,763,0,0,0,1,6,0,0,2317,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100420,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317893',4317893,112.708099,-30.261940,-194.688599,-0.017503,764,0,0,0,0,6,0,0,2318,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100154,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317894',4317894,193.408096,-31.479370,-219.684097,1.144175,762,0,0,0,0,6,0,0,2319,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99870,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317897',4317897,129.072906,-22.173210,-564.551880,0.714800,763,0,0,0,0,6,0,0,2317,0,0.000000,49,0,120,1,0,11,0,32,1,0,0,0,1,0,0.000000,1.000000,99604,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317899',4317899,253.498001,-23.239559,-517.052002,-0.000048,764,0,0,0,1,6,0,0,2318,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99338,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317900',4317900,165.575607,-26.840639,-542.717712,1.109468,763,0,0,0,0,6,0,0,2317,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99060,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317901',4317901,166.460602,-26.871220,-543.541626,-0.492176,762,0,0,0,0,6,0,0,2319,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98782,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317902',4317902,156.908401,-24.429689,-455.588593,0.222143,764,0,0,0,0,6,0,0,2318,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98522,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317903',4317903,-37.241699,-35.085869,-537.987976,-0.000048,764,0,0,0,1,6,0,0,2318,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98250,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317904',4317904,-33.412891,-35.156620,-549.607971,-0.000048,763,0,0,0,1,6,0,0,2317,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97972,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317905',4317905,-27.481510,-34.836430,-541.802124,-0.000048,762,0,0,0,1,6,0,0,2319,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97694,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317909',4317909,143.718704,-29.336210,-230.073807,-0.000048,764,0,0,0,1,6,0,0,2318,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97434,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317911',4317911,119.399300,-26.408409,-346.557190,-0.000048,762,0,0,0,1,6,0,0,2319,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97150,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317912',4317912,139.559601,-29.771700,-244.522903,-0.000048,763,0,0,0,0,6,0,0,2317,0,0.000000,49,0,120,1,0,15,0,32,1,0,0,0,1,0,0.000000,1.000000,96884,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317916',4317916,565.405212,-22.088120,-350.810913,-1.475796,762,0,0,0,0,6,0,0,67,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96606,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317917',4317917,558.970886,-22.530359,-353.985687,-0.000048,764,0,0,0,1,6,0,0,69,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96346,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317918',4317918,561.280518,-22.530359,-344.947998,-0.000048,763,0,0,0,1,6,0,0,68,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96068,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317920',4317920,553.652527,-24.130871,-379.476715,-1.520960,762,0,0,0,0,6,0,0,67,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95790,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317921',4317921,528.888000,-24.002501,-316.121185,-0.000048,764,0,0,0,1,6,0,0,69,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95530,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317922',4317922,552.422424,-24.124571,-379.629211,0.881328,763,0,0,0,0,6,0,0,68,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95252,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317923',4317923,516.716187,-20.340330,-366.170807,-0.000048,764,0,0,0,1,6,0,0,69,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94986,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317924',4317924,544.539673,-24.024820,-352.536011,-0.000048,762,0,0,0,1,6,0,0,67,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94702,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317925',4317925,573.032776,-24.048040,-372.673492,-0.000048,763,0,0,0,1,6,0,0,68,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94436,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317927',4317927,408.712799,-28.427610,-401.419098,-0.000048,763,0,0,0,1,6,0,0,68,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94164,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317930',4317930,335.927399,-28.671749,-421.042206,-0.000048,762,0,0,0,0,6,0,0,67,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93886,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317931',4317931,335.683105,-28.763309,-419.913086,0.728652,763,0,0,0,0,6,0,0,68,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93620,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317932',4317932,349.965607,-28.000311,-412.710785,-0.000048,764,0,0,0,1,6,0,0,69,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93354,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317933',4317933,339.902313,-28.306200,-487.054108,-0.000048,762,0,0,0,1,6,0,0,67,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93070,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317934',4317934,370.887909,-34.493279,-462.935608,-1.037194,763,0,0,0,0,6,0,0,68,0,0.000000,47,0,120,1,0,9,0,32,1,0,0,0,1,0,0.000000,1.000000,92804,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317935',4317935,351.582886,-28.032480,-484.519714,-0.000048,764,0,0,0,1,6,0,0,69,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92538,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317936',4317936,425.497803,-28.366579,-482.505615,-0.000048,762,0,0,0,1,6,0,0,67,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92254,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317937',4317937,424.521210,-27.908751,-463.431793,-0.000048,763,0,0,0,1,6,0,0,68,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91988,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317938',4317938,358.322601,-28.245850,-509.974213,-0.000048,764,0,0,0,0,6,0,0,69,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91722,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317939',4317939,388.815186,-34.042912,-418.204010,-0.000048,762,0,0,0,1,6,0,0,67,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91438,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317940',4317940,413.626190,-34.042912,-447.318207,-0.000048,763,0,0,0,1,6,0,0,68,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91172,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317943',4317943,383.576294,-27.500000,-515.033020,1.224411,764,0,0,0,0,6,0,0,69,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90906,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317944',4317944,403.162109,-27.877609,-499.533905,-0.294335,763,0,0,0,0,6,0,0,68,0,0.000000,47,0,120,1,0,8,0,32,1,0,0,0,1,0,0.000000,1.000000,90628,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317945',4317945,384.859497,-27.500000,-514.937012,-0.856175,762,0,0,0,0,6,0,0,67,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90350,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317946',4317946,391.422485,-17.924709,-377.696991,-0.000048,764,0,0,0,1,6,0,0,69,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90090,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4317948',4317948,450.847504,-28.334009,-441.002411,-0.000048,762,0,0,0,1,6,0,0,67,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89806,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4516039',4516039,201.957901,-6.015132,-140.727798,0.817135,27,0,0,0,1,6,0,0,164,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89558,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4516054',4516054,302.846893,-13.662720,-70.995468,-1.497001,27,0,0,0,1,6,0,0,164,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89286,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4516060',4516060,90.040314,-26.979679,-315.730499,-0.000048,23,0,0,0,1,6,0,0,162,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89032,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4516061',4516061,118.730499,-25.303860,-328.093414,-0.000048,23,0,0,0,1,6,0,0,162,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88760,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4516069',4516069,76.916473,-30.135340,-176.278107,-0.000048,33,0,0,0,1,6,0,0,165,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88332,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4516071',4516071,109.801003,-30.350300,-144.088104,-0.000048,33,0,0,0,1,6,0,0,165,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88060,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4516076',4516076,178.212997,-26.243820,-569.578918,-0.000048,24,0,0,0,1,6,0,0,163,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87818,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4526175',4526175,514.976685,-20.248779,-360.982697,1.118960,2464,0,0,0,0,6,0,0,2315,0,0.000000,44,1,120,1,0,6,0,32,1,0,0,0,1,0,0.000000,1.000000,87678,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4526185',4526185,349.873993,-15.610050,-260.578400,-0.862781,2464,0,0,0,0,6,0,0,2315,0,0.000000,44,1,120,1,0,7,0,32,1,0,0,0,1,0,0.000000,1.000000,87406,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4526186',4526186,405.020111,-28.000311,-500.633209,0.442225,2464,0,0,0,0,6,0,0,2315,0,0.000000,44,1,120,1,0,8,0,32,1,0,0,0,1,0,0.000000,1.000000,87134,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4526187',4526187,370.778900,-34.470150,-460.959808,1.294795,2464,0,0,0,0,6,0,0,2315,0,0.000000,44,1,120,1,0,9,0,32,1,0,0,0,1,0,0.000000,1.000000,86862,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4526188',4526188,286.335602,-19.760500,-293.202087,0.978455,2464,0,0,0,0,6,0,0,2315,0,0.000000,44,1,120,1,0,10,0,32,1,0,0,0,1,0,0.000000,1.000000,86590,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4526189',4526189,126.848099,-22.110350,-563.561523,1.546662,2465,0,0,0,0,6,0,0,2316,0,0.000000,48,0,120,1,0,11,0,32,1,0,0,0,1,0,0.000000,1.000000,86324,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4526190',4526190,138.658707,-23.403219,-470.115204,-1.155101,2465,0,0,0,0,6,0,0,2316,0,0.000000,48,0,120,1,0,12,0,32,1,0,0,0,1,0,0.000000,1.000000,86052,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4526191',4526191,252.338394,-24.643370,-435.141510,0.416338,2465,0,0,0,0,6,0,0,2316,0,0.000000,48,0,120,1,0,13,0,32,1,0,0,0,1,0,0.000000,1.000000,85780,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4526192',4526192,119.127197,-25.162230,-324.086395,-1.377775,2465,0,0,0,0,6,0,0,2316,0,0.000000,48,0,120,1,0,14,0,32,1,0,0,0,1,0,0.000000,1.000000,85508,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4526193',4526193,137.078705,-29.800461,-246.062698,-1.078005,2465,0,0,0,0,6,0,0,2316,0,0.000000,48,0,120,1,0,15,0,32,1,0,0,0,1,0,0.000000,1.000000,85236,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4526240',4526240,214.825394,-19.554331,-398.094788,-0.000048,48,0,0,0,1,6,0,0,166,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84946,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4553457',4553457,345.774902,-15.417000,-261.117798,-0.000048,403,0,0,0,1,6,0,0,567,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84668,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4553459',4553459,361.297913,-25.751591,-438.400085,-0.000048,764,0,0,0,1,6,0,0,69,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84378,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4553469',4553469,139.198593,-23.542650,-467.790009,1.069124,762,0,0,0,0,6,0,0,2319,0,0.000000,49,0,120,1,0,12,0,32,1,0,0,0,1,0,0.000000,1.000000,84094,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4588198',4588198,119.859596,-21.530519,-297.352600,-0.000048,763,0,0,0,1,6,0,0,2317,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83828,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4588199',4588199,116.324303,-25.430050,-324.881592,-1.220569,762,0,0,0,0,6,0,0,2319,0,0.000000,49,0,120,1,0,14,0,32,1,0,0,0,1,0,0.000000,1.000000,83550,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4588205',4588205,443.598206,-24.245310,-392.653687,-0.000048,762,0,0,0,1,6,0,0,67,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83278,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96986,'LVD_BNPC_PUB_05','f1f2','bnpc4592960',4592960,291.767700,-13.992610,-129.503403,-0.000048,762,0,0,0,1,6,0,0,67,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83006,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335118',1335118,259.814606,-9.041327,-75.930794,-1.008944,71,0,0,0,0,6,0,0,68,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82388,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335120',1335120,258.747192,-9.339743,-77.470100,-0.962252,72,0,0,0,0,6,0,0,69,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82122,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335121',1335121,271.628510,-12.409580,-119.495102,-0.288345,70,0,0,0,1,6,0,0,67,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335122',1335122,268.973389,-11.585720,-119.678200,-0.182019,70,0,0,0,1,6,0,0,67,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81566,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335125',1335125,299.467896,-15.161890,-151.066498,-0.966375,70,0,0,0,1,6,0,0,67,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81294,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335126',1335126,300.071503,-15.260950,-157.970398,-1.079891,71,0,0,0,1,6,0,0,68,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81028,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335127',1335127,305.104095,-16.013350,-153.873703,-0.951898,72,0,0,0,1,6,0,0,69,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80762,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335128',1335128,362.569489,-19.896090,-195.239197,-0.495627,70,0,0,0,1,6,0,0,67,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80478,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335129',1335129,359.914490,-20.141609,-198.291000,-0.898112,70,0,0,0,1,6,0,0,67,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80206,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335131',1335131,376.912994,-17.746290,-239.673492,-0.526739,71,0,0,0,0,6,0,0,68,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79940,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335132',1335132,378.265808,-17.184210,-245.818802,-0.839340,71,0,0,0,0,6,0,0,68,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79668,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335133',1335133,373.817291,-17.567560,-244.927200,1.261575,71,0,0,0,0,6,0,0,68,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79396,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335135',1335135,382.244812,-18.581270,-213.006607,1.109468,70,0,0,0,0,6,0,0,67,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79118,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335136',1335136,384.289612,-18.812380,-216.180496,-0.199277,71,0,0,0,0,6,0,0,68,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78852,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335137',1335137,365.346710,-17.380070,-235.889297,-0.277751,72,0,0,0,0,6,0,0,69,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78586,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335142',1335142,325.117188,-17.441219,-261.926086,0.818439,24,0,0,0,0,6,0,0,163,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78290,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335147',1335147,382.083588,-15.505330,-274.037415,0.009348,70,0,0,0,0,6,0,0,67,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78030,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335148',1335148,379.490387,-15.238400,-273.274506,-0.009540,70,0,0,0,0,6,0,0,67,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77758,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335155',1335155,410.055603,-15.113950,-262.409393,-1.381036,70,0,0,0,0,6,0,0,67,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77486,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335156',1335156,409.262085,-14.690550,-264.759308,-1.350547,70,0,0,0,0,6,0,0,67,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77214,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186126',1186126,195.813797,-6.409023,-148.998001,0.461204,13,0,0,0,1,6,0,0,567,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77074,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186127',1186127,198.768997,-5.217091,-147.382904,0.438183,13,0,0,0,1,6,0,0,567,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76802,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186185',1186185,432.333801,-18.556009,-200.427307,-0.098224,13,0,0,0,1,6,0,0,567,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76530,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186122',1186122,210.285797,-6.827882,-189.363602,1.012107,13,0,0,0,1,6,0,0,567,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76258,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186157',1186157,339.864105,-20.256371,-163.073196,-1.520725,13,0,0,0,1,6,0,0,567,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75986,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335154',1335154,445.548096,-18.953011,-239.643005,0.002541,13,0,0,0,1,6,0,0,567,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75714,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186142',1186142,321.177094,-17.145399,-141.817795,-0.143983,23,0,0,0,1,6,0,0,162,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75424,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186134',1186134,257.526489,-11.230880,-163.622498,1.215842,23,0,0,0,1,6,0,0,162,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75152,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186131',1186131,262.121887,-11.356690,-170.924500,1.513008,23,0,0,0,1,6,0,0,162,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74880,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186160',1186160,325.512207,-18.022200,-210.406693,1.086986,23,0,0,0,1,6,0,0,162,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74608,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186163',1186163,334.967590,-18.257030,-188.068497,-0.170035,23,0,0,0,1,6,0,0,162,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74336,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335152',1335152,374.262207,-16.275169,-255.869507,-0.002637,48,0,0,0,1,6,0,0,166,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74058,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186113',1186113,269.977814,-10.584900,-100.442299,-0.261883,48,0,0,0,1,6,0,0,166,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73786,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335150',1335150,393.739594,-17.082621,-246.185501,-0.000623,48,0,0,0,1,6,0,0,166,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73514,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1335151',1335151,395.540100,-17.610670,-243.194702,-0.000048,48,0,0,0,1,6,0,0,166,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73242,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186128',1186128,264.066498,-11.720200,-141.711304,1.511233,48,0,0,0,1,6,0,0,166,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72970,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186130',1186130,255.084595,-10.365080,-135.648193,1.165028,48,0,0,0,1,6,0,0,166,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72698,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186121',1186121,299.316498,-13.980780,-177.154099,-0.261979,48,0,0,0,1,6,0,0,166,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72426,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186146',1186146,357.922394,-18.371901,-147.675705,-1.143696,48,0,0,0,1,6,0,0,166,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72154,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186165',1186165,357.646301,-21.037640,-172.919998,-0.318546,48,0,0,0,1,6,0,0,166,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71882,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186167',1186167,354.167297,-20.996559,-172.828506,-1.150360,48,0,0,0,1,6,0,0,166,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71610,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186166',1186166,355.845795,-21.195030,-175.910797,-1.502461,48,0,0,0,1,6,0,0,166,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71338,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186119',1186119,301.000702,-14.170150,-179.921906,0.749792,48,0,0,0,1,6,0,0,166,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71066,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186135',1186135,289.600891,-14.023210,-132.829803,-0.758901,16,0,0,0,0,6,0,0,161,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70824,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186168',1186168,327.501495,-18.763630,-170.766296,-1.153811,16,0,0,0,1,6,0,0,161,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70552,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186169',1186169,357.691193,-18.922649,-152.895798,-0.770236,16,0,0,0,1,6,0,0,161,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70280,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186173',1186173,362.066711,-19.066210,-226.023697,-0.510680,16,0,0,0,0,6,0,0,161,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70008,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73029,'LVD_BNPC_Str_Syl_01','f1f2','bnpc1186174',1186174,367.605011,-19.394260,-223.926193,0.559288,16,0,0,0,0,6,0,0,161,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69736,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1185226',1185226,256.488800,-24.255501,-358.053009,-0.113181,24,0,0,0,0,6,0,0,163,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68326,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1186102',1186102,185.839600,-21.471359,-442.130188,1.088807,24,0,0,0,0,6,0,0,163,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68054,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335181',1335181,287.464691,-20.370840,-267.414398,0.979030,70,0,0,0,1,6,0,0,67,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67794,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335182',1335182,221.773499,-20.304710,-402.104889,-1.148699,73,0,0,0,1,6,0,0,70,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67666,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335186',1335186,260.100708,-22.595980,-282.093597,0.277319,71,0,0,0,1,6,0,0,68,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67256,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335187',1335187,257.170898,-22.925730,-282.856506,0.213083,71,0,0,0,1,6,0,0,68,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335188',1335188,258.178009,-22.527321,-280.506592,0.293139,72,0,0,0,1,6,0,0,69,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66718,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335189',1335189,259.124115,-22.919470,-284.351898,0.303014,72,0,0,0,1,6,0,0,69,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66446,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335258',1335258,233.840302,-22.782070,-408.640991,-0.000144,70,0,0,0,1,6,0,0,67,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66162,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335259',1335259,228.651703,-20.932440,-399.771088,1.044801,70,0,0,0,1,6,0,0,67,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65890,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335262',1335262,226.586807,-21.579840,-408.344208,0.451429,71,0,0,0,1,6,0,0,68,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65624,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335265',1335265,239.352707,-23.325970,-417.493805,0.725153,71,0,0,0,1,6,0,0,68,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65352,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335266',1335266,234.393204,-23.440660,-419.117004,0.930517,71,0,0,0,1,6,0,0,68,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65080,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335274',1335274,201.154007,-21.053610,-424.056702,0.861583,72,0,0,0,1,6,0,0,69,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64814,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335275',1335275,199.896194,-21.481091,-433.825592,0.977544,72,0,0,0,1,6,0,0,69,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64542,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335276',1335276,199.035995,-21.532829,-428.054504,1.386260,71,0,0,0,1,6,0,0,68,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64264,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335278',1335278,203.919998,-21.381781,-436.120514,0.792169,72,0,0,0,1,6,0,0,69,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63998,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335279',1335279,158.464905,-25.742020,-514.580017,0.175787,78,0,0,0,0,6,0,0,75,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63864,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1347955',1347955,185.057404,-22.517530,-393.153900,1.248680,70,0,0,0,1,6,0,0,67,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63442,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1347956',1347956,186.735901,-22.314060,-389.308685,1.049163,70,0,0,0,1,6,0,0,67,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63170,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1347958',1347958,180.601807,-22.849991,-388.088013,1.072556,71,0,0,0,1,6,0,0,68,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62904,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1347959',1347959,182.982193,-22.808430,-387.447113,1.220204,72,0,0,0,1,6,0,0,69,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62638,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1347960',1347960,181.853104,-22.416210,-391.109192,1.194989,72,0,0,0,1,6,0,0,69,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62366,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1347968',1347968,148.660599,-24.933149,-382.747192,0.570697,70,0,0,0,1,6,0,0,67,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62082,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1347969',1347969,149.210007,-24.847401,-385.554901,-0.000048,71,0,0,0,1,6,0,0,68,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61816,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1347970',1347970,145.273102,-24.985941,-383.815399,1.222553,71,0,0,0,1,6,0,0,68,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61544,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1347971',1347971,146.677002,-25.017750,-386.012695,0.461975,72,0,0,0,1,6,0,0,69,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61278,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc2319905',2319905,133.538803,-23.850300,-524.211304,0.001869,13,0,0,0,1,6,0,0,567,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61126,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335331',1335331,172.550903,-23.232599,-481.184692,0.001965,13,0,0,0,1,6,0,0,567,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60854,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335333',1335333,170.445099,-23.299061,-477.888702,0.001869,13,0,0,0,1,6,0,0,567,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60582,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335332',1335332,136.520096,-23.013941,-481.370514,-0.001294,13,0,0,0,1,6,0,0,567,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60310,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335330',1335330,167.576401,-23.605841,-478.499115,-0.000048,13,0,0,0,1,6,0,0,567,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60038,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335270',1335270,205.635300,-20.583099,-405.028595,0.429281,13,0,0,0,1,6,0,0,567,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59766,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335344',1335344,163.126495,-26.834591,-547.864319,1.178930,13,0,0,0,1,6,0,0,567,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59494,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc2319906',2319906,135.644501,-24.169041,-527.507324,0.001965,13,0,0,0,1,6,0,0,567,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59222,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335269',1335269,208.094101,-20.046240,-400.359314,-1.180608,13,0,0,0,1,6,0,0,567,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58950,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335273',1335273,237.537292,-23.111750,-434.553314,0.739281,16,0,0,0,0,6,0,0,161,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58684,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335272',1335272,220.603699,-19.557770,-394.169189,1.303281,16,0,0,0,0,6,0,0,161,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58412,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335179',1335179,308.749512,-18.382240,-278.268188,1.322456,16,0,0,0,0,6,0,0,161,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58140,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335180',1335180,305.850189,-18.505501,-275.399506,1.278545,16,0,0,0,0,6,0,0,161,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57868,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335326',1335326,135.813904,-23.796021,-507.744904,-0.014909,23,0,0,0,1,6,0,0,162,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57572,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335318',1335318,175.681793,-26.337879,-531.124695,0.000144,23,0,0,0,1,6,0,0,162,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57300,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335317',1335317,176.719406,-26.248819,-529.080017,-0.000240,23,0,0,0,1,6,0,0,162,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57028,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335327',1335327,143.479095,-24.673691,-543.979187,0.000911,23,0,0,0,1,6,0,0,162,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56756,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335247',1335247,251.044693,-24.157169,-429.172791,-1.472260,23,0,0,0,1,6,0,0,162,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56484,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335329',1335329,145.279694,-25.150471,-548.343323,-0.000719,23,0,0,0,1,6,0,0,162,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56212,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335328',1335328,142.868698,-24.722940,-547.854980,0.000144,23,0,0,0,1,6,0,0,162,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55940,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335191',1335191,252.674103,-25.158079,-319.881500,-0.000144,27,0,0,0,0,6,0,0,164,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55650,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335250',1335250,213.636093,-21.692980,-416.299286,1.001034,27,0,0,0,1,6,0,0,164,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55378,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1347961',1347961,163.818802,-23.941280,-382.930786,1.237941,27,0,0,0,1,6,0,0,164,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55106,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335271',1335271,214.649200,-21.421610,-437.417206,1.098971,27,0,0,0,1,6,0,0,164,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54834,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335263',1335263,251.797501,-24.329281,-417.166504,0.772227,27,0,0,0,1,6,0,0,164,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54562,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335171',1335171,283.910095,-19.542110,-281.001801,-0.000048,27,0,0,0,1,6,0,0,164,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54290,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335283',1335283,153.783005,-25.787460,-521.116516,-0.870931,33,0,0,0,0,6,0,0,165,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53880,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335280',1335280,156.163498,-25.174259,-507.993713,-0.855639,33,0,0,0,0,6,0,0,165,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53608,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335281',1335281,162.755295,-25.392191,-508.512512,0.717195,33,0,0,0,0,6,0,0,165,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53336,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335282',1335282,160.374893,-26.243521,-521.635315,0.698931,33,0,0,0,0,6,0,0,165,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53064,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc2319918',2319918,128.970001,-22.921940,-557.568481,-0.000240,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52942,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335294',1335294,176.568298,-23.836981,-493.324188,-0.000144,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52670,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335290',1335290,178.249100,-21.930130,-465.361603,0.000527,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52398,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1347967',1347967,134.539597,-25.153410,-393.304901,0.466002,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52126,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc2319916',2319916,176.574203,-26.295950,-563.569885,-0.000240,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51854,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc2319917',2319917,177.984299,-26.445820,-561.296326,-0.000144,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51582,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335255',1335255,235.164795,-22.033070,-382.140289,-0.695240,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51310,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335254',1335254,250.182205,-23.049110,-398.827515,1.376241,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51038,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335245',1335245,264.071289,-23.086901,-377.431885,-1.210377,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50766,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335287',1335287,161.309204,-24.113899,-454.393097,-0.631387,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50494,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335284',1335284,164.681107,-23.516750,-451.796112,0.000431,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50222,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335257',1335257,250.975601,-23.342621,-395.073792,-1.498483,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49950,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335298',1335298,146.524597,-23.827370,-466.589294,0.876731,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49678,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335172',1335172,309.847809,-19.112881,-260.545685,-0.641645,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49406,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335295',1335295,175.158295,-24.210711,-495.597809,-0.000240,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49134,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335299',1335299,136.972305,-23.003241,-490.722107,0.876827,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48862,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335310',1335310,139.252106,-23.121799,-488.640411,0.000144,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48590,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335313',1335313,169.940796,-26.606640,-538.220520,0.001294,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48318,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1347964',1347964,136.015106,-25.067890,-394.922394,-0.000048,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1347966',1347966,159.892807,-23.691389,-387.543396,0.943556,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47774,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1347965',1347965,135.952805,-25.463390,-380.858490,1.233963,48,0,0,0,1,6,0,0,166,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47502,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335277',1335277,204.574905,-21.963341,-430.374695,0.796100,71,0,0,0,0,6,0,0,68,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47128,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335260',1335260,285.551605,-20.191130,-266.194702,0.902612,72,0,0,0,1,6,0,0,69,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46862,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1335261',1335261,233.309006,-22.290220,-403.706696,-0.006663,72,0,0,0,1,6,0,0,69,0,0.000000,52,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46590,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73030,'LVD_BNPC_Str_Syl_02','f1f2','bnpc1186104',1186104,139.593506,-25.435749,-371.665588,0.984376,24,0,0,0,0,6,0,0,163,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46294,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1186105',1186105,133.317993,-24.199471,-327.840088,-1.035740,24,0,0,0,0,6,0,0,163,0,0.000000,56,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45690,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1186106',1186106,85.221588,-28.236040,-263.782715,0.195298,24,0,0,0,0,6,0,0,163,0,0.000000,56,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45418,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1186107',1186107,112.138496,-30.215771,-200.427307,-0.077563,24,0,0,0,0,6,0,0,163,0,0.000000,56,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45146,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1186108',1186108,171.129898,-31.077660,-212.573502,-1.402990,24,0,0,0,0,6,0,0,163,0,0.000000,56,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44874,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1347976',1347976,110.948303,-27.082211,-355.214813,1.476671,72,0,0,0,1,6,0,0,69,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44626,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1347977',1347977,116.650902,-26.851940,-355.502686,1.173034,71,0,0,0,1,6,0,0,68,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44348,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1347982',1347982,112.341904,-27.148821,-352.201202,0.502003,71,0,0,0,1,6,0,0,68,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44076,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348001',1348001,106.853699,-27.461729,-348.520905,0.109969,71,0,0,0,1,6,0,0,68,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43804,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348002',1348002,106.675797,-26.863291,-353.933014,0.069893,72,0,0,0,1,6,0,0,69,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43538,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348003',1348003,111.067200,-27.419359,-348.093689,0.436904,72,0,0,0,1,6,0,0,69,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43266,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348012',1348012,93.072998,-26.876440,-282.357300,0.627408,71,0,0,0,0,6,0,0,68,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42988,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348013',1348013,90.519493,-27.035959,-280.262787,0.926347,72,0,0,0,0,6,0,0,69,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42722,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348014',1348014,91.113632,-26.633659,-283.826508,1.283050,70,0,0,0,0,6,0,0,67,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42438,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349419',1349419,144.273102,-29.321350,-228.200500,0.144649,70,0,0,0,1,6,0,0,67,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42166,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349420',1349420,141.345703,-29.379709,-233.926895,0.470748,70,0,0,0,1,6,0,0,67,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41894,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349421',1349421,147.630997,-28.915890,-231.464096,0.386282,71,0,0,0,1,6,0,0,68,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41628,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349422',1349422,140.337204,-29.188551,-230.123901,0.074591,71,0,0,0,1,6,0,0,68,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41356,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349423',1349423,142.912903,-29.360870,-232.045303,0.304979,72,0,0,0,1,6,0,0,69,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41090,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349448',1349448,92.027107,-29.617809,-158.983795,0.686946,74,0,0,0,0,6,0,0,71,0,0.000000,57,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40962,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348007',1348007,138.078796,-23.392130,-312.001312,-0.317059,13,0,0,0,1,6,0,0,567,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40666,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348015',1348015,138.584198,-29.894171,-214.306305,-0.677838,13,0,0,0,1,6,0,0,567,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40394,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348005',1348005,147.925797,-23.963091,-316.955292,0.656554,13,0,0,0,1,6,0,0,567,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40122,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348006',1348006,139.153000,-23.312229,-308.514313,0.282036,13,0,0,0,1,6,0,0,567,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39850,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1347987',1347987,128.043900,-25.102480,-341.174805,0.513604,13,0,0,0,1,6,0,0,567,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39578,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1347984',1347984,127.403000,-25.039721,-339.740387,0.480623,13,0,0,0,1,6,0,0,567,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39306,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348016',1348016,133.174103,-29.752001,-213.771896,0.818918,13,0,0,0,1,6,0,0,567,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39034,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348000',1348000,92.348900,-26.525320,-318.288696,-0.160974,16,0,0,0,0,6,0,0,161,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38768,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1347999',1347999,95.705887,-27.105480,-316.640686,0.090890,16,0,0,0,0,6,0,0,161,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38496,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349444',1349444,163.936996,-29.950470,-221.893097,-1.463297,16,0,0,0,0,6,0,0,161,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38224,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349463',1349463,108.756897,-30.549700,-139.678604,-0.484074,23,0,0,0,1,6,0,0,162,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37928,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349466',1349466,70.533546,-30.081551,-177.695999,0.334461,23,0,0,0,1,6,0,0,162,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37656,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349429',1349429,152.550797,-29.560490,-240.746399,-0.605308,23,0,0,0,1,6,0,0,162,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37384,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349430',1349430,153.238297,-29.591810,-244.188797,1.224854,23,0,0,0,1,6,0,0,162,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37112,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349471',1349471,66.987991,-29.454809,-150.085007,1.565123,23,0,0,0,1,6,0,0,162,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36840,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349434',1349434,153.856705,-29.735661,-202.044800,-0.907939,23,0,0,0,1,6,0,0,162,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36568,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1347996',1347996,115.281898,-25.507601,-321.858612,0.387432,23,0,0,0,1,6,0,0,162,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36296,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349469',1349469,67.079147,-29.548901,-153.771606,1.416929,23,0,0,0,1,6,0,0,162,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36024,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348010',1348010,95.115891,-27.238010,-299.027893,0.313800,27,0,0,0,0,6,0,0,164,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35734,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1347979',1347979,115.985397,-25.590910,-330.770813,0.219458,27,0,0,0,1,6,0,0,164,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35462,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349446',1349446,170.162399,-30.332001,-205.375504,-1.538233,27,0,0,0,0,6,0,0,164,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35190,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349415',1349415,107.675301,-28.766970,-247.061798,-0.077228,27,0,0,0,1,6,0,0,164,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34918,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348022',1348022,159.280807,-29.889629,-205.386993,-0.790587,33,0,0,0,1,6,0,0,165,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34508,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1347981',1347981,94.966377,-26.840120,-343.493591,0.783205,33,0,0,0,1,6,0,0,165,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34236,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348019',1348019,133.407806,-29.766630,-245.194504,-0.788862,33,0,0,0,1,6,0,0,165,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33964,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348018',1348018,125.171204,-28.822081,-241.728302,-0.378228,33,0,0,0,1,6,0,0,165,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33692,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348011',1348011,133.297394,-23.149731,-303.661987,0.307089,33,0,0,0,1,6,0,0,165,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33420,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1347980',1347980,96.825470,-26.731310,-337.443909,0.634407,33,0,0,0,1,6,0,0,165,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33148,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348020',1348020,157.760696,-30.241409,-209.753799,-1.250884,33,0,0,0,1,6,0,0,165,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32876,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1347974',1347974,119.340797,-26.901699,-370.321198,1.391726,33,0,0,0,1,6,0,0,165,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32604,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1348021',1348021,110.126297,-29.295731,-223.210403,-1.332331,33,0,0,0,1,6,0,0,165,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32332,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349428',1349428,119.702202,-29.857460,-208.563095,1.047293,48,0,0,0,1,6,0,0,166,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32210,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349426',1349426,117.321800,-29.940710,-208.257904,-0.000336,48,0,0,0,1,6,0,0,166,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31938,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349477',1349477,117.287300,-30.394251,-176.134903,-0.194627,48,0,0,0,1,6,0,0,166,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31666,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1347993',1347993,104.585403,-27.703699,-374.422699,1.504149,48,0,0,0,1,6,0,0,166,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31394,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349475',1349475,100.944000,-30.141479,-182.035095,0.669305,48,0,0,0,1,6,0,0,166,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31122,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349476',1349476,103.423500,-30.255220,-183.818893,-0.502770,48,0,0,0,1,6,0,0,166,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30850,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1347990',1347990,103.868103,-27.830070,-370.201294,0.409915,48,0,0,0,1,6,0,0,166,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30578,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1347994',1347994,100.785797,-27.626970,-369.774109,1.212582,48,0,0,0,1,6,0,0,166,0,0.000000,54,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30306,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349450',1349450,88.622063,-30.374201,-172.160995,-0.979941,72,0,0,0,0,6,0,0,69,0,0.000000,56,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29938,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349458',1349458,93.722427,-30.289921,-150.469894,0.024592,72,0,0,0,0,6,0,0,69,0,0.000000,56,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29666,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349460',1349460,102.193199,-30.374161,-167.326401,-0.000048,72,0,0,0,0,6,0,0,69,0,0.000000,56,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29394,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349456',1349456,97.735252,-30.373690,-149.205994,-0.833923,70,0,0,0,0,6,0,0,67,0,0.000000,56,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29110,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349457',1349457,92.410156,-30.373690,-146.716202,0.736226,70,0,0,0,0,6,0,0,67,0,0.000000,56,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349455',1349455,87.641907,-30.374201,-169.239105,-1.395657,70,0,0,0,0,6,0,0,67,0,0.000000,56,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28566,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349453',1349453,79.946991,-30.373859,-158.627106,1.248392,71,0,0,0,0,6,0,0,68,0,0.000000,56,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28300,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349454',1349454,84.076393,-30.374201,-170.842606,0.686802,71,0,0,0,0,6,0,0,68,0,0.000000,56,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28028,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73109,'LVD_BNPC_Str_Syl_03','f1f2','bnpc1349462',1349462,104.695702,-30.374050,-164.732300,-1.171979,71,0,0,0,0,6,0,0,68,0,0.000000,56,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27756,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98327,'LVD_easter_2014','f1f2','bnpc4621091',4621091,-46.489208,15.602010,3.201886,-1.406317,2771,0,0,0,0,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23396,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98327,'LVD_easter_2014','f1f2','bnpc4621093',4621093,622.978821,-12.883850,-12.418940,-0.480134,2773,0,0,0,1,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23130,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83943,'LVD_guard_01','f1f2','bnpc3870165',3870165,-530.557922,11.925130,70.277603,1.372203,582,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22788,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83943,'LVD_guard_01','f1f2','bnpc3870175',3870175,-197.120804,-1.760828,261.203003,0.190873,583,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22522,5,0,0,0,0,30053,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83943,'LVD_guard_01','f1f2','bnpc3870206',3870206,-273.557404,0.846183,289.320587,-0.714847,582,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22244,5,0,0,0,0,30052,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77261,'Behest_b202_01','f1f2','bnpc2230087',2230087,-153.764008,-1.206300,167.376801,-0.837758,151,0,0,0,0,1,0,0,125,0,0.000000,20,2,0,0,0,1,0,0,0,1,1,0,0,0,0.000000,1.000000,182636,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77261,'Behest_b202_01','f1f2','bnpc3746647',3746647,-151.735199,1.606561,145.876999,-0.349066,149,0,0,0,0,1,0,0,123,0,0.000000,20,2,0,0,0,4,0,0,0,1,1,0,0,0,0.000000,1.000000,181742,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77261,'Behest_b202_01','f1f2','bnpc3746638',3746638,-153.735199,1.435682,146.876999,-0.174533,151,0,0,0,0,1,0,0,125,0,0.000000,17,2,0,0,0,4,0,0,0,1,1,0,0,0,0.000000,1.000000,180780,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77261,'Behest_b202_01','f1f2','bnpc3746639',3746639,-149.735199,1.566743,147.876999,0.174533,151,0,0,0,0,1,0,0,125,0,0.000000,17,2,0,0,0,4,0,0,0,1,1,0,0,0,0.000000,1.000000,180508,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77261,'Behest_b202_01','f1f2','bnpc2230073',2230073,-150.413803,-1.554576,170.391602,-0.767945,518,0,0,0,0,1,0,0,14,0,0.000000,20,2,0,0,0,1,0,20,20,1,1,0,1,0,0.000000,1.000000,180248,1,0,60,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77261,'Behest_b202_01','f1f2','bnpc2230070',2230070,-149.189194,-1.166200,167.052994,-1.047198,1393,0,0,0,0,1,0,0,497,0,0.000000,20,2,0,0,0,1,0,20,20,1,1,0,1,0,0.000000,1.000000,179674,1,0,60,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77261,'Behest_b202_01','f1f2','bnpc4230697',4230697,-130.000000,-1.005508,167.352997,-1.047197,1393,0,0,0,0,1,0,0,497,0,0.000000,18,2,0,0,0,1,0,20,20,1,1,0,1,0,0.000000,1.000000,177842,1,0,80,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77261,'Behest_b202_01','f1f2','bnpc4230700',4230700,-130.000000,-1.442997,170.691605,-0.767945,518,0,0,0,0,1,0,0,14,0,0.000000,18,2,0,0,0,1,0,20,20,1,1,0,1,0,0.000000,1.000000,177564,1,0,80,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77261,'Behest_b202_01','f1f2','bnpc4230702',4230702,-129.699997,-1.037701,160.000000,-1.047197,1393,0,0,0,0,1,0,0,497,0,0.000000,18,2,0,0,0,1,0,20,20,1,1,0,1,0,0.000000,1.000000,177298,1,0,80,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77261,'Behest_b202_01','f1f2','bnpc4230704',4230704,-130.000000,0.422827,156.000000,0.174533,151,0,0,0,0,1,0,0,125,0,0.000000,18,2,0,0,0,4,0,0,0,1,1,0,0,0,0.000000,1.000000,177008,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77261,'Behest_b202_01','f1f2','bnpc4230705',4230705,-129.699997,1.575796,150.000000,-0.767945,518,0,0,0,0,1,0,0,14,0,0.000000,18,2,0,0,0,1,0,20,20,1,1,0,1,0,0.000000,1.000000,176748,1,0,80,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77261,'Behest_b202_01','f1f2','bnpc4230706',4230706,-132.000000,2.158062,146.000000,0.174533,151,0,0,0,0,1,0,0,125,0,0.000000,18,2,0,0,0,4,0,0,0,1,1,0,0,0,0.000000,1.000000,176464,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83922,'FATE_001','f1f2','bnpc3895962',3895962,-485.297211,8.897912,158.182297,0.214640,445,0,0,0,0,6,0,0,524,0,0.000000,8,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,173608,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84018,'FATE_002','f1f2','bnpc3877978',3877978,-118.580597,-1.101066,303.242615,-0.000000,489,0,0,0,1,3,0,0,513,0,0.000000,16,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,173190,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84018,'FATE_002','f1f2','bnpc3895725',3895725,-121.809097,-1.298843,305.882202,-0.155560,7,0,0,0,1,6,0,0,7,0,0.000000,16,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,172924,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83843,'FATE_006','f1f2','bnpc3895967',3895967,-487.551605,9.335268,150.890793,0.657336,446,0,0,0,0,6,0,0,525,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,171102,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83670,'FATE_007','f1f2','bnpc3890062',3890062,4.623413,-7.492188,256.061615,-0.000048,464,0,0,0,0,6,0,0,526,0,0.000000,16,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,169324,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83680,'FATE_008','f1f2','bnpc3869235',3869235,-22.752371,8.801334,418.712006,-0.000000,490,0,0,0,1,6,0,0,449,0,0.000000,19,0,120,1,0,2,0,0,0,0,1,0,0,0,0.000000,1.000000,168262,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83680,'FATE_008','f1f2','bnpc3943036',3943036,-25.523830,7.809767,415.849091,-0.000000,612,0,0,0,1,6,0,0,535,0,0.000000,17,0,120,1,0,1,0,0,0,0,1,0,0,0,0.000000,1.000000,167996,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83680,'FATE_008','f1f2','bnpc3943037',3943037,-19.060810,8.059976,416.006989,-0.000000,612,0,0,0,1,6,0,0,535,0,0.000000,17,0,120,1,0,1,0,0,0,0,1,0,0,0,0.000000,1.000000,167724,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83680,'FATE_008','f1f2','bnpc3943039',3943039,-26.164280,9.324865,422.718689,-0.000000,612,0,0,0,1,6,0,0,535,0,0.000000,17,0,120,1,0,1,0,0,0,0,1,0,0,0,0.000000,1.000000,167452,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83680,'FATE_008','f1f2','bnpc3943040',3943040,-19.135420,9.235847,423.019012,-0.000000,612,0,0,0,1,6,0,0,535,0,0.000000,17,0,120,1,0,1,0,0,0,0,1,0,0,0,0.000000,1.000000,167180,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83681,'FATE_009','f1f2','bnpc3888795',3888795,-51.451710,16.736980,4.866265,-1.570451,447,0,0,0,1,6,0,0,526,0,0.000000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,165402,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86209,'FATE_012','f1f2','bnpc4105431',4105431,-53.948910,15.923400,4.324459,-1.444868,70,0,0,0,0,6,0,0,538,0,0.000000,23,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,161840,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86209,'FATE_012','f1f2','bnpc4105445',4105445,-50.750980,15.745140,2.513904,-1.524833,70,0,0,0,0,6,0,0,538,0,0.000000,23,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,161568,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86209,'FATE_012','f1f2','bnpc4105446',4105446,-50.750980,15.745140,4.924459,-1.524833,70,0,0,0,0,6,0,0,538,0,0.000000,23,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,161296,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86209,'FATE_012','f1f2','bnpc4106652',4106652,-52.368061,15.714260,4.044417,-1.400852,876,0,0,0,0,6,0,0,531,0,0.000000,50,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,161030,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87257,'FATE_013','f1f2','bnpc4135970',4135970,-420.256805,0.836470,253.748093,-1.547478,480,0,0,0,0,6,0,0,526,0,0.000000,9,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,158652,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86225,'FATE_014','f1f2','bnpc4082423',4082423,-182.834106,0.895808,274.165710,-1.268529,1344,0,0,0,0,6,0,0,1330,0,0.000000,18,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,151382,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90691,'FATE_015','f1f2','bnpc4178146',4178146,95.074364,7.957963,415.557587,-0.524668,1369,0,0,0,1,6,0,0,1202,0,0.000000,20,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,150188,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93822,'FATE_016','f1f2','bnpc4322580',4322580,274.401489,-0.699141,165.902695,-0.000000,614,0,0,0,0,6,0,0,1728,0,0.000000,40,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,149342,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93528,'FATE_018','f1f2','bnpc4309361',4309361,85.255081,10.314290,-50.193481,-0.000000,2118,0,0,0,1,6,0,0,1662,0,0.000000,43,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,145728,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93845,'FATE_019','f1f2','bnpc4323054',4323054,338.247986,-4.124189,-58.416271,0.523599,1188,0,0,0,0,6,0,0,1729,0,0.000000,40,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,144038,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93529,'FATE_021','f1f2','bnpc4309376',4309376,541.855774,-12.245810,-57.457691,-0.000000,2119,0,0,0,1,6,0,0,1663,0,0.000000,44,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,138640,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93783,'FATE_024','f1f2','bnpc4321571',4321571,371.022003,-19.014490,-229.420593,-0.774382,70,0,0,0,1,15,0,0,67,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,137844,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93783,'FATE_024','f1f2','bnpc4321573',4321573,358.895203,-18.805130,-227.476303,0.739733,71,0,0,0,1,15,0,0,68,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,137626,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93783,'FATE_024','f1f2','bnpc4321574',4321574,366.326202,-19.392509,-220.318604,-0.062489,72,0,0,0,1,15,0,0,69,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,137360,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93835,'FATE_025','f1f2','bnpc4322737',4322737,527.589478,-19.610519,-362.755707,-0.000000,2120,0,0,0,0,6,0,0,1664,0,0.000000,47,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,136634,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93836,'FATE_028','f1f2','bnpc4322741',4322741,384.047089,-34.000000,-419.943298,-0.000000,2121,0,0,0,2,6,0,0,1665,0,0.000000,47,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,135440,1,0,0,0,0,0,4322745,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93531,'FATE_031','f1f2','bnpc4309400',4309400,-23.715719,-35.447472,-544.989807,0.645772,2122,0,0,0,1,6,0,0,1666,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,134338,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96836,'FATE_032','f1f2','bnpc4507109',4507109,393.753204,-6.687999,-4.231825,0.702785,2502,0,0,0,8,6,0,0,2350,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,133588,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96836,'FATE_032','f1f2','bnpc4507112',4507112,393.307495,-5.751049,-6.641023,0.881606,61,0,0,0,0,6,0,0,2351,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,133322,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96836,'FATE_032','f1f2','bnpc4507113',4507113,391.266998,-6.028571,-5.274771,0.960830,61,0,0,0,0,6,0,0,2351,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,133050,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96836,'FATE_032','f1f2','bnpc4507115',4507115,428.889404,-11.253830,-2.660332,-1.417376,2503,0,0,0,0,6,0,0,64,0,0.000000,39,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,132784,1,0,0,0,0,30062,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96838,'FATE_033','f1f2','bnpc4507196',4507196,92.515381,-29.617861,-159.594193,0.301911,2504,0,0,0,1,6,0,0,2367,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,131410,1,0,0,0,0,30146,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96772,'FATE_FFXI_01','f1f2','bnpc4504659',4504659,-432.541199,1.873977,246.884995,0.343496,2439,0,0,0,1,6,0,0,2328,0,0.000000,11,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,129180,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96772,'FATE_FFXI_01','f1f2','bnpc4505673',4505673,-432.605988,1.829912,247.181595,-0.000000,2291,0,0,0,0,6,0,0,750,0,0.000000,99,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,128290,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96773,'FATE_FFXI_02','f1f2','bnpc4504666',4504666,-432.613708,1.849296,247.023102,0.508222,2308,0,0,0,8,6,0,0,2327,0,0.000000,11,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,127328,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87129,'Grand_Company_Leve','f1f2','bnpc4178212',4178212,-280.291504,2.726705,334.093109,1.381514,1328,0,0,0,1,6,0,0,1230,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,125174,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87129,'Grand_Company_Leve','f1f2','bnpc4178217',4178217,-214.101395,2.721170,353.184906,-0.000000,1329,0,0,0,1,6,0,0,1229,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,124908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87129,'Grand_Company_Leve','f1f2','bnpc4186417',4186417,-219.671799,2.529891,351.447906,-0.000000,1329,0,0,0,1,6,0,0,1229,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,124636,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87129,'Grand_Company_Leve','f1f2','bnpc4186418',4186418,-225.581696,1.913242,350.442993,-0.000000,1329,0,0,0,1,6,0,0,1229,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,124364,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87129,'Grand_Company_Leve','f1f2','bnpc4392495',4392495,-273.426208,2.546016,334.747498,-0.000048,1328,0,0,0,1,6,0,0,1230,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,123462,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83996,'QB_CLSCNJ003_001','f1f2','bnpc3875540',3875540,-60.092812,-7.157518,213.363495,-0.017946,298,0,0,0,0,6,0,0,142,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107454,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83996,'QB_CLSCNJ003_001','f1f2','bnpc3879109',3879109,-54.107010,-5.893316,204.878494,0.085789,298,0,0,0,0,6,0,0,142,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107182,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83996,'QB_CLSCNJ003_001','f1f2','bnpc3905947',3905947,-48.815731,-6.380112,209.460098,-0.000000,298,0,0,0,0,6,0,0,142,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83996,'QB_CLSCNJ003_001','f1f2','bnpc3905948',3905948,-66.897598,-5.415947,199.001495,0.314061,298,0,0,0,0,6,0,0,142,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105566,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83996,'QB_CLSCNJ003_001','f1f2','bnpc3905949',3905949,-58.191681,-7.941300,219.938202,0.550506,1423,0,0,0,8,6,0,0,622,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104988,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83996,'QB_CLSCNJ003_001','f1f2','bnpc3914511',3914511,-49.325130,-8.943859,229.723007,-0.129431,1422,0,0,0,8,6,0,0,621,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104722,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83996,'QB_CLSCNJ003_001','f1f2','bnpc4263914',4263914,-52.750488,-8.749122,223.603104,0.425686,1423,0,0,0,8,6,0,0,622,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104444,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83996,'QB_CLSCNJ003_001','f1f2','bnpc4263915',4263915,-48.219181,-7.827147,220.427704,0.129169,1423,0,0,0,8,6,0,0,622,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104172,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83996,'QB_CLSCNJ003_001','f1f2','bnpc4263917',4263917,-57.828911,-4.479410,193.746796,-0.000000,298,0,0,0,1,6,0,0,142,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103894,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83996,'QB_CLSCNJ003_001','f1f2','bnpc4263918',4263918,-31.302151,-5.483777,200.141602,-0.479769,298,0,0,0,1,6,0,0,142,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103622,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83996,'QB_CLSCNJ003_001','f1f2','bnpc4263934',4263934,-70.161537,-5.040654,197.318298,0.424027,298,0,0,0,1,6,0,0,142,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103350,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83996,'QB_CLSCNJ003_001','f1f2','bnpc4263935',4263935,-48.384399,-3.926476,189.386398,-0.088232,298,0,0,0,1,6,0,0,142,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103078,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83996,'QB_CLSCNJ003_001','f1f2','bnpc4263936',4263936,-34.105801,-5.163354,198.915405,-0.355416,298,0,0,0,1,6,0,0,142,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102806,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83996,'QB_CLSCNJ003_001','f1f2','bnpc4263967',4263967,-49.368530,-4.168085,191.686493,-0.000000,1681,0,0,0,1,6,0,0,56,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102552,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83996,'QB_CLSCNJ003_001','f1f2','bnpc4263969',4263969,-31.986561,-5.215557,198.486404,-0.000000,1681,0,0,0,1,6,0,0,56,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102280,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83996,'QB_CLSCNJ003_001','f1f2','bnpc4263970',4263970,-67.488457,-4.239670,193.038696,-0.000000,1681,0,0,0,1,6,0,0,56,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102008,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92089,'QB_CLSCNJ_002','f1f2','bnpc4261180',4261180,-510.136200,6.000000,29.175791,0.000605,1662,0,0,0,3,6,0,0,1420,3,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101094,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92089,'QB_CLSCNJ_002','f1f2','bnpc4248510',4248510,-510.178101,6.000000,27.721479,-0.000048,1659,0,0,0,1,6,0,0,115,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100828,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92089,'QB_CLSCNJ_002','f1f2','bnpc4248519',4248519,-513.513123,7.591276,48.851429,0.541120,1661,0,0,0,8,6,0,0,1419,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100562,1,0,0,0,0,0,0,705,413); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92089,'QB_CLSCNJ_002','f1f2','bnpc4261181',4261181,-513.134216,6.000000,28.319811,-0.000000,1659,0,0,0,1,6,0,0,115,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100284,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92089,'QB_CLSCNJ_002','f1f2','bnpc4261182',4261182,-507.948303,6.000000,30.800341,-0.000000,1659,0,0,0,1,6,0,0,115,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100012,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92089,'QB_CLSCNJ_002','f1f2','bnpc4248516',4248516,-510.400391,6.000000,26.058260,-0.093071,1660,0,0,0,1,6,0,0,1910,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99752,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92103,'QB_ClsLnc004_002','f1f2','bnpc4248895',4248895,-218.651199,11.595230,40.506161,-1.043254,1745,0,0,0,8,6,0,0,614,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98266,1,0,0,0,0,0,0,470,128); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92103,'QB_ClsLnc004_002','f1f2','bnpc4248927',4248927,-229.806198,11.862910,22.804199,0.769235,1741,0,0,0,1,6,0,0,1942,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98000,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92103,'QB_ClsLnc004_002','f1f2','bnpc4248928',4248928,-233.246902,11.904970,25.522400,0.769203,1742,0,0,0,1,6,0,0,15,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97734,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92103,'QB_ClsLnc004_002','f1f2','bnpc4248929',4248929,-236.405502,11.724650,29.198999,0.908285,1742,0,0,0,1,6,0,0,15,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97462,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92103,'QB_ClsLnc004_002','f1f2','bnpc4248938',4248938,-248.614502,11.659270,10.712470,0.447989,1742,0,0,0,1,6,0,0,15,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97190,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92103,'QB_ClsLnc004_002','f1f2','bnpc4248939',4248939,-245.914597,11.546480,9.172157,0.519738,1742,0,0,0,1,6,0,0,15,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96918,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92103,'QB_ClsLnc004_002','f1f2','bnpc4248944',4248944,-250.845306,11.604100,2.716965,-0.000000,1744,0,0,0,1,6,0,0,116,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96652,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92103,'QB_ClsLnc004_002','f1f2','bnpc4248945',4248945,-248.754395,11.455170,1.689487,-0.000000,1744,0,0,0,1,6,0,0,116,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96380,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92103,'QB_ClsLnc004_002','f1f2','bnpc4248948',4248948,-250.874802,11.476020,-0.094664,-0.000000,1743,0,0,0,1,6,0,0,56,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96114,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92228,'QB_GAIUSA201_001','f1f2','bnpc4255892',4255892,-286.912811,13.024250,-56.194000,-1.105625,1586,0,0,0,8,6,0,0,619,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95152,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92228,'QB_GAIUSA201_001','f1f2','bnpc4255894',4255894,-288.069397,12.886960,-55.061031,-0.804091,1587,0,0,0,8,6,0,0,620,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94886,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92228,'QB_GAIUSA201_001','f1f2','bnpc4255868',4255868,-296.629211,13.769680,-58.823181,1.074549,1582,0,0,0,0,6,0,0,583,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94620,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92228,'QB_GAIUSA201_001','f1f2','bnpc4255869',4255869,-298.904114,13.955420,-58.939400,0.994719,1584,0,0,0,0,6,0,0,69,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94354,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92228,'QB_GAIUSA201_001','f1f2','bnpc4255870',4255870,-294.856506,13.743920,-59.840759,0.844792,1584,0,0,0,0,6,0,0,69,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94082,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92228,'QB_GAIUSA201_001','f1f2','bnpc4255871',4255871,-295.090607,13.934860,-61.449081,0.722557,1584,0,0,0,0,6,0,0,69,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93810,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92228,'QB_GAIUSA201_001','f1f2','bnpc4255896',4255896,-260.031311,11.630210,-12.719450,-0.551801,1583,0,0,0,0,6,0,0,68,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93544,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92228,'QB_GAIUSA201_001','f1f2','bnpc4255903',4255903,-253.925400,11.428960,-9.781128,-0.601329,1585,0,0,0,0,6,0,0,2063,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93278,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92228,'QB_GAIUSA201_001','f1f2','bnpc4255904',4255904,-258.045288,11.398440,-7.492188,-0.560487,1585,0,0,0,0,6,0,0,2063,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93006,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92228,'QB_GAIUSA201_001','f1f2','bnpc4261134',4261134,-257.312897,11.428960,-6.973389,-0.437383,1585,0,0,0,1,6,0,0,2063,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92734,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92228,'QB_GAIUSA201_001','f1f2','bnpc4255897',4255897,-257.089905,11.694310,-14.562010,-0.539122,1658,0,0,0,0,6,0,0,67,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92468,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92228,'QB_GAIUSA201_001','f1f2','bnpc4255898',4255898,-261.799103,11.489990,-9.750549,-0.665470,1658,0,0,0,0,6,0,0,67,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92196,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92228,'QB_GAIUSA201_001','f1f2','bnpc4261155',4261155,-259.022003,11.520510,-11.184940,-0.594427,1584,0,0,0,1,6,0,0,68,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91906,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87163,'QB_MANFST302_001','f1f2','bnpc4103768',4103768,51.111401,7.796661,454.198303,-0.000000,1017,0,0,0,8,6,0,0,1001,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90518,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87163,'QB_MANFST302_001','f1f2','bnpc4103769',4103769,46.563129,7.670226,451.518890,-0.000000,1018,0,0,0,8,6,0,0,1176,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90252,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87163,'QB_MANFST302_001','f1f2','bnpc4103770',4103770,55.688210,8.069084,451.451904,-0.000000,1019,0,0,0,8,6,0,0,999,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89986,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87163,'QB_MANFST302_001','f1f2','bnpc4103775',4103775,50.950890,7.542147,466.745789,-0.006783,1020,0,0,0,0,6,0,0,996,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89408,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87163,'QB_MANFST302_001','f1f2','bnpc4103777',4103777,51.211201,7.563682,469.617493,-0.123375,1022,0,0,0,0,6,0,0,997,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89142,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87163,'QB_MANFST302_001','f1f2','bnpc4103779',4103779,55.283451,7.553162,466.971802,0.453586,1021,0,0,0,0,6,0,0,998,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88876,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87163,'QB_MANFST302_001','f1f2','bnpc4103781',4103781,55.545559,7.514871,470.077789,-0.102371,1023,0,0,0,0,6,0,0,995,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88610,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87163,'QB_MANFST302_001','f1f2','bnpc4103782',4103782,46.586941,7.531889,470.065308,-0.329945,1023,0,0,0,0,6,0,0,995,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88338,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87163,'QB_MANFST302_001','f1f2','bnpc4103786',4103786,43.776081,7.068046,491.677490,-0.589783,1023,0,0,0,0,6,0,0,995,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88066,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87163,'QB_MANFST302_001','f1f2','bnpc4103787',4103787,43.864689,6.836167,492.827789,-0.281093,1023,0,0,0,0,6,0,0,995,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87794,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87163,'QB_MANFST302_001','f1f2','bnpc4103788',4103788,45.833820,6.916693,491.461212,-0.339616,1016,0,0,0,0,6,0,0,269,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87528,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87163,'QB_MANFST302_001','f1f2','bnpc4103793',4103793,46.828449,7.834422,466.655914,0.640161,1021,0,0,0,0,6,0,0,998,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87244,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96606,'QST_BanSyl004','f1f2','bnpc4497834',4497834,278.709503,-11.063310,-69.940376,-1.323133,33,0,0,0,1,6,0,0,33,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,82922,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96644,'QST_BanSyl005','f1f2','bnpc4499133',4499133,97.822563,-20.083309,-512.173584,1.321932,2473,0,0,0,1,6,0,0,2366,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81852,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96644,'QST_BanSyl005','f1f2','bnpc4499134',4499134,98.193077,-20.113310,-515.227722,1.562137,2472,0,0,0,1,6,0,0,2365,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81586,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96644,'QST_BanSyl005','f1f2','bnpc4499135',4499135,100.487198,-20.141600,-509.787811,0.524549,2471,0,0,0,1,6,0,0,2364,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81320,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96644,'QST_BanSyl005','f1f2','bnpc4549562',4549562,252.710403,-6.717871,-66.173698,-0.217719,2474,0,0,0,11,6,0,0,2326,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80694,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97329,'QST_BanSyl107','f1f2','bnpc4551504',4551504,190.005600,-0.955315,96.853409,0.467130,2463,0,0,0,1,6,0,0,2310,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71040,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97329,'QST_BanSyl107','f1f2','bnpc4551507',4551507,294.271912,-1.067915,150.493301,-1.100296,2463,0,0,0,1,6,0,0,2310,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70620,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97329,'QST_BanSyl107','f1f2','bnpc4551510',4551510,291.165405,-5.053378,48.660301,0.796625,2463,0,0,0,1,6,0,0,2310,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70200,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97329,'QST_BanSyl107','f1f2','bnpc4551514',4551514,208.996201,-2.725635,-18.509899,-1.566921,2463,0,0,0,1,6,0,0,2310,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69868,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97329,'QST_BanSyl107','f1f2','bnpc4551540',4551540,241.992294,0.246785,117.888199,-1.005561,2463,0,0,0,1,6,0,0,2310,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69448,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97329,'QST_BanSyl107','f1f2','bnpc4551545',4551545,105.857803,6.356369,-8.705786,-1.520750,2463,0,0,0,1,6,0,0,2310,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69028,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97329,'QST_BanSyl107','f1f2','bnpc4551549',4551549,0.655772,20.118170,13.122950,0.475899,2463,0,0,0,1,6,0,0,2310,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68608,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96976,'QST_BanSyl109','f1f2','bnpc4516174',4516174,287.750702,-5.637219,29.635611,0.198602,72,0,0,0,1,6,0,0,2313,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67032,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96976,'QST_BanSyl109','f1f2','bnpc4516179',4516179,290.824402,-4.963961,52.298069,1.419473,72,0,0,0,1,6,0,0,2313,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66760,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96976,'QST_BanSyl109','f1f2','bnpc4516181',4516181,244.951004,-1.262805,100.521500,-0.877921,72,0,0,0,1,6,0,0,2313,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66488,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96976,'QST_BanSyl109','f1f2','bnpc4516199',4516199,218.738602,-2.617962,86.550529,-0.230576,72,0,0,0,1,6,0,0,2313,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66216,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96976,'QST_BanSyl109','f1f2','bnpc4516201',4516201,201.698700,3.597300,127.122002,0.819158,72,0,0,0,1,6,0,0,2313,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65944,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96976,'QST_BanSyl109','f1f2','bnpc4516203',4516203,219.487701,-3.403089,-6.550666,0.100287,72,0,0,0,1,6,0,0,2313,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65672,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96976,'QST_BanSyl109','f1f2','bnpc4516206',4516206,189.930206,-1.122917,86.132446,-0.257537,72,0,0,0,1,6,0,0,2313,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65400,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97630,'QST_BanSyl204_001','f1f2','bnpc4573001',4573001,62.906311,4.131375,156.393402,-0.365341,2466,0,0,0,1,6,0,0,2312,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,63582,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97630,'QST_BanSyl204_001','f1f2','bnpc4573002',4573002,7.541327,-1.832514,182.649597,-0.000000,2466,0,0,0,1,6,0,0,2312,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,63310,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97630,'QST_BanSyl204_001','f1f2','bnpc4573003',4573003,58.700821,1.119974,248.824799,-0.134730,2466,0,0,0,1,6,0,0,2312,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,63038,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97630,'QST_BanSyl204_001','f1f2','bnpc4573004',4573004,-48.545280,-1.505059,337.037415,0.553473,2466,0,0,0,1,6,0,0,2312,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,62766,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97630,'QST_BanSyl204_001','f1f2','bnpc4573005',4573005,-43.189510,-3.598343,186.625000,1.339117,2466,0,0,0,1,6,0,0,2312,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,62494,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97630,'QST_BanSyl204_001','f1f2','bnpc4573006',4573006,66.599533,2.688727,220.809296,-1.361487,2466,0,0,0,1,6,0,0,2312,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,62222,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97630,'QST_BanSyl204_001','f1f2','bnpc4573007',4573007,-0.129448,-7.917807,286.124390,0.648056,2466,0,0,0,1,6,0,0,2312,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,61950,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97313,'QST_BanSyl208_001','f1f2','bnpc4551422',4551422,356.458405,-14.073890,-264.422394,0.386813,764,0,0,0,1,6,0,0,2313,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55700,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97313,'QST_BanSyl208_001','f1f2','bnpc4551423',4551423,398.738495,-17.422421,-237.018097,-0.432707,764,0,0,0,1,6,0,0,2313,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55428,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97313,'QST_BanSyl208_001','f1f2','bnpc4551425',4551425,387.530487,-15.016710,-267.248291,-0.915195,764,0,0,0,1,6,0,0,2313,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55156,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97313,'QST_BanSyl208_001','f1f2','bnpc4551426',4551426,319.463989,-17.207939,-200.813507,1.251925,764,0,0,0,1,6,0,0,2313,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54884,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97313,'QST_BanSyl208_001','f1f2','bnpc4551431',4551431,326.692200,-18.100599,-235.940598,1.534985,764,0,0,0,1,6,0,0,2313,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54612,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97313,'QST_BanSyl208_001','f1f2','bnpc4551435',4551435,386.119293,-20.233700,-200.741806,-1.321161,764,0,0,0,1,6,0,0,2313,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54340,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97313,'QST_BanSyl208_001','f1f2','bnpc4551443',4551443,439.787506,-18.177000,-247.332001,-0.072727,764,0,0,0,1,6,0,0,2313,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54068,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97064,'QST_BanSyl303_001','f1f2','bnpc4520687',4520687,149.061798,-26.441429,-558.940918,0.573059,763,0,0,0,1,6,0,0,2320,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49962,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97064,'QST_BanSyl303_001','f1f2','bnpc4520689',4520689,-21.976681,-35.700001,-537.151917,1.119063,763,0,0,0,1,6,0,0,2320,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49690,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97354,'QST_BanSyl304_001','f1f2','bnpc4551946',4551946,150.634995,-23.997971,-319.199402,-1.202823,762,0,0,0,1,6,0,0,2321,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48884,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97354,'QST_BanSyl304_001','f1f2','bnpc4551951',4551951,101.918297,-27.465460,-308.235992,-1.452610,762,0,0,0,1,6,0,0,2321,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48612,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97354,'QST_BanSyl304_001','f1f2','bnpc4551952',4551952,92.479759,-26.509630,-363.826111,1.394701,762,0,0,0,1,6,0,0,2321,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48340,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97354,'QST_BanSyl304_001','f1f2','bnpc4551953',4551953,75.982872,-27.905420,-261.515106,-1.530947,762,0,0,0,1,6,0,0,2321,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48068,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97354,'QST_BanSyl304_001','f1f2','bnpc4593311',4593311,94.195747,-26.589689,-338.966309,1.331546,762,0,0,0,1,6,0,0,2321,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47532,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97354,'QST_BanSyl304_001','f1f2','bnpc4593312',4593312,118.710503,-21.512350,-297.734497,1.551467,762,0,0,0,1,6,0,0,2321,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47260,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97354,'QST_BanSyl304_001','f1f2','bnpc4593313',4593313,113.733704,-27.067699,-377.418213,-0.000000,762,0,0,0,1,6,0,0,2321,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46988,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97330,'QST_BanSyl306','f1f2','bnpc4551558',4551558,86.978981,-30.081900,-177.582703,1.351982,2469,0,0,0,1,6,0,0,2508,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44850,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97330,'QST_BanSyl306','f1f2','bnpc4551929',4551929,88.933144,-30.310749,-175.485306,1.238108,2470,0,0,0,1,6,0,0,2509,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44456,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97623,'QST_BanSyl307_001','f1f2','bnpc4589571',4589571,-13.916200,-35.376652,-530.369019,1.453389,2687,0,0,0,1,6,0,0,2313,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43398,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92621,'QST_GaiUsa002','f1f2','bnpc4269923',4269923,-481.375000,8.111641,192.372498,-0.000000,57,0,0,0,1,6,0,0,1983,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37384,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92621,'QST_GaiUsa002','f1f2','bnpc4269925',4269925,-507.592590,13.074900,152.746704,-0.000000,57,0,0,0,1,6,0,0,1983,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37112,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92621,'QST_GaiUsa002','f1f2','bnpc4269926',4269926,-465.717804,4.109491,168.511002,-0.000000,57,0,0,0,1,6,0,0,1983,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36840,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92548,'QST_GaiUsa004','f1f2','bnpc4277224',4277224,-391.546692,-0.017968,191.454193,1.548205,33,0,0,0,1,6,0,0,33,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36138,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82657,'QST_GaiUsa007_001','f1f2','bnpc3722272',3722272,126.479797,15.538270,483.185486,-0.446291,559,0,0,0,1,6,0,0,584,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34890,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82657,'QST_GaiUsa007_001','f1f2','bnpc3722273',3722273,128.390106,15.751670,484.653809,-0.906598,559,0,0,0,1,6,0,0,584,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34618,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82657,'QST_GaiUsa007_001','f1f2','bnpc4277391',4277391,-366.770294,3.784673,279.722809,0.808602,12,0,0,0,1,6,0,0,12,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34352,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82657,'QST_GaiUsa007_001','f1f2','bnpc4278132',4278132,-216.097000,-5.622439,201.955994,-1.514219,14,0,0,0,1,6,0,0,14,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34086,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82657,'QST_GaiUsa007_001','f1f2','bnpc4277274',4277274,-321.797485,19.499319,390.096802,1.007985,6,0,0,0,1,6,0,0,6,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33640,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92570,'QST_GaiUsa105','f1f2','bnpc4278151',4278151,-103.158501,-8.252533,261.120789,-0.623560,1895,0,0,0,1,6,0,0,58,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31310,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92570,'QST_GaiUsa105','f1f2','bnpc4278153',4278153,-103.180099,-8.041012,257.141815,-0.260997,1896,0,0,0,1,6,0,0,59,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31044,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92570,'QST_GaiUsa105','f1f2','bnpc4278162',4278162,-94.084557,-8.205156,257.881195,-1.296358,1897,0,0,0,1,6,0,0,60,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30778,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92570,'QST_GaiUsa105','f1f2','bnpc4278167',4278167,-107.848297,-8.351969,265.224701,-0.468272,1898,0,0,0,1,6,0,0,61,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30512,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82651,'QST_GaiUsa107_001','f1f2','bnpc3721323',3721323,-84.232437,-8.192020,260.098206,0.843059,44,0,0,0,1,6,0,0,587,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30082,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82651,'QST_GaiUsa107_001','f1f2','bnpc3862554',3862554,-74.583740,-8.174138,254.803207,-0.420417,44,0,0,0,1,6,0,0,587,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29634,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82651,'QST_GaiUsa107_001','f1f2','bnpc3862557',3862557,-69.404648,-8.764198,260.147400,-0.857938,44,0,0,0,1,6,0,0,587,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29362,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82651,'QST_GaiUsa107_001','f1f2','bnpc3862558',3862558,-81.863167,-7.888339,254.501404,0.827451,44,0,0,0,1,6,0,0,587,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29090,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92571,'QST_GaiUsa108','f1f2','bnpc4278233',4278233,-59.618469,-2.648111,325.125214,0.805271,15,0,0,0,1,6,0,0,16,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28592,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92571,'QST_GaiUsa108','f1f2','bnpc4278237',4278237,-51.821629,-3.089426,324.088715,-0.565810,15,0,0,0,1,6,0,0,16,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28320,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92571,'QST_GaiUsa108','f1f2','bnpc4278251',4278251,-68.023827,-2.869441,184.108597,0.191796,1886,0,0,0,1,6,0,0,1975,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27934,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93185,'QST_GaiUsc303','f1f2','bnpc4300392',4300392,236.230896,5.832006,199.041000,-1.506382,762,0,0,0,1,6,0,0,64,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25236,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93185,'QST_GaiUsc303','f1f2','bnpc4300395',4300395,191.632401,5.979827,136.378204,-0.961629,763,0,0,0,1,6,0,0,68,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93185,'QST_GaiUsc303','f1f2','bnpc4300397',4300397,182.648605,-0.088148,43.298820,-1.121472,764,0,0,0,1,6,0,0,69,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24680,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93187,'QST_GaiUsc304','f1f2','bnpc4300421',4300421,218.048401,11.901690,146.093903,-0.000000,762,0,0,0,1,6,0,0,64,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24156,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93196,'QST_GaiUsc307','f1f2','bnpc4300660',4300660,235.640396,-3.838801,-21.488760,-1.493653,1893,0,0,0,1,6,0,0,1981,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23440,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96556,'QST_GaiUse116','f1f2','bnpc4515258',4515258,-542.901917,11.424800,62.269001,-0.115942,2482,0,0,0,11,6,0,0,2359,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96556,'QST_GaiUse116','f1f2','bnpc4515416',4515416,-480.259186,6.053431,82.248917,-0.000048,47,0,0,0,1,6,0,0,699,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20692,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96556,'QST_GaiUse116','f1f2','bnpc4515569',4515569,-373.925201,1.538162,64.906090,-1.521893,2483,0,0,0,1,6,0,0,700,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20426,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96556,'QST_GaiUse116','f1f2','bnpc4515570',4515570,-375.830597,1.041128,61.186649,-0.819206,2483,0,0,0,1,6,0,0,700,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20154,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96556,'QST_GaiUse116','f1f2','bnpc4515571',4515571,-371.558014,1.699037,61.949589,-1.173561,2483,0,0,0,1,6,0,0,700,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19882,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96556,'QST_GaiUse116','f1f2','bnpc4515572',4515572,-343.140808,6.375536,61.687080,-1.237510,2484,0,0,0,1,6,0,0,701,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19616,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96556,'QST_GaiUse116','f1f2','bnpc4515578',4515578,-333.188110,7.893847,62.668701,0.986851,2485,0,0,0,1,6,0,0,702,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19350,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96556,'QST_GaiUse116','f1f2','bnpc4515579',4515579,-314.502991,8.036666,81.688400,-1.079268,2485,0,0,0,1,6,0,0,702,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19078,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96556,'QST_GaiUse116','f1f2','bnpc4515580',4515580,-173.069595,-1.198623,169.543106,0.029264,2485,0,0,0,1,6,0,0,702,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18806,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96556,'QST_GaiUse116','f1f2','bnpc4515581',4515581,-151.457306,0.193429,156.267593,-1.228055,2485,0,0,0,1,6,0,0,702,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18534,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96556,'QST_GaiUse116','f1f2','bnpc4515586',4515586,-257.133392,11.445850,-10.289890,0.405600,2488,0,0,0,1,6,0,0,705,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18268,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96556,'QST_GaiUse116','f1f2','bnpc4515587',4515587,-252.418503,11.666820,25.252480,1.482762,2487,0,0,0,1,6,0,0,704,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18002,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96556,'QST_GaiUse116','f1f2','bnpc4515588',4515588,-231.233093,11.925600,16.925039,-0.735935,2487,0,0,0,1,6,0,0,704,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17730,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96556,'QST_GaiUse116','f1f2','bnpc4515582',4515582,-182.422607,1.569477,141.317307,0.533602,2486,0,0,0,1,6,0,0,703,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102789,'QST_GaiUse309','f1f2','bnpc4868005',4868005,526.555176,-22.291040,-316.172699,-0.032795,24,0,0,0,1,6,0,0,2876,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14914,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102789,'QST_GaiUse309','f1f2','bnpc4868006',4868006,528.124817,-21.868340,-301.651215,-0.622840,72,0,0,0,1,6,0,0,2877,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14192,1,0,0,0,0,0,0,631,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102789,'QST_GaiUse309','f1f2','bnpc4868007',4868007,523.651428,-21.969879,-303.132813,-0.814173,72,0,0,0,1,6,0,0,2877,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13920,1,0,0,0,0,0,0,631,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102789,'QST_GaiUse309','f1f2','bnpc4868012',4868012,255.609604,-24.155291,-532.219971,0.749217,72,0,0,0,1,6,0,0,2877,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13384,1,0,0,0,0,0,0,631,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102225,'QST_GaiUse310','f1f2','bnpc4868024',4868024,99.206284,-27.093290,-316.953888,-0.280553,3118,0,0,0,1,6,0,0,15,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12480,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93488,'QST_JobMnk450_001','f1f2','bnpc4308359',4308359,-3.778761,21.771950,-5.967347,1.034420,1927,0,0,0,1,6,0,0,2026,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10778,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93488,'QST_JobMnk450_001','f1f2','bnpc4308360',4308360,-1.007475,22.092751,-4.642800,0.356914,1927,0,0,0,1,6,0,0,2026,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10506,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93488,'QST_JobMnk450_001','f1f2','bnpc4308361',4308361,2.077178,21.987520,-4.305155,-0.029077,1927,0,0,0,1,6,0,0,2026,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10234,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93488,'QST_JobMnk450_001','f1f2','bnpc4308362',4308362,6.714725,21.671631,-5.583544,-0.201887,1927,0,0,0,1,6,0,0,2026,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9962,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93488,'QST_JobMnk450_001','f1f2','bnpc4308363',4308363,9.932336,21.085760,-7.817330,-0.358668,1927,0,0,0,1,6,0,0,2026,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9690,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93488,'QST_JobMnk450_001','f1f2','bnpc4308364',4308364,13.161810,20.014009,-11.500060,-0.695968,1927,0,0,0,1,6,0,0,2026,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9418,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93488,'QST_JobMnk450_001','f1f2','bnpc4308365',4308365,13.023120,20.309839,-14.112590,-1.352793,1927,0,0,0,1,6,0,0,2026,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9146,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93426,'QST_JobWhm400_001','f1f2','bnpc4306638',4306638,-268.230713,13.299000,-53.177429,-0.000000,1938,0,0,0,1,6,0,0,2043,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8092,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93426,'QST_JobWhm400_001','f1f2','bnpc4306639',4306639,-274.665894,13.695730,-53.456951,-0.000000,1938,0,0,0,1,6,0,0,2044,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7820,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93426,'QST_JobWhm400_001','f1f2','bnpc4306640',4306640,-269.268005,13.095310,-49.146919,-0.000000,1939,0,0,0,1,6,0,0,2045,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7554,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93426,'QST_JobWhm400_001','f1f2','bnpc4306641',4306641,-274.334686,13.376690,-49.418701,-0.000000,1939,0,0,0,1,6,0,0,2045,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7282,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99747,'QST_SubCts811_001','f1f2','bnpc4696192',4696192,-54.751530,-9.194389,295.979187,-0.558966,12,0,0,0,1,6,0,0,2757,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4720,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99747,'QST_SubCts811_001','f1f2','bnpc4696193',4696193,-54.301991,-8.758193,301.289307,-1.116328,12,0,0,0,1,6,0,0,2757,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4448,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82621,'QST_SUBFST081_001','f1f2','bnpc3716052',3716052,-287.906494,0.003769,255.474503,-1.278238,6,0,0,0,1,6,0,0,588,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3836,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82621,'QST_SUBFST081_001','f1f2','bnpc3716053',3716053,-286.776398,-0.138888,257.465393,-1.469233,6,0,0,0,1,6,0,0,588,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3564,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82621,'QST_SUBFST081_001','f1f2','bnpc3716054',3716054,-284.664215,-0.438777,255.266907,-1.239599,6,0,0,0,1,6,0,0,588,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3292,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82656,'QST_SUBFST086_001','f1f2','bnpc3762055',3762055,-106.446602,-7.954800,253.925293,0.414723,81,0,0,0,1,6,0,0,585,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2668,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82656,'QST_SUBFST086_001','f1f2','bnpc3722155',3722155,-104.631203,-8.088456,257.495087,0.575120,559,0,0,0,1,6,0,0,584,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2246,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82947,'QST_SUBFST091_001','f1f2','bnpc3776179',3776179,-172.253494,9.661035,-2.729053,-1.351793,563,0,0,0,1,6,0,0,583,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,906,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82892,'QST_CLSCNJ002_001','f1f2','bnpc3768148',3768148,-510.665497,5.999801,35.878948,-0.000000,295,0,0,0,1,6,0,0,553,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14064,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76544,'QST_CLSCNJ003_001','f1f2','bnpc3799227',3799227,-276.907288,11.366130,366.503601,-0.000000,297,0,0,0,1,6,0,0,136,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13366,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76490,'QST_CLSLNC003_001','f1f2','bnpc3790598',3790598,-422.520294,0.971887,132.000000,0.538684,24,0,0,0,1,6,0,0,607,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10200,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83007,'QST_ClsLnc005_001','f1f2','bnpc3783324',3783324,36.939190,-1.859108,332.000000,0.314159,38,0,0,0,1,6,0,0,612,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,9.000000,1.000000,9266,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1139214',1139214,-268.574097,7.064880,631.738708,-0.000144,13,0,0,0,1,6,0,0,566,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162080,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1139247',1139247,-122.621803,1.180372,288.650391,-0.000048,13,0,0,0,1,6,0,0,566,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161808,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1139253',1139253,-116.636803,1.401093,293.862488,-0.000048,13,0,0,0,1,6,0,0,566,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161536,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1139295',1139295,-239.337799,0.869717,266.651306,-0.000144,13,0,0,0,1,6,0,0,566,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161264,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1139296',1139296,-242.175995,0.625573,262.958710,-0.000144,13,0,0,0,1,6,0,0,566,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160992,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1139314',1139314,-234.854004,-0.100137,305.762085,0.000144,13,0,0,0,1,6,0,0,566,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160720,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1139319',1139319,-284.558105,1.846295,342.205505,-0.000240,13,0,0,0,1,6,0,0,566,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160448,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1139327',1139327,-178.824295,0.141551,253.664703,0.000623,13,0,0,0,1,6,0,0,566,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160176,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1139344',1139344,-179.793198,0.669785,323.976196,-0.000048,13,0,0,0,1,6,0,0,566,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159904,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1139407',1139407,-279.011292,6.027267,564.782104,-0.000144,13,0,0,0,1,6,0,0,566,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159632,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1139408',1139408,-254.932495,6.759699,578.911987,-0.000240,13,0,0,0,1,6,0,0,566,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159360,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1139409',1139409,-258.136902,7.827831,603.051819,-0.000240,13,0,0,0,1,6,0,0,566,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159088,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1139410',1139410,-257.221405,6.637627,578.881470,-0.000240,13,0,0,0,1,6,0,0,566,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158816,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1139423',1139423,-276.386688,5.966230,538.170288,-0.000240,13,0,0,0,1,6,0,0,566,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158544,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1139425',1139425,-266.529388,5.020171,542.473389,-0.000240,13,0,0,0,1,6,0,0,566,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158272,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1139430',1139430,-220.569199,3.982558,556.969482,-0.000144,13,0,0,0,1,6,0,0,566,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158000,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1140355',1140355,-167.689697,4.657228,188.189499,-0.000048,13,0,0,0,1,6,0,0,566,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157728,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1140356',1140356,-140.886597,6.118821,203.173798,-0.000240,13,0,0,0,1,6,0,0,566,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157456,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299623',2299623,-290.183014,-0.100012,465.039612,1.239995,34,0,0,0,1,12,0,0,34,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157190,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299626',2299626,-303.145111,-0.100187,410.650696,-0.000048,34,0,0,0,1,12,0,0,34,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156918,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299628',2299628,-315.270905,0.279321,442.690002,-0.000048,34,0,0,0,1,12,0,0,34,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156646,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299630',2299630,-290.338806,-0.100002,403.924103,-0.000048,34,0,0,0,1,12,0,0,34,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156374,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299631',2299631,-260.457001,-0.100012,454.819794,0.788341,34,0,0,0,1,12,0,0,34,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156102,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299636',2299636,-85.984627,-0.137378,426.901611,-0.000240,34,0,0,0,1,12,0,0,34,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155830,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299637',2299637,-105.242203,-0.100010,441.452209,-0.000527,34,0,0,0,1,12,0,0,34,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155558,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299638',2299638,-127.139801,-0.100007,331.296906,-0.000432,34,0,0,0,1,12,0,0,34,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155286,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299640',2299640,-106.279099,-0.167896,335.835785,-0.000719,34,0,0,0,1,12,0,0,34,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155014,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299642',2299642,-76.920776,0.228838,434.653198,-0.000815,34,0,0,0,1,12,0,0,34,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154742,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299644',2299644,-121.995903,-0.106860,397.177002,-0.000144,34,0,0,0,1,12,0,0,34,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154470,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299647',2299647,-213.092300,-0.106860,435.019409,-0.000144,34,0,0,0,1,12,0,0,34,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154198,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299711',2299711,-240.650101,6.790217,647.669128,-0.000144,41,0,0,0,1,6,0,0,168,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153932,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299712',2299712,-268.177307,7.461614,616.082886,-0.000048,41,0,0,0,1,6,0,0,168,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153660,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299713',2299713,-298.512299,10.330310,645.349670,-0.000144,41,0,0,0,1,6,0,0,168,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153388,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299714',2299714,-301.838715,11.032230,612.298706,-0.000336,41,0,0,0,1,6,0,0,168,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153116,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299716',2299716,-278.400909,7.095398,588.036926,-0.000048,41,0,0,0,1,6,0,0,168,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152844,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299719',2299719,-256.092194,6.362965,575.310913,-0.000527,41,0,0,0,1,6,0,0,168,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152572,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299720',2299720,-249.805496,4.135148,533.104370,-0.000719,41,0,0,0,1,6,0,0,168,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152300,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299722',2299722,-243.854507,-0.167896,489.982391,-0.001199,41,0,0,0,1,6,0,0,168,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152028,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299723',2299723,-273.384796,-0.100012,454.524109,-0.000911,41,0,0,0,1,6,0,0,168,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151756,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299725',2299725,-301.158295,1.302513,475.886902,-0.001007,41,0,0,0,1,6,0,0,168,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151484,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299729',2299729,-220.495697,-0.100054,427.954590,-0.000911,41,0,0,0,1,6,0,0,168,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151212,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299730',2299730,-295.158295,-0.100004,416.955688,-0.000911,41,0,0,0,1,6,0,0,168,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150940,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299731',2299731,-158.892197,-0.137378,438.498413,-0.001103,41,0,0,0,1,6,0,0,168,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150668,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299732',2299732,-97.367859,-0.137378,460.166290,-0.001103,41,0,0,0,1,6,0,0,168,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150396,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299733',2299733,-102.128700,-0.106860,387.319702,-0.001007,41,0,0,0,1,6,0,0,168,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150124,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299734',2299734,-103.898697,-0.106860,385.000305,-0.001007,41,0,0,0,1,6,0,0,168,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149852,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299735',2299735,-73.472237,-0.100006,383.004608,-0.001103,41,0,0,0,1,6,0,0,168,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149580,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299736',2299736,-119.829102,-0.106860,335.713715,-0.001007,41,0,0,0,1,6,0,0,168,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149308,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299737',2299737,-25.762659,-0.100045,385.324402,-0.001103,41,0,0,0,1,6,0,0,168,0,0.000000,34,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149036,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299738',2299738,-12.145770,-0.100007,340.874298,-0.001103,41,0,0,0,1,6,0,0,168,0,0.000000,34,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148764,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299739',2299739,-36.646210,-0.100007,330.899811,-0.001199,41,0,0,0,1,6,0,0,168,0,0.000000,34,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148492,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299740',2299740,-69.291260,-0.100006,346.480591,-0.001199,41,0,0,0,1,6,0,0,168,0,0.000000,34,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148220,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299741',2299741,-29.965321,-0.106860,383.686096,-0.001199,41,0,0,0,1,6,0,0,168,0,0.000000,34,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147948,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299742',2299742,-152.754807,-0.100000,285.928711,-0.000911,41,0,0,0,1,6,0,0,168,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147676,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299746',2299746,-188.861404,-0.100036,279.196106,-0.000911,41,0,0,0,1,6,0,0,168,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147404,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299747',2299747,-138.628296,-0.106860,247.516495,-0.001007,41,0,0,0,1,6,0,0,168,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147132,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299748',2299748,-207.352600,-0.100011,323.235504,-0.000911,41,0,0,0,1,6,0,0,168,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146860,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299751',2299751,-240.541595,-0.100076,309.201599,-0.000911,41,0,0,0,1,6,0,0,168,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146588,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299754',2299754,-282.546997,2.068284,344.383087,-0.000911,41,0,0,0,1,6,0,0,168,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146316,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299756',2299756,-165.855804,3.695794,214.781403,-0.001007,41,0,0,0,1,6,0,0,168,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146044,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2308368',2308368,-332.770508,11.416920,613.476685,-0.000335,79,0,0,0,0,6,0,0,140,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145778,1,0,0,0,41,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2308373',2308373,-344.072388,20.119520,620.861877,-0.321871,79,0,0,0,0,6,0,0,140,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145506,1,0,0,0,41,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2308809',2308809,-333.211304,11.428960,605.065918,1.074426,79,0,0,0,0,6,0,0,140,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145234,1,0,0,0,41,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2308811',2308811,-314.290100,11.306890,604.882813,1.290097,79,0,0,0,0,6,0,0,140,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144962,1,0,0,0,41,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2308808',2308808,-325.795410,11.581550,623.895630,0.228759,311,0,0,0,0,6,0,0,169,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144696,1,0,0,0,41,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2308369',2308369,-343.075592,12.112200,626.433289,0.778940,311,0,0,0,0,6,0,0,169,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144424,1,0,0,0,41,30083,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2308807',2308807,-333.646912,11.427370,613.129211,1.426192,311,0,0,0,0,6,0,0,169,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144152,1,0,0,0,41,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2308372',2308372,-345.601593,15.548900,608.209290,-0.000240,311,0,0,0,1,6,0,0,169,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143880,1,0,0,0,41,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2308806',2308806,-332.725800,11.426350,614.251526,0.209871,311,0,0,0,0,6,0,0,169,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143608,1,0,0,0,41,30074,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740632',3740632,-358.518585,1.158285,453.619598,1.433719,305,0,0,0,1,6,0,0,236,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143342,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740634',3740634,-362.075012,0.968366,458.185486,1.433695,305,0,0,0,1,6,0,0,236,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143070,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740635',3740635,-336.208405,-0.100018,460.011810,1.433695,305,0,0,0,1,6,0,0,236,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142798,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740636',3740636,-362.780701,1.532029,454.955414,1.433695,305,0,0,0,1,6,0,0,236,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142526,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740637',3740637,-338.199493,-0.100187,433.127808,1.433695,305,0,0,0,1,6,0,0,236,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142254,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740638',3740638,-334.106689,-0.100003,437.684113,1.433695,305,0,0,0,1,6,0,0,236,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141982,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740639',3740639,-345.628906,-0.100008,453.583313,1.433695,305,0,0,0,1,6,0,0,236,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141710,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740640',3740640,-333.997498,-0.100017,457.273987,1.433695,305,0,0,0,1,6,0,0,236,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141438,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc1139231',1139231,-15.879850,-0.100045,376.413208,-0.000240,304,0,0,0,1,6,0,0,238,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141172,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740644',3740644,-79.519012,-0.100045,377.072388,-0.000240,304,0,0,0,1,6,0,0,238,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140900,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740645',3740645,-20.504120,-0.106860,365.133087,-0.000336,304,0,0,0,1,6,0,0,238,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140628,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740646',3740646,-52.782280,-0.106860,324.177887,-0.000240,304,0,0,0,1,6,0,0,238,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140356,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740647',3740647,-59.319771,-0.100007,331.135590,-0.000240,304,0,0,0,1,6,0,0,238,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140084,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740648',3740648,-4.964393,-0.100007,339.615601,-0.000240,304,0,0,0,1,6,0,0,238,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139812,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740649',3740649,-18.177540,-0.100615,322.254089,-0.000336,304,0,0,0,1,6,0,0,238,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139540,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740651',3740651,-42.146980,-0.100005,396.759399,-0.000336,304,0,0,0,1,6,0,0,238,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139268,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc2299632',2299632,-166.141800,-0.100048,463.106415,-0.000527,302,0,0,0,1,12,0,0,235,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139002,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740607',3740607,-135.541595,-0.100001,467.027588,-0.000527,302,0,0,0,1,12,0,0,235,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138730,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740609',3740609,-138.985397,-0.100003,461.260590,-0.000527,302,0,0,0,1,12,0,0,235,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138458,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740611',3740611,-176.964996,-0.100092,482.156586,-0.000527,302,0,0,0,1,12,0,0,235,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138186,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740613',3740613,-197.264099,-0.100169,480.240295,-0.000527,302,0,0,0,1,12,0,0,235,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137914,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740615',3740615,-183.840607,-0.100061,448.882111,-0.000527,302,0,0,0,1,12,0,0,235,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137642,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740617',3740617,-178.071396,-0.100048,447.029205,-0.000527,302,0,0,0,1,12,0,0,235,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137370,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3740619',3740619,-182.900406,-0.100169,476.189514,-0.000527,302,0,0,0,1,12,0,0,235,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137098,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3879339',3879339,-343.618011,11.367920,624.658508,0.916520,311,0,0,0,0,6,0,0,169,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136808,1,0,0,0,41,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3879341',3879341,-324.269501,11.551030,603.662109,-0.034707,311,0,0,0,0,6,0,0,169,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136536,1,0,0,0,41,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3879343',3879343,-320.241089,11.612060,616.174377,1.445943,81,0,0,0,1,6,0,0,139,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136288,1,0,0,0,41,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3879346',3879346,-319.234009,11.551030,602.227722,1.002472,81,0,0,0,1,6,0,0,139,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136016,1,0,0,0,41,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3879348',3879348,-324.879913,11.551030,603.082275,1.448435,81,0,0,0,0,6,0,0,139,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135744,1,0,0,0,41,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3879351',3879351,-324.330505,11.520510,609.063782,-0.034611,311,0,0,0,1,6,0,0,169,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135448,1,0,0,0,41,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3879352',3879352,-342.671906,20.065571,624.475403,-0.776590,311,0,0,0,0,6,0,0,169,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135176,1,0,0,0,41,30074,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3879353',3879353,-343.556885,20.065571,624.811096,0.910719,81,0,0,0,0,6,0,0,139,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134928,1,0,0,0,41,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67117,'LVD_BNPC_PUB_01','f1f3','bnpc3879398',3879398,-335.561188,11.520510,620.843811,1.074426,79,0,0,0,1,6,0,0,140,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134626,1,0,0,0,41,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc1140341',1140341,148.210800,18.142929,63.034969,-0.000240,24,0,0,0,1,6,0,0,24,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134118,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299670',2299670,105.271896,19.668831,117.021400,-0.000432,24,0,0,0,1,6,0,0,24,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133846,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299672',2299672,179.124298,15.917120,38.983059,-0.000144,24,0,0,0,1,6,0,0,24,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133574,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299676',2299676,67.215942,23.941410,138.414597,-0.000527,24,0,0,0,1,6,0,0,24,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133302,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299681',2299681,27.293150,20.375059,193.801193,-0.000240,24,0,0,0,1,6,0,0,24,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133030,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299685',2299685,222.992401,6.174502,28.347420,-0.000048,143,0,0,0,1,6,0,0,170,0,0.000000,35,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132764,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299686',2299686,218.930206,7.861652,25.101040,-0.000336,143,0,0,0,1,6,0,0,170,0,0.000000,35,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132492,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299687',2299687,219.145096,9.429937,43.394890,-0.000240,143,0,0,0,1,6,0,0,170,0,0.000000,35,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132220,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299688',2299688,242.878006,5.513403,43.686531,-0.000336,143,0,0,0,1,6,0,0,170,0,0.000000,35,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131948,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299693',2299693,203.440796,11.769820,11.092830,-0.000815,143,0,0,0,1,6,0,0,170,0,0.000000,35,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131676,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299695',2299695,183.372894,13.534710,15.091120,-0.001007,143,0,0,0,1,6,0,0,170,0,0.000000,35,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131404,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299696',2299696,190.876602,14.557230,16.119829,-0.001199,143,0,0,0,1,6,0,0,170,0,0.000000,35,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131132,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299697',2299697,181.536499,14.175580,17.074800,-0.001294,143,0,0,0,1,6,0,0,170,0,0.000000,35,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130860,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299762',2299762,190.512695,15.940850,25.798840,-0.000000,130,0,0,0,1,6,0,0,171,0,0.000000,36,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130594,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299764',2299764,193.374695,15.528740,58.982250,-0.000000,130,0,0,0,1,6,0,0,171,0,0.000000,36,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130322,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299765',2299765,192.796906,15.253090,57.661560,-0.000000,130,0,0,0,1,6,0,0,171,0,0.000000,36,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130050,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299767',2299767,162.554993,16.909040,69.378082,-0.000000,130,0,0,0,1,6,0,0,171,0,0.000000,36,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129778,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299768',2299768,118.356201,19.249180,84.129753,-0.000000,130,0,0,0,1,6,0,0,171,0,0.000000,36,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129506,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299769',2299769,119.667503,18.832991,86.148743,-0.000000,130,0,0,0,1,6,0,0,171,0,0.000000,36,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129234,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299771',2299771,205.228104,12.477170,36.627281,-0.000000,130,0,0,0,1,6,0,0,171,0,0.000000,35,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128962,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299772',2299772,218.183899,10.623910,45.217682,-0.000000,130,0,0,0,1,6,0,0,171,0,0.000000,35,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128690,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299775',2299775,206.333893,12.854360,17.317181,-0.000144,130,0,0,0,1,6,0,0,171,0,0.000000,35,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128418,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299777',2299777,114.394302,18.347380,106.921097,-0.000000,130,0,0,0,1,6,0,0,171,0,0.000000,36,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128146,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299785',2299785,52.078991,24.582239,146.288193,-0.000048,130,0,0,0,1,6,0,0,171,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127874,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299786',2299786,52.109509,24.917931,143.633102,-0.000048,130,0,0,0,1,6,0,0,171,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127602,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299788',2299788,54.687038,18.847170,222.674896,-0.000144,130,0,0,0,1,6,0,0,171,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127330,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299789',2299789,71.783401,22.789841,205.433395,-0.000000,130,0,0,0,1,6,0,0,171,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127058,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299791',2299791,52.628319,11.490000,281.025391,-0.000144,130,0,0,0,1,6,0,0,171,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126786,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299792',2299792,55.405460,12.252950,279.835114,-0.000144,130,0,0,0,1,6,0,0,171,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126514,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2351462',2351462,48.281940,25.165770,125.730797,-0.000240,130,0,0,0,1,6,0,0,171,0,0.000000,38,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126242,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2351466',2351466,33.028351,19.801689,204.600204,-0.000048,130,0,0,0,1,6,0,0,171,0,0.000000,39,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125970,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2351468',2351468,17.664570,21.473511,187.304001,-0.000048,130,0,0,0,1,6,0,0,171,0,0.000000,39,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125698,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2351469',2351469,15.638560,21.324190,188.309006,-0.000048,130,0,0,0,1,6,0,0,171,0,0.000000,39,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125426,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2351473',2351473,48.142170,19.912979,204.211395,-0.000336,24,0,0,0,1,6,0,0,24,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125142,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2351480',2351480,31.650410,24.598419,125.582100,-0.000240,130,0,0,0,1,6,0,0,171,0,0.000000,38,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124882,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc3740823',3740823,52.433182,8.970453,290.451111,-0.000144,143,0,0,0,1,6,0,0,170,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124604,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299677',2299677,92.332291,22.476490,171.373993,-0.000527,143,0,0,0,1,6,0,0,170,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124332,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc1140323',1140323,48.412201,22.379660,245.108307,-0.000240,143,0,0,0,1,6,0,0,170,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124060,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299678',2299678,68.223038,21.438881,171.709702,-0.000432,143,0,0,0,1,6,0,0,170,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123788,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299682',2299682,76.646019,20.096081,218.799103,-0.000336,143,0,0,0,1,6,0,0,170,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123516,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc3740824',3740824,34.042301,6.188347,297.895691,-0.000144,143,0,0,0,1,6,0,0,170,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123244,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299707',2299707,62.549999,18.461660,250.313202,1.034542,24,0,0,0,1,6,0,0,24,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122966,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299701',2299701,46.014000,24.951891,129.998001,-0.001870,24,0,0,0,1,6,0,0,24,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122694,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299779',2299779,125.780098,24.673790,178.210098,-0.000144,45,0,0,0,1,6,0,0,45,0,0.000000,38,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122440,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299783',2299783,145.372696,31.326719,173.479797,-0.000144,45,0,0,0,1,6,0,0,45,0,0.000000,38,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122168,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299781',2299781,135.240707,28.061291,166.094406,-0.000144,45,0,0,0,1,6,0,0,45,0,0.000000,38,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121896,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc2299782',2299782,132.860199,26.962641,168.596893,-0.000144,45,0,0,0,1,6,0,0,45,0,0.000000,38,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121624,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc3740991',3740991,83.869347,23.640280,197.587494,-0.000144,45,0,0,0,1,6,0,0,45,0,0.000000,38,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121352,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc3740992',3740992,83.668243,23.758640,201.089493,-0.000144,45,0,0,0,1,6,0,0,45,0,0.000000,38,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121080,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc3740993',3740993,92.752083,22.594500,147.751404,-0.000144,45,0,0,0,1,6,0,0,45,0,0.000000,38,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120808,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70561,'LVD_BNPC_PUB_02','f1f3','bnpc3740994',3740994,69.937286,22.357740,174.791397,-0.000144,45,0,0,0,1,6,0,0,45,0,0.000000,38,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120536,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140376',1140376,-173.095795,7.162746,110.695396,-0.002637,3,0,0,0,1,6,0,0,3,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119830,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140378',1140378,-169.298904,4.379292,134.294601,0.006472,3,0,0,0,1,6,0,0,3,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119558,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140379',1140379,-176.483307,6.579963,113.899696,-0.002637,3,0,0,0,1,6,0,0,3,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119286,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140393',1140393,-213.883896,11.384410,78.615593,-0.000048,3,0,0,0,1,6,0,0,3,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119014,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140405',1140405,-204.099792,10.836050,82.086967,-0.000048,3,0,0,0,1,6,0,0,3,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118742,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140418',1140418,-170.832901,8.611761,46.359402,-0.000048,3,0,0,0,1,6,0,0,3,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118470,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140419',1140419,-163.073196,7.441800,53.057159,-0.000048,3,0,0,0,1,6,0,0,3,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118198,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140420',1140420,-208.158096,10.773990,72.948898,-0.000048,3,0,0,0,1,6,0,0,3,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117926,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140429',1140429,-210.742401,9.567359,0.839199,-0.000240,3,0,0,0,1,6,0,0,3,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117654,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140430',1140430,-217.212204,9.475805,3.250124,-0.000240,3,0,0,0,1,6,0,0,3,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117382,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140539',1140539,-119.476097,5.647681,112.526497,-0.000144,3,0,0,0,1,6,0,0,3,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117110,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140540',1140540,-126.604202,5.923794,94.623161,-0.000048,3,0,0,0,1,6,0,0,3,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116838,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140541',1140541,-126.329498,5.844177,109.056198,-0.000144,3,0,0,0,1,6,0,0,3,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116566,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140980',1140980,-313.130402,25.345190,-208.453506,-0.000144,3,0,0,0,1,6,0,0,3,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116294,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140981',1140981,-326.970612,26.883949,-216.976898,-0.000240,3,0,0,0,1,6,0,0,3,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116022,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140982',1140982,-329.696594,21.078899,-165.243500,-0.000144,3,0,0,0,1,6,0,0,3,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115750,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140983',1140983,-338.267395,24.724110,-191.433197,-0.000240,3,0,0,0,1,6,0,0,3,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115478,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140984',1140984,-323.896515,19.876869,-162.956696,-0.000144,3,0,0,0,1,6,0,0,3,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115206,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299799',2299799,-333.285889,20.722960,-154.265701,-0.000240,3,0,0,0,1,6,0,0,3,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114934,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299812',2299812,-156.572906,6.393483,12.436060,-0.000240,3,0,0,0,1,6,0,0,3,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114662,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299882',2299882,-305.844391,25.145599,-209.288696,-0.000048,133,0,0,0,1,6,0,0,115,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114396,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299886',2299886,-345.664215,23.928289,-176.087097,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114124,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299887',2299887,-347.161285,24.534389,-177.381302,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113852,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299895',2299895,-261.350800,12.694290,-76.165604,-0.000336,133,0,0,0,1,6,0,0,115,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113580,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299901',2299901,-279.804291,19.410770,50.600639,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,24,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113308,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299908',2299908,-263.922089,15.508790,89.442383,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,24,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113036,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299911',2299911,-145.702393,6.826308,-14.807010,-0.000432,133,0,0,0,1,6,0,0,115,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112764,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299914',2299914,-186.113998,9.086921,28.118750,-0.000527,133,0,0,0,1,6,0,0,115,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112492,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299915',2299915,-149.863907,4.337313,105.397102,-0.000527,133,0,0,0,1,6,0,0,115,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112220,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299916',2299916,-212.124496,12.717620,104.362198,-0.000527,133,0,0,0,1,6,0,0,115,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111948,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299930',2299930,-56.242779,6.495965,-71.791733,-0.000719,133,0,0,0,1,6,0,0,115,0,0.000000,22,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111676,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299933',2299933,-107.042099,5.264315,-76.487633,-0.001007,133,0,0,0,1,6,0,0,115,0,0.000000,22,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111404,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299936',2299936,-66.982857,5.925140,-114.246902,-0.001390,133,0,0,0,1,6,0,0,115,0,0.000000,22,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111132,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299938',2299938,-139.531906,11.537960,-122.054199,-0.001678,133,0,0,0,1,6,0,0,115,0,0.000000,22,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110860,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299941',2299941,-121.466599,10.386180,-143.292297,-0.001678,133,0,0,0,1,6,0,0,115,0,0.000000,22,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110588,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299945',2299945,0.868353,6.550388,-34.652611,-0.001582,133,0,0,0,1,6,0,0,115,0,0.000000,22,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110316,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299949',2299949,57.447720,3.129161,-49.835171,-0.001678,133,0,0,0,1,6,0,0,115,0,0.000000,22,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110044,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299951',2299951,20.675930,4.623436,23.544621,-0.001774,133,0,0,0,1,6,0,0,115,0,0.000000,22,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109772,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2308812',2308812,-302.510101,16.006670,74.845451,0.903193,84,0,0,0,0,6,0,0,52,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109506,1,0,0,0,8,30065,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2308813',2308813,-305.806091,17.837749,80.064034,1.276004,86,0,0,0,0,6,0,0,172,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109240,1,0,0,0,8,30072,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2308814',2308814,-302.204987,16.159260,76.035652,0.820980,87,0,0,0,0,6,0,0,83,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108974,1,0,0,0,8,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2308815',2308815,-306.242096,16.501289,63.830650,0.852555,87,0,0,0,1,6,0,0,83,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108702,1,0,0,0,8,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2308816',2308816,-295.566986,17.347191,79.688187,1.057213,84,0,0,0,1,6,0,0,52,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108418,1,0,0,0,8,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144786',1144786,30.609501,4.094535,43.754768,-0.000144,23,0,0,0,1,6,0,0,23,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108164,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144748',1144748,17.348650,6.534479,-18.517111,-0.000144,23,0,0,0,1,6,0,0,23,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107892,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144747',1144747,2.112435,6.781407,-26.549141,-0.000048,23,0,0,0,1,6,0,0,23,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107620,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299800',2299800,-287.157501,15.489150,-84.197617,-0.000240,23,0,0,0,1,6,0,0,23,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107348,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299804',2299804,-235.706100,8.377155,-31.937180,0.001007,23,0,0,0,1,6,0,0,23,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107076,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299803',2299803,-258.117889,10.828210,-67.787712,0.001102,23,0,0,0,1,6,0,0,23,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106804,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299802',2299802,-262.604095,12.804420,-65.742996,0.001007,23,0,0,0,1,6,0,0,23,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106532,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144491',1144491,-78.316467,3.566922,-36.424759,-0.000719,23,0,0,0,1,6,0,0,23,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106260,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144408',1144408,-257.479095,14.942520,80.117462,-0.000144,23,0,0,0,1,6,0,0,23,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105988,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144407',1144407,-272.144714,17.696960,57.133450,-0.000144,23,0,0,0,1,6,0,0,23,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105716,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144457',1144457,-241.510406,16.161341,12.992840,-0.000336,23,0,0,0,1,6,0,0,23,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105444,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144577',1144577,-127.875000,6.779816,-22.488760,0.061792,23,0,0,0,1,6,0,0,23,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105172,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144585',1144585,-91.407356,7.599404,-74.910507,-0.000144,23,0,0,0,1,6,0,0,23,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104900,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144597',1144597,-58.182690,6.881772,-97.795113,-0.000144,23,0,0,0,1,6,0,0,23,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104628,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc3739171',3739171,-272.839386,22.280479,-182.574203,0.684386,170,0,0,0,0,6,0,0,219,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104362,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc3739176',3739176,-271.384399,22.233410,-181.710205,-1.531409,170,0,0,0,0,6,0,0,219,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104090,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc3739178',3739178,-270.221985,22.171329,-172.442307,-0.000048,170,0,0,0,1,6,0,0,219,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103818,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc3739189',3739189,-286.671295,22.598570,-178.942596,-0.000048,170,0,0,0,1,6,0,0,219,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103546,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc3739195',3739195,-285.084290,23.636169,-193.682800,-0.000048,170,0,0,0,1,6,0,0,219,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103274,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc3739197',3739197,-302.441498,24.263420,-202.146301,-0.000048,170,0,0,0,0,6,0,0,219,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103002,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc3739198',3739198,-301.991302,24.106640,-200.335693,-0.328499,170,0,0,0,0,6,0,0,219,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102730,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc3739200',3739200,-307.179413,23.056339,-191.149796,-0.000048,170,0,0,0,1,6,0,0,219,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102458,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144694',1144694,-208.087296,9.353733,-141.039200,-0.000240,302,0,0,0,1,6,0,0,234,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102114,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299820',2299820,-231.464096,9.353733,-146.379807,-0.000240,302,0,0,0,1,6,0,0,234,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101842,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299823',2299823,-98.963509,2.027430,-27.024349,-0.000527,302,0,0,0,1,6,0,0,234,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101570,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144692',1144692,-205.706894,9.018035,-138.750305,-0.000240,302,0,0,0,1,6,0,0,234,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101298,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc2299822',2299822,-119.740601,2.027413,-74.048714,-0.000336,302,0,0,0,1,6,0,0,234,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101026,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc3739223',3739223,-306.875397,9.692472,-137.887207,-0.000240,302,0,0,0,1,6,0,0,234,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100754,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc3739241',3739241,-102.205200,2.027415,-36.144821,-0.000432,302,0,0,0,1,6,0,0,234,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100482,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc3739247',3739247,-101.905197,2.027430,-31.359751,-0.000432,302,0,0,0,1,6,0,0,234,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100210,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144653',1144653,-78.954659,4.479653,-126.207397,-0.000336,33,0,0,0,1,6,0,0,215,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100016,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144598',1144598,-132.427704,9.336102,-104.286499,-0.000336,33,0,0,0,1,6,0,0,215,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99744,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144691',1144691,-129.860199,13.845340,-129.543701,-0.000623,33,0,0,0,1,6,0,0,215,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99472,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144629',1144629,-152.086700,11.093260,-140.581406,-0.000144,33,0,0,0,1,6,0,0,215,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99200,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144547',1144547,-106.571297,7.155371,-106.524399,-0.000240,33,0,0,0,1,6,0,0,215,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98928,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144631',1144631,-151.639099,11.652820,-128.275406,-0.000240,33,0,0,0,1,6,0,0,215,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98656,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1144632',1144632,-167.772995,9.292697,-129.167694,-0.000144,33,0,0,0,1,6,0,0,215,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98384,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140460',1140460,-83.185509,0.030617,55.136490,-0.826107,161,0,0,0,1,6,0,0,228,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98118,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140459',1140459,-87.514954,0.030696,53.398781,-0.825915,161,0,0,0,1,6,0,0,228,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97846,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140462',1140462,-87.013252,0.030600,71.372276,-0.286127,161,0,0,0,1,6,0,0,228,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97574,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc1140461',1140461,-100.175499,1.815776,55.405460,-0.011649,161,0,0,0,1,6,0,0,228,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97302,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc3739298',3739298,-64.469414,0.015212,63.034969,-1.170925,161,0,0,0,1,6,0,0,228,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97030,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc3739305',3739305,-142.689407,0.030637,161.735504,-1.170925,161,0,0,0,1,6,0,0,228,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96758,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc3739308',3739308,-173.166397,0.030539,149.329895,0.666419,161,0,0,0,1,6,0,0,228,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96486,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc3739310',3739310,-183.418106,0.030539,144.544296,1.374871,161,0,0,0,1,6,0,0,228,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96214,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc3917184',3917184,-60.455681,3.894856,-39.952641,-0.000815,23,0,0,0,1,6,0,0,23,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95924,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc4329476',4329476,-188.220093,9.170593,94.010742,1.444121,2187,0,0,0,6,6,0,0,1992,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95676,6,1,0,0,0,30246,4329477,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70575,'LVD_BNPC_PUB_03','f1f3','bnpc4333062',4333062,-159.767395,3.700634,137.279205,-1.297944,2187,0,0,0,6,6,0,0,1992,0,0.000000,23,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94652,6,1,0,0,0,30246,4333061,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1145309',1145309,99.839729,6.729181,-55.405548,-0.000144,4,0,0,0,1,6,0,0,4,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93954,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1145310',1145310,104.112297,7.125916,-59.922218,-0.000144,4,0,0,0,1,6,0,0,4,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93682,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1145311',1145311,111.009300,12.405540,-76.890251,-0.000144,4,0,0,0,1,6,0,0,4,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93410,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1145312',1145312,53.134991,10.581870,-71.978127,-0.000048,4,0,0,0,1,6,0,0,4,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93138,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1145330',1145330,33.785549,7.920002,-96.910088,-0.018840,4,0,0,0,1,6,0,0,4,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92866,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1145331',1145331,30.485310,6.219395,-100.848801,-0.008006,4,0,0,0,1,6,0,0,4,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92594,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1145342',1145342,7.202258,5.720373,-72.371872,-0.000048,4,0,0,0,1,6,0,0,4,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92322,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1145343',1145343,0.456908,5.833508,-87.359497,-0.000048,4,0,0,0,1,6,0,0,4,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92050,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1145344',1145344,9.624027,5.417103,-76.025612,-0.000048,4,0,0,0,1,6,0,0,4,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91778,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1145371',1145371,323.490204,5.164718,-43.671810,-0.000240,4,0,0,0,1,6,0,0,4,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91506,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1145380',1145380,267.748199,4.639788,9.815885,-0.000240,4,0,0,0,1,6,0,0,4,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91234,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1145382',1145382,262.290802,3.068853,19.805670,-0.000336,4,0,0,0,1,6,0,0,4,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90962,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1145702',1145702,284.107697,3.982544,49.240841,-0.000335,4,0,0,0,1,6,0,0,4,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90690,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1145703',1145703,342.275299,7.889330,-41.286991,-0.000336,4,0,0,0,1,6,0,0,4,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90418,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300024',2300024,124.376198,19.407740,-146.837601,-0.000527,84,0,0,0,0,6,0,0,52,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90098,1,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300025',2300025,124.414299,19.130779,-145.398300,-0.118682,86,0,0,0,0,6,0,0,172,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89832,1,0,0,0,0,30067,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300029',2300029,83.634644,9.048584,-90.501282,-0.292659,87,0,0,0,1,6,0,0,83,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89566,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300030',2300030,71.000183,18.234480,-159.014297,1.448819,84,0,0,0,0,6,0,0,52,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89282,1,0,0,0,0,30082,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300031',2300031,71.760773,18.225830,-160.113007,-0.000432,86,0,0,0,0,6,0,0,172,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89016,1,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300041',2300041,179.222198,18.223680,-145.087006,-0.000336,86,0,0,0,1,6,0,0,172,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88744,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300042',2300042,170.907196,17.193430,-151.395401,-0.000240,84,0,0,0,0,6,0,0,52,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88466,1,0,0,0,0,30072,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300044',2300044,121.843201,20.218161,-96.971130,1.153044,86,0,0,0,0,6,0,0,172,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88200,1,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300045',2300045,123.185997,20.370750,-97.032173,-0.405121,84,0,0,0,0,6,0,0,52,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87922,1,0,0,0,0,30066,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300047',2300047,131.347900,20.830030,-112.115501,-0.000048,84,0,0,0,1,6,0,0,52,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87650,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300048',2300048,136.095200,18.936399,-149.187500,-0.000336,84,0,0,0,1,6,0,0,52,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87378,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300050',2300050,99.198853,17.898781,-160.631805,-0.000432,87,0,0,0,1,6,0,0,83,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87118,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300051',2300051,171.717804,17.307770,-150.139297,-1.078472,87,0,0,0,0,6,0,0,83,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86846,1,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300068',2300068,440.817810,-1.144474,-14.663970,-0.000336,81,0,0,0,1,6,0,0,139,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86520,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300092',2300092,356.160797,2.687235,2.700800,-0.913689,81,0,0,0,0,6,0,0,139,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86248,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300098',2300098,387.472290,-0.900329,20.340231,-0.928696,81,0,0,0,0,6,0,0,139,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85976,1,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300103',2300103,403.433197,-2.121051,16.250811,-1.205775,81,0,0,0,1,6,0,0,139,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85704,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300115',2300115,389.150787,4.287738,-36.392811,-0.000719,81,0,0,0,1,6,0,0,139,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85432,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300222',2300222,158.947800,16.443180,-139.791306,-0.000000,59,0,0,0,1,6,0,0,56,0,0.000000,27,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85256,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300223',2300223,162.681396,16.443199,-145.830505,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,27,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84984,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300229',2300229,47.617500,4.166452,66.536598,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84712,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300236',2300236,296.403412,-0.256715,-3.540742,-0.000336,59,0,0,0,1,6,0,0,56,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84440,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300237',2300237,307.939301,-0.256714,-0.769719,-0.000240,59,0,0,0,1,6,0,0,56,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84168,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300241',2300241,306.026306,-0.256723,1.577364,-0.000527,59,0,0,0,1,6,0,0,56,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83896,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2308817',2308817,73.624763,7.705750,-111.894501,1.158029,84,0,0,0,0,6,0,0,52,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83570,1,0,0,0,0,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2308818',2308818,74.906487,7.766785,-112.382797,-0.596968,86,0,0,0,0,6,0,0,172,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83304,1,0,0,0,0,30074,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2308819',2308819,68.253563,7.766795,-107.438797,-0.000432,87,0,0,0,0,6,0,0,83,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83038,1,0,0,0,0,30081,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2308820',2308820,72.922729,7.614197,-102.708603,-0.000144,87,0,0,0,1,6,0,0,83,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82766,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2308822',2308822,80.979607,7.614197,-109.636101,-0.000144,86,0,0,0,1,6,0,0,172,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82488,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2310066',2310066,447.442291,0.685165,-106.462196,0.446347,81,0,0,0,0,6,0,0,139,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82168,1,0,0,0,5,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2310072',2310072,447.196014,-0.473083,-64.896667,1.381275,81,0,0,0,0,6,0,0,139,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81896,1,0,0,0,5,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2313233',2313233,320.515686,2.215992,-18.509239,-0.000240,52,0,0,0,0,6,0,0,50,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81726,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2313234',2313234,320.698792,2.227228,-15.091220,-0.573622,52,0,0,0,0,6,0,0,50,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81454,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2313235',2313235,318.658691,2.299638,-15.389510,0.981432,52,0,0,0,0,6,0,0,50,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81182,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2313237',2313237,303.089905,1.571632,-19.974110,-0.000336,52,0,0,0,1,6,0,0,50,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80910,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2313238',2313238,331.471710,1.907331,-17.807329,-0.000144,52,0,0,0,1,6,0,0,50,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80638,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2320820',2320820,241.483994,17.276871,-145.913101,-0.000240,4,0,0,0,1,6,0,0,4,0,0.000000,26,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80354,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2320821',2320821,252.963196,12.221980,-153.075394,-0.000144,4,0,0,0,1,6,0,0,4,0,0.000000,26,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80082,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2320822',2320822,246.929703,9.238781,-175.852005,-0.000144,4,0,0,0,1,6,0,0,4,0,0.000000,26,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79810,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2320826',2320826,292.604004,10.691710,-162.803802,-0.000240,4,0,0,0,1,6,0,0,4,0,0.000000,26,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79538,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2320827',2320827,290.235687,9.507468,-185.479797,-0.000240,4,0,0,0,1,6,0,0,4,0,0.000000,26,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79266,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2320828',2320828,295.598389,11.637060,-160.074707,-0.000240,4,0,0,0,1,6,0,0,4,0,0.000000,26,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78994,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2320830',2320830,279.377411,8.641194,-170.115997,-0.000336,4,0,0,0,1,6,0,0,4,0,0.000000,26,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78722,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2320832',2320832,250.518402,10.279540,-169.884796,-0.000240,4,0,0,0,1,6,0,0,4,0,0.000000,26,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78450,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2763397',2763397,318.018890,0.478852,12.307590,-1.470643,52,0,0,0,0,6,0,0,50,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78190,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2763398',2763398,317.199188,0.290855,13.417520,0.167059,52,0,0,0,0,6,0,0,50,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77918,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2763399',2763399,313.945190,0.195134,8.234367,-0.882320,52,0,0,0,0,6,0,0,50,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77646,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2763400',2763400,289.082001,0.747620,16.617001,-0.000144,52,0,0,0,1,6,0,0,50,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77374,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2763402',2763402,292.225494,0.411926,13.809330,0.235758,52,0,0,0,0,6,0,0,50,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77102,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300067',2300067,435.940704,-0.982693,5.487583,0.255972,311,0,0,0,0,6,0,0,169,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76704,1,0,0,0,0,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300074',2300074,441.568298,0.782855,-28.634399,-0.000240,311,0,0,0,1,6,0,0,169,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76432,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300095',2300095,366.384308,1.052825,12.741240,0.331537,311,0,0,0,1,6,0,0,169,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76160,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300099',2300099,387.075500,-1.022401,21.408360,-0.271998,311,0,0,0,0,6,0,0,169,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75888,1,0,0,0,0,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300084',2300084,360.969208,1.840043,-6.628087,-1.370632,311,0,0,0,1,6,0,0,169,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75616,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300105',2300105,435.723999,-1.106398,3.907724,0.837710,311,0,0,0,0,6,0,0,169,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75344,1,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2310073',2310073,448.172607,-0.473083,-65.140808,-0.389493,311,0,0,0,0,6,0,0,169,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75072,1,0,0,0,5,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300080',2300080,399.968506,4.262952,-41.852612,-0.371539,311,0,0,0,0,6,0,0,169,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74800,1,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1144793',1144793,142.320801,4.196184,25.833481,-0.000240,159,0,0,0,1,6,0,0,226,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74660,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1144790',1144790,42.343739,4.165666,68.558739,-0.000144,159,0,0,0,1,6,0,0,226,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74388,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1144800',1144800,70.561348,4.166210,66.426353,-0.000048,159,0,0,0,1,6,0,0,226,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74116,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc1144799',1144799,40.001209,4.166452,71.521370,-0.000048,159,0,0,0,1,6,0,0,226,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73844,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2299954',2299954,105.180397,4.165666,50.461540,-0.001870,159,0,0,0,1,6,0,0,226,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73572,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2299953',2299953,102.866203,4.166452,53.437038,-0.001678,159,0,0,0,1,6,0,0,226,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73300,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc3739417',3739417,151.785294,4.236084,20.237249,-0.000240,159,0,0,0,1,6,0,0,226,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73028,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc3739423',3739423,152.085297,4.236084,15.201380,-0.000240,159,0,0,0,1,6,0,0,226,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72756,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300077',2300077,426.413208,-0.717224,-50.309021,-0.779418,79,0,0,0,0,6,0,0,140,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72346,1,0,0,0,5,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300104',2300104,436.545288,-1.022401,4.501364,-1.505674,79,0,0,0,0,6,0,0,140,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72074,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2310068',2310068,439.536102,-0.228932,-82.414017,-0.000432,79,0,0,0,0,6,0,0,140,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71802,1,0,0,0,5,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300072',2300072,438.040710,-0.412041,-42.984711,-0.297261,79,0,0,0,0,6,0,0,140,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71530,1,0,0,0,5,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc2300091',2300091,376.814392,4.773165,-33.204460,-1.419014,79,0,0,0,0,6,0,0,140,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71258,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc3878991',3878991,400.476288,4.241707,-40.787842,-0.885592,79,0,0,0,0,6,0,0,140,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70986,1,0,0,0,0,30082,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc3879006',3879006,442.368011,0.843470,-27.738720,-0.779269,79,0,0,0,1,6,0,0,140,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70714,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc3879018',3879018,447.624695,0.635267,-105.764603,-0.475541,79,0,0,0,0,6,0,0,140,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70442,1,0,0,0,5,30074,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc3879051',3879051,431.967712,-0.747742,-65.507080,-0.000623,311,0,0,0,1,6,0,0,169,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70176,1,0,0,0,5,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc3879065',3879065,356.771088,2.792354,1.937849,-0.004794,79,0,0,0,0,6,0,0,140,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69898,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc3884509',3884509,125.859001,4.166452,44.953560,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69752,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70785,'LVD_BNPC_PUB_04','f1f3','bnpc3939726',3939726,436.760712,0.574082,-105.544098,-0.000623,311,0,0,0,1,6,0,0,169,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69360,1,0,0,0,5,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc1145556',1145556,396.724701,3.565628,167.813797,1.045093,16,0,0,0,1,6,0,0,15,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68950,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc1145558',1145558,440.238007,1.174898,187.579102,-0.000432,16,0,0,0,1,6,0,0,15,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68678,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc1145559',1145559,499.565002,1.571632,166.216507,-0.000527,16,0,0,0,1,6,0,0,15,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68406,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc1145562',1145562,455.435913,3.250124,198.748703,-0.000432,16,0,0,0,1,6,0,0,15,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68134,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc1145578',1145578,484.519714,3.768931,199.908401,-0.000240,16,0,0,0,1,6,0,0,15,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67862,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc1145579',1145579,528.374084,7.553168,195.361206,-0.000336,16,0,0,0,1,6,0,0,15,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67590,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc1145581',1145581,509.391815,4.440328,204.577698,-0.000336,16,0,0,0,1,6,0,0,15,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67318,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc1145595',1145595,513.939880,14.256400,137.989304,-0.000240,8,0,0,0,1,6,0,0,8,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67052,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc1145607',1145607,549.889282,11.612070,204.730194,-0.000336,16,0,0,0,1,6,0,0,15,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66774,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc1145610',1145610,538.797913,21.846140,123.039803,-0.000240,8,0,0,0,1,6,0,0,8,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66508,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc1145612',1145612,542.038208,13.673390,165.126495,-0.000048,8,0,0,0,1,6,0,0,8,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66236,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc1145613',1145613,504.953491,14.256390,115.266296,-0.000240,8,0,0,0,1,6,0,0,8,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65964,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc1145625',1145625,557.183105,21.846149,129.558304,0.014237,8,0,0,0,1,6,0,0,8,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65692,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc1145628',1145628,553.643005,21.683020,99.412483,-0.000048,8,0,0,0,1,6,0,0,8,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65420,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc1145631',1145631,575.402405,21.683020,111.314499,-0.000048,8,0,0,0,1,6,0,0,8,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65148,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300119',2300119,397.360107,0.381429,115.953300,-0.000240,16,0,0,0,1,6,0,0,15,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64870,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300123',2300123,371.755493,-3.015678,139.708099,-0.000336,16,0,0,0,1,6,0,0,15,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64598,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300126',2300126,360.794006,0.882443,141.705902,-0.000432,16,0,0,0,1,6,0,0,15,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64326,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300129',2300129,415.670990,3.677377,157.396805,-0.000144,16,0,0,0,1,6,0,0,15,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64054,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300135',2300135,458.854004,3.829967,201.098602,-0.000432,16,0,0,0,1,6,0,0,15,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63782,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300137',2300137,476.584991,0.595055,149.950302,-0.000336,16,0,0,0,1,6,0,0,15,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63510,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300147',2300147,552.727478,9.658914,216.571198,-0.000240,16,0,0,0,1,6,0,0,15,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63238,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300183',2300183,383.639801,-2.278431,92.591690,-0.000000,130,0,0,0,1,6,0,0,112,0,0.000000,45,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62870,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300184',2300184,382.528412,-2.487267,93.400421,-0.000048,130,0,0,0,1,6,0,0,112,0,0.000000,45,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62598,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300186',2300186,375.396393,-4.129155,77.561340,-0.000048,130,0,0,0,1,6,0,0,112,0,0.000000,45,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62326,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300187',2300187,364.309113,-4.655180,71.455116,-0.000048,130,0,0,0,1,6,0,0,112,0,0.000000,45,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62054,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300189',2300189,365.917114,-5.088186,65.510399,-0.000048,130,0,0,0,1,6,0,0,112,0,0.000000,45,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61782,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300192',2300192,411.093201,3.616341,129.442200,-0.000144,130,0,0,0,1,6,0,0,112,0,0.000000,45,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61510,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300193',2300193,410.513397,4.074111,156.633804,-0.000144,130,0,0,0,1,6,0,0,112,0,0.000000,45,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61238,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300197',2300197,458.426697,0.625573,163.103607,-0.000240,130,0,0,0,1,6,0,0,112,0,0.000000,45,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60966,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300199',2300199,458.792908,0.625573,164.843201,-0.000240,130,0,0,0,1,6,0,0,112,0,0.000000,45,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60694,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300201',2300201,504.417389,3.433233,169.054596,-0.000048,130,0,0,0,1,6,0,0,112,0,0.000000,46,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60422,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300202',2300202,512.107971,5.050689,209.033295,-0.000048,130,0,0,0,1,6,0,0,112,0,0.000000,46,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60150,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300204',2300204,495.841888,5.844158,182.604706,-0.000048,130,0,0,0,1,6,0,0,112,0,0.000000,46,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59878,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300205',2300205,544.090881,10.452380,201.525803,-0.000048,130,0,0,0,1,6,0,0,112,0,0.000000,46,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59606,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300207',2300207,540.215088,16.250811,152.025604,-0.000144,130,0,0,0,1,6,0,0,112,0,0.000000,47,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59334,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300211',2300211,525.902100,19.058470,105.821297,-0.000144,130,0,0,0,1,6,0,0,112,0,0.000000,47,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59062,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300212',2300212,526.207275,19.119511,106.095901,-0.000144,130,0,0,0,1,6,0,0,112,0,0.000000,47,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58790,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300214',2300214,570.489014,22.507010,119.554398,-0.000144,130,0,0,0,1,6,0,0,112,0,0.000000,47,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58518,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300215',2300215,558.794128,21.835609,103.813599,-0.000048,130,0,0,0,1,6,0,0,112,0,0.000000,46,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58246,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300217',2300217,592.919678,25.558809,131.029205,-0.000144,130,0,0,0,1,6,0,0,112,0,0.000000,47,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57974,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2300218',2300218,595.269714,25.497780,132.829697,-0.000144,130,0,0,0,1,6,0,0,112,0,0.000000,47,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57702,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2310077',2310077,606.902283,21.846050,94.322968,-0.000000,59,0,0,0,1,6,0,0,56,0,0.000000,50,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57508,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2310079',2310079,628.601990,21.846140,96.549973,-0.000000,59,0,0,0,1,6,0,0,56,0,0.000000,50,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57236,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2310080',2310080,634.544983,21.846140,87.894997,-0.000000,59,0,0,0,1,6,0,0,56,0,0.000000,50,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56964,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2310081',2310081,632.357971,21.846130,64.279701,-0.000000,59,0,0,0,1,6,0,0,56,0,0.000000,50,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56692,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2310082',2310082,626.666382,21.845909,61.769680,-0.000000,59,0,0,0,1,6,0,0,56,0,0.000000,50,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56420,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2310083',2310083,607.055603,21.845909,87.877663,-0.000000,59,0,0,0,1,6,0,0,56,0,0.000000,50,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56148,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2310084',2310084,607.202271,21.845900,69.260597,-0.000000,59,0,0,0,1,6,0,0,56,0,0.000000,50,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55876,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2310086',2310086,647.131470,21.845940,74.024300,-0.000000,59,0,0,0,1,6,0,0,56,0,0.000000,50,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55604,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2310087',2310087,631.244385,21.845980,119.611702,-0.000000,59,0,0,0,1,6,0,0,56,0,0.000000,50,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55332,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (70793,'LVD_BNPC_PUB_05','f1f3','bnpc2310088',2310088,589.967102,21.846029,111.639000,-0.000000,59,0,0,0,1,6,0,0,56,0,0.000000,50,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55060,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310106',2310106,62.454399,22.173260,-183.847000,-0.000000,86,0,0,0,1,6,0,0,82,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54504,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310110',2310110,11.996420,22.107401,-194.509094,-0.000000,86,0,0,0,1,6,0,0,82,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54232,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310121',2310121,43.552151,31.746559,-242.757904,-0.000000,86,0,0,0,1,6,0,0,82,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53960,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310129',2310129,80.701881,31.247450,-236.730392,-0.000000,77,0,0,0,1,6,0,0,74,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53766,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310142',2310142,1.488476,42.615070,-238.873703,-0.000000,85,0,0,0,1,6,0,0,81,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53500,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310155',2310155,14.401670,41.170448,-236.977097,-0.000000,88,0,0,0,1,6,0,0,84,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53234,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310157',2310157,13.745920,41.247570,-234.937393,-0.000000,84,0,0,0,1,6,0,0,52,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52866,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310158',2310158,26.641451,40.972401,-238.464600,-0.000000,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52606,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310159',2310159,23.036869,41.356541,-231.651596,-0.000000,88,0,0,0,1,6,0,0,84,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52418,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310160',2310160,34.532631,34.329281,-248.540298,-0.000000,88,0,0,0,1,6,0,0,84,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52146,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310161',2310161,18.166571,40.736420,-243.886398,-0.000000,84,0,0,0,1,6,0,0,52,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51778,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310162',2310162,36.185360,34.339809,-251.152893,-0.000000,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51518,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310163',2310163,32.022099,35.938412,-251.996597,-0.000000,84,0,0,0,1,6,0,0,52,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51234,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310164',2310164,2.683093,41.323040,-231.439301,-0.000000,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50974,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310165',2310165,2.481253,41.289459,-247.178207,-0.000000,84,0,0,0,1,6,0,0,52,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50690,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310166',2310166,3.023275,41.244370,-229.524307,-0.000000,88,0,0,0,1,6,0,0,84,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50514,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310168',2310168,26.339149,41.310089,-228.982193,-0.000000,84,0,0,0,1,6,0,0,52,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50146,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310169',2310169,43.691368,23.807100,-197.954498,-0.000000,87,0,0,0,1,6,0,0,83,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49886,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310170',2310170,47.955181,23.796989,-201.803207,-0.000000,87,0,0,0,1,6,0,0,83,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49614,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310171',2310171,27.500080,23.900030,-176.426407,-0.000000,87,0,0,0,1,6,0,0,83,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49342,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310173',2310173,8.713860,24.977810,-183.468903,-0.000000,87,0,0,0,1,6,0,0,83,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49070,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310174',2310174,25.766741,25.453140,-197.692993,-0.000000,87,0,0,0,1,6,0,0,83,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48798,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310175',2310175,21.326250,25.217710,-213.513397,-0.000000,87,0,0,0,1,6,0,0,83,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48526,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310176',2310176,56.209671,30.207701,-208.221603,-0.000000,87,0,0,0,1,6,0,0,83,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48254,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310177',2310177,50.222309,30.207741,-208.816299,-0.000000,87,0,0,0,1,6,0,0,83,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47982,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310178',2310178,55.211819,31.096901,-223.299698,-0.000000,87,0,0,0,1,6,0,0,83,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47710,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310179',2310179,44.478668,30.061560,-213.305893,-0.000000,84,0,0,0,1,6,0,0,52,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47426,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310180',2310180,27.629330,25.414169,-203.556198,-0.000000,84,0,0,0,1,6,0,0,52,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47154,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310181',2310181,11.799320,24.994440,-208.841293,-0.000000,84,0,0,0,1,6,0,0,52,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46882,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310182',2310182,57.392250,31.250860,-237.443100,-0.000000,84,0,0,0,1,6,0,0,52,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46610,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310183',2310183,56.381592,31.081989,-222.324799,-0.000000,84,0,0,0,1,6,0,0,52,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46338,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310184',2310184,41.846550,31.327400,-233.639603,-0.000000,84,0,0,0,1,6,0,0,52,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46066,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310185',2310185,49.764519,31.322470,-239.490097,-0.000000,53,0,0,0,1,6,0,0,173,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45896,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310186',2310186,45.229160,30.849199,-225.986694,-0.000000,53,0,0,0,1,6,0,0,173,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45624,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310187',2310187,54.603119,30.526270,-215.684494,-0.000000,53,0,0,0,1,6,0,0,173,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45352,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310188',2310188,26.807720,25.469440,-208.795700,-0.000000,53,0,0,0,1,6,0,0,173,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45080,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310191',2310191,53.416069,23.647209,-198.466995,-0.000000,53,0,0,0,1,6,0,0,173,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44808,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310192',2310192,16.458969,23.952860,-182.981705,-0.000000,53,0,0,0,1,6,0,0,173,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44536,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310193',2310193,34.354580,23.728510,-188.906204,-0.000000,53,0,0,0,1,6,0,0,173,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44264,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310194',2310194,24.826321,38.422710,-248.892502,-0.000000,53,0,0,0,1,6,0,0,173,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43992,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310195',2310195,19.778610,41.225639,-235.194595,-0.000000,53,0,0,0,1,6,0,0,173,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43720,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77471,'LVD_BNPC_sanzoku','f1f3','bnpc2310196',2310196,10.671480,41.230179,-245.656906,-0.000000,53,0,0,0,1,6,0,0,173,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43448,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98332,'LVD_easter_2014','f1f3','bnpc4621322',4621322,28.233730,25.315451,115.697998,0.329784,2772,0,0,0,1,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28790,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98332,'LVD_easter_2014','f1f3','bnpc4621339',4621339,-337.105499,20.119471,615.520508,0.842040,2772,0,0,0,0,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28518,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83944,'LVD_guard_01','f1f3','bnpc3870245',3870245,-201.828995,8.309389,-77.948196,-0.898308,584,0,0,0,0,6,0,0,454,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27764,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83944,'LVD_guard_01','f1f3','bnpc3870249',3870249,-144.314499,6.941079,-45.049019,1.439642,585,0,0,0,0,6,0,0,454,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27498,5,0,0,0,0,30052,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83944,'LVD_guard_01','f1f3','bnpc3870258',3870258,-169.371506,8.963833,-15.339670,-0.555684,586,0,0,0,0,6,0,0,454,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27232,5,0,0,0,0,30054,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83944,'LVD_guard_01','f1f3','bnpc3870312',3870312,213.284805,9.756709,-77.238258,0.261277,582,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26966,5,0,0,0,0,30054,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83944,'LVD_guard_01','f1f3','bnpc3870333',3870333,150.590805,8.698524,-47.601891,-1.538778,580,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26700,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83944,'LVD_guard_01','f1f3','bnpc3870347',3870347,213.854004,6.490500,-15.706390,0.861094,583,0,0,0,0,6,0,0,453,0,0.000000,36,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26434,5,0,0,0,0,30054,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83944,'LVD_guard_01','f1f3','bnpc3870372',3870372,-149.487900,0.750592,229.198502,-0.600480,580,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26156,5,0,0,0,0,30052,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83944,'LVD_guard_01','f1f3','bnpc3870375',3870375,-161.511307,0.485998,346.191010,0.947570,583,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25890,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83944,'LVD_guard_01','f1f3','bnpc3870382',3870382,-231.008896,0.795779,399.749115,-0.158017,582,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25606,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83944,'LVD_guard_01','f1f3','bnpc3870387',3870387,-228.300903,0.984585,517.848816,-0.306101,582,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25334,5,0,0,0,0,30055,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84025,'FATE_001','f1f3','bnpc3877985',3877985,-68.529800,3.233115,70.437370,-0.966733,491,0,0,0,0,6,0,0,514,0,0.000000,23,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,138108,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84027,'FATE_006','f1f3','bnpc3920873',3920873,232.134003,6.291887,-5.943449,-0.275356,469,0,0,0,0,6,0,0,526,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,135018,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3816973',3816973,12.631920,25.006821,-205.719101,0.708799,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133332,1,0,0,0,6,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3817006',3817006,19.794350,24.847980,-204.000702,-1.039012,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133060,1,0,0,0,6,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3817012',3817012,29.328150,25.645491,-207.061295,-1.039012,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132788,1,0,0,0,6,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3817015',3817015,36.453739,28.244381,-213.885696,-1.039048,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132516,1,0,0,0,6,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3817017',3817017,50.397610,30.207729,-208.434204,0.096315,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132244,1,0,0,0,6,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3817018',3817018,56.785709,30.207661,-208.275406,0.096315,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131972,1,0,0,0,6,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3817033',3817033,56.535431,30.916229,-221.368103,0.096315,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131700,1,0,0,0,6,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3817035',3817035,45.859730,30.743271,-222.838104,0.096315,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131428,1,0,0,0,6,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3817037',3817037,54.036800,31.073500,-234.880997,-0.429344,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131156,1,0,0,0,6,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3817040',3817040,42.001759,31.391460,-235.440704,0.854095,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130884,1,0,0,0,6,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3817053',3817053,35.971031,34.586891,-251.693604,0.854095,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130612,1,0,0,0,7,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3817055',3817055,28.998779,36.773312,-249.759003,1.323498,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130340,1,0,0,0,7,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3817056',3817056,28.024799,40.865002,-238.131302,1.323498,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130068,1,0,0,0,7,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3817057',3817057,18.735229,40.607948,-245.463303,1.323498,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129796,1,0,0,0,7,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3817058',3817058,13.524540,41.242950,-233.999405,1.323498,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129524,1,0,0,0,7,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3817059',3817059,9.199474,41.281010,-245.031494,1.323498,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129252,1,0,0,0,7,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3818940',3818940,27.481480,23.663370,-187.323898,1.297657,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128980,1,0,0,0,7,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3818941',3818941,57.140160,23.308849,-193.014893,0.960085,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128708,1,0,0,0,2,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3818942',3818942,37.482479,23.873260,-191.221893,0.960085,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128436,1,0,0,0,2,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3818943',3818943,48.519230,23.745119,-197.235901,0.960085,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128164,1,0,0,0,2,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3818944',3818944,9.244871,24.612450,-189.615097,1.338020,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127892,1,0,0,0,2,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3818945',3818945,12.529290,24.446180,-182.977097,0.784459,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127620,1,0,0,0,2,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3818946',3818946,21.641340,23.949221,-178.489594,0.784459,87,0,0,0,1,6,0,0,83,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127348,1,0,0,0,2,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3689065',3689065,59.124851,22.801670,-188.181793,0.616038,611,0,0,0,0,0,0,0,523,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,127082,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3689066',3689066,13.141010,24.606560,-195.023300,-0.000000,611,0,0,0,0,0,0,0,523,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,126810,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc3689067',3689067,41.886509,31.977510,-243.732101,0.715373,611,0,0,0,0,0,0,0,523,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,126538,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82141,'FATE_007','f1f3','bnpc4329035',4329035,103.565697,20.375870,-158.808502,-1.212048,1434,0,0,0,1,6,0,0,2163,0,0.000000,32,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,125648,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82431,'FATE_008','f1f3','bnpc3688685',3688685,1.518609,42.615089,-238.865204,1.555671,85,0,0,0,0,0,0,0,81,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,125270,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82431,'FATE_008','f1f3','bnpc3688703',3688703,2.533371,42.615070,-236.771698,1.416037,86,0,0,0,0,0,0,0,82,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,124932,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82431,'FATE_008','f1f3','bnpc3688707',3688707,2.594880,42.615070,-241.067703,1.461371,86,0,0,0,0,0,0,0,82,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,124660,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82431,'FATE_008','f1f3','bnpc3884751',3884751,103.160400,32.067410,-248.179596,-1.182406,77,0,0,0,0,6,0,0,74,0,0.000000,33,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,123458,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82432,'FATE_009','f1f3','bnpc3818807',3818807,2.211746,42.689011,-238.837906,1.496467,461,0,0,0,0,0,0,0,453,0,0.000000,30,0,240,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121876,1,0,0,0,3,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82432,'FATE_009','f1f3','bnpc3896303',3896303,14.811250,24.981310,-207.476395,-0.441872,462,0,0,0,0,0,0,0,453,0,0.000000,30,0,240,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121610,1,0,0,0,3,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82432,'FATE_009','f1f3','bnpc3896305',3896305,53.375420,30.207760,-208.916199,0.884010,466,0,0,0,0,0,0,0,453,0,0.000000,30,0,240,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121344,1,0,0,0,3,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82432,'FATE_009','f1f3','bnpc3896306',3896306,48.813278,31.425501,-242.206406,0.156244,467,0,0,0,0,0,0,0,453,0,0.000000,30,0,240,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121078,1,0,0,0,3,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82432,'FATE_009','f1f3','bnpc3896307',3896307,22.355730,24.369480,-192.496994,0.884010,468,0,0,0,0,0,0,0,453,0,0.000000,30,0,240,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120812,1,0,0,0,3,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82432,'FATE_009','f1f3','bnpc3688731',3688731,59.138840,22.807489,-188.251297,0.616038,617,0,0,0,0,0,0,0,523,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,119406,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82432,'FATE_009','f1f3','bnpc3688733',3688733,13.112940,24.609900,-195.101196,-0.000000,617,0,0,0,0,0,0,0,523,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,119134,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82432,'FATE_009','f1f3','bnpc3688734',3688734,41.901890,31.933990,-243.724396,0.715373,617,0,0,0,0,0,0,0,523,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,118862,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82432,'FATE_009','f1f3','bnpc4329032',4329032,26.317160,41.346611,-224.325302,-0.283469,2246,0,0,0,0,6,0,0,2164,0,0.000000,32,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,118596,1,0,0,0,3,30212,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84719,'FATE_010','f1f3','bnpc3942617',3942617,108.807899,20.584949,-163.829803,-1.499606,86,0,0,0,1,6,0,0,172,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,118200,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84719,'FATE_010','f1f3','bnpc3942648',3942648,109.532303,20.294680,-162.678207,-0.948962,86,0,0,0,1,6,0,0,172,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,117928,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84044,'FATE_012','f1f3','bnpc3879007',3879007,443.945190,0.239281,-101.230003,-0.570950,493,0,0,0,0,6,0,0,515,0,0.000000,29,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,117082,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84044,'FATE_012','f1f3','bnpc3895741',3895741,441.896606,-0.294009,-78.647697,-1.090016,311,0,0,0,1,6,0,0,169,0,0.000000,29,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,116816,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84044,'FATE_012','f1f3','bnpc3940313',3940313,439.431610,-0.231760,-81.223053,-0.591661,615,0,0,0,0,6,0,0,532,0,0.000000,29,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,116238,1,0,0,0,0,30066,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84044,'FATE_012','f1f3','bnpc3940385',3940385,440.126190,-0.397610,-80.348007,-0.234471,615,0,0,0,0,6,0,0,532,0,0.000000,29,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,115966,1,0,0,0,0,30066,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84044,'FATE_012','f1f3','bnpc3940386',3940386,440.779694,-0.300901,-81.199997,0.954398,615,0,0,0,0,6,0,0,532,0,0.000000,29,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,115694,1,0,0,0,0,30066,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83844,'FATE_014','f1f3','bnpc3862724',3862724,-178.207901,9.426387,-72.126648,-1.215731,494,0,0,0,1,6,0,0,450,0,0.000000,22,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,114944,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83844,'FATE_014','f1f3','bnpc3895687',3895687,-200.233398,9.115219,-47.034760,0.958970,465,0,0,0,0,6,0,0,529,19,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,114366,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83850,'FATE_015','f1f3','bnpc3888811',3888811,-284.577301,11.692420,-130.644501,-0.000000,448,0,0,0,1,6,0,0,527,21,0.000000,21,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,112284,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83914,'FATE_016','f1f3','bnpc3891751',3891751,371.134796,0.874829,21.867910,1.188385,449,0,0,0,0,6,0,0,526,0,0.000000,30,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,111198,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83916,'FATE_017','f1f3','bnpc3872615',3872615,-330.825500,11.476480,605.115784,1.570451,495,0,0,0,1,6,0,0,451,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,109432,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83917,'FATE_018','f1f3','bnpc3888819',3888819,-66.617661,4.671806,-60.280788,-0.523599,450,0,0,0,0,6,0,0,526,0,0.000000,21,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,107894,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83918,'FATE_019','f1f3','bnpc3895909',3895909,-278.342285,21.627340,44.028648,-0.000000,451,0,0,0,1,6,0,0,530,0,0.000000,27,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,106128,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83919,'FATE_020','f1f3','bnpc3891765',3891765,291.402588,6.400964,-25.245630,0.825430,452,0,0,0,0,6,0,0,520,0,0.000000,30,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,105366,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84574,'FATE_022','f1f3','bnpc3922918',3922918,-327.414398,-0.100804,449.782593,1.187684,579,0,0,0,1,3,0,0,558,0,0.000000,33,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,103628,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85948,'FATE_023','f1f3','bnpc4057527',4057527,-175.604401,9.461815,-88.074257,-0.771146,873,0,0,0,3,0,0,0,1,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,101906,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85948,'FATE_023','f1f3','bnpc4057528',4057528,-166.568604,9.465734,-94.179337,0.787345,873,0,0,0,3,0,0,0,1,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,101634,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85948,'FATE_023','f1f3','bnpc4057529',4057529,-156.072205,9.467051,-83.786682,0.767457,873,0,0,0,3,0,0,0,1,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,101362,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85948,'FATE_023','f1f3','bnpc4057586',4057586,-189.190704,8.458161,-70.337448,-0.852256,874,0,0,0,1,3,0,0,1,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,101096,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85948,'FATE_023','f1f3','bnpc4057587',4057587,-171.780304,9.469155,-69.454018,0.612353,874,0,0,0,1,3,0,0,1,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,100824,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85948,'FATE_023','f1f3','bnpc4057588',4057588,-181.380493,9.869215,-78.782127,-0.677643,874,0,0,0,1,3,0,0,1,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,100552,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85948,'FATE_023','f1f3','bnpc4064868',4064868,-125.189400,3.749115,-55.605999,-1.453482,875,0,0,0,0,8,0,0,1,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,98726,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93987,'FATE_027','f1f3','bnpc4328349',4328349,-248.172607,-0.000000,324.703491,0.234805,34,0,0,0,0,6,0,0,34,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,95392,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93987,'FATE_027','f1f3','bnpc4328362',4328362,-252.146500,0.000000,345.573212,-0.485483,87,0,0,0,1,6,0,0,83,0,0.000000,27,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,94712,1,0,0,0,0,30078,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93987,'FATE_027','f1f3','bnpc4328363',4328363,-213.191803,-0.023275,316.073914,-1.402512,87,0,0,0,1,6,0,0,83,0,0.000000,27,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,94440,1,0,0,0,0,30078,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93988,'FATE_029','f1f3','bnpc4328456',4328456,534.106323,7.964804,202.495605,-0.000000,2123,0,0,0,1,6,0,0,1667,0,0.000000,46,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,91742,1,0,0,0,0,30146,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93988,'FATE_029','f1f3','bnpc4328459',4328459,496.880096,3.889092,195.486893,1.568236,67,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,90228,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96965,'FATE_FFXI_01','f1f3','bnpc4515232',4515232,-298.248108,0.234794,438.872498,1.330196,2439,0,0,0,1,6,0,0,2328,0,0.000000,33,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,89094,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96965,'FATE_FFXI_01','f1f3','bnpc4515235',4515235,-298.058899,0.233341,439.074188,-0.000000,2291,0,0,0,0,6,0,0,750,0,0.000000,99,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,88204,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96966,'FATE_FFXI_02','f1f3','bnpc4515238',4515238,-297.838898,0.188128,438.725098,1.243673,2308,0,0,0,1,6,0,0,2327,0,0.000000,33,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,87242,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc2083864',2083864,-86.906883,1.066901,-151.757095,-0.000048,144,0,0,0,0,0,0,0,121,0,0.000000,22,1,0,0,0,1,0,200,100,1,1,0,0,0,0.000000,1.000000,83628,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc2083866',2083866,-89.127991,1.052825,-152.880203,1.327728,147,0,0,0,0,0,0,0,84,0,0.000000,20,1,0,0,0,1,0,20,20,1,1,0,0,0,0.000000,1.000000,83362,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc2083867',2083867,-96.391281,3.097534,-102.159203,-0.314423,145,0,0,0,0,0,0,0,83,0,0.000000,20,2,0,0,0,10,0,20,20,1,1,0,0,1,0.000000,1.000000,83096,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc2083868',2083868,-98.283401,4.135148,-102.159203,1.102326,145,0,0,0,0,0,0,0,83,0,0.000000,20,2,0,0,0,10,0,20,20,1,1,0,0,1,0.000000,1.000000,82824,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc2083870',2083870,-90.301262,0.713917,-121.844498,-0.000144,145,0,0,0,0,0,0,0,83,0,0.000000,20,2,0,0,0,14,0,20,20,1,1,0,0,1,0.000000,1.000000,82552,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc2083876',2083876,-90.531799,0.747620,-129.259201,0.515282,145,0,0,0,2,0,0,0,83,0,0.000000,20,2,0,0,0,15,0,20,20,1,1,0,0,1,0.000000,1.000000,82280,1,0,0,0,0,0,3819433,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3804017',3804017,-86.381348,1.052795,-149.645294,-0.955013,148,0,0,0,0,6,0,0,84,0,0.000000,20,1,120,1,0,1,0,20,20,1,1,0,0,0,0.000000,1.000000,81774,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3804018',3804018,-85.404793,1.083313,-153.734695,-0.588243,148,0,0,0,0,6,0,0,84,0,0.000000,20,1,120,1,0,1,0,20,20,1,1,0,0,0,0.000000,1.000000,81502,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3804023',3804023,-64.805107,5.203247,-70.206848,-0.000144,146,0,0,0,2,6,0,0,122,0,0.000000,20,0,120,1,0,3,0,20,20,1,1,0,0,1,0.000000,1.000000,81236,1,0,0,0,0,0,3819354,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3804024',3804024,-65.079773,5.569519,-67.338127,-0.000527,146,0,0,0,2,6,0,0,122,0,0.000000,20,0,120,1,0,3,0,20,20,1,1,0,0,1,0.000000,1.000000,80964,1,0,0,0,0,0,3819354,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3804031',3804031,-71.536293,2.654859,-96.321297,-0.000000,148,0,0,0,0,6,0,0,84,0,0.000000,20,0,120,1,0,5,0,20,20,1,1,0,0,1,0.000000,1.000000,80686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3804032',3804032,-66.939140,5.101246,-107.270897,-0.000048,146,0,0,0,2,6,0,0,122,0,0.000000,20,0,120,1,0,6,0,20,20,1,1,0,0,1,0.000000,1.000000,80420,1,0,0,0,0,0,3819384,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3804049',3804049,-115.425301,7.802363,-108.904099,-0.000144,146,0,0,0,2,6,0,0,122,0,0.000000,20,0,120,1,0,9,0,20,20,1,1,0,0,1,0.000000,1.000000,80148,1,0,0,0,0,0,3819404,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3804050',3804050,-113.472099,7.731640,-109.300903,-0.000144,146,0,0,0,2,6,0,0,122,0,0.000000,20,0,120,1,0,9,0,20,20,1,1,0,0,1,0.000000,1.000000,79876,1,0,0,0,0,0,3819404,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3804079',3804079,-89.677307,1.174927,-132.158401,-0.000527,146,0,0,0,2,6,0,0,122,0,0.000000,20,0,120,1,0,15,0,20,20,1,1,0,0,1,0.000000,1.000000,79604,1,0,0,0,0,0,3819433,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3804020',3804020,-73.228088,3.646851,-70.725647,-0.230820,519,0,0,0,0,6,0,0,52,0,0.000000,20,0,120,1,0,2,0,20,20,1,1,0,0,1,0.000000,1.000000,78722,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3804021',3804021,-74.601440,3.189148,-71.122383,-0.231299,519,0,0,0,0,6,0,0,52,0,0.000000,20,0,120,1,0,2,0,20,20,1,1,0,0,1,0.000000,1.000000,78450,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3804030',3804030,-70.338654,3.512961,-100.049599,-0.000048,595,0,0,0,0,6,0,0,84,0,0.000000,20,0,120,1,0,5,0,20,20,1,1,0,0,1,0.000000,1.000000,77944,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3804053',3804053,-68.986076,4.928617,-109.391998,-0.000048,595,0,0,0,2,6,0,0,84,0,0.000000,20,0,120,1,0,6,0,20,20,1,1,0,0,1,0.000000,1.000000,77672,1,0,0,0,0,0,3819384,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3804069',3804069,-91.134941,0.891884,-121.125198,-0.000144,595,0,0,0,0,6,0,0,84,0,0.000000,20,0,120,1,0,14,0,20,20,1,1,0,0,1,0.000000,1.000000,77400,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3963455',3963455,-100.575203,3.702057,-57.750759,-0.000000,519,0,0,0,1,6,0,0,52,0,0.000000,20,0,120,1,0,1,0,20,20,1,1,0,1,1,0.000000,1.000000,76630,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3963457',3963457,-100.132599,3.675388,-56.976139,-0.000000,147,0,0,0,1,6,0,0,84,0,0.000000,20,0,120,1,0,1,0,20,20,1,1,0,1,1,0.000000,1.000000,76334,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3963458',3963458,-53.456772,9.191311,-100.401497,-0.000000,148,0,0,0,1,6,0,0,84,0,0.000000,20,0,120,1,0,1,0,20,20,1,1,0,1,1,0.000000,1.000000,76074,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3963459',3963459,-53.917011,9.148398,-101.522697,-0.000000,147,0,0,0,1,6,0,0,84,0,0.000000,21,0,120,1,0,1,0,20,20,1,1,0,1,1,0.000000,1.000000,75790,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3963461',3963461,-99.261391,3.612487,-57.246769,-0.000000,147,0,0,0,1,6,0,0,84,0,0.000000,21,0,120,1,0,1,0,20,20,1,1,0,1,1,0.000000,1.000000,75518,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3963463',3963463,-87.705254,1.141049,-160.700607,-0.000000,148,0,0,0,1,6,0,0,84,0,0.000000,21,0,120,1,0,1,0,20,20,1,1,0,1,1,0.000000,1.000000,75258,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3963465',3963465,-85.712822,1.099870,-160.585403,-0.000000,147,0,0,0,1,6,0,0,84,0,0.000000,21,0,120,1,0,1,0,20,20,1,1,0,1,1,0.000000,1.000000,74974,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3963470',3963470,-53.631420,8.937034,-99.012413,-0.000000,145,0,0,0,1,6,0,0,83,0,0.000000,21,0,120,1,0,1,0,20,20,1,1,0,1,1,0.000000,1.000000,74708,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76589,'go006','f1f3','bnpc3963472',3963472,-100.120598,3.661414,-59.239819,-0.000000,145,0,0,0,1,6,0,0,83,0,0.000000,21,0,120,1,0,1,0,20,20,1,1,0,1,1,0.000000,1.000000,74436,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3649732',3649732,168.182800,16.086100,55.906349,1.565745,534,0,0,0,0,6,0,0,466,0,0.000000,24,0,120,1,0,1,0,20,20,0,1,0,1,0,0.000000,1.000000,72038,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3649738',3649738,172.655807,16.098221,65.537453,0.624915,534,0,0,0,0,6,0,0,466,0,0.000000,24,0,120,1,0,1,0,20,20,0,1,0,1,0,0.000000,1.000000,71766,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3726291',3726291,171.016800,15.839880,60.260681,1.047067,479,0,0,0,0,6,0,0,230,0,0.000000,24,0,120,1,0,1,0,0,0,0,1,0,0,0,0.000000,1.000000,71500,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3726304',3726304,141.938400,18.789391,76.529251,1.255870,479,0,0,0,0,6,0,0,230,0,0.000000,24,0,120,1,0,2,0,20,20,0,1,0,0,0,0.000000,1.000000,71228,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3726305',3726305,112.876297,18.209009,98.769127,1.026492,479,0,0,0,0,6,0,0,230,0,0.000000,24,0,120,1,0,3,0,20,20,0,1,0,0,0,0.000000,1.000000,70956,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3726307',3726307,94.602013,22.023550,125.548698,0.692358,479,0,0,0,0,6,0,0,230,0,0.000000,24,0,120,1,0,4,0,20,20,0,1,0,0,0,0.000000,1.000000,70684,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3651313',3651313,138.694199,18.829720,73.567383,1.326050,535,0,0,0,0,6,0,0,467,0,0.000000,24,0,120,1,0,2,0,20,20,0,1,0,1,0,0.000000,1.000000,70418,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3651314',3651314,145.765701,18.959749,81.979782,0.487813,535,0,0,0,0,6,0,0,467,0,0.000000,24,0,120,1,0,2,0,20,20,0,1,0,1,0,0.000000,1.000000,70146,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3651325',3651325,96.843803,22.727579,132.481796,0.357362,536,0,0,0,0,6,0,0,468,0,0.000000,24,0,120,1,0,4,0,20,20,0,1,0,1,0,0.000000,1.000000,69880,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3651375',3651375,88.206123,24.729410,125.400803,0.863550,536,0,0,0,0,6,0,0,468,0,0.000000,24,0,120,1,0,4,0,20,20,0,1,0,1,0,0.000000,1.000000,69608,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3651425',3651425,78.385536,20.981110,158.068207,0.616574,538,0,0,0,0,6,0,0,470,0,0.000000,26,0,120,1,0,6,0,20,20,1,1,0,1,0,0.000000,1.000000,69342,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3920373',3920373,109.354301,18.648060,95.856506,1.277758,607,0,0,0,0,6,0,0,536,0,0.000000,24,0,120,1,0,3,0,20,20,0,1,0,0,0,0.000000,1.000000,68764,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3920374',3920374,115.092400,18.267370,103.599800,0.763218,607,0,0,0,0,6,0,0,536,0,0.000000,24,0,120,1,0,3,0,20,20,0,1,0,0,0,0.000000,1.000000,68492,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3963569',3963569,103.002701,23.378330,177.013199,-0.000000,536,0,0,0,0,6,0,0,468,0,0.000000,24,0,120,1,0,6,0,20,20,1,1,0,1,0,0.000000,1.000000,68208,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3963570',3963570,87.803497,23.412550,195.437393,-0.000000,535,0,0,0,0,6,0,0,467,0,0.000000,24,0,120,1,0,6,0,20,20,1,1,0,1,0,0.000000,1.000000,67930,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3963577',3963577,86.365784,23.175570,193.964005,-0.000000,534,0,0,0,0,6,0,0,466,0,0.000000,24,0,120,1,0,6,0,20,20,1,1,0,1,0,0.000000,1.000000,67646,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3963584',3963584,103.541496,23.517481,173.452301,-0.000000,479,0,0,0,0,6,0,0,230,0,0.000000,24,0,120,1,0,6,0,20,20,1,1,0,1,0,0.000000,1.000000,67380,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81958,'go007','f1f3','bnpc3963586',3963586,103.872803,23.691090,172.158600,-0.000000,607,0,0,0,0,6,0,0,536,0,0.000000,24,0,120,1,0,6,0,20,20,1,1,0,1,0,0.000000,1.000000,67132,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87361,'Grand_Company_Leve','f1f3','bnpc4178223',4178223,-261.786804,0.717156,488.096893,-0.000000,1330,0,0,0,1,6,0,0,1228,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,65670,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87361,'Grand_Company_Leve','f1f3','bnpc4186390',4186390,-259.035187,0.707859,486.363586,-0.000000,1330,0,0,0,1,6,0,0,1228,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,65026,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87361,'Grand_Company_Leve','f1f3','bnpc4186391',4186391,-267.797913,0.575179,483.867889,-0.000000,1330,0,0,0,1,6,0,0,1228,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,64754,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87361,'Grand_Company_Leve','f1f3','bnpc4186392',4186392,-269.448486,0.513390,481.580414,-0.000000,1330,0,0,0,1,6,0,0,1228,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,64482,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83969,'QB_CLSCNJ006_001','f1f3','bnpc3796294',3796294,331.959991,4.355350,-86.930687,-1.175675,301,0,0,0,0,6,0,0,596,0,0.500000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32676,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83969,'QB_CLSCNJ006_001','f1f3','bnpc3873175',3873175,318.016815,4.355329,-83.485832,1.212980,558,0,0,0,8,6,0,0,628,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32410,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83969,'QB_CLSCNJ006_001','f1f3','bnpc4273807',4273807,332.254608,4.355729,-89.759773,-0.000000,1710,0,0,0,8,6,0,0,1424,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31832,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83969,'QB_CLSCNJ006_001','f1f3','bnpc4273810',4273810,329.838287,4.775012,-75.177223,-0.000000,1710,0,0,0,8,6,0,0,1424,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31560,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83969,'QB_CLSCNJ006_001','f1f3','bnpc4273820',4273820,333.320190,6.142687,-63.831860,-0.166122,1709,0,0,0,1,6,0,0,1930,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31294,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83969,'QB_CLSCNJ006_001','f1f3','bnpc4273821',4273821,328.875610,5.487247,-62.561749,0.433025,1709,0,0,0,1,6,0,0,1930,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31022,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92937,'QB_GaiUsa308_001','f1f3','bnpc4293092',4293092,31.482430,9.396334,-2.788636,1.416791,1642,0,0,0,0,6,0,0,546,0,0.010000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29788,1,0,0,0,0,0,0,0,213); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92937,'QB_GaiUsa308_001','f1f3','bnpc4293093',4293093,32.181561,9.688807,-5.274822,1.478791,1642,0,0,0,0,6,0,0,546,0,0.010000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29516,1,0,0,0,0,0,0,0,222); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92937,'QB_GaiUsa308_001','f1f3','bnpc4293095',4293095,32.787331,9.950447,-7.378963,1.342434,1642,0,0,0,0,6,0,0,546,0,0.010000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29244,1,0,0,0,0,0,0,0,215); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92937,'QB_GaiUsa308_001','f1f3','bnpc4293096',4293096,31.023920,10.484450,-11.499430,1.521360,1639,0,0,0,0,6,0,0,2064,0,0.010000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28978,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92937,'QB_GaiUsa308_001','f1f3','bnpc4293097',4293097,42.300362,6.924304,-6.172760,-1.262008,1646,0,0,0,8,6,0,0,80,0,0.010000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28712,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92937,'QB_GaiUsa308_001','f1f3','bnpc4293098',4293098,43.106350,9.251671,-14.355550,-1.221564,1640,0,0,0,8,6,0,0,122,0,0.010000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28446,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92937,'QB_GaiUsa308_001','f1f3','bnpc4293099',4293099,57.628899,5.761703,20.587360,-0.267097,1645,0,0,0,0,6,0,0,57,0,0.010000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28180,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92937,'QB_GaiUsa308_001','f1f3','bnpc4293109',4293109,55.944031,5.387186,23.046551,0.165543,1642,0,0,0,0,6,0,0,546,0,2.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27884,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92937,'QB_GaiUsa308_001','f1f3','bnpc4293110',4293110,58.152649,5.944259,22.671350,-0.196826,1643,0,0,0,0,6,0,0,2065,0,2.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27642,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92937,'QB_GaiUsa308_001','f1f3','bnpc4293111',4293111,59.622002,6.360530,21.603180,-0.531952,1644,0,0,0,0,6,0,0,2066,0,2.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27376,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92937,'QB_GaiUsa308_001','f1f3','bnpc4293125',4293125,60.613930,11.666130,-14.910830,-0.426846,1641,0,0,0,8,6,0,0,139,0,0.010000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27030,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92937,'QB_GaiUsa308_001','f1f3','bnpc4293126',4293126,61.343861,11.276290,-13.056880,-0.216980,1641,0,0,0,8,6,0,0,139,0,0.010000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26758,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92937,'QB_GaiUsa308_001','f1f3','bnpc4293127',4293127,58.464481,11.483110,-15.803410,-0.303606,1641,0,0,0,8,6,0,0,139,0,0.010000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26486,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93036,'QB_JobBlm450_001_01','f1f3','bnpc4294979',4294979,378.591614,2.517700,156.542206,1.005108,1711,0,0,0,8,6,0,0,1453,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25216,1,0,0,0,0,0,0,317,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93036,'QB_JobBlm450_001_01','f1f3','bnpc4294980',4294980,386.336212,3.626217,152.702896,-0.936965,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24950,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93036,'QB_JobBlm450_001_01','f1f3','bnpc4294981',4294981,383.810486,3.524236,156.988907,-0.936965,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24678,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93036,'QB_JobBlm450_001_01','f1f3','bnpc4294983',4294983,380.865906,3.086048,161.986694,-0.936965,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24406,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93036,'QB_JobBlm450_001_01','f1f3','bnpc4294984',4294984,376.765686,3.589530,165.005997,-0.936965,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24134,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93036,'QB_JobBlm450_001_01','f1f3','bnpc4294985',4294985,369.531006,3.739748,164.067505,-0.936965,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23862,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93036,'QB_JobBlm450_001_01','f1f3','bnpc4294986',4294986,386.636200,3.829829,153.002899,-0.936965,1712,0,0,0,1,6,0,0,1931,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23596,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93036,'QB_JobBlm450_001_01','f1f3','bnpc4294987',4294987,384.110504,3.605084,157.288895,-0.936965,1712,0,0,0,1,6,0,0,1931,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23324,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93036,'QB_JobBlm450_001_01','f1f3','bnpc4294988',4294988,381.165894,3.115154,162.286697,-0.936965,1715,0,0,0,1,6,0,0,1933,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23058,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93036,'QB_JobBlm450_001_01','f1f3','bnpc4294989',4294989,377.065704,3.603910,165.306000,-0.936965,1715,0,0,0,1,6,0,0,1933,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22786,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93036,'QB_JobBlm450_001_01','f1f3','bnpc4294990',4294990,369.830994,3.732072,164.367493,-0.936965,1715,0,0,0,1,6,0,0,1933,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22514,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93037,'QB_JobBlm450_001_02','f1f3','bnpc4294998',4294998,372.525513,2.242623,157.509399,-0.000000,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21706,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93037,'QB_JobBlm450_001_02','f1f3','bnpc4294997',4294997,380.286713,0.904240,150.764099,-0.000000,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21434,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93037,'QB_JobBlm450_001_02','f1f3','bnpc4294996',4294996,375.586914,4.101041,167.692093,-0.000000,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21162,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93037,'QB_JobBlm450_001_02','f1f3','bnpc4294995',4294995,384.861389,3.298624,170.535095,-0.000000,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20890,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93037,'QB_JobBlm450_001_02','f1f3','bnpc4294994',4294994,384.875702,3.863510,161.533203,-0.000000,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20618,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93037,'QB_JobBlm450_001_02','f1f3','bnpc4294993',4294993,390.595795,4.577858,157.910797,-0.000000,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20346,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93037,'QB_JobBlm450_001_02','f1f3','bnpc4294992',4294992,386.496094,1.757297,148.133698,-0.000000,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20074,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93037,'QB_JobBlm450_001_02','f1f3','bnpc4295000',4295000,386.796112,1.997942,148.433701,-0.000000,1712,0,0,0,1,6,0,0,1931,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19808,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93037,'QB_JobBlm450_001_02','f1f3','bnpc4295001',4295001,390.895813,4.619740,158.210800,-0.000000,1712,0,0,0,1,6,0,0,1931,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19536,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93037,'QB_JobBlm450_001_02','f1f3','bnpc4295002',4295002,385.175690,3.889517,161.833206,-0.000000,1712,0,0,0,1,6,0,0,1931,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19264,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93037,'QB_JobBlm450_001_02','f1f3','bnpc4295003',4295003,385.161407,3.366102,170.835098,-0.000000,1715,0,0,0,1,6,0,0,1933,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18998,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93037,'QB_JobBlm450_001_02','f1f3','bnpc4295004',4295004,375.886810,4.114261,167.992096,-0.000000,1715,0,0,0,1,6,0,0,1933,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18726,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93037,'QB_JobBlm450_001_02','f1f3','bnpc4295005',4295005,380.586609,1.120866,151.064102,-0.000000,1715,0,0,0,1,6,0,0,1933,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18454,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93037,'QB_JobBlm450_001_02','f1f3','bnpc4295006',4295006,372.825500,2.373883,157.809402,-0.000000,1715,0,0,0,1,6,0,0,1933,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18182,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93038,'QB_JobBlm450_001_03','f1f3','bnpc4295008',4295008,389.799500,4.562538,153.199997,-0.000000,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17774,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93038,'QB_JobBlm450_001_03','f1f3','bnpc4295009',4295009,388.892487,4.134584,160.346100,-0.000000,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17502,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93038,'QB_JobBlm450_001_03','f1f3','bnpc4295010',4295010,385.365906,3.253208,167.279297,-0.000000,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93038,'QB_JobBlm450_001_03','f1f3','bnpc4295011',4295011,379.273010,3.632239,167.191299,-0.000000,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93038,'QB_JobBlm450_001_03','f1f3','bnpc4295012',4295012,383.382690,1.442832,149.820801,-0.000000,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93038,'QB_JobBlm450_001_03','f1f3','bnpc4295013',4295013,377.221893,0.784608,152.371597,-0.000000,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16414,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93038,'QB_JobBlm450_001_03','f1f3','bnpc4295014',4295014,374.509705,2.021305,157.154404,-0.000000,1713,0,0,0,3,6,0,0,2096,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16142,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93038,'QB_JobBlm450_001_03','f1f3','bnpc4295015',4295015,390.099487,4.606032,153.500000,-0.000000,1714,0,0,0,1,6,0,0,1932,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15888,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93038,'QB_JobBlm450_001_03','f1f3','bnpc4295016',4295016,389.192413,4.153417,160.646103,-0.000000,1714,0,0,0,1,6,0,0,1932,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15616,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93038,'QB_JobBlm450_001_03','f1f3','bnpc4295017',4295017,385.665894,3.242758,167.579300,-0.000000,1714,0,0,0,1,6,0,0,1932,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15344,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93038,'QB_JobBlm450_001_03','f1f3','bnpc4295018',4295018,379.572998,3.630717,167.491302,-0.000000,1715,0,0,0,1,6,0,0,1933,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15066,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93038,'QB_JobBlm450_001_03','f1f3','bnpc4295019',4295019,383.682709,1.650229,150.120804,-0.000000,1715,0,0,0,1,6,0,0,1933,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14794,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93038,'QB_JobBlm450_001_03','f1f3','bnpc4295020',4295020,377.521912,0.872414,152.671600,-0.000000,1715,0,0,0,1,6,0,0,1933,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14522,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93038,'QB_JobBlm450_001_03','f1f3','bnpc4295021',4295021,374.809692,2.152565,157.454407,-0.000000,1715,0,0,0,1,6,0,0,1933,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14250,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83834,'QB_SUBFST099_001','f1f3','bnpc3860599',3860599,74.492287,7.546565,-104.090103,0.177728,561,0,0,0,0,6,0,0,582,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13210,1,0,0,0,0,30102,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93441,'QST_JobWhm451_001','f1f3','bnpc4307109',4307109,142.679596,17.714350,-127.747902,1.388284,1940,0,0,0,1,6,0,0,2046,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8676,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93441,'QST_JobWhm451_001','f1f3','bnpc4307272',4307272,138.758606,18.153410,-124.607498,1.090734,1941,0,0,0,1,6,0,0,2047,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8410,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93441,'QST_JobWhm451_001','f1f3','bnpc4307273',4307273,142.711700,17.887630,-122.267097,1.193183,1942,0,0,0,1,6,0,0,2048,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8144,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82965,'QST_SUBFST099_001','f1f3','bnpc3777850',3777850,-254.233704,15.737480,9.702773,-0.023267,561,0,0,0,1,6,0,0,582,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82965,'QST_SUBFST099_001','f1f3','bnpc3914510',3914510,-256.263489,16.090219,9.869817,0.646210,600,0,0,0,1,6,0,0,582,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4590,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84931,'QST_SUBFST116_001','f1f3','bnpc3951681',3951681,-113.447601,2.027236,-62.288849,1.065184,170,0,0,0,1,6,0,0,0,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2792,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84931,'QST_SUBFST116_001','f1f3','bnpc3951682',3951682,-105.973900,1.998885,-51.102509,-0.112266,170,0,0,0,1,6,0,0,0,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2520,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84932,'QST_SUBFST117_001','f1f3','bnpc3951401',3951401,-205.334000,11.234360,103.515503,-0.505624,4,0,0,0,1,6,0,0,0,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2094,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84932,'QST_SUBFST117_001','f1f3','bnpc3951403',3951403,-200.345596,8.401736,106.474701,-1.024684,4,0,0,0,1,6,0,0,0,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1822,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84932,'QST_SUBFST117_001','f1f3','bnpc3951660',3951660,-215.432205,13.027400,104.345398,0.707016,4,0,0,0,1,6,0,0,0,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1550,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84932,'QST_SUBFST117_001','f1f3','bnpc3951661',3951661,-202.841705,6.670291,114.591301,-0.891567,4,0,0,0,1,6,0,0,0,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1278,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83350,'QB_ClsArc004_001','f1f3','bnpc3818973',3818973,-303.944489,19.607790,-179.278305,0.506605,158,0,0,0,0,6,0,0,139,0,0.001000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59516,1,0,0,0,0,30102,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83350,'QB_ClsArc004_001','f1f3','bnpc3818974',3818974,-304.677094,22.332050,-185.912399,1.370049,165,0,0,0,0,6,0,0,140,0,0.010000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59250,1,0,0,0,0,30102,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83350,'QB_ClsArc004_001','f1f3','bnpc3818975',3818975,-297.108490,20.859070,-178.637497,0.351767,165,0,0,0,0,6,0,0,140,0,0.010000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58978,1,0,0,0,0,30102,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83350,'QB_ClsArc004_001','f1f3','bnpc3818976',3818976,-318.108704,22.033960,-194.360001,1.273748,158,0,0,0,0,6,0,0,139,0,0.000000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58700,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83350,'QB_ClsArc004_001','f1f3','bnpc3818977',3818977,-275.319214,22.929649,-186.453003,-1.099562,158,0,0,0,0,6,0,0,139,0,0.000000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58428,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83350,'QB_ClsArc004_001','f1f3','bnpc3914484',3914484,-303.712006,16.065599,-169.430801,0.944931,158,0,0,0,1,6,0,0,139,0,0.000000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57844,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83350,'QB_ClsArc004_001','f1f3','bnpc3914483',3914483,-314.478699,17.906691,-172.834000,0.887517,165,0,0,0,1,6,0,0,140,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57578,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83350,'QB_ClsArc004_001','f1f3','bnpc4259091',4259091,-297.394897,21.637270,-186.501495,-0.000000,1450,0,0,0,8,6,0,0,599,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56860,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83350,'QB_ClsArc004_001','f1f3','bnpc4259098',4259098,-276.466888,22.690531,-185.459198,-1.104166,165,0,0,0,1,6,0,0,140,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56582,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83350,'QB_ClsArc004_001','f1f3','bnpc4259100',4259100,-317.958099,21.725050,-192.822296,1.134605,165,0,0,0,1,6,0,0,140,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56310,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83350,'QB_ClsArc004_001','f1f3','bnpc4259102',4259102,-318.700592,21.939280,-193.936401,-0.000000,1448,0,0,0,1,6,0,0,1907,0,0.000000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56050,1,0,0,0,0,0,0,0,235); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83350,'QB_ClsArc004_001','f1f3','bnpc4259104',4259104,-303.188812,15.835530,-168.300598,0.554604,1449,0,0,0,1,6,0,0,139,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55784,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83350,'QB_ClsArc004_001','f1f3','bnpc4259105',4259105,-315.406403,18.367050,-173.767105,1.327590,1448,0,0,0,1,6,0,0,1907,0,0.000000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55506,1,0,0,0,0,0,0,0,236); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82593,'QB_CLSARC_006_0','f1f3','bnpc3708966',3708966,304.279907,6.767838,-39.454971,-1.444120,1430,0,0,0,0,6,0,0,601,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52966,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82593,'QB_CLSARC_006_0','f1f3','bnpc3762271',3762271,304.903809,5.630919,-36.545410,-1.524071,1430,0,0,0,1,6,0,0,601,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52694,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82593,'QB_CLSARC_006_0','f1f3','bnpc3913908',3913908,283.344788,6.322983,-17.146549,-0.562356,1430,0,0,0,1,6,0,0,601,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52422,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82593,'QB_CLSARC_006_0','f1f3','bnpc3913919',3913919,282.485291,6.559649,-18.900650,-0.674626,1430,0,0,0,1,6,0,0,601,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52150,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82593,'QB_CLSARC_006_0','f1f3','bnpc3715772',3715772,299.885498,7.675232,-38.956360,-1.441245,1429,0,0,0,0,6,0,0,602,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51884,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82593,'QB_CLSARC_006_0','f1f3','bnpc3913909',3913909,284.060913,6.744764,-20.071039,-0.152227,1429,0,0,0,1,6,0,0,602,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51612,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82593,'QB_CLSARC_006_0','f1f3','bnpc3913920',3913920,298.705688,4.425539,-24.893820,-0.770155,1429,0,0,0,1,6,0,0,602,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51340,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82593,'QB_CLSARC_006_0','f1f3','bnpc4259106',4259106,281.705811,9.187094,-41.390980,1.490273,1635,0,0,0,8,6,0,0,598,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51014,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82593,'QB_CLSARC_006_0','f1f3','bnpc4259107',4259107,281.264008,6.618348,-18.935480,0.020656,1636,0,0,0,1,6,0,0,1907,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50748,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82593,'QB_CLSARC_006_0','f1f3','bnpc4259108',4259108,257.563507,7.924685,-26.441000,0.828151,1430,0,0,0,1,6,0,0,601,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50458,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82593,'QB_CLSARC_006_0','f1f3','bnpc4259109',4259109,257.052887,7.841410,-28.682461,0.968593,1429,0,0,0,1,6,0,0,602,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50192,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82593,'QB_CLSARC_006_0','f1f3','bnpc4259110',4259110,259.833405,8.102044,-25.874060,1.281473,1636,0,0,0,1,6,0,0,1907,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49932,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82593,'QB_CLSARC_006_0','f1f3','bnpc4259111',4259111,260.147705,8.191665,-28.235130,1.424696,1637,0,0,0,1,6,0,0,550,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49666,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82857,'QB_CLSARC_006_1','f1f3','bnpc3762267',3762267,-72.512497,0.030693,61.861462,-0.919793,540,0,0,0,8,6,0,0,600,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49112,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82857,'QB_CLSARC_006_1','f1f3','bnpc3815984',3815984,-91.495560,0.030677,59.053001,1.400172,541,0,0,0,8,6,0,0,598,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48846,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82857,'QB_CLSARC_006_1','f1f3','bnpc3815986',3815986,-91.383667,0.030693,63.322960,1.179952,542,0,0,0,8,6,0,0,599,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48580,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82857,'QB_CLSARC_006_1','f1f3','bnpc3762259',3762259,-71.802254,0.030685,62.780659,-0.960473,1431,0,0,0,8,6,0,0,139,0,0.010000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47690,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82857,'QB_CLSARC_006_1','f1f3','bnpc3762264',3762264,-79.629433,0.030713,55.085819,-1.045738,1431,0,0,0,8,6,0,0,139,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47418,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82857,'QB_CLSARC_006_1','f1f3','bnpc3762262',3762262,-74.229988,0.390930,55.206409,-1.085952,1432,0,0,0,8,6,0,0,140,0,0.010000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47152,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82857,'QB_CLSARC_006_1','f1f3','bnpc3762265',3762265,-72.242264,0.030802,60.078850,-0.848228,1432,0,0,0,8,6,0,0,140,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46880,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82857,'QB_CLSARC_006_1','f1f3','bnpc4277284',4277284,-68.182297,1.390740,67.080513,-1.101928,1432,0,0,0,1,6,0,0,140,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46608,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82857,'QB_CLSARC_006_1','f1f3','bnpc4277285',4277285,-67.281181,3.623583,71.897690,-1.453482,1431,0,0,0,1,6,0,0,139,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46330,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82857,'QB_CLSARC_006_1','f1f3','bnpc4277286',4277286,-63.743259,0.029563,65.948158,-1.414905,1431,0,0,0,1,6,0,0,139,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46058,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82857,'QB_CLSARC_006_1','f1f3','bnpc4277287',4277287,-62.453468,0.031900,65.446983,-1.412582,1431,0,0,0,1,6,0,0,139,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45786,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82857,'QB_CLSARC_006_1','f1f3','bnpc4277288',4277288,-64.960548,0.030696,65.071167,-1.342908,1432,0,0,0,1,6,0,0,140,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45520,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82857,'QB_CLSARC_006_1','f1f3','bnpc4277289',4277289,-64.542503,0.030696,62.242020,-1.513873,1432,0,0,0,1,6,0,0,140,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45248,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82857,'QB_CLSARC_006_1','f1f3','bnpc4277290',4277290,-60.615189,0.032125,64.771881,-1.154431,1717,0,0,0,1,6,0,0,1907,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44982,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82857,'QB_CLSARC_006_1','f1f3','bnpc4277291',4277291,-61.170059,0.032877,65.856018,-1.564164,1718,0,0,0,1,6,0,0,1935,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44716,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4250414',4250414,42.557499,4.197909,49.157318,-1.487709,1682,0,0,0,3,6,0,0,1424,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43050,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4249083',4249083,45.913368,3.810994,44.811649,-0.099887,1683,0,0,0,1,6,0,0,1919,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42784,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4249087',4249087,42.709610,3.450350,44.329201,-0.060383,1683,0,0,0,1,6,0,0,1919,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42512,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4249088',4249088,39.242680,3.671369,45.759918,-0.389593,1683,0,0,0,1,6,0,0,1919,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42240,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4249072',4249072,38.475201,3.232805,43.601181,0.053196,1688,0,0,0,8,6,0,0,1419,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41974,1,0,0,0,0,0,0,705,413); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4249073',4249073,46.280540,3.537499,42.796219,-0.288421,1689,0,0,0,8,6,0,0,1425,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41708,1,0,0,0,0,0,0,706,414); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4249074',4249074,42.503139,3.006368,42.353500,-0.000000,1690,0,0,0,8,6,0,0,1426,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41442,1,0,0,0,0,0,0,707,415); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4249097',4249097,55.045750,4.508504,40.925880,-1.321574,1684,0,0,0,1,6,0,0,1920,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41176,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4249098',4249098,29.382879,5.745089,48.843010,0.811990,1684,0,0,0,1,6,0,0,1920,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40904,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4249106',4249106,41.902950,3.355453,29.181490,-0.000000,1685,0,0,0,1,6,0,0,1921,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40638,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4249107',4249107,39.857941,3.246917,29.668270,-0.000000,1685,0,0,0,1,6,0,0,1921,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40366,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4249109',4249109,43.616749,4.289139,48.078571,-0.000000,1686,0,0,0,1,6,0,0,113,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40100,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4250514',4250514,55.345749,5.154598,47.016979,-1.321574,1684,0,0,0,1,6,0,0,1920,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39816,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4250515',4250515,29.682880,5.933636,52.079651,0.811990,1684,0,0,0,1,6,0,0,1920,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39544,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4249116',4249116,40.188919,3.008476,33.028809,-0.000000,1692,0,0,0,1,6,0,0,117,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39290,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4249117',4249117,52.738171,4.958359,49.127670,-1.443253,1691,0,0,0,1,6,0,0,115,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39024,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4249119',4249119,35.237110,5.263414,55.827091,0.646427,1693,0,0,0,1,6,0,0,56,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38758,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92115,'QB_ClsCnj005_001','f1f3','bnpc4249132',4249132,40.534290,4.109634,48.101440,-0.170023,1687,0,0,0,1,6,0,0,1923,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38492,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83117,'QST_CLSCNJ_006_001','f1f3','bnpc3876178',3876178,43.747570,6.374313,-1.972313,-0.000048,294,0,0,0,1,6,0,0,134,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32058,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83117,'QST_CLSCNJ_006_001','f1f3','bnpc3876179',3876179,122.231598,17.659321,-136.985504,-0.000000,294,0,0,0,1,6,0,0,134,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31786,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83117,'QST_CLSCNJ_006_001','f1f3','bnpc3876180',3876180,291.921692,15.226330,-107.443604,-0.000000,294,0,0,0,1,6,0,0,134,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31514,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93525,'QST_GaiUsa207','f1f3','bnpc4309478',4309478,-243.122894,10.828980,39.499519,-0.000000,2241,0,0,0,1,6,0,0,43,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19392,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93525,'QST_GaiUsa207','f1f3','bnpc4309481',4309481,-244.012299,10.900950,40.155010,1.034683,2241,0,0,0,1,6,0,0,43,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19120,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93525,'QST_GaiUsa207','f1f3','bnpc4309485',4309485,-243.461700,10.987930,40.036942,0.645633,2242,0,0,0,1,6,0,0,680,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18854,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93525,'QST_GaiUsa207','f1f3','bnpc4309486',4309486,-242.478394,10.455970,39.011299,-0.000000,2242,0,0,0,1,6,0,0,680,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18582,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93525,'QST_GaiUsa207','f1f3','bnpc4309487',4309487,-242.913193,10.482320,39.429890,-0.000000,2243,0,0,0,1,6,0,0,681,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18316,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92591,'QST_GaiUsa306','f1f3','bnpc4278548',4278548,-142.897293,12.556750,-135.641602,-0.000000,55,0,0,0,1,6,0,0,57,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17242,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92591,'QST_GaiUsa306','f1f3','bnpc4278551',4278551,59.030121,13.048940,-30.983570,1.175033,61,0,0,0,1,6,0,0,58,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16976,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92591,'QST_GaiUsa306','f1f3','bnpc4278555',4278555,64.878181,13.532900,-24.775650,0.202987,64,0,0,0,1,6,0,0,61,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16710,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92592,'QST_GaiUsa308','f1f3','bnpc4293402',4293402,-71.055267,4.082122,-29.924160,1.425578,62,0,0,0,1,6,0,0,59,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15576,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92593,'QST_GaiUsa310','f1f3','bnpc4278617',4278617,-98.035957,9.213633,-88.911118,0.185696,64,0,0,0,1,6,0,0,61,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14262,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92593,'QST_GaiUsa310','f1f3','bnpc4279022',4279022,-112.479202,1.770791,-62.574650,0.679771,63,0,0,0,1,6,0,0,60,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14002,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92625,'QST_GaiUsa604','f1f3','bnpc4278211',4278211,118.563004,6.446846,28.575020,-1.138723,81,0,0,0,1,6,0,0,139,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13128,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92625,'QST_GaiUsa604','f1f3','bnpc4278213',4278213,65.271759,8.607247,24.730440,-1.059004,311,0,0,0,1,6,0,0,169,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12862,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92625,'QST_GaiUsa604','f1f3','bnpc4329847',4329847,109.185204,12.755830,-14.219910,-0.637383,79,0,0,0,1,6,0,0,140,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12596,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92626,'QST_GaiUsa606','f1f3','bnpc4278319',4278319,195.952301,30.705730,-157.861298,1.112214,9,0,0,0,1,6,0,0,9,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11590,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92626,'QST_GaiUsa606','f1f3','bnpc4278320',4278320,209.141403,31.490259,-174.600494,-0.000000,9,0,0,0,1,6,0,0,9,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11318,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92626,'QST_GaiUsa606','f1f3','bnpc4278321',4278321,218.467300,28.386610,-163.869202,-0.000000,9,0,0,0,1,6,0,0,9,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92771,'QST_GaiUsa702','f1f3','bnpc4278416',4278416,352.749512,-2.654011,53.376530,-0.606982,1909,0,0,0,1,6,0,0,2001,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9620,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92920,'QST_GaiUsb008','f1f3','bnpc4292783',4292783,-258.180115,5.284683,531.394226,1.497768,2194,0,0,0,1,6,0,0,2058,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8646,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92925,'QST_GaiUsb010','f1f3','bnpc4292844',4292844,-228.306503,8.458485,643.165771,-0.653653,13,0,0,0,1,6,0,0,566,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8288,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92925,'QST_GaiUsb010','f1f3','bnpc4292847',4292847,-229.597107,8.544824,639.667786,-0.000000,13,0,0,0,1,6,0,0,566,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8016,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92929,'QST_GaiUsb011','f1f3','bnpc4334614',4334614,-181.961105,0.178183,435.543915,-1.009555,302,0,0,0,1,6,0,0,235,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6978,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92929,'QST_GaiUsb011','f1f3','bnpc4334617',4334617,-203.351898,0.240105,473.183594,-0.336092,302,0,0,0,1,6,0,0,235,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6706,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92932,'QST_GaiUsb012','f1f3','bnpc4292977',4292977,-71.853081,1.116462,316.075500,0.156466,1888,0,0,0,1,6,0,0,34,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6224,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93182,'QST_GaiUsc609','f1f3','bnpc4300261',4300261,615.090210,22.585911,83.370033,0.364179,2198,0,0,0,1,6,0,0,2062,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5610,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93484,'QST_JobMnk400_002','f1f3','bnpc4308269',4308269,23.108959,25.090710,120.459000,0.131399,1926,0,0,0,1,6,0,0,2025,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93484,'QST_JobMnk400_002','f1f3','bnpc4308270',4308270,21.243879,25.466749,118.055801,0.890992,1926,0,0,0,1,6,0,0,2025,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3712,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93484,'QST_JobMnk400_002','f1f3','bnpc4308271',4308271,21.732880,25.823931,115.160400,0.445401,1926,0,0,0,1,6,0,0,2025,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3440,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93484,'QST_JobMnk400_002','f1f3','bnpc4308272',4308272,24.076530,25.783791,113.047302,0.411420,1926,0,0,0,1,6,0,0,2025,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3168,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93068,'QST_JobWar_450_002','f1f3','bnpc4295782',4295782,-57.927540,0.839619,352.221710,0.678910,1919,0,0,0,1,6,0,0,2014,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2554,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143752',1143752,468.733612,-3.633345,230.358597,-0.000527,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161672,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143755',1143755,465.781586,-3.677471,229.602402,-0.000527,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161400,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143773',1143773,465.263000,-2.447129,258.256592,-0.000240,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161128,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143778',1143778,428.447205,-1.594615,201.428604,-0.000240,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160856,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143785',1143785,418.397888,-1.449695,197.651093,-0.000719,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160584,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143787',1143787,419.881805,-4.161774,286.077789,-0.000623,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160312,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143790',1143790,437.705414,-3.238991,267.530212,-0.000623,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160040,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143793',1143793,423.775085,-3.337628,259.160889,-0.001007,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159768,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143797',1143797,424.763611,-3.434183,264.063385,-0.000815,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159496,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143811',1143811,449.264099,-2.694139,278.273193,-0.000527,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159224,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143813',1143813,447.361511,-2.361451,283.012695,-0.000623,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158952,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143833',1143833,324.665100,-5.350893,263.034088,-0.000240,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158680,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143834',1143834,326.416687,-5.326731,264.652008,-0.000144,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158408,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143836',1143836,228.076508,-27.969830,314.808807,-0.000240,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158142,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143844',1143844,226.947403,-28.244499,321.583801,-0.000432,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157870,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143846',1143846,232.074402,-27.023769,316.945099,-0.000336,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157598,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143852',1143852,245.166595,-23.941450,329.304901,-0.000240,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157326,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143853',1143853,243.701797,-24.673880,332.020996,-0.000240,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157054,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143858',1143858,238.841797,-23.981850,361.571594,-0.000144,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156782,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143859',1143859,234.742996,-25.153990,359.183594,-0.000144,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156510,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143860',1143860,184.706299,-37.785229,360.952393,-0.000432,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156238,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143862',1143862,218.412994,-28.201860,349.321411,-0.000336,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155966,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143865',1143865,215.228394,-28.379271,347.279999,-0.000432,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155694,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143866',1143866,185.345001,-32.188919,312.603790,-0.000432,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155422,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143868',1143868,188.006302,-32.639091,314.137390,-0.000527,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155150,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143873',1143873,209.412994,-25.172079,366.151306,-0.000240,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154878,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143875',1143875,178.562500,-38.966068,338.296814,-0.000623,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154606,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143876',1143876,144.823303,-31.479410,305.622894,-0.000432,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154334,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143877',1143877,146.196594,-30.899561,302.754211,-0.000432,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154062,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143878',1143878,152.851395,-42.255760,352.426392,-0.000623,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153790,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143879',1143879,149.193604,-43.619991,356.343506,-0.000527,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153518,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143881',1143881,158.525894,-36.057110,323.933685,-0.000240,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153246,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143882',1143882,163.927597,-36.881100,326.466705,-0.000336,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152974,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143885',1143885,159.594101,-36.820061,328.267303,-0.000336,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152702,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143886',1143886,172.482895,-27.390930,279.472900,-0.000432,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152430,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143887',1143887,176.999496,-26.747681,281.731201,-0.000432,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152158,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143889',1143889,171.282501,-27.115330,283.741486,-0.000527,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151886,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143891',1143891,197.201508,-28.186390,271.644287,-0.000432,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151614,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143892',1143892,200.589005,-27.467010,274.696106,-0.000527,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151342,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143895',1143895,197.110001,-27.467581,277.015503,-0.000527,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151070,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143897',1143897,246.082199,-21.335920,271.557007,-0.000336,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150798,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143900',1143900,229.912994,-24.472389,284.220306,-0.000336,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150526,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143904',1143904,243.488205,-22.337280,276.104187,-0.000336,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150254,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143905',1143905,237.018402,-23.084021,269.268188,-0.000336,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149982,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143907',1143907,242.685898,-23.822359,245.136795,-0.000623,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149710,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143911',1143911,224.510498,-25.336050,241.230103,-0.000623,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149438,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143915',1143915,241.148895,-25.036400,235.342697,-0.000336,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149166,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143916',1143916,236.107697,-26.824610,216.055893,-0.000623,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148894,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143920',1143920,265.723907,-25.564400,226.344604,-0.000719,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148622,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143921',1143921,265.719299,-26.269621,219.037994,-0.000432,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148350,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143923',1143923,268.421387,-21.408449,246.509399,-0.000432,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148078,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143924',1143924,264.054688,-19.323090,252.478806,-0.000432,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147806,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143925',1143925,295.377899,-18.290230,266.437103,-0.000432,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147534,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1368415',1368415,451.260101,-3.443870,238.795807,-0.000911,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147256,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1368437',1368437,390.890289,-7.586338,269.886292,-0.000144,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146984,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143919',1143919,246.995605,-24.468109,240.298096,-0.000815,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146718,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1368727',1368727,278.431305,-15.600310,291.462494,-0.000240,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146446,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1368728',1368728,265.339111,-16.501490,289.234711,-0.000240,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146174,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369057',1369057,450.064789,-3.280736,237.567703,-0.000527,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145908,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369058',1369058,417.631012,-3.443490,258.794006,-0.000719,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145636,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369059',1369059,431.584900,-2.734727,225.736801,-0.000144,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145364,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369060',1369060,433.904297,-2.631201,225.675797,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145092,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369063',1369063,420.105713,-3.826969,244.376099,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144820,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369064',1369064,420.595215,-1.434317,198.139404,-0.000527,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144548,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369066',1369066,420.503693,-1.383187,195.789505,-0.000719,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144264,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369067',1369067,327.321198,-5.054865,262.409302,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144004,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369069',1369069,418.255005,-3.347633,257.236389,-0.000911,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143720,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369078',1369078,405.129486,-6.796501,230.618896,-0.000336,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143448,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369079',1369079,379.850403,-9.137354,273.382690,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143188,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369081',1369081,282.579498,-14.737670,288.410797,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142916,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369082',1369082,297.790985,-17.412251,269.611206,-0.000144,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142644,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369083',1369083,268.697693,-19.984810,251.224106,-0.000336,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142372,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369084',1369084,289.845093,-14.468090,305.104095,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142100,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369085',1369085,324.574585,-14.779820,286.915314,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141828,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369086',1369086,329.182800,-13.956880,285.480988,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141556,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369087',1369087,345.143799,-11.551130,289.967102,-0.000623,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141272,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369088',1369088,252.741592,-21.175320,288.406799,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141012,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369089',1369089,218.890594,-26.504971,301.258789,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140740,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369090',1369090,219.501007,-26.810150,303.212006,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140468,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369091',1369091,241.351898,-22.922640,271.923187,-0.000144,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140196,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369092',1369092,194.140503,-27.267920,297.596588,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139924,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369093',1369093,196.285995,-27.929461,274.390991,-0.000336,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139652,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369095',1369095,185.564896,-32.730652,315.266602,-0.000336,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139380,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369096',1369096,161.730301,-36.392811,324.788208,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139108,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369097',1369097,167.315094,-27.481541,282.978485,-0.000336,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138836,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369098',1369098,142.931198,-30.685940,303.578186,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138564,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369099',1369099,172.080307,-41.270390,355.679108,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138292,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369101',1369101,217.456299,-28.130699,347.341095,-0.000336,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138020,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369102',1369102,216.124100,-28.447210,349.443512,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137748,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369103',1369103,185.566101,-37.807560,358.326202,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137476,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369104',1369104,238.333801,-24.868570,356.358398,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137204,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369105',1369105,230.975800,-27.237400,321.187103,-0.000336,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136932,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369109',1369109,262.285889,-26.207680,223.339996,-0.000911,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136660,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369112',1369112,226.922302,-24.500299,282.846985,-0.000336,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136388,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369113',1369113,270.740814,-25.894609,219.684097,-0.000719,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136116,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369114',1369114,226.555206,-25.225269,239.887299,-0.000911,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135844,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369116',1369116,282.357086,-23.535101,244.795303,-0.000815,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135572,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369121',1369121,333.561310,2.185390,242.975006,-0.000623,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135300,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369126',1369126,391.683807,0.442465,197.375397,-0.000815,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135016,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143861',1143861,217.364700,-28.025049,344.838593,-0.000527,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134750,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369225',1369225,415.314301,-4.384437,279.848297,-0.000527,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134484,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369226',1369226,417.664215,-4.268155,279.787292,-0.000719,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134200,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369227',1369227,416.351898,-4.344605,282.320313,-0.000815,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133928,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369270',1369270,448.720703,-3.422734,241.608597,-0.000911,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133656,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1369283',1369283,400.411896,-3.097628,212.787003,-0.000527,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133396,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1373461',1373461,448.051788,-2.900265,234.756104,-0.000911,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133112,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1373462',1373462,416.268707,-3.808599,263.633698,-0.000911,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132840,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1373464',1373464,474.141296,-3.220261,248.381897,-0.000719,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132568,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1373465',1373465,472.096588,-3.385255,246.489807,-0.000527,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132296,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1373466',1373466,475.150604,-3.341773,246.356903,-0.000527,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132036,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1373479',1373479,170.224701,-26.854139,298.491211,-0.000527,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131758,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1373480',1373480,259.386292,-22.771570,242.221405,-0.000815,9,0,0,0,1,6,0,0,9,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131486,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1373482',1373482,160.660004,-38.959309,337.590302,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131220,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1373504',1373504,347.812195,-6.402293,271.350494,-0.000527,37,0,0,0,1,6,0,0,37,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130936,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1373505',1373505,346.218903,-6.677882,272.394409,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130676,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1417935',1417935,204.363998,-30.869049,325.184998,-0.000623,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130398,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1417936',1417936,206.500305,-30.502831,322.743500,-0.000719,9,0,0,0,1,6,0,0,9,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130126,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1417937',1417937,206.591797,-30.411280,325.246002,-0.000527,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129860,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc2320968',2320968,417.338806,-2.166638,180.231598,-0.000719,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129576,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc2320969',2320969,422.079498,-2.088056,179.054596,-0.000527,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129316,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc2320970',2320970,421.093597,-1.981825,181.915405,-0.000719,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129032,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1143766',1143766,444.779510,-3.136452,238.420898,-0.000911,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128760,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc3877610',3877610,460.799194,-1.088999,205.124603,-0.754059,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,255,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128500,9,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc3897788',3897788,454.380188,-1.495000,207.570404,-0.054954,37,0,0,0,1,6,0,0,37,0,0.000000,1,1,255,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128216,9,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc3898013',3898013,448.109894,-1.597685,204.794403,0.718455,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,255,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127956,9,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1373468',1373468,274.396088,-14.909590,275.718201,-0.000336,1446,0,0,0,1,6,0,0,128,0,0.500000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127690,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1373500',1373500,232.074402,-6.008647,2.020233,-0.000719,1446,0,0,0,1,6,0,0,128,0,0.500000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127418,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1373459',1373459,443.619507,-3.181869,264.612488,-0.000240,1446,0,0,0,1,6,0,0,128,0,0.500000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127146,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1373469',1373469,166.918396,-41.534370,347.432587,-0.000911,1446,0,0,0,1,6,0,0,128,0,0.500000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126874,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (67815,'LVD_BNPC_01','f1f4','bnpc1373497',1373497,335.683197,-4.748982,10.208240,-0.000911,1446,0,0,0,1,6,0,0,128,0,0.500000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126602,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368610',1368610,219.226303,-10.849210,70.298264,-0.002445,136,0,0,0,1,6,0,0,118,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125792,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368616',1368616,239.936707,-7.773538,10.082270,-0.002445,136,0,0,0,1,6,0,0,118,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125520,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1369127',1369127,374.291687,0.069733,177.932404,-0.000336,136,0,0,0,1,6,0,0,118,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125248,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368587',1368587,273.532806,-13.660890,101.165001,-0.000432,136,0,0,0,1,6,0,0,118,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124976,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368613',1368613,213.180206,-3.941148,-4.296664,-0.002637,136,0,0,0,1,6,0,0,118,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124704,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368612',1368612,233.086899,-9.948204,40.259239,-0.002541,136,0,0,0,1,6,0,0,118,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124432,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368583',1368583,274.723297,-26.291660,183.940598,-0.000240,136,0,0,0,1,6,0,0,118,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124160,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368591',1368591,372.633514,-5.472790,90.196060,-0.001103,136,0,0,0,1,6,0,0,118,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123888,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368594',1368594,376.821503,-7.339636,68.955467,-0.000911,136,0,0,0,1,6,0,0,118,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123616,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368580',1368580,311.398987,-9.954162,140.459198,-0.000336,136,0,0,0,1,6,0,0,118,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123344,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368578',1368578,338.217590,-3.919866,175.769104,-0.000240,136,0,0,0,1,6,0,0,118,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123072,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368584',1368584,304.162506,-21.746981,213.237000,-0.000432,136,0,0,0,1,6,0,0,118,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122800,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368605',1368605,246.078796,-5.873863,-10.449420,-0.001774,136,0,0,0,1,6,0,0,118,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122528,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368577',1368577,354.033691,-1.282395,183.656601,-0.000336,136,0,0,0,1,6,0,0,118,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122256,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368590',1368590,303.309204,-10.197260,107.375298,-0.000911,136,0,0,0,1,6,0,0,118,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121984,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368604',1368604,280.384491,-6.088397,-46.768951,-0.001774,136,0,0,0,1,6,0,0,118,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121712,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368596',1368596,410.155609,-6.183658,55.648460,-0.000911,136,0,0,0,1,6,0,0,118,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121440,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368597',1368597,412.797699,-4.115298,93.821388,-0.000719,136,0,0,0,1,6,0,0,118,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121168,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1418004',1418004,315.449707,-8.316214,-13.626350,-0.001486,136,0,0,0,1,6,0,0,118,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120896,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368598',1368598,362.752686,-7.221369,55.588570,-0.000815,136,0,0,0,1,6,0,0,118,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120624,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368602',1368602,334.164093,-4.736384,-1.168072,-0.001294,136,0,0,0,1,6,0,0,118,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120352,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368600',1368600,330.403503,-5.478035,19.729870,-0.001390,136,0,0,0,1,6,0,0,118,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120080,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368614',1368614,207.285202,-5.140594,20.525330,-0.002637,136,0,0,0,1,6,0,0,118,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119808,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368608',1368608,281.362915,-10.660460,38.721069,-0.002157,136,0,0,0,1,6,0,0,118,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119536,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368579',1368579,320.962494,-8.541780,134.309296,-0.000432,136,0,0,0,1,6,0,0,118,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119264,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368607',1368607,279.562286,-10.758130,40.909191,-0.001870,136,0,0,0,1,6,0,0,118,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118992,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368601',1368601,340.436401,-5.850005,23.485689,-0.001294,136,0,0,0,1,6,0,0,118,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118720,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368606',1368606,275.931305,-10.226560,7.661325,-0.001870,136,0,0,0,1,6,0,0,118,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118448,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368582',1368582,313.089508,-17.740789,185.998001,-0.000240,136,0,0,0,1,6,0,0,118,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118176,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368494',1368494,337.636292,-5.691662,26.687981,-0.000240,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117910,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368513',1368513,273.210785,-9.038651,1.056271,-0.000240,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117638,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368507',1368507,275.332886,-6.079346,-51.364719,-0.000144,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117366,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368508',1368508,268.817902,-7.622407,-26.344280,-0.000336,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117094,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368517',1368517,251.891006,-8.924417,10.996560,-0.000144,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116822,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368519',1368519,238.113907,-10.699850,39.986820,-0.000240,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116550,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368515',1368515,271.523804,-11.769340,30.395180,-0.000144,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116278,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368516',1368516,255.359695,-9.109683,4.562400,-0.000240,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116006,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368506',1368506,279.991913,-7.195922,-25.793631,-0.000048,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115734,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368497',1368497,353.728394,-5.753780,25.100679,-0.000144,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115462,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368496',1368496,364.258301,-3.572027,19.096781,-0.000144,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115190,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368498',1368498,321.866913,-7.314247,-15.243810,-0.000240,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114918,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368499',1368499,317.799591,-6.363059,23.605659,-0.000240,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114646,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368502',1368502,307.043396,-8.701551,-1.767205,-0.000048,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114374,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368503',1368503,307.209808,-7.736371,-25.314760,-0.000240,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114102,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368495',1368495,360.321503,-3.134459,15.892390,-0.000144,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113830,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368501',1368501,310.197205,-8.609804,2.999502,-0.000240,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113558,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368532',1368532,253.925293,-13.748430,50.339458,-0.000240,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113286,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368531',1368531,262.570892,-13.984700,50.050228,-0.000240,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113014,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368509',1368509,276.584106,-5.971716,-40.277569,-0.000144,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112742,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368491',1368491,313.954803,-6.875740,27.206791,-0.000048,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112470,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368493',1368493,318.414001,-7.856604,-8.765156,-0.000240,32,0,0,0,1,6,0,0,32,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112198,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368530',1368530,217.647400,-9.632435,55.535179,-0.000240,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111926,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368521',1368521,216.099899,-5.217842,15.486120,-0.000240,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111654,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368520',1368520,236.666702,-11.041180,47.762650,-0.000336,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111382,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368522',1368522,219.648102,-5.708765,19.837851,-0.000240,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111110,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368528',1368528,232.117203,-11.721460,66.985252,-0.000048,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110838,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1368527',1368527,226.886307,-11.459570,69.291168,-0.000240,32,0,0,0,1,6,0,0,32,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110566,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143944',1143944,273.152496,-20.649960,128.760193,-0.000240,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110300,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143949',1143949,301.016296,-10.037700,103.164902,-0.000527,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110028,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143946',1143946,296.499603,-11.734670,103.927902,-0.000432,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109756,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143938',1143938,283.100586,-25.497869,192.706100,-0.000432,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109484,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143941',1143941,280.262390,-25.619940,193.316498,-0.000623,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109212,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143945',1143945,303.365509,-8.872850,95.128830,-0.000623,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108940,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143963',1143963,309.994110,-18.136681,184.117996,-0.000527,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108668,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143966',1143966,299.197113,-21.964729,223.815796,-0.000336,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108396,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143969',1143969,297.872894,-12.140140,107.895203,-0.000336,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108124,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143952',1143952,274.860687,-13.992570,103.746002,-0.000527,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107852,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143953',1143953,277.363190,-13.962050,102.250702,-0.000432,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107580,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143962',1143962,297.610199,-23.044500,220.886002,-0.000240,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107308,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1373503',1373503,411.140686,-5.930238,61.455570,-0.000336,5,0,0,0,1,6,0,0,5,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107036,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1373502',1373502,393.522491,-5.844142,73.170151,-0.000527,5,0,0,0,1,6,0,0,5,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106764,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1373481',1373481,296.304993,-24.768950,202.106201,-0.000815,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106492,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143985',1143985,428.493103,-1.675420,69.168533,-0.000144,5,0,0,0,1,6,0,0,5,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106220,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1373508',1373508,307.241913,-8.558214,101.772003,-0.000336,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105948,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1373507',1373507,292.224792,-18.765341,132.923004,-0.000719,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105676,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1373477',1373477,323.688599,-14.094800,192.991898,-0.000527,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105404,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143934',1143934,316.585999,-16.832951,187.871704,-0.000336,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105132,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143935',1143935,314.021301,-17.296310,192.256302,-0.000336,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104860,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143936',1143936,311.854492,-17.875420,189.936905,-0.000432,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104588,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1373476',1373476,336.930115,-3.588053,182.083405,-0.000623,5,0,0,0,1,6,0,0,5,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104316,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1373475',1373475,321.508789,-8.653498,126.646599,-0.001199,5,0,0,0,1,6,0,0,5,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104044,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1373474',1373474,315.725800,-9.276663,126.870499,-0.001103,5,0,0,0,1,6,0,0,5,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103772,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143970',1143970,276.631500,-19.656750,126.440804,-0.000336,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103500,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1369128',1369128,340.926086,-4.172237,171.404495,-0.000815,5,0,0,0,1,6,0,0,5,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103228,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1145786',1145786,335.961487,-6.303717,151.505005,-0.000623,5,0,0,0,1,6,0,0,5,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102956,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1145792',1145792,334.663391,-4.191054,173.662903,-0.000623,5,0,0,0,1,6,0,0,5,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102684,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1145781',1145781,314.148712,-9.873041,137.315598,-0.000527,5,0,0,0,1,6,0,0,5,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102412,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1145783',1145783,316.563904,-11.553430,155.556900,-0.000815,5,0,0,0,1,6,0,0,5,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102140,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1145785',1145785,310.839111,-10.058590,146.018997,-0.000911,5,0,0,0,1,6,0,0,5,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101868,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1373472',1373472,315.059814,-12.244580,158.583603,-0.001007,5,0,0,0,1,6,0,0,5,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101596,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1369131',1369131,284.565399,-25.650459,196.215698,-0.000719,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101324,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1369129',1369129,274.308289,-21.454750,133.409195,-0.000432,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101052,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1145794',1145794,342.177307,-3.911723,174.273193,-0.000527,5,0,0,0,1,6,0,0,5,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100780,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1145797',1145797,356.749786,-1.121761,182.588501,-0.000240,5,0,0,0,1,6,0,0,5,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100508,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1373473',1373473,320.444611,-9.346396,146.037094,-0.001199,5,0,0,0,1,6,0,0,5,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100236,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143987',1143987,401.540802,-6.912460,58.247761,-0.000144,5,0,0,0,1,6,0,0,5,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99964,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143984',1143984,424.551697,-3.646953,81.803574,-0.000240,5,0,0,0,1,6,0,0,5,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99692,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143989',1143989,378.988312,-7.187046,68.955467,-0.000240,5,0,0,0,1,6,0,0,5,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99420,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143988',1143988,403.463715,-6.369321,60.898708,-0.000336,5,0,0,0,1,6,0,0,5,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99148,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143983',1143983,419.912994,-4.654048,77.439484,-0.000432,5,0,0,0,1,6,0,0,5,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98876,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143972',1143972,371.881592,-6.723549,84.641747,-0.000527,5,0,0,0,1,6,0,0,5,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98604,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143971',1143971,297.779785,-22.690210,161.913406,-0.000336,5,0,0,0,1,6,0,0,5,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98332,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143974',1143974,371.085114,-5.840127,88.055183,-0.000336,5,0,0,0,1,6,0,0,5,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98060,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143973',1143973,376.154114,-6.318017,85.862457,-0.000623,5,0,0,0,1,6,0,0,5,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97788,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143990',1143990,405.752197,-6.460996,59.106491,-0.000240,5,0,0,0,1,6,0,0,5,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97516,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143991',1143991,387.045013,-4.837157,93.705597,-0.000240,5,0,0,0,1,6,0,0,5,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97244,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc1143998',1143998,390.177887,-4.509761,93.888512,-0.000048,5,0,0,0,1,6,0,0,5,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96972,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc2849612',2849612,221.789795,-25.833570,222.369705,-0.399224,745,0,0,0,0,6,0,0,194,0,0.000000,5,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96706,4,0,0,0,0,30119,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc2615832',2615832,213.214203,-27.298441,257.099213,-0.266965,745,0,0,0,1,6,0,0,194,0,0.000000,5,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96434,4,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc2615836',2615836,230.090698,-25.436840,224.750107,1.200023,745,0,0,0,1,6,0,0,194,0,0.000000,5,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96162,4,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc2615831',2615831,251.972198,-28.702271,209.338501,-0.000623,745,0,0,0,1,6,0,0,194,0,0.000000,5,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95890,4,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc2615830',2615830,219.897705,-25.925119,230.212799,0.811344,744,0,0,0,1,6,0,0,193,0,0.000000,5,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95624,4,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc2849614',2849614,218.411407,-26.477131,218.507996,0.919785,744,0,0,0,0,6,0,0,193,0,0.000000,5,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95352,4,0,0,0,0,30120,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc2615834',2615834,212.019608,-27.601471,252.518906,1.447189,744,0,0,0,0,6,0,0,193,0,0.000000,5,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95080,4,0,0,0,0,30057,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc2615837',2615837,251.606003,-27.756210,214.862198,1.286311,744,0,0,0,1,6,0,0,193,0,0.000000,5,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94808,4,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc2615833',2615833,215.472595,-27.237400,253.040298,-1.435492,743,0,0,0,0,6,0,0,192,0,0.000000,5,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94542,4,0,0,0,0,30119,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc2849611',2849611,245.960098,-27.145849,217.639404,-0.102059,743,0,0,0,1,6,0,0,192,0,0.000000,5,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94270,4,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc2615829',2615829,247.882797,-28.305531,212.390305,0.890537,743,0,0,0,0,6,0,0,192,0,0.000000,5,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93998,4,0,0,0,0,30126,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83421,'LVD_BNPC_02','f1f4','bnpc2615835',2615835,223.315704,-26.199789,217.486801,-0.505694,743,0,0,0,0,6,0,0,192,0,0.000000,5,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93726,4,0,0,0,0,30125,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369135',1369135,164.769394,-24.938990,163.613800,-0.000240,11,0,0,0,1,6,0,0,11,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92952,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144015',1144015,138.902802,-27.603621,237.109894,-0.000432,11,0,0,0,1,6,0,0,11,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92680,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144019',1144019,84.896217,-28.451370,271.261688,-0.000623,11,0,0,0,1,6,0,0,11,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92408,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144017',1144017,88.530487,-27.058380,290.765411,-0.000623,11,0,0,0,1,6,0,0,11,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92136,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144003',1144003,223.302307,-22.244350,140.968201,-0.000432,11,0,0,0,1,6,0,0,11,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91864,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144008',1144008,179.410904,-23.832951,152.981903,-0.000144,11,0,0,0,1,6,0,0,11,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91592,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144009',1144009,167.197998,-27.995230,192.997803,-0.000432,11,0,0,0,1,6,0,0,11,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91320,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144011',1144011,177.798798,-24.733610,159.351395,-0.000240,11,0,0,0,1,6,0,0,11,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91048,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc2321013',2321013,115.746803,-26.867279,252.730103,-0.000432,11,0,0,0,1,6,0,0,11,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90776,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144004',1144004,217.578293,-21.988300,138.200897,-0.000527,11,0,0,0,1,6,0,0,11,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90504,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144007',1144007,185.015701,-24.153931,154.465500,-0.000240,11,0,0,0,1,6,0,0,11,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90232,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc2321012',2321012,205.010406,-24.383320,145.800797,-0.000432,11,0,0,0,1,6,0,0,11,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89960,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144117',1144117,-194.954300,-56.667259,298.548615,-0.000623,11,0,0,0,1,6,0,0,11,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89688,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417960',1417960,-174.044495,-40.534210,200.048401,-0.000623,11,0,0,0,1,6,0,0,11,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89416,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144115',1144115,-145.718704,-44.456711,245.994507,-0.000240,11,0,0,0,1,6,0,0,11,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89144,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417940',1417940,-165.340302,-39.282860,193.438599,-0.000623,11,0,0,0,1,6,0,0,11,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88872,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417991',1417991,59.539070,-37.771149,294.833313,-0.455632,11,0,0,0,1,6,0,0,11,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88600,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144103',1144103,-256.205414,-24.029810,238.507599,-0.000527,11,0,0,0,1,6,0,0,11,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88328,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144102',1144102,-269.982300,-15.041580,257.233795,-0.000240,11,0,0,0,1,6,0,0,11,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88056,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144111',1144111,-247.374802,-26.295010,199.152298,-0.000336,11,0,0,0,1,6,0,0,11,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87784,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144108',1144108,-250.331604,-26.539511,245.353897,-0.000240,11,0,0,0,1,6,0,0,11,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87512,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369174',1369174,21.103210,-49.546139,475.272614,-0.000623,17,0,0,0,1,6,0,0,17,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87246,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369210',1369210,-169.922607,-51.790081,281.324493,-0.001007,17,0,0,0,1,6,0,0,17,0,0.000000,27,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86974,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369194',1369194,-267.105286,-78.933182,492.746185,-0.000719,17,0,0,0,1,6,0,0,17,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86702,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369183',1369183,-11.764770,-51.560242,438.742706,-0.000335,17,0,0,0,1,6,0,0,17,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86430,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369184',1369184,-91.746658,-51.122200,356.392212,-0.000336,17,0,0,0,1,6,0,0,17,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86158,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369185',1369185,-89.732468,-51.292042,358.650513,-0.000432,17,0,0,0,1,6,0,0,17,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85886,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369169',1369169,-31.436220,-54.130669,497.960510,-0.000240,17,0,0,0,1,6,0,0,17,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85614,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369177',1369177,-15.233060,-53.066551,466.036011,-0.000048,17,0,0,0,1,6,0,0,17,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85342,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369180',1369180,-48.539001,-47.348751,424.643188,-0.000335,17,0,0,0,1,6,0,0,17,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85070,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369189',1369189,-217.090103,-64.042107,364.888885,-0.001007,17,0,0,0,1,6,0,0,17,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84798,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369190',1369190,-255.542892,-74.143631,419.790894,-0.000911,17,0,0,0,1,6,0,0,17,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84526,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369191',1369191,-297.823914,-79.049583,481.552887,-0.000623,17,0,0,0,1,6,0,0,17,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84254,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369186',1369186,-116.542198,-54.847111,366.704803,-0.000144,17,0,0,0,1,6,0,0,17,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83982,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369187',1369187,-215.533707,-63.035099,360.219604,-0.000527,17,0,0,0,1,6,0,0,17,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83710,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369188',1369188,-179.797104,-59.525509,348.256592,-0.000623,17,0,0,0,1,6,0,0,17,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83438,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417949',1417949,-298.420685,-54.795170,303.761414,-0.001103,17,0,0,0,1,6,0,0,17,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83166,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417958',1417958,-264.080414,-22.174829,238.910095,-0.000623,17,0,0,0,1,6,0,0,17,0,0.000000,27,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82894,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417957',1417957,-191.225204,-44.687611,220.141800,-0.000719,17,0,0,0,1,6,0,0,17,0,0.000000,27,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82622,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417959',1417959,-229.297394,-35.111050,231.403000,-0.000815,17,0,0,0,1,6,0,0,17,0,0.000000,27,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82350,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417961',1417961,-149.616501,-45.683731,252.513397,-0.000623,17,0,0,0,1,6,0,0,17,0,0.000000,27,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82078,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417953',1417953,-275.976593,-51.020748,335.645813,-0.000911,17,0,0,0,1,6,0,0,17,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81806,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741134',3741134,10.489580,-47.098289,439.071106,-1.151894,170,0,0,0,0,6,0,0,219,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81540,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc2321016',2321016,14.364810,-47.184280,446.981415,-0.000527,170,0,0,0,1,6,0,0,219,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81268,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc2321017',2321017,8.855011,-47.052078,437.906494,0.743409,170,0,0,0,0,6,0,0,219,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80996,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741133',3741133,21.243629,-45.595200,442.469513,0.094778,170,0,0,0,0,6,0,0,219,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80724,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741137',3741137,21.488041,-45.079990,439.112488,0.370458,170,0,0,0,0,6,0,0,219,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80452,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741135',3741135,23.118601,-45.096272,440.785797,-1.187918,170,0,0,0,0,6,0,0,219,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80180,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc2321018',2321018,23.615641,-45.878761,447.495605,-0.000527,170,0,0,0,1,6,0,0,219,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79908,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741136',3741136,14.816470,-45.761841,435.965515,-0.000527,170,0,0,0,1,6,0,0,219,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79636,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417950',1417950,-300.953705,-54.459469,309.101898,0.889531,179,0,0,0,1,6,0,0,224,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79370,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417952',1417952,-278.400909,-54.097359,324.329590,-0.000623,179,0,0,0,1,6,0,0,224,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79098,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417954',1417954,-252.932907,-58.400982,302.113312,0.968484,179,0,0,0,1,6,0,0,224,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78826,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417948',1417948,-232.433594,-26.853029,279.165588,0.941974,179,0,0,0,1,6,0,0,224,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78554,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417951',1417951,-271.875885,-52.291519,281.696686,0.890825,179,0,0,0,1,6,0,0,224,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78282,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417955',1417955,-229.778000,-27.208941,284.492401,1.270540,179,0,0,0,1,6,0,0,224,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78010,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741132',3741132,-284.870697,-49.925079,340.580109,1.552174,179,0,0,0,1,6,0,0,224,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77738,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417956',1417956,-202.834305,-30.699909,342.864288,1.016134,179,0,0,0,1,6,0,0,224,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77466,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144132',1144132,-180.289703,-58.090000,341.292908,-0.000623,30,0,0,0,1,6,0,0,30,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77200,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144134',1144134,-173.453705,-58.488270,346.267395,-0.000527,30,0,0,0,1,6,0,0,30,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76928,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144136',1144136,-248.384903,-70.863403,400.043610,-0.000719,30,0,0,0,1,6,0,0,30,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76656,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc2342034',2342034,-104.783699,-51.407688,385.580200,-0.000527,30,0,0,0,1,6,0,0,30,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76384,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144124',1144124,-88.115013,-50.887539,355.110413,-0.000527,30,0,0,0,1,6,0,0,30,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76112,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1368562',1368562,-193.135696,-32.369289,261.702515,-0.000144,40,0,0,0,1,6,0,0,40,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75846,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc2321019',2321019,-29.630119,-53.701389,454.788208,-0.000240,40,0,0,0,1,6,0,0,40,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75574,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144027',1144027,-15.138880,-52.068508,438.953705,-0.000240,40,0,0,0,1,6,0,0,40,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75302,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144089',1144089,-232.330093,-26.492390,293.040802,-0.000144,40,0,0,0,1,6,0,0,40,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75030,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144090',1144090,-230.365494,-26.618240,295.168701,-0.000048,40,0,0,0,1,6,0,0,40,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74758,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144095',1144095,-236.490906,-26.792789,270.853088,-0.000240,40,0,0,0,1,6,0,0,40,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74486,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144050',1144050,-16.922300,-53.971210,467.582214,-0.000240,40,0,0,0,1,6,0,0,40,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74214,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1368571',1368571,-36.310310,-47.774849,409.386902,-0.000240,40,0,0,0,1,6,0,0,40,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73942,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1368569',1368569,-19.247980,-45.409012,412.262085,-0.000240,40,0,0,0,1,6,0,0,40,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73670,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1368570',1368570,-46.799500,-47.531921,426.291290,-0.000432,40,0,0,0,1,6,0,0,40,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73398,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144028',1144028,-12.361740,-51.361629,435.444214,-0.000240,40,0,0,0,1,6,0,0,40,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73126,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144068',1144068,-241.359406,-30.546400,355.281891,-0.000240,40,0,0,0,1,6,0,0,40,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72854,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144067',1144067,-217.336304,-30.232090,345.381989,-0.000240,40,0,0,0,1,6,0,0,40,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72582,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144079',1144079,-207.943893,-30.040119,327.783203,-0.000144,40,0,0,0,1,6,0,0,40,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72310,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144076',1144076,-189.083893,-30.732161,329.140411,-0.000144,40,0,0,0,1,6,0,0,40,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72038,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144074',1144074,-187.557999,-30.827459,327.431396,-0.000240,40,0,0,0,1,6,0,0,40,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71766,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144085',1144085,-207.568497,-30.624901,298.084900,-0.000336,40,0,0,0,1,6,0,0,40,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71494,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144047',1144047,-30.001869,-55.355400,500.188385,-0.000240,40,0,0,0,1,6,0,0,40,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71222,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144031',1144031,-21.414761,-45.509689,411.041412,-0.000336,40,0,0,0,1,6,0,0,40,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70950,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144030',1144030,-9.676152,-51.078831,436.725891,-0.000144,40,0,0,0,1,6,0,0,40,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70678,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144049',1144049,-35.678230,-53.471958,498.265686,-0.000240,40,0,0,0,1,6,0,0,40,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70406,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144066',1144066,-215.322098,-30.287540,345.076813,-0.000336,40,0,0,0,1,6,0,0,40,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70134,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144051',1144051,-30.825859,-54.086170,495.671692,-0.000240,40,0,0,0,1,6,0,0,40,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69862,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144088',1144088,-217.678604,-29.217609,281.772491,-0.000240,40,0,0,0,1,6,0,0,40,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69590,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741148',3741148,3.116203,-49.230431,481.867706,-0.000719,42,0,0,0,1,6,0,0,227,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69324,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741144',3741144,30.237329,-47.804062,466.828094,-0.000623,42,0,0,0,1,6,0,0,227,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69052,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741198',3741198,-42.711262,-52.666340,491.020508,-0.000719,42,0,0,0,1,6,0,0,227,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68780,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741173',3741173,-41.599140,-53.307251,487.071014,-0.000623,42,0,0,0,1,6,0,0,227,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68508,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144045',1144045,-11.876680,-52.218342,458.182587,-0.000719,42,0,0,0,1,6,0,0,227,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68236,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144042',1144042,9.536865,-48.508480,474.235107,-0.000719,42,0,0,0,1,6,0,0,227,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67964,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741178',3741178,28.775129,-50.812210,483.936310,-0.000719,42,0,0,0,1,6,0,0,227,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67692,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144043',1144043,3.205714,-47.435299,471.491486,-0.000719,42,0,0,0,1,6,0,0,227,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67420,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741119',3741119,68.443611,-40.187721,343.554413,-0.237097,113,0,0,0,0,6,0,0,209,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67154,1,0,0,0,0,30057,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741123',3741123,50.547020,-40.461750,336.659790,1.003642,113,0,0,0,0,6,0,0,209,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66882,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741112',3741112,85.557281,-40.634819,351.460999,1.517945,113,0,0,0,0,6,0,0,209,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66610,1,0,0,0,0,30125,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741118',3741118,52.970268,-40.324650,335.009186,0.312983,114,0,0,0,0,6,0,0,208,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66344,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741111',3741111,90.043427,-40.634819,352.315491,-1.329694,114,0,0,0,0,6,0,0,208,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66072,1,0,0,0,0,30119,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741122',3741122,53.208130,-40.756901,339.009613,-0.721461,114,0,0,0,0,6,0,0,208,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65800,1,0,0,0,0,30119,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741110',3741110,73.289063,-41.763981,357.900299,-0.000623,115,0,0,0,1,6,0,0,210,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65534,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741117',3741117,73.065964,-38.481918,332.600189,0.233177,115,0,0,0,1,6,0,0,210,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65262,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc3741124',3741124,53.528259,-38.479301,320.227112,0.537535,115,0,0,0,1,6,0,0,210,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64990,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417946',1417946,-298.084991,-79.301208,470.145599,-0.000815,2265,0,0,0,1,6,0,0,2188,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64724,4,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1144155',1144155,-265.522308,-78.660339,495.811401,-0.000527,2265,0,0,0,1,6,0,0,2188,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64452,4,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1417947',1417947,-302.235504,-79.240173,463.034912,-0.000719,2265,0,0,0,1,6,0,0,2188,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64180,4,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369203',1369203,-194.417404,-31.711460,260.054596,-0.001199,2266,0,0,0,1,6,0,0,2189,0,0.000000,29,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63914,6,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369206',1369206,-219.511200,-30.548080,332.944885,-0.001007,2266,0,0,0,1,6,0,0,2189,0,0.000000,29,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63642,6,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83422,'LVD_BNPC_03','f1f4','bnpc1369197',1369197,-195.056107,-32.913761,285.816711,-0.000623,2266,0,0,0,1,6,0,0,2189,0,0.000000,29,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63370,6,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369153',1369153,31.780800,-0.130703,-85.079163,-0.000144,130,0,0,0,1,6,0,0,112,0,0.000000,48,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62724,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369154',1369154,64.954559,6.905480,-85.581947,-0.000240,130,0,0,0,1,6,0,0,112,0,0.000000,48,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62452,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369346',1369346,72.281059,-23.743839,185.561203,-0.000240,130,0,0,0,1,6,0,0,171,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62180,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369146',1369146,39.957119,-8.666501,105.835701,-0.000144,130,0,0,0,1,6,0,0,171,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61908,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369149',1369149,17.379999,-13.717900,-20.370790,-0.000144,130,0,0,0,1,6,0,0,112,0,0.000000,46,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61636,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369143',1369143,69.590843,-13.496570,146.253998,-0.000144,130,0,0,0,1,6,0,0,171,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61364,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369166',1369166,163.313705,6.032107,-46.804680,-0.000240,130,0,0,0,1,6,0,0,112,0,0.000000,47,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61092,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369268',1369268,106.950401,7.553162,-65.018799,-0.000335,130,0,0,0,1,6,0,0,112,0,0.000000,47,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60820,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369151',1369151,44.338890,-1.270125,-66.438026,-0.000240,130,0,0,0,1,6,0,0,112,0,0.000000,48,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60548,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369152',1369152,14.275760,-0.570236,-87.355873,-0.000144,130,0,0,0,1,6,0,0,112,0,0.000000,48,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60276,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369150',1369150,35.561901,-13.693350,-33.797138,-0.000144,130,0,0,0,1,6,0,0,112,0,0.000000,48,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60004,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369147',1369147,52.015511,-8.974514,78.552917,-0.000144,130,0,0,0,1,6,0,0,171,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59732,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369148',1369148,45.149349,-13.324360,7.012329,-0.000144,130,0,0,0,1,6,0,0,112,0,0.000000,46,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59460,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369138',1369138,131.686401,-24.799540,198.020599,-0.000144,130,0,0,0,1,6,0,0,171,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59188,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369161',1369161,82.078217,7.186952,-63.706459,-0.000336,130,0,0,0,1,6,0,0,112,0,0.000000,47,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58916,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369162',1369162,91.386230,8.010939,-78.294083,-0.000336,130,0,0,0,1,6,0,0,112,0,0.000000,47,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58644,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369139',1369139,74.797401,-28.214760,204.149094,-0.000240,130,0,0,0,1,6,0,0,171,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58372,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369141',1369141,69.103951,-17.105560,168.596893,-0.000240,130,0,0,0,1,6,0,0,171,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58100,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369140',1369140,71.341454,-16.064501,165.951599,-0.000048,130,0,0,0,1,6,0,0,171,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57828,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369137',1369137,128.709793,-25.925119,164.324402,-0.000240,130,0,0,0,1,6,0,0,171,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57556,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369136',1369136,126.420898,-26.382891,167.406693,-0.000240,130,0,0,0,1,6,0,0,171,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57284,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369163',1369163,141.008499,6.515503,-53.391361,-0.000335,130,0,0,0,1,6,0,0,112,0,0.000000,47,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57012,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369142',1369142,48.614868,-17.861691,162.486298,-0.000144,130,0,0,0,1,6,0,0,171,0,0.000000,37,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56740,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369160',1369160,68.467163,6.973328,-53.543949,-0.000335,130,0,0,0,1,6,0,0,112,0,0.000000,47,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56468,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369157',1369157,46.957291,12.114440,-121.487297,-0.000048,130,0,0,0,1,6,0,0,112,0,0.000000,48,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56196,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc2315590',2315590,-133.217896,-9.529019,-60.232140,-0.000144,141,0,0,0,1,6,0,0,174,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55930,1,0,0,0,40,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc2315591',2315591,-106.534103,-12.212950,-111.347603,-0.000048,141,0,0,0,1,6,0,0,174,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55658,1,0,0,0,40,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc2315589',2315589,-77.122833,-6.427255,-71.078758,-0.000048,141,0,0,0,1,6,0,0,174,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55386,1,0,0,0,40,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc2315595',2315595,-37.583012,-11.337520,-125.597000,-0.000048,141,0,0,0,1,6,0,0,174,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55114,1,0,0,0,40,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc2321010',2321010,-46.306919,-9.823078,-139.634399,-0.000144,141,0,0,0,1,6,0,0,174,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54842,1,0,0,0,40,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc2315592',2315592,-105.572998,-9.525784,-86.103401,-0.000144,141,0,0,0,1,6,0,0,174,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54570,1,0,0,0,40,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc2315593',2315593,-77.411713,-13.583240,-132.304901,-0.000048,141,0,0,0,1,6,0,0,174,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54298,1,0,0,0,40,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc2315596',2315596,-4.898193,-11.638100,-36.911621,-0.000336,141,0,0,0,1,6,0,0,174,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54026,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1144165',1144165,28.954960,-9.060006,115.734299,-0.000336,25,0,0,0,1,6,0,0,25,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53760,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1144166',1144166,62.516159,-10.939160,113.847504,-0.000048,25,0,0,0,1,6,0,0,25,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53488,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1144163',1144163,72.983849,-14.541890,160.479095,-0.000336,25,0,0,0,1,6,0,0,25,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53216,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369245',1369245,106.026802,-24.064631,188.681503,-0.000336,25,0,0,0,1,6,0,0,25,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52944,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1144156',1144156,94.651657,-28.693371,205.296204,-0.000527,25,0,0,0,1,6,0,0,25,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52672,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1144167',1144167,33.890240,-7.635654,75.669441,-0.000144,25,0,0,0,1,6,0,0,25,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52400,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1144171',1144171,38.681568,-7.743955,37.247219,-0.000048,25,0,0,0,1,6,0,0,25,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52128,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1144157',1144157,58.451691,-24.165310,201.325806,-0.000144,25,0,0,0,1,6,0,0,25,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51856,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1144161',1144161,142.662994,-27.379681,171.947693,-0.000144,25,0,0,0,1,6,0,0,25,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51584,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1368560',1368560,117.309502,6.760285,-52.052681,-0.000336,29,0,0,0,1,6,0,0,29,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51318,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1368537',1368537,36.721581,-13.599010,-35.811329,-0.000144,29,0,0,0,1,6,0,0,29,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1368561',1368561,160.460007,3.641483,-40.868118,-0.000240,29,0,0,0,1,6,0,0,29,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50774,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1368540',1368540,43.942150,-1.029362,-68.421707,-0.000048,29,0,0,0,1,6,0,0,29,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50502,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1368539',1368539,45.805561,-2.063314,-62.499821,-0.000144,29,0,0,0,1,6,0,0,29,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1368542',1368542,19.448151,-0.446853,-89.062424,-0.000048,29,0,0,0,1,6,0,0,29,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1369266',1369266,110.856796,6.893584,-48.683529,-0.000336,29,0,0,0,1,6,0,0,29,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc2321008',2321008,38.345871,11.978280,-107.103104,-0.000144,29,0,0,0,1,6,0,0,29,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49414,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1368554',1368554,68.129494,7.053471,-60.042889,-0.000240,29,0,0,0,1,6,0,0,29,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49142,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1368556',1368556,145.311600,6.469276,-59.126930,-0.000432,29,0,0,0,1,6,0,0,29,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48870,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1368555',1368555,94.406288,8.411647,-78.379066,-0.000240,29,0,0,0,1,6,0,0,29,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48598,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1368548',1368548,55.925640,6.821295,-37.389530,-0.000144,29,0,0,0,1,6,0,0,29,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48326,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1368546',1368546,57.928291,9.733817,-102.176399,-0.000144,29,0,0,0,1,6,0,0,29,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48054,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc3741271',3741271,111.878098,-22.535490,167.695908,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,45,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47788,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc3741254',3741254,99.891838,-23.128969,165.796494,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,45,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47516,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc3741257',3741257,104.599197,-23.865101,164.789703,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,45,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47244,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc3741264',3741264,112.733398,-22.251949,161.306900,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,45,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46972,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc3741251',3741251,98.788353,-23.465191,165.496506,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,45,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46700,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc3741238',3741238,106.088799,-22.112341,171.394897,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,45,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46428,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc3741243',3741243,90.759720,-19.997610,170.030807,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,45,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46156,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc3741245',3741245,112.405098,-22.569309,167.395905,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,45,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45884,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1417988',1417988,-28.400631,-7.899245,-144.824905,-0.000335,747,0,0,0,0,6,0,0,436,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45618,1,0,0,0,40,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1417968',1417968,-35.348652,-13.415600,-78.564903,-0.789485,747,0,0,0,0,6,0,0,436,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45346,1,0,0,0,40,30119,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1417973',1417973,-116.777298,-9.689575,-86.778084,-0.845907,747,0,0,0,1,6,0,0,436,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45074,1,0,0,0,40,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1417981',1417981,-130.923203,-9.875401,-94.172653,-0.316281,747,0,0,0,0,6,0,0,436,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44802,1,0,0,0,40,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1417983',1417983,-119.401901,-9.597961,-63.828548,-0.000335,747,0,0,0,1,6,0,0,436,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44530,1,0,0,0,40,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1417985',1417985,-46.618172,-8.729055,-147.223099,-0.619153,747,0,0,0,1,6,0,0,436,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44258,1,0,0,0,40,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1417977',1417977,-64.164253,-8.163635,-66.880310,-0.000335,747,0,0,0,0,6,0,0,436,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43986,1,0,0,0,40,30119,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1417975',1417975,-66.605652,-8.194153,-62.211121,1.069872,747,0,0,0,0,6,0,0,436,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43714,1,0,0,0,40,30125,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1417984',1417984,-25.987261,-7.826045,-143.341904,-1.232881,748,0,0,0,0,6,0,0,103,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43448,1,0,0,0,40,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1417978',1417978,-10.940770,-10.482990,-42.618488,1.438273,748,0,0,0,0,6,0,0,103,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43176,1,0,0,0,0,30124,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1417976',1417976,-38.827709,-13.552420,-78.398163,1.524064,748,0,0,0,0,6,0,0,103,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42904,1,0,0,0,40,30057,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1417979',1417979,-110.368500,-9.353821,-74.723450,-0.000432,748,0,0,0,1,6,0,0,103,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42632,1,0,0,0,40,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1417986',1417986,-28.136749,-8.067919,-139.809906,0.215534,748,0,0,0,1,6,0,0,103,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42360,1,0,0,0,40,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1417982',1417982,-128.984497,-10.045940,-97.250549,-1.426129,748,0,0,0,0,6,0,0,103,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42088,1,0,0,0,40,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83423,'LVD_BNPC_04','f1f4','bnpc1417987',1417987,-37.033691,-9.445435,-137.254898,0.606746,748,0,0,0,1,6,0,0,103,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41816,1,0,0,0,40,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98336,'LVD_easter_2014','f1f4','bnpc4621558',4621558,-39.931252,-7.787434,-153.907501,-0.000000,2773,0,0,0,1,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22586,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83945,'LVD_guard_01','f1f4','bnpc3870413',3870413,454.933990,-1.199433,198.847107,-0.955594,582,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21300,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83945,'LVD_guard_01','f1f4','bnpc3870422',3870422,355.536987,-9.878284,296.848114,0.008243,581,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21034,5,0,0,0,0,30055,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83945,'LVD_guard_01','f1f4','bnpc3870434',3870434,313.523193,-6.315191,-66.822891,-0.288080,580,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20768,5,0,0,0,0,30053,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83945,'LVD_guard_01','f1f4','bnpc3870455',3870455,187.612900,-2.180824,-4.180596,-1.128507,582,0,0,0,0,6,0,0,453,0,0.000000,49,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20484,5,0,0,0,0,30054,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83945,'LVD_guard_01','f1f4','bnpc3870460',3870460,107.120598,-28.211399,276.198486,-1.402185,583,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20230,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83945,'LVD_guard_01','f1f4','bnpc3870467',3870467,52.319149,-39.485619,244.958893,1.526177,580,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19952,5,0,0,0,0,30055,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83945,'LVD_guard_01','f1f4','bnpc3870476',3870476,-125.156197,-45.844360,225.082901,-1.181595,580,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19680,5,0,0,0,0,30052,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83945,'LVD_guard_01','f1f4','bnpc3870506',3870506,-54.058109,-47.078789,320.834991,-0.000000,582,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19396,5,0,0,0,0,30054,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83945,'LVD_guard_01','f1f4','bnpc3871285',3871285,245.121399,-27.767639,161.763901,-1.237479,581,0,0,0,0,6,0,0,453,0,0.000000,35,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19130,5,0,0,0,0,30053,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3644174',3644174,372.375488,-6.853404,262.148804,1.500548,522,0,0,0,1,6,0,0,483,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,86520,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3644180',3644180,277.886902,-14.572410,286.427002,0.715661,522,0,0,0,1,6,0,0,483,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,86248,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3644182',3644182,195.280701,-26.654989,291.513092,-0.000000,522,0,0,0,1,6,0,0,483,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,85976,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3644183',3644183,191.430298,-27.210640,290.200195,-0.000000,522,0,0,0,1,6,0,0,483,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,85704,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3644185',3644185,240.668106,-23.798599,292.714508,-0.011315,522,0,0,0,1,6,0,0,483,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,85432,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3644186',3644186,235.446899,-24.303480,294.215607,-0.035373,522,0,0,0,1,6,0,0,483,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,85160,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3644173',3644173,374.867401,-6.888805,259.394714,1.566668,523,0,0,0,1,6,0,0,459,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,84894,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3644179',3644179,280.243591,-14.323240,288.291199,0.971253,523,0,0,0,1,6,0,0,459,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,84622,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3644304',3644304,274.961212,-17.624720,294.701508,-0.369766,522,0,0,0,1,6,0,0,483,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,84344,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3644305',3644305,272.030487,-18.228470,297.337189,-0.000048,522,0,0,0,1,6,0,0,483,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,84072,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3644306',3644306,274.179199,-15.802750,289.137085,-0.000048,522,0,0,0,1,6,0,0,483,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,83800,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3645010',3645010,271.534485,-26.257629,181.875000,-0.000048,522,0,0,0,1,6,0,0,483,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,83528,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3645011',3645011,274.586487,-25.966440,178.793106,-0.000048,522,0,6,0,1,6,0,0,483,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,83256,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3693496',3693496,278.625214,-15.660230,292.267303,-0.000000,522,0,0,0,1,6,0,0,483,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,82984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3644303',3644303,275.855408,-15.740250,290.265900,-0.179166,523,0,0,0,1,6,0,0,459,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,82718,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3645012',3645012,278.834808,-25.581869,184.518097,0.125405,523,0,0,0,1,6,0,0,459,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,82446,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3645013',3645013,279.067688,-25.616310,179.857803,0.102683,523,0,0,0,1,6,0,0,459,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,82174,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3645033',3645033,381.067688,1.259356,189.787796,0.702825,526,0,0,0,1,6,0,0,11,0,0.000000,27,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,81908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3645038',3645038,428.455811,-4.018900,214.436600,0.060497,524,0,0,0,1,6,0,0,488,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,81642,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3645043',3645043,353.970612,-2.280119,160.645706,-0.000000,524,0,0,0,1,6,0,0,488,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,81370,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3693501',3693501,424.109802,-1.828321,203.842102,-0.000000,524,0,0,0,1,6,0,0,488,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,81098,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3645039',3645039,425.922913,-4.338800,219.394501,0.024448,525,0,0,0,1,6,0,0,460,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,80832,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3645044',3645044,348.964508,-4.109400,162.172806,-0.000000,525,0,0,0,1,6,0,0,460,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,80560,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3693502',3693502,426.346588,-1.499437,200.426407,-0.000000,525,0,0,0,1,6,0,0,460,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,80288,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3645049',3645049,162.547302,-25.070620,164.158295,0.595433,522,0,0,0,1,6,0,0,483,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,79992,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3693629',3693629,62.000488,-37.510330,256.429688,-0.000000,522,0,0,0,1,6,0,0,483,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,79720,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3645051',3645051,165.065796,-26.338551,167.938599,0.731861,523,0,0,0,1,6,0,0,459,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,79454,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3693628',3693628,125.611298,-26.696051,186.152100,-0.000000,524,0,0,0,1,6,0,0,488,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,79194,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3693627',3693627,124.169899,-26.435169,179.804901,-0.000000,525,0,0,0,1,6,0,0,460,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,78928,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3693630',3693630,61.198738,-39.197708,252.601196,-0.000000,523,0,0,0,1,6,0,0,459,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,78638,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3645054',3645054,191.620499,-28.484369,169.811798,1.174184,527,0,0,0,1,6,0,0,217,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,78390,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3645055',3645055,54.682819,-39.771450,240.677002,1.549737,471,0,0,0,1,6,0,0,30,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,78124,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3645065',3645065,434.289093,-2.945038,208.758606,-1.570106,568,0,0,0,0,6,0,0,568,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,77858,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3645067',3645067,426.054199,-3.372291,209.117706,-1.570451,569,0,0,0,0,6,0,0,569,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,77592,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3645052',3645052,237.241806,-27.507099,165.248398,0.027325,524,0,0,0,1,6,0,0,488,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,76134,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81849,'Behest_b251_01','f1f4','bnpc3645053',3645053,244.610596,-27.147169,163.212494,-0.108531,525,0,0,0,1,6,0,0,460,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,75868,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84057,'FATE_005','f1f4','bnpc3879484',3879484,173.413498,-40.652729,344.873688,1.399747,496,0,0,0,1,6,0,0,516,0,0.000000,3,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,71510,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84057,'FATE_005','f1f4','bnpc3895756',3895756,193.893204,-34.006020,351.663696,1.313657,9,0,0,0,1,6,0,0,9,0,0.000000,2,1,15,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,71244,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84062,'FATE_007','f1f4','bnpc3879489',3879489,-247.627197,-31.535330,389.201202,0.275804,454,0,0,0,0,6,0,0,533,0,0.000000,30,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,70178,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83924,'FATE_010','f1f4','bnpc3888879',3888879,193.466904,-34.522202,336.041595,-1.570451,455,0,0,0,1,6,0,0,526,0,0.000000,5,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,68448,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83925,'FATE_011','f1f4','bnpc3888882',3888882,322.525909,-6.456363,-68.598297,-0.000000,456,0,0,0,0,6,0,0,526,0,0.000000,6,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,66950,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83925,'FATE_011','f1f4','bnpc3922008',3922008,376.411987,-6.445705,-85.461372,-0.000000,604,0,0,0,1,6,0,0,522,0,0.000000,7,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,66684,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83925,'FATE_011','f1f4','bnpc3922042',3922042,334.079193,-5.875987,-108.833900,-0.000000,604,0,0,0,1,6,0,0,522,0,0.000000,7,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,66412,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83925,'FATE_011','f1f4','bnpc3922045',3922045,352.996307,-6.301008,-66.582367,-0.000000,604,0,0,0,1,6,0,0,522,0,0.000000,7,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,66140,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83925,'FATE_011','f1f4','bnpc3922047',3922047,362.728394,-6.582836,-107.729797,-0.000000,604,0,0,0,1,6,0,0,522,0,0.000000,7,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,65868,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83925,'FATE_011','f1f4','bnpc3923699',3923699,333.418610,-5.857945,-108.055099,-0.000000,480,0,0,0,1,6,0,0,526,0,0.000000,6,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,65290,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83925,'FATE_011','f1f4','bnpc3923705',3923705,375.111298,-6.434400,-85.290207,-0.785398,480,0,0,0,1,6,0,0,526,0,0.000000,6,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,65018,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83925,'FATE_011','f1f4','bnpc3923709',3923709,361.905396,-6.564091,-107.184799,-0.000000,480,0,0,0,1,6,0,0,526,0,0.000000,6,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,64746,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83925,'FATE_011','f1f4','bnpc3923712',3923712,351.241089,-6.399443,-69.446548,3.141593,480,0,0,0,1,6,0,0,526,0,0.000000,6,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,64474,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83928,'FATE_012','f1f4','bnpc3873190',3873190,246.104095,-8.493932,14.286350,-0.000000,497,0,0,0,1,6,0,0,452,0,0.000000,8,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,63744,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83930,'FATE_014','f1f4','bnpc3888889',3888889,56.571949,-39.500000,243.141098,-0.000000,457,0,0,0,0,6,0,0,453,0,0.000000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,62258,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83930,'FATE_014','f1f4','bnpc3923992',3923992,68.181129,-37.599998,256.277008,-0.000000,603,0,0,0,0,6,0,0,521,0,0.000000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,61992,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83930,'FATE_014','f1f4','bnpc3923995',3923995,71.141899,-37.243290,256.397003,-0.000000,603,0,0,0,1,6,0,0,521,0,0.000000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,61720,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83930,'FATE_014','f1f4','bnpc3923997',3923997,65.323723,-38.000000,257.011505,-0.000000,603,0,0,0,1,6,0,0,521,0,0.000000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,61448,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83931,'FATE_015','f1f4','bnpc3888893',3888893,-103.493401,-45.046902,216.293701,-1.570451,458,0,0,0,1,6,0,0,453,0,0.000000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59042,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83932,'FATE_016','f1f4','bnpc3888939',3888939,-309.177704,-17.238970,217.037598,-0.000000,459,0,0,0,1,6,0,0,526,0,0.000000,25,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57272,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93536,'FATE_019','f1f4','bnpc4309463',4309463,22.091299,-0.438398,-85.289932,1.186824,2124,0,0,0,1,6,0,0,1668,0,0.000000,48,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,52462,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93989,'FATE_020','f1f4','bnpc4328470',4328470,-107.066299,-8.627159,-53.188438,-0.156042,2237,0,0,0,3,6,0,0,1860,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,51880,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93989,'FATE_020','f1f4','bnpc4328471',4328471,-144.706802,-9.439082,-54.900501,0.327245,2237,0,0,0,3,6,0,0,1860,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,51608,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93989,'FATE_020','f1f4','bnpc4328472',4328472,-140.079498,-10.042720,-99.675873,-1.532518,2237,0,0,0,3,6,0,0,1860,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,51336,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93989,'FATE_020','f1f4','bnpc4328488',4328488,-151.922806,-9.406037,-83.024170,-0.505773,2237,0,0,0,3,6,0,0,1860,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,51064,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93989,'FATE_020','f1f4','bnpc4328489',4328489,-138.542801,-9.334063,-47.467590,1.387794,2237,0,0,0,3,6,0,0,1860,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,50792,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93989,'FATE_020','f1f4','bnpc4328490',4328490,-51.938839,-7.880953,-152.814499,-0.000000,2237,0,0,0,3,6,0,0,1860,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,50520,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93989,'FATE_020','f1f4','bnpc4328491',4328491,-32.367481,-7.820879,-148.591507,1.485023,2237,0,0,0,3,6,0,0,1860,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,50248,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93989,'FATE_020','f1f4','bnpc4328492',4328492,-31.569540,-10.153180,-124.385597,1.265013,2237,0,0,0,3,6,0,0,1860,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,49976,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93989,'FATE_020','f1f4','bnpc4328581',4328581,-30.073339,-10.126660,-51.202068,1.234442,1151,0,0,0,0,6,0,0,1861,0,0.000000,47,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47214,1,0,0,0,0,30189,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93989,'FATE_020','f1f4','bnpc4328583',4328583,-28.550949,-9.757313,-50.272381,-1.247913,1150,0,0,0,0,6,0,0,621,0,0.000000,45,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46948,1,0,0,0,0,30293,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93989,'FATE_020','f1f4','bnpc4328584',4328584,-28.418409,-10.071000,-51.669628,-1.557207,1150,0,0,0,0,6,0,0,621,0,0.000000,45,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46676,1,0,0,0,0,30293,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93989,'FATE_020','f1f4','bnpc4328585',4328585,-27.223881,-9.262233,-50.200531,-1.158940,1150,0,0,0,0,6,0,0,621,0,0.000000,45,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46404,1,0,0,0,0,30293,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93989,'FATE_020','f1f4','bnpc4331524',4331524,-26.018499,-9.323523,-50.273449,-0.719566,1150,0,0,0,0,6,0,0,621,0,0.000000,45,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44884,1,0,0,0,0,30202,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93989,'FATE_020','f1f4','bnpc4331525',4331525,-26.509821,-9.141009,-49.216629,-1.383972,1150,0,0,0,0,6,0,0,621,0,0.000000,45,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44612,1,0,0,0,0,30202,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93537,'FATE_021','f1f4','bnpc4309474',4309474,107.888901,-22.272249,172.364105,-0.000000,2125,0,0,0,1,6,0,0,1669,0,0.000000,37,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,43882,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102729,'FATE_CNY_2015_01','f1f4','bnpc4867498',4867498,293.148712,-7.875356,-18.128981,-0.322930,3112,0,0,0,1,6,0,0,2908,0,0.000000,6,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,43468,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96895,'FATE_DQX_01','f1f4','bnpc4510412',4510412,-280.559692,-79.875137,481.835297,-0.000048,2310,0,0,0,1,6,0,0,2221,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,42734,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96895,'FATE_DQX_01','f1f4','bnpc4510413',4510413,-259.975586,-76.636871,508.961700,-0.897229,2311,0,0,0,1,6,0,0,2222,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,42468,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93920,'FATE_Firefall_2013_01','f1f4','bnpc4325239',4325239,264.874390,-6.079345,-51.536160,0.680678,2227,0,0,0,0,6,0,0,1807,0,0.000000,6,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,40142,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93920,'FATE_Firefall_2013_01','f1f4','bnpc4325240',4325240,320.927307,-6.377457,-52.305790,-0.698132,2227,0,0,0,0,6,0,0,1807,0,0.000000,6,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,39870,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93920,'FATE_Firefall_2013_01','f1f4','bnpc4325241',4325241,327.998199,-6.079337,8.047848,-1.047197,2227,0,0,0,0,6,0,0,1807,0,0.000000,6,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,39598,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93920,'FATE_Firefall_2013_01','f1f4','bnpc4325242',4325242,253.847107,-8.794817,11.794570,1.012291,2227,0,0,0,0,6,0,0,1807,0,0.000000,6,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,39326,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93920,'FATE_Firefall_2013_01','f1f4','bnpc4325238',4325238,291.172791,-8.045706,-16.973400,-0.000000,2087,0,0,0,0,7,0,0,1641,0,0.000000,7,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,39060,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97168,'FATE_XMAS_2013_01','f1f4','bnpc4537040',4537040,291.601013,-8.003879,-16.854000,0.923919,2440,0,0,0,0,6,0,0,2329,0,0.000000,11,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,36706,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97168,'FATE_XMAS_2013_01','f1f4','bnpc4537042',4537042,308.912506,-8.489729,-15.388030,0.472987,2441,0,0,0,1,6,0,0,2331,0,0.000000,2,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,36440,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93130,'QB_JobBrd_451_001','f1f4','bnpc4298952',4298952,52.805470,-15.950210,150.026398,0.619669,1963,0,0,0,8,6,0,0,2149,0,80.000000,45,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35326,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93130,'QB_JobBrd_451_001','f1f4','bnpc4298957',4298957,52.008339,-14.858960,142.302994,-0.000000,1964,0,0,0,8,6,0,0,104,0,80.000000,41,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35060,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93130,'QB_JobBrd_451_001','f1f4','bnpc4298958',4298958,53.579071,-14.231460,138.061096,-0.000000,1965,0,0,0,8,6,0,0,105,0,80.000000,41,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34794,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93130,'QB_JobBrd_451_001','f1f4','bnpc4298953',4298953,52.145351,-16.162649,152.176498,0.619669,1962,0,0,0,8,6,0,0,1946,0,80.000000,41,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34528,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93130,'QB_JobBrd_451_001','f1f4','bnpc4298954',4298954,55.149670,-15.937810,150.826706,0.619669,1962,0,0,0,8,6,0,0,1946,0,80.000000,41,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34256,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93211,'QB_JobSmn350_001','f1f4','bnpc4301637',4301637,-275.233093,-80.609138,479.012390,0.630878,2208,0,0,0,8,6,0,0,1640,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33206,1,0,0,0,0,0,0,669,307); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93211,'QB_JobSmn350_001','f1f4','bnpc4301671',4301671,-265.565094,-79.593117,481.745789,-0.000000,2204,0,0,0,1,6,0,0,1882,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32940,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93211,'QB_JobSmn350_001','f1f4','bnpc4301672',4301672,-273.358490,-80.021263,489.552704,-0.000000,2204,0,0,0,1,6,0,0,1882,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32668,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93211,'QB_JobSmn350_001','f1f4','bnpc4301673',4301673,-279.273102,-80.008827,477.542114,-0.000000,2204,0,0,0,1,6,0,0,1882,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32396,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93211,'QB_JobSmn350_001','f1f4','bnpc4301681',4301681,-287.312500,-79.449043,489.492706,-1.023332,2205,0,0,0,1,6,0,0,1971,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32130,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93211,'QB_JobSmn350_001','f1f4','bnpc4301682',4301682,-281.252686,-79.383888,504.219086,0.116560,2205,0,0,0,1,6,0,0,1971,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31858,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93211,'QB_JobSmn350_001','f1f4','bnpc4301686',4301686,-276.373108,-81.130943,463.548492,-0.490251,2205,0,0,0,1,6,0,0,1971,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31586,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93211,'QB_JobSmn350_001','f1f4','bnpc4301698',4301698,-273.336700,-79.546722,497.520508,-0.140465,2206,0,0,0,1,6,0,0,2211,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31320,1,0,0,0,0,0,0,670,308); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93211,'QB_JobSmn350_001','f1f4','bnpc4301699',4301699,-275.165985,-79.749443,492.925690,-0.494716,2207,0,0,0,1,6,0,0,1881,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31054,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93211,'QB_JobSmn350_001','f1f4','bnpc4301700',4301700,-268.302002,-79.425583,488.855713,-1.192987,2203,0,0,0,1,6,0,0,1403,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30788,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93211,'QB_JobSmn350_001','f1f4','bnpc4321624',4321624,-297.215088,-79.708527,498.453796,-0.000000,2205,0,0,0,1,6,0,0,1971,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29886,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93211,'QB_JobSmn350_001','f1f4','bnpc4321625',4321625,-296.653992,-79.259583,473.411713,-0.000000,2205,0,0,0,1,6,0,0,1971,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29614,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93211,'QB_JobSmn350_001','f1f4','bnpc4321626',4321626,-270.867004,-80.471550,484.088409,-0.000000,2205,0,0,0,1,6,0,0,1971,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29342,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93211,'QB_JobSmn350_001','f1f4','bnpc4321627',4321627,-255.805695,-79.469772,474.738708,-0.000000,2205,0,0,0,1,6,0,0,1971,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29070,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93211,'QB_JobSmn350_001','f1f4','bnpc4321628',4321628,-269.502289,-77.183929,511.573608,-0.000000,2205,0,0,0,1,6,0,0,1971,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28798,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93211,'QB_JobSmn350_001','f1f4','bnpc4321629',4321629,-294.530396,-79.216713,514.253479,-0.000000,2205,0,0,0,1,6,0,0,1971,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28526,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103415,'QST_BanIxa101','f1f4','bnpc4890723',4890723,325.133392,-13.937260,180.230896,-0.498423,2860,0,0,0,1,6,0,0,713,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24134,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103415,'QST_BanIxa101','f1f4','bnpc4890724',4890724,303.295410,-18.909170,190.203293,1.015559,2860,0,0,0,1,6,0,0,713,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23862,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103415,'QST_BanIxa101','f1f4','bnpc4890725',4890725,319.591797,-16.121559,206.492798,-0.103142,2860,0,0,0,1,6,0,0,713,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23590,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103415,'QST_BanIxa101','f1f4','bnpc4890726',4890726,323.564209,-14.078110,196.500595,-1.285676,2860,0,0,0,1,6,0,0,713,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23318,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100782,'QST_BanIxa103','f1f4','bnpc4890812',4890812,239.637299,-29.523199,205.985794,-0.216811,2860,0,0,0,1,6,0,0,713,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100782,'QST_BanIxa103','f1f4','bnpc4890813',4890813,218.531097,-28.296930,209.025696,0.406516,2860,0,0,0,1,6,0,0,713,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100782,'QST_BanIxa103','f1f4','bnpc4890814',4890814,213.677307,-26.848579,230.788895,1.262310,2860,0,0,0,1,6,0,0,713,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100782,'QST_BanIxa103','f1f4','bnpc4890815',4890815,236.055405,-25.184620,227.992798,0.828505,2860,0,0,0,1,6,0,0,713,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21414,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103420,'QST_BanIxa201','f1f4','bnpc4890855',4890855,85.997887,-39.061470,345.044891,-0.882624,2860,0,0,0,1,6,0,0,713,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103420,'QST_BanIxa201','f1f4','bnpc4890856',4890856,85.064163,-42.746571,363.224396,-0.256973,2860,0,0,0,1,6,0,0,713,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19774,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103420,'QST_BanIxa201','f1f4','bnpc4890857',4890857,66.166893,-41.928410,357.009399,-0.827088,2860,0,0,0,1,6,0,0,713,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19502,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103422,'QST_BanIxa202','f1f4','bnpc4890861',4890861,-40.160568,-47.314850,404.852997,-0.506245,170,0,0,0,1,6,0,0,713,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18812,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103423,'QST_BanIxa203','f1f4','bnpc4890865',4890865,-202.754807,-60.380791,352.284485,-0.000000,2860,0,0,0,1,6,0,0,713,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18262,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103432,'QST_BanIxa405','f1f4','bnpc4893688',4893688,4.755402,0.253400,-87.156898,1.319609,170,0,0,0,1,6,0,0,713,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16072,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103432,'QST_BanIxa405','f1f4','bnpc4893689',4893689,49.049999,6.807400,-48.809101,-0.000000,170,0,0,0,1,6,0,0,713,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15800,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103432,'QST_BanIxa405','f1f4','bnpc4893690',4893690,122.789299,6.688600,-71.549599,-1.144152,170,0,0,0,1,6,0,0,713,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15528,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103432,'QST_BanIxa405','f1f4','bnpc4893691',4893691,139.259598,6.630200,-50.015800,0.481536,170,0,0,0,1,6,0,0,713,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15256,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103432,'QST_BanIxa405','f1f4','bnpc4893692',4893692,159.636993,-1.678600,-23.300200,1.545039,170,0,0,0,1,6,0,0,713,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102896,'QST_ClsCnj511_001','f1f4','bnpc4876993',4876993,-52.390541,-47.094501,417.730713,1.261771,3121,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12962,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102896,'QST_ClsCnj511_001','f1f4','bnpc4876994',4876994,-52.448429,-46.998959,414.128998,1.236739,3121,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12690,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96717,'QST_GaiUsd203','f1f4','bnpc4502639',4502639,-141.601898,-9.550795,-81.458641,-1.146837,2448,0,0,0,1,6,0,0,909,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6584,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96717,'QST_GaiUsd203','f1f4','bnpc4502640',4502640,-156.597305,-9.697386,-83.069107,1.449614,2449,0,0,0,1,6,0,0,910,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6318,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96717,'QST_GaiUsd203','f1f4','bnpc4502641',4502641,-151.867996,-9.332874,-70.170250,0.855891,2450,0,0,0,1,6,0,0,911,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6052,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc3818957',3818957,309.987091,-8.743469,33.371460,-0.921889,1426,0,0,0,1,6,0,0,193,0,0.000000,12,0,120,1,0,1,0,30,0,0,0,0,1,1,0.000000,1.000000,40400,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc3818959',3818959,301.716614,-9.903137,40.726318,0.750080,1426,0,0,0,1,6,0,0,193,0,0.000000,12,0,120,1,0,1,0,30,0,0,0,0,1,1,0.000000,1.000000,40128,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc3818961',3818961,321.645508,-5.902586,24.193510,-0.587476,1426,0,0,0,1,6,0,0,193,0,0.000000,12,0,120,1,0,1,0,30,0,0,0,0,1,1,0.000000,1.000000,39856,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc3818962',3818962,325.551300,-5.722229,27.664551,-1.031474,1426,0,0,0,1,6,0,0,193,0,0.000000,12,0,120,1,0,1,0,30,0,0,0,0,1,1,0.000000,1.000000,39584,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc3818963',3818963,326.763214,-8.957837,43.818481,-0.878601,1426,0,0,0,1,6,0,0,193,0,0.000000,12,0,120,1,0,1,0,30,0,0,0,0,1,1,0.000000,1.000000,39312,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc3818958',3818958,329.299896,-7.025407,35.985260,-0.858271,1427,0,0,0,1,6,0,0,194,0,0.000000,12,0,120,1,0,1,0,30,0,0,0,0,1,1,0.000000,1.000000,39046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc3818960',3818960,336.889008,-6.553727,35.578991,-1.503037,1427,0,0,0,1,6,0,0,194,0,0.000000,12,0,120,1,0,1,0,30,0,0,0,0,1,1,0.000000,1.000000,38774,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc3818964',3818964,343.057495,-7.286170,41.947021,-0.969347,1427,0,0,0,1,6,0,0,194,0,0.000000,12,0,120,1,0,1,0,30,0,0,0,0,1,1,0.000000,1.000000,38502,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc3818966',3818966,331.356201,-8.040903,42.639431,-1.522094,1427,0,0,0,1,6,0,0,194,0,0.000000,12,0,120,1,0,1,0,30,0,0,0,0,1,1,0.000000,1.000000,38230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc3818967',3818967,316.988586,-8.925188,41.092529,-1.271785,1427,0,0,0,1,6,0,0,194,0,0.000000,12,0,120,1,0,1,0,30,0,0,0,0,1,1,0.000000,1.000000,37958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc3818968',3818968,346.503387,-6.469304,31.143681,-1.054284,1427,0,0,0,1,6,0,0,194,0,0.000000,12,0,120,1,0,1,0,30,0,0,0,0,1,1,0.000000,1.000000,37686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc3818956',3818956,409.933594,-5.508545,67.093872,1.565926,1451,0,0,0,8,6,0,0,597,0,0.000000,16,0,120,1,0,2,0,40,11,0,0,0,1,0,0.000000,1.000000,37300,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc4246567',4246567,413.584503,-5.764809,62.576660,-0.593720,1426,0,0,0,8,6,0,0,193,0,0.000000,12,0,120,1,0,2,0,40,11,0,0,0,1,0,0.000000,1.000000,36944,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc4246568',4246568,417.785309,-5.041035,65.840233,-1.013846,1426,0,0,0,8,6,0,0,193,0,0.000000,12,0,120,1,0,2,0,40,11,0,0,0,1,0,0.000000,1.000000,36672,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc4246569',4246569,411.886688,-5.508545,78.205307,0.820606,1427,0,0,0,8,6,0,0,194,0,0.000000,12,0,120,1,0,2,0,40,11,0,0,0,1,0,0.000000,1.000000,36406,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc4246638',4246638,419.444885,-4.829816,81.284042,-1.396933,1426,0,0,0,8,6,0,0,193,0,0.000000,12,0,120,1,0,2,0,40,11,0,0,0,1,0,0.000000,1.000000,35824,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc4246639',4246639,380.361603,-6.912354,74.387703,-1.054436,1426,0,0,0,8,6,0,0,193,0,0.000000,12,0,120,1,0,1,0,40,0,0,0,0,0,0,0.000000,1.000000,35552,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc4246640',4246640,416.100708,-5.437982,86.306549,-0.129505,1427,0,0,0,8,6,0,0,194,0,0.000000,12,0,120,1,0,2,0,40,11,0,0,0,1,0,0.000000,1.000000,35286,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc4246724',4246724,354.363800,-6.773656,43.592770,-0.334940,1454,0,0,0,8,6,0,0,517,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35026,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc4246863',4246863,370.714203,-8.222055,66.925041,0.430624,1453,0,0,0,8,6,0,0,192,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34760,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83349,'QB_ClsArc003_001','f1f4','bnpc4246864',4246864,368.566711,-8.515950,66.126053,0.752765,1453,0,0,0,8,6,0,0,192,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34488,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83345,'QB_ClsLnc006_003','f1f4','bnpc3818846',3818846,-291.767792,-53.971191,289.143188,1.388801,547,0,0,0,8,6,0,0,614,0,0.200000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33006,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83345,'QB_ClsLnc006_003','f1f4','bnpc4312452',4312452,-288.471802,-55.436039,310.993988,0.483882,1531,0,0,0,1,6,0,0,1890,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31988,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83345,'QB_ClsLnc006_003','f1f4','bnpc4312453',4312453,-277.831787,-49.981560,276.819092,-0.104437,1531,0,0,0,1,6,0,0,1890,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31716,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83345,'QB_ClsLnc006_003','f1f4','bnpc4312454',4312454,-267.230988,-54.886120,290.877289,-1.282864,1532,0,0,0,1,6,0,0,1890,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31450,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83345,'QB_ClsLnc006_003','f1f4','bnpc4312455',4312455,-280.659210,-56.199039,304.951385,-0.000048,1533,0,0,0,3,6,0,0,0,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31184,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73843,'QST_BNPC_001','f1f4','bnpc1450088',1450088,429.423096,-0.461507,65.155182,-1.133810,113,0,0,0,1,10,0,0,190,0,0.000000,8,0,0,0,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,30558,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73843,'QST_BNPC_001','f1f4','bnpc2313265',2313265,357.869690,-3.093587,11.541720,-0.026175,155,0,0,0,1,10,0,0,189,0,0.000000,8,0,0,0,0,0,0,0,0,0,0,0,0,0,4.000000,1.000000,30292,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (76817,'QST_CLSCNJ001_001','f1f4','bnpc2320919',2320919,325.184814,-5.217453,390.488007,-0.000240,294,0,0,0,1,10,0,0,134,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28850,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82995,'QST_ClsLnc005_003','f1f4','bnpc3781827',3781827,29.416491,-54.284161,513.033081,-0.994236,566,0,0,0,1,6,0,0,613,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,28104,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92671,'QST_GaiUsa802','f1f4','bnpc4285321',4285321,-264.120514,-54.659130,316.462708,0.301773,1899,0,0,0,1,6,0,0,1985,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9650,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92676,'QST_GaiUsa806','f1f4','bnpc4286256',4286256,-280.318909,-3.854239,273.027100,-1.086638,40,0,0,0,1,6,0,0,40,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8236,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92676,'QST_GaiUsa806','f1f4','bnpc4286261',4286261,-345.997101,-12.530580,223.955002,-0.990249,40,0,0,0,1,6,0,0,40,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7964,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92676,'QST_GaiUsa806','f1f4','bnpc4286265',4286265,-249.566299,-25.654249,223.995300,-1.259880,40,0,0,0,1,6,0,0,40,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7692,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92840,'QST_GaiUsa809','f1f4','bnpc4286954',4286954,-102.875504,-51.180401,382.715088,-0.543868,17,0,0,0,1,6,0,0,17,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6746,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93154,'QST_GaiUsa904','f1f4','bnpc4299601',4299601,-302.160004,-49.999359,330.559998,-0.589093,182,0,0,0,1,6,0,0,207,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5572,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92880,'QST_GaiUsb603','f1f4','bnpc4289816',4289816,-281.143890,-54.744980,290.249908,-0.342604,138,0,0,0,1,6,0,0,399,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4942,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92880,'QST_GaiUsb603','f1f4','bnpc4289819',4289819,-283.398499,-52.087849,281.608887,0.437772,138,0,0,0,1,6,0,0,399,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4670,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92935,'QST_GaiUsb711','f1f4','bnpc4293068',4293068,46.874561,-19.663719,173.984894,0.939338,113,0,0,0,1,6,0,0,660,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4198,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92935,'QST_GaiUsb711','f1f4','bnpc4293071',4293071,49.626831,-20.688551,179.707397,-0.344828,113,0,0,0,1,6,0,0,660,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3926,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92939,'QST_GaiUsb713','f1f4','bnpc4293085',4293085,36.341511,-13.446640,12.593780,0.524486,1912,0,0,0,1,6,0,0,2004,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3468,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92939,'QST_GaiUsb713','f1f4','bnpc4293087',4293087,40.379299,-13.508400,11.288890,-0.000048,1912,0,0,0,1,6,0,0,2004,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3196,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92939,'QST_GaiUsb713','f1f4','bnpc4293088',4293088,37.891140,-13.564520,10.726390,0.203611,1912,0,0,0,1,6,0,0,2004,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2924,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (78642,'QST_SubFst028_001','f1f4','bnpc2653890',2653890,199.727905,-31.477810,347.795288,0.862070,163,0,0,0,1,6,0,0,191,0,0.000000,7,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1026,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94916,'LVD_bnpc_01','f1fa','bnpc4405787',4405787,0.000000,0.000000,-10.000000,-0.000000,221,0,0,0,8,6,0,0,718,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19580,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94916,'LVD_bnpc_01','f1fa','bnpc4405789',4405789,-15.000000,0.000000,13.000000,0.974559,222,0,0,0,8,6,0,0,719,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19314,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94916,'LVD_bnpc_01','f1fa','bnpc4405791',4405791,-21.000000,0.000000,0.000000,1.531172,223,0,0,0,8,6,0,0,720,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19048,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94916,'LVD_bnpc_01','f1fa','bnpc4405792',4405792,0.000000,0.000000,-21.000000,-0.000000,224,0,0,0,8,6,0,0,721,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18782,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94916,'LVD_bnpc_01','f1fa','bnpc4405794',4405794,16.000000,0.000000,0.000000,-1.362040,225,0,0,0,8,6,0,0,722,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18516,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94916,'LVD_bnpc_01','f1fa','bnpc4405795',4405795,0.000000,0.000000,0.000000,-0.000000,226,0,0,0,8,6,0,0,723,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18250,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94916,'LVD_bnpc_01','f1fa','bnpc4405797',4405797,0.000000,-0.000003,21.000000,-0.043862,227,0,0,0,8,6,0,0,724,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17984,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94916,'LVD_bnpc_01','f1fa','bnpc4405798',4405798,0.000000,0.000000,0.000000,-0.000000,228,0,0,0,8,6,0,0,725,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17718,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94916,'LVD_bnpc_01','f1fa','bnpc4440620',4440620,2.148135,0.000000,3.522915,-0.000000,2286,0,0,0,8,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17452,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94916,'LVD_bnpc_01','f1fa','bnpc4406218',4406218,-0.121937,0.000000,3.948129,-0.000000,2946,0,0,0,8,6,0,0,721,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17186,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94916,'LVD_bnpc_01','f1fa','bnpc4493420',4493420,-1.239345,0.000000,2.318576,-0.000000,2946,0,0,0,8,6,0,0,722,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16914,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94916,'LVD_bnpc_01','f1fa','bnpc4493421',4493421,0.559351,0.000000,2.318576,-0.000000,2946,0,0,0,8,6,0,0,725,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16642,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98323,'LVD_bnpc_02','f1fa','bnpc4620975',4620975,-2.000000,0.000000,-3.000000,-0.000000,229,0,0,0,0,6,0,0,718,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16260,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98323,'LVD_bnpc_02','f1fa','bnpc4620976',4620976,2.000000,0.000000,3.000000,-0.000000,230,0,0,0,0,6,0,0,719,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15994,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98323,'LVD_bnpc_02','f1fa','bnpc4620977',4620977,2.000000,0.000000,-3.000000,-0.000000,231,0,0,0,0,6,0,0,720,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15728,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98323,'LVD_bnpc_02','f1fa','bnpc4620978',4620978,-4.000000,0.000000,0.000000,-0.000000,232,0,0,0,0,6,0,0,721,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15462,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98323,'LVD_bnpc_02','f1fa','bnpc4620979',4620979,4.000000,0.000000,0.000000,-0.000000,233,0,0,0,0,6,0,0,722,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15196,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98323,'LVD_bnpc_02','f1fa','bnpc4620980',4620980,-2.000000,0.000000,3.000000,-0.000000,234,0,0,0,0,6,0,0,723,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14930,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98323,'LVD_bnpc_02','f1fa','bnpc4620981',4620981,0.000000,0.000000,4.000000,-0.000000,235,0,0,0,0,6,0,0,724,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14664,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98323,'LVD_bnpc_02','f1fa','bnpc4620982',4620982,0.000000,0.000000,-8.000000,-0.000000,236,0,0,0,0,6,0,0,2752,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14398,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98323,'LVD_bnpc_02','f1fa','bnpc4620983',4620983,8.853262,0.000000,-4.575181,-0.000000,2946,0,0,0,0,6,0,0,720,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14078,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98323,'LVD_bnpc_02','f1fa','bnpc4620984',4620984,8.853262,-0.000000,-0.780932,-0.000000,2946,0,0,0,0,6,0,0,721,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13806,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98323,'LVD_bnpc_02','f1fa','bnpc4620985',4620985,8.853262,-0.000000,2.281526,-0.000000,2946,0,0,0,0,6,0,0,722,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13534,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98323,'LVD_bnpc_02','f1fa','bnpc4660347',4660347,9.008945,-0.000000,4.349893,-0.000000,2947,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13316,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99964,'LVD_bnpc_01','f1fb','bnpc4712010',4712010,0.000000,75.084084,0.000000,-0.000000,2987,0,0,0,0,6,0,0,2832,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22088,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99964,'LVD_bnpc_01','f1fb','bnpc4712011',4712011,5.027565,75.000000,1.469313,-0.000000,2989,0,0,0,0,6,0,0,2833,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21822,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99964,'LVD_bnpc_01','f1fb','bnpc4724036',4724036,4.951025,75.000000,3.833662,-0.000000,2988,0,0,0,0,6,0,0,2832,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21556,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103458,'LVD_bnpc_01_Real','f1fb','bnpc4891505',4891505,0.000000,75.084084,0.000000,-0.000000,3128,0,0,0,0,6,0,0,2832,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21210,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103458,'LVD_bnpc_01_Real','f1fb','bnpc4891506',4891506,5.027565,75.000000,1.469313,-0.000000,3130,0,0,0,0,6,0,0,2833,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20944,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103458,'LVD_bnpc_01_Real','f1fb','bnpc4891507',4891507,4.951025,75.000000,3.833662,-0.000000,3129,0,0,0,0,6,0,0,2832,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20678,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100179,'LVD_bnpc_02','f1fb','bnpc4724037',4724037,0.000000,75.084084,0.000000,-0.000000,2990,0,0,0,0,6,0,0,2832,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20328,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100179,'LVD_bnpc_02','f1fb','bnpc4724038',4724038,5.027565,75.000000,1.469313,-0.000000,2992,0,0,0,0,6,0,0,2833,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20062,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100179,'LVD_bnpc_02','f1fb','bnpc4724039',4724039,4.951025,75.000000,3.833662,-0.000000,2991,0,0,0,0,6,0,0,2832,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19796,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100179,'LVD_bnpc_02','f1fb','bnpc4725363',4725363,7.940563,75.000000,2.130820,-0.000000,2997,0,0,0,0,6,0,0,2833,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19530,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc1513708',1513708,-203.204498,-4.776123,102.098099,1.032720,1353,0,0,0,1,3,0,0,151,0,1.000000,24,0,0,0,0,8,0,32,2,0,1,0,1,0,0.000000,1.000000,50204,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc3910785',3910785,-160.265305,-4.125085,110.795700,1.323174,1353,0,0,0,1,3,0,0,151,0,1.000000,24,0,0,0,0,8,0,32,2,0,1,0,1,0,0.000000,1.000000,49932,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc1513711',1513711,-183.428802,-5.539063,109.391800,0.748402,1353,0,0,0,1,3,0,0,151,0,1.000000,24,0,0,0,0,8,0,32,2,0,1,0,1,0,0.000000,1.000000,49660,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc1513709',1513709,-197.528107,-4.959229,107.713402,1.498674,1353,0,0,0,1,3,0,0,151,0,1.000000,24,0,0,0,0,8,0,32,2,0,1,0,1,0,0.000000,1.000000,49388,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc3910784',3910784,-150.560806,-5.000095,119.462898,0.748786,1353,0,0,0,1,3,0,0,151,0,1.000000,24,0,0,0,0,8,0,32,2,0,1,0,1,0,0.000000,1.000000,49116,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc3910782',3910782,-147.905701,-5.189941,110.521103,0.748402,1353,0,0,0,1,3,0,0,151,0,1.000000,24,0,0,0,0,8,0,32,2,0,1,0,1,0,0.000000,1.000000,48844,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc3910781',3910781,-209.063904,-5.181117,75.528267,0.748594,1353,0,0,0,1,3,0,0,151,0,1.000000,24,0,0,0,0,8,0,32,2,0,1,0,1,0,0.000000,1.000000,48572,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc1513707',1513707,-208.026199,-5.447510,88.578613,-1.131903,1353,0,0,0,1,3,0,0,151,0,1.000000,24,0,0,0,0,8,0,32,2,0,1,0,1,0,0.000000,1.000000,48300,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc3908742',3908742,-208.056793,-6.149414,47.257198,-0.750176,1354,0,0,0,1,6,0,0,153,0,1.000000,24,0,0,0,0,7,0,32,1,0,1,0,1,0,0.000000,1.000000,48034,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc3908753',3908753,-212.573395,-5.508545,42.435299,-0.750176,1354,0,0,0,1,6,0,0,153,0,1.000000,24,0,0,0,0,7,0,32,1,0,1,0,1,0,0.000000,1.000000,47762,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc1513288',1513288,-211.413803,0.289917,-16.739140,-0.750176,1354,0,0,0,1,6,0,0,153,0,1.000000,24,0,0,0,0,4,0,32,0,0,1,0,1,0,0.000000,1.000000,47490,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc1513276',1513276,-206.042603,-1.205505,-86.839172,0.084610,1354,0,0,0,1,6,0,0,153,0,1.000000,24,0,0,0,0,2,0,32,1,0,1,0,1,0,0.000000,1.000000,47218,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc1513274',1513274,-271.198608,4.287720,-76.157837,0.089691,1354,0,0,0,1,6,0,0,153,0,1.000000,24,0,0,0,0,1,0,32,1,0,1,0,1,0,0.000000,1.000000,46946,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc1513273',1513273,-264.240509,4.348816,-76.737671,-1.531318,1354,0,0,0,1,6,0,0,153,0,1.000000,24,0,0,0,0,1,0,32,1,0,1,0,1,0,0.000000,1.000000,46674,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc1513280',1513280,-144.304596,-0.076355,50.186890,0.941783,1354,0,0,0,1,6,0,0,153,0,1.000000,24,0,0,0,0,5,0,32,0,0,1,0,1,0,0.000000,1.000000,46402,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc3910779',3910779,-180.926300,-0.930908,-12.466670,-1.430315,1354,0,0,0,1,6,0,0,153,0,1.000000,24,0,0,0,0,6,0,32,2,0,1,0,1,0,0.000000,1.000000,46130,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc3910780',3910780,-167.650894,-1.144470,-20.767580,-1.430315,1354,0,0,0,1,6,0,0,153,0,1.000000,24,0,0,0,0,6,0,32,2,0,1,0,1,0,0.000000,1.000000,45858,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc1513281',1513281,-180.895706,0.625610,-21.133789,0.199564,1354,0,0,0,1,6,0,0,153,0,1.000000,24,0,0,0,0,6,0,32,2,0,1,0,1,0,0.000000,1.000000,45586,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc1513570',1513570,-201.678497,-1.144470,-77.958366,-1.541580,1359,0,0,0,0,0,0,0,154,0,1.000000,24,0,0,0,0,2,0,32,1,0,1,0,1,0,0.000000,1.000000,45320,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc1513584',1513584,-140.276199,-0.015320,44.296879,-0.722947,1359,0,0,0,0,0,0,0,154,0,1.000000,24,0,0,0,0,5,0,32,0,0,1,0,1,0,0.000000,1.000000,45048,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc3908734',3908734,-215.960907,0.930786,-13.382200,1.311766,1359,0,0,0,0,0,0,0,154,0,1.000000,24,0,0,0,0,4,0,32,0,0,1,0,1,0,0.000000,1.000000,44776,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc3642507',3642507,-234.790604,-0.076355,-125.993797,0.051150,1361,0,0,0,0,14,0,0,157,0,1.000000,24,2,0,0,0,3,0,32,10,0,1,0,1,0,0.000000,1.000000,44510,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc3642509',3642509,-233.547394,-0.619643,-104.547401,0.604387,1361,0,0,0,0,6,0,0,157,0,1.000000,24,2,0,0,0,3,0,32,10,0,1,0,1,0,0.000000,1.000000,44238,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (74193,'LVD_BNPC_01','f1r1','bnpc3642508',3642508,-251.483994,-0.228943,-118.913597,1.057935,1361,0,0,0,0,6,0,0,157,0,1.000000,24,2,0,0,0,3,0,32,10,0,1,0,1,0,0.000000,1.000000,43966,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3641701',3641701,17.410521,-16.006710,1.937866,-0.001199,1355,0,0,0,1,8,0,0,441,0,1.000000,24,0,120,1,0,15,0,32,2,0,1,0,1,0,0.000000,1.000000,43544,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3641683',3641683,-55.252991,-3.463867,112.230103,-0.571656,1355,0,0,0,1,6,0,0,441,0,1.000000,24,0,120,1,0,10,0,32,1,0,1,0,1,0,0.000000,1.000000,43272,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3641692',3641692,52.140011,-16.983280,43.198238,1.443162,1355,0,0,0,1,8,0,0,441,0,1.000000,24,0,120,1,0,13,0,32,2,0,1,0,1,0,0.000000,1.000000,43000,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3641691',3641691,40.848389,-17.013849,40.390629,0.982578,1355,0,0,0,1,8,0,0,441,0,1.000000,24,0,120,1,0,13,0,32,2,0,1,0,1,0,0.000000,1.000000,42728,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3641690',3641690,45.120972,-17.532650,54.703609,-0.000815,1355,0,0,0,1,6,0,0,441,0,1.000000,24,0,120,1,0,13,0,32,2,0,1,0,1,0,0.000000,1.000000,42456,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3641702',3641702,15.457340,-16.006710,31.204710,-0.156277,1355,0,0,0,1,6,0,0,441,0,1.000000,24,0,120,1,0,15,0,32,2,0,1,0,1,0,0.000000,1.000000,42184,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3641660',3641660,-72.190491,-5.111816,114.793602,0.529998,1355,0,0,0,1,5,0,0,441,0,1.000000,24,0,120,1,0,10,0,32,1,0,1,0,1,0,0.000000,1.000000,41912,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3641706',3641706,14.328190,-15.213320,11.825680,-0.219746,1355,0,0,0,1,6,0,0,441,0,1.000000,24,0,120,1,0,15,0,32,2,0,1,0,1,0,0.000000,1.000000,41640,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3909168',3909168,16.403440,-13.046510,84.580688,-1.410277,1356,0,0,0,1,6,0,0,158,0,1.000000,24,0,0,0,0,12,0,32,1,0,1,0,1,0,0.000000,1.000000,41374,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3910749',3910749,75.150627,-15.213320,14.663880,-1.410085,1356,0,0,0,1,6,0,0,158,0,1.000000,24,0,0,0,0,14,0,32,2,0,1,0,1,0,0.000000,1.000000,41102,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3909167',3909167,11.886720,-13.046510,80.308228,-1.410085,1356,0,0,0,1,6,0,0,158,0,1.000000,24,0,0,0,0,12,0,32,1,0,1,0,1,0,0.000000,1.000000,40830,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3921258',3921258,-75.638977,-6.973389,20.492800,0.774672,1357,0,0,0,1,6,0,0,438,0,1.000000,24,0,0,0,0,17,0,32,1,0,1,0,1,0,0.000000,1.000000,40564,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3908842',3908842,-22.293461,-9.018127,136.278198,-0.951274,1357,0,0,0,1,6,0,0,438,0,1.000000,24,0,0,0,0,11,0,32,1,0,1,0,1,0,0.000000,1.000000,40292,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3910801',3910801,90.012939,-16.006710,25.009520,-0.951274,1357,0,0,0,1,6,0,0,438,0,1.000000,24,0,0,0,0,14,0,32,1,0,1,0,1,0,0.000000,1.000000,40020,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3910755',3910755,-42.984680,-9.018127,51.773800,0.774672,1357,0,0,0,1,6,0,0,438,0,1.000000,24,0,0,0,0,18,0,32,1,0,1,0,1,0,0.000000,1.000000,39748,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc1513689',1513689,8.255066,-9.079163,-51.407650,0.443183,1359,0,0,0,0,0,0,0,154,0,1.000000,24,0,0,0,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39452,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc1513285',1513285,-73.807922,-7.003906,20.218201,-0.402580,1360,0,0,0,0,6,0,0,155,0,1.000000,24,0,0,0,0,17,0,32,1,0,1,0,1,0,0.000000,1.000000,39210,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3642518',3642518,-43.472961,-8.926575,-41.428280,1.161816,1361,0,0,0,0,6,0,0,157,0,1.000000,24,0,0,0,0,16,0,32,2,0,1,0,1,0,0.000000,1.000000,38914,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3642517',3642517,-41.397770,-9.079163,-52.750488,0.353588,1361,0,0,0,1,6,0,0,157,0,1.000000,24,0,0,0,0,16,0,32,2,0,1,0,1,0,0.000000,1.000000,38642,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc3642519',3642519,-52.567379,-9.567444,-52.903080,0.684501,1361,0,0,0,1,6,0,0,157,0,1.000000,24,0,0,0,0,16,0,32,2,0,1,0,1,0,0.000000,1.000000,38370,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc1513563',1513563,-11.947810,-7.888916,134.416702,-1.570451,1356,0,0,0,1,6,0,0,158,0,1.000000,24,0,0,0,0,11,0,32,1,0,1,0,1,0,0.000000,1.000000,38110,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82997,'LVD_BNPC_02','f1r1','bnpc1513293',1513293,-50.339539,-9.323303,45.944950,-0.000335,1354,0,0,0,1,6,0,0,153,0,1.000000,24,0,0,0,0,18,0,32,1,0,1,0,1,0,0.000000,1.000000,37814,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82998,'LVD_BNPC_03','f1r1','bnpc1513616',1513616,-125.200302,-10.818660,-85.740479,-0.460824,1358,0,0,0,1,6,0,0,117,0,1.000000,24,0,0,0,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,37460,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82998,'LVD_BNPC_03','f1r1','bnpc1513620',1513620,148.120102,-30.139420,-144.993500,-1.191346,1358,0,0,0,1,6,0,0,117,0,1.000000,24,0,0,0,0,0,0,15,0,0,1,0,0,0,0.000000,1.000000,37188,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82998,'LVD_BNPC_03','f1r1','bnpc1513617',1513617,17.624121,-12.466670,-78.202530,-0.850078,1358,0,0,0,1,6,0,0,117,0,1.000000,24,0,0,0,0,24,0,32,1,0,1,0,1,0,0.000000,1.000000,36916,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82998,'LVD_BNPC_03','f1r1','bnpc1513702',1513702,-10.330380,-13.199100,-120.500504,-0.831766,1360,0,0,0,0,0,0,0,155,0,1.000000,24,0,0,0,0,0,0,15,0,0,1,0,0,0,0.000000,1.000000,36638,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82998,'LVD_BNPC_03','f1r1','bnpc3910790',3910790,0.808655,-12.924500,-71.244377,0.669784,1360,0,0,0,0,0,0,0,155,0,1.000000,24,0,0,0,0,24,0,32,1,0,1,0,1,0,0.000000,1.000000,36366,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82998,'LVD_BNPC_03','f1r1','bnpc1513624',1513624,-35.899860,-12.918840,-110.154999,0.212268,1361,0,0,0,1,6,0,0,157,0,1.000000,24,0,0,0,0,21,0,32,2,0,1,0,1,0,0.000000,1.000000,36070,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82998,'LVD_BNPC_03','f1r1','bnpc3642524',3642524,-109.514000,-13.138060,-124.284798,-0.208002,1361,0,0,0,1,6,0,0,157,0,1.000000,24,0,0,0,0,20,0,32,2,0,1,0,1,0,0.000000,1.000000,35798,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82998,'LVD_BNPC_03','f1r1','bnpc3908202',3908202,-42.505741,-13.162030,-112.350800,-1.076967,1361,0,0,0,0,6,0,0,157,0,1.000000,24,0,0,0,0,21,0,32,2,0,1,0,1,0,0.000000,1.000000,35526,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82998,'LVD_BNPC_03','f1r1','bnpc1513629',1513629,130.205200,-24.063520,-116.044899,0.685364,1361,0,0,0,0,6,0,0,157,0,1.000000,24,0,0,0,0,22,0,32,2,0,1,0,1,0,0.000000,1.000000,35254,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82998,'LVD_BNPC_03','f1r1','bnpc1513630',1513630,147.004898,-27.683849,-124.054604,-0.333197,1361,0,0,0,1,6,0,0,157,0,1.000000,24,0,0,0,0,22,0,32,2,0,1,0,1,0,0.000000,1.000000,34982,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82998,'LVD_BNPC_03','f1r1','bnpc1513625',1513625,-17.013849,-13.199100,-119.005203,-0.981475,1361,0,0,0,1,6,0,0,157,0,1.000000,24,0,0,0,0,21,0,32,2,0,1,0,1,0,0.000000,1.000000,34710,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82998,'LVD_BNPC_03','f1r1','bnpc3642525',3642525,-109.453003,-13.199100,-130.144196,-1.517131,1361,0,0,0,1,6,0,0,157,0,1.000000,24,0,0,0,0,20,0,32,2,0,1,0,1,0,0.000000,1.000000,34438,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82998,'LVD_BNPC_03','f1r1','bnpc3642527',3642527,-111.611504,-12.115200,-95.362778,-1.001992,1361,0,0,0,1,6,0,0,157,0,1.000000,24,0,0,0,0,20,0,32,2,0,1,0,1,0,0.000000,1.000000,34166,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82998,'LVD_BNPC_03','f1r1','bnpc1513631',1513631,160.662094,-32.059269,-144.457199,-0.898495,1361,0,0,0,1,6,0,0,157,0,1.000000,24,0,0,0,0,22,0,32,2,0,1,0,1,0,0.000000,1.000000,33894,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc1513724',1513724,32.404301,-6.950220,160.048401,-0.853202,102,0,0,0,0,6,0,0,92,0,1.500000,24,0,0,0,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33390,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3642541',3642541,-109.327400,-4.132326,111.918999,-1.570451,270,0,0,0,0,6,0,0,442,0,0.000000,24,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32812,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3642543',3642543,-78.141479,-8.133057,-48.050720,-1.569140,270,0,0,0,0,6,0,0,442,0,0.850000,24,3,120,1,0,0,0,0,0,0,1,0,0,0,-6.000000,1.000000,32228,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3446839',3446839,231.993805,-39.291759,-144.297806,-1.570451,259,0,0,0,0,6,0,0,444,0,2.200000,24,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31822,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3862492',3862492,226.705505,-39.264542,-146.167999,-1.570796,260,0,0,0,1,6,0,0,443,0,0.000000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31264,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3656521',3656521,226.961594,-39.251751,-142.169495,0.261799,572,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30998,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3853667',3853667,236.787094,-39.704700,-133.746597,0.773943,572,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30414,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3853694',3853694,214.496002,-39.719280,-162.249207,-1.543754,572,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30142,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3853673',3853673,238.772400,-39.705509,-140.019302,-0.000000,572,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29870,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3853686',3853686,212.451294,-39.719280,-163.866699,1.047197,572,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29598,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3853665',3853665,230.243301,-39.719280,-125.878502,1.469401,572,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29326,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3853675',3853675,232.443497,-39.729900,-160.673492,0.785398,572,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29054,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3853678',3853678,238.585907,-39.594360,-136.048706,1.570796,572,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28782,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3853684',3853684,230.309296,-39.720909,-163.469498,0.261799,572,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28510,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3853698',3853698,206.487701,-39.694191,-128.512497,-0.031114,572,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28238,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3853699',3853699,208.697601,-39.719280,-125.993797,-0.862860,572,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27966,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3853700',3853700,211.230698,-39.704399,-124.592003,0.087266,572,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27694,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3853697',3853697,213.772995,-39.711109,-160.129501,-0.000048,572,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27422,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3925378',3925378,226.699707,-39.705330,-126.518799,-0.000048,572,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27082,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77554,'LVD_BNPC_boss_01','f1r1','bnpc3656529',3656529,-93.385307,-8.154387,-47.443680,1.499418,271,0,0,0,1,6,0,0,441,0,0.000000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25332,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77424,'LVD_gimmick_01','f1r1','bnpc3656506',3656506,-238.804092,-0.132353,-112.046997,1.570796,434,0,0,0,3,20,0,0,157,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20722,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77424,'LVD_gimmick_01','f1r1','bnpc3656507',3656507,15.247480,-11.849700,-45.375599,0.036866,434,0,0,0,3,20,0,0,157,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20450,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77424,'LVD_gimmick_01','f1r1','bnpc3656508',3656508,-109.708199,-11.922720,-77.375580,-0.150269,434,0,0,0,3,20,0,0,157,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20178,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77424,'LVD_gimmick_01','f1r1','bnpc3656509',3656509,-48.525810,-12.893920,-121.933502,-0.375256,434,0,0,0,3,20,0,0,157,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19906,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77424,'LVD_gimmick_01','f1r1','bnpc3656510',3656510,141.283493,-25.861160,-112.462502,-1.570451,434,0,0,0,3,20,0,0,157,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19634,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77424,'LVD_gimmick_01','f1r1','bnpc3877515',3877515,207.839203,-35.476410,-143.774307,-1.570451,434,0,0,0,0,0,0,0,444,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19362,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77424,'LVD_gimmick_01','f1r1','bnpc3911096',3911096,-223.992706,-0.137390,-112.016502,-0.000335,599,0,0,0,3,6,0,0,439,0,0.000000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17888,1,0,0,3302276,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77424,'LVD_gimmick_01','f1r1','bnpc3911098',3911098,15.976140,-12.100400,-31.993019,-0.000527,599,0,0,0,3,6,0,0,439,0,0.000000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17616,1,0,0,3302281,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77424,'LVD_gimmick_01','f1r1','bnpc3911100',3911100,-66.358513,-8.073122,-47.991699,-0.000000,599,0,0,0,3,6,0,0,439,0,0.000000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17344,1,0,0,3302282,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77424,'LVD_gimmick_01','f1r1','bnpc3911103',3911103,-111.997002,-12.125070,-63.992321,-0.000144,599,0,0,0,3,6,0,0,439,0,0.000000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17072,1,0,0,3302277,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77424,'LVD_gimmick_01','f1r1','bnpc3911106',3911106,-103.144897,-12.624360,-138.061600,-0.000000,599,0,0,0,3,6,0,0,439,0,0.000000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16800,1,0,0,3302278,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77424,'LVD_gimmick_01','f1r1','bnpc3911107',3911107,-54.189281,-12.640220,-135.437805,-0.000000,599,0,0,0,3,6,0,0,439,0,0.000000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16528,1,0,0,3302279,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77424,'LVD_gimmick_01','f1r1','bnpc3911109',3911109,-7.133959,-12.743460,-138.065201,-0.000000,599,0,0,0,3,6,0,0,439,0,0.000000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16256,1,0,0,3302280,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77424,'LVD_gimmick_01','f1r1','bnpc3911110',3911110,127.989998,-24.093990,-112.003098,-0.000527,599,0,0,0,3,6,0,0,439,0,0.000000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15984,1,0,0,3302283,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (77424,'LVD_gimmick_01','f1r1','bnpc3911111',3911111,175.994507,-33.911060,-140.002899,-0.000000,599,0,0,0,3,6,0,0,439,0,0.000000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15712,1,0,0,3302275,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3679648',3679648,-106.133904,-13.080430,-126.654503,-0.000144,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15222,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3679663',3679663,-46.921509,-12.954960,-118.242203,-0.000335,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14950,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3679664',3679664,-111.192497,-11.306980,-82.780243,0.688193,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14678,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3679665',3679665,-64.621437,-13.186680,-141.530304,-0.000144,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14406,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3679666',3679666,-88.823807,-13.252130,-139.945694,-0.000432,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14134,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3822043',3822043,-27.267920,-13.157610,-107.957603,-0.000240,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13862,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3822046',3822046,-12.344590,-12.948000,-122.850403,-0.000240,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13590,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3822058',3822058,19.577280,-12.540510,-135.210205,-0.000336,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13318,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3822060',3822060,9.262178,-13.749430,-78.324600,-0.000432,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3822061',3822061,19.058470,-13.264620,-83.421112,-0.000432,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12774,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3822068',3822068,11.154300,-13.071770,-107.713501,-0.000336,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12502,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3822074',3822074,56.168411,-19.613621,-105.333099,-0.000144,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3822079',3822079,79.545227,-20.974630,-113.878098,-0.000240,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3822087',3822087,139.779694,-25.778391,-113.359299,-0.000432,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3822090',3822090,140.830795,-29.216480,-135.822906,-0.000144,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11414,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3905926',3905926,50.431019,-19.100090,-110.521103,1.071262,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11142,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3905928',3905928,82.504402,-20.130501,-124.829597,0.512831,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10870,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3907016',3907016,151.384705,-30.655420,-141.893707,0.734213,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10598,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3909171',3909171,8.163529,-13.064790,-139.208099,-0.000336,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10326,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3909172',3909172,-112.593102,-12.229700,-97.747887,-0.441514,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10054,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3910791',3910791,-98.481644,-11.873360,-70.251900,1.302129,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9782,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82328,'LVD_gimmick_02','f1r1','bnpc3910792',3910792,-99.759163,-10.914090,-84.818153,0.721903,261,0,0,0,0,6,0,0,437,0,1.100000,24,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9510,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83084,'QB_ClsLnc004_001','f1t2','bnpc3793627',3793627,167.459793,15.900400,-272.035889,-1.411184,544,0,0,0,0,6,0,0,609,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26944,1,0,0,0,0,30102,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83084,'QB_ClsLnc004_001','f1t2','bnpc3793628',3793628,167.500504,15.900400,-272.063599,-1.437051,545,0,0,0,0,6,0,0,610,0,0.000000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26678,1,0,0,0,0,30102,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83084,'QB_ClsLnc004_001','f1t2','bnpc3793632',3793632,167.359299,15.900400,-272.024506,-1.509853,546,0,0,0,0,6,0,0,611,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26412,1,0,0,0,0,30102,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295485',4295485,-266.791504,-5.944477,-526.778198,-0.000000,27,0,0,0,1,6,0,0,27,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73272,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295487',4295487,-276.140686,-8.410786,-516.253174,-0.000000,27,0,0,0,1,6,0,0,27,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73000,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295488',4295488,-298.914093,-4.103804,-550.291321,0.558650,27,0,0,0,1,6,0,0,27,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72728,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295489',4295489,-103.196297,1.542795,-586.758179,1.059429,27,0,0,0,1,6,0,0,27,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72456,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295490',4295490,-207.536301,-2.690903,-578.039001,-0.000048,27,0,0,0,1,6,0,0,27,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72184,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295491',4295491,-103.713898,-0.832843,-642.948425,-0.000048,27,0,0,0,1,6,0,0,27,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71912,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295492',4295492,-208.009796,1.723610,-616.185120,-0.000048,27,0,0,0,1,6,0,0,27,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71640,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295493',4295493,-172.408905,4.990528,-671.229126,-0.000048,27,0,0,0,1,6,0,0,27,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71368,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295495',4295495,-380.537506,-16.898170,-441.082001,-0.000000,140,0,0,0,1,6,0,0,237,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71102,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295496',4295496,-430.882507,-16.898170,-384.312195,-0.000000,140,0,0,0,1,6,0,0,237,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70830,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295497',4295497,-390.139587,-16.898170,-350.704712,-0.000048,140,0,0,0,1,6,0,0,237,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70558,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295498',4295498,-398.062103,-16.898170,-358.104401,-0.000048,140,0,0,0,1,6,0,0,237,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70286,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295499',4295499,-336.279297,-16.898170,-437.756195,-0.000000,140,0,0,0,1,6,0,0,237,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70014,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295500',4295500,-302.568298,-16.898170,-458.892609,-0.000000,140,0,0,0,1,6,0,0,237,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69742,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295501',4295501,-402.253601,-16.898170,-464.540710,-0.000000,140,0,0,0,1,6,0,0,237,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69470,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295503',4295503,-369.143799,-16.898170,-389.766815,-0.000048,140,0,0,0,1,6,0,0,237,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69198,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295505',4295505,-359.561707,-16.042290,-486.552094,1.139669,139,0,0,0,1,6,0,0,645,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68932,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295506',4295506,-417.805786,-6.910027,-523.771912,0.883730,139,0,0,0,1,6,0,0,645,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68660,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295507',4295507,-466.061310,-9.446001,-532.017029,0.733685,139,0,0,0,1,6,0,0,645,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68388,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295508',4295508,-413.364410,-2.492527,-559.181519,0.883730,139,0,0,0,1,6,0,0,645,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68116,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295514',4295514,-350.972809,-6.607239,-526.665222,0.883730,139,0,0,0,1,6,0,0,645,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67844,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295515',4295515,-360.309296,-4.290267,-546.520813,0.883730,139,0,0,0,1,6,0,0,645,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67572,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295516',4295516,-350.790710,-3.296191,-550.475586,0.883730,139,0,0,0,1,6,0,0,645,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67300,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295520',4295520,-396.722198,-14.513140,-500.059692,0.883730,139,0,0,0,1,6,0,0,645,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67028,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295524',4295524,-234.088699,-4.989685,-302.540588,-0.000048,724,0,0,0,1,6,0,0,650,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66762,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295525',4295525,-211.180405,-2.844870,-288.253998,-0.934299,725,0,0,0,0,6,0,0,651,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66496,1,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295526',4295526,-257.312897,1.113892,-308.064392,-0.000048,726,0,0,0,1,6,0,0,652,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66230,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295528',4295528,-212.115707,-2.955642,-289.682190,-0.347643,724,0,0,0,0,6,0,0,650,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65946,1,0,0,0,0,30065,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295529',4295529,-224.841705,3.952026,-259.540710,-0.000048,725,0,0,0,1,6,0,0,651,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65680,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295530',4295530,-203.875793,24.704220,-215.411697,-0.000048,726,0,0,0,1,6,0,0,652,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65414,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295531',4295531,-234.943207,21.774599,-213.092300,-0.469262,725,0,0,0,0,6,0,0,651,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65136,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295532',4295532,-235.959198,22.114910,-212.031006,1.561341,724,0,0,0,0,6,0,0,650,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64858,1,0,0,0,0,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295533',4295533,-234.301407,21.966511,-211.462402,-0.595569,726,0,0,0,0,6,0,0,652,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64598,1,0,0,0,0,30082,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295534',4295534,-127.288002,47.127460,-188.580307,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64332,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295535',4295535,-140.871399,45.053020,-179.736603,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64060,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295536',4295536,-136.478302,46.067551,-193.959702,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63788,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295537',4295537,-143.537201,44.052780,-181.398193,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63516,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295538',4295538,-146.514297,42.327431,-204.108902,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63244,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295539',4295539,-129.866394,46.678692,-196.996994,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62972,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295540',4295540,-145.364395,42.544418,-202.550705,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62700,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295541',4295541,-144.789993,44.556961,-194.376297,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62428,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295659',4295659,-53.322418,17.072929,-621.681213,-0.000000,135,0,0,0,1,6,0,0,117,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62162,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295665',4295665,-88.710228,0.643335,-625.828125,-0.000000,135,0,0,0,1,6,0,0,117,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61890,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295666',4295666,-207.395203,8.290789,-665.648376,-0.000000,135,0,0,0,1,6,0,0,117,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61618,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295668',4295668,-156.229294,-1.918439,-604.694275,-0.000000,135,0,0,0,1,6,0,0,117,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61346,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295669',4295669,-304.707489,-15.793150,-491.020111,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61074,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295670',4295670,-386.814087,-6.319692,-539.647400,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60802,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295674',4295674,-375.356689,-13.229610,-505.729797,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60530,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295679',4295679,-327.840393,-2.384109,-563.164490,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60258,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295691',4295691,482.994690,-1.037749,-792.622070,-0.000048,647,0,0,0,1,6,0,0,793,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59992,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295693',4295693,473.960388,0.503479,-803.097595,-0.000048,647,0,0,0,1,6,0,0,793,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59720,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295694',4295694,450.441315,-4.905994,-755.835999,-0.000048,647,0,0,0,1,6,0,0,793,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59448,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295695',4295695,500.877289,-5.020264,-757.289978,-0.000048,647,0,0,0,1,6,0,0,793,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59176,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295697',4295697,456.274902,-4.258285,-763.958801,-0.000000,647,0,0,0,1,6,0,0,793,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58904,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295698',4295698,550.072510,-9.750549,-735.286499,-0.000048,647,0,0,0,1,6,0,0,793,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58632,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295700',4295700,487.731598,2.187441,-809.306885,-0.000048,647,0,0,0,1,6,0,0,793,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58360,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295702',4295702,268.736298,32.329670,-657.612671,-0.000000,645,0,0,0,1,6,0,0,789,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58094,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295704',4295704,272.319611,32.540180,-659.312988,-0.000000,645,0,0,0,1,6,0,0,789,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57822,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295705',4295705,285.744507,34.969521,-689.040283,-0.000000,645,0,0,0,1,6,0,0,789,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57550,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295709',4295709,298.145996,20.340210,-684.382385,-0.000048,645,0,0,0,1,6,0,0,789,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57278,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295710',4295710,348.251495,21.030451,-726.475220,-0.000048,645,0,0,0,1,6,0,0,789,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57006,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295711',4295711,352.642487,20.319700,-740.209778,-0.000048,645,0,0,0,1,6,0,0,789,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56734,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295712',4295712,369.140015,21.089970,-736.832886,-0.000048,645,0,0,0,1,6,0,0,789,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56462,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295715',4295715,363.363007,-1.968445,-698.451172,-0.000048,645,0,0,0,1,6,0,0,789,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56190,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295716',4295716,557.910828,-5.547063,-643.875671,-0.000048,645,0,0,0,1,6,0,0,789,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55918,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295717',4295717,557.692322,16.908760,-525.262085,-0.000048,645,0,0,0,1,6,0,0,789,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55646,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295718',4295718,576.089783,12.066130,-514.577271,-0.000048,645,0,0,0,1,6,0,0,789,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55374,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295719',4295719,594.596985,7.711907,-478.120911,-0.000048,645,0,0,0,1,6,0,0,789,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55102,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295720',4295720,616.268982,8.446064,-482.073486,-0.000048,645,0,0,0,1,6,0,0,789,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54830,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295726',4295726,356.740601,-6.149414,-463.218109,-0.000048,728,0,0,0,1,6,0,0,646,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54564,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295727',4295727,365.071991,-14.602910,-430.808014,-0.000048,727,0,0,0,1,6,0,0,647,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54298,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295728',4295728,350.667511,-17.288509,-404.379303,-0.000048,729,0,0,0,1,6,0,0,648,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54032,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295734',4295734,413.196686,-20.564011,-317.744904,-0.000048,729,0,0,0,1,6,0,0,648,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53760,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295735',4295735,387.892609,-18.073410,-346.505707,-0.000048,728,0,0,0,1,6,0,0,646,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53476,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295736',4295736,450.900513,-17.914270,-353.105286,-0.000048,727,0,0,0,1,6,0,0,647,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53210,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295737',4295737,481.724091,-12.428540,-382.045105,-0.000048,729,0,0,0,1,6,0,0,648,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52944,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295738',4295738,511.909393,-9.373532,-382.464996,-0.370545,728,0,0,0,1,6,0,0,646,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52660,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295739',4295739,522.073730,0.990242,-453.501709,-0.000048,727,0,0,0,1,6,0,0,647,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52394,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295747',4295747,588.058716,-2.946974,-271.337891,0.639626,730,0,0,0,1,6,0,0,649,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52134,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295749',4295749,568.700012,-2.429443,-330.453400,-1.027337,730,0,0,0,1,6,0,0,649,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51862,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295751',4295751,582.843079,-3.006616,-272.419891,0.630413,730,0,0,0,1,6,0,0,649,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51590,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295755',4295755,214.220200,-22.109159,-425.877502,-0.000000,777,0,0,0,1,6,0,0,1851,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51324,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295757',4295757,208.472198,-22.096960,-422.660797,-0.000000,777,0,0,0,1,6,0,0,1851,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51052,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295759',4295759,162.350601,-27.989771,-429.755402,-0.000000,777,0,0,0,1,6,0,0,1851,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50780,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295760',4295760,152.123001,-27.048130,-440.418915,-0.000000,777,0,0,0,1,6,0,0,1851,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50508,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295761',4295761,177.396194,-25.049320,-444.224487,-0.000000,777,0,0,0,1,6,0,0,1851,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50236,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295762',4295762,267.297211,-21.872410,-406.569397,-0.000000,777,0,0,0,1,6,0,0,1851,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49964,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295763',4295763,306.843597,-26.993231,-409.628510,-0.000048,777,0,0,0,1,6,0,0,1851,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49692,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295764',4295764,304.550415,-25.764360,-424.008301,-0.000048,777,0,0,0,1,6,0,0,1851,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49420,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295769',4295769,306.531403,-6.106912,-519.224976,-0.000048,727,0,0,0,1,6,0,0,647,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49130,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295770',4295770,282.576813,-0.225863,-572.515686,-0.000048,728,0,0,0,1,6,0,0,646,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48852,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295771',4295771,310.969513,6.158492,-563.194397,-0.000048,729,0,0,0,1,6,0,0,648,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48592,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295809',4295809,156.994202,14.383940,-592.509216,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48290,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295811',4295811,223.296295,19.340050,-610.880798,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48018,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295812',4295812,201.983597,-0.198364,-555.107971,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47746,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295813',4295813,341.647797,-7.563892,-456.047089,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47474,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295816',4295816,408.980713,-16.354401,-360.560699,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47202,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295818',4295818,509.696991,-9.567444,-375.661896,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46930,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295820',4295820,496.853485,0.344957,-504.120392,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46658,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295823',4295823,601.499573,8.072348,-517.726685,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46386,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295825',4295825,570.526428,-2.482952,-625.752014,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46114,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295827',4295827,556.342102,-7.876167,-657.103516,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45842,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295829',4295829,554.863770,-9.262268,-749.843628,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45570,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295831',4295831,503.838013,-2.956629,-777.365173,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45298,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295834',4295834,482.706696,1.341902,-807.133728,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45026,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295835',4295835,486.772400,5.215003,-836.320984,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44754,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295836',4295836,471.659790,3.490144,-819.978882,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44482,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295837',4295837,484.345886,5.375706,-837.509583,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44210,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295840',4295840,412.710693,-9.353821,-747.005371,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43938,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295844',4295844,384.603485,-4.196289,-690.486023,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43666,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295846',4295846,332.112701,4.562378,-690.424988,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43394,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295850',4295850,316.341492,26.032160,-728.249573,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43122,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295851',4295851,297.774597,15.475720,-651.450989,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42850,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295855',4295855,598.748718,-3.250244,-301.930298,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42578,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295858',4295858,591.221985,-1.360156,-323.232788,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42306,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295862',4295862,-314.692108,-15.474820,-327.581299,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42034,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295866',4295866,-272.613800,-8.061660,-332.045013,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41762,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295867',4295867,-217.273193,-1.571716,-276.691895,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41490,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295870',4295870,-229.022598,14.450200,-236.072403,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41218,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295871',4295871,-188.372696,33.340939,-195.666504,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40946,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295884',4295884,-562.005005,-2.945007,-452.323212,-0.000048,55,0,0,0,1,6,0,0,1809,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40722,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295886',4295886,-554.466980,-3.768982,-380.758392,-0.000048,62,0,0,0,1,6,0,0,1811,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40456,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295887',4295887,-568.932678,-2.945007,-424.124603,-0.000048,63,0,0,0,1,6,0,0,1812,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40190,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4295889',4295889,-543.789124,-3.866000,-411.311401,0.594379,201,0,0,0,1,6,0,0,1814,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39924,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296050',4296050,-471.824188,-6.332520,-433.737701,1.254288,62,0,0,0,0,6,0,0,1811,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39640,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296052',4296052,-484.855499,-6.027344,-447.898102,1.512143,62,0,0,0,0,6,0,0,1811,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39368,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296055',4296055,-471.580109,-6.668213,-449.912292,-0.000048,63,0,0,0,1,6,0,0,1812,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39102,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296056',4296056,-453.727112,-10.818660,-442.862610,-0.000048,64,0,0,0,1,6,0,0,1813,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38842,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296060',4296060,-455.741211,-7.492188,-484.428192,1.254288,62,0,0,0,0,6,0,0,1811,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38552,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296081',4296081,-603.967285,-3.891113,-368.337494,-0.000048,64,0,0,0,1,6,0,0,1813,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38298,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296082',4296082,-640.680481,-3.891113,-370.046600,-0.000048,61,0,0,0,1,6,0,0,1810,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38032,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296091',4296091,-592.797729,-2.945007,-432.211792,0.362265,62,0,0,0,0,6,0,0,1811,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37736,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296093',4296093,-635.341492,-2.933044,-396.278687,0.362321,62,0,0,0,0,6,0,0,1811,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37464,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296094',4296094,-548.271912,-1.937927,-310.963593,0.594091,201,0,0,0,1,6,0,0,1814,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37204,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296096',4296096,-498.711395,-3.960067,-255.747696,0.594187,201,0,0,0,1,6,0,0,1814,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36932,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296098',4296098,-558.028809,-3.683542,-364.324585,-0.271248,62,0,0,0,0,6,0,0,1811,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36648,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296100',4296100,-489.250092,-3.708008,-282.124115,0.298028,62,0,0,0,0,6,0,0,1811,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36376,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296103',4296103,-446.294891,-4.000447,-219.651199,0.298028,62,0,0,0,0,6,0,0,1811,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36104,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296105',4296105,-437.867004,-2.581742,-273.708099,-1.362167,62,0,0,0,0,6,0,0,1811,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35832,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296108',4296108,-527.244995,-2.670410,-288.624512,-0.000048,55,0,0,0,1,6,0,0,1809,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35554,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296110',4296110,-560.845276,-2.975586,-327.595886,-0.000048,63,0,0,0,1,6,0,0,1812,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35294,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296111',4296111,-547.325928,-1.754883,-291.645691,-0.000048,62,0,0,0,1,6,0,0,1811,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35016,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296113',4296113,-527.817322,-3.767937,-323.068909,-0.000048,64,0,0,0,1,6,0,0,1813,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34762,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296115',4296115,-543.791321,-3.216822,-330.542389,-0.000048,61,0,0,0,1,6,0,0,1810,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34496,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296118',4296118,-473.824707,-3.767937,-273.987488,-0.000048,61,0,0,0,1,6,0,0,1810,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34224,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296119',4296119,-488.912994,-3.958386,-246.223602,-0.000048,64,0,0,0,1,6,0,0,1813,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33946,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296120',4296120,-461.660309,-3.996136,-252.041306,-0.000048,55,0,0,0,1,6,0,0,1809,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33650,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296121',4296121,-428.786102,-3.945695,-301.904114,-0.000048,62,0,0,0,1,6,0,0,1811,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33384,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296122',4296122,-429.702698,-3.990123,-245.654495,-0.000048,63,0,0,0,1,6,0,0,1812,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33118,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296344',4296344,-618.398071,-3.216822,-419.669586,0.594091,201,0,0,0,5,6,0,0,1814,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32692,1,0,0,0,0,0,4296333,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296054',4296054,-473.746887,-4.409851,-480.766113,-0.000048,61,0,0,0,1,6,0,0,1810,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32432,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4296053',4296053,-445.975494,-12.710820,-466.361511,-0.000048,55,0,0,0,1,6,0,0,1809,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32130,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4331545',4331545,-431.193512,-15.291800,-426.211914,-0.000048,55,0,0,0,1,6,0,0,1809,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31858,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4331546',4331546,-472.129791,-5.294910,-466.746185,1.144080,55,0,0,0,1,6,0,0,1809,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31586,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4331549',4331549,-455.329895,-10.797180,-446.420288,1.144080,61,0,0,0,1,6,0,0,1810,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31344,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93059,'LVD_BNPC_01','l1f1','bnpc4331550',4331550,-470.522400,-4.822834,-501.822296,-0.000048,61,0,0,0,1,6,0,0,1810,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31072,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98348,'LVD_easter_2014','l1f1','bnpc4621627',4621627,459.067596,6.191762,-845.122498,1.392914,2773,0,0,0,1,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22746,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92909,'LVD_guard_01','l1f1','bnpc4291568',4291568,76.290123,30.749250,-733.599182,1.525989,1776,0,0,0,0,6,0,0,1584,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22404,5,0,0,0,0,30052,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92909,'LVD_guard_01','l1f1','bnpc4292672',4292672,-12.396590,18.377340,-670.928772,-1.343300,1777,0,0,0,0,6,0,0,1584,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22138,5,0,0,0,0,30055,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92909,'LVD_guard_01','l1f1','bnpc4292673',4292673,91.670517,20.458050,-614.237122,1.536755,1778,0,0,0,0,6,0,0,1584,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21872,5,0,0,0,0,30054,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93490,'FATE_003','l1f1','bnpc4308431',4308431,-122.822502,-2.604745,-628.348083,-0.737188,1173,0,0,0,0,6,0,0,1584,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,155988,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93490,'FATE_003','l1f1','bnpc4308447',4308447,-126.683998,-2.463507,-632.439880,0.772556,27,0,0,0,0,6,0,0,27,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,155722,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93448,'FATE_007','l1f1','bnpc4309560',4309560,-288.638489,-16.898170,-360.102905,-0.000000,1795,0,0,0,1,6,0,0,1441,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,152032,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93450,'FATE_012','l1f1','bnpc4309662',4309662,481.600403,1.797499,-809.730408,-0.022616,1796,0,0,0,1,6,0,0,1442,0,0.000000,48,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,149438,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93478,'FATE_013','l1f1','bnpc4308154',4308154,420.736298,-4.656397,-410.847595,-0.695268,2164,0,0,0,0,6,0,0,2172,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,148972,1,0,0,0,0,30139,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93478,'FATE_013','l1f1','bnpc4308175',4308175,417.400085,-4.675570,-409.149200,-1.331066,603,0,0,0,0,6,0,0,1859,0,0.000000,46,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,148706,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93478,'FATE_013','l1f1','bnpc4314526',4314526,420.718414,-4.613416,-407.563995,-1.276579,603,0,0,0,0,6,0,0,1859,0,0.000000,46,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,146874,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93478,'FATE_013','l1f1','bnpc4314541',4314541,417.597198,-4.749808,-411.493896,-0.069976,1133,0,0,0,0,6,0,0,1584,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,146608,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93478,'FATE_013','l1f1','bnpc4314550',4314550,419.999207,-4.757789,-406.216003,-0.545034,1145,0,0,0,0,6,0,0,1584,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,146342,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93478,'FATE_013','l1f1','bnpc4314567',4314567,416.520905,-4.825786,-407.840790,0.766045,1136,0,0,0,0,6,0,0,1584,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,146076,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92349,'FATE_014','l1f1','bnpc4263491',4263491,184.771500,7.511102,-577.271423,0.541052,1165,0,0,0,1,6,0,0,1584,0,0.000000,39,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,142826,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92350,'FATE_015','l1f1','bnpc4263492',4263492,327.177094,-8.265240,-493.198914,-0.750492,1178,0,0,0,1,6,0,0,1584,0,0.000000,40,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,140200,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92351,'FATE_016','l1f1','bnpc4259841',4259841,417.696594,-16.286301,-347.317200,-0.034907,1797,0,0,0,1,6,0,0,1443,0,0.000000,46,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,139158,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93797,'FATE_017','l1f1','bnpc4321750',4321750,579.598083,5.646176,-565.167603,0.614321,2164,0,0,0,0,6,0,0,1717,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,138648,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93451,'FATE_018','l1f1','bnpc4309678',4309678,281.777405,32.594120,-742.085693,0.539298,1798,0,0,0,1,6,0,0,1444,0,0.000000,46,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,134692,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93183,'FATE_020','l1f1','bnpc4300266',4300266,44.809650,29.280800,-721.882202,0.906353,2112,0,0,0,0,6,0,0,1707,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,131494,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92353,'FATE_021','l1f1','bnpc4259869',4259869,-379.776306,-5.235710,-550.153198,-0.000000,1799,0,0,0,1,6,0,0,1610,0,0.000000,44,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,129516,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94510,'FATE_FF13_04_01','l1f1','bnpc4378051',4378051,262.373108,-17.896629,-472.675201,-0.236812,2086,0,0,0,0,6,0,0,2216,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,129070,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94510,'FATE_FF13_04_01','l1f1','bnpc4378052',4378052,265.387390,-15.063900,-487.040710,-0.000000,2084,0,0,0,0,6,0,0,2215,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,128804,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94510,'FATE_FF13_04_01','l1f1','bnpc4378053',4378053,269.978699,-17.654060,-465.476990,-0.601951,2084,0,0,0,0,6,0,0,2215,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,128532,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94510,'FATE_FF13_04_01','l1f1','bnpc4378054',4378054,251.506393,-18.719009,-469.286987,0.771597,2084,0,0,0,0,6,0,0,2215,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,128260,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94658,'FATE_FF13_04_02','l1f1','bnpc4388467',4388467,591.352112,9.132888,-520.288879,0.261538,2086,0,0,0,0,6,0,0,2216,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,126242,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94658,'FATE_FF13_04_02','l1f1','bnpc4388468',4388468,592.375000,10.067320,-507.838501,-0.008700,2084,0,0,0,0,6,0,0,2215,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,125976,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94658,'FATE_FF13_04_02','l1f1','bnpc4388469',4388469,600.923523,8.370019,-522.996826,-1.262818,2084,0,0,0,0,6,0,0,2215,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,125704,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94658,'FATE_FF13_04_02','l1f1','bnpc4388470',4388470,581.802979,11.221660,-523.694214,1.168692,2084,0,0,0,0,6,0,0,2215,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,125432,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94512,'FATE_FF13_05_01','l1f1','bnpc4378059',4378059,266.569214,-11.747400,-488.606293,-0.279483,2083,0,0,0,0,6,0,0,2214,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,123522,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94512,'FATE_FF13_05_01','l1f1','bnpc4378060',4378060,262.321106,-17.846609,-470.400391,0.262596,2085,0,0,0,0,6,0,0,887,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,123256,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94659,'FATE_FF13_05_02','l1f1','bnpc4388476',4388476,594.168884,13.201680,-500.901611,-0.246238,2083,0,0,0,0,6,0,0,2214,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,122270,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94659,'FATE_FF13_05_02','l1f1','bnpc4388477',4388477,589.841492,9.181613,-522.461975,0.068970,2085,0,0,0,0,6,0,0,887,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,122004,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92232,'go013','l1f1','bnpc4265634',4265634,552.818604,-9.817134,-738.363281,0.205987,1811,0,0,0,0,6,0,0,1624,0,0.000000,40,0,120,1,0,1,0,50,20,1,0,0,1,1,0.000000,1.000000,118018,1,1,80,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92232,'go013','l1f1','bnpc4265636',4265636,551.628906,-9.029477,-725.990112,0.439636,1811,0,0,0,0,6,0,0,1624,0,0.000000,40,0,120,1,0,1,0,50,20,1,0,0,1,1,0.000000,1.000000,117746,1,1,80,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92232,'go013','l1f1','bnpc4265638',4265638,559.490417,-8.851481,-728.739685,0.078439,1811,0,0,0,0,6,0,0,1624,0,0.000000,40,0,120,1,0,1,0,50,20,1,0,0,1,1,0.000000,1.000000,117474,1,1,80,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92232,'go013','l1f1','bnpc4265639',4265639,561.419678,-9.559528,-743.785583,-0.027385,1811,0,0,0,0,6,0,0,1624,0,0.000000,40,0,120,1,0,1,0,50,20,1,0,0,1,1,0.000000,1.000000,117202,1,1,80,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92232,'go013','l1f1','bnpc4265640',4265640,542.079102,-9.773489,-739.559814,0.439540,1811,0,0,0,0,6,0,0,1624,0,0.000000,40,0,120,1,0,1,0,50,20,1,0,0,1,1,0.000000,1.000000,116930,1,1,80,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92232,'go013','l1f1','bnpc4265643',4265643,552.513916,-9.872620,-740.718811,-0.738575,1812,0,0,0,0,6,0,0,1625,0,0.000000,42,0,120,1,0,1,0,50,20,1,0,0,1,1,0.000000,1.000000,116664,1,0,50,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269779',4269779,565.559326,14.344080,-517.898682,-0.000048,1827,0,0,0,1,6,0,0,1797,0,0.000000,40,0,120,1,0,0,0,20,20,1,0,0,1,1,0.000000,1.000000,113454,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269780',4269780,577.010315,10.410980,-492.238708,-0.000048,1827,0,0,0,1,6,0,0,1797,0,0.000000,40,0,120,1,0,0,0,20,20,1,0,0,1,1,0.000000,1.000000,113182,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269781',4269781,554.074829,11.090070,-499.370087,-0.000048,1827,0,0,0,1,6,0,0,1797,0,0.000000,40,0,120,1,0,0,0,20,20,1,0,0,1,1,0.000000,1.000000,112910,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269919',4269919,579.411194,11.597430,-517.091675,-0.259624,1817,0,0,0,0,6,0,0,1630,0,0.100000,40,0,120,1,0,1,0,50,20,1,0,0,1,1,0.000000,1.000000,112644,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269928',4269928,549.614929,10.221790,-495.449890,-0.160606,1813,0,0,0,0,6,0,0,646,0,0.100000,40,0,120,1,0,2,0,50,20,1,0,0,1,1,0.000000,1.000000,112378,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269931',4269931,543.040222,14.278750,-514.949707,0.261051,1818,0,0,0,0,6,0,0,1631,0,0.100000,37,0,120,1,0,1,0,50,20,1,0,0,1,1,0.000000,1.000000,112112,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269950',4269950,473.426697,5.564074,-504.386993,-0.000048,1817,0,0,0,0,6,0,0,1630,0,0.000000,40,0,120,1,0,1,0,50,20,1,0,0,1,1,0.000000,1.000000,111828,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269952',4269952,473.182709,-1.062416,-500.846893,-0.000048,1818,0,0,0,0,6,0,0,1631,0,0.000000,40,0,120,1,0,1,0,50,20,1,0,0,1,1,0.000000,1.000000,111568,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269954',4269954,472.999603,-2.509016,-496.940613,-0.000048,1819,0,0,0,0,6,0,0,1632,0,0.000000,41,0,120,1,0,1,0,50,20,1,0,0,1,1,0.000000,1.000000,111302,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269956',4269956,472.633209,-3.315055,-492.851196,0.000336,1826,0,0,0,1,6,0,0,1796,0,0.000000,40,0,120,1,0,0,0,20,20,1,0,0,1,1,0.000000,1.000000,111036,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269959',4269959,472.602814,-3.733345,-489.890900,-0.000048,1825,0,0,0,0,6,0,0,1638,0,0.000000,41,0,120,1,0,1,0,50,20,1,0,0,1,1,0.000000,1.000000,110770,1,0,150,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269966',4269966,463.966187,2.776461,-500.755402,-0.000048,1813,0,0,0,0,6,0,0,646,0,0.000000,40,0,120,1,0,2,0,50,20,1,0,0,1,1,0.000000,1.000000,110474,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269967',4269967,463.355804,-1.965816,-496.452301,-0.000048,1813,0,0,0,0,6,0,0,646,0,0.000000,40,0,120,1,0,2,0,50,20,1,0,0,1,1,0.000000,1.000000,110202,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269968',4269968,462.623505,-3.795574,-491.752502,-0.000048,1814,0,0,0,0,6,0,0,647,0,0.000000,40,0,120,1,0,2,0,50,20,1,0,0,1,1,0.000000,1.000000,109960,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269970',4269970,462.013000,-4.510038,-486.991699,-0.000048,1815,0,0,0,0,6,0,0,648,0,0.000000,41,0,120,1,0,2,0,50,20,1,0,0,1,1,0.000000,1.000000,109694,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269971',4269971,461.372314,-4.832110,-482.627594,-0.000048,1816,0,0,0,0,6,0,0,1629,0,0.000000,41,0,120,1,0,2,0,50,20,1,0,0,1,1,0.000000,1.000000,109428,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269976',4269976,455.695709,-1.273824,-496.818512,-0.000048,1820,0,0,0,0,6,0,0,1633,0,0.000000,40,0,120,1,0,3,0,50,20,0,0,0,1,1,0.000000,1.000000,109162,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269977',4269977,455.299103,-3.907853,-492.637512,-0.000048,1820,0,0,0,0,6,0,0,1633,0,0.000000,40,0,120,1,0,3,0,50,20,1,0,0,1,1,0.000000,1.000000,108890,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269979',4269979,454.932800,-4.705859,-488.334503,-0.000048,1821,0,0,0,0,6,0,0,1634,0,0.000000,40,0,120,1,0,3,0,50,20,1,0,0,1,1,0.000000,1.000000,108624,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269980',4269980,454.414093,-5.317913,-484.245087,-0.000048,1822,0,0,0,0,6,0,0,1635,0,0.000000,40,0,120,1,0,3,0,50,20,1,1,0,1,1,0.000000,1.000000,108358,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269981',4269981,453.589996,-5.688124,-480.369293,-0.000048,1823,0,0,0,0,6,0,0,1636,0,0.000000,41,0,120,1,0,3,0,50,20,1,0,0,1,1,0.000000,1.000000,108092,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269982',4269982,452.063995,-5.598977,-475.791595,-0.000048,1824,0,0,0,0,6,0,0,1637,0,0.000000,41,0,120,1,0,3,0,50,20,1,0,0,1,1,0.000000,1.000000,107826,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92233,'go014','l1f1','bnpc4269922',4269922,579.985229,10.429550,-499.618286,0.119497,1821,0,0,0,0,6,0,0,1634,0,0.100000,40,0,120,1,0,3,0,50,20,1,0,0,1,1,0.000000,1.000000,107536,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93080,'Grand_Company_Leve','l1f1','bnpc4296668',4296668,124.862000,-11.346970,-473.144897,-0.170249,1859,0,0,0,1,6,0,0,1795,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,107176,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93080,'Grand_Company_Leve','l1f1','bnpc4296669',4296669,127.666801,-11.395910,-479.966309,-0.083402,1859,0,0,0,1,6,0,0,1795,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,106904,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93080,'Grand_Company_Leve','l1f1','bnpc4296670',4296670,133.969498,-13.295740,-474.561615,-0.000000,1859,0,0,0,1,6,0,0,1795,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,106632,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93080,'Grand_Company_Leve','l1f1','bnpc4296671',4296671,139.812897,-14.573710,-471.236115,-0.000000,1859,0,0,0,1,6,0,0,1795,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,106360,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93080,'Grand_Company_Leve','l1f1','bnpc4296672',4296672,136.389694,-14.832660,-463.477692,-0.000000,1859,0,0,0,1,6,0,0,1795,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,106088,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93080,'Grand_Company_Leve','l1f1','bnpc4406129',4406129,94.768150,0.140394,-564.016907,-0.000000,2495,0,0,0,1,6,0,0,2243,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,105822,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93080,'Grand_Company_Leve','l1f1','bnpc4406130',4406130,95.809387,1.431389,-568.737671,-0.000000,2495,0,0,0,1,6,0,0,2243,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,105550,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93080,'Grand_Company_Leve','l1f1','bnpc4406131',4406131,101.272797,2.006308,-570.259094,-0.000000,2495,0,0,0,1,6,0,0,2243,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,105278,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93080,'Grand_Company_Leve','l1f1','bnpc4406140',4406140,87.375900,-4.328816,-471.404205,-0.000000,2496,0,0,0,1,6,0,0,2244,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,105012,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93080,'Grand_Company_Leve','l1f1','bnpc4406141',4406141,85.800133,-4.663921,-467.658691,-0.000000,2496,0,0,0,1,6,0,0,2244,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,104740,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93080,'Grand_Company_Leve','l1f1','bnpc4406142',4406142,86.694359,-5.847446,-464.424011,-0.000000,2496,0,0,0,1,6,0,0,2244,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,-11.000000,104468,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92610,'QB_GaiUsc604_001','l1f1','bnpc4270002',4270002,-141.091293,-3.011529,-618.296021,0.724661,1989,0,0,0,8,6,0,0,2088,0,80.000000,42,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89014,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92610,'QB_GaiUsc604_001','l1f1','bnpc4270003',4270003,-140.722900,-2.948897,-620.178711,0.730471,1989,0,0,0,8,6,0,0,2088,0,80.000000,42,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88742,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92610,'QB_GaiUsc604_001','l1f1','bnpc4270007',4270007,-136.727402,-3.032602,-619.161926,0.372183,1990,0,0,0,8,6,0,0,1811,0,80.000000,42,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88476,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92610,'QB_GaiUsc604_001','l1f1','bnpc4270008',4270008,-138.439499,-2.958316,-620.782715,0.602708,1990,0,0,0,8,6,0,0,1811,0,80.000000,42,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88204,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92610,'QB_GaiUsc604_001','l1f1','bnpc4270011',4270011,-139.453796,-3.048980,-618.058777,0.677892,1991,0,0,0,8,6,0,0,1809,0,80.000000,42,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87938,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92610,'QB_GaiUsc604_001','l1f1','bnpc4270036',4270036,-141.705795,-3.232624,-614.671570,0.723646,1988,0,0,0,8,6,0,0,2092,0,80.000000,46,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87672,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92610,'QB_GaiUsc604_001','l1f1','bnpc4270059',4270059,-170.005905,-3.271212,-589.697815,1.569600,1992,0,0,0,8,6,0,0,2090,0,80.000000,42,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87406,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92610,'QB_GaiUsc604_001','l1f1','bnpc4270060',4270060,-171.046402,-3.493575,-592.324280,1.411626,1990,0,0,0,8,6,0,0,1811,0,80.000000,42,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87116,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92610,'QB_GaiUsc604_001','l1f1','bnpc4270061',4270061,-173.998505,-3.520985,-593.916016,1.355380,1989,0,0,0,8,6,0,0,2088,0,80.000000,42,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92610,'QB_GaiUsc604_001','l1f1','bnpc4270049',4270049,-126.601303,-2.748652,-628.706299,-0.632339,1987,0,0,0,8,6,0,0,1486,0,80.000000,45,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86596,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92741,'QB_GaiUsc605_001','l1f1','bnpc4277127',4277127,-97.774750,-0.577204,-620.506897,1.208583,1958,0,0,0,0,6,0,0,2089,0,0.001000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84926,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92741,'QB_GaiUsc605_001','l1f1','bnpc4277164',4277164,-77.076653,1.955893,-626.906616,-0.899512,1876,0,0,0,8,6,0,0,1486,0,0.001000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84660,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92741,'QB_GaiUsc605_001','l1f1','bnpc4277134',4277134,-91.645882,0.499949,-619.213318,0.884409,1873,0,0,0,0,6,0,0,1810,0,0.001000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84394,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92741,'QB_GaiUsc605_001','l1f1','bnpc4277135',4277135,-95.353897,-0.353850,-625.910522,1.082895,1874,0,0,0,0,6,0,0,1811,0,0.001000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84128,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92741,'QB_GaiUsc605_001','l1f1','bnpc4277136',4277136,-91.248283,0.423181,-623.165222,0.807426,1875,0,0,0,0,6,0,0,1812,0,0.001000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83862,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92741,'QB_GaiUsc605_001','l1f1','bnpc4277157',4277157,-59.568699,3.309500,-637.638123,-0.909261,1877,0,0,0,8,6,0,0,2092,0,0.001000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83596,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4278243',4278243,-393.118195,-1.602234,-270.374603,-1.557251,2045,0,0,0,8,6,0,0,1492,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81594,1,0,0,0,0,30264,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4278239',4278239,-393.545502,-1.602234,-268.665588,-1.022797,2044,0,0,0,8,6,0,0,620,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81328,1,0,0,0,0,30264,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4278513',4278513,-492.282288,-3.552298,-260.948914,0.610099,2044,0,0,0,8,6,0,0,620,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81056,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4278521',4278521,-484.272308,-3.550528,-267.455414,0.590254,2045,0,0,0,8,6,0,0,1492,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80778,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4278232',4278232,-395.091187,-1.589740,-271.559296,-1.361232,2169,0,0,0,8,6,0,0,2093,0,0.010000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80518,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4278234',4278234,-395.873993,-1.589740,-270.175995,-0.826841,2170,0,0,0,8,6,0,0,1811,0,0.010000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80252,1,0,0,0,0,0,0,0,237); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4278235',4278235,-396.704712,-1.589740,-268.404694,-1.051770,2171,0,0,0,8,6,0,0,1813,0,0.010000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79986,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4278226',4278226,-411.104492,-1.419182,-274.942902,1.377871,2172,0,0,0,8,6,0,0,1418,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79720,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4278227',4278227,-410.441406,-1.693787,-279.941406,1.232141,2173,0,0,0,8,6,0,0,1502,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79454,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4278298',4278298,-425.032593,-1.589740,-275.953613,1.164631,2170,0,0,0,8,6,0,0,1811,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79164,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4278300',4278300,-425.150909,-1.589740,-271.457214,1.549642,2175,0,0,0,8,6,0,0,2090,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78916,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4278305',4278305,-425.361694,-1.589740,-273.961090,1.317085,2176,0,0,0,8,6,0,0,1809,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78650,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4308235',4308235,-396.840698,-1.589740,-266.212006,-0.675695,2174,0,0,0,8,6,0,0,2095,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78072,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4278569',4278569,-473.204987,-3.216808,-245.004196,-0.542131,2177,0,0,0,8,6,0,0,2089,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77806,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4278577',4278577,-424.312195,-4.013760,-244.806305,-1.565326,2171,0,0,0,8,6,0,0,1813,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77498,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4278529',4278529,-476.290710,-3.549468,-240.272293,0.071733,2170,0,0,0,8,6,0,0,1811,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77220,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4278538',4278538,-467.881592,-3.433000,-245.273499,0.612413,2176,0,0,0,8,6,0,0,1809,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76978,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4278558',4278558,-470.469513,-3.216811,-240.792297,-0.573048,2175,0,0,0,8,6,0,0,2090,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76700,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4286888',4286888,-425.184387,-3.986977,-244.682495,-0.000000,2179,0,0,0,3,6,0,0,2094,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76452,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4286889',4286889,-453.541504,-4.159299,-299.836700,-0.000000,2179,0,0,0,3,6,0,0,2094,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76180,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4286891',4286891,-489.316406,-3.882833,-214.028503,-0.000000,2179,0,0,0,3,6,0,0,2094,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4285260',4285260,-502.703400,-3.767937,-291.030396,0.595160,2177,0,0,0,8,6,0,0,2089,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75630,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4285261',4285261,-507.809906,-3.146109,-284.190399,0.738564,2177,0,0,0,8,6,0,0,2089,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75358,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4285274',4285274,-506.389099,-3.146109,-282.320587,0.143966,2170,0,0,0,8,6,0,0,1811,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75044,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4285278',4285278,-453.481598,-4.123821,-300.806305,-0.000000,2171,0,0,0,8,6,0,0,1813,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74778,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4285317',4285317,-489.885315,-3.854070,-212.812897,0.546296,2171,0,0,0,8,6,0,0,1813,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74506,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4287242',4287242,-506.415100,-2.974703,-290.966797,0.741401,2178,0,0,0,8,6,0,0,297,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74282,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92758,'QB_GaiUsc606_001','l1f1','bnpc4287243',4287243,-508.106415,-3.147106,-290.557404,0.627092,2180,0,0,0,8,6,0,0,2093,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74016,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100705,'QB_GaiUse315_001','l1f1','bnpc4755440',4755440,131.734406,-4.094297,-550.341125,-0.349066,3101,0,0,0,8,6,0,0,2872,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71394,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100705,'QB_GaiUse315_001','l1f1','bnpc4755441',4755441,130.440903,-2.892370,-554.630920,-0.349066,3102,0,0,0,8,6,0,0,2873,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71128,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92574,'QB_JOBMNK_500_001','l1f1','bnpc4268988',4268988,104.760002,-4.940000,-533.530029,1.307990,1600,0,0,0,8,6,0,0,1416,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70118,1,0,0,0,0,0,0,715,314); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92574,'QB_JOBMNK_500_001','l1f1','bnpc4268991',4268991,111.873596,-5.848030,-529.961975,0.645574,1602,0,0,0,8,6,0,0,1903,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69852,1,0,0,0,0,0,0,215,321); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92574,'QB_JOBMNK_500_001','l1f1','bnpc4268992',4268992,107.652298,-4.684570,-540.611877,0.706361,1603,0,0,0,8,6,0,0,1904,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69586,1,0,0,0,0,0,0,216,322); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92574,'QB_JOBMNK_500_001','l1f1','bnpc4268993',4268993,118.521896,-6.121746,-534.590576,-1.185474,1604,0,0,0,8,6,0,0,1905,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69320,1,0,0,0,0,0,0,217,323); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92574,'QB_JOBMNK_500_001','l1f1','bnpc4268994',4268994,115.782097,-5.274335,-541.849426,-0.569069,1605,0,0,0,8,6,0,0,1906,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69054,1,0,0,0,0,0,0,218,324); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92574,'QB_JOBMNK_500_001','l1f1','bnpc4269009',4269009,101.896400,-5.166172,-504.512085,-0.000000,1601,0,0,0,8,6,0,0,2204,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68476,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92574,'QB_JOBMNK_500_001','l1f1','bnpc4307688',4307688,113.920403,-5.375468,-537.841187,-0.000000,2161,0,0,0,8,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67650,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93259,'QB_JOBSMN_500_001','l1f1','bnpc4302979',4302979,479.615601,1.155836,-806.679504,0.055528,2219,0,0,0,8,6,0,0,2148,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66688,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93259,'QB_JOBSMN_500_001','l1f1','bnpc4302960',4302960,484.564514,1.470566,-807.163330,-0.000000,2218,0,0,0,8,6,0,0,1651,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66422,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93259,'QB_JOBSMN_500_001','l1f1','bnpc4302956',4302956,481.535889,-0.850380,-794.068115,-0.226472,2220,0,0,0,8,6,0,0,1640,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66156,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93259,'QB_JOBSMN_500_001','l1f1','bnpc4328234',4328234,478.339905,-0.800719,-794.770996,-0.000000,2236,0,0,0,1,6,0,0,1974,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65890,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103407,'QST_BanIxa50x','l1f1','bnpc4890652',4890652,-514.055725,-3.922588,-442.465088,1.326002,55,0,0,0,1,6,0,0,1,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64784,1,0,0,0,0,0,0,379,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103407,'QST_BanIxa50x','l1f1','bnpc4890653',4890653,-463.684692,-5.471973,-412.175415,-0.061547,55,0,0,0,1,6,0,0,1,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64512,1,0,0,0,0,0,0,379,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103407,'QST_BanIxa50x','l1f1','bnpc4890654',4890654,-485.297699,-4.006621,-411.356110,0.253682,55,0,0,0,1,6,0,0,1,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64240,1,0,0,0,0,0,0,379,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103407,'QST_BanIxa50x','l1f1','bnpc4890681',4890681,-143.461502,3.304258,-663.995117,-0.000048,724,0,0,0,1,6,0,0,1,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63974,1,0,0,0,0,0,0,565,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103407,'QST_BanIxa50x','l1f1','bnpc4890682',4890682,-134.454407,-1.277160,-637.763977,-0.000000,725,0,0,0,1,6,0,0,1,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63708,1,0,0,0,0,0,0,566,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103407,'QST_BanIxa50x','l1f1','bnpc4890683',4890683,-189.262207,4.657631,-654.925598,-0.123104,724,0,0,0,1,6,0,0,1,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63430,1,0,0,0,0,0,0,565,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103407,'QST_BanIxa50x','l1f1','bnpc4890684',4890684,-201.473404,2.349140,-619.840088,-1.498468,725,0,0,0,1,6,0,0,1,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63164,1,0,0,0,0,0,0,566,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103407,'QST_BanIxa50x','l1f1','bnpc4890685',4890685,-169.306305,-0.632000,-606.801270,-0.000000,724,0,0,0,1,6,0,0,1,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62886,1,0,0,0,0,0,0,565,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93234,'QST_GaiUsc411','l1f1','bnpc4301976',4301976,-418.637604,-16.898170,-328.011414,0.505411,43,0,0,0,1,6,0,0,43,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39798,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93234,'QST_GaiUsc411','l1f1','bnpc4301980',4301980,-423.603485,-16.898170,-325.632813,0.910829,43,0,0,0,1,6,0,0,43,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39526,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93234,'QST_GaiUsc411','l1f1','bnpc4301981',4301981,-417.806702,-16.898170,-324.450012,0.481592,43,0,0,0,1,6,0,0,43,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39254,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93234,'QST_GaiUsc411','l1f1','bnpc4301983',4301983,-420.574493,-16.898170,-326.102112,0.395344,43,0,0,0,1,6,0,0,43,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38982,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93236,'QST_GaiUsc412','l1f1','bnpc4302030',4302030,-147.408707,43.394691,-188.790604,-0.000000,1908,0,0,0,1,6,0,0,1996,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38300,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93238,'QST_GaiUsc413','l1f1','bnpc4302140',4302140,-47.279350,15.534150,-603.470215,-0.581967,27,0,0,0,1,6,0,0,27,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37242,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93238,'QST_GaiUsc413','l1f1','bnpc4302141',4302141,-66.415199,7.421720,-601.715088,0.961534,27,0,0,0,1,6,0,0,27,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36970,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93238,'QST_GaiUsc413','l1f1','bnpc4302152',4302152,-116.679199,7.092703,-677.813904,1.274587,27,0,0,0,1,6,0,0,27,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36698,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93238,'QST_GaiUsc413','l1f1','bnpc4302153',4302153,-107.065399,5.190910,-670.285889,1.158254,27,0,0,0,1,6,0,0,27,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36426,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93238,'QST_GaiUsc413','l1f1','bnpc4302154',4302154,-102.251404,2.851296,-659.955627,0.222834,27,0,0,0,1,6,0,0,27,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36154,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93112,'QST_GaiUsc505','l1f1','bnpc4297317',4297317,578.678589,-2.647477,-264.515198,-1.412914,727,0,0,0,1,6,0,0,646,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93132,'QST_GaiUsc506','l1f1','bnpc4298747',4298747,406.162292,-9.246925,-753.471313,-0.845986,2197,0,0,0,1,6,0,0,2061,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35064,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93158,'QST_GaiUsc507','l1f1','bnpc4299869',4299869,437.520111,-17.099880,-356.876404,-0.395170,1914,0,0,0,1,6,0,0,2006,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34590,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93161,'QST_GaiUsc509','l1f1','bnpc4299894',4299894,-281.966614,-16.372511,-364.701904,-0.623374,1915,0,0,0,1,6,0,0,2007,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34116,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93170,'QST_GaiUsc601','l1f1','bnpc4300120',4300120,-167.489594,2.780334,-651.605774,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31858,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93170,'QST_GaiUsc601','l1f1','bnpc4300124',4300124,-166.062195,2.618770,-654.219971,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31586,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93170,'QST_GaiUsc601','l1f1','bnpc4300125',4300125,-166.874802,3.274265,-657.254272,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31314,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93170,'QST_GaiUsc601','l1f1','bnpc4300128',4300128,-149.248505,-1.729870,-611.321289,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31042,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93174,'QST_GaiUsc602','l1f1','bnpc4300144',4300144,-495.651215,-3.193810,-462.369507,-0.606472,55,0,0,0,1,6,0,0,57,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30556,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93174,'QST_GaiUsc602','l1f1','bnpc4300145',4300145,-492.878815,-2.833958,-465.240295,-0.553527,55,0,0,0,1,6,0,0,57,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30284,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98387,'QST_GaiUse211','l1f1','bnpc4622527',4622527,81.651001,-1.763546,-479.359589,0.560872,777,0,0,0,1,6,0,0,2673,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21700,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98387,'QST_GaiUse211','l1f1','bnpc4622528',4622528,81.763474,-2.148267,-484.455505,1.082654,777,0,0,0,1,6,0,0,2673,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21428,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98387,'QST_GaiUse211','l1f1','bnpc4622530',4622530,212.636200,0.477010,-556.941528,-0.736373,777,0,0,0,1,6,0,0,2673,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21156,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98387,'QST_GaiUse211','l1f1','bnpc4622531',4622531,208.284805,2.398657,-564.715088,0.334426,777,0,0,0,1,6,0,0,2673,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20884,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98387,'QST_GaiUse211','l1f1','bnpc4622533',4622533,232.694305,-1.797919,-546.594421,0.400059,777,0,0,0,1,6,0,0,2673,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20612,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98387,'QST_GaiUse211','l1f1','bnpc4622534',4622534,239.544403,-2.514875,-545.599121,-1.110215,777,0,0,0,1,6,0,0,2673,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20340,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98387,'QST_GaiUse211','l1f1','bnpc4622536',4622536,171.422806,-16.270470,-471.670898,-1.058557,777,0,0,0,1,6,0,0,2673,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20068,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98387,'QST_GaiUse211','l1f1','bnpc4622537',4622537,269.618896,-23.297621,-453.855988,1.275766,777,0,0,0,1,6,0,0,2673,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19796,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98387,'QST_GaiUse211','l1f1','bnpc4622538',4622538,307.667206,-20.621941,-452.075409,0.865644,777,0,0,0,1,6,0,0,2673,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19524,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98387,'QST_GaiUse211','l1f1','bnpc4622539',4622539,316.016693,-17.133720,-457.630005,-1.280654,777,0,0,0,1,6,0,0,2673,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19252,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102725,'QST_GaiUse313','l1f1','bnpc4867448',4867448,547.125305,-9.811820,-740.987000,0.489798,647,0,0,0,1,6,0,0,2874,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18162,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102726,'QST_GaiUse314','l1f1','bnpc4867473',4867473,-324.944794,-9.062661,-525.271729,-0.354846,140,0,0,0,1,6,0,0,2871,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17352,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93398,'QST_JobSch_450_001','l1f1','bnpc4306019',4306019,-258.777191,-15.597190,-344.183411,-0.382350,1949,0,0,0,1,6,0,0,2055,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13194,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93398,'QST_JobSch_450_001','l1f1','bnpc4374626',4374626,-257.709503,-16.898170,-347.575287,-0.769199,2285,0,0,0,1,6,0,0,2212,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12928,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93398,'QST_JobSch_450_001','l1f1','bnpc4374627',4374627,-262.798615,-16.898170,-344.440887,0.178891,2285,0,0,0,1,6,0,0,2212,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12656,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93254,'QST_JobSmn450_001','l1f1','bnpc4302657',4302657,505.067902,-12.455660,-350.143799,-0.405996,1948,0,0,0,1,6,0,0,2054,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11834,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93254,'QST_JobSmn450_001','l1f1','bnpc4302660',4302660,494.804199,-2.535655,-479.240112,0.184608,1948,0,0,0,1,6,0,0,2054,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11562,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93254,'QST_JobSmn450_001','l1f1','bnpc4302665',4302665,365.293396,-3.381310,-494.127808,0.436933,1948,0,0,0,1,6,0,0,2054,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11290,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494667',4494667,-383.627106,41.123051,281.544189,-0.000048,2395,0,0,0,1,6,0,0,739,0,0.000000,50,0,120,1,0,1,0,40,7,0,1,0,0,0,0.000000,1.000000,69892,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494665',4494665,-393.942200,41.153561,277.332611,-0.000048,2394,0,0,0,1,6,0,0,738,0,0.000000,50,0,120,1,0,1,0,40,7,0,1,0,0,0,0.000000,1.000000,69626,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494671',4494671,-387.197693,41.550289,275.806793,-0.000048,2392,0,0,0,1,6,0,0,736,0,0.000000,50,0,120,1,0,1,0,40,7,0,1,0,0,0,0.000000,1.000000,69360,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494661',4494661,-396.688812,41.947021,281.910400,-0.000048,2396,0,0,0,1,6,0,0,740,0,0.000000,50,0,120,1,0,1,0,40,7,0,1,0,0,0,0.000000,1.000000,69094,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494649',4494649,-436.453888,41.947021,203.082306,-0.000048,2402,0,0,0,1,6,0,0,1871,0,0.000000,50,0,120,1,0,10,0,40,1,0,1,0,0,0,0.000000,1.000000,68828,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494659',4494659,-447.143188,42.350288,262.934601,-0.000048,2399,0,0,0,1,6,0,0,821,0,0.000000,50,0,120,1,0,3,0,40,2,0,1,0,0,0,0.000000,1.000000,68562,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494658',4494658,-451.651794,42.374271,263.446899,-0.000048,2399,0,0,0,1,6,0,0,821,0,0.000000,50,0,120,1,0,3,0,40,2,0,1,0,0,0,0.000000,1.000000,68290,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494701',4494701,-457.663910,42.374271,280.384491,1.570451,2399,0,0,0,1,6,0,0,821,0,0.000000,50,0,120,1,0,4,0,40,3,0,1,0,0,0,0.000000,1.000000,68018,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494660',4494660,-452.964111,42.343750,292.957886,0.000096,2399,0,0,0,1,6,0,0,821,0,0.000000,50,0,120,1,0,2,0,40,2,0,1,0,0,0,0.000000,1.000000,67746,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494668',4494668,-461.234406,41.062012,269.703094,1.570451,2399,0,0,0,1,6,0,0,821,0,0.000000,50,0,120,1,0,4,0,40,3,0,1,0,0,0,0.000000,1.000000,67474,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494663',4494663,-465.262909,42.374271,280.109894,1.570451,2399,0,0,0,1,6,0,0,821,0,0.000000,50,0,120,1,0,4,0,40,3,0,1,0,0,0,0.000000,1.000000,67202,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494662',4494662,-446.799408,42.374271,293.537689,0.000096,2399,0,0,0,1,6,0,0,821,0,0.000000,50,0,120,1,0,2,0,40,2,0,1,0,0,0,0.000000,1.000000,66930,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494695',4494695,-467.948395,42.587891,273.579010,1.570451,2399,0,0,0,1,6,0,0,821,0,0.000000,50,0,120,1,0,4,0,40,3,0,1,0,0,0,0.000000,1.000000,66658,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494693',4494693,-395.346008,42.771000,263.721588,1.570451,2398,0,0,0,1,6,0,0,820,0,0.000000,50,0,120,1,0,1,0,40,7,0,1,0,0,0,0.000000,1.000000,66392,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494643',4494643,-394.583099,41.977539,294.850098,1.570451,2398,0,0,0,1,6,0,0,820,0,0.000000,50,0,120,1,0,1,0,40,7,0,1,0,0,0,0.000000,1.000000,66120,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494692',4494692,-450.431091,42.374271,261.066498,-0.000048,2400,0,0,0,1,6,0,0,822,0,0.000000,50,0,120,1,0,3,0,40,2,0,1,0,0,0,0.000000,1.000000,65854,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494686',4494686,-450.522614,42.374271,296.986298,0.000096,2400,0,0,0,1,6,0,0,822,0,0.000000,50,0,120,1,0,2,0,40,2,0,1,0,0,0,0.000000,1.000000,65582,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494679',4494679,-401.113892,41.947021,274.647095,-0.000048,2397,0,0,0,1,6,0,0,741,0,0.000000,50,0,120,1,0,1,0,40,7,0,1,0,0,0,0.000000,1.000000,65316,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494681',4494681,-389.120392,42.374271,283.741486,-0.000048,2393,0,0,0,1,6,0,0,737,0,0.000000,50,0,120,1,0,1,0,40,7,0,1,0,0,0,0.000000,1.000000,65050,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4534403',4534403,-449.759705,41.550289,191.241302,-0.000048,2402,0,0,0,1,6,0,0,1871,0,0.000000,50,0,120,1,0,11,0,40,1,0,1,0,0,0,0.000000,1.000000,64748,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4534404',4534404,-464.133698,41.947021,198.352097,-0.000048,2402,0,0,0,1,6,0,0,1871,0,0.000000,50,0,120,1,0,12,0,40,1,0,1,0,0,0,0.000000,1.000000,64476,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494703',4494703,-461.936401,41.977539,192.553604,-0.000048,2401,0,0,0,1,6,0,0,1864,0,0.000000,50,0,120,1,0,12,0,40,1,0,1,0,0,0,0.000000,1.000000,64240,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494702',4494702,-440.451691,41.977539,194.232101,-0.000048,2401,0,0,0,1,6,0,0,1864,0,0.000000,50,0,120,1,0,10,0,40,1,0,1,0,0,0,0.000000,1.000000,63968,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93316,'LVD_bnpc_11','l1r1','bnpc4494706',4494706,-455.497101,41.550289,187.609604,-0.000048,2401,0,0,0,1,6,0,0,1864,0,0.000000,50,0,120,1,0,11,0,40,1,0,1,0,0,0,0.000000,1.000000,63696,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93661,'LVD_bnpc_12','l1r1','bnpc4314819',4314819,-450.966187,26.296740,20.098280,-0.000000,2347,0,0,0,0,6,0,0,706,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,63318,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93661,'LVD_bnpc_12','l1r1','bnpc4491830',4491830,-448.929291,26.300249,20.027781,-0.000000,2348,0,0,0,0,6,0,0,706,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,63052,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93661,'LVD_bnpc_12','l1r1','bnpc4491836',4491836,-453.391388,26.291260,20.279169,-0.000048,2349,0,0,0,0,6,0,0,707,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,62786,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93661,'LVD_bnpc_12','l1r1','bnpc4504842',4504842,-450.980408,25.528200,25.253660,-0.000048,2434,0,0,0,0,6,0,0,913,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60648,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93661,'LVD_bnpc_12','l1r1','bnpc4545609',4545609,-447.692505,25.506430,21.981461,-0.000000,2664,0,0,0,0,6,0,0,707,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60382,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93317,'LVD_bnpc_21','l1r1','bnpc4494655',4494655,253.779602,51.066399,279.883514,-1.570451,2403,0,0,0,0,6,0,0,1872,0,3.160000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59072,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93317,'LVD_bnpc_21','l1r1','bnpc4494656',4494656,253.877304,51.066399,244.670105,-1.570451,2403,0,0,0,0,6,0,0,1872,0,3.160000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,58800,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93317,'LVD_bnpc_21','l1r1','bnpc4494657',4494657,253.873993,51.066399,315.127594,-1.570451,2403,0,0,0,0,6,0,0,1872,0,3.160000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,58528,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93317,'LVD_bnpc_21','l1r1','bnpc4494631',4494631,250.612701,50.656780,285.010101,-1.445180,2404,0,0,0,1,6,0,0,820,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,58262,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93317,'LVD_bnpc_21','l1r1','bnpc4494638',4494638,251.087204,50.644650,274.799713,-1.416988,2405,0,0,0,1,6,0,0,822,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57996,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93317,'LVD_bnpc_21','l1r1','bnpc4494639',4494639,246.417801,50.736210,279.804688,-1.262965,2406,0,0,0,1,6,0,0,1864,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57730,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93317,'LVD_bnpc_21','l1r1','bnpc4584210',4584210,243.536896,50.759949,279.812195,-1.524877,2445,0,0,0,1,6,0,0,730,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57464,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93662,'LVD_bnpc_22','l1r1','bnpc4314855',4314855,440.438110,66.266403,279.917999,-1.570451,2350,0,0,0,0,6,0,0,710,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57086,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93662,'LVD_bnpc_22','l1r1','bnpc4314854',4314854,452.530212,66.163116,280.986206,-1.570451,2351,0,0,0,0,6,0,0,710,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,56820,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93662,'LVD_bnpc_22','l1r1','bnpc4314849',4314849,453.972687,66.163116,284.959686,-1.570451,2352,0,0,0,0,6,0,0,711,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,56554,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93662,'LVD_bnpc_22','l1r1','bnpc4314853',4314853,480.383514,67.451271,279.952301,-1.570451,2353,0,0,0,0,6,0,0,712,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,56288,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93662,'LVD_bnpc_22','l1r1','bnpc4330318',4330318,420.424103,67.451286,314.612305,0.514624,2353,0,0,0,0,6,0,0,712,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,56016,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93662,'LVD_bnpc_22','l1r1','bnpc4330319',4330319,420.454987,67.451286,245.454803,0.381331,2353,0,0,0,0,6,0,0,712,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,55744,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93662,'LVD_bnpc_22','l1r1','bnpc4506124',4506124,443.434692,66.209160,284.595886,-0.000000,2435,0,0,0,0,6,0,0,2000,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,55166,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93318,'LVD_bnpc_31','l1r1','bnpc4494653',4494653,-110.201302,44.168140,-165.366104,-0.000000,2407,0,0,0,0,6,0,0,1873,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,53788,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93318,'LVD_bnpc_31','l1r1','bnpc4494654',4494654,-109.968002,44.168140,-157.214600,-0.000000,2409,0,0,0,0,6,0,0,1875,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,53522,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93318,'LVD_bnpc_31','l1r1','bnpc4498270',4498270,-113.529701,44.168140,-158.593704,-0.000000,2408,0,0,0,0,6,0,0,1874,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,53256,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93318,'LVD_bnpc_31','l1r1','bnpc4498271',4498271,-106.108803,44.168140,-157.009598,-0.000000,2411,0,0,0,0,6,0,0,1871,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,52990,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93318,'LVD_bnpc_31','l1r1','bnpc4494650',4494650,-109.881897,44.168140,-186.805893,-0.000048,2410,0,0,0,0,6,0,0,1876,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,52656,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93318,'LVD_bnpc_31','l1r1','bnpc4496957',4496957,-128.294601,44.168140,-154.986298,-0.000048,2410,0,0,0,0,6,0,0,1876,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,52384,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93318,'LVD_bnpc_31','l1r1','bnpc4496958',4496958,-91.676697,44.168140,-154.963501,-0.000048,2410,0,0,0,0,6,0,0,1876,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,52112,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93663,'LVD_bnpc_32','l1r1','bnpc4314882',4314882,-109.937103,68.333641,-379.789612,-0.000000,2354,0,0,0,0,6,0,0,727,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45698,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93663,'LVD_bnpc_32','l1r1','bnpc4314889',4314889,-105.743202,68.116257,-380.410492,-0.000000,2355,0,0,0,0,6,0,0,727,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45432,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93663,'LVD_bnpc_32','l1r1','bnpc4314888',4314888,-109.941299,68.223022,-368.337494,-0.000048,2356,0,0,0,0,6,0,0,728,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45166,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93663,'LVD_bnpc_32','l1r1','bnpc4491852',4491852,-117.929802,68.098053,-379.122986,-0.000000,2357,0,0,0,0,6,0,0,730,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44900,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93663,'LVD_bnpc_32','l1r1','bnpc4491853',4491853,-101.810699,68.098053,-380.171387,-0.000000,2358,0,0,0,0,6,0,0,731,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44634,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93663,'LVD_bnpc_32','l1r1','bnpc4491854',4491854,-85.100998,71.963287,-393.307404,-0.785398,2359,0,0,0,0,6,0,0,2510,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44368,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93663,'LVD_bnpc_32','l1r1','bnpc4496981',4496981,-134.837402,71.642502,-393.237213,0.785398,2359,0,0,0,0,6,0,0,2510,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44096,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93663,'LVD_bnpc_32','l1r1','bnpc4496982',4496982,-85.137222,70.452599,-343.497406,-0.785398,2359,0,0,0,0,6,0,0,2510,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43824,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93663,'LVD_bnpc_32','l1r1','bnpc4496983',4496983,-134.859894,71.642517,-343.494598,0.785398,2359,0,0,0,0,6,0,0,2510,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43552,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93663,'LVD_bnpc_32','l1r1','bnpc4534372',4534372,-122.858803,68.098053,-375.005493,-0.000000,2444,0,0,0,0,6,0,0,727,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43286,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93319,'LVD_bnpc_41','l1r1','bnpc4314890',4314890,-110.034500,650.928223,181.515503,-0.000048,2360,0,0,0,0,6,0,0,732,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34188,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93319,'LVD_bnpc_41','l1r1','bnpc4314895',4314895,-112.497200,650.928223,182.785294,0.000000,2361,0,0,0,0,6,0,0,732,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33922,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93319,'LVD_bnpc_41','l1r1','bnpc4314894',4314894,-105.010002,650.928406,183.334702,-0.000000,2362,0,0,0,0,6,0,0,733,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33656,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93319,'LVD_bnpc_41','l1r1','bnpc4506767',4506767,-104.709999,650.819580,185.434692,-0.000000,2436,0,0,0,0,6,0,0,730,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32454,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100173,'LVD_boss_01','l1r2','bnpc4741317',4741317,-400.015289,499.992310,-200.000000,1.570451,3035,0,0,0,0,6,0,0,2824,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,84564,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100173,'LVD_boss_01','l1r2','bnpc4741318',4741318,-400.000000,500.000000,-200.000000,-0.000000,3036,0,0,0,0,6,0,0,2823,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,84298,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100173,'LVD_boss_01','l1r2','bnpc4741319',4741319,-398.214691,499.992310,-204.058899,-0.000048,3037,0,0,0,0,6,0,0,2822,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,84032,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100173,'LVD_boss_01','l1r2','bnpc4753173',4753173,-400.000000,500.000000,-200.000000,-0.000000,410,0,0,0,3,6,0,0,2824,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,77838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100173,'LVD_boss_01','l1r2','bnpc4756982',4756982,-399.793488,500.000000,-198.556000,-0.000000,3039,0,0,0,0,6,0,0,2825,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,77572,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100173,'LVD_boss_01','l1r2','bnpc4772252',4772252,-462.103912,506.001495,-199.699997,1.570451,3035,0,0,0,0,6,0,0,2824,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,75112,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100170,'LVD_mboss_01','l1r2','bnpc4725460',4725460,-7.121875,-590.000000,-198.213593,-0.000000,3010,0,0,0,0,6,0,0,2808,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,63218,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100170,'LVD_mboss_01','l1r2','bnpc4725459',4725459,0.000000,-590.000122,-192.149994,-0.000048,3009,0,0,0,0,6,0,0,2809,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,62952,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100170,'LVD_mboss_01','l1r2','bnpc4725461',4725461,7.680249,-590.000000,-198.588196,-0.000000,3012,0,0,0,0,6,0,0,2806,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,62686,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100170,'LVD_mboss_01','l1r2','bnpc4725462',4725462,8.935142,-590.000000,-197.422699,-0.000000,3013,0,0,0,0,6,0,0,2805,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,62420,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100170,'LVD_mboss_01','l1r2','bnpc4725463',4725463,9.748242,-590.000000,-196.459900,-0.000000,3014,0,0,0,0,6,0,0,2804,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,62154,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100170,'LVD_mboss_01','l1r2','bnpc4738733',4738733,-15.554890,-589.807373,-191.548203,-0.914342,3011,0,0,0,0,6,0,0,2801,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,61888,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100170,'LVD_mboss_01','l1r2','bnpc4738734',4738734,0.986073,-589.807373,-218.109802,0.005537,3011,0,0,0,0,6,0,0,2801,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,61616,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100170,'LVD_mboss_01','l1r2','bnpc4738735',4738735,15.121400,-589.958374,-190.418594,1.111303,3011,0,0,0,0,6,0,0,2801,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,61344,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100170,'LVD_mboss_01','l1r2','bnpc4738736',4738736,-14.496320,-590.000000,-189.750793,-1.119056,3015,0,0,0,0,6,0,0,2800,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,61078,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100170,'LVD_mboss_01','l1r2','bnpc4738737',4738737,-1.500090,-590.000000,-217.111496,0.058346,3015,0,0,0,0,6,0,0,2800,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60806,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100170,'LVD_mboss_01','l1r2','bnpc4738738',4738738,15.766540,-589.958374,-192.385696,0.983009,3015,0,0,0,0,6,0,0,2800,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60534,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100170,'LVD_mboss_01','l1r2','bnpc4738740',4738740,-3.665296,-589.900085,-198.867599,-0.000000,434,0,0,0,3,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60268,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100171,'LVD_mboss_02','l1r2','bnpc4741208',4741208,0.076233,-0.015320,-199.755905,-0.000048,3031,0,0,0,0,6,0,0,2815,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44218,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100171,'LVD_mboss_02','l1r2','bnpc4741209',4741209,-2.108494,-0.000000,-199.899506,-0.000000,3032,0,0,0,0,6,0,0,2814,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43952,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100171,'LVD_mboss_02','l1r2','bnpc4741210',4741210,1.702044,0.000000,-198.986099,-0.000000,3033,0,0,0,0,6,0,0,2813,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43686,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100171,'LVD_mboss_02','l1r2','bnpc4741211',4741211,-4.051901,0.000000,-199.490601,-0.000000,3034,0,0,0,0,6,0,0,2812,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43420,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100171,'LVD_mboss_02','l1r2','bnpc4741212',4741212,2.207238,0.000000,-201.585693,-0.000000,3038,0,0,0,3,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43154,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100171,'LVD_mboss_02','l1r2','bnpc4756202',4756202,0.333069,0.000000,-195.530807,-0.000000,3061,0,0,0,0,6,0,0,2913,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41408,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100171,'LVD_mboss_02','l1r2','bnpc4756203',4756203,0.000000,0.000000,-200.000000,-0.000000,3078,0,0,0,0,6,0,0,2810,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41142,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100171,'LVD_mboss_02','l1r2','bnpc4745445',4745445,2.735708,0.000000,-201.381302,-0.000048,434,0,0,0,3,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37084,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100172,'LVD_mboss_03','l1r2','bnpc4741748',4741748,0.000000,600.941406,-200.000000,0.610865,3040,0,0,0,0,6,0,0,2821,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34148,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100172,'LVD_mboss_03','l1r2','bnpc4741819',4741819,-3.071606,600.099976,-196.649399,-0.000000,3041,0,0,0,3,6,0,0,2820,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33882,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100172,'LVD_mboss_03','l1r2','bnpc4741820',4741820,4.257263,600.091614,-201.373398,-0.000048,3042,0,0,0,0,6,0,0,2819,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33616,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100172,'LVD_mboss_03','l1r2','bnpc4741826',4741826,13.754340,600.000000,-180.534393,-0.610865,3043,0,0,0,0,6,0,0,2818,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33282,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100172,'LVD_mboss_03','l1r2','bnpc4741827',4741827,-24.062071,600.000000,-199.938507,1.564346,3044,0,0,0,0,6,0,0,2817,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33016,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100172,'LVD_mboss_03','l1r2','bnpc4741828',4741828,9.236794,600.109985,-222.082703,0.610865,3045,0,0,0,0,6,0,0,2816,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32750,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100172,'LVD_mboss_03','l1r2','bnpc4741829',4741829,0.000000,600.000000,-200.000000,0.261799,3046,0,0,0,0,6,0,0,2826,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32484,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100172,'LVD_mboss_03','l1r2','bnpc4757502',4757502,0.000000,600.000000,-200.000000,-0.000000,434,0,0,0,3,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31048,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100172,'LVD_mboss_03','l1r2','bnpc4768232',4768232,-0.034175,600.000000,-199.187500,-0.000000,3047,0,0,0,0,6,0,0,2886,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30866,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100167,'LVD_trush_01','l1r2','bnpc4741065',4741065,-0.015320,-700.000000,35.508320,-0.000048,3020,0,0,0,0,6,0,0,2799,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27832,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100167,'LVD_trush_01','l1r2','bnpc4741066',4741066,-0.991882,-700.000000,49.980721,-0.000048,3016,0,0,0,1,6,0,0,2803,0,0.000000,50,2,120,1,0,11,0,60,2,0,1,0,1,0,0.000000,1.000000,27566,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100167,'LVD_trush_01','l1r2','bnpc4741067',4741067,0.839172,-699.824524,49.301880,-0.000048,3017,0,0,0,1,6,0,0,2802,0,0.000000,50,2,120,1,0,11,0,60,2,0,1,0,1,0,0.000000,1.000000,27300,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100167,'LVD_trush_01','l1r2','bnpc4741069',4741069,-15.130100,-699.824524,48.661011,-0.000048,3016,0,0,0,1,6,0,0,2803,0,0.000000,50,2,120,1,0,12,0,60,2,0,1,0,1,0,0.000000,1.000000,27022,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100167,'LVD_trush_01','l1r2','bnpc4741070',4741070,-18.038851,-699.824524,47.088711,-0.000048,3017,0,0,0,1,6,0,0,2802,0,0.000000,50,2,120,1,0,12,0,60,2,0,1,0,1,0,0.000000,1.000000,26756,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100167,'LVD_trush_01','l1r2','bnpc4741071',4741071,14.380770,-699.794006,47.989620,-0.000048,3016,0,0,0,1,6,0,0,2803,0,0.000000,50,2,120,1,0,13,0,60,2,0,1,0,1,0,0.000000,1.000000,26478,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100167,'LVD_trush_01','l1r2','bnpc4741072',4741072,17.607430,-699.824524,47.226559,-0.000048,3017,0,0,0,1,6,0,0,2802,0,0.000000,50,2,120,1,0,13,0,60,2,0,1,0,1,0,0.000000,1.000000,26212,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100167,'LVD_trush_01','l1r2','bnpc4741073',4741073,13.168520,-699.824524,43.371780,-0.000048,3019,0,0,0,1,6,0,0,2800,0,0.000000,50,2,120,1,0,14,0,60,2,0,1,0,1,0,0.000000,1.000000,25946,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100167,'LVD_trush_01','l1r2','bnpc4741074',4741074,8.438171,-700.007629,36.077599,-0.000048,3018,0,0,0,0,6,0,0,2801,0,0.000000,50,2,120,1,0,14,0,60,2,0,1,0,1,0,0.000000,1.000000,25680,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100167,'LVD_trush_01','l1r2','bnpc4741075',4741075,-8.712891,-700.007629,36.077579,-0.000048,3018,0,0,0,0,6,0,0,2801,0,0.000000,50,2,120,1,0,15,0,60,2,0,1,0,1,0,0.000000,1.000000,25408,1,0,2000,0,0,0,4886867,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100167,'LVD_trush_01','l1r2','bnpc4741076',4741076,-13.066690,-700.007629,41.645981,-0.000048,3019,0,0,0,1,6,0,0,2800,0,0.000000,50,2,120,1,0,15,0,60,2,0,1,0,1,0,0.000000,1.000000,25130,1,0,2000,0,0,0,4886867,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100167,'LVD_trush_01','l1r2','bnpc4741078',4741078,18.509090,-699.824524,59.647461,-0.000048,3018,0,0,0,2,6,0,0,2801,0,0.000000,50,2,120,1,0,16,0,60,2,0,1,0,1,0,0.000000,1.000000,24864,1,0,2000,0,0,0,4886901,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100167,'LVD_trush_01','l1r2','bnpc4741079',4741079,13.778870,-700.007629,64.133667,-0.000048,3019,0,0,0,2,6,0,0,2800,0,0.000000,50,2,120,1,0,16,0,60,2,0,1,0,1,0,0.000000,1.000000,24586,1,0,2000,0,0,0,4886901,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100168,'LVD_trush_02','l1r2','bnpc4740467',4740467,0.000000,-400.000000,-200.000000,1.506104,3023,0,0,0,0,6,0,0,2798,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23318,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100168,'LVD_trush_02','l1r2','bnpc4740475',4740475,-0.850621,-400.000000,-212.990799,1.234314,3022,0,0,0,0,6,0,0,2795,0,0.000000,50,2,120,1,0,31,0,60,3,0,1,0,1,0,0.000000,1.000000,23052,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100168,'LVD_trush_02','l1r2','bnpc4740479',4740479,-0.076355,-400.015289,-198.931900,1.234250,3022,0,0,0,0,6,0,0,2795,0,0.000000,50,2,120,1,0,32,0,60,3,0,1,0,1,0,0.000000,1.000000,22780,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100168,'LVD_trush_02','l1r2','bnpc4740480',4740480,0.720314,-400.000000,-187.577805,1.234314,3022,0,0,0,0,6,0,0,2795,0,0.000000,50,2,120,1,0,33,0,60,3,0,1,0,1,0,0.000000,1.000000,22508,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100168,'LVD_trush_02','l1r2','bnpc4740481',4740481,-6.143593,-400.000000,-216.200195,1.037210,3021,0,0,0,0,6,0,0,2796,0,0.000000,50,2,120,1,0,31,0,60,3,0,1,0,1,0,0.000000,1.000000,22242,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100168,'LVD_trush_02','l1r2','bnpc4740483',4740483,-5.843593,-400.000000,-209.925400,1.037210,3021,0,0,0,0,6,0,0,2796,0,0.000000,50,2,120,1,0,31,0,60,3,0,1,0,1,0,0.000000,1.000000,21970,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100168,'LVD_trush_02','l1r2','bnpc4740484',4740484,-5.543592,-400.000000,-201.233902,1.037210,3021,0,0,0,0,6,0,0,2796,0,0.000000,50,2,120,1,0,32,0,60,3,0,1,0,1,0,0.000000,1.000000,21698,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100168,'LVD_trush_02','l1r2','bnpc4740485',4740485,-5.243592,-400.000000,-196.147797,1.037210,3021,0,0,0,0,6,0,0,2796,0,0.000000,50,2,120,1,0,32,0,60,3,0,1,0,1,0,0.000000,1.000000,21426,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100168,'LVD_trush_02','l1r2','bnpc4740486',4740486,-4.943592,-400.000000,-190.413605,1.037210,3021,0,0,0,0,6,0,0,2796,0,0.000000,50,2,120,1,0,33,0,60,3,0,1,0,1,0,0.000000,1.000000,21154,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100168,'LVD_trush_02','l1r2','bnpc4740487',4740487,-4.643592,-400.000000,-185.226700,1.037210,3021,0,0,0,0,6,0,0,2796,0,0.000000,50,2,120,1,0,33,0,60,3,0,1,0,1,0,0.000000,1.000000,20882,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100168,'LVD_trush_02','l1r2','bnpc4740488',4740488,20.723820,-400.000000,-199.798706,-1.545053,3024,0,0,0,0,6,0,0,2794,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20616,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100168,'LVD_trush_02','l1r2','bnpc4740493',4740493,17.799259,-400.000000,-191.476395,-1.545053,3024,0,0,0,0,6,0,0,2794,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20344,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100168,'LVD_trush_02','l1r2','bnpc4740494',4740494,18.099260,-400.000000,-205.909897,-1.545053,3024,0,0,0,0,6,0,0,2794,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20072,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100168,'LVD_trush_02','l1r2','bnpc4740497',4740497,21.433460,-400.000000,-205.609894,-1.545053,3030,0,0,0,0,6,0,0,2793,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19806,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100168,'LVD_trush_02','l1r2','bnpc4740496',4740496,21.133459,-400.000000,-191.176407,-1.545053,3030,0,0,0,0,6,0,0,2793,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19534,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100168,'LVD_trush_02','l1r2','bnpc4740495',4740495,24.058020,-400.000000,-199.498703,-1.545053,3030,0,0,0,0,6,0,0,2793,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19262,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100169,'LVD_trush_03','l1r2','bnpc4741050',4741050,-0.041945,200.000000,-196.614304,0.000000,3026,0,0,0,0,6,0,0,2797,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18432,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100169,'LVD_trush_03','l1r2','bnpc4741051',4741051,0.138764,200.000000,-186.543396,0.000000,3025,0,0,0,0,6,0,0,2797,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18166,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100169,'LVD_trush_03','l1r2','bnpc4741052',4741052,-7.500371,200.000000,-204.569397,0.000000,3027,0,0,0,0,6,0,0,2792,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17900,1,0,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100169,'LVD_trush_03','l1r2','bnpc4741053',4741053,-0.251467,200.000000,-204.269394,0.000000,3027,0,0,0,0,6,0,0,2792,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17628,1,0,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100169,'LVD_trush_03','l1r2','bnpc4741054',4741054,7.218786,200.000000,-204.223602,0.000000,3027,0,0,0,0,6,0,0,2792,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17356,1,0,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100169,'LVD_trush_03','l1r2','bnpc4741055',4741055,-9.985457,200.000000,-193.711304,0.094694,3029,0,0,0,0,6,0,0,2791,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17090,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100169,'LVD_trush_03','l1r2','bnpc4741056',4741056,9.159367,200.000000,-193.411301,0.094694,3029,0,0,0,0,6,0,0,2791,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16818,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100169,'LVD_trush_03','l1r2','bnpc4741058',4741058,9.459367,200.000000,-190.378098,0.094694,3028,0,0,0,0,6,0,0,2807,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16552,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100169,'LVD_trush_03','l1r2','bnpc4741059',4741059,-9.685457,200.000000,-190.678101,0.094694,3028,0,0,0,0,6,0,0,2807,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16280,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85797,'Leve_PopRange','leve_test','bnpc4164718',4164718,3.783010,0.000000,0.013109,-0.000000,1325,0,0,0,1,6,0,0,1,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1104,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85797,'Leve_PopRange','leve_test','bnpc4164720',4164720,-18.125780,0.000000,5.133900,-0.000000,1325,0,0,0,1,6,0,0,1,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,832,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85797,'Leve_PopRange','leve_test','bnpc4164721',4164721,-56.676949,0.000000,1.607842,-0.000000,1325,0,0,0,1,6,0,0,1,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,560,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85797,'Leve_PopRange','leve_test','bnpc4164722',4164722,-23.622570,0.000000,-3.755042,-0.000000,1325,0,0,0,1,6,0,0,1,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,288,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97947,'LVD_bnpc_01','o1fa','bnpc4600253',4600253,0.000000,0.025700,-19.000000,0.000000,2663,0,0,0,0,6,0,0,2550,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29960,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97947,'LVD_bnpc_01','o1fa','bnpc4600281',4600281,-14.373760,0.025694,-14.166860,-1.570451,2694,0,0,0,0,6,0,0,2551,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29694,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97947,'LVD_bnpc_01','o1fa','bnpc4600362',4600362,-3.436191,0.025694,-3.515284,-0.000000,2696,0,0,0,3,6,0,0,2550,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29428,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97947,'LVD_bnpc_01','o1fa','bnpc4600387',4600387,6.379251,0.025694,-16.615959,-0.000000,2692,0,0,0,0,6,0,0,2553,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29162,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97947,'LVD_bnpc_01','o1fa','bnpc4600398',4600398,8.298884,0.025694,-16.615959,-0.000000,2691,0,0,0,0,6,0,0,2552,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28896,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97947,'LVD_bnpc_01','o1fa','bnpc4600405',4600405,6.233904,0.025700,-9.148590,-0.000000,2695,0,0,0,0,6,0,0,2550,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28630,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97947,'LVD_bnpc_01','o1fa','bnpc4600453',4600453,7.271183,0.025694,-12.110490,-0.000000,2693,0,0,0,0,6,0,0,2554,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28364,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97947,'LVD_bnpc_01','o1fa','bnpc4619402',4619402,-1.214509,0.025694,-3.320351,-0.000000,2765,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28098,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97947,'LVD_bnpc_01','o1fa','bnpc4634284',4634284,-0.045776,1.632629,0.045776,-0.000048,2948,0,0,0,0,6,0,0,2608,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27832,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99471,'LVD_bnpc_01_real','o1fa','bnpc4680346',4680346,0.000000,0.025700,-19.000000,0.000000,2938,0,0,0,0,6,0,0,2550,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27462,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99471,'LVD_bnpc_01_real','o1fa','bnpc4680347',4680347,-14.373760,0.025694,-14.166860,-1.570451,2942,0,0,0,0,6,0,0,2551,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27196,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99471,'LVD_bnpc_01_real','o1fa','bnpc4680348',4680348,-3.463867,0.015198,-3.524841,-0.000048,2944,0,0,0,3,6,0,0,2550,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26930,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99471,'LVD_bnpc_01_real','o1fa','bnpc4680349',4680349,6.379251,0.025694,-16.615959,-0.000000,2940,0,0,0,0,6,0,0,2553,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26664,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99471,'LVD_bnpc_01_real','o1fa','bnpc4680352',4680352,7.271183,0.025694,-12.110490,-0.000000,2941,0,0,0,0,6,0,0,2554,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26398,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99471,'LVD_bnpc_01_real','o1fa','bnpc4680350',4680350,8.298884,0.025694,-16.615959,-0.000000,2939,0,0,0,0,6,0,0,2552,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26132,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99471,'LVD_bnpc_01_real','o1fa','bnpc4680351',4680351,6.233904,0.025700,-9.148590,-0.000000,2943,0,0,0,0,6,0,0,2550,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25866,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99471,'LVD_bnpc_01_real','o1fa','bnpc4680353',4680353,-1.236023,0.015198,-3.341736,-0.000048,2945,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25600,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99471,'LVD_bnpc_01_real','o1fa','bnpc4680354',4680354,-0.045776,1.632629,0.045776,-0.000048,2948,0,0,0,0,6,0,0,2608,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25280,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98560,'LVD_bnpc_02','o1fa','bnpc4633752',4633752,0.000000,0.025700,-19.000000,0.000000,2802,0,0,0,0,6,0,0,2550,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24950,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98560,'LVD_bnpc_02','o1fa','bnpc4633753',4633753,-14.373760,0.025694,-14.166860,-1.570451,2803,0,0,0,0,6,0,0,2551,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24684,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98560,'LVD_bnpc_02','o1fa','bnpc4633754',4633754,-3.436191,0.025694,-3.515284,-0.000000,2805,0,0,0,3,6,0,0,2550,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24418,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98560,'LVD_bnpc_02','o1fa','bnpc4633755',4633755,6.379251,0.025694,-16.615959,-0.000000,2808,0,0,0,0,6,0,0,2553,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24152,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98560,'LVD_bnpc_02','o1fa','bnpc4633756',4633756,8.298884,0.025694,-16.615959,-0.000000,2807,0,0,0,0,6,0,0,2552,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23886,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98560,'LVD_bnpc_02','o1fa','bnpc4633757',4633757,6.233904,0.025700,-9.148590,-0.000000,2804,0,0,0,0,6,0,0,2550,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23620,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98560,'LVD_bnpc_02','o1fa','bnpc4633766',4633766,14.598000,0.025700,-14.176900,-1.570451,2804,0,0,0,0,6,0,0,2550,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23348,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98560,'LVD_bnpc_02','o1fa','bnpc4633758',4633758,7.271183,0.025694,-12.110490,-0.000000,2809,0,0,0,0,6,0,0,2554,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23082,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98560,'LVD_bnpc_02','o1fa','bnpc4633769',4633769,9.085173,0.025694,-12.110490,-0.000000,2810,0,0,0,0,6,0,0,2555,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22816,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98560,'LVD_bnpc_02','o1fa','bnpc4633759',4633759,-1.214509,0.025694,-3.320351,-0.000000,2929,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22550,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98560,'LVD_bnpc_02','o1fa','bnpc4634287',4634287,-0.045776,1.632629,0.045776,-0.000048,2948,0,0,0,0,6,0,0,2608,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22176,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97948,'LVD_gimmick_01','o1fa','bnpc4621155',4621155,-13.521420,0.005472,1.885355,-0.000000,2801,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21156,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97948,'LVD_gimmick_01','o1fa','bnpc4621157',4621157,-10.004050,0.005472,10.072770,-0.268526,2801,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20884,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97948,'LVD_gimmick_01','o1fa','bnpc4621158',4621158,4.713486,0.005472,7.360640,-0.894645,2801,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20612,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97948,'LVD_gimmick_01','o1fa','bnpc4621313',4621313,13.703960,0.005472,-9.921053,-0.053636,2801,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20340,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84069,'PlanMap_001','qib_test','bnpc3963616',3963616,12.788210,-3.848850,90.104469,-0.000240,113,0,0,0,1,6,0,0,573,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2488,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84069,'PlanMap_001','qib_test','bnpc3963617',3963617,7.031832,-2.244302,76.589859,-0.000144,246,0,0,0,1,6,0,0,578,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2222,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84069,'PlanMap_001','qib_test','bnpc3995190',3995190,-1.593716,-2.616982,80.940651,-0.000336,249,0,0,0,0,6,0,0,619,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1396,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84069,'PlanMap_001','qib_test','bnpc3879685',3879685,23.483589,-3.344040,69.474274,-0.000240,540,0,0,0,1,6,0,0,138,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,750,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84942,'QIB_Test_001','qib_test','bnpc3954548',3954548,180.760696,50.096588,-138.705399,0.518857,544,0,0,0,1,6,0,0,0,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,600,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85357,'LVD_BNPC_01','r1d1','bnpc4000961',4000961,-5.144640,7.999600,210.596497,-0.000144,1463,0,0,0,1,6,0,0,1673,0,0.000000,41,0,120,1,0,13,0,32,3,0,1,0,1,0,0.000000,1.000000,44108,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85357,'LVD_BNPC_01','r1d1','bnpc4001087',4001087,0.320374,7.919373,266.925995,-0.000048,1463,0,0,0,1,6,0,0,1673,0,0.000000,41,0,120,1,0,11,0,32,3,0,1,0,1,0,0.000000,1.000000,43836,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85357,'LVD_BNPC_01','r1d1','bnpc4002732',4002732,-50.553162,7.980469,232.990005,-0.000144,1463,0,0,0,1,6,0,0,1673,0,0.000000,41,0,120,1,0,14,0,32,3,0,1,0,1,0,0.000000,1.000000,43564,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85357,'LVD_BNPC_01','r1d1','bnpc4001086',4001086,-32.242371,7.919373,179.400299,-0.000048,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,15,0,32,3,0,1,0,1,0,0.000000,1.000000,43298,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85357,'LVD_BNPC_01','r1d1','bnpc4001090',4001090,3.899192,8.194417,212.932404,-0.000335,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,13,0,32,3,0,1,0,1,0,0.000000,1.000000,43026,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85357,'LVD_BNPC_01','r1d1','bnpc4002733',4002733,-53.147221,7.980469,229.724503,-0.000432,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,14,0,32,3,0,1,0,1,0,0.000000,1.000000,42754,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85357,'LVD_BNPC_01','r1d1','bnpc4000951',4000951,31.143681,7.919373,214.923203,-0.000144,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,12,0,32,3,0,1,0,1,0,0.000000,1.000000,42482,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85357,'LVD_BNPC_01','r1d1','bnpc4000952',4000952,34.103882,8.010925,211.901993,-0.000144,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,12,0,32,3,0,1,0,1,0,0.000000,1.000000,42210,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85357,'LVD_BNPC_01','r1d1','bnpc4000945',4000945,3.311157,7.919373,265.064514,-0.000048,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,11,0,32,3,0,1,0,1,0,0.000000,1.000000,41938,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85357,'LVD_BNPC_01','r1d1','bnpc4000948',4000948,-2.334717,7.919373,263.904785,-0.000048,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,11,0,32,3,0,1,0,1,0,0.000000,1.000000,41666,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85357,'LVD_BNPC_01','r1d1','bnpc4000959',4000959,1.762962,8.166472,215.679092,-0.000335,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,13,0,32,3,0,1,0,1,0,0.000000,1.000000,41394,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85357,'LVD_BNPC_01','r1d1','bnpc4000968',4000968,-33.249451,8.010184,184.070007,-0.000144,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,15,0,32,3,0,1,0,1,0,0.000000,1.000000,41122,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85357,'LVD_BNPC_01','r1d1','bnpc4000956',4000956,-30.380739,7.919373,181.933197,-0.000048,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,15,0,32,3,0,1,0,1,0,0.000000,1.000000,40850,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85357,'LVD_BNPC_01','r1d1','bnpc4323148',4323148,5.300422,7.949617,168.610001,-1.506293,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,16,0,32,3,0,1,0,1,0,0.000000,1.000000,40578,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85357,'LVD_BNPC_01','r1d1','bnpc4323147',4323147,3.438789,7.913165,166.077103,-1.506293,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,16,0,32,3,0,1,0,1,0,0.000000,1.000000,40306,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85357,'LVD_BNPC_01','r1d1','bnpc4323150',4323150,51.129059,8.000000,201.255005,-1.532465,1463,0,0,0,1,6,0,0,1673,0,0.000000,41,0,120,1,0,17,0,32,3,0,1,0,1,0,0.000000,1.000000,40028,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85360,'LVD_BNPC_02','r1d1','bnpc4002744',4002744,-45.002178,-4.028306,48.661011,1.422357,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,22,0,32,3,0,1,0,1,0,0.000000,1.000000,39634,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85360,'LVD_BNPC_02','r1d1','bnpc4002743',4002743,-46.528118,-4.050001,46.768921,1.422357,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,22,0,32,3,0,1,0,1,0,0.000000,1.000000,39362,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85360,'LVD_BNPC_02','r1d1','bnpc4002738',4002738,42.038570,4.043579,44.296879,-0.000144,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,21,0,32,3,0,1,0,1,0,0.000000,1.000000,39090,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85360,'LVD_BNPC_02','r1d1','bnpc4002810',4002810,-5.941562,0.000013,21.332199,-0.000144,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,24,0,32,3,0,1,0,1,0,0.000000,1.000000,38818,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85360,'LVD_BNPC_02','r1d1','bnpc4002750',4002750,-48.600040,-4.013123,23.880310,-0.000144,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,23,0,32,3,0,1,0,1,0,0.000000,1.000000,38546,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85360,'LVD_BNPC_02','r1d1','bnpc4000974',4000974,-44.541142,-4.013123,15.854060,-0.000335,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,23,0,32,3,0,1,0,1,0,0.000000,1.000000,38274,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85360,'LVD_BNPC_02','r1d1','bnpc4000975',4000975,-0.256117,0.000006,25.029449,-0.000144,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,24,0,32,3,0,1,0,1,0,0.000000,1.000000,38002,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85360,'LVD_BNPC_02','r1d1','bnpc4001054',4001054,-1.936363,0.076233,-56.107422,-0.000335,1462,0,0,0,1,6,0,0,1672,0,0.000000,41,0,120,1,0,26,0,32,3,0,1,0,1,0,0.000000,1.000000,37730,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85360,'LVD_BNPC_02','r1d1','bnpc4000987',4000987,0.350891,0.045776,-59.342350,1.490765,1464,0,0,0,1,6,0,0,1674,0,0.000000,41,0,120,1,0,26,0,32,3,0,1,0,1,0,0.000000,1.000000,37464,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85360,'LVD_BNPC_02','r1d1','bnpc4002751',4002751,-48.264339,-4.013123,15.060610,-0.000144,1464,0,0,0,1,6,0,0,1674,0,0.000000,41,0,120,1,0,23,0,32,3,0,1,0,1,0,0.000000,1.000000,37192,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85360,'LVD_BNPC_02','r1d1','bnpc4000988',4000988,3.097534,0.045776,-53.971191,1.490765,1464,0,0,0,1,6,0,0,1674,0,0.000000,41,0,120,1,0,26,0,32,3,0,1,0,1,0,0.000000,1.000000,36920,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85360,'LVD_BNPC_02','r1d1','bnpc4002749',4002749,-3.368910,0.000014,24.113859,-0.000144,1464,0,0,0,1,6,0,0,1674,0,0.000000,41,0,120,1,0,24,0,32,3,0,1,0,1,0,0.000000,1.000000,36648,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85360,'LVD_BNPC_02','r1d1','bnpc4002745',4002745,46.341671,4.043579,49.576542,-0.000144,1464,0,0,0,1,6,0,0,1674,0,0.000000,41,0,120,1,0,21,0,32,3,0,1,0,1,0,0.000000,1.000000,36376,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85360,'LVD_BNPC_02','r1d1','bnpc4314021',4314021,-0.475531,0.000000,-18.793051,1.188518,1464,0,0,0,1,6,0,0,1674,0,0.000000,41,0,120,1,0,25,0,32,3,0,1,0,1,0,0.000000,1.000000,36104,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85360,'LVD_BNPC_02','r1d1','bnpc4314023',4314023,-0.475531,0.000000,-14.535770,1.188518,1464,0,0,0,1,6,0,0,1674,0,0.000000,41,0,120,1,0,25,0,32,3,0,1,0,1,0,0.000000,1.000000,35832,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85361,'LVD_BNPC_03','r1d1','bnpc4000998',4000998,-2.751518,0.000000,-102.450500,-0.000048,1466,0,0,0,1,6,0,0,1675,0,0.000000,41,0,120,1,0,31,0,32,3,0,1,0,1,0,0.000000,1.000000,35462,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85361,'LVD_BNPC_03','r1d1','bnpc4000995',4000995,-2.667117,-0.044386,-182.049500,1.384775,1466,0,0,0,1,6,0,0,1675,0,0.000000,41,0,120,1,0,33,0,32,3,0,1,0,1,0,0.000000,1.000000,35190,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85361,'LVD_BNPC_03','r1d1','bnpc4001002',4001002,-15.025510,0.000000,-136.971497,-0.000048,1466,0,0,0,1,6,0,0,1675,0,0.000000,41,0,120,1,0,32,0,32,3,0,1,0,1,0,0.000000,1.000000,34918,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85361,'LVD_BNPC_03','r1d1','bnpc4001001',4001001,-2.356584,0.027601,-145.189606,-0.000048,1466,0,0,0,1,6,0,0,1675,0,0.000000,41,0,120,1,0,32,0,32,3,0,1,0,1,0,0.000000,1.000000,34646,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85361,'LVD_BNPC_03','r1d1','bnpc4001006',4001006,2.110611,0.000001,-185.206802,1.384774,1466,0,0,0,1,6,0,0,1675,0,0.000000,41,0,120,1,0,33,0,32,3,0,1,0,1,0,0.000000,1.000000,34374,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85361,'LVD_BNPC_03','r1d1','bnpc4323253',4323253,1.477910,0.000000,-104.355797,-0.000048,1466,0,0,0,1,6,0,0,1675,0,0.000000,41,0,120,1,0,31,0,32,3,0,1,0,1,0,0.000000,1.000000,34102,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85361,'LVD_BNPC_03','r1d1','bnpc4314027',4314027,-7.675354,0.137329,-135.210297,-0.000144,132,0,0,0,1,6,0,0,114,0,0.000000,41,0,120,1,0,32,0,32,3,0,1,0,1,0,0.000000,1.000000,33836,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85361,'LVD_BNPC_03','r1d1','bnpc4001003',4001003,-14.389340,-0.015320,-147.203903,-0.000144,132,0,0,0,1,6,0,0,114,0,0.000000,41,0,120,1,0,32,0,32,3,0,1,0,1,0,0.000000,1.000000,33564,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85361,'LVD_BNPC_03','r1d1','bnpc4323257',4323257,-4.322776,-0.042078,-188.942993,1.384775,1466,0,0,0,1,6,0,0,1675,0,0.000000,41,0,120,1,0,33,0,32,3,0,1,0,1,0,0.000000,1.000000,33286,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93853,'LVD_BNPC_04','r1d1','bnpc4323157',4323157,0.228821,8.064402,200.075394,1.562677,1466,0,0,0,2,6,0,0,1675,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32498,1,3,2000,0,0,0,4323154,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93853,'LVD_BNPC_04','r1d1','bnpc4323158',4323158,-50.797371,8.000000,200.075394,1.562677,1466,0,0,0,5,6,0,0,1675,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32226,1,3,2000,0,0,0,4323156,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93853,'LVD_BNPC_04','r1d1','bnpc4323219',4323219,0.228821,8.130883,224.121902,-1.570451,1466,0,0,0,2,6,0,0,1675,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31746,1,3,2000,0,0,0,4323217,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93853,'LVD_BNPC_04','r1d1','bnpc4323228',4323228,50.138458,8.000000,232.188705,-1.570451,1466,0,0,0,5,6,0,0,1675,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31314,1,3,2000,0,0,0,4323220,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93853,'LVD_BNPC_04','r1d1','bnpc4323231',4323231,-51.499271,-4.013123,3.311157,1.562633,1466,0,0,0,2,6,0,0,1675,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30834,1,3,2000,0,0,0,4323230,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93853,'LVD_BNPC_04','r1d1','bnpc4323236',4323236,3.992447,-0.050008,-57.146820,1.570451,1466,0,0,0,5,6,0,0,1675,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30418,1,3,2000,0,0,0,4323232,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93853,'LVD_BNPC_04','r1d1','bnpc4323261',4323261,2.403702,-0.000002,-144.052200,1.570451,1466,0,0,0,5,6,0,0,1675,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29890,1,3,2000,0,0,0,4323260,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93853,'LVD_BNPC_04','r1d1','bnpc4323262',4323262,3.384232,-0.028601,-183.906204,1.570451,1466,0,0,0,5,6,0,0,1675,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29618,1,3,2000,0,0,0,4323254,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93853,'LVD_BNPC_04','r1d1','bnpc4323268',4323268,24.310390,-0.021251,-139.170303,-0.000000,1466,0,0,0,5,6,0,0,1675,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29202,1,3,2000,0,0,0,4323266,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93853,'LVD_BNPC_04','r1d1','bnpc4323272',4323272,24.210590,-0.000000,-8.231507,-0.000000,1466,0,0,0,5,6,0,0,1675,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28786,1,3,2000,0,0,0,4323269,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91856,'LVD_boss','r1d1','bnpc4001014',4001014,-0.015320,0.076233,-262.775604,-0.000048,1455,0,0,0,0,6,0,0,1680,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28406,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91856,'LVD_boss','r1d1','bnpc4270034',4270034,-0.961365,0.015198,-247.852402,-0.000048,434,0,0,0,0,6,0,0,1680,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28140,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91850,'LVD_gmmick_ice','r1d1','bnpc4002767',4002767,22.995300,0.045776,-168.169693,-0.000048,1465,0,0,0,1,6,0,0,114,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19402,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91850,'LVD_gmmick_ice','r1d1','bnpc4002766',4002766,24.368530,-0.412048,-119.890198,-0.000048,1465,0,0,0,1,6,0,0,114,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19130,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91850,'LVD_gmmick_ice','r1d1','bnpc4240155',4240155,24.673830,-0.076355,-169.329407,-0.000048,1465,0,0,0,1,6,0,0,114,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18858,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91850,'LVD_gmmick_ice','r1d1','bnpc4002769',4002769,24.032961,-0.015320,-166.369095,-0.000048,1465,0,0,0,1,6,0,0,114,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18586,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91850,'LVD_gmmick_ice','r1d1','bnpc4002764',4002764,25.406250,-0.015320,-118.730499,-0.000048,1465,0,0,0,1,6,0,0,114,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18314,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91850,'LVD_gmmick_ice','r1d1','bnpc4004499',4004499,24.554560,-0.000003,-17.219450,-0.000048,1465,0,0,0,1,6,0,0,114,0,0.000000,40,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18042,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91850,'LVD_gmmick_ice','r1d1','bnpc4005249',4005249,26.189930,-0.000002,-15.276260,-0.000048,1465,0,0,0,1,6,0,0,114,0,0.000000,40,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17770,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91850,'LVD_gmmick_ice','r1d1','bnpc4002759',4002759,23.575130,-0.015320,-117.998001,-0.000048,1465,0,0,0,1,6,0,0,114,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17498,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91850,'LVD_gmmick_ice','r1d1','bnpc4005250',4005250,23.560631,-0.000001,-14.076650,-0.000048,1465,0,0,0,1,6,0,0,114,0,0.000000,40,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17226,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91849,'LVD_gmmick_wyvern','r1d1','bnpc4240190',4240190,32.574669,7.949980,230.756699,-0.000000,1460,0,0,0,0,6,0,0,1676,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16116,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91849,'LVD_gmmick_wyvern','r1d1','bnpc4240192',4240192,-13.995130,8.076465,167.834000,-1.570796,1460,0,0,0,0,6,0,0,1676,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15844,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91849,'LVD_gmmick_wyvern','r1d1','bnpc4240197',4240197,-32.353222,-1.938284,48.294800,1.570451,1460,0,0,0,0,6,0,0,1676,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15572,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91849,'LVD_gmmick_wyvern','r1d1','bnpc4240201',4240201,-23.001631,-1.368269,23.971861,-1.570796,1460,0,0,0,0,6,0,0,1676,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15300,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91854,'LVD_mboss_01','r1d1','bnpc4000969',4000969,0.000000,0.012429,107.176598,-0.000000,1461,0,0,0,0,6,0,0,1677,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12182,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91855,'LVD_mboss_02','r1d1','bnpc4240164',4240164,54.672970,4.989685,-79.942078,-1.550830,1457,0,0,0,0,6,0,0,1678,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10604,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91855,'LVD_mboss_02','r1d1','bnpc4240177',4240177,79.728394,-2.500000,-95.903023,-1.166179,1456,0,0,0,0,6,0,0,1680,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10338,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91855,'LVD_mboss_02','r1d1','bnpc4240179',4240179,81.315308,-2.500000,-79.911499,-1.445080,1456,0,0,0,0,6,0,0,1680,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10066,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91855,'LVD_mboss_02','r1d1','bnpc4240180',4240180,78.934937,-2.500000,-63.645390,-1.183005,1456,0,0,0,0,6,0,0,1680,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9794,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91855,'LVD_mboss_02','r1d1','bnpc4248984',4248984,59.392101,4.984131,-87.771400,1.107671,1459,0,0,0,0,6,0,0,0,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9528,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91855,'LVD_mboss_02','r1d1','bnpc4248991',4248991,61.996849,4.886539,-79.850456,1.570451,1459,0,0,0,0,6,0,0,0,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9256,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91855,'LVD_mboss_02','r1d1','bnpc4248994',4248994,59.259899,5.055897,-72.047981,1.131201,1459,0,0,0,0,6,0,0,0,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,8984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91855,'LVD_mboss_02','r1d1','bnpc4257042',4257042,44.151241,3.999991,-79.535767,-0.000000,1458,0,0,0,0,6,0,0,1678,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,8718,1,1,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100240,'LVD_bnpc_01','r1d3','bnpc4725529',4725529,81.627502,7.716181,-7.246117,-0.000000,3,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21956,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100240,'LVD_bnpc_01','r1d3','bnpc4725531',4725531,102.375900,7.796128,-12.985140,-0.000000,3,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21684,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100240,'LVD_bnpc_01','r1d3','bnpc4725532',4725532,103.666901,6.432870,-36.354710,-0.000000,3,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21412,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100240,'LVD_bnpc_01','r1d3','bnpc4725533',4725533,101.714104,6.693071,-47.709431,-0.000000,3,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21140,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100240,'LVD_bnpc_01','r1d3','bnpc4725534',4725534,78.884407,5.433334,-49.322948,-0.000000,3,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20868,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100240,'LVD_bnpc_01','r1d3','bnpc4725542',4725542,34.272690,1.635704,-55.265862,-0.000000,5,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20602,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100240,'LVD_bnpc_01','r1d3','bnpc4725543',4725543,37.825802,1.635704,-55.110619,-0.000000,5,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20330,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100240,'LVD_bnpc_01','r1d3','bnpc4725544',4725544,42.328510,1.635704,-53.142559,-0.000000,5,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20058,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100240,'LVD_bnpc_01','r1d3','bnpc4725546',4725546,44.668571,-2.500000,-68.341026,-0.000000,5,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19786,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100243,'LVD_bnpc_02','r1d3','bnpc4725569',4725569,11.027090,40.000000,60.291111,-0.000000,7,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19412,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100243,'LVD_bnpc_02','r1d3','bnpc4725571',4725571,12.690910,40.000000,66.749527,-0.000000,7,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19140,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100243,'LVD_bnpc_02','r1d3','bnpc4725575',4725575,-34.701408,-10.635750,-156.951294,-0.000000,9,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18874,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100243,'LVD_bnpc_02','r1d3','bnpc4725576',4725576,-36.497940,-9.771273,-163.874802,-0.000000,9,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18602,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100243,'LVD_bnpc_02','r1d3','bnpc4725577',4725577,-36.701061,-9.733520,-171.243698,-0.000000,9,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18330,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100243,'LVD_bnpc_02','r1d3','bnpc4725579',4725579,-43.464001,-9.733520,-147.922806,-0.000000,9,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18058,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100243,'LVD_bnpc_02','r1d3','bnpc4725595',4725595,-48.024849,3.382114,-103.560204,-0.000000,12,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17792,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100243,'LVD_bnpc_02','r1d3','bnpc4725599',4725599,-55.567532,4.357405,-99.602364,-0.000000,12,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17520,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100243,'LVD_bnpc_02','r1d3','bnpc4725600',4725600,-54.089020,3.686252,-105.119102,-0.000000,12,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17248,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100243,'LVD_bnpc_02','r1d3','bnpc4725601',4725601,-69.568604,7.413407,-105.498001,-0.000000,12,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16976,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100274,'LVD_bnpc_03','r1d3','bnpc4729302',4729302,-87.348396,28.400009,-26.018410,1.488489,26,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16586,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100274,'LVD_bnpc_03','r1d3','bnpc4729303',4729303,-86.185097,28.396971,-0.281289,1.488415,26,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16314,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100274,'LVD_bnpc_03','r1d3','bnpc4729304',4729304,-74.263779,28.440969,13.804020,1.488489,26,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16042,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100274,'LVD_bnpc_03','r1d3','bnpc4729307',4729307,-59.349781,31.297680,16.862110,1.488489,26,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15770,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100274,'LVD_bnpc_03','r1d3','bnpc4729310',4729310,-43.124989,29.889280,14.405630,1.488489,26,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15498,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100274,'LVD_bnpc_03','r1d3','bnpc4729314',4729314,-94.286469,38.376339,-12.118160,1.488415,26,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15226,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100274,'LVD_bnpc_03','r1d3','bnpc4729315',4729315,-93.420624,39.391319,0.544784,1.488415,26,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14954,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100274,'LVD_bnpc_03','r1d3','bnpc4729316',4729316,-75.535042,38.999989,17.383579,0.308302,26,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14682,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100274,'LVD_bnpc_03','r1d3','bnpc4729317',4729317,-42.868359,38.999969,16.787870,-0.016160,26,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14410,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100274,'LVD_bnpc_03','r1d3','bnpc4729313',4729313,-24.653561,28.405531,-6.693773,1.488489,24,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14144,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100274,'LVD_bnpc_03','r1d3','bnpc4729347',4729347,-98.560837,34.000000,33.519779,-0.000000,18,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13878,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100274,'LVD_bnpc_03','r1d3','bnpc4729348',4729348,-63.707279,40.128410,65.980186,-0.000000,18,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13606,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100274,'LVD_bnpc_03','r1d3','bnpc4729349',4729349,-98.338341,34.000000,35.488689,-0.000000,398,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13340,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100274,'LVD_bnpc_03','r1d3','bnpc4729350',4729350,-64.173126,40.000000,62.491982,-0.000000,398,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13068,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100239,'LVD_gimmick_01','r1d3','bnpc4725519',4725519,67.260834,-3.462909,40.132641,-0.000000,2,0,0,0,3,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11794,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100239,'LVD_gimmick_01','r1d3','bnpc4725523',4725523,50.686520,4.197485,15.422300,-0.157654,2,0,0,0,3,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11138,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100271,'LVD_gimmick_03','r1d3','bnpc4729341',4729341,-69.307137,28.400000,-8.160501,-0.000000,2,0,0,0,3,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,7006,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100271,'LVD_gimmick_03','r1d3','bnpc4729342',4729342,-54.107651,28.400000,-6.758264,-0.000000,2,0,0,0,3,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,6734,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100241,'LVD_mboss_01','r1d3','bnpc4725664',4725664,61.794159,-2.500000,-91.034897,-0.000000,21,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,5096,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100245,'LVD_mboss_02','r1d3','bnpc4725663',4725663,-97.609322,10.237480,-114.763397,-0.000000,15,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,4454,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4296962',4296962,6.586450,224.231003,359.448090,-0.000048,731,0,0,0,1,6,0,0,659,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,165084,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4296996',4296996,16.820339,216.422195,389.762604,-0.000048,731,0,0,0,1,6,0,0,659,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164812,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4296997',4296997,31.967649,236.529999,323.628510,-0.000048,731,0,0,0,1,6,0,0,659,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164540,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4296998',4296998,72.035683,242.920105,316.766113,-0.000048,731,0,0,0,1,6,0,0,659,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164268,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4296999',4296999,79.061470,241.243393,319.846802,-0.000048,731,0,0,0,1,6,0,0,659,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163996,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297000',4297000,112.809898,239.429306,294.575287,-0.000048,731,0,0,0,1,6,0,0,659,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163724,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297001',4297001,58.960991,253.937698,281.400696,-0.000048,731,0,0,0,1,6,0,0,659,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163452,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297003',4297003,10.569400,224.790207,357.938599,-0.000048,731,0,0,0,1,6,0,0,659,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163180,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297008',4297008,354.657288,224.892807,300.765289,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162914,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297010',4297010,417.257904,226.214996,374.532593,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162642,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297011',4297011,421.699005,227.744202,370.285492,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162370,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297012',4297012,330.572113,223.491394,369.867493,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162098,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297013',4297013,429.534393,217.970001,417.141296,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161826,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297015',4297015,417.746185,217.952194,480.668488,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161554,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297016',4297016,422.541687,219.795303,494.286896,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161282,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297019',4297019,411.649689,220.784195,484.018890,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161010,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297021',4297021,181.170303,242.354599,223.538406,-0.000048,720,0,0,0,1,6,0,0,1612,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160744,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297025',4297025,342.033508,264.985504,103.754501,-0.000048,720,0,0,0,1,6,0,0,1612,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160472,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297026',4297026,88.700684,244.067993,303.089813,-0.000048,720,0,0,0,1,6,0,0,1612,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160200,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297027',4297027,88.700684,222.003494,420.492798,-0.000048,720,0,0,0,1,6,0,0,1612,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159928,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297028',4297028,-25.009581,205.387497,480.682007,-0.000048,720,0,0,0,1,6,0,0,1612,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159656,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297029',4297029,398.841614,224.765701,381.022705,-0.000048,720,0,0,0,1,6,0,0,1612,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159384,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297336',4297336,168.169693,276.447601,-48.600040,-0.000048,720,0,0,0,1,6,0,0,1612,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159112,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297337',4297337,264.687988,294.602692,-93.670403,-0.000048,720,0,0,0,1,6,0,0,1612,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158840,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297346',4297346,280.170807,253.192902,147.692001,-0.000048,395,0,0,0,1,6,0,0,784,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158574,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297350',4297350,334.350311,248.434402,184.154297,-0.000000,395,0,0,0,1,6,0,0,784,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158302,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297353',4297353,327.623993,256.382294,132.340805,-0.000048,395,0,0,0,1,6,0,0,784,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158030,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297354',4297354,291.785187,269.499786,39.650711,-0.000048,395,0,0,0,1,6,0,0,784,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157758,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297356',4297356,192.950302,271.137512,3.646851,-0.000048,395,0,0,0,1,6,0,0,784,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157486,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297359',4297359,285.844391,267.842712,44.338120,-0.000048,395,0,0,0,1,6,0,0,784,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157214,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297363',4297363,173.391296,272.125793,-12.465330,-0.000048,395,0,0,0,1,6,0,0,784,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156942,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297364',4297364,249.355698,270.133301,26.395069,-0.000048,395,0,0,0,1,6,0,0,784,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156670,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4297365',4297365,203.100204,254.232300,149.502304,-0.000048,395,0,0,0,1,6,0,0,784,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156398,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298567',4298567,157.396698,293.324097,-98.374939,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,36,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156114,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298571',4298571,159.523300,293.493011,-99.299156,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,36,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155842,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298572',4298572,135.779297,299.755890,-101.941704,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,36,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155570,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298573',4298573,136.228699,283.407715,-69.530281,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,36,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155298,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298574',4298574,258.647614,289.809692,-69.530281,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,36,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155026,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298575',4298575,254.634094,287.557098,-64.855118,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,36,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154754,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298576',4298576,268.831512,284.212891,-40.760189,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,36,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154482,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298741',4298741,251.759094,294.415894,-111.584099,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,36,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154210,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298744',4298744,288.151489,302.427002,-86.886337,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,36,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153938,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298765',4298765,321.597290,303.200989,-338.780914,-0.000048,731,0,0,0,1,6,0,0,659,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153660,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298767',4298767,346.691895,304.562286,-319.108887,-0.000048,731,0,0,0,1,6,0,0,659,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153388,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298770',4298770,357.329712,304.360687,-356.956696,-0.000048,731,0,0,0,1,6,0,0,659,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153116,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298772',4298772,407.769012,305.618500,-327.457397,-0.000048,731,0,0,0,1,6,0,0,659,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152844,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298773',4298773,412.865387,304.484802,-333.469391,-0.000048,731,0,0,0,1,6,0,0,659,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152572,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298780',4298780,365.239410,319.169586,-254.025299,-0.000048,731,0,0,0,1,6,0,0,659,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152300,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298781',4298781,388.845612,321.034485,-401.632813,-0.000048,731,0,0,0,1,6,0,0,659,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152028,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298784',4298784,476.218811,327.076996,-401.632813,-0.000048,731,0,0,0,1,6,0,0,659,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151756,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298787',4298787,494.638214,304.602112,-349.542206,-0.000048,731,0,0,0,1,6,0,0,659,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151484,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298790',4298790,182.909805,336.140900,-467.124512,-0.000048,646,0,0,0,1,6,0,0,794,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151236,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298792',4298792,150.108704,345.173309,-380.467590,-0.000048,646,0,0,0,1,6,0,0,794,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150964,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298794',4298794,146.329498,347.075287,-385.583313,-0.000048,646,0,0,0,1,6,0,0,794,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150692,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298812',4298812,253.761307,343.590393,-494.726715,-0.000048,646,0,0,0,1,6,0,0,794,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150420,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298813',4298813,294.270294,329.274292,-477.805786,-0.000048,646,0,0,0,1,6,0,0,794,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150148,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298814',4298814,212.636703,327.759796,-433.014313,-0.000048,646,0,0,0,1,6,0,0,794,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149876,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298815',4298815,412.045288,353.824188,-499.736786,-0.000048,646,0,0,0,1,6,0,0,794,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149604,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298816',4298816,394.674591,355.184204,-555.809875,-0.000048,646,0,0,0,1,6,0,0,794,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149332,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298823',4298823,260.181488,356.282806,-541.374878,-0.000048,398,0,0,0,1,6,0,0,1849,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149066,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298824',4298824,188.311493,357.747803,-557.427429,-0.000048,398,0,0,0,1,6,0,0,1849,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148794,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298825',4298825,285.877686,359.578705,-569.421021,-0.000048,398,0,0,0,1,6,0,0,1849,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148522,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298835',4298835,126.756599,376.088989,-671.473328,-0.000048,398,0,0,0,1,6,0,0,1849,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148250,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298837',4298837,356.375610,356.320007,-595.291321,-0.000048,398,0,0,0,1,6,0,0,1849,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147978,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298842',4298842,468.223511,349.470490,-668.565430,-0.000048,646,0,0,0,1,6,0,0,794,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147700,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298844',4298844,531.422729,348.817993,-732.418884,-0.000048,646,0,0,0,1,6,0,0,794,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147428,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298845',4298845,539.850708,348.653900,-745.830627,-0.000048,646,0,0,0,1,6,0,0,794,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147156,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298846',4298846,96.262070,375.573090,-645.236084,-0.000048,398,0,0,0,1,6,0,0,1849,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146890,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298847',4298847,618.677002,325.703705,-430.685913,-0.000048,390,0,0,0,1,6,0,0,1182,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146624,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298848',4298848,626.867126,322.872803,-394.244293,-0.000000,390,0,0,0,1,6,0,0,1182,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146352,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298849',4298849,673.548279,293.690308,-320.820892,-0.000048,390,0,0,0,1,6,0,0,1182,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146080,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298851',4298851,584.470276,282.391998,-315.705292,-0.000000,390,0,0,0,1,6,0,0,1182,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145808,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298852',4298852,599.206482,281.914215,-300.226898,-0.000048,390,0,0,0,1,6,0,0,1182,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145536,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298853',4298853,564.033630,282.951599,-300.851807,-0.000000,390,0,0,0,1,6,0,0,1182,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145264,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298854',4298854,684.587830,306.511292,-363.764191,-0.000048,390,0,0,0,1,6,0,0,1182,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144992,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298855',4298855,562.945190,342.102997,-474.200287,-0.000048,390,0,0,0,1,6,0,0,1182,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144720,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298858',4298858,463.976410,249.572906,-308.802399,-0.000000,388,0,0,0,1,6,0,0,658,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144454,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298859',4298859,473.929901,247.699707,-302.357513,-0.000048,388,0,0,0,1,6,0,0,658,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144182,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298860',4298860,490.206787,271.288086,-298.332397,-0.000000,388,0,0,0,1,6,0,0,658,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143910,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298861',4298861,397.627808,248.461594,-320.859192,-0.000000,388,0,0,0,1,6,0,0,658,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143638,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298862',4298862,283.789703,236.298401,-325.220306,-0.000000,388,0,0,0,1,6,0,0,658,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143366,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298863',4298863,291.652496,235.940796,-331.188995,-0.000000,388,0,0,0,1,6,0,0,658,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143094,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298864',4298864,296.253906,234.759995,-368.673309,-0.000048,388,0,0,0,1,6,0,0,658,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142822,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298866',4298866,473.213501,248.114304,-259.048889,-0.000048,388,0,0,0,1,6,0,0,658,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142550,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298871',4298871,614.450012,323.410309,-400.318604,-0.000000,45,0,0,0,1,6,0,0,2918,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142284,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298873',4298873,668.683716,306.076996,-365.426788,-0.000000,45,0,0,0,1,6,0,0,2918,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142012,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298882',4298882,683.369995,295.457611,-324.276794,-0.000000,45,0,0,0,1,6,0,0,2918,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141740,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298884',4298884,681.273376,295.122589,-325.174805,-0.000000,45,0,0,0,1,6,0,0,2918,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141468,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298886',4298886,581.921387,282.296997,-294.985413,-0.000000,45,0,0,0,1,6,0,0,2918,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141196,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298888',4298888,584.498718,282.204895,-290.600891,-0.000000,45,0,0,0,1,6,0,0,2918,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140924,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298891',4298891,598.967285,282.223602,-314.123505,-0.000000,45,0,0,0,1,6,0,0,2918,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140652,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298892',4298892,570.297485,282.771301,-310.753998,-0.000000,45,0,0,0,1,6,0,0,2918,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140380,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298900',4298900,532.146484,235.205200,301.718414,-0.000000,113,0,0,0,1,6,0,0,660,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140114,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298901',4298901,548.790588,235.278793,308.827301,-0.000048,114,0,0,0,1,6,0,0,662,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139848,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298902',4298902,539.909912,235.309296,290.943695,0.871101,115,0,0,0,0,6,0,0,661,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139582,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298903',4298903,543.114685,235.512100,292.484009,-1.231867,116,0,0,0,0,6,0,0,663,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139316,1,0,0,0,0,30119,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298911',4298911,465.921387,232.736298,321.428497,-0.000000,113,0,0,0,1,6,0,0,660,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139026,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298914',4298914,485.744812,233.755707,315.057404,-0.000048,116,0,0,0,1,6,0,0,663,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138772,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298917',4298917,8.385859,200.822098,514.171082,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138506,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298919',4298919,3.468143,219.127502,377.671387,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138234,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298921',4298921,56.439899,213.878601,395.393188,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137962,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298922',4298922,32.688740,261.800201,264.078491,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137690,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298924',4298924,31.549110,262.086487,260.424103,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137418,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298925',4298925,97.214867,251.860901,270.377808,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137146,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298926',4298926,65.567993,240.283707,329.732208,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136874,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298928',4298928,173.567596,231.665298,266.478912,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136602,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298932',4298932,267.711090,226.465698,281.598785,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136330,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298933',4298933,349.538513,232.623795,259.540588,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,36,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136058,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298934',4298934,353.841400,234.302200,255.420700,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,36,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135786,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298937',4298937,398.091797,226.637100,344.024994,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,35,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135514,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298938',4298938,278.828003,242.816803,203.601105,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,36,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135242,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298941',4298941,191.013199,256.839386,104.428802,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,36,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134970,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4298943',4298943,248.318405,261.876587,67.776207,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,36,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134698,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299053',4299053,152.027496,277.941711,34.020439,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,36,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134426,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299054',4299054,235.312393,277.402405,-48.467419,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,36,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134154,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299057',4299057,191.224899,284.341797,-81.645477,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,36,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133882,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299063',4299063,374.380005,306.477386,-331.197113,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133610,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299079',4299079,343.678802,311.085602,-403.738495,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133338,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299081',4299081,278.156586,313.466095,-429.770386,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133066,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299082',4299082,347.909790,309.989197,-275.124512,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132794,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299084',4299084,404.743988,318.417908,-277.971985,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132522,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299088',4299088,457.550507,305.113708,-285.144989,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132250,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299091',4299091,458.811310,305.676910,-289.211914,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131978,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299093',4299093,502.242096,302.581390,-245.190903,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131706,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299094',4299094,502.391815,308.429413,-356.438385,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131434,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299096',4299096,502.046387,342.161713,-432.669098,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131162,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299098',4299098,424.421387,339.137909,-432.669098,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130890,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299099',4299099,429.241394,341.024200,-436.179199,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130618,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299100',4299100,218.158203,330.586700,-473.045013,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130346,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299102',4299102,173.367004,339.026001,-390.899200,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130074,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299103',4299103,119.335899,353.367310,-336.673615,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129802,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299106',4299106,166.454803,348.701294,-492.608795,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129530,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299107',4299107,432.587189,365.876801,-537.769714,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129258,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299110',4299110,418.305603,349.797699,-685.625427,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128986,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299112',4299112,485.808594,353.806305,-658.057312,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128714,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299114',4299114,298.678589,345.167297,-521.747192,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128442,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299115',4299115,198.874802,362.118011,-601.265076,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128170,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299116',4299116,138.675293,374.013306,-661.681824,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127898,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299117',4299117,324.054291,360.242188,-582.895081,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127626,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299119',4299119,283.839905,362.149506,-625.782288,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127354,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299120',4299120,210.687897,361.424805,-658.411926,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127082,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4299121',4299121,205.782394,360.548187,-666.505615,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126810,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4325155',4325155,215.504501,360.039307,-581.431030,-0.000048,398,0,0,0,1,6,0,0,1849,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126490,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406869',4406869,311.001099,307.036499,-422.752106,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126194,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406870',4406870,323.323395,303.822296,-391.989014,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125922,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406871',4406871,317.110413,305.692505,-418.385315,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125650,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406872',4406872,351.343506,312.029114,-396.169098,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125378,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406873',4406873,350.968994,315.450592,-416.192993,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125106,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406874',4406874,48.752670,311.224213,-250.581207,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124834,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406875',4406875,44.907230,311.238312,-245.044693,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124562,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406876',4406876,66.984810,300.472412,-252.706802,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124290,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406877',4406877,-17.150419,311.581512,-255.273895,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124018,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406878',4406878,7.231910,312.528687,-245.321793,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123746,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406879',4406879,-6.278003,305.376709,-233.466095,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123474,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406880',4406880,-10.073550,305.779694,-236.697601,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123202,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406884',4406884,357.847992,311.662201,-388.165497,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122930,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406885',4406885,363.148010,313.250488,-391.308411,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122658,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406886',4406886,331.929413,319.783203,-430.502808,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,37,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122386,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406888',4406888,113.582199,354.933685,-335.568512,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122114,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406890',4406890,121.680801,354.167114,-326.125214,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121842,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406891',4406891,110.022797,357.553314,-311.841187,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121570,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406892',4406892,111.824799,358.195190,-382.551514,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121298,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406893',4406893,115.392303,357.688690,-387.074890,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121026,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93093,'LVD_BNPC_01','r1f1','bnpc4406894',4406894,93.907928,362.855194,-349.329315,-0.000048,719,0,0,0,1,6,0,0,795,0,0.000000,38,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120754,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299188',4299188,105.119400,289.448395,-164.568604,-0.000048,720,0,0,0,1,6,0,0,1611,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120116,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299192',4299192,62.638309,289.814606,-219.226395,-0.000048,720,0,0,0,1,6,0,0,1611,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119844,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299194',4299194,-1.358093,310.902496,-142.015701,-0.000048,720,0,0,0,1,6,0,0,1611,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119572,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299195',4299195,-58.910789,304.604401,-272.412598,-0.000048,720,0,0,0,1,6,0,0,1611,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119300,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299197',4299197,-86.450127,300.163605,-170.834900,-0.000048,720,0,0,0,1,6,0,0,1611,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119028,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299198',4299198,137.090607,290.130798,-258.218414,-0.000048,720,0,0,0,1,6,0,0,1611,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118756,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299208',4299208,-115.231300,298.469788,-208.100098,-0.000000,403,0,0,0,1,6,0,0,1183,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118556,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299210',4299210,-205.664902,281.635010,-192.517700,-0.000048,403,0,0,0,1,6,0,0,1183,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118284,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299213',4299213,-107.621902,300.038086,-137.041306,-0.000048,403,0,0,0,1,6,0,0,1183,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118012,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299215',4299215,-158.759003,292.966492,-201.171295,-0.000048,403,0,0,0,1,6,0,0,1183,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117740,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299216',4299216,-162.136307,291.173187,-194.256607,-0.000048,403,0,0,0,1,6,0,0,1183,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117468,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299217',4299217,-205.676498,283.894012,-114.763100,-0.000048,403,0,0,0,1,6,0,0,1183,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117196,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299218',4299218,-212.088394,285.828400,-56.427200,-0.000048,403,0,0,0,1,6,0,0,1183,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116924,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299219',4299219,-290.402100,261.601898,-157.738800,-0.000048,403,0,0,0,1,6,0,0,1183,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116652,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299242',4299242,-578.240723,227.008408,-125.078201,-0.000048,644,0,0,0,1,6,0,0,790,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116386,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299244',4299244,-499.116089,237.639496,-97.965683,-0.000048,644,0,0,0,1,6,0,0,790,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116114,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299247',4299247,-655.179871,229.729202,-54.205719,-0.000048,644,0,0,0,1,6,0,0,790,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115842,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299249',4299249,-483.586609,226.184692,-125.489799,-0.000048,644,0,0,0,1,6,0,0,790,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115570,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299250',4299250,-477.837402,228.009293,-122.481400,-0.000048,644,0,0,0,1,6,0,0,790,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115298,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299252',4299252,-573.938416,231.500397,-73.804337,-0.000048,644,0,0,0,1,6,0,0,790,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115026,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299254',4299254,-600.372192,209.926697,-352.855804,-0.000048,387,0,0,0,1,6,0,0,637,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114760,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299256',4299256,-623.961182,211.311707,-374.720001,-0.000048,387,0,0,0,1,6,0,0,637,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114488,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299257',4299257,-624.778992,210.859299,-381.588593,-0.000048,387,0,0,0,1,6,0,0,637,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114216,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299258',4299258,-586.229492,201.455200,-440.921997,-0.000000,387,0,0,0,1,6,0,0,637,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113944,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299259',4299259,-583.154114,188.738800,-477.195404,-0.000048,387,0,0,0,1,6,0,0,637,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113672,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299260',4299260,-653.461182,211.102798,-435.622009,-0.000048,387,0,0,0,1,6,0,0,637,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113400,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299422',4299422,-650.603027,204.070007,-488.214691,-0.000048,387,0,0,0,1,6,0,0,637,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113128,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299424',4299424,-551.951416,206.791595,-350.856995,-0.000048,387,0,0,0,1,6,0,0,637,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112856,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299425',4299425,-612.623779,216.144806,-319.243988,-0.000048,387,0,0,0,1,6,0,0,637,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112584,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299426',4299426,-853.938416,226.438599,25.457430,-0.000048,394,0,0,0,1,6,0,0,1850,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112318,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299427',4299427,-879.604614,229.180099,-15.122490,-0.000000,394,0,0,0,1,6,0,0,1850,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299428',4299428,-894.004272,228.026398,0.443500,-0.000000,394,0,0,0,1,6,0,0,1850,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111774,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299429',4299429,-907.681885,249.338104,26.397079,-0.000000,394,0,0,0,1,6,0,0,1850,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111502,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299430',4299430,-907.681885,247.122192,-24.585300,-0.000000,394,0,0,0,1,6,0,0,1850,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299431',4299431,-938.982971,269.272095,1.981136,-0.000000,394,0,0,0,1,6,0,0,1850,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299433',4299433,-951.375916,276.008698,-32.272030,-0.000000,394,0,0,0,1,6,0,0,1850,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299593',4299593,117.442703,288.131500,-217.671204,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110390,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299595',4299595,61.837181,292.037506,-153.092804,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110118,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299596',4299596,58.310040,291.422913,-157.591202,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109846,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299597',4299597,-17.296480,300.204010,-215.268906,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109574,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299598',4299598,-102.796997,298.673889,-164.088501,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109302,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299599',4299599,-144.174805,292.303986,-187.728806,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109030,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299600',4299600,-141.522705,298.377014,-239.075500,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108758,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299602',4299602,-187.987900,287.198914,-119.562897,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108486,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299603',4299603,-250.437195,273.614410,-139.801193,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108214,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299604',4299604,-287.381409,260.165009,-74.592461,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107942,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299605',4299605,-249.896500,264.386505,-56.690639,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107670,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299606',4299606,-316.963898,249.190399,0.375132,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107398,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299607',4299607,-353.362305,249.890305,-112.803703,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107126,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299608',4299608,-317.082214,255.914795,-163.691803,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,39,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106854,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299610',4299610,-540.337280,216.113495,-165.331497,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106582,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299612',4299612,-494.751099,227.817902,-119.577698,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106310,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299614',4299614,-538.078918,224.933197,-115.343002,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106038,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299615',4299615,-679.120911,223.608002,-24.397600,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105766,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299617',4299617,-748.989075,226.855804,-70.359383,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105494,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299618',4299618,-763.556213,240.848099,-149.583405,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105222,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299620',4299620,-791.189026,244.109695,-171.737000,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104950,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299628',4299628,-802.041016,225.578995,14.979860,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104678,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299805',4299805,-869.248901,228.169098,24.666691,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104406,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299806',4299806,-916.034790,242.289902,5.756409,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104134,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299808',4299808,-898.861877,250.815994,-36.228569,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103862,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299809',4299809,-932.563721,262.462097,18.376640,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103590,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299833',4299833,-528.303406,207.486404,-361.926514,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103318,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299835',4299835,-635.674072,220.452301,-338.610809,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103046,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299836',4299836,-582.583984,206.158493,-384.262085,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102774,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299839',4299839,-524.189880,192.377594,-420.327301,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102502,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299840',4299840,-649.544922,206.868103,-459.938385,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102230,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299842',4299842,-652.836792,207.443604,-459.938385,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101958,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299227',4299227,-318.632690,255.833298,-42.884541,-0.000000,143,0,0,0,1,6,0,0,2156,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101716,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299230',4299230,-340.376007,259.605804,-64.511017,-0.000000,143,0,0,0,1,6,0,0,2156,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101444,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299231',4299231,-317.614502,256.207092,-97.947693,-0.000048,143,0,0,0,1,6,0,0,2156,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101172,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299233',4299233,-257.298615,264.585693,-65.689346,-0.000000,143,0,0,0,1,6,0,0,2156,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100900,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299235',4299235,-249.965302,269.336914,-76.447701,-0.000000,143,0,0,0,1,6,0,0,2156,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100628,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299236',4299236,-353.139587,237.921494,-157.603195,-0.000048,143,0,0,0,1,6,0,0,2156,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100356,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299238',4299238,-423.544708,240.253296,-111.314598,-0.000048,143,0,0,0,1,6,0,0,2156,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100084,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93153,'LVD_BNPC_02','r1f1','bnpc4299241',4299241,-359.502197,233.804596,-160.537003,-0.000048,143,0,0,0,1,6,0,0,2156,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99812,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299844',4299844,-459.800110,286.182892,196.642899,-0.000048,191,0,0,0,1,6,0,0,788,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99194,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299846',4299846,-523.050415,277.612488,197.807800,-0.000000,191,0,0,0,1,6,0,0,788,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98922,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299847',4299847,-532.402588,240.741592,331.532806,-0.000048,191,0,0,0,1,6,0,0,788,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98650,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299850',4299850,-475.198303,237.443207,403.405304,-0.000048,191,0,0,0,1,6,0,0,788,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98378,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299852',4299852,-369.299286,237.950699,382.602814,-0.000048,191,0,0,0,1,6,0,0,788,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98106,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299853',4299853,-350.165009,237.914505,384.625702,-0.000048,191,0,0,0,1,6,0,0,788,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97834,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299854',4299854,-269.214996,226.703201,429.251587,-0.000048,191,0,0,0,1,6,0,0,788,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97562,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299856',4299856,-231.006302,225.146896,420.889496,-0.000048,191,0,0,0,1,6,0,0,788,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97290,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299858',4299858,-634.704590,244.070801,300.718811,-0.000048,191,0,0,0,1,6,0,0,788,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97018,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299859',4299859,-706.643005,237.401398,303.170288,-0.000048,191,0,0,0,1,6,0,0,788,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96746,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299861',4299861,-766.720093,254.688202,421.683014,-0.000048,191,0,0,0,1,6,0,0,788,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96474,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299862',4299862,-743.321777,254.701202,428.467499,-0.000048,191,0,0,0,1,6,0,0,788,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96202,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299872',4299872,-358.874786,272.546112,253.455994,-0.000048,721,0,0,0,1,6,0,0,785,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95936,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299873',4299873,-357.118988,248.051895,290.108185,-0.000048,722,0,0,0,1,6,0,0,786,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95670,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299874',4299874,-401.256805,239.983307,278.980713,-0.000048,723,0,0,0,1,6,0,0,787,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95404,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299876',4299876,-288.120392,293.587006,256.741089,-0.000048,723,0,0,0,1,6,0,0,787,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95132,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299877',4299877,-277.870697,258.656494,334.187714,-0.000048,721,0,0,0,1,6,0,0,785,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94848,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299878',4299878,-321.083313,262.754395,217.010696,-0.000048,722,0,0,0,1,6,0,0,786,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94582,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299879',4299879,-440.215912,244.465805,319.074097,-0.000048,723,0,0,0,1,6,0,0,787,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94316,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299880',4299880,-394.308411,303.990997,193.089905,-0.000048,721,0,0,0,1,6,0,0,785,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94032,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299881',4299881,-460.690186,270.367493,260.074188,-0.000048,722,0,0,0,1,6,0,0,786,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93766,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299886',4299886,-254.901993,224.367096,523.252625,-0.000048,731,0,0,0,1,6,0,0,653,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93368,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299887',4299887,-247.943405,224.715195,514.518921,-0.000048,731,0,0,0,1,6,0,0,653,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93096,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299888',4299888,-282.529114,224.717606,503.718506,-0.000000,731,0,0,0,1,6,0,0,653,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92824,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299889',4299889,-393.453888,238.452805,503.715515,-0.000048,731,0,0,0,1,6,0,0,653,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92552,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299909',4299909,-485.722290,243.436295,460.457214,-0.000048,731,0,0,0,1,6,0,0,653,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92280,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299910',4299910,-491.588287,245.377701,463.765594,-0.000048,731,0,0,0,1,6,0,0,653,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92008,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299912',4299912,-305.548096,226.398407,559.785400,-0.000048,731,0,0,0,1,6,0,0,653,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91736,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299914',4299914,-212.225906,229.780594,563.407715,-0.000048,731,0,0,0,1,6,0,0,653,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91464,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299915',4299915,-252.616806,224.743301,626.013428,-0.000048,731,0,0,0,1,6,0,0,653,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91192,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299917',4299917,-120.126801,205.896805,472.541412,-0.000000,139,0,0,0,1,6,0,0,645,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91058,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299933',4299933,-167.451797,212.509293,469.950714,-0.000000,139,0,0,0,1,6,0,0,645,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90786,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299935',4299935,-192.431595,215.960907,481.742401,-0.000048,139,0,0,0,1,6,0,0,645,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90514,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299937',4299937,-254.539902,221.577606,466.534088,-0.000000,139,0,0,0,1,6,0,0,645,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90242,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299939',4299939,-261.479614,221.984207,460.971405,-0.000000,139,0,0,0,1,6,0,0,645,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89970,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299940',4299940,-327.888702,223.177307,446.066895,-0.000000,139,0,0,0,1,6,0,0,645,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89698,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299942',4299942,-452.292694,231.075394,433.657410,-0.000048,139,0,0,0,1,6,0,0,645,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89426,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299943',4299943,-556.198486,235.399994,407.330414,-0.000000,139,0,0,0,1,6,0,0,645,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89154,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299944',4299944,-563.418518,235.399994,398.974304,-0.000000,139,0,0,0,1,6,0,0,645,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88882,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4299945',4299945,-533.244080,235.399994,407.132111,-0.000000,139,0,0,0,1,6,0,0,645,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88610,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300046',4300046,-699.997925,253.759995,507.272186,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88344,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300048',4300048,-688.471802,253.697205,509.426910,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88072,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300049',4300049,-698.510803,253.838196,499.010101,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87800,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300050',4300050,-705.378479,253.881699,505.406494,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87528,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300051',4300051,-699.795776,253.759995,514.230591,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87256,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300052',4300052,-688.023315,253.529099,507.670410,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86984,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300053',4300053,-688.742798,253.351105,499.477112,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86712,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300054',4300054,-677.956787,254.053894,498.299103,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86440,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300056',4300056,-493.539612,282.080109,191.529907,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86102,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300057',4300057,-521.202393,242.145401,299.671906,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85830,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300059',4300059,-521.172913,237.402893,377.595398,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85558,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300061',4300061,-438.483398,245.206894,362.585205,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85286,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300062',4300062,-248.297302,227.611099,410.760986,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85014,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300064',4300064,-153.368500,221.118393,416.250702,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,47,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84742,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300066',4300066,-98.785767,213.591293,426.872589,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,47,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84470,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300069',4300069,-272.282501,264.869385,321.059906,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84198,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300070',4300070,-390.265106,233.670807,321.964600,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83926,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300072',4300072,-383.889404,248.725204,219.890106,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83654,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300074',4300074,-416.929291,233.443802,461.940796,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83382,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300078',4300078,-295.979309,224.444901,485.191010,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83110,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300080',4300080,-346.028900,236.543396,518.089478,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82838,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300081',4300081,-227.039001,229.327805,547.600525,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82566,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300083',4300083,-286.249908,221.550095,669.298584,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82294,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300084',4300084,-282.240204,222.570007,672.355286,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82022,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300085',4300085,-254.344894,224.215302,580.497681,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81750,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300087',4300087,-149.461502,217.410095,485.622894,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,47,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81478,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300089',4300089,-604.956787,244.740799,337.663788,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,47,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81206,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300090',4300090,-649.166504,245.258606,286.166504,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,47,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80934,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4300091',4300091,-748.151123,238.541107,350.326385,-0.000048,132,0,0,0,1,6,0,0,114,0,0.000000,47,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80662,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4890695',4890695,-188.798996,226.035995,400.288086,-0.000048,191,0,0,0,1,6,0,0,788,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80426,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93159,'LVD_BNPC_03','r1f1','bnpc4890696',4890696,-132.585098,216.182098,435.066193,-0.000048,191,0,0,0,1,6,0,0,788,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80154,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300171',4300171,566.598206,289.624603,98.502197,-0.000048,749,0,0,0,1,6,0,0,1844,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79638,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300176',4300176,527.275391,303.059296,-162.340805,-1.430171,748,0,0,0,0,6,0,0,1843,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79372,1,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300177',4300177,586.301575,302.701202,-115.328102,-1.108530,748,0,0,0,0,6,0,0,1843,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79100,1,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300178',4300178,654.442383,298.421295,-12.551030,-1.049571,748,0,0,0,0,6,0,0,1843,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78828,1,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300179',4300179,669.497986,301.708099,-29.924919,-1.470007,748,0,0,0,0,6,0,0,1843,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78556,1,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300180',4300180,602.427917,290.487396,-0.884406,1.499893,748,0,0,0,0,6,0,0,1843,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78284,1,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300181',4300181,664.371399,287.443909,73.074158,-0.328403,748,0,0,0,0,6,0,0,1843,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78012,1,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300182',4300182,601.759216,287.400208,127.919098,-0.309833,748,0,0,0,0,6,0,0,1843,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77740,1,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300183',4300183,565.585571,287.455109,154.665298,-0.223939,748,0,0,0,0,6,0,0,1843,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77468,1,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300184',4300184,558.831116,300.043915,59.949520,0.840739,748,0,0,0,0,6,0,0,1843,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77196,1,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300191',4300191,511.356689,303.173004,-206.740097,-1.446514,750,0,0,0,0,6,0,0,1845,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76930,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300194',4300194,494.438110,303.700287,-197.619598,-0.866329,749,0,0,0,1,6,0,0,1844,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76646,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300196',4300196,508.591888,303.338898,-205.656296,0.718910,747,0,0,0,0,6,0,0,1842,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76392,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300198',4300198,523.491211,302.387909,-191.363495,-0.000048,747,0,0,0,1,6,0,0,1842,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76120,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300200',4300200,559.439514,303.965698,-151.707001,-0.863069,748,0,0,0,1,6,0,0,1843,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75836,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300201',4300201,555.992920,301.960693,-163.683502,-0.000048,750,0,0,0,1,6,0,0,1845,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75570,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300203',4300203,593.473511,302.708496,-99.112923,-0.000048,747,0,0,0,1,6,0,0,1842,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75304,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300204',4300204,642.703979,303.166687,-43.589840,-0.000048,750,0,0,0,1,6,0,0,1845,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75026,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300205',4300205,650.994812,303.095612,-38.070992,-0.000048,749,0,0,0,1,6,0,0,1844,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74742,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300206',4300206,625.239319,302.690613,-97.402184,-0.863069,748,0,0,0,1,6,0,0,1843,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74476,1,0,0,0,45,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300209',4300209,635.367188,303.307190,-92.580772,-0.243028,749,0,0,0,0,6,0,0,1844,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74198,1,0,0,0,45,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300210',4300210,636.402405,303.397003,-95.636833,-0.934643,750,0,0,0,0,6,0,0,1845,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73938,1,0,0,0,45,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300212',4300212,640.141296,289.793488,15.564350,-0.000048,749,0,0,0,1,6,0,0,1844,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73654,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300213',4300213,632.201416,287.460602,83.472313,-0.000048,750,0,0,0,1,6,0,0,1845,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73394,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300214',4300214,694.667114,302.802002,-25.909540,-0.862877,748,0,0,0,1,6,0,0,1843,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73116,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300215',4300215,668.584900,286.359985,53.434738,-0.000048,747,0,0,0,1,6,0,0,1842,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72856,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300219',4300219,653.565674,286.929688,35.585339,1.258188,749,0,0,0,1,6,0,0,1844,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72566,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300220',4300220,654.409180,286.791412,37.999821,0.580821,747,0,0,0,0,6,0,0,1842,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72312,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300221',4300221,655.671082,286.824310,34.141949,-0.000048,750,0,0,0,0,6,0,0,1845,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72034,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300222',4300222,657.228088,286.375885,36.471931,-1.431333,748,0,0,0,0,6,0,0,1843,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71756,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300226',4300226,639.859619,286.099091,135.124603,0.948030,749,0,0,0,0,6,0,0,1844,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71478,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300227',4300227,642.707703,286.175110,132.877899,-0.826897,748,0,0,0,0,6,0,0,1843,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71212,1,0,0,0,0,30120,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300229',4300229,708.942505,286.232513,46.920448,-0.000048,750,0,0,0,1,6,0,0,1845,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70946,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300230',4300230,711.298828,285.307404,75.698997,-0.000048,747,0,0,0,1,6,0,0,1842,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70680,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300232',4300232,613.615784,284.572296,166.852005,-0.000048,747,0,0,0,1,6,0,0,1842,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70408,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300233',4300233,590.029480,285.689209,176.024506,-0.000048,750,0,0,0,1,6,0,0,1845,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70130,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300234',4300234,646.990784,285.135101,149.341507,-0.862877,748,0,0,0,1,6,0,0,1843,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69852,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300286',4300286,527.855225,308.308502,-299.702515,-0.000048,113,0,0,0,1,6,0,0,660,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69478,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300287',4300287,575.036316,320.881805,-289.906189,-0.866329,115,0,0,0,1,6,0,0,661,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69218,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300288',4300288,577.508118,322.468903,-294.789093,-0.000048,116,0,0,0,1,6,0,0,663,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68952,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300284',4300284,605.249023,330.830811,-303.486786,-0.677215,114,0,0,0,0,6,0,0,662,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68668,1,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300238',4300238,582.383789,289.517700,-46.738300,-0.000000,141,0,0,0,1,6,0,0,1846,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68510,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300256',4300256,570.830383,286.569214,120.215103,-0.000048,141,0,0,0,1,6,0,0,1846,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68238,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300250',4300250,684.486816,291.013214,7.434129,-0.000048,141,0,0,0,1,6,0,0,1846,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67966,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300236',4300236,586.167297,288.737610,-28.609209,-0.000000,141,0,0,0,1,6,0,0,1846,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67694,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300257',4300257,555.228516,297.855499,84.213348,-0.000048,141,0,0,0,1,6,0,0,1846,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67422,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300254',4300254,630.756226,286.750000,109.616798,-0.000048,141,0,0,0,1,6,0,0,1846,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67150,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300244',4300244,507.927002,303.303497,-229.236298,-0.000048,141,0,0,0,1,6,0,0,1846,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66878,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300242',4300242,498.254486,308.702209,-165.574203,-0.000048,141,0,0,0,1,6,0,0,1846,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66606,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300241',4300241,576.693481,289.831787,-46.195572,-0.000000,141,0,0,0,1,6,0,0,1846,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66334,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300253',4300253,639.507080,287.656799,38.046551,-0.000048,141,0,0,0,1,6,0,0,1846,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66062,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300239',4300239,559.963928,292.885193,-35.993568,-0.000000,141,0,0,0,1,6,0,0,1846,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65790,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93173,'LVD_BNPC_04','r1f1','bnpc4300246',4300246,630.399292,300.341187,-66.790810,-0.000048,141,0,0,0,1,6,0,0,1846,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65518,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98346,'LVD_easter_2014','r1f1','bnpc4621624',4621624,-332.429199,307.678406,234.107803,0.810953,2773,0,0,0,0,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44948,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97950,'LVD_EPIC_BATTLE','r1f1','bnpc4600355',4600355,547.412170,348.384613,-748.106018,-1.023726,1699,0,0,0,8,6,0,0,2162,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43902,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97950,'LVD_EPIC_BATTLE','r1f1','bnpc4614331',4614331,530.815125,348.686096,-743.006226,-0.000000,1700,0,0,0,8,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43556,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97950,'LVD_EPIC_BATTLE','r1f1','bnpc4614332',4614332,535.935608,348.616394,-737.220215,-0.000000,2222,0,0,0,8,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43290,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92902,'LVD_guard_01','r1f1','bnpc4291453',4291453,155.132599,222.009995,348.043488,-1.413914,1773,0,0,0,0,6,0,0,1581,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41428,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92902,'LVD_guard_01','r1f1','bnpc4291457',4291457,272.663513,222.247696,334.248901,1.429449,1773,0,0,0,0,6,0,0,1581,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41156,5,0,0,0,0,30054,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92902,'LVD_guard_01','r1f1','bnpc4291464',4291464,220.038406,302.644592,-149.387497,-0.000000,1774,0,0,0,0,6,0,0,1582,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40890,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92902,'LVD_guard_01','r1f1','bnpc4291467',4291467,177.878494,301.664612,-190.712402,-1.475693,1774,0,0,0,0,6,0,0,1582,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40618,5,0,0,0,0,30055,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92902,'LVD_guard_01','r1f1','bnpc4291540',4291540,264.301514,302.632202,-284.870697,0.802036,1774,0,0,0,0,6,0,0,1582,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40346,5,0,0,0,0,30054,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92902,'LVD_guard_01','r1f1','bnpc4291544',4291544,-136.888702,304.096985,-285.084290,0.752756,1775,0,0,0,0,6,0,0,1583,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40080,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92902,'LVD_guard_01','r1f1','bnpc4291545',4291545,-494.600586,204.213104,-188.481094,-1.059392,1773,0,0,0,0,6,0,0,1581,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39796,5,0,0,0,0,30052,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92902,'LVD_guard_01','r1f1','bnpc4291549',4291549,-535.141113,204.035507,-287.671906,-0.892606,1773,0,0,0,0,6,0,0,1581,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39524,5,0,0,0,0,30053,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93107,'LVD_kakashi_01','r1f1','bnpc4297232',4297232,-397.424805,210.788193,-238.255402,-1.495928,901,0,0,0,0,6,0,0,541,0,0.000000,50,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38242,8,0,0,4128002,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93107,'LVD_kakashi_01','r1f1','bnpc4297234',4297234,-397.352997,210.788193,-233.666794,-1.495391,901,0,0,0,0,6,0,0,541,0,0.000000,50,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37970,8,0,0,4128001,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93107,'LVD_kakashi_01','r1f1','bnpc4297235',4297235,-397.251587,210.788193,-228.848999,-1.474730,901,0,0,0,0,6,0,0,541,0,0.000000,50,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37698,8,0,0,4128000,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93107,'LVD_kakashi_01','r1f1','bnpc4297236',4297236,-423.044800,210.788193,-221.963104,0.613352,901,0,0,0,0,6,0,0,541,0,0.000000,1,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37426,8,0,0,4297227,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93107,'LVD_kakashi_01','r1f1','bnpc4297238',4297238,-413.101990,210.788193,-212.035004,0.762825,901,0,0,0,0,6,0,0,541,0,0.000000,1,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37154,8,0,0,4297228,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93107,'LVD_kakashi_01','r1f1','bnpc4297239',4297239,-417.529114,210.788193,-217.341202,0.633256,901,0,0,0,0,6,0,0,541,0,0.000000,1,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36882,8,0,0,4297229,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92289,'FATE_001','r1f1','bnpc4257908',4257908,155.687698,222.003494,350.362305,-0.750444,1672,0,0,0,1,6,0,0,1581,0,0.000000,29,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,259360,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92291,'FATE_002','r1f1','bnpc4257940',4257940,444.919800,209.463593,466.612701,-0.000000,1672,0,0,0,1,6,0,0,1581,0,0.000000,29,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,257040,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92293,'FATE_004','r1f1','bnpc4257953',4257953,298.691895,254.180405,124.830399,-0.000000,1780,0,0,0,1,6,0,0,1427,0,0.000000,36,0,120,1,0,0,0,0,0,1,1,0,0,0,9.000000,1.000000,255998,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92517,'FATE_005','r1f1','bnpc4324148',4324148,191.856995,264.410614,70.229393,0.785398,1781,0,0,0,1,6,0,0,1428,0,0.000000,35,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,255268,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92523,'FATE_006','r1f1','bnpc4324177',4324177,155.857697,282.310486,-72.461121,1.570451,1666,0,0,0,0,6,0,0,1847,0,0.000000,36,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,252794,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93688,'FATE_007','r1f1','bnpc4316839',4316839,218.770599,222.149399,322.458496,-0.000048,2104,0,0,0,3,6,0,0,1714,0,0.000000,30,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,252324,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93688,'FATE_007','r1f1','bnpc4316846',4316846,242.663498,222.370605,301.129486,-0.000000,2104,0,0,0,3,6,0,0,1714,0,0.000000,30,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,252052,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93688,'FATE_007','r1f1','bnpc4316847',4316847,244.983505,222.186493,318.165802,-0.000048,2104,0,0,0,3,6,0,0,1714,0,0.000000,30,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,251780,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93688,'FATE_007','r1f1','bnpc4316872',4316872,207.312698,222.000397,315.864014,-0.000000,2104,0,0,0,3,6,0,0,1714,0,0.000000,30,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,251508,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93688,'FATE_007','r1f1','bnpc4317030',4317030,184.496796,223.193604,362.325409,1.225094,2165,0,0,0,0,6,0,0,1713,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,249994,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93688,'FATE_007','r1f1','bnpc4331802',4331802,208.057602,222.116302,340.530792,-0.000000,1668,0,0,0,1,6,0,0,1581,0,0.000000,30,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,248800,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93688,'FATE_007','r1f1','bnpc4331803',4331803,204.735504,222.067505,341.686096,-0.000000,1668,0,0,0,1,6,0,0,1581,0,0.000000,30,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,248528,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92431,'FATE_008','r1f1','bnpc4295768',4295768,221.079803,264.174988,38.131020,0.136895,2109,0,0,0,0,6,0,0,1604,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,245882,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92431,'FATE_008','r1f1','bnpc4262501',4262501,220.260696,264.508911,36.873348,0.136895,2167,0,0,0,0,6,0,0,1712,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,245616,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92516,'FATE_010','r1f1','bnpc4265911',4265911,421.265015,361.989014,-531.016785,-0.841159,1666,0,0,0,0,6,0,0,1605,0,0.000000,38,1,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,240442,1,0,0,0,0,30212,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93716,'FATE_013','r1f1','bnpc4317604',4317604,473.078308,356.802399,-637.907776,0.396744,2166,0,0,0,0,6,0,0,1715,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,239246,1,0,0,0,0,30285,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92297,'FATE_015','r1f1','bnpc4258101',4258101,235.425003,302.000000,-269.862091,0.942478,1670,0,0,0,1,6,0,0,1582,0,0.000000,31,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,234012,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92298,'FATE_016','r1f1','bnpc4258119',4258119,645.778503,320.084106,-384.489594,-0.226893,1782,0,0,0,1,6,0,0,1429,0,0.000000,39,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,233282,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92301,'FATE_020','r1f1','bnpc4258327',4258327,-281.761108,255.310806,-36.944031,-0.000000,1783,0,0,0,1,6,0,0,1430,0,0.000000,39,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,232552,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92302,'FATE_021','r1f1','bnpc4258342',4258342,-648.385498,203.717804,-487.370392,0.890118,1784,0,0,0,1,6,0,0,1431,0,0.000000,40,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,231822,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92788,'FATE_023','r1f1','bnpc4279914',4279914,-580.767578,225.210602,-100.314697,-0.511280,1666,0,0,0,0,6,0,0,1582,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,229754,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92788,'FATE_023','r1f1','bnpc4279919',4279919,-582.760498,225.769699,-100.985802,1.252516,1666,0,0,0,0,6,0,0,1582,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,229482,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92788,'FATE_023','r1f1','bnpc4279921',4279921,-581.285095,225.576797,-102.451202,0.278895,1670,0,0,0,0,6,0,0,1582,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,229252,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92795,'FATE_024','r1f1','bnpc4282593',4282593,-237.699097,275.260101,-134.292603,0.776425,1666,0,0,0,0,6,0,0,1582,0,0.000000,36,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,226578,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92304,'FATE_025','r1f1','bnpc4258365',4258365,-442.840698,284.129211,108.431999,0.575959,1785,0,0,0,1,6,0,0,1432,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,225908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92535,'FATE_027','r1f1','bnpc4325105',4325105,-675.037476,241.912994,351.739990,-1.396264,1669,0,0,0,0,6,0,0,1603,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,223278,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92535,'FATE_027','r1f1','bnpc4329239',4329239,-677.572021,241.861694,351.713989,1.396264,1673,0,0,0,0,6,0,0,1603,0,0.000000,41,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,223012,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92816,'FATE_028','r1f1','bnpc4283973',4283973,-28.261271,207.168503,438.590088,-1.523162,1672,0,0,0,0,6,0,0,1581,0,0.000000,46,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,220916,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92823,'FATE_030','r1f1','bnpc4285180',4285180,-554.237427,240.342606,341.995300,-1.235040,1864,0,0,0,0,6,0,0,1609,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,219022,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92305,'FATE_031','r1f1','bnpc4258395',4258395,-413.717712,237.945496,229.763596,-0.000000,1786,0,0,0,1,6,0,0,1433,0,0.000000,46,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,218292,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93718,'FATE_032','r1f1','bnpc4317644',4317644,231.291901,222.175293,300.645111,-0.000000,2105,0,0,0,0,6,0,0,1716,0,0.000000,33,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,217774,1,0,0,0,0,30295,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93218,'FATE_034','r1f1','bnpc4308046',4308046,-820.146179,224.328705,23.025551,-1.421188,2160,0,0,0,1,6,0,0,1530,0,0.000000,40,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,211104,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92306,'FATE_035','r1f1','bnpc4258409',4258409,0.943457,299.720490,-183.852798,-1.064651,1787,0,0,0,1,6,0,0,1434,0,0.000000,39,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,210374,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92307,'FATE_037','r1f1','bnpc4258436',4258436,-502.815613,211.000000,-273.765198,-0.331612,1672,0,0,0,1,6,0,0,1582,0,0.000000,34,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,207928,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92829,'FATE_038','r1f1','bnpc4285276',4285276,-503.367310,204.141693,-193.602600,0.796913,1668,0,0,0,0,6,0,0,1581,0,0.000000,37,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,205652,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92896,'FATE_039','r1f1','bnpc4291303',4291303,489.306885,329.843811,-203.689301,-0.000000,1208,0,0,0,0,6,0,0,450,0,0.000000,50,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,203100,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92896,'FATE_039','r1f1','bnpc4291308',4291308,580.078308,289.491608,-45.763512,-0.000048,1293,0,0,0,0,6,0,0,1730,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,202834,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92896,'FATE_039','r1f1','bnpc4291309',4291309,580.049988,288.255402,-24.756081,-0.000048,1293,0,0,0,0,6,0,0,1730,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,202562,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92896,'FATE_039','r1f1','bnpc4291310',4291310,603.679871,292.267487,-46.684700,-0.000048,1293,0,0,0,0,6,0,0,1730,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,202290,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92896,'FATE_039','r1f1','bnpc4291311',4291311,596.058228,290.354492,-26.620501,-0.000048,1293,0,0,0,0,6,0,0,1730,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,202018,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92898,'FATE_040','r1f1','bnpc4291314',4291314,645.768188,303.331085,-39.702240,-0.000000,1788,0,0,0,1,6,0,0,1435,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,201276,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92898,'FATE_040','r1f1','bnpc4291315',4291315,691.179382,302.769409,-27.580259,-0.000000,1789,0,0,0,1,6,0,0,1436,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,201010,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92898,'FATE_040','r1f1','bnpc4291316',4291316,692.757080,290.465088,10.978770,-0.000000,1790,0,0,0,1,6,0,0,1437,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,200744,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92898,'FATE_040','r1f1','bnpc4291317',4291317,653.959290,287.939301,20.356791,-0.000000,1791,0,0,0,1,6,0,0,1438,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,200478,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92900,'FATE_041','r1f1','bnpc4291342',4291342,616.968506,286.108612,102.145599,-0.000000,1792,0,0,0,1,6,0,0,1439,0,0.000000,50,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,199748,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93310,'FATE_042','r1f1','bnpc4304051',4304051,245.127304,302.499786,-281.282013,-0.000000,2103,0,0,0,0,6,0,0,1862,0,0.000000,34,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,196210,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93326,'FATE_044','r1f1','bnpc4304130',4304130,268.203003,359.257294,-670.696472,-0.000000,1793,0,0,0,1,6,0,0,1440,0,0.000000,38,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,193728,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93326,'FATE_044','r1f1','bnpc4322676',4322676,270.496796,358.251587,-634.213684,-0.139626,2230,0,0,0,0,6,0,0,2168,0,0.000000,38,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,191902,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93343,'FATE_045','r1f1','bnpc4304921',4304921,267.961914,359.258698,-688.322388,-0.000000,1793,0,0,0,1,6,0,0,1440,0,0.000000,38,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,191144,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93114,'FATE_046','r1f1','bnpc4297322',4297322,-727.382874,226.475601,-5.576513,-0.704361,733,0,0,0,1,6,0,0,655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,189168,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93117,'FATE_047','r1f1','bnpc4297360',4297360,-855.436584,251.655396,-334.412292,-0.000000,733,0,0,0,1,6,0,0,655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,188112,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93220,'FATE_048','r1f1','bnpc4308041',4308041,-288.635315,252.290497,-26.915380,0.259190,1794,0,0,0,1,6,0,0,1445,0,0.000000,39,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,185918,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96954,'FATE_049','r1f1','bnpc4514934',4514934,628.055176,301.727905,-104.051300,-0.610869,2507,0,0,0,1,6,0,0,2355,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,185496,1,0,0,0,0,30061,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98436,'FATE_EASTER_2014_01','r1f1','bnpc4627625',4627625,-336.714996,232.146698,506.613007,0.747108,2768,0,0,0,1,6,0,0,2517,0,0.000000,46,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,184706,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94519,'FATE_FF13_03_01','r1f1','bnpc4378220',4378220,-284.760406,257.345398,-59.081329,0.131069,1220,0,0,0,0,6,0,0,2219,0,0.000000,38,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,184264,1,0,0,0,0,0,0,153,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94519,'FATE_FF13_03_01','r1f1','bnpc4378222',4378222,-289.143707,256.988007,-55.468620,1.390884,2086,0,0,0,8,6,0,0,2216,0,0.000000,38,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,183686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94519,'FATE_FF13_03_01','r1f1','bnpc4378223',4378223,-280.276001,257.077698,-49.416451,-0.881607,2082,0,0,0,0,6,0,0,1478,0,0.000000,38,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,183420,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94576,'FATE_FF13_03_02','r1f1','bnpc4387304',4387304,440.155212,348.002502,-651.295898,-0.766978,1220,0,0,0,0,6,0,0,2219,0,0.000000,38,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,181712,1,0,0,0,0,0,0,153,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94576,'FATE_FF13_03_02','r1f1','bnpc4387306',4387306,437.404388,347.647491,-667.465576,1.390814,2086,0,0,0,8,6,0,0,2216,0,0.000000,38,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,181134,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94576,'FATE_FF13_03_02','r1f1','bnpc4387307',4387307,446.272186,347.863586,-661.413513,-0.881381,2082,0,0,0,0,6,0,0,1478,0,0.000000,38,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,180868,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97083,'FATE_XMAS_2013_01','r1f1','bnpc4524950',4524950,-602.603027,245.361206,316.812714,-0.855833,2441,0,0,0,1,6,0,0,2331,0,0.000000,44,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,178958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97083,'FATE_XMAS_2013_01','r1f1','bnpc4524948',4524948,-596.642578,244.339996,327.552795,0.178316,2440,0,0,0,0,6,0,0,2329,0,0.000000,44,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,178692,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86836,'go011','r1f1','bnpc4253666',4253666,548.116089,235.299194,308.043701,-1.423491,1801,0,0,0,0,6,0,0,1614,0,0.000000,37,0,120,1,0,1,0,60,20,1,0,1,1,1,0.000000,1.000000,173554,1,1,38,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86836,'go011','r1f1','bnpc4253686',4253686,547.818115,235.339600,306.080688,-0.655451,1802,0,0,0,2,6,0,0,1615,0,0.000000,35,0,120,1,0,0,0,20,20,1,0,1,1,1,0.000000,1.000000,173288,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86836,'go011','r1f1','bnpc4253689',4253689,513.405884,234.544205,310.640900,-0.000000,1803,0,0,0,0,6,0,0,1616,0,0.000000,35,0,120,1,0,2,0,20,20,1,0,1,1,1,0.000000,1.000000,173022,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86836,'go011','r1f1','bnpc4253690',4253690,536.966614,234.812195,284.632385,-0.000000,1804,0,0,0,0,6,0,0,1617,0,0.000000,35,0,120,1,0,3,0,20,20,1,0,1,1,1,0.000000,1.000000,172756,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4258474',4258474,-729.207581,225.574997,-61.485329,0.569065,1806,0,0,0,0,6,0,0,1619,0,0.000000,35,0,120,1,0,1,0,20,20,1,0,0,1,1,0.000000,1.000000,165682,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4258483',4258483,-753.862671,227.446793,-98.307541,0.393904,1806,0,0,0,0,6,0,0,1619,0,0.000000,35,0,120,1,0,0,0,20,20,1,0,0,1,1,0.000000,1.000000,165410,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4258485',4258485,-762.163879,227.746902,-94.611519,0.678940,1806,0,0,0,0,6,0,0,1619,0,0.000000,35,0,120,1,0,0,0,20,20,1,0,0,1,1,0.000000,1.000000,165138,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4258490',4258490,-761.021179,229.628799,-110.769501,0.297967,1806,0,0,0,0,6,0,0,1619,0,0.000000,35,0,120,1,0,0,0,20,20,1,0,0,1,1,0.000000,1.000000,164866,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4258491',4258491,-766.536987,229.449799,-108.690002,0.515377,1806,0,0,0,0,6,0,0,1619,0,0.000000,35,0,120,1,0,0,0,20,20,1,0,0,1,1,0.000000,1.000000,164594,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4258478',4258478,-735.263489,226.303604,-56.536781,-0.000000,1809,0,0,0,0,6,0,0,1622,0,0.000000,35,0,120,1,0,1,0,20,20,1,0,0,1,1,0.000000,1.000000,164328,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4258493',4258493,-758.081299,228.204102,-104.665199,0.287396,1810,0,0,0,0,6,0,0,1623,0,0.000000,35,0,120,1,0,0,0,20,20,1,0,0,1,0,0.000000,1.000000,164062,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4258494',4258494,-760.708130,227.760101,-102.220299,0.513364,1810,0,0,0,0,6,0,0,1623,0,0.000000,35,0,120,1,0,0,0,20,20,1,0,0,1,0,0.000000,1.000000,163790,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4258496',4258496,-774.552979,231.758606,-114.523003,0.409518,1810,0,0,0,0,6,0,0,1623,0,0.000000,35,0,120,1,0,0,0,20,20,1,0,0,1,0,0.000000,1.000000,163518,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4258497',4258497,-763.685486,231.935196,-119.829201,0.179910,1810,0,0,0,0,6,0,0,1623,0,0.000000,35,0,120,1,0,0,0,20,20,1,0,0,1,0,0.000000,1.000000,163246,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4258504',4258504,-775.984802,232.588303,-116.833000,0.916136,1807,0,0,0,2,6,0,0,1620,0,0.000000,35,0,120,1,0,0,0,20,20,1,0,0,1,1,0.000000,1.000000,162980,1,0,0,0,0,0,4258520,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4258505',4258505,-765.410706,233.090393,-124.158401,-0.000048,1807,0,0,0,2,6,0,0,1620,0,0.000000,35,0,120,1,0,0,0,20,20,1,0,0,1,1,0.000000,1.000000,162708,1,0,0,0,0,0,4258751,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4258784',4258784,-755.594727,226.273804,-91.636902,-0.857540,1805,0,0,0,0,6,0,0,1618,0,0.000000,36,0,120,1,0,4,0,30,20,1,0,0,1,1,0.000000,1.000000,162442,1,1,90,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4258789',4258789,-747.935974,226.353302,-88.809578,-1.040199,1808,0,0,0,0,6,0,0,1621,0,0.000000,30,0,120,1,0,4,0,30,20,1,0,0,1,1,0.000000,1.000000,162176,1,0,90,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4258798',4258798,-738.442871,225.839798,-70.465782,-0.987688,1806,0,0,0,0,6,0,0,1619,0,0.000000,35,0,120,1,0,0,0,20,20,1,0,0,1,1,0.000000,1.000000,161874,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4259988',4259988,-748.574829,226.666199,-71.560623,-0.000000,1808,0,0,0,0,6,0,0,1621,0,0.000000,30,0,120,1,0,4,0,20,20,1,0,0,1,1,0.000000,1.000000,161632,1,0,90,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4258794',4258794,-731.108521,227.120102,-73.479683,-1.443139,1807,0,0,0,2,6,0,0,1620,0,0.000000,35,0,120,1,0,0,0,22,20,1,0,0,1,1,0.000000,1.000000,161348,1,0,0,0,0,0,4258906,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4297107',4297107,-740.214478,226.716904,-59.689659,-0.000048,1807,0,0,0,2,6,0,0,1620,0,0.000000,35,0,120,1,0,0,0,20,20,1,0,0,1,1,0.000000,1.000000,161076,1,0,0,0,0,0,4258898,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4297112',4297112,-776.404297,232.738403,-117.054703,-0.000048,1807,0,0,0,2,6,0,0,1620,0,0.000000,35,0,120,1,0,0,0,20,20,1,0,0,1,1,0.000000,1.000000,160804,1,0,0,0,0,0,4258832,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92227,'go012','r1f1','bnpc4297114',4297114,-765.603821,233.056198,-123.905502,-0.000000,1807,0,0,0,2,6,0,0,1620,0,0.000000,35,0,120,1,0,0,0,20,20,1,0,0,1,1,0.000000,1.000000,160532,1,0,0,0,0,0,4258860,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93075,'Grand_Company_Leve','r1f1','bnpc4296351',4296351,329.787292,221.007904,347.484406,-0.000000,1857,0,0,0,1,6,0,0,1794,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,159318,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93075,'Grand_Company_Leve','r1f1','bnpc4296356',4296356,334.987793,220.998398,347.313812,-0.000000,1857,0,0,0,1,6,0,0,1794,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,159046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93075,'Grand_Company_Leve','r1f1','bnpc4296357',4296357,339.075287,221.365707,342.722595,-0.000000,1857,0,0,0,1,6,0,0,1794,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,158774,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93075,'Grand_Company_Leve','r1f1','bnpc4296359',4296359,335.442505,221.686401,338.641113,-0.000000,1857,0,0,0,1,6,0,0,1794,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,158502,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93075,'Grand_Company_Leve','r1f1','bnpc4296365',4296365,328.974396,221.730698,338.925415,-0.000000,1857,0,0,0,1,6,0,0,1794,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,158230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93075,'Grand_Company_Leve','r1f1','bnpc4296409',4296409,-373.395813,224.610306,-179.339798,0.344856,1858,0,0,0,1,6,0,0,1232,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,157964,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93075,'Grand_Company_Leve','r1f1','bnpc4296411',4296411,-378.938293,223.834503,-173.155502,-0.275729,1858,0,0,0,1,6,0,0,1232,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,157692,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93075,'Grand_Company_Leve','r1f1','bnpc4296412',4296412,-385.829987,223.063705,-171.054596,1.075822,1858,0,0,0,1,6,0,0,1232,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,157420,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93075,'Grand_Company_Leve','r1f1','bnpc4296413',4296413,-377.827301,224.144608,-179.141998,0.506823,1858,0,0,0,1,6,0,0,1232,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,157148,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93075,'Grand_Company_Leve','r1f1','bnpc4296415',4296415,-382.879395,223.774994,-177.242401,-0.567750,1858,0,0,0,1,6,0,0,1232,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,156876,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93075,'Grand_Company_Leve','r1f1','bnpc4406097',4406097,358.924011,241.889801,213.859406,-0.000000,2493,0,0,0,1,6,0,0,2241,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,156610,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93075,'Grand_Company_Leve','r1f1','bnpc4406098',4406098,361.870300,241.488205,219.825607,1.398807,2493,0,0,0,1,6,0,0,2241,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,156338,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93075,'Grand_Company_Leve','r1f1','bnpc4406099',4406099,357.235809,240.952606,217.265594,-0.000000,2493,0,0,0,1,6,0,0,2241,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,156066,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93075,'Grand_Company_Leve','r1f1','bnpc4406119',4406119,-450.064911,202.654999,-356.374512,1.071711,2494,0,0,0,1,6,0,0,2242,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,155800,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93075,'Grand_Company_Leve','r1f1','bnpc4406123',4406123,-445.822906,202.039093,-354.138092,-1.315956,2494,0,0,0,1,6,0,0,2242,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,155528,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93075,'Grand_Company_Leve','r1f1','bnpc4406124',4406124,-445.657715,201.734406,-359.426300,0.859840,2494,0,0,0,1,6,0,0,2242,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,5.000000,1.000000,155256,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92382,'QB_GaiUsb803_001','r1f1','bnpc4261259',4261259,467.205994,305.972687,-280.934387,-0.236509,1731,0,0,0,0,6,0,0,2076,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123738,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92382,'QB_GaiUsb803_001','r1f1','bnpc4261275',4261275,464.070404,306.272095,-284.691498,-0.230386,1732,0,0,0,0,6,0,0,2077,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123472,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92382,'QB_GaiUsb803_001','r1f1','bnpc4261276',4261276,462.654785,305.956787,-284.196991,-0.285270,1733,0,0,0,0,6,0,0,2078,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123206,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92382,'QB_GaiUsb803_001','r1f1','bnpc4261278',4261278,461.024414,305.608307,-283.800995,-0.195289,1734,0,0,0,0,6,0,0,2079,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122940,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92382,'QB_GaiUsb803_001','r1f1','bnpc4261262',4261262,466.886414,306.329407,-282.579712,-0.455607,1735,0,0,0,0,6,0,0,1454,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122674,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92382,'QB_GaiUsb803_001','r1f1','bnpc4261257',4261257,459.883789,303.213104,-264.285095,-0.018812,1739,0,0,0,8,6,0,0,2081,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122408,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92382,'QB_GaiUsb803_001','r1f1','bnpc4261302',4261302,458.487793,303.120514,-313.710297,-0.000048,1734,0,0,0,0,6,0,0,2079,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122124,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92382,'QB_GaiUsb803_001','r1f1','bnpc4261303',4261303,454.917114,302.490295,-315.233307,-0.000048,1736,0,0,0,0,6,0,0,2080,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121870,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92382,'QB_GaiUsb803_001','r1f1','bnpc4261305',4261305,439.688690,302.387909,-328.328400,0.475302,1737,0,0,0,0,6,0,0,656,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121604,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92382,'QB_GaiUsb803_001','r1f1','bnpc4261300',4261300,451.435089,304.620789,-230.377701,0.008686,1738,0,0,0,8,6,0,0,2082,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121338,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92382,'QB_GaiUsb803_001','r1f1','bnpc4287236',4287236,440.193604,302.150085,-322.382202,-0.000000,1731,0,0,0,1,6,0,0,2076,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120394,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92382,'QB_GaiUsb803_001','r1f1','bnpc4287237',4287237,445.086304,302.182404,-326.958191,-0.000000,1732,0,0,0,1,6,0,0,2077,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120128,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92268,'QB_GaiUsc004_001','r1f1','bnpc4256791',4256791,-895.200989,228.229095,-1.419189,1.314114,1746,0,0,0,0,6,0,0,2083,0,0.010000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116576,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92268,'QB_GaiUsc004_001','r1f1','bnpc4256796',4256796,-909.825684,247.604202,-26.827620,1.118041,1748,0,0,0,0,6,0,0,1293,0,0.010000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116310,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92268,'QB_GaiUsc004_001','r1f1','bnpc4256797',4256797,-907.224670,246.973099,-24.876230,1.476424,1748,0,0,0,0,6,0,0,1293,0,0.010000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116038,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92268,'QB_GaiUsc004_001','r1f1','bnpc4256798',4256798,-915.285828,248.383606,-25.959471,1.569820,1748,0,0,0,0,6,0,0,1293,0,0.010000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115766,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92268,'QB_GaiUsc004_001','r1f1','bnpc4256801',4256801,-875.730774,227.393906,15.352400,-1.143168,1750,0,0,0,8,6,0,0,2085,0,80.000000,40,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115500,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92268,'QB_GaiUsc004_001','r1f1','bnpc4256802',4256802,-872.312500,227.008408,10.299800,-0.964883,1751,0,0,0,8,6,0,0,2086,0,80.000000,39,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115234,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92268,'QB_GaiUsc004_001','r1f1','bnpc4256803',4256803,-868.705505,226.544296,5.188667,-1.227816,1752,0,0,0,8,6,0,0,2086,0,80.000000,39,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114968,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92268,'QB_GaiUsc004_001','r1f1','bnpc4256804',4256804,-815.508118,224.139694,19.061819,-1.186433,1749,0,0,0,0,6,0,0,656,0,0.010000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114702,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92268,'QB_GaiUsc004_001','r1f1','bnpc4256805',4256805,-816.739624,224.114807,28.224890,-1.467415,1749,0,0,0,0,6,0,0,656,0,0.010000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114430,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92268,'QB_GaiUsc004_001','r1f1','bnpc4291248',4291248,-894.768372,228.321503,-3.572971,1.047958,1747,0,0,0,1,6,0,0,2084,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114164,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92268,'QB_GaiUsc004_001','r1f1','bnpc4292887',4292887,-911.802979,248.036301,-23.599770,0.948058,1748,0,0,0,1,6,0,0,1293,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113862,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92268,'QB_GaiUsc004_001','r1f1','bnpc4292891',4292891,-821.304626,224.114807,32.049801,-1.194997,1749,0,0,0,1,6,0,0,656,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113614,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92268,'QB_GaiUsc004_001','r1f1','bnpc4292892',4292892,-819.671387,224.114807,13.606200,-1.114089,1749,0,0,0,1,6,0,0,656,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113342,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264070',4264070,-503.146698,290.576111,157.429306,0.391794,1656,0,0,0,8,6,0,0,1418,0,0.010000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112038,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264069',4264069,-497.334808,287.530609,163.436203,-1.000345,1650,0,0,0,8,6,0,0,619,0,0.010000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111772,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264062',4264062,-498.627808,287.438812,164.907196,-0.949692,1651,0,0,0,8,6,0,0,729,0,0.010000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111506,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264130',4264130,-502.546906,289.639709,159.346802,0.468888,1652,0,0,0,0,6,0,0,2087,0,0.010000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111240,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264135',4264135,-505.421814,290.224304,159.639404,0.649605,1653,0,0,0,0,6,0,0,2088,0,0.010000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110974,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264138',4264138,-500.892303,290.035614,157.168900,0.714290,1653,0,0,0,0,6,0,0,2088,0,0.010000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110702,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264140',4264140,-499.259308,290.296997,155.356995,0.494125,1653,0,0,0,0,6,0,0,2088,0,0.010000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110430,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264377',4264377,-516.350586,272.167206,209.681595,-0.419985,1653,0,0,0,0,6,0,0,2088,0,0.010000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110158,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264378',4264378,-513.691223,272.927002,208.822998,-0.196365,1653,0,0,0,0,6,0,0,2088,0,0.010000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109886,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264380',4264380,-508.877014,273.781586,208.561905,0.159361,1654,0,0,0,0,6,0,0,1810,0,1.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109620,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264381',4264381,-507.265686,273.577789,209.737305,0.225480,1654,0,0,0,0,6,0,0,1810,0,1.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109348,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264382',4264382,-514.662292,274.116089,205.396698,0.021259,1655,0,0,0,0,6,0,0,2089,0,0.010000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109082,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264384',4264384,-507.204712,275.054688,205.946899,0.121726,1657,0,0,0,0,6,0,0,269,0,0.010000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108816,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264403',4264403,-516.311218,272.098907,209.872406,-0.151276,1653,0,0,0,0,6,0,0,2088,0,0.010000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108526,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264404',4264404,-513.654419,272.848907,209.038605,-0.229744,1653,0,0,0,0,6,0,0,2088,0,0.010000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108254,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264406',4264406,-508.890991,273.732208,208.683395,0.131212,1654,0,0,0,0,6,0,0,1810,0,1.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107988,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264407',4264407,-507.264587,273.504913,209.925797,0.109980,1654,0,0,0,0,6,0,0,1810,0,1.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107716,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264408',4264408,-514.801819,274.062103,205.478195,0.043588,1655,0,0,0,0,6,0,0,2089,0,0.010000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107450,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264412',4264412,-506.959198,275.044708,206.069901,0.192185,1657,0,0,0,0,6,0,0,269,0,0.010000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107184,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92464,'QB_GaiUsc408_001','r1f1','bnpc4264411',4264411,-510.100586,275.941315,202.376801,0.230886,1655,0,0,0,0,6,0,0,2089,0,0.010000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106594,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92582,'QB_JOBBRD500_001','r1f1','bnpc4288553',4288553,72.190308,225.940308,385.519196,1.190818,1594,0,0,0,8,6,0,0,1395,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105682,1,0,0,0,0,0,0,648,305); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92582,'QB_JOBBRD500_001','r1f1','bnpc4288556',4288556,119.549301,224.361893,386.977203,-1.451824,1596,0,0,0,1,6,0,0,103,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105416,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92582,'QB_JOBBRD500_001','r1f1','bnpc4288557',4288557,117.370003,223.133499,385.601807,-1.351165,1599,0,0,0,1,6,0,0,174,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105150,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92582,'QB_JOBBRD500_001','r1f1','bnpc4288558',4288558,116.283897,223.924500,388.811493,-1.300757,1599,0,0,0,1,6,0,0,174,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104878,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92582,'QB_JOBBRD500_001','r1f1','bnpc4288578',4288578,109.269600,221.199402,374.738312,-0.989911,1598,0,0,0,1,6,0,0,1901,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104612,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92582,'QB_JOBBRD500_001','r1f1','bnpc4288585',4288585,104.094498,220.782806,376.316101,-0.917178,1599,0,0,0,1,6,0,0,174,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104334,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92582,'QB_JOBBRD500_001','r1f1','bnpc4288586',4288586,104.838699,220.608200,378.980988,-0.917178,1599,0,0,0,1,6,0,0,174,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104062,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92582,'QB_JOBBRD500_001','r1f1','bnpc4288587',4288587,108.533401,220.870407,379.436493,-0.917178,1599,0,0,0,1,6,0,0,174,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103790,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92582,'QB_JOBBRD500_001','r1f1','bnpc4288588',4288588,107.462402,221.805801,371.523499,-0.870501,1596,0,0,0,1,6,0,0,103,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103512,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92582,'QB_JOBBRD500_001','r1f1','bnpc4288589',4288589,112.977699,221.236496,376.109589,-1.154113,1597,0,0,0,1,6,0,0,104,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103258,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92582,'QB_JOBBRD500_001','r1f1','bnpc4288592',4288592,119.899002,221.495697,373.086212,-1.006178,1599,0,0,0,1,6,0,0,174,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102974,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92582,'QB_JOBBRD500_001','r1f1','bnpc4288593',4288593,119.559700,221.425095,376.562805,-1.006178,1599,0,0,0,1,6,0,0,174,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102702,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92582,'QB_JOBBRD500_001','r1f1','bnpc4288594',4288594,121.411903,222.226303,378.608002,-1.006178,1599,0,0,0,1,6,0,0,174,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102430,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92582,'QB_JOBBRD500_001','r1f1','bnpc4288595',4288595,123.986099,221.621597,373.204803,-1.093404,1595,0,0,0,1,6,0,0,436,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102176,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92582,'QB_JOBBRD500_001','r1f1','bnpc4288596',4288596,124.465202,222.254303,376.001007,-1.093404,1597,0,0,0,1,6,0,0,104,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101898,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92841,'QB_JobDrg500_001','r1f1','bnpc4287051',4287051,265.064087,359.100006,-680.205017,-1.440949,1591,0,0,0,8,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100922,1,0,0,0,0,0,0,714,312); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92841,'QB_JobDrg500_001','r1f1','bnpc4287059',4287059,265.061890,359.100006,-679.944580,-0.000000,1593,0,0,0,8,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100344,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92841,'QB_JobDrg500_001','r1f1','bnpc4287079',4287079,264.420288,359.238190,-692.958374,-0.000000,1592,0,0,0,8,6,0,0,0,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100078,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92841,'QB_JobDrg500_001','r1f1','bnpc4287082',4287082,265.386505,359.083405,-667.034180,-0.000000,1592,0,0,0,8,6,0,0,0,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99806,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92841,'QB_JobDrg500_001','r1f1','bnpc4287083',4287083,252.640503,359.291687,-685.674011,-0.000000,1592,0,0,0,8,6,0,0,0,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99534,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92841,'QB_JobDrg500_001','r1f1','bnpc4287085',4287085,254.921204,359.013885,-671.918396,-0.000000,1592,0,0,0,8,6,0,0,0,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99262,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92841,'QB_JobDrg500_001','r1f1','bnpc4287086',4287086,275.230713,359.220612,-687.303101,-0.000000,1592,0,0,0,8,6,0,0,0,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98990,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92841,'QB_JobDrg500_001','r1f1','bnpc4287087',4287087,275.328888,359.020294,-673.035828,-0.000000,1592,0,0,0,8,6,0,0,0,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98718,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293473',4293473,-768.978210,224.996399,28.062370,-1.498232,1557,0,0,0,8,6,0,0,1808,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97732,1,0,0,0,0,0,0,672,310); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293474',4293474,-769.718628,225.400299,25.385860,-1.498232,1558,0,0,0,8,6,0,0,1421,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97466,1,0,0,0,0,0,0,671,309); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293477',4293477,-781.628723,224.532196,32.330471,1.481063,1559,0,0,0,1,6,0,0,1892,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97200,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293479',4293479,-780.236877,225.014694,26.599190,1.333241,1564,0,0,0,1,6,0,0,1897,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96934,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293524',4293524,-861.979370,226.233902,20.163960,0.959283,1562,0,0,0,1,3,0,0,1895,0,8.000000,47,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96668,1,0,0,0,0,0,0,698,390); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293525',4293525,-862.644714,225.648697,18.770830,0.959283,1562,0,0,0,1,3,0,0,1895,0,8.000000,47,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96396,1,0,0,0,0,0,0,698,391); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293526',4293526,-863.571228,226.592697,20.753229,0.959280,1562,0,0,0,1,3,0,0,1895,0,8.000000,47,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96124,1,0,0,0,0,0,0,698,390); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293534',4293534,-868.167603,226.520294,15.145870,0.348458,1562,0,0,0,1,3,0,0,1895,0,8.000000,47,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95852,1,0,0,0,0,0,0,698,391); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293535',4293535,-866.824829,226.008698,9.744259,0.348458,1562,0,0,0,1,3,0,0,1895,0,8.000000,47,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95580,1,0,0,0,0,0,0,698,392); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293536',4293536,-872.684326,227.580902,18.289240,0.348458,1562,0,0,0,1,3,0,0,1895,0,8.000000,47,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95308,1,0,0,0,0,0,0,698,392); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293553',4293553,-905.674805,246.455307,-19.827230,1.265531,1561,0,0,0,8,6,0,0,1894,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95042,1,0,0,0,0,0,0,696,389); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293788',4293788,-770.070496,224.218994,32.603359,0.097126,1558,0,0,0,1,30,0,0,1421,0,6.000000,50,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94610,1,0,0,0,0,0,0,671,309); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293791',4293791,-770.003601,223.992706,34.811298,0.399996,1557,0,0,0,1,30,0,0,1808,0,6.000000,50,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94332,1,0,0,0,0,0,0,672,310); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293994',4293994,-877.545227,227.497192,-5.336348,-0.277589,1562,0,0,0,1,6,0,0,1895,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94084,1,0,0,0,0,0,0,698,390); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293995',4293995,-880.613403,227.740799,-0.289917,-0.277559,1562,0,0,0,1,6,0,0,1895,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93812,1,0,0,0,0,0,0,698,391); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293996',4293996,-885.197815,228.188293,3.055290,-0.277589,1562,0,0,0,1,6,0,0,1895,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93540,1,0,0,0,0,0,0,698,392); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4302195',4302195,-888.575806,229.887405,-13.687380,-1.331755,1558,0,0,0,8,6,0,0,1421,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93110,1,0,0,0,0,30277,0,671,309); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4302196',4302196,-892.745483,228.709900,-7.818122,-0.281394,1557,0,0,0,8,6,0,0,1808,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92832,1,0,0,0,0,30276,0,672,310); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293547',4293547,-871.494080,226.809998,9.408566,0.840970,1560,0,0,0,1,6,0,0,1893,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91972,1,0,0,0,0,0,0,697,393); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293548',4293548,-873.721924,227.125504,12.948600,0.840107,1560,0,0,0,1,6,0,0,1893,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91700,1,0,0,0,0,0,0,697,394); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293999',4293999,-915.339600,229.424896,-8.347504,1.330578,2228,0,0,0,1,6,0,0,2144,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91434,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4293997',4293997,-914.996826,229.408295,-8.279455,-0.000000,2229,0,0,0,3,6,0,0,2145,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91168,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92984,'QB_JobPld500_001','r1f1','bnpc4323575',4323575,-892.729492,229.575806,-11.924190,-0.000000,2201,0,0,0,3,6,0,0,0,0,0.000000,1,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90902,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93129,'QB_JobWar001_001','r1f1','bnpc4298779',4298779,548.516113,348.226105,-747.615784,-1.090984,1699,0,0,0,8,6,0,0,2162,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89152,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93129,'QB_JobWar001_001','r1f1','bnpc4322336',4322336,533.304688,350.665802,-754.287170,-0.000000,1700,0,0,0,8,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88886,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93129,'QB_JobWar001_001','r1f1','bnpc4322337',4322337,538.597778,350.867401,-756.099670,-0.000000,2222,0,0,0,8,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88620,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103457,'QST_BanIxa60x','r1f1','bnpc4891530',4891530,576.225281,282.539215,-308.005096,-0.000000,45,0,0,0,1,6,0,0,0,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84154,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92881,'QST_GaiUsb604','r1f1','bnpc4289901',4289901,52.078979,234.302200,351.399994,0.506988,724,0,0,0,1,6,0,0,1989,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53496,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92881,'QST_GaiUsb604','r1f1','bnpc4289905',4289905,48.538269,235.275101,346.431702,0.505803,725,0,0,0,1,6,0,0,1989,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92887,'QST_GaiUsb607','r1f1','bnpc4290078',4290078,13.499350,208.761200,466.452911,-0.940249,724,0,0,0,1,6,0,0,1989,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52228,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92887,'QST_GaiUsb607','r1f1','bnpc4290079',4290079,5.236343,205.962906,475.251495,1.375331,725,0,0,0,1,6,0,0,1989,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51962,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92887,'QST_GaiUsb607','r1f1','bnpc4290080',4290080,5.126682,206.689194,457.694305,0.443087,726,0,0,0,1,6,0,0,1989,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51696,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92888,'QST_GaiUsb609','r1f1','bnpc4290140',4290140,-32.454479,206.551895,445.848907,1.171467,1911,0,0,0,1,6,0,0,2003,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50882,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92897,'QST_GaiUsb612','r1f1','bnpc4291307',4291307,153.643097,275.623688,-42.069149,0.317778,395,0,0,0,1,6,0,0,784,1,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49344,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92901,'QST_GaiUsb701','r1f1','bnpc4291424',4291424,155.138397,294.911011,-271.015503,-1.132431,1903,0,0,0,1,6,0,0,1990,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48590,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92901,'QST_GaiUsb701','r1f1','bnpc4291425',4291425,150.743805,294.026093,-274.036804,-0.000048,1903,0,0,0,1,6,0,0,1990,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48318,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92901,'QST_GaiUsb701','r1f1','bnpc4291426',4291426,147.564499,292.798889,-269.729401,0.533533,1903,0,0,0,1,6,0,0,1990,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92907,'QST_GaiUsb706','r1f1','bnpc4291561',4291561,432.646301,328.949493,-393.507385,-1.455844,646,0,0,0,1,6,0,0,682,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47060,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92921,'QST_GaiUsb708','r1f1','bnpc4292758',4292758,461.530487,303.437897,-231.525101,0.309629,113,0,0,0,1,6,0,0,660,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45322,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92921,'QST_GaiUsb708','r1f1','bnpc4293100',4293100,455.182800,304.431702,-224.170303,1.505817,114,0,0,0,1,6,0,0,662,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45056,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92923,'QST_GaiUsb709','r1f1','bnpc4292793',4292793,585.096924,322.724396,-287.060211,-0.000000,113,0,0,0,1,6,0,0,660,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44186,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92923,'QST_GaiUsb709','r1f1','bnpc4292794',4292794,578.709717,320.209686,-280.479614,1.348392,114,0,0,0,1,6,0,0,662,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43920,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92940,'QST_GaiUsb801','r1f1','bnpc4293113',4293113,227.919998,353.774811,-543.188416,-0.596710,1904,0,0,0,1,6,0,0,1991,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43458,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92945,'QST_GaiUsb805','r1f1','bnpc4293167',4293167,456.909088,250.012405,-239.675400,0.763397,20,0,0,0,1,6,0,0,110,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41700,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92945,'QST_GaiUsb805','r1f1','bnpc4293168',4293168,497.209595,252.844604,-289.448486,-0.736885,20,0,0,0,1,6,0,0,110,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41428,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92945,'QST_GaiUsb805','r1f1','bnpc4293169',4293169,445.434204,252.670502,-299.297791,0.051014,20,0,0,0,1,6,0,0,110,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41156,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92947,'QST_GaiUsb806','r1f1','bnpc4293179',4293179,674.956421,295.985107,-304.584198,1.107692,2093,0,0,0,1,6,0,0,2009,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40214,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92948,'QST_GaiUsb807','r1f1','bnpc4293186',4293186,193.784698,358.488403,-572.805298,-0.000000,2094,0,0,0,1,6,0,0,637,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39672,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92955,'QST_GaiUsb903','r1f1','bnpc4293210',4293210,-227.324295,271.552704,-36.167690,-0.372689,403,0,0,0,1,6,0,0,1183,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38634,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92955,'QST_GaiUsb903','r1f1','bnpc4293211',4293211,-232.441696,272.325104,-36.295650,0.713737,403,0,0,0,1,6,0,0,1183,0,0.000000,37,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38362,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92956,'QST_GaiUsb904','r1f1','bnpc4293214',4293214,-423.358795,279.134888,92.277382,0.887757,2196,0,0,0,1,6,0,0,2060,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37888,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92959,'QST_GaiUsb910','r1f1','bnpc4293228',4293228,-555.380981,209.518097,-422.299896,-1.440338,387,0,0,0,1,6,0,0,685,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36422,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92959,'QST_GaiUsb910','r1f1','bnpc4293229',4293229,-560.585083,209.156006,-425.817200,0.252291,387,0,0,0,1,6,0,0,685,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36150,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92962,'QST_GaiUsb913','r1f1','bnpc4293236',4293236,-441.640900,211.442398,-223.673096,-0.540017,2090,0,0,0,1,6,0,0,417,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35156,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92962,'QST_GaiUsb913','r1f1','bnpc4293237',4293237,-443.990814,210.772797,-218.485001,1.212534,2090,0,0,0,1,6,0,0,417,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34884,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92962,'QST_GaiUsb913','r1f1','bnpc4293238',4293238,-443.085388,210.772797,-222.025101,0.442017,2090,0,0,0,1,6,0,0,417,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34612,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92962,'QST_GaiUsb913','r1f1','bnpc4293239',4293239,-463.290314,212.565704,-271.929993,0.094214,2090,0,0,0,1,6,0,0,417,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34340,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92962,'QST_GaiUsb913','r1f1','bnpc4293240',4293240,-461.389099,211.000000,-267.958588,-0.921099,2090,0,0,0,1,6,0,0,417,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34068,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92962,'QST_GaiUsb913','r1f1','bnpc4293241',4293241,-461.232788,211.000000,-272.762695,-0.505042,2090,0,0,0,1,6,0,0,417,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33796,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92962,'QST_GaiUsb913','r1f1','bnpc4293242',4293242,-453.115112,217.975098,-287.093201,0.368090,2090,0,0,0,1,6,0,0,417,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33524,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92962,'QST_GaiUsb913','r1f1','bnpc4293243',4293243,-451.452911,217.975098,-287.429688,-0.000048,2090,0,0,0,1,6,0,0,417,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33252,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92962,'QST_GaiUsb913','r1f1','bnpc4293244',4293244,-448.645203,217.975098,-286.392090,-0.812783,2090,0,0,0,1,6,0,0,417,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32980,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92962,'QST_GaiUsb913','r1f1','bnpc4293246',4293246,-409.472992,208.221497,-199.890594,-1.326134,2091,0,0,0,1,6,0,0,678,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32714,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93098,'QST_GaiUsc002','r1f1','bnpc4297103',4297103,-487.849487,149.908600,-298.185394,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31616,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93098,'QST_GaiUsc002','r1f1','bnpc4297104',4297104,-479.537415,149.163300,-301.122589,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31344,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93098,'QST_GaiUsc002','r1f1','bnpc4297106',4297106,-494.947388,151.250595,-302.104309,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31072,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92409,'QST_GaiUsc006','r1f1','bnpc4298775',4298775,-289.143188,263.111206,-113.115196,-0.185231,387,0,0,0,1,6,0,0,637,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28926,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92409,'QST_GaiUsc006','r1f1','bnpc4298776',4298776,-292.717010,262.109589,-113.749496,0.024561,387,0,0,0,1,6,0,0,637,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28654,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93141,'QST_GaiUsc012','r1f1','bnpc4299028',4299028,-940.180420,254.091003,-17.891920,-0.000000,132,0,0,0,1,6,0,0,114,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27418,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93219,'QST_GaiUsc407','r1f1','bnpc4301775',4301775,-693.468628,253.759995,511.291809,-0.000000,305,0,0,0,1,6,0,0,236,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25052,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93219,'QST_GaiUsc407','r1f1','bnpc4301776',4301776,-698.633484,253.759995,510.345886,-0.000000,305,0,0,0,1,6,0,0,236,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24780,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93219,'QST_GaiUsc407','r1f1','bnpc4301778',4301778,-695.376282,253.760300,500.651306,-0.000000,305,0,0,0,1,6,0,0,236,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24508,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93228,'QST_GaiUsc410','r1f1','bnpc4301829',4301829,-607.107300,245.409103,349.035492,-0.858175,62,0,0,0,1,6,0,0,59,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23462,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93228,'QST_GaiUsc410','r1f1','bnpc4301830',4301830,-602.639771,244.562897,345.889008,-1.533497,64,0,0,0,1,6,0,0,61,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23196,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93228,'QST_GaiUsc410','r1f1','bnpc4301839',4301839,-267.012604,224.240005,525.706604,-1.276421,61,0,0,0,1,6,0,0,58,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22930,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93228,'QST_GaiUsc410','r1f1','bnpc4301840',4301840,-269.333588,224.403793,527.138672,-1.051378,63,0,0,0,1,6,0,0,60,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22664,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93228,'QST_GaiUsc410','r1f1','bnpc4301841',4301841,-263.220886,224.205994,529.275696,-1.080530,64,0,0,0,1,6,0,0,61,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22380,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96602,'QST_GaiUse113','r1f1','bnpc4495061',4495061,-369.713898,231.333206,415.997589,1.268454,191,0,0,0,1,6,0,0,691,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20374,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96602,'QST_GaiUse113','r1f1','bnpc4495062',4495062,-357.967896,228.649399,428.455292,-0.356363,191,0,0,0,1,6,0,0,691,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20102,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96602,'QST_GaiUse113','r1f1','bnpc4495064',4495064,-543.659119,235.399994,406.602295,-0.564390,191,0,0,0,1,6,0,0,691,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19830,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96602,'QST_GaiUse113','r1f1','bnpc4495065',4495065,-553.408813,235.399994,387.628296,0.649084,191,0,0,0,1,6,0,0,691,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19558,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102775,'QST_GaiUse318','r1f1','bnpc4867904',4867904,-715.854126,225.698593,-20.388809,1.105955,3119,0,0,0,1,6,0,0,2875,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18336,1,0,0,0,0,0,0,567,214); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102775,'QST_GaiUse318','r1f1','bnpc4867905',4867905,-708.111694,225.172699,-21.986799,0.910022,3120,0,0,0,1,6,0,0,2875,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18070,1,0,0,0,0,0,0,566,225); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93459,'QST_JobDrg300_001','r1f1','bnpc4307738',4307738,525.108826,234.851593,328.358887,-0.055991,1928,0,0,0,1,6,0,0,2029,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15904,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93459,'QST_JobDrg300_001','r1f1','bnpc4307739',4307739,520.028687,234.951599,323.756195,1.531193,1928,0,0,0,1,6,0,0,2029,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15632,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93460,'QST_JobDrg350_001','r1f1','bnpc4307741',4307741,284.549988,237.509995,-315.339996,-0.475842,58,0,0,0,1,6,0,0,2032,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15202,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93462,'QST_JobDrg400_001','r1f1','bnpc4307752',4307752,484.816406,250.495605,-259.721588,-0.752553,1931,0,0,0,1,6,0,0,2034,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14756,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93462,'QST_JobDrg400_001','r1f1','bnpc4307753',4307753,467.834015,248.152695,-258.975586,0.430578,1931,0,0,0,1,6,0,0,2034,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14484,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93462,'QST_JobDrg400_001','r1f1','bnpc4307754',4307754,471.730408,247.562195,-279.895386,0.981400,1931,0,0,0,1,6,0,0,2034,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14212,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93462,'QST_JobDrg400_001','r1f1','bnpc4307755',4307755,481.719788,247.495804,-285.979706,-0.880993,1931,0,0,0,1,6,0,0,2034,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13940,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93462,'QST_JobDrg400_001','r1f1','bnpc4307756',4307756,475.335297,247.499893,-289.677704,-0.000000,11,0,0,0,1,6,0,0,2033,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13674,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93463,'QST_JobDrg450_001','r1f1','bnpc4307767',4307767,602.070618,326.511902,-427.546387,-0.775676,1932,0,0,0,1,6,0,0,2035,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12896,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93463,'QST_JobDrg450_001','r1f1','bnpc4307768',4307768,666.071472,292.590393,-319.206909,0.375348,1933,0,0,0,1,6,0,0,2036,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12630,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93463,'QST_JobDrg450_001','r1f1','bnpc4307769',4307769,590.174072,281.999908,-307.670410,1.355291,1934,0,0,0,1,6,0,0,2037,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12364,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93463,'QST_JobDrg450_001','r1f1','bnpc4307772',4307772,90.080002,373.829987,-668.070007,-1.446394,1929,0,0,0,1,6,0,0,2030,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11978,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93464,'QST_JobDrg451_001','r1f1','bnpc4307786',4307786,81.370003,359.679993,-287.010010,0.323823,1930,0,0,0,1,6,0,0,2031,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11564,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93065,'QST_JobWar_450_001','r1f1','bnpc4295745',4295745,-605.734985,246.834305,418.923096,1.183626,1918,0,0,0,1,6,0,0,2013,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8798,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93070,'QST_JobWar_451_001','r1f1','bnpc4296136',4296136,576.098877,347.886108,-760.846313,-0.992422,1922,0,0,0,1,6,0,0,2017,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8108,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91997,'LVD_bnpc_01','r1fa','bnpc4246138',4246138,-4.867000,-1.838936,5.020000,-1.481262,237,0,0,0,0,6,0,0,1649,0,0.000000,30,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34584,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91997,'LVD_bnpc_01','r1fa','bnpc4246139',4246139,7.907000,-1.805731,6.310000,1.007334,237,0,0,0,0,6,0,0,1649,0,0.000000,30,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34312,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91997,'LVD_bnpc_01','r1fa','bnpc4246140',4246140,-6.369000,-1.830306,-6.360000,-1.481262,237,0,0,0,0,6,0,0,1649,0,0.000000,30,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34040,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91997,'LVD_bnpc_01','r1fa','bnpc4246141',4246141,5.828000,-1.855612,-5.600000,4.055098,237,0,0,0,0,6,0,0,1649,0,0.000000,30,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33768,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91997,'LVD_bnpc_01','r1fa','bnpc4246177',4246177,1.144171,-1.945755,-18.000000,-0.000000,239,0,0,0,0,6,0,0,1644,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33502,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91997,'LVD_bnpc_01','r1fa','bnpc4246290',4246290,-18.705700,-0.947082,-28.606661,-0.000000,238,0,0,0,0,6,0,0,1647,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33236,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91997,'LVD_bnpc_01','r1fa','bnpc4246291',4246291,-22.962111,-0.969582,-28.392599,-0.000000,688,0,0,0,0,6,0,0,1647,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32970,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91997,'LVD_bnpc_01','r1fa','bnpc4246419',4246419,-21.552139,-0.780132,-26.515720,-0.000000,1570,0,0,0,0,6,0,0,1644,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32704,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92063,'LVD_bnpc_02','r1fa','bnpc4261604',4261604,-4.867000,-1.838900,5.020000,-1.481261,240,0,0,0,0,6,0,0,1649,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32322,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92063,'LVD_bnpc_02','r1fa','bnpc4261605',4261605,7.907000,-1.805700,6.310000,1.007334,240,0,0,0,0,6,0,0,1649,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32050,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92063,'LVD_bnpc_02','r1fa','bnpc4261606',4261606,-6.369000,-1.830300,-6.360000,-1.481261,240,0,0,0,0,6,0,0,1649,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31778,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92063,'LVD_bnpc_02','r1fa','bnpc4261607',4261607,5.828000,-1.855600,-5.600000,4.055098,240,0,0,0,0,6,0,0,1649,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31506,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92063,'LVD_bnpc_02','r1fa','bnpc4246418',4246418,-18.315870,-1.038592,-26.613710,-0.000000,1571,0,0,0,0,6,0,0,1644,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31240,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92063,'LVD_bnpc_02','r1fa','bnpc4261625',4261625,-18.405701,-0.969582,-28.306660,-0.000000,241,0,0,0,0,6,0,0,1647,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30974,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92063,'LVD_bnpc_02','r1fa','bnpc4261626',4261626,-22.662109,-0.996960,-28.092600,-0.000000,1534,0,0,0,0,6,0,0,1647,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30708,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92063,'LVD_bnpc_02','r1fa','bnpc4261627',4261627,-21.252140,-0.817303,-26.215719,-0.000000,1572,0,0,0,0,6,0,0,1644,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30442,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92063,'LVD_bnpc_02','r1fa','bnpc4261629',4261629,-21.414070,1.523027,-26.817900,-0.000000,1535,0,0,0,0,6,0,0,1648,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30176,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92063,'LVD_bnpc_02','r1fa','bnpc4261631',4261631,-24.530930,1.801132,-24.986460,-0.000000,1566,0,0,0,0,6,0,0,1646,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29910,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92063,'LVD_bnpc_02','r1fa','bnpc4261632',4261632,-23.328560,1.094606,-23.104679,-0.000000,1567,0,0,0,0,6,0,0,1645,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29644,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92063,'LVD_bnpc_02','r1fa','bnpc4261623',4261623,1.144200,-1.945800,-18.000000,0.000000,242,0,0,0,0,6,0,0,1644,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29378,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92410,'LVD_bnpc_03','r1fa','bnpc4261645',4261645,-7.000000,-1.871653,7.000000,-1.481260,243,0,0,0,0,6,0,0,1649,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92410,'LVD_bnpc_03','r1fa','bnpc4261646',4261646,7.000000,-1.823288,7.000000,1.007334,243,0,0,0,0,6,0,0,1649,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28712,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92410,'LVD_bnpc_03','r1fa','bnpc4261647',4261647,-7.000000,-1.825691,-7.000000,-1.481260,243,0,0,0,0,6,0,0,1649,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28440,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92410,'LVD_bnpc_03','r1fa','bnpc4261648',4261648,7.000000,-1.851377,-7.000000,-0.913505,243,0,0,0,0,6,0,0,1649,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28168,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92410,'LVD_bnpc_03','r1fa','bnpc4261649',4261649,-18.015869,-1.174013,-26.313709,-0.000000,1573,0,0,0,0,6,0,0,1644,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27902,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92410,'LVD_bnpc_03','r1fa','bnpc4261650',4261650,0.000000,-2.033095,-18.000000,-0.000000,245,0,0,0,0,6,0,0,1644,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27636,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92410,'LVD_bnpc_03','r1fa','bnpc4261651',4261651,-18.105700,-0.992081,-28.006660,-0.000000,244,0,0,0,0,6,0,0,1647,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27370,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92410,'LVD_bnpc_03','r1fa','bnpc4261652',4261652,-22.362110,-1.034364,-27.792601,-0.000000,1536,0,0,0,0,6,0,0,2091,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27104,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92410,'LVD_bnpc_03','r1fa','bnpc4261653',4261653,-20.952141,-0.853879,-25.915720,-0.000000,1574,0,0,0,0,6,0,0,1644,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92410,'LVD_bnpc_03','r1fa','bnpc4261654',4261654,-21.114071,1.387607,-26.517900,-0.000000,1537,0,0,0,0,6,0,0,1648,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26572,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92410,'LVD_bnpc_03','r1fa','bnpc4261655',4261655,-24.230930,1.663378,-24.686460,-0.000000,1568,0,0,0,0,6,0,0,1646,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26306,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92410,'LVD_bnpc_03','r1fa','bnpc4261656',4261656,-23.028561,0.956851,-22.804680,-0.000000,1569,0,0,0,0,6,0,0,1645,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26040,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92410,'LVD_bnpc_03','r1fa','bnpc4406566',4406566,0.033980,-1.803072,-0.779799,-0.000000,434,0,0,0,0,6,0,0,1644,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25774,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92410,'LVD_bnpc_03','r1fa','bnpc4527499',4527499,0.947333,-1.798869,0.131422,-0.000000,434,0,0,0,0,6,0,0,1646,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25502,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92410,'LVD_bnpc_03','r1fa','bnpc4527500',4527500,-0.905001,-1.798869,0.131422,-0.000000,434,0,0,0,0,6,0,0,1645,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25230,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98594,'LVD_bnpc_01','r1fb','bnpc4635081',4635081,-7.773800,0.000000,-2.802737,-1.570451,2826,0,0,0,1,6,0,0,2668,0,0.000000,50,0,120,1,0,0,10,99,8,0,1,0,0,0,0.000000,1.000000,12252,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98594,'LVD_bnpc_01','r1fb','bnpc4635082',4635082,-7.629676,0.000000,1.957764,-1.570451,2826,0,0,0,1,6,0,0,2668,0,0.000000,50,0,120,1,0,0,10,99,8,0,1,0,0,0,0.000000,1.000000,11980,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98594,'LVD_bnpc_01','r1fb','bnpc4635084',4635084,40.315090,-7.000000,0.157485,-1.570451,2826,0,0,0,0,6,0,0,2668,0,0.000000,50,0,120,1,0,0,11,99,8,0,1,0,0,0,0.000000,1.000000,11708,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98594,'LVD_bnpc_01','r1fb','bnpc4635085',4635085,45.258869,-7.000000,-2.667388,-1.570451,2827,0,0,0,0,6,0,0,2669,0,0.000000,50,0,120,1,0,0,11,99,8,0,1,0,0,0,0.000000,1.000000,11442,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98594,'LVD_bnpc_01','r1fb','bnpc4635088',4635088,86.752617,-7.000000,0.368643,-1.570451,2826,0,0,0,0,6,0,0,2668,0,0.000000,50,0,120,1,0,0,12,99,8,0,1,0,0,0,0.000000,1.000000,11164,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98594,'LVD_bnpc_01','r1fb','bnpc4635089',4635089,81.714943,-7.000000,-2.735896,-1.570451,2827,0,0,0,0,6,0,0,2669,0,0.000000,50,0,120,1,0,0,12,99,8,0,1,0,0,0,0.000000,1.000000,10898,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98594,'LVD_bnpc_01','r1fb','bnpc4635090',4635090,81.717140,-7.000000,3.645530,-1.570451,2827,0,0,0,0,6,0,0,2669,0,0.000000,50,0,120,1,0,0,12,99,8,0,1,0,0,0,0.000000,1.000000,10626,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98594,'LVD_bnpc_01','r1fb','bnpc4635083',4635083,-4.349111,0.000000,-0.537839,-1.570451,2827,0,0,0,0,6,0,0,2669,0,0.000000,50,0,120,1,0,0,10,99,8,0,1,0,0,0,0.000000,1.000000,10354,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98594,'LVD_bnpc_01','r1fb','bnpc4635086',4635086,44.728580,-7.000000,3.766137,-1.570451,2827,0,0,0,0,6,0,0,2669,0,0.000000,50,0,120,1,0,0,11,99,8,0,1,0,0,0,0.000000,1.000000,10082,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98502,'LVD_boss_01','r1fb','bnpc4630943',4630943,132.175293,-5.000000,-0.434507,1.570796,2823,0,0,0,0,6,0,0,2665,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9676,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98502,'LVD_boss_01','r1fb','bnpc4635053',4635053,129.321899,-5.000000,-4.245176,-1.570796,2824,0,0,0,0,6,0,0,2666,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9046,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98502,'LVD_boss_01','r1fb','bnpc4635054',4635054,129.324493,-5.000000,3.398318,-1.570451,2930,0,0,0,0,6,0,0,2665,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,5972,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98502,'LVD_boss_01','r1fb','bnpc4651256',4651256,128.233398,-5.000000,-4.260827,-0.000000,2931,0,0,0,0,6,0,0,2665,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,5394,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98593,'LVD_mboss_01','r1fb','bnpc4635067',4635067,-49.243591,2.000000,-0.113708,-1.570451,2823,0,0,0,0,6,0,0,2665,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,4592,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98593,'LVD_mboss_01','r1fb','bnpc4635068',4635068,-52.840260,2.000000,-3.918317,-1.570796,2824,0,0,0,0,6,0,0,2666,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,4326,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98593,'LVD_mboss_01','r1fb','bnpc4635069',4635069,-55.286400,2.000000,-0.140135,-0.000000,2825,0,0,0,0,6,0,0,2667,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,4072,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100359,'LVD_bnpc_01','r1fc','bnpc4738615',4738615,0.150063,0.000000,-8.818598,-0.000000,3100,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10436,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100359,'LVD_bnpc_01','r1fc','bnpc4738619',4738619,0.418407,0.000000,-4.938508,-0.000000,3103,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10170,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100359,'LVD_bnpc_01','r1fc','bnpc4738618',4738618,-4.950739,0.000000,-4.938508,-0.000000,3104,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9904,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100359,'LVD_bnpc_01','r1fc','bnpc4738621',4738621,5.304933,0.000000,-4.938508,-0.000000,3105,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9638,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100359,'LVD_bnpc_01','r1fc','bnpc4772231',4772231,-2.505933,0.000000,-1.998298,-0.000000,3106,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9372,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100359,'LVD_bnpc_01','r1fc','bnpc4772232',4772232,1.531882,0.000000,-1.997127,-0.000000,3107,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9106,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100369,'LVD_bnpc_02','r1fc','bnpc4738825',4738825,0.150063,0.000000,-8.818598,-0.000000,2,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,8748,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100369,'LVD_bnpc_02','r1fc','bnpc4738826',4738826,-4.950739,0.000000,-4.938508,-0.000000,2,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,8476,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100369,'LVD_bnpc_02','r1fc','bnpc4738827',4738827,0.418407,0.000000,-4.938508,-0.000000,2,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,8204,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100369,'LVD_bnpc_02','r1fc','bnpc4738828',4738828,5.304933,0.000000,-4.938508,-0.000000,2,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,7932,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100369,'LVD_bnpc_02','r1fc','bnpc4772235',4772235,-3.035603,-0.000000,-2.423511,-0.000000,3106,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7648,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100369,'LVD_bnpc_02','r1fc','bnpc4772236',4772236,1.964743,0.000000,-2.874357,-0.000000,3107,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7382,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4000636',4000636,144.629501,-9.400391,130.287201,-0.000048,1553,0,0,0,0,3,0,0,1656,0,0.000000,44,0,120,1,0,8,0,24,2,0,1,0,1,0,0.000000,1.000000,57876,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4000635',4000635,144.626404,-9.121642,132.279694,0.024472,1553,0,0,0,0,3,0,0,1656,0,0.000000,44,0,120,1,0,8,0,24,2,0,1,0,1,0,0.000000,1.000000,57604,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4000637',4000637,41.407490,8.449408,202.994400,0.183126,1553,0,0,0,1,6,0,0,1656,0,0.000000,44,0,120,1,0,2,0,32,3,0,1,0,1,0,0.000000,1.000000,57332,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4000446',4000446,81.376343,0.992321,169.438095,-0.000335,1552,0,0,0,1,6,0,0,1655,0,0.000000,44,0,120,1,0,7,0,48,3,0,1,0,1,0,0.000000,-5.000000,57066,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4000472',4000472,88.468079,0.057967,132.622696,-0.000335,1552,0,0,0,1,6,0,0,1655,0,0.000000,44,0,120,1,0,6,0,48,2,0,1,0,1,0,-3.000000,1.000000,56794,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4000470',4000470,73.508911,0.564481,129.899994,-0.000527,1552,0,0,0,1,6,0,0,1655,0,0.000000,44,0,120,1,0,6,0,48,2,0,1,0,1,0,-3.000000,1.000000,56522,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4000416',4000416,1.628299,4.745027,240.772095,-0.000335,1549,0,0,0,1,6,0,0,1657,0,0.000000,44,0,120,1,0,1,0,24,10,0,1,0,1,0,0.000000,1.000000,56256,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4000422',4000422,36.087521,7.858337,209.063797,-0.000144,1549,0,0,0,1,6,0,0,1657,0,0.000000,44,0,120,1,0,2,0,32,3,0,1,0,1,0,-3.000000,1.000000,55984,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4000417',4000417,3.910811,5.714906,243.669403,-0.000335,1549,0,0,0,1,6,0,0,1657,0,0.000000,44,0,120,1,0,1,0,24,10,0,1,0,1,0,0.000000,1.000000,55712,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4000420',4000420,42.496342,7.339539,207.659897,0.408621,1549,0,0,0,1,6,0,0,1657,0,0.000000,44,0,120,1,0,2,0,32,3,0,1,0,1,0,-3.000000,1.000000,55440,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4000475',4000475,87.288841,-0.250022,175.262100,-0.000335,1549,0,0,0,1,6,0,0,1657,0,0.000000,44,0,120,1,0,7,0,48,3,0,1,0,1,0,0.000000,1.000000,55168,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4000401',4000401,-34.175522,-8.053716,266.261688,1.200832,1540,0,0,0,0,6,0,0,1397,0,0.001000,44,0,120,1,0,113,0,0,0,0,1,0,0,0,0.000000,1.000000,54902,1,1,0,0,0,0,4235920,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4321601',4321601,-9.933039,9.868011,169.408096,-0.000335,1550,0,0,0,1,6,0,0,2152,0,0.000000,44,0,120,1,0,0,0,24,3,0,1,0,1,0,0.000000,1.000000,48084,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4321686',4321686,137.737900,-7.791891,142.853806,-0.000335,1552,0,0,0,2,6,0,0,1655,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,-3.000000,1.000000,47794,1,3,2000,0,0,0,4235924,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4321690',4321690,67.490601,7.766785,239.215607,-0.000335,1550,0,0,0,1,6,0,0,2152,0,0.000000,44,0,120,1,0,0,0,24,3,0,1,0,0,0,0.000000,1.000000,47540,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4333770',4333770,107.626404,-1.854376,177.233505,-0.000335,1550,0,0,0,1,6,0,0,2152,0,0.000000,44,0,120,1,0,7,0,48,3,0,1,0,0,0,0.000000,1.000000,47268,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4333771',4333771,113.487099,-10.743400,121.450203,-0.000335,1549,0,0,0,2,6,0,0,1657,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46984,1,3,2000,0,0,30246,4235924,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4333772',4333772,125.230698,-7.309082,128.007797,-0.000335,1550,0,0,0,1,6,0,0,2152,0,0.000000,44,0,120,1,0,3,0,32,3,0,1,0,1,0,0.000000,1.000000,46724,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4333773',4333773,122.179001,-14.389340,127.061897,0.024544,1553,0,0,0,1,3,0,0,1656,0,0.000000,44,0,120,1,0,3,0,32,3,0,1,0,1,0,0.000000,1.000000,46428,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91729,'LVD_BNPC_01','r1r1','bnpc4333941',4333941,125.030296,-14.255640,125.929398,-0.000335,1549,0,0,0,1,6,0,0,1657,0,0.000000,44,0,120,1,0,3,0,32,3,0,1,0,1,0,0.000000,1.000000,46168,1,3,2000,0,0,30246,4235924,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4236343',4236343,-166.826904,-33.274071,50.978561,-0.000048,1547,0,0,0,3,6,0,0,2154,0,0.000000,44,0,120,1,0,0,3,0,0,0,1,0,0,0,0.000000,1.000000,45730,1,0,18,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4236342',4236342,-219.287399,-17.135990,20.981079,-0.000048,1547,0,0,0,3,6,0,0,2154,0,0.000000,44,0,120,1,0,0,3,0,0,0,1,0,0,0,0.000000,1.000000,45458,1,0,18,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4236345',4236345,-166.369095,-33.133209,40.491562,-0.000048,1547,0,0,0,3,6,0,0,2154,0,0.000000,44,0,120,1,0,0,3,0,0,0,1,0,0,0,0.000000,1.000000,45186,1,0,18,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4236330',4236330,-262.915985,-24.743231,-36.669750,-0.000048,1547,0,0,0,3,6,0,0,2154,0,0.000000,44,0,120,1,0,0,3,0,0,0,1,0,0,0,0.000000,1.000000,44914,1,0,18,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4236340',4236340,-237.641495,-47.675850,-0.476017,-0.000048,1547,0,0,0,3,6,0,0,2154,0,0.000000,44,0,120,1,0,0,3,0,0,0,1,0,0,0,0.000000,1.000000,44642,1,0,18,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4236337',4236337,-240.916504,-22.897470,-32.599701,-0.000048,1547,0,0,0,3,6,0,0,2154,0,0.000000,44,0,120,1,0,0,3,0,0,0,1,0,0,0,0.000000,1.000000,44370,1,0,18,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4236334',4236334,-262.000000,-25.672649,-17.989130,-0.000000,1547,0,0,0,3,6,0,0,2154,0,0.000000,44,0,120,1,0,0,3,0,0,0,1,0,0,0,0.000000,1.000000,44098,1,0,18,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4236346',4236346,-134.000198,-24.279181,10.151040,-0.000048,1547,0,0,0,3,6,0,0,2154,0,0.000000,44,0,120,1,0,0,3,0,0,0,1,0,0,0,0.000000,1.000000,43826,1,0,18,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4002265',4002265,-204.791306,-17.746281,-43.595089,-0.000335,1550,0,0,0,1,6,0,0,2152,0,0.000000,44,0,120,1,0,20,0,32,2,0,1,0,1,0,0.000000,1.000000,43548,1,3,0,0,0,0,4329619,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4001140',4001140,-218.280304,-49.515560,14.419740,-0.000048,1550,0,0,0,1,6,0,0,2152,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43276,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4002230',4002230,-220.538696,-18.020941,19.150089,-0.000048,1551,0,0,0,1,3,0,0,1654,0,0.000000,44,0,120,1,0,22,0,32,3,0,1,0,1,0,0.000000,1.000000,43016,1,3,0,0,0,0,4329689,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4000493',4000493,-208.453598,-18.081970,-47.989620,-0.659334,1556,0,0,0,1,6,0,0,1653,0,1.200000,44,0,120,1,0,20,0,32,2,0,1,0,1,0,0.000000,1.000000,42750,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4000438',4000438,-213.183807,-15.732120,3.311157,-1.267567,1556,0,0,0,9,6,0,0,1653,0,1.200000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,-2.000000,42478,1,3,2000,0,0,30246,4329689,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4321692',4321692,-237.948303,-49.142311,-12.183710,-0.000335,1552,0,0,0,1,6,0,0,1655,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,-3.000000,1.000000,42170,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4321697',4321697,-245.075195,-48.193630,-0.208480,-0.000335,1552,0,0,0,1,6,0,0,1655,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,-3.000000,1.000000,41898,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4321740',4321740,-138.536697,-25.314760,13.626220,-0.000335,1551,0,0,0,1,6,0,0,1654,0,0.000000,44,0,120,1,0,24,0,32,3,0,1,0,1,0,0.000000,1.000000,41656,1,3,0,0,0,0,4329785,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4321741',4321741,-127.397598,-24.948549,13.015930,-1.151510,1554,0,0,0,1,6,0,0,1652,0,0.000000,44,0,120,1,0,24,0,32,3,0,1,0,1,0,0.000000,1.000000,41396,1,3,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4321780',4321780,-214.068802,-16.037291,-2.700867,-0.000335,1552,0,0,0,1,6,0,0,1655,0,0.000000,44,0,120,1,0,21,0,32,2,0,1,0,1,0,-3.000000,1.000000,41082,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4333774',4333774,-209.369095,-14.847050,-2.182068,-0.000335,1549,0,0,0,1,6,0,0,1657,0,0.000000,44,0,120,1,0,21,0,32,2,0,1,0,1,0,0.000000,1.000000,40560,1,3,2000,0,0,30246,4235924,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4333795',4333795,-242.206497,-49.301998,-6.332520,1.514253,1556,0,0,0,9,6,0,0,1653,0,1.200000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,-2.000000,40318,1,3,2000,0,0,30246,4329689,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4333798',4333798,-222.064606,-18.783939,22.873230,-0.000335,1549,0,0,0,1,6,0,0,1657,0,0.000000,44,0,120,1,0,22,0,32,3,0,1,0,1,0,0.000000,1.000000,40016,1,3,2000,0,0,30246,4235924,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4333799',4333799,-225.940399,-18.814390,19.668819,-0.000335,1549,0,0,0,1,6,0,0,1657,0,0.000000,44,0,120,1,0,22,0,32,3,0,1,0,1,0,0.000000,1.000000,39744,1,3,2000,0,0,30246,4235924,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4333800',4333800,-164.927399,-33.209530,44.929352,-0.000048,1551,0,0,0,1,6,0,0,1654,0,0.000000,44,0,120,1,0,23,0,32,3,0,1,0,1,0,0.000000,1.000000,39496,1,3,0,0,0,0,4329689,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4333801',4333801,-166.441498,-33.497131,48.671558,-0.000335,1549,0,0,0,1,6,0,0,1657,0,0.000000,44,0,120,1,0,23,0,32,3,0,1,0,1,0,0.000000,1.000000,39200,1,3,2000,0,0,30246,4235924,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4333802',4333802,-169.521896,-34.219391,47.985451,-0.000335,1550,0,0,0,1,6,0,0,2152,0,0.000000,44,0,120,1,0,23,0,32,3,0,1,0,1,0,0.000000,1.000000,38940,1,3,0,0,0,0,4329619,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4333803',4333803,-137.101196,-25.405910,17.429590,0.024544,1553,0,0,0,1,6,0,0,1656,0,0.000000,44,0,120,1,0,24,0,32,3,0,1,0,1,0,0.000000,1.000000,38644,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4333942',4333942,-175.692596,-16.081390,-3.028740,-0.000335,1552,0,0,0,1,6,0,0,1655,0,0.000000,44,0,120,1,0,25,0,32,2,0,1,0,1,0,-3.000000,1.000000,38378,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91730,'LVD_BNPC_02','r1r1','bnpc4333943',4333943,-177.513596,-14.334530,7.694996,-0.000335,1550,0,0,0,1,6,0,0,2152,0,0.000000,44,0,120,1,0,25,0,32,2,0,1,0,1,0,0.000000,1.000000,38124,1,3,0,0,0,0,4329619,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4236603',4236603,71.885246,-36.934731,-204.155197,-0.000048,1548,0,0,0,3,6,0,0,2154,0,0.000000,44,0,120,1,0,0,3,0,0,0,1,0,0,0,0.000000,1.000000,37718,1,0,18,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4236602',4236602,64.840607,-38.260960,-171.659897,-0.000048,1548,0,0,0,3,6,0,0,2154,0,0.000000,44,0,120,1,0,0,3,0,0,0,1,0,0,0,0.000000,1.000000,37446,1,0,18,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4236604',4236604,104.264801,-37.588291,-159.882095,-0.000048,1548,0,0,0,3,6,0,0,2154,0,0.000000,44,0,120,1,0,0,3,0,0,0,1,0,0,0,0.000000,1.000000,37174,1,0,18,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4236599',4236599,26.756210,-23.062281,-107.432198,-0.000048,1547,0,0,0,3,6,0,0,2154,0,0.000000,44,0,120,1,0,0,3,0,0,0,1,0,0,0,0.000000,1.000000,36878,1,0,18,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4236601',4236601,22.468870,-21.037550,-114.238098,-0.000048,1547,0,0,0,3,6,0,0,2154,0,0.000000,44,0,120,1,0,0,3,0,0,0,1,0,0,0,0.000000,1.000000,36606,1,0,18,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4236596',4236596,-12.905530,-20.460190,-147.539093,-0.000048,1547,0,0,0,3,6,0,0,2154,0,0.000000,44,0,120,1,0,0,3,0,0,0,1,0,0,0,0.000000,1.000000,36334,1,0,18,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4236592',4236592,-48.131111,-18.927719,-177.963806,-0.000048,1547,0,0,0,3,6,0,0,2154,0,0.000000,44,0,120,1,0,0,3,0,0,0,1,0,0,0,0.000000,1.000000,36062,1,0,18,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4236597',4236597,-19.347429,-15.715690,-181.001602,-0.000048,1547,0,0,0,3,6,0,0,2154,0,0.000000,44,0,120,1,0,0,3,0,0,0,1,0,0,0,0.000000,1.000000,35790,1,0,18,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4002652',4002652,-22.049320,-16.617130,-178.454300,-0.000527,1550,0,0,0,1,6,0,0,2152,0,0.000000,44,0,120,1,0,31,0,32,2,0,1,0,1,0,0.000000,1.000000,35512,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4002653',4002653,-17.807310,-17.105410,-175.951797,-0.000527,1551,0,0,0,1,6,0,0,1654,0,0.000000,44,0,120,1,0,31,0,32,2,0,1,0,1,0,0.000000,1.000000,35252,1,3,0,0,0,0,4329691,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4238885',4238885,47.165649,-31.784550,-124.132202,-0.850318,1555,0,0,0,5,6,0,0,1449,0,0.000000,44,0,120,1,0,42,3,32,3,0,1,0,1,0,0.000000,1.000000,35004,1,3,0,0,0,0,4329692,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4238883',4238883,3.893133,-17.024031,-143.694199,-0.689343,1555,0,0,0,5,6,0,0,1449,0,0.000000,44,0,120,1,0,40,1,32,2,0,1,0,1,0,0.000000,-2.000000,34732,1,3,0,0,0,0,4329691,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4002659',4002659,1.527614,-17.552820,-143.999405,-1.155105,1555,0,0,0,5,6,0,0,1449,0,0.000000,44,0,120,1,0,40,1,32,2,0,1,1,1,0,0.000000,-2.000000,34460,1,3,0,0,0,0,4329691,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4002658',4002658,50.827759,-31.967649,-124.254204,-0.822897,1555,0,0,0,5,6,0,0,1449,0,0.000000,44,0,120,1,0,42,3,32,3,0,1,0,1,0,0.000000,1.000000,34188,1,3,0,0,0,0,4329692,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4002663',4002663,15.640440,-19.333250,-172.259201,-1.442395,1555,0,0,0,5,6,0,0,1449,0,0.000000,44,0,120,1,0,41,2,32,2,0,1,0,1,0,0.000000,1.000000,33916,1,3,0,0,0,0,4333810,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4002660',4002660,11.795230,-20.065670,-175.066803,-0.976154,1555,0,0,0,5,6,0,0,1449,0,0.000000,44,0,120,1,0,41,2,32,2,0,1,1,1,0,0.000000,1.000000,33644,1,3,0,0,0,0,4333810,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4002661',4002661,49.423950,-30.899540,-121.446602,-1.053334,1555,0,0,0,5,6,0,0,1449,0,0.000000,44,0,120,1,0,42,3,32,3,0,1,1,1,0,0.000000,1.000000,33372,1,3,0,0,0,0,4329692,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4333805',4333805,-12.222530,-21.225340,-144.792892,-1.151510,1554,0,0,0,1,6,0,0,1652,0,0.000000,44,0,120,1,0,30,0,32,2,0,1,0,1,0,0.000000,1.000000,32784,1,3,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4333806',4333806,-17.532650,-21.164310,-144.853897,-0.000527,1551,0,0,0,1,6,0,0,1654,0,0.000000,44,0,120,1,0,30,0,32,2,0,1,0,1,0,0.000000,1.000000,32500,1,3,0,0,0,0,4329691,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4333807',4333807,24.627270,-22.475981,-112.910698,-1.151510,1554,0,0,0,1,6,0,0,1652,0,0.000000,44,0,120,1,0,32,0,32,2,0,1,0,1,0,0.000000,1.000000,32240,1,3,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91731,'LVD_BNPC_03','r1r1','bnpc4333808',4333808,24.927271,-22.756651,-108.795898,-1.151510,1554,0,0,0,1,6,0,0,1652,0,0.000000,44,0,120,1,0,32,0,32,2,0,1,0,1,0,0.000000,1.000000,31968,1,3,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91732,'LVD_BNPC_boss_01','r1r1','bnpc4002674',4002674,86.628220,-39.069370,-176.692795,-0.933673,1546,0,0,0,0,6,0,0,1396,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30810,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91732,'LVD_BNPC_boss_01','r1r1','bnpc4234652',4234652,49.864941,-14.586390,75.207100,0.746344,1541,0,0,0,0,6,0,0,1397,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30544,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91732,'LVD_BNPC_boss_01','r1r1','bnpc4257047',4257047,58.001991,-14.718480,74.382172,-0.000000,1542,0,0,0,0,6,0,0,1497,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30278,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91732,'LVD_BNPC_boss_01','r1r1','bnpc4257050',4257050,42.848412,-14.617630,75.425034,-0.000000,1543,0,0,0,0,6,0,0,1498,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30012,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91732,'LVD_BNPC_boss_01','r1r1','bnpc4257123',4257123,-68.147781,-23.893730,-50.972279,-0.704156,1545,0,0,0,0,6,0,0,1499,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29746,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91732,'LVD_BNPC_boss_01','r1r1','bnpc4267763',4267763,-66.458054,-23.979210,-50.431091,-0.704252,1545,0,0,0,0,6,0,0,1499,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26978,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91732,'LVD_BNPC_boss_01','r1r1','bnpc4267764',4267764,-68.406250,-24.002501,-48.569462,-1.206351,1545,0,0,0,0,6,0,0,1499,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26706,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91732,'LVD_BNPC_boss_01','r1r1','bnpc4267765',4267765,-65.230583,-23.937241,-48.652679,-1.394715,1545,0,0,0,0,6,0,0,1499,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26434,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91732,'LVD_BNPC_boss_01','r1r1','bnpc4002250',4002250,-64.577362,-24.033020,-49.515560,-0.749601,1544,0,0,0,0,6,0,0,1415,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26168,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91732,'LVD_BNPC_boss_01','r1r1','bnpc4290060',4290060,84.844704,-38.781490,-183.759399,-0.000000,1716,0,0,0,3,6,0,0,2153,0,0.000000,44,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21846,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81485,'LVD_bnpc_01','r1r2','bnpc3748961',3748961,-411.459503,-33.296501,-126.848297,1.325284,943,0,0,0,0,0,0,0,1532,0,0.000000,47,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,61004,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81485,'LVD_bnpc_01','r1r2','bnpc4021158',4021158,27.511959,-9.256967,2.822876,1.365024,1471,0,0,0,0,0,0,0,1534,0,0.000000,47,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60738,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81485,'LVD_bnpc_01','r1r2','bnpc3757607',3757607,-169.176804,-29.738070,-141.863205,1.541674,1470,0,0,0,0,0,0,0,1533,0,0.000000,47,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60472,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81485,'LVD_bnpc_01','r1r2','bnpc4017850',4017850,-37.583012,-17.227421,-95.658867,0.332543,1472,0,0,0,1,5,0,0,1538,0,0.000000,47,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60206,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81485,'LVD_bnpc_01','r1r2','bnpc3748957',3748957,-341.920990,-30.383989,-151.140701,0.065531,1472,0,0,0,1,5,0,0,1538,0,0.000000,47,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59934,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81485,'LVD_bnpc_01','r1r2','bnpc4258859',4258859,-337.625885,-33.855572,-119.882599,0.035647,1472,0,0,0,1,5,0,0,1538,0,0.000000,47,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59662,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81485,'LVD_bnpc_01','r1r2','bnpc4249496',4249496,-40.299068,-16.495001,-102.738998,-0.000048,573,0,0,0,0,0,0,0,1536,0,0.000000,47,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59396,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81485,'LVD_bnpc_01','r1r2','bnpc4249497',4249497,-334.035309,-33.065979,-126.634598,-0.000048,573,0,0,0,0,0,0,0,1536,0,0.000000,47,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59124,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81485,'LVD_bnpc_01','r1r2','bnpc4030329',4030329,-395.345703,-32.608822,-132.634399,-0.000048,1468,0,0,0,0,0,0,0,1536,0,0.000000,47,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,58858,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81485,'LVD_bnpc_01','r1r2','bnpc4249186',4249186,-393.278900,-32.653660,-124.833900,-0.000000,1469,0,0,0,0,0,0,0,1537,0,0.000000,47,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,58592,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81485,'LVD_bnpc_01','r1r2','bnpc4249491',4249491,-37.694160,-16.546160,-104.030098,-0.000048,1473,0,0,0,1,5,0,0,1535,0,30.000000,47,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,58326,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81485,'LVD_bnpc_01','r1r2','bnpc4249492',4249492,-334.554108,-31.967649,-137.682205,-0.000048,1473,0,0,0,1,5,0,0,1535,0,30.000000,47,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,58054,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81485,'LVD_bnpc_01','r1r2','bnpc4030332',4030332,-394.919098,-32.619869,-124.696404,-0.000000,1467,0,0,0,1,5,0,0,1535,0,30.000000,47,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57788,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4331308',4331308,134.111496,-8.926575,20.248659,-0.699075,1476,0,0,0,1,5,0,0,1541,0,0.000000,47,0,120,1,0,101,0,20,1,0,1,0,1,0,0.000000,1.000000,57366,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4331307',4331307,137.224396,-9.231750,22.049259,-0.735699,1476,0,0,0,1,5,0,0,1541,0,0.000000,47,0,120,1,0,101,0,20,1,0,1,0,1,0,0.000000,1.000000,57094,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4258837',4258837,97.611938,-9.201294,32.333858,1.132958,1476,0,0,0,1,5,0,0,1541,0,0.000000,47,0,120,1,0,102,0,20,2,0,1,0,1,0,0.000000,1.000000,56822,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4258838',4258838,92.942627,-9.109680,30.716431,1.162200,1476,0,0,0,1,5,0,0,1541,0,0.000000,47,0,120,1,0,102,0,20,2,0,1,0,1,0,0.000000,1.000000,56550,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4258836',4258836,94.316040,-9.109680,35.416142,1.364592,1476,0,0,0,1,5,0,0,1541,0,0.000000,47,0,120,1,0,102,0,20,2,0,1,0,1,0,0.000000,1.000000,56278,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4258841',4258841,76.972412,-8.094756,11.989300,0.625933,1477,0,0,0,1,5,0,0,1542,0,0.000000,47,0,120,1,0,103,0,20,1,0,1,0,1,0,0.000000,1.000000,56012,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4026426',4026426,80.857422,-7.980469,14.419740,1.272126,1477,0,0,0,1,5,0,0,1542,0,0.000000,47,0,120,1,0,103,0,20,1,0,1,0,1,0,0.000000,1.000000,55740,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4258840',4258840,124.132103,-8.590881,-10.574520,-0.488144,1477,0,0,0,1,5,0,0,1542,0,0.000000,47,0,120,1,0,104,0,20,1,0,1,0,1,0,0.000000,1.000000,55468,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc3760248',3760248,128.099503,-9.140198,-7.705872,0.138493,1477,0,0,0,1,5,0,0,1542,0,0.000000,47,0,120,1,0,104,0,20,1,0,1,0,1,0,0.000000,1.000000,55196,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4026419',4026419,106.981003,-9.414856,4.379272,1.435322,1477,0,0,0,0,5,0,0,1542,0,0.000000,47,0,120,1,0,105,0,20,1,0,1,0,1,0,0.000000,1.000000,54924,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc3760254',3760254,101.914902,-9.506409,8.010925,0.041850,1477,0,0,0,0,5,0,0,1542,0,0.000000,47,0,120,1,0,105,0,20,1,0,1,0,1,0,0.000000,1.000000,54652,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4331310',4331310,75.333740,-7.888916,-12.710820,-0.128454,1477,0,0,0,1,5,0,0,1542,0,0.000000,47,0,120,1,0,106,0,20,1,0,1,0,1,0,0.000000,1.000000,54380,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4331309',4331309,78.660156,-7.827942,-15.152280,1.465158,1477,0,0,0,1,5,0,0,1542,0,0.000000,47,0,120,1,0,106,0,20,1,0,1,0,1,0,0.000000,1.000000,54108,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4026469',4026469,97.734009,-8.743469,-28.976870,-0.000048,1476,0,0,0,1,5,0,0,1541,0,0.000000,47,0,120,1,0,107,0,20,2,0,1,0,1,0,0.000000,1.000000,53830,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4026470',4026470,92.027100,-9.262268,-30.380739,-0.000048,1476,0,0,0,1,5,0,0,1541,0,0.000000,47,0,120,1,0,107,0,20,2,0,1,0,1,0,0.000000,1.000000,53558,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4026468',4026468,95.963989,-9.140198,-34.348080,-0.000719,1476,0,0,0,1,5,0,0,1541,0,0.000000,47,0,120,1,0,107,0,20,2,0,1,0,1,0,0.000000,1.000000,53286,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc3760776',3760776,88.772034,-9.500000,0.336824,1.527197,1478,0,0,0,1,20,0,0,1543,0,0.000000,47,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,53026,1,3,50,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc3760773',3760773,118.028397,-9.506409,21.042179,0.490162,1478,0,0,0,1,20,0,0,1543,0,0.000000,47,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,52754,1,3,50,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4329609',4329609,111.201897,-9.500000,-3.726892,-0.000144,1475,0,0,0,2,10,0,0,1540,0,0.000000,47,0,120,1,0,108,0,20,1,0,1,0,1,0,0.000000,1.000000,52488,1,3,2000,0,0,0,4329625,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4331313',4331313,107.901703,-9.500000,-2.629781,1.386405,1475,0,0,0,2,6,0,0,1540,0,0.000000,47,0,120,1,100,108,0,20,1,0,1,0,1,0,0.000000,1.000000,52216,1,3,2000,0,0,0,4329625,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4333275',4333275,84.629471,-9.500000,-4.893989,1.386405,1475,0,0,0,6,6,0,0,1540,0,0.000000,47,0,120,1,100,109,0,20,1,0,1,0,1,0,0.000000,1.000000,51944,1,3,2000,0,0,0,4333290,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82772,'LVD_bnpc_ph1_1','r1r2','bnpc4333276',4333276,84.152473,-9.448235,-6.674214,-0.000144,1475,0,0,0,6,10,0,0,1540,0,0.000000,47,0,120,1,0,109,0,20,1,0,1,0,1,0,0.000000,1.000000,51672,1,3,2000,0,0,0,4333290,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93587,'LVD_bnpc_ph1_2','r1r2','bnpc4331322',4331322,-37.916599,-16.718519,-80.690666,0.328511,1473,0,0,0,1,5,0,0,1535,0,0.000000,47,0,120,1,0,112,0,20,1,0,1,0,1,0,0.000000,1.000000,51286,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93587,'LVD_bnpc_ph1_2','r1r2','bnpc4331323',4331323,-38.912628,-16.997749,-77.451477,1.549342,1473,0,0,0,1,5,0,0,1535,0,0.000000,47,0,120,1,0,112,0,20,1,0,1,0,1,0,0.000000,1.000000,51014,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93587,'LVD_bnpc_ph1_2','r1r2','bnpc4331325',4331325,-24.375919,-16.984699,-72.902031,0.328511,1473,0,0,0,1,5,0,0,1535,0,0.000000,47,0,120,1,0,111,0,20,1,0,1,0,1,0,0.000000,1.000000,50742,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93587,'LVD_bnpc_ph1_2','r1r2','bnpc4331326',4331326,-22.861450,-17.449539,-69.294479,1.549342,1473,0,0,0,1,5,0,0,1535,0,0.000000,47,0,120,1,0,111,0,20,1,0,1,0,1,0,0.000000,1.000000,50470,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc3760834',3760834,-214.038300,-30.502810,-195.513901,-0.071235,1481,0,0,0,2,6,0,0,1546,0,0.000000,47,0,120,1,0,0,0,0,0,0,1,0,1,0,0.000000,1.000000,50094,1,3,2000,0,0,0,4258964,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc3760836',3760836,-267.010986,-24.155090,-154.291397,-0.133746,1481,0,0,0,2,6,0,0,1546,0,0.000000,47,0,120,1,0,0,0,0,0,0,1,0,1,0,0.000000,1.000000,49822,1,3,2000,0,0,0,4258977,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc4026565',4026565,-88.807617,-30.716431,-140.742905,1.272217,1475,0,0,0,2,5,0,0,1540,0,0.000000,47,0,120,1,0,120,0,20,1,0,1,0,1,0,0.000000,1.000000,49544,1,3,2000,0,0,0,4333294,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc4026566',4026566,-89.326363,-30.960569,-144.984894,1.353471,1475,0,0,0,2,5,0,0,1540,0,0.000000,47,0,120,1,0,120,0,20,1,0,1,0,1,0,0.000000,1.000000,49272,1,3,2000,0,0,0,4333294,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc4331332',4331332,-100.450203,-28.397030,-122.697800,1.332762,1474,0,0,0,1,5,0,0,1539,0,0.000000,47,0,120,1,0,121,0,20,1,0,1,0,1,0,0.000000,1.000000,49012,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc3759900',3759900,-95.903023,-30.075560,-122.758904,0.506941,1479,0,0,0,1,5,0,0,1544,0,0.000000,47,0,120,1,0,121,0,20,1,0,1,0,1,0,0.000000,1.000000,48746,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc4331331',4331331,-97.825623,-29.984011,-158.312393,1.386405,1474,0,0,0,1,5,0,0,1539,0,0.000000,47,0,120,1,0,122,0,20,1,0,1,0,1,0,0.000000,1.000000,48468,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc3760892',3760892,-93.858276,-30.411249,-159.685699,1.082959,1480,0,0,0,1,5,0,0,1545,0,0.000000,47,0,120,1,0,122,0,20,1,0,1,0,1,0,0.000000,1.000000,48208,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc3759899',3759899,-112.334801,-31.143681,-138.776794,0.165097,1480,0,0,0,1,5,0,0,1545,0,0.000000,47,0,120,1,0,123,0,20,2,0,1,0,1,0,0.000000,1.000000,47936,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc3760871',3760871,-117.387703,-30.826559,-135.118698,0.561062,1479,0,0,0,1,5,0,0,1544,0,0.000000,47,0,120,1,0,123,0,20,2,0,1,0,1,0,0.000000,1.000000,47658,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc4333293',4333293,-113.607597,-30.411249,-131.469803,1.148442,1480,0,0,0,1,5,0,0,1545,0,0.000000,47,0,120,1,0,123,0,20,2,0,1,0,1,0,0.000000,1.000000,47392,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc4249549',4249549,-225.018494,-29.892460,-196.453201,-0.569643,1479,0,0,0,1,5,0,0,1544,0,0.000000,47,0,120,1,0,124,0,20,2,0,1,0,1,0,0.000000,1.000000,47114,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc4249548',4249548,-221.071793,-30.319700,-193.696701,0.608185,1480,0,0,0,1,5,0,0,1545,0,0.000000,47,0,120,1,0,124,0,20,2,0,1,0,1,0,0.000000,1.000000,46848,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc4329630',4329630,-224.217499,-30.228149,-191.178894,1.133821,1479,0,0,0,1,5,0,0,1544,0,0.000000,47,0,120,1,0,124,0,20,2,0,1,0,1,0,0.000000,1.000000,46570,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc4258939',4258939,-267.902588,-24.033020,-149.095901,1.293261,1479,0,0,0,1,5,0,0,1544,0,0.000000,47,0,120,1,0,125,0,20,1,0,1,0,1,0,0.000000,1.000000,46298,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc4258938',4258938,-267.444885,-23.241400,-143.938400,0.115530,1480,0,0,0,1,5,0,0,1545,0,0.000000,47,0,120,1,0,125,0,20,1,0,1,0,1,0,0.000000,1.000000,46032,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc4329641',4329641,-217.486893,-29.984011,-189.440796,-0.000048,1475,0,0,0,2,0,0,0,1540,0,0.000000,47,0,120,1,0,126,0,20,1,0,1,0,1,0,0.000000,1.000000,45736,1,3,0,0,0,0,4329633,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82775,'LVD_bnpc_ph2_1','r1r2','bnpc4329644',4329644,-216.723907,-30.136600,-187.853806,-0.000048,1475,0,0,0,2,0,0,0,1540,0,0.000000,47,0,120,1,0,126,0,20,1,0,1,0,1,0,0.000000,1.000000,45464,1,3,0,0,0,0,4329633,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82776,'LVD_bnpc_ph3_1','r1r2','bnpc4026576',4026576,-332.528595,-32.136822,-143.958298,0.947475,1473,0,0,0,1,5,0,0,1535,0,0.000000,47,0,120,1,0,201,0,20,4,0,1,0,1,0,0.000000,1.000000,45058,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82776,'LVD_bnpc_ph3_1','r1r2','bnpc4026577',4026577,-333.060394,-32.570419,-141.942001,0.947475,1473,0,0,0,1,5,0,0,1535,0,0.000000,47,0,120,1,0,201,0,20,4,0,1,0,1,0,0.000000,1.000000,44786,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82776,'LVD_bnpc_ph3_1','r1r2','bnpc4026578',4026578,-335.898499,-32.101521,-146.382507,0.947475,1473,0,0,0,1,5,0,0,1535,0,0.000000,47,0,120,1,0,201,0,20,4,0,1,0,1,0,0.000000,1.000000,44514,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82776,'LVD_bnpc_ph3_1','r1r2','bnpc4331336',4331336,-330.955597,-31.777781,-148.692398,0.947475,1473,0,0,0,1,5,0,0,1535,0,0.000000,47,0,120,1,0,201,0,20,4,0,1,0,1,0,0.000000,1.000000,44242,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82776,'LVD_bnpc_ph3_1','r1r2','bnpc4331337',4331337,-328.822296,-32.006062,-142.297195,0.947475,1473,0,0,0,1,5,0,0,1535,0,0.000000,47,0,120,1,0,201,0,20,4,0,1,0,1,0,0.000000,1.000000,43970,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82776,'LVD_bnpc_ph3_1','r1r2','bnpc4331343',4331343,-360.799591,-32.120239,-172.991592,0.947391,1479,0,0,0,1,5,0,0,1544,0,0.000000,47,0,120,1,0,202,0,20,3,0,1,0,1,0,0.000000,1.000000,43746,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82776,'LVD_bnpc_ph3_1','r1r2','bnpc4331344',4331344,-366.476013,-32.089779,-174.334396,1.024523,1480,0,0,0,1,5,0,0,1545,0,0.000000,47,0,120,1,0,202,0,20,3,0,1,0,1,0,0.000000,1.000000,43480,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82776,'LVD_bnpc_ph3_1','r1r2','bnpc4331345',4331345,-362.508606,-31.174259,-179.675003,0.165433,1480,0,0,0,1,5,0,0,1545,0,0.000000,47,0,120,1,0,202,0,20,3,0,1,0,1,0,0.000000,1.000000,43208,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82776,'LVD_bnpc_ph3_1','r1r2','bnpc4333349',4333349,-365.658905,-32.120239,-179.351807,0.947391,1479,0,0,0,1,5,0,0,1544,0,0.000000,47,0,120,1,0,202,0,20,3,0,1,0,1,0,0.000000,1.000000,42930,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82795,'LVD_gimmick_ph1_2','r1r2','bnpc4264600',4264600,109.634300,-10.176090,32.673328,-0.000000,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33690,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82795,'LVD_gimmick_ph1_2','r1r2','bnpc4264601',4264601,78.532303,-10.176090,1.080335,-0.000000,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33418,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82795,'LVD_gimmick_ph1_2','r1r2','bnpc4264602',4264602,110.711502,-10.176090,0.498785,-0.000000,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33146,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82795,'LVD_gimmick_ph1_2','r1r2','bnpc4269198',4269198,128.651505,-8.742720,31.359840,-0.000000,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32874,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82795,'LVD_gimmick_ph1_2','r1r2','bnpc4269199',4269199,93.369377,-8.487606,32.654781,1.074947,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32602,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82795,'LVD_gimmick_ph1_2','r1r2','bnpc4269200',4269200,104.710999,-8.076521,-16.250690,-0.000000,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32330,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82795,'LVD_gimmick_ph1_2','r1r2','bnpc4269201',4269201,127.965401,-8.753260,-0.296691,-1.102460,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32058,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82795,'LVD_gimmick_ph1_2','r1r2','bnpc4269202',4269202,96.036598,-8.691914,-0.244118,-0.613569,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31786,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82795,'LVD_gimmick_ph1_2','r1r2','bnpc4269203',4269203,80.514038,-7.664603,-13.104930,-0.511520,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31514,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82795,'LVD_gimmick_ph1_2','r1r2','bnpc4269204',4269204,98.873398,-8.658838,-28.939470,-0.481827,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31242,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82795,'LVD_gimmick_ph1_2','r1r2','bnpc4274638',4274638,100.367302,-7.336526,45.780701,0.575295,1539,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30368,1,0,0,4274628,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82795,'LVD_gimmick_ph1_2','r1r2','bnpc4274639',4274639,119.347397,-5.791709,-14.300760,-0.667606,1539,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30096,1,0,0,4274632,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82795,'LVD_gimmick_ph1_2','r1r2','bnpc4274640',4274640,80.109177,-6.300752,18.540051,0.712609,1539,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29824,1,0,0,4274635,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82795,'LVD_gimmick_ph1_2','r1r2','bnpc4274641',4274641,82.427750,-6.467789,-21.928080,0.990873,1539,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29552,1,0,0,4274637,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92476,'LVD_gimmick_ph1_3','r1r2','bnpc4279895',4279895,34.932800,-10.176090,20.520241,-0.000000,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28086,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92476,'LVD_gimmick_ph1_3','r1r2','bnpc4279896',4279896,46.484779,-7.444160,-15.563230,-0.885528,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27814,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92476,'LVD_gimmick_ph1_3','r1r2','bnpc4279897',4279897,27.972870,-8.846580,-36.956360,-0.000000,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27542,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92476,'LVD_gimmick_ph1_3','r1r2','bnpc4279898',4279898,26.751051,-8.465195,-21.565849,-0.000000,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27270,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92476,'LVD_gimmick_ph1_3','r1r2','bnpc4279899',4279899,47.899731,-8.113922,8.933550,-0.000000,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26998,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92476,'LVD_gimmick_ph1_3','r1r2','bnpc4279901',4279901,45.561562,-6.472215,23.705000,-0.214859,1539,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26732,1,0,0,4264554,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92476,'LVD_gimmick_ph1_3','r1r2','bnpc4279929',4279929,17.746460,-6.455016,3.823650,0.292068,1539,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26460,1,0,0,4264552,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92477,'LVD_gimmick_ph1_4','r1r2','bnpc4264625',4264625,-26.838631,-16.375280,-74.629433,0.639388,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25634,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92477,'LVD_gimmick_ph1_4','r1r2','bnpc4264626',4264626,-35.950920,-14.600000,-109.137802,0.351434,1539,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25368,1,0,0,4264564,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92477,'LVD_gimmick_ph1_4','r1r2','bnpc4286880',4286880,-45.303699,-15.261790,-71.489601,1.430262,1539,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25096,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83949,'LVD_gimmick_ph2_2','r1r2','bnpc4301584',4301584,-141.071106,-29.104971,-120.474403,-0.000000,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21238,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83949,'LVD_gimmick_ph2_2','r1r2','bnpc4301585',4301585,-141.764496,-29.666679,-163.307907,0.636273,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20966,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83949,'LVD_gimmick_ph2_2','r1r2','bnpc4301586',4301586,-158.009399,-29.905991,-158.749496,-0.553337,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20694,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83949,'LVD_gimmick_ph2_2','r1r2','bnpc4301587',4301587,-144.099106,-29.517981,-134.692795,-0.000000,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20422,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83949,'LVD_gimmick_ph2_2','r1r2','bnpc4301588',4301588,-156.424500,-29.693710,-127.714798,0.171348,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20150,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83949,'LVD_gimmick_ph2_2','r1r2','bnpc4301589',4301589,-154.344406,-30.153320,-146.367706,-0.643920,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19878,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83949,'LVD_gimmick_ph2_2','r1r2','bnpc4301590',4301590,-176.368393,-24.133869,-113.977501,1.140623,1539,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19612,1,0,0,4301576,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83949,'LVD_gimmick_ph2_2','r1r2','bnpc4301591',4301591,-128.593796,-27.532261,-169.764404,-0.109638,1539,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19340,1,0,0,4301575,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83949,'LVD_gimmick_ph2_2','r1r2','bnpc4301592',4301592,-174.139297,-27.550610,-156.096893,0.324833,1539,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19068,1,0,0,4301579,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83949,'LVD_gimmick_ph2_2','r1r2','bnpc4301593',4301593,-125.819199,-27.783001,-148.406906,-0.639706,1539,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18796,1,0,0,4301578,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83949,'LVD_gimmick_ph2_2','r1r2','bnpc4301594',4301594,-127.764297,-27.897190,-127.245003,-0.933047,1539,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18524,1,0,0,4301577,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91858,'LVD_gimmick_ph3_2','r1r2','bnpc4264647',4264647,-387.628387,-33.449589,-136.865204,-0.000000,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5474,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91858,'LVD_gimmick_ph3_2','r1r2','bnpc4264648',4264648,-421.939301,-33.499592,-112.653198,-0.000000,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5202,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91858,'LVD_gimmick_ph3_2','r1r2','bnpc4264649',4264649,-375.909302,-33.499981,-120.552803,-0.000000,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4930,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91858,'LVD_gimmick_ph3_2','r1r2','bnpc4264641',4264641,-407.371399,-32.277149,-141.154907,-0.511520,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4658,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91858,'LVD_gimmick_ph3_2','r1r2','bnpc4264643',4264643,-381.764008,-32.415310,-124.443703,-0.511520,1482,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4386,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91858,'LVD_gimmick_ph3_2','r1r2','bnpc4288612',4288612,-406.885101,-28.415609,-104.427902,-0.254537,1539,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4120,1,0,0,4264630,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91858,'LVD_gimmick_ph3_2','r1r2','bnpc4288613',4288613,-380.267395,-27.450729,-142.767303,0.014290,1539,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3848,1,0,0,4264637,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92993,'LVD_BNPC_02a','s1b1','bnpc4313799',4313799,49.521439,2.882746,-250.523193,-1.179057,1998,0,0,0,1,3,0,15,1461,0,0.000000,50,0,120,1,0,20,1,24,3,0,1,1,0,0,0.000000,1.000000,32008,1,4,25,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92993,'LVD_BNPC_02a','s1b1','bnpc4330161',4330161,-29.117170,5.915999,-141.842606,-0.000048,1997,0,0,0,1,6,0,0,1464,0,0.000000,50,0,120,1,0,1,0,32,2,0,1,0,1,1,0.000000,-2.000000,31294,1,4,2000,0,0,0,4330166,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92993,'LVD_BNPC_02a','s1b1','bnpc4330168',4330168,15.396300,7.583679,-213.550003,-0.000048,2006,0,0,0,6,6,0,0,1465,0,0.000000,50,0,120,1,0,0,0,24,4,0,1,0,0,1,0.000000,-2.000000,30788,1,4,2000,0,0,0,4330166,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92993,'LVD_BNPC_02a','s1b1','bnpc4331698',4331698,45.944950,5.905212,-231.921906,-0.000048,2006,0,0,0,6,6,0,0,1465,0,0.000000,50,0,120,1,0,0,0,60,4,0,1,0,0,1,0.000000,-2.000000,30516,1,4,2000,0,0,0,4331661,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92993,'LVD_BNPC_02a','s1b1','bnpc4293626',4293626,-24.887510,5.996765,-144.823395,-0.000048,2006,0,0,0,9,6,0,0,1465,0,0.000000,50,0,120,1,0,0,0,24,4,0,1,0,0,1,0.000000,-2.000000,30244,1,4,2000,0,0,0,4330157,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92993,'LVD_BNPC_02a','s1b1','bnpc4330160',4330160,45.477150,-1.371325,-199.246704,-0.000048,2003,0,0,0,1,6,0,0,1463,0,0.000000,50,0,120,1,0,2,0,32,4,0,1,0,1,1,0.000000,-5.000000,29978,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92993,'LVD_BNPC_02a','s1b1','bnpc4293622',4293622,-26.108219,5.966248,-149.401093,-0.000048,2003,0,0,0,1,6,0,0,1463,0,0.000000,50,0,120,1,0,1,0,32,2,0,1,0,1,1,0.000000,-5.000000,29706,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92993,'LVD_BNPC_02a','s1b1','bnpc4330159',4330159,48.292480,-0.965142,-208.515900,-0.000048,1997,0,0,0,1,6,0,0,1464,0,0.000000,50,0,120,1,0,2,0,32,4,0,1,0,1,1,-3.000000,-2.000000,29422,1,4,2000,0,0,0,4330157,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92993,'LVD_BNPC_02a','s1b1','bnpc4334696',4334696,-19.211121,5.966248,-145.494797,-0.000048,1997,0,0,0,1,6,0,0,1464,0,0.000000,50,0,120,1,0,1,0,32,2,0,1,0,1,1,0.000000,-5.000000,29150,1,4,2000,0,0,0,4330157,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92993,'LVD_BNPC_02a','s1b1','bnpc4334700',4334700,39.843231,-1.356478,-193.632996,-0.000048,2003,0,0,0,1,6,0,0,1463,0,0.000000,50,0,120,1,0,2,0,32,4,0,1,0,1,1,0.000000,-2.000000,28890,1,4,2000,0,0,0,4330166,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92993,'LVD_BNPC_02a','s1b1','bnpc4334701',4334701,1.663208,-7.522766,-156.328705,-0.000048,2006,0,0,0,9,6,0,0,1465,0,0.000000,50,0,120,1,0,0,0,18,4,0,1,0,0,1,0.000000,-2.000000,28612,1,4,2000,0,0,0,4373923,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92993,'LVD_BNPC_02a','s1b1','bnpc4334702',4334702,51.316040,-1.175049,-203.814804,-0.819206,1997,0,0,0,1,6,0,0,1464,0,0.000000,50,0,120,1,0,2,0,32,4,0,1,0,1,1,-3.000000,-2.000000,28334,1,4,2000,0,0,0,4330166,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92993,'LVD_BNPC_02a','s1b1','bnpc4334712',4334712,43.503422,0.255773,-211.133499,-0.000048,2003,0,0,0,1,6,0,0,1463,0,0.000000,50,0,120,1,0,2,0,32,4,0,1,0,1,1,-3.000000,-2.000000,27882,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94463,'LVD_BNPC_02b','s1b1','bnpc4330158',4330158,75.868713,0.080066,-319.222595,-0.000048,1997,0,0,0,1,6,0,0,1464,0,0.000000,50,0,120,1,0,20,0,24,3,0,1,0,1,1,0.000000,-2.000000,27486,1,4,2000,0,0,0,4330157,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94463,'LVD_BNPC_02b','s1b1','bnpc4330173',4330173,82.177711,-2.067599,-299.092102,-0.000048,1997,0,0,0,1,6,0,0,1464,0,0.000000,50,0,120,1,0,20,0,24,3,0,1,0,1,1,0.000000,-2.000000,27214,1,4,2000,0,0,0,4330194,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94463,'LVD_BNPC_02b','s1b1','bnpc4331739',4331739,112.992996,-13.015930,-307.057404,-0.000048,2006,0,0,0,6,6,0,0,1465,0,0.000000,50,0,120,1,0,30,0,24,4,0,1,0,1,1,0.000000,-2.000000,26948,1,4,2000,0,0,0,4330194,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94463,'LVD_BNPC_02b','s1b1','bnpc4334709',4334709,33.415169,5.966248,-314.320587,-0.000048,2006,0,0,0,6,6,0,0,1465,0,0.000000,50,0,120,1,0,30,0,24,4,0,1,0,1,1,0.000000,-2.000000,26676,1,4,2000,0,0,0,4373936,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94463,'LVD_BNPC_02b','s1b1','bnpc4293619',4293619,46.559650,20.492800,-278.644989,1.514694,2005,0,0,0,9,6,0,0,1462,0,0.000000,50,0,120,1,0,30,0,24,4,0,1,0,1,1,0.000000,1.000000,26416,1,4,2000,0,0,0,4331740,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94463,'LVD_BNPC_02b','s1b1','bnpc4330195',4330195,94.919243,6.184975,-272.246399,-0.000048,2006,0,0,0,6,6,0,0,1465,0,0.000000,50,0,120,1,0,30,0,24,4,0,1,0,1,1,0.000000,-2.000000,26132,1,4,2000,0,0,0,4330194,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94463,'LVD_BNPC_02b','s1b1','bnpc4331747',4331747,74.143547,-1.022339,-306.965790,-0.000048,1997,0,0,0,1,6,0,0,1464,0,0.000000,50,0,120,1,0,20,0,24,3,0,1,0,1,1,0.000000,-2.000000,25854,1,4,2000,0,0,0,4330157,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94463,'LVD_BNPC_02b','s1b1','bnpc4313806',4313806,44.235840,1.052795,-336.934387,0.786033,1998,0,0,0,1,3,0,0,1461,0,0.000000,50,0,120,1,0,50,2,24,7,0,1,1,1,0,0.000000,-2.000000,25576,1,4,25,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94464,'LVD_BNPC_02c','s1b1','bnpc4334713',4334713,132.463501,4.470825,-347.096985,-0.000048,2004,0,0,0,1,10,0,0,1480,0,0.000000,50,0,111,1,0,30,0,32,5,0,1,0,1,1,0.000000,1.000000,24146,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94464,'LVD_BNPC_02c','s1b1','bnpc4330192',4330192,128.266800,4.498319,-357.655090,-0.000048,2004,0,0,0,1,10,0,0,1480,0,0.000000,50,0,111,1,0,30,0,32,5,0,1,0,1,1,0.000000,1.000000,23874,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94464,'LVD_BNPC_02c','s1b1','bnpc4330193',4330193,120.927696,4.470825,-349.630005,-0.000048,2005,0,0,0,1,6,0,0,1462,0,0.000000,50,0,120,1,0,30,0,32,5,0,1,0,1,1,0.000000,1.000000,23596,1,4,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94464,'LVD_BNPC_02c','s1b1','bnpc4330187',4330187,123.704803,4.470825,-343.495789,-0.000048,2004,0,0,0,1,10,0,0,1480,0,0.000000,50,0,111,1,0,30,0,32,5,0,1,0,1,1,0.000000,1.000000,23330,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94464,'LVD_BNPC_02c','s1b1','bnpc4334718',4334718,114.640999,4.224340,-362.062286,-0.000048,2004,0,0,0,1,10,0,0,1480,0,0.000000,50,0,111,1,0,30,0,32,5,0,1,0,1,1,0.000000,1.000000,23058,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94464,'LVD_BNPC_02c','s1b1','bnpc4330191',4330191,127.306000,2.939391,-366.186707,-0.000048,2004,0,0,0,1,10,0,0,1480,0,0.000000,50,0,111,1,0,30,0,32,5,0,1,0,1,1,0.000000,1.000000,22786,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94464,'LVD_BNPC_02c','s1b1','bnpc4331742',4331742,151.049103,-13.046510,-336.354614,-0.000048,2005,0,0,0,9,6,0,0,1462,0,0.000000,50,0,120,1,0,0,0,24,4,0,1,0,0,1,0.000000,1.000000,22508,1,4,2000,0,0,0,4331743,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92980,'LVD_BNPC_boss_01','s1b1','bnpc4293325',4293325,-2.556401,12.090520,0.138434,-0.000048,2183,0,0,0,0,6,0,0,1459,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20748,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92980,'LVD_BNPC_boss_01','s1b1','bnpc4293327',4293327,11.147130,12.712400,20.012110,-0.000048,2184,0,0,0,1,6,0,0,1460,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20482,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92980,'LVD_BNPC_boss_01','s1b1','bnpc4311929',4311929,10.016740,12.799160,0.950731,-0.000048,2185,0,0,0,1,6,0,0,1469,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20216,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92980,'LVD_BNPC_boss_01','s1b1','bnpc4311930',4311930,-13.213200,11.889580,15.639900,-0.000048,2186,0,0,0,1,6,0,0,1472,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19950,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92980,'LVD_BNPC_boss_01','s1b1','bnpc4311944',4311944,-3.372393,11.530870,16.541981,-0.000000,2284,0,0,0,0,6,0,0,1472,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19616,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92980,'LVD_BNPC_boss_01','s1b1','bnpc4330395',4330395,-3.067930,11.772100,9.784547,-0.000000,2284,0,0,0,1,6,0,0,1459,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19344,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92994,'LVD_BNPC_boss_02','s1b1','bnpc4294161',4294161,-14.793430,-0.300000,-401.915314,-0.000000,2007,0,0,0,0,6,0,0,1466,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14682,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92994,'LVD_BNPC_boss_02','s1b1','bnpc4294168',4294168,-9.638420,1.700000,-411.533295,-0.000000,2008,0,0,0,0,6,0,0,1467,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14416,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92994,'LVD_BNPC_boss_02','s1b1','bnpc4329906',4329906,-30.680479,0.100000,-402.150513,-0.000000,434,0,0,0,0,6,0,0,1466,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13862,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92996,'LVD_BNPC_boss_01','s1b2','bnpc4293822',4293822,-0.056733,-62.555092,112.423599,-0.000000,2010,0,0,0,0,6,0,0,1468,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19060,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92996,'LVD_BNPC_boss_01','s1b2','bnpc4328360',4328360,4.025326,-62.460590,112.806900,-0.000000,2270,0,0,0,0,6,0,0,1468,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18658,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92995,'LVD_BNPC_boss_02','s1b2','bnpc4293821',4293821,-48.549000,-38.944691,94.536713,-0.000000,2011,0,0,0,0,6,0,0,1469,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17996,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93514,'LVD_BNPC_boss_03','s1b2','bnpc4293817',4293817,-30.985371,-18.076759,56.263390,0.000000,2012,0,0,0,0,6,0,0,1470,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17130,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93514,'LVD_BNPC_boss_03','s1b2','bnpc4309082',4309082,-39.062191,-18.020620,57.799980,-0.000048,2271,0,0,0,0,6,0,0,1470,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16576,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93515,'LVD_BNPC_boss_04','s1b2','bnpc4293816',4293816,0.162088,0.024334,46.907230,-0.000000,2013,0,0,0,0,6,0,0,1471,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16062,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93515,'LVD_BNPC_boss_04','s1b2','bnpc4309908',4309908,-0.015320,-0.015320,39.483479,-0.000048,1442,0,0,0,0,6,0,0,1471,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15724,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93516,'LVD_BNPC_boss_05','s1b2','bnpc4293818',4293818,46.536671,-21.059750,60.251179,-0.000000,2014,0,0,0,0,6,0,0,1472,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14926,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93516,'LVD_BNPC_boss_05','s1b2','bnpc4309078',4309078,48.452900,-21.526100,50.858219,-0.000048,2272,0,0,0,0,6,0,0,1472,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14372,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93517,'LVD_BNPC_boss_06','s1b2','bnpc4293819',4293819,38.237438,-42.007511,85.848297,-0.000000,2015,0,0,0,0,6,0,0,1473,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13862,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93517,'LVD_BNPC_boss_06','s1b2','bnpc4309080',4309080,38.270142,-41.928761,91.970703,-0.000000,2273,0,0,0,0,6,0,0,1473,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13308,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93518,'LVD_BNPC_boss_07','s1b2','bnpc4293813',4293813,0.125140,-66.061417,79.758377,-0.000000,2009,0,0,0,0,6,0,0,1459,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12718,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93518,'LVD_BNPC_boss_07','s1b2','bnpc4328794',4328794,0.070525,-62.418461,112.527397,-0.000000,434,0,0,0,0,6,0,0,1459,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,8268,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93518,'LVD_BNPC_boss_07','s1b2','bnpc4328797',4328797,-38.009979,-38.937080,94.736191,-0.000000,434,0,0,0,0,6,0,0,1459,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,7996,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93518,'LVD_BNPC_boss_07','s1b2','bnpc4328800',4328800,-38.133991,-17.974880,52.070648,-0.000000,434,0,0,0,0,6,0,0,1459,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,7724,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93518,'LVD_BNPC_boss_07','s1b2','bnpc4328802',4328802,0.007618,0.028386,37.388809,-0.000000,434,0,0,0,0,6,0,0,1459,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,7452,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93518,'LVD_BNPC_boss_07','s1b2','bnpc4328803',4328803,49.279110,-20.964121,52.704670,-0.000000,434,0,0,0,0,6,0,0,1459,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,7180,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93518,'LVD_BNPC_boss_07','s1b2','bnpc4328804',4328804,38.343220,-41.928299,86.040337,-0.000000,434,0,0,0,0,6,0,0,1459,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,6908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93518,'LVD_BNPC_boss_07','s1b2','bnpc4332771',4332771,0.037400,-65.984840,74.397346,-0.000000,434,0,0,0,0,6,0,0,2193,1,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,6636,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93518,'LVD_BNPC_boss_07','s1b2','bnpc4331536',4331536,0.284680,-65.973549,75.758423,-0.000048,2275,0,0,0,0,6,0,0,1459,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,6370,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93518,'LVD_BNPC_boss_07','s1b2','bnpc4309084',4309084,0.410202,-65.922897,77.795029,-0.000000,2274,0,0,0,0,6,0,0,1459,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,6104,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93039,'LVD_BNPC_01','s1b3','bnpc4331928',4331928,-12.048290,-37.560810,66.095711,-0.000048,2000,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,1,0,32,4,0,1,0,1,0,-3.000000,1.000000,110204,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93039,'LVD_BNPC_01','s1b3','bnpc4331934',4331934,-14.536030,-38.010349,56.638500,-0.000048,2000,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,1,0,32,4,0,1,0,1,0,-3.000000,1.000000,109932,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93039,'LVD_BNPC_01','s1b3','bnpc4331936',4331936,3.212831,-37.600281,67.237801,-0.000048,2000,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,1,0,32,4,0,1,0,1,0,-3.000000,1.000000,109660,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93039,'LVD_BNPC_01','s1b3','bnpc4331945',4331945,43.324902,-75.002853,-47.598049,-0.000048,2000,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,2,0,32,5,0,1,0,1,0,0.000000,1.000000,109388,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93039,'LVD_BNPC_01','s1b3','bnpc4331950',4331950,26.840580,-75.059143,-52.262211,-0.000048,2000,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,2,0,32,5,0,1,0,1,0,0.000000,1.000000,109116,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93039,'LVD_BNPC_01','s1b3','bnpc4334695',4334695,-10.158710,-112.972603,31.891870,0.369665,1998,0,0,0,0,6,0,0,1461,0,0.000000,50,0,120,1,0,3,0,32,5,0,1,0,0,0,0.000000,1.000000,108850,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93039,'LVD_BNPC_01','s1b3','bnpc4331935',4331935,29.129391,-74.784477,-40.939999,-0.000048,1997,0,0,0,1,6,0,0,1464,0,0.000000,50,0,120,1,0,2,0,32,5,0,1,0,1,0,0.000000,1.000000,108584,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93039,'LVD_BNPC_01','s1b3','bnpc4331937',4331937,16.132410,-37.105400,68.242493,-0.000048,1997,0,0,0,1,6,0,0,1464,0,0.000000,50,0,120,1,0,1,0,32,4,0,1,0,1,0,-3.000000,1.000000,108312,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93039,'LVD_BNPC_01','s1b3','bnpc4331947',4331947,34.439579,-74.357300,-47.867611,-0.000048,1997,0,0,0,1,6,0,0,1464,0,0.000000,50,0,120,1,0,2,0,32,5,0,1,0,1,0,0.000000,1.000000,108040,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93039,'LVD_BNPC_01','s1b3','bnpc4331951',4331951,31.806021,-75.227661,-50.605598,-0.000048,1997,0,0,0,1,6,0,0,1464,0,0.000000,50,0,120,1,0,2,0,32,5,0,1,0,1,0,0.000000,1.000000,107768,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331956',4331956,21.988159,-225.055405,-48.203308,-0.000048,2002,0,0,0,1,6,0,0,1481,0,0.000000,50,0,120,1,0,13,0,32,4,0,1,0,1,0,0.000000,1.000000,107330,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331970',4331970,-66.697197,-224.658600,-13.138060,-0.000048,2000,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,12,0,32,2,0,1,0,1,0,0.000000,1.000000,107040,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331972',4331972,66.208862,-225.085907,24.856930,-0.000048,2000,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,14,0,32,3,0,1,0,1,0,0.000000,-5.000000,106768,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331988',4331988,0.228821,-225.085907,-62.424679,-0.000048,2002,0,0,0,1,6,0,0,1481,0,0.000000,50,0,120,1,0,13,0,32,4,0,1,0,1,0,0.000000,1.000000,106514,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331977',4331977,-12.456390,-300.868195,-16.618311,0.673380,1998,0,0,0,0,6,0,0,1461,0,0.000000,50,0,120,1,0,16,0,32,5,0,1,0,0,0,0.000000,1.000000,106230,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331991',4331991,4.806519,-225.085907,-61.966919,-0.105894,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,13,0,32,4,0,1,0,1,0,0.000000,1.000000,105976,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331989',4331989,4.287720,-225.513107,-55.039310,0.086480,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,13,0,32,4,0,1,0,1,0,0.000000,1.000000,105704,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331954',4331954,-19.150089,-187.518097,49.515499,-1.201509,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,10,0,32,4,0,1,0,1,0,0.000000,1.000000,105432,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331931',4331931,-25.619930,-187.518097,46.524780,1.064167,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,10,0,32,4,0,1,0,1,0,0.000000,1.000000,105160,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331955',4331955,-22.110350,-187.609695,53.086060,-0.060881,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,10,0,32,4,0,1,0,1,0,0.000000,1.000000,104888,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331953',4331953,-26.504940,-187.609695,51.132931,0.947919,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,10,0,32,4,0,1,0,1,0,0.000000,1.000000,104616,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331952',4331952,-19.943600,-187.975998,42.740479,-0.415955,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,10,0,32,4,0,1,0,1,0,0.000000,1.000000,104344,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331986',4331986,57.236568,-187.609695,6.149353,-1.017620,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,11,0,32,4,0,1,0,1,0,0.000000,1.000000,104072,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331987',4331987,57.541752,-187.609695,1.296936,-1.127349,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,11,0,32,4,0,1,0,1,0,0.000000,1.000000,103800,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331983',4331983,53.086060,-187.609695,-0.045776,-0.045397,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,11,0,32,4,0,1,0,1,0,0.000000,1.000000,103528,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331985',4331985,47.013062,-187.945404,3.067017,1.500880,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,11,0,32,4,0,1,0,1,0,0.000000,1.000000,103256,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331984',4331984,52.719849,-187.518097,6.912292,0.076125,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,11,0,32,4,0,1,0,1,0,0.000000,1.000000,102984,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331973',4331973,59.708500,-224.963699,30.960569,-1.374180,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,14,0,32,3,0,1,0,1,0,0.000000,-5.000000,102712,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331980',4331980,54.459469,-225.146896,29.892460,1.366270,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,14,0,32,3,0,1,0,1,0,0.000000,-5.000000,102440,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331982',4331982,65.323853,-225.116394,20.981079,-0.000048,2002,0,0,0,1,6,0,0,1481,0,0.000000,50,0,120,1,0,14,0,32,3,0,1,0,1,0,0.000000,-5.000000,102162,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331967',4331967,-62.302608,-225.330002,-8.255188,0.165193,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,12,0,32,2,0,1,0,1,0,0.000000,1.000000,101896,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331990',4331990,13.534730,-225.513107,-51.163509,-0.589393,2000,0,0,0,0,6,0,0,2174,0,0.700000,50,0,120,1,0,13,0,32,4,0,1,0,1,0,0.000000,1.000000,101600,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331960',4331960,-7.370178,-262.592499,56.260010,1.458407,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,15,0,32,2,0,1,0,1,0,0.000000,1.000000,101352,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331962',4331962,-60.410461,-225.024796,-15.060730,-0.279237,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,12,0,32,2,0,1,0,1,0,0.000000,1.000000,101080,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331961',4331961,-2.517761,-262.592499,56.839840,-1.495846,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,0,120,1,0,15,0,32,2,0,1,0,1,0,0.000000,1.000000,100808,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93040,'LVD_BNPC_02','s1b3','bnpc4331971',4331971,-16.250851,-261.951691,53.208130,0.593084,2002,0,0,0,1,6,0,0,1481,0,0.700000,50,0,120,1,0,15,0,32,2,0,1,0,1,0,0.000000,1.000000,100530,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4373267',4373267,38.107300,-385.449493,40.346390,-0.000048,2000,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,24,0,32,3,0,1,0,1,0,0.000000,1.000000,99572,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4373269',4373269,-30.361170,-423.004608,50.766029,0.549557,1998,0,0,0,0,6,0,0,1461,0,0.000000,50,0,120,1,0,26,0,32,4,0,1,0,0,0,0.000000,1.000000,99306,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4331999',4331999,28.244381,-423.038086,-56.717831,-1.181087,2000,0,0,0,1,6,0,0,2174,0,0.000000,50,0,120,1,0,25,0,32,4,0,1,0,1,0,0.000000,1.000000,98676,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4332003',4332003,8.712891,-423.239502,-63.065552,1.379598,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,2,120,1,0,25,0,32,4,0,1,0,1,0,0.000000,1.000000,97836,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4332001',4332001,13.992490,-423.025909,-62.088989,-1.402942,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,2,120,1,0,25,0,32,4,0,1,0,1,0,0.000000,1.000000,97564,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4332002',4332002,10.421880,-423.117401,-57.694401,-0.178951,2002,0,0,0,1,6,0,0,1481,0,0.700000,50,2,120,1,0,25,0,32,4,0,1,0,1,0,0.000000,1.000000,97286,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4331996',4331996,46.127930,-385.030914,40.299068,-0.163365,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,2,120,1,0,24,0,32,3,0,1,0,1,0,0.000000,1.000000,97020,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4331995',4331995,44.907230,-385.092010,48.722050,0.123334,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,2,120,1,0,24,0,32,3,0,1,0,1,0,0.000000,1.000000,96748,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4373258',4373258,9.964111,-348.073486,-44.205379,0.084853,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,2,120,1,0,22,0,32,2,0,1,0,1,0,0.000000,-2.000000,96476,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4332005',4332005,10.788090,-348.134613,-35.599300,-0.070063,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,2,120,1,0,22,0,32,2,0,1,0,1,0,0.000000,-2.000000,96204,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4332009',4332009,-10.849240,-348.195587,35.538212,0.151608,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,2,120,1,0,20,0,32,2,0,1,0,1,0,0.000000,1.000000,95932,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4373265',4373265,-9.964172,-348.073486,44.205318,-0.108818,2001,0,0,0,0,6,0,0,1479,0,0.700000,50,2,120,1,0,20,0,32,2,0,1,0,1,0,0.000000,1.000000,95660,1,4,4000,0,0,0,4373212,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4332013',4332013,-20.981199,-348.043091,37.704960,0.573238,2002,0,0,0,1,6,0,0,1481,0,0.700000,50,2,120,1,0,20,0,32,2,0,1,0,1,0,0.000000,1.000000,95382,1,4,4000,0,0,0,4373212,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4374744',4374744,17.929260,-348.104095,-37.735600,-1.447141,2002,0,0,0,1,6,0,0,1481,0,0.700000,50,2,120,1,0,22,0,32,2,0,1,0,1,0,0.000000,-2.000000,95110,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4374745',4374745,31.906490,-386.037994,34.683720,-0.000048,2002,0,0,0,1,6,0,0,1481,0,0.000000,50,0,120,1,0,24,0,32,3,0,1,0,1,0,0.000000,1.000000,94838,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4332000',4332000,18.722780,-422.995392,-60.196899,-1.181087,2002,0,0,0,1,6,0,0,1481,0,0.000000,50,0,120,1,0,25,0,32,4,0,1,0,1,0,0.000000,1.000000,94566,1,4,4000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4373548',4373548,4.509219,-416.952789,76.371338,-1.491196,2000,0,0,0,2,6,0,0,2174,0,0.000000,50,2,120,1,0,30,4,32,2,0,1,0,1,0,0.000000,1.000000,94276,1,4,4000,0,0,0,4373525,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4373569',4373569,-0.655896,-420.675995,-72.220947,1.227060,2000,0,0,0,2,6,0,0,2174,0,0.000000,50,2,120,1,0,31,4,32,2,0,1,0,1,0,0.000000,1.000000,94004,1,4,4000,0,0,0,4373525,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4373568',4373568,3.067017,-420.675995,-72.159912,1.448866,2000,0,0,0,2,6,0,0,2174,0,0.000000,50,2,120,1,0,31,4,32,2,0,1,0,1,0,0.000000,1.000000,93732,1,4,4000,0,0,0,4373525,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4373549',4373549,8.215181,-416.952911,76.310303,-1.491196,2000,0,0,0,2,6,0,0,2174,0,0.000000,50,2,120,1,0,30,4,32,2,0,1,0,1,0,0.000000,1.000000,93460,1,4,4000,0,0,0,4373525,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4373571',4373571,6.531590,-420.675995,-72.037903,1.560653,2000,0,0,0,2,6,0,0,2174,0,0.000000,50,2,120,1,0,31,4,32,2,0,1,1,1,0,0.000000,1.000000,93188,1,4,4000,0,0,0,4373525,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4373546',4373546,0.503479,-416.952789,76.493408,-1.491196,2000,0,0,0,2,6,0,0,2174,0,0.000000,50,2,120,1,0,30,4,32,2,0,1,1,1,0,0.000000,1.000000,92916,1,4,4000,0,0,0,4373525,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4332007',4332007,2.300244,-347.800110,-38.406979,1.009039,2000,0,0,0,2,6,0,0,2174,0,0.000000,50,2,120,1,0,23,2,32,1,0,1,0,1,0,0.000000,1.000000,92644,1,4,4000,0,0,0,4373257,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4332006',4332006,5.996765,-348.317688,-36.392818,1.260041,2000,0,0,0,2,6,0,0,2174,0,0.000000,50,2,120,1,0,23,2,32,1,0,1,1,1,0,0.000000,1.000000,92372,1,4,4000,0,0,0,4373257,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4332012',4332012,-8.224609,-348.073486,36.148560,-1.177098,2000,0,0,0,2,6,0,0,2174,0,0.000000,50,2,120,1,0,21,1,32,1,0,1,1,1,0,0.000000,1.000000,92100,1,4,4000,0,0,0,4373212,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93041,'LVD_BNPC_03','s1b3','bnpc4332010',4332010,-4.709486,-348.195587,36.026489,-1.460070,2000,0,0,0,2,6,0,0,2174,0,0.000000,50,2,120,1,0,21,1,32,1,0,1,0,1,0,0.000000,1.000000,91828,1,4,4000,0,0,0,4373212,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93026,'LVD_BNPC_boss_01','s1b4','bnpc4294973',4294973,9.786888,120.094299,7.551685,-0.000000,2016,0,0,0,0,6,0,0,1474,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24696,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93026,'LVD_BNPC_boss_01','s1b4','bnpc4294974',4294974,-8.503906,120.073097,-12.959450,-0.000048,2017,0,0,0,0,6,0,0,1475,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24430,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93026,'LVD_BNPC_boss_01','s1b4','bnpc4294976',4294976,-10.184070,120.094299,6.899574,-0.000000,2018,0,0,0,0,6,0,0,1477,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24164,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93026,'LVD_BNPC_boss_01','s1b4','bnpc4294978',4294978,9.875137,120.094299,6.792267,-0.000000,2019,0,0,0,0,6,0,0,1476,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23898,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93026,'LVD_BNPC_boss_01','s1b4','bnpc4294977',4294977,7.203128,120.073097,-6.950890,-0.000048,2020,0,0,0,0,6,0,0,1478,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23632,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93026,'LVD_BNPC_boss_01','s1b4','bnpc4325317',4325317,-0.046071,0.131195,0.065383,-0.000048,434,0,0,0,0,6,0,0,686,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22118,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93026,'LVD_BNPC_boss_01','s1b4','bnpc4325171',4325171,14.417730,0.000000,19.979389,-0.000000,2282,0,0,0,0,6,0,0,1474,0,1.200000,50,0,120,1,0,1,0,64,5,0,1,0,1,0,0.000000,-2.000000,5628,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93026,'LVD_BNPC_boss_01','s1b4','bnpc4325176',4325176,14.297610,-0.015320,9.994568,-0.000048,2282,0,0,0,0,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,64,5,0,1,0,1,0,0.000000,-2.000000,5356,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93026,'LVD_BNPC_boss_01','s1b4','bnpc4325177',4325177,5.139073,0.000000,-11.651030,-0.000000,2282,0,0,0,0,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,64,5,0,1,0,1,0,0.000000,-2.000000,5084,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93026,'LVD_BNPC_boss_01','s1b4','bnpc4325179',4325179,-20.009920,0.000000,-14.480060,-0.000000,2282,0,0,0,0,6,0,0,1474,0,1.200000,50,0,120,1,0,1,0,64,5,0,1,0,1,0,0.000000,-2.000000,4812,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93026,'LVD_BNPC_boss_01','s1b4','bnpc4325180',4325180,-9.896688,0.000000,-14.430540,-0.000000,2282,0,0,0,0,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,64,5,0,1,0,1,0,0.000000,-2.000000,4540,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93026,'LVD_BNPC_boss_01','s1b4','bnpc4325181',4325181,11.523280,0.000000,-5.255621,-0.000000,2282,0,0,0,0,6,0,0,1474,0,0.000000,50,0,120,1,0,1,0,64,5,0,1,0,1,0,0.000000,-2.000000,4268,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93033,'LVD_BNPC_boss_01','s1b5','bnpc4295027',4295027,2.251731,50.021049,4.753533,-0.445053,2021,0,0,0,0,6,0,0,1482,0,0.000000,50,0,120,1,0,1,1,50,10,0,1,1,1,0,0.000000,1.000000,13544,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93033,'LVD_BNPC_boss_01','s1b5','bnpc4295029',4295029,-5.666031,50.061909,10.274370,-0.000000,2024,0,0,0,0,6,0,0,1483,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13278,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93033,'LVD_BNPC_boss_01','s1b5','bnpc4295030',4295030,10.505920,49.942299,6.626137,-0.000000,2025,0,0,0,0,6,0,0,1484,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13012,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93033,'LVD_BNPC_boss_01','s1b5','bnpc4295031',4295031,1.261459,49.976120,1.304550,-0.000000,2026,0,0,0,0,6,0,0,1485,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12746,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93033,'LVD_BNPC_boss_01','s1b5','bnpc4301934',4301934,3.670071,50.044949,3.992359,-0.000000,2022,0,0,0,0,6,0,0,2171,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12480,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93033,'LVD_BNPC_boss_01','s1b5','bnpc4301937',4301937,6.426521,49.920799,5.328779,-0.000000,2033,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12214,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93033,'LVD_BNPC_boss_01','s1b5','bnpc4301938',4301938,-0.040131,50.028568,4.506348,-0.000000,2034,0,0,0,0,6,0,0,2170,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11948,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93033,'LVD_BNPC_boss_01','s1b5','bnpc4301939',4301939,3.653547,49.935322,7.620023,-0.000000,2035,0,0,0,0,6,0,0,2210,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11682,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93033,'LVD_BNPC_boss_01','s1b5','bnpc4313934',4313934,-0.015320,49.942749,-0.015320,-0.000048,2023,0,0,0,0,6,0,0,2176,0,0.000000,50,0,120,1,0,1,1,50,10,0,1,0,1,0,0.000000,1.000000,11280,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93033,'LVD_BNPC_boss_01','s1b5','bnpc4322732',4322732,-6.577450,50.015739,-6.204218,-0.000000,2283,0,0,0,0,6,0,0,1482,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,4738,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93033,'LVD_BNPC_boss_01','s1b5','bnpc4328980',4328980,-6.277450,50.005749,-5.304218,-0.000000,2283,0,0,0,0,6,0,0,1482,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,4466,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93033,'LVD_BNPC_boss_01','s1b5','bnpc4374661',4374661,7.752398,50.048420,1.972908,-0.000000,2286,0,0,0,0,6,0,0,1482,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4200,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85774,'LVD_bnpc_00','s1d1','bnpc4035011',4035011,68.714020,31.262911,-44.236469,-0.297283,411,0,0,0,0,6,0,0,1204,0,0.000000,15,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,51592,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85774,'LVD_bnpc_00','s1d1','bnpc3282344',3282344,-95.027527,19.999880,194.592300,-0.039421,412,0,0,0,0,6,0,0,342,0,0.000000,15,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,51326,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85774,'LVD_bnpc_00','s1d1','bnpc3978771',3978771,-334.287415,5.576682,318.569000,1.438496,417,0,0,0,0,6,0,0,1206,0,0.000000,15,0,120,1,0,210,0,50,4,0,1,0,0,0,0.000000,1.000000,51060,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85774,'LVD_bnpc_00','s1d1','bnpc3978761',3978761,-305.147888,5.829985,299.997803,-1.570451,418,0,0,0,1,6,0,0,1207,0,0.000000,15,0,120,1,0,210,0,50,4,0,1,0,0,0,0.000000,1.000000,50794,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85774,'LVD_bnpc_00','s1d1','bnpc3978770',3978770,-305.112915,5.829985,336.003815,-1.570451,418,0,0,0,1,6,0,0,1207,0,0.000000,15,0,120,1,0,210,0,50,4,0,1,0,0,0,0.000000,1.000000,50522,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85774,'LVD_bnpc_00','s1d1','bnpc4064937',4064937,-334.837402,5.829985,300.000000,1.570451,418,0,0,0,1,6,0,0,1207,0,0.000000,15,0,120,1,0,210,0,50,4,0,1,0,0,0,0.000000,1.000000,50250,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85774,'LVD_bnpc_00','s1d1','bnpc4064938',4064938,-335.071198,5.829985,336.013885,1.570451,418,0,0,0,1,6,0,0,1207,0,0.000000,15,0,120,1,0,210,0,50,4,0,1,0,0,0,0.000000,1.000000,49978,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85774,'LVD_bnpc_00','s1d1','bnpc3988325',3988325,-31.510839,23.739281,58.971420,1.124208,413,0,0,0,0,6,0,0,1382,0,0.000000,15,0,120,1,0,151,0,50,2,0,1,0,1,0,0.000000,1.000000,49712,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85774,'LVD_bnpc_00','s1d1','bnpc4035056',4035056,-185.757904,6.681276,247.768204,0.300186,416,0,0,0,0,6,0,0,1382,0,0.000000,15,0,120,1,0,180,0,50,2,0,1,0,1,0,0.000000,1.000000,49446,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85774,'LVD_bnpc_00','s1d1','bnpc4334189',4334189,-318.370789,5.576687,306.648712,-1.417244,2281,0,0,0,0,6,0,0,1382,0,0.000000,15,0,120,1,0,0,0,0,0,0,1,0,1,0,0.000000,1.000000,49180,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85774,'LVD_bnpc_00','s1d1','bnpc4192074',4192074,-33.692268,24.716360,59.039989,1.104324,1436,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,48914,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85774,'LVD_bnpc_00','s1d1','bnpc4192083',4192083,-186.889099,8.390895,248.130493,0.837554,1436,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,48642,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85774,'LVD_bnpc_00','s1d1','bnpc4334190',4334190,-317.320709,5.576687,307.102997,-1.186979,1436,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,48370,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc3637470',3637470,181.670898,32.812641,-127.665497,-0.000048,269,0,0,0,0,6,0,0,1208,0,0.000000,15,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47960,1,0,0,4208408,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc3637472',3637472,166.059006,31.401970,-127.814102,-0.000000,269,0,0,0,0,6,0,0,1208,0,0.000000,15,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47688,1,0,0,4208409,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc3637473',3637473,158.238495,29.259871,-76.402557,-0.000000,269,0,0,0,0,6,0,0,1208,0,0.000000,15,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47416,1,0,0,4208410,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc3637474',3637474,125.692299,29.951130,-52.476830,-0.000000,269,0,0,0,0,6,0,0,1208,0,0.000000,15,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47144,1,0,0,4208411,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc3637475',3637475,126.057098,29.601589,-99.214783,-0.000000,269,0,0,0,0,6,0,0,1208,0,0.000000,15,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46872,1,0,0,4208412,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc3637476',3637476,97.419167,27.753550,-69.753067,-0.000000,269,0,0,0,0,6,0,0,1208,0,0.000000,15,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46600,1,0,0,4208413,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc3281765',3281765,183.632797,32.275799,-125.972099,-0.000144,942,0,0,0,0,6,0,0,1209,0,0.000000,12,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46334,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc3425506',3425506,164.927307,30.878901,-125.409897,-0.000000,942,0,0,0,0,6,0,0,1209,0,0.000000,12,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46062,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc3425507',3425507,155.632202,28.583900,-76.621597,-0.000000,942,0,0,0,0,6,0,0,1209,0,0.000000,12,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45790,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc3425508',3425508,126.573502,29.443541,-54.916161,-0.000000,942,0,0,0,0,6,0,0,1209,0,0.000000,12,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45518,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc3425509',3425509,126.018204,29.100130,-96.673027,-0.000000,942,0,0,0,0,6,0,0,1209,0,0.000000,12,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45246,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc3425510',3425510,98.967216,27.253851,-67.651604,-0.000000,942,0,0,0,0,6,0,0,1209,0,0.000000,12,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44974,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc4191890',4191890,152.271500,28.746571,-76.725807,-0.000000,942,0,0,0,1,6,0,0,1209,0,0.000000,12,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44702,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc4191892',4191892,125.529999,28.599390,-56.754070,-0.000000,942,0,0,0,1,6,0,0,1209,0,0.000000,12,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44430,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc4191893',4191893,128.253204,28.390051,-57.906219,-0.000000,942,0,0,0,1,6,0,0,1209,0,0.000000,12,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44158,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc4191894',4191894,103.016296,26.274509,-59.874500,-0.000000,942,0,0,0,1,6,0,0,1209,0,0.000000,12,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43886,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc4191895',4191895,103.476097,26.793550,-63.028950,-0.000000,942,0,0,0,1,6,0,0,1209,0,0.000000,12,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43614,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc4191896',4191896,100.404602,26.773880,-64.967346,-0.000000,942,0,0,0,1,6,0,0,1209,0,0.000000,12,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43342,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80374,'LVD_bnpc_01','s1d1','bnpc4191897',4191897,103.563103,27.706770,-68.121803,-0.000000,942,0,0,0,1,6,0,0,1209,0,0.000000,12,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43070,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80949,'LVD_bnpc_ph1_1','s1d1','bnpc3725388',3725388,324.378510,43.693790,-222.837906,1.130001,1037,0,0,0,1,6,0,0,38,0,0.000000,15,0,120,1,0,100,0,50,1,0,1,0,1,0,0.000000,1.000000,42700,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80949,'LVD_bnpc_ph1_1','s1d1','bnpc3725390',3725390,329.482605,44.452869,-210.422897,-0.147422,1037,0,0,0,1,6,0,0,38,0,0.000000,15,0,120,1,0,100,0,50,1,0,1,0,1,0,0.000000,1.000000,42428,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80949,'LVD_bnpc_ph1_1','s1d1','bnpc3726787',3726787,310.276093,46.441952,-163.621597,0.594939,1037,0,0,0,0,6,0,0,38,0,0.000000,15,0,120,1,0,101,0,50,2,0,1,0,1,0,0.000000,1.000000,42156,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80949,'LVD_bnpc_ph1_1','s1d1','bnpc3725392',3725392,302.008209,47.155479,-168.970596,1.310970,1037,0,0,0,0,6,0,0,38,0,0.000000,15,0,120,1,0,101,0,50,2,0,1,0,1,0,0.000000,1.000000,41884,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80949,'LVD_bnpc_ph1_1','s1d1','bnpc3725423',3725423,267.421997,45.726028,-206.636902,0.249498,1037,0,0,0,1,6,0,0,38,0,0.000000,15,0,120,1,0,102,0,50,2,0,1,0,1,0,0.000000,1.000000,41612,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80949,'LVD_bnpc_ph1_1','s1d1','bnpc3725425',3725425,263.554291,46.455059,-196.807800,1.422021,1037,0,0,0,1,6,0,0,38,0,0.000000,15,0,120,1,0,102,0,50,2,0,1,0,1,0,0.000000,1.000000,41340,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80949,'LVD_bnpc_ph1_1','s1d1','bnpc3725818',3725818,271.453613,45.504711,-200.075607,0.862851,1038,0,0,0,1,6,0,0,1210,0,0.000000,15,0,120,1,0,102,0,50,2,0,1,0,1,0,0.000000,1.000000,41074,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80949,'LVD_bnpc_ph1_1','s1d1','bnpc3725820',3725820,228.315094,43.871861,-186.565399,0.896050,1038,0,0,0,1,6,0,0,1210,0,0.000000,15,0,120,1,0,103,0,50,1,0,1,0,1,0,0.000000,1.000000,40802,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80949,'LVD_bnpc_ph1_1','s1d1','bnpc3725822',3725822,227.973007,40.577389,-177.101196,-0.667478,1038,0,0,0,1,6,0,0,1210,0,0.000000,15,0,120,1,0,103,0,50,1,0,1,0,1,0,0.000000,1.000000,40530,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82676,'LVD_bnpc_ph1_2','s1d1','bnpc3725935',3725935,180.372192,26.274250,-103.699097,1.339028,1039,0,0,0,1,5,0,0,1211,0,0.000000,15,0,120,1,0,104,0,50,1,0,1,0,1,0,0.000000,1.000000,40160,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82676,'LVD_bnpc_ph1_2','s1d1','bnpc3796131',3796131,152.863602,28.559820,-97.146278,-0.000048,1039,0,0,0,1,5,0,0,1211,0,0.000000,15,0,120,1,0,105,0,50,2,0,1,0,1,0,0.000000,1.000000,39888,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82676,'LVD_bnpc_ph1_2','s1d1','bnpc3796133',3796133,152.889496,28.398470,-99.580933,0.545722,1039,0,0,0,1,5,0,0,1211,0,0.000000,15,0,120,1,0,105,0,50,2,0,1,0,1,0,0.000000,1.000000,39616,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82676,'LVD_bnpc_ph1_2','s1d1','bnpc3796115',3796115,141.112305,26.274771,-68.933952,1.319483,1039,0,0,0,1,5,0,0,1211,0,0.000000,15,0,120,1,0,106,0,50,2,0,1,0,1,0,0.000000,1.000000,39344,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82676,'LVD_bnpc_ph1_2','s1d1','bnpc3796116',3796116,127.513603,26.274771,-68.295486,0.456654,1040,0,0,0,1,5,0,0,1212,0,0.000000,15,0,120,1,0,106,0,50,2,0,1,0,1,0,0.000000,1.000000,39078,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82676,'LVD_bnpc_ph1_2','s1d1','bnpc3796129',3796129,199.304504,27.299391,-96.726593,0.934104,1038,0,0,0,1,5,0,0,1210,0,0.000000,15,0,120,1,0,104,0,50,1,0,1,0,1,0,0.000000,1.000000,38794,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82676,'LVD_bnpc_ph1_2','s1d1','bnpc3796117',3796117,123.784599,26.881430,-91.997864,-0.065243,1038,0,0,0,1,5,0,0,1210,0,0.000000,15,0,120,1,0,106,0,50,2,0,1,0,1,0,0.000000,1.000000,38522,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82676,'LVD_bnpc_ph1_2','s1d1','bnpc4217967',4217967,76.820900,29.097620,-51.588470,-0.150021,1038,0,0,0,1,5,0,0,1210,0,0.000000,15,0,120,1,0,0,0,0,1,0,1,0,0,0,0.000000,1.000000,38250,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82676,'LVD_bnpc_ph1_2','s1d1','bnpc4217968',4217968,76.820900,29.097620,-51.588470,-0.150021,1038,0,0,0,1,5,0,0,1210,0,0.000000,15,0,120,1,0,0,0,0,1,0,1,0,0,0,0.000000,1.000000,37978,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3981889',3981889,-4.969838,24.008780,3.728717,1.390345,982,0,0,0,2,6,0,0,344,0,0.000000,15,0,120,1,0,150,0,50,2,0,1,0,1,0,0.000000,1.000000,37504,1,3,2000,0,0,30096,4138167,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4106354',4106354,-101.859703,13.900010,112.156197,0.242798,1036,0,0,0,0,6,0,0,348,0,0.000000,15,0,120,1,0,156,0,50,1,0,1,0,1,0,0.000000,1.000000,37238,1,3,2000,0,0,30072,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3981865',3981865,-89.237518,15.600010,128.545593,0.405315,1035,0,0,0,0,6,0,0,342,0,0.000000,15,0,120,1,0,153,0,50,2,0,1,0,1,0,0.000000,1.000000,36972,1,3,2000,0,0,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3981860',3981860,-89.860413,15.548890,122.209503,0.287434,1036,0,0,0,0,6,0,0,348,0,0.000000,15,0,120,1,0,153,0,50,2,0,1,0,1,0,0.000000,1.000000,36694,1,3,2000,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3981862',3981862,-89.219543,15.548890,119.127197,0.636468,981,0,0,0,0,6,0,0,346,0,0.000000,15,0,120,1,0,153,0,50,2,0,1,0,1,0,0.000000,1.000000,36434,1,3,2000,0,0,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4106627',4106627,-75.700012,13.687320,104.936302,1.147723,982,0,0,0,5,6,0,0,344,0,0.000000,15,0,120,1,0,152,0,0,0,0,1,0,0,0,0.000000,1.000000,36144,1,3,2000,0,0,0,4138410,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3981872',3981872,-105.091698,15.701480,120.740402,0.037590,982,0,0,0,0,6,0,0,344,0,0.000000,15,0,120,1,0,154,0,0,2,0,1,0,0,0,0.000000,1.000000,35872,1,3,2000,0,0,30066,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3981884',3981884,-97.964218,19.577271,65.212860,-1.333319,1034,0,0,0,0,6,0,0,344,0,0.000000,15,0,120,1,0,159,0,50,1,0,1,0,1,0,0.000000,1.000000,35624,1,3,2000,0,0,30069,4138355,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4056166',4056166,-40.062069,16.037821,160.880096,0.199092,985,0,0,0,0,6,0,0,346,0,0.000000,15,0,120,1,0,158,0,50,1,0,1,0,1,0,0.000000,1.000000,35358,1,3,2000,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4056165',4056165,-37.895260,15.988620,160.056198,-1.329989,984,0,0,0,0,6,0,0,348,0,0.000000,15,0,120,1,0,158,0,50,1,0,1,0,1,0,0.000000,1.000000,35092,1,3,2000,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4056179',4056179,-101.077003,19.577271,66.322502,1.193069,1036,0,0,0,0,6,0,0,348,0,0.000000,15,0,120,1,0,159,0,50,1,0,1,0,1,0,0.000000,1.000000,34790,1,3,2000,0,0,30075,4138399,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3981888',3981888,-27.817200,23.248880,60.746090,1.019537,1006,0,0,0,0,6,0,0,342,0,0.000000,15,0,120,1,0,151,0,50,2,0,1,0,1,0,0.000000,1.000000,34554,1,3,2000,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3981887',3981887,-30.289249,23.421921,55.710571,1.226599,1006,0,0,0,0,6,0,0,342,0,0.000000,15,0,120,1,0,151,0,50,2,0,1,0,1,0,0.000000,1.000000,34282,1,3,2000,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3982023',3982023,6.764060,23.950741,1.784049,1.404283,1065,0,0,0,2,6,0,0,1205,0,0.000000,15,0,120,1,0,150,0,50,2,0,1,0,1,0,0.000000,1.000000,34016,1,3,2000,0,0,0,4138319,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3982024',3982024,13.757630,23.428280,1.114482,1.189120,1065,0,0,0,2,6,0,0,1205,0,0.000000,15,0,120,1,0,150,0,50,2,0,1,0,1,0,0.000000,1.000000,33744,1,3,2000,0,0,0,4138323,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4106638',4106638,-101.213097,14.267150,152.269806,-1.380604,1066,0,0,0,2,6,0,0,1205,0,0.000000,15,0,120,1,0,160,0,50,1,0,1,0,1,0,0.000000,1.000000,33478,1,3,2000,0,0,0,4176432,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4106641',4106641,-101.782204,13.900010,110.397301,0.058628,1066,0,0,0,0,6,0,0,1205,0,0.000000,15,0,120,1,0,156,0,50,1,0,1,0,1,0,0.000000,1.000000,33206,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3981878',3981878,-95.561737,13.870360,147.650299,0.218213,1069,0,0,0,0,6,0,0,346,0,0.000000,15,0,120,1,0,160,0,50,1,0,1,0,1,0,0.000000,1.000000,32940,1,3,2000,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3981864',3981864,-128.343704,16.037170,157.915604,0.753771,983,0,0,0,0,6,0,0,342,0,0.000000,15,0,120,1,0,161,0,50,1,0,1,0,1,0,0.000000,1.000000,32674,1,3,2000,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3981843',3981843,-128.587799,15.793030,152.788605,1.270827,983,0,0,0,0,6,0,0,342,0,0.000000,15,0,120,1,0,161,0,50,1,0,1,0,1,0,0.000000,1.000000,32402,1,3,2000,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3981883',3981883,-97.489929,19.668819,170.000702,0.351767,983,0,0,0,0,6,0,0,342,0,0.000000,15,0,120,1,0,162,0,50,1,0,1,0,1,0,0.000000,1.000000,32130,1,3,2000,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3981886',3981886,-93.186890,19.302610,168.383301,-0.091369,983,0,0,0,0,6,0,0,342,0,0.000000,15,0,120,1,0,162,0,50,1,0,1,0,1,0,0.000000,1.000000,31858,1,3,2000,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4056188',4056188,-163.958298,16.037170,96.513313,1.192257,1036,0,0,0,0,6,0,0,348,0,0.000000,15,0,120,1,0,163,0,50,1,0,1,0,1,0,0.000000,1.000000,31526,1,3,2000,0,0,30078,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4056186',4056186,-157.915604,16.128719,92.851067,-0.158386,982,0,0,0,0,6,0,0,344,0,0.000000,15,0,120,1,0,163,0,50,1,0,1,0,1,0,0.000000,1.000000,31248,1,3,2000,0,0,30082,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4056171',4056171,-158.587006,19.302610,126.420898,1.210665,988,0,0,0,0,6,0,0,348,0,0.000000,15,0,120,1,0,164,0,50,1,0,1,0,1,0,0.000000,1.000000,31048,1,3,2000,0,0,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4056170',4056170,-157.396805,19.577271,129.899994,-0.509577,987,0,0,0,0,6,0,0,342,0,0.000000,15,0,120,1,0,164,0,50,1,0,1,0,1,0,0.000000,1.000000,30782,1,3,2000,0,0,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4138739',4138739,-7.217590,20.096069,120.744598,-1.223224,1318,0,0,0,0,6,0,0,346,0,0.000000,15,0,120,1,0,170,0,50,2,0,1,0,1,0,0.000000,1.000000,30516,1,3,2000,0,0,30071,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4142091',4142091,-8.590881,20.096069,111.345100,-0.247262,1319,0,0,0,0,6,0,0,344,0,0.000000,15,0,120,1,0,170,0,50,2,0,1,0,1,0,0.000000,1.000000,30250,1,3,2000,0,0,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4142092',4142092,-9.720032,20.096069,119.401703,1.307690,1322,0,0,0,0,6,0,0,344,0,0.000000,15,0,120,1,0,170,0,50,2,0,1,0,1,0,0.000000,1.000000,29984,1,3,2000,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4142094',4142094,-14.908140,20.096069,105.821297,1.358792,1320,0,0,0,0,6,0,0,346,0,0.000000,15,0,120,1,0,171,0,50,2,0,1,0,1,0,0.000000,1.000000,29718,1,3,2000,0,0,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4142095',4142095,-7.339661,20.096069,106.645302,-1.162056,1321,0,0,0,0,6,0,0,344,0,0.000000,15,0,120,1,0,171,0,50,2,0,1,0,1,0,0.000000,1.000000,29452,1,3,2000,0,0,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4142096',4142096,-16.006710,20.096069,107.255600,1.424802,1323,0,0,0,0,6,0,0,344,0,0.000000,15,0,120,1,0,171,0,50,2,0,1,0,1,0,0.000000,1.000000,29186,1,3,2000,0,0,30071,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3988324',3988324,-185.137802,6.515503,242.084396,0.583305,1006,0,0,0,0,6,0,0,342,0,0.000000,15,0,120,1,0,180,0,50,2,0,1,0,1,0,0.000000,1.000000,28842,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3978797',3978797,-180.102295,6.118835,246.295807,0.583305,1006,0,0,0,0,6,0,0,342,0,0.000000,15,0,120,1,0,180,0,50,2,0,1,0,1,0,0.000000,1.000000,28570,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4087815',4087815,-146.868195,8.102478,254.779800,-1.496948,414,0,0,0,1,6,0,0,1205,0,0.000000,15,0,120,1,0,181,0,50,3,0,1,0,0,0,0.000000,1.000000,28376,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3988322',3988322,-138.984695,8.091434,256.912689,0.897676,414,0,0,0,1,6,0,0,1205,0,0.000000,15,0,120,1,0,181,0,50,3,0,1,0,0,0,0.000000,1.000000,28104,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc4087814',4087814,-131.944794,7.644714,258.899811,-0.821747,414,0,0,0,1,6,0,0,1205,0,0.000000,15,0,120,1,0,181,0,50,3,0,1,0,0,0,0.000000,1.000000,27832,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82746,'LVD_bnpc_ph2_1','s1d1','bnpc3988323',3988323,-129.686493,7.919373,250.751495,-0.836080,415,0,0,0,1,6,0,0,1205,0,0.000000,15,0,120,1,0,181,0,50,3,0,1,0,0,0,0.000000,1.000000,27566,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82747,'LVD_bnpc_ph3_1','s1d1','bnpc4125433',4125433,-237.200104,6.183418,260.470612,1.537370,1065,0,0,0,2,6,0,0,1205,0,0.000000,15,0,120,1,0,200,0,50,2,0,1,0,1,0,0.000000,1.000000,27088,1,3,2000,0,0,0,4195909,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82747,'LVD_bnpc_ph3_1','s1d1','bnpc3978776',3978776,-244.794693,5.599948,254.410202,0.645741,983,0,0,0,0,6,0,0,342,0,0.000000,15,0,120,1,0,200,0,50,2,0,1,0,1,0,0.000000,1.000000,26834,1,3,2000,0,0,30072,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82747,'LVD_bnpc_ph3_1','s1d1','bnpc3978779',3978779,-233.386795,5.691528,262.104187,0.962156,1036,0,0,0,0,6,0,0,348,0,0.000000,15,0,120,1,0,200,0,50,2,0,1,0,1,0,0.000000,1.000000,26502,1,3,2000,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82747,'LVD_bnpc_ph3_1','s1d1','bnpc3978783',3978783,-272.779785,5.813663,265.839813,-0.197599,1036,0,0,0,0,6,0,0,348,0,0.000000,15,0,120,1,0,201,0,50,2,0,1,0,1,0,0.000000,1.000000,26230,1,3,2000,0,0,30078,4138183,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82747,'LVD_bnpc_ph3_1','s1d1','bnpc3978784',3978784,-250.590607,7.624407,273.832611,1.219414,982,0,0,0,0,6,0,0,344,0,0.000000,15,0,120,1,0,201,0,50,2,0,1,0,1,0,0.000000,1.000000,25952,1,3,2000,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82747,'LVD_bnpc_ph3_1','s1d1','bnpc3978786',3978786,-277.424286,5.813660,257.160187,-1.353279,985,0,0,0,0,6,0,0,346,0,0.000000,15,0,120,1,0,201,0,50,2,0,1,0,1,0,0.000000,1.000000,25710,1,3,2000,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82747,'LVD_bnpc_ph3_1','s1d1','bnpc3978788',3978788,-301.951202,5.822161,273.337402,0.445140,985,0,0,0,2,6,0,0,346,0,0.000000,15,0,120,1,0,202,0,50,2,0,1,0,1,0,0.000000,1.000000,25438,1,3,2000,0,0,0,4195910,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82747,'LVD_bnpc_ph3_1','s1d1','bnpc3978789',3978789,-302.235504,5.569519,276.050903,0.559528,1033,0,0,0,0,6,0,0,346,0,0.000000,15,0,120,1,0,202,0,50,2,0,1,0,1,0,0.000000,1.000000,25268,1,3,2000,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82747,'LVD_bnpc_ph3_1','s1d1','bnpc3978790',3978790,-297.133789,5.576686,276.317413,-0.171763,981,0,0,0,0,6,0,0,346,0,0.000000,15,0,120,1,0,202,0,50,2,0,1,0,1,0,0.000000,1.000000,24882,1,3,2000,0,0,30065,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82747,'LVD_bnpc_ph3_1','s1d1','bnpc4125434',4125434,-288.162109,5.813660,235.370300,0.982880,1065,0,0,0,0,6,0,0,1205,0,0.000000,15,0,120,1,0,203,0,50,2,0,1,0,1,0,0.000000,1.000000,24640,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82747,'LVD_bnpc_ph3_1','s1d1','bnpc3978791',3978791,-272.791687,5.642195,243.106201,1.173219,1035,0,0,0,0,6,0,0,342,0,0.000000,15,0,120,1,0,203,0,50,2,0,1,0,1,0,0.000000,1.000000,24332,1,3,2000,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82747,'LVD_bnpc_ph3_1','s1d1','bnpc3978792',3978792,-284.443512,5.813660,244.342697,-0.490066,987,0,0,0,0,6,0,0,342,0,0.000000,15,0,120,1,0,203,0,50,2,0,1,0,1,0,0.000000,1.000000,24126,1,3,2000,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82747,'LVD_bnpc_ph3_1','s1d1','bnpc3978795',3978795,-310.736908,4.794249,252.141403,0.242760,1034,0,0,0,0,6,0,0,344,0,0.000000,15,0,120,1,0,204,0,50,2,0,1,0,1,0,0.000000,1.000000,23800,1,3,2000,0,0,30072,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82747,'LVD_bnpc_ph3_1','s1d1','bnpc3978793',3978793,-311.885590,6.057800,247.429901,0.437814,1033,0,0,0,0,6,0,0,346,0,0.000000,15,0,120,1,0,204,0,50,2,0,1,0,1,0,0.000000,1.000000,23636,1,3,2000,0,0,30068,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82747,'LVD_bnpc_ph3_1','s1d1','bnpc3978794',3978794,-308.433594,5.243466,250.738998,-1.061235,981,0,0,0,0,6,0,0,346,0,0.000000,15,0,120,1,0,204,0,50,2,0,1,0,1,0,0.000000,1.000000,23250,1,3,2000,0,0,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977676',3977676,100.989700,0.436343,22.582060,1.189950,1042,0,0,0,1,6,0,0,1288,0,0.000000,32,0,120,1,0,13,0,30,2,0,1,0,1,0,0.000000,1.000000,43028,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977692',3977692,80.103203,4.722785,-104.218300,-0.398241,1044,0,0,0,1,6,0,0,1290,0,0.000000,32,0,120,1,0,22,0,30,1,0,1,0,1,0,0.000000,1.000000,42762,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977697',3977697,37.186161,8.595814,-150.469193,0.564561,1044,0,0,0,1,6,0,0,1290,0,0.000000,32,0,120,1,0,24,0,30,2,0,1,0,1,0,0.000000,1.000000,42490,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977698',3977698,33.707150,8.595814,-143.175400,1.236120,1044,0,0,0,1,6,0,0,1290,0,0.000000,32,0,120,1,0,24,0,30,2,0,1,0,1,0,0.000000,1.000000,42218,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977699',3977699,23.117371,15.952280,-66.331047,-0.726016,1044,0,0,0,1,6,0,0,1290,0,0.000000,32,0,120,1,0,25,0,27,2,0,1,0,1,0,0.000000,1.000000,41946,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977701',3977701,25.741940,15.793750,-62.973999,-1.506648,1044,0,0,0,1,6,0,0,1290,0,0.000000,32,0,120,1,0,25,0,27,2,0,1,0,1,0,0.000000,1.000000,41674,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977704',3977704,61.173340,3.250122,-64.866089,0.467440,1044,0,0,0,1,6,0,0,1290,0,0.000000,32,0,120,1,0,23,0,18,1,0,1,0,1,0,0.000000,1.000000,41402,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977705',3977705,68.711304,3.189148,-64.744080,-0.317874,1044,0,0,0,1,6,0,0,1290,0,0.000000,32,0,120,1,0,23,0,18,1,0,1,0,1,0,0.000000,1.000000,41130,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977761',3977761,-70.105309,14.825160,-124.754997,-0.568588,1044,0,0,0,1,6,0,0,1290,0,0.000000,32,0,120,1,0,41,0,30,2,0,1,0,1,0,0.000000,1.000000,40858,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977763',3977763,-81.197220,15.043590,-130.498001,-0.602145,1044,0,0,0,1,6,0,0,1290,0,0.000000,32,0,120,1,0,41,0,30,2,0,1,0,1,0,0.000000,1.000000,40586,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977768',3977768,-45.842869,17.988859,-137.550507,-1.144463,1044,0,0,0,2,6,0,0,1290,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,40314,1,3,2000,0,0,0,4214257,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3992800',3992800,-116.634697,16.291809,-147.608704,0.809937,1044,0,0,0,1,6,0,0,1290,0,0.000000,32,0,120,1,0,44,0,30,2,0,1,0,1,0,0.000000,1.000000,40042,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3992801',3992801,-105.815102,16.401449,-141.775101,0.584607,1044,0,0,0,1,6,0,0,1290,0,0.000000,32,0,120,1,0,44,0,30,2,0,1,0,1,0,0.000000,1.000000,39770,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3992762',3992762,52.447781,1.109499,17.061590,1.119583,1043,0,0,0,1,6,0,0,1289,0,0.000000,32,0,120,1,0,12,0,30,2,0,1,0,1,0,0.000000,1.000000,39504,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3992763',3992763,61.445389,1.054245,16.847620,-0.726207,1043,0,0,0,1,6,0,0,1289,0,0.000000,32,0,120,1,0,12,0,30,2,0,1,0,1,0,0.000000,1.000000,39232,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3992785',3992785,-62.908871,-0.327094,35.666851,1.428542,1047,0,0,0,1,6,0,0,1293,0,0.000000,32,0,120,1,0,31,0,30,2,0,1,0,1,0,0.000000,1.000000,38966,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3997347',3997347,-106.279198,-1.632751,-5.081299,-0.000048,1048,0,0,0,1,6,0,0,1294,0,0.000000,32,0,120,1,0,34,0,30,2,0,1,0,1,0,0.000000,1.000000,38700,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3992779',3992779,-51.762589,-2.182068,-3.089748,1.524227,1049,0,0,0,2,6,0,0,1295,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,38434,1,3,2000,0,0,0,4217046,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3992780',3992780,-20.953110,-2.123103,-12.249960,1.374388,1049,0,0,0,2,6,0,0,1295,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,38162,1,3,2000,0,0,0,4214247,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3992795',3992795,-58.457340,-0.045776,119.707001,-0.820596,1050,0,0,0,1,6,0,0,1296,0,0.000000,32,0,120,1,0,36,0,30,1,0,1,0,1,0,0.000000,1.000000,37896,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3992796',3992796,17.227421,-0.045776,75.486328,-1.403374,1050,0,0,0,1,6,0,0,1296,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,37624,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977776',3977776,-159.868805,6.332458,-124.010101,1.312916,1051,0,0,0,0,6,0,0,1297,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,37358,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3997317',3997317,40.085331,5.569519,-107.682999,-0.527218,1045,0,0,0,1,6,0,0,1292,0,0.000000,32,0,120,1,0,26,0,30,2,0,1,0,1,0,0.000000,1.000000,37092,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3992793',3992793,-55.191891,-0.045776,125.291702,0.882963,1041,0,0,0,1,6,0,0,1287,0,0.000000,32,0,120,1,0,36,0,30,1,0,1,0,1,0,0.000000,1.000000,36826,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3997350',3997350,-102.037102,-1.388611,8.712891,0.426501,1047,0,0,0,1,6,0,0,1293,0,0.000000,32,0,120,1,0,34,0,30,2,0,1,0,1,0,0.000000,1.000000,36518,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977762',3977762,-77.073799,14.511750,-125.274002,-0.337721,1045,0,0,0,0,6,0,0,1292,0,0.000000,32,0,120,1,0,41,0,30,2,0,1,0,1,0,0.000000,1.000000,36276,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977774',3977774,-95.263458,20.629009,-175.365097,0.489683,1045,0,0,0,1,6,0,0,1292,0,0.000000,32,0,120,1,0,43,0,30,1,0,1,0,1,0,0.000000,1.000000,36004,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4186437',4186437,86.059662,-0.952379,47.998631,0.952830,1041,0,0,0,1,6,0,0,1287,0,0.000000,32,0,120,1,0,11,0,30,1,0,1,0,1,0,0.000000,1.000000,35738,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4186440',4186440,56.333248,1.279437,26.136770,-0.024791,1041,0,0,0,1,6,0,0,1287,0,0.000000,32,0,120,1,0,12,0,30,2,0,1,0,1,0,0.000000,1.000000,35466,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3992786',3992786,-73.746483,-0.856528,28.139391,1.428542,1043,0,0,0,1,6,0,0,1289,0,0.000000,32,0,120,1,0,31,0,30,2,0,1,0,1,0,0.000000,1.000000,35152,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3992787',3992787,-49.111660,-1.614816,40.973171,1.428542,1043,0,0,0,1,6,0,0,1289,0,0.000000,32,0,120,1,0,31,0,30,2,0,1,0,1,0,0.000000,1.000000,34880,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977766',3977766,-106.836700,20.669861,-178.534805,-1.072029,1046,0,0,0,1,6,0,0,1291,0,0.000000,32,0,120,1,0,43,0,30,1,0,1,0,1,0,0.000000,1.000000,34656,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977773',3977773,-66.567711,16.407789,-155.580200,0.602720,1046,0,0,0,1,6,0,0,1291,0,0.000000,32,0,120,1,0,42,0,30,1,0,1,0,1,0,0.000000,1.000000,34384,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3992769',3992769,87.937737,4.959106,-71.427551,-1.466747,1046,0,0,0,1,6,0,0,1291,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34112,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977691',3977691,78.213097,4.929524,-99.461769,1.239704,1044,0,0,0,1,6,0,0,1290,0,0.000000,32,0,120,1,0,22,0,30,1,0,1,0,1,0,0.000000,1.000000,33786,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977672',3977672,97.520393,0.287726,13.748350,1.132913,1043,0,0,0,1,6,0,0,1289,0,0.000000,32,0,120,1,0,13,0,30,2,0,1,0,1,0,0.000000,1.000000,33520,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977673',3977673,108.297798,0.293726,17.257500,-0.858515,1043,0,0,0,1,6,0,0,1289,0,0.000000,32,0,120,1,0,13,0,30,2,0,1,0,1,0,0.000000,1.000000,33248,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977696',3977696,32.425419,8.590759,-148.180405,1.093026,1044,0,0,0,1,6,0,0,1290,0,0.000000,32,0,120,1,0,24,0,30,2,0,1,0,1,0,0.000000,1.000000,32970,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3997318',3997318,37.949100,5.538940,-98.374939,-0.607514,1044,0,0,0,1,6,0,0,1290,0,0.000000,32,0,120,1,0,26,0,30,2,0,1,0,1,0,0.000000,1.000000,32698,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3997319',3997319,46.829960,5.416931,-102.800102,1.454523,1044,0,0,0,1,6,0,0,1290,0,0.000000,32,0,120,1,0,26,0,30,2,0,1,0,1,0,0.000000,1.000000,32426,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977700',3977700,22.934271,15.640440,-58.640499,-0.765468,1044,0,0,0,1,6,0,0,1290,0,0.000000,32,0,120,1,0,25,0,27,2,0,1,0,1,0,0.000000,1.000000,32154,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3977769',3977769,-65.923759,16.352461,-148.533295,-0.090479,1044,0,0,0,1,6,0,0,1290,0,0.000000,32,0,120,1,0,42,0,30,1,0,1,0,1,0,0.000000,1.000000,31882,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3992803',3992803,-116.258499,12.954900,-134.935501,0.519836,1045,0,0,0,1,6,0,0,1292,0,0.000000,32,0,120,1,0,44,0,30,2,0,1,0,1,0,0.000000,1.000000,31652,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4214237',4214237,76.918411,0.091562,52.322651,1.119583,1043,0,0,0,1,6,0,0,1289,0,0.000000,32,0,120,1,0,11,0,30,1,0,1,0,1,0,0.000000,1.000000,31344,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4214240',4214240,-61.706638,-2.182068,-18.010590,0.717772,1048,0,0,0,1,6,0,0,1294,0,0.000000,32,0,120,1,0,37,0,30,1,0,1,0,1,0,0.000000,1.000000,31084,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4214272',4214272,-5.478088,-2.182068,16.555969,0.921937,1049,0,0,0,2,6,0,0,1295,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30818,1,3,2000,0,0,0,4214248,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4214276',4214276,-93.821114,-2.182068,57.410080,1.260545,1049,0,0,0,2,6,0,0,1295,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30546,1,3,2000,0,0,0,4217061,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4214277',4214277,-64.426163,-2.182068,58.594688,1.419508,1049,0,0,0,2,6,0,0,1295,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30274,1,3,2000,0,0,0,4214249,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4214278',4214278,-91.034813,-2.182068,13.468040,0.894412,1049,0,0,0,2,6,0,0,1295,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30002,1,3,2000,0,0,0,4214254,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4214279',4214279,-110.320297,-2.182068,25.453300,0.868467,1049,0,0,0,2,6,0,0,1295,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29730,1,3,2000,0,0,0,4217073,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4214283',4214283,-24.124571,-2.182068,16.922239,-0.530765,1048,0,0,0,0,6,0,0,1294,0,0.000000,32,0,120,1,0,33,0,30,1,0,1,0,1,0,0.000000,1.000000,29452,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4214284',4214284,-15.701600,-2.182068,28.732670,0.865322,1048,0,0,0,1,6,0,0,1294,0,0.000000,32,0,120,1,0,33,0,30,1,0,1,0,1,0,0.000000,1.000000,29180,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4332695',4332695,-34.836399,-2.182068,-16.745260,-0.000048,1048,0,0,0,1,6,0,0,1294,0,0.000000,32,0,120,1,0,32,0,30,1,0,1,0,1,0,0.000000,1.000000,28908,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4332696',4332696,-31.079800,-2.182068,-2.894458,-0.783396,1048,0,0,0,1,6,0,0,1294,0,0.000000,32,0,120,1,0,32,0,30,1,0,1,0,1,0,0.000000,1.000000,28636,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4332699',4332699,-76.226997,-2.182068,3.850793,-0.783396,1048,0,0,0,1,6,0,0,1294,0,0.000000,32,0,120,1,0,38,0,30,1,0,1,0,1,0,0.000000,1.000000,28364,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4332702',4332702,-81.730507,-0.814644,79.151787,-0.783396,1043,0,0,0,1,6,0,0,1289,0,0.000000,32,0,120,1,0,39,0,30,1,0,1,0,1,0,0.000000,1.000000,28080,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4332703',4332703,-81.320953,-1.326119,67.601646,-0.000048,1043,0,0,0,1,6,0,0,1289,0,0.000000,32,0,120,1,0,39,0,30,1,0,1,0,1,0,0.000000,1.000000,27808,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc3997341',3997341,-57.487980,-2.182068,-7.864814,-0.000048,1049,0,0,0,1,6,0,0,1295,0,0.000000,32,0,120,1,0,37,0,30,1,0,1,0,1,0,0.000000,1.000000,27554,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4332698',4332698,-79.851120,-2.182068,-9.788231,-0.000048,1049,0,0,0,1,6,0,0,1295,0,0.000000,32,0,120,1,0,38,0,30,1,0,1,0,1,0,0.000000,1.000000,27282,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85120,'LVD_BNPC_01','s1d2','bnpc4332709',4332709,-116.898201,-2.182068,8.202514,-0.000048,1049,0,0,0,1,6,0,0,1295,0,0.000000,32,0,120,1,0,34,0,30,2,0,1,0,1,0,0.000000,1.000000,27010,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85124,'LVD_BNPC_02','s1d2','bnpc3977791',3977791,-27.268761,35.282909,-235.270493,-1.443921,428,0,0,0,0,6,0,0,1279,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26658,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85124,'LVD_BNPC_02','s1d2','bnpc3992822',3992822,79.248779,0.821177,34.816509,-0.136019,989,0,0,0,0,6,0,0,1279,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26392,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85124,'LVD_BNPC_02','s1d2','bnpc3992765',3992765,113.551804,-2.835140,-17.770380,-0.148716,423,0,0,0,0,6,0,0,1280,0,0.000000,32,0,120,1,0,51,0,30,20,0,1,0,1,0,0.000000,1.000000,26126,1,6,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85124,'LVD_BNPC_02','s1d2','bnpc4102260',4102260,113.537300,-3.185392,-25.684139,-0.000000,424,0,0,0,0,2,0,0,1281,0,0.000000,32,0,120,1,0,51,0,30,20,0,1,0,1,0,0.000000,1.000000,25860,1,0,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85124,'LVD_BNPC_02','s1d2','bnpc4102269',4102269,119.004997,-3.036560,-25.528379,-0.000048,425,0,0,0,0,2,0,0,1282,0,0.000000,32,0,120,1,0,51,0,30,20,0,1,0,1,0,0.000000,1.000000,25594,1,0,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85124,'LVD_BNPC_02','s1d2','bnpc4102276',4102276,107.942802,-3.061967,-25.528780,-0.000000,426,0,0,0,0,2,0,0,1283,0,0.000000,32,0,120,1,0,51,0,30,20,0,1,0,1,0,0.000000,1.000000,25328,1,0,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85124,'LVD_BNPC_02','s1d2','bnpc4102301',4102301,-9.101870,5.742157,-91.092461,0.575752,990,0,0,0,0,6,0,0,1284,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25062,1,6,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85124,'LVD_BNPC_02','s1d2','bnpc4102303',4102303,5.329041,5.756157,-67.966362,-0.903145,991,0,0,0,0,6,0,0,1285,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24796,1,6,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85124,'LVD_BNPC_02','s1d2','bnpc3997806',3997806,-110.221603,-2.123396,-33.575729,0.195753,427,0,0,0,0,6,0,0,1286,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24530,1,6,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85124,'LVD_BNPC_02','s1d2','bnpc3977798',3977798,-112.300499,-2.182068,-43.974129,0.252871,429,0,0,0,0,6,0,0,1279,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24264,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85124,'LVD_BNPC_02','s1d2','bnpc4107077',4107077,-108.938301,-2.123102,-26.876200,-0.000000,1064,0,0,0,0,6,0,0,1383,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23998,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85343,'LVD_BNPC_03','s1d2','bnpc4102288',4102288,110.316597,-1.703055,2.589147,0.171713,420,0,0,0,0,6,0,0,1298,0,0.000000,15,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23560,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85343,'LVD_BNPC_03','s1d2','bnpc4000410',4000410,65.577408,3.145686,-59.710510,0.137920,421,0,0,0,0,6,0,0,1299,0,0.000000,15,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23294,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85343,'LVD_BNPC_03','s1d2','bnpc4000412',4000412,39.656231,8.595772,-145.727905,-1.218940,421,0,0,0,0,6,0,0,1299,0,0.000000,15,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23022,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85343,'LVD_BNPC_03','s1d2','bnpc4000414',4000414,19.353861,15.795010,-62.765930,1.569002,421,0,0,0,0,6,0,0,1299,0,0.000000,15,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22750,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85343,'LVD_BNPC_03','s1d2','bnpc4102292',4102292,4.995600,5.767900,-68.457802,-0.874521,422,0,0,0,0,6,0,0,1300,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22484,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85343,'LVD_BNPC_03','s1d2','bnpc4106998',4106998,-66.655838,33.495232,-236.746796,1.570796,421,0,0,0,0,6,0,0,1299,0,0.000000,15,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22206,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85343,'LVD_BNPC_03','s1d2','bnpc4107000',4107000,-66.650047,33.912769,-233.083893,1.570451,421,0,0,0,0,6,0,0,1299,0,0.000000,15,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21934,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85343,'LVD_BNPC_03','s1d2','bnpc4107001',4107001,-65.795357,33.689079,-234.933395,1.570796,422,0,0,0,0,6,0,0,1300,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21668,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85343,'LVD_BNPC_03','s1d2','bnpc4155136',4155136,64.922188,18.324110,-87.180801,-0.907550,421,0,0,0,0,6,0,0,1299,0,0.000000,15,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21390,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85286,'LVD_gimmick_01','s1d2','bnpc4127147',4127147,-112.574402,-2.123102,-32.610691,-0.000000,434,0,0,0,0,6,0,0,0,0,0.000000,32,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15750,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4084028',4084028,73.001823,6.050000,-448.694305,-0.000000,884,0,0,0,0,6,0,0,1547,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,1,0,0.000000,1.000000,44512,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4084017',4084017,124.991203,-11.999890,98.268700,-0.000048,1052,0,0,0,0,6,0,0,1548,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44246,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4084019',4084019,43.260269,-0.038252,-243.015701,-0.000000,1053,0,0,0,0,6,0,0,1549,0,0.000000,50,0,120,1,0,101,0,0,5,0,1,0,1,0,0.000000,1.000000,43980,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4084020',4084020,37.211861,0.085123,-238.371597,-0.000048,1054,0,0,0,0,6,0,0,1551,0,0.000000,50,0,120,1,0,101,0,0,5,0,1,0,1,0,0.000000,1.000000,43714,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4084021',4084021,48.930859,-0.038412,-237.455994,-0.000048,1055,0,0,0,0,6,0,0,1552,0,0.000000,50,0,120,1,0,101,0,0,5,0,1,0,1,0,0.000000,1.000000,43448,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4084022',4084022,32.664619,-0.026817,-233.183502,-0.000048,1056,0,0,0,0,6,0,0,1553,0,0.000000,50,0,120,1,0,101,0,0,5,0,1,0,1,0,0.000000,1.000000,43182,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4084023',4084023,53.508499,0.046601,-232.481598,-0.000048,1057,0,0,0,0,6,0,0,1554,0,0.000000,50,0,120,1,0,101,0,0,5,0,1,0,1,0,0.000000,1.000000,42916,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4084026',4084026,43.223949,-0.056296,-232.420593,-0.000048,1058,0,0,0,0,6,0,0,1555,0,0.000000,50,0,120,1,0,101,0,0,5,0,1,0,1,0,0.000000,1.000000,42650,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4084444',4084444,107.774200,-18.000010,375.161194,1.428311,919,0,0,0,2,6,0,0,1556,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,42384,1,3,2000,0,0,0,4331109,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4084465',4084465,110.761497,-0.000034,-51.805130,-0.000000,919,0,0,0,2,6,0,0,1556,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,42112,1,3,2000,0,0,0,4331095,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4084466',4084466,42.899948,8.255061,-114.172997,0.000000,919,0,0,0,2,6,0,0,1556,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41840,1,3,2000,0,0,0,4331098,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4084482',4084482,28.179529,-0.000163,-145.814606,-1.570451,919,0,0,0,2,6,0,0,1556,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41568,1,3,2000,0,0,0,4331100,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4246781',4246781,111.147598,-0.000166,-107.654503,-0.000000,919,0,0,0,2,6,0,0,1556,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41296,1,3,2000,0,0,0,4331102,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4084573',4084573,42.979328,-0.040156,-260.770386,-0.000000,919,0,0,0,2,6,0,0,1556,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41024,1,3,2000,0,0,0,4247834,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4246782',4246782,42.520988,4.950057,-317.772614,1.527783,919,0,0,0,2,6,0,0,1556,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,40752,1,3,2000,0,0,0,4247839,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4246783',4246783,73.336823,9.012489,-318.880493,3.141593,919,0,0,0,2,6,0,0,1556,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,40480,1,3,2000,0,0,0,4330770,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4087552',4087552,75.254829,6.000000,-435.065704,-0.000000,931,0,0,0,1,6,0,0,1550,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,1,0,0.000000,1.000000,40214,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86250,'LVD_bnpc_00','s1d3','bnpc4330603',4330603,70.817139,5.996765,-435.080505,-0.000048,2261,0,0,0,1,6,0,0,2180,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39948,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4101303',4101303,129.869507,-18.081970,375.221710,1.518376,1452,0,0,0,0,6,0,0,35,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39478,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4084013',4084013,129.197800,-18.081970,377.597900,-0.000048,890,0,0,0,0,6,0,0,35,0,5.000000,50,3,120,1,0,102,0,100,1,0,1,0,1,0,0.000000,1.000000,39212,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4084408',4084408,132.218796,-18.066629,377.637299,-0.000000,890,0,0,0,0,6,0,0,35,0,5.000000,50,3,120,1,0,102,0,100,1,0,1,0,1,0,0.000000,1.000000,38940,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4101304',4101304,149.854904,-18.051510,375.815796,-1.463536,1060,0,0,0,0,6,0,0,1566,0,0.000000,50,0,120,1,0,103,0,100,1,0,1,0,1,0,0.000000,1.000000,38674,1,0,2000,0,0,0,4254773,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4101306',4101306,148.014206,-18.051510,374.528687,-1.463632,1512,0,0,0,0,6,0,0,1566,0,0.000000,50,0,120,1,0,103,0,100,1,0,1,0,1,0,0.000000,1.000000,38408,1,0,2000,0,0,0,4254774,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4084411',4084411,186.514603,-18.020941,371.556000,-1.375000,1073,0,0,0,1,6,0,0,1563,0,0.000000,50,0,120,1,0,104,0,100,1,0,1,0,1,0,0.000000,1.000000,38142,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4250648',4250648,189.885193,-14.023070,324.047089,-0.000048,1063,0,0,0,0,6,0,0,1559,0,0.000000,50,0,120,1,0,105,0,100,5,0,1,0,1,0,0.000000,1.000000,37876,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4250647',4250647,190.537994,-14.023070,325.416290,-0.000048,1063,0,0,0,0,6,0,0,1559,0,0.000000,50,0,120,1,0,105,0,100,5,0,1,0,1,0,0.000000,1.000000,37604,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4250646',4250646,189.929001,-14.023070,326.698090,-0.000048,1063,0,0,0,0,6,0,0,1559,0,0.000000,50,0,120,1,0,105,0,100,5,0,1,0,1,0,0.000000,1.000000,37332,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4250645',4250645,179.897995,-14.023070,323.792389,-0.000048,1063,0,0,0,0,6,0,0,1559,0,0.000000,50,0,120,1,0,105,0,100,5,0,1,0,1,0,0.000000,1.000000,37060,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4084012',4084012,179.888504,-14.023070,326.667511,-0.000048,1063,0,0,0,0,6,0,0,1559,0,0.000000,50,0,120,1,0,105,0,100,5,0,1,0,1,0,0.000000,1.000000,36788,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4250643',4250643,179.410294,-14.023070,325.202606,-0.000048,1063,0,0,0,0,6,0,0,1559,0,0.000000,50,0,120,1,0,105,0,100,5,0,1,0,1,0,0.000000,1.000000,36516,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4248256',4248256,186.480499,-14.114620,271.442688,-0.000048,1073,0,0,0,1,6,0,0,1563,0,0.000000,50,0,120,1,0,106,0,100,2,0,1,0,1,0,0.000000,1.000000,36238,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4248255',4248255,180.590500,-14.114620,280.811615,-0.000048,1073,0,0,0,1,6,0,0,1563,0,0.000000,50,0,120,1,0,106,0,100,2,0,1,0,1,0,0.000000,1.000000,35966,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4084417',4084417,116.807701,-14.023070,281.208496,-1.376337,890,0,0,0,6,6,0,0,35,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,1,0,0.000000,1.000000,35676,1,3,2000,0,0,0,4247545,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4084416',4084416,151.203003,-14.049900,264.766815,1.008128,1071,0,0,0,1,5,0,0,1561,0,0.000000,50,0,120,1,0,108,0,100,2,0,1,0,1,0,0.000000,1.000000,35434,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4248246',4248246,148.663803,-14.049900,266.914093,0.371421,1072,0,0,0,1,5,0,0,1562,0,0.000000,50,0,120,1,0,108,0,100,2,0,1,0,1,0,0.000000,1.000000,35168,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4084415',4084415,126.726196,-14.053590,226.673492,1.245899,1070,0,0,0,1,6,0,0,1560,0,0.000000,50,0,120,1,0,109,0,100,2,0,1,0,1,0,0.000000,1.000000,34902,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4248248',4248248,124.284698,-14.053590,211.365997,0.751135,1072,0,0,0,1,6,0,0,1562,0,0.000000,50,0,120,1,0,109,0,100,2,0,1,0,1,0,0.000000,1.000000,34624,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4329484',4329484,153.623398,-14.049900,268.394714,-0.778795,1071,0,0,0,1,5,0,0,1561,0,0.000000,50,0,120,1,0,108,0,100,2,0,1,0,1,0,0.000000,1.000000,34346,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4329485',4329485,122.789299,-14.053590,218.989105,-0.213993,1070,0,0,0,1,6,0,0,1560,0,0.000000,50,0,120,1,0,109,0,100,2,0,1,0,1,0,0.000000,1.000000,34086,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4250658',4250658,106.309601,-14.023070,268.378113,1.565549,1063,0,0,0,1,6,0,0,1559,0,0.000000,50,0,120,1,0,110,0,100,7,0,1,0,1,0,0.000000,1.000000,33796,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4250661',4250661,143.755203,-14.023070,260.840088,-1.565515,1063,0,0,0,1,6,0,0,1559,0,0.000000,50,0,120,1,0,110,0,100,7,0,1,0,1,0,0.000000,1.000000,33524,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4250458',4250458,106.279099,-14.023070,265.478912,1.565549,1063,0,0,0,1,6,0,0,1559,0,0.000000,50,0,120,1,0,110,0,100,7,0,1,0,1,0,0.000000,1.000000,33252,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4250659',4250659,115.190300,-14.023070,248.188004,-0.000048,1063,0,0,0,1,6,0,0,1559,0,0.000000,50,0,120,1,0,110,0,100,7,0,1,0,1,0,0.000000,1.000000,32980,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4250660',4250660,116.929802,-14.023070,285.925903,0.003260,1063,0,0,0,1,6,0,0,1559,0,0.000000,50,0,120,1,0,110,0,100,7,0,1,0,1,0,0.000000,1.000000,32708,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4250664',4250664,143.846802,-14.114620,276.600189,-1.565793,1063,0,0,0,1,6,0,0,1559,0,0.000000,50,0,120,1,0,110,0,100,7,0,1,0,1,0,0.000000,1.000000,32436,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4250663',4250663,143.816299,-14.114620,273.334808,-1.565793,1063,0,0,0,1,6,0,0,1559,0,0.000000,50,0,120,1,0,110,0,100,7,0,1,0,1,0,0.000000,1.000000,32164,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4250662',4250662,143.724594,-14.023070,257.239014,-1.565515,1063,0,0,0,1,6,0,0,1559,0,0.000000,50,0,120,1,0,110,0,100,7,0,1,0,1,0,0.000000,1.000000,31892,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4084433',4084433,125.108597,-14.023070,186.785599,0.132356,890,0,0,0,0,6,0,0,35,0,0.000000,50,0,120,1,0,111,0,100,2,0,1,0,1,0,0.000000,1.000000,31596,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4084435',4084435,183.521896,-14.053590,275.784698,0.683948,890,0,0,0,1,6,0,0,35,0,0.000000,50,0,120,1,0,106,0,100,2,0,1,0,1,0,0.000000,1.000000,31324,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4084414',4084414,180.712494,-18.020941,378.561005,-1.402368,1073,0,0,0,1,6,0,0,1563,0,0.000000,50,0,120,1,0,104,0,100,1,0,1,0,1,0,0.000000,1.000000,31070,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4406921',4406921,130.418793,-14.053590,194.252396,0.751135,1072,0,0,0,1,6,0,0,1562,0,0.000000,50,0,120,1,0,111,0,100,2,0,1,0,1,0,0.000000,1.000000,30816,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86255,'LVD_bnpc_01','s1d3','bnpc4406922',4406922,120.247498,-14.053590,193.993393,1.245899,1070,0,0,0,1,6,0,0,1560,0,0.000000,50,0,120,1,0,111,0,100,2,0,1,0,1,0,0.000000,1.000000,30550,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4084457',4084457,122.606201,-10.055730,52.719849,-0.105463,890,0,0,0,2,6,0,0,35,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30056,1,3,2000,0,0,0,4247774,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4084458',4084458,91.172607,-10.055730,27.267820,1.557064,890,0,0,0,2,6,0,0,35,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29784,1,3,2000,0,0,0,4247775,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4084459',4084459,37.333488,-0.164260,-16.769711,1.521445,890,0,0,0,0,6,0,0,35,0,0.000000,50,2,120,1,0,113,0,100,2,0,1,0,0,0,0.000000,1.000000,29512,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4084037',4084037,78.843384,-10.055730,24.538940,-0.000048,1072,0,0,0,1,6,0,0,1562,0,0.000000,50,0,120,1,0,112,0,100,1,0,1,0,1,0,0.000000,1.000000,29276,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4084036',4084036,75.822021,-10.330380,27.041380,0.624627,1072,0,0,0,1,6,0,0,1562,0,0.000000,50,0,120,1,0,112,0,100,1,0,1,0,1,0,0.000000,1.000000,29004,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4248288',4248288,41.567841,-0.167908,-13.809450,-0.000048,1071,0,0,0,1,6,0,0,1561,0,0.000000,50,0,120,1,0,113,0,100,2,0,1,0,1,0,0.000000,1.000000,28726,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4329508',4329508,41.501999,-0.167908,-21.988279,0.241654,1071,0,0,0,1,6,0,0,1561,0,0.000000,50,0,120,1,0,113,0,100,2,0,1,0,1,0,0.000000,1.000000,28454,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4101977',4101977,111.863800,-0.167908,-38.725040,0.000000,1511,0,0,0,0,6,0,0,1566,0,0.000000,50,0,120,1,0,114,0,100,1,0,1,0,1,0,0.000000,1.000000,28200,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4101978',4101978,110.032799,-0.167908,-37.748470,0.000000,1510,0,0,0,0,6,0,0,1566,0,0.000000,50,0,120,1,0,114,0,100,1,0,1,0,1,0,0.000000,1.000000,27934,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4084497',4084497,81.589973,7.950102,-96.495667,-1.570451,1075,0,0,0,1,6,0,0,1565,0,0.000000,50,0,120,1,0,115,0,100,1,0,1,0,1,0,0.000000,1.000000,27668,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4248295',4248295,81.620483,7.980469,-89.232361,-0.000048,1062,0,0,0,1,6,0,0,1558,0,0.000000,50,0,120,1,0,115,0,100,1,0,1,0,1,0,0.000000,1.000000,27402,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4248292',4248292,46.097530,7.827881,-94.438171,1.568969,1075,0,0,0,1,6,0,0,1565,0,0.000000,50,0,120,1,0,116,0,100,2,0,1,0,1,0,0.000000,1.000000,27124,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4084534',4084534,45.975342,7.827881,-98.008789,1.569140,1075,0,0,0,1,6,0,0,1565,0,0.000000,50,0,120,1,0,116,0,100,2,0,1,0,1,0,0.000000,1.000000,26852,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4084494',4084494,5.355835,7.980469,-89.140808,1.570106,1062,0,0,0,1,6,0,0,1558,0,0.000000,50,0,120,1,0,117,0,100,1,0,1,0,1,0,0.000000,1.000000,26586,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4084493',4084493,5.142273,7.980469,-96.159912,1.570308,1075,0,0,0,1,6,0,0,1565,0,0.000000,50,0,120,1,0,117,0,100,1,0,1,0,1,0,0.000000,1.000000,26308,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4250684',4250684,-35.599300,-0.167908,-147.826996,1.567110,1063,0,0,0,1,6,0,0,1559,0,0.000000,50,0,120,1,0,118,0,100,5,0,1,0,1,0,0.000000,1.000000,26000,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4250685',4250685,-35.599300,-0.167908,-143.035599,1.567110,1063,0,0,0,1,6,0,0,1559,0,0.000000,50,0,120,1,0,118,0,100,5,0,1,0,1,0,0.000000,1.000000,25728,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4250686',4250686,-35.568851,-0.167908,-149.078201,1.567110,1063,0,0,0,1,6,0,0,1559,0,0.000000,50,0,120,1,0,118,0,100,5,0,1,0,1,0,0.000000,1.000000,25456,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4250683',4250683,-35.599300,-0.167908,-144.225906,1.567110,1063,0,0,0,1,6,0,0,1559,0,0.000000,50,0,120,1,0,118,0,100,5,0,1,0,1,0,0.000000,1.000000,25184,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4250586',4250586,-35.599300,-0.167908,-146.514694,1.567110,1063,0,0,0,1,6,0,0,1559,0,0.000000,50,0,120,1,0,118,0,100,5,0,1,0,1,0,0.000000,1.000000,24912,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4250687',4250687,-35.599300,-0.167908,-141.723404,1.567110,1063,0,0,0,1,6,0,0,1559,0,0.000000,50,0,120,1,0,118,0,100,5,0,1,0,1,0,0.000000,1.000000,24640,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4084489',4084489,48.068661,0.000000,-146.577393,0.091513,890,0,0,0,0,6,0,0,35,0,0.000000,50,0,120,1,0,119,0,100,1,0,1,0,1,0,0.000000,1.000000,24344,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4084488',4084488,37.997730,0.000000,-146.913101,0.091513,890,0,0,0,0,6,0,0,35,0,0.000000,50,0,120,1,0,119,0,100,1,0,1,0,1,0,0.000000,1.000000,24072,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4248302',4248302,109.025597,-0.167908,-138.933502,-0.000048,1061,0,0,0,1,6,0,0,1557,0,0.000000,50,0,120,1,0,120,0,100,1,0,1,0,1,0,0.000000,1.000000,23872,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4248296',4248296,108.232201,-0.167908,-148.864594,-0.000048,1075,0,0,0,1,6,0,0,1565,0,0.000000,50,0,120,1,0,120,0,100,1,0,1,0,1,0,0.000000,1.000000,23588,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4406924',4406924,48.535030,7.827881,-97.298958,1.568937,1075,0,0,0,1,6,0,0,1565,0,0.000000,50,0,120,1,0,116,0,100,2,0,1,0,1,0,0.000000,1.000000,23316,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4406926',4406926,17.563339,9.237017,-118.370499,-0.000048,1061,0,0,0,1,6,0,0,1557,0,0.000000,50,0,120,1,0,200,0,100,1,0,1,0,1,0,0.000000,1.000000,23056,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86256,'LVD_bnpc_02','s1d3','bnpc4406927',4406927,20.600620,9.237017,-116.369698,-0.000048,1061,0,0,0,1,6,0,0,1557,0,0.000000,50,0,120,1,0,200,0,100,1,0,1,0,1,0,0.000000,1.000000,22784,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86259,'LVD_bnpc_03','s1d3','bnpc4250786',4250786,38.982391,5.000000,-322.761200,0.760140,890,0,0,0,0,6,0,0,35,0,0.000000,50,0,120,1,0,120,0,0,1,0,1,0,0,0,0.000000,1.000000,22332,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86259,'LVD_bnpc_03','s1d3','bnpc4250787',4250787,44.063000,4.950058,-317.588409,-0.389702,890,0,0,0,1,10,0,0,35,0,0.000000,50,0,120,1,0,120,0,0,1,0,1,0,0,0,0.000000,1.000000,22060,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86259,'LVD_bnpc_03','s1d3','bnpc4248311',4248311,69.702148,9.994568,-316.407715,-0.568157,1075,0,0,0,0,6,0,0,1565,0,0.000000,50,0,120,1,0,122,0,100,2,0,1,0,0,0,0.000000,1.000000,21848,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86259,'LVD_bnpc_03','s1d3','bnpc4248312',4248312,66.962502,9.933594,-321.467010,-1.339248,1075,0,0,0,1,10,0,0,1565,0,0.000000,50,0,120,1,0,122,0,100,2,0,1,0,0,0,0.000000,1.000000,21576,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86259,'LVD_bnpc_03','s1d3','bnpc4084590',4084590,74.096893,9.933594,-376.446594,0.042521,890,0,0,0,0,6,0,0,35,0,0.000000,50,0,120,1,0,123,0,100,2,0,1,0,1,0,0.000000,1.000000,21244,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86259,'LVD_bnpc_03','s1d3','bnpc4084591',4084591,68.897972,9.933594,-319.045197,-1.413677,890,0,0,0,0,6,0,0,35,0,0.000000,50,0,120,1,0,122,0,100,2,0,1,0,1,0,0.000000,1.000000,20972,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86259,'LVD_bnpc_03','s1d3','bnpc4329515',4329515,72.097458,9.933594,-376.475311,-0.107620,890,0,0,0,0,6,0,0,35,0,0.000000,50,0,120,1,0,123,0,100,2,0,1,0,1,0,0.000000,1.000000,20700,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86259,'LVD_bnpc_03','s1d3','bnpc4084581',4084581,45.334469,-0.045776,-282.978607,0.624627,1061,0,0,0,1,5,0,0,1557,0,0.000000,50,0,120,1,0,121,0,100,2,0,1,0,1,0,0.000000,1.000000,20500,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86259,'LVD_bnpc_03','s1d3','bnpc4084578',4084578,45.033428,0.000001,-279.235504,0.404051,1061,0,0,0,1,5,0,0,1557,0,0.000000,50,0,120,1,0,121,0,100,2,0,1,0,1,0,0.000000,1.000000,20228,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86259,'LVD_bnpc_03','s1d3','bnpc4084583',4084583,40.394760,-0.045097,-281.951599,-0.000048,1062,0,0,0,1,5,0,0,1558,0,0.000000,50,0,120,1,0,121,0,100,2,0,1,0,1,0,0.000000,1.000000,19950,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4305636',4305636,185.229294,-14.145200,290.363892,-0.209008,1526,0,0,0,8,6,0,0,2147,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6684,1,0,0,0,0,0,0,675,313); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4305708',4305708,132.856094,-18.033350,373.364288,-0.000000,1524,0,0,0,1,6,0,0,1887,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6242,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4305709',4305709,129.683304,-18.066629,373.808502,0.754040,1524,0,0,0,1,6,0,0,1887,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5970,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4305710',4305710,128.251205,-18.066629,376.569489,1.399361,1524,0,0,0,1,6,0,0,1887,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5698,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4305712',4305712,183.498993,-18.000000,370.749786,0.664927,1524,0,0,0,1,6,0,0,1887,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5426,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4305713',4305713,184.788895,-18.000000,372.017395,0.664927,1524,0,0,0,1,6,0,0,1887,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5154,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4305715',4305715,186.937698,-18.100000,373.067108,-0.298826,1525,0,0,0,1,6,0,0,1888,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4888,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4305752',4305752,138.018906,-14.000000,265.161987,1.557190,1524,0,0,0,1,6,0,0,1887,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4610,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4305753',4305753,137.912903,-14.000000,267.880615,1.557190,1524,0,0,0,1,6,0,0,1887,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4338,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4305761',4305761,173.129196,-18.000000,374.267792,1.424227,1522,0,0,0,1,6,0,0,1650,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4078,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4305764',4305764,183.019196,-18.000000,353.838287,-0.000000,1524,0,0,0,1,6,0,0,1887,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3794,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4305765',4305765,186.866302,-18.000000,350.199585,-0.000000,1524,0,0,0,1,6,0,0,1887,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3522,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4305766',4305766,139.421799,-14.000000,254.087402,-0.000000,1525,0,0,0,1,6,0,0,1888,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3256,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4305771',4305771,140.984299,-14.000000,262.996002,1.526030,1524,0,0,0,1,6,0,0,1887,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2978,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4305772',4305772,140.711304,-14.000000,271.041412,1.380161,1524,0,0,0,1,6,0,0,1887,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2706,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4305777',4305777,192.794403,-14.100000,276.913391,-0.000000,1527,0,0,0,1,6,0,0,1889,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2452,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4305779',4305779,188.354294,-14.000000,323.937195,-0.038029,1525,0,0,0,1,6,0,0,1888,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2168,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4306047',4306047,142.099594,-14.000000,265.924011,-1.464355,1520,0,0,0,8,6,0,0,2147,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,934,1,0,0,0,0,0,0,675,313); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93365,'QB_JobSch500_001','s1d3','bnpc4306053',4306053,139.246506,-14.023070,265.827393,1.506682,1528,0,0,0,8,6,0,0,1650,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,668,1,0,0,0,0,30294,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93406,'QB_JobSch500_002','s1d3','bnpc4306152',4306152,134.174805,-18.000000,465.100708,-0.000000,1523,0,0,0,8,6,0,0,1613,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,330,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94483,'LVD_BNPC_01','s1d4','bnpc4391174',4391174,-8.314253,1.388489,-27.008930,0.694360,2301,0,0,0,1,6,0,0,2256,0,0.000000,50,0,120,1,0,15,0,16,3,0,1,0,1,0,0.000000,1.000000,68472,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94483,'LVD_BNPC_01','s1d4','bnpc4375408',4375408,45.192341,29.999969,-16.743481,-1.197759,2301,0,0,0,1,6,0,0,2256,0,0.000000,50,0,120,1,0,16,0,16,3,0,1,0,1,0,0.000000,1.000000,68200,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94483,'LVD_BNPC_01','s1d4','bnpc4391178',4391178,39.463699,29.999950,-22.733330,0.593477,2301,0,0,0,1,6,0,0,2256,0,0.000000,50,0,120,1,0,16,0,16,3,0,1,0,1,0,0.000000,1.000000,67928,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94483,'LVD_BNPC_01','s1d4','bnpc4375402',4375402,-9.852335,1.404441,-20.383860,1.063584,2301,0,0,0,1,6,0,0,2256,0,0.000000,50,0,120,1,0,15,0,16,3,0,1,0,1,0,0.000000,1.000000,67656,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94483,'LVD_BNPC_01','s1d4','bnpc4375409',4375409,44.113899,29.999950,-26.688049,-0.371729,2306,0,0,0,1,6,0,0,2257,0,0.000000,50,0,120,1,0,16,0,16,3,0,1,0,1,0,0.000000,1.000000,67390,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94483,'LVD_BNPC_01','s1d4','bnpc4392947',4392947,39.047729,0.289917,67.734741,1.364736,2304,0,0,0,1,6,0,0,2245,0,0.000000,50,0,120,1,0,11,0,16,3,0,1,0,1,0,0.000000,1.000000,67124,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94483,'LVD_BNPC_01','s1d4','bnpc4392951',4392951,-1.748563,0.300000,48.561260,-0.155813,2304,0,0,0,1,6,0,0,2245,0,0.000000,50,0,120,1,0,12,0,16,3,0,1,0,1,0,0.000000,1.000000,66852,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94483,'LVD_BNPC_01','s1d4','bnpc4392950',4392950,2.574573,0.300000,47.218609,-0.155813,2304,0,0,0,1,6,0,0,2245,0,0.000000,50,0,120,1,0,12,0,16,3,0,1,0,1,0,0.000000,1.000000,66580,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94483,'LVD_BNPC_01','s1d4','bnpc4375404',4375404,-0.015320,0.289917,9.079041,1.423268,2315,0,0,0,2,6,0,0,2248,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,66314,1,3,2000,0,0,0,4375407,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94483,'LVD_BNPC_01','s1d4','bnpc4491007',4491007,-0.015320,0.289917,27.939211,-0.329571,2315,0,0,0,5,6,0,0,2248,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,65898,1,3,2000,0,0,0,4491004,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94483,'LVD_BNPC_01','s1d4','bnpc4375393',4375393,0.167786,0.289917,45.853390,0.044726,2314,0,0,0,1,6,0,0,2247,0,0.000000,50,0,120,1,0,12,0,16,3,0,1,0,1,0,0.000000,1.000000,65632,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94483,'LVD_BNPC_01','s1d4','bnpc4579878',4579878,37.485168,0.300000,70.503273,1.499706,2313,0,0,0,1,6,0,0,2246,0,0.000000,50,0,120,1,0,11,0,16,3,0,1,0,1,0,0.000000,1.000000,65270,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4391185',4391185,-24.673830,30.001150,-55.619141,1.264181,2301,0,0,0,1,6,0,0,2256,0,0.000000,50,0,120,1,0,21,0,16,3,0,1,0,1,0,0.000000,1.000000,64460,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4391181',4391181,-25.772520,30.000860,-57.785950,0.912172,2301,0,0,0,1,6,0,0,2256,0,0.000000,50,0,120,1,0,21,0,16,3,0,1,0,1,0,0.000000,1.000000,64188,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4391188',4391188,-21.469481,29.984011,0.442505,-0.875485,2301,0,0,0,1,6,0,0,2256,0,0.000000,50,0,120,1,0,23,0,16,3,0,1,0,1,0,0.000000,1.000000,63916,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4393547',4393547,-29.356340,60.000031,25.312611,-0.099729,2301,0,0,0,1,6,0,0,2256,0,0.000000,50,0,120,1,0,27,0,16,3,0,1,0,1,0,0.000000,1.000000,63644,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4393544',4393544,-29.403660,60.000038,32.629478,0.483002,2301,0,0,0,1,6,0,0,2256,0,0.000000,50,0,120,1,0,27,0,16,3,0,1,0,1,0,0.000000,1.000000,63372,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4391187',4391187,-27.206909,29.984011,0.137329,0.940201,2301,0,0,0,1,6,0,0,2256,0,0.000000,50,0,120,1,0,23,0,16,3,0,1,0,1,0,0.000000,1.000000,63100,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4393545',4393545,-35.575680,60.000038,28.098850,1.437881,2306,0,0,0,1,6,0,0,2257,0,0.000000,50,0,120,1,0,27,0,16,3,0,1,0,1,0,0.000000,1.000000,62834,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4391182',4391182,-25.680969,29.984011,-3.311279,0.285948,2306,0,0,0,1,6,0,0,2257,0,0.000000,50,0,120,1,0,23,0,16,3,0,1,0,1,0,0.000000,1.000000,62562,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4392970',4392970,-30.959980,30.000811,-56.218811,1.570308,2302,0,0,0,1,6,0,0,2252,0,0.000000,50,0,120,1,0,21,0,16,3,0,1,0,1,0,0.000000,1.000000,62320,1,3,2000,0,0,0,4375599,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4392971',4392971,-49.687431,30.000521,68.229492,1.570308,2303,0,0,0,1,6,0,0,2251,0,0.000000,50,0,120,1,0,22,0,16,3,0,1,0,1,0,0.000000,1.000000,62054,1,3,2000,0,0,0,4375599,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4375596',4375596,-47.716221,30.000420,65.384293,1.570308,2303,0,0,0,1,6,0,0,2251,0,0.000000,50,0,120,1,0,22,0,16,3,0,1,0,1,0,0.000000,1.000000,61782,1,3,2000,0,0,0,4375599,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4392973',4392973,-43.196529,30.001181,-39.130070,-0.000048,2316,0,0,0,5,6,0,0,2250,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,61516,1,3,2000,0,0,0,4375599,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4392974',4392974,-52.506351,29.984011,64.286247,-0.028475,2302,0,0,0,1,6,0,0,2252,0,0.000000,50,0,120,1,0,22,0,16,3,0,1,0,1,0,0.000000,1.000000,61232,1,3,2000,0,0,0,4375599,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4490951',4490951,11.929710,42.018360,-25.979019,-0.000048,2305,0,0,0,1,6,0,0,2249,0,0.000000,50,0,120,1,0,0,0,16,3,0,1,0,1,0,0.000000,1.000000,60978,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4391201',4391201,26.840580,52.231571,12.954900,-0.000048,2305,0,0,0,1,6,0,0,2249,0,0.000000,50,0,120,1,0,25,0,16,3,0,1,0,1,0,0.000000,1.000000,60706,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4490952',4490952,26.199711,53.391361,17.318970,-0.000048,2305,0,0,0,1,6,0,0,2249,0,0.000000,50,0,120,1,0,25,0,16,3,0,1,0,1,0,0.000000,1.000000,60434,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4392977',4392977,33.196899,59.997459,24.935730,0.069989,2302,0,0,0,1,6,0,0,2252,0,0.000000,50,0,120,1,0,26,0,16,3,0,1,0,1,0,0.000000,1.000000,60144,1,3,2000,0,0,0,4375599,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4392979',4392979,34.753349,60.410919,27.132990,0.069989,2303,0,0,0,1,6,0,0,2251,0,0.000000,50,0,120,1,0,26,0,16,3,0,1,0,1,0,0.000000,1.000000,59878,1,3,2000,0,0,0,4375599,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4392978',4392978,36.004570,60.000031,24.447451,0.069989,2303,0,0,0,1,6,0,0,2251,0,0.000000,50,0,120,1,0,26,0,16,3,0,1,0,1,0,0.000000,1.000000,59606,1,3,2000,0,0,0,4375599,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4375617',4375617,42.313229,59.952641,-9.323303,-0.334461,2316,0,0,0,5,6,0,0,2250,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59340,1,3,2000,0,0,0,4375616,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4375615',4375615,33.707150,82.383423,-24.185551,-0.911870,2317,0,0,0,1,6,0,0,2255,0,0.000000,50,0,120,1,0,28,0,16,3,0,1,0,1,0,0.000000,1.000000,59080,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4375609',4375609,33.707150,81.895142,-27.512020,-1.350978,2317,0,0,0,1,6,0,0,2255,0,0.000000,50,0,120,1,0,28,0,16,3,0,1,0,1,0,0.000000,1.000000,58808,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4507696',4507696,-34.681839,30.000299,58.121239,-0.000048,2316,0,0,0,2,6,0,0,2250,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,58348,1,3,2000,0,0,0,4507685,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4588095',4588095,17.594650,44.629681,-19.907209,-0.000048,2305,0,0,0,1,6,0,0,2249,0,0.000000,50,0,120,1,0,0,0,16,3,0,1,0,1,0,0.000000,1.000000,58082,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4588096',4588096,14.239240,42.577259,-27.470079,-0.000048,2305,0,0,0,1,6,0,0,2249,0,0.000000,50,0,120,1,0,0,0,16,3,0,1,0,1,0,0.000000,1.000000,57810,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94485,'LVD_BNPC_02','s1d4','bnpc4588102',4588102,-15.987990,60.000031,42.125141,-0.334461,2316,0,0,0,5,6,0,0,2250,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57276,1,3,2000,0,0,0,4588097,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94818,'LVD_BNPC_03','s1d4','bnpc4392980',4392980,0.264218,140.000000,38.594528,-1.266512,2318,0,0,0,1,6,0,0,2253,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,56922,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94818,'LVD_BNPC_03','s1d4','bnpc4490989',4490989,-41.070690,130.000000,0.744106,1.274997,2327,0,0,0,1,6,0,0,2254,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,56656,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94818,'LVD_BNPC_03','s1d4','bnpc4392982',4392982,-37.360989,130.450104,-0.089406,0.506012,2318,0,0,0,1,6,0,0,2253,0,0.000000,50,0,120,1,0,32,0,16,3,0,1,0,1,0,0.000000,1.000000,56378,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94818,'LVD_BNPC_03','s1d4','bnpc4490981',4490981,-3.280701,139.970901,39.414059,-1.523842,2318,0,0,0,1,6,0,0,2253,0,0.000000,50,0,120,1,0,34,0,16,3,0,1,0,1,0,0.000000,1.000000,56106,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94818,'LVD_BNPC_03','s1d4','bnpc4507788',4507788,0.167786,119.951202,-52.933590,-0.000048,2316,0,0,0,5,6,0,0,2250,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,55816,1,3,2000,0,0,0,4507791,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94818,'LVD_BNPC_03','s1d4','bnpc4507797',4507797,-38.132389,129.991592,4.776001,-0.000048,2316,0,0,0,5,6,0,0,2250,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,55192,1,3,2000,0,0,0,4507795,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94762,'LVD_boss','s1d4','bnpc4378135',4378135,-14.877620,193.987900,-0.015320,1.570451,2287,0,0,0,0,6,0,0,2265,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,49174,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94762,'LVD_boss','s1d4','bnpc4391530',4391530,-13.626340,193.987900,3.982544,1.334632,2288,0,0,0,0,6,0,0,2266,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,48908,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94762,'LVD_boss','s1d4','bnpc4391532',4391532,-12.980800,194.000000,-3.098743,0.793664,2289,0,0,0,0,6,0,0,2513,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,48642,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94762,'LVD_boss','s1d4','bnpc4504875',4504875,-6.382652,194.019699,0.000000,-0.000000,434,0,0,0,0,6,0,0,2265,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,48064,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94502,'LVD_Gimmick_01','s1d4','bnpc4378204',4378204,-35.480030,30.000629,-56.205639,-0.000000,434,0,0,0,0,6,0,0,2154,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43764,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94502,'LVD_Gimmick_01','s1d4','bnpc4378205',4378205,-44.602112,29.984011,-51.743408,-0.000048,434,0,0,0,0,6,0,0,2154,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43492,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94502,'LVD_Gimmick_01','s1d4','bnpc4378206',4378206,-10.058140,30.000010,11.610050,-0.000000,434,0,0,0,0,6,0,0,2154,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43220,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94502,'LVD_Gimmick_01','s1d4','bnpc4378207',4378207,10.176570,30.000010,-5.806796,-0.000000,434,0,0,0,0,6,0,0,2154,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,42948,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94502,'LVD_Gimmick_01','s1d4','bnpc4378208',4378208,-18.183210,36.201000,-21.081181,-0.000000,434,0,0,0,0,6,0,0,2154,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,42676,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94502,'LVD_Gimmick_01','s1d4','bnpc4378209',4378209,13.830180,43.105461,-23.522539,-0.000000,434,0,0,0,0,6,0,0,2154,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,42404,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94502,'LVD_Gimmick_01','s1d4','bnpc4378210',4378210,25.634890,47.473190,-16.012030,-0.000000,434,0,0,0,0,6,0,0,2154,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,42132,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94502,'LVD_Gimmick_01','s1d4','bnpc4378211',4378211,24.823700,50.448231,6.520932,-0.000000,434,0,0,0,0,6,0,0,2154,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41860,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94502,'LVD_Gimmick_01','s1d4','bnpc4378212',4378212,24.112820,54.177811,18.100599,-0.000000,434,0,0,0,0,6,0,0,2154,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41588,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94502,'LVD_Gimmick_01','s1d4','bnpc4378213',4378213,12.667040,58.146931,23.120920,-0.000000,434,0,0,0,0,6,0,0,2154,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41316,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94502,'LVD_Gimmick_01','s1d4','bnpc4378214',4378214,-40.529640,30.000700,49.487751,-0.000048,434,0,0,0,0,6,0,0,2154,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41044,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94502,'LVD_Gimmick_01','s1d4','bnpc4378215',4378215,-44.100391,30.000790,58.387291,-0.000048,434,0,0,0,0,6,0,0,2154,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,40772,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94502,'LVD_Gimmick_01','s1d4','bnpc4391141',4391141,0.297156,120.000000,-36.425961,-0.000000,2329,0,0,0,0,18,0,0,2258,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32906,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94759,'LVD_Mboss_01','s1d4','bnpc4378133',4378133,41.977539,29.984011,-65.293404,-0.000048,2299,0,0,0,0,6,0,0,2259,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17364,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94759,'LVD_Mboss_01','s1d4','bnpc4391449',4391449,46.258221,30.000521,-64.488441,-0.000000,2300,0,0,0,0,6,0,0,2260,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17098,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94759,'LVD_Mboss_01','s1d4','bnpc4407107',4407107,39.525162,30.000259,-63.655979,-0.000000,434,0,0,0,0,6,0,0,2154,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16808,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94760,'LVD_Mboss_02','s1d4','bnpc4378134',4378134,-14.938600,90.139862,-0.015320,1.570308,2292,0,0,0,0,6,0,0,2261,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11188,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94760,'LVD_Mboss_02','s1d4','bnpc4391521',4391521,0.000000,90.000008,0.000000,-0.000000,2298,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10922,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94760,'LVD_Mboss_02','s1d4','bnpc4391499',4391499,-8.957031,90.135010,1.419067,-0.000048,2295,0,0,0,0,6,0,0,2267,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10656,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94760,'LVD_Mboss_02','s1d4','bnpc4391501',4391501,-8.957031,90.135010,-1.175049,-0.000048,2296,0,0,0,0,6,0,0,2267,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10390,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94760,'LVD_Mboss_02','s1d4','bnpc4391497',4391497,-13.046510,89.982422,6.027222,1.398676,2293,0,0,0,0,6,0,0,2262,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10124,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94760,'LVD_Mboss_02','s1d4','bnpc4391498',4391498,-12.191960,89.982422,-5.355957,1.398676,2294,0,0,0,0,6,0,0,2263,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9858,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94760,'LVD_Mboss_02','s1d4','bnpc4392443',4392443,30.820681,81.428574,-29.068480,-1.350979,2297,0,0,0,0,6,0,0,2261,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,8344,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94761,'LVD_Mboss_03','s1d4','bnpc4489395',4489395,-0.076355,139.970901,0.106751,-0.000048,2330,0,0,0,1,6,0,0,2256,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,7270,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94761,'LVD_Mboss_03','s1d4','bnpc4390603',4390603,-0.015320,139.970901,-8.896057,-0.000048,2328,0,0,0,0,6,0,0,2264,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,2756,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94761,'LVD_Mboss_03','s1d4','bnpc4489396',4489396,2.528203,140.000000,-0.346407,-0.000000,2329,0,0,0,0,6,0,0,2258,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,2418,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4691523',4691523,286.023712,26.749611,200.213699,-0.000048,2955,0,0,0,1,6,0,0,2887,0,0.000000,50,0,120,1,0,11,0,16,3,0,1,0,0,0,0.000000,1.000000,62792,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4691522',4691522,283.277191,26.236589,203.021301,-0.000048,2955,0,0,0,1,6,0,0,2887,0,0.000000,50,0,120,1,0,11,0,16,3,0,1,0,0,0,0.000000,1.000000,62520,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4691707',4691707,254.322006,27.084721,220.324997,-0.000048,2955,0,0,0,1,6,0,0,2887,0,0.000000,50,0,120,1,0,12,0,16,3,0,1,0,0,0,0.000000,1.000000,62248,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4691521',4691521,282.368195,18.753229,243.884903,-0.000048,2955,0,0,0,1,6,0,0,2887,0,0.000000,50,0,120,1,0,10,0,16,3,0,1,0,0,0,0.000000,1.000000,61976,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4691527',4691527,251.697495,27.389891,218.677002,-0.000048,2956,0,0,0,1,6,0,0,2888,0,0.000000,50,0,120,1,0,12,0,16,3,0,1,0,0,0,0.000000,1.000000,61710,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4691609',4691609,316.395813,49.484989,133.043304,-0.000048,2956,0,0,0,1,6,0,0,2888,0,0.000000,50,0,120,1,0,13,0,16,3,0,1,0,0,0,0.000000,1.000000,61438,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4691705',4691705,282.605713,26.702280,198.474197,-0.000048,2956,0,0,0,1,6,0,0,2888,0,0.000000,50,0,120,1,0,11,0,16,3,0,1,0,0,0,0.000000,1.000000,61166,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4691706',4691706,284.586487,19.185511,240.082703,-0.000048,2956,0,0,0,1,6,0,0,2888,0,0.000000,50,0,120,1,0,10,0,16,3,0,1,0,0,0,0.000000,1.000000,60894,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4691701',4691701,231.314301,61.150761,124.977600,1.557064,2957,0,0,0,1,6,0,0,2889,0,0.000000,50,0,120,1,0,14,0,16,3,0,1,0,0,0,0.000000,1.000000,60628,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4691702',4691702,221.118393,64.534630,82.387077,0.159393,2957,0,0,0,1,6,0,0,2889,0,0.000000,50,0,120,1,0,15,0,16,3,0,1,0,0,0,0.000000,1.000000,60356,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4691704',4691704,218.982193,64.499817,81.654663,0.159393,2957,0,0,0,1,6,0,0,2889,0,0.000000,50,0,120,1,0,15,0,16,3,0,1,0,0,0,0.000000,1.000000,60084,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4691711',4691711,318.532013,49.118771,134.538696,0.226313,2957,0,0,0,1,6,0,0,2889,0,0.000000,50,0,120,1,0,13,0,16,3,0,1,0,0,0,0.000000,1.000000,59812,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4691512',4691512,220.172394,63.889530,66.117310,-0.000048,2958,0,0,0,5,6,0,0,2890,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59546,1,0,0,0,0,0,4742944,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4691617',4691617,251.239700,30.136600,187.609604,1.525565,2958,0,0,0,5,6,0,0,2890,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59274,1,0,0,0,0,0,4742886,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4691616',4691616,295.094208,27.389891,199.725296,0.040124,2958,0,0,0,5,6,0,0,2890,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59002,1,0,0,0,0,0,4742885,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4685195',4685195,219.867203,65.037819,46.933300,-0.000048,2968,0,0,0,0,6,0,0,2901,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,58736,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4719794',4719794,287.098389,18.112431,243.884903,0.226313,2957,0,0,0,1,6,0,0,2889,0,0.000000,50,0,120,1,0,10,0,16,3,0,1,0,0,0,0.000000,1.000000,58452,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4691515',4691515,229.818893,60.687939,127.236000,1.564776,2956,0,0,0,1,6,0,0,2888,0,0.000000,50,0,120,1,0,14,0,16,3,0,1,0,0,0,0.000000,1.000000,57838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99650,'LVD_BNPC_01','s1d5','bnpc4691514',4691514,228.445602,61.555710,123.665298,1.564776,2956,0,0,0,1,6,0,0,2888,0,0.000000,50,0,120,1,0,14,0,16,3,0,1,0,0,0,0.000000,1.000000,57566,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99655,'LVD_BNPC_02','s1d5','bnpc4691789',4691789,25.432800,44.583111,-132.810898,-0.372955,2959,0,0,0,1,6,0,0,2892,0,0.000000,50,0,120,1,0,23,0,16,3,0,1,0,0,0,0.000000,1.000000,57022,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99655,'LVD_BNPC_02','s1d5','bnpc4691787',4691787,32.452221,44.457920,-133.988403,-0.372955,2959,0,0,0,1,6,0,0,2892,0,0.000000,50,0,120,1,0,23,0,16,3,0,1,0,0,0,0.000000,1.000000,56750,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99655,'LVD_BNPC_02','s1d5','bnpc4691779',4691779,220.630096,63.065552,-131.700607,-0.000048,2959,0,0,0,1,6,0,0,2892,0,0.000000,50,0,120,1,0,20,0,16,3,0,1,0,0,0,0.000000,1.000000,56478,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99655,'LVD_BNPC_02','s1d5','bnpc4691780',4691780,216.784897,63.340092,-127.458603,-0.000048,2959,0,0,0,1,6,0,0,2892,0,0.000000,50,0,120,1,0,20,0,16,3,0,1,0,0,0,0.000000,1.000000,56206,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99655,'LVD_BNPC_02','s1d5','bnpc4691782',4691782,36.886051,43.217800,-168.730194,1.517082,2961,0,0,0,5,6,0,0,2894,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,55940,1,0,0,0,0,0,4742947,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99655,'LVD_BNPC_02','s1d5','bnpc4691788',4691788,96.853691,48.883320,-186.838501,0.847965,2961,0,0,0,5,6,0,0,2894,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,55668,1,0,0,0,0,0,4742946,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99655,'LVD_BNPC_02','s1d5','bnpc4725438',4725438,93.243103,49.435909,-191.990601,-0.000048,2962,0,0,0,1,6,0,0,2895,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,55402,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99655,'LVD_BNPC_02','s1d5','bnpc4867773',4867773,87.388313,47.440189,-181.139801,1.500064,2960,0,0,0,1,6,0,0,2893,0,0.000000,50,0,120,1,0,22,0,16,3,0,1,0,0,0,0.000000,1.000000,54864,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99655,'LVD_BNPC_02','s1d5','bnpc4867774',4867774,85.728233,47.412941,-174.626205,1.500064,2960,0,0,0,1,6,0,0,2893,0,0.000000,50,0,120,1,0,22,0,16,3,0,1,0,0,0,0.000000,1.000000,54592,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99655,'LVD_BNPC_02','s1d5','bnpc4867777',4867777,80.115730,46.764030,-177.980392,1.500064,2960,0,0,0,1,6,0,0,2893,0,0.000000,50,0,120,1,0,22,0,16,3,0,1,0,0,0,0.000000,1.000000,54320,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99655,'LVD_BNPC_02','s1d5','bnpc4867780',4867780,28.668230,44.378090,-140.440201,-0.372955,2959,0,0,0,1,6,0,0,2892,0,0.000000,50,0,120,1,0,23,0,16,3,0,1,0,0,0,0.000000,1.000000,54030,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99656,'LVD_BNPC_03','s1d5','bnpc4691846',4691846,-262.684113,4.928650,-10.055730,-0.636851,2964,0,0,0,1,6,0,0,2897,0,0.000000,50,0,120,1,0,33,16,0,3,0,1,0,0,0,0.000000,1.000000,53634,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99656,'LVD_BNPC_03','s1d5','bnpc4691845',4691845,-265.400085,4.714966,-10.391420,-0.636851,2964,0,0,0,1,6,0,0,2897,0,0.000000,50,0,120,1,0,33,16,0,3,0,1,0,0,0,0.000000,1.000000,53362,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99656,'LVD_BNPC_03','s1d5','bnpc4691793',4691793,-201.220703,-0.015320,-22.629150,-0.636851,2964,0,0,0,1,6,0,0,2897,0,0.000000,50,0,120,1,0,31,0,16,3,0,1,0,0,0,0.000000,1.000000,53090,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99656,'LVD_BNPC_03','s1d5','bnpc4691794',4691794,-201.068100,-0.015320,-25.558901,-0.636756,2964,0,0,0,1,6,0,0,2897,0,0.000000,50,0,120,1,0,31,0,16,3,0,1,0,0,0,0.000000,1.000000,52818,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99656,'LVD_BNPC_03','s1d5','bnpc4691795',4691795,-204.333603,-0.015320,-23.941410,-0.000048,2965,0,0,0,1,6,0,0,2898,0,0.000000,50,0,120,1,0,31,0,16,3,0,1,0,0,0,0.000000,1.000000,52552,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99656,'LVD_BNPC_03','s1d5','bnpc4691807',4691807,-296.143799,4.588197,-3.825752,-0.000048,2965,0,0,0,1,6,0,0,2898,0,0.000000,50,0,120,1,0,35,0,16,3,0,1,0,0,0,0.000000,1.000000,52280,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99656,'LVD_BNPC_03','s1d5','bnpc4691799',4691799,-265.766388,4.776001,-8.285706,-0.000048,2966,0,0,0,1,6,0,0,2899,0,0.000000,50,0,120,1,0,33,16,0,3,0,1,0,0,0,0.000000,1.000000,52014,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99656,'LVD_BNPC_03','s1d5','bnpc4691851',4691851,-273.701111,5.722107,-41.672421,1.280270,2958,0,0,0,5,6,0,0,2890,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,51694,1,0,0,0,0,0,4742950,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99656,'LVD_BNPC_03','s1d5','bnpc4691850',4691850,-258.899811,2.639771,24.521240,1.254576,2958,0,0,0,5,6,0,0,2890,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,51422,1,0,0,0,0,0,4742948,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99656,'LVD_BNPC_03','s1d5','bnpc4691848',4691848,-296.810699,4.614835,-31.530710,0.294935,2958,0,0,0,5,6,0,0,2890,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,51150,1,0,0,0,0,0,4742949,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99656,'LVD_BNPC_03','s1d5','bnpc4719784',4719784,-215.472702,0.045776,-5.691650,-0.000048,2967,0,0,0,0,6,0,0,2900,0,0.000000,50,0,120,1,0,51,0,16,3,0,1,0,0,0,0.000000,1.000000,50932,1,0,16,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99656,'LVD_BNPC_03','s1d5','bnpc4719785',4719785,-214.770798,0.045776,-7.492188,-0.000048,2967,0,0,0,0,6,0,0,2900,0,0.000000,50,0,120,1,0,51,0,16,3,0,1,0,0,0,0.000000,1.000000,50660,1,0,16,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99656,'LVD_BNPC_03','s1d5','bnpc4719786',4719786,-216.308594,0.135434,-9.049723,-0.000000,2967,0,0,0,0,6,0,0,2900,0,0.000000,50,0,120,1,0,51,0,16,3,0,1,0,0,0,0.000000,1.000000,50388,1,0,16,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99656,'LVD_BNPC_03','s1d5','bnpc4719790',4719790,-304.842010,4.883896,12.075760,-0.000000,2967,0,0,0,0,6,0,0,2900,0,0.000000,50,0,120,1,0,52,0,16,3,0,1,0,0,0,0.000000,1.000000,50116,1,0,16,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99656,'LVD_BNPC_03','s1d5','bnpc4719791',4719791,-306.491791,4.638403,10.370730,-0.000000,2967,0,0,0,0,6,0,0,2900,0,0.000000,50,0,120,1,0,52,0,16,3,0,1,0,0,0,0.000000,1.000000,49844,1,0,16,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99656,'LVD_BNPC_03','s1d5','bnpc4719792',4719792,-308.770203,4.350281,11.732490,-0.000000,2967,0,0,0,0,6,0,0,2900,0,0.000000,50,0,120,1,0,52,0,16,3,0,1,0,0,0,0.000000,1.000000,49572,1,0,16,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99656,'LVD_BNPC_03','s1d5','bnpc4895534',4895534,-293.828613,4.367013,-0.490658,-0.000048,2966,0,0,0,1,6,0,0,2899,0,0.000000,50,0,120,1,0,35,16,0,3,0,1,0,0,0,0.000000,1.000000,48830,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99552,'LVD_boss','s1d5','bnpc4724952',4724952,-401.052887,-0.015320,57.816410,1.110906,2970,0,0,0,0,6,0,0,2904,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,48142,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99552,'LVD_boss','s1d5','bnpc4724958',4724958,-332.349213,0.001000,53.530281,0.337016,2972,0,0,0,1,6,0,0,2905,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47876,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99552,'LVD_boss','s1d5','bnpc4738419',4738419,-322.943512,1.522797,24.816710,-0.442256,2972,0,0,0,1,6,0,0,2905,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47604,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99552,'LVD_boss','s1d5','bnpc4738420',4738420,-365.572388,0.001000,71.022057,0.598031,2972,0,0,0,1,6,0,0,2905,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47332,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99552,'LVD_boss','s1d5','bnpc4738421',4738421,-390.782013,0.001000,19.374041,1.238746,2972,0,0,0,1,6,0,0,2905,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47060,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99552,'LVD_boss','s1d5','bnpc4738422',4738422,-341.185913,0.001000,-7.451838,-0.613291,2972,0,0,0,1,6,0,0,2905,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46788,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99552,'LVD_boss','s1d5','bnpc4738423',4738423,-371.244812,0.001000,11.024700,-0.444689,2972,0,0,0,1,6,0,0,2905,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46516,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99552,'LVD_boss','s1d5','bnpc4738424',4738424,-359.203186,0.000998,0.721384,1.031918,2972,0,0,0,1,6,0,0,2905,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46244,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99552,'LVD_boss','s1d5','bnpc4738425',4738425,-343.984100,-0.015320,62.424561,-0.976298,2972,0,0,0,1,6,0,0,2905,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45972,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99552,'LVD_boss','s1d5','bnpc4738426',4738426,-390.782013,0.001000,30.169250,1.526471,2971,0,0,0,1,6,0,0,2906,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45706,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99552,'LVD_boss','s1d5','bnpc4738427',4738427,-331.137390,0.001000,12.662110,-1.097103,2971,0,0,0,1,6,0,0,2906,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45434,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99552,'LVD_boss','s1d5','bnpc4768181',4768181,-332.223297,2.000000,34.627140,-0.000000,434,0,0,0,0,6,0,0,2907,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34896,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99552,'LVD_boss','s1d5','bnpc4770637',4770637,-323.064087,2.000000,40.682598,-0.000000,2973,0,0,0,0,6,0,0,2904,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34630,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99540,'LVD_gimmick','s1d5','bnpc4725273',4725273,203.500107,61.842449,-154.306702,-0.000000,2963,0,0,0,1,6,0,0,2896,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24780,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99550,'LVD_mboss_01','s1d5','bnpc4685196',4685196,220.233398,64.682983,-24.917971,-0.000048,2968,0,0,0,0,6,0,0,2901,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18520,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99550,'LVD_mboss_01','s1d5','bnpc4719793',4719793,214.709702,64.713501,-25.986210,-0.000048,2969,0,0,0,1,6,0,0,2902,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18338,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99551,'LVD_mboss_02','s1d5','bnpc4685199',4685199,-87.632568,44.296879,-124.864601,1.570451,2994,0,0,0,0,6,0,0,2903,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16240,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99551,'LVD_mboss_02','s1d5','bnpc4725425',4725425,-90.192741,44.200001,-129.404404,-0.000000,2995,0,0,0,0,6,0,0,2916,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15974,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99551,'LVD_mboss_02','s1d5','bnpc4758721',4758721,-78.767662,44.200001,-124.519897,-0.000000,434,0,0,0,0,6,0,0,2903,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9120,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99553,'LVD_trap','s1d5','bnpc4721277',4721277,329.610107,1.846313,320.851288,-0.000048,2993,0,0,0,0,6,0,0,2891,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,2936,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99553,'LVD_trap','s1d5','bnpc4721279',4721279,334.279297,3.067017,320.851288,-0.000048,2993,0,0,0,0,6,0,0,2891,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,2664,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99553,'LVD_trap','s1d5','bnpc4721280',4721280,340.688110,4.074097,320.851288,-0.000048,2993,0,0,0,0,6,0,0,2891,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,2392,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99553,'LVD_trap','s1d5','bnpc4721281',4721281,329.030304,0.930786,326.710907,-0.000048,2993,0,0,0,0,6,0,0,2891,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,2120,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99553,'LVD_trap','s1d5','bnpc4721282',4721282,334.126709,1.846313,326.710907,-0.000048,2993,0,0,0,0,6,0,0,2891,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,1848,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99553,'LVD_trap','s1d5','bnpc4721283',4721283,338.826508,2.548157,326.710907,-0.000048,2993,0,0,0,0,6,0,0,2891,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,1576,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99553,'LVD_trap','s1d5','bnpc4721284',4721284,331.868408,0.564514,331.502197,-0.000048,2993,0,0,0,0,6,0,0,2891,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,1304,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99553,'LVD_trap','s1d5','bnpc4721285',4721285,337.239594,1.205444,331.502197,-0.000048,2993,0,0,0,0,6,0,0,2891,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,1032,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4599107',4599107,-47.123081,-1.241950,22.896099,-0.000048,434,0,0,0,0,6,0,0,2547,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,77332,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4599108',4599108,-3.287240,-0.405810,-24.327801,-0.937492,2778,0,0,0,0,6,0,0,2547,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,76954,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4598105',4598105,-106.736900,-1.571716,8.010925,1.388082,2785,0,0,0,2,6,0,0,1297,0,1.200000,50,0,120,1,0,0,0,30,10,0,1,0,1,1,0.000000,1.000000,76688,1,3,2000,0,0,0,4694541,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4598100',4598100,110.887199,0.629032,18.098110,0.335276,2780,0,0,0,1,6,0,0,1287,0,1.100000,50,0,120,1,0,5,0,30,1,0,1,0,1,0,0.000000,1.000000,76422,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4598101',4598101,90.334427,0.329811,23.187321,-0.970641,2779,0,0,0,0,6,0,0,1288,0,1.500000,50,0,120,1,0,5,0,30,1,0,1,0,1,0,0.000000,1.000000,76156,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4598102',4598102,-113.664497,-2.182068,44.235840,0.633688,2776,0,0,0,1,6,0,0,2659,0,1.500000,50,0,120,0,0,1,0,40,1,0,1,0,1,0,0.000000,1.000000,75890,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4598104',4598104,-106.584297,-2.182068,33.646118,1.270587,2776,0,0,0,0,4,0,0,2659,0,1.500000,50,0,120,0,0,1,0,40,1,0,1,0,1,0,0.000000,1.000000,75618,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4598108',4598108,-53.147221,-2.182068,51.224491,-0.211309,2776,0,0,0,1,6,0,0,2659,0,1.500000,50,0,120,0,0,2,1,30,1,0,1,0,1,0,0.000000,1.000000,75346,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4598107',4598107,-1.455458,-2.182068,-5.943653,-1.423940,2776,0,0,0,1,6,0,0,2659,0,1.500000,50,0,120,0,0,3,2,30,2,0,1,0,1,0,0.000000,1.000000,75074,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4598114',4598114,68.467163,3.609900,-8.636992,-0.000048,2777,0,0,0,1,6,0,0,1289,0,0.000000,50,0,120,1,0,6,0,30,2,0,1,0,1,0,0.000000,1.000000,74808,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4598097',4598097,62.549511,3.549308,-6.726474,-0.000048,2777,0,0,0,1,6,0,0,1289,0,0.000000,50,0,120,1,0,6,0,30,2,0,1,0,1,0,0.000000,1.000000,74536,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4598115',4598115,68.699707,3.297478,-2.640728,-0.000048,2777,0,0,0,1,6,0,0,1289,0,0.000000,50,0,120,1,0,6,0,30,2,0,1,0,1,0,0.000000,1.000000,74264,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4598109',4598109,-0.045776,-0.412048,1.205444,-0.331153,2775,0,0,0,0,6,0,0,2660,0,0.000000,50,0,120,1,0,3,2,30,2,0,1,1,1,0,0.000000,1.000000,73998,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4598106',4598106,-38.101810,-2.182068,51.804321,-0.127322,2775,0,0,0,1,6,0,0,2660,0,0.000000,50,0,120,1,0,2,1,30,1,0,1,1,1,0,0.000000,1.000000,73726,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4598095',4598095,-78.263290,-0.150992,68.049667,0.004492,2781,0,0,0,0,6,0,0,1300,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,73460,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4598110',4598110,3.825801,-1.991517,-8.781772,-0.000048,2775,0,0,0,1,6,0,0,2660,0,0.000000,50,0,120,1,0,3,2,30,2,0,1,0,1,0,0.000000,1.000000,72374,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4598112',4598112,-78.355103,-2.212585,12.405520,-1.036411,2775,0,0,0,1,6,0,0,2660,0,0.000000,50,0,120,0,0,0,0,30,10,0,1,0,1,1,0.000000,1.000000,72102,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97225,'LVD_BNPC_01','s1d6','bnpc4722777',4722777,13.900940,7.095398,20.553890,-0.856166,2785,0,0,0,5,6,0,0,1297,0,1.400000,50,0,120,1,0,0,0,30,2,0,1,0,0,0,0.000000,1.000000,71800,1,3,2000,0,0,0,4651268,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97226,'LVD_BNPC_02','s1d6','bnpc4599121',4599121,23.819731,15.713710,-61.245682,0.728381,2778,0,0,0,0,6,0,0,2547,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,69854,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97226,'LVD_BNPC_02','s1d6','bnpc4614301',4614301,66.453003,3.433289,-70.603523,-0.081590,2776,0,0,0,0,6,0,0,2659,0,1.200000,50,0,120,0,0,13,0,30,1,0,1,0,1,0,0.000000,1.000000,69606,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97226,'LVD_BNPC_02','s1d6','bnpc4598128',4598128,85.977249,4.726597,-97.913834,0.375854,2784,0,0,0,0,6,0,0,2656,0,0.000000,50,0,120,1,0,10,0,30,2,0,1,0,1,0,0.000000,1.000000,69358,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97226,'LVD_BNPC_02','s1d6','bnpc4598127',4598127,83.385208,4.698184,-102.556297,1.450257,2784,0,0,0,0,6,0,0,2656,0,0.000000,50,0,120,1,0,10,0,30,2,0,1,0,1,0,0.000000,1.000000,69086,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97226,'LVD_BNPC_02','s1d6','bnpc4598131',4598131,27.450930,6.393494,-88.761719,1.500688,2784,0,0,0,0,6,0,0,2656,0,0.000000,50,0,120,1,0,11,0,30,2,0,1,0,1,0,0.000000,1.000000,68814,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97226,'LVD_BNPC_02','s1d6','bnpc4598130',4598130,38.864620,6.547797,-85.587891,0.685819,2784,0,0,0,0,6,0,0,2656,0,0.000000,50,0,120,1,0,11,0,30,2,0,1,0,1,0,0.000000,1.000000,68542,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97226,'LVD_BNPC_02','s1d6','bnpc4598133',4598133,27.645050,6.989963,-119.125198,0.650849,2784,0,0,0,0,6,0,0,2656,0,0.000000,50,0,120,1,0,12,0,30,2,0,1,0,1,0,0.000000,1.000000,68270,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97226,'LVD_BNPC_02','s1d6','bnpc4598134',4598134,30.390289,6.654240,-117.235100,0.358043,2784,0,0,0,0,6,0,0,2656,0,0.000000,50,0,120,1,0,12,0,30,2,0,1,0,1,0,0.000000,1.000000,67998,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97226,'LVD_BNPC_02','s1d6','bnpc4599110',4599110,100.854599,-1.411243,-46.854450,0.804201,2781,0,0,0,0,6,0,0,1300,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,67720,1,0,3,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97226,'LVD_BNPC_02','s1d6','bnpc4649705',4649705,67.215942,3.128052,-62.150021,-0.783636,2776,0,0,0,5,6,0,0,2659,0,1.200000,50,0,120,0,0,13,0,30,1,0,1,0,0,0,0.000000,1.000000,67430,1,3,2000,0,0,0,4649706,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97226,'LVD_BNPC_02','s1d6','bnpc4598129',4598129,91.075493,4.921527,-110.656197,0.024716,2775,0,0,0,0,6,0,0,2660,0,0.000000,50,0,120,1,0,10,0,30,2,0,1,0,1,0,0.000000,1.000000,67042,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97226,'LVD_BNPC_02','s1d6','bnpc4598132',4598132,31.967649,8.285820,-80.888123,0.659433,2775,0,0,0,0,6,0,0,2660,0,0.000000,50,0,120,1,0,11,0,30,2,0,1,0,1,0,0.000000,1.000000,66698,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97226,'LVD_BNPC_02','s1d6','bnpc4614300',4614300,62.577148,3.158569,-62.851990,1.031666,2777,0,0,0,1,6,0,0,1289,0,1.200000,50,0,120,0,0,13,0,30,1,0,1,0,1,0,0.000000,1.000000,66420,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97226,'LVD_BNPC_02','s1d6','bnpc4598135',4598135,28.918051,7.111780,-122.528397,0.608389,2775,0,0,0,0,6,0,0,2660,0,0.000000,50,0,120,1,0,12,0,30,2,0,1,0,1,0,0.000000,1.000000,66154,5,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97227,'LVD_BNPC_03','s1d6','bnpc4599024',4599024,-107.283699,22.112190,-169.392197,-0.339638,2787,0,0,0,0,6,0,0,2662,0,0.500000,50,0,120,1,0,0,0,0,0,0,1,0,1,0,0.000000,-5.000000,65104,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97227,'LVD_BNPC_03','s1d6','bnpc4599035',4599035,-64.774658,32.608521,-191.576996,-1.190531,2788,0,0,0,1,6,0,0,2663,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,64838,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97227,'LVD_BNPC_03','s1d6','bnpc4599018',4599018,-149.797897,7.827881,-126.085297,-0.942790,2786,0,0,0,1,6,0,0,2658,0,2.200000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,-5.000000,64572,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97227,'LVD_BNPC_03','s1d6','bnpc4600554',4600554,-37.155701,18.478640,-123.674400,-0.000048,2785,0,0,0,2,6,0,0,1297,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,64240,1,3,0,0,0,0,4600557,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97227,'LVD_BNPC_03','s1d6','bnpc4599012',4599012,-75.386192,14.520860,-124.839104,0.979701,2775,0,0,0,1,6,0,0,2660,0,0.000000,50,0,120,1,0,20,0,40,1,0,1,0,1,0,0.000000,-5.000000,63998,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97227,'LVD_BNPC_03','s1d6','bnpc4599017',4599017,-83.024406,12.924380,-120.347900,0.691069,2775,0,0,0,0,6,0,0,2660,0,0.000000,50,0,120,1,0,20,0,40,1,0,1,0,1,0,0.000000,-5.000000,63726,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97227,'LVD_BNPC_03','s1d6','bnpc4599002',4599002,-95.928123,12.905680,-122.721001,1.175116,2783,0,0,0,0,6,0,0,2661,0,0.000000,50,0,120,1,0,20,0,30,2,0,1,0,0,0,0.000000,-5.000000,63490,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97227,'LVD_BNPC_03','s1d6','bnpc4599019',4599019,-114.229103,17.675200,-153.625900,-0.071194,2783,0,0,0,0,6,0,0,2661,0,0.000000,50,0,120,1,0,21,0,30,2,0,1,0,0,0,0.000000,-5.000000,63218,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97227,'LVD_BNPC_03','s1d6','bnpc4599020',4599020,-122.947998,15.713230,-153.339294,0.068704,2775,0,0,0,0,6,0,0,2660,0,0.000000,50,0,120,1,0,21,0,30,0,0,1,0,0,0,0.000000,-5.000000,62910,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97227,'LVD_BNPC_03','s1d6','bnpc4599021',4599021,-100.355904,21.282869,-188.830704,-0.038071,2783,0,0,0,0,6,0,0,2661,0,0.000000,50,0,120,1,0,22,0,30,2,0,1,0,1,0,0.000000,-5.000000,62674,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97227,'LVD_BNPC_03','s1d6','bnpc4599022',4599022,-98.458557,20.751940,-183.944595,0.031974,2775,0,0,0,0,6,0,0,2660,0,0.000000,50,0,120,1,0,22,0,30,2,0,1,0,1,0,0.000000,-5.000000,62366,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97227,'LVD_BNPC_03','s1d6','bnpc4599023',4599023,-104.234398,20.852329,-186.274704,0.031974,2775,0,0,0,0,6,0,0,2660,0,0.000000,50,0,120,1,0,22,0,30,2,0,1,0,1,0,0.000000,-5.000000,62094,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4598120',4598120,111.466698,-2.443487,-40.176300,-0.000000,2791,0,0,0,0,6,0,0,2548,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,61224,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4598123',4598123,114.305298,-2.548279,-37.979801,-0.000048,2792,0,0,0,0,6,0,0,2654,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60958,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4598118',4598118,122.260002,-2.620853,-35.947922,-0.000000,2800,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60692,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4598119',4598119,103.904198,-2.508160,-35.947922,-0.000000,2800,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60420,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4598122',4598122,109.693298,-2.493201,-37.952068,-0.000000,2800,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60148,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4598124',4598124,117.651497,-2.555323,-37.952068,-0.000000,2800,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59876,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4598125',4598125,105.750504,-2.483121,-37.952068,-0.000000,2800,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59604,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4621488',4621488,105.750504,-2.483121,-37.952068,-0.000000,2800,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59332,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4621489',4621489,108.318703,-2.501143,-37.979801,-0.000048,2792,0,0,0,0,6,0,0,2654,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59054,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4621490',4621490,112.356201,-1.367447,-37.659481,-0.000000,410,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,58794,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4621491',4621491,112.356201,-1.367447,-37.659481,-0.000000,410,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,58522,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4621492',4621492,112.356201,-1.367447,-37.659481,-0.000000,410,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,58250,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4621493',4621493,112.356201,-1.367447,-37.659481,-0.000000,410,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57978,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4621494',4621494,112.356201,-1.367447,-37.659481,-0.000000,410,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57706,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4621495',4621495,112.356201,-1.367447,-37.659481,-0.000000,410,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57434,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4621496',4621496,112.356201,-1.367447,-37.659481,-0.000000,410,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57162,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4621497',4621497,112.356201,-1.367447,-37.659481,-0.000000,410,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,56890,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4621498',4621498,112.356201,-1.367447,-37.659481,-0.000000,410,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,56618,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4621499',4621499,112.356201,-1.367447,-37.659481,-0.000000,410,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,56346,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4621500',4621500,112.356201,-1.367447,-37.659481,-0.000000,410,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,56074,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97902,'LVD_Boss_01','s1d6','bnpc4621501',4621501,112.356201,-1.367447,-37.659481,-0.000000,410,0,0,0,0,6,0,0,2655,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,55802,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97903,'LVD_Boss_02','s1d6','bnpc4598126',4598126,-22.568180,25.523510,-174.303802,1.103668,2793,0,0,0,0,6,0,0,2549,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41832,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97903,'LVD_Boss_02','s1d6','bnpc4621512',4621512,-18.623011,25.569229,-178.149094,-0.000048,2794,0,0,0,0,6,0,0,2656,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41566,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97903,'LVD_Boss_02','s1d6','bnpc4621513',4621513,-27.573059,25.410990,-168.130203,-0.000048,2794,0,0,0,0,6,0,0,2656,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41294,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97903,'LVD_Boss_02','s1d6','bnpc4621514',4621514,-2.748077,33.525291,-186.490799,-0.393712,2795,0,0,0,0,6,0,0,2660,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41028,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97903,'LVD_Boss_02','s1d6','bnpc4634027',4634027,-17.592890,25.503700,-175.064896,-0.000000,434,0,0,0,0,6,0,0,2549,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37760,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97917,'LVD_Boss_03','s1d6','bnpc4604053',4604053,-32.160110,35.109791,-237.069305,-0.000000,434,0,0,0,0,6,0,0,2547,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35980,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97917,'LVD_Boss_03','s1d6','bnpc4599073',4599073,-26.093220,35.284260,-228.399704,-1.143322,2796,0,0,0,0,6,0,0,2547,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35834,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97917,'LVD_Boss_03','s1d6','bnpc4621581',4621581,-26.191490,35.282249,-226.824799,-0.000000,2797,0,0,0,0,6,0,0,2654,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35568,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97917,'LVD_Boss_03','s1d6','bnpc4621582',4621582,-26.744490,35.274521,-229.473007,-0.000000,2798,0,0,0,0,6,0,0,1385,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35302,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97917,'LVD_Boss_03','s1d6','bnpc4621583',4621583,-31.524651,35.131321,-234.695007,-0.000000,2799,0,0,0,0,6,0,0,2650,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35036,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97917,'LVD_Boss_03','s1d6','bnpc4651211',4651211,-22.688841,35.373371,-231.680695,-0.000000,2740,0,0,0,0,6,0,0,2660,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34458,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97228,'LVD_eventBNPC_01','s1d6','bnpc4543709',4543709,93.423759,5.570610,-114.460403,0.032352,2782,0,0,0,0,6,0,0,0,35,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22640,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97228,'LVD_eventBNPC_01','s1d6','bnpc4598117',4598117,28.961260,9.163200,-78.883820,0.443889,2782,0,0,0,0,6,0,0,0,35,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22368,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97228,'LVD_eventBNPC_01','s1d6','bnpc4598116',4598116,25.593880,7.695513,-123.868401,0.458140,2782,0,0,0,0,6,0,0,0,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22096,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97228,'LVD_eventBNPC_01','s1d6','bnpc4639168',4639168,-33.770729,35.120850,-241.719604,0.376440,2789,0,0,0,0,6,0,0,1300,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21830,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97228,'LVD_eventBNPC_01','s1d6','bnpc4639169',4639169,-28.915890,35.202511,-231.189499,-0.463319,2790,0,0,0,0,6,0,0,2653,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21564,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97228,'LVD_eventBNPC_01','s1d6','bnpc4639172',4639172,-74.011917,35.120850,-234.725693,1.526883,2789,0,0,0,0,6,0,0,1300,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21286,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97228,'LVD_eventBNPC_01','s1d6','bnpc4685407',4685407,-33.870300,35.024860,-233.772293,-0.362383,2790,0,0,0,0,6,0,0,2653,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20148,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97228,'LVD_eventBNPC_01','s1d6','bnpc4685408',4685408,-31.519329,35.149040,-232.723007,1.557037,2811,0,0,0,0,6,0,0,2652,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19882,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97228,'LVD_eventBNPC_01','s1d6','bnpc4685409',4685409,-33.246849,35.069839,-231.649200,-0.229308,2812,0,0,0,0,6,0,0,2651,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19616,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103332,'LVD_BOSS_01','s1d7','bnpc4887906',4887906,165.345200,13.999990,-83.200691,-0.000000,2972,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32576,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103333,'LVD_BOSS_02','s1d7','bnpc4888017',4888017,-103.578697,15.631220,135.334793,0.000000,2987,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31786,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103334,'LVD_BOSS_03','s1d7','bnpc4888166',4888166,-322.878387,5.576687,319.686798,0.931978,2738,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30920,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100899,'LVD_gimmick_01','s1d7','bnpc4880431',4880431,324.982208,44.012600,-218.578400,1.269213,1436,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30522,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100899,'LVD_gimmick_01','s1d7','bnpc4880444',4880444,273.625702,45.470299,-199.347305,1.214262,1436,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29866,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100899,'LVD_gimmick_01','s1d7','bnpc4880457',4880457,259.000793,46.482700,-204.591003,1.140722,934,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,1,0,30,3,0,1,0,1,0,0.000000,1.000000,29600,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100899,'LVD_gimmick_01','s1d7','bnpc4880474',4880474,263.983490,46.473240,-196.719604,1.377571,934,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,1,0,30,3,0,1,0,1,0,0.000000,1.000000,29328,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100899,'LVD_gimmick_01','s1d7','bnpc4880475',4880475,266.569489,45.672070,-205.045303,1.140722,934,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,1,0,30,3,0,1,0,1,0,0.000000,1.000000,29056,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100899,'LVD_gimmick_01','s1d7','bnpc4880494',4880494,225.331604,40.062340,-160.530807,0.326089,934,0,0,0,0,6,0,0,0,0,0.000000,50,2,120,1,0,2,0,30,3,0,1,0,1,0,0.000000,1.000000,28332,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100899,'LVD_gimmick_01','s1d7','bnpc4880498',4880498,227.023697,40.225231,-158.654602,-0.115923,934,0,0,0,0,6,0,0,0,0,0.000000,50,2,120,1,0,2,0,30,3,0,1,0,1,0,0.000000,1.000000,28060,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100899,'LVD_gimmick_01','s1d7','bnpc4891236',4891236,198.343597,29.413639,-65.464653,-0.970716,2581,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,3,0,30,3,0,1,0,1,0,0.000000,1.000000,27658,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100899,'LVD_gimmick_01','s1d7','bnpc4891237',4891237,195.176193,28.359890,-65.211342,0.814155,2581,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,3,0,30,3,0,1,0,1,0,0.000000,1.000000,27386,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100900,'LVD_gimmick_02','s1d7','bnpc4880516',4880516,120.399696,14.000000,-66.404823,-0.000000,2966,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,11,0,30,2,0,1,0,1,0,0.000000,1.000000,26984,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100900,'LVD_gimmick_02','s1d7','bnpc4880523',4880523,125.307503,14.005830,-62.752998,-0.000000,2949,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,11,0,30,2,0,1,0,1,0,0.000000,1.000000,26718,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100900,'LVD_gimmick_02','s1d7','bnpc4880543',4880543,98.284866,14.227000,-68.708298,-0.000000,156,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,12,0,30,2,0,1,0,1,0,0.000000,1.000000,26452,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100900,'LVD_gimmick_02','s1d7','bnpc4880544',4880544,101.516296,14.237520,-75.044533,-0.000000,156,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,12,0,30,2,0,1,0,1,0,0.000000,1.000000,26180,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100900,'LVD_gimmick_02','s1d7','bnpc4880546',4880546,75.318359,14.007500,-83.151550,-0.000000,2949,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25902,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100900,'LVD_gimmick_02','s1d7','bnpc4880584',4880584,116.441498,13.992490,-60.166321,1.005252,326,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25498,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100900,'LVD_gimmick_02','s1d7','bnpc4880587',4880587,93.333000,14.000000,-75.773712,1.475945,326,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,13,0,30,2,0,1,0,1,0,0.000000,1.000000,25226,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100900,'LVD_gimmick_02','s1d7','bnpc4880588',4880588,93.614014,13.961910,-72.434631,1.481657,326,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,13,0,30,2,0,1,0,1,0,0.000000,1.000000,24954,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100900,'LVD_gimmick_02','s1d7','bnpc4880593',4880593,64.137100,17.136930,-87.552803,1.426130,1233,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,14,0,30,3,0,1,0,1,0,0.000000,1.000000,24688,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100900,'LVD_gimmick_02','s1d7','bnpc4880589',4880589,67.064163,16.920401,-84.642677,1.481603,326,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,14,0,30,3,0,1,0,1,0,0.000000,1.000000,24410,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100900,'LVD_gimmick_02','s1d7','bnpc4880591',4880591,67.885094,16.648350,-89.907516,1.297610,326,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,14,0,30,3,0,1,0,1,0,0.000000,1.000000,24138,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100901,'LVD_gimmick_03','s1d7','bnpc4880682',4880682,-28.619240,12.103500,-21.767929,0.804342,2734,0,0,0,0,6,0,0,0,0,0.000000,50,2,120,1,0,15,0,30,3,0,1,0,1,0,0.000000,1.000000,23558,1,3,30,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100901,'LVD_gimmick_03','s1d7','bnpc4880714',4880714,-28.044910,12.118760,-20.259420,-0.000000,2810,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22152,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100901,'LVD_gimmick_03','s1d7','bnpc4880738',4880738,-22.589870,12.156850,-24.160530,0.640215,2733,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,15,0,30,3,0,1,0,1,0,0.000000,1.000000,21886,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100901,'LVD_gimmick_03','s1d7','bnpc4880740',4880740,-27.768339,12.153220,-28.453190,0.640215,2733,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,15,0,30,3,0,1,0,1,0,0.000000,1.000000,21614,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103030,'LVD_gimmick_04','s1d7','bnpc4880792',4880792,-87.676407,7.388843,8.621636,0.433307,2734,0,0,0,0,6,0,0,0,0,0.000000,50,2,120,1,0,16,0,30,3,0,1,0,1,0,0.000000,1.000000,21106,1,3,30,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103030,'LVD_gimmick_04','s1d7','bnpc4880795',4880795,-81.116997,7.400973,5.657200,0.349158,2733,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,16,0,30,3,0,1,0,1,0,0.000000,1.000000,20846,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103030,'LVD_gimmick_04','s1d7','bnpc4880798',4880798,-88.385178,7.399533,1.021518,0.640215,2733,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,16,0,30,3,0,1,0,1,0,0.000000,1.000000,20574,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103030,'LVD_gimmick_04','s1d7','bnpc4880852',4880852,-99.842751,19.600010,61.986809,0.227049,934,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17140,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103031,'LVD_gimmick_05','s1d7','bnpc4880875',4880875,-144.569199,15.365030,159.612396,1.311098,1436,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16702,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103031,'LVD_gimmick_05','s1d7','bnpc4880885',4880885,-184.496094,6.702641,249.986404,0.471561,934,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,21,0,30,2,0,1,0,1,0,0.000000,1.000000,16052,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103031,'LVD_gimmick_05','s1d7','bnpc4880886',4880886,-183.757401,6.400117,242.935806,1.180369,934,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,21,0,30,2,0,1,0,1,0,0.000000,1.000000,15780,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880951',4880951,-300.300415,5.576687,284.150909,0.031597,2968,0,0,0,1,6,0,0,0,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15188,1,3,30,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880955',4880955,-255.163605,5.576687,254.991699,1.088586,934,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,22,0,30,3,0,1,0,1,0,0.000000,1.000000,14544,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880956',4880956,-256.267303,5.576687,260.270905,1.088586,934,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,22,0,30,3,0,1,0,1,0,0.000000,1.000000,14272,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880957',4880957,-252.806000,5.576687,257.396088,1.088586,934,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,22,0,30,3,0,1,0,1,0,0.000000,1.000000,14000,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880959',4880959,-272.233887,5.576687,255.266693,1.088586,934,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,23,0,30,3,0,1,0,1,0,0.000000,1.000000,13728,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880960',4880960,-270.712585,5.576687,251.463593,1.088586,934,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,23,0,30,3,0,1,0,1,0,0.000000,1.000000,13456,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880961',4880961,-271.634003,5.576687,258.548004,1.088586,934,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,23,0,30,3,0,1,0,1,0,0.000000,1.000000,13184,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880962',4880962,-286.233612,5.576687,260.375885,1.088586,934,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,24,0,30,3,0,1,0,1,0,0.000000,1.000000,12912,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880963',4880963,-282.848785,5.576687,255.980301,1.088586,934,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,24,0,30,3,0,1,0,1,0,0.000000,1.000000,12640,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880964',4880964,-283.154388,5.576687,263.599792,1.088586,934,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,24,0,30,3,0,1,0,1,0,0.000000,1.000000,12368,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880967',4880967,-307.628387,5.048906,271.648407,-0.000000,2413,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,25,0,30,3,0,1,0,1,0,0.000000,1.000000,12162,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880968',4880968,-304.459290,5.485939,268.419006,-0.000000,2413,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,25,0,30,3,0,1,0,1,0,0.000000,1.000000,11890,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880969',4880969,-303.691711,5.576687,272.884003,-0.000000,2413,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,25,0,30,3,0,1,0,1,0,0.000000,1.000000,11618,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880970',4880970,-293.385498,5.576687,272.455994,-0.000000,2413,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,26,0,30,3,0,1,0,1,0,0.000000,1.000000,11346,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880971',4880971,-291.123993,5.576687,268.382385,-0.000000,2413,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,26,0,30,3,0,1,0,1,0,0.000000,1.000000,11074,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880972',4880972,-288.875214,5.576687,272.692688,-0.000000,2413,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,26,0,30,3,0,1,0,1,0,0.000000,1.000000,10802,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880973',4880973,-300.576813,5.576687,260.814392,-0.000000,2413,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,27,0,30,3,0,1,0,1,0,0.000000,1.000000,10530,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880974',4880974,-296.024292,5.576687,261.099304,-0.000000,2413,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,27,0,30,3,0,1,0,1,0,0.000000,1.000000,10258,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880975',4880975,-298.046509,5.799900,258.590698,-0.000000,2413,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,27,0,30,3,0,1,0,1,0,0.000000,1.000000,9986,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103032,'LVD_gimmick_06','s1d7','bnpc4880977',4880977,-304.414215,5.829985,293.706787,-0.000000,1436,0,0,0,2,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9642,1,0,0,0,0,0,4893653,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929313',3929313,-41.367249,44.463268,115.983803,-0.000048,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134868,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929315',3929315,-64.483994,44.221882,108.658401,-0.000000,347,0,0,0,1,6,0,0,417,0,0.000000,0,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134596,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929319',3929319,-62.882469,44.443130,110.643097,-0.000048,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134324,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929320',3929320,-67.124481,43.839500,114.061096,-0.000048,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134052,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929322',3929322,-84.184067,44.665230,140.856003,-0.000048,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133780,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929323',3929323,-86.198257,45.235828,143.511002,-0.000048,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133508,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929326',3929326,-72.007370,42.584850,150.499695,-0.000048,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133236,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929327',3929327,9.933576,43.348518,109.513901,-0.000048,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132964,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929330',3929330,-16.098310,44.986568,99.015739,-0.000048,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132692,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929331',3929331,-18.173540,45.462231,95.170471,-0.000048,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132420,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929332',3929332,5.935712,46.903179,76.340843,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132148,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929333',3929333,31.174129,43.952351,145.616806,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131876,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929334',3929334,39.963329,44.737961,148.119293,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131604,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929335',3929335,31.357241,44.031109,155.077393,-0.000048,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131332,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929336',3929336,38.651051,44.626740,146.440796,-0.000048,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131060,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929338',3929338,38.895199,44.219131,96.910004,-0.000240,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130788,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929339',3929339,42.160629,44.387291,96.482742,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130516,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929340',3929340,6.515503,32.613819,167.589798,-0.000048,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130244,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929342',3929342,-15.976240,28.111290,180.102203,-0.000048,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129972,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929343',3929343,-17.563181,28.060829,182.726700,-0.000048,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129700,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929344',3929344,-5.020265,23.736271,199.389603,-0.000048,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129428,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929345',3929345,-3.494363,24.235390,196.307297,-0.000048,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129156,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929346',3929346,-1.510690,23.913940,198.748703,-0.000048,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128884,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929347',3929347,17.227421,29.147539,192.309402,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128612,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929353',3929353,76.584961,46.652691,118.364098,-0.000432,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128340,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929355',3929355,100.907799,48.208359,64.560791,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128068,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929356',3929356,103.440804,48.287861,69.260620,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127796,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929357',3929357,97.886597,48.162868,66.422493,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127524,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929358',3929358,75.394783,47.995930,57.511230,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127252,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929359',3929359,72.770264,48.021091,55.741089,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126980,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929361',3929361,97.978149,47.044201,84.183960,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126708,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929362',3929362,133.287506,48.588211,77.775269,-0.000335,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126436,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929363',3929363,135.271103,48.582859,78.843384,-0.000335,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126164,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929364',3929364,134.172607,48.281239,57.785889,-0.000335,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125892,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929366',3929366,131.364899,46.312809,110.704102,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125620,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929367',3929367,134.965897,46.384861,111.589203,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125348,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929369',3929369,133.928497,46.630039,108.415298,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125076,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929370',3929370,160.601196,47.107681,107.804901,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124804,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929371',3929371,158.648102,47.043930,108.811996,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124532,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929373',3929373,87.449463,46.439480,122.392601,-0.000335,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124260,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929374',3929374,89.402588,46.291409,119.066002,-0.000335,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,2,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123988,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929379',3929379,79.026489,46.295200,172.747299,-0.000048,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123722,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929381',3929381,55.313839,47.580700,188.036896,-0.000048,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123450,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929382',3929382,59.983150,48.833561,191.790604,-0.000048,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123178,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929383',3929383,55.496948,49.485981,193.255493,-0.000048,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122906,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929384',3929384,40.207520,50.527809,210.284500,-0.000048,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122634,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929385',3929385,37.171730,50.727009,213.792206,-0.000000,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122362,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929386',3929386,68.163307,56.521938,225.312607,-0.000000,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122090,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929387',3929387,54.398369,56.626060,241.565506,-0.000048,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121818,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929388',3929388,72.589951,56.790089,227.695297,-0.000000,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121546,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929389',3929389,116.563599,50.650009,183.367706,-0.000048,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121274,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929390',3929390,120.317299,49.333080,176.928299,-0.000048,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121002,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929391',3929391,112.138496,57.097969,213.153198,-0.000048,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120730,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929392',3929392,127.885902,49.931992,177.782806,-0.000048,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120458,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929394',3929394,115.251297,57.518108,214.251801,-0.000048,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120186,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929396',3929396,125.779999,52.105469,187.182404,-0.000048,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119914,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929397',3929397,108.506798,46.810520,148.088699,-0.000144,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119642,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929398',3929398,105.393997,46.639080,146.959595,-0.000144,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119370,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929400',3929400,175.585602,47.639019,147.630997,-0.000048,338,0,0,0,1,6,0,0,392,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119098,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929401',3929401,183.975204,48.843269,153.229202,-0.000000,338,0,0,0,1,6,0,0,392,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118826,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929403',3929403,178.149002,47.405022,144.853806,-0.000048,338,0,0,0,1,6,0,0,392,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118554,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929404',3929404,186.666794,55.711109,189.380295,-0.000000,338,0,0,0,1,6,0,0,392,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118282,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929405',3929405,183.897797,55.522209,192.259796,-0.000000,338,0,0,0,1,6,0,0,392,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118010,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929406',3929406,188.514496,58.364479,196.141098,-0.000000,338,0,0,0,1,6,0,0,392,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117738,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929407',3929407,190.993103,63.780270,212.770905,-0.000000,338,0,0,0,1,6,0,0,392,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117466,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929408',3929408,167.906097,54.582249,207.555405,-0.000000,338,0,0,0,1,6,0,0,392,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117194,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929409',3929409,142.684006,57.000031,221.431396,-0.000000,338,0,0,0,1,6,0,0,392,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116922,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929410',3929410,137.517303,57.770241,224.725601,-0.000000,338,0,0,0,1,6,0,0,392,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116650,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929412',3929412,140.714096,57.641670,227.264099,-0.000000,338,0,0,0,1,6,0,0,392,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116378,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929413',3929413,147.277206,57.573250,230.267700,-0.000000,338,0,0,0,1,6,0,0,392,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116106,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929415',3929415,132.701004,59.887051,252.613098,-0.000048,338,0,0,0,1,6,0,0,392,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115834,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929416',3929416,155.349503,60.722469,262.394104,-0.000000,338,0,0,0,1,6,0,0,392,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115562,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929417',3929417,152.622498,60.751789,265.042389,-0.000000,338,0,0,0,1,6,0,0,392,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115290,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929420',3929420,54.698360,61.151402,279.140015,-0.000048,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115018,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929421',3929421,56.888519,60.853931,277.569885,-0.000048,338,0,0,0,1,6,0,0,392,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114746,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929428',3929428,-79.240143,44.199680,141.771500,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114480,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929431',3929431,-49.668159,44.146759,101.335098,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114208,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929432',3929432,-5.630626,46.383801,88.914268,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113936,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929433',3929433,38.284840,47.256828,61.997360,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113664,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929435',3929435,37.766029,44.173309,103.105202,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113392,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929438',3929438,33.798679,44.230461,150.377594,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113120,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929439',3929439,23.575130,32.314270,182.543701,-0.000144,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112848,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929440',3929440,24.704220,32.888840,184.801895,-0.000144,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112576,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929441',3929441,-7.156528,28.523640,176.836700,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112304,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929442',3929442,8.926480,28.079479,213.183701,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112032,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929443',3929443,107.194603,45.562160,101.762497,-0.000144,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111760,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929444',3929444,107.499802,45.309570,104.722702,-0.000144,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111488,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929445',3929445,96.330078,47.994221,51.621220,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111216,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929446',3929446,136.522293,48.535961,75.516853,-0.000335,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110944,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929489',3929489,104.234398,46.884571,152.330795,-0.000335,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110672,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929492',3929492,92.393311,56.364761,218.402298,-0.000335,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110400,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929494',3929494,37.064091,49.279091,203.295898,-0.000335,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110128,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929495',3929495,86.381348,47.170170,181.353394,-0.000335,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109856,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929497',3929497,83.939819,47.040508,183.794907,-0.000335,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109584,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929498',3929498,91.314941,60.775452,256.840088,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109312,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929500',3929500,134.705704,59.571301,250.694107,-0.000336,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109040,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929501',3929501,131.525299,61.218529,277.023590,-0.000336,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108768,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929502',3929502,200.545807,49.630661,148.869003,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108496,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929504',3929504,198.987793,50.079350,152.091995,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108224,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929505',3929505,178.837997,53.123459,189.309799,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107952,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929506',3929506,181.171707,59.001560,223.100006,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107680,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929507',3929507,126.924500,58.802368,223.399994,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107408,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929423',3929423,74.967529,46.674271,133.257004,-0.539347,1447,0,0,0,1,6,0,0,354,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107142,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929300',3929300,154.466995,46.291969,133.531601,-1.052231,1447,0,0,0,1,6,0,0,354,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106870,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84643,'LVD_BNPC_01','s1f1','bnpc3929298',3929298,2.578727,46.242130,89.066856,-0.539346,1447,0,0,0,1,6,0,0,354,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106598,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929746',3929746,80.869362,49.270599,7.434502,-0.000000,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105496,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929747',3929747,29.012220,49.028271,-3.487470,-0.000000,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105224,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929748',3929748,77.311432,49.709980,3.491879,-0.000000,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104952,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929749',3929749,81.834106,54.978149,-65.232361,-0.000048,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104680,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929750',3929750,87.083130,55.954830,-70.298401,-0.000048,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104408,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929751',3929751,106.034897,57.114498,-51.468689,-0.000048,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104136,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929752',3929752,105.891502,62.411079,-101.484497,-0.000000,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103864,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929753',3929753,109.310799,62.695950,-97.230469,-0.000000,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103592,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929754',3929754,112.249298,64.482712,-105.898697,-0.000000,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103320,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929756',3929756,11.047700,51.170399,-56.780079,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103048,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929757',3929757,7.333039,50.839249,-59.004021,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102776,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929758',3929758,-9.942499,48.132980,-25.451969,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102504,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929759',3929759,-5.731009,48.580139,-23.376751,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102232,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929761',3929761,-0.174012,53.131248,-111.148903,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101960,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929762',3929762,-7.256910,48.664841,-31.555580,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101688,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929763',3929763,-0.610147,46.842758,24.196171,-0.000000,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101416,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929764',3929764,-16.474920,49.226559,-89.968887,-0.000240,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101144,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929769',3929769,-43.220982,46.402618,25.789110,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100872,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929770',3929770,3.832037,53.483231,-114.631203,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100600,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929771',3929771,12.344500,52.316029,-102.067596,-0.000240,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100328,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929772',3929772,-38.788712,46.775139,22.066339,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100056,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929773',3929773,-37.919960,46.459820,29.848379,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99784,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929774',3929774,-80.033630,42.496342,35.263550,-0.000335,341,0,0,0,1,6,0,0,401,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99512,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929776',3929776,-91.857826,43.085781,-23.419170,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99240,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929777',3929777,-87.681976,42.651001,-20.729090,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98968,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929778',3929778,-153.286896,41.687149,-29.617990,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98696,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929779',3929779,-149.248505,42.913052,-34.195511,-0.000240,341,0,0,0,1,6,0,0,401,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98424,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929780',3929780,-146.114700,41.510841,-23.279819,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98152,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929781',3929781,-91.557831,45.832359,-74.574440,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97880,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929782',3929782,-94.882561,46.208530,-79.633614,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97608,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929783',3929783,-87.110580,46.547352,-86.619080,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97336,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929786',3929786,-96.894127,45.010529,-44.811169,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97064,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929787',3929787,-62.452171,48.231701,-104.740601,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96792,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929794',3929794,-178.942596,43.561249,-181.994400,-0.000335,341,0,0,0,1,6,0,0,401,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96520,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929795',3929795,-126.848297,47.734409,-169.207306,-0.000335,341,0,0,0,1,6,0,0,401,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96248,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929796',3929796,-194.842499,42.180161,-142.809296,-0.000335,341,0,0,0,1,6,0,0,401,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95976,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929800',3929800,-192.279007,41.889690,-147.600601,-0.000335,341,0,0,0,1,6,0,0,401,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95704,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929801',3929801,-122.087502,48.332630,-170.000793,-0.000335,341,0,0,0,1,6,0,0,401,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95432,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929802',3929802,-123.918503,48.047798,-161.486298,-0.000335,341,0,0,0,1,6,0,0,401,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95160,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929803',3929803,-229.663605,39.878719,-179.980194,-0.000335,341,0,0,0,1,6,0,0,401,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94888,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929804',3929804,-181.170395,41.225609,-251.667099,-0.000335,341,0,0,0,1,6,0,0,401,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94616,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929805',3929805,-185.351303,41.346439,-247.821793,-0.000335,341,0,0,0,1,6,0,0,401,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94344,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929806',3929806,-195.330795,40.334259,-258.991394,-0.000335,341,0,0,0,1,6,0,0,401,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94072,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929826',3929826,-13.135430,48.986919,-86.472923,-0.000240,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93800,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929828',3929828,54.727501,50.161850,-32.944271,-0.000144,341,0,0,0,1,6,0,0,401,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93528,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929829',3929829,64.597313,54.990398,-122.676598,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93262,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929831',3929831,66.026863,55.127190,-121.580200,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92990,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929832',3929832,64.993713,54.756149,-119.316101,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92718,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929834',3929834,-11.130180,54.068581,-151.851303,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92446,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929835',3929835,19.661039,55.244888,-153.973495,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92174,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929836',3929836,18.231480,55.455791,-155.069901,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91902,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929838',3929838,-9.406013,54.140652,-151.402298,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91630,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929839',3929839,-10.487150,54.255268,-153.170502,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91358,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929843',3929843,24.606649,60.413231,-187.828293,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91086,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929844',3929844,26.036209,60.638901,-186.731903,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90814,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929845',3929845,28.305441,61.087551,-194.048996,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90542,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929846',3929846,-13.216780,58.348202,-191.121994,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90270,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929847',3929847,-11.787220,58.581120,-190.025604,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89998,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929849',3929849,51.002171,62.513901,-171.321503,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89726,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929850',3929850,52.431728,62.561481,-170.225098,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89454,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929851',3929851,50.250092,61.812469,-168.366302,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89182,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929856',3929856,56.742020,62.683529,-167.113602,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88910,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929857',3929857,91.871223,65.801552,-162.567993,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88638,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929858',3929858,91.084763,66.005180,-164.451996,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88366,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929859',3929859,119.531303,72.554298,-168.638596,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88094,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929861',3929861,119.737503,69.204010,-146.898697,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87822,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929862',3929862,118.303101,68.822662,-147.997299,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87550,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929863',3929863,117.112900,68.311539,-134.325195,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87278,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929864',3929864,117.540199,68.388046,-145.037003,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87006,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929873',3929873,118.584702,77.068329,-192.023804,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86734,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929874',3929874,119.371101,77.166290,-190.139801,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86462,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929875',3929875,96.033737,71.784462,-206.070999,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86190,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929876',3929876,147.231293,84.770142,-179.634399,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85918,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929878',3929878,131.732498,84.239113,-214.769608,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85646,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929879',3929879,129.449295,83.200447,-214.469604,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85374,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929880',3929880,117.078697,76.359550,-189.839798,-0.000000,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85102,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929886',3929886,-9.820036,57.888222,-265.562714,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84830,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929888',3929888,-8.463858,57.920422,-266.546692,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84558,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929892',3929892,-36.288441,54.051159,-264.804810,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84286,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929895',3929895,-37.718620,55.539761,-246.754105,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84014,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929896',3929896,-36.105400,55.795471,-247.488297,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83742,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929897',3929897,-35.805401,55.647850,-244.752502,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83470,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929898',3929898,-72.558617,52.311829,-247.421906,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83198,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929899',3929899,-72.858627,52.571899,-250.157700,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82926,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929900',3929900,-74.471848,52.134220,-249.423401,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82654,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929902',3929902,-74.133102,52.444199,-251.412003,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82382,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929903',3929903,-61.128719,54.917782,-276.469696,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82110,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929905',3929905,-62.202911,55.073421,-276.169708,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81838,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929906',3929906,-87.521019,49.709011,-267.128387,-0.000144,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81566,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929907',3929907,-103.837601,46.340569,-243.640900,-0.000144,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81294,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929908',3929908,-102.189697,46.624069,-244.434296,-0.000144,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81022,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929910',3929910,-89.931953,49.147942,-266.121399,-0.000144,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80750,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929911',3929911,-88.406036,49.520420,-265.144806,-0.000144,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80478,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929913',3929913,-94.834862,44.620140,-289.814606,-0.000144,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80206,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929914',3929914,-93.431030,44.502659,-291.523712,-0.000144,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79934,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929918',3929918,-156.328705,41.211071,-257.953796,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79662,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929919',3929919,-154.711197,41.244331,-258.686310,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79390,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929921',3929921,-122.943001,43.252022,-286.232788,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79118,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929922',3929922,-109.323997,40.309811,-324.737396,-0.000144,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78846,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929923',3929923,-110.727898,40.159351,-323.028412,-0.000144,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78574,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929924',3929924,-108.366302,40.562851,-322.496002,-0.000144,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78302,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929925',3929925,-68.430206,45.267422,-308.626495,-0.000144,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78030,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929926',3929926,-51.165970,45.726879,-353.049713,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77758,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929927',3929927,-49.648022,45.907570,-352.084595,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77486,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929928',3929928,-48.759708,45.997150,-354.053986,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77214,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929929',3929929,-54.654140,45.340069,-370.533600,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76942,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929930',3929930,-54.354141,45.342510,-373.142303,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76670,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929931',3929931,-90.540337,39.280819,-353.994690,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76398,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929932',3929932,-90.840347,39.428822,-351.385986,-0.000048,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76126,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929934',3929934,-164.141403,44.110901,-217.517303,-0.000048,323,0,0,0,1,6,0,0,358,0,0.000000,8,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75860,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929935',3929935,-144.975998,45.815300,-200.640900,-0.000048,323,0,0,0,1,6,0,0,358,0,0.000000,8,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75588,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929936',3929936,-136.644501,45.374001,-218.646606,-0.000048,323,0,0,0,1,6,0,0,358,0,0.000000,8,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75316,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929937',3929937,-131.304001,45.701130,-214.709702,-0.000048,323,0,0,0,1,6,0,0,358,0,0.000000,8,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75044,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929938',3929938,-66.976334,25.431820,-148.179199,-0.000000,342,0,0,0,1,6,0,0,404,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74778,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929940',3929940,-57.442081,24.957350,-153.725693,-0.000000,342,0,0,0,1,6,0,0,404,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74506,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929941',3929941,-53.170090,26.263571,-128.472107,-0.000000,342,0,0,0,1,6,0,0,404,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74234,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929942',3929942,-67.405273,26.238400,-132.898193,-0.000000,342,0,0,0,1,6,0,0,404,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73962,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929943',3929943,-55.497108,26.236170,-126.848297,-0.000048,342,0,0,0,1,6,0,0,404,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73690,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929944',3929944,-58.530079,27.712959,-111.586197,-0.000000,342,0,0,0,1,6,0,0,404,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73418,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929945',3929945,-55.685059,24.922501,-155.193802,-0.000000,342,0,0,0,1,6,0,0,404,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73146,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929948',3929948,-46.655151,25.719770,-144.661301,-0.000000,342,0,0,0,1,6,0,0,404,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72874,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929954',3929954,-58.565269,51.362320,-226.270996,0.685800,348,0,0,0,0,6,0,0,421,0,0.000000,9,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72608,3,0,0,0,0,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929955',3929955,-56.209209,52.730179,-234.378098,-0.837266,349,0,0,0,1,6,0,0,418,0,0.000000,9,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72342,3,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929957',3929957,-64.286301,51.072021,-224.902802,-0.000240,349,0,0,0,1,6,0,0,418,0,0.000000,9,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72070,3,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929959',3929959,-60.089680,51.823978,-230.541000,-0.000144,349,0,0,0,1,6,0,0,418,0,0.000000,9,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71798,3,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929960',3929960,-64.276390,50.332390,-220.639801,0.904919,349,0,0,0,0,6,0,0,418,0,0.000000,9,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71526,3,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929962',3929962,-63.299820,50.321152,-220.334595,-1.291488,348,0,0,0,0,6,0,0,421,0,0.000000,9,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71248,3,0,0,0,0,30082,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929963',3929963,-66.534210,51.498051,-231.124802,-0.000144,348,0,0,0,1,6,0,0,421,0,0.000000,9,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70976,3,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929964',3929964,-71.434937,49.349220,-217.996902,-0.000240,348,0,0,0,1,6,0,0,421,0,0.000000,9,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70704,3,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929966',3929966,-57.328251,51.480759,-227.008499,-1.538463,350,0,0,0,0,6,0,0,419,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70444,1,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930079',3930079,2.853394,47.348751,19.333130,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70178,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930083',3930083,98.893677,51.255001,-19.302670,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69906,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930087',3930087,79.819946,55.375000,-73.319641,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69634,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930089',3930089,11.367920,50.858280,-64.957703,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69362,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930092',3930092,-19.729919,46.707760,-29.587280,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69090,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930094',3930094,-25.955629,51.285519,-122.240097,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68818,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930097',3930097,-27.878300,50.766720,-117.967499,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68546,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930100',3930100,81.406860,64.560791,-160.418198,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68274,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930105',3930105,131.548004,84.245003,-218.036194,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68002,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930109',3930109,111.113503,74.884857,-194.245605,-0.000000,57,0,0,0,1,6,0,0,395,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67730,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930110',3930110,28.519039,61.112301,-189.013504,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67458,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930112',3930112,-4.593018,58.915039,-205.523697,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67186,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930113',3930113,3.555298,56.168461,-161.730392,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66914,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930118',3930118,-122.117996,45.761719,-79.270630,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66642,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930123',3930123,-118.181198,42.313229,-6.424072,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66370,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930124',3930124,-40.451721,45.426029,43.106689,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66098,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930125',3930125,-56.534729,45.853390,3.311157,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65826,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930127',3930127,-76.127258,43.228760,-43.289860,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65554,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930128',3930128,-213.427994,39.292461,-150.652298,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65282,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930129',3930129,-174.792099,43.778080,-200.488297,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65010,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930130',3930130,-178.332199,41.714760,-243.854507,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64738,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930132',3930132,-82.078308,51.346561,-266.498810,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64466,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930133',3930133,-48.081181,54.215328,-241.352005,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64194,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930138',3930138,-142.076797,40.268429,-293.263092,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63922,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930141',3930141,-140.245697,40.848389,-289.845215,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63650,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930143',3930143,-44.602112,46.372070,-358.907501,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63378,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930147',3930147,-57.785950,46.097530,-316.426300,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63106,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3930151',3930151,-55.863281,46.250000,-314.839508,-0.000048,57,0,0,0,1,6,0,0,395,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62834,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929301',3929301,-32.773281,40.774231,67.215347,-0.000000,383,0,0,0,1,6,0,0,640,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62568,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929303',3929303,-28.213820,41.179878,64.173943,-0.000000,383,0,0,0,1,6,0,0,640,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62296,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929305',3929305,8.662592,42.689850,45.686710,-0.000000,383,0,0,0,1,6,0,0,640,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62024,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929306',3929306,13.183170,42.815102,41.155972,-0.000048,383,0,0,0,1,6,0,0,640,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61752,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929307',3929307,12.633850,42.762321,45.031761,-0.000048,383,0,0,0,1,6,0,0,640,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61480,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929308',3929308,83.202133,43.374279,33.127289,-0.000048,383,0,0,0,1,6,0,0,640,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61208,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929310',3929310,107.530296,44.219631,32.892910,-0.000048,383,0,0,0,1,6,0,0,640,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60936,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929311',3929311,110.185303,44.303749,30.939760,-0.000048,383,0,0,0,1,6,0,0,640,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60664,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929728',3929728,57.677570,57.037601,-252.600006,-0.000144,383,0,0,0,1,6,0,0,640,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60392,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929730',3929730,16.799730,54.286369,-250.227097,-0.000144,383,0,0,0,1,6,0,0,640,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60120,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929731',3929731,21.166161,54.789558,-247.635101,-0.000144,383,0,0,0,1,6,0,0,640,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59848,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929733',3929733,-38.999229,46.458340,-213.513901,-0.000144,383,0,0,0,1,6,0,0,640,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59576,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929734',3929734,-72.817390,45.500000,-170.936401,-0.000240,383,0,0,0,1,6,0,0,640,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59304,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929735',3929735,-68.148132,45.500000,-172.858994,-0.000240,383,0,0,0,1,6,0,0,640,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59032,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929736',3929736,-70.620087,45.500000,-166.297607,-0.000240,383,0,0,0,1,6,0,0,640,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58760,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929737',3929737,-110.856796,44.284451,-131.487106,-0.000144,383,0,0,0,1,6,0,0,640,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58488,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929738',3929738,-101.976097,45.015499,-129.716995,-0.000144,383,0,0,0,1,6,0,0,640,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58216,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929740',3929740,-167.498306,40.500000,-61.966919,-0.000144,383,0,0,0,1,6,0,0,640,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57944,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929741',3929741,-167.193100,40.500000,-66.147888,-0.000144,383,0,0,0,1,6,0,0,640,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57672,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929742',3929742,-183.581406,41.007771,-109.056297,-0.000144,383,0,0,0,1,6,0,0,640,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57400,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc4024349',4024349,-95.414726,47.931198,-199.847397,-0.000144,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57086,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc4024350',4024350,-97.032097,47.837219,-199.084503,-0.000144,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56814,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc4024351',4024351,-95.109558,48.244461,-196.093704,-0.000144,118,0,0,0,1,6,0,0,405,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56542,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929815',3929815,118.431900,49.488010,10.180580,-0.785204,769,0,0,0,0,6,0,0,367,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56318,6,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929813',3929813,117.565399,49.175140,13.275840,-0.180193,769,0,0,0,0,6,0,0,367,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56046,6,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929818',3929818,120.948303,51.064060,-0.143817,-0.000144,769,0,0,0,1,6,0,0,367,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55774,6,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929817',3929817,106.367798,48.645981,15.557140,-0.000048,769,0,0,0,1,6,0,0,367,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55502,6,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929810',3929810,132.709000,52.181438,1.958378,-0.707435,769,0,0,0,0,6,0,0,367,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55230,6,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929820',3929820,134.218094,51.528179,9.775265,-0.000048,769,0,0,0,1,6,0,0,367,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54958,6,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929812',3929812,115.385597,49.234230,11.315280,1.566890,769,0,0,0,0,6,0,0,367,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54686,6,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929808',3929808,131.630295,52.191109,0.493474,0.758471,769,0,0,0,0,6,0,0,367,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54414,6,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929933',3929933,-60.107460,55.697620,-260.511414,1.112441,1447,0,0,0,1,6,0,0,354,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54082,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929765',3929765,-27.792070,47.072651,8.583298,-0.000527,1447,0,0,0,1,6,0,0,354,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53810,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84648,'LVD_BNPC_02','s1f1','bnpc3929767',3929767,76.915253,51.330029,-32.258850,-0.000144,1447,0,0,0,1,6,0,0,354,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53538,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930182',3930182,-304.707397,13.931440,-297.352600,-0.000048,326,0,0,0,1,6,0,0,561,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52976,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930185',3930185,-317.921814,14.511280,-319.874908,-0.000048,326,0,0,0,1,6,0,0,561,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52704,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930186',3930186,-356.069305,13.626260,-315.358185,-0.000144,326,0,0,0,1,6,0,0,561,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52432,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930188',3930188,-346.212006,15.915110,-343.556885,-0.000144,326,0,0,0,1,6,0,0,561,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52160,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930190',3930190,-357.564697,16.983240,-350.606598,-0.000048,326,0,0,0,1,6,0,0,561,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51888,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930192',3930192,-365.224701,24.277060,-387.899597,-0.000144,326,0,0,0,1,6,0,0,561,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51616,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930193',3930193,-372.335388,24.032909,-383.108307,-0.000144,326,0,0,0,1,6,0,0,561,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51344,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930194',3930194,-242.989197,12.764750,-304.178589,-0.000144,326,0,0,0,1,6,0,0,561,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51072,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930195',3930195,-245.276901,15.323140,-347.073608,-0.000144,326,0,0,0,1,6,0,0,561,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50800,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930196',3930196,-241.837601,15.504950,-360.820190,-0.000144,326,0,0,0,1,6,0,0,561,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50528,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930197',3930197,-231.249405,14.674970,-351.945709,-0.000144,326,0,0,0,1,6,0,0,561,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50256,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930198',3930198,-279.758698,23.224979,-379.012512,-0.000144,326,0,0,0,1,6,0,0,561,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49984,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930199',3930199,-287.296814,23.576111,-386.822815,-0.000048,326,0,0,0,1,6,0,0,561,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49712,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930200',3930200,-300.179901,19.009211,-361.576294,-0.000048,326,0,0,0,1,6,0,0,561,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49440,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930203',3930203,-344.047791,28.847330,-431.588806,-0.000048,326,0,0,0,1,6,0,0,561,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49168,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930207',3930207,-327.870605,22.171310,-400.259399,-0.000144,326,0,0,0,1,6,0,0,561,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48896,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930213',3930213,-179.705505,16.617029,-403.463806,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48630,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930216',3930216,-146.990204,14.297660,-392.843506,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48358,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930219',3930219,-175.310898,16.525471,-404.928711,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48086,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930224',3930224,-229.388901,22.812189,-440.299103,-0.000144,138,0,0,0,1,6,0,0,399,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47814,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930227',3930227,-197.039795,24.795860,-452.140106,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47542,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930229',3930229,-216.937500,26.810061,-472.739807,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47270,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930231',3930231,-222.980103,23.453070,-442.618500,-0.000144,138,0,0,0,1,6,0,0,399,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46998,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930232',3930232,-283.527893,22.018740,-432.181305,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46726,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930233',3930233,-250.629501,24.917971,-481.406891,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46454,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930234',3930234,-223.682007,32.577961,-507.713501,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46182,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930235',3930235,-228.229202,31.876051,-511.985992,-0.000144,138,0,0,0,1,6,0,0,399,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45910,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930236',3930236,-213.031204,32.272781,-537.346497,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45638,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930237',3930237,-249.988602,30.502741,-572.350586,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45366,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930240',3930240,-252.735199,33.310398,-597.344971,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45094,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930241',3930241,-255.390305,33.768169,-600.732422,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44822,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930242',3930242,-284.290894,30.136520,-561.608276,-0.000144,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44550,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930245',3930245,-317.302002,35.589191,-591.171570,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44278,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930246',3930246,-321.442505,33.511250,-583.939514,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44006,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930247',3930247,-331.995605,36.578739,-597.355713,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43734,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930248',3930248,-354.800690,33.443390,-535.994385,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43462,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930250',3930250,-367.069611,33.580250,-493.158600,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43190,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930252',3930252,-374.167297,34.022141,-483.473907,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42918,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930253',3930253,-370.490387,33.450420,-481.198914,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42646,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930254',3930254,-325.906097,27.601170,-476.435211,-0.000144,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42374,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930255',3930255,-322.883911,27.180950,-472.301392,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42102,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930258',3930258,-323.219299,26.630880,-526.640625,-0.000048,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41830,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930270',3930270,-365.179810,12.493070,-307.350189,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41564,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930271',3930271,-422.502197,12.677160,-307.390991,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41292,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930274',3930274,-425.462402,12.762100,-310.618195,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41020,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930277',3930277,-222.915207,12.294620,-317.636810,-0.000240,59,0,0,0,1,6,0,0,56,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40748,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930278',3930278,-226.158997,12.534600,-317.995789,-0.000240,59,0,0,0,1,6,0,0,56,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40476,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930280',3930280,-196.398895,12.222430,-355.031708,-0.000240,59,0,0,0,1,6,0,0,56,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40204,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930281',3930281,-74.238098,12.130030,-410.146606,-0.000144,59,0,0,0,1,6,0,0,56,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39932,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930283',3930283,-21.098070,11.319840,-436.355804,-0.000144,59,0,0,0,1,6,0,0,56,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39660,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930284',3930284,-3.859158,14.732280,-457.622314,-0.000240,59,0,0,0,1,6,0,0,56,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39388,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930285',3930285,-24.365191,12.386510,-452.972687,-0.000144,59,0,0,0,1,6,0,0,56,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39116,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3930286',3930286,-6.057117,14.506850,-455.250793,-0.000144,59,0,0,0,1,6,0,0,56,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38844,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3931787',3931787,-269.609711,22.980930,-390.658813,-0.000000,385,0,0,0,1,6,0,0,641,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38578,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3931791',3931791,-271.683899,13.930550,-319.410187,-0.000000,385,0,0,0,1,6,0,0,641,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38306,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3931792',3931792,-269.811615,14.350880,-322.618713,-0.000000,385,0,0,0,1,6,0,0,641,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38034,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3931793',3931793,-312.711609,13.906600,-302.460907,-0.000000,385,0,0,0,1,6,0,0,641,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37762,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3931795',3931795,-204.028397,13.900940,-394.735687,-0.000048,385,0,0,0,1,6,0,0,641,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37490,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3931796',3931796,-231.464203,25.436769,-471.122314,-0.000048,385,0,0,0,1,6,0,0,641,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37218,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3931798',3931798,-201.647995,24.643311,-457.297699,-0.000048,385,0,0,0,1,6,0,0,641,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36946,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3931799',3931799,-243.150803,26.919580,-525.615479,-0.000000,385,0,0,0,1,6,0,0,641,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36674,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3932161',3932161,-207.015305,32.560860,-562.758789,-0.000000,385,0,0,0,1,6,0,0,641,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36402,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3932162',3932162,-244.633408,29.896629,-566.727112,-0.000000,385,0,0,0,1,6,0,0,641,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36130,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3932164',3932164,-269.969910,33.304001,-589.321411,-0.000048,385,0,0,0,1,6,0,0,641,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35858,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3932166',3932166,-286.629089,24.500669,-532.985291,-0.000000,385,0,0,0,1,6,0,0,641,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35586,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3932167',3932167,-284.197998,25.013651,-536.186523,-0.000000,385,0,0,0,1,6,0,0,641,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35314,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3932168',3932168,-357.327911,32.973610,-562.442871,-0.000000,385,0,0,0,1,6,0,0,641,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35042,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3932170',3932170,-331.616302,28.746330,-468.081787,-0.000000,385,0,0,0,1,6,0,0,641,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34770,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3932171',3932171,-298.664886,23.056339,-406.912415,-0.000048,385,0,0,0,1,6,0,0,641,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34498,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3932173',3932173,-377.859802,25.497511,-389.074188,-0.000048,385,0,0,0,1,6,0,0,641,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34226,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3932175',3932175,-350.521088,18.624069,-355.627014,-0.000000,385,0,0,0,1,6,0,0,641,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33954,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84652,'LVD_BNPC_03','s1f1','bnpc3932176',3932176,-379.679993,13.370460,-319.535095,-0.000000,385,0,0,0,1,6,0,0,641,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33682,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98338,'LVD_easter_2014','s1f1','bnpc4621598',4621598,-494.667999,21.636040,-302.079010,0.584196,2770,0,0,0,1,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29960,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4867876',4867876,28.213869,50.827759,-87.998840,-0.000048,3108,0,0,0,0,6,0,0,2912,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29486,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4867877',4867877,41.707401,51.156799,-86.539299,-0.000000,3108,0,0,0,0,6,0,0,2912,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29214,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4867878',4867878,39.668598,51.736500,-101.188400,-0.000000,3108,0,0,0,0,6,0,0,2912,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28942,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4867879',4867879,34.538631,50.845268,-83.984108,-0.000000,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28676,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4867880',4867880,24.472219,51.118671,-92.466171,-0.000000,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28404,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4867881',4867881,24.319870,52.536991,-109.234901,-0.000000,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28132,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4867882',4867882,55.329231,53.690331,-96.379692,-0.000000,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27860,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4867883',4867883,35.340740,52.012718,-113.983498,-0.000000,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27588,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4867884',4867884,20.250629,52.350960,-103.253700,-0.000000,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27316,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4867885',4867885,51.540489,52.848961,-79.500076,-0.000000,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27044,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4867886',4867886,41.456211,51.357250,-93.443268,-0.000000,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26772,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4867887',4867887,35.558880,51.834862,-105.446701,-0.000000,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26500,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4867888',4867888,23.570000,50.670292,-81.777740,-0.000000,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26228,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4867889',4867889,51.948132,52.700432,-106.025299,-0.000000,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25956,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4867890',4867890,27.729429,51.344398,-95.375870,-0.000048,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25684,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4892334',4892334,136.626007,48.560169,61.895821,-0.000048,3108,0,0,0,0,6,0,0,2912,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24494,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4892335',4892335,131.496002,48.619511,79.100121,-0.000048,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24228,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4892336',4892336,121.429604,48.684132,70.618050,-0.000048,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23956,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4892337',4892337,121.277298,47.602539,53.849319,-0.000048,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23684,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4892338',4892338,138.664795,48.539879,76.544930,-0.000048,3108,0,0,0,0,6,0,0,2912,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23406,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4892339',4892339,117.208000,48.099979,59.830521,-0.000048,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23140,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4892340',4892340,132.298096,47.763882,49.100731,-0.000048,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22868,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4892341',4892341,152.286697,49.492531,66.704536,-0.000048,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22596,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4892342',4892342,125.171303,48.678471,75.085381,-0.000048,3108,0,0,0,0,6,0,0,2912,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22318,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4892343',4892343,120.527397,48.525890,81.306480,-0.000048,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22052,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4892344',4892344,148.497894,48.561459,83.584137,-0.000048,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21780,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4892345',4892345,148.905502,49.877151,57.058929,-0.000048,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21508,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4892346',4892346,124.762199,48.546471,67.801064,-0.000048,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21236,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4892347',4892347,132.516296,48.171822,57.637520,-0.000048,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20964,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102769,'LVD_firefall_2014','s1f1','bnpc4892348',4892348,138.413605,48.645409,69.640953,-0.000048,3109,0,0,0,0,6,0,0,2911,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20692,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85941,'LVD_guard_01','s1f1','bnpc4056974',4056974,-10.772860,41.723129,131.511597,1.489761,783,0,0,0,0,6,0,0,1272,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20370,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93082,'LVD_kakashi_01','s1f1','bnpc4296703',4296703,220.339401,103.033401,-192.118607,-0.000000,901,0,0,0,0,6,0,0,541,0,0.000000,1,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19236,8,0,0,4296693,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93082,'LVD_kakashi_01','s1f1','bnpc4296705',4296705,244.738297,105.634201,-204.802994,-0.533049,901,0,0,0,0,6,0,0,541,0,0.000000,1,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18964,8,0,0,4296689,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93082,'LVD_kakashi_01','s1f1','bnpc4296707',4296707,249.144104,105.712402,-208.740204,-0.572685,901,0,0,0,0,6,0,0,541,0,0.000000,1,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18692,8,0,0,4296690,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93082,'LVD_kakashi_01','s1f1','bnpc4296708',4296708,253.558899,105.985802,-214.094299,-0.707136,901,0,0,0,0,6,0,0,541,0,0.000000,1,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18420,8,0,0,4296691,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93082,'LVD_kakashi_01','s1f1','bnpc4296709',4296709,226.015106,103.203697,-193.008301,-0.193422,901,0,0,0,0,6,0,0,541,0,0.000000,1,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18148,8,0,0,4296694,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89403,'FATE_001','s1f1','bnpc4130700',4130700,-136.848495,45.861969,-206.485703,-1.540589,323,0,0,0,1,10,0,0,358,0,0.000000,8,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,84060,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89403,'FATE_001','s1f1','bnpc4130690',4130690,-140.179794,45.501919,-210.494202,-0.706720,1222,0,0,0,1,6,0,0,849,0,0.000000,8,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,83794,1,0,50,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86270,'FATE_003','s1f1','bnpc4087570',4087570,-402.053894,14.047820,-335.397491,1.330125,1192,0,0,0,0,6,0,0,981,0,0.000000,10,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,80076,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86432,'FATE_004','s1f1','bnpc4086961',4086961,-185.501495,31.165251,-632.837891,-0.000000,1195,0,0,0,0,6,0,0,903,0,0.000000,14,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,77766,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86808,'FATE_006','s1f1','bnpc4096842',4096842,99.762840,64.532410,-147.039001,-0.575614,1212,0,0,0,0,6,0,0,1355,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,77028,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86519,'FATE_007','s1f1','bnpc4089252',4089252,177.329193,64.144272,286.718414,0.244346,1190,0,0,0,0,6,0,0,904,0,0.000000,7,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,75358,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86928,'FATE_008','s1f1','bnpc4101491',4101491,70.006020,46.370159,137.089401,-1.256816,1192,0,0,0,0,6,0,0,981,0,0.000000,1,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,73024,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86227,'FATE_010','s1f1','bnpc4083171',4083171,1.403082,57.728371,-302.580902,-0.000000,603,0,0,0,0,6,0,0,905,0,0.000000,9,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,70708,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86227,'FATE_010','s1f1','bnpc4083173',4083173,4.719059,58.133980,-290.532104,-0.000000,603,0,0,0,0,6,0,0,905,0,0.000000,9,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,70436,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86227,'FATE_010','s1f1','bnpc4083176',4083176,-1.402117,57.376301,-285.793701,-0.000000,603,0,0,0,0,6,0,0,905,0,0.000000,9,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,70164,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86227,'FATE_010','s1f1','bnpc4083179',4083179,12.673390,58.918900,-303.301300,-1.134464,1212,0,0,0,0,6,0,0,1320,0,0.000000,9,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,68944,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89504,'FATE_012','s1f1','bnpc4137874',4137874,-254.871201,15.972170,-355.913300,-0.000000,326,0,0,0,1,6,0,0,561,0,0.000000,8,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,68538,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89504,'FATE_012','s1f1','bnpc4137879',4137879,-258.668488,16.740219,-365.294800,-0.000000,1223,0,0,0,1,6,0,0,850,0,0.000000,10,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,68272,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86992,'FATE_014','s1f1','bnpc4102427',4102427,-337.819397,29.085051,-570.687012,1.334821,1289,0,0,0,0,6,0,0,1333,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,62658,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86992,'FATE_014','s1f1','bnpc4103305',4103305,-200.327698,31.028191,-632.947571,-0.000000,1389,0,0,0,0,6,0,0,1331,0,0.000000,14,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,62392,1,0,0,0,0,30065,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86262,'FATE_018','s1f1','bnpc4084666',4084666,12.103050,58.820610,-190.739899,-0.174533,1190,0,0,0,1,6,0,0,981,0,0.000000,4,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59270,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87205,'FATE_019','s1f1','bnpc4104337',4104337,-321.579010,28.758829,-565.568604,1.311353,1224,0,0,0,1,6,0,0,851,0,0.000000,14,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,56674,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87059,'FATE_020','s1f1','bnpc4102884',4102884,0.485221,47.067551,66.690170,-0.406222,1214,0,0,0,0,6,0,0,1356,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,55308,1,0,0,0,0,30139,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102732,'FATE_CNY_2015_01','s1f1','bnpc4867520',4867520,147.507904,58.379330,238.005295,1.376438,3112,0,0,0,1,6,0,0,2908,0,0.000000,5,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,53806,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94601,'FATE_FF13_01_01','s1f1','bnpc4387464',4387464,-279.753906,22.399521,-465.271698,-0.000000,2291,0,0,0,0,6,0,0,750,0,0.000000,99,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,53460,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94601,'FATE_FF13_01_01','s1f1','bnpc4387471',4387471,-279.141815,22.489759,-504.041290,-0.000000,2086,0,0,0,0,6,0,0,2216,0,0.000000,12,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,53194,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96984,'FATE_FFXI_01','s1f1','bnpc4516018',4516018,-280.502594,22.402901,-467.352997,-0.419731,2439,0,0,0,1,6,0,0,2328,0,0.000000,12,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,52524,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96984,'FATE_FFXI_01','s1f1','bnpc4516022',4516022,-281.505798,22.398630,-466.453400,-0.000000,2291,0,0,0,0,6,0,0,750,0,0.000000,99,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,51616,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96985,'FATE_FFXI_02','s1f1','bnpc4516026',4516026,-280.278503,22.409010,-467.483093,-0.257761,2308,0,0,0,1,6,0,0,2327,0,0.000000,12,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,50666,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93915,'FATE_Firefall_2013_01','s1f1','bnpc4325172',4325172,118.147697,56.675640,207.545807,0.628319,2227,0,0,0,0,6,0,0,1807,0,0.000000,5,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,48652,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93915,'FATE_Firefall_2013_01','s1f1','bnpc4325173',4325173,183.994202,58.924210,205.725800,-0.855211,2227,0,0,0,0,6,0,0,1807,0,0.000000,5,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,48380,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93915,'FATE_Firefall_2013_01','s1f1','bnpc4325174',4325174,185.398895,64.267487,268.502289,-0.855211,2227,0,0,0,0,6,0,0,1807,0,0.000000,5,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,48108,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93915,'FATE_Firefall_2013_01','s1f1','bnpc4325175',4325175,114.550903,61.951061,266.515808,0.890118,2227,0,0,0,0,6,0,0,1807,0,0.000000,5,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,47836,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93915,'FATE_Firefall_2013_01','s1f1','bnpc4325170',4325170,150.431503,58.700359,240.107498,-0.000000,2087,0,0,0,0,6,0,0,1641,0,0.000000,6,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,47258,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97135,'FATE_XMAS_2013_01','s1f1','bnpc4535856',4535856,151.091797,58.662392,240.798004,-1.458231,2440,0,0,0,0,6,0,0,2329,0,0.000000,10,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,46284,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97135,'FATE_XMAS_2013_01','s1f1','bnpc4535858',4535858,157.502701,57.645390,235.840805,-1.231460,2441,0,0,0,1,6,0,0,2331,0,0.000000,1,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,46018,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86832,'go001','s1f1','bnpc4102966',4102966,-138.863907,45.203159,-221.985992,-0.022449,823,0,0,0,0,6,0,0,405,0,0.000000,9,2,120,1,0,1,0,0,0,1,1,0,0,0,0.000000,1.000000,45128,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86832,'go001','s1f1','bnpc4102967',4102967,-142.804398,44.990662,-222.040695,0.009208,823,0,0,0,0,6,0,0,405,0,0.000000,9,2,120,1,0,1,0,0,0,1,1,0,0,0,0.000000,1.000000,44856,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86832,'go001','s1f1','bnpc4102968',4102968,-141.353302,45.919411,-201.496902,0.057893,823,0,0,0,0,6,0,0,405,0,0.000000,9,2,120,1,0,2,0,0,0,1,1,0,0,0,0.000000,1.000000,44584,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86832,'go001','s1f1','bnpc4103095',4103095,-140.699097,45.103489,-223.691101,0.014865,821,0,0,0,0,6,0,0,1263,0,0.000000,11,2,120,1,0,1,0,0,0,1,1,0,0,0,0.000000,1.000000,44318,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86832,'go001','s1f1','bnpc4103132',4103132,-143.513901,45.896820,-199.930298,-0.037388,821,0,0,0,0,6,0,0,1263,0,0.000000,11,2,120,1,0,2,0,0,0,1,1,0,0,0,0.000000,1.000000,44046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86832,'go001','s1f1','bnpc4103328',4103328,-145.473099,45.771591,-201.331604,-0.111081,823,0,0,0,0,6,0,0,405,0,0.000000,9,2,120,1,0,2,0,0,0,1,1,0,0,0,0.000000,1.000000,43768,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86832,'go001','s1f1','bnpc4103330',4103330,-129.649796,45.727001,-216.018906,-1.543066,823,0,0,0,0,6,0,0,405,0,0.000000,9,2,120,1,0,3,0,0,0,1,1,0,0,0,0.000000,1.000000,43496,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86832,'go001','s1f1','bnpc4103334',4103334,-128.386002,45.821079,-214.474304,-1.533696,821,0,0,0,0,6,0,0,1263,0,0.000000,11,2,120,1,0,3,0,0,0,1,1,0,0,0,0.000000,1.000000,43230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86832,'go001','s1f1','bnpc4103336',4103336,-129.653595,45.776691,-213.049103,-1.472817,823,0,0,0,0,6,0,0,405,0,0.000000,9,2,120,1,0,3,0,0,0,1,1,0,0,0,0.000000,1.000000,42952,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86832,'go001','s1f1','bnpc4103340',4103340,-129.719299,46.000118,-208.156006,-1.499498,823,0,0,0,0,6,0,0,405,0,0.000000,9,2,120,1,0,4,0,0,0,1,1,0,0,0,0.000000,1.000000,42680,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86832,'go001','s1f1','bnpc4103348',4103348,-128.639008,46.081631,-206.899597,-1.569459,821,0,0,0,0,6,0,0,1263,0,0.000000,11,2,120,1,0,4,0,0,0,1,1,0,0,0,0.000000,1.000000,42414,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86832,'go001','s1f1','bnpc4103372',4103372,-129.805405,46.093689,-205.681396,-1.545791,823,0,0,0,0,6,0,0,405,0,0.000000,9,2,120,1,0,4,0,0,0,1,1,0,0,0,0.000000,1.000000,42068,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86832,'go001','s1f1','bnpc4103388',4103388,-124.141899,46.097771,-210.334000,-1.492616,1123,0,0,0,0,6,0,0,1264,0,1.000000,11,2,120,1,0,0,0,10,10,1,1,0,0,0,0.000000,1.000000,39940,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92207,'QB_CLSARC_100','s1f1','bnpc4255768',4255768,-111.937500,45.133900,-246.529007,0.774577,2048,0,0,0,8,6,0,0,1493,0,80.000000,12,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37866,1,0,0,0,0,0,0,692,332); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92207,'QB_CLSARC_100','s1f1','bnpc4255772',4255772,-93.793327,47.874680,-269.134094,-0.775777,2047,0,0,0,8,6,0,0,1950,0,80.000000,9,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37600,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92207,'QB_CLSARC_100','s1f1','bnpc4255773',4255773,-92.816757,48.382778,-267.303009,-0.775777,2047,0,0,0,8,6,0,0,1950,0,80.000000,9,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37328,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92207,'QB_CLSARC_100','s1f1','bnpc4255774',4255774,-92.908318,48.449619,-264.648010,-0.775777,2047,0,0,0,8,6,0,0,1950,0,80.000000,9,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37056,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92207,'QB_CLSARC_100','s1f1','bnpc4255781',4255781,-77.317497,48.691410,-213.275406,-0.518781,2047,0,0,0,8,6,0,0,1950,0,80.000000,9,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36784,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92207,'QB_CLSARC_100','s1f1','bnpc4255782',4255782,-75.791557,48.844120,-214.007797,-0.518781,2047,0,0,0,8,6,0,0,1950,0,80.000000,9,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36512,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92207,'QB_CLSARC_100','s1f1','bnpc4255783',4255783,-74.570862,48.966190,-215.625198,-0.518685,2046,0,0,0,8,6,0,0,1949,0,80.000000,10,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36246,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92207,'QB_CLSARC_100','s1f1','bnpc4255787',4255787,-73.380623,48.844120,-212.268295,-0.780041,2047,0,0,0,8,6,0,0,1950,0,80.000000,9,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35968,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92207,'QB_CLSARC_100','s1f1','bnpc4255785',4255785,-75.455872,48.722050,-210.986496,-0.811776,2046,0,0,0,8,6,0,0,1949,0,80.000000,10,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35702,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92207,'QB_CLSARC_100','s1f1','bnpc4255786',4255786,-72.343079,48.996700,-214.007797,-0.811776,2046,0,0,0,8,6,0,0,1949,0,80.000000,10,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35430,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92207,'QB_CLSARC_100','s1f1','bnpc4255788',4255788,-112.001602,45.077831,-247.251205,1.143600,2049,0,0,0,8,6,0,0,0,0,80.000000,10,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35164,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86235,'QB_ManSea005_001','s1f1','bnpc4083604',4083604,-58.016071,26.678820,-122.702202,-0.020677,902,0,0,0,0,6,0,0,941,0,0.010000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34646,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86235,'QB_ManSea005_001','s1f1','bnpc4083606',4083606,-55.436039,29.994530,-99.303383,-0.057909,905,0,0,0,0,6,0,0,404,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34380,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86235,'QB_ManSea005_001','s1f1','bnpc4083607',4083607,-60.502079,30.071190,-98.452164,0.103641,905,0,0,0,0,6,0,0,404,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34108,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86235,'QB_ManSea005_001','s1f1','bnpc4083608',4083608,-55.802311,29.882629,-99.704697,-0.105750,903,0,0,0,0,6,0,0,940,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33842,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86235,'QB_ManSea005_001','s1f1','bnpc4083609',4083609,-59.830631,29.843880,-99.469383,0.028954,903,0,0,0,0,6,0,0,940,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33570,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86235,'QB_ManSea005_001','s1f1','bnpc4083610',4083610,-57.419739,29.806721,-99.820930,0.054553,905,0,0,0,0,6,0,0,404,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33292,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86235,'QB_ManSea005_001','s1f1','bnpc4083611',4083611,-59.342350,30.014980,-98.765907,-0.100861,905,0,0,0,0,6,0,0,404,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33020,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86235,'QB_ManSea005_001','s1f1','bnpc4083622',4083622,-58.304810,25.544729,-133.107407,-0.000048,904,0,0,0,8,6,0,0,1374,0,0.010000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32448,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86215,'QB_SubSea057_001','s1f1','bnpc4082418',4082418,-15.077470,12.843790,-453.069000,-0.561591,549,0,0,0,0,6,0,0,30,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31634,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92370,'QST_ClsAcn050_000','s1f1','bnpc4260926',4260926,1.185483,24.500090,195.275299,-0.624904,39,0,0,0,1,6,0,0,39,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30996,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92370,'QST_ClsAcn050_000','s1f1','bnpc4260927',4260927,-1.543818,24.327520,196.600601,-0.264805,39,0,0,0,1,6,0,0,39,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30724,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81658,'QST_ClsExc100_000','s1f1','bnpc3633023',3633023,-98.876717,42.085011,-303.441101,1.232337,2,0,0,0,1,6,0,0,965,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27062,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81658,'QST_ClsExc100_000','s1f1','bnpc3633026',3633026,-97.537331,42.035358,-308.963287,1.184889,2,0,0,0,1,6,0,0,965,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26790,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81658,'QST_ClsExc100_000','s1f1','bnpc4087070',4087070,-101.192200,41.826038,-302.395386,1.235353,2,0,0,0,1,6,0,0,965,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26518,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81658,'QST_ClsExc100_000','s1f1','bnpc4087071',4087071,-100.961502,41.759651,-304.771912,1.235353,2,0,0,0,1,6,0,0,965,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26246,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81658,'QST_ClsExc100_000','s1f1','bnpc4087072',4087072,-103.077003,41.526260,-304.058105,1.290602,2,0,0,0,1,6,0,0,965,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25974,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81658,'QST_ClsExc100_000','s1f1','bnpc4087073',4087073,-99.864479,41.758850,-308.315704,1.290602,2,0,0,0,1,6,0,0,965,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25702,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81658,'QST_ClsExc100_000','s1f1','bnpc4087074',4087074,-99.562157,41.787449,-311.210297,1.235353,2,0,0,0,1,6,0,0,965,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25430,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81658,'QST_ClsExc100_000','s1f1','bnpc4087075',4087075,-102.081001,41.383820,-310.606201,1.290602,2,0,0,0,1,6,0,0,965,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25158,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100513,'QST_SubPst002','s1f1','bnpc4745308',4745308,-77.457626,42.386250,51.501450,-0.000048,3122,0,0,0,1,6,0,0,2867,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12668,1,0,0,0,0,0,0,820,457); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84626,'QST_SubSea054_001','s1f1','bnpc3931777',3931777,191.550797,46.219479,127.753502,-1.391220,52,0,0,0,1,6,0,0,283,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10274,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84626,'QST_SubSea054_001','s1f1','bnpc3931779',3931779,193.774307,46.341671,119.462898,-1.166371,52,0,0,0,1,6,0,0,283,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10002,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84640,'QST_SubSea058_001','s1f1','bnpc3929271',3929271,124.169701,44.444469,36.030701,-1.414645,42,0,0,0,1,6,0,0,284,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7744,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84640,'QST_SubSea058_001','s1f1','bnpc3929272',3929272,117.112900,44.418961,36.942039,1.524246,42,0,0,0,1,6,0,0,284,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7472,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84640,'QST_SubSea058_001','s1f1','bnpc3929274',3929274,24.545759,42.862640,45.162880,-1.223150,42,0,0,0,1,6,0,0,284,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7132,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84640,'QST_SubSea058_001','s1f1','bnpc3929275',3929275,17.379980,42.862549,45.822788,1.227654,42,0,0,0,1,6,0,0,284,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6860,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84640,'QST_SubSea058_001','s1f1','bnpc3929277',3929277,-22.463881,41.843868,57.534180,0.926683,42,0,0,0,1,6,0,0,284,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6520,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84640,'QST_SubSea058_001','s1f1','bnpc3929278',3929278,-17.776810,41.946999,62.394089,-0.455079,42,0,0,0,1,6,0,0,284,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6248,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84642,'QST_SubSea060_001','s1f1','bnpc3930119',3930119,80.837486,68.925400,-218.042801,-1.275207,385,0,0,0,1,6,0,0,953,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4406,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84642,'QST_SubSea060_001','s1f1','bnpc3930282',3930282,76.782066,66.560280,-177.818604,0.109625,385,0,0,0,1,6,0,0,953,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4134,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84642,'QST_SubSea060_001','s1f1','bnpc3930287',3930287,61.531898,57.649429,-141.631195,1.510951,385,0,0,0,1,6,0,0,953,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3862,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84602,'QST_SubSea104_001','s1f1','bnpc3926278',3926278,-221.291199,17.871071,-413.772003,0.678106,12,0,0,0,1,6,0,0,13,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2708,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84602,'QST_SubSea104_001','s1f1','bnpc3926282',3926282,-219.103699,18.640591,-415.701599,-1.466461,12,0,0,0,1,6,0,0,13,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2436,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84609,'QST_SubSea105_001','s1f1','bnpc3927183',3927183,-320.943115,25.954290,-526.726196,0.701855,39,0,0,0,1,6,0,0,962,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1692,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84609,'QST_SubSea105_001','s1f1','bnpc3927184',3927184,-320.480988,25.606331,-528.659912,-0.641375,39,0,0,0,1,6,0,0,962,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1420,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761027',3761027,-7.343534,67.714622,93.888710,-0.000144,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153092,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761030',3761030,15.512480,63.992210,99.894920,-0.000144,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152820,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761033',3761033,31.698999,64.077950,68.192520,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152548,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761036',3761036,16.824760,63.905472,97.575546,-0.000144,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152276,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761039',3761039,11.941870,64.628357,91.990753,-0.000144,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152004,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761041',3761041,54.459400,59.806961,102.917297,-0.000336,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151732,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761042',3761042,30.722420,63.595020,74.784416,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151460,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761044',3761044,19.068230,62.294941,149.492599,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151188,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761045',3761045,22.420271,61.734470,145.882996,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150916,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761046',3761046,31.079571,59.608490,125.924500,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150644,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761048',3761048,66.227257,56.978741,104.868301,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150372,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761049',3761049,81.546333,52.845501,84.585800,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150100,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761050',3761050,62.755970,60.386440,76.019211,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149828,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761051',3761051,109.737900,42.563049,105.962898,-0.000336,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149556,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761052',3761052,98.714363,44.085449,129.594803,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149284,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761053',3761053,98.425201,49.276859,70.598137,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149012,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761054',3761054,99.981613,48.315552,73.649940,-0.000240,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148740,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761080',3761080,100.606499,43.794998,128.557205,-0.000527,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148468,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761081',3761081,89.814621,46.770222,157.976593,-0.000623,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148196,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761084',3761084,51.818901,55.815891,145.346603,-0.000527,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147924,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761085',3761085,70.215584,52.939968,181.270401,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147652,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761086',3761086,60.924660,55.885761,189.770996,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147380,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761088',3761088,48.845680,56.451950,150.896393,-0.000527,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147108,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761089',3761089,50.420841,56.054260,153.244995,-0.000719,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146836,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761096',3761096,199.256302,27.059620,91.574173,-0.663936,313,0,0,0,1,6,0,0,349,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146570,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761099',3761099,111.690498,36.582958,4.053726,0.422421,313,0,0,0,1,6,0,0,349,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146298,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761102',3761102,156.633804,34.653191,70.542397,-1.190622,313,0,0,0,1,6,0,0,349,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146026,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761105',3761105,167.377899,33.443420,75.522820,1.082193,313,0,0,0,1,6,0,0,349,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145754,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761108',3761108,124.488503,36.345482,15.758260,0.077595,313,0,0,0,1,6,0,0,349,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145482,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761109',3761109,159.302094,33.928551,78.777786,-0.471285,313,0,0,0,1,6,0,0,349,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145210,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761111',3761111,108.955002,36.663021,9.387772,1.098107,313,0,0,0,1,6,0,0,349,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144938,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761112',3761112,131.578506,35.965469,45.853310,-0.840203,313,0,0,0,1,6,0,0,349,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144666,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761123',3761123,237.190399,36.611149,66.717194,-0.000240,324,0,0,0,1,6,0,0,563,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144400,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761124',3761124,242.137604,44.361130,44.958832,-0.000240,324,0,0,0,1,6,0,0,563,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144128,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761125',3761125,242.718903,43.673290,46.873840,-0.000240,324,0,0,0,1,6,0,0,563,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143856,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761128',3761128,187.436096,42.116020,51.900459,-0.000432,324,0,0,0,1,6,0,0,563,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143584,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761129',3761129,223.247696,51.849850,26.116220,-0.000144,324,0,0,0,1,6,0,0,563,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143312,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761130',3761130,223.430801,52.761440,22.759239,-0.000144,324,0,0,0,1,6,0,0,563,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143040,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761131',3761131,217.449295,51.875561,27.520050,-0.000144,324,0,0,0,1,6,0,0,563,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142768,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761134',3761134,223.010498,31.021540,165.483994,-0.000336,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142496,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761135',3761135,227.779602,33.454979,203.906296,-0.000144,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142224,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761136',3761136,242.318497,38.158321,234.873306,-0.000144,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141952,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761137',3761137,227.626999,34.365898,207.232697,-0.000144,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141680,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761139',3761139,245.897202,37.488659,235.919693,-0.000048,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141408,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761141',3761141,195.561203,47.715080,226.776001,-0.000144,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141136,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761142',3761142,197.033997,48.159161,228.423004,-0.000144,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140864,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761143',3761143,222.161804,50.249969,256.272888,-0.000240,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140592,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761147',3761147,150.769104,55.568981,248.645706,-0.000336,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140320,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761149',3761149,148.855896,56.596169,250.553299,-0.000432,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140048,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761150',3761150,152.127594,64.016029,312.689392,-0.000240,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139776,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761151',3761151,154.979797,64.179688,314.660492,-0.000240,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139504,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761152',3761152,153.705307,64.400146,315.376495,-0.000240,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139232,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761155',3761155,115.122803,68.518044,293.763489,-0.000336,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138960,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761146',3761146,181.211105,43.103500,194.872894,-0.000144,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138688,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761145',3761145,180.566803,43.422722,197.741592,-0.000144,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138416,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761367',3761367,182.543594,41.458710,51.590698,-0.000719,324,0,0,0,1,6,0,0,563,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138144,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761369',3761369,186.119797,42.655750,49.950859,-0.000527,324,0,0,0,1,6,0,0,563,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137872,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761370',3761370,285.549408,42.548729,57.964470,-0.000240,324,0,0,0,1,6,0,0,563,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137600,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761371',3761371,285.078796,44.421532,49.076550,-0.000240,324,0,0,0,1,6,0,0,563,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137328,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761372',3761372,239.723694,36.528450,66.898483,-0.000144,324,0,0,0,1,6,0,0,563,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137056,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761373',3761373,148.845200,38.711102,41.285278,-0.000336,324,0,0,0,1,6,0,0,563,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136784,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761374',3761374,152.171600,39.307671,41.468391,-0.000336,324,0,0,0,1,6,0,0,563,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136512,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761375',3761375,182.186905,54.291470,262.783508,-0.000240,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136240,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761376',3761376,184.506195,55.134689,266.109985,-0.000240,324,0,0,0,1,6,0,0,563,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135968,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761475',3761475,201.696899,32.601101,76.500427,-0.000623,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135684,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761552',3761552,150.981400,38.858120,42.405491,-0.000527,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135412,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761553',3761553,185.442902,41.123051,53.604858,-0.000623,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135140,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761554',3761554,206.775299,43.330341,53.446110,-0.000527,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134868,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761555',3761555,208.241592,43.763321,52.334370,-0.000527,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134596,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761556',3761556,239.497803,36.005562,68.131721,-0.000336,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134324,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761557',3761557,215.528305,44.498230,50.226871,-0.000527,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134052,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761572',3761572,223.339294,51.412380,27.733681,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133780,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761576',3761576,283.996399,43.243752,55.750099,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133508,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761580',3761580,272.696899,45.167171,32.535080,-0.000336,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133236,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761585',3761585,215.465607,53.837990,20.867121,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132964,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761592',3761592,217.212097,32.425369,164.537994,-0.000527,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132692,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761607',3761607,218.341293,32.455891,165.972305,-0.000527,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132420,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761622',3761622,202.532898,37.857590,176.104294,-0.000336,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132148,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761626',3761626,183.154007,42.709949,197.436401,1.240482,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131876,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761716',3761716,184.920502,44.981480,218.420700,-0.000336,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131604,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761718',3761718,224.420395,35.250660,205.197601,-0.000336,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131332,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761720',3761720,242.515396,37.441879,232.829803,-0.000336,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131060,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761721',3761721,215.690094,51.411850,255.712601,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130788,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761722',3761722,217.734802,50.606812,253.454300,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130516,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761723',3761723,185.971100,54.557800,262.936096,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130244,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761726',3761726,152.777603,58.215248,280.103607,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129972,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761727',3761727,152.238602,58.132370,277.662201,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129700,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761728',3761728,118.327202,67.511993,294.840210,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129428,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761730',3761730,114.320396,68.359100,296.500885,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129156,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761731',3761731,153.412399,63.654282,311.208801,-0.000432,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128884,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761104',3761104,24.717279,61.225311,149.156906,0.337049,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128630,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761097',3761097,66.501930,57.215820,101.480797,1.170733,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128358,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761103',3761103,23.832260,61.353020,150.988007,0.337049,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128086,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760882',3760882,7.760897,64.944183,95.225662,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127814,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761100',3761100,67.783684,56.291199,107.065697,-0.786848,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127542,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761035',3761035,112.698097,41.971249,105.901901,-0.000336,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127270,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760927',3760927,99.690933,44.016190,125.932701,-0.000336,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126998,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760933',3760933,86.244019,47.554829,160.082397,-0.000336,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126726,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761034',3761034,111.202797,42.291870,104.620102,-0.000336,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126454,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760922',3760922,96.288940,49.550621,73.985641,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126182,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760950',3760950,62.399029,56.000351,191.517303,-0.000240,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125910,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760925',3760925,121.477097,40.913620,141.046600,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125638,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760923',3760923,110.317703,42.549389,102.239700,-0.000336,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125366,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760961',3760961,56.546551,56.041698,186.103394,-0.000336,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125094,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760965',3760965,53.117081,55.406071,151.622894,-0.000527,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124822,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760952',3760952,63.992779,55.493610,189.245102,-0.000240,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124550,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760958',3760958,51.348160,55.864281,150.438599,-0.000432,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124278,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761031',3761031,78.979568,53.555161,86.569473,-0.000240,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124006,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761032',3761032,80.505470,52.852570,87.851227,-0.000240,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123734,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760948',3760948,68.406143,53.661510,183.326599,-0.000240,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123462,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760937',3760937,87.891998,47.433571,161.638794,-0.000336,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123190,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760887',3760887,29.623779,63.785370,72.434517,-0.000240,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122918,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760888',3760888,12.674300,64.363640,96.110687,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122646,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760889',3760889,37.375351,64.107178,66.758171,-0.000240,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122374,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760886',3760886,35.300129,63.748798,70.756027,-0.000240,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122102,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760917',3760917,60.457890,61.337429,74.236450,-0.000336,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121830,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760883',3760883,11.569650,64.269142,103.174004,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121558,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760884',3760884,27.212851,64.259323,68.436661,-0.000240,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121286,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760890',3760890,35.361160,64.320633,64.408279,-0.000240,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121014,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760911',3760911,66.135712,56.046421,111.429703,-0.000240,347,0,0,0,1,6,0,0,417,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120742,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760912',3760912,62.577202,57.663799,106.370598,-0.000240,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120470,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760913',3760913,64.103104,57.114471,107.652298,-0.000240,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120198,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760902',3760902,1.674536,65.722069,135.412201,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119926,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760896',3760896,20.935301,61.990829,147.102097,-0.000240,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119654,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760898',3760898,32.574959,59.535831,128.579605,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119382,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3760901',3760901,3.688727,65.262871,139.257401,-0.000144,347,0,0,0,1,6,0,0,417,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119110,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761164',3761164,69.781052,51.086330,157.761703,-0.757894,1447,0,0,0,1,6,0,0,354,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118844,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761303',3761303,204.358505,46.098690,45.780960,0.113468,1447,0,0,0,1,6,0,0,354,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118572,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761169',3761169,97.733994,47.043510,88.944794,-1.485635,1447,0,0,0,1,6,0,0,354,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118300,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82845,'LVD_BNPC_01','s1f2','bnpc3761362',3761362,198.245804,51.531582,242.749405,0.074016,1447,0,0,0,1,6,0,0,354,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118028,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766328',3766328,444.374390,64.694489,-36.484081,-0.000048,339,0,0,0,1,6,0,0,393,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116990,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766391',3766391,446.046112,65.017601,-33.594650,-0.000048,339,0,0,0,1,6,0,0,393,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116718,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766399',3766399,453.421814,56.259960,-0.534113,-0.000144,339,0,0,0,1,6,0,0,393,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116446,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766401',3766401,455.924286,55.802189,3.341679,-0.000144,339,0,0,0,1,6,0,0,393,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116174,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766402',3766402,448.874603,55.222351,4.837063,-0.000144,339,0,0,0,1,6,0,0,393,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115902,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766575',3766575,366.619385,51.659290,-12.188280,-0.000144,339,0,0,0,1,6,0,0,393,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115630,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766577',3766577,364.147400,52.146080,-17.895161,-0.000144,339,0,0,0,1,6,0,0,393,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115358,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766579',3766579,370.878113,59.451641,-59.303612,-0.000240,339,0,0,0,1,6,0,0,393,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115086,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766580',3766580,368.924988,58.367748,-54.695389,-0.000240,339,0,0,0,1,6,0,0,393,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114814,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766581',3766581,373.350098,58.395641,-53.596741,-0.000240,339,0,0,0,1,6,0,0,393,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114542,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766584',3766584,363.439606,63.704231,-82.801590,-0.000240,339,0,0,0,1,6,0,0,393,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114270,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766586',3766586,341.616302,51.478588,-30.833561,-0.000048,339,0,0,0,1,6,0,0,393,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113998,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766588',3766588,305.806000,47.806469,0.503501,-0.000144,339,0,0,0,1,6,0,0,393,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113726,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766589',3766589,308.552612,48.569420,-3.769025,-0.000144,339,0,0,0,1,6,0,0,393,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113454,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766591',3766591,409.158112,63.702721,-82.786118,-0.000048,339,0,0,0,1,6,0,0,393,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113182,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766592',3766592,412.649689,63.919991,-86.564484,-0.000144,339,0,0,0,1,6,0,0,393,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112910,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766596',3766596,450.583588,66.468239,-76.957558,-0.000240,339,0,0,0,1,6,0,0,393,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112638,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766603',3766603,394.502594,67.135857,-121.089203,-0.000432,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112372,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766604',3766604,391.786499,67.793007,-123.530602,-0.000432,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112100,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3766605',3766605,395.113007,67.180733,-122.828697,-0.000432,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111828,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767081',3767081,473.143494,66.440041,-148.859894,-0.000240,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111556,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767082',3767082,437.091309,65.055496,-127.757103,-0.000336,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111284,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767083',3767083,438.506500,65.198730,-126.336800,-0.000240,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111012,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767118',3767118,437.011108,65.003197,-124.078499,-0.000240,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110740,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767119',3767119,474.052002,66.418793,-147.307800,-0.000336,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110468,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767149',3767149,418.543213,65.856056,-158.386795,-0.000623,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110196,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767152',3767152,380.575195,71.228844,-138.534103,-0.000432,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109924,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767155',3767155,353.131409,70.227692,-126.119904,-0.000240,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109652,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767158',3767158,355.969604,70.540512,-125.082298,-0.000336,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109380,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767160',3767160,354.321594,69.995934,-123.739502,-0.000240,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109108,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767163',3767163,385.091888,70.103569,-139.968506,-0.000432,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108836,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767164',3767164,383.413391,70.520859,-137.771194,-0.000432,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108564,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767165',3767165,382.223206,70.816437,-140.151596,-0.000432,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108292,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767230',3767230,338.126892,68.759033,-132.386398,-0.000336,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108020,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767246',3767246,503.511597,77.082458,-297.441315,-0.000623,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107742,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767247',3767247,490.567688,72.273407,-273.391388,-0.000527,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107470,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767248',3767248,499.222992,76.478897,-297.574799,-0.000527,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107198,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767262',3767262,609.164307,70.799339,-269.442291,-0.000719,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106926,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767263',3767263,607.699524,69.742554,-262.681885,-0.000719,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106654,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767264',3767264,611.178528,70.073822,-266.496613,-0.000911,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106382,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767271',3767271,583.442871,78.270691,-293.369995,-0.000815,339,0,0,0,1,6,0,0,393,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106110,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767272',3767272,582.626099,82.811012,-321.008209,-0.000911,339,0,0,0,1,6,0,0,393,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105838,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767273',3767273,586.291077,77.487671,-291.515594,-0.000911,339,0,0,0,1,6,0,0,393,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105566,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767374',3767374,436.361908,73.251167,-304.983185,-0.000336,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105294,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767375',3767375,432.991608,72.276894,-303.043610,-0.000432,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105022,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767376',3767376,349.804901,74.911560,-321.936798,-0.000527,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104750,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767377',3767377,435.671997,72.056473,-300.979401,-0.000527,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104478,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767388',3767388,361.665588,75.651962,-325.562408,-0.000623,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104206,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767390',3767390,363.221985,75.155243,-322.388489,-0.000815,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103934,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767391',3767391,358.186493,73.581299,-315.714813,-0.000719,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103662,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767425',3767425,422.176910,67.247093,-159.579803,-0.000432,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103396,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767426',3767426,420.543213,66.332741,-157.321503,-0.000432,118,0,0,0,1,6,0,0,405,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103124,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767435',3767435,384.954498,71.312561,-255.829102,-0.000911,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102846,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767436',3767436,381.795898,71.738327,-257.517487,-0.000623,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102574,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767437',3767437,387.359314,69.869453,-264.137299,-0.000719,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102302,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767445',3767445,628.911987,66.716454,-231.728607,-0.000719,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102036,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767446',3767446,630.792603,66.280296,-209.603195,-0.000527,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101764,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767447',3767447,629.602417,66.422333,-211.983597,-0.000527,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101492,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767448',3767448,627.954529,66.392159,-210.335602,-0.000527,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101220,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767449',3767449,632.471130,66.334442,-211.800507,-0.000527,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100948,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767450',3767450,630.285278,66.806633,-233.987000,-0.000719,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100676,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767455',3767455,662.184509,66.885223,-232.532303,-0.000432,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100404,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767456',3767456,663.832520,66.880669,-235.767197,-0.000527,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100132,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767457',3767457,660.994324,67.126022,-234.912704,-0.000432,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99860,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767458',3767458,679.883301,64.783623,-225.588394,-0.000623,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99588,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767462',3767462,683.051575,64.449142,-221.445694,-0.000623,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99316,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767463',3767463,686.133911,64.440773,-225.077301,-0.000623,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99044,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767464',3767464,682.532776,64.535759,-223.856598,-0.000719,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98772,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767465',3767465,680.213379,64.599297,-222.178101,-0.000623,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98500,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767466',3767466,644.667419,61.202068,-179.041107,-0.000432,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98228,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767467',3767467,646.345825,61.561089,-181.268906,-0.000527,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97956,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767468',3767468,625.297607,63.148769,-175.494003,-0.000623,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97684,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767469',3767469,624.534729,62.919571,-173.449295,-0.000623,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97412,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767472',3767472,612.920227,62.437519,-154.581299,-0.000432,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97140,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767473',3767473,618.413513,60.995640,-154.157501,-0.000527,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96868,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767474',3767474,611.729980,62.836342,-156.961700,-0.000432,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96596,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767475',3767475,610.081970,62.919849,-155.313705,-0.000432,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96324,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767480',3767480,599.736572,66.081619,-200.660995,-0.000432,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96052,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767481',3767481,603.400085,66.248016,-212.652893,-0.000336,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95780,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767482',3767482,600.591125,66.117447,-203.224594,-0.000432,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95508,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767487',3767487,582.119629,63.525211,-162.909500,-0.000719,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95236,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767488',3767488,583.554016,63.640011,-161.566696,-0.000719,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94964,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767394',3767394,397.399597,76.429916,-332.825500,-0.000432,5,0,0,0,1,6,0,0,408,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94698,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767400',3767400,454.939209,84.293327,-350.549591,-0.000527,5,0,0,0,1,6,0,0,408,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94426,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767399',3767399,470.368805,87.249977,-348.957306,-0.000527,5,0,0,0,1,6,0,0,408,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94154,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767393',3767393,395.641113,76.023048,-328.902496,-0.000527,5,0,0,0,1,6,0,0,408,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93882,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767396',3767396,392.678711,86.886810,-395.321106,-0.000623,5,0,0,0,1,6,0,0,408,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93610,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767402',3767402,428.051086,76.420769,-330.744385,-0.000527,5,0,0,0,1,6,0,0,408,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93338,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767401',3767401,458.387787,84.602448,-346.643188,-0.000527,5,0,0,0,1,6,0,0,408,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93066,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767395',3767395,393.430298,76.446228,-331.738098,-0.000527,5,0,0,0,1,6,0,0,408,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92794,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767504',3767504,384.336212,81.769058,-374.104706,-0.000527,5,0,0,0,1,6,0,0,408,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92522,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767505',3767505,386.960785,82.047218,-374.979614,-0.000623,5,0,0,0,1,6,0,0,408,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92250,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767508',3767508,420.230408,83.041237,-377.818695,-0.000527,5,0,0,0,1,6,0,0,408,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91978,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767509',3767509,416.202087,83.456848,-380.199188,-0.000432,5,0,0,0,1,6,0,0,408,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91706,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767510',3767510,414.218414,82.361076,-374.217590,-0.000527,5,0,0,0,1,6,0,0,408,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91434,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767240',3767240,525.678589,69.218857,-235.317993,-0.000815,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91168,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767251',3767251,561.724976,68.563721,-232.711105,-0.000527,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90896,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767242',3767242,523.878113,69.910103,-240.231400,-0.000527,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90624,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767241',3767241,529.279724,69.670998,-238.980103,-0.000527,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90352,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767538',3767538,559.649475,74.212418,-273.297485,-0.000623,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90080,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767539',3767539,565.844971,73.504051,-271.077698,-0.000719,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89808,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767541',3767541,530.575989,78.841171,-292.050598,-0.000527,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89536,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767542',3767542,536.018616,73.912933,-270.240601,-0.000336,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89264,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767543',3767543,527.257324,78.277519,-291.082397,-0.000432,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88992,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767550',3767550,559.405579,68.352837,-230.727402,-0.000719,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88720,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767551',3767551,504.920990,71.617661,-255.737900,-0.000719,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88448,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767552',3767552,562.426697,74.626442,-275.098114,-0.000719,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88176,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767553',3767553,515.106079,86.958946,-357.724792,-0.000719,339,0,0,0,1,6,0,0,393,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87886,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767554',3767554,555.815430,86.288918,-333.674286,-0.000623,339,0,0,0,1,6,0,0,393,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87614,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767555',3767555,550.172974,86.038811,-337.105713,-0.000623,339,0,0,0,1,6,0,0,393,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87342,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767556',3767556,556.703918,86.005051,-341.164612,-0.000623,339,0,0,0,1,6,0,0,393,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87070,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767558',3767558,595.652222,100.886101,-481.113007,-0.000815,339,0,0,0,1,6,0,0,393,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86798,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767559',3767559,565.758728,90.501213,-411.795288,-0.000719,339,0,0,0,1,6,0,0,393,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86526,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767560',3767560,593.128418,99.817238,-476.295013,-0.000719,339,0,0,0,1,6,0,0,393,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86254,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767561',3767561,597.171326,86.616676,-366.082886,-0.000719,339,0,0,0,1,6,0,0,393,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85982,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767562',3767562,592.898621,86.573059,-364.752991,-0.000719,339,0,0,0,1,6,0,0,393,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85710,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767565',3767565,659.080383,68.157593,-282.327087,-0.000815,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85438,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767566',3767566,655.601379,67.872910,-278.542786,-0.000719,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85166,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767568',3767568,696.297791,66.817932,-301.967896,-0.000719,339,0,0,0,1,6,0,0,393,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84894,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767583',3767583,629.275208,76.769440,-316.382690,-0.000719,339,0,0,0,1,6,0,0,393,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84622,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767584',3767584,635.718506,76.129578,-319.129303,-0.000719,339,0,0,0,1,6,0,0,393,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84350,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767675',3767675,637.937683,75.470261,-314.178314,-0.000719,339,0,0,0,1,6,0,0,393,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84078,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767694',3767694,274.187408,73.498833,-235.511505,-0.000000,38,0,0,0,1,6,0,0,364,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83830,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767702',3767702,282.131287,73.968918,-250.520294,-0.000000,38,0,0,0,1,6,0,0,364,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83558,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767704',3767704,283.459686,74.239098,-252.146103,-0.000000,38,0,0,0,1,6,0,0,364,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83286,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767705',3767705,285.161987,73.984657,-268.017487,-0.000000,38,0,0,0,1,6,0,0,364,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83014,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767706',3767706,277.286194,74.210907,-280.408813,-0.000000,38,0,0,0,1,6,0,0,364,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82742,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767707',3767707,277.586212,74.130417,-281.519714,-0.000000,38,0,0,0,1,6,0,0,364,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82470,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767709',3767709,268.511505,73.750023,-310.081207,-0.000000,38,0,0,0,1,6,0,0,364,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82198,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767710',3767710,290.727997,75.783447,-320.191986,-0.000000,38,0,0,0,1,6,0,0,364,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81926,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767711',3767711,291.566193,75.961906,-321.088593,-0.000000,38,0,0,0,1,6,0,0,364,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81654,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767712',3767712,240.649994,74.570793,-328.847198,-0.000048,38,0,0,0,1,6,0,0,364,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81382,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767715',3767715,221.796799,75.280907,-305.122711,-0.000048,38,0,0,0,1,6,0,0,364,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81110,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767716',3767716,234.573196,72.438171,-271.531403,-0.000048,38,0,0,0,1,6,0,0,364,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80838,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767717',3767717,235.577301,72.991150,-274.815186,-0.000048,38,0,0,0,1,6,0,0,364,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80566,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767721',3767721,341.847809,47.013062,1.602173,-0.000048,133,0,0,0,1,6,0,0,115,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80300,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767722',3767722,413.717804,55.405399,-18.570250,-0.000048,133,0,0,0,1,6,0,0,115,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80028,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767725',3767725,414.877411,56.473511,-20.889650,-0.000048,133,0,0,0,1,6,0,0,115,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79756,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767729',3767729,340.932404,58.884521,-68.986153,-0.000048,133,0,0,0,1,6,0,0,115,0,0.000000,4,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79484,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767730',3767730,349.904510,70.939087,-141.039200,-0.000048,133,0,0,0,1,6,0,0,115,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79212,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767735',3767735,351.399994,71.122192,-139.177597,-0.000048,133,0,0,0,1,6,0,0,115,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78940,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767772',3767772,385.992096,79.489769,-359.438690,-0.000000,133,0,0,0,1,6,0,0,115,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78668,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767779',3767779,406.035400,88.015427,-400.377411,-0.000000,133,0,0,0,1,6,0,0,115,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78396,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767782',3767782,403.608612,88.645103,-402.194885,-0.000048,133,0,0,0,1,6,0,0,115,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78124,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767814',3767814,635.174072,71.616203,-284.468597,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77852,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767845',3767845,633.182922,72.289650,-286.197998,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77580,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767846',3767846,635.372375,67.114166,-231.371002,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77308,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767853',3767853,622.306885,64.499603,-174.464905,-0.000240,133,0,0,0,1,6,0,0,115,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77036,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767854',3767854,645.827026,60.818569,-177.759293,-0.000527,118,0,0,0,1,6,0,0,405,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76740,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767857',3767857,725.192871,64.427238,-240.193405,-0.000240,133,0,0,0,1,6,0,0,115,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76492,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767859',3767859,617.085510,62.126339,-147.285202,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76220,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767860',3767860,673.612427,64.732903,-189.639206,-0.000240,133,0,0,0,1,6,0,0,115,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75948,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767863',3767863,676.003723,64.536713,-188.308105,-0.000240,133,0,0,0,1,6,0,0,115,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75676,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767872',3767872,678.086914,64.518532,-207.618896,-0.000240,133,0,0,0,1,6,0,0,115,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75404,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767901',3767901,653.968079,78.578423,-360.327515,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75132,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767906',3767906,656.550293,77.457336,-356.077393,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74860,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767907',3767907,657.869080,77.894173,-358.050293,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74588,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767910',3767910,590.645020,90.549652,-389.681702,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74316,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3768115',3768115,530.515381,91.184883,-383.319305,-0.000240,133,0,0,0,1,6,0,0,115,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74044,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3768118',3768118,533.323120,90.657288,-380.765015,-0.000336,133,0,0,0,1,6,0,0,115,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73772,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3768165',3768165,517.667175,95.947739,-463.471588,-0.000048,754,0,0,0,1,6,0,0,372,0,0.000000,9,0,60,9,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73506,3,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3768159',3768159,502.875793,97.415413,-416.738495,-0.209740,754,0,0,0,0,6,0,0,372,0,0.000000,9,0,60,9,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73234,3,0,0,0,16,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3768154',3768154,523.339417,94.818977,-429.381287,-0.000000,754,0,0,0,1,6,0,0,372,0,0.000000,9,0,60,9,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72962,3,0,0,0,16,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3768156',3768156,535.457581,96.545937,-468.044800,-0.000048,754,0,0,0,1,6,0,0,372,0,0.000000,9,0,60,9,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72690,3,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3768157',3768157,520.360107,95.886787,-460.180389,-0.000048,752,0,0,0,1,6,0,0,368,0,0.000000,9,0,60,9,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72424,3,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3768160',3768160,521.578979,94.382271,-413.852905,-0.000048,752,0,0,0,1,6,0,0,368,0,0.000000,9,0,60,9,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72152,3,0,0,0,16,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3768167',3768167,534.916016,94.227654,-435.617798,-0.000000,752,0,0,0,1,6,0,0,368,0,0.000000,9,0,60,9,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71880,3,0,0,0,16,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3768153',3768153,519.773071,96.615059,-445.083588,0.806921,752,0,0,0,0,6,0,0,368,0,0.000000,9,0,60,9,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71608,3,0,0,0,16,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3768152',3768152,508.880707,96.069290,-437.340302,-0.000000,751,0,0,0,1,6,0,0,378,0,0.000000,9,0,60,9,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71342,3,0,0,0,16,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3768161',3768161,509.317200,94.366043,-398.691711,-0.000048,751,0,0,0,1,6,0,0,378,0,0.000000,9,0,60,9,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71070,3,0,0,0,16,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3768166',3768166,501.819092,97.276329,-413.591797,0.665586,751,0,0,0,0,6,0,0,378,0,0.000000,9,0,60,9,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70798,3,0,0,0,16,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3768158',3768158,535.493225,94.402260,-439.778015,-0.000048,751,0,0,0,1,6,0,0,378,0,0.000000,9,0,60,9,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70526,3,0,0,0,16,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767127',3767127,371.903290,67.982323,-110.760803,-0.000144,1447,0,0,0,1,6,0,0,354,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70200,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767131',3767131,460.464600,68.698967,-124.371498,-0.792232,1447,0,0,0,1,6,0,0,354,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69928,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767139',3767139,425.864014,78.873833,-349.813110,-0.000432,1447,0,0,0,1,6,0,0,354,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69656,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82881,'LVD_BNPC_02','s1f2','bnpc3767137',3767137,564.060181,84.658661,-310.397614,-0.000911,1447,0,0,0,1,6,0,0,354,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69384,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873220',3873220,-19.011200,59.577240,478.601715,-1.011727,138,0,0,0,1,6,0,0,399,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68768,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873222',3873222,-57.635151,54.398960,509.264313,-1.011727,138,0,0,0,1,6,0,0,399,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68496,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873223',3873223,-72.043533,60.186852,494.941803,-1.011727,138,0,0,0,1,6,0,0,399,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68224,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873226',3873226,-82.569511,59.009541,500.667694,-1.011727,138,0,0,0,1,6,0,0,399,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67952,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873227',3873227,-85.215538,58.176079,495.797913,-1.011727,138,0,0,0,1,6,0,0,399,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67680,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873232',3873232,-26.285730,45.126209,554.549622,-1.011819,138,0,0,0,1,6,0,0,399,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67408,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873233',3873233,-80.450127,53.830681,543.885925,-1.011727,138,0,0,0,1,6,0,0,399,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67136,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873235',3873235,-77.768517,54.979061,539.636902,-1.011727,138,0,0,0,1,6,0,0,399,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66864,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873237',3873237,-49.665508,40.839931,590.425781,-1.011819,138,0,0,0,1,6,0,0,399,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66592,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873238',3873238,-51.547249,40.978630,596.975098,-1.011819,138,0,0,0,1,6,0,0,399,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66320,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873240',3873240,-56.989220,40.385479,595.949585,-1.011819,138,0,0,0,1,6,0,0,399,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66048,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873243',3873243,73.494881,48.720230,629.534424,-1.011819,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65776,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873244',3873244,83.244293,50.021931,641.594727,-1.011819,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65504,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873246',3873246,77.347931,48.172680,641.229797,-1.011819,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65232,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873247',3873247,77.649078,56.774830,716.941528,-1.011819,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64960,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873249',3873249,79.648613,56.806110,720.165710,-1.011819,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64688,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873250',3873250,52.669842,55.384899,724.728516,-1.011819,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64416,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873255',3873255,48.538898,36.148571,656.885620,-1.011819,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64144,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873256',3873256,46.513409,36.839489,684.859314,-1.132578,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63872,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873257',3873257,41.888302,35.921108,686.955078,-1.132578,138,0,0,0,1,6,0,0,399,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63600,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873265',3873265,34.495090,45.667789,819.153381,-1.011819,138,0,0,0,1,6,0,0,399,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63328,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873271',3873271,-18.570280,43.203621,763.671082,-1.011819,138,0,0,0,1,6,0,0,399,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63056,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873272',3873272,-24.521290,43.172451,761.992676,-1.011819,138,0,0,0,1,6,0,0,399,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62784,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873275',3873275,37.190269,46.111851,822.446777,0.969970,138,0,0,0,1,6,0,0,399,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62512,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873324',3873324,79.270752,49.720821,871.732483,-1.011819,138,0,0,0,1,6,0,0,399,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62240,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873328',3873328,31.098160,46.232330,851.456421,-1.011819,138,0,0,0,1,6,0,0,399,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61968,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873329',3873329,-90.470787,8.590782,680.567627,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61702,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873330',3873330,-224.494995,-0.300003,686.536377,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61430,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873331',3873331,-215.466797,-0.252817,694.899719,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61158,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873332',3873332,-120.012199,3.585823,702.235413,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60886,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873333',3873333,-207.511307,-0.292601,666.813293,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60614,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873334',3873334,-171.158203,-0.710317,738.778076,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60342,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873335',3873335,-132.077698,0.394896,752.015930,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60070,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873336',3873336,-122.561096,0.570598,756.478577,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59798,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873337',3873337,-78.064957,2.435715,762.539001,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59526,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873339',3873339,-81.966408,2.959849,802.456604,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59254,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873340',3873340,-17.237820,8.762830,808.010925,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58982,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873343',3873343,91.020012,21.945419,806.005371,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58710,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873345',3873345,127.519600,23.025820,809.445313,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58438,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873348',3873348,121.338402,24.555710,817.927795,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58166,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873353',3873353,213.397400,25.314671,805.691528,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57894,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873359',3873359,80.472221,24.632441,756.982178,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57622,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873362',3873362,24.652531,14.575950,784.440430,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57350,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873363',3873363,139.838699,21.711720,778.939575,-0.993795,326,0,0,0,1,6,0,0,561,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57078,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873367',3873367,251.139801,6.797970,788.702271,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56812,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873368',3873368,253.283096,6.540766,787.524292,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56540,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873369',3873369,254.565994,6.283995,780.385681,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56268,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873371',3873371,246.057800,9.008336,801.580994,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55996,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873374',3873374,248.002304,6.721136,783.831970,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55724,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873375',3873375,248.302399,6.265314,767.472473,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55452,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873376',3873376,246.801407,6.267453,768.374390,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55180,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873379',3873379,-3.098505,41.687851,623.973083,-0.000000,205,0,0,0,1,6,0,0,409,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54914,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873381',3873381,-0.691058,42.488289,627.270020,-0.000000,205,0,0,0,1,6,0,0,409,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54642,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873382',3873382,-6.383020,41.661289,631.828674,-0.000000,205,0,0,0,1,6,0,0,409,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54370,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873385',3873385,-12.702990,41.812180,707.756409,-0.000000,205,0,0,0,1,6,0,0,409,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54098,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873386',3873386,-10.462590,41.960880,705.075378,-0.000000,205,0,0,0,1,6,0,0,409,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53826,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873387',3873387,-52.108768,38.325489,665.766113,-0.000000,205,0,0,0,1,6,0,0,409,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53554,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873388',3873388,-55.987579,36.343479,670.810486,-0.000000,205,0,0,0,1,6,0,0,409,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53282,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873389',3873389,-59.405991,38.476730,658.650818,-0.000000,205,0,0,0,1,6,0,0,409,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53010,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873390',3873390,-59.105999,36.026340,668.374023,-0.000000,205,0,0,0,1,6,0,0,409,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52738,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873420',3873420,-59.783230,40.755260,572.130127,-0.000144,135,0,0,0,1,6,0,0,117,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52472,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873421',3873421,-58.553791,40.657639,574.646973,-0.000144,135,0,0,0,1,6,0,0,117,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52200,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873422',3873422,-25.335461,55.583641,513.424194,-0.000144,135,0,0,0,1,6,0,0,117,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51928,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873425',3873425,142.979706,22.710770,829.297302,-0.000144,135,0,0,0,1,6,0,0,117,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51656,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873426',3873426,220.695999,20.348419,790.027283,-0.000240,135,0,0,0,1,6,0,0,117,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51384,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873427',3873427,69.222389,20.622999,778.105286,-0.000144,135,0,0,0,1,6,0,0,117,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51112,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873428',3873428,70.471992,21.233120,776.341980,-0.000144,135,0,0,0,1,6,0,0,117,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50840,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873430',3873430,66.086601,57.020870,725.806213,-0.000144,135,0,0,0,1,6,0,0,117,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50568,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873431',3873431,79.195717,52.007320,685.675415,-0.000144,135,0,0,0,1,6,0,0,117,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50296,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873432',3873432,79.268204,51.686298,683.238892,-0.000144,135,0,0,0,1,6,0,0,117,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50024,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873433',3873433,-129.812698,8.744282,655.901672,-0.000240,135,0,0,0,1,6,0,0,117,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49752,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873434',3873434,-127.513100,8.619234,660.065491,-0.000240,135,0,0,0,1,6,0,0,117,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49480,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873435',3873435,-70.867996,3.471146,805.643616,-0.000432,135,0,0,0,1,6,0,0,117,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49208,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873461',3873461,18.223940,44.911652,832.339600,-0.000336,135,0,0,0,1,6,0,0,117,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48936,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873463',3873463,129.763306,48.053009,868.938477,-0.000815,135,0,0,0,1,6,0,0,117,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48664,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873396',3873396,-160.952896,1.569027,667.861206,-1.034567,771,0,0,0,0,6,0,0,350,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48398,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873398',3873398,-161.990494,1.669328,666.421692,-0.000048,771,0,0,0,0,6,0,0,350,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48126,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873399',3873399,-150.636902,5.134464,653.424011,-0.000048,771,0,0,0,1,6,0,0,350,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47854,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873401',3873401,-144.836700,4.701064,665.153870,-0.000048,771,0,0,0,1,6,0,0,350,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47582,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873402',3873402,-149.620605,3.102985,669.616089,-0.955873,771,0,0,0,0,6,0,0,350,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47310,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873403',3873403,-155.732605,1.144920,679.460327,-0.000048,771,0,0,0,1,6,0,0,350,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47038,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873404',3873404,-142.607895,1.054965,712.663025,-0.000048,771,0,0,0,1,6,0,0,350,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46766,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873405',3873405,-148.567505,0.750069,714.199524,-0.545674,771,0,0,0,0,6,0,0,350,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46494,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83970,'LVD_BNPC_03','s1f2','bnpc3873406',3873406,-149.139404,0.759766,712.362000,-0.000048,771,0,0,0,0,6,0,0,350,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46222,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98341,'LVD_easter_2014','s1f2','bnpc4621602',4621602,205.951904,73.024078,-291.708496,0.724007,2769,0,0,0,1,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26712,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102757,'LVD_firefall_2014','s1f2','bnpc4867727',4867727,-103.902603,2.225230,731.826416,-0.823158,3110,0,0,0,0,6,0,0,2910,0,0.000000,99,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26326,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102757,'LVD_firefall_2014','s1f2','bnpc4867728',4867728,-115.780197,1.850056,725.665710,-0.279473,3110,0,0,0,0,6,0,0,2910,0,0.000000,99,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26054,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102757,'LVD_firefall_2014','s1f2','bnpc4867729',4867729,-96.687714,2.097239,744.887817,-1.409874,3110,0,0,0,0,6,0,0,2910,0,0.000000,99,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25782,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102757,'LVD_firefall_2014','s1f2','bnpc4867730',4867730,-98.053673,1.671072,759.716797,-1.342402,3110,0,0,0,0,6,0,0,2910,0,0.000000,99,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25510,8,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102757,'LVD_firefall_2014','s1f2','bnpc4867735',4867735,-122.788597,0.819352,748.165283,1.049870,3111,0,0,0,2,6,0,0,2909,0,0.000000,99,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25244,8,0,0,0,0,0,4867761,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102757,'LVD_firefall_2014','s1f2','bnpc4867736',4867736,-111.623299,1.689789,738.438904,1.026806,3111,0,0,0,2,6,0,0,2909,0,0.000000,99,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24972,8,0,0,0,0,0,4867748,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102757,'LVD_firefall_2014','s1f2','bnpc4867733',4867733,-113.730499,0.984999,755.556274,0.903661,3238,0,0,0,2,6,0,0,2982,0,0.000000,99,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24018,8,0,0,0,0,0,4867753,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102757,'LVD_firefall_2014','s1f2','bnpc4867731',4867731,-109.169701,1.535632,746.508301,0.898815,3238,0,0,0,2,6,0,0,2982,0,0.000000,99,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23746,8,0,0,0,0,0,4867752,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102757,'LVD_firefall_2014','s1f2','bnpc4867737',4867737,-123.906197,0.960864,734.838501,1.117455,3238,0,0,0,2,6,0,0,2982,0,0.000000,99,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23474,8,0,0,0,0,0,4867754,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85946,'LVD_guard_01','s1f2','bnpc4057136',4057136,-29.171040,70.937523,112.141998,1.202678,784,0,0,0,0,6,0,0,1272,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23136,5,0,0,0,0,30054,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85946,'LVD_guard_01','s1f2','bnpc4057153',4057153,-33.309830,59.142609,456.249786,-0.000000,785,0,0,0,0,6,0,0,1272,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22870,5,0,0,0,0,30052,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85946,'LVD_guard_01','s1f2','bnpc4057178',4057178,-0.370673,36.202759,591.413818,-1.557966,786,0,0,0,0,6,0,0,1273,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22604,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85946,'LVD_guard_01','s1f2','bnpc4057204',4057204,126.070801,23.201380,735.619629,-0.000000,788,0,0,0,0,6,0,0,1273,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22338,5,0,0,0,0,30055,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85946,'LVD_guard_01','s1f2','bnpc4510193',4510193,600.272400,61.718521,-115.521301,-0.408718,787,0,0,0,0,6,0,0,1273,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22072,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87465,'FATE_003','s1f2','bnpc4108632',4108632,-70.076180,3.465746,794.854004,1.102759,1404,0,0,0,1,6,0,0,1357,0,0.000000,13,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,179528,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87083,'FATE_004','s1f2','bnpc4103165',4103165,452.843109,66.131577,-146.921295,0.254065,1212,0,0,0,0,6,0,0,1358,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,178790,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87201,'FATE_007','s1f2','bnpc4104259',4104259,162.695801,35.160568,116.342499,-0.000000,1190,0,0,0,0,6,0,0,981,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,176796,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89220,'FATE_008','s1f2','bnpc4126426',4126426,313.471008,67.353683,-130.199493,-0.389349,1212,0,0,0,0,6,0,0,1334,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,173534,1,0,0,0,0,30139,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87082,'FATE_009','s1f2','bnpc4103242',4103242,703.526978,65.783333,-277.526001,-1.553344,1217,0,0,0,0,6,0,0,1321,0,0.000000,8,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,172178,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89296,'FATE_015','s1f2','bnpc4127402',4127402,221.053604,36.416618,204.209793,1.549423,1225,0,0,0,1,6,0,0,852,0,0.000000,3,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,169544,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89296,'FATE_015','s1f2','bnpc4127403',4127403,242.073303,30.115511,201.859299,-0.701965,1217,0,0,0,0,6,0,0,1335,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,169266,1,0,0,0,0,30139,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89296,'FATE_015','s1f2','bnpc4127407',4127407,198.233704,30.545219,111.873199,-0.427754,1216,0,0,0,0,6,0,0,1336,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,169006,1,0,0,0,0,30183,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89363,'FATE_018','s1f2','bnpc4127844',4127844,2.156344,8.921356,859.394897,-0.753326,1226,0,0,0,8,6,0,0,853,0,0.000000,11,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,166688,1,0,0,0,0,30184,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89363,'FATE_018','s1f2','bnpc4127851',4127851,-10.683100,8.921356,837.709717,0.159591,1152,0,0,0,8,6,0,0,1337,0,0.000000,11,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,166422,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89363,'FATE_018','s1f2','bnpc4127853',4127853,0.220884,8.921356,856.812622,0.569806,1192,0,0,0,0,6,0,0,1338,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,166156,1,0,0,0,0,30189,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89677,'FATE_019','s1f2','bnpc4142977',4142977,-32.674339,8.921356,865.459473,1.415003,1227,0,0,0,0,6,0,0,854,0,3.000000,10,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,165618,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89677,'FATE_019','s1f2','bnpc4142978',4142978,-32.855419,8.921356,840.826721,1.553429,1228,0,0,0,0,6,0,0,855,0,3.000000,10,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,165352,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89677,'FATE_019','s1f2','bnpc4184422',4184422,-17.679979,8.921356,853.364319,0.002128,1142,0,0,0,0,6,0,0,1368,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,162590,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89677,'FATE_019','s1f2','bnpc4184420',4184420,-17.726231,8.921356,851.738525,-0.000000,1144,0,0,0,0,6,0,0,1368,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,162324,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89677,'FATE_019','s1f2','bnpc4143928',4143928,-37.641579,8.921356,853.106506,1.561623,1153,0,0,0,0,6,0,0,981,0,0.000000,12,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,162058,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89677,'FATE_019','s1f2','bnpc4184424',4184424,-27.746571,8.921356,834.214294,-0.000000,1152,0,0,0,0,6,0,0,1368,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,161750,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89677,'FATE_019','s1f2','bnpc4184426',4184426,-17.471319,8.921356,864.492676,-0.000000,1155,0,0,0,0,6,0,0,1368,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,161520,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89677,'FATE_019','s1f2','bnpc4184427',4184427,-28.347250,8.921356,871.640015,0.448298,1168,0,0,0,0,6,0,0,1368,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,161254,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89677,'FATE_019','s1f2','bnpc4184428',4184428,-19.244200,8.921356,840.005127,0.035222,1173,0,0,0,0,6,0,0,1368,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,160988,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89677,'FATE_019','s1f2','bnpc4184429',4184429,-34.550732,8.921356,847.511108,1.567708,1181,0,0,0,0,6,0,0,1368,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,160722,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86534,'FATE_023','s1f2','bnpc4093849',4093849,511.273804,96.184837,-428.251892,-0.000000,1229,0,0,0,1,6,0,0,856,0,0.000000,10,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,153056,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87441,'FATE_024','s1f2','bnpc4108273',4108273,-51.144081,40.962990,594.373413,-0.000000,1230,0,0,0,1,6,0,0,857,0,0.000000,10,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,152642,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102749,'FATE_CNY_2015_01','s1f2','bnpc4867667',4867667,-133.581604,3.154731,693.328003,1.022791,3112,0,0,0,1,6,0,0,2908,0,0.000000,13,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,152228,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96875,'FATE_DQX_01','s1f2','bnpc4509104',4509104,271.372192,71.042412,-205.034897,0.410750,2310,0,0,0,1,6,0,0,2221,0,0.000000,7,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,151810,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93916,'FATE_Firefall_2013_01','s1f2','bnpc4325190',4325190,-165.992599,0.081554,676.774414,1.117011,2227,0,0,0,0,6,0,0,1807,0,0.000000,13,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,149484,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93916,'FATE_Firefall_2013_01','s1f2','bnpc4325191',4325191,-101.548500,11.149360,671.347473,-0.872665,2227,0,0,0,0,6,0,0,1807,0,0.000000,13,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,149212,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93916,'FATE_Firefall_2013_01','s1f2','bnpc4325192',4325192,-102.736000,2.923415,714.542175,-0.994838,2227,0,0,0,0,6,0,0,1807,0,0.000000,13,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,148940,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93916,'FATE_Firefall_2013_01','s1f2','bnpc4325193',4325193,-149.185898,0.154457,727.349182,0.523599,2227,0,0,0,0,6,0,0,1807,0,0.000000,13,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,148668,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93916,'FATE_Firefall_2013_01','s1f2','bnpc4325189',4325189,-131.102097,3.291775,696.389771,-0.000000,2087,0,0,0,0,6,0,0,1641,0,0.000000,11,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,148090,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97163,'FATE_XMAS_2013_01','s1f2','bnpc4536554',4536554,-130.527603,3.552068,695.179688,-0.000000,2440,0,0,0,0,6,0,0,2329,0,0.000000,13,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,147740,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97163,'FATE_XMAS_2013_01','s1f2','bnpc4536555',4536555,-124.008202,2.970437,707.154724,0.561985,2441,0,0,0,1,6,0,0,2331,0,0.000000,10,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,147474,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86833,'go010','s1f2','bnpc4102196',4102196,213.364594,72.664513,-280.748413,1.467358,1129,0,0,0,1,6,0,0,1270,0,0.000000,28,0,120,1,0,1,0,20,20,1,1,0,1,0,0.000000,1.000000,143612,1,0,60,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86833,'go010','s1f2','bnpc4102193',4102193,212.112900,73.247978,-272.686890,0.759660,1128,0,0,0,0,6,0,0,1269,0,0.000000,30,0,120,1,0,1,0,40,20,1,1,0,1,0,0.000000,1.000000,143346,1,1,80,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87112,'Grand_Company_Leve','s1f2','bnpc4178129',4178129,62.852020,18.056780,785.230713,-0.000000,1325,0,0,0,1,6,0,0,1232,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,4.000000,1.000000,142564,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87112,'Grand_Company_Leve','s1f2','g',4178137,124.300102,54.233131,892.822205,0.306612,1326,0,0,0,1,6,0,0,1231,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,4.000000,1.000000,141554,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87112,'Grand_Company_Leve','s1f2','bnpc4185314',4185314,134.078201,51.019669,882.307983,-0.000000,1326,0,0,0,1,6,0,0,1231,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,4.000000,1.000000,141282,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87112,'Grand_Company_Leve','s1f2','bnpc4185361',4185361,131.415894,52.303459,888.298828,-0.000000,1326,0,0,0,1,6,0,0,1231,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,4.000000,1.000000,140698,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87112,'Grand_Company_Leve','s1f2','bnpc4392499',4392499,63.303890,18.141150,789.357117,-0.000000,1325,0,0,0,1,6,0,0,1232,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,4.000000,1.000000,140420,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256744',4256744,62.108410,71.277130,368.249908,-0.698787,2061,0,0,0,1,6,0,0,1496,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111284,1,0,0,0,0,0,0,695,335); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256746',4256746,8.029058,66.325203,421.165802,-0.200738,2063,0,0,0,1,6,0,0,1494,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111018,1,0,0,0,0,0,0,693,333); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256747',4256747,8.245982,66.386139,422.423004,-0.200667,2064,0,0,0,1,6,0,0,1495,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110752,1,0,0,0,0,0,0,694,334); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256750',4256750,22.504520,70.504913,402.174011,0.737185,2059,0,0,0,8,6,0,0,1956,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110486,1,0,0,0,0,0,0,720,359); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256751',4256751,24.340191,70.524483,404.180389,0.737281,2059,0,0,0,8,6,0,0,1956,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110214,1,0,0,0,0,0,0,720,360); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256753',4256753,25.180969,71.253082,401.041992,1.299781,2060,0,0,0,8,6,0,0,1957,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109948,1,0,0,0,0,0,0,719,356); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256754',4256754,25.257910,71.301613,399.728699,1.092449,2060,0,0,0,8,6,0,0,1957,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109676,1,0,0,0,0,0,0,719,357); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256755',4256755,26.614149,71.277069,402.182098,1.092499,2060,0,0,0,8,6,0,0,1957,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109404,1,0,0,0,0,0,0,719,358); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256749',4256749,65.253113,71.298347,369.485809,-1.010861,2062,0,0,0,8,6,0,0,0,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109138,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256758',4256758,7.544525,66.326103,415.552612,1.534980,2059,0,0,0,8,6,0,0,1956,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108854,1,0,0,0,0,0,0,720,359); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256759',4256759,7.255910,66.326111,414.698486,1.536341,2059,0,0,0,8,6,0,0,1956,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108582,1,0,0,0,0,0,0,720,360); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256760',4256760,8.387623,66.326088,416.260803,0.884176,2059,0,0,0,8,6,0,0,1956,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108310,1,0,0,0,0,0,0,720,361); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256761',4256761,7.999519,66.517273,413.455109,0.803289,2060,0,0,0,8,6,0,0,1957,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108044,1,0,0,0,0,0,0,719,362); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256762',4256762,9.656807,66.553658,414.442108,1.148178,2060,0,0,0,8,6,0,0,1957,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107772,1,0,0,0,0,0,0,719,363); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256763',4256763,10.894120,66.553673,415.605713,1.134745,2060,0,0,0,8,6,0,0,1957,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107500,1,0,0,0,0,0,0,719,364); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256766',4256766,5.541747,66.326141,415.828003,1.276715,2065,0,0,0,8,6,0,0,1958,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107240,1,0,0,0,0,0,0,345,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256772',4256772,7.077739,66.326118,417.406189,0.928381,2065,0,0,0,8,6,0,0,1958,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106968,1,0,0,0,0,0,0,345,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256776',4256776,4.953842,66.326141,416.739685,1.421745,2059,0,0,0,8,6,0,0,1956,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106678,1,0,0,0,0,0,0,720,365); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256777',4256777,5.680215,66.326141,417.605591,0.923373,2059,0,0,0,8,6,0,0,1956,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106406,1,0,0,0,0,0,0,720,366); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256782',4256782,4.971908,66.326141,415.222504,1.207741,2060,0,0,0,8,6,0,0,1957,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106140,1,0,0,0,0,0,0,719,367); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256783',4256783,7.059560,66.326118,417.834595,1.485491,2060,0,0,0,8,6,0,0,1957,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105868,1,0,0,0,0,0,0,719,368); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256788',4256788,4.795745,66.326134,413.851990,1.011987,2066,0,0,0,8,6,0,0,1958,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105614,1,0,0,0,0,0,0,344,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4256789',4256789,4.903199,66.326141,417.669189,0.639471,2067,0,0,0,8,6,0,0,1960,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105348,1,0,0,0,0,0,0,721,369); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92266,'QB_CLSARC200_001','s1f2','bnpc4304848',4304848,8.443767,66.326134,418.239899,0.935366,2066,0,0,0,8,6,0,0,1958,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105070,1,0,0,0,0,0,0,344,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107368',4107368,156.926697,33.900631,89.502693,-0.000000,713,0,0,0,8,6,0,0,824,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102738,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107369',4107369,136.804306,38.060059,115.264900,0.979433,715,0,0,0,8,6,0,0,826,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102472,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107370',4107370,166.718506,32.990871,96.696411,-0.917047,714,0,0,0,1,6,0,0,825,0,0.010000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102206,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107372',4107372,149.890594,34.998932,95.780884,0.868534,714,0,0,0,1,6,0,0,825,0,0.010000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101934,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107418',4107418,196.598999,43.813801,50.493919,-1.412738,714,0,0,0,1,6,0,0,825,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101662,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107419',4107419,191.285599,45.970879,43.080921,-1.166289,714,0,0,0,1,6,0,0,825,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101390,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107420',4107420,205.044403,44.735298,49.585690,-0.884641,714,0,0,0,1,6,0,0,825,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101118,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107421',4107421,173.507599,44.429241,38.405239,-1.459368,714,0,0,0,1,6,0,0,825,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100846,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107422',4107422,167.363800,43.660851,36.627121,-1.052992,714,0,0,0,1,6,0,0,825,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100574,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107423',4107423,176.497299,44.759190,39.238739,-1.127205,714,0,0,0,1,6,0,0,825,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100302,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107424',4107424,211.632797,48.866741,38.239441,-1.563720,714,0,0,0,1,6,0,0,825,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100030,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107425',4107425,216.988800,48.023178,40.400700,-1.563720,714,0,0,0,1,6,0,0,825,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99758,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107426',4107426,212.981995,46.551971,44.899479,-1.563720,714,0,0,0,1,6,0,0,825,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99486,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107427',4107427,218.884094,45.917080,46.273869,-1.129882,714,0,0,0,1,6,0,0,825,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99214,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107428',4107428,222.377808,48.305599,38.733120,-0.984377,714,0,0,0,1,6,0,0,825,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98942,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107432',4107432,158.098602,34.623192,103.175301,0.098944,957,0,0,0,1,6,0,0,827,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98676,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107433',4107433,212.595703,44.040310,51.725590,-0.984450,957,0,0,0,1,6,0,0,827,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98404,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107434',4107434,191.929398,48.471149,36.375751,-0.870705,957,0,0,0,1,6,0,0,827,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98132,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107435',4107435,197.468796,50.185570,32.711948,-0.696797,957,0,0,0,1,6,0,0,827,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97860,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107436',4107436,223.381104,45.058769,47.735519,-0.515956,957,0,0,0,1,6,0,0,827,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97588,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86070,'QB_ClsExc050_000','s1f2','bnpc4107437',4107437,225.630905,43.748169,50.659111,-0.503246,957,0,0,0,1,6,0,0,827,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97316,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126558',4126558,-229.358398,-0.015320,676.933228,-0.000048,999,0,0,0,8,6,0,0,824,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95746,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126569',4126569,-235.693802,0.000000,705.666016,-0.079927,1000,0,0,0,1,6,0,0,838,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95480,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126570',4126570,-237.404297,0.000000,707.750305,-0.079927,1000,0,0,0,1,6,0,0,838,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95208,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126571',4126571,-234.412292,0.000000,707.981812,-0.079927,1000,0,0,0,1,6,0,0,838,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94936,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126573',4126573,-229.594498,0.000000,705.854126,-0.079927,1000,0,0,0,1,6,0,0,838,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94664,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126574',4126574,-231.256699,0.000000,708.158386,-0.079927,1000,0,0,0,1,6,0,0,838,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94392,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126575',4126575,-227.555099,0.000000,708.225891,-0.079927,1000,0,0,0,1,6,0,0,838,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94120,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126627',4126627,-210.164902,0.000000,712.543091,-1.156978,1000,0,0,0,1,6,0,0,838,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93848,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126628',4126628,-208.458603,0.000000,709.667297,-1.156978,1000,0,0,0,1,6,0,0,838,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93576,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126629',4126629,-211.693695,0.000000,709.435730,-1.156978,1001,0,0,0,1,6,0,0,839,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93310,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126631',4126631,-204.975998,0.000000,715.546021,-1.156978,1000,0,0,0,1,6,0,0,838,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93032,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126632',4126632,-203.144501,0.000000,712.864197,-1.156978,1000,0,0,0,1,6,0,0,838,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92760,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126633',4126633,-206.106003,0.000000,713.101013,-1.156978,1001,0,0,0,1,6,0,0,839,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92494,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126649',4126649,-209.565506,0.000000,706.520386,-1.095111,1000,0,0,0,1,6,0,0,838,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92216,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126655',4126655,-208.498001,0.000000,705.126892,-1.095111,1000,0,0,0,1,6,0,0,838,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91944,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126656',4126656,-206.685593,0.000000,708.996826,-1.095111,1000,0,0,0,1,6,0,0,838,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91672,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126657',4126657,-205.024002,0.000000,705.847229,-1.095111,1000,0,0,0,1,6,0,0,838,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91400,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126658',4126658,-207.392807,0.000000,707.164673,-1.095111,1002,0,0,0,1,6,0,0,1314,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91140,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126659',4126659,-232.326294,0.000000,695.507080,-0.025487,1003,0,0,0,1,6,0,0,837,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90874,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126546',4126546,-232.146805,0.000000,697.153320,-0.006695,1394,0,0,0,1,6,0,0,967,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90036,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126547',4126547,-234.917206,0.000000,699.954895,-0.006695,1394,0,0,0,1,6,0,0,967,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89764,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126548',4126548,-229.472198,0.000000,699.451782,-0.006695,1394,0,0,0,1,6,0,0,967,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89492,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126549',4126549,-232.388794,0.000000,701.795227,-0.006695,1394,0,0,0,1,6,0,0,967,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89220,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126550',4126550,-235.801697,0.000000,704.137817,-0.006695,1394,0,0,0,1,6,0,0,967,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88948,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86838,'QB_ClsExc250_000','s1f2','bnpc4126551',4126551,-229.779099,0.000000,702.969788,-0.006695,1394,0,0,0,1,6,0,0,967,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88676,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127474',4127474,571.128784,90.575050,-432.883209,0.028859,992,0,0,0,8,6,0,0,824,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127475',4127475,576.750122,90.580833,-432.761200,-0.226937,993,0,0,0,8,6,0,0,826,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87572,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127476',4127476,570.316528,94.763206,-468.579193,0.084115,994,0,0,0,1,6,0,0,906,0,0.000000,31,0,120,3,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87306,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127477',4127477,567.439392,95.990463,-505.618988,0.129972,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87040,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127478',4127478,569.168518,95.960541,-504.891113,0.129972,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86768,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127479',4127479,566.169006,96.015877,-505.763885,0.129972,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86496,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127480',4127480,573.935303,95.949837,-504.627106,0.170439,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86224,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127481',4127481,572.591492,95.905159,-503.749512,0.170439,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85952,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127482',4127482,575.440125,96.266098,-506.240295,0.170439,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85680,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127485',4127485,567.439392,95.733192,-500.369293,0.129972,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85408,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127486',4127486,569.168518,95.826942,-502.203705,0.129972,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85136,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127487',4127487,566.169006,95.732521,-499.944305,0.129972,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84864,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127488',4127488,573.935303,95.889450,-503.440002,0.170439,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84592,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127489',4127489,572.591492,95.805412,-501.770996,0.170439,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84320,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127490',4127490,575.440125,96.280518,-506.647095,0.170439,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84048,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127491',4127491,567.439392,95.885406,-503.475006,0.129972,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83776,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127492',4127492,569.168518,95.975014,-505.182404,0.129972,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83504,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127493',4127493,566.169006,95.748703,-500.276611,0.129972,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83232,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127494',4127494,573.935303,95.998947,-505.592712,0.170439,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82960,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127495',4127495,572.591492,95.930344,-504.248901,0.170439,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82688,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89297,'QB_ClsExc300_001','s1f2','bnpc4127496',4127496,575.440125,96.308792,-508.685211,0.170439,1007,0,0,0,1,6,0,0,968,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82416,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93056,'QB_GaiUsb004_001','s1f2','bnpc4295469',4295469,701.149719,65.783333,-288.315887,0.581989,1769,0,0,0,8,6,0,0,2073,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80434,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93056,'QB_GaiUsb004_001','s1f2','bnpc4295470',4295470,693.743713,66.364052,-296.279297,1.262232,1770,0,0,0,3,6,0,0,2074,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80168,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93056,'QB_GaiUsb004_001','s1f2','bnpc4295472',4295472,690.974121,66.178337,-289.845215,-1.462529,1771,0,0,0,3,6,0,0,2075,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79902,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93056,'QB_GaiUsb004_001','s1f2','bnpc4295473',4295473,692.346619,66.085617,-288.886810,-1.275651,1772,0,0,0,3,6,0,0,1385,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79636,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87280,'QB_MANSEA302_001','s1f2','bnpc4105799',4105799,368.184814,76.584961,-331.227600,-0.114475,1030,0,0,0,0,6,0,0,1003,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78294,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87280,'QB_MANSEA302_001','s1f2','bnpc4105800',4105800,372.191895,76.298630,-328.036011,-0.082741,1031,0,0,0,0,6,0,0,1002,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78028,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87280,'QB_MANSEA302_001','s1f2','bnpc4105801',4105801,363.820801,76.066162,-328.511505,0.051773,1032,0,0,0,0,6,0,0,1004,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77762,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87280,'QB_MANSEA302_001','s1f2','bnpc4105802',4105802,368.337494,77.683594,-343.465302,-0.000048,1020,0,0,0,0,6,0,0,996,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77496,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87280,'QB_MANSEA302_001','s1f2','bnpc4105803',4105803,368.445313,78.085541,-348.526215,-0.000000,1022,0,0,0,0,6,0,0,997,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87280,'QB_MANSEA302_001','s1f2','bnpc4105804',4105804,373.963715,77.689850,-343.818115,-0.000000,1021,0,0,0,0,6,0,0,998,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76964,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87280,'QB_MANSEA302_001','s1f2','bnpc4105805',4105805,363.070801,77.882553,-345.189301,-0.000000,1021,0,0,0,0,6,0,0,998,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76692,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87280,'QB_MANSEA302_001','s1f2','bnpc4105806',4105806,374.240509,78.076759,-348.317291,-0.000000,1023,0,0,0,0,6,0,0,995,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76426,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87280,'QB_MANSEA302_001','s1f2','bnpc4105807',4105807,363.156311,78.174202,-348.987915,-0.000000,1023,0,0,0,0,6,0,0,995,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76154,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87280,'QB_MANSEA302_001','s1f2','bnpc4105862',4105862,373.651611,82.778503,-381.982697,-0.000000,1016,0,0,0,0,6,0,0,269,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75468,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87280,'QB_MANSEA302_001','s1f2','bnpc4105863',4105863,369.222412,82.645767,-382.908508,-0.000000,1023,0,0,0,0,6,0,0,995,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75190,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87280,'QB_MANSEA302_001','s1f2','bnpc4105864',4105864,379.113586,83.420197,-383.350311,-0.000000,1023,0,0,0,0,6,0,0,995,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74918,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85062,'QB_SUBSEA117_000','s1f2','bnpc3970427',3970427,232.328903,14.096020,608.917297,1.459414,938,0,0,0,8,6,0,0,815,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72894,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85062,'QB_SUBSEA117_000','s1f2','bnpc3970428',3970428,231.674194,14.096030,610.444824,1.525327,939,0,0,0,8,6,0,0,816,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72628,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85062,'QB_SUBSEA117_000','s1f2','bnpc3970651',3970651,245.014008,14.145080,610.314880,-0.736610,934,0,0,0,0,6,0,0,811,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72362,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85062,'QB_SUBSEA117_000','s1f2','bnpc3970655',3970655,222.949493,14.423460,646.372070,0.583401,935,0,0,0,0,6,0,0,812,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72096,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85062,'QB_SUBSEA117_000','s1f2','bnpc3970671',3970671,222.498993,14.420730,647.046082,0.588866,935,0,0,0,0,6,0,0,812,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71824,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85062,'QB_SUBSEA117_000','s1f2','bnpc3970673',3970673,223.804092,14.439940,647.254578,1.100456,940,0,0,0,0,6,0,0,817,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71558,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85062,'QB_SUBSEA117_000','s1f2','bnpc3970684',3970684,269.624695,12.522210,604.397827,-0.916391,937,0,0,0,0,6,0,0,814,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71292,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85062,'QB_SUBSEA117_000','s1f2','bnpc3970685',3970685,268.841614,14.083950,601.451904,-1.040477,936,0,0,0,0,6,0,0,813,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71026,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85062,'QB_SUBSEA117_000','s1f2','bnpc3970686',3970686,270.910706,12.441430,602.742188,-0.958645,936,0,0,0,0,6,0,0,813,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70754,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85062,'QB_SUBSEA117_000','s1f2','bnpc3970675',3970675,272.864990,10.604810,604.023987,-1.034097,941,0,0,0,0,6,0,0,818,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70488,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85062,'QB_SUBSEA117_000','s1f2','bnpc4103658',4103658,271.700500,10.565900,605.771973,-1.037056,941,0,0,0,0,6,0,0,818,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70216,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85062,'QB_SUBSEA117_000','s1f2','bnpc4167378',4167378,197.131195,8.865417,603.662109,-1.559796,935,0,0,0,1,6,0,0,812,0,0.000000,14,0,120,1,0,1,0,0,0,0,0,0,0,0,0.000000,1.000000,68308,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85062,'QB_SUBSEA117_000','s1f2','bnpc4167379',4167379,191.943207,8.957031,602.838074,-1.010909,940,0,0,0,1,6,0,0,817,0,0.000000,14,0,120,1,0,1,0,0,0,0,0,0,0,0,0.000000,1.000000,68042,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85062,'QB_SUBSEA117_000','s1f2','bnpc4167390',4167390,174.700607,12.069820,626.886414,-1.010861,935,0,0,0,1,6,0,0,812,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67620,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85062,'QB_SUBSEA117_000','s1f2','bnpc4167391',4167391,171.373993,12.100340,626.886414,-0.398819,935,0,0,0,1,6,0,0,812,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67348,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81634,'QST_CLSEXC300_000','s1f2','bnpc3631814',3631814,565.229980,67.577103,-223.935303,-0.000048,12,0,0,0,1,6,0,0,1315,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59250,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81634,'QST_CLSEXC300_000','s1f2','bnpc3631816',3631816,590.960815,74.521156,-280.571014,-0.000000,2,0,0,0,1,6,0,0,965,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81634,'QST_CLSEXC300_000','s1f2','bnpc3631818',3631818,568.340820,85.817352,-333.236206,-0.000000,179,0,0,0,1,6,0,0,1316,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58718,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92836,'QST_GaiUsb002','s1f2','bnpc4291274',4291274,669.902893,64.367264,-204.151596,1.569332,2239,0,0,0,1,6,0,0,417,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30248,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92836,'QST_GaiUsb002','s1f2','bnpc4291279',4291279,670.494873,64.603058,-206.479904,0.630660,2239,0,0,0,1,6,0,0,417,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29976,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92836,'QST_GaiUsb002','s1f2','bnpc4291283',4291283,672.780212,65.466438,-206.917603,-0.178810,2239,0,0,0,1,6,0,0,417,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29704,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92836,'QST_GaiUsb002','s1f2','bnpc4291284',4291284,669.516296,64.548531,-205.494003,1.566860,2239,0,0,0,1,6,0,0,417,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29432,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92836,'QST_GaiUsb002','s1f2','bnpc4291285',4291285,670.663818,64.229591,-203.368195,0.254419,2240,0,0,0,1,6,0,0,678,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29166,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92839,'QST_GaiUsb003','s1f2','bnpc4291318',4291318,629.601624,69.048370,-269.949707,1.461379,1900,0,0,0,1,6,0,0,1986,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28596,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93498,'QST_JobMnk451_003','s1f2','bnpc4308653',4308653,-69.946838,2.557848,720.500488,-1.250033,348,0,0,0,1,6,0,0,674,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25914,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93498,'QST_JobMnk451_003','s1f2','bnpc4308658',4308658,-67.961098,2.722629,722.672974,-1.442886,81,0,0,0,1,6,0,0,675,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25648,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93498,'QST_JobMnk451_003','s1f2','bnpc4308682',4308682,-74.837318,2.942550,711.944885,-0.785822,345,0,0,0,1,6,0,0,676,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25382,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85608,'QST_SubSea066_001','s1f2','bnpc4014176',4014176,269.991211,74.736687,-297.898010,-0.629013,329,0,0,0,1,6,0,0,368,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21960,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85608,'QST_SubSea066_001','s1f2','bnpc4014178',4014178,266.971588,74.612450,-334.407990,-0.747882,331,0,0,0,1,6,0,0,372,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21694,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85608,'QST_SubSea066_001','s1f2','bnpc4014174',4014174,248.527298,75.692719,-303.486115,0.823433,329,0,0,0,1,6,0,0,368,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21328,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85612,'QST_SubSea067_001','s1f2','bnpc4014787',4014787,229.806503,73.280884,-288.498901,-0.839033,329,0,0,0,1,6,0,0,368,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,1,0.000000,1.000000,20764,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85612,'QST_SubSea067_001','s1f2','bnpc4014788',4014788,225.763702,72.331810,-273.504913,-0.393733,331,0,0,0,1,6,0,0,372,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,1,0.000000,1.000000,20498,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85612,'QST_SubSea067_001','s1f2','bnpc4014786',4014786,215.210098,72.768700,-286.466400,1.083901,329,0,0,0,1,6,0,0,368,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,1,0,0,0.000000,1.000000,20220,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85736,'QST_SubSea070_001','s1f2','bnpc4031951',4031951,456.007202,68.297867,-186.011002,-0.626471,205,0,0,0,1,6,0,0,958,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18688,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85736,'QST_SubSea070_001','s1f2','bnpc4031954',4031954,471.371307,68.250816,-185.845703,1.005973,205,0,0,0,1,6,0,0,958,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18416,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85736,'QST_SubSea070_001','s1f2','bnpc4031956',4031956,471.773193,68.367569,-173.927200,-1.274147,205,0,0,0,1,6,0,0,958,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18144,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85737,'QST_SubSea071_001','s1f2','bnpc4031959',4031959,443.769196,68.070427,-176.014694,-1.515238,49,0,0,0,1,6,0,0,49,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17666,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85737,'QST_SubSea071_001','s1f2','bnpc4031960',4031960,440.276215,68.070427,-180.551697,0.201150,49,0,0,0,1,6,0,0,49,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17394,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85737,'QST_SubSea071_001','s1f2','bnpc4203868',4203868,440.543304,68.070427,-170.657593,-0.086133,49,0,0,0,1,6,0,0,49,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17122,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85738,'QST_SubSea073_001','s1f2','bnpc4031980',4031980,270.251801,73.245064,-263.452301,-0.000000,57,0,0,0,1,6,0,0,201,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16560,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85738,'QST_SubSea073_001','s1f2','bnpc4031981',4031981,293.200714,72.626106,-269.469208,-0.000000,57,0,0,0,1,6,0,0,201,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16288,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85738,'QST_SubSea073_001','s1f2','bnpc4031982',4031982,294.112915,72.720383,-272.040802,-0.000000,57,0,0,0,1,6,0,0,201,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16016,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82989,'QST_SUBSEA118_000','s1f2','bnpc3781826',3781826,-147.350403,2.476649,704.937927,0.122711,170,0,0,0,1,6,0,0,570,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82989,'QST_SUBSEA118_000','s1f2','bnpc3781831',3781831,-187.778595,0.156929,689.211487,-0.000000,170,0,0,0,1,6,0,0,570,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11566,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82989,'QST_SUBSEA118_000','s1f2','bnpc3781834',3781834,-164.534103,3.004328,659.421387,-1.402957,170,0,0,0,1,6,0,0,570,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11294,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82990,'QST_SUBSEA119_000','s1f2','bnpc3782177',3782177,99.512611,20.892260,773.215820,-0.736466,9,0,0,0,1,6,0,0,571,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10696,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82990,'QST_SUBSEA119_000','s1f2','bnpc3782179',3782179,97.886963,21.087049,771.559082,0.508954,9,0,0,0,1,6,0,0,571,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10424,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82990,'QST_SUBSEA119_000','s1f2','bnpc3782180',3782180,98.047218,20.618540,775.429077,-0.531916,9,0,0,0,1,6,0,0,571,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10152,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82990,'QST_SUBSEA119_000','s1f2','bnpc3782196',3782196,47.916870,30.527439,756.388672,-0.000527,9,0,0,0,1,6,0,0,571,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9880,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82990,'QST_SUBSEA119_000','s1f2','bnpc3782197',3782197,46.802990,30.751671,757.927979,-1.424467,9,0,0,0,1,6,0,0,571,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9608,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82990,'QST_SUBSEA119_000','s1f2','bnpc3782198',3782198,45.267738,31.146271,756.653870,1.476526,9,0,0,0,1,6,0,0,571,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9336,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82990,'QST_SUBSEA119_000','s1f2','bnpc3782220',3782220,94.193848,25.162109,822.140686,0.123008,9,0,0,0,1,6,0,0,571,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9064,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82990,'QST_SUBSEA119_000','s1f2','bnpc3782386',3782386,94.460297,24.347330,818.437317,-1.439902,9,0,0,0,1,6,0,0,571,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8792,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82990,'QST_SUBSEA119_000','s1f2','bnpc3782387',3782387,92.639000,24.675720,820.242676,1.482950,9,0,0,0,1,6,0,0,571,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8520,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82990,'QST_SUBSEA119_000','s1f2','bnpc3782187',3782187,97.986847,20.817961,773.301697,-0.895715,10,0,0,0,1,6,0,0,572,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8254,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82990,'QST_SUBSEA119_000','s1f2','bnpc3782209',3782209,46.634960,30.815121,756.374573,-0.000623,10,0,0,0,1,6,0,0,572,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7982,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82990,'QST_SUBSEA119_000','s1f2','bnpc3782389',3782389,94.327438,24.827869,820.460327,0.127227,10,0,0,0,1,6,0,0,572,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7710,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82991,'QST_SUBSEA120_000','s1f2','bnpc3818788',3818788,36.723991,42.458900,711.993774,-0.286811,22,0,0,0,1,6,0,0,573,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7136,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82991,'QST_SUBSEA120_000','s1f2','bnpc3818789',3818789,30.218660,44.673740,716.468384,1.076871,22,0,0,0,1,6,0,0,573,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6864,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82991,'QST_SUBSEA120_000','s1f2','bnpc3818790',3818790,61.453350,43.012310,689.873779,-0.945677,22,0,0,0,1,6,0,0,573,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6592,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82991,'QST_SUBSEA120_000','s1f2','bnpc3818791',3818791,54.874821,42.374439,693.467529,0.748978,22,0,0,0,1,6,0,0,573,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6320,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82991,'QST_SUBSEA120_000','s1f2','bnpc3818792',3818792,65.479736,42.306301,673.356628,0.728267,22,0,0,0,1,6,0,0,573,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6048,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82991,'QST_SUBSEA120_000','s1f2','bnpc3818793',3818793,65.267593,42.787449,678.309204,0.862190,22,0,0,0,1,6,0,0,573,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5776,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3965984',3965984,290.117706,43.654701,749.469177,-0.000336,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107688,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3965987',3965987,293.200012,43.134739,746.661621,-0.000336,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107416,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3965988',3965988,324.116791,32.547440,699.946472,-0.000240,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107144,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3965990',3965990,392.568787,27.054199,712.336914,-0.000240,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106872,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3965997',3965997,390.188385,27.145750,714.442627,-0.000240,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106600,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966001',3966001,385.580200,26.749020,711.055115,-0.000144,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106328,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966005',3966005,389.669586,25.009489,695.277283,-0.000048,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106056,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966021',3966021,290.485901,42.923580,551.995117,-0.000240,322,0,0,0,1,6,0,0,1313,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105790,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966030',3966030,281.486511,40.675110,660.846008,-0.000336,322,0,0,0,1,6,0,0,1313,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105518,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966033',3966033,385.317902,24.940651,523.827576,-0.000240,322,0,0,0,1,6,0,0,1313,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105246,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966039',3966039,452.273987,34.051319,541.621094,-0.000144,322,0,0,0,1,6,0,0,1313,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104974,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966043',3966043,343.232605,30.682180,454.719208,-0.000432,322,0,0,0,1,6,0,0,1313,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104702,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966045',3966045,288.452911,42.365101,363.512909,-0.000144,322,0,0,0,1,6,0,0,1313,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104430,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966046',3966046,299.927887,41.764408,350.498810,-0.000336,322,0,0,0,1,6,0,0,1313,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104158,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966078',3966078,418.940399,16.917250,740.596619,-0.000240,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103880,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966084',3966084,430.092010,14.727770,731.417480,-0.000240,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103608,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966085',3966085,432.472412,14.548040,729.311829,-0.000240,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103336,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966086',3966086,430.427704,14.832140,728.091003,-0.000144,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103064,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966092',3966092,387.587006,24.567631,693.317871,-0.000240,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102792,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966095',3966095,427.572998,13.961960,671.839417,-0.000240,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102520,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966096',3966096,429.953400,13.687290,669.733582,-0.000240,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102248,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966097',3966097,422.964813,14.236620,668.451904,-0.000144,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101976,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966100',3966100,428.580109,13.809370,659.082825,-0.000240,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101704,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966104',3966104,352.881012,30.771620,728.950378,-0.000240,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101432,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966108',3966108,504.101715,8.999934,681.622986,-0.000048,325,0,0,0,1,6,0,0,560,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101172,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966112',3966112,463.920013,10.940670,693.965027,-0.000144,325,0,0,0,1,6,0,0,560,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100900,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966115',3966115,475.702911,9.703782,729.907288,-0.000144,325,0,0,0,1,6,0,0,560,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100628,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966117',3966117,481.560486,9.326057,765.301697,-0.000048,325,0,0,0,1,6,0,0,560,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100356,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966118',3966118,489.679596,8.999991,754.903076,-0.000048,325,0,0,0,1,6,0,0,560,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100084,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966120',3966120,485.691986,9.522070,641.613586,-0.000048,325,0,0,0,1,6,0,0,560,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99812,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966122',3966122,502.346710,8.999838,630.363403,-0.000144,325,0,0,0,1,6,0,0,560,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99540,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966123',3966123,467.942596,11.618370,598.635376,-0.000048,325,0,0,0,1,6,0,0,560,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99268,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966128',3966128,523.159729,8.999995,252.453705,-0.000048,312,0,0,0,1,6,0,0,361,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99002,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966129',3966129,503.478210,9.866951,210.334000,-0.000336,312,0,0,0,1,6,0,0,361,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98730,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966132',3966132,506.041687,9.747169,207.556793,-0.000336,312,0,0,0,1,6,0,0,361,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98458,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966134',3966134,494.140015,11.102120,230.850998,-0.000240,312,0,0,0,1,6,0,0,361,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98186,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966135',3966135,513.192200,8.999973,265.080597,-0.000144,312,0,0,0,1,6,0,0,361,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97914,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966139',3966139,515.692383,8.999988,223.561798,-0.000336,312,0,0,0,1,6,0,0,361,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97642,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966142',3966142,536.347412,9.170974,198.358597,-0.000240,312,0,0,0,1,6,0,0,361,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97370,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966143',3966143,480.563690,11.275560,254.698898,-0.000000,312,0,0,0,1,6,0,0,361,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97098,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966185',3966185,225.319901,54.344410,564.565430,1.226643,170,0,0,0,0,6,0,0,351,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96832,1,0,0,0,27,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966191',3966191,240.668304,51.838989,562.298584,-0.000048,170,0,0,0,1,6,0,0,351,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96560,1,0,0,0,27,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966193',3966193,237.524506,52.241501,560.929688,1.250502,170,0,0,0,0,6,0,0,351,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96288,1,0,0,0,27,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966195',3966195,238.675705,52.019920,558.354919,0.163950,170,0,0,0,0,6,0,0,351,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96016,1,0,0,0,27,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966197',3966197,234.047104,60.363258,532.494019,-0.777299,170,0,0,0,0,6,0,0,351,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95744,1,0,0,0,27,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966198',3966198,232.410202,60.349369,532.799194,1.311233,170,0,0,0,0,6,0,0,351,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95472,1,0,0,0,27,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966204',3966204,318.658203,37.686790,233.860397,-1.221793,328,0,0,0,0,6,0,0,379,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95206,1,0,0,0,0,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966224',3966224,322.804413,37.674561,206.378204,1.487906,328,0,0,0,0,6,0,0,379,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94934,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966226',3966226,330.596191,36.181511,217.927505,-0.000048,328,0,0,0,1,6,0,0,379,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94662,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966237',3966237,325.863403,37.460819,205.065903,-0.699235,329,0,0,0,0,6,0,0,369,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94396,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966240',3966240,316.045197,38.194221,236.654907,0.442879,329,0,0,0,0,6,0,0,369,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94124,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966241',3966241,313.378113,38.056759,220.080307,-0.000048,329,0,0,0,1,6,0,0,369,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93852,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966242',3966242,334.248901,36.394051,239.885498,-0.000144,331,0,0,0,1,6,0,0,373,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93586,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966243',3966243,315.073486,38.121010,233.173004,0.691265,331,0,0,0,0,6,0,0,373,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93314,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966244',3966244,315.354797,39.330219,197.917297,-0.000144,331,0,0,0,1,6,0,0,373,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93042,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966270',3966270,307.454010,32.229580,527.673584,-0.000240,133,0,0,0,1,6,0,0,115,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92776,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966278',3966278,282.918610,42.498619,402.770111,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92504,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966279',3966279,331.480194,37.450062,426.526886,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92232,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966281',3966281,411.184814,27.695080,488.273407,-0.000240,133,0,0,0,1,6,0,0,115,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91960,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966285',3966285,430.838409,18.936399,772.152222,-0.000240,133,0,0,0,1,6,0,0,115,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91688,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966288',3966288,445.507111,13.025030,702.326416,-0.000144,133,0,0,0,1,6,0,0,115,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91416,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966289',3966289,424.795807,18.326040,592.889221,-0.000336,133,0,0,0,1,6,0,0,115,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91144,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966291',3966291,236.732101,53.718140,616.643982,-0.000432,133,0,0,0,1,6,0,0,115,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90872,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966296',3966296,309.773285,35.843399,593.896301,-0.000527,133,0,0,0,1,6,0,0,115,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90600,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966311',3966311,460.890411,14.134280,275.800812,-0.000719,133,0,0,0,1,6,0,0,115,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90328,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966322',3966322,462.973907,13.992480,272.785492,-0.000815,133,0,0,0,1,6,0,0,115,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90056,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966331',3966331,436.391907,17.167070,328.657104,-0.000815,133,0,0,0,1,6,0,0,115,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89784,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966340',3966340,429.404114,36.819969,132.829697,-0.000911,133,0,0,0,1,6,0,0,115,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89512,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966343',3966343,438.622589,35.297611,196.059998,-0.000815,133,0,0,0,1,6,0,0,115,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89240,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966351',3966351,334.525085,38.941391,327.366913,-0.000240,133,0,0,0,1,6,0,0,115,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88968,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966368',3966368,523.699890,41.479031,549.176697,-0.000240,133,0,0,0,1,6,0,0,115,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88696,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966375',3966375,522.691589,41.801552,546.826721,-0.000240,133,0,0,0,1,6,0,0,115,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88424,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966380',3966380,470.281799,34.323669,551.294006,-0.000240,133,0,0,0,1,6,0,0,115,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88152,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966581',3966581,350.408997,30.882040,725.654419,-0.000432,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87832,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966589',3966589,327.600098,31.811251,702.823730,-0.000432,133,0,0,0,1,6,0,0,115,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87608,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966594',3966594,368.138489,29.659201,745.547729,-0.000432,133,0,0,0,1,6,0,0,115,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87336,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966604',3966604,313.217499,38.596272,433.198486,-0.000432,322,0,0,0,1,6,0,0,1313,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87022,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966613',3966613,414.287506,29.365601,516.322510,-0.000240,322,0,0,0,1,6,0,0,1313,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86750,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966614',3966614,298.856689,37.864361,705.197083,-0.000240,314,0,0,0,1,6,0,0,341,0,0.000000,30,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86472,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966630',3966630,399.514893,36.100700,222.557495,-0.000623,322,0,0,0,1,6,0,0,1313,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86206,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966355',3966355,368.808807,33.632469,253.976501,-0.000432,133,0,0,0,1,6,0,0,115,0,0.000000,31,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85976,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966825',3966825,331.662201,39.448109,166.458801,-0.001103,133,0,0,0,1,6,0,0,115,0,0.000000,34,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85704,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966829',3966829,334.347809,38.871632,163.773193,-0.001103,133,0,0,0,1,6,0,0,115,0,0.000000,34,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85432,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966836',3966836,252.163696,50.856651,559.044678,-0.000048,170,0,0,0,1,6,0,0,351,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85136,1,0,0,0,27,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966837',3966837,231.653397,53.322651,577.867188,-0.000048,170,0,0,0,1,6,0,0,351,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84864,1,0,0,0,27,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966848',3966848,422.451294,35.254921,169.566895,-0.000048,386,0,0,0,1,6,0,0,639,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84622,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966849',3966849,428.958496,37.325779,102.728203,-0.000240,386,0,0,0,1,6,0,0,639,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84350,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966850',3966850,454.571808,12.465490,151.488907,-0.000144,386,0,0,0,1,6,0,0,639,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84078,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966851',3966851,459.783295,12.487550,182.865997,-0.000144,386,0,0,0,1,6,0,0,639,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83806,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966852',3966852,442.573303,36.806381,114.818901,-0.000144,386,0,0,0,1,6,0,0,639,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83534,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966853',3966853,426.489105,37.229988,104.534302,-0.000240,386,0,0,0,1,6,0,0,639,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83262,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966854',3966854,418.872314,35.403931,158.459900,-0.000048,386,0,0,0,1,6,0,0,639,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82990,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966855',3966855,446.885712,37.061001,190.656296,-0.000144,386,0,0,0,1,6,0,0,639,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82718,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966856',3966856,414.331604,34.928871,162.227295,-0.000048,386,0,0,0,1,6,0,0,639,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82446,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966857',3966857,485.124786,44.077980,161.297897,-0.000048,386,0,0,0,1,6,0,0,639,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82174,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966858',3966858,501.047394,49.527180,137.380997,-0.000048,386,0,0,0,1,6,0,0,639,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81902,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966859',3966859,476.396698,32.421059,208.906006,-0.000144,386,0,0,0,1,6,0,0,639,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81630,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966860',3966860,508.647186,50.047180,135.756897,-0.000048,386,0,0,0,1,6,0,0,639,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81358,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966861',3966861,517.712280,31.487631,183.328796,-0.000000,386,0,0,0,1,6,0,0,639,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81086,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85024,'LVD_BNPC_01','s1f3','bnpc3966862',3966862,519.568970,31.405090,185.390900,-0.000000,386,0,0,0,1,6,0,0,639,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80814,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966932',3966932,-107.621902,60.001968,671.706909,-0.000336,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80092,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966938',3966938,-100.602798,64.316727,689.204224,-0.000336,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79820,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966939',3966939,-90.836998,63.675850,681.605225,-0.000432,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79548,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966940',3966940,-166.796707,62.704250,685.247925,-0.000336,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79276,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966941',3966941,-161.909302,60.470612,677.937500,-0.000336,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79004,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966942',3966942,-94.041397,56.778770,634.607422,-0.000432,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78732,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966998',3966998,-196.612503,34.134380,262.104187,-0.000240,26,0,0,0,1,6,0,0,26,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78466,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966999',3966999,-130.632507,34.213940,238.391602,-0.600540,26,0,0,0,1,6,0,0,26,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78194,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967000',3967000,-324.116913,44.541031,362.416992,-0.000527,26,0,0,0,1,6,0,0,26,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77922,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967001',3967001,-119.190002,34.214378,236.487305,1.032510,26,0,0,0,1,6,0,0,26,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77650,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967002',3967002,-60.455029,34.214390,222.702805,-0.978014,26,0,0,0,1,6,0,0,26,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77378,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967003',3967003,-235.382202,34.214390,291.120911,-1.336626,26,0,0,0,1,6,0,0,26,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77106,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967006',3967006,-168.902100,54.611992,635.431396,-0.000240,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76828,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967008',3967008,-220.172501,52.819180,602.254089,-0.000144,320,0,0,0,1,6,0,0,353,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76568,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967012',3967012,-153.429504,54.795101,616.906921,-0.000144,320,0,0,0,1,6,0,0,353,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76296,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967013',3967013,-54.184830,43.686531,393.575897,-0.000432,320,0,0,0,1,6,0,0,353,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76024,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967015',3967015,-4.951565,40.562092,383.766205,-0.000144,320,0,0,0,1,6,0,0,353,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75752,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967016',3967016,-144.853897,44.663109,395.559601,-0.000432,320,0,0,0,1,6,0,0,353,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75480,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967019',3967019,-215.347198,46.906521,443.329498,-0.000432,320,0,0,0,1,6,0,0,353,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75208,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967021',3967021,-195.910599,47.775951,498.802094,-0.000527,320,0,0,0,1,6,0,0,353,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74936,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967023',3967023,-255.848099,45.242950,527.916321,-0.000527,320,0,0,0,1,6,0,0,353,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74664,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967024',3967024,-193.863693,46.459171,567.863098,-0.000623,320,0,0,0,1,6,0,0,353,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74392,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967040',3967040,-227.654999,44.566780,550.036011,-0.000000,321,0,0,0,1,6,0,0,355,0,0.000000,34,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74126,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967048',3967048,-245.306793,50.107510,203.033295,-0.000432,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73836,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967053',3967053,-231.670807,44.156860,229.440903,-0.000432,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73564,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967054',3967054,-239.386597,43.805309,236.070206,-0.000432,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73292,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967056',3967056,-308.054810,53.123970,249.850693,-0.000432,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73020,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967057',3967057,-279.167908,51.349911,221.039795,-0.000432,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72748,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967060',3967060,121.580902,83.791519,-63.093380,-0.000719,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72476,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967063',3967063,136.610001,90.130913,-77.008636,-0.000719,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72204,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967064',3967064,138.671295,88.429123,-72.254028,-0.000719,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71932,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967067',3967067,109.981201,88.091492,-91.405563,-0.000815,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71660,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967069',3967069,117.567299,75.280457,-31.443140,-0.000911,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71388,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967071',3967071,79.369293,74.087349,-7.523047,-0.000911,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71116,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967072',3967072,87.348160,76.560066,-62.532970,-0.000719,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70844,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967079',3967079,119.521301,70.482773,15.235610,-0.000911,2,0,0,0,1,6,0,0,411,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70572,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967232',3967232,-65.956238,40.845070,201.759201,-0.000000,384,0,0,0,1,6,0,0,684,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70324,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967236',3967236,-112.260201,41.370239,200.130005,-0.000000,384,0,0,0,1,6,0,0,684,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70052,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967238',3967238,-113.662697,41.688950,199.025208,-0.000000,384,0,0,0,1,6,0,0,684,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69780,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967239',3967239,-116.857201,40.502911,201.676895,-0.000000,384,0,0,0,1,6,0,0,684,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69508,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967240',3967240,-149.497101,46.658821,173.189301,-0.000000,384,0,0,0,1,6,0,0,684,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69236,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967241',3967241,-154.094101,46.603470,174.736206,-0.000000,384,0,0,0,1,6,0,0,684,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68964,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967242',3967242,-150.899704,46.878399,172.084595,-0.000000,384,0,0,0,1,6,0,0,684,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68692,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967244',3967244,-164.773300,47.053860,187.026794,-0.000000,384,0,0,0,1,6,0,0,684,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68420,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967245',3967245,-132.803101,48.519630,164.560394,-0.000000,384,0,0,0,1,6,0,0,684,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68148,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967246',3967246,-166.175903,47.201370,185.921997,-0.000000,384,0,0,0,1,6,0,0,684,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67876,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967247',3967247,-96.265427,45.412338,178.992096,-0.000000,384,0,0,0,1,6,0,0,684,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67604,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967248',3967248,-94.862892,45.333729,180.096893,-0.000000,384,0,0,0,1,6,0,0,684,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67332,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967250',3967250,-255.398605,55.315521,193.396301,-0.000000,136,0,0,0,1,6,0,0,396,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67066,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967251',3967251,-250.814499,43.443932,254.456497,-0.000000,136,0,0,0,1,6,0,0,396,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66794,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967252',3967252,-0.594336,41.413090,300.056488,-0.000048,136,0,0,0,1,6,0,0,396,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66522,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967253',3967253,-12.474910,40.981110,345.808990,-0.000048,136,0,0,0,1,6,0,0,396,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66250,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967254',3967254,-10.307140,40.161018,348.964508,-0.000048,136,0,0,0,1,6,0,0,396,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65978,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967255',3967255,-118.867302,45.441109,407.337494,-0.000048,136,0,0,0,1,6,0,0,396,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65706,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967256',3967256,-276.173096,44.724140,328.084198,-0.000240,136,0,0,0,1,6,0,0,396,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65434,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967257',3967257,-205.867706,41.135929,381.384705,-0.000432,136,0,0,0,1,6,0,0,396,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65162,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967260',3967260,-206.799393,41.163960,383.136597,-0.000432,136,0,0,0,1,6,0,0,396,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64890,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967261',3967261,-72.173149,34.214340,223.018997,-0.000432,136,0,0,0,1,6,0,0,396,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64618,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967262',3967262,-188.542496,34.213940,259.734406,-0.000432,136,0,0,0,1,6,0,0,396,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64346,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967263',3967263,-141.513000,47.998859,333.870789,-0.000432,136,0,0,0,1,6,0,0,396,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64074,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967264',3967264,-83.307388,49.447201,285.004303,-0.000432,136,0,0,0,1,6,0,0,396,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63802,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967265',3967265,-94.670761,58.438599,656.570923,-0.000623,136,0,0,0,1,6,0,0,396,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63530,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967266',3967266,-155.296707,63.642780,694.602295,-0.000623,136,0,0,0,1,6,0,0,396,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63258,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967267',3967267,-132.048401,53.203049,637.721985,-0.000623,136,0,0,0,1,6,0,0,396,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62986,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967268',3967268,-190.779999,52.425701,609.329773,-0.000623,136,0,0,0,1,6,0,0,396,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62714,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967269',3967269,-193.352798,52.082130,607.753784,-0.000623,136,0,0,0,1,6,0,0,396,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62442,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967270',3967270,-147.991806,50.188049,564.462830,-0.000623,136,0,0,0,1,6,0,0,396,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62170,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967271',3967271,-235.545898,44.762379,563.043518,-0.000623,136,0,0,0,1,6,0,0,396,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61898,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967272',3967272,-240.728607,45.133591,492.780487,-0.000623,136,0,0,0,1,6,0,0,396,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61626,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967275',3967275,-304.364014,44.566818,466.077515,-0.000623,136,0,0,0,1,6,0,0,396,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61354,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967276',3967276,-310.552399,44.566750,465.462799,-0.000623,136,0,0,0,1,6,0,0,396,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61082,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967277',3967277,-80.421982,37.210289,478.231903,-0.000815,136,0,0,0,1,6,0,0,396,0,0.000000,34,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60810,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967278',3967278,-26.911261,50.888149,543.665771,-0.000815,136,0,0,0,1,6,0,0,396,0,0.000000,34,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60538,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967280',3967280,-89.173988,45.007820,563.858215,-0.000815,136,0,0,0,1,6,0,0,396,0,0.000000,34,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60266,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967290',3967290,76.708450,77.890778,-16.653400,-0.000911,136,0,0,0,1,6,0,0,396,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59994,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967292',3967292,140.583405,74.160980,12.732710,-0.000911,136,0,0,0,1,6,0,0,396,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59722,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967294',3967294,140.883408,74.042503,11.184050,-0.000911,136,0,0,0,1,6,0,0,396,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59450,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967295',3967295,116.940697,83.753616,-66.031197,-0.000911,136,0,0,0,1,6,0,0,396,0,0.000000,32,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59178,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966950',3966950,-54.126480,51.789631,583.855896,-0.000144,178,0,0,0,1,6,0,0,366,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58912,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966949',3966949,-46.905361,43.370399,516.468689,-0.000527,178,0,0,0,1,6,0,0,366,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58640,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966947',3966947,-45.667271,51.856998,574.469299,-0.000336,178,0,0,0,1,6,0,0,366,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58368,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966954',3966954,-98.466507,40.512650,504.295288,-0.000048,178,0,0,0,1,6,0,0,366,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58096,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966952',3966952,-103.159698,37.284828,459.933807,-0.000336,178,0,0,0,1,6,0,0,366,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57824,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966951',3966951,-73.928673,43.410858,544.963013,-0.000336,178,0,0,0,1,6,0,0,366,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57552,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966944',3966944,-1.239546,50.637169,509.984985,-0.000527,178,0,0,0,1,6,0,0,366,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57280,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967308',3967308,-40.160881,45.050510,523.243713,-0.000527,178,0,0,0,1,6,0,0,366,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57008,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966982',3966982,-87.449501,62.424610,345.723602,-0.000144,117,0,0,0,1,6,0,0,352,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56742,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966958',3966958,-120.704201,52.333061,327.006989,-0.000144,117,0,0,0,1,6,0,0,352,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56470,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966988',3966988,-144.492203,41.001541,290.455414,-0.000432,117,0,0,0,1,6,0,0,352,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56198,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966993',3966993,-126.139099,49.532829,320.589905,-0.000336,117,0,0,0,1,6,0,0,352,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55926,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966994',3966994,-169.229095,40.705471,319.673706,-0.000240,117,0,0,0,1,6,0,0,352,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55654,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966983',3966983,-186.848404,37.966789,344.289215,-0.000048,117,0,0,0,1,6,0,0,352,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55382,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966984',3966984,-146.753799,46.975368,343.366302,-0.000240,117,0,0,0,1,6,0,0,352,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55110,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3966987',3966987,-97.896507,47.301010,283.912598,-0.000336,117,0,0,0,1,6,0,0,352,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967595',3967595,-210.406693,40.237991,366.170685,-0.000527,320,0,0,0,1,6,0,0,353,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54536,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967644',3967644,-273.564209,43.724400,334.223694,-0.000527,320,0,0,0,1,6,0,0,353,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54264,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85030,'LVD_BNPC_02','s1f3','bnpc3967651',3967651,-139.989197,48.125320,545.608582,-0.000144,320,0,0,0,1,6,0,0,353,0,0.000000,33,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53992,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312742',4312742,183.886398,74.509773,-5.691650,-1.525663,55,0,0,0,1,6,0,0,1821,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53536,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312743',4312743,204.760696,75.181152,-29.739870,-1.525663,61,0,0,0,1,6,0,0,1822,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53270,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312744',4312744,232.166000,75.577881,-4.745544,-1.525663,62,0,0,0,1,6,0,0,1823,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53004,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312745',4312745,206.103500,75.547363,-31.540409,-1.525663,63,0,0,0,1,6,0,0,1824,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52738,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312746',4312746,212.115601,74.235107,-9.903137,-1.525663,64,0,0,0,1,6,0,0,1825,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52472,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312748',4312748,242.298004,74.479248,-23.727840,-1.501695,62,0,0,0,0,6,0,0,1823,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52188,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312759',4312759,335.849396,76.161110,-11.489540,-1.193855,62,0,0,0,0,6,0,0,1823,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51916,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312813',4312813,429.465088,76.157707,-63.431820,-1.103284,62,0,0,0,0,6,0,0,1823,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51644,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312814',4312814,387.136505,76.218750,-61.814331,0.174541,62,0,0,0,0,6,0,0,1823,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51372,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312815',4312815,287.367798,76.123413,-2.225652,-1.525568,55,0,0,0,1,6,0,0,1821,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51088,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312816',4312816,314.246796,76.070213,-34.506378,-1.525568,62,0,0,0,1,6,0,0,1823,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50828,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312817',4312817,300.532501,76.472076,-15.301860,-1.525568,61,0,0,0,1,6,0,0,1822,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50550,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312818',4312818,301.875214,76.471893,-17.102390,-1.525568,63,0,0,0,1,6,0,0,1824,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50290,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312819',4312819,279.745087,76.218422,-22.320280,-1.525663,64,0,0,0,1,6,0,0,1825,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50024,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312874',4312874,444.379700,76.086662,-13.359130,-1.525568,61,0,0,0,1,6,0,0,1822,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49734,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312875',4312875,358.754791,76.249268,-34.500729,-1.525568,64,0,0,0,1,6,0,0,1825,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49480,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312876',4312876,409.780914,76.432373,0.442505,-1.525568,63,0,0,0,1,6,0,0,1824,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49202,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312877',4312877,412.466614,76.066162,-1.327576,-1.525568,62,0,0,0,1,6,0,0,1823,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48924,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312878',4312878,373.531311,76.412163,-19.283190,-1.525568,55,0,0,0,1,6,0,0,1821,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48640,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312880',4312880,481.615387,76.891281,-107.208000,-1.181972,62,0,0,0,0,6,0,0,1823,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48380,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312881',4312881,474.740814,76.178452,-92.284813,-1.525568,64,0,0,0,1,6,0,0,1825,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48120,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312882',4312882,476.438690,76.178452,-61.350609,-1.525568,55,0,0,0,1,6,0,0,1821,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47824,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312883',4312883,433.289612,76.178452,-103.308701,-1.525568,61,0,0,0,1,6,0,0,1822,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47558,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312885',4312885,455.140289,76.178452,-125.088303,-1.525568,63,0,0,0,1,6,0,0,1824,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47298,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312886',4312886,435.969788,76.178452,-103.270302,-1.525568,62,0,0,0,1,6,0,0,1823,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47020,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312887',4312887,389.036896,76.218277,-42.814720,-0.683392,201,0,0,0,1,6,0,0,1826,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46766,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312890',4312890,430.472198,76.127197,-39.200500,-1.164549,201,0,0,0,1,6,0,0,1826,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46494,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312892',4312892,355.095093,76.140678,-93.768280,0.734571,201,0,0,0,0,6,0,0,1826,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46222,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312893',4312893,362.949707,76.156097,-101.645103,0.734571,201,0,0,0,1,6,0,0,1826,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45950,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312895',4312895,376.375610,79.863983,-55.369541,0.752096,64,0,0,0,0,6,0,0,1825,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45672,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312896',4312896,401.510406,79.863983,-80.450699,0.752096,64,0,0,0,0,6,0,0,1825,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45400,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312897',4312897,448.056213,79.863983,-48.739960,-0.810507,64,0,0,0,0,6,0,0,1825,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45128,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312908',4312908,336.851501,79.863983,1.148477,-1.470413,64,0,0,0,0,6,0,0,1825,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44856,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312909',4312909,336.851501,79.863983,-34.551071,-1.470413,64,0,0,0,0,6,0,0,1825,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44584,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312910',4312910,465.150513,76.178452,-77.636757,-1.164549,201,0,0,0,1,6,0,0,1826,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44318,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312911',4312911,456.877289,76.178452,-100.076103,-0.559215,201,0,0,0,1,6,0,0,1826,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312912',4312912,389.015991,76.084824,-102.386803,-1.252111,62,0,0,0,0,6,0,0,1823,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43756,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93594,'LVD_BNPC_03','s1f3','bnpc4312913',4312913,354.466187,76.065430,-67.588791,1.136294,62,0,0,0,0,6,0,0,1823,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43484,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98342,'LVD_easter_2014','s1f3','bnpc4621604',4621604,298.139404,60.044762,414.959106,-1.091726,2772,0,0,0,0,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23804,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85947,'LVD_gurad_01','s1f3','bnpc4057235',4057235,404.560089,20.446920,453.365112,-0.924103,789,0,0,0,0,6,0,0,1274,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23074,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85947,'LVD_gurad_01','s1f3','bnpc4057253',4057253,464.607697,13.736580,386.294098,-1.532550,790,0,0,0,0,6,0,0,1274,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22808,5,0,0,0,0,30053,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85947,'LVD_gurad_01','s1f3','bnpc4057266',4057266,521.743530,9.007294,564.869080,-0.000000,789,0,0,0,0,6,0,0,1274,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22530,5,0,0,0,0,30054,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85947,'LVD_gurad_01','s1f3','bnpc4057293',4057293,8.463147,64.817741,50.653370,0.930461,788,0,0,0,0,6,0,0,1273,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22270,5,0,0,0,0,30053,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93865,'FATE_002','s1f3','bnpc4323551',4323551,28.983850,54.370209,105.870300,-1.174707,1289,0,0,0,0,6,0,0,1720,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,151872,1,0,0,0,0,30210,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93865,'FATE_002','s1f3','bnpc4323552',4323552,23.333250,53.571949,106.354698,-0.649343,2107,0,0,0,3,6,0,0,1721,0,0.000000,27,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,151606,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93865,'FATE_002','s1f3','bnpc4323554',4323554,21.551670,51.794331,121.154800,-0.517916,2107,0,0,0,3,6,0,0,1721,0,0.000000,27,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,151334,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93865,'FATE_002','s1f3','bnpc4323555',4323555,8.377136,49.240841,135.820602,1.043842,2107,0,0,0,3,6,0,0,1721,0,0.000000,27,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,151062,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93865,'FATE_002','s1f3','bnpc4323556',4323556,24.120770,55.250999,94.305794,1.130910,2107,0,0,0,3,6,0,0,1721,0,0.000000,27,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,150790,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93865,'FATE_002','s1f3','bnpc4323559',4323559,13.908250,48.692390,141.292801,1.291134,2107,0,0,0,3,6,0,0,1721,0,0.000000,27,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,150518,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93865,'FATE_002','s1f3','bnpc4323585',4323585,18.218019,63.719170,52.356899,0.974553,1154,0,0,0,1,6,0,0,1332,0,0.000000,27,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,149288,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93865,'FATE_002','s1f3','bnpc4323586',4323586,14.740140,63.591759,54.410999,0.971163,1155,0,0,0,1,6,0,0,1332,0,0.000000,27,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,149022,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93865,'FATE_002','s1f3','bnpc4323587',4323587,18.369671,64.073097,48.943600,0.960104,1155,0,0,0,1,6,0,0,1332,0,0.000000,27,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,148750,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93713,'FATE_006','s1f3','bnpc4317462',4317462,-19.424801,40.054932,263.874115,1.221690,1289,0,0,0,0,12,0,0,1867,0,0.000000,30,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,144688,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93713,'FATE_006','s1f3','bnpc4317473',4317473,-16.674101,40.167660,265.440399,-0.523575,1154,0,0,0,0,6,0,0,1273,0,0.000000,30,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,144428,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93713,'FATE_006','s1f3','bnpc4317480',4317480,-15.931900,40.109699,262.570007,-0.698212,1216,0,0,0,0,6,0,0,1867,0,0.000000,30,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,144168,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93713,'FATE_006','s1f3','bnpc4317642',4317642,-15.987140,40.064980,260.642792,-0.000048,2109,0,0,0,0,6,0,0,1604,0,0.000000,30,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,143902,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93713,'FATE_006','s1f3','bnpc4317643',4317643,-21.875839,39.974411,261.031799,0.897408,2109,0,0,0,0,6,0,0,1604,0,0.000000,30,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,143630,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93611,'FATE_007','s1f3','bnpc4328817',4328817,11.245850,57.114498,526.207275,-0.872656,2235,0,0,0,0,6,0,0,1855,0,0.000000,33,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,134892,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89203,'FATE_013','s1f3','bnpc4168591',4168591,376.095703,36.491741,624.235229,-1.393412,1190,0,0,0,0,6,0,0,981,0,0.000000,30,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,132118,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89584,'FATE_014','s1f3','bnpc4178268',4178268,519.546204,9.414953,152.169006,1.163054,1217,0,0,0,0,6,0,0,1363,0,0.000000,50,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,130788,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89586,'FATE_015','s1f3','bnpc4142079',4142079,213.115097,60.096581,534.871216,0.746415,1231,0,0,0,1,6,0,0,858,0,0.000000,32,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,130366,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89553,'FATE_021','s1f3','bnpc4141973',4141973,450.343414,15.482590,394.369812,0.960351,1216,0,0,0,0,6,0,0,1340,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,126980,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89553,'FATE_021','s1f3','bnpc4141974',4141974,449.579712,15.707650,392.886597,0.960068,1216,0,0,0,0,6,0,0,1339,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,126708,1,0,0,0,0,30183,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89587,'FATE_022','s1f3','bnpc4184517',4184517,296.816315,40.962650,374.313690,0.596675,1408,0,0,0,1,6,0,0,894,0,0.000000,31,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,126308,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89587,'FATE_022','s1f3','bnpc4184518',4184518,305.738586,39.658482,359.903595,-0.555475,1420,0,0,0,1,6,0,0,1608,0,0.000000,31,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,126042,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89588,'FATE_024','s1f3','bnpc4142242',4142242,437.095215,16.223961,389.104797,-0.000000,1082,0,0,0,0,6,0,0,891,0,0.000000,32,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,124628,1,0,0,0,0,30220,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89588,'FATE_024','s1f3','bnpc4167103',4167103,551.064514,15.553440,91.882019,0.460321,1378,0,0,0,0,6,0,0,1326,0,0.000000,50,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121882,6,0,0,0,23,30222,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89588,'FATE_024','s1f3','bnpc4167107',4167107,491.763092,12.524590,242.829102,-1.121928,1379,0,0,0,0,6,0,0,1327,0,0.000000,30,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,121280,1,0,0,0,0,30082,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90664,'FATE_025','s1f3','bnpc4177494',4177494,530.450378,9.000000,694.110229,-1.121263,1371,0,0,0,1,20,0,0,1200,0,0.000000,32,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,120634,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93353,'FATE_026','s1f3','bnpc4306213',4306213,125.539299,69.960602,-10.586170,0.261799,1152,0,0,0,1,6,0,0,981,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,117384,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93371,'FATE_027','s1f3','bnpc4305698',4305698,-164.500900,42.669788,329.889587,-0.000000,2142,0,0,0,1,6,0,0,1515,0,0.000000,34,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,116654,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93807,'FATE_028','s1f3','bnpc4322401',4322401,-263.446594,46.290112,304.243988,-1.486159,1212,0,0,0,0,6,0,0,1659,0,0.000000,35,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,115000,1,0,0,0,0,30066,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93808,'FATE_029','s1f3','bnpc4322451',4322451,-232.151703,44.566849,497.888794,0.776607,2143,0,0,0,1,6,0,0,1516,0,0.000000,33,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,114458,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93809,'FATE_030','s1f3','bnpc4322461',4322461,-136.062698,45.564892,175.782104,-0.191839,2144,0,0,0,1,6,0,0,1517,0,0.000000,32,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,114044,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93811,'FATE_031','s1f3','bnpc4322472',4322472,-168.869400,48.414989,528.163879,-1.281736,1289,0,0,0,0,6,0,0,1660,0,0.000000,37,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,113488,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96988,'FATE_FFXI_01','s1f3','bnpc4516064',4516064,466.959808,10.903720,673.482422,-1.552783,2439,0,0,0,1,6,0,0,2328,0,0.000000,32,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,110374,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96988,'FATE_FFXI_01','s1f3','bnpc4516078',4516078,467.000092,10.908670,674.332214,-0.000000,2291,0,0,0,0,6,0,0,750,0,0.000000,99,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,109484,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96989,'FATE_FFXI_02','s1f3','bnpc4516262',4516262,467.924103,10.856120,674.263977,-1.566596,2308,0,0,0,1,6,0,0,2327,0,0.000000,32,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,108522,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92557,'FATE_Firefall_2013_01','s1f3','bnpc4268383',4268383,519.955811,9.000001,626.453918,-0.000000,2087,0,0,0,0,6,0,0,1641,0,0.000000,32,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,106196,1,0,1,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92557,'FATE_Firefall_2013_01','s1f3','bnpc4268342',4268342,492.754608,9.667803,593.302979,0.407194,2227,0,0,0,0,6,0,0,1807,0,0.000000,32,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,105930,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92557,'FATE_Firefall_2013_01','s1f3','bnpc4268344',4268344,549.906616,9.000001,595.870972,-0.734272,2227,0,0,0,0,6,0,0,1807,0,0.000000,32,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,105658,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92557,'FATE_Firefall_2013_01','s1f3','bnpc4268347',4268347,547.937927,9.000001,653.092224,-1.021132,2227,0,0,0,0,6,0,0,1807,0,0.000000,32,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,105386,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92557,'FATE_Firefall_2013_01','s1f3','bnpc4268358',4268358,485.251099,9.374726,650.353088,0.946860,2227,0,0,0,0,6,0,0,1807,0,0.000000,32,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,105114,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87128,'Grand_Company_Leve','s1f3','bnpc4178198',4178198,303.054108,36.244209,689.737976,-0.000048,1327,0,0,0,1,6,0,0,1225,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,104344,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87128,'Grand_Company_Leve','s1f3','bnpc4185437',4185437,300.361908,36.991539,691.193970,-0.333535,1327,0,0,0,1,6,0,0,1225,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,103700,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87128,'Grand_Company_Leve','s1f3','bnpc4185438',4185438,302.896393,36.887291,695.471924,-0.276936,1327,0,0,0,1,6,0,0,1225,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,103428,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87128,'Grand_Company_Leve','s1f3','bnpc4185439',4185439,299.659088,37.716240,696.260986,0.579045,1327,0,0,0,1,6,0,0,1225,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,103156,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93163,'QB_ClsWar300_001','s1f3','bnpc4299987',4299987,485.346710,11.536260,332.331207,0.497300,1723,0,0,0,8,6,0,0,824,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79314,1,0,0,0,0,0,0,524,201); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93163,'QB_ClsWar300_001','s1f3','bnpc4299990',4299990,518.455688,8.987488,304.790588,-0.911425,1719,0,0,0,1,6,0,0,1936,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79048,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93163,'QB_ClsWar300_001','s1f3','bnpc4299991',4299991,533.311829,9.000001,280.983490,-0.898641,1719,0,0,0,1,6,0,0,1936,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78776,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93163,'QB_ClsWar300_001','s1f3','bnpc4299992',4299992,538.179077,9.000001,316.529907,-1.304609,1719,0,0,0,1,6,0,0,1936,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78504,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93163,'QB_ClsWar300_001','s1f3','bnpc4299995',4299995,540.763611,9.000001,282.620300,-0.892775,1719,0,0,0,1,6,0,0,1936,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78232,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93163,'QB_ClsWar300_001','s1f3','bnpc4299997',4299997,545.952515,8.987488,295.134888,-1.097265,1719,0,0,0,1,6,0,0,1936,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77960,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93163,'QB_ClsWar300_001','s1f3','bnpc4299999',4299999,553.512085,9.000001,315.306213,-0.000000,1721,0,0,0,1,6,0,0,361,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77694,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93163,'QB_ClsWar300_001','s1f3','bnpc4300001',4300001,555.113770,9.000001,320.726807,-0.000000,1721,0,0,0,1,6,0,0,361,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77422,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93163,'QB_ClsWar300_001','s1f3','bnpc4300006',4300006,553.887024,9.000001,326.468811,-0.000000,1721,0,0,0,1,6,0,0,361,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77150,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93163,'QB_ClsWar300_001','s1f3','bnpc4300007',4300007,552.410889,9.000001,309.351410,-0.000000,1721,0,0,0,1,6,0,0,361,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76878,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93164,'QB_ClsWar300_002','s1f3','bnpc4300008',4300008,490.318115,11.581540,315.510712,0.818439,1724,0,0,0,8,6,0,0,1391,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76420,1,0,0,0,0,0,0,673,311); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93164,'QB_ClsWar300_002','s1f3','bnpc4300009',4300009,496.635315,11.215390,320.332611,-0.946241,1720,0,0,0,1,6,0,0,1937,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76154,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93164,'QB_ClsWar300_002','s1f3','bnpc4300010',4300010,515.630981,9.000001,324.764099,-1.465468,1719,0,0,0,1,6,0,0,1936,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75864,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93164,'QB_ClsWar300_002','s1f3','bnpc4300011',4300011,534.404602,9.000001,307.883392,-1.280552,1719,0,0,0,1,6,0,0,1936,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75592,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93164,'QB_ClsWar300_002','s1f3','bnpc4300012',4300012,515.878784,9.000001,298.814697,-1.097514,1719,0,0,0,1,6,0,0,1936,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75320,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93164,'QB_ClsWar300_002','s1f3','bnpc4300013',4300013,530.715271,9.000001,275.171814,-0.985966,1719,0,0,0,1,6,0,0,1936,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75048,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93164,'QB_ClsWar300_002','s1f3','bnpc4300014',4300014,540.603882,9.000001,295.538391,-0.000000,1721,0,0,0,1,6,0,0,361,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74782,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93164,'QB_ClsWar300_002','s1f3','bnpc4300015',4300015,537.245911,9.000001,287.465393,-0.000000,1721,0,0,0,1,6,0,0,361,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74510,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93164,'QB_ClsWar300_002','s1f3','bnpc4300016',4300016,523.407288,9.000001,286.305206,-0.000000,1721,0,0,0,1,6,0,0,361,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74238,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93164,'QB_ClsWar300_002','s1f3','bnpc4300017',4300017,513.669373,9.000001,285.317413,-0.000000,1721,0,0,0,1,6,0,0,361,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73966,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93164,'QB_ClsWar300_002','s1f3','bnpc4300018',4300018,506.313385,9.061502,282.262390,-0.000000,1722,0,0,0,1,6,0,0,1939,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73712,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93164,'QB_ClsWar300_002','s1f3','bnpc4300121',4300121,550.677612,9.000001,254.833298,-0.931520,1719,0,0,0,1,6,0,0,1936,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73416,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93164,'QB_ClsWar300_002','s1f3','bnpc4300122',4300122,547.014221,9.000001,263.300415,-0.931520,1719,0,0,0,1,6,0,0,1936,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73144,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93164,'QB_ClsWar300_002','s1f3','bnpc4300123',4300123,539.525879,9.000001,258.592194,-0.931520,1719,0,0,0,1,6,0,0,1936,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72872,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93164,'QB_ClsWar300_002','s1f3','bnpc4333234',4333234,486.588715,11.661640,324.523895,1.028748,1723,0,0,0,8,6,0,0,824,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72282,1,0,0,0,0,0,0,524,201); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93325,'QB_JobSch300_000','s1f3','bnpc4304120',4304120,-5.983521,40.491341,192.289505,-0.000000,1520,0,0,0,8,6,0,0,1531,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71538,1,0,0,0,0,0,0,675,313); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93325,'QB_JobSch300_000','s1f3','bnpc4304112',4304112,-5.188922,40.005989,224.667404,0.079725,1519,0,0,0,1,6,0,0,1885,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71272,1,0,0,0,0,0,0,238,395); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93325,'QB_JobSch300_000','s1f3','bnpc4304113',4304113,-3.208069,40.005989,224.520798,0.079725,1519,0,0,0,1,6,0,0,1885,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71000,1,0,0,0,0,0,0,238,396); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93325,'QB_JobSch300_000','s1f3','bnpc4304111',4304111,-4.383869,40.005989,226.422897,0.079725,1518,0,0,0,1,6,0,0,1884,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70734,1,0,0,0,0,0,0,239,397); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93325,'QB_JobSch300_000','s1f3','bnpc4304114',4304114,8.270381,39.153931,234.729294,-1.368575,1521,0,0,0,1,6,0,0,1886,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70468,1,0,0,0,0,0,0,236,398); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93325,'QB_JobSch300_000','s1f3','bnpc4304115',4304115,11.183190,39.153931,238.293594,-1.010254,1519,0,0,0,1,6,0,0,1885,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70184,1,0,0,0,0,0,0,238,399); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93325,'QB_JobSch300_000','s1f3','bnpc4304116',4304116,11.020260,39.153931,234.702896,-1.443444,1518,0,0,0,1,6,0,0,1884,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69918,1,0,0,0,0,0,0,239,400); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93325,'QB_JobSch300_000','s1f3','bnpc4304118',4304118,21.642380,34.078869,222.361298,-0.000000,1521,0,0,0,1,6,0,0,1886,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69652,1,0,0,0,0,0,0,236,401); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93325,'QB_JobSch300_000','s1f3','bnpc4304119',4304119,25.535891,34.078861,224.567902,-1.102986,1517,0,0,0,1,6,0,0,1883,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69386,1,0,0,0,0,0,0,235,402); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93325,'QB_JobSch300_000','s1f3','bnpc4304117',4304117,25.790010,34.078850,222.948502,-1.388111,1519,0,0,0,1,6,0,0,1885,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69096,1,0,0,0,0,0,0,238,403); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92648,'QB_JobWar_500_001','s1f3','bnpc4272556',4272556,63.217541,67.412567,28.523550,0.465706,1725,0,0,0,8,6,0,0,1863,0,80.000000,48,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65752,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92648,'QB_JobWar_500_001','s1f3','bnpc4272557',4272557,74.152428,68.357269,18.615820,0.147304,1725,0,0,0,8,6,0,0,1863,0,80.000000,48,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65480,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92648,'QB_JobWar_500_001','s1f3','bnpc4272558',4272558,93.046371,66.322350,18.267910,-0.498732,1725,0,0,0,8,6,0,0,1863,0,80.000000,48,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65208,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92648,'QB_JobWar_500_001','s1f3','bnpc4272559',4272559,96.809372,66.969910,31.782820,-1.059515,1725,0,0,0,8,6,0,0,1863,0,80.000000,48,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64936,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92648,'QB_JobWar_500_001','s1f3','bnpc4272560',4272560,92.753616,64.804550,42.264912,-1.262574,1725,0,0,0,8,6,0,0,1863,0,80.000000,48,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64664,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92648,'QB_JobWar_500_001','s1f3','bnpc4272571',4272571,70.903847,64.399940,34.733372,0.266243,1726,0,0,0,8,6,0,0,2186,0,80.000000,47,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64398,1,0,0,0,0,0,0,691,331); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92648,'QB_JobWar_500_001','s1f3','bnpc4272573',4272573,69.866043,63.209709,43.034100,0.566568,1727,0,0,0,8,6,0,0,2186,0,80.000000,47,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64132,1,0,0,0,0,0,0,691,417); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92648,'QB_JobWar_500_001','s1f3','bnpc4272579',4272579,83.836929,76.936569,-27.449409,-0.000000,1725,0,0,0,8,6,0,0,1863,0,80.000000,48,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63848,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92648,'QB_JobWar_500_001','s1f3','bnpc4272580',4272580,85.042717,76.085640,-27.535500,-0.000048,1725,0,0,0,8,6,0,0,1863,0,80.000000,48,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63576,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92648,'QB_JobWar_500_001','s1f3','bnpc4272581',4272581,83.144318,77.598221,-28.156549,-0.000000,1728,0,0,0,8,6,0,0,1941,0,80.000000,48,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63322,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92648,'QB_JobWar_500_001','s1f3','bnpc4272582',4272582,81.950127,78.236633,-26.979589,-0.000048,1728,0,0,0,8,6,0,0,1941,0,80.000000,48,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63050,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92648,'QB_JobWar_500_001','s1f3','bnpc4272583',4272583,86.512604,75.497307,-29.065470,-0.000000,1728,0,0,0,8,6,0,0,1941,0,80.000000,48,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62778,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92648,'QB_JobWar_500_001','s1f3','bnpc4329195',4329195,67.637543,63.878399,38.678860,0.387624,2247,0,0,0,8,6,0,0,2185,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62316,1,0,0,0,0,0,0,690,330); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92672,'QB_JobWar_500_002','s1f3','bnpc4273307',4273307,-28.578979,70.090187,17.974779,0.383948,1588,0,0,0,8,6,0,0,1391,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61914,1,0,0,0,0,0,0,713,311); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92672,'QB_JobWar_500_002','s1f3','bnpc4273323',4273323,7.282686,66.848602,37.181400,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61336,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92672,'QB_JobWar_500_002','s1f3','bnpc4273324',4273324,-2.330906,68.296440,29.448130,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61064,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92672,'QB_JobWar_500_002','s1f3','bnpc4273327',4273327,-13.123880,68.247818,38.904251,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60792,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92672,'QB_JobWar_500_002','s1f3','bnpc4273328',4273328,-26.712540,69.728073,30.498011,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60520,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92672,'QB_JobWar_500_002','s1f3','bnpc4273331',4273331,-41.075851,70.154160,37.989700,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60248,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92672,'QB_JobWar_500_002','s1f3','bnpc4273332',4273332,-57.769230,70.213631,38.618370,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59976,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92672,'QB_JobWar_500_002','s1f3','bnpc4273334',4273334,-7.116816,70.161461,14.673830,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59704,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92672,'QB_JobWar_500_002','s1f3','bnpc4273335',4273335,-4.596855,70.379883,-1.066132,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59432,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92672,'QB_JobWar_500_002','s1f3','bnpc4273336',4273336,-10.782630,71.609680,-24.562031,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59160,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92672,'QB_JobWar_500_002','s1f3','bnpc4273338',4273338,-36.258190,70.420227,-14.468260,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58888,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92672,'QB_JobWar_500_002','s1f3','bnpc4273341',4273341,-36.661160,70.312576,6.782362,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58616,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92672,'QB_JobWar_500_002','s1f3','bnpc4273343',4273343,-31.652700,70.082603,17.916121,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58344,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92672,'QB_JobWar_500_002','s1f3','bnpc4273344',4273344,-65.192551,70.407219,10.931760,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58072,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273694',4273694,-3.981535,72.464684,-26.965490,-0.000000,1590,0,0,0,8,6,0,0,1393,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57450,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273695',4273695,-11.397110,73.107887,-40.992378,-0.000000,1590,0,0,0,8,6,0,0,1393,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57178,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273696',4273696,-18.941860,70.693169,-22.359421,-0.000000,1590,0,0,0,8,6,0,0,1393,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56906,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273697',4273697,-73.286362,70.567680,-4.318722,-0.000000,1590,0,0,0,8,6,0,0,1393,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56634,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273700',4273700,-45.832581,70.272163,36.615231,-0.000000,1590,0,0,0,8,6,0,0,1393,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56362,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273701',4273701,-80.015831,70.281967,40.274849,-0.000000,1590,0,0,0,8,6,0,0,1393,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56090,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273702',4273702,-91.553482,75.763161,12.121770,-0.000000,1590,0,0,0,8,6,0,0,1393,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55818,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273704',4273704,-85.038513,75.870918,-15.302860,-0.000048,1590,0,0,0,8,6,0,0,1393,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55546,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273705',4273705,-108.960098,80.979607,10.564140,-0.000048,1590,0,0,0,8,6,0,0,1393,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55274,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273706',4273706,-117.948303,81.067879,-49.489689,-0.000048,1590,0,0,0,8,6,0,0,1393,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55002,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273708',4273708,-123.009697,86.146858,-8.871391,-0.000000,1590,0,0,0,8,6,0,0,1393,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54730,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273709',4273709,-8.442074,72.464302,-36.564541,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54452,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273710',4273710,-12.451960,71.331711,-30.682520,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54180,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273713',4273713,-46.658180,70.403526,-16.481279,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273714',4273714,-65.966072,70.404411,-15.064120,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53636,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273715',4273715,-67.768311,70.419403,13.785860,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53364,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273716',4273716,-51.669022,70.400131,11.142990,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53092,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273727',4273727,-67.509369,70.269051,38.139969,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52820,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273729',4273729,-93.591141,70.402817,40.117691,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52548,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273732',4273732,-84.794373,75.663834,-31.243931,-0.000048,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52276,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273733',4273733,-85.246277,75.652763,-40.157391,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52004,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273735',4273735,-101.707703,81.032112,-29.317909,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51732,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273738',4273738,-130.785904,86.251633,-5.787411,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51460,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4273740',4273740,-123.164497,85.999321,16.583879,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51188,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4302586',4302586,-83.134666,75.578537,-52.523029,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50916,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4302587',4302587,-67.117912,75.513107,-53.722660,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50644,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4302589',4302589,-53.887791,75.561943,-53.639080,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50372,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92678,'QB_JobWar_500_003','s1f3','bnpc4302590',4302590,-36.785259,75.586182,-56.404968,-0.000000,1589,0,0,0,8,6,0,0,1392,0,5.000000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50100,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92906,'QST_GaiUsb005','s1f3','bnpc4292674',4292674,674.254211,9.000001,511.066498,-1.447455,1887,0,0,0,1,6,0,0,1976,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28220,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92963,'QST_GaiUsb202','s1f3','bnpc4293253',4293253,576.975830,17.732130,423.541901,0.715292,328,0,0,0,1,6,0,0,379,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26910,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92963,'QST_GaiUsb202','s1f3','bnpc4293254',4293254,575.120117,17.732130,422.478302,1.520393,329,0,0,0,1,6,0,0,369,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26644,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92963,'QST_GaiUsb202','s1f3','bnpc4293255',4293255,576.894775,17.732130,420.514099,0.640878,331,0,0,0,1,6,0,0,373,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26378,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92964,'QST_GaiUsb203','s1f3','bnpc4293258',4293258,487.600891,9.008230,743.442078,-1.551119,2189,0,0,0,1,6,0,0,1995,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25904,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92965,'QST_GaiUsb204','s1f3','bnpc4293262',4293262,382.095490,27.569651,376.858704,-0.708758,17,0,0,0,1,6,0,0,270,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25318,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92965,'QST_GaiUsb204','s1f3','bnpc4293263',4293263,380.478210,27.577881,374.722412,-0.000048,17,0,0,0,1,6,0,0,270,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92965,'QST_GaiUsb204','s1f3','bnpc4293264',4293264,367.534210,29.343571,352.876190,-0.420078,17,0,0,0,1,6,0,0,270,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24774,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92965,'QST_GaiUsb204','s1f3','bnpc4293265',4293265,365.367493,29.976339,351.991211,0.163036,17,0,0,0,1,6,0,0,270,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24502,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92965,'QST_GaiUsb204','s1f3','bnpc4293266',4293266,380.520386,30.433010,314.437012,0.240647,17,0,0,0,1,6,0,0,270,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92965,'QST_GaiUsb204','s1f3','bnpc4293267',4293267,378.780914,30.544880,312.911011,0.952904,17,0,0,0,1,6,0,0,270,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92967,'QST_GaiUsb206','s1f3','bnpc4293271',4293271,562.880676,8.987488,448.648499,-1.372782,389,0,0,0,1,6,0,0,643,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23196,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92967,'QST_GaiUsb206','s1f3','bnpc4293272',4293272,563.221924,8.987480,463.102203,-1.143832,389,0,0,0,1,6,0,0,643,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22924,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92967,'QST_GaiUsb206','s1f3','bnpc4293273',4293273,526.733215,9.109551,450.568787,0.934972,389,0,0,0,1,6,0,0,643,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22652,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92967,'QST_GaiUsb206','s1f3','bnpc4293274',4293274,533.286316,8.753516,457.959595,0.520668,389,0,0,0,1,6,0,0,643,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22380,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92967,'QST_GaiUsb206','s1f3','bnpc4293275',4293275,567.616272,8.987490,516.132080,-0.907051,389,0,0,0,1,6,0,0,643,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22108,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92975,'QST_GaiUsb309','s1f3','bnpc4293297',4293297,-238.460602,44.566849,518.427917,-0.294304,1910,0,0,0,1,6,0,0,2002,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19266,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92976,'QST_GaiUsb310','s1f3','bnpc4293303',4293303,559.313110,43.513020,553.850281,-0.000000,1891,0,0,0,1,6,0,0,1979,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18732,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92981,'QST_GaiUsb312','s1f3','bnpc4293341',4293341,668.431030,9.000001,488.698792,-0.385565,383,0,0,0,1,6,0,0,642,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16894,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92981,'QST_GaiUsb312','s1f3','bnpc4293342',4293342,663.977905,9.000001,489.542389,0.201841,383,0,0,0,1,6,0,0,642,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16622,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92981,'QST_GaiUsb312','s1f3','bnpc4293343',4293343,672.037720,9.000001,492.441498,-1.257683,383,0,0,0,1,6,0,0,642,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16350,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96755,'QST_GaiUse103','s1f3','bnpc4500980',4500980,24.233919,53.234520,487.526306,1.118339,320,0,0,0,1,6,0,0,687,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13896,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93363,'QST_JobBrd400','s1f3','bnpc4305637',4305637,-141.849106,63.076099,595.884827,-0.080680,1943,0,0,0,1,6,0,0,2051,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13354,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93363,'QST_JobBrd400','s1f3','bnpc4305638',4305638,-148.073502,65.476143,591.951782,0.545630,1944,0,0,0,1,6,0,0,2051,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13088,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93363,'QST_JobBrd400','s1f3','bnpc4305639',4305639,-150.745895,62.714691,596.985229,0.049991,1945,0,0,0,1,6,0,0,2051,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12822,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93479,'QST_JobMnk_350_001','s1f3','bnpc4308179',4308179,683.191895,9.127922,475.798187,0.477413,1925,0,0,0,1,6,0,0,2024,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12204,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93479,'QST_JobMnk_350_001','s1f3','bnpc4308190',4308190,695.822327,8.983506,477.086487,-0.802386,1925,0,0,0,1,6,0,0,2024,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11932,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93479,'QST_JobMnk_350_001','s1f3','bnpc4308191',4308191,696.119690,8.995856,489.690308,-0.867479,1925,0,0,0,1,6,0,0,2024,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11660,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93479,'QST_JobMnk_350_001','s1f3','bnpc4308192',4308192,682.601990,8.995441,490.566315,0.552705,1925,0,0,0,1,6,0,0,2024,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11388,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93062,'QST_JobWar_400_001','s1f3','bnpc4295558',4295558,89.235489,75.986351,-59.538441,-0.000000,2,0,0,0,1,6,0,0,2012,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8714,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93062,'QST_JobWar_400_001','s1f3','bnpc4295561',4295561,94.667717,75.943687,-60.369801,-0.106732,2,0,0,0,1,6,0,0,2012,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8442,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93062,'QST_JobWar_400_001','s1f3','bnpc4295563',4295563,91.580338,76.368042,-65.328796,0.137534,2,0,0,0,1,6,0,0,2012,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8170,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93062,'QST_JobWar_400_001','s1f3','bnpc4295564',4295564,88.489052,76.582428,-65.594147,0.081205,2,0,0,0,1,6,0,0,2012,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7898,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93062,'QST_JobWar_400_001','s1f3','bnpc4295565',4295565,94.511574,76.609711,-65.870720,-0.118729,2,0,0,0,1,6,0,0,2012,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7626,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93062,'QST_JobWar_400_001','s1f3','bnpc4295566',4295566,91.629784,76.509933,-66.565109,0.326540,12,0,0,0,1,6,0,0,2011,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7360,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93062,'QST_JobWar_400_001','s1f3','bnpc4295568',4295568,83.242012,77.929527,-61.375919,1.026597,12,0,0,0,1,6,0,0,2011,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7088,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93062,'QST_JobWar_400_001','s1f3','bnpc4295569',4295569,100.264801,77.250473,-63.985580,-0.404812,12,0,0,0,1,6,0,0,2011,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6816,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93064,'QST_JobWar_450_004','s1f3','bnpc4295706',4295706,-266.169189,34.162430,298.355103,-1.445153,1921,0,0,0,1,6,0,0,2016,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5942,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969486',3969486,557.060974,28.946320,333.730011,-0.000623,340,0,0,0,1,6,0,0,394,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135904,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969499',3969499,706.892212,28.174080,410.894989,-0.000336,138,0,0,0,1,6,0,0,399,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135638,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969501',3969501,698.946899,27.231220,412.552002,-0.000336,138,0,0,0,1,6,0,0,399,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135366,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969502',3969502,658.104797,40.675949,339.546509,-0.000623,138,0,0,0,1,6,0,0,399,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135094,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969504',3969504,688.856689,42.308319,338.199005,-0.000336,138,0,0,0,1,6,0,0,399,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134822,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969505',3969505,695.458374,32.764568,395.995209,-0.000527,138,0,0,0,1,6,0,0,399,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134550,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969506',3969506,714.097778,41.205120,366.676910,-0.000527,138,0,0,0,1,6,0,0,399,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134278,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969507',3969507,672.780518,40.217781,354.945709,-0.000336,138,0,0,0,1,6,0,0,399,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134006,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969508',3969508,719.824585,40.851952,370.876312,-0.000719,138,0,0,0,1,6,0,0,399,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133734,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969542',3969542,560.540100,24.185499,348.622803,-0.231491,340,0,0,0,0,6,0,0,394,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133456,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969548',3969548,522.148376,23.025820,338.460297,1.163590,340,0,0,0,0,6,0,0,394,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133184,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969554',3969554,549.980774,37.888100,297.108398,-0.842792,340,0,0,0,0,6,0,0,394,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132912,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969559',3969559,529.777893,26.199690,320.881897,-0.192134,340,0,0,0,0,6,0,0,394,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132640,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969858',3969858,676.691772,12.588650,446.555206,-0.000048,22,0,0,0,1,6,0,0,400,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132380,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969860',3969860,668.372314,21.641729,428.498291,-0.000048,22,0,0,0,1,6,0,0,400,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132108,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969864',3969864,682.858887,19.865379,433.932312,-0.000048,22,0,0,0,1,6,0,0,400,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131836,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969865',3969865,734.760376,26.661579,441.483093,-0.000144,22,0,0,0,1,6,0,0,400,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131564,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969866',3969866,738.361572,27.470659,441.561615,-0.000144,22,0,0,0,1,6,0,0,400,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131292,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969867',3969867,743.555115,43.828701,397.126801,-0.000144,22,0,0,0,1,6,0,0,400,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131020,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969868',3969868,749.288208,49.819462,361.199493,-0.000048,22,0,0,0,1,6,0,0,400,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130748,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969869',3969869,745.879089,49.587929,364.109314,-0.000048,22,0,0,0,1,6,0,0,400,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130476,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969870',3969870,554.436523,29.648230,329.762695,-0.000623,340,0,0,0,1,6,0,0,394,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130192,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969874',3969874,501.999603,16.372259,323.036591,-0.000623,340,0,0,0,1,6,0,0,394,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129920,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969875',3969875,516.929810,22.049240,301.594513,-0.000527,340,0,0,0,1,6,0,0,394,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129648,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969876',3969876,565.178772,35.629768,313.008209,-0.000527,340,0,0,0,1,6,0,0,394,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129376,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969877',3969877,634.964478,23.582150,394.616089,-0.000623,340,0,0,0,1,6,0,0,394,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129104,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969913',3969913,617.781311,28.683889,370.071503,-0.000527,205,0,0,0,1,6,0,0,410,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128850,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969920',3969920,611.048096,35.477501,345.262604,-0.000432,205,0,0,0,1,6,0,0,410,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128578,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969921',3969921,586.014709,27.906170,353.311188,-0.000527,205,0,0,0,1,6,0,0,410,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128306,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969922',3969922,619.215576,29.112610,369.491608,-0.000719,205,0,0,0,1,6,0,0,410,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128034,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969923',3969923,588.120422,28.606050,352.456696,-0.000527,205,0,0,0,1,6,0,0,410,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127762,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969924',3969924,613.825195,35.926769,345.689789,-0.000432,205,0,0,0,1,6,0,0,410,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127490,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969925',3969925,619.487122,27.800541,373.672699,-0.000432,205,0,0,0,1,6,0,0,410,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127218,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969928',3969928,586.106323,30.585791,346.139404,-0.000527,205,0,0,0,1,6,0,0,410,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126946,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969938',3969938,607.670898,42.955601,306.352112,-0.000048,348,0,0,0,0,6,0,0,420,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126680,1,0,0,0,0,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969940',3969940,601.888184,42.074169,311.211304,-0.000048,349,0,0,0,1,6,0,0,420,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126414,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969942',3969942,586.741699,40.893959,312.224213,-0.000048,349,0,0,0,1,6,0,0,420,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126142,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969943',3969943,615.350525,43.930660,306.935211,-0.000048,348,0,0,0,1,6,0,0,420,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125864,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969944',3969944,582.392395,43.245682,301.571014,-0.000000,349,0,0,0,1,6,0,0,420,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125598,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969945',3969945,593.642029,43.886150,301.072693,-0.000048,348,0,0,0,1,6,0,0,420,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125320,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969946',3969946,601.489197,43.885170,302.896698,-0.377763,348,0,0,0,0,6,0,0,420,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125048,1,0,0,0,0,30065,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969947',3969947,600.182373,43.875881,302.854614,1.184339,349,0,0,0,0,6,0,0,420,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124782,1,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969953',3969953,466.849701,12.710720,359.487213,-0.000048,12,0,0,0,1,6,0,0,13,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124516,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969954',3969954,457.877411,9.353733,383.566010,-0.000048,12,0,0,0,1,6,0,0,13,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124244,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969977',3969977,450.522614,9.018035,388.296295,-0.000048,12,0,0,0,1,6,0,0,13,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123972,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969978',3969978,489.053406,7.208063,402.681610,-0.000240,12,0,0,0,1,6,0,0,13,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123700,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969979',3969979,510.520996,1.643817,421.411987,-0.000336,12,0,0,0,1,6,0,0,13,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123428,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969980',3969980,516.838318,2.083105,418.970612,-0.000336,12,0,0,0,1,6,0,0,13,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123156,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969981',3969981,454.281586,8.893167,420.949799,-0.000240,12,0,0,0,1,6,0,0,13,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122884,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3969983',3969983,510.302307,3.759752,406.295197,-0.000144,12,0,0,0,1,6,0,0,13,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122612,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3970016',3970016,598.226685,25.550039,368.222595,-0.921915,340,0,0,0,0,6,0,0,394,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122304,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3970018',3970018,617.181580,32.516930,357.289886,0.223821,340,0,0,0,0,6,0,0,394,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122032,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3970021',3970021,643.447693,23.634590,398.243011,-0.230767,340,0,0,0,0,6,0,0,394,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121760,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3970023',3970023,635.004395,20.669270,404.579987,-0.567435,340,0,0,0,0,6,0,0,394,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121488,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3970025',3970025,599.237000,30.746880,353.353088,-0.000623,340,0,0,0,1,6,0,0,394,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121216,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3970032',3970032,622.963623,41.739059,320.949005,0.223821,340,0,0,0,0,6,0,0,394,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120944,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3970034',3970034,634.595825,42.144840,321.818115,-0.801075,340,0,0,0,0,6,0,0,394,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120672,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3970036',3970036,626.665527,41.288631,324.601715,-0.000623,340,0,0,0,1,6,0,0,394,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120400,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3970043',3970043,657.099609,17.239750,446.592987,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120170,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3970044',3970044,603.288696,6.133514,483.976501,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119898,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3970045',3970045,601.175476,6.050048,482.055298,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119626,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3970058',3970058,513.097290,16.847160,355.958801,-0.000336,135,0,0,0,1,6,0,0,117,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119354,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85055,'LVD_BNPC_01','s1f4','bnpc3970061',3970061,447.827789,5.457586,281.886292,-0.000336,135,0,0,0,1,6,0,0,117,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119082,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970133',3970133,416.984497,-8.646816,202.035202,-0.000000,341,0,0,0,1,6,0,0,402,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118468,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970135',3970135,412.728088,-9.469052,205.053802,-0.000000,341,0,0,0,1,6,0,0,402,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118196,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970136',3970136,346.358093,-20.858730,218.121307,-0.000000,341,0,0,0,1,6,0,0,402,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117924,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970139',3970139,349.959106,-18.572670,169.900894,-0.000048,341,0,0,0,1,6,0,0,402,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117652,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970140',3970140,354.643799,-18.085939,171.731094,-0.000048,341,0,0,0,1,6,0,0,402,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117380,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970155',3970155,335.827911,-17.950689,158.445908,-0.000000,341,0,0,0,1,6,0,0,402,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117108,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970159',3970159,307.105988,-20.876850,162.587708,-0.000048,341,0,0,0,1,6,0,0,402,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116836,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970161',3970161,298.054413,-13.534800,141.344299,-0.000048,341,0,0,0,1,6,0,0,402,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116564,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970162',3970162,293.618408,-13.544960,146.169205,-0.000000,341,0,0,0,1,6,0,0,402,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116292,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970177',3970177,7.003844,-24.124559,109.025703,-0.000240,397,0,0,0,1,6,0,0,644,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116026,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970184',3970184,24.765341,-23.209021,107.560799,-0.000240,397,0,0,0,1,6,0,0,644,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115754,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970186',3970186,-19.180639,-22.568140,51.071899,-0.000048,397,0,0,0,1,6,0,0,644,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115482,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970187',3970187,-12.954960,-22.781759,46.860409,-0.000048,397,0,0,0,1,6,0,0,644,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115210,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970190',3970190,7.797313,-22.598660,68.039932,-0.000048,397,0,0,0,1,6,0,0,644,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114938,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970193',3970193,104.600502,-10.910250,5.996748,-0.000144,397,0,0,0,1,6,0,0,644,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114666,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970194',3970194,55.405460,-5.264410,-30.655420,-0.000048,397,0,0,0,1,6,0,0,644,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114394,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970196',3970196,38.071209,-5.203373,-34.836391,-0.000048,397,0,0,0,1,6,0,0,644,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114122,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970199',3970199,64.013428,-4.214352,-64.780800,-0.000000,397,0,0,0,1,6,0,0,644,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113850,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970222',3970222,89.666710,-1.146154,-60.931259,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113584,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970231',3970231,82.380707,-1.466871,-63.000511,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113312,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970232',3970232,87.757019,-2.006091,-55.761841,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113040,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970236',3970236,82.076691,-1.472959,-64.535721,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112768,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970238',3970238,81.548286,-2.522091,-54.485199,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112496,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970241',3970241,76.980713,-2.383074,-61.994930,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112224,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970308',3970308,344.824890,-17.982759,163.365295,-0.000000,38,0,0,0,1,6,0,0,363,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111958,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970320',3970320,261.840088,-17.578510,163.665298,-0.000000,38,0,0,0,1,6,0,0,363,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111686,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970328',3970328,262.914001,-17.209499,160.012894,-0.000000,38,0,0,0,1,6,0,0,363,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111414,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970331',3970331,324.945801,-5.662250,104.268402,-0.000000,38,0,0,0,1,6,0,0,363,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111142,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970344',3970344,367.757294,4.986305,78.445778,-0.000000,38,0,0,0,1,6,0,0,363,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110870,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970353',3970353,366.964111,4.318256,81.956146,-0.000048,38,0,0,0,1,6,0,0,363,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110598,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970357',3970357,383.822998,15.624690,27.171089,-0.000000,38,0,0,0,1,6,0,0,363,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110326,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970378',3970378,170.397400,-15.426920,64.652428,-0.000527,38,0,0,0,1,6,0,0,363,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110054,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970381',3970381,148.926498,-12.439410,99.620064,-0.000623,38,0,0,0,1,6,0,0,363,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109782,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970382',3970382,150.743805,-12.130980,102.494904,-0.000623,38,0,0,0,1,6,0,0,363,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109510,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970389',3970389,5.355869,-23.270050,51.895889,-0.000432,38,0,0,0,1,6,0,0,363,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109238,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970391',3970391,79.423157,-4.654048,-18.814421,-0.000527,38,0,0,0,1,6,0,0,363,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108966,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970394',3970394,50.156361,-2.487267,-15.762620,-0.000432,38,0,0,0,1,6,0,0,363,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108694,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970399',3970399,48.172680,-2.487267,-15.457440,-0.000432,38,0,0,0,1,6,0,0,363,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108422,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970406',3970406,269.703186,-9.597971,96.116524,-0.000144,206,0,0,0,1,6,0,0,403,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108156,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970411',3970411,267.261688,-10.238850,98.008636,-0.000144,206,0,0,0,1,6,0,0,403,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107884,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970412',3970412,263.263885,-10.391440,90.897942,-0.000144,206,0,0,0,1,6,0,0,403,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107612,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970414',3970414,241.901199,-11.703720,95.231506,-0.000240,206,0,0,0,1,6,0,0,403,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107340,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970415',3970415,239.032501,-11.642680,94.010780,-0.000144,206,0,0,0,1,6,0,0,403,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107068,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970416',3970416,246.860504,-13.252180,112.323097,-0.000240,206,0,0,0,1,6,0,0,403,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106796,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970419',3970419,249.271500,-13.493160,115.100197,-0.000240,206,0,0,0,1,6,0,0,403,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106524,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970420',3970420,243.442505,-14.033920,117.877403,-0.000240,206,0,0,0,1,6,0,0,403,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106252,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970433',3970433,222.674896,-14.938630,104.905701,-0.000240,206,0,0,0,1,6,0,0,403,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105980,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970434',3970434,219.775604,-15.091220,103.654503,-0.000240,206,0,0,0,1,6,0,0,403,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105708,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970437',3970437,293.079987,-11.703720,132.432999,-0.000144,341,0,0,0,1,6,0,0,402,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105412,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970680',3970680,216.784897,-14.389340,95.933472,-0.000527,38,0,0,0,1,6,0,0,363,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105158,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970681',3970681,272.755005,-9.750549,103.227303,-0.000527,38,0,0,0,1,6,0,0,363,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104886,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3972576',3972576,303.465607,3.314056,68.397324,-0.000144,341,0,0,0,1,6,0,0,402,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104596,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3972577',3972577,306.798889,3.292596,65.152077,-0.000144,341,0,0,0,1,6,0,0,402,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104324,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3972584',3972584,338.778503,-21.646130,187.870697,-0.000048,341,0,0,0,1,6,0,0,402,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104052,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970214',3970214,176.327301,-12.764270,112.090401,-0.000815,181,0,0,0,1,6,0,0,1181,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103810,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970170',3970170,165.697601,-14.725040,79.575813,-0.000719,181,0,0,0,1,6,0,0,1181,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103538,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970168',3970168,126.745399,-15.229580,95.719521,-0.000527,181,0,0,0,1,6,0,0,1181,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103266,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970166',3970166,194.223495,-9.052984,64.264412,-0.000336,181,0,0,0,1,6,0,0,1181,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102994,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970174',3970174,97.569847,-16.128820,166.516693,-0.000527,181,0,0,0,1,6,0,0,1181,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102722,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970171',3970171,84.276093,-14.942520,126.744102,-0.000719,181,0,0,0,1,6,0,0,1181,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102450,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc4108563',4108563,134.623199,-16.564131,55.533340,-0.000527,181,0,0,0,1,6,0,0,1181,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102178,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc4108567',4108567,124.950996,-18.103809,158.397507,-0.000719,181,0,0,0,1,6,0,0,1181,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101906,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970373',3970373,264.349487,2.966964,67.594612,-0.000144,769,0,0,0,1,6,0,0,225,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101640,5,0,0,0,28,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970372',3970372,243.379196,1.981285,58.301060,-0.969122,769,0,0,0,1,6,0,0,225,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101368,5,0,0,0,28,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970375',3970375,272.358307,5.020142,58.945560,-0.000144,769,0,0,0,1,6,0,0,225,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101096,5,0,0,0,28,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970374',3970374,258.144806,5.613231,48.790150,-0.000144,769,0,0,0,1,6,0,0,225,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100824,5,0,0,0,28,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970369',3970369,250.293701,2.426147,62.638309,0.220465,769,0,0,0,0,6,0,0,225,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100552,5,0,0,0,28,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970366',3970366,253.742203,2.639771,62.302608,-0.814412,769,0,0,0,0,6,0,0,225,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100280,5,0,0,0,28,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970371',3970371,242.913300,1.349542,71.061279,-0.000144,769,0,0,0,1,6,0,0,225,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100008,5,0,0,0,28,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85060,'LVD_BNPC_02','s1f4','bnpc3970370',3970370,253.833694,2.365112,64.438843,-0.911294,769,0,0,0,0,6,0,0,225,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99736,5,0,0,0,28,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4116531',4116531,-146.562897,-27.573059,20.462339,-0.000048,765,0,0,0,1,6,0,0,386,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99154,2,0,0,0,0,30062,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4116538',4116538,-155.565796,-38.010250,-31.357361,-1.024859,765,0,0,0,0,6,0,0,386,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98882,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4114593',4114593,-75.913696,-28.427610,-146.562897,0.242708,765,0,0,0,0,6,0,0,386,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98610,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4116540',4116540,-134.447296,-30.472290,-5.020264,-0.000048,766,0,0,0,1,6,0,0,384,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98344,2,0,0,0,0,30062,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4116530',4116530,-157.610504,-38.071289,-31.235229,1.018243,766,0,0,0,0,6,0,0,384,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98072,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4114594',4114594,-97.522850,-30.215300,-148.102402,-0.000048,766,0,0,0,1,6,0,0,384,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97800,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4114591',4114591,-75.944153,-28.244450,-144.487701,0.763742,766,0,0,0,0,6,0,0,384,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97528,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4114595',4114595,-106.523300,-31.509951,-130.479904,-0.012464,767,0,0,0,0,6,0,0,389,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97262,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4114578',4114578,-48.966251,-22.781740,-124.681503,1.087082,767,0,0,0,0,6,0,0,389,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96990,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4116539',4116539,-166.765900,-32.578060,5.874695,-0.000048,767,0,0,0,0,6,0,0,389,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96718,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4116532',4116532,-119.035599,-27.328920,23.208981,-0.000048,767,0,0,0,1,6,0,0,389,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96446,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125231',4125231,-370.973785,-40.882549,-198.661697,-0.000048,312,0,0,0,1,6,0,0,360,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96180,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125233',4125233,-63.096130,-25.253719,-114.000198,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95914,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125234',4125234,-50.309021,-23.849850,-91.264221,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95642,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125235',4125235,-90.898071,-29.831421,-137.163406,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95370,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125236',4125236,-129.961105,-32.852779,-108.934097,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95098,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125238',4125238,-158.037796,-34.042912,-99.229492,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94826,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125239',4125239,-185.717606,-39.169922,-80.796570,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94554,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125240',4125240,-190.905594,-41.001041,-49.210388,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94282,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125241',4125241,-202.166794,-40.024479,-90.806519,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94010,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125242',4125242,-140.642502,-30.411249,1.815735,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93738,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125243',4125243,-166.796402,-36.392818,-12.100400,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93466,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125244',4125244,-222.583405,-40.634769,-87.815727,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,44,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93194,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125247',4125247,-423.331085,-40.756901,-220.508102,-0.000048,773,0,0,0,1,6,0,0,347,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92928,1,0,0,0,36,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125248',4125248,-412.832886,-41.458801,-213.153305,1.491148,776,0,0,0,0,6,0,0,559,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92662,1,0,0,0,36,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125250',4125250,-411.978394,-41.641911,-212.024200,0.329428,774,0,0,0,0,6,0,0,345,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92396,1,0,0,0,36,30065,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125261',4125261,-441.245209,-39.475101,-220.111496,0.878841,774,0,0,0,0,6,0,0,345,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92124,1,0,0,0,0,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125262',4125262,-440.054993,-39.475101,-218.646606,-0.000048,776,0,0,0,1,6,0,0,559,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91846,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125263',4125263,-435.568787,-41.001041,-232.898407,-0.000048,773,0,0,0,1,6,0,0,347,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91568,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125282',4125282,-406.515594,-28.397030,-253.040405,-1.329071,774,0,0,0,0,6,0,0,345,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91308,1,0,0,0,36,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125283',4125283,-407.217499,-28.397030,-253.528702,1.188614,776,0,0,0,0,6,0,0,559,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91030,1,0,0,0,36,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125285',4125285,-412.985413,-28.397030,-250.843094,-0.000048,773,0,0,0,1,6,0,0,347,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90752,1,0,0,0,36,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125286',4125286,-405.966309,-37.644100,-243.823898,1.257932,773,0,0,0,1,6,0,0,347,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90480,1,0,0,0,36,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125289',4125289,-398.519897,-40.817928,-218.188797,-0.000048,774,0,0,0,1,6,0,0,345,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90220,1,0,0,0,36,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4125290',4125290,-391.042999,-38.651119,-244.220703,-0.000048,776,0,0,0,1,6,0,0,559,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89942,1,0,0,0,36,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4321528',4321528,-39.536190,-22.232420,-158.983795,-0.000048,765,0,0,0,1,6,0,0,386,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89634,2,0,0,0,0,30062,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4321527',4321527,-78.263550,-26.108219,-70.908691,0.623572,768,0,0,0,0,6,0,0,565,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89410,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4114576',4114576,-69.169189,-25.864071,-73.624763,-0.000048,768,0,0,0,1,6,0,0,565,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89138,2,0,0,0,0,30062,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4321526',4321526,-71.423027,-25.768869,-86.368896,-0.000048,768,0,0,0,1,6,0,0,565,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88866,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633063',4633063,-390.393707,-41.813049,-203.727905,-0.000048,312,0,0,0,1,6,0,0,360,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88564,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633067',4633067,-360.463898,-39.780331,-216.723907,-0.000048,312,0,0,0,1,6,0,0,360,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88292,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633068',4633068,-355.794708,-40.390629,-201.770096,-0.000048,312,0,0,0,1,6,0,0,360,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88020,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633073',4633073,-373.761292,-40.459530,-206.054901,-0.000048,312,0,0,0,1,6,0,0,360,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87748,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633074',4633074,-349.660492,-38.529110,-232.227097,-0.000048,312,0,0,0,1,6,0,0,360,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87476,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633076',4633076,-357.646790,-38.274658,-239.828094,-0.000048,312,0,0,0,1,6,0,0,360,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87204,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633118',4633118,-155.500198,-34.403210,-88.681213,-0.000048,765,0,0,0,1,6,0,0,386,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86914,2,0,0,0,0,30062,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633119',4633119,-216.104294,-40.840759,-85.531441,-0.000048,765,0,0,0,1,6,0,0,386,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86642,2,0,0,0,0,30062,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633122',4633122,-180.251999,-39.087090,-75.459579,-0.000048,766,0,0,0,1,6,0,0,384,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86376,2,0,0,0,0,30062,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633123',4633123,-193.427002,-38.091850,-114.042099,-0.000048,766,0,0,0,1,6,0,0,384,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86104,2,0,0,0,0,30062,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633124',4633124,-121.586899,-32.542980,-106.177200,-0.000048,766,0,0,0,1,6,0,0,384,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85832,2,0,0,0,0,30062,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633125',4633125,-145.063293,-32.872959,-115.359398,-0.000048,767,0,0,0,1,6,0,0,389,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85566,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633126',4633126,-216.646500,-41.021160,-66.576988,-0.000048,767,0,0,0,1,6,0,0,389,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85294,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633157',4633157,-96.910004,-30.450001,-92.839996,1.365319,2835,0,0,0,0,6,0,0,2530,0,0.000000,44,1,120,1,0,12,0,16,2,0,0,0,1,0,0.000000,1.000000,85064,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633224',4633224,-103.441002,-31.479370,-116.075401,1.308745,2835,0,0,0,0,6,0,0,2530,0,0.000000,44,1,120,1,0,14,0,16,2,0,0,0,1,0,0.000000,1.000000,84792,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633232',4633232,-118.730499,-32.303410,-133.012894,1.251795,2835,0,0,0,0,6,0,0,2530,0,0.000000,44,1,120,1,0,15,0,16,2,0,0,0,1,0,0.000000,1.000000,84520,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633236',4633236,-91.264221,-30.197689,-128.465698,1.339904,2835,0,0,0,0,6,0,0,2530,0,0.000000,44,1,120,1,0,13,0,16,2,0,0,0,1,0,0.000000,1.000000,84248,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4633233',4633233,-84.733398,-29.587280,-110.399101,1.382090,2835,0,0,0,0,6,0,0,2530,0,0.000000,44,1,120,1,0,11,0,16,22,0,0,0,1,0,0.000000,1.000000,83976,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4666734',4666734,-89.256203,-30.084669,-124.693199,1.427231,767,0,0,0,0,6,0,0,389,0,0.000000,44,0,120,1,0,13,0,16,2,0,0,0,1,0,0.000000,1.000000,83662,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4666735',4666735,-94.161926,-30.635151,-89.379402,1.427231,767,0,0,0,0,6,0,0,389,0,0.000000,44,0,120,1,0,12,0,16,2,0,0,0,1,0,0.000000,1.000000,83390,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4666736',4666736,-85.840622,-29.611879,-107.485497,1.330797,766,0,0,0,0,6,0,0,384,0,0.000000,44,0,120,1,0,11,0,16,22,0,0,0,1,0,0.000000,1.000000,83112,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4666746',4666746,-104.014999,-31.623831,-118.950104,1.379597,765,0,0,0,0,6,0,0,386,0,0.000000,44,0,120,1,0,14,0,16,2,0,0,0,1,0,0.000000,1.000000,82834,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87864,'LVD_BNPC_03','s1f4','bnpc4666747',4666747,-118.166702,-32.339401,-135.991302,1.402416,765,0,0,0,0,6,0,0,386,0,0.000000,44,0,120,1,0,15,0,16,2,0,0,0,1,0,0.000000,1.000000,82562,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316913',4316913,-221.667801,-42.008121,-198.138397,-0.000048,765,0,0,0,1,6,0,0,2525,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81986,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316918',4316918,-211.239502,-41.783859,-229.267593,-0.000048,766,0,0,0,1,6,0,0,2524,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81720,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316920',4316920,-242.389603,-42.008121,-221.606796,-0.000048,768,0,0,0,1,6,0,0,2526,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81490,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316922',4316922,-243.732407,-41.367310,-179.705597,-0.784787,767,0,0,0,0,6,0,0,2523,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81182,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316928',4316928,-237.445602,-41.977600,-231.189499,0.642796,767,0,0,0,0,6,0,0,2523,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80910,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316930',4316930,-202.472000,-42.008121,-244.739395,-0.827164,767,0,0,0,0,6,0,0,2523,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80638,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316933',4316933,-197.619598,-41.428280,-317.036713,-0.087103,767,0,0,0,0,6,0,0,2523,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80366,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316935',4316935,-237.476196,-42.008121,-307.362488,0.468207,767,0,0,0,0,6,0,0,2523,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80094,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316938',4316938,-292.652802,-41.672421,-327.657013,1.047437,767,0,0,0,0,6,0,0,1829,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79822,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316939',4316939,-440.940002,-33.005310,-363.149506,-0.056039,767,0,0,0,0,6,0,0,1829,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79550,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316942',4316942,-458.416687,-32.786930,-362.740295,1.177908,767,0,0,0,0,6,0,0,1829,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79278,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316944',4316944,-319.625488,-39.391800,-300.050995,0.980403,766,0,0,0,0,6,0,0,1828,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79000,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316945',4316945,-317.930511,-39.354549,-298.395599,-0.756103,768,0,0,0,0,6,0,0,1830,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78770,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316951',4316951,-144.609802,-41.153629,-241.840302,-0.000048,768,0,0,0,1,6,0,0,2526,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78498,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316958',4316958,-146.990204,-41.031559,-289.265289,1.220109,766,0,0,0,0,6,0,0,2524,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78184,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316959',4316959,-147.081696,-41.031559,-291.035309,1.220109,768,0,0,0,0,6,0,0,2526,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77954,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316960',4316960,-167.712006,-41.336731,-290.058807,1.220109,765,0,0,0,1,6,0,0,2525,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77634,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316963',4316963,-232.440704,-40.146481,-349.050201,-0.000048,768,0,0,0,1,6,0,0,1830,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77410,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316965',4316965,-281.116913,-42.008121,-359.151611,-1.270539,766,0,0,0,0,6,0,0,1828,0,0.000000,47,0,120,1,0,21,0,16,2,0,0,0,1,0,0.000000,1.000000,77096,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316980',4316980,-375.469208,-39.479321,-346.811401,-0.130793,768,0,0,0,0,6,0,0,1830,0,0.000000,49,0,120,1,0,31,0,16,2,0,0,0,1,0,0.000000,1.000000,76866,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316981',4316981,-360.719788,-35.466740,-409.681396,-0.000048,766,0,0,0,1,6,0,0,1828,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76552,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4317006',4317006,-425.589386,-33.107040,-354.529510,0.907076,766,0,0,0,0,6,0,0,1828,0,0.000000,49,0,120,1,0,35,0,16,2,0,0,0,1,0,0.000000,1.000000,76280,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4317012',4317012,-354.351501,-39.271420,-303.235596,-0.000048,139,0,0,0,1,6,0,0,1831,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76062,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4317015',4317015,-507.061493,-32.206131,-362.981293,-0.000048,139,0,0,0,1,6,0,0,1831,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75790,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4317016',4317016,-496.515411,-31.640949,-381.532288,-0.000048,139,0,0,0,1,6,0,0,1831,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75518,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4317017',4317017,-386.895294,-35.722141,-293.090790,-0.000048,139,0,0,0,1,6,0,0,1831,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75246,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4317019',4317019,-374.123108,-37.690010,-300.576691,-0.000048,139,0,0,0,1,6,0,0,1831,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74974,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4317020',4317020,-364.905487,-37.562908,-288.443298,-0.000000,139,0,0,0,1,6,0,0,1831,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74702,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633128',4633128,-196.023407,-42.000118,-288.500702,-0.000000,2832,0,0,0,1,6,0,0,2527,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74436,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633131',4633131,-181.510605,-42.000141,-270.853699,-0.000000,2832,0,0,0,1,6,0,0,2527,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74164,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633132',4633132,-221.403793,-42.000000,-294.279510,-0.000000,2832,0,0,0,1,6,0,0,2527,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73892,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633133',4633133,-255.104706,-42.000011,-324.852905,-0.000048,2832,0,0,0,1,6,0,0,2527,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73620,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633134',4633134,-272.297607,-42.000000,-331.539307,-0.000048,2832,0,0,0,1,6,0,0,2527,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73348,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633135',4633135,-275.837311,-41.886051,-348.195587,-0.000048,2832,0,0,0,1,6,0,0,2527,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73076,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316950',4316950,-207.660095,-42.008121,-279.957306,-0.000048,768,0,0,0,1,6,0,0,2526,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72786,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316943',4316943,-263.904785,-43.381409,-271.076599,-0.000048,768,0,0,0,1,6,0,0,2526,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72514,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316987',4316987,-351.952209,-35.287498,-400.680786,-0.000048,768,0,0,0,1,6,0,0,1830,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72242,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633377',4633377,-188.154800,-41.040760,-213.112900,-0.261301,768,0,0,0,1,6,0,0,2526,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71970,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633783',4633783,-343.341888,-39.413860,-362.948090,-0.000048,765,0,0,0,1,6,0,0,1827,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71650,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633784',4633784,-423.791107,-33.754879,-325.509613,-0.000048,765,0,0,0,1,6,0,0,1827,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71378,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633787',4633787,-415.514801,-33.350899,-355.147888,0.775439,765,0,0,0,0,6,0,0,1827,0,0.000000,49,0,120,1,0,33,0,16,2,0,0,0,1,0,0.000000,1.000000,71106,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633283',4633283,-293.720886,-41.641911,-367.788208,1.088136,2836,0,0,0,0,6,0,0,2531,0,0.000000,46,1,120,1,0,24,0,16,2,0,0,0,1,0,0.000000,1.000000,70906,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633285',4633285,-282.062988,-42.038639,-367.910309,1.088232,2836,0,0,0,0,6,0,0,2531,0,0.000000,46,1,120,1,0,25,0,16,2,0,0,0,1,0,0.000000,1.000000,70634,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633281',4633281,-296.894806,-41.733459,-359.090607,1.088136,2836,0,0,0,0,6,0,0,2531,0,0.000000,46,1,120,1,0,23,0,16,2,0,0,0,1,0,0.000000,1.000000,70362,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633276',4633276,-283.527893,-41.916561,-357.747803,1.087945,2836,0,0,0,0,6,0,0,2531,0,0.000000,46,1,120,1,0,21,0,16,2,0,0,0,1,0,0.000000,1.000000,70090,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633279',4633279,-294.392303,-41.489319,-349.569000,1.088136,2836,0,0,0,0,6,0,0,2531,0,0.000000,46,1,120,1,0,22,0,16,2,0,0,0,1,0,0.000000,1.000000,69818,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633286',4633286,-377.859192,-39.444641,-348.989105,-0.000048,2837,0,0,0,0,6,0,0,2532,0,0.000000,48,2,120,1,0,31,0,16,2,0,0,0,1,0,0.000000,1.000000,69552,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633288',4633288,-395.040802,-38.559631,-343.953613,-0.000048,2837,0,0,0,0,6,0,0,2532,0,0.000000,48,2,120,1,0,32,0,16,2,0,0,0,1,0,0.000000,1.000000,69280,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633289',4633289,-415.392700,-33.349609,-358.443909,-0.902042,2837,0,0,0,0,6,0,0,2532,0,0.000000,48,2,120,1,0,33,0,16,2,0,0,0,1,0,0.000000,1.000000,69008,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633290',4633290,-423.105713,-32.905010,-367.492004,-0.902042,2837,0,0,0,0,6,0,0,2532,0,0.000000,48,2,120,1,0,34,0,16,2,0,0,0,1,0,0.000000,1.000000,68736,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4633291',4633291,-425.528412,-33.066349,-357.686798,-0.902042,2837,0,0,0,0,6,0,0,2532,0,0.000000,48,2,120,1,0,35,0,16,2,0,0,0,1,0,0.000000,1.000000,68464,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4667026',4667026,-292.652802,-41.733459,-365.011108,-0.874478,767,0,0,0,0,6,0,0,1829,0,0.000000,47,0,120,1,0,24,0,16,2,0,0,0,1,0,0.000000,1.000000,68126,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4667027',4667027,-293.720886,-41.580872,-346.913910,-0.743321,767,0,0,0,0,6,0,0,1829,0,0.000000,47,0,120,1,0,22,0,16,2,0,0,0,1,0,0.000000,1.000000,67854,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4667028',4667028,-294.453400,-41.580872,-359.822998,-1.140820,768,0,0,0,0,6,0,0,1830,0,0.000000,47,0,120,1,0,23,0,16,2,0,0,0,1,0,0.000000,1.000000,67618,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4667036',4667036,-425.913300,-32.791721,-368.407501,0.976778,767,0,0,0,0,6,0,0,1829,0,0.000000,49,0,120,1,0,34,0,16,2,0,0,0,1,0,0.000000,1.000000,67310,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4667037',4667037,-397.546295,-37.902161,-342.084900,0.215596,767,0,0,0,0,6,0,0,1829,0,0.000000,49,0,120,1,0,32,0,16,2,0,0,0,1,0,0.000000,1.000000,67038,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4681259',4681259,-351.697388,-38.557800,-379.104797,-0.000048,766,0,0,0,1,6,0,0,1828,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66760,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4681260',4681260,-370.744995,-35.287498,-414.281708,-0.375659,768,0,0,0,0,6,0,0,1830,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66530,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93691,'LVD_BNPC_04','s1f4','bnpc4316964',4316964,-282.307190,-42.008121,-365.072113,-1.142929,766,0,0,0,0,6,0,0,1828,0,0.000000,47,0,120,1,0,25,0,16,2,0,0,0,1,0,0.000000,1.000000,66216,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321460',4321460,-315.388794,-38.406979,624.200806,-0.000048,396,0,0,0,1,6,0,0,1852,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65774,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321461',4321461,-274.008301,-39.855450,650.736206,-0.000048,396,0,0,0,1,6,0,0,1852,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65502,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321463',4321463,-243.883301,-39.120640,668.059570,-0.000048,396,0,0,0,1,6,0,0,1852,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321464',4321464,-281.698914,-40.244148,655.379211,-0.000048,396,0,0,0,1,6,0,0,1852,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321465',4321465,-345.691711,-40.588310,660.238220,-0.000048,396,0,0,0,1,6,0,0,1852,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321466',4321466,-392.988892,-41.449879,655.634277,-0.000048,396,0,0,0,1,6,0,0,1852,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64414,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321467',4321467,-363.413086,-40.854279,695.693970,-0.000000,396,0,0,0,1,6,0,0,1852,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64142,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321468',4321468,-450.857391,-37.997330,733.822021,-0.000000,403,0,0,0,1,6,0,0,1853,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63876,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321469',4321469,-476.772797,-38.142120,757.051270,-0.000000,403,0,0,0,1,6,0,0,1853,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63604,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321470',4321470,-447.854492,-37.912220,730.335571,-0.000000,403,0,0,0,1,6,0,0,1853,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63332,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321471',4321471,-477.072906,-37.196659,711.034729,-0.000000,403,0,0,0,1,6,0,0,1853,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63060,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321472',4321472,-507.253998,-37.196659,740.505798,-0.000000,403,0,0,0,1,6,0,0,1853,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62788,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321473',4321473,-479.166901,-37.732540,738.016785,-0.000000,403,0,0,0,1,6,0,0,1853,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62516,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321474',4321474,-451.650787,-37.109020,704.282288,-0.000000,403,0,0,0,1,6,0,0,1853,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62244,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321475',4321475,-308.953400,-42.000000,713.766479,-0.000000,20,0,0,0,1,6,0,0,1854,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61978,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321477',4321477,-348.667999,-42.000000,722.773987,-0.000048,20,0,0,0,1,6,0,0,1854,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61706,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321478',4321478,-268.398895,-42.000000,721.376526,-0.000000,20,0,0,0,1,6,0,0,1854,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61434,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321479',4321479,-229.397903,-41.984539,738.036926,-0.000000,20,0,0,0,1,6,0,0,1854,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61162,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321480',4321480,-226.253403,-41.385059,735.099487,-0.000000,20,0,0,0,1,6,0,0,1854,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60890,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321481',4321481,-322.466187,-41.807381,693.960083,-0.000000,20,0,0,0,1,6,0,0,1854,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60618,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321482',4321482,-286.179810,-41.791012,697.924927,-0.000000,20,0,0,0,1,6,0,0,1854,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60346,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321483',4321483,-259.243988,-38.144661,566.177124,-0.000048,396,0,0,0,1,6,0,0,1852,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60062,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321486',4321486,-292.149994,-40.520851,429.086090,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59808,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321487',4321487,-311.995514,-41.332989,414.272888,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59536,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321488',4321488,-288.225800,-40.390610,430.941986,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59264,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321489',4321489,-255.620697,-40.477798,440.482300,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58992,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321490',4321490,-240.806793,-38.337589,480.157013,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58720,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321492',4321492,-223.535095,-38.907558,511.755188,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58448,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321493',4321493,-250.595703,-38.072151,503.112091,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58176,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321494',4321494,-227.069397,-38.621010,515.364319,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57904,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321495',4321495,-208.841599,-38.722130,493.455811,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57632,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321496',4321496,-241.072998,-38.224331,544.913513,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57360,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321497',4321497,-291.392700,-38.949532,627.616089,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57088,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321498',4321498,-261.889404,-39.899719,661.304077,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56816,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321499',4321499,-370.138092,-40.451721,688.807495,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,40,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56544,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321500',4321500,-291.260986,-41.491730,693.390076,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,41,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56272,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321501',4321501,-332.560211,-42.000000,711.026123,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,41,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56000,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321502',4321502,-329.420013,-42.000000,712.776611,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,41,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55728,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321503',4321503,-246.192200,-40.441620,709.686218,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,41,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55456,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321505',4321505,-240.736298,-42.000000,742.566528,-0.000000,46,0,0,0,1,6,0,0,46,0,0.000000,41,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55184,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321506',4321506,-468.364594,-38.197491,749.200073,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,42,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54912,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321508',4321508,-469.616486,-37.505680,723.021729,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,42,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54640,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321509',4321509,-467.157196,-37.692699,722.171387,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,42,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54368,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321510',4321510,-443.166687,-37.068859,715.848694,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,42,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54096,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93773,'LVD_BNPC_05','s1f4','bnpc4321511',4321511,-438.206390,-35.766102,670.497375,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,42,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53824,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4633263',4633263,-789.705627,-41.480991,683.228088,-0.000048,383,0,0,0,1,6,0,0,2533,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53234,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4633264',4633264,-759.089783,-38.575909,689.571106,-0.000048,383,0,0,0,1,6,0,0,2533,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52962,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4633265',4633265,-805.386475,-40.817928,661.463318,-0.000048,383,0,0,0,1,6,0,0,2533,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52690,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4633266',4633266,-794.361572,-39.456490,648.005005,-0.000048,383,0,0,0,1,6,0,0,2533,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52418,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4633267',4633267,-775.544617,-38.485760,658.247375,-0.000048,383,0,0,0,1,6,0,0,2533,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52146,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4633268',4633268,-775.478821,-40.268620,671.290222,-0.000048,383,0,0,0,1,6,0,0,2533,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51874,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4633269',4633269,-818.600830,-42.008121,650.415771,-0.000048,383,0,0,0,1,6,0,0,2533,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51602,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4633270',4633270,-762.932495,-38.970909,687.098389,-0.000048,383,0,0,0,1,6,0,0,2533,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51330,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4633271',4633271,-776.258606,-39.190811,705.569885,-0.000048,383,0,0,0,1,6,0,0,2533,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51058,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4664481',4664481,-777.584473,-42.008121,724.696716,-0.000048,383,0,18,5,1,6,0,0,2533,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50786,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4664485',4664485,-809.964111,-41.672421,665.003418,-0.000048,383,0,18,5,1,6,0,0,2533,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50514,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4664488',4664488,-789.944275,-41.458801,705.134583,-0.000048,383,0,18,5,1,6,0,0,2533,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50242,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666236',4666236,-878.239990,-20.652750,883.271118,-0.000048,765,0,0,0,1,6,0,0,2534,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49862,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666257',4666257,-828.987305,-25.652750,888.069519,-0.000048,765,0,0,0,1,6,0,0,2534,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49590,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666258',4666258,-829.739929,-25.680969,889.829773,-0.000048,765,0,0,0,1,6,0,0,2534,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49318,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666259',4666259,-815.924316,-23.649630,888.875488,-0.000048,765,0,0,0,1,6,0,0,2534,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49046,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666260',4666260,-817.754517,-23.649630,894.566589,-0.000048,765,0,0,0,1,6,0,0,2534,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48774,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666261',4666261,-877.169678,-20.873289,876.188171,-0.000048,775,0,0,0,1,6,0,0,2536,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48616,2,0,0,0,0,30096,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666262',4666262,-875.114197,-20.902760,890.589722,-0.000048,776,0,0,0,1,6,0,0,2535,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48266,2,0,0,0,0,30096,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666265',4666265,-832.192383,-25.647751,899.698303,-1.130562,775,0,0,0,0,6,0,0,2536,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48072,2,0,0,0,0,30079,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666266',4666266,-883.583496,-20.647829,889.883484,-0.835472,776,0,0,0,0,6,0,0,2535,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47722,2,0,0,0,0,30065,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666267',4666267,-888.256775,-20.652750,881.349426,-0.364738,775,0,0,0,0,6,0,0,2536,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47528,2,0,0,0,0,30067,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666268',4666268,-887.970093,-20.652760,879.854126,-0.814911,776,0,0,0,0,6,0,0,2535,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47178,2,0,0,0,0,30073,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666269',4666269,-822.368286,-24.341749,895.894714,-0.000000,775,0,0,0,1,6,0,0,2536,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46984,2,0,0,0,0,30096,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666270',4666270,-824.196777,-25.652750,884.833923,-0.000048,776,0,0,0,1,6,0,0,2535,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46634,2,0,0,0,0,30096,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666271',4666271,-830.350220,-25.650511,879.239990,0.360203,775,0,0,0,0,6,0,0,2536,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46440,2,0,0,0,0,30066,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666272',4666272,-834.023621,-25.647751,899.649170,1.081024,776,0,0,0,0,6,0,0,2535,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46090,2,0,0,0,0,30065,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666281',4666281,-922.445129,-20.652750,935.165527,-0.000048,767,0,0,0,1,6,0,0,2537,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45794,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666282',4666282,-913.466614,-20.902750,923.657410,-0.000048,767,0,0,0,1,6,0,0,2537,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45522,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666283',4666283,-912.036621,-20.902750,938.072876,-0.000048,767,0,0,0,1,6,0,0,2537,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45250,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666284',4666284,-867.946289,-25.647751,918.489319,-0.000048,767,0,0,0,1,6,0,0,2537,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44978,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666285',4666285,-853.890320,-23.649630,930.090576,-0.000048,767,0,0,0,1,6,0,0,2537,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44706,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666286',4666286,-857.944092,-24.538349,922.393616,-0.000000,767,0,0,0,1,6,0,0,2537,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44434,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666287',4666287,-867.256897,-25.652750,934.697571,-0.000048,767,0,0,0,1,6,0,0,2537,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44162,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666288',4666288,-914.135620,-20.652750,930.937622,-0.000048,2832,0,0,0,1,6,0,0,2538,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43944,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666291',4666291,-853.015991,-23.649630,925.301086,-0.000048,2832,0,0,0,1,6,0,0,2538,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43672,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666292',4666292,-864.342407,-25.652750,926.222717,-0.000048,2832,0,0,0,1,6,0,0,2538,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43400,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666293',4666293,-860.802307,-25.647760,930.098389,-0.000048,2832,0,0,0,1,6,0,0,2538,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43128,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666294',4666294,-921.446472,-20.676029,926.420898,-0.000048,767,0,0,0,1,6,0,0,2537,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42802,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666705',4666705,-862.519897,-20.652750,958.568176,-0.000048,773,0,0,0,1,6,0,0,2539,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42548,2,0,0,0,0,30096,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666706',4666706,-853.286377,-20.902750,958.398071,-0.000048,773,0,0,0,1,6,0,0,2539,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42276,2,0,0,0,0,30096,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666707',4666707,-857.476013,-20.902750,972.392212,-0.000048,773,0,0,0,1,6,0,0,2539,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42004,2,0,0,0,0,30096,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666708',4666708,-807.939697,-25.652750,970.221191,-0.000048,773,0,0,0,1,6,0,0,2539,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41732,2,0,0,0,0,30096,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666709',4666709,-813.264771,-25.652750,979.515930,-0.000048,773,0,0,0,1,6,0,0,2539,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41460,2,0,0,0,0,30096,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666710',4666710,-813.351990,-25.647751,985.380127,-0.000048,773,0,0,0,0,6,0,0,2539,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41188,2,0,0,0,0,30065,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666711',4666711,-808.987488,-25.650511,964.934692,0.248701,773,0,0,0,0,6,0,0,2539,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40916,2,0,0,0,0,30067,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666712',4666712,-799.837708,-23.649639,983.904175,-0.000048,773,0,0,0,0,6,0,0,2539,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40644,2,0,0,0,0,30066,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666714',4666714,-855.103516,-20.652750,965.275879,-0.000048,766,0,0,0,1,6,0,0,2540,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40348,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666715',4666715,-807.366516,-25.652750,978.315125,-0.000048,766,0,0,0,1,6,0,0,2540,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40076,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666716',4666716,-798.339783,-23.649630,975.416626,-0.000048,766,0,0,0,1,6,0,0,2540,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39804,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666717',4666717,-805.016602,-25.647760,974.326172,-0.000048,768,0,0,0,1,6,0,0,2541,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39574,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666718',4666718,-798.632202,-23.649630,979.035828,-0.000048,768,0,0,0,1,6,0,0,2541,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39302,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666719',4666719,-861.894470,-20.652750,968.356384,-0.000048,768,0,0,0,1,6,0,0,2541,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39030,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666720',4666720,-936.066711,-31.750019,852.472473,-0.527971,775,0,0,0,0,6,0,0,2542,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38824,2,0,0,0,0,30067,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666721',4666721,-933.356873,-30.260000,832.557922,-1.286723,775,0,0,0,0,6,0,0,2542,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38552,2,0,0,0,0,30067,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666722',4666722,-923.082092,-30.250000,842.560730,1.038386,775,0,0,0,0,6,0,0,2542,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38280,2,0,0,0,0,30067,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666723',4666723,-914.793579,-28.763309,805.386414,0.348698,775,0,0,0,0,6,0,0,2542,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38008,2,0,0,0,0,30067,0,0,282); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666724',4666724,-936.587219,-31.755150,843.129822,1.086362,765,0,0,0,1,6,0,0,2543,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37622,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666725',4666725,-926.512573,-30.258671,834.653076,1.086362,765,0,0,0,1,6,0,0,2543,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37350,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666726',4666726,-917.355713,-28.760000,806.922974,0.091609,765,0,0,0,1,6,0,0,2543,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37078,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98552,'LVD_BNPC_06','s1f4','bnpc4666728',4666728,-910.490601,-28.763309,809.658813,-0.907316,765,0,0,0,1,6,0,0,2543,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36806,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98343,'LVD_easter_2014','s1f4','bnpc4621608',4621608,430.063690,14.976550,469.112305,-0.000000,2770,0,0,0,0,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21786,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85949,'LVD_guard_01','s1f4','bnpc4057318',4057318,654.975586,9.882965,475.443115,0.270473,783,0,0,0,0,6,0,0,1272,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21436,5,0,0,0,0,30054,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85949,'LVD_guard_01','s1f4','bnpc4057321',4057321,299.487488,-24.761221,213.123703,0.209584,785,0,0,0,0,6,0,0,1272,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21170,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85949,'LVD_guard_01','s1f4','bnpc4057322',4057322,221.054092,-24.836121,213.135193,-0.373504,784,0,0,0,0,6,0,0,1272,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20904,5,0,0,0,0,30055,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85949,'LVD_guard_01','s1f4','bnpc4057324',4057324,-96.358551,-25.164360,54.821659,-0.747073,786,0,0,0,0,6,0,0,1273,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20638,5,0,0,0,0,30052,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85949,'LVD_guard_01','s1f4','bnpc4057391',4057391,14.877870,-10.652030,-83.785133,-0.743720,787,0,0,0,0,6,0,0,1273,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20372,5,0,0,0,0,30053,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90605,'FATE_002','s1f4','bnpc4176045',4176045,223.878403,-24.661011,211.591095,-0.436332,1418,0,0,0,0,6,0,0,1346,0,0.000000,13,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,193436,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89237,'FATE_003','s1f4','bnpc4126651',4126651,573.183716,33.088169,333.971893,-0.000000,1232,0,0,0,1,6,0,0,859,0,0.000000,12,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,193022,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89344,'FATE_008','s1f4','bnpc4127691',4127691,470.268188,7.279848,412.813812,0.345856,1233,0,0,0,1,6,0,0,860,0,0.000000,13,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,190568,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89345,'FATE_010','s1f4','bnpc4176172',4176172,285.830200,-7.726283,111.176903,-0.000000,1194,0,0,0,0,6,0,0,1359,0,0.000000,16,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,187998,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90523,'FATE_011','s1f4','bnpc4174602',4174602,71.267479,-14.206460,65.384247,0.815730,1155,0,0,0,1,6,0,0,1332,0,0.000000,13,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,187544,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89366,'FATE_016','s1f4','bnpc4127847',4127847,147.590103,-19.126720,131.598694,0.483256,773,0,0,0,0,6,0,0,1168,0,0.000000,14,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,183350,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89366,'FATE_016','s1f4','bnpc4127840',4127840,212.839706,-24.848949,206.545593,-0.917441,1216,0,0,0,0,6,0,0,1361,15,0.000000,17,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,182460,1,0,0,0,0,30183,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89366,'FATE_016','s1f4','bnpc4127843',4127843,215.293701,-24.883141,207.095093,-1.018179,1192,0,0,0,0,6,0,0,981,0,0.000000,17,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,182194,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90739,'FATE_017','s1f4','bnpc4180019',4180019,594.506897,27.036570,361.224792,-0.000000,1405,0,0,0,0,6,0,0,1362,0,0.000000,12,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,180500,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90739,'FATE_017','s1f4','bnpc4180031',4180031,622.249329,32.671471,359.284912,-0.000000,1405,0,0,0,0,6,0,0,1362,0,0.000000,12,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,180228,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90739,'FATE_017','s1f4','bnpc4180032',4180032,573.353027,27.125130,349.396790,-0.000000,1405,0,0,0,0,6,0,0,1362,0,0.000000,12,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,179956,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90739,'FATE_017','s1f4','bnpc4180033',4180033,554.687317,13.713860,378.894897,-0.000000,1405,0,0,0,0,6,0,0,1362,0,0.000000,12,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,179684,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90739,'FATE_017','s1f4','bnpc4180034',4180034,590.125916,12.334070,409.084900,-0.000000,1405,0,0,0,0,6,0,0,1362,0,0.000000,12,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,179412,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90739,'FATE_017','s1f4','bnpc4180036',4180036,590.153198,19.872360,380.554596,-0.000000,1405,0,0,0,0,6,0,0,1362,0,0.000000,12,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,179140,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90739,'FATE_017','s1f4','bnpc4180037',4180037,629.812012,27.167950,380.331787,-0.000000,1405,0,0,0,0,6,0,0,1362,0,0.000000,12,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,178868,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90739,'FATE_017','s1f4','bnpc4180039',4180039,614.042175,20.520960,393.513611,-0.000000,1405,0,0,0,0,6,0,0,1362,0,0.000000,12,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,178596,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89346,'FATE_019','s1f4','bnpc4127705',4127705,762.711914,50.089291,357.929291,-0.000000,1234,0,0,0,1,6,0,0,861,0,0.000000,10,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,178182,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89610,'FATE_022','s1f4','bnpc4142247',4142247,253.539093,3.459208,56.504990,-0.000000,1235,0,0,0,1,6,0,0,862,0,0.000000,18,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,176040,1,0,0,0,0,30062,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89611,'FATE_023','s1f4','bnpc4178218',4178218,465.566895,8.079398,294.553802,-0.575911,1289,0,0,0,0,6,0,0,1369,0,0.000000,15,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,174278,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89611,'FATE_023','s1f4','bnpc4178219',4178219,347.193695,-20.998489,206.225601,1.204241,1217,0,0,0,0,6,0,0,1370,0,0.000000,15,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,174012,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93373,'FATE_026','s1f4','bnpc4306214',4306214,23.099661,-10.932900,-95.305603,-1.396264,1154,0,0,0,1,6,0,0,1332,0,0.000000,39,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,169962,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93377,'FATE_027','s1f4','bnpc4305776',4305776,-60.548241,-25.524719,-127.848801,1.134464,2145,0,0,0,1,6,0,0,1700,0,0.000000,44,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,167340,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93383,'FATE_028','s1f4','bnpc4306217',4306217,-99.325844,-25.091261,56.662399,-1.064651,1155,0,0,0,1,6,0,0,1332,0,0.000000,40,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,164964,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93385,'FATE_029','s1f4','bnpc4305864',4305864,-156.417496,-35.419182,-12.569180,0.663225,2146,0,0,0,1,6,0,0,1701,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,162714,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93387,'FATE_030','s1f4','bnpc4305876',4305876,-142.237595,-32.965012,-125.835999,0.706265,2147,0,0,0,1,6,0,0,1518,0,0.000000,44,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,161668,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93389,'FATE_033','s1f4','bnpc4306437',4306437,-414.180511,-28.387011,-242.138199,0.733038,2116,0,0,0,1,6,0,0,343,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,159462,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93393,'FATE_035','s1f4','bnpc4305944',4305944,-356.072906,-41.819160,657.137878,-0.013245,2159,0,0,0,1,6,0,0,1529,0,0.000000,40,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,157640,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96956,'FATE_036','s1f4','bnpc4515008',4515008,-498.506500,-32.192009,-368.935303,1.471980,2508,0,0,0,1,6,0,0,2356,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,157218,1,0,0,0,0,30061,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100810,'FATE_037','s1f4','bnpc4758658',4758658,-240.781601,-39.995350,683.754211,-1.530926,2950,0,0,0,1,6,0,0,2827,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,156388,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100810,'FATE_037','s1f4','bnpc4758659',4758659,-234.384995,-40.041618,688.038574,-1.464465,2951,0,0,0,1,6,0,0,2828,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,156122,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100810,'FATE_037','s1f4','bnpc4758660',4758660,-236.560699,-39.932919,695.277283,-1.083860,2952,0,0,0,1,6,0,0,2829,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,155856,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100810,'FATE_037','s1f4','bnpc4758661',4758661,-244.831100,-40.085510,695.368896,-0.823387,2953,0,0,0,1,6,0,0,2830,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,155590,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100810,'FATE_037','s1f4','bnpc4758662',4758662,-246.784195,-39.993961,688.013977,-1.203270,2954,0,0,0,1,6,0,0,2831,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,155324,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100810,'FATE_037','s1f4','bnpc4758674',4758674,-240.863693,-40.054932,691.370789,-0.000048,2291,0,0,0,0,6,0,0,750,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,155058,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98431,'FATE_EASTER_2104_01','s1f4','bnpc4627605',4627605,-472.553009,-37.344860,726.045288,0.353807,2768,0,0,0,1,6,0,0,2517,0,0.000000,41,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,153084,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94615,'FATE_FF13_01_02','s1f4','bnpc4387747',4387747,573.131714,33.379261,333.217407,-0.000000,2291,0,0,0,0,6,0,0,750,0,0.000000,99,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,152730,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94615,'FATE_FF13_01_02','s1f4','bnpc4387749',4387749,566.994019,20.293640,365.411194,-0.035785,2086,0,0,0,8,6,0,0,2216,0,0.000000,12,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,152470,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125284',4125284,301.305511,1.566688,82.192581,0.264753,997,0,0,0,8,6,0,0,824,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128508,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125273',4125273,299.752106,7.163527,51.039520,-0.917612,995,0,0,0,0,0,0,0,833,0,0.000000,18,0,120,1,0,1,0,40,5,0,0,0,1,0,0.000000,1.000000,128242,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125274',4125274,297.577789,6.454791,54.221401,-0.207964,995,0,0,0,0,0,0,0,833,0,0.000000,18,0,120,1,0,1,0,40,5,0,0,0,1,0,0.000000,1.000000,127970,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125275',4125275,295.094208,6.546082,54.520390,0.059347,995,0,0,0,0,0,0,0,833,0,0.000000,18,0,120,1,0,1,0,40,5,0,0,0,1,0,0.000000,1.000000,127698,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125276',4125276,292.530609,6.729187,53.665890,0.419263,995,0,0,0,0,0,0,0,833,0,0.000000,18,0,120,1,0,1,0,40,5,0,0,0,1,0,0.000000,1.000000,127426,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125277',4125277,289.506287,7.371322,50.830391,1.501645,995,0,0,0,0,0,0,0,833,0,0.000000,18,0,120,1,0,1,0,40,5,0,0,0,1,0,0.000000,1.000000,127154,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125280',4125280,290.338715,8.526443,47.500469,0.983204,995,0,0,0,0,0,0,0,833,0,0.000000,18,0,120,1,0,1,0,40,5,0,0,0,1,0,0.000000,1.000000,126882,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125319',4125319,304.345215,-0.624691,94.720917,-0.010512,995,0,0,0,1,6,0,0,833,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126610,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125320',4125320,295.463287,-1.375618,94.584686,-0.010512,995,0,0,0,1,6,0,0,833,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126338,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125321',4125321,300.288696,-1.528663,97.032112,-0.010512,998,0,0,0,1,6,0,0,835,19,0.000000,19,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126072,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125312',4125312,337.136200,0.208952,79.117920,-1.538657,995,0,0,0,1,6,0,0,833,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125794,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125316',4125316,337.105804,-1.874303,85.465698,-1.538657,995,0,0,0,1,6,0,0,833,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125522,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125317',4125317,340.462585,-0.425469,82.505493,-1.538657,998,0,0,0,1,6,0,0,835,19,0.000000,19,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125256,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125345',4125345,346.863800,0.055847,82.875893,-1.441082,996,0,0,0,1,6,0,0,834,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124990,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125338',4125338,297.336304,-3.013634,101.959297,-0.271534,998,0,0,0,1,6,0,0,835,0,0.000000,19,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124624,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125340',4125340,302.858185,-2.265312,102.139297,-0.271534,998,0,0,0,1,6,0,0,835,0,0.000000,19,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124352,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125342',4125342,343.121185,0.671209,79.473541,-1.441082,998,0,0,0,1,6,0,0,835,0,0.000000,19,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124080,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86080,'QB_ClsExc200_001','s1f4','bnpc4125343',4125343,343.419098,-1.370923,86.243568,-1.441082,998,0,0,0,1,6,0,0,835,0,0.000000,19,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123808,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294343',4294343,-309.007813,-42.000000,711.583923,0.061561,1647,0,0,0,0,6,0,0,2200,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122180,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294344',4294344,-312.437714,-42.000000,717.017578,0.236029,1647,0,0,0,0,6,0,0,2200,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294345',4294345,-305.874512,-42.000000,714.728882,-0.132010,1648,0,0,0,0,6,0,0,2199,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121642,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294347',4294347,-306.104401,-42.000000,711.646973,-0.050489,1649,0,0,0,0,6,0,0,2198,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121376,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294348',4294348,-303.044312,-42.000000,711.733521,-0.127305,1649,0,0,0,0,6,0,0,2198,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121104,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294351',4294351,-305.439911,-39.353088,733.333313,-0.049088,1632,0,0,0,3,6,0,0,1417,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294439',4294439,-308.735809,-42.008121,720.576721,-0.129144,1647,0,0,0,0,6,0,0,2200,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120548,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294440',4294440,-305.401794,-42.000000,718.521729,-0.003487,1648,0,0,0,0,6,0,0,2199,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120282,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294441',4294441,-302.161285,-42.000000,719.596619,-0.074595,1649,0,0,0,0,6,0,0,2198,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120016,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294752',4294752,-307.332001,-42.008121,719.752808,0.081590,1647,0,0,0,0,6,0,0,2200,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119732,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294754',4294754,-303.805603,-42.000000,719.407288,0.017781,1649,0,0,0,0,6,0,0,2198,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119472,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294755',4294755,-307.881287,-42.008121,720.515686,-0.296734,1647,0,0,0,0,6,0,0,2200,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119188,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294756',4294756,-302.483307,-42.000000,718.754883,-0.371142,1648,0,0,0,0,6,0,0,2199,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118922,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294758',4294758,-305.348206,-42.000000,718.811401,0.151916,1649,0,0,0,0,6,0,0,2198,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118656,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294763',4294763,-317.586090,-40.329651,667.139587,0.799839,1648,0,0,0,0,6,0,0,2199,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118378,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294764',4294764,-290.336914,-40.552910,671.868225,-0.084102,1647,0,0,0,0,6,0,0,2200,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118100,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294750',4294750,-311.518799,-42.000000,719.787781,0.236737,2200,0,0,0,0,6,0,0,2197,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117784,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294751',4294751,-299.405396,-42.000000,718.345703,0.343094,2200,0,0,0,0,6,0,0,2197,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117512,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4317589',4317589,-307.972504,-42.000000,724.804382,-0.000000,1633,0,0,0,2,6,0,0,2201,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117246,1,0,0,0,0,0,4317602,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4317648',4317648,-305.066010,-42.000000,725.070679,-0.000000,1633,0,0,0,2,6,0,0,2201,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116462,1,0,0,0,0,0,4317640,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4317650',4317650,-302.829407,-42.000000,725.610413,-0.000000,1634,0,0,0,8,6,0,0,2201,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116196,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4317701',4317701,-306.081696,-41.999371,696.000000,-0.000000,2201,0,0,0,8,6,0,0,0,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115930,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93006,'QB_GaiUsc208_001','s1f4','bnpc4294766',4294766,-304.940002,-42.000000,722.552979,0.539786,2202,0,0,0,0,6,0,0,2196,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115664,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4102991',4102991,658.152527,9.384300,497.629913,0.058009,906,0,0,0,0,6,0,0,1373,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114146,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4102992',4102992,653.425415,9.485842,503.002502,0.597463,907,0,0,0,0,6,0,0,978,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113880,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4102993',4102993,652.680420,9.492308,504.995300,0.831270,907,0,0,0,0,6,0,0,978,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113608,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4102994',4102994,655.430725,9.351552,500.742004,0.597463,907,0,0,0,0,6,0,0,978,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113336,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4102995',4102995,668.146179,8.505355,520.669678,-0.146927,910,0,0,0,8,6,0,0,982,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113070,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4102998',4102998,663.792419,8.275360,522.181030,-0.517935,909,0,0,0,8,6,0,0,836,0,0.000000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112804,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4102999',4102999,662.203918,9.559981,499.303497,-0.000000,908,0,0,0,0,6,0,0,977,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112538,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103000',4103000,664.094788,9.594641,501.046112,-0.000000,908,0,0,0,0,6,0,0,977,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112266,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103001',4103001,666.364807,9.644976,501.834808,-0.157622,908,0,0,0,0,6,0,0,977,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111994,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103009',4103009,669.561279,8.500426,521.309387,-0.445885,911,0,0,0,8,6,0,0,981,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111728,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103010',4103010,670.677917,8.580522,520.493286,-0.150267,912,0,0,0,8,6,0,0,981,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111462,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103160',4103160,656.355286,9.837416,478.749298,0.555342,907,0,0,0,0,6,0,0,978,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111160,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103161',4103161,656.454773,9.815478,479.152191,0.674747,907,0,0,0,0,6,0,0,978,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110888,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103168',4103168,660.365112,9.882131,477.881714,-0.278860,908,0,0,0,0,6,0,0,977,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110634,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103169',4103169,661.007813,9.882414,477.532990,-0.562625,908,0,0,0,0,6,0,0,977,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110362,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103170',4103170,657.041321,9.832913,478.812103,-0.000000,914,0,0,0,0,6,0,0,975,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110108,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103171',4103171,659.754822,9.882031,478.053802,-0.000000,915,0,0,0,0,6,0,0,976,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109842,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103180',4103180,660.020813,9.508737,497.021515,-0.000000,916,0,0,0,0,6,0,0,945,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109576,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103186',4103186,658.783386,9.122451,509.140411,0.096031,917,0,0,0,0,6,0,0,980,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109310,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103187',4103187,656.154785,8.912471,513.654175,0.212528,918,0,0,0,0,6,0,0,617,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109044,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103188',4103188,657.870178,9.783186,479.483093,0.086984,913,0,0,0,8,6,0,0,729,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108778,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103314',4103314,639.334900,9.273653,516.028320,0.543435,1078,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108252,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103322',4103322,643.549194,9.109558,515.190308,0.913931,1079,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107986,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103324',4103324,646.631470,9.323181,509.056305,0.317491,1080,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107720,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103317',4103317,673.833313,9.481534,511.287292,1.013434,1078,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107436,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103327',4103327,649.550720,9.526278,500.070587,0.603047,1079,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107170,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103313',4103313,644.343018,7.891331,532.162720,-1.533344,1247,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106910,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103321',4103321,646.906128,8.726893,518.037476,-0.440735,1248,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106644,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103323',4103323,648.367920,9.151379,512.116089,-0.333216,1249,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106378,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103316',4103316,676.577515,9.274177,512.734680,-0.924555,1247,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106094,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87070,'QB_ManSea007_001','s1f4','bnpc4103325',4103325,649.852905,9.535517,497.802002,-0.418914,1249,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105834,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100535,'QST_BanAll030_001','s1f4','bnpc4745352',4745352,-818.749512,-42.000000,666.137329,0.353137,3121,0,0,0,1,6,0,0,2862,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104500,1,0,0,0,0,0,0,832,213); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100535,'QST_BanAll030_001','s1f4','bnpc4745351',4745351,-821.543823,-42.000000,669.890625,0.134501,3120,0,0,0,1,6,0,0,2863,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104234,1,0,0,0,0,0,0,831,214); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98618,'QST_BanSah002','s1f4','bnpc4635610',4635610,-40.512760,-23.300600,-88.700737,1.534675,2867,0,0,0,1,6,0,0,2716,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101648,1,0,0,0,0,0,0,341,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98618,'QST_BanSah002','s1f4','bnpc4635611',4635611,-39.692001,-23.163000,-87.282799,0.765102,2868,0,0,0,1,6,0,0,2717,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101382,1,0,0,0,0,0,0,337,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98618,'QST_BanSah002','s1f4','bnpc4635612',4635612,-39.592602,-23.347300,-90.222099,0.641087,2869,0,0,0,1,6,0,0,2718,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101116,1,0,0,0,0,0,0,339,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99253,'QST_BanSah005','s1f4','bnpc4667376',4667376,-930.109680,-30.250071,839.112610,-0.000000,2902,0,0,0,1,6,0,0,2719,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98934,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98584,'QST_BanSah104_001','s1f4','bnpc4634880',4634880,-117.829300,-32.492619,-120.196701,-0.092035,2839,0,0,0,1,6,0,0,2721,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97040,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98584,'QST_BanSah104_001','s1f4','bnpc4634881',4634881,-109.443497,-31.260019,-91.593933,0.305311,2839,0,0,0,1,6,0,0,2721,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96768,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98584,'QST_BanSah104_001','s1f4','bnpc4634882',4634882,-70.049088,-27.425449,-136.284500,-0.159483,2839,0,0,0,1,6,0,0,2721,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96496,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98584,'QST_BanSah104_001','s1f4','bnpc4634883',4634883,-93.298424,-29.725990,-147.632599,0.896697,2839,0,0,0,1,6,0,0,2721,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96224,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98584,'QST_BanSah104_001','s1f4','bnpc4634884',4634884,-56.253780,-27.147449,-160.448196,-0.703435,2839,0,0,0,1,6,0,0,2721,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95952,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98480,'QST_BanSah105','s1f4','bnpc4629559',4629559,-221.899796,-39.599220,-113.555702,-0.738473,767,0,0,0,1,6,0,0,2721,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94546,1,0,0,0,0,0,0,339,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98480,'QST_BanSah105','s1f4','bnpc4629560',4629560,-198.447098,-37.898399,-120.347000,0.736849,767,0,0,0,1,6,0,0,2721,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94274,1,0,0,0,0,0,0,339,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98480,'QST_BanSah105','s1f4','bnpc4629561',4629561,-188.884293,-41.193508,-42.829769,0.973853,767,0,0,0,1,6,0,0,2721,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94002,1,0,0,0,0,0,0,339,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98480,'QST_BanSah105','s1f4','bnpc4629562',4629562,-156.507706,-38.822571,-49.277592,-0.451045,767,0,0,0,1,6,0,0,2721,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93730,1,0,0,0,0,0,0,339,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98480,'QST_BanSah105','s1f4','bnpc4629563',4629563,-153.164902,-35.323769,-72.555138,0.277606,767,0,0,0,1,6,0,0,2721,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93458,1,0,0,0,0,0,0,339,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98480,'QST_BanSah105','s1f4','bnpc4629564',4629564,-173.563797,-35.589771,-98.143913,1.344651,767,0,0,0,1,6,0,0,2721,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93186,1,0,0,0,0,0,0,339,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98480,'QST_BanSah105','s1f4','bnpc4629565',4629565,-140.300003,-32.809040,-104.566399,1.241441,767,0,0,0,1,6,0,0,2721,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92914,1,0,0,0,0,0,0,339,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98530,'QST_BanSah106','s1f4','bnpc4631982',4631982,-769.560730,-38.068489,650.736816,-1.008591,2842,0,0,0,1,6,0,0,2722,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92136,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98530,'QST_BanSah106','s1f4','bnpc4631984',4631984,-764.435181,-38.080662,657.886597,-1.344219,2842,0,0,0,1,6,0,0,2722,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91864,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98530,'QST_BanSah106','s1f4','bnpc4631986',4631986,-757.849915,-37.948521,661.693420,-0.700800,2842,0,0,0,1,6,0,0,2722,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91592,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98530,'QST_BanSah106','s1f4','bnpc4631987',4631987,-756.251282,-38.952190,676.540588,-1.326578,2842,0,0,0,1,6,0,0,2722,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91320,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98530,'QST_BanSah106','s1f4','bnpc4631990',4631990,-753.355774,-38.529259,683.689270,-0.474439,2842,0,0,0,1,6,0,0,2722,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91048,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98531,'QST_BanSah107','s1f4','bnpc4632492',4632492,-810.270813,-41.642570,660.572693,-0.000000,2874,0,0,0,1,6,0,0,2723,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89450,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98531,'QST_BanSah107','s1f4','bnpc4632493',4632493,-787.739014,-41.281448,674.766174,-0.881763,2874,0,0,0,1,6,0,0,2723,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89178,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98531,'QST_BanSah107','s1f4','bnpc4632494',4632494,-787.230896,-41.699059,709.078186,-1.169565,2874,0,0,0,1,6,0,0,2723,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88906,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98531,'QST_BanSah107','s1f4','bnpc4632495',4632495,-810.697571,-41.546021,676.326477,-0.576391,2874,0,0,0,1,6,0,0,2723,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88634,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98531,'QST_BanSah107','s1f4','bnpc4632496',4632496,-798.466614,-41.388000,685.021912,-1.282250,2874,0,0,0,1,6,0,0,2723,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88362,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98531,'QST_BanSah107','s1f4','bnpc4632497',4632497,-801.072876,-41.660332,698.846130,-0.923386,2874,0,0,0,1,6,0,0,2723,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88090,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99259,'QST_BanSah108','s1f4','bnpc4667253',4667253,-848.061523,-25.652781,889.802673,-0.000000,2886,0,0,0,1,6,0,0,2724,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87688,1,0,0,0,0,0,0,341,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99220,'QST_BanSah109_001','s1f4','bnpc4664094',4664094,-887.794006,-20.652790,884.566528,0.354788,2839,0,0,0,1,6,0,0,2725,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86200,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99220,'QST_BanSah109_001','s1f4','bnpc4664095',4664095,-882.816772,-20.647800,877.647522,1.144042,2839,0,0,0,1,6,0,0,2725,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85928,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99220,'QST_BanSah109_001','s1f4','bnpc4664096',4664096,-828.640930,-25.674219,895.233398,-1.061195,2839,0,0,0,1,6,0,0,2725,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85656,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99220,'QST_BanSah109_001','s1f4','bnpc4664097',4664097,-832.741821,-25.680969,883.318787,-0.397528,2839,0,0,0,1,6,0,0,2725,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85384,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99220,'QST_BanSah109_001','s1f4','bnpc4664098',4664098,-844.440918,-25.647791,885.432983,-0.880044,2839,0,0,0,1,6,0,0,2725,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85112,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98444,'QST_BanSah110','s1f4','bnpc4628513',4628513,-55.435001,-24.903601,36.775600,1.189876,2903,0,0,0,1,6,0,0,2726,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84290,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98444,'QST_BanSah110','s1f4','bnpc4628514',4628514,-111.788101,-23.337910,82.054169,1.356299,2903,0,0,0,1,6,0,0,2726,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84018,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98444,'QST_BanSah110','s1f4','bnpc4628515',4628515,92.872200,-14.360600,32.030602,0.235171,2903,0,0,0,1,6,0,0,2726,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83746,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98444,'QST_BanSah110','s1f4','bnpc4628516',4628516,46.068802,-14.421000,55.015598,0.000000,2903,0,0,0,1,6,0,0,2726,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83474,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98545,'QST_BanSah202','s1f4','bnpc4632687',4632687,-207.355301,-41.972351,-311.220612,-0.000000,2889,0,0,0,1,6,0,0,2727,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82880,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98461,'QST_BanSah203_001','s1f4','bnpc4629243',4629243,-244.787003,-41.215321,-176.370697,1.134195,2843,0,0,0,1,6,0,0,2728,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82102,1,0,0,0,0,0,0,635,50); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98461,'QST_BanSah203_001','s1f4','bnpc4629245',4629245,-228.747299,-41.570992,-181.867096,0.993715,2843,0,0,0,1,6,0,0,2728,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81830,1,0,0,0,0,0,0,635,50); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98461,'QST_BanSah203_001','s1f4','bnpc4629244',4629244,-221.454803,-42.026619,-197.220901,0.243330,2844,0,0,0,1,6,0,0,2729,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81564,1,0,0,0,0,0,0,636,284); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98461,'QST_BanSah203_001','s1f4','bnpc4629246',4629246,-218.145203,-41.912739,-194.423004,0.807150,2844,0,0,0,1,6,0,0,2729,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81292,1,0,0,0,0,0,0,636,284); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98461,'QST_BanSah203_001','s1f4','bnpc4629247',4629247,-226.483902,-41.999969,-196.982300,-0.318962,2844,0,0,0,1,6,0,0,2729,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81020,1,0,0,0,0,0,0,636,284); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98498,'QST_BanSah205_001','s1f4','bnpc4630845',4630845,-140.674896,-40.954689,-246.112900,-0.593180,2905,0,0,0,1,6,0,0,2679,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80134,1,0,0,0,0,0,0,341,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98498,'QST_BanSah205_001','s1f4','bnpc4630846',4630846,-146.749207,-41.154202,-248.615204,1.203377,2905,0,0,0,1,6,0,0,2679,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79862,1,0,0,0,0,0,0,341,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98498,'QST_BanSah205_001','s1f4','bnpc4630868',4630868,-136.136993,-41.132641,-239.803406,0.545708,2905,0,0,0,1,6,0,0,2679,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79590,1,0,0,0,0,0,0,341,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98498,'QST_BanSah205_001','s1f4','bnpc4630869',4630869,-139.086502,-41.094379,-236.133408,1.110651,2905,0,0,0,1,6,0,0,2679,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79318,1,0,0,0,0,0,0,341,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98498,'QST_BanSah205_001','s1f4','bnpc4630881',4630881,-156.298203,-41.152580,-234.056107,0.934664,2905,0,0,0,1,6,0,0,2679,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79046,1,0,0,0,0,0,0,341,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98498,'QST_BanSah205_001','s1f4','bnpc4630882',4630882,-149.515396,-41.123459,-231.540802,-0.693993,2905,0,0,0,1,6,0,0,2679,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78774,1,0,0,0,0,0,0,341,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98498,'QST_BanSah205_001','s1f4','bnpc4630886',4630886,-273.640106,-43.350948,-269.947388,-1.222458,2905,0,0,0,1,6,0,0,2679,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78502,1,0,0,0,0,0,0,341,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98498,'QST_BanSah205_001','s1f4','bnpc4630888',4630888,-273.121307,-43.411991,-268.635101,-1.485348,2905,0,0,0,1,6,0,0,2679,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78230,1,0,0,0,0,0,0,341,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98498,'QST_BanSah205_001','s1f4','bnpc4630867',4630867,-146.070206,-41.123169,-245.994202,0.625341,2904,0,0,0,1,6,0,0,2681,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77964,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98498,'QST_BanSah205_001','s1f4','bnpc4630844',4630844,-137.768005,-41.103081,-238.197495,1.146253,2904,0,0,0,1,6,0,0,2681,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77692,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98498,'QST_BanSah205_001','s1f4','bnpc4630879',4630879,-151.132904,-41.183849,-232.822601,-0.637235,2904,0,0,0,1,6,0,0,2681,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77420,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98498,'QST_BanSah205_001','s1f4','bnpc4630900',4630900,-273.334808,-43.442402,-266.926086,-1.416844,2904,0,0,0,1,6,0,0,2681,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77148,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98498,'QST_BanSah205_001','s1f4','bnpc4630847',4630847,-142.748199,-41.123169,-244.739395,0.153496,2906,0,0,0,1,6,0,0,2680,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76882,1,0,0,0,0,0,0,339,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98498,'QST_BanSah205_001','s1f4','bnpc4630871',4630871,-139.328094,-41.097130,-234.052795,1.353136,2906,0,0,0,1,6,0,0,2680,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76610,1,0,0,0,0,0,0,339,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98498,'QST_BanSah205_001','s1f4','bnpc4630884',4630884,-157.526306,-41.030571,-232.216797,0.801962,2906,0,0,0,1,6,0,0,2680,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76338,1,0,0,0,0,0,0,339,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98498,'QST_BanSah205_001','s1f4','bnpc4630890',4630890,-274.525085,-43.442440,-265.491791,-0.604589,2906,0,0,0,1,6,0,0,2680,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76066,1,0,0,0,0,0,0,339,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98506,'QST_BanSah206_001','s1f4','bnpc4631094',4631094,-244.957001,-42.000019,-215.960999,0.101652,2949,0,0,0,1,6,0,0,2730,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75228,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98506,'QST_BanSah206_001','s1f4','bnpc4631096',4631096,-225.916107,-42.000000,-234.589905,1.417751,2949,0,0,0,1,6,0,0,2730,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74956,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98506,'QST_BanSah206_001','s1f4','bnpc4631097',4631097,-193.714096,-41.662640,-242.117096,1.176826,2949,0,0,0,1,6,0,0,2730,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74684,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98506,'QST_BanSah206_001','s1f4','bnpc4631099',4631099,-182.385101,-41.121780,-215.701096,1.422613,2949,0,0,0,1,6,0,0,2730,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74412,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98506,'QST_BanSah206_001','s1f4','bnpc4631133',4631133,-213.498596,-41.565639,-216.378403,-0.062028,2949,0,0,0,1,6,0,0,2730,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74140,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98500,'QST_BanSah208','s1f4','bnpc4630974',4630974,-161.375595,-41.243832,-273.118500,0.569782,766,0,0,0,1,6,0,0,2679,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72994,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98500,'QST_BanSah208','s1f4','bnpc4630976',4630976,-217.415298,-39.874821,-337.019989,-0.043811,766,0,0,0,1,6,0,0,2679,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72722,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98500,'QST_BanSah208','s1f4','bnpc4630977',4630977,-268.502289,-43.441620,-265.663513,-0.494763,766,0,0,0,1,6,0,0,2679,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72450,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98500,'QST_BanSah208','s1f4','bnpc4630978',4630978,-192.516205,-41.138081,-215.298294,-0.000000,766,0,0,0,1,6,0,0,2679,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72178,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98532,'QST_BanSah209','s1f4','bnpc4632577',4632577,-812.993286,-41.247150,646.701782,0.944764,315,0,0,0,1,6,0,0,2733,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71212,1,0,0,0,0,0,0,634,283); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98532,'QST_BanSah209','s1f4','bnpc4632579',4632579,-796.192322,-39.847931,650.681213,-1.090426,315,0,0,0,1,6,0,0,2733,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70940,1,0,0,0,0,0,0,634,283); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98532,'QST_BanSah209','s1f4','bnpc4632704',4632704,-764.720886,-35.971840,707.851318,-0.813404,315,0,0,0,1,6,0,0,2733,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70668,1,0,0,0,0,0,0,634,283); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98532,'QST_BanSah209','s1f4','bnpc4632578',4632578,-803.463806,-40.512760,643.823914,-0.054601,317,0,0,0,1,6,0,0,2732,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70402,1,0,0,0,0,0,0,636,51); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98532,'QST_BanSah209','s1f4','bnpc4632703',4632703,-761.666321,-38.266510,696.913330,-1.198644,317,0,0,0,1,6,0,0,2732,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70130,1,0,0,0,0,0,0,636,51); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98532,'QST_BanSah209','s1f4','bnpc4632705',4632705,-772.032898,-39.315750,711.952393,-0.025225,317,0,0,0,1,6,0,0,2732,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69858,1,0,0,0,0,0,0,636,51); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98616,'QST_BanSah301','s1f4','bnpc4635603',4635603,-430.701202,-33.434608,-338.229614,-0.000000,2888,0,0,0,1,6,0,0,2736,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98616,'QST_BanSah301','s1f4','bnpc4635601',4635601,-436.168488,-33.335880,-353.955902,-0.000000,2887,0,0,0,1,6,0,0,2734,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68642,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98616,'QST_BanSah301','s1f4','bnpc4635602',4635602,-421.648590,-33.370071,-350.140503,-0.000000,2886,0,0,0,1,6,0,0,2735,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68292,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98469,'QST_BanSah303_001','s1f4','bnpc4629358',4629358,-360.273712,-39.250469,-369.277405,-0.991085,2844,0,0,0,1,6,0,0,2737,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67116,1,0,0,0,0,0,0,4,213); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98469,'QST_BanSah303_001','s1f4','bnpc4629359',4629359,-368.551605,-39.649830,-356.702393,-0.727379,2844,0,0,0,1,6,0,0,2737,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66844,1,0,0,0,0,0,0,4,213); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98469,'QST_BanSah303_001','s1f4','bnpc4629360',4629360,-374.618408,-39.467499,-351.446899,-0.865285,2844,0,0,0,1,6,0,0,2737,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66572,1,0,0,0,0,0,0,4,213); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98469,'QST_BanSah303_001','s1f4','bnpc4629361',4629361,-355.395813,-38.557800,-378.612396,-1.148235,2844,0,0,0,1,6,0,0,2737,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66300,1,0,0,0,0,0,0,4,213); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98469,'QST_BanSah303_001','s1f4','bnpc4629362',4629362,-363.410889,-39.422298,-362.723389,-0.813326,2844,0,0,0,1,6,0,0,2737,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66028,1,0,0,0,0,0,0,4,213); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98540,'QST_BanSah304_001','s1f4','bnpc4632677',4632677,-362.954590,-35.466728,-403.492798,0.194602,2858,0,0,0,1,6,0,0,2680,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65360,1,0,0,0,0,0,0,337,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98540,'QST_BanSah304_001','s1f4','bnpc4632682',4632682,-363.790314,-35.294189,-432.324097,0.082357,2858,0,0,0,1,6,0,0,2680,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65088,1,0,0,0,0,0,0,337,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98540,'QST_BanSah304_001','s1f4','bnpc4632686',4632686,-367.344788,-38.630692,-393.614014,-0.037119,2858,0,0,0,1,6,0,0,2680,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64816,1,0,0,0,0,0,0,337,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98540,'QST_BanSah304_001','s1f4','bnpc4632689',4632689,-354.177185,-35.294189,-412.710785,1.480506,2858,0,0,0,1,6,0,0,2680,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64544,1,0,0,0,0,0,0,337,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98540,'QST_BanSah304_001','s1f4','bnpc4632678',4632678,-359.403107,-35.466740,-404.027588,-0.588909,2859,0,0,0,1,6,0,0,2681,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64278,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98540,'QST_BanSah304_001','s1f4','bnpc4632683',4632683,-361.348907,-35.324711,-433.361694,-0.642268,2859,0,0,0,1,6,0,0,2681,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64006,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98540,'QST_BanSah304_001','s1f4','bnpc4632688',4632688,-370.168793,-38.630680,-392.444214,0.457591,2859,0,0,0,1,6,0,0,2681,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63734,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98540,'QST_BanSah304_001','s1f4','bnpc4632690',4632690,-350.699005,-35.287498,-408.938995,-0.111072,2859,0,0,0,1,6,0,0,2681,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63462,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98520,'QST_BanSah305','s1f4','bnpc4631464',4631464,-375.652893,-40.014919,-216.496994,-0.000000,2878,0,0,0,1,6,0,0,2738,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62984,1,0,0,0,0,0,0,634,49); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98520,'QST_BanSah305','s1f4','bnpc4631468',4631468,-367.979706,-39.977360,-211.411102,-0.000000,2879,0,0,0,1,6,0,0,2739,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62718,1,0,0,0,0,0,0,637,52); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98520,'QST_BanSah305','s1f4','bnpc4631469',4631469,-374.168793,-40.145592,-211.064804,-0.000000,2880,0,0,0,1,6,0,0,2740,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62452,1,0,0,0,0,0,0,636,51); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98521,'QST_BanSah306','s1f4','bnpc4631504',4631504,-503.114899,-32.086712,-352.455994,1.241705,2907,0,0,0,1,6,0,0,2678,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61530,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98521,'QST_BanSah306','s1f4','bnpc4631508',4631508,-512.496582,-32.050011,-352.506012,1.169851,2907,0,0,0,1,6,0,0,2678,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61258,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98521,'QST_BanSah306','s1f4','bnpc4631511',4631511,-518.435181,-31.685080,-365.290100,1.378495,2907,0,0,0,1,6,0,0,2678,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60986,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98521,'QST_BanSah306','s1f4','bnpc4631515',4631515,-516.785889,-30.651489,-380.469391,1.283187,2907,0,0,0,1,6,0,0,2678,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60714,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98521,'QST_BanSah306','s1f4','bnpc4631518',4631518,-505.773987,-30.811140,-386.548492,1.358646,2907,0,0,0,1,6,0,0,2678,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60442,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98521,'QST_BanSah306','s1f4','bnpc4681329',4681329,-502.992889,-32.229389,-354.755005,1.272162,2908,0,0,0,1,6,0,0,2679,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59496,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98521,'QST_BanSah306','s1f4','bnpc4681330',4681330,-497.760712,-32.152920,-353.558594,-1.266498,2909,0,0,0,1,6,0,0,2680,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98521,'QST_BanSah306','s1f4','bnpc4681332',4681332,-513.112976,-32.168060,-354.600403,1.530369,2908,0,0,0,1,6,0,0,2679,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58952,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98521,'QST_BanSah306','s1f4','bnpc4681333',4681333,-508.669800,-32.221291,-355.106995,-1.134267,2909,0,0,0,1,6,0,0,2680,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98521,'QST_BanSah306','s1f4','bnpc4681334',4681334,-518.296204,-31.491369,-367.526398,1.382895,2908,0,0,0,1,6,0,0,2679,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58408,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98521,'QST_BanSah306','s1f4','bnpc4681335',4681335,-513.471802,-31.903130,-366.730804,-1.556857,2909,0,0,0,1,6,0,0,2680,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58142,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98521,'QST_BanSah306','s1f4','bnpc4681336',4681336,-516.937378,-30.863871,-378.738098,1.359571,2908,0,0,0,1,6,0,0,2679,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57864,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98521,'QST_BanSah306','s1f4','bnpc4681337',4681337,-513.453430,-30.813110,-382.631500,-0.000000,2909,0,0,0,1,6,0,0,2680,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57598,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98521,'QST_BanSah306','s1f4','bnpc4681338',4681338,-505.794800,-31.133270,-384.906189,1.406866,2908,0,0,0,1,6,0,0,2679,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57320,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98521,'QST_BanSah306','s1f4','bnpc4681339',4681339,-501.669403,-30.880671,-387.079315,-1.215154,2909,0,0,0,1,6,0,0,2680,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57054,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99260,'QST_BanSah307','s1f4','bnpc4667256',4667256,-827.481384,-25.652769,973.390503,-0.000000,2910,0,0,0,1,6,0,0,2741,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56652,1,0,0,0,0,0,0,636,53); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99232,'QST_BanSah309_001','s1f4','bnpc4665715',4665715,-937.897217,-31.757589,843.457214,-0.000000,2847,0,0,0,1,6,0,0,2725,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55450,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99232,'QST_BanSah309_001','s1f4','bnpc4665716',4665716,-928.728821,-30.260000,829.366882,-1.205428,2847,0,0,0,1,6,0,0,2725,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55178,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99232,'QST_BanSah309_001','s1f4','bnpc4665717',4665717,-915.308289,-31.754271,821.368530,-0.520724,2847,0,0,0,1,6,0,0,2725,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54906,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99232,'QST_BanSah309_001','s1f4','bnpc4665718',4665718,-930.997314,-29.757010,841.048828,1.160407,2847,0,0,0,1,6,0,0,2725,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54634,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92375,'QST_ClsAcn150','s1f4','bnpc4261265',4261265,206.761093,-36.400730,308.350189,-0.374531,317,0,0,0,1,6,0,0,1107,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52162,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92375,'QST_ClsAcn150','s1f4','bnpc4261272',4261272,199.000793,-36.384892,302.752289,1.140848,318,0,0,0,1,6,0,0,1107,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51968,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81669,'QST_ClsExc150_000','s1f4','bnpc3633691',3633691,93.492073,-13.843020,150.938599,0.582514,28,0,0,0,1,6,0,0,966,0,0.000000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50094,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81668,'QST_ClsExc200_000','s1f4','bnpc3633780',3633780,343.954407,-18.471279,165.477005,1.090054,12,0,0,0,1,6,0,0,1315,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48480,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81668,'QST_ClsExc200_000','s1f4','bnpc3633781',3633781,352.896210,-18.145090,169.413895,-0.873616,12,0,0,0,1,6,0,0,1315,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48208,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81668,'QST_ClsExc200_000','s1f4','bnpc3633884',3633884,293.296997,-13.818800,150.642899,1.066325,12,0,0,0,1,6,0,0,1315,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47936,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81668,'QST_ClsExc200_000','s1f4','bnpc3633885',3633885,301.292786,-14.392510,144.813904,-0.729563,12,0,0,0,1,6,0,0,1315,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47664,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93176,'QST_GaiUsc206','s1f4','bnpc4300168',4300168,-505.318604,-36.545681,727.825684,1.388238,1916,0,0,0,1,6,0,0,236,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29834,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93469,'QST_GaiUsc803','s1f4','bnpc4308997',4308997,338.893707,-21.466351,184.848801,-1.409166,2095,0,0,0,1,6,0,0,346,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27200,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93469,'QST_GaiUsc803','s1f4','bnpc4308998',4308998,337.220490,-21.251740,178.190399,-0.333604,2096,0,0,0,1,6,0,0,342,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26934,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93469,'QST_GaiUsc803','s1f4','bnpc4308999',4308999,339.791504,-21.203291,180.960800,-1.054470,2095,0,0,0,1,6,0,0,346,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26656,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93521,'QST_GaiUsc804','s1f4','bnpc4309336',4309336,-416.639313,-28.387011,-244.392197,0.317785,2102,0,0,0,1,6,0,0,2181,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26176,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93223,'QST_GaiUsc811','s1f4','bnpc4309128',4309128,-443.537994,-41.088409,-231.460800,0.681398,2098,0,0,0,1,6,0,0,347,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24614,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93223,'QST_GaiUsc811','s1f4','bnpc4309132',4309132,-404.196014,-37.633221,-244.213699,1.130746,2101,0,0,0,1,6,0,0,345,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24348,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93223,'QST_GaiUsc811','s1f4','bnpc4309129',4309129,-441.659607,-41.056728,-233.091003,0.241286,2101,0,0,0,1,6,0,0,345,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24076,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93223,'QST_GaiUsc811','s1f4','bnpc4309130',4309130,-414.078186,-28.387030,-245.828003,-0.127210,2098,0,0,0,1,6,0,0,347,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23798,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93223,'QST_GaiUsc811','s1f4','bnpc4309131',4309131,-412.339508,-28.387051,-248.169403,-0.621463,2101,0,0,0,1,6,0,0,345,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23532,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93223,'QST_GaiUsc811','s1f4','bnpc4309133',4309133,-405.406311,-37.629669,-242.264603,1.128753,2098,0,0,0,1,6,0,0,347,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23254,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98448,'QST_GaiUse213','s1f4','bnpc4628559',4628559,-42.477409,-21.696760,-135.238205,0.852982,2858,0,0,0,1,6,0,0,2674,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22172,1,0,0,0,0,0,0,337,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98448,'QST_GaiUse213','s1f4','bnpc4628560',4628560,-41.521450,-22.097879,-142.648895,0.533844,2859,0,0,0,1,6,0,0,2676,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21906,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98448,'QST_GaiUse213','s1f4','bnpc4628566',4628566,-120.452599,-32.327389,-149.914398,0.963486,766,0,0,0,1,6,0,0,2675,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21598,1,0,0,0,0,0,0,341,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98448,'QST_GaiUse213','s1f4','bnpc4628567',4628567,-116.237503,-32.164440,-107.873299,1.170748,2858,0,0,0,1,6,0,0,2674,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21356,1,0,0,0,0,0,0,337,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98448,'QST_GaiUse213','s1f4','bnpc4628568',4628568,-120.072197,-32.410069,-96.893013,0.973858,2859,0,0,0,1,6,0,0,2676,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21090,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98449,'QST_GaiUse214','s1f4','bnpc4628586',4628586,-443.122009,-40.828659,-239.458801,-1.385600,2861,0,0,0,1,6,0,0,2677,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20294,1,0,0,0,0,0,0,388,51); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98449,'QST_GaiUse214','s1f4','bnpc4628587',4628587,-440.832794,-40.950710,-236.401505,-1.070966,2862,0,0,0,1,6,0,0,2677,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20028,1,0,0,0,0,0,0,387,50); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98449,'QST_GaiUse214','s1f4','bnpc4628588',4628588,-439.018799,-40.424660,-242.431793,-1.439761,2863,0,0,0,1,6,0,0,2677,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19762,1,0,0,0,0,0,0,389,52); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98450,'QST_GaiUse215','s1f4','bnpc4628675',4628675,-239.618805,-41.299740,-240.368103,0.619849,2890,0,0,0,1,6,0,0,2678,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16820,1,0,0,0,0,0,0,337,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98450,'QST_GaiUse215','s1f4','bnpc4628676',4628676,-240.012894,-41.421089,-244.949097,0.417039,2891,0,0,0,1,6,0,0,2679,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16554,1,0,0,0,0,0,0,341,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98450,'QST_GaiUse215','s1f4','bnpc4628678',4628678,-200.169098,-42.000000,-255.032196,-0.613646,2890,0,0,0,1,6,0,0,2678,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16276,1,0,0,0,0,0,0,337,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98450,'QST_GaiUse215','s1f4','bnpc4628679',4628679,-201.223297,-41.795689,-259.423798,-0.294743,2891,0,0,0,1,6,0,0,2679,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16010,1,0,0,0,0,0,0,341,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98450,'QST_GaiUse215','s1f4','bnpc4628680',4628680,-245.823303,-42.000000,-310.833313,0.687842,2892,0,0,0,1,6,0,0,2680,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15744,1,0,0,0,0,0,0,339,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98450,'QST_GaiUse215','s1f4','bnpc4628681',4628681,-251.964600,-42.000000,-308.937592,1.199238,2893,0,0,0,1,6,0,0,2678,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15478,1,0,0,0,0,0,0,337,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98450,'QST_GaiUse215','s1f4','bnpc4628682',4628682,-249.602295,-42.000000,-311.559204,0.924960,2894,0,0,0,1,6,0,0,2679,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15212,1,0,0,0,0,0,0,341,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98450,'QST_GaiUse215','s1f4','bnpc4628683',4628683,-247.223007,-42.000000,-318.567108,0.268871,2895,0,0,0,1,6,0,0,2681,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14946,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98450,'QST_GaiUse215','s1f4','bnpc4628684',4628684,-195.948196,-39.965549,-327.026611,0.268511,2892,0,0,0,1,6,0,0,2680,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14656,1,0,0,0,0,0,0,339,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98450,'QST_GaiUse215','s1f4','bnpc4628685',4628685,-193.119904,-39.757900,-330.530609,-0.121311,2893,0,0,0,1,6,0,0,2678,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14390,1,0,0,0,0,0,0,337,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98450,'QST_GaiUse215','s1f4','bnpc4628687',4628687,-194.952393,-39.694382,-331.090912,0.073263,2894,0,0,0,1,6,0,0,2679,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14124,1,0,0,0,0,0,0,341,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98450,'QST_GaiUse215','s1f4','bnpc4628688',4628688,-197.941803,-39.317471,-333.891205,0.387825,2895,0,0,0,1,6,0,0,2681,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13858,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98450,'QST_GaiUse215','s1f4','bnpc4628692',4628692,-306.463287,-40.472038,-317.233795,0.723421,2896,0,0,0,1,6,0,0,2680,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13592,1,0,0,0,0,0,0,339,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98450,'QST_GaiUse215','s1f4','bnpc4628693',4628693,-313.267914,-41.122231,-324.110413,1.342553,2897,0,0,0,1,6,0,0,2681,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13326,1,0,0,0,0,0,0,340,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98450,'QST_GaiUse215','s1f4','bnpc4628694',4628694,-306.776001,-40.869881,-320.946106,0.946374,2898,0,0,0,1,6,0,0,2682,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13060,1,0,0,0,0,0,0,386,49); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99746,'QST_SubCts812_001','s1f4','bnpc4696184',4696184,247.835007,-12.337940,102.279198,0.610463,397,0,0,0,1,6,0,0,2755,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9390,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99746,'QST_SubCts812_001','s1f4','bnpc4696185',4696185,253.555801,-11.835900,99.288513,0.175738,397,0,0,0,1,6,0,0,2755,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9118,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84564,'QST_SubSea106_001','s1f4','bnpc3929855',3929855,606.110779,31.202200,355.559387,-0.549044,17,0,0,0,1,6,0,0,963,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8256,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84645,'QST_SubSea108_001','s1f4','bnpc3929524',3929524,533.391479,24.962780,311.262085,-0.452700,340,0,0,0,1,6,0,0,394,0,0.000000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6998,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84645,'QST_SubSea108_001','s1f4','bnpc3929528',3929528,622.102112,39.745590,332.764191,0.906006,340,0,0,0,1,6,0,0,394,0,0.000000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6726,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84645,'QST_SubSea108_001','s1f4','bnpc3929529',3929529,602.479370,23.350651,377.933990,-1.118468,340,0,0,0,1,6,0,0,394,0,0.000000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6454,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84645,'QST_SubSea108_001','s1f4','bnpc3929531',3929531,643.904419,25.457529,391.996307,-1.522648,340,0,0,0,1,6,0,0,394,0,0.000000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6182,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84645,'QST_SubSea108_001','s1f4','bnpc3929555',3929555,535.267578,23.089781,338.279602,-0.288002,340,0,0,0,1,6,0,0,394,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5910,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84645,'QST_SubSea108_001','s1f4','bnpc3929560',3929560,644.726379,42.849682,321.554688,-1.470209,340,0,0,0,1,6,0,0,394,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5638,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84645,'QST_SubSea108_001','s1f4','bnpc3929563',3929563,592.257813,26.331989,361.452209,-0.188823,340,0,0,0,1,6,0,0,394,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5366,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84645,'QST_SubSea108_001','s1f4','bnpc3929569',3929569,625.334106,22.167271,394.390411,0.935066,340,0,0,0,1,6,0,0,394,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5094,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96672,'QST_SubSea156','s1f4','bnpc4507187',4507187,220.126297,-36.406910,328.413086,-0.169820,1390,0,0,0,1,6,0,0,908,0,0.000000,15,0,114,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3872,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96674,'QST_SubSea158','s1f4','bnpc4507190',4507190,206.043594,-16.330950,105.158897,-0.000000,2447,0,0,0,1,6,0,0,1205,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2910,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96674,'QST_SubSea158','s1f4','bnpc4507192',4507192,210.158600,-16.183910,105.464600,-0.000000,2447,0,0,0,1,6,0,0,1205,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2638,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93938,'QST_SubSea161_001','s1f4','bnpc4326218',4326218,56.076900,-13.504330,39.169922,-0.946337,339,0,0,0,1,6,0,0,393,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2160,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93938,'QST_SubSea161_001','s1f4','bnpc4328280',4328280,57.040981,-13.781420,42.587059,-1.262177,339,0,0,0,1,6,0,0,393,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1888,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125683',4125683,-430.132813,-4.460994,252.733902,-0.000000,303,0,0,0,1,6,0,0,1180,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70376,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125744',4125744,-425.421906,-5.333291,249.054504,-0.000000,303,0,0,0,1,6,0,0,1180,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70104,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125745',4125745,-466.306793,-7.092595,232.199203,-0.000048,303,0,0,0,1,6,0,0,1180,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69832,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125747',4125747,-443.584503,-13.024020,208.694595,-0.000000,303,0,0,0,1,6,0,0,1180,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69560,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125750',4125750,-384.939392,-2.456726,215.991302,-0.000048,303,0,0,0,1,6,0,0,1180,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69288,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125752',4125752,-401.977203,-3.269313,175.769104,-0.000048,303,0,0,0,1,6,0,0,1180,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69016,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125755',4125755,-369.548309,0.004147,192.516693,-0.000048,303,0,0,0,1,6,0,0,1180,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68744,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125756',4125756,-398.737305,-2.894251,174.231705,-0.000048,303,0,0,0,1,6,0,0,1180,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68472,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125763',4125763,-396.099915,-3.100000,145.190201,-0.000000,382,0,0,0,1,6,0,0,638,0,0.000000,21,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68206,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125766',4125766,-393.865906,-3.100000,143.932800,-0.000000,382,0,0,0,1,6,0,0,638,0,0.000000,21,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67934,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125767',4125767,-386.391907,-3.100003,157.227005,-0.000000,382,0,0,0,1,6,0,0,638,0,0.000000,21,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67662,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125768',4125768,-378.088715,-3.100000,148.268097,-0.000000,382,0,0,0,1,6,0,0,638,0,0.000000,21,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67390,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125769',4125769,-406.202789,-3.100000,152.051300,-0.000000,382,0,0,0,1,6,0,0,638,0,0.000000,21,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67118,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125772',4125772,-405.765289,-3.100000,141.705704,-0.000000,382,0,0,0,1,6,0,0,638,0,0.000000,21,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66846,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125778',4125778,-366.663391,-1.920207,156.406006,-0.000000,382,0,0,0,1,6,0,0,638,0,0.000000,21,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66574,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125779',4125779,-420.247314,-1.484060,141.641296,-0.000000,382,0,0,0,1,6,0,0,638,0,0.000000,21,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66302,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125784',4125784,-410.220001,-3.100000,26.344061,-0.000000,159,0,0,0,1,6,0,0,381,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66036,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125795',4125795,-409.830414,-3.100000,41.699661,-0.000000,159,0,0,0,1,6,0,0,381,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65764,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125797',4125797,-431.816986,-3.100000,23.416639,-0.000000,159,0,0,0,1,6,0,0,381,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65492,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125801',4125801,-433.412598,-3.100000,18.522329,-0.000048,159,0,0,0,1,6,0,0,381,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65220,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125802',4125802,-479.417297,-3.100000,-1.863089,-0.000000,159,0,0,0,1,6,0,0,381,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64948,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125803',4125803,-512.265808,-3.100000,-6.092242,-0.000000,159,0,0,0,1,6,0,0,381,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64676,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125804',4125804,-518.534912,-3.100008,-9.719651,-0.000000,159,0,0,0,1,6,0,0,381,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64404,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125808',4125808,-593.263123,-2.203172,-36.779171,-0.000000,28,0,0,0,1,6,0,0,28,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64138,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125810',4125810,-564.081787,-1.780965,-9.216994,0.830797,28,0,0,0,1,6,0,0,28,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63866,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125812',4125812,-595.108887,-1.485892,9.388672,1.147631,28,0,0,0,1,6,0,0,28,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63594,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125815',4125815,-650.354675,-3.100002,5.733859,0.837593,28,0,0,0,1,6,0,0,28,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63322,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125820',4125820,-627.241516,-3.100004,-1.093794,1.122001,28,0,0,0,1,6,0,0,28,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63050,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125822',4125822,-593.917175,-1.481592,-0.002720,0.817157,28,0,0,0,1,6,0,0,28,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62778,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125843',4125843,-400.381500,43.564449,-4.135254,1.059757,328,0,0,0,1,6,0,0,380,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62512,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125844',4125844,-391.328400,44.270889,-5.423687,-0.000048,329,0,0,0,0,6,0,0,370,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62246,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125848',4125848,-440.943298,31.565310,58.753658,-0.000048,328,0,0,0,1,6,0,0,380,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61968,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125849',4125849,-428.585693,37.782028,19.815300,-0.000000,329,0,0,0,1,6,0,0,370,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61702,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125851',4125851,-404.069885,36.076439,36.532841,0.251770,328,0,0,0,0,6,0,0,380,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61424,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125852',4125852,-402.817291,36.137718,33.293110,-0.672665,329,0,0,0,0,6,0,0,370,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61158,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125853',4125853,-478.698395,28.016800,54.543690,-0.000048,329,0,0,0,1,6,0,0,370,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60886,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125854',4125854,-378.043213,38.659840,29.684401,-0.000048,328,0,0,0,1,6,0,0,380,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60608,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125855',4125855,-482.932800,26.474369,57.663818,-0.000048,329,0,0,0,1,6,0,0,370,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60342,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125856',4125856,-465.260010,36.882080,31.197201,-0.000000,328,0,0,0,1,6,0,0,380,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60064,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125938',4125938,-477.459015,-2.084961,31.291599,-0.000000,329,0,0,0,1,6,0,0,370,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59798,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125940',4125940,-486.273987,-2.193239,25.343540,-0.000048,328,0,0,0,1,6,0,0,380,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59520,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125942',4125942,-489.859711,-2.618297,38.082218,-0.229593,328,0,0,0,0,6,0,0,380,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59248,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125943',4125943,-491.041992,-2.412468,34.461601,0.595438,329,0,0,0,0,6,0,0,370,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58982,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125949',4125949,-467.209808,-2.220885,253.157806,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,20,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58716,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125951',4125951,-468.934601,-2.134753,251.403000,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,20,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58444,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125952',4125952,-435.089508,-7.852676,240.201996,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,20,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58172,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125953',4125953,-421.885315,-7.810967,200.294296,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,20,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57900,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125954',4125954,-385.569489,-1.927866,179.288498,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,20,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57628,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125955',4125955,-355.833588,-0.654633,170.008102,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,20,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57356,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125957',4125957,-414.132385,-3.313842,165.281601,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,21,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57084,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125959',4125959,-438.587494,-1.647789,125.521599,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,21,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56812,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125961',4125961,-439.676910,-1.549295,123.968102,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,21,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56540,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125964',4125964,-425.339294,-2.050552,105.144096,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,21,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56268,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125968',4125968,-430.014313,-2.101961,59.509911,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,22,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55996,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125972',4125972,-479.200195,-2.255513,23.531839,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,22,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55724,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125974',4125974,-553.856689,-2.609314,1.632629,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,23,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55452,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125977',4125977,-585.334229,-2.232086,-15.587410,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,23,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55180,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125978',4125978,-586.275085,-2.093815,-14.228230,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,23,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54908,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125981',4125981,-429.866486,34.005150,42.804970,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,24,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54636,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125985',4125985,-469.631805,31.277020,45.936749,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,24,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54364,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89200,'LVD_BNPC_01','s1f5','bnpc4125986',4125986,-382.392395,40.251968,10.964420,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,24,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54092,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126060',4126060,590.199829,-3.100000,139.805496,-0.000048,383,0,0,0,1,6,0,0,642,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53466,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126064',4126064,637.447083,-3.100000,169.287994,-0.000048,383,0,0,0,1,6,0,0,642,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53194,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126065',4126065,624.633972,-3.100000,133.809998,-0.000048,383,0,0,0,1,6,0,0,642,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52922,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126066',4126066,576.989380,-3.128174,128.160400,-0.000048,383,0,0,0,1,6,0,0,642,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52650,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126068',4126068,585.121216,-3.100000,167.812897,-0.000048,383,0,0,0,1,6,0,0,642,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52378,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126069',4126069,574.338806,-3.100000,131.902802,-0.000048,383,0,0,0,1,6,0,0,642,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52106,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126070',4126070,640.462585,-3.100000,171.417999,-0.000048,383,0,0,0,1,6,0,0,642,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51834,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126071',4126071,633.408691,-3.100000,187.767105,-0.000048,383,0,0,0,1,6,0,0,642,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51562,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126072',4126072,564.760071,-3.100325,203.277802,-0.000048,383,0,0,0,1,6,0,0,642,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51290,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126110',4126110,420.178009,-3.100000,155.939606,-0.000000,389,0,0,0,1,6,0,0,643,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51024,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126111',4126111,446.875000,-3.100000,175.658096,-0.000000,389,0,0,0,1,6,0,0,643,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50752,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126112',4126112,437.292786,-3.100000,194.681793,-0.000048,389,0,0,0,1,6,0,0,643,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50480,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126113',4126113,401.780914,-3.100000,183.057205,-0.000048,389,0,0,0,1,6,0,0,643,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50208,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126114',4126114,394.433014,-3.100000,141.594101,-0.000000,389,0,0,0,1,6,0,0,643,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49936,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126115',4126115,390.221100,-3.100000,144.688904,-0.000000,389,0,0,0,1,6,0,0,643,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49664,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126116',4126116,369.374298,-3.100012,127.962303,-0.000000,389,0,0,0,1,6,0,0,643,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49392,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126117',4126117,380.599792,-3.100016,17.808519,-0.000000,389,0,0,0,1,6,0,0,643,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49120,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126118',4126118,376.532288,-3.100016,22.182360,-0.000000,389,0,0,0,1,6,0,0,643,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48848,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126119',4126119,358.780792,-3.100016,33.644321,-0.000000,389,0,0,0,1,6,0,0,643,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48576,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126120',4126120,440.921600,-3.100000,192.138596,-0.000048,389,0,0,0,1,6,0,0,643,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48304,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126133',4126133,338.338287,-0.869812,206.256104,-0.000048,343,0,0,0,1,6,0,0,414,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48038,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126134',4126134,342.366699,-1.510742,208.392303,-0.000048,344,0,0,0,1,6,0,0,413,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47772,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126135',4126135,363.240997,-1.083435,209.918304,-0.000048,345,0,0,0,1,6,0,0,416,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47506,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126136',4126136,352.468109,-2.426208,192.339798,-0.000048,346,0,0,0,1,6,0,0,415,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47240,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126137',4126137,323.811615,-2.517761,78.690804,-0.000048,344,0,0,0,1,6,0,0,413,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46956,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126138',4126138,334.004608,-2.517761,104.631104,-0.000048,345,0,0,0,1,6,0,0,416,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46690,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126139',4126139,301.655487,-2.548279,92.088127,-0.000048,346,0,0,0,1,6,0,0,415,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46424,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126140',4126140,299.427704,-2.548279,95.109383,-0.000048,343,0,0,0,1,6,0,0,414,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46134,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126141',4126141,595.239075,-2.517761,216.113495,-0.000048,343,0,0,0,1,6,0,0,414,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45862,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126142',4126142,590.905579,-1.602234,208.758698,-0.000048,345,0,0,0,1,6,0,0,416,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45602,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126143',4126143,571.892822,-2.517761,189.532196,-0.000048,344,0,0,0,1,6,0,0,413,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45324,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126144',4126144,614.526489,-2.548279,199.420197,-0.000048,346,0,0,0,1,6,0,0,415,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45064,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126145',4126145,377.982513,3.082690,-10.971560,-0.000048,344,0,0,0,1,6,0,0,413,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44780,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126146',4126146,358.682709,1.620175,-3.517888,-0.000048,345,0,0,0,1,6,0,0,416,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44514,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126147',4126147,356.030396,0.471913,-0.493977,-0.000048,346,0,0,0,1,6,0,0,415,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44248,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126148',4126148,321.975311,-2.309778,2.777854,-0.000048,343,0,0,0,1,6,0,0,414,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126149',4126149,369.527588,23.636169,-126.329498,-0.000048,328,0,0,0,1,6,0,0,379,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43656,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126150',4126150,365.261505,24.531950,-141.892105,-0.435047,329,0,0,0,0,6,0,0,369,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43390,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126151',4126151,376.211090,23.514099,-136.919296,-0.000048,330,0,0,0,1,6,0,0,376,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43166,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126152',4126152,262.362488,26.421909,-92.842506,-0.660707,329,0,0,0,0,6,0,0,369,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42846,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126153',4126153,259.484711,26.393141,-94.860497,1.213050,330,0,0,0,0,6,0,0,376,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42622,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126154',4126154,289.894501,21.974110,-95.414726,-0.000048,328,0,0,0,1,6,0,0,379,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42296,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126155',4126155,342.356110,27.484810,-150.423996,-0.000048,328,0,0,0,1,6,0,0,379,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42024,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126156',4126156,336.954010,12.465180,-69.307114,-0.000048,329,0,0,0,1,6,0,0,369,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41758,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126157',4126157,263.538513,33.493530,-145.616898,-0.000048,330,0,0,0,1,6,0,0,376,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41534,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126121',4126121,299.763397,-3.100003,155.110306,0.495627,139,0,0,0,1,6,0,0,391,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41268,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126122',4126122,328.125793,-3.100003,150.720703,1.023612,139,0,0,0,1,6,0,0,391,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40996,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126124',4126124,287.582489,-3.100012,33.655041,0.495627,139,0,0,0,1,6,0,0,391,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40724,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126125',4126125,327.775513,-3.100016,30.262211,0.495715,139,0,0,0,1,6,0,0,391,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40452,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126127',4126127,293.655487,-3.100016,37.213219,0.495627,139,0,0,0,1,6,0,0,391,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40180,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126129',4126129,272.029205,-3.100012,83.103783,0.792645,139,0,0,0,1,6,0,0,391,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39908,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126131',4126131,303.497009,-3.100003,149.039093,0.495627,139,0,0,0,1,6,0,0,391,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39636,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126201',4126201,687.981384,-0.741994,125.134102,-0.000048,345,0,0,0,1,6,0,0,416,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39346,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126202',4126202,665.960205,-1.478390,135.026901,-0.000048,343,0,0,0,1,6,0,0,414,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39062,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126203',4126203,704.842712,-0.435132,136.984604,-0.000048,346,0,0,0,1,6,0,0,415,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38808,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126204',4126204,700.169128,-0.449296,142.053299,-0.000048,344,0,0,0,1,6,0,0,413,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38524,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126250',4126250,663.416870,-3.100000,163.420700,-0.000000,59,0,0,0,1,6,0,0,56,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38282,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126251',4126251,601.270325,-3.100000,130.947296,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38010,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126253',4126253,620.669922,-3.051413,181.877808,-0.000000,59,0,0,0,1,6,0,0,56,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37738,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126254',4126254,541.538879,-3.100000,155.849396,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37466,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126256',4126256,538.999573,-3.100000,152.828400,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37194,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126259',4126259,390.150787,-3.100000,175.607697,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36922,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126266',4126266,359.669403,-3.100003,142.000702,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36650,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126267',4126267,359.969391,-3.100016,53.416809,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36378,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126268',4126268,325.831085,-3.128174,90.616592,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36106,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126270',4126270,250.098404,-3.100526,79.563713,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35834,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126271',4126271,302.732788,-3.100012,124.098297,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35562,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126273',4126273,273.024994,-3.100202,221.399399,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,33,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35290,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126274',4126274,249.098404,-3.100000,249.991501,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,33,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35018,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126275',4126275,271.496887,-3.100202,223.957397,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,33,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34746,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126277',4126277,246.158798,-3.100526,39.638111,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34474,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126278',4126278,246.458801,-3.100526,81.666367,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34202,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89205,'LVD_BNPC_02','s1f5','bnpc4126279',4126279,308.674408,-3.100016,18.911890,-0.000048,59,0,0,0,1,6,0,0,56,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33930,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98344,'LVD_easter_2014','s1f5','bnpc4621610',4621610,488.661896,8.812365,96.352119,-1.020949,2772,0,0,0,0,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14176,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98344,'LVD_easter_2014','s1f5','bnpc4621612',4621612,-355.266296,10.754760,92.445412,-0.000000,2771,0,0,0,1,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13910,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85951,'LVD_guard_01','s1f5','bnpc4057424',4057424,373.678802,0.422750,77.136467,-1.449589,787,0,0,0,0,6,0,0,1273,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13576,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89613,'FATE_002','s1f5','bnpc4142252',4142252,-659.979980,-3.128174,4.246090,0.887563,1288,0,0,0,1,20,0,0,886,0,0.000000,23,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,78176,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89613,'FATE_002','s1f5','bnpc4180161',4180161,-586.986694,-3.100000,-45.797581,-1.025125,1419,0,0,0,1,6,0,0,1312,0,0.000000,23,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,77910,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93677,'FATE_005','s1f5','bnpc4315174',4315174,346.438202,-3.052744,30.285980,0.000096,1154,0,0,0,0,6,0,0,1868,0,0.000000,31,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,76796,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93677,'FATE_005','s1f5','bnpc4315175',4315175,346.411102,-3.052768,39.119080,0.000096,1155,0,0,0,0,6,0,0,1868,0,0.000000,31,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,76530,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93677,'FATE_005','s1f5','bnpc4315181',4315181,346.461395,-3.052744,33.090919,0.000096,2109,0,0,0,0,6,0,0,1604,0,0.000000,31,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,76264,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93677,'FATE_005','s1f5','bnpc4315182',4315182,346.356201,-3.052769,36.346241,-0.021380,2109,0,0,0,0,6,0,0,1604,0,0.000000,31,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,75992,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93650,'FATE_008','s1f5','bnpc4314351',4314351,445.700287,-3.052745,160.694000,1.570451,1195,0,0,0,0,6,0,0,1273,0,0.000000,25,2,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,71318,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93650,'FATE_008','s1f5','bnpc4314353',4314353,449.925995,-3.052744,163.320999,1.570451,1197,0,0,0,0,6,0,0,1273,0,0.000000,25,2,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,71052,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93650,'FATE_008','s1f5','bnpc4315063',4315063,496.339294,-2.891541,163.651703,-1.570796,344,0,0,0,0,6,0,0,413,0,0.000000,27,2,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,67978,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93396,'FATE_010','s1f5','bnpc4305997',4305997,639.122070,-3.100000,134.693405,-0.000000,2148,0,0,0,1,6,0,0,1519,0,0.000000,30,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,66472,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93397,'FATE_011','s1f5','bnpc4306014',4306014,-374.738586,-3.100000,150.698502,1.012291,2149,0,0,0,1,6,0,0,1520,0,0.000000,21,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,65742,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93399,'FATE_017','s1f5','bnpc4306060',4306060,353.858093,-3.100000,155.905594,0.855211,2150,0,0,0,1,6,0,0,1521,0,0.000000,31,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,65012,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93785,'FATE_019','s1f5','bnpc4321583',4321583,351.506104,-3.052768,75.262619,1.557744,2151,0,0,0,0,6,0,0,1522,0,0.000000,33,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,64566,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93785,'FATE_019','s1f5','bnpc4321584',4321584,356.336395,-3.052769,75.445679,-1.493886,1154,0,0,0,0,6,0,0,1331,0,0.000000,33,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,64240,1,0,0,0,0,30007,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93401,'FATE_020','s1f5','bnpc4306227',4306227,382.282898,0.145769,75.666054,-1.518437,1153,0,0,0,1,6,0,0,981,0,0.000000,27,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,59796,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96891,'FATE_DQX_01','s1f5','bnpc4510145',4510145,640.364319,-3.100000,140.643295,-0.533715,2310,0,0,0,1,6,0,0,2221,0,0.000000,30,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,58826,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96891,'FATE_DQX_01','s1f5','bnpc4510147',4510147,663.529602,4.445258,100.938904,-0.425449,2311,0,0,0,1,6,0,0,2222,0,0.000000,30,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,58560,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87013,'FATE_HAMLET','s1f5','bnpc4102539',4102539,-462.546814,2.212463,98.741089,-0.057381,805,0,0,0,0,6,0,0,1239,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57226,1,0,0,0,13,30190,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87013,'FATE_HAMLET','s1f5','bnpc4102540',4102540,-443.310608,19.488661,79.250191,-1.447831,806,0,0,0,0,6,0,0,1239,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56960,1,0,0,0,13,30191,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87013,'FATE_HAMLET','s1f5','bnpc4102541',4102541,-426.341095,-1.850685,69.265343,0.529837,807,0,0,0,0,6,0,0,1239,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56694,1,0,0,0,13,30205,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87013,'FATE_HAMLET','s1f5','bnpc4102542',4102542,-452.292694,3.097534,90.775879,-0.301671,808,0,0,0,0,6,0,0,1240,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56428,1,0,0,0,13,30206,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87013,'FATE_HAMLET','s1f5','bnpc4102543',4102543,-456.351593,25.314699,73.746834,1.195852,809,0,0,0,0,6,0,0,1239,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56162,1,0,0,0,13,30208,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87013,'FATE_HAMLET','s1f5','bnpc4102544',4102544,-462.912994,12.039370,78.873779,0.267348,810,0,0,0,0,6,0,0,1239,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55896,1,0,0,0,13,30207,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87013,'FATE_HAMLET','s1f5','bnpc4102545',4102545,-436.118713,-1.953132,117.008003,-1.466364,811,0,0,0,0,6,0,0,1239,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55630,1,0,0,0,13,30207,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87013,'FATE_HAMLET','s1f5','bnpc4102546',4102546,-379.792603,-2.258431,181.532303,-1.438452,812,0,0,0,0,6,0,0,1239,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55364,1,0,0,0,13,30207,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87013,'FATE_HAMLET','s1f5','bnpc4102547',4102547,-414.730804,-10.858560,217.212494,0.059810,813,0,0,0,0,6,0,0,1239,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55098,1,0,0,0,14,30209,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87013,'FATE_HAMLET','s1f5','bnpc4102549',4102549,-440.667603,-10.352300,234.186096,1.554238,815,0,0,0,0,6,0,0,1240,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54832,1,0,0,0,14,30190,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87013,'FATE_HAMLET','s1f5','bnpc4102550',4102550,-395.499603,-5.579843,197.573196,-1.272987,816,0,0,0,0,6,0,0,1240,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54566,1,0,0,0,14,30190,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87013,'FATE_HAMLET','s1f5','bnpc4102552',4102552,-455.649689,-5.691650,251.514404,1.047341,805,0,0,0,0,6,0,0,1239,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54234,1,0,0,0,13,30207,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87013,'FATE_HAMLET','s1f5','bnpc4102553',4102553,-450.562103,16.904280,79.407043,-1.238502,806,0,0,0,0,6,0,0,1239,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53968,1,0,0,0,13,30205,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87013,'FATE_HAMLET','s1f5','bnpc4102561',4102561,-462.864807,27.461260,73.618042,1.216843,817,0,0,0,0,6,0,0,1238,0,0.000000,21,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53756,1,0,0,0,14,30210,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87013,'FATE_HAMLET','s1f5','bnpc4102560',4102560,-456.585999,-3.592132,259.213989,0.067617,814,0,0,0,0,6,0,0,1239,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53362,1,0,0,0,14,30209,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87013,'FATE_HAMLET','s1f5','bnpc4102548',4102548,-448.416901,2.487183,97.032097,0.008677,816,0,0,0,0,6,0,0,1240,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53014,1,0,0,0,14,30191,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87013,'FATE_HAMLET','s1f5','bnpc4102562',4102562,-468.186188,-12.471500,206.069901,0.595844,1307,0,0,0,0,6,0,0,1237,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52136,1,0,0,0,15,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87019,'FATE_HAMLET_01','s1f5','bnpc4102599',4102599,-507.564911,-1.582741,112.406601,1.347651,1308,0,0,0,3,6,0,0,1241,0,0.000000,17,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36066,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87019,'FATE_HAMLET_01','s1f5','bnpc4102602',4102602,-497.994385,-1.134600,115.714104,1.347651,1308,0,0,0,3,6,0,0,1241,0,0.000000,17,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35794,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87019,'FATE_HAMLET_01','s1f5','bnpc4102603',4102603,-501.337799,-1.119000,144.917801,1.564948,1308,0,0,0,3,6,0,0,1241,0,0.000000,17,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35522,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87019,'FATE_HAMLET_01','s1f5','bnpc4102604',4102604,-491.787598,-1.678700,146.334305,1.564947,1308,0,0,0,3,6,0,0,1241,0,0.000000,17,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35250,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87019,'FATE_HAMLET_01','s1f5','bnpc4102605',4102605,-468.743591,-7.032729,170.957001,0.502359,1308,0,0,0,3,6,0,0,1241,0,0.000000,17,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34978,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87019,'FATE_HAMLET_01','s1f5','bnpc4102606',4102606,-448.325806,-7.954838,182.850494,0.159666,1308,0,0,0,3,6,0,0,1241,0,0.000000,17,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34706,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87034,'FATE_HAMLET_02','s1f5','bnpc4102670',4102670,-435.433014,-1.673271,110.009399,-1.283110,818,0,0,0,1,6,0,0,1372,0,0.000000,22,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31124,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87038,'FATE_HAMLET_03','s1f5','bnpc4102691',4102691,-541.537476,31.900650,66.635399,0.523599,819,0,0,0,1,6,0,0,1234,0,0.000000,22,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29730,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87039,'FATE_HAMLET_04','s1f5','bnpc4102702',4102702,-426.000000,-2.146261,100.789497,-0.349066,1306,0,0,0,1,6,0,0,1233,0,0.000000,22,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86834,'go009','s1f5','bnpc4098729',4098729,-613.855225,-3.128174,-52.689449,0.344528,1126,0,0,0,0,6,0,0,1265,0,0.000000,32,0,120,1,0,1,0,100,20,1,1,0,1,0,0.000000,1.000000,20970,1,1,130,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86834,'go009','s1f5','bnpc4098739',4098739,-609.348877,-3.100168,-21.190340,-0.000000,1127,0,0,0,1,6,0,0,1266,0,0.000000,29,0,120,1,0,1,0,100,20,1,1,0,1,0,0.000000,1.000000,20704,1,0,100,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86834,'go009','s1f5','bnpc4098752',4098752,-626.729126,-3.100059,-25.421869,-0.000000,1027,0,0,0,1,6,0,0,1267,0,0.000000,29,0,120,1,0,0,0,20,20,1,1,0,1,0,0.000000,1.000000,20438,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86834,'go009','s1f5','bnpc4098758',4098758,-618.748779,-3.100112,-23.914150,-0.000000,1028,0,0,0,1,6,0,0,1268,0,0.000000,31,0,120,1,0,0,0,0,0,1,1,0,1,0,0.000000,1.000000,20172,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93303,'QB_JobSch400_001','s1f5','bnpc4303542',4303542,231.820007,5.180000,61.189999,1.462523,1529,0,0,0,1,6,0,0,1650,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19442,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93303,'QB_JobSch400_001','s1f5','bnpc4303610',4303610,226.163895,5.151539,61.021198,-0.000000,1694,0,0,0,1,6,0,0,1924,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18756,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93303,'QB_JobSch400_001','s1f5','bnpc4303611',4303611,231.303497,1.599649,72.407143,-0.000000,1694,0,0,0,1,6,0,0,1924,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18484,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93303,'QB_JobSch400_001','s1f5','bnpc4303612',4303612,230.983902,1.600001,49.629200,-0.000000,1694,0,0,0,1,6,0,0,1924,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18212,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93303,'QB_JobSch400_001','s1f5','bnpc4303613',4303613,224.929703,1.599993,43.434879,-0.000000,1695,0,0,0,1,6,0,0,1925,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17946,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93303,'QB_JobSch400_001','s1f5','bnpc4303615',4303615,261.835297,-3.100000,70.167747,-0.000000,1695,0,0,0,1,6,0,0,1925,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17674,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93303,'QB_JobSch400_001','s1f5','bnpc4303616',4303616,261.823608,-3.100000,52.774460,-0.000000,1695,0,0,0,1,6,0,0,1925,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17402,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93303,'QB_JobSch400_001','s1f5','bnpc4303619',4303619,224.941895,1.600001,78.105537,-0.000000,1696,0,0,0,1,6,0,0,1926,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17136,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93303,'QB_JobSch400_001','s1f5','bnpc4303623',4303623,221.437195,5.184731,65.450317,-0.000000,1694,0,0,0,1,6,0,0,1924,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16852,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93303,'QB_JobSch400_001','s1f5','bnpc4303624',4303624,226.567703,1.599984,74.925217,-0.000000,1694,0,0,0,1,6,0,0,1924,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16580,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93303,'QB_JobSch400_001','s1f5','bnpc4303627',4303627,252.555099,-3.100000,69.352852,-0.000000,1695,0,0,0,1,6,0,0,1925,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16314,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93303,'QB_JobSch400_001','s1f5','bnpc4303628',4303628,252.007202,-3.100000,52.391899,-0.000000,1695,0,0,0,1,6,0,0,1925,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16042,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93303,'QB_JobSch400_001','s1f5','bnpc4303630',4303630,225.374100,1.599531,47.294170,-0.000000,1696,0,0,0,1,6,0,0,1926,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15776,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93303,'QB_JobSch400_001','s1f5','bnpc4303594',4303594,240.833099,1.571593,61.825668,-1.476863,1530,0,0,0,8,6,0,0,2146,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15510,1,0,0,0,0,0,0,675,313); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92467,'QST_ClsAcn250','s1f5','bnpc4264454',4264454,-602.150696,-2.385644,-52.448380,0.471049,39,0,0,0,1,6,0,0,39,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14580,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92467,'QST_ClsAcn250','s1f5','bnpc4264456',4264456,-603.994629,-3.100000,-49.865082,0.810764,39,0,0,0,1,6,0,0,39,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14308,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92467,'QST_ClsAcn250','s1f5','bnpc4264457',4264457,-599.018677,-3.100000,-50.696270,-0.203006,39,0,0,0,1,6,0,0,39,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14036,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96771,'QST_GaiUse104','s1f5','bnpc4504670',4504670,287.696198,-3.100000,145.305099,1.333683,2476,0,0,0,1,6,0,0,391,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6042,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93400,'QST_JobSch_451_001','s1f5','bnpc4306098',4306098,502.208191,16.281380,73.277893,-0.000048,46,0,0,0,1,6,0,0,2056,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3956,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93400,'QST_JobSch_451_001','s1f5','bnpc4306102',4306102,427.825195,7.913098,141.452393,-0.000000,46,0,0,0,1,6,0,0,2056,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3684,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96804,'QST_SubCts802_001','s1f5','bnpc4516154',4516154,596.899170,-2.588363,167.037399,0.515991,2437,0,0,0,1,6,0,0,2375,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2378,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96804,'QST_SubCts802_001','s1f5','bnpc4516155',4516155,606.772522,-2.834582,168.575806,-0.973972,2437,0,0,0,1,6,0,0,2375,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2106,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96804,'QST_SubCts802_001','s1f5','bnpc4516156',4516156,592.561584,-2.737899,171.164597,1.325271,2438,0,0,0,1,6,0,0,2376,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1840,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96804,'QST_SubCts802_001','s1f5','bnpc4516157',4516157,607.922791,-3.128174,173.626495,-1.494761,2438,0,0,0,1,6,0,0,2376,0,0.000000,36,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1568,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126437',4126437,-350.774414,60.171631,-114.217003,-0.000000,65,0,0,0,1,6,0,0,62,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81808,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126772',4126772,-352.653290,55.848209,-94.491707,-0.000000,65,0,0,0,1,6,0,0,62,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81536,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126774',4126774,-320.438599,53.743549,-96.806549,-0.000000,65,0,0,0,1,6,0,0,62,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81264,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126775',4126775,-320.138611,60.230400,-127.837799,-0.835420,65,0,0,0,1,6,0,0,62,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80992,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126776',4126776,-317.718689,59.229080,-124.074898,-0.835420,65,0,0,0,1,6,0,0,62,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80720,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126778',4126778,-342.451508,64.508537,-161.939301,-0.835420,65,0,0,0,1,6,0,0,62,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80448,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126779',4126779,-340.071991,64.500938,-156.101807,-0.835420,65,0,0,0,1,6,0,0,62,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80176,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126781',4126781,-303.273102,62.302608,-149.981003,-0.000048,13,0,0,0,1,6,0,0,398,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79910,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126790',4126790,-302.025085,63.145451,-181.170395,-0.000048,13,0,0,0,1,6,0,0,398,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79638,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126791',4126791,-252.109604,63.981121,-185.517593,-0.000048,13,0,0,0,1,6,0,0,398,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79366,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126793',4126793,-247.891998,63.959759,-187.246796,-0.000048,13,0,0,0,1,6,0,0,398,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79094,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126797',4126797,-212.220093,67.001152,-238.484497,-0.000048,13,0,0,0,1,6,0,0,398,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78822,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126798',4126798,-234.424393,64.164063,-246.631607,-0.000048,13,0,0,0,1,6,0,0,398,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78550,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126800',4126800,-265.156189,63.779259,-249.456497,-0.000048,13,0,0,0,1,6,0,0,398,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78278,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126802',4126802,-211.217896,67.209122,-240.810501,-0.000048,13,0,0,0,1,6,0,0,398,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78006,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126809',4126809,-193.176697,71.634018,-272.623596,-0.000000,2,0,0,0,1,6,0,0,412,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77740,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126812',4126812,-164.668396,79.828140,-263.318298,-0.000000,2,0,0,0,1,6,0,0,412,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77468,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126813',4126813,-127.923798,82.259918,-325.613312,-0.000000,2,0,0,0,1,6,0,0,412,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77196,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126828',4126828,-140.334305,81.612297,-316.766205,-0.000000,2,0,0,0,1,6,0,0,412,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76924,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126829',4126829,-124.052200,79.229347,-291.640015,0.414390,2,0,0,0,1,6,0,0,412,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76652,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126830',4126830,-50.246071,64.465584,-307.680511,0.414469,2,0,0,0,1,6,0,0,412,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76380,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126832',4126832,-54.884800,64.472954,-305.849396,0.414469,2,0,0,0,1,6,0,0,412,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76108,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126839',4126839,-47.205139,63.834221,-271.118011,0.414565,2,0,0,0,1,6,0,0,412,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75836,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126840',4126840,-9.166920,67.539864,-213.059998,0.414469,2,0,0,0,1,6,0,0,412,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75564,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126843',4126843,20.694170,71.412910,-188.727600,0.414469,2,0,0,0,1,6,0,0,412,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75292,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126848',4126848,-320.332611,55.375000,-223.437897,-0.000048,30,0,0,0,1,6,0,0,365,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75026,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126851',4126851,-335.856598,50.124779,-293.071106,-0.000000,30,0,0,0,1,6,0,0,365,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74754,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126853',4126853,-291.706696,54.062618,-289.723114,-0.000048,30,0,0,0,1,6,0,0,365,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74482,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126854',4126854,-350.974792,51.937672,-265.973114,-0.000000,30,0,0,0,1,6,0,0,365,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74210,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126856',4126856,-394.270294,47.225811,-265.673096,-0.000000,30,0,0,0,1,6,0,0,365,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73938,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126857',4126857,-380.974609,48.795952,-318.552704,-0.000048,30,0,0,0,1,6,0,0,365,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73666,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126859',4126859,-403.050812,46.469891,-308.322906,-0.000000,30,0,0,0,1,6,0,0,365,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73394,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126870',4126870,-371.969208,60.471439,-353.597412,1.390048,117,0,0,0,1,6,0,0,106,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73128,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126872',4126872,-373.159393,60.013672,-369.466705,1.159420,117,0,0,0,1,6,0,0,106,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72856,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126876',4126876,-364.485809,64.772636,-305.346100,1.390048,117,0,0,0,1,6,0,0,106,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72584,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126877',4126877,-289.906189,70.603394,-268.879211,1.109420,117,0,0,0,1,6,0,0,106,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72312,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126885',4126885,-307.302704,32.962261,-455.989990,-0.000048,6,0,0,0,1,6,0,0,407,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72046,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126888',4126888,-310.050690,32.641781,-441.091614,-0.000000,6,0,0,0,1,6,0,0,407,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71774,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126889',4126889,-308.762909,32.686890,-438.783905,-0.000000,6,0,0,0,1,6,0,0,407,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71502,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126891',4126891,-293.472809,32.249420,-445.536591,-0.000000,6,0,0,0,1,6,0,0,407,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71230,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126894',4126894,-324.815308,33.758869,-447.159790,-0.000048,6,0,0,0,1,6,0,0,407,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70958,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126896',4126896,-337.932007,21.784920,-514.140076,-0.000000,6,0,0,0,1,6,0,0,407,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70686,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126897',4126897,-289.174194,16.068911,-525.213928,-0.000000,6,0,0,0,1,6,0,0,407,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70414,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126898',4126898,-283.628113,15.642390,-526.527771,-0.000000,6,0,0,0,1,6,0,0,407,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70142,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4127166',4127166,-357.878510,61.652580,-120.536697,-0.000000,135,0,0,0,1,6,0,0,117,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69876,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4127167',4127167,-345.085114,63.068939,-130.748306,-0.000000,135,0,0,0,1,6,0,0,117,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69604,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4127168',4127168,-326.303711,64.375679,-183.813004,-0.000000,135,0,0,0,1,6,0,0,117,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69332,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4127170',4127170,-270.283112,62.668701,-222.644394,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69060,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4127171',4127171,-169.899994,78.435280,-264.339996,-0.000000,135,0,0,0,1,6,0,0,117,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68788,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4127172',4127172,-149.763107,81.401901,-310.291107,-0.000000,135,0,0,0,1,6,0,0,117,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68516,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4127175',4127175,-293.792908,54.872101,-262.400299,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68244,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4127178',4127178,-354.115814,52.784729,-241.254807,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67972,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4127180',4127180,-378.213013,52.894810,-295.929199,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67700,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4127181',4127181,-389.473297,50.199680,-340.988098,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67428,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4127183',4127183,-333.614197,63.203400,-339.065613,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67156,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4127184',4127184,-311.483185,64.156174,-313.589203,-0.000048,135,0,0,0,1,6,0,0,117,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66884,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126864',4126864,-252.033295,64.316650,-320.058014,-0.000048,2269,0,0,0,1,6,0,0,2192,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66618,4,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126883',4126883,-267.841705,64.469360,-327.412811,-1.220923,2269,0,0,0,1,6,0,0,2192,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66346,4,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89225,'LVD_BNPC_01','s1f6','bnpc4126867',4126867,-302.418610,67.307503,-302.326996,-0.000048,2269,0,0,0,1,6,0,0,2192,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66074,4,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127399',4127399,193.652206,64.744019,-256.824585,0.520267,755,0,0,0,0,6,0,0,377,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65508,2,0,0,0,39,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127400',4127400,196.185196,64.744019,-255.054596,-1.151366,756,0,0,0,0,6,0,0,562,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65242,2,0,0,0,39,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127401',4127401,184.893402,64.621948,-259.540710,-0.000048,757,0,0,0,1,6,0,0,375,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64976,2,0,0,0,39,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127404',4127404,194.659302,64.591431,-234.760101,-0.000048,756,0,0,0,1,6,0,0,562,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64698,2,0,0,0,39,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127405',4127405,193.255493,64.072510,-206.164703,-0.000048,755,0,0,0,1,6,0,0,377,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64420,2,0,0,0,39,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127406',4127406,194.720306,64.652344,-240.711105,-0.000048,757,0,0,0,1,6,0,0,375,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64160,2,0,0,0,39,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127408',4127408,188.769302,64.225220,-283.039612,-0.000048,755,0,0,0,1,6,0,0,377,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63876,2,0,0,0,39,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127409',4127409,192.187393,63.797970,-284.504486,-0.000048,757,0,0,0,1,6,0,0,375,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63616,2,0,0,0,39,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127410',4127410,144.182495,70.359253,-264.820313,-0.000048,756,0,0,0,1,6,0,0,562,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63338,2,0,0,0,39,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127411',4127411,71.641113,66.514038,-263.721710,-0.000048,756,0,0,0,1,6,0,0,562,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63066,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127412',4127412,61.875240,65.812134,-240.528000,-0.000048,757,0,0,0,1,6,0,0,375,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62800,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127413',4127413,79.789307,67.826286,-250.385300,0.021189,755,0,0,0,0,6,0,0,377,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62516,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127415',4127415,66.242851,48.572620,-363.161499,-0.000048,757,0,0,0,1,6,0,0,375,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62256,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127416',4127416,16.586550,48.386349,-372.640594,-0.000048,756,0,0,0,1,6,0,0,562,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61978,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127417',4127417,23.453131,48.477909,-367.849213,-0.961725,755,0,0,0,1,6,0,0,377,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61700,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127418',4127418,-17.715820,48.355709,-302.571198,-0.000048,757,0,0,0,1,6,0,0,375,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61440,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127419',4127419,-3.524841,48.325321,-324.818787,-0.000048,756,0,0,0,1,6,0,0,562,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61162,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127420',4127420,-4.867676,48.325321,-320.820892,-0.961725,755,0,0,0,1,6,0,0,377,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60884,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127422',4127422,43.717041,48.416870,-344.197815,0.667196,757,0,0,0,0,6,0,0,375,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60624,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127423',4127423,46.616211,48.294800,-346.456085,-1.293693,756,0,0,0,0,6,0,0,562,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60346,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127424',4127424,73.006866,57.422729,-306.696289,0.876093,755,0,0,0,1,6,0,0,377,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60068,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127426',4127426,76.829102,48.447269,-395.132385,-0.000048,757,0,0,0,1,6,0,0,375,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59808,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127427',4127427,71.335938,48.508419,-408.346710,0.842120,756,0,0,0,0,6,0,0,562,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59530,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127428',4127428,74.143547,48.569462,-406.118896,-0.961725,755,0,0,0,0,6,0,0,377,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59252,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127429',4127429,73.258537,55.588619,-459.098206,-0.000048,757,0,0,0,1,6,0,0,375,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58992,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127430',4127430,61.299801,55.422451,-506.939392,-0.226568,756,0,0,0,0,6,0,0,562,0,0.000000,44,0,120,1,0,13,0,16,2,0,0,0,1,0,0.000000,1.000000,58714,2,0,0,0,0,30406,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127431',4127431,71.572182,55.522911,-505.706207,-0.961725,755,0,0,0,1,6,0,0,377,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58436,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127432',4127432,53.985661,55.599010,-492.126312,-0.972330,757,0,0,0,0,6,0,0,375,0,0.000000,44,0,120,1,0,11,0,16,2,0,0,0,1,0,0.000000,1.000000,58176,2,0,0,0,0,30406,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127433',4127433,53.829788,55.176491,-510.031586,-1.545867,756,0,0,0,0,6,0,0,562,0,0.000000,44,0,120,1,0,12,0,16,2,0,0,0,1,0,0.000000,1.000000,57898,2,0,0,0,0,30406,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127434',4127434,47.135010,56.961788,-498.527496,-0.115474,755,0,0,0,0,6,0,0,377,0,0.000000,44,0,120,1,0,14,0,16,2,0,0,0,0,0,0.000000,1.000000,57620,2,0,0,0,0,30406,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127436',4127436,4.565907,48.924049,-305.236511,-0.000000,327,0,0,0,1,6,0,0,270,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57366,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127440',4127440,-4.979307,49.903141,-348.367401,-0.000000,327,0,0,0,1,6,0,0,270,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57094,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127441',4127441,-3.104779,49.903141,-346.222290,-0.000000,327,0,0,0,1,6,0,0,270,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56822,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127442',4127442,19.638371,48.996700,-333.150299,-0.000048,327,0,0,0,1,6,0,0,270,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56550,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127443',4127443,48.050659,48.172729,-360.189209,-0.000048,327,0,0,0,1,6,0,0,270,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56278,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127444',4127444,88.884468,56.055801,-453.066589,-0.000048,327,0,0,0,1,6,0,0,270,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56006,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127445',4127445,57.083981,48.172729,-382.833588,-0.000048,327,0,0,0,1,6,0,0,270,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55734,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127447',4127447,59.189701,48.172729,-384.481598,-0.000048,327,0,0,0,1,6,0,0,270,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55462,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127449',4127449,56.408760,56.256931,-477.200592,-0.000048,327,0,0,0,1,6,0,0,270,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55190,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127450',4127450,54.048340,55.394890,-501.484192,-0.000048,327,0,0,0,1,6,0,0,270,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54918,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127451',4127451,182.757202,60.685059,-158.617599,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54652,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127453',4127453,181.444901,60.379879,-152.727600,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54380,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127454',4127454,186.205795,60.013672,-148.607697,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54108,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127455',4127455,193.804794,61.478519,-160.479202,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53836,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127456',4127456,191.729599,61.356449,-163.164795,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53564,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127457',4127457,172.228500,60.715580,-159.716202,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53292,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127458',4127458,191.088593,60.074711,-148.546600,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53020,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127459',4127459,179.858002,60.318851,-151.354294,-0.000048,46,0,0,0,1,6,0,0,46,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52748,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127504',4127504,-28.430149,54.872589,-343.271301,-0.000000,758,0,0,0,1,6,0,0,371,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52482,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127505',4127505,42.459599,48.215618,-395.711212,-0.000000,758,0,0,0,1,6,0,0,371,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52210,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4127506',4127506,98.225403,55.508629,-465.979492,-0.834498,758,0,0,0,1,6,0,0,371,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51938,2,0,0,0,0,30061,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4634057',4634057,66.335922,57.498440,-320.802185,-0.961725,755,0,0,0,1,6,0,0,377,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51636,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4634058',4634058,34.751041,48.305031,-377.871490,-0.000048,327,0,0,0,1,6,0,0,270,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51382,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4634061',4634061,80.979736,49.537529,-371.567688,-0.000048,327,0,0,0,1,6,0,0,270,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51110,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4664779',4664779,51.481640,55.599010,-491.209015,1.451552,2833,0,0,0,0,6,0,0,2528,0,0.000000,44,1,120,1,0,11,0,16,2,0,0,0,1,0,0.000000,1.000000,50856,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4664780',4664780,50.868221,55.176491,-509.842285,1.158272,2833,0,0,0,0,6,0,0,2528,0,0.000000,44,1,120,1,0,12,0,16,2,0,0,0,1,0,0.000000,1.000000,50584,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4664781',4664781,61.290409,55.318249,-509.565887,0.605673,2833,0,0,0,0,6,0,0,2528,0,0.000000,44,1,120,1,0,13,0,16,2,0,0,0,1,0,0.000000,1.000000,50312,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89271,'LVD_BNPC_02','s1f6','bnpc4681187',4681187,47.109711,56.992210,-500.873199,1.207423,2833,0,0,0,0,6,0,0,2528,0,0.000000,44,1,120,1,0,14,0,16,2,0,0,0,1,0,0.000000,1.000000,50040,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313099',4313099,177.686096,23.920490,-654.072205,0.046357,755,0,0,0,0,6,0,0,2518,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49452,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313100',4313100,167.681305,21.744020,-713.588074,-0.000048,756,0,0,0,1,6,0,0,2519,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49186,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313101',4313101,158.525894,21.622009,-698.329224,-1.278257,757,0,0,0,0,6,0,0,2521,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48920,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313102',4313102,155.508408,21.852791,-697.356995,0.783004,758,0,0,0,0,6,0,0,2520,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48666,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313106',4313106,105.720299,22.417379,-652.046082,0.646247,758,0,0,0,0,6,0,0,1835,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48394,2,0,0,0,46,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313107',4313107,86.533943,22.171329,-650.598877,-0.000048,757,0,0,0,1,6,0,0,1834,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48104,2,0,0,0,46,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313108',4313108,108.436302,22.716089,-649.299500,-1.140915,755,0,0,0,0,6,0,0,1832,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47820,2,0,0,0,46,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313111',4313111,15.157670,24.357340,-602.802673,-0.726255,758,0,0,0,1,6,0,0,1835,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47578,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313113',4313113,57.968990,24.124390,-720.912476,-0.000048,757,0,0,0,1,6,0,0,1834,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47288,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313116',4313116,30.990971,22.995300,-758.266602,0.082261,758,0,0,0,0,6,0,0,1835,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47034,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313117',4313117,26.596439,21.469419,-778.408508,-0.000048,757,0,0,0,1,6,0,0,1834,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46744,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313247',4313247,223.987198,23.392031,-653.345581,-0.000048,756,0,0,0,1,6,0,0,2519,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46466,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313251',4313251,175.829697,23.483580,-792.629883,-0.000048,755,0,0,0,0,6,0,0,2518,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46188,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313254',4313254,150.774307,25.406250,-753.932983,1.218958,756,0,0,0,1,6,0,0,2519,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45922,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313257',4313257,134.355606,23.941410,-656.183716,-0.000048,758,0,0,0,1,6,0,0,2520,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45674,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313258',4313258,144.212906,26.169189,-626.703186,-0.000048,755,0,0,0,0,6,0,0,2518,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45372,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313121',4313121,118.760902,23.636169,-718.165894,-1.301842,755,0,0,0,0,6,0,0,1832,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45100,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313105',4313105,117.540199,24.338131,-605.890015,-0.229669,755,0,0,0,0,6,0,0,1832,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44828,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313235',4313235,34.154140,24.129841,-623.851013,-0.000048,756,0,0,0,1,6,0,0,1833,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44562,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313458',4313458,59.114868,23.909389,-624.353394,-0.000048,189,0,0,0,1,6,0,0,1836,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44326,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313461',4313461,16.525450,24.093990,-606.225708,-0.000048,189,0,0,0,1,6,0,0,1836,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44054,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313463',4313463,16.495001,21.499880,-769.832886,-0.000048,189,0,0,0,1,6,0,0,1836,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43782,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313465',4313465,22.885611,26.030411,-798.416687,-0.000000,189,0,0,0,1,6,0,0,1836,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43510,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313467',4313467,83.440170,23.678129,-711.246216,-0.000000,189,0,0,0,1,6,0,0,1836,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43238,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313469',4313469,209.796295,23.269960,-686.884888,-0.000048,189,0,0,0,1,6,0,0,1836,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42966,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313470',4313470,206.103500,22.873230,-681.574829,-0.000048,189,0,0,0,1,6,0,0,1836,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42694,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313471',4313471,207.601898,23.979940,-743.415222,-0.000000,189,0,0,0,1,6,0,0,1836,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42422,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313472',4313472,174.547897,23.605650,-678.583984,-0.000048,189,0,0,0,1,6,0,0,1836,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42150,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313109',4313109,74.762131,25.395679,-678.056274,-1.507975,756,0,0,0,0,6,0,0,1833,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41842,2,0,0,0,0,30061,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313253',4313253,176.165405,22.751160,-781.368713,-0.000048,757,0,0,0,1,6,0,0,2521,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41576,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313104',4313104,81.315308,39.322510,-575.951782,-0.000048,757,0,0,0,1,6,0,0,1834,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41304,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313118',4313118,28.824221,21.469419,-780.575317,-0.000048,756,0,0,0,1,6,0,0,1833,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41026,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4313119',4313119,8.132996,21.683041,-791.897522,-0.000048,758,0,0,0,1,6,0,0,1835,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40778,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4634101',4634101,47.787540,24.000000,-671.779602,-0.000048,756,0,0,0,1,6,0,0,1833,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40482,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4634102',4634102,112.947899,23.665751,-753.267578,-0.000048,756,0,0,0,1,6,0,0,1833,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40210,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4634103',4634103,17.829220,22.967340,-655.728821,-0.000048,757,0,0,0,1,6,0,0,1834,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39944,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4634105',4634105,117.893402,23.059460,-785.317871,0.646247,758,0,0,0,0,6,0,0,1835,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39690,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4634112',4634112,83.363541,24.900320,-818.427979,-0.229669,755,0,0,0,1,6,0,0,1832,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39388,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4634115',4634115,48.438782,24.181250,-583.040222,-0.229669,755,0,0,0,1,6,0,0,1832,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39116,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4634128',4634128,279.447388,21.881470,-807.844788,1.411400,757,0,0,0,0,6,0,0,2521,0,0.000000,49,0,120,1,0,23,0,16,2,0,0,0,1,0,0.000000,1.000000,38856,2,0,0,0,0,30406,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4634130',4634130,254.602600,21.611750,-797.892212,-0.000048,758,0,0,0,1,6,0,0,2520,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38602,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4634147',4634147,306.611389,22.334221,-728.344421,-0.563966,2838,0,0,0,1,6,0,0,2522,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38348,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4634149',4634149,245.748596,24.521351,-839.557800,-0.563986,2838,0,0,0,1,6,0,0,2522,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38076,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4634150',4634150,255.938904,21.608480,-819.697388,-0.563986,2838,0,0,0,1,6,0,0,2522,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37804,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4634151',4634151,284.750702,21.642660,-703.160583,-0.564014,2838,0,0,0,1,6,0,0,2522,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37532,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4634153',4634153,278.747314,23.306129,-734.708130,-0.563966,2838,0,0,0,1,6,0,0,2522,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37260,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4664782',4664782,285.487915,22.096889,-798.198914,-1.194745,2834,0,0,0,0,6,0,0,2529,0,0.000000,48,1,120,1,0,21,0,16,2,0,0,0,1,0,0.000000,1.000000,36994,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4664783',4664783,280.820007,21.850000,-818.599976,-0.681242,2834,0,0,0,0,6,0,0,2529,0,0.000000,48,1,120,1,0,22,0,16,2,0,0,0,1,0,0.000000,1.000000,36722,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4664784',4664784,282.380005,22.062380,-807.590027,-1.552996,2834,0,0,0,0,6,0,0,2529,0,0.000000,48,1,120,1,0,23,0,16,2,0,0,0,1,0,0.000000,1.000000,36450,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4666224',4666224,283.243195,22.311359,-796.170898,0.845863,756,0,0,0,0,6,0,0,2519,0,0.000000,49,0,120,1,0,21,0,16,2,0,0,0,1,0,0.000000,1.000000,36130,2,0,0,0,0,30406,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4666225',4666225,281.156311,21.832199,-815.852112,-0.148067,755,0,0,0,0,6,0,0,2518,0,0.000000,49,0,120,1,0,22,0,16,2,0,0,0,1,0,0.000000,1.000000,35852,2,0,0,0,0,30406,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4681310',4681310,-14.819780,24.425871,-666.209473,-0.229669,755,0,0,0,1,6,0,0,1832,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35580,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93601,'LVD_BNPC_03','s1f6','bnpc4681311',4681311,86.037354,24.478621,-699.376709,1.520169,756,0,0,0,0,6,0,0,1833,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35314,2,0,0,0,0,30061,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79667,'LVD_BNPC_fort','s1f6','bnpc2814948',2814948,110.277000,23.605650,-612.115723,-0.000048,2,0,0,0,0,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34884,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79667,'LVD_BNPC_fort','s1f6','bnpc2814949',2814949,113.238602,23.607740,-612.232422,-0.000048,2,0,0,0,0,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34612,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79667,'LVD_BNPC_fort','s1f6','bnpc2814952',2814952,45.401741,23.520571,-738.022583,-0.000000,2,0,0,0,0,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34340,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79667,'LVD_BNPC_fort','s1f6','bnpc2814953',2814953,49.056969,23.479090,-738.310486,-0.000000,2,0,0,0,0,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34068,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79667,'LVD_BNPC_fort','s1f6','bnpc2814956',2814956,125.655403,23.332590,-720.434692,-1.442108,2,0,0,0,0,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33796,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79667,'LVD_BNPC_fort','s1f6','bnpc2814958',2814958,126.027397,23.528891,-716.605408,-1.442108,2,0,0,0,0,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33524,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79667,'LVD_BNPC_fort','s1f6','bnpc2814959',2814959,123.335297,24.111179,-715.039612,-1.442108,2,0,0,0,0,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33252,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79667,'LVD_BNPC_fort','s1f6','bnpc2814960',2814960,122.829903,24.176411,-721.965210,-1.442108,2,0,0,0,0,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32980,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79667,'LVD_BNPC_fort','s1f6','bnpc2814963',2814963,179.367203,23.644270,-643.441711,0.007382,2,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32708,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79667,'LVD_BNPC_fort','s1f6','bnpc2814964',2814964,173.567703,23.885700,-643.233398,0.007382,2,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32436,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79667,'LVD_BNPC_fort','s1f6','bnpc2814965',2814965,173.492706,24.805450,-645.949890,0.007382,2,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32164,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79667,'LVD_BNPC_fort','s1f6','bnpc2814966',2814966,179.938599,24.128510,-646.818604,0.007382,2,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31892,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79668,'LVD_BNPC_pot_A','s1f6','bnpc2814968',2814968,219.743896,21.668949,-597.828430,-0.000048,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31588,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79668,'LVD_BNPC_pot_A','s1f6','bnpc2814969',2814969,224.665207,21.489120,-599.825989,-0.000048,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31316,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79668,'LVD_BNPC_pot_A','s1f6','bnpc2814970',2814970,212.328598,24.061720,-592.069397,0.991494,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31044,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79668,'LVD_BNPC_pot_A','s1f6','bnpc2814971',2814971,213.743103,23.057211,-588.350891,0.991494,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30772,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79668,'LVD_BNPC_pot_A','s1f6','bnpc2814972',2814972,214.443100,23.136209,-594.038330,0.991494,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30500,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79668,'LVD_BNPC_pot_A','s1f6','bnpc2814973',2814973,211.407898,23.471350,-587.490173,0.991494,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30228,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79668,'LVD_BNPC_pot_A','s1f6','bnpc2814974',2814974,216.601196,22.318830,-599.648804,-0.000048,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29956,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79668,'LVD_BNPC_pot_A','s1f6','bnpc2814975',2814975,227.137405,21.547720,-600.464783,-0.000048,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29684,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79668,'LVD_BNPC_pot_A','s1f6','bnpc2814976',2814976,230.325806,22.214239,-594.779114,-1.170972,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29412,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79668,'LVD_BNPC_pot_A','s1f6','bnpc2814977',2814977,233.022598,23.435221,-590.906799,-1.170972,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29140,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79668,'LVD_BNPC_pot_A','s1f6','bnpc2814978',2814978,230.522095,21.769470,-586.837280,-1.170972,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28868,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79668,'LVD_BNPC_pot_A','s1f6','bnpc2814979',2814979,230.497803,22.280220,-592.141724,-1.170972,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28596,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79668,'LVD_BNPC_pot_A','s1f6','bnpc2814980',2814980,229.057205,21.380760,-580.463013,-0.154551,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28324,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79668,'LVD_BNPC_pot_A','s1f6','bnpc2814981',2814981,220.652405,21.268190,-579.902893,-0.154551,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28052,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79668,'LVD_BNPC_pot_A','s1f6','bnpc2814982',2814982,224.434601,21.299841,-579.601196,-0.154551,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27780,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79668,'LVD_BNPC_pot_A','s1f6','bnpc2814983',2814983,215.952393,21.829670,-581.185974,-0.154551,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27508,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79669,'LVD_BNPC_pot_B','s1f6','bnpc2814988',2814988,214.738998,22.981199,-593.739014,0.991302,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27108,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79669,'LVD_BNPC_pot_B','s1f6','bnpc2814989',2814989,211.707901,23.226761,-587.190186,0.991398,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26836,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79669,'LVD_BNPC_pot_B','s1f6','bnpc2814990',2814990,216.901199,22.299160,-599.348816,-0.000048,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26564,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79669,'LVD_BNPC_pot_B','s1f6','bnpc2814991',2814991,227.437393,21.589239,-600.164795,-0.000048,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26292,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79669,'LVD_BNPC_pot_B','s1f6','bnpc2814992',2814992,230.625793,22.337589,-594.479126,-1.170972,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26020,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79669,'LVD_BNPC_pot_B','s1f6','bnpc2814993',2814993,233.322601,23.534229,-590.606812,-1.170972,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25748,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79669,'LVD_BNPC_pot_B','s1f6','bnpc2814994',2814994,230.822205,21.784060,-586.537292,-1.170972,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25476,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79669,'LVD_BNPC_pot_B','s1f6','bnpc2814995',2814995,230.797806,22.351339,-591.841675,-1.170972,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25204,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79669,'LVD_BNPC_pot_B','s1f6','bnpc2814996',2814996,229.357193,21.307800,-580.163025,-0.154551,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24932,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79669,'LVD_BNPC_pot_B','s1f6','bnpc2814997',2814997,220.952393,21.263281,-579.602905,-0.154551,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24660,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79669,'LVD_BNPC_pot_B','s1f6','bnpc2814998',2814998,224.734604,21.337351,-579.301086,-0.154551,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24388,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79669,'LVD_BNPC_pot_B','s1f6','bnpc2814999',2814999,216.252396,21.750050,-580.885986,-0.154551,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24116,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79669,'LVD_BNPC_pot_B','s1f6','bnpc2814985',2814985,224.965195,21.470369,-599.526001,-0.000048,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23844,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79669,'LVD_BNPC_pot_B','s1f6','bnpc2814986',2814986,212.628601,23.976170,-591.769287,0.991398,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23572,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79669,'LVD_BNPC_pot_B','s1f6','bnpc2814984',2814984,220.055298,21.624020,-597.523926,-0.000048,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23300,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79669,'LVD_BNPC_pot_B','s1f6','bnpc2814987',2814987,214.043198,22.886690,-588.050903,0.991398,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23028,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79670,'LVD_BNPC_pot_C','s1f6','bnpc2815000',2815000,215.013504,22.981199,-593.464172,0.991494,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22628,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79670,'LVD_BNPC_pot_C','s1f6','bnpc2815001',2815001,212.007904,23.226761,-586.890076,0.991590,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22356,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79670,'LVD_BNPC_pot_C','s1f6','bnpc2815002',2815002,217.201202,22.299160,-599.048828,-0.000048,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22084,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79670,'LVD_BNPC_pot_C','s1f6','bnpc2815003',2815003,227.737396,21.589239,-599.864685,-0.000048,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21812,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79670,'LVD_BNPC_pot_C','s1f6','bnpc2815004',2815004,230.925797,22.337589,-594.179077,-1.170877,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21540,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79670,'LVD_BNPC_pot_C','s1f6','bnpc2815005',2815005,233.622604,23.534229,-590.306824,-1.170877,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21268,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79670,'LVD_BNPC_pot_C','s1f6','bnpc2815006',2815006,231.122192,21.784060,-586.237305,-1.170877,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20996,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79670,'LVD_BNPC_pot_C','s1f6','bnpc2815007',2815007,231.097794,22.351339,-591.541687,-1.170877,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20724,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79670,'LVD_BNPC_pot_C','s1f6','bnpc2815008',2815008,229.657196,21.307800,-579.862976,-0.154551,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20452,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79670,'LVD_BNPC_pot_C','s1f6','bnpc2815009',2815009,221.252396,21.263281,-579.302917,-0.154551,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20180,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79670,'LVD_BNPC_pot_C','s1f6','bnpc2815010',2815010,225.034607,21.337351,-579.001221,-0.154551,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79670,'LVD_BNPC_pot_C','s1f6','bnpc2815011',2815011,216.552399,21.750050,-580.585876,-0.154551,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19636,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79670,'LVD_BNPC_pot_C','s1f6','bnpc2815012',2815012,225.265198,21.470369,-599.226013,-0.000048,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19364,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79670,'LVD_BNPC_pot_C','s1f6','bnpc2815013',2815013,212.928604,23.976170,-591.469421,0.991590,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19092,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79670,'LVD_BNPC_pot_C','s1f6','bnpc2815014',2815014,220.355301,21.624020,-597.223877,-0.000048,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18820,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79670,'LVD_BNPC_pot_C','s1f6','bnpc2815015',2815015,214.343201,22.886690,-587.750916,0.991590,4,0,0,0,1,6,0,0,0,0,0.000000,0,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18548,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98345,'LVD_easter_2014','s1f6','bnpc4621617',4621617,-293.118896,4.716263,-591.364014,-0.000000,2772,0,0,0,0,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13194,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98345,'LVD_easter_2014','s1f6','bnpc4621619',4621619,90.922218,50.569962,-370.084991,-1.311198,2773,0,0,0,1,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12928,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93665,'FATE_002','s1f6','bnpc4328473',4328473,-183.456100,73.920921,-265.723785,-1.221385,1197,0,0,0,0,6,0,0,1273,0,0.000000,29,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,112872,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93403,'FATE_003','s1f6','bnpc4306093',4306093,-264.113312,64.499329,-318.420990,-0.000000,2152,0,0,0,1,6,0,0,1523,0,0.000000,34,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,112014,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93846,'FATE_005','s1f6','bnpc4323239',4323239,-293.216888,5.642726,-561.572327,-0.056663,1173,0,0,0,0,6,0,0,1856,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,110960,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93404,'FATE_008','s1f6','bnpc4306103',4306103,74.636543,55.485321,-484.746887,-0.000000,2153,0,0,0,1,6,0,0,1524,0,0.000000,44,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,109290,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93888,'FATE_009','s1f6','bnpc4323907',4323907,186.293594,64.753212,-247.420898,1.129033,2154,0,0,0,1,6,0,0,1702,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,108752,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93888,'FATE_009','s1f6','bnpc4323908',4323908,157.611404,68.918098,-270.499512,-0.050159,2108,0,0,0,3,6,0,0,1722,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,108486,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93888,'FATE_009','s1f6','bnpc4323909',4323909,193.094101,63.701550,-289.294312,-0.422100,2108,0,0,0,3,6,0,0,1722,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,108214,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93888,'FATE_009','s1f6','bnpc4323910',4323910,207.466507,62.622261,-216.638596,0.159171,2108,0,0,0,3,6,0,0,1722,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,107942,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93888,'FATE_009','s1f6','bnpc4323911',4323911,190.625900,64.600723,-238.294800,1.443386,2108,0,0,0,3,6,0,0,1722,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,107670,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93888,'FATE_009','s1f6','bnpc4323912',4323912,202.844803,64.633636,-248.636398,-1.221660,2108,0,0,0,3,6,0,0,1722,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,107398,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93888,'FATE_009','s1f6','bnpc4323913',4323913,180.647095,64.626480,-257.759613,-0.725058,2108,0,0,0,3,6,0,0,1722,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,107126,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93888,'FATE_009','s1f6','bnpc4323914',4323914,117.388702,74.244598,-249.874405,-1.067573,1155,0,0,0,1,6,0,0,1332,0,0.000000,39,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,106860,1,0,0,0,0,30290,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93888,'FATE_009','s1f6','bnpc4323915',4323915,116.015198,74.163567,-248.473801,0.049672,1155,0,0,0,1,6,0,0,1332,0,0.000000,39,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,106588,1,0,0,0,0,30291,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93888,'FATE_009','s1f6','bnpc4323918',4323918,114.411499,73.944473,-250.154205,0.973558,1155,0,0,0,1,6,0,0,1332,0,0.000000,39,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,106316,1,0,0,0,0,30278,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93405,'FATE_010','s1f6','bnpc4306679',4306679,-56.739021,64.146957,-246.255798,1.378811,1155,0,0,0,1,6,0,0,1332,0,0.000000,35,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,102440,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93407,'FATE_011','s1f6','bnpc4306136',4306136,186.595901,62.974251,-176.347504,-0.000000,2155,0,0,0,1,6,0,0,1525,0,0.000000,41,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,101710,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93825,'FATE_013','s1f6','bnpc4322670',4322670,-341.557190,66.637138,-143.240005,1.027721,2156,0,0,0,0,6,0,0,1526,0,0.000000,30,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,101296,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93435,'FATE_015','s1f6','bnpc4306718',4306718,-65.478127,64.535652,-296.313507,-1.308997,1154,0,0,0,1,6,0,0,1332,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,98986,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93433,'FATE_016','s1f6','bnpc4322680',4322680,-347.039215,50.043301,-300.140991,0.970696,2157,0,0,0,1,6,0,0,1527,0,0.000000,34,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,98572,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93897,'FATE_017','s1f6','bnpc4324025',4324025,28.385401,70.470253,-205.436600,0.001403,1289,0,0,0,0,6,0,0,1723,0,0.000000,31,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,98134,1,0,0,0,0,30189,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93897,'FATE_017','s1f6','bnpc4324027',4324027,28.610350,70.431358,-206.859802,-1.152481,2109,0,0,0,0,6,0,0,1604,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,97868,1,0,0,0,0,30292,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93410,'FATE_019','s1f6','bnpc4306153',4306153,158.622604,25.003180,-755.753723,-0.000000,2127,0,0,0,1,6,0,0,1671,0,0.000000,48,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,95570,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93410,'FATE_019','s1f6','bnpc4306154',4306154,148.690903,24.555599,-749.467224,1.204277,2126,0,0,0,1,6,0,0,1670,0,0.000000,48,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,95304,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93849,'FATE_020','s1f6','bnpc4323076',4323076,14.009570,21.485121,-785.448425,0.660126,2158,0,0,0,1,6,0,0,1528,0,0.000000,47,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,94562,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93849,'FATE_020','s1f6','bnpc4328544',4328544,28.245050,48.237659,-364.698090,-0.000000,2111,0,0,0,0,6,0,0,374,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,93984,1,0,0,0,0,30139,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96955,'FATE_021','s1f6','bnpc4514986',4514986,90.173477,21.516199,-640.809326,-0.000000,2509,0,0,0,1,6,0,0,2357,0,0.000000,47,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,93114,1,0,0,0,0,30061,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98415,'FATE_022','s1f6','bnpc4627304',4627304,15.352190,21.482510,-783.738586,0.484412,2829,0,0,0,1,6,0,0,1528,0,0.000000,47,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,92304,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98415,'FATE_022','s1f6','bnpc4627306',4627306,42.715069,22.706520,-756.080200,-0.599342,2828,0,0,0,1,6,0,0,2516,0,0.000000,47,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,92038,1,0,0,0,0,30061,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98415,'FATE_022','s1f6','bnpc4627985',4627985,25.912889,21.525860,-765.431580,-0.452015,2830,0,0,0,1,6,0,0,374,0,0.000000,44,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,90836,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93246,'QB_JobSmn451_01','s1f6','bnpc4302425',4302425,-369.710907,51.499149,-292.561310,1.029823,2211,0,0,0,8,6,0,0,1640,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89554,1,0,0,0,0,0,0,669,307); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93246,'QB_JobSmn451_01','s1f6','bnpc4302448',4302448,-363.025513,51.345959,-295.288605,-0.567336,2209,0,0,0,1,6,0,0,1404,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89288,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93246,'QB_JobSmn451_01','s1f6','bnpc4302452',4302452,-363.179901,51.269878,-298.359711,-0.000048,2210,0,0,0,2,6,0,0,2203,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89022,1,0,0,0,0,0,4321812,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93246,'QB_JobSmn451_01','s1f6','bnpc4302454',4302454,-371.398590,51.510288,-301.865509,-0.000000,2210,0,0,0,2,6,0,0,2203,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88750,1,0,0,0,0,0,4321810,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93246,'QB_JobSmn451_01','s1f6','bnpc4302455',4302455,-361.546509,51.345661,-294.575500,-0.000048,2210,0,0,0,2,6,0,0,2203,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88478,1,0,0,0,0,0,4321807,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93246,'QB_JobSmn451_01','s1f6','bnpc4321859',4321859,-367.005188,51.452438,-301.640686,-0.000000,2212,0,0,0,1,6,0,0,1972,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87300,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93246,'QB_JobSmn451_01','s1f6','bnpc4321860',4321860,-358.171814,51.154209,-300.497986,-0.000000,2213,0,0,0,1,6,0,0,1973,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87034,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98407,'QST_BanKob003','s1f6','bnpc4676671',4676671,172.454407,24.829479,-623.299927,0.742745,2854,0,0,0,1,6,0,0,2684,0,0.000000,44,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,83484,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98407,'QST_BanKob003','s1f6','bnpc4676672',4676672,175.163803,24.770889,-625.108276,0.670857,2855,0,0,0,1,6,0,0,2685,0,0.000000,44,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,83218,1,0,0,0,0,0,0,623,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98408,'QST_BanKob004','s1f6','bnpc4676674',4676674,215.416199,61.541500,-232.992905,1.441547,2864,0,0,0,1,6,0,0,2686,0,0.000000,48,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,82152,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98408,'QST_BanKob004','s1f6','bnpc4676675',4676675,216.431305,61.570190,-230.681503,0.841805,2865,0,0,0,1,6,0,0,2686,0,0.000000,48,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,81886,1,0,0,0,0,0,0,623,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98408,'QST_BanKob004','s1f6','bnpc4676676',4676676,215.548492,61.290798,-235.733994,0.944350,2866,0,0,0,1,6,0,0,2686,0,0.000000,48,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,81620,1,0,0,0,0,0,0,625,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98298,'QST_BanKob104_001','s1f6','bnpc4620323',4620323,156.982605,67.529984,-261.789307,-0.000000,2881,0,0,0,1,6,0,0,2687,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77446,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98270,'QST_BanKob105','s1f6','bnpc4619037',4619037,-27.736160,63.959110,-243.059799,-0.000000,17,0,0,0,1,6,0,0,2688,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76256,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98270,'QST_BanKob105','s1f6','bnpc4619041',4619041,17.087919,71.554718,-194.766907,-0.000000,17,0,0,0,1,6,0,0,2688,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98270,'QST_BanKob105','s1f6','bnpc4619043',4619043,58.588799,66.014801,-232.125900,-0.000000,17,0,0,0,1,6,0,0,2688,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75712,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98270,'QST_BanKob105','s1f6','bnpc4619044',4619044,38.369831,69.334541,-200.921799,-0.000000,17,0,0,0,1,6,0,0,2688,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75440,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98270,'QST_BanKob105','s1f6','bnpc4619045',4619045,41.302582,68.237411,-216.786102,-0.000000,17,0,0,0,1,6,0,0,2688,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75168,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98270,'QST_BanKob105','s1f6','bnpc4619046',4619046,-9.555216,68.035011,-198.366806,-0.000000,17,0,0,0,1,6,0,0,2688,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74896,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98270,'QST_BanKob105','s1f6','bnpc4619048',4619048,-34.213249,64.390083,-207.194000,-0.000000,17,0,0,0,1,6,0,0,2688,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74624,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98503,'QST_BanKob106_01','s1f6','bnpc4631329',4631329,-62.118969,64.925041,-302.424713,-0.000000,17,0,0,0,1,6,0,0,2743,0,0.000000,41,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,72680,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98503,'QST_BanKob106_01','s1f6','bnpc4631330',4631330,-55.353642,64.478409,-304.151093,-0.000000,17,0,0,0,1,6,0,0,2743,0,0.000000,41,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,72408,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98503,'QST_BanKob106_01','s1f6','bnpc4631331',4631331,-57.373390,64.459953,-307.670502,-0.000000,17,0,0,0,1,6,0,0,2743,0,0.000000,41,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,72136,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98503,'QST_BanKob106_01','s1f6','bnpc4631332',4631332,-49.884739,64.493843,-303.558685,-0.000000,17,0,0,0,1,6,0,0,2743,0,0.000000,41,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,71864,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98503,'QST_BanKob106_01','s1f6','bnpc4631333',4631333,-66.775360,64.898064,-304.667114,1.122747,17,0,0,0,1,6,0,0,2743,0,0.000000,41,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,71592,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98503,'QST_BanKob106_01','s1f6','bnpc4631334',4631334,-67.771133,64.440193,-300.261505,1.152908,17,0,0,0,1,6,0,0,2743,0,0.000000,41,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,71320,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98503,'QST_BanKob106_01','s1f6','bnpc4631095',4631095,-57.108540,64.844437,-298.257813,-0.181561,2870,0,0,0,1,6,0,0,2689,0,0.000000,41,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,71054,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98503,'QST_BanKob106_01','s1f6','bnpc4631100',4631100,-52.552891,64.506737,-298.374207,-0.188051,2870,0,0,0,1,6,0,0,2689,0,0.000000,41,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,70782,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98503,'QST_BanKob106_01','s1f6','bnpc4631135',4631135,-60.596241,64.879051,-295.465515,-0.986415,2870,0,0,0,1,6,0,0,2689,0,0.000000,41,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,70510,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98503,'QST_BanKob106_01','s1f6','bnpc4631159',4631159,-62.755081,64.455658,-310.121490,0.403689,2871,0,0,0,1,6,0,0,2691,0,0.000000,41,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,70244,1,0,0,0,0,0,0,625,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98539,'QST_BanKob107_01','s1f6','bnpc4632413',4632413,151.963501,67.993713,-261.819611,1.557928,2871,0,0,0,1,6,0,0,2692,0,0.000000,41,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,69256,1,0,0,0,0,0,0,625,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98598,'QST_BanKob110_001','s1f6','bnpc4635165',4635165,47.512939,48.468929,-343.712494,0.486468,2871,0,0,0,1,6,0,0,2693,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66696,1,0,0,0,0,0,0,625,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98598,'QST_BanKob110_001','s1f6','bnpc4635147',4635147,46.620319,48.468899,-341.324493,0.677843,17,0,0,0,1,6,0,0,2745,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66412,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98598,'QST_BanKob110_001','s1f6','bnpc4635148',4635148,47.898201,48.159500,-346.333893,-0.000000,17,0,0,0,1,6,0,0,2745,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66140,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98598,'QST_BanKob110_001','s1f6','bnpc4635149',4635149,51.775398,48.353699,-348.732513,-0.000000,17,0,0,0,1,6,0,0,2745,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65868,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98598,'QST_BanKob110_001','s1f6','bnpc4635150',4635150,55.531200,48.348930,-349.558594,-0.000000,17,0,0,0,1,6,0,0,2745,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65596,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98598,'QST_BanKob110_001','s1f6','bnpc4635151',4635151,54.050549,47.131809,-342.937286,-1.014331,17,0,0,0,1,6,0,0,2745,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65324,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98484,'QST_BanKob201_001','s1f6','bnpc4630275',4630275,68.229713,55.596119,-517.334900,0.064699,756,0,0,0,1,6,0,0,2694,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64482,1,0,0,0,0,0,0,623,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98484,'QST_BanKob201_001','s1f6','bnpc4630277',4630277,70.579597,55.680019,-519.990417,-0.000000,756,0,0,0,1,6,0,0,2694,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64210,1,0,0,0,0,0,0,623,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98484,'QST_BanKob201_001','s1f6','bnpc4630278',4630278,72.867958,55.617931,-517.191528,-0.399149,756,0,0,0,1,6,0,0,2694,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63938,1,0,0,0,0,0,0,623,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98484,'QST_BanKob201_001','s1f6','bnpc4630280',4630280,70.492867,55.365570,-488.500000,0.436141,756,0,0,0,1,6,0,0,2694,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63666,1,0,0,0,0,0,0,623,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98484,'QST_BanKob201_001','s1f6','bnpc4630283',4630283,77.012756,55.494492,-489.612000,-0.203250,756,0,0,0,1,6,0,0,2694,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63394,1,0,0,0,0,0,0,623,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98484,'QST_BanKob201_001','s1f6','bnpc4630287',4630287,76.156021,55.610081,-472.722290,0.203433,756,0,0,0,1,6,0,0,2694,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63122,1,0,0,0,0,0,0,623,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98484,'QST_BanKob201_001','s1f6','bnpc4630288',4630288,81.123100,55.610081,-473.450897,-0.375954,756,0,0,0,1,6,0,0,2694,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62850,1,0,0,0,0,0,0,623,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98484,'QST_BanKob201_001','s1f6','bnpc4630289',4630289,68.842743,55.627201,-453.004608,-0.907026,756,0,0,0,1,6,0,0,2694,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62578,1,0,0,0,0,0,0,623,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98484,'QST_BanKob201_001','s1f6','bnpc4630291',4630291,48.036690,55.354099,-456.010986,-0.000000,756,0,0,0,1,6,0,0,2694,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62306,1,0,0,0,0,0,0,623,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4621988',4621988,61.163509,48.175789,-393.944885,-0.140449,2899,0,0,0,1,6,0,0,2695,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60968,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4621992',4621992,56.304169,48.560970,-388.367004,1.472047,2899,0,0,0,1,6,0,0,2695,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60696,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4621997',4621997,66.436821,48.175789,-389.938202,1.345121,2899,0,0,0,1,6,0,0,2695,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60424,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4622001',4622001,56.912731,48.443981,-377.940308,1.380262,2899,0,0,0,1,6,0,0,2695,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60152,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4622021',4622021,63.362591,48.777199,-382.354614,1.429202,2899,0,0,0,1,6,0,0,2695,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59880,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4621989',4621989,62.568081,48.175789,-392.700409,-1.295894,2900,0,0,0,1,6,0,0,2695,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59614,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4621990',4621990,59.375858,46.301971,-392.487000,1.515143,2900,0,0,0,1,6,0,0,2695,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59342,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4621993',4621993,57.607121,48.799702,-389.845886,0.099668,2900,0,0,0,1,6,0,0,2695,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59070,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4621994',4621994,57.672539,48.175789,-386.857697,-0.411081,2900,0,0,0,1,6,0,0,2695,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58798,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4621998',4621998,68.042320,48.175781,-391.487915,0.014558,2900,0,0,0,1,6,0,0,2695,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58526,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4621999',4621999,68.104973,48.175781,-388.454590,-0.282580,2900,0,0,0,1,6,0,0,2695,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58254,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4622002',4622002,58.349812,48.443981,-379.244995,0.068513,2900,0,0,0,1,6,0,0,2695,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57982,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4622003',4622003,58.380470,48.443981,-376.627991,-0.114480,2900,0,0,0,1,6,0,0,2695,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57710,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4622022',4622022,64.713280,48.777199,-383.699799,0.166480,2900,0,0,0,1,6,0,0,2695,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57438,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4622023',4622023,64.814423,48.777180,-380.936310,-0.181754,2900,0,0,0,1,6,0,0,2695,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57166,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4621991',4621991,61.109810,48.175800,-390.949890,0.020538,2901,0,0,0,1,6,0,0,2696,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56900,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4621995',4621995,58.861111,48.175789,-388.319092,-1.384800,2901,0,0,0,1,6,0,0,2696,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56628,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4622000',4622000,69.649109,48.175789,-390.049103,-1.232528,2901,0,0,0,1,6,0,0,2696,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56356,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4622004',4622004,59.780899,48.443981,-377.935913,-1.462591,2901,0,0,0,1,6,0,0,2696,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56084,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98366,'QST_BanKob203','s1f6','bnpc4622024',4622024,65.992607,48.777191,-382.362701,-1.314834,2901,0,0,0,1,6,0,0,2696,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55812,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98426,'QST_BanKob205','s1f6','bnpc4627509',4627509,242.904907,22.530390,-584.367126,-0.000000,2883,0,0,0,1,6,0,0,2699,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54990,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98426,'QST_BanKob205','s1f6','bnpc4627502',4627502,244.446594,22.524670,-584.755615,-1.218096,2840,0,0,0,1,6,0,0,2698,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54248,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98426,'QST_BanKob205','s1f6','bnpc4627503',4627503,240.783096,22.444170,-576.329773,-0.763448,2840,0,0,0,1,6,0,0,2698,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53976,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98426,'QST_BanKob205','s1f6','bnpc4627504',4627504,234.358994,22.029240,-584.804871,0.453348,2840,0,0,0,1,6,0,0,2698,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53704,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98426,'QST_BanKob205','s1f6','bnpc4627505',4627505,215.799103,22.707161,-590.847778,-0.847414,2840,0,0,0,1,6,0,0,2698,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53432,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98426,'QST_BanKob205','s1f6','bnpc4627506',4627506,216.181396,22.311291,-577.055786,0.012752,2840,0,0,0,1,6,0,0,2698,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53160,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98426,'QST_BanKob205','s1f6','bnpc4627507',4627507,206.514496,26.681129,-587.660583,0.209183,2840,0,0,0,1,6,0,0,2698,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52888,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98426,'QST_BanKob205','s1f6','bnpc4627508',4627508,207.782700,26.270519,-597.009399,0.721747,2840,0,0,0,1,6,0,0,2698,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52616,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98426,'QST_BanKob205','s1f6','bnpc4696007',4696007,239.326904,22.350269,-577.270020,-0.000000,2883,0,0,0,1,6,0,0,2699,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52338,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98426,'QST_BanKob205','s1f6','bnpc4696008',4696008,234.239502,22.064541,-585.576172,-0.000000,2883,0,0,0,1,6,0,0,2699,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52066,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98426,'QST_BanKob205','s1f6','bnpc4696009',4696009,214.791504,22.987770,-590.935486,-0.000000,2883,0,0,0,1,6,0,0,2699,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51794,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98426,'QST_BanKob205','s1f6','bnpc4696010',4696010,215.878693,22.420450,-577.580200,-0.000000,2883,0,0,0,1,6,0,0,2699,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51522,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98426,'QST_BanKob205','s1f6','bnpc4696011',4696011,206.656998,26.805130,-588.792175,-0.000000,2883,0,0,0,1,6,0,0,2699,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51250,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98426,'QST_BanKob205','s1f6','bnpc4696012',4696012,209.012894,26.101179,-598.494507,-0.000000,2883,0,0,0,1,6,0,0,2699,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50978,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98326,'QST_BanKob206','s1f6','bnpc4621108',4621108,231.702499,25.712030,-623.612915,-0.257651,2849,0,0,0,1,6,0,0,2700,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49530,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98326,'QST_BanKob206','s1f6','bnpc4621109',4621109,240.423203,27.453421,-609.823486,-1.502373,2849,0,0,0,1,6,0,0,2700,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49258,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98326,'QST_BanKob206','s1f6','bnpc4621110',4621110,230.415695,21.392130,-600.622681,-0.522422,2849,0,0,0,1,6,0,0,2700,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48986,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98326,'QST_BanKob206','s1f6','bnpc4621111',4621111,216.663498,21.433571,-603.300415,0.852497,2849,0,0,0,1,6,0,0,2700,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48714,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98326,'QST_BanKob206','s1f6','bnpc4621112',4621112,206.658707,26.167620,-609.905029,1.446990,2849,0,0,0,1,6,0,0,2700,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48442,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98326,'QST_BanKob206','s1f6','bnpc4621113',4621113,214.281403,22.494030,-620.738281,0.472305,2849,0,0,0,1,6,0,0,2700,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48170,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98583,'QST_BanKob207_01','s1f6','bnpc4634838',4634838,179.915894,21.570221,-572.829529,-1.178085,2845,0,0,0,1,6,0,0,2746,0,0.000000,44,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,46796,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98583,'QST_BanKob207_01','s1f6','bnpc4634839',4634839,174.965103,21.600309,-576.397827,1.160840,2845,0,0,0,1,6,0,0,2746,0,0.000000,44,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,46524,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98583,'QST_BanKob207_01','s1f6','bnpc4634840',4634840,165.544907,21.681080,-575.299805,-1.174041,2845,0,0,0,1,6,0,0,2746,0,0.000000,44,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,46252,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98583,'QST_BanKob207_01','s1f6','bnpc4634841',4634841,163.106094,21.531660,-571.190186,1.041473,2845,0,0,0,1,6,0,0,2746,0,0.000000,44,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,45980,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98583,'QST_BanKob207_01','s1f6','bnpc4634842',4634842,170.123901,21.451969,-573.279602,-0.738863,2845,0,0,0,1,6,0,0,2746,0,0.000000,44,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,45708,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98583,'QST_BanKob207_01','s1f6','bnpc4634831',4634831,163.715302,21.544201,-559.656494,0.839596,755,0,0,0,1,0,0,0,2702,0,0.000000,44,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,45442,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98583,'QST_BanKob207_01','s1f6','bnpc4634832',4634832,172.308502,21.482121,-556.721375,-0.006886,755,0,0,0,1,6,0,0,2702,0,0.000000,44,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,45170,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98583,'QST_BanKob207_01','s1f6','bnpc4634833',4634833,182.546097,21.147449,-563.995728,-1.155923,755,0,0,0,1,6,0,0,2702,0,0.000000,44,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,44898,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98583,'QST_BanKob207_01','s1f6','bnpc4634837',4634837,184.814804,21.871740,-576.194580,-1.153528,2871,0,0,0,1,6,0,0,2702,0,0.000000,44,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,44572,1,0,0,0,0,0,0,625,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98417,'QST_BanKob208_001','s1f6','bnpc4627362',4627362,150.188004,24.617590,-543.102783,-0.786827,2854,0,0,0,1,6,0,0,2702,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43264,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98417,'QST_BanKob208_001','s1f6','bnpc4627363',4627363,152.160095,23.459370,-539.228027,-1.177575,2855,0,0,0,1,6,0,0,2702,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42998,1,0,0,0,0,0,0,623,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98417,'QST_BanKob208_001','s1f6','bnpc4627365',4627365,162.086395,22.469299,-577.586182,-0.843104,2854,0,0,0,1,6,0,0,2702,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42720,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98417,'QST_BanKob208_001','s1f6','bnpc4627366',4627366,152.123505,25.814680,-576.908020,0.332303,2856,0,0,0,1,6,0,0,2702,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42556,1,0,0,0,0,0,0,625,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98417,'QST_BanKob208_001','s1f6','bnpc4627367',4627367,191.167206,26.166889,-584.238098,-1.422361,2855,0,0,0,1,6,0,0,2702,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42182,1,0,0,0,0,0,0,623,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98417,'QST_BanKob208_001','s1f6','bnpc4627368',4627368,175.188797,26.311501,-583.796387,1.350115,2856,0,0,0,1,6,0,0,2702,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42012,1,0,0,0,0,0,0,625,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98417,'QST_BanKob208_001','s1f6','bnpc4627369',4627369,176.095398,26.308020,-535.564819,1.301499,2854,0,0,0,1,6,0,0,2702,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41632,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98417,'QST_BanKob208_001','s1f6','bnpc4627370',4627370,191.915100,26.470530,-534.218079,-1.509682,2855,0,0,0,1,6,0,0,2702,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41366,1,0,0,0,0,0,0,623,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98417,'QST_BanKob208_001','s1f6','bnpc4627372',4627372,210.970001,25.491270,-537.710022,0.704565,2854,0,0,0,1,6,0,0,2702,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41088,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98417,'QST_BanKob208_001','s1f6','bnpc4627374',4627374,209.765900,26.893101,-531.970276,1.241047,2856,0,0,0,1,6,0,0,2702,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40924,1,0,0,0,0,0,0,625,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98421,'QST_BanKob209_001','s1f6','bnpc4627415',4627415,215.973297,21.603201,-613.320374,-0.342210,757,0,0,0,1,6,0,0,2704,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39950,1,0,0,0,0,0,0,624,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98421,'QST_BanKob209_001','s1f6','bnpc4627417',4627417,233.881699,21.669901,-605.215820,-0.532786,757,0,0,0,1,6,0,0,2704,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39678,1,0,0,0,0,0,0,624,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98421,'QST_BanKob209_001','s1f6','bnpc4627419',4627419,229.304199,21.676531,-592.414612,-0.955683,757,0,0,0,1,6,0,0,2704,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39406,1,0,0,0,0,0,0,624,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98421,'QST_BanKob209_001','s1f6','bnpc4627414',4627414,228.310593,22.016840,-616.056580,-0.690435,758,0,0,0,1,6,0,0,2703,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39140,1,0,0,0,0,0,0,625,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98421,'QST_BanKob209_001','s1f6','bnpc4627416',4627416,240.830200,26.196409,-598.487976,-0.004020,758,0,0,0,1,6,0,0,2703,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38868,1,0,0,0,0,0,0,625,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98421,'QST_BanKob209_001','s1f6','bnpc4627418',4627418,239.565704,25.653681,-614.245728,0.060029,758,0,0,0,1,6,0,0,2703,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38596,1,0,0,0,0,0,0,625,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98613,'QST_BanKob210_001','s1f6','bnpc4635336',4635336,84.883453,55.610081,-481.791595,1.484315,2871,0,0,0,1,6,0,0,2705,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38036,1,0,0,0,0,0,0,625,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98377,'QST_BanKob303','s1f6','bnpc4622432',4622432,41.283539,26.145670,-801.446228,-0.383164,2841,0,0,0,1,6,0,0,2706,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36982,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98377,'QST_BanKob303','s1f6','bnpc4622433',4622433,48.123150,25.553640,-795.391113,-0.400050,2841,0,0,0,1,6,0,0,2706,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36710,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98377,'QST_BanKob303','s1f6','bnpc4622434',4622434,8.056954,21.709551,-769.016724,1.378560,2841,0,0,0,1,6,0,0,2706,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36438,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98377,'QST_BanKob303','s1f6','bnpc4622435',4622435,29.978769,26.350559,-751.800781,-0.996503,2841,0,0,0,1,6,0,0,2706,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36166,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98377,'QST_BanKob303','s1f6','bnpc4622436',4622436,5.229303,23.753170,-803.761414,0.706637,2841,0,0,0,1,6,0,0,2706,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35894,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98377,'QST_BanKob303','s1f6','bnpc4622437',4622437,0.513969,24.561979,-795.743774,1.103457,2841,0,0,0,1,6,0,0,2706,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35622,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98607,'QST_BanKob305','s1f6','bnpc4635271',4635271,282.956207,22.014000,-803.391907,-0.000000,17,0,0,0,1,6,0,0,2707,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34220,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98607,'QST_BanKob305','s1f6','bnpc4635272',4635272,281.581512,22.067690,-812.047424,-1.083235,17,0,0,0,1,6,0,0,2707,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33948,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98607,'QST_BanKob305','s1f6','bnpc4635273',4635273,279.445496,21.906799,-796.049072,-1.003890,17,0,0,0,1,6,0,0,2707,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33676,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98607,'QST_BanKob305','s1f6','bnpc4635274',4635274,276.997711,21.631710,-803.581299,-0.000000,17,0,0,0,1,6,0,0,2707,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33404,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98607,'QST_BanKob305','s1f6','bnpc4635275',4635275,275.431885,21.529930,-809.316589,0.281406,17,0,0,0,1,6,0,0,2707,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33132,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98607,'QST_BanKob305','s1f6','bnpc4635276',4635276,275.757507,21.487961,-817.683228,0.861797,17,0,0,0,1,6,0,0,2707,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32860,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98607,'QST_BanKob305','s1f6','bnpc4635277',4635277,282.956207,22.014000,-803.391907,0.000000,2882,0,0,0,1,6,0,0,2708,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32684,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98607,'QST_BanKob305','s1f6','bnpc4695972',4695972,281.581512,22.067699,-812.047424,-1.083235,2882,0,0,0,1,6,0,0,2708,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32412,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98607,'QST_BanKob305','s1f6','bnpc4695973',4695973,279.445496,21.906799,-796.049072,-1.003889,2882,0,0,0,1,6,0,0,2708,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32140,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98607,'QST_BanKob305','s1f6','bnpc4695974',4695974,276.997711,21.631701,-803.581299,-0.000000,2882,0,0,0,1,6,0,0,2708,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31868,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98607,'QST_BanKob305','s1f6','bnpc4695975',4695975,275.431885,21.529900,-809.316589,0.281406,2882,0,0,0,1,6,0,0,2708,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31596,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98607,'QST_BanKob305','s1f6','bnpc4695976',4695976,275.757507,21.488001,-817.683228,0.861796,2882,0,0,0,1,6,0,0,2708,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31324,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98599,'QST_BanKob306','s1f6','bnpc4635173',4635173,82.085373,24.261820,-755.097473,-1.562311,2846,0,0,0,1,6,0,0,2709,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30126,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98599,'QST_BanKob306','s1f6','bnpc4635174',4635174,119.454300,23.852659,-789.304077,1.436106,2846,0,0,0,1,6,0,0,2709,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29854,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98599,'QST_BanKob306','s1f6','bnpc4635175',4635175,98.351723,24.005091,-818.273682,-1.508137,2846,0,0,0,1,6,0,0,2709,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29582,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98599,'QST_BanKob306','s1f6','bnpc4635177',4635177,160.196701,24.026079,-752.081421,-1.526146,2846,0,0,0,1,6,0,0,2709,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29310,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98599,'QST_BanKob306','s1f6','bnpc4635178',4635178,173.730301,23.596720,-777.822021,-0.744183,2846,0,0,0,1,6,0,0,2709,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29038,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98599,'QST_BanKob306','s1f6','bnpc4635206',4635206,274.304413,23.825871,-741.825684,-0.062621,2849,0,0,0,1,6,0,0,2710,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27578,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98599,'QST_BanKob306','s1f6','bnpc4635207',4635207,288.122498,25.267860,-735.282410,0.906302,2849,0,0,0,1,6,0,0,2710,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27306,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98599,'QST_BanKob306','s1f6','bnpc4635208',4635208,314.238892,21.929279,-706.982971,0.262147,2849,0,0,0,1,6,0,0,2710,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27034,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98599,'QST_BanKob306','s1f6','bnpc4635211',4635211,313.623993,22.441540,-697.097778,0.663015,2849,0,0,0,1,6,0,0,2710,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26762,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98599,'QST_BanKob306','s1f6','bnpc4635212',4635212,318.851288,24.932859,-726.282776,0.647398,2849,0,0,0,1,6,0,0,2710,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26490,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98595,'QST_BanKob307_01','s1f6','bnpc4635108',4635108,286.455902,21.549021,-719.790771,0.997762,755,0,0,0,1,6,0,0,2711,0,0.000000,48,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,24918,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98595,'QST_BanKob307_01','s1f6','bnpc4635109',4635109,293.979889,21.510929,-717.173218,-0.044220,755,0,0,0,1,6,0,0,2711,0,0.000000,48,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,24646,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98595,'QST_BanKob307_01','s1f6','bnpc4635110',4635110,301.228790,21.511641,-720.106201,-0.943845,755,0,0,0,1,6,0,0,2711,0,0.000000,48,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,24374,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98595,'QST_BanKob307_01','s1f6','bnpc4635111',4635111,287.091888,21.615499,-701.184387,0.845375,2856,0,0,0,1,6,0,0,2712,0,0.000000,48,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,24108,1,0,0,0,0,0,0,625,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98595,'QST_BanKob307_01','s1f6','bnpc4635112',4635112,281.043793,21.740681,-708.077271,1.331929,2856,0,0,0,1,6,0,0,2712,0,0.000000,48,0,120,1,0,0,0,0,0,1,0,0,0,0,0.000000,1.000000,23836,1,0,0,0,0,0,0,625,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98300,'QST_BanKob308_001','s1f6','bnpc4620580',4620580,289.950806,21.538601,-710.379578,-0.000000,2885,0,0,0,1,6,0,0,2714,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23396,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98300,'QST_BanKob308_001','s1f6','bnpc4620582',4620582,196.411301,24.105881,-718.972717,-0.000000,2884,0,0,0,1,6,0,0,2713,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23130,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98615,'QST_BanKob310_001','s1f6','bnpc4635466',4635466,96.970108,21.360941,-637.382019,0.843421,2872,0,0,0,1,6,0,0,2749,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21972,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98615,'QST_BanKob310_001','s1f6','bnpc4635467',4635467,107.346497,22.468800,-634.507080,-0.218649,2872,0,0,0,1,6,0,0,2749,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21700,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98615,'QST_BanKob310_001','s1f6','bnpc4635468',4635468,101.370697,21.525900,-642.002075,0.582137,2872,0,0,0,1,6,0,0,2749,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21428,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98615,'QST_BanKob310_001','s1f6','bnpc4635469',4635469,102.510300,22.023300,-629.359924,-0.190211,2872,0,0,0,1,6,0,0,2749,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21156,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98615,'QST_BanKob310_001','s1f6','bnpc4635470',4635470,107.025703,21.336599,-640.168579,-1.453233,2872,0,0,0,1,6,0,0,2749,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20884,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98615,'QST_BanKob310_001','s1f6','bnpc4635537',4635537,157.943298,21.443729,-705.616516,-0.198600,2872,0,0,0,1,6,0,0,2749,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20136,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98615,'QST_BanKob310_001','s1f6','bnpc4635538',4635538,147.600494,23.237329,-705.254517,1.160235,2872,0,0,0,1,6,0,0,2749,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19864,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98615,'QST_BanKob310_001','s1f6','bnpc4635539',4635539,143.615707,26.790501,-700.212219,0.176467,2872,0,0,0,1,6,0,0,2749,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19592,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98615,'QST_BanKob310_001','s1f6','bnpc4635540',4635540,161.441193,21.610060,-701.467773,0.713496,2872,0,0,0,1,6,0,0,2749,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19320,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98615,'QST_BanKob310_001','s1f6','bnpc4635541',4635541,153.048996,20.846500,-707.030212,-0.000000,2872,0,0,0,1,6,0,0,2749,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19048,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98615,'QST_BanKob310_001','s1f6','bnpc4663725',4663725,101.912697,21.526140,-642.010376,-0.557342,2870,0,0,0,1,6,0,0,2715,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18662,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98615,'QST_BanKob310_001','s1f6','bnpc4663728',4663728,150.424103,21.906151,-700.901428,0.529459,2870,0,0,0,1,6,0,0,2715,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18390,1,0,0,0,0,0,0,622,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102916,'QST_ClsExc510_002','s1f6','bnpc4877190',4877190,-366.263489,51.485031,-281.636688,1.125352,14,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17874,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102916,'QST_ClsExc510_002','s1f6','bnpc4877191',4877191,-363.487915,52.530590,-286.765015,1.125352,14,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17602,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102916,'QST_ClsExc510_002','s1f6','bnpc4877192',4877192,-367.170410,51.505150,-285.166992,1.125352,14,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17330,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102916,'QST_ClsExc510_002','s1f6','bnpc4877193',4877193,-371.017609,51.507061,-287.320313,1.125352,14,0,0,0,1,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17058,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93011,'QST_GaiUsb405','s1f6','bnpc4294228',4294228,-422.141113,49.729069,-274.936401,-0.994937,2195,0,0,0,1,6,0,0,2059,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11476,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93016,'QST_GaiUsb408','s1f6','bnpc4294759',4294759,-229.003006,64.507278,-242.670303,0.957707,328,0,0,0,1,6,0,0,379,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9534,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93016,'QST_GaiUsb408','s1f6','bnpc4294760',4294760,-284.670197,68.167480,-258.523193,-0.919131,329,0,0,0,1,6,0,0,369,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9268,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93016,'QST_GaiUsb408','s1f6','bnpc4294757',4294757,-179.689301,75.372704,-266.829590,-1.346553,331,0,0,0,1,6,0,0,373,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9002,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93017,'QST_GaiUsb409','s1f6','bnpc4294858',4294858,-278.290802,62.532539,-208.545898,1.367193,1892,0,0,0,1,6,0,0,1980,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8312,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93273,'QST_JobPld350','s1f6','bnpc4302894',4302894,-305.389496,33.212040,-449.498199,-1.135959,6,0,0,0,1,6,0,0,2020,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5594,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93273,'QST_JobPld350','s1f6','bnpc4302898',4302898,-315.941498,33.437191,-436.482086,-0.150970,6,0,0,0,1,6,0,0,2020,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5322,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93273,'QST_JobPld350','s1f6','bnpc4302901',4302901,-302.663910,33.419189,-443.927002,-1.482816,6,0,0,0,1,6,0,0,2020,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5050,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93273,'QST_JobPld350','s1f6','bnpc4302902',4302902,-323.406586,33.646358,-443.338989,1.431519,6,0,0,0,1,6,0,0,2020,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4778,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93273,'QST_JobPld350','s1f6','bnpc4302903',4302903,-320.926300,34.097401,-452.534912,0.571885,6,0,0,0,1,6,0,0,2020,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4506,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85816,'LVD_BNPC_01','s1fa','bnpc4039257',4039257,0.000000,0.000000,-16.000000,-0.000000,246,0,0,0,0,6,0,0,1801,0,0.000000,34,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27088,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85816,'LVD_BNPC_01','s1fa','bnpc4145900',4145900,0.000000,-0.000013,-20.000000,-0.000000,434,0,0,0,0,6,0,0,1801,0,0.000000,34,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26822,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85816,'LVD_BNPC_01','s1fa','bnpc4249552',4249552,0.000000,0.000000,-15.000000,-0.000000,1444,0,0,0,0,6,0,0,1804,0,0.000000,34,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26556,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4145873',4145873,0.000000,0.000000,-16.000000,-0.000000,247,0,0,0,0,6,0,0,1801,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26090,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4145879',4145879,0.000000,0.000000,-20.000000,-0.000000,434,0,0,0,0,6,0,0,1801,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25806,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256192',4256192,0.000000,-0.000000,-15.000000,-0.000000,1505,0,0,0,0,6,0,0,1804,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25552,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256198',4256198,0.000000,0.000000,-14.000000,-0.000000,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25286,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256208',4256208,9.899000,0.000000,-9.899000,-0.785398,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25014,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256211',4256211,14.000000,0.000000,0.000000,-1.570796,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24742,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256213',4256213,9.899000,0.000000,9.899000,-2.356194,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24470,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256214',4256214,0.000000,0.000000,14.000000,-3.141593,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24198,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256215',4256215,-9.899000,0.000000,9.899000,2.356194,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23926,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256217',4256217,-14.000000,0.000000,0.000000,1.570796,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23654,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256218',4256218,-9.899000,0.000000,-9.899000,0.785398,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23382,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256219',4256219,0.000000,0.000000,0.000000,-0.000000,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23110,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256220',4256220,0.000000,-0.000000,-12.000000,-0.000000,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256224',4256224,8.485000,0.000000,-8.485000,-0.785398,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22566,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256226',4256226,12.000000,0.000000,0.000000,-1.570796,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22294,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256228',4256228,8.485000,0.000000,8.485000,-2.356194,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22022,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256229',4256229,0.000000,0.000000,12.000000,-3.141593,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21750,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256231',4256231,-8.485000,0.000000,8.485000,0.785398,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21478,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256232',4256232,-12.000000,0.000000,0.000000,1.570451,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21206,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4256233',4256233,-8.485000,0.000000,-8.485000,0.785398,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20934,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4317325',4317325,0.000000,0.000000,-6.000000,-0.000000,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20662,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4317326',4317326,6.000000,0.000000,0.000000,-1.570451,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20390,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4317327',4317327,0.000000,0.000000,6.000000,0.000000,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20118,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4317328',4317328,-6.000000,0.000000,0.000000,1.570451,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19846,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4317331',4317331,0.000000,0.000000,-4.000000,-0.000000,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19574,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4317332',4317332,4.000000,0.000000,0.000000,-1.570451,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19302,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4317333',4317333,0.000000,0.000000,4.000000,0.000000,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19030,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4317334',4317334,-4.000000,0.000014,0.000000,1.570451,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18758,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4317336',4317336,0.000000,0.000000,-10.000000,-0.000000,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18486,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4317357',4317357,10.000000,-0.000001,0.000000,-1.570451,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18214,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4317359',4317359,0.000000,0.000000,10.000000,0.000000,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17942,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89848,'LVD_BNPC_02','s1fa','bnpc4317361',4317361,-10.000000,0.000014,0.000000,1.570451,1443,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17670,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4256008',4256008,0.000000,-0.000000,-16.000000,-0.000000,248,0,0,0,0,6,0,0,1801,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17124,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4256118',4256118,0.000000,-0.000024,-20.000000,-0.000000,434,0,0,0,0,6,0,0,1801,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16822,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4256180',4256180,0.000000,-0.000000,-15.000000,-0.000000,1506,0,0,0,0,6,0,0,1804,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16586,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4292877',4292877,0.000000,0.000000,-12.000000,-0.000000,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16320,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4292878',4292878,8.485000,0.000000,-8.485000,-0.785398,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16048,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4292879',4292879,12.000000,0.000000,0.000000,-1.570451,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15776,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4292880',4292880,8.485000,0.000000,8.485000,-0.785398,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15504,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4292881',4292881,0.000000,0.000000,12.000000,0.000000,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15232,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4292882',4292882,-8.485000,0.000000,8.485000,0.785398,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14960,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4292883',4292883,-12.000000,0.000000,0.000000,1.570451,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14688,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4292884',4292884,-8.485000,0.000022,-8.485000,0.785398,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14416,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4292876',4292876,0.000000,-0.000000,0.000000,-0.000000,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14144,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378613',4378613,2.000000,0.000000,-3.464100,-0.523599,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13872,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378614',4378614,2.000000,0.000000,3.464100,-0.523599,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13600,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378615',4378615,-4.000000,0.000000,0.300000,1.570796,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13328,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378616',4378616,3.764100,0.000000,-2.000000,-1.047198,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13056,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378617',4378617,0.000000,0.000000,4.000000,3.141593,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12784,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378618',4378618,-3.764100,0.000000,-2.000000,1.047197,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12512,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378619',4378619,4.000000,-0.000002,0.000000,-1.570451,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12240,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378620',4378620,-2.000000,0.000000,3.764100,2.617994,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11968,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378621',4378621,-2.000000,0.000000,-3.764100,0.523599,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11696,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378622',4378622,0.000000,-0.000003,-4.000000,-0.000000,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11424,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378623',4378623,3.764100,0.000000,2.000000,-2.094395,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11152,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378624',4378624,-3.764100,0.000000,2.000000,1.047197,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10880,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378625',4378625,0.000000,0.000000,-11.000000,-0.000000,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10608,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378626',4378626,9.526200,-0.000046,-5.500000,-1.047197,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10336,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378627',4378627,9.526200,0.000000,5.500000,-2.094395,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10064,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378628',4378628,0.000000,0.000000,11.000000,3.141593,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9792,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378629',4378629,-9.526200,0.000000,5.500000,1.047197,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9520,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378630',4378630,-9.526200,0.000000,-5.500000,1.047197,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,9248,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378631',4378631,0.000000,0.000000,-7.778100,-0.000000,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,8976,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378632',4378632,7.778100,0.000000,0.000000,-1.570451,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,8704,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378633',4378633,0.000000,0.000000,7.778100,-0.000000,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,8432,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378634',4378634,-7.778100,0.000000,0.000000,1.570451,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,8160,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378635',4378635,0.000000,0.000000,-8.500000,-0.000000,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,7888,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378636',4378636,5.750000,0.000000,-5.750000,-0.785398,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,7616,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378638',4378638,8.500000,-0.000002,0.000000,-1.570451,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,7344,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378639',4378639,5.750000,-0.000002,5.750000,-0.785398,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,7072,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378643',4378643,0.000000,-0.000003,8.500000,3.141593,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,6800,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378644',4378644,-5.750000,-0.000004,5.750000,2.356194,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,6528,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378645',4378645,-8.500000,0.000000,0.000000,1.570451,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,6256,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378646',4378646,-5.750000,0.000014,-5.750000,0.785398,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,5984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378652',4378652,-8.000000,0.000000,0.000000,-0.000000,2290,0,0,0,0,6,0,0,2325,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,5718,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4378653',4378653,8.000000,0.000000,0.000000,-0.000000,2290,0,0,0,0,6,0,0,2325,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,5446,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4388877',4388877,0.000000,0.000000,-11.000000,-0.000000,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,5168,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4388878',4388878,7.778100,0.000000,-7.778100,-0.785398,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,4896,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4388879',4388879,11.000000,0.000000,0.000000,-1.570451,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,4624,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4388880',4388880,7.778100,0.000000,7.778100,-0.785398,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,4352,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4388881',4388881,0.000000,0.000000,11.000000,0.000000,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,4080,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4388882',4388882,-7.778100,0.000000,7.778100,0.785398,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,3808,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4388883',4388883,-11.000000,0.000000,0.000000,1.570451,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,3536,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4388884',4388884,-7.778100,0.000024,-7.778100,0.785398,1504,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,3264,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92237,'LVD_BNPC_03','s1fa','bnpc4550248',4550248,3.039408,-0.000000,-6.313390,-0.000000,2286,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3004,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97381,'LVD_BNPC_real','s1fa','bnpc4553209',4553209,0.300000,-0.000013,-20.000000,-0.000000,434,0,0,0,0,6,0,0,1801,0,0.000000,34,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,2598,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97381,'LVD_BNPC_real','s1fa','bnpc4553208',4553208,0.000000,0.000000,-16.000000,-0.000000,2666,0,0,0,0,6,0,0,1801,0,0.000000,34,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,2386,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97381,'LVD_BNPC_real','s1fa','bnpc4553210',4553210,0.300000,0.000000,-15.000000,-0.000000,2668,0,0,0,0,6,0,0,1804,0,0.000000,34,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,2120,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (101963,'LVD_kakashi_01','s1p1','bnpc4833613',4833613,-1.635031,25.616760,-43.514629,-0.000000,901,0,0,0,0,6,0,0,541,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2104,1,0,0,4833610,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (101963,'LVD_kakashi_01','s1p1','bnpc4833614',4833614,-4.841139,25.616760,-52.888550,-0.000000,901,0,0,0,0,6,0,0,541,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1832,1,0,0,4833612,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (101963,'LVD_kakashi_01','s1p1','bnpc4833615',4833615,3.752005,25.616760,-53.523769,-0.000000,901,0,0,0,0,6,0,0,541,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1560,1,0,0,4833609,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (101963,'LVD_kakashi_01','s1p1','bnpc4833616',4833616,6.786954,25.616760,-52.906200,-0.000000,901,0,0,0,0,6,0,0,541,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1288,1,0,0,4833611,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103567,'LVD_BNPC_01','w1b1','bnpc4894005',4894005,-5.834973,-20.000000,133.190002,-0.000000,3097,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8912,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103567,'LVD_BNPC_01','w1b1','bnpc4894010',4894010,-1.420530,-20.004641,133.242599,-0.000048,2008,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8646,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103567,'LVD_BNPC_01','w1b1','bnpc4894018',4894018,8.646700,-20.000000,131.583603,-0.000000,2920,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8380,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103567,'LVD_BNPC_01','w1b1','bnpc4894019',4894019,1.926778,-20.000000,131.650208,-0.000000,2919,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8114,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103567,'LVD_BNPC_01','w1b1','bnpc4894021',4894021,5.116411,-20.011459,132.676193,-0.000048,3021,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7848,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103584,'LVD_BNPC_Boss','w1b1','bnpc4894346',4894346,-0.132589,0.000002,-318.895294,-0.000000,2005,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,6886,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103570,'PlanMap_001','w1b1','bnpc4894007',4894007,7.713847,-18.121910,117.181801,-0.000048,2007,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,592,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103570,'PlanMap_001','w1b1','bnpc4894011',4894011,5.352189,-20.000000,123.589897,-0.000000,2026,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,326,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103568,'LVD_BNPC_01','w1b2','bnpc4894012',4894012,76.334343,78.539719,270.316010,-0.000000,3164,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15548,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103568,'LVD_BNPC_01','w1b2','bnpc4894017',4894017,74.664429,74.030830,253.839005,-0.000048,3145,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15282,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103568,'LVD_BNPC_01','w1b2','bnpc4894022',4894022,67.059158,78.708313,271.921112,-0.000000,2010,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15016,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103568,'LVD_BNPC_01','w1b2','bnpc4894023',4894023,72.740196,79.628868,273.961395,-0.000000,2011,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14750,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103568,'LVD_BNPC_01','w1b2','bnpc4894024',4894024,69.950539,80.146248,276.701385,-0.000000,2012,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14484,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103568,'LVD_BNPC_01','w1b2','bnpc4894025',4894025,66.335327,76.200653,269.042297,-0.000048,2014,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14218,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103568,'LVD_BNPC_01','w1b2','bnpc4894026',4894026,65.457687,79.523811,275.495392,-0.000000,2015,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13952,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103568,'LVD_BNPC_01','w1b2','bnpc4894027',4894027,71.570251,77.188499,266.236786,-0.000000,2184,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103568,'LVD_BNPC_01','w1b2','bnpc4894028',4894028,68.869003,76.325577,263.640594,-0.000048,3170,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13420,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103653,'LVD_Boss_01','w1b2','bnpc4895912',4895912,0.122102,-4.962998,-14.686910,-0.000000,1697,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,13082,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103569,'PlanMap_001','w1b2','bnpc4894013',4894013,63.802368,73.063782,255.980606,-0.000048,3171,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1160,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103569,'PlanMap_001','w1b2','bnpc4894014',4894014,68.774292,73.977997,257.573914,-0.000000,3172,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,894,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103569,'PlanMap_001','w1b2','bnpc4894015',4894015,67.922241,75.149597,264.556091,-0.000048,3173,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,628,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103569,'PlanMap_001','w1b2','bnpc4894016',4894016,73.563263,75.876534,261.894714,-0.000000,3174,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,362,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103654,'LVD_Boss_01','w1b3','bnpc4895915',4895915,-0.285680,-53.235001,-174.085693,-0.000000,386,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,1316,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (103655,'LVD_Boss_01','w1b4','bnpc4895917',4895917,449.897400,0.000000,-12.465150,-0.000000,2021,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,1316,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79304,'LVD_BNPC_01','w1d1','bnpc4021732',4021732,-215.960907,22.903749,-200.427307,-1.173849,1395,0,0,0,1,6,0,0,629,0,0.000000,17,0,120,1,0,1,0,32,2,0,1,0,1,0,0.000000,1.000000,38660,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79304,'LVD_BNPC_01','w1d1','bnpc4021733',4021733,-221.606796,23.819269,-209.613205,-1.173753,1395,0,0,0,1,6,0,0,629,0,0.000000,17,0,120,1,0,1,0,32,2,0,1,0,1,0,0.000000,1.000000,38388,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79304,'LVD_BNPC_01','w1d1','bnpc4021731',4021731,-216.205093,24.002439,-212.878693,-1.173753,1396,0,0,0,1,6,0,0,631,0,0.000000,17,0,120,1,0,1,0,32,2,0,1,0,1,0,0.000000,1.000000,38122,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4088763',4088763,-32.028690,-6.820801,-228.168198,-1.173849,1395,0,0,0,1,6,0,0,629,0,0.000000,17,0,120,1,0,5,0,32,1,0,1,0,1,0,0.000000,1.000000,37664,1,3,144,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4023404',4023404,-64.274094,-5.396020,-167.070999,-1.173849,1395,0,0,0,1,3,0,0,629,0,0.000000,17,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,37392,1,3,112,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4023399',4023399,-124.040604,-4.623535,-184.405304,-1.173753,1395,0,0,0,1,6,0,0,629,0,0.000000,17,0,120,1,0,3,0,32,1,0,1,0,1,0,0.000000,1.000000,37120,1,3,55,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4023477',4023477,8.255066,-10.055730,-141.008698,-1.173753,1395,0,0,0,1,6,0,0,629,0,0.000000,17,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36848,1,3,144,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4088765',4088765,7.705750,-9.994690,-150.286102,-0.000048,1396,0,0,0,1,6,0,0,631,0,0.000000,17,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36582,1,3,152,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4023437',4023437,-141.537201,-3.453618,-154.343002,-0.000048,1396,0,0,0,1,6,0,0,631,0,0.000000,17,0,120,1,0,4,0,32,1,0,1,0,1,0,0.000000,1.000000,36310,1,3,60,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4023431',4023431,-142.412506,-3.524841,-150.865997,-0.000048,1396,0,0,0,1,6,0,0,631,0,0.000000,17,0,120,1,0,4,0,32,1,0,1,0,1,0,0.000000,1.000000,36038,1,3,62,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4023443',4023443,-57.877499,-3.189148,-197.344894,-0.000048,1397,0,0,0,0,6,0,0,117,0,0.000000,17,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35772,1,3,118,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4023453',4023453,-26.108219,-6.820801,-227.191605,-0.000048,1397,0,0,0,0,6,0,0,117,0,0.000000,17,0,120,1,0,5,0,32,1,0,1,0,1,0,0.000000,1.000000,35500,1,3,150,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4023455',4023455,17.440981,-6.973389,-210.864395,-0.000048,1397,0,0,0,0,6,0,0,117,0,0.000000,17,0,120,1,0,6,10,32,1,0,1,0,1,0,0.000000,1.000000,35228,1,3,194,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4023457',4023457,17.624149,-6.973389,-198.229996,-0.000048,1397,0,0,0,0,6,0,0,117,0,0.000000,17,0,120,1,0,6,10,32,1,0,1,0,1,0,0.000000,1.000000,34956,1,3,195,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4023421',4023421,-77.286987,-6.032864,-156.912903,0.456174,1398,0,0,0,0,6,0,0,97,0,0.000000,17,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34690,1,3,110,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4023521',4023521,48.799690,-9.964172,-28.939390,-1.173849,1399,0,0,0,1,6,0,0,984,0,0.000000,17,0,120,1,0,7,0,32,1,0,1,0,1,0,0.000000,1.000000,34424,1,3,29,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4023519',4023519,44.571529,-9.964172,-30.380739,-1.173849,1399,0,0,0,1,6,0,0,984,0,0.000000,17,0,120,1,0,7,0,32,1,0,1,0,1,0,0.000000,1.000000,34152,1,3,28,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4023383',4023383,-145.860992,-8.468750,-200.213699,-1.173753,1396,0,0,0,1,6,0,0,631,0,0.000000,17,0,120,1,0,2,0,32,1,0,1,0,1,0,0.000000,1.000000,33862,1,3,31,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4023381',4023381,-146.166199,-9.231750,-205.706894,-1.173849,1396,0,0,0,1,6,0,0,631,0,0.000000,17,0,120,1,0,2,0,32,1,0,1,0,1,0,0.000000,1.000000,33590,1,3,30,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4185504',4185504,5.477966,-6.973389,-178.912003,-0.000048,1421,0,0,0,5,6,0,0,1342,0,0.000000,17,0,120,1,0,0,0,16,0,0,1,0,0,0,0.000000,1.000000,32510,1,3,135,0,0,0,4185305,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4023474',4023474,0.045776,-9.994690,-144.914902,-0.000048,1421,0,0,0,2,6,0,0,1342,0,0.000000,17,0,120,1,0,0,0,16,0,0,1,0,0,0,0.000000,1.000000,32238,1,3,144,0,0,0,4185238,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4088761',4088761,-94.804321,-6.515625,-196.093704,-1.173849,1421,0,0,0,5,6,0,0,1342,0,0.000000,17,0,120,1,0,0,0,16,0,0,1,0,0,0,0.000000,1.000000,31966,1,3,75,0,0,0,4185237,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4023428',4023428,-143.322205,-3.081284,-140.752197,-0.000048,1421,0,0,0,2,6,0,0,1342,0,0.000000,17,0,120,1,0,0,0,16,0,0,1,0,0,0,0.000000,1.000000,31694,1,3,33,0,0,0,4185233,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4185232',4185232,-40.878910,-6.820801,-224.811203,1.358840,1421,0,0,0,5,6,0,0,1342,0,0.000000,17,0,120,1,0,0,0,16,0,0,1,0,0,0,0.000000,1.000000,31422,1,3,135,0,0,0,4185305,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4203109',4203109,-29.750641,-6.841095,-234.490097,-1.173849,1421,0,0,0,5,6,0,0,1342,0,0.000000,17,0,120,1,0,0,0,16,0,0,1,0,0,0,0.000000,1.000000,31150,1,3,75,0,0,0,4185237,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4203110',4203110,-87.813980,-6.637791,-207.030899,-1.173753,1395,0,0,0,1,6,0,0,629,0,0.000000,17,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30848,1,3,55,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79306,'LVD_BNPC_02','w1d1','bnpc4023402',4023402,-126.878799,-4.684570,-177.447205,-1.173849,1396,0,0,0,1,6,0,0,631,0,0.000000,17,0,120,1,0,3,0,32,1,0,1,0,1,0,0.000000,1.000000,30582,1,3,56,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79310,'LVD_BNPC_03','w1d1','bnpc2790237',2790237,16.739140,-42.313290,39.658199,-0.108914,1400,0,0,0,1,6,0,0,1303,0,0.000000,17,2,120,1,0,10,0,32,2,0,1,0,1,0,0.000000,1.000000,30232,1,3,41,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79310,'LVD_BNPC_03','w1d1','bnpc2790234',2790234,93.156250,-42.099731,41.763920,-0.108914,1400,0,0,0,1,6,0,0,1303,0,0.000000,17,2,120,1,0,11,0,32,1,0,1,0,1,0,0.000000,1.000000,29960,1,3,46,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79310,'LVD_BNPC_03','w1d1','bnpc4056605',4056605,41.428219,-40.268620,64.530403,-0.000048,1399,0,0,0,1,6,0,0,984,0,0.000000,17,0,120,1,0,12,0,32,1,0,1,0,1,0,0.000000,1.000000,29676,1,3,51,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79310,'LVD_BNPC_03','w1d1','bnpc4023537',4023537,58.518311,-38.620670,45.090328,-0.000048,1399,0,0,0,1,6,0,0,984,0,0.000000,17,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29404,1,3,30,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79310,'LVD_BNPC_03','w1d1','bnpc4056604',4056604,34.836300,-39.444641,67.276978,-0.000048,1396,0,0,0,1,6,0,0,631,0,0.000000,17,0,120,1,0,12,0,32,1,0,1,0,1,0,0.000000,1.000000,29114,1,3,55,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79310,'LVD_BNPC_03','w1d1','bnpc4023534',4023534,59.388741,-38.564640,37.886181,-0.000048,1421,0,0,0,2,6,0,0,1342,0,0.000000,17,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28578,1,3,22,0,0,0,4185499,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79310,'LVD_BNPC_03','w1d1','bnpc4023510',4023510,19.455200,-43.625549,52.567261,-0.000048,1399,0,0,0,1,6,0,0,984,0,0.000000,17,0,120,1,0,10,0,32,2,0,1,0,1,0,0.000000,1.000000,28300,1,3,47,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79310,'LVD_BNPC_03','w1d1','bnpc4023509',4023509,19.150089,-42.404850,40.970459,-0.000048,1396,0,0,0,1,6,0,0,631,0,0.000000,17,0,120,1,0,10,0,32,2,0,1,0,1,0,0.000000,1.000000,28010,1,3,41,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79310,'LVD_BNPC_03','w1d1','bnpc4023511',4023511,90.897949,-42.069149,46.951900,-0.000048,1399,0,0,0,1,6,0,0,984,0,0.000000,17,0,120,1,0,11,0,32,1,0,1,0,1,0,0.000000,1.000000,27756,1,3,39,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79312,'LVD_BNPC_04','w1d1','bnpc4023560',4023560,-54.795170,-37.521969,88.853271,0.020056,1403,0,0,0,0,12,0,0,1302,0,2.200000,17,3,120,1,0,22,0,32,2,0,1,0,1,0,0.000000,1.000000,27374,1,3,132,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79312,'LVD_BNPC_04','w1d1','bnpc4023558',4023558,-52.589142,-41.700001,152.572906,-1.022606,1402,0,0,0,1,3,0,0,986,0,0.000000,17,0,120,1,0,21,0,32,1,0,1,0,1,0,0.000000,1.000000,27108,1,3,176,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79312,'LVD_BNPC_04','w1d1','bnpc4023557',4023557,-34.409180,-41.702999,132.616104,1.078260,1402,0,0,0,1,3,0,0,986,0,0.000000,17,0,120,1,0,24,0,32,1,0,1,0,1,0,0.000000,1.000000,26836,1,3,150,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79312,'LVD_BNPC_04','w1d1','bnpc4023568',4023568,-58.091129,-39.322510,105.668701,-0.000048,1401,0,0,0,1,6,0,0,987,0,0.000000,17,0,120,1,0,22,0,32,2,0,1,0,1,0,0.000000,1.000000,26570,1,3,145,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79312,'LVD_BNPC_04','w1d1','bnpc4023566',4023566,-51.163509,-39.932919,111.650299,-0.000048,1401,0,0,0,1,6,0,0,987,0,0.000000,17,0,120,1,0,22,0,32,2,0,1,0,1,0,0.000000,1.000000,26298,1,3,145,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79312,'LVD_BNPC_04','w1d1','bnpc4023559',4023559,-38.814510,-41.700001,159.015594,-0.671463,1399,0,0,0,1,3,0,0,984,0,0.000000,17,0,120,1,0,21,0,32,1,0,1,0,1,0,0.000000,1.000000,25996,1,3,174,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79312,'LVD_BNPC_04','w1d1','bnpc4023571',4023571,-94.468628,-38.406979,113.481300,-0.000048,1399,0,0,0,1,6,0,0,984,0,0.000000,17,0,120,1,0,13,0,32,1,0,1,0,1,0,0.000000,1.000000,25724,1,3,180,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79312,'LVD_BNPC_04','w1d1','bnpc4023570',4023570,-75.837784,-36.297039,115.968102,-0.692374,1401,0,0,0,0,6,0,0,987,0,0.000000,17,0,120,1,0,13,0,32,1,0,1,0,1,0,0.000000,1.000000,25482,1,3,167,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79312,'LVD_BNPC_04','w1d1','bnpc4023554',4023554,-26.226200,-38.847931,115.678596,-0.000048,1402,0,0,0,1,2,0,0,986,0,0.000000,17,0,120,1,0,20,0,32,2,0,1,0,1,0,0.000000,1.000000,25204,1,3,131,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79312,'LVD_BNPC_04','w1d1','bnpc4023556',4023556,-23.220060,-38.633099,105.317902,1.424659,1401,0,0,0,1,6,0,0,987,0,0.000000,17,0,120,1,0,20,0,32,2,0,1,0,1,0,0.000000,1.000000,24938,1,3,121,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79312,'LVD_BNPC_04','w1d1','bnpc4203111',4203111,-72.739807,-41.031559,150.011398,-0.000048,1402,0,0,0,1,3,0,0,986,0,0.000000,17,0,120,1,0,23,0,32,2,0,1,0,1,0,0.000000,1.000000,24660,1,3,188,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79312,'LVD_BNPC_04','w1d1','bnpc4203112',4203112,-66.331047,-41.702999,164.232803,-0.671463,1399,0,0,0,1,6,0,0,984,0,0.000000,17,0,120,1,0,23,0,32,2,0,1,0,1,0,0.000000,1.000000,24364,1,3,194,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79312,'LVD_BNPC_04','w1d1','bnpc4203113',4203113,-69.291260,-41.702999,160.357101,-0.671463,1399,0,0,0,1,6,0,0,984,0,0.000000,17,0,120,1,0,23,0,32,2,0,1,0,1,0,0.000000,1.000000,24092,1,3,194,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79312,'LVD_BNPC_04','w1d1','bnpc4219558',4219558,-29.842501,-37.835350,109.152100,1.424659,1401,0,0,0,1,6,0,0,987,0,0.000000,17,0,120,1,0,20,0,32,2,0,1,0,1,0,0.000000,1.000000,23850,1,3,128,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79312,'LVD_BNPC_04','w1d1','bnpc4219559',4219559,-31.695419,-41.700008,129.802200,-0.000048,1402,0,0,0,1,3,0,0,986,0,0.000000,17,0,120,1,0,24,0,32,1,0,1,0,1,0,0.000000,1.000000,23572,1,3,147,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79308,'LVD_BNPC_boss_01','w1d1','bnpc2790304',2790304,-102.494904,-58.503761,15.314880,-0.000048,112,0,0,0,0,48,0,0,101,0,1.600000,17,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23076,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79308,'LVD_BNPC_boss_01','w1d1','bnpc3632937',3632937,-136.112000,-54.436810,40.601940,1.165555,267,0,0,0,1,24,0,0,988,0,0.000000,17,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22810,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79308,'LVD_BNPC_boss_01','w1d1','bnpc3445130',3445130,-122.915604,-55.471889,34.680359,1.012546,433,0,0,0,3,6,0,0,1262,0,0.000000,19,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22544,1,0,0,3163472,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79308,'LVD_BNPC_boss_01','w1d1','bnpc3445126',3445126,-74.565086,-55.419930,1.988244,-1.417276,433,0,0,0,0,6,0,0,1262,0,0.000000,5,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22272,1,0,0,3163462,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79308,'LVD_BNPC_boss_01','w1d1','bnpc2790179',2790179,21.634279,0.352226,-92.859917,1.383556,107,0,0,0,0,6,0,0,548,0,0.000000,17,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22006,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79308,'LVD_BNPC_boss_01','w1d1','bnpc3632936',3632936,-58.760300,-52.695068,-2.555375,-1.435588,267,0,0,0,6,48,0,0,988,0,0.000000,17,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20858,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79308,'LVD_BNPC_boss_01','w1d1','bnpc2790250',2790250,27.634029,-37.866180,107.342102,0.543229,948,0,0,0,1,6,0,0,554,0,0.000000,17,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20400,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79308,'LVD_BNPC_boss_01','w1d1','bnpc4086968',4086968,24.551571,-37.953899,111.619598,0.543229,949,0,0,0,1,6,0,0,554,0,0.000000,17,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20134,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79308,'LVD_BNPC_boss_01','w1d1','bnpc4086969',4086969,21.451080,-38.048481,112.504799,0.543229,950,0,0,0,1,6,0,0,554,0,0.000000,17,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19868,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79308,'LVD_BNPC_boss_01','w1d1','bnpc4086970',4086970,23.470831,-38.018730,113.420303,0.543229,951,0,0,0,1,6,0,0,554,0,0.000000,17,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19602,1,6,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79308,'LVD_BNPC_boss_01','w1d1','bnpc4086956',4086956,29.977940,0.374311,-91.676529,1.342972,944,0,0,0,1,6,0,0,716,0,0.000000,17,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19336,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79308,'LVD_BNPC_boss_01','w1d1','bnpc4086957',4086957,30.563841,0.381470,-92.210327,1.347335,945,0,0,0,1,6,0,0,983,0,0.000000,17,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19070,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79308,'LVD_BNPC_boss_01','w1d1','bnpc4086973',4086973,49.064171,-38.007839,113.725502,-1.527867,946,0,0,0,1,6,0,0,985,0,0.000000,17,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18804,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79308,'LVD_BNPC_boss_01','w1d1','bnpc4086971',4086971,33.817921,-37.971001,113.580399,-0.000000,947,0,0,0,1,6,0,0,555,0,0.000000,17,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18538,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79308,'LVD_BNPC_boss_01','w1d1','bnpc4127514',4127514,35.971081,-9.091773,-110.740097,0.589617,944,0,0,0,1,6,0,0,716,0,0.000000,17,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17868,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79308,'LVD_BNPC_boss_01','w1d1','bnpc4127515',4127515,59.643059,-9.049066,-77.428169,-1.002710,944,0,0,0,1,6,0,0,716,0,0.000000,17,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17596,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (79308,'LVD_BNPC_boss_01','w1d1','bnpc4087098',4087098,47.135010,-9.353821,-92.576477,-0.025688,944,0,0,0,1,3,0,0,716,0,0.000000,17,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16732,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc3985472',3985472,94.773682,-3.738525,36.209591,0.746916,1415,0,0,0,5,6,0,0,1193,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,54692,1,3,2000,0,0,0,4099479,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc3985471',3985471,109.147697,-3.738525,84.183960,-0.161358,1415,0,0,0,5,6,0,0,1193,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,54420,1,3,2000,0,0,0,4099481,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc3985412',3985412,148.546494,-1.236023,-38.040829,-0.000335,1410,0,0,0,1,6,0,0,1188,0,0.000000,20,0,120,1,0,18,0,32,2,0,1,0,1,0,0.000000,1.000000,54154,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc3987552',3987552,165.056793,6.210388,-65.232361,-0.000335,1410,0,0,0,1,6,0,0,1188,0,0.000000,20,0,120,1,0,19,0,32,1,0,1,0,1,0,0.000000,1.000000,53882,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc3998626',3998626,57.816410,9.140137,107.225098,0.613889,1410,0,0,0,1,6,0,0,1188,0,0.000000,20,0,120,1,0,15,0,32,2,0,1,0,1,0,0.000000,1.000000,53610,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc3985416',3985416,104.265602,-3.711910,55.363880,0.479643,1410,0,0,0,1,6,0,0,1188,0,0.000000,20,0,120,1,0,14,0,32,2,0,1,0,1,0,0.000000,1.000000,53338,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc3987549',3987549,135.484894,-1.693787,-6.088379,-0.000144,1410,0,0,0,1,6,0,0,1188,0,0.000000,20,0,120,1,0,12,0,32,2,0,1,0,1,0,0.000000,1.000000,53066,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc3985408',3985408,188.372604,6.271411,-36.606441,-0.000144,1410,0,0,0,1,6,0,0,1188,0,0.000000,20,0,120,1,0,11,0,32,1,0,1,0,1,0,0.000000,1.000000,52794,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc3985409',3985409,190.630905,6.240893,-34.012409,-0.000144,1424,0,0,0,1,6,0,0,1354,0,0.000000,20,0,120,1,0,11,0,32,1,0,1,0,1,0,0.000000,1.000000,52528,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc3987550',3987550,137.804199,-1.663330,-8.773987,-0.000048,1424,0,0,0,1,6,0,0,1354,0,0.000000,20,0,120,1,0,12,0,32,2,0,1,0,1,0,0.000000,1.000000,52256,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc3985410',3985410,146.990097,-1.236023,-43.839230,-0.000048,1424,0,0,0,1,6,0,0,1354,0,0.000000,20,0,120,1,0,18,0,32,2,0,1,0,1,0,0.000000,1.000000,51984,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc3987551',3987551,139.879395,-1.663330,-5.996826,-0.000048,1424,0,0,0,1,6,0,0,1354,0,0.000000,20,0,120,1,0,12,0,32,2,0,1,0,1,0,0.000000,1.000000,51712,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc3987555',3987555,104.997200,-3.738525,58.518311,0.524821,1424,0,0,0,1,6,0,0,1354,0,0.000000,20,0,120,1,0,14,0,32,2,0,1,0,1,0,0.000000,1.000000,51440,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc3987553',3987553,163.744507,6.240893,-68.040024,-0.000144,1424,0,0,0,1,6,0,0,1354,0,0.000000,20,0,120,1,0,19,0,32,1,0,1,0,1,0,0.000000,1.000000,51168,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc4184459',4184459,151.811905,-1.236023,-42.374329,-0.000048,1424,0,0,0,1,6,0,0,1354,0,0.000000,20,0,120,1,0,18,0,32,2,0,1,0,1,0,0.000000,1.000000,50896,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc4184460',4184460,100.752899,-3.711910,56.330582,0.524742,1424,0,0,0,1,6,0,0,1354,0,0.000000,20,0,120,1,0,14,0,32,2,0,1,0,1,0,0.000000,1.000000,50624,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc4186800',4186800,54.306759,9.140137,108.995102,0.613410,1424,0,0,0,1,6,0,0,1354,0,0.000000,20,0,120,1,0,15,0,32,2,0,1,0,1,0,0.000000,1.000000,50352,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc4186801',4186801,53.818481,9.140137,105.546600,0.613889,1424,0,0,0,1,6,0,0,1354,0,0.000000,20,0,120,1,0,15,0,32,2,0,1,0,1,0,0.000000,1.000000,50080,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc4223448',4223448,143.410599,-1.641949,-48.361370,-0.812916,1415,0,0,0,2,6,0,0,1193,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,49620,1,3,2000,0,0,0,4222729,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85147,'LVD_BNPC_01','w1d2','bnpc4223455',4223455,32.704960,5.047771,95.782066,1.565926,1415,0,0,0,5,6,0,0,1193,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,49140,1,3,2000,0,0,0,4223451,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc3987560',3987560,48.569420,-10.940770,-90.867523,0.343042,1412,0,0,0,1,6,0,0,1190,0,0.000000,20,0,120,1,0,22,0,32,2,0,1,0,1,0,0.000000,1.000000,48734,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc3987572',3987572,-83.115967,-10.818660,-97.581482,0.262315,1412,0,0,0,1,6,0,0,1190,0,0.000000,20,0,120,1,0,26,0,32,2,0,1,0,1,0,0.000000,1.000000,48462,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc3987564',3987564,9.079041,-11.062810,-182.909897,-1.326578,1412,0,0,0,1,6,0,0,1190,0,0.000000,20,0,120,1,0,24,0,32,2,0,1,0,1,0,0.000000,1.000000,48190,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc3987566',3987566,12.313960,-11.062810,-187.060394,-0.000527,1411,0,0,0,1,6,0,0,1189,0,0.000000,20,0,120,1,0,24,0,32,2,0,1,0,1,0,0.000000,1.000000,47924,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc3987565',3987565,12.466550,-11.062810,-180.743195,-0.000335,1411,0,0,0,1,6,0,0,1189,0,0.000000,20,0,120,1,0,24,0,32,2,0,1,0,1,0,0.000000,1.000000,47652,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc3987624',3987624,-82.963379,-10.788150,-91.050659,-0.000144,1411,0,0,0,1,6,0,0,1189,0,0.000000,20,0,120,1,0,26,0,32,2,0,1,0,1,0,0.000000,1.000000,47380,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc3987556',3987556,77.012230,-10.879730,-96.665947,-0.000144,1411,0,0,0,1,6,0,0,1189,0,0.000000,20,0,120,1,0,21,0,32,1,0,1,0,1,0,0.000000,1.000000,47108,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc3987626',3987626,-10.551780,-1.897295,-112.223503,-0.000335,1411,0,0,0,1,6,0,0,1189,0,0.000000,20,0,120,1,0,23,0,32,2,0,1,0,1,0,0.000000,1.000000,46836,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc3987557',3987557,73.227997,-10.879730,-95.811440,-0.000144,1411,0,0,0,1,6,0,0,1189,0,0.000000,20,0,120,1,0,21,0,32,1,0,1,0,1,0,0.000000,1.000000,46564,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc3987559',3987559,44.235859,-10.910250,-92.484978,-0.000240,1411,0,0,0,1,6,0,0,1189,0,0.000000,20,0,120,1,0,22,0,32,2,0,1,0,1,0,0.000000,1.000000,46292,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc3987558',3987558,48.477859,-10.910250,-85.771004,-0.000240,1411,0,0,0,1,6,0,0,1189,0,0.000000,20,0,120,1,0,22,0,32,2,0,1,0,1,0,0.000000,1.000000,46020,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc3987562',3987562,-5.882465,-2.500548,-112.894798,-0.000335,1411,0,0,0,1,6,0,0,1189,0,0.000000,20,0,120,1,0,23,0,32,2,0,1,0,1,0,0.000000,1.000000,45748,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc3987563',3987563,-12.134020,-1.660716,-116.404404,-0.000144,1411,0,0,0,1,6,0,0,1189,0,0.000000,20,0,120,1,0,23,0,32,2,0,1,0,1,0,0.000000,1.000000,45476,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc4195685',4195685,-78.782349,-10.727110,-92.668091,-0.000144,1411,0,0,0,1,6,0,0,1189,0,0.000000,20,0,120,1,0,26,0,32,2,0,1,0,1,0,0.000000,1.000000,45204,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc4205320',4205320,-14.206180,-11.123840,-149.065399,-1.326578,1412,0,0,0,1,6,0,0,1190,0,0.000000,20,0,120,1,0,25,0,32,2,0,1,0,1,0,0.000000,1.000000,44926,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc4205321',4205321,-10.959080,-11.071360,-153.204498,-0.000527,1411,0,0,0,1,6,0,0,1189,0,0.000000,20,0,120,1,0,25,0,32,2,0,1,0,1,0,0.000000,1.000000,44660,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc4205322',4205322,-10.806490,-11.287730,-146.887207,-0.000335,1411,0,0,0,1,6,0,0,1189,0,0.000000,20,0,120,1,0,25,0,32,2,0,1,0,1,0,0.000000,1.000000,44388,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc4205423',4205423,-1.384451,-11.093320,-189.403397,-1.493681,1411,0,0,0,2,6,0,0,1189,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43908,1,3,2000,0,0,0,4205333,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85194,'LVD_BNPC_02','w1d2','bnpc4223458',4223458,0.564514,-11.032290,-175.127808,-0.644617,1412,0,0,0,5,6,0,0,1190,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43374,1,3,2000,0,0,0,4223456,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85287,'LVD_BNPC_03','w1d2','bnpc3998629',3998629,-131.242905,3.646851,-31.540409,1.446422,1413,0,0,0,1,6,0,0,1191,0,0.000000,20,0,120,1,0,31,0,32,1,0,1,0,1,0,0.000000,1.000000,42994,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85287,'LVD_BNPC_03','w1d2','bnpc3998632',3998632,-153.490494,9.384277,11.093260,1.068529,1413,0,0,0,1,6,0,0,1191,0,0.000000,20,0,120,1,0,32,0,32,2,0,1,0,1,0,0.000000,1.000000,42722,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85287,'LVD_BNPC_03','w1d2','bnpc3998633',3998633,-158.801300,9.416150,4.597439,0.438948,1413,0,0,0,1,6,0,0,1191,0,0.000000,20,0,120,1,0,32,0,32,2,0,1,0,1,0,0.000000,1.000000,42450,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85287,'LVD_BNPC_03','w1d2','bnpc4101177',4101177,-108.254402,10.234440,3.719265,-1.516893,1413,0,0,0,1,6,0,0,1191,0,0.000000,20,0,120,1,0,33,0,32,2,0,1,0,1,0,0.000000,1.000000,42178,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85287,'LVD_BNPC_03','w1d2','bnpc4101178',4101178,-111.794998,9.833187,-3.942090,-0.928187,1413,0,0,0,1,6,0,0,1191,0,0.000000,20,0,120,1,0,33,0,32,2,0,1,0,1,0,0.000000,1.000000,41906,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85287,'LVD_BNPC_03','w1d2','bnpc4101127',4101127,-125.108803,9.811523,-0.320496,-1.224615,1414,0,0,0,0,6,0,0,1192,0,0.000000,20,0,120,1,0,35,0,32,1,0,1,0,1,0,0.000000,1.000000,41640,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85287,'LVD_BNPC_03','w1d2','bnpc4145049',4145049,-126.115898,9.811523,2.945007,-1.504523,1414,0,0,0,0,6,0,0,1192,0,0.000000,20,0,120,1,0,35,0,32,1,0,1,0,1,0,0.000000,1.000000,41368,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85287,'LVD_BNPC_03','w1d2','bnpc4195704',4195704,-140.581406,9.414734,26.657471,-1.134300,1415,0,0,0,2,6,0,0,1193,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,40676,1,3,2000,0,0,0,4195689,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85287,'LVD_BNPC_03','w1d2','bnpc4195708',4195708,-117.237000,9.870837,-16.448339,1.398448,1415,0,0,0,2,6,0,0,1193,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,40404,1,3,2000,0,0,0,4195703,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85287,'LVD_BNPC_03','w1d2','bnpc4223460',4223460,-124.084900,2.072251,-33.390331,-1.183298,1415,0,0,0,5,6,0,0,1193,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39908,1,3,2000,0,0,0,4223459,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101020',4101020,-271.131409,17.225630,19.957199,1.380787,979,0,0,0,0,6,0,0,1197,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39450,1,2,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101424',4101424,-277.452209,17.568609,40.437000,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39184,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101447',4101447,-277.452209,17.568600,40.437000,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,38912,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101448',4101448,-277.452209,17.568600,40.437000,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,38640,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101449',4101449,-277.452209,17.568600,40.437000,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,38368,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101450',4101450,-255.683197,17.570080,47.316502,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,38096,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101451',4101451,-255.683197,17.570080,47.316502,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,37824,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101452',4101452,-255.683197,17.570080,47.316502,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,37552,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101453',4101453,-255.683197,17.570080,47.316502,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,37280,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101456',4101456,-237.304703,17.604349,38.752121,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,37008,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101457',4101457,-237.304703,17.604349,38.752110,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36736,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101458',4101458,-237.304703,17.604349,38.752110,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36464,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101459',4101459,-237.304703,17.604349,38.752110,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36192,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101460',4101460,-278.928406,17.555901,-2.495306,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35920,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101461',4101461,-278.928497,17.555901,-2.495310,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35648,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101462',4101462,-278.928497,17.555901,-2.495310,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35376,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101463',4101463,-278.928497,17.555901,-2.495310,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35104,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101465',4101465,-261.221313,17.568060,-10.768690,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34832,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101466',4101466,-261.221313,17.568060,-10.768700,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34560,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101467',4101467,-261.221313,17.568060,-10.768700,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34288,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101468',4101468,-261.221313,17.568060,-10.768700,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34016,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101469',4101469,-239.437195,17.568661,-4.146132,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33744,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101470',4101470,-239.437195,17.568661,-4.146136,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33472,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101471',4101471,-239.437195,17.568661,-4.146136,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33200,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101472',4101472,-239.437195,17.568661,-4.146136,-0.000000,976,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32928,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101474',4101474,-277.452209,17.568600,40.437000,-0.000000,977,0,0,0,0,6,0,0,1195,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32662,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101476',4101476,-255.683197,17.570101,47.316502,-0.000000,977,0,0,0,0,6,0,0,1195,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32390,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101477',4101477,-237.304703,17.604401,38.752102,-0.000000,977,0,0,0,0,6,0,0,1195,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32118,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101478',4101478,-278.928497,17.555901,-2.495300,-0.000000,977,0,0,0,0,6,0,0,1195,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31846,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101498',4101498,-261.221313,17.568100,-10.768700,-0.000000,977,0,0,0,0,6,0,0,1195,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31574,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101503',4101503,-239.437195,17.568701,-4.146100,-0.000000,977,0,0,0,0,6,0,0,1195,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31302,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101506',4101506,-238.260498,17.225630,16.361401,-0.000000,978,0,0,0,0,6,0,0,116,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31036,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101509',4101509,-237.357101,17.270950,17.146231,-0.000000,978,0,0,0,0,6,0,0,116,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30764,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101510',4101510,-237.269501,17.225630,15.551390,-0.000000,978,0,0,0,0,6,0,0,116,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30492,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101511',4101511,-237.011200,17.225630,16.393320,-0.000000,978,0,0,0,0,6,0,0,116,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30220,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101512',4101512,-237.011200,17.225630,16.393270,-0.000000,978,0,0,0,0,6,0,0,116,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29948,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101513',4101513,-237.011200,17.225630,16.393270,-0.000000,978,0,0,0,0,6,0,0,116,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29676,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101514',4101514,-237.011200,17.225630,16.393270,-0.000000,978,0,0,0,0,6,0,0,116,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29404,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101515',4101515,-237.011200,17.225630,16.393270,-0.000000,978,0,0,0,0,6,0,0,116,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29132,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86916,'LVD_BNPC_BOSS','w1d2','bnpc4101516',4101516,-237.011200,17.225630,16.393270,-0.000000,978,0,0,0,0,6,0,0,116,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28860,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85195,'LVD_BNPC_MBOSS_01','w1d2','bnpc3987628',3987628,21.628969,0.927666,135.966904,-0.000335,973,0,0,0,0,6,0,0,1194,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28462,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85195,'LVD_BNPC_MBOSS_01','w1d2','bnpc4101380',4101380,-19.621960,2.187741,152.235504,-0.000000,971,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28196,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85195,'LVD_BNPC_MBOSS_01','w1d2','bnpc4101382',4101382,-19.622000,2.187700,152.235504,-0.000000,971,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27924,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85195,'LVD_BNPC_MBOSS_01','w1d2','bnpc4101387',4101387,-19.622000,2.187700,152.235504,-0.000000,971,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27652,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85195,'LVD_BNPC_MBOSS_01','w1d2','bnpc4101388',4101388,-19.622000,2.187700,152.235504,-0.000000,971,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27380,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85195,'LVD_BNPC_MBOSS_01','w1d2','bnpc4101392',4101392,24.526211,2.233568,180.544693,-0.000000,971,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27108,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85195,'LVD_BNPC_MBOSS_01','w1d2','bnpc4101393',4101393,24.526171,2.233568,180.544601,-0.000000,971,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26836,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85195,'LVD_BNPC_MBOSS_01','w1d2','bnpc4101394',4101394,24.526171,2.233568,180.544601,-0.000000,971,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26564,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85195,'LVD_BNPC_MBOSS_01','w1d2','bnpc4101395',4101395,24.526171,2.233568,180.544601,-0.000000,971,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26292,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85195,'LVD_BNPC_MBOSS_01','w1d2','bnpc4101398',4101398,88.949608,2.247609,139.983795,-0.000000,971,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26020,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85195,'LVD_BNPC_MBOSS_01','w1d2','bnpc4101399',4101399,88.949562,2.247609,139.983795,-0.000000,971,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25748,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85195,'LVD_BNPC_MBOSS_01','w1d2','bnpc4101400',4101400,88.949562,2.247609,139.983795,-0.000000,971,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25476,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85195,'LVD_BNPC_MBOSS_01','w1d2','bnpc4101401',4101401,88.949562,2.247609,139.983795,-0.000000,971,0,0,0,0,6,0,0,1187,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25204,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85195,'LVD_BNPC_MBOSS_01','w1d2','bnpc4101405',4101405,-19.622000,2.187700,152.235504,-0.000000,972,0,0,0,0,6,0,0,1195,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24938,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85195,'LVD_BNPC_MBOSS_01','w1d2','bnpc4101408',4101408,24.526199,2.233600,180.544601,-0.000000,972,0,0,0,0,6,0,0,1195,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24666,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85195,'LVD_BNPC_MBOSS_01','w1d2','bnpc4101409',4101409,88.944817,2.243042,139.970901,-0.000048,972,0,0,0,0,6,0,0,1195,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24394,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86915,'LVD_BNPC_MBOSS_02','w1d2','bnpc4101016',4101016,-179.701599,-15.010420,-135.818604,1.178023,975,0,0,0,0,6,0,0,1196,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24020,1,6,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86915,'LVD_BNPC_MBOSS_02','w1d2','bnpc4101411',4101411,-176.216599,-15.010410,-132.392700,-0.000048,974,0,0,0,0,6,0,0,117,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23754,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86915,'LVD_BNPC_MBOSS_02','w1d2','bnpc4101413',4101413,-175.270493,-15.010420,-133.125107,-0.000048,974,0,0,0,0,6,0,0,117,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23482,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86915,'LVD_BNPC_MBOSS_02','w1d2','bnpc4101414',4101414,-175.941895,-15.010400,-131.416107,-0.000048,974,0,0,0,0,6,0,0,117,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23210,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86915,'LVD_BNPC_MBOSS_02','w1d2','bnpc4101415',4101415,-175.112595,-15.010410,-131.973206,-0.000000,974,0,0,0,0,6,0,0,117,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22938,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86915,'LVD_BNPC_MBOSS_02','w1d2','bnpc4101416',4101416,-175.112595,-15.010410,-131.973206,-0.000000,974,0,0,0,0,6,0,0,117,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22666,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86915,'LVD_BNPC_MBOSS_02','w1d2','bnpc4101417',4101417,-175.117905,-15.010410,-131.996002,-0.000048,974,0,0,0,0,6,0,0,117,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22394,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86915,'LVD_BNPC_MBOSS_02','w1d2','bnpc4101418',4101418,-175.112595,-15.010410,-131.973206,-0.000000,974,0,0,0,0,6,0,0,117,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22122,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86915,'LVD_BNPC_MBOSS_02','w1d2','bnpc4101419',4101419,-175.112595,-15.010410,-131.973206,-0.000000,974,0,0,0,0,6,0,0,117,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21850,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86915,'LVD_BNPC_MBOSS_02','w1d2','bnpc4101420',4101420,-175.112595,-15.010410,-131.973206,-0.000000,974,0,0,0,0,6,0,0,117,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21578,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97946,'LVD_EPIC_BATTLE','w1d2','bnpc4600278',4600278,-274.195587,17.225630,18.911619,1.490497,1697,0,0,0,8,6,0,0,2161,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20584,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97946,'LVD_EPIC_BATTLE','w1d2','bnpc4614872',4614872,-261.326599,17.225630,-3.968693,-0.062565,1698,0,0,0,8,6,0,0,656,0,80.000000,49,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20178,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97946,'LVD_EPIC_BATTLE','w1d2','bnpc4614873',4614873,-265.108704,17.327801,34.212910,0.180825,1698,0,0,0,8,6,0,0,656,0,80.000000,49,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19906,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97946,'LVD_EPIC_BATTLE','w1d2','bnpc4614874',4614874,-239.788300,17.225630,27.443600,-1.207432,1698,0,0,0,8,6,0,0,656,0,80.000000,49,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19634,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97946,'LVD_EPIC_BATTLE','w1d2','bnpc4614883',4614883,-257.017609,17.206200,17.462620,-0.000000,2043,0,0,0,3,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19368,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97946,'LVD_EPIC_BATTLE','w1d2','bnpc4614886',4614886,-259.853485,17.225630,10.268560,-0.000000,1993,0,0,0,3,6,0,0,0,0,0.000000,49,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19102,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97946,'LVD_EPIC_BATTLE','w1d2','bnpc4614887',4614887,-260.101105,17.232479,22.606119,-0.000000,1994,0,0,0,3,6,0,0,0,0,0.000000,49,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18836,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101025',4101025,74.758507,-11.019170,-106.685204,-0.000000,980,0,0,0,0,6,0,0,1193,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12102,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101034',4101034,42.389832,-10.958640,-84.790253,0.960698,980,0,0,0,0,6,0,0,1193,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11830,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101041',4101041,17.399370,-11.009910,-190.064896,-1.108004,980,0,0,0,0,6,0,0,1193,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11558,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101069',4101069,-38.694679,-11.068510,-128.949997,1.261958,980,0,0,0,0,6,0,0,1193,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11286,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101077',4101077,-82.434219,-10.965880,-112.949203,0.630370,980,0,0,0,0,6,0,0,1193,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11014,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101103',4101103,16.125740,-11.264760,-191.621597,-0.000000,1416,0,0,0,1,6,0,0,117,0,0.000000,20,0,120,1,0,53,0,16,2,0,1,0,1,0,0.000000,1.000000,10104,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101102',4101102,16.404329,-11.333980,-188.701797,-0.000048,1416,0,0,0,1,6,0,0,117,0,0.000000,20,0,120,1,0,53,0,16,2,0,1,0,1,0,0.000000,1.000000,9832,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101093',4101093,73.672859,-11.132110,-105.518997,-0.000000,1416,0,0,0,1,6,0,0,117,0,0.000000,20,0,120,1,0,51,0,16,2,0,1,0,1,0,0.000000,1.000000,9560,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101104',4101104,19.398069,-11.096800,-189.304199,-0.000048,1416,0,0,0,1,6,0,0,117,0,0.000000,20,0,120,1,0,53,0,16,2,0,1,0,1,0,0.000000,1.000000,9288,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101096',4101096,44.106239,-11.004630,-84.335793,-0.000000,1416,0,0,0,1,6,0,0,117,0,0.000000,20,0,120,1,0,52,0,16,2,0,1,0,1,0,0.000000,1.000000,9016,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101092',4101092,73.380623,-10.879700,-108.445900,-0.000048,1416,0,0,0,1,6,0,0,117,0,0.000000,20,0,120,1,0,51,0,16,2,0,1,0,1,0,0.000000,1.000000,8744,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101094',4101094,41.112499,-10.851840,-83.733414,-0.000000,1416,0,0,0,1,6,0,0,117,0,0.000000,20,0,120,1,0,52,0,16,2,0,1,0,1,0,0.000000,1.000000,8472,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101095',4101095,40.833912,-10.910920,-86.653191,-0.000000,1416,0,0,0,1,6,0,0,117,0,0.000000,20,0,120,1,0,52,0,16,2,0,1,0,1,0,0.000000,1.000000,8200,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101086',4101086,76.646004,-11.093380,-106.126503,-0.000048,1416,0,0,0,1,6,0,0,117,0,0.000000,20,0,120,1,0,51,0,16,2,0,1,0,1,0,0.000000,1.000000,7928,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101106',4101106,-38.241859,-10.987660,-130.443604,-0.000000,1416,0,0,0,1,6,0,0,117,0,0.000000,20,0,120,1,0,54,0,16,2,0,1,0,1,0,0.000000,1.000000,7656,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101107',4101107,-40.016979,-10.960150,-128.126099,-0.000048,1416,0,0,0,1,6,0,0,117,0,0.000000,20,0,120,1,0,54,0,16,2,0,1,0,1,0,0.000000,1.000000,7384,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101110',4101110,-80.835564,-10.933210,-113.694901,-0.000000,1416,0,0,0,1,6,0,0,117,0,0.000000,20,0,120,1,0,55,0,16,2,0,1,0,1,0,0.000000,1.000000,7112,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101111',4101111,-84.084839,-11.002010,-112.144203,-0.000048,1416,0,0,0,0,6,0,0,117,0,0.000000,20,0,120,1,0,55,0,16,2,0,1,0,1,0,0.000000,1.000000,6840,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101109',4101109,-81.944260,-11.055860,-111.718002,-0.000048,1416,0,0,0,1,6,0,0,117,0,0.000000,20,0,120,1,0,55,0,16,2,0,1,0,1,0,0.000000,1.000000,6568,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86753,'LVD_gimmick_01','w1d2','bnpc4101105',4101105,-37.876389,-11.062810,-127.699898,-0.000048,1416,0,0,0,1,6,0,0,117,0,0.000000,20,0,120,1,0,54,0,16,2,0,1,0,1,0,0.000000,1.000000,6296,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93106,'QB_JobWar001_002','w1d2','bnpc4297305',4297305,-274.068115,17.196840,18.539671,1.471963,1697,0,0,0,8,6,0,0,2161,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2192,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93106,'QB_JobWar001_002','w1d2','bnpc4301722',4301722,-264.651398,17.211399,-0.089432,-0.000000,1698,0,0,0,8,6,0,0,656,0,80.000000,49,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1926,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93106,'QB_JobWar001_002','w1d2','bnpc4301723',4301723,-263.027313,17.327801,34.926949,0.099441,1698,0,0,0,8,6,0,0,656,0,80.000000,49,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1654,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93106,'QB_JobWar001_002','w1d2','bnpc4301725',4301725,-241.719498,17.225630,28.463320,-1.294286,1698,0,0,0,8,6,0,0,656,0,80.000000,49,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1382,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93106,'QB_JobWar001_002','w1d2','bnpc4301811',4301811,-255.035904,17.206181,17.031811,-0.000000,2043,0,0,0,8,6,0,0,0,0,0.000000,1,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1116,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93106,'QB_JobWar001_002','w1d2','bnpc4309916',4309916,-262.511292,17.225630,3.175887,-0.000000,1993,0,0,0,3,6,0,0,0,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,850,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93106,'QB_JobWar001_002','w1d2','bnpc4309918',4309918,-264.496887,17.265390,35.224949,-0.000000,1994,0,0,0,3,6,0,0,0,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,584,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85569,'LVD_BNPC_01','w1d3','bnpc4011583',4011583,-146.233093,11.999800,7.654619,-1.034957,1762,0,0,0,1,6,0,0,1574,0,0.000000,35,0,120,1,0,11,0,30,2,0,1,0,1,0,0.000000,1.000000,39388,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85569,'LVD_BNPC_01','w1d3','bnpc4011584',4011584,-146.542801,11.978270,-8.025117,-0.917492,1762,0,0,0,1,6,0,0,1574,0,0.000000,35,0,120,1,0,11,0,30,2,0,1,0,1,0,0.000000,1.000000,39116,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85569,'LVD_BNPC_01','w1d3','bnpc4002707',4002707,-147.346207,11.978280,0.016660,-1.525307,1762,0,0,0,1,6,0,0,1574,0,0.000000,35,0,120,1,0,11,0,30,2,0,1,0,1,0,0.000000,1.000000,38844,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85569,'LVD_BNPC_01','w1d3','bnpc4002719',4002719,-135.942703,-9.000010,55.954830,-0.878361,1762,0,0,0,1,6,0,0,1574,0,0.000000,35,0,120,1,0,12,0,30,2,0,1,0,1,0,0.000000,1.000000,38572,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85569,'LVD_BNPC_01','w1d3','bnpc4002717',4002717,-134.935501,-8.278116,68.009399,-0.634790,1762,0,0,0,1,6,0,0,1574,0,0.000000,35,0,120,1,0,12,0,30,2,0,1,0,1,0,0.000000,1.000000,38300,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85569,'LVD_BNPC_01','w1d3','bnpc4002722',4002722,-132.066895,-17.988871,11.672100,-0.634119,1762,0,0,0,1,6,0,0,1574,0,0.000000,35,0,120,1,0,13,0,30,1,0,1,0,1,0,0.000000,1.000000,38028,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85569,'LVD_BNPC_01','w1d3','bnpc4011591',4011591,-138.444199,-17.230869,-18.199520,-0.000048,1763,0,0,0,6,6,0,0,1575,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,37762,1,3,2000,0,0,0,4332609,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85569,'LVD_BNPC_01','w1d3','bnpc4011595',4011595,-133.491302,-17.970011,-15.460410,-0.000048,1763,0,0,0,1,6,0,0,1575,0,0.000000,35,0,120,1,0,14,0,30,1,0,1,0,1,0,0.000000,1.000000,37490,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85569,'LVD_BNPC_01','w1d3','bnpc4011596',4011596,-132.585602,-8.475674,-68.162109,-1.014792,1763,0,0,0,1,6,0,0,1575,0,0.000000,35,0,120,1,0,15,0,30,2,0,1,0,1,0,0.000000,1.000000,37218,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85569,'LVD_BNPC_01','w1d3','bnpc4002718',4002718,-146.410294,-9.000017,61.997311,1.276914,1764,0,0,0,0,6,0,0,1576,0,0.000000,35,0,120,1,0,12,0,30,2,0,1,0,1,0,0.000000,1.000000,36952,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85569,'LVD_BNPC_01','w1d3','bnpc4002725',4002725,-142.146805,-18.626310,11.975880,0.996267,1762,0,0,0,1,6,0,0,1574,0,0.000000,35,0,120,1,0,13,0,30,1,0,1,0,1,0,0.000000,1.000000,36668,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85569,'LVD_BNPC_01','w1d3','bnpc4002734',4002734,-146.318802,-11.220560,-62.272160,1.184299,1764,0,0,0,0,6,0,0,1576,0,0.000000,35,0,120,1,0,15,0,30,2,0,1,0,1,0,0.000000,1.000000,36408,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85569,'LVD_BNPC_01','w1d3','bnpc4002736',4002736,-131.700607,-9.545068,-55.832821,-0.812543,1762,0,0,0,1,6,0,0,1574,0,0.000000,35,0,120,1,0,15,0,30,2,0,1,0,1,0,0.000000,1.000000,36124,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85404,'LVD_BNPC_02','w1d3','bnpc4002791',4002791,8.813293,-19.028080,48.712448,0.250532,1764,0,0,0,0,6,0,0,1576,0,0.000000,35,0,120,1,0,24,0,30,2,0,1,0,1,0,0.000000,1.000000,35740,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85404,'LVD_BNPC_02','w1d3','bnpc4002793',4002793,-0.335656,-19.028080,37.991692,0.549988,1764,0,0,0,1,6,0,0,1576,0,0.000000,35,0,120,1,0,24,0,30,2,0,1,0,1,0,0.000000,1.000000,35468,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85404,'LVD_BNPC_02','w1d3','bnpc4002786',4002786,9.196899,-19.028080,-49.214989,-0.411426,1764,0,0,0,0,6,0,0,1576,0,0.000000,35,0,120,1,0,23,0,30,2,0,1,0,1,0,0.000000,1.000000,35196,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85404,'LVD_BNPC_02','w1d3','bnpc4002774',4002774,-28.000000,-18.081970,0.000000,-1.570451,1765,0,0,0,1,6,0,0,1577,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34930,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85404,'LVD_BNPC_02','w1d3','bnpc4002797',4002797,33.000000,-18.027229,-57.000000,1.570451,1765,0,0,0,1,6,0,0,1577,0,0.000000,35,0,120,1,0,25,0,30,1,0,1,0,1,0,0.000000,1.000000,34658,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85404,'LVD_BNPC_02','w1d3','bnpc4002805',4002805,80.745369,-40.149670,-52.630291,-0.000048,1766,0,0,0,1,6,0,0,1578,0,0.000000,35,0,120,1,0,26,0,30,2,0,1,0,1,0,0.000000,1.000000,34392,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85404,'LVD_BNPC_02','w1d3','bnpc4002807',4002807,68.216698,-42.748901,-44.738400,-0.000048,1766,0,0,0,1,6,0,0,1578,0,0.000000,35,0,120,1,0,26,0,30,2,0,1,0,1,0,0.000000,1.000000,34120,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85404,'LVD_BNPC_02','w1d3','bnpc4002808',4002808,67.612030,-39.112598,-61.225559,-0.000048,1766,0,0,0,1,6,0,0,1578,0,0.000000,35,0,120,1,0,26,0,30,2,0,1,0,1,0,0.000000,1.000000,33848,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85404,'LVD_BNPC_02','w1d3','bnpc4002787',4002787,-0.545858,-19.024570,-37.716679,0.539634,1768,0,0,0,1,6,0,0,1580,0,0.000000,35,0,120,1,0,23,0,30,2,0,1,0,1,0,0.000000,1.000000,33582,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85404,'LVD_BNPC_02','w1d3','bnpc4002792',4002792,-0.428451,-19.000450,48.619450,0.823296,1768,0,0,0,1,6,0,0,1580,0,0.000000,35,0,120,1,0,24,0,30,2,0,1,0,1,0,0.000000,1.000000,33310,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85404,'LVD_BNPC_02','w1d3','bnpc4305915',4305915,-34.903019,-17.999990,6.347915,-0.798545,1763,0,0,0,6,6,0,0,1575,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33014,1,3,2000,0,0,0,4332611,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85404,'LVD_BNPC_02','w1d3','bnpc4305912',4305912,-59.814259,-12.008860,-18.139240,0.000000,1763,0,0,0,6,6,0,0,1575,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32742,1,3,2000,0,0,0,4332610,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85404,'LVD_BNPC_02','w1d3','bnpc4332646',4332646,44.000000,-18.020941,-57.000000,-1.570451,1765,0,0,0,1,6,0,0,1577,0,0.000000,35,0,120,1,0,25,0,30,1,0,1,0,1,0,0.000000,1.000000,32482,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85404,'LVD_BNPC_02','w1d3','bnpc4332648',4332648,96.882927,-44.059731,-23.655331,-0.000048,1768,0,0,0,2,6,0,0,1580,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32222,1,3,2000,0,0,0,4332612,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85572,'LVD_BNPC_03','w1d3','bnpc4002831',4002831,178.734695,-4.013204,-0.390108,-1.570451,1768,0,0,0,2,6,0,0,1580,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31826,1,3,2000,0,0,0,4332625,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85572,'LVD_BNPC_03','w1d3','bnpc4002832',4002832,151.275696,-4.074219,0.000000,-1.570451,1768,0,0,0,2,6,0,0,1580,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31554,1,3,2000,0,0,0,4332618,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85572,'LVD_BNPC_03','w1d3','bnpc4002835',4002835,196.000000,-4.013123,6.000000,-1.071289,1767,0,0,0,1,6,0,0,1579,0,0.000000,35,0,120,1,0,36,0,30,2,0,1,0,1,0,0.000000,1.000000,31288,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85572,'LVD_BNPC_03','w1d3','bnpc4002834',4002834,196.000000,-4.013123,-6.000000,-0.953041,1767,0,0,0,1,6,0,0,1579,0,0.000000,35,0,120,1,0,36,0,30,2,0,1,0,1,0,0.000000,1.000000,31016,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85572,'LVD_BNPC_03','w1d3','bnpc4002823',4002823,57.846920,-18.051510,-0.015320,-1.570451,1767,0,0,0,1,6,0,0,1579,0,0.000000,35,0,120,1,0,33,0,30,1,0,1,0,1,0,0.000000,1.000000,30744,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85572,'LVD_BNPC_03','w1d3','bnpc4002825',4002825,113.664398,-4.013123,0.000000,-1.515645,1767,0,0,0,1,6,0,0,1579,0,0.000000,35,0,120,1,0,34,0,40,1,0,1,0,1,0,0.000000,1.000000,30472,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85572,'LVD_BNPC_03','w1d3','bnpc4002819',4002819,33.000000,-18.020941,46.000000,1.570451,1765,0,0,0,1,6,0,0,1577,0,0.000000,35,0,120,1,0,32,0,30,1,0,1,0,1,0,0.000000,1.000000,30182,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85572,'LVD_BNPC_03','w1d3','bnpc4002816',4002816,68.879700,-37.787449,63.340820,-0.000000,1766,0,0,0,1,6,0,0,1578,0,0.000000,35,0,120,1,0,31,0,30,2,0,1,0,1,0,0.000000,1.000000,29916,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85572,'LVD_BNPC_03','w1d3','bnpc4305530',4305530,78.394257,-36.884949,62.154678,-0.000048,1766,0,0,0,1,6,0,0,1578,0,0.000000,35,0,120,1,0,31,0,30,2,0,1,0,1,0,0.000000,1.000000,29644,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85572,'LVD_BNPC_03','w1d3','bnpc4305531',4305531,85.525063,-33.694248,69.055977,-0.000048,1766,0,0,0,1,6,0,0,1578,0,0.000000,35,0,120,1,0,31,0,30,2,0,1,0,1,0,0.000000,1.000000,29372,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85572,'LVD_BNPC_03','w1d3','bnpc4305539',4305539,44.000000,-18.051510,46.000000,-1.570451,1765,0,0,0,1,6,0,0,1577,0,0.000000,35,0,120,1,0,32,0,30,1,0,1,0,1,0,0.000000,1.000000,29094,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85572,'LVD_BNPC_03','w1d3','bnpc4002830',4002830,166.273804,-4.013123,-0.000000,-1.570451,1767,0,0,0,1,6,0,0,1579,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28840,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85572,'LVD_BNPC_03','w1d3','bnpc4003470',4003470,184.000000,-4.013123,0.000000,1.570796,1764,0,0,0,1,6,0,0,1576,0,0.000000,35,0,120,1,0,36,0,30,2,0,1,0,1,0,0.000000,1.000000,28544,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85572,'LVD_BNPC_03','w1d3','bnpc4332650',4332650,61.519970,-41.309139,49.972599,-0.000048,1768,0,0,0,2,6,0,0,1580,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28290,1,3,2000,0,0,0,4334440,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91498,'LVD_BNPC_04','w1d3','bnpc4002742',4002742,-70.000000,-11.997100,-62.000000,-1.570451,1753,0,0,0,0,6,0,0,1567,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27918,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91498,'LVD_BNPC_04','w1d3','bnpc4002746',4002746,-63.000000,-11.997100,-67.000000,-1.570796,1754,0,0,0,0,6,0,0,1568,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27652,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91498,'LVD_BNPC_04','w1d3','bnpc4002814',4002814,53.517841,-49.595589,1.221717,0.451096,1755,0,0,0,0,6,0,0,1569,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27386,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91498,'LVD_BNPC_04','w1d3','bnpc4003478',4003478,243.000000,-3.999998,0.000000,-1.570796,1756,0,0,0,0,6,0,0,1570,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27120,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91498,'LVD_BNPC_04','w1d3','bnpc4003480',4003480,252.877594,-4.000015,6.734541,-1.570451,1761,0,0,0,0,6,0,0,1571,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26854,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91498,'LVD_BNPC_04','w1d3','bnpc4295752',4295752,255.189194,-3.999998,3.680801,-1.570451,1757,0,0,0,0,6,0,0,1798,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26588,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91498,'LVD_BNPC_04','w1d3','bnpc4312326',4312326,53.517799,-49.595600,1.221700,-0.000000,2042,0,0,0,0,6,0,0,1490,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26322,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91498,'LVD_BNPC_04','w1d3','bnpc4323645',4323645,228.750000,-4.000000,-9.250000,-1.570451,1757,0,0,0,0,6,0,0,1798,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26044,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91498,'LVD_BNPC_04','w1d3','bnpc4323648',4323648,247.250000,-4.000000,-9.250000,-1.570451,1757,0,0,0,0,6,0,0,1798,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25772,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91498,'LVD_BNPC_04','w1d3','bnpc4323653',4323653,228.750000,-4.000000,9.250000,-1.570451,1757,0,0,0,0,6,0,0,1798,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25500,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (91498,'LVD_BNPC_04','w1d3','bnpc4323654',4323654,247.250000,-4.000000,9.250000,-1.570451,1757,0,0,0,0,6,0,0,1798,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25228,1,2,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93066,'LVD_BNPC_05','w1d3','bnpc4002765',4002765,-20.250000,-17.621950,0.000000,-1.570796,1758,0,0,0,0,6,0,0,1572,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24864,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93066,'LVD_BNPC_05','w1d3','bnpc4002776',4002776,8.987488,-18.922461,-11.500000,-0.000048,1758,0,0,0,0,6,0,0,1572,0,2.900000,35,0,120,1,0,22,0,50,1,0,1,0,1,0,0.000000,1.000000,24592,1,3,40,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93066,'LVD_BNPC_05','w1d3','bnpc4002777',4002777,8.987488,-18.600830,11.500000,0.000000,1758,0,0,0,0,6,0,0,1572,0,0.000000,35,0,120,1,0,22,0,50,1,0,1,0,1,0,0.000000,1.000000,24320,1,3,40,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93066,'LVD_BNPC_05','w1d3','bnpc4002824',4002824,45.743599,-18.953079,0.000000,1.570796,1758,0,0,0,0,6,0,0,1572,0,0.000000,35,0,120,1,0,33,0,40,1,0,1,0,1,0,0.000000,1.000000,24048,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93066,'LVD_BNPC_05','w1d3','bnpc4002827',4002827,120.000000,-3.951783,-0.000000,-1.570451,1758,0,0,0,0,6,0,0,1572,0,0.000000,35,0,120,1,0,34,0,40,1,0,1,0,1,0,0.000000,1.000000,23776,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93066,'LVD_BNPC_05','w1d3','bnpc4002730',4002730,-137.911804,-17.813480,-14.153670,-0.000000,1759,0,0,0,1,6,0,0,1573,0,0.000000,35,0,120,1,0,14,0,30,1,0,1,0,1,0,0.000000,1.000000,23510,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93066,'LVD_BNPC_05','w1d3','bnpc4002804',4002804,48.320580,-18.000839,-83.763870,-1.570308,1759,0,0,0,0,6,0,0,1573,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23238,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93066,'LVD_BNPC_05','w1d3','bnpc4064830',4064830,48.503819,-19.000010,20.675900,-1.570451,1759,0,0,0,0,6,0,0,1573,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22966,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93066,'LVD_BNPC_05','w1d3','bnpc4002828',4002828,82.825897,-9.046533,-9.759582,0.504761,1759,0,0,0,0,6,0,0,1573,0,0.000000,35,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22694,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93067,'LVD_BNPC_06','w1d3','bnpc4003473',4003473,180.937698,-4.001004,0.064171,1.566025,1768,0,0,0,0,6,0,0,1580,0,0.000000,35,0,120,1,0,41,0,30,2,0,1,0,1,0,0.000000,1.000000,22234,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93067,'LVD_BNPC_06','w1d3','bnpc4003474',4003474,186.061096,-4.000186,-8.931304,0.772518,1768,0,0,0,0,6,0,0,1580,0,0.000000,35,0,120,1,0,41,0,30,2,0,1,0,1,0,0.000000,1.000000,21962,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93067,'LVD_BNPC_06','w1d3','bnpc4003475',4003475,186.610107,-4.001005,8.805372,0.352519,1768,0,0,0,0,6,0,0,1580,0,0.000000,35,0,120,1,0,41,0,30,2,0,1,0,1,0,0.000000,1.000000,21690,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93067,'LVD_BNPC_06','w1d3','bnpc4011604',4011604,54.152130,-18.174520,-18.615360,0.891954,1768,0,0,0,0,6,0,0,1580,0,0.000000,35,0,120,1,0,42,0,30,2,0,1,0,1,0,0.000000,1.000000,21418,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93067,'LVD_BNPC_06','w1d3','bnpc4011605',4011605,58.126888,-18.000191,-15.000000,0.581717,1768,0,0,0,0,6,0,0,1580,0,0.000000,35,0,120,1,0,42,0,30,2,0,1,0,1,0,0.000000,1.000000,21146,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93067,'LVD_BNPC_06','w1d3','bnpc4011606',4011606,63.461189,-18.000311,-13.667890,-0.173539,1768,0,0,0,0,6,0,0,1580,0,0.000000,35,0,120,1,0,42,0,30,2,0,1,0,1,0,0.000000,1.000000,20874,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93067,'LVD_BNPC_06','w1d3','bnpc4011610',4011610,54.165680,-18.755880,18.643330,1.199022,1768,0,0,0,0,6,0,0,1580,0,0.000000,35,0,120,1,0,43,0,30,2,0,1,0,1,0,0.000000,1.000000,20602,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93067,'LVD_BNPC_06','w1d3','bnpc4011611',4011611,58.115639,-18.000130,15.000000,0.444323,1768,0,0,0,0,6,0,0,1580,0,0.000000,35,0,120,1,0,43,0,30,2,0,1,0,1,0,0.000000,1.000000,20330,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93067,'LVD_BNPC_06','w1d3','bnpc4011612',4011612,63.466549,-18.000500,13.569460,-0.245432,1768,0,0,0,0,6,0,0,1580,0,0.000000,35,0,120,1,0,43,0,30,2,0,1,0,1,0,0.000000,1.000000,20058,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93067,'LVD_BNPC_06','w1d3','bnpc4011619',4011619,107.965698,-5.726979,-20.812799,1.347097,1768,0,0,0,0,6,0,0,1580,0,0.000000,35,0,120,1,0,44,0,30,2,0,1,0,1,0,0.000000,1.000000,19786,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93067,'LVD_BNPC_06','w1d3','bnpc4011620',4011620,110.063400,-4.000200,-17.000000,0.834241,1768,0,0,0,0,6,0,0,1580,0,0.000000,35,0,120,1,0,44,0,30,2,0,1,0,1,0,0.000000,1.000000,19514,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93067,'LVD_BNPC_06','w1d3','bnpc4011621',4011621,114.438301,-4.000540,-13.863970,0.430355,1768,0,0,0,0,6,0,0,1580,0,0.000000,35,0,120,1,0,44,0,30,2,0,1,0,1,0,0.000000,1.000000,19242,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93067,'LVD_BNPC_06','w1d3','bnpc4011624',4011624,108.340302,-3.915164,20.762831,1.543668,1768,0,0,0,0,6,0,0,1580,0,0.000000,35,0,120,1,0,45,0,30,2,0,1,0,1,0,0.000000,1.000000,18970,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93067,'LVD_BNPC_06','w1d3','bnpc4011625',4011625,110.928802,-4.000152,17.000000,0.857704,1768,0,0,0,0,6,0,0,1580,0,0.000000,35,0,120,1,0,45,0,30,2,0,1,0,1,0,0.000000,1.000000,18698,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93067,'LVD_BNPC_06','w1d3','bnpc4011627',4011627,114.880402,-4.000068,13.893520,0.235262,1768,0,0,0,0,6,0,0,1580,0,0.000000,35,0,120,1,0,45,0,30,2,0,1,0,1,0,0.000000,1.000000,18426,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4248208',4248208,200.152603,90.897949,-84.794373,0.900268,1881,0,0,0,5,6,0,0,2114,0,0.000000,50,0,120,1,0,5,0,99,6,0,1,0,1,0,0.000000,1.000000,73148,1,3,2000,0,0,0,4248173,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4248336',4248336,199.908401,90.836906,-102.525398,-0.485177,1881,0,0,0,5,6,0,0,2114,0,0.000000,50,0,120,1,0,5,0,99,6,0,1,0,1,0,0.000000,1.000000,72876,1,3,2000,0,0,0,4248173,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4324040',4324040,195.819000,92.576424,-154.009293,0.408381,1865,0,0,0,0,6,0,0,2105,0,0.000000,50,0,120,1,0,4,0,99,6,0,1,0,1,0,0.000000,1.000000,72610,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4324042',4324042,198.443497,92.698486,-156.298203,0.352485,1865,0,0,0,0,6,0,0,2105,0,0.000000,50,0,120,1,0,4,0,99,6,0,1,0,1,0,0.000000,1.000000,72338,1,3,2000,0,0,30332,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4324059',4324059,204.821793,92.454353,-155.352097,0.352485,1865,0,0,0,2,6,0,0,2105,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,72066,1,3,2000,0,0,0,4331535,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4324065',4324065,157.738602,93.736214,-87.120903,0.869301,1865,0,0,0,1,6,0,0,2105,0,0.000000,50,0,120,1,0,10,0,99,6,0,1,0,1,0,0.000000,1.000000,71794,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4324066',4324066,159.688599,94.376251,-93.840881,1.530254,1865,0,0,0,0,6,0,0,2105,0,0.000000,50,0,120,1,0,10,0,99,6,0,1,0,1,0,0.000000,1.000000,71522,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4324068',4324068,172.655807,94.457558,-89.494263,0.869301,1865,0,0,0,5,6,0,0,2105,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,71250,1,3,2000,0,0,0,4324084,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4324046',4324046,213.031097,89.158447,-109.880203,0.625538,1867,0,0,0,0,6,0,0,2107,0,0.000000,50,0,120,1,0,3,0,99,6,0,1,0,1,0,0.000000,1.000000,70984,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4324045',4324045,214.526505,89.097412,-104.539597,0.795717,1867,0,0,0,0,6,0,0,2107,0,0.000000,50,0,120,1,0,3,0,99,6,0,1,0,1,0,0.000000,1.000000,70712,1,3,2000,0,0,30331,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4324048',4324048,204.089401,90.196037,-75.944153,1.010334,1867,0,0,0,0,6,0,0,2107,0,0.000000,50,0,120,1,0,1,0,99,6,0,1,0,1,0,0.000000,1.000000,70440,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4324049',4324049,205.401596,90.043457,-81.681580,1.068051,1867,0,0,0,0,6,0,0,2107,0,0.000000,50,0,120,1,0,1,0,99,6,0,1,0,1,0,0.000000,1.000000,70168,1,3,2000,0,0,30332,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4324070',4324070,36.075890,71.816101,-41.503651,1.560132,1867,0,0,0,0,6,0,0,2107,0,0.000000,50,0,120,1,0,9,0,99,6,0,1,0,1,0,0.000000,1.000000,69896,1,3,2000,0,0,30332,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4324069',4324069,35.562729,71.952538,-50.770290,1.560132,1867,0,0,0,0,6,0,0,2107,0,0.000000,50,0,120,1,0,9,0,99,6,0,1,0,1,0,0.000000,1.000000,69624,1,3,2000,0,0,30331,0,0,1); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4324043',4324043,202.136200,92.274323,-150.011505,0.352485,1878,0,0,0,1,6,0,0,2113,0,0.000000,50,0,120,1,0,4,0,99,6,0,1,0,1,0,0.000000,1.000000,69358,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4324090',4324090,51.255001,74.601318,-48.600040,-0.000048,1878,0,0,0,1,6,0,0,2113,0,0.000000,50,0,120,1,0,9,0,99,6,0,1,0,1,0,0.000000,1.000000,69086,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4324083',4324083,95.567261,82.749634,-67.368591,0.869301,1878,0,0,0,5,6,0,0,2113,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,68814,1,3,2000,0,0,0,4324084,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4248209',4248209,197.016907,91.490990,-85.078880,1.542812,1865,0,0,0,0,6,0,0,2105,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,68530,1,3,2000,0,0,0,4324054,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4248210',4248210,180.956696,93.736214,-98.527527,1.385494,1865,0,0,0,0,6,0,0,2105,0,0.000000,50,0,120,1,0,8,0,99,6,0,1,0,1,0,0.000000,1.000000,68258,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4248341',4248341,215.604996,89.445168,-125.969597,1.251533,1865,0,0,0,2,6,0,0,2105,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,67986,1,3,2000,0,0,0,4331535,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4248212',4248212,193.225006,91.691406,-98.252930,1.523123,1867,0,0,0,0,6,0,0,2107,0,0.000000,50,0,120,1,0,6,0,99,6,0,1,0,1,0,0.000000,1.000000,67720,1,3,2000,0,0,30332,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4248344',4248344,194.506699,91.569344,-87.419006,1.329646,1867,0,0,0,0,6,0,0,2107,0,0.000000,50,0,120,1,0,6,0,99,6,0,1,0,1,0,0.000000,1.000000,67448,1,3,2000,0,0,30333,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4248343',4248343,189.117493,92.601891,-91.636559,1.344890,1871,0,0,0,0,6,0,0,2111,0,0.000000,50,0,120,1,0,6,0,99,6,0,1,0,1,0,0.000000,1.000000,67188,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4248342',4248342,186.178802,93.077904,-95.772423,-0.485177,1869,0,0,0,5,6,0,0,2109,0,0.000000,50,0,120,1,0,6,0,99,6,0,1,0,1,0,0.000000,1.000000,66922,1,3,2000,0,0,30331,4324084,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92078,'LVD_bnpc_01','w1d4','bnpc4248211',4248211,167.282196,94.429123,-96.705147,1.232512,1869,0,0,0,0,6,0,0,2109,0,0.000000,50,0,120,1,0,8,0,99,6,0,1,0,1,0,0.000000,1.000000,66650,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4248602',4248602,107.102097,64.711517,109.316902,-0.051218,1869,0,0,0,0,6,0,0,2109,0,0.000000,50,2,120,1,0,16,0,99,6,0,1,0,1,0,0.000000,1.000000,66186,1,3,2000,0,0,30332,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4323013',4323013,122.566101,61.084099,83.251930,-1.493966,1866,0,0,0,0,6,0,0,2106,0,0.000000,50,0,120,1,0,18,0,99,6,0,1,0,1,0,0.000000,1.000000,65920,1,3,2000,0,0,30332,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4324096',4324096,-73.383537,74.455093,144.733597,0.197011,1867,0,0,0,0,6,0,0,2107,0,0.000000,50,0,120,1,0,19,0,99,6,0,1,0,1,0,0.000000,1.000000,65624,1,3,2000,0,0,30331,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4324099',4324099,-81.313133,78.622162,129.048401,1.341294,1865,0,0,0,0,6,0,0,2105,0,0.000000,50,0,120,1,0,20,0,99,6,0,1,0,1,0,0.000000,1.000000,65346,1,3,2000,0,0,30332,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4324100',4324100,-80.318893,78.560791,131.548401,1.341294,1865,0,0,0,0,6,0,0,2105,0,0.000000,50,0,120,1,0,20,0,99,6,0,1,0,1,0,0.000000,1.000000,65074,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4324101',4324101,-75.103149,78.287437,121.838203,1.341294,1878,0,0,0,1,6,0,0,2113,0,0.000000,50,0,120,1,0,20,0,99,6,0,1,0,1,0,0.000000,1.000000,64814,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4324102',4324102,-62.716671,77.329292,111.883400,1.341294,1878,0,0,0,1,6,0,0,2113,0,0.000000,50,0,120,1,0,20,0,99,6,0,1,0,1,0,0.000000,1.000000,64542,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4324104',4324104,100.869202,68.300079,42.847179,-0.000000,1870,0,0,0,5,6,0,0,2110,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,64294,1,3,2000,0,0,0,4324094,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4324105',4324105,-2.697702,70.557198,56.171539,0.698924,1867,0,0,0,0,6,0,0,2120,0,0.000000,50,0,120,1,0,21,0,99,6,0,1,0,1,0,0.000000,1.000000,63992,1,3,2000,0,0,30333,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4324106',4324106,-12.160010,70.720734,58.698509,-0.277781,1867,0,0,0,0,6,0,0,2120,0,0.000000,50,0,120,1,0,21,0,99,6,0,1,0,1,0,0.000000,1.000000,63720,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4324108',4324108,46.585819,67.124390,85.313232,-1.425761,1879,0,0,0,0,6,0,0,269,0,0.000000,50,0,120,1,0,24,0,99,6,0,1,0,1,0,0.000000,1.000000,63484,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4324128',4324128,9.049142,73.930542,118.751602,-0.067688,1867,0,0,0,0,6,0,0,2120,0,0.000000,50,0,120,1,0,22,0,99,6,0,1,0,1,0,0.000000,1.000000,63176,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4324130',4324130,2.287571,73.846336,119.504097,0.148703,1871,0,0,0,0,6,0,0,2111,0,0.000000,50,0,120,1,0,22,0,99,6,0,1,0,1,0,0.000000,1.000000,62916,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4324141',4324141,42.159222,66.919739,90.188232,-0.980900,1870,0,0,0,1,6,0,0,2110,0,0.000000,50,0,120,1,0,24,0,99,6,0,1,0,1,0,0.000000,1.000000,62662,1,3,2000,0,0,30333,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4324142',4324142,41.519779,66.971802,79.911499,-1.261766,1866,0,0,0,0,6,0,0,2106,0,0.000000,50,0,120,1,0,24,0,99,6,0,1,0,1,0,0.000000,1.000000,62384,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4324143',4324143,45.548100,66.605591,90.623291,-1.014792,1867,0,0,0,0,6,0,0,2120,0,0.000000,50,0,120,1,0,24,0,99,6,0,1,0,1,0,0.000000,1.000000,62088,1,3,2000,0,0,30331,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4248524',4248524,-34.284389,74.002251,120.436203,-0.000048,1881,0,0,0,0,6,0,0,2114,0,0.000000,50,2,120,1,0,25,0,99,6,0,1,0,1,0,0.000000,1.000000,61804,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4324134',4324134,-22.313810,74.004356,102.628502,-0.702516,1879,0,0,0,0,6,0,0,269,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,61580,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4248606',4248606,103.406097,64.908417,107.422798,0.189066,2248,0,0,0,0,6,0,0,2092,0,0.000000,50,2,120,1,0,15,0,99,6,0,1,0,1,0,0.000000,1.000000,61314,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4324107',4324107,-7.461731,70.908691,61.112301,0.009060,2250,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,21,0,99,6,0,1,0,1,0,0.000000,1.000000,61048,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4248525',4248525,-29.922970,74.096703,118.364098,-0.845860,2248,0,0,0,0,6,0,0,2092,0,0.000000,50,2,120,1,0,25,0,99,6,0,1,0,1,0,0.000000,1.000000,60770,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4296199',4296199,-2.014338,73.990967,91.866203,-0.000048,2250,0,0,0,0,6,0,0,2121,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60504,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4296207',4296207,4.175434,74.082520,91.430931,-0.000048,2250,0,0,0,0,6,0,0,2121,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60232,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4248324',4248324,-17.257999,63.053680,251.331299,-0.000048,2248,0,0,0,5,6,0,0,2092,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59954,1,3,2000,0,0,0,4248317,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4248518',4248518,47.067310,66.647369,86.619652,-0.000000,2248,0,0,0,5,6,0,0,2092,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,59682,1,3,2000,0,0,0,4248513,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4324135',4324135,-62.082230,73.620590,150.468506,-0.000048,2248,0,0,0,0,6,0,0,2092,0,0.000000,50,0,120,1,0,19,0,99,6,0,1,0,1,0,0.000000,1.000000,59410,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4248526',4248526,-33.737728,74.085487,114.946198,-1.025913,2248,0,0,0,0,6,0,0,2092,0,0.000000,50,2,120,1,0,25,0,99,6,0,1,0,1,0,0.000000,1.000000,59138,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4248527',4248527,-33.135941,74.082520,120.957802,-0.000048,1865,0,0,0,0,6,0,0,2105,0,0.000000,50,2,120,1,0,26,0,99,6,0,1,0,1,0,0.000000,1.000000,58818,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4248528',4248528,-29.526251,74.079773,114.091698,-0.000048,1865,0,0,0,0,6,0,0,2105,0,0.000000,50,2,120,1,0,26,0,99,6,0,1,0,1,0,0.000000,1.000000,58546,1,3,2000,0,0,30331,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4323012',4323012,112.504799,64.866089,63.065552,-0.000048,2248,0,0,0,1,6,0,0,2092,0,0.000000,50,0,120,1,0,17,0,99,6,0,1,0,1,0,0.000000,1.000000,58322,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92087,'LVD_bnpc_02','w1d4','bnpc4330353',4330353,-74.387756,74.143547,157.183105,0.528416,1871,0,0,0,0,6,0,0,2111,0,0.000000,50,0,120,1,0,19,0,99,6,0,1,0,1,0,0.000000,1.000000,58020,1,3,2000,0,0,30332,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4249191',4249191,4.354530,71.388893,-99.989388,-0.000048,1868,0,0,0,0,6,0,0,2108,0,0.000000,50,2,120,1,0,31,0,99,6,0,1,0,1,0,0.000000,1.000000,57594,1,3,2000,0,0,0,4325044,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4249437',4249437,6.572028,74.601318,-136.969101,-0.000048,1869,0,0,0,0,6,0,0,2109,0,0.000000,50,2,120,1,0,32,0,99,6,0,1,0,1,0,0.000000,1.000000,57286,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4249434',4249434,4.288818,74.619926,-135.243698,-0.000048,1866,0,0,0,0,6,0,0,2106,0,0.000000,50,2,120,1,0,32,0,99,6,0,1,0,1,0,0.000000,1.000000,57020,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4249435',4249435,10.025150,74.692871,-134.843994,-0.000048,1866,0,0,0,0,6,0,0,2106,0,0.000000,50,2,120,1,0,32,0,99,6,0,1,0,1,0,0.000000,1.000000,56748,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4325036',4325036,22.354429,76.071007,-154.009293,0.059429,1867,0,0,0,0,6,0,0,2107,0,0.000000,50,0,120,1,0,34,0,99,6,0,1,0,1,0,0.000000,1.000000,56452,1,3,2000,0,0,30332,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4325038',4325038,26.840580,76.157707,-153.551605,-0.000048,1869,0,0,0,0,6,0,0,2109,0,0.000000,50,0,120,1,0,34,0,99,6,0,1,0,1,0,0.000000,1.000000,56198,1,3,2000,0,0,30331,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4249470',4249470,-36.514889,85.252083,-272.480408,1.422933,1871,0,0,0,0,6,0,0,2111,0,0.000000,50,2,120,1,0,37,0,99,6,0,1,0,1,0,0.000000,1.000000,55920,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4249471',4249471,-37.705078,85.252083,-277.058014,1.320346,1871,0,0,0,0,6,0,0,2111,0,0.000000,50,2,120,1,0,37,0,99,6,0,1,0,1,0,0.000000,1.000000,55648,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4249469',4249469,-31.845640,85.252083,-280.048798,1.335398,1879,0,0,0,0,6,0,0,269,0,0.000000,50,2,120,1,0,37,0,99,6,0,1,0,1,0,0.000000,1.000000,55400,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4249467',4249467,-32.822201,85.252083,-271.015503,1.496086,1879,0,0,0,0,6,0,0,269,0,0.000000,50,2,120,1,0,37,0,99,6,0,1,0,1,0,0.000000,1.000000,55128,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4249192',4249192,6.795936,71.757172,-103.712601,-0.000048,2248,0,0,0,0,6,0,0,2092,0,0.000000,50,2,120,1,0,31,0,99,6,0,1,0,1,0,0.000000,1.000000,54862,1,3,2000,0,0,0,4325044,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4325050',4325050,-56.109459,68.648308,-95.183907,1.530871,2249,0,0,0,0,6,0,0,297,0,1.500000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,54608,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4249438',4249438,12.039500,74.326660,-136.506302,-0.000048,2248,0,0,0,0,6,0,0,2092,0,0.000000,50,2,120,1,0,32,0,99,6,0,1,0,1,0,0.000000,1.000000,54318,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4249436',4249436,3.768982,74.570801,-138.384094,-0.000048,2248,0,0,0,0,6,0,0,2092,0,0.000000,50,2,120,1,0,32,0,99,6,0,1,0,1,0,0.000000,1.000000,54046,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4317422',4317422,50.918571,77.319160,-159.391098,-0.969347,2250,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,35,0,99,6,0,1,0,1,0,0.000000,1.000000,53780,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4317424',4317424,57.021950,77.365547,-151.754196,-0.996768,2250,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,35,0,99,6,0,1,0,1,0,0.000000,1.000000,53508,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4325037',4325037,31.246080,75.974609,-153.869904,-0.494686,2250,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,34,0,99,6,0,1,0,1,0,0.000000,1.000000,53236,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4317425',4317425,58.933319,77.622223,-160.193298,-1.146428,2248,0,0,0,0,6,0,0,2092,0,0.000000,50,0,120,1,0,35,0,99,6,0,1,0,1,0,0.000000,1.000000,52958,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4317426',4317426,64.237633,77.706078,-155.838501,-1.164871,2248,0,0,0,0,6,0,0,2092,0,0.000000,50,0,120,1,0,35,0,99,6,0,1,0,1,0,0.000000,1.000000,52686,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4249453',4249453,90.144676,83.798767,-234.894699,-0.000048,2248,0,0,0,0,6,0,0,2092,0,0.000000,50,2,120,1,0,33,0,99,6,0,1,0,1,0,0.000000,1.000000,52414,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4249449',4249449,94.896027,84.276421,-227.580002,-0.000048,2250,0,0,0,0,6,0,0,2121,0,0.000000,50,2,120,1,0,33,0,99,6,0,1,0,1,0,0.000000,1.000000,52148,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4249452',4249452,87.144318,84.276421,-227.641098,-0.000048,2250,0,0,0,0,6,0,0,2121,0,0.000000,50,2,120,1,0,33,0,99,6,0,1,0,1,0,0.000000,1.000000,51876,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4296218',4296218,-10.971250,78.782227,-178.942596,0.039213,1879,0,0,0,0,6,0,0,269,0,0.000000,50,2,120,1,0,36,0,99,6,0,1,0,1,0,0.000000,1.000000,51592,1,3,2000,0,0,0,4325039,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4296215',4296215,-16.356461,80.934509,-191.073196,0.039213,2250,0,0,0,0,6,0,0,2121,0,0.000000,50,2,120,1,0,36,0,99,6,0,1,0,1,0,0.000000,1.000000,51332,1,3,2000,0,0,0,4325039,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4296217',4296217,-10.038270,80.875420,-191.030304,0.039213,2250,0,0,0,0,6,0,0,2121,0,0.000000,50,2,120,1,0,36,0,99,6,0,1,0,1,0,0.000000,1.000000,51060,1,3,2000,0,0,0,4325039,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4296216',4296216,-12.814020,80.510269,-188.579407,0.039213,2250,0,0,0,0,6,0,0,2121,0,0.000000,50,2,120,1,0,36,0,99,6,0,1,0,1,0,0.000000,1.000000,50788,1,3,2000,0,0,0,4325039,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4249441',4249441,84.721748,84.276421,-229.488403,0.539113,1879,0,0,0,0,6,0,0,269,0,0.000000,50,2,120,1,0,33,0,99,6,0,1,0,1,0,0.000000,1.000000,50504,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4333390',4333390,-85.676903,83.155533,-253.740997,0.302413,2250,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,38,0,99,6,0,1,0,1,0,0.000000,1.000000,50244,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4333391',4333391,-82.219063,83.342987,-254.383698,0.389522,2250,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,38,0,99,6,0,1,0,1,0,0.000000,1.000000,49972,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4333392',4333392,-78.766312,83.622749,-255.342896,0.326961,2250,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,38,0,99,6,0,1,0,1,0,0.000000,1.000000,49700,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4249190',4249190,8.627052,71.909126,-105.055397,-0.000048,1871,0,0,0,0,6,0,0,2111,0,0.000000,50,2,120,1,0,31,0,99,6,0,1,0,1,0,0.000000,1.000000,49392,1,3,2000,0,0,0,4325044,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92123,'LVD_bnpc_03','w1d4','bnpc4329766',4329766,16.983280,74.509773,-135.820602,-0.000048,2249,0,0,0,5,6,0,0,297,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,49168,1,3,2000,0,0,0,4329761,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4249648',4249648,-66.765427,69.138550,-50.596882,-1.226676,1881,0,0,0,0,6,0,0,2114,0,0.000000,50,2,120,1,0,43,0,99,6,0,1,0,1,0,0.000000,1.000000,48668,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4249649',4249649,-60.015629,68.375610,-50.527039,-1.226676,1881,0,0,0,0,6,0,0,2114,0,0.000000,50,2,120,1,0,44,0,99,6,0,1,0,1,0,0.000000,1.000000,48396,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4249650',4249650,-54.480621,68.365189,-52.380779,-1.226676,1881,0,0,0,0,6,0,0,2114,0,0.000000,50,2,120,1,0,45,0,99,6,0,1,0,1,0,0.000000,1.000000,48124,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4317268',4317268,-63.879490,68.894409,-31.990801,-1.226676,1881,0,0,0,0,6,0,0,2114,0,0.000000,50,2,120,1,0,46,0,99,6,0,1,0,1,0,0.000000,1.000000,47852,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4317269',4317269,-57.210411,68.295723,-33.141621,-1.226676,1881,0,0,0,0,6,0,0,2114,0,0.000000,50,2,120,1,0,47,0,99,6,0,1,0,1,0,0.000000,1.000000,47580,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4317270',4317270,-51.288109,68.072952,-34.381409,-1.226676,1881,0,0,0,0,6,0,0,2114,0,0.000000,50,2,120,1,0,48,0,99,6,0,1,0,1,0,0.000000,1.000000,47308,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4325064',4325064,-33.548100,79.754509,-52.435970,-0.086998,1867,0,0,0,0,6,0,0,2107,0,0.000000,50,0,120,1,0,42,0,99,6,0,1,0,1,0,0.000000,1.000000,47048,1,3,2000,0,0,30331,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4325063',4325063,-30.720030,79.754509,-53.105850,0.032484,1867,0,0,0,0,6,0,0,2107,0,0.000000,50,0,120,1,0,42,0,99,6,0,1,0,1,0,0.000000,1.000000,46776,1,3,2000,0,0,30332,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4325069',4325069,-16.701120,79.754509,-10.025420,-1.344719,1870,0,0,0,0,6,0,0,2110,0,0.000000,50,0,120,1,0,41,0,99,6,0,1,0,1,0,0.000000,1.000000,46534,1,3,2000,0,0,30331,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4317265',4317265,-66.677460,69.398872,-35.428951,-1.486518,2249,0,0,0,0,6,0,0,297,0,0.000000,50,2,120,1,0,46,0,99,6,0,1,0,1,0,0.000000,1.000000,46292,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4317266',4317266,-60.630322,68.345093,-36.208439,-1.410085,2249,0,0,0,0,6,0,0,297,0,0.000000,50,2,120,1,0,47,0,99,6,0,1,0,1,0,0.000000,1.000000,46020,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4317267',4317267,-54.217030,67.978882,-37.460480,-1.488319,2249,0,0,0,0,6,0,0,297,0,0.000000,50,2,120,1,0,48,0,99,6,0,1,0,1,0,0.000000,1.000000,45748,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4249645',4249645,-68.334488,69.373703,-44.131840,-1.375531,2249,0,0,0,0,6,0,0,297,0,0.000000,50,2,120,1,0,43,0,99,6,0,1,0,1,0,0.000000,1.000000,45476,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4249646',4249646,-62.124451,68.345993,-45.325001,-1.425042,2249,0,0,0,0,6,0,0,297,0,0.000000,50,2,120,1,0,44,0,99,6,0,1,0,1,0,0.000000,1.000000,45204,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4249647',4249647,-56.261711,68.284058,-46.921108,-1.459461,2249,0,0,0,0,6,0,0,297,0,0.000000,50,2,120,1,0,45,0,99,6,0,1,0,1,0,0.000000,1.000000,44932,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4325062',4325062,-23.666809,79.728394,-51.834961,-1.344650,2250,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,42,0,99,6,0,1,0,1,0,0.000000,1.000000,44648,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4325061',4325061,-26.749081,79.728394,-45.304081,0.303349,2248,0,0,0,0,6,0,0,2092,0,0.000000,50,0,120,1,0,42,0,99,6,0,1,0,1,0,0.000000,1.000000,44370,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4325067',4325067,-27.725710,79.728394,-17.471680,-0.086959,2250,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,41,0,99,6,0,1,0,1,0,0.000000,1.000000,44104,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4325068',4325068,-25.192690,79.728394,-18.051510,0.032502,2250,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,41,0,99,6,0,1,0,1,0,0.000000,1.000000,43832,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4325066',4325066,-22.058241,79.728394,-11.349450,1.366270,2248,0,0,0,0,6,0,0,2092,0,0.000000,50,0,120,1,0,41,0,99,6,0,1,0,1,0,0.000000,1.000000,43554,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4373183',4373183,-39.321560,68.468193,4.780949,-0.282640,2249,0,0,0,5,6,0,0,297,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43300,1,3,2000,0,0,0,4373186,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92130,'LVD_bnpc_04','w1d4','bnpc4373184',4373184,-55.178249,68.536552,-76.189827,0.234605,2249,0,0,0,5,6,0,0,297,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,43028,1,3,2000,0,0,0,4373187,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4249676',4249676,-102.886703,70.350082,-31.598110,1.361435,2027,0,0,0,0,6,0,0,2118,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,42322,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4302710',4302710,-102.886703,70.350098,-31.598101,1.361435,1438,0,0,0,0,6,0,0,2118,0,0.000000,50,2,120,1,0,55,0,99,8,0,1,0,1,0,0.000000,1.000000,41920,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4302712',4302712,-107.849899,70.350082,-32.132629,1.547596,2031,0,0,0,0,6,0,0,297,0,0.000000,50,2,120,1,0,55,0,99,8,0,1,0,1,0,0.000000,1.000000,41654,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4302731',4302731,-113.734703,70.350082,-50.811749,-1.224147,1960,0,0,0,0,6,0,0,2205,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41388,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4302729',4302729,-106.636002,70.350082,-11.548340,-0.652624,1960,0,0,0,0,6,0,0,2205,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41116,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4302717',4302717,-97.027634,70.324600,-64.546303,-0.762544,2028,0,0,0,0,6,0,0,2119,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,40850,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4302720',4302720,-76.149742,70.350082,-26.929150,-0.775822,2028,0,0,0,0,6,0,0,2119,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,40578,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4302723',4302723,-100.758003,70.350082,-10.850840,0.735651,2028,0,0,0,0,6,0,0,2119,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,40306,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4302725',4302725,-119.124100,70.350082,-39.954529,0.971745,2028,0,0,0,0,6,0,0,2119,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,40034,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4302719',4302719,-79.290359,70.350082,-46.865620,-0.762470,2029,0,0,0,0,6,0,0,2120,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39768,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4302721',4302721,-85.402939,70.350067,-9.306347,-0.775822,2029,0,0,0,0,6,0,0,2120,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39496,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4302724',4302724,-115.047501,70.350082,-20.536091,0.735563,2029,0,0,0,0,6,0,0,2120,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39224,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4302726',4302726,-108.131104,70.350067,-52.383961,0.971744,2029,0,0,0,0,6,0,0,2120,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,38952,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4329200',4329200,-95.898483,70.347656,-63.508701,-0.762544,2030,0,0,0,0,6,0,0,2158,0,0.000000,50,2,120,1,0,55,0,99,8,0,1,0,1,0,0.000000,1.000000,38686,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4329201',4329201,-78.669159,70.350082,-46.394161,-0.762470,2030,0,0,0,0,6,0,0,2158,0,0.000000,50,2,120,1,0,55,0,99,8,0,1,0,1,0,0.000000,1.000000,38414,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4329202',4329202,-75.963501,70.350082,-26.396690,-0.775822,2030,0,0,0,0,6,0,0,2158,0,0.000000,50,2,120,1,0,55,0,99,8,0,1,0,1,0,0.000000,1.000000,38142,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4329203',4329203,-85.564148,70.350082,-8.583899,-0.775822,2030,0,0,0,0,6,0,0,2158,0,0.000000,50,2,120,1,0,55,0,99,8,0,1,0,1,0,0.000000,1.000000,37870,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4329205',4329205,-101.398903,70.350082,-10.789810,0.735651,2030,0,0,0,0,6,0,0,2158,0,0.000000,50,2,120,1,0,55,0,99,8,0,1,0,1,0,0.000000,1.000000,37598,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4329206',4329206,-114.543999,70.350067,-19.730169,0.735563,2030,0,0,0,0,6,0,0,2158,0,0.000000,50,2,120,1,0,55,0,99,8,0,1,0,1,0,0.000000,1.000000,37326,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4329207',4329207,-119.676598,70.328857,-39.108952,0.971744,2030,0,0,0,0,6,0,0,2158,0,0.000000,50,2,120,1,0,55,0,99,8,0,1,0,1,0,0.000000,1.000000,37054,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4329208',4329208,-108.833000,70.350067,-52.017811,0.971744,2030,0,0,0,0,6,0,0,2158,0,0.000000,50,2,120,1,0,55,0,99,8,0,1,0,1,0,0.000000,1.000000,36782,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4302686',4302686,-91.667549,70.350082,-8.355627,1.071406,1950,0,0,0,0,6,0,0,2115,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35812,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4302687',4302687,-100.313103,70.328857,-19.000999,1.386644,1950,0,0,0,0,6,0,0,2115,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35540,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4302689',4302689,-105.128304,70.328857,-46.280399,1.443637,1950,0,0,0,0,6,0,0,2115,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35268,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4302690',4302690,-100.914803,70.350082,-59.638889,1.559267,1950,0,0,0,0,6,0,0,2115,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34996,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92083,'LVD_bnpc_boss','w1d4','bnpc4374571',4374571,-101.687202,70.350082,-32.285381,-0.928525,434,0,0,0,0,6,0,0,0,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34282,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93252,'LVD_bnpc_mboss_01','w1d4','bnpc4249473',4249473,-90.863007,85.282593,-260.674713,0.166775,1884,0,0,0,0,6,0,0,2117,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33416,1,6,20000,0,0,0,4326313,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93252,'LVD_bnpc_mboss_01','w1d4','bnpc4328924',4328924,-62.725739,81.798767,-216.673904,-0.000000,1995,0,0,0,0,6,0,0,1486,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32922,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93252,'LVD_bnpc_mboss_01','w1d4','bnpc4329905',4329905,-13.242160,81.798767,-203.770294,-0.396813,2255,0,0,0,0,6,0,0,2089,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32656,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93252,'LVD_bnpc_mboss_01','w1d4','bnpc4328916',4328916,-71.055977,81.798767,-243.247101,0.239163,2256,0,0,0,1,6,0,0,2121,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32390,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93252,'LVD_bnpc_mboss_01','w1d4','bnpc4328920',4328920,-42.697121,81.798767,-223.185898,-0.420076,2256,0,0,0,1,6,0,0,2121,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32118,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93252,'LVD_bnpc_mboss_01','w1d4','bnpc4328918',4328918,-70.518097,81.798767,-223.255905,0.430897,2256,0,0,0,1,6,0,0,2121,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31846,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93252,'LVD_bnpc_mboss_01','w1d4','bnpc4328922',4328922,-42.526791,81.798767,-241.438400,-0.892261,2256,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31574,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93252,'LVD_bnpc_mboss_01','w1d4','bnpc4328925',4328925,-67.987373,81.798767,-241.408997,-0.000000,2279,0,0,0,0,6,0,0,2106,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30996,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93252,'LVD_bnpc_mboss_01','w1d4','bnpc4328927',4328927,-44.921600,81.798767,-225.121399,-0.000000,2279,0,0,0,0,6,0,0,2106,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30724,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93252,'LVD_bnpc_mboss_01','w1d4','bnpc4329901',4329901,-69.855888,81.798767,-241.388596,-0.000000,2279,0,0,0,0,6,0,0,2106,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30452,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93252,'LVD_bnpc_mboss_01','w1d4','bnpc4329903',4329903,-43.441280,81.798767,-225.070801,-0.000000,2279,0,0,0,0,6,0,0,2106,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30180,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93252,'LVD_bnpc_mboss_01','w1d4','bnpc4328926',4328926,-67.971199,81.798767,-224.559296,-0.000000,2280,0,0,0,0,6,0,0,2111,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29914,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93252,'LVD_bnpc_mboss_01','w1d4','bnpc4328928',4328928,-44.777458,81.798767,-239.679794,-0.000000,2280,0,0,0,0,6,0,0,2111,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29642,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93252,'LVD_bnpc_mboss_01','w1d4','bnpc4329902',4329902,-69.008087,81.798767,-222.671097,-0.000000,2280,0,0,0,0,6,0,0,2111,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29370,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93252,'LVD_bnpc_mboss_01','w1d4','bnpc4329904',4329904,-43.467201,81.798767,-239.417999,-0.000000,2280,0,0,0,0,6,0,0,2111,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29098,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94142,'LVD_bnpc_mboss_02','w1d4','bnpc4248226',4248226,11.781790,70.172447,-38.637451,1.379334,1882,0,0,0,0,6,0,0,557,0,0.000000,50,2,120,1,0,60,0,99,8,0,1,0,1,0,0.000000,1.000000,28036,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94142,'LVD_bnpc_mboss_02','w1d4','bnpc4332706',4332706,11.759810,70.172447,-35.468559,1.355259,1878,0,0,0,0,6,0,0,2113,0,0.000000,50,0,120,1,0,60,0,99,8,0,1,0,1,0,0.000000,1.000000,27386,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94142,'LVD_bnpc_mboss_02','w1d4','bnpc4332707',4332707,10.108260,70.172447,-40.998070,1.438071,1866,0,0,0,0,6,0,0,2106,0,0.000000,50,0,120,1,0,60,0,99,8,0,1,0,1,0,0.000000,1.000000,27132,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94142,'LVD_bnpc_mboss_02','w1d4','bnpc4332708',4332708,11.698560,70.172447,-41.283581,1.455589,1869,0,0,0,0,6,0,0,2109,0,0.000000,50,0,120,1,0,60,0,99,8,0,1,0,1,0,0.000000,1.000000,26854,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94191,'LVD_bnpc_mboss_03','w1d4','bnpc4248840',4248840,-10.688230,69.716011,26.927771,-0.000000,1883,0,0,0,0,6,0,0,2116,0,0.000000,50,2,120,1,0,56,0,99,10,0,1,0,1,0,0.000000,1.000000,25914,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94191,'LVD_bnpc_mboss_03','w1d4','bnpc4328912',4328912,-4.613508,69.933861,29.120199,-0.000000,2254,0,0,0,0,6,0,0,2092,0,0.000000,50,0,120,1,0,56,0,99,10,0,1,0,1,0,0.000000,1.000000,24712,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94191,'LVD_bnpc_mboss_03','w1d4','bnpc4328911',4328911,-15.898290,69.582603,29.696720,-0.000000,2276,0,0,0,0,6,0,0,2105,0,0.000000,50,0,120,1,0,56,0,99,10,0,1,0,1,0,0.000000,1.000000,24082,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94191,'LVD_bnpc_mboss_03','w1d4','bnpc4333766',4333766,-16.840860,69.552834,29.933109,-0.000000,2277,0,0,0,0,6,0,0,2109,0,0.000000,50,0,120,1,0,56,0,99,10,0,1,0,1,0,0.000000,1.000000,23816,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94191,'LVD_bnpc_mboss_03','w1d4','bnpc4333767',4333767,-17.859159,69.533493,30.154600,-0.000000,2278,0,0,0,0,6,0,0,2110,0,0.000000,50,0,120,1,0,56,0,99,10,0,1,0,1,0,0.000000,1.000000,23550,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92085,'LVD_gimmick_02','w1d4','bnpc4248530',4248530,25.087330,68.782761,74.894669,-0.000000,2041,0,0,0,2,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20412,1,0,2000,0,0,0,4248532,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92085,'LVD_gimmick_02','w1d4','bnpc4333046',4333046,-4.873594,71.348000,66.981987,-0.000000,2041,0,0,0,2,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19936,1,0,2000,0,0,0,4333044,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92085,'LVD_gimmick_02','w1d4','bnpc4333047',4333047,-25.720909,74.215500,94.010902,-0.000000,2041,0,0,0,2,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19664,1,0,2000,0,0,0,4333045,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92122,'LVD_gimmick_03','w1d4','bnpc4249164',4249164,0.869751,70.176270,25.497801,-0.562046,1995,0,0,0,0,6,0,0,1486,0,0.000000,50,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18598,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92122,'LVD_gimmick_03','w1d4','bnpc4249188',4249188,6.401333,72.591377,-73.182808,-0.000048,1996,0,0,0,0,6,0,0,2208,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18398,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92122,'LVD_gimmick_03','w1d4','bnpc4312520',4312520,-65.183800,81.494324,-217.648102,-0.000000,1996,0,0,0,0,6,0,0,2209,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18058,1,0,0,3169186,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92122,'LVD_gimmick_03','w1d4','bnpc4249439',4249439,5.327912,75.427567,-151.819504,0.012201,1885,0,0,0,0,6,0,0,2206,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17316,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92122,'LVD_gimmick_03','w1d4','bnpc4334948',4334948,10.845390,75.663948,-151.727295,-0.009981,1885,0,0,0,0,6,0,0,2206,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16840,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92122,'LVD_gimmick_03','w1d4','bnpc4334949',4334949,13.663070,75.680023,-151.539398,-0.048455,1885,0,0,0,0,6,0,0,2206,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16568,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92122,'LVD_gimmick_03','w1d4','bnpc4334950',4334950,8.137141,75.597427,-151.798203,0.010034,1885,0,0,0,0,6,0,0,2206,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16296,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92122,'LVD_gimmick_03','w1d4','bnpc4334959',4334959,-46.780060,85.298767,-264.692902,1.560548,1885,0,0,0,0,6,0,0,2206,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15864,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92122,'LVD_gimmick_03','w1d4','bnpc4334960',4334960,-38.873699,85.298782,-283.526093,1.038701,1885,0,0,0,0,6,0,0,2206,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15592,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92122,'LVD_gimmick_03','w1d4','bnpc4334961',4334961,-49.388870,85.298782,-282.641296,1.554891,1885,0,0,0,0,6,0,0,2206,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15320,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92122,'LVD_gimmick_03','w1d4','bnpc4334962',4334962,-42.007610,85.298767,-264.782013,1.546860,1885,0,0,0,0,6,0,0,2206,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15048,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92129,'LVD_gimmick_04','w1d4','bnpc4249660',4249660,-52.574501,69.241966,-42.916611,-0.928525,434,0,0,0,0,6,0,0,510,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13514,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92129,'LVD_gimmick_04','w1d4','bnpc4249662',4249662,-55.249409,69.797211,-23.540840,-0.928525,434,0,0,0,0,6,0,0,510,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13242,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92129,'LVD_gimmick_04','w1d4','bnpc4249663',4249663,-62.902790,69.110283,-59.307381,-0.928525,434,0,0,0,0,6,0,0,510,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12970,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92129,'LVD_gimmick_04','w1d4','bnpc4308645',4308645,-66.190620,69.597099,-20.610861,-1.356280,2244,0,0,0,0,6,0,0,630,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12794,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92129,'LVD_gimmick_04','w1d4','bnpc4308649',4308649,-70.044823,69.123894,-64.993080,-0.891542,2244,0,0,0,0,6,0,0,630,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12522,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92129,'LVD_gimmick_04','w1d4','bnpc4308651',4308651,-44.737339,67.998756,-39.345459,-1.490705,2244,0,0,0,0,6,0,0,630,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12250,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93900,'LVD_kari','w1d4','bnpc4334951',4334951,95.858757,82.798767,-211.724197,-0.143928,1885,0,0,0,0,6,0,0,2206,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11888,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93900,'LVD_kari','w1d4','bnpc4334955',4334955,83.871681,82.798767,-211.698807,0.250726,1885,0,0,0,0,6,0,0,2206,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11616,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93900,'LVD_kari','w1d4','bnpc4334956',4334956,69.510757,82.798767,-213.467804,0.704406,1885,0,0,0,0,6,0,0,2206,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11344,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93900,'LVD_kari','w1d4','bnpc4334957',4334957,69.136879,83.798767,-222.300400,1.235190,1885,0,0,0,0,6,0,0,2206,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11072,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4325119',4325119,204.590103,186.177704,-15.991930,1.139669,1953,0,0,0,0,6,0,0,2125,0,0.000000,50,0,120,1,0,1,0,99,6,0,1,0,1,0,0.000000,1.000000,109532,1,3,2000,0,0,30337,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4301925',4301925,236.962296,155.500000,5.642570,-0.244406,1951,0,0,0,0,6,0,0,2123,0,0.000000,50,2,120,1,0,9,0,99,6,0,1,0,1,0,0.000000,1.000000,109266,1,3,2000,0,0,30331,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4325137',4325137,189.781906,120.000000,-62.748810,-1.562041,2251,0,0,0,0,6,0,0,2092,0,0.000000,50,0,120,1,0,5,0,99,6,0,1,0,1,0,0.000000,1.000000,109000,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4301927',4301927,234.212097,156.000000,5.032503,-0.000048,2251,0,0,0,0,6,0,0,2092,0,0.000000,50,2,120,1,0,9,0,99,6,0,1,0,1,0,0.000000,1.000000,108728,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4333068',4333068,157.897095,153.884293,-65.291397,0.809804,2253,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,13,0,99,6,0,1,0,1,0,0.000000,1.000000,108462,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4333075',4333075,229.388794,154.100800,-62.729858,0.759281,2253,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,10,0,99,6,0,1,0,1,0,0.000000,1.000000,108190,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4325116',4325116,198.715500,186.500000,-12.123560,0.525205,1951,0,0,0,0,6,0,0,2123,0,0.000000,50,0,120,1,0,1,0,99,6,0,1,0,1,0,0.000000,1.000000,107906,1,3,2000,0,0,30331,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4325120',4325120,199.981995,186.219696,-18.555470,-0.200763,1954,0,0,0,0,6,0,0,2126,0,0.000000,50,0,120,1,0,1,0,99,6,0,1,0,1,0,0.000000,1.000000,107652,1,3,2000,0,0,30332,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4333007',4333007,225.635101,185.992203,-15.121770,-0.537621,1954,0,0,0,5,6,0,0,2126,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,107380,1,3,2000,0,0,0,4333006,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4301928',4301928,230.386703,155.815094,12.074980,0.232623,1954,0,0,0,0,6,0,0,2126,0,0.000000,50,2,120,1,0,9,0,99,6,0,1,0,1,0,0.000000,1.000000,107108,1,3,2000,0,0,30323,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4301926',4301926,222.298203,155.500000,23.745911,0.680283,1954,0,0,0,9,6,0,0,2126,0,0.000000,50,2,120,1,0,8,0,99,6,0,1,0,1,0,0.000000,1.000000,106836,1,3,2000,0,0,30331,4334573,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4373878',4373878,227.727493,155.774902,-54.870541,0.769689,1956,0,0,0,0,6,0,0,2128,0,0.000000,50,0,120,1,0,10,0,99,6,0,1,0,1,0,0.000000,1.000000,106570,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4373879',4373879,233.705399,153.826202,-61.168442,1.271629,1956,0,0,0,0,6,0,0,2128,0,0.000000,50,0,120,1,0,10,0,99,6,0,1,0,1,0,0.000000,1.000000,106298,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4333070',4333070,164.585602,155.770905,-59.471901,1.294421,1951,0,0,0,0,6,0,0,2123,0,0.000000,50,0,120,1,0,13,0,99,6,0,1,0,1,0,0.000000,1.000000,106002,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4333071',4333071,162.218597,153.276901,-69.565979,1.116198,1953,0,0,0,0,6,0,0,2125,0,0.000000,50,0,120,1,0,13,0,99,6,0,1,0,1,0,0.000000,1.000000,105724,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4373880',4373880,159.319397,155.129700,-59.973400,0.582272,1957,0,0,0,0,6,0,0,2129,0,0.000000,50,0,120,1,0,13,0,99,6,0,1,0,1,0,0.000000,1.000000,105488,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4373882',4373882,255.179794,155.064407,-27.091520,-0.000048,1954,0,0,0,5,6,0,0,2126,0,0.000000,50,0,120,1,0,10,0,99,6,0,1,0,1,0,0.000000,1.000000,105204,1,3,2000,0,0,0,4373881,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4373883',4373883,190.178604,120.000000,-58.537319,-1.544931,2251,0,0,0,0,6,0,0,2092,0,0.000000,50,0,120,1,0,5,0,99,6,0,1,0,1,0,0.000000,1.000000,104920,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4325138',4325138,186.991104,120.000000,-60.489658,-1.519095,1954,0,0,0,0,6,0,0,2126,0,0.000000,50,0,120,1,0,5,0,99,6,0,1,0,1,0,0.000000,1.000000,104660,1,3,2000,0,0,30332,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4301923',4301923,221.535904,155.596207,25.140970,1.162823,1955,0,0,0,0,6,0,0,2127,0,0.000000,50,2,120,1,0,8,0,99,6,0,1,0,1,0,0.000000,1.000000,104406,1,3,2000,0,0,30323,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93229,'LVD_bnpc_01','w1d5','bnpc4325136',4325136,196.304001,120.000000,-60.021450,-1.529832,1955,0,0,0,0,6,0,0,2127,0,0.000000,50,0,120,1,0,5,0,99,6,0,1,0,1,0,0.000000,1.000000,104134,1,3,2000,0,0,30333,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4303062',4303062,270.998505,67.003952,-50.509480,0.940594,1955,0,0,0,0,6,0,0,2127,0,0.000000,50,2,120,1,0,19,0,99,8,0,1,0,1,0,0.000000,1.000000,103690,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4303132',4303132,235.167892,71.999992,-5.435642,1.501214,1967,0,0,0,0,6,0,0,2130,0,0.000000,50,2,120,1,0,21,0,99,8,0,1,0,1,0,0.000000,1.000000,103424,1,3,2000,0,0,30331,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4303136',4303136,237.634506,71.488533,-4.405932,1.467803,1953,0,0,0,0,6,0,0,2125,0,0.000000,50,2,120,1,0,21,0,99,8,0,1,0,1,0,0.000000,1.000000,103104,1,3,2000,0,0,30332,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4329244',4329244,101.121498,67.002319,-11.795230,0.470364,2251,0,0,0,0,6,0,0,2092,0,0.000000,50,0,120,1,0,17,0,99,6,0,1,0,1,0,0.000000,1.000000,102844,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4329245',4329245,93.614014,66.361450,-12.375120,0.296830,2251,0,0,0,0,6,0,0,2092,0,0.000000,50,0,120,1,0,17,0,99,6,0,1,0,1,0,0.000000,1.000000,102572,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4329251',4329251,225.960007,67.003937,86.756622,-1.553980,1966,0,0,0,0,6,0,0,2089,0,0.000000,50,0,120,1,0,16,0,99,6,0,1,0,1,0,0.000000,1.000000,102342,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4329252',4329252,239.886993,66.361450,90.653809,-1.203075,1966,0,0,0,0,6,0,0,2089,0,0.000000,50,0,120,1,0,16,0,99,6,0,1,0,1,0,0.000000,1.000000,102070,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4303042',4303042,193.234604,70.890808,-76.261009,-0.155411,2251,0,0,0,5,6,0,0,2092,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,101756,1,3,2000,0,0,0,4325146,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4303067',4303067,267.545288,66.361450,-64.352768,-0.657949,1966,0,0,0,0,6,0,0,2089,0,0.000000,50,2,120,1,0,20,0,99,8,0,1,0,1,0,0.000000,1.000000,101526,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4303063',4303063,269.621796,66.361450,-61.925018,-0.310714,1951,0,0,0,1,6,0,0,2123,0,0.000000,50,2,120,1,0,20,0,99,8,0,1,0,1,0,0.000000,1.000000,101206,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4303059',4303059,269.385986,67.003952,-51.442150,-0.000000,1952,0,0,0,0,6,0,0,2124,0,0.000000,50,2,120,1,0,19,0,99,8,0,1,0,1,0,0.000000,1.000000,100988,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4303061',4303061,269.599915,67.003952,-52.883511,1.193935,1954,0,0,0,0,6,0,0,2126,0,0.000000,50,2,120,1,0,19,0,99,8,0,1,0,1,0,0.000000,1.000000,100680,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4303137',4303137,237.506607,71.976807,-6.790344,1.506680,1957,0,0,0,0,6,0,0,2129,0,0.000000,50,2,120,1,0,21,0,99,8,0,1,0,1,0,0.000000,1.000000,100420,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4373886',4373886,240.319000,71.976807,-4.574103,1.567142,1953,0,0,0,0,6,0,0,2125,0,0.000000,50,2,120,1,0,22,0,99,8,0,1,0,1,0,0.000000,1.000000,100112,1,3,2000,0,0,30333,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4373888',4373888,236.143097,71.976807,-0.041304,1.548567,2253,0,0,0,0,6,0,0,2121,0,0.000000,50,2,120,1,0,22,0,99,8,0,1,0,1,0,0.000000,1.000000,99858,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4329247',4329247,91.660889,66.361450,-11.947810,0.126460,1952,0,0,0,0,6,0,0,2124,0,0.000000,50,0,120,1,0,17,0,99,6,0,1,0,1,0,0.000000,1.000000,99628,1,3,150,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4373895',4373895,95.333267,66.383270,-6.397083,0.317293,1952,0,0,0,0,6,0,0,2124,0,0.000000,50,0,120,1,0,17,0,99,6,0,1,0,1,0,0.000000,1.000000,99356,1,3,150,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4373896',4373896,94.548332,66.382942,5.668620,0.211021,1966,0,0,0,0,6,0,0,2089,0,0.000000,50,0,120,1,0,18,0,99,6,0,1,0,1,0,0.000000,1.000000,99078,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4373899',4373899,90.745361,66.381287,1.968323,-0.082316,1953,0,0,0,0,6,0,0,2125,0,0.000000,50,0,120,1,0,18,0,99,6,0,1,0,1,0,0.000000,1.000000,98752,1,3,150,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4373900',4373900,98.839462,67.003937,2.321835,0.587044,1953,0,0,0,0,6,0,0,2125,0,0.000000,50,0,120,1,0,18,0,99,6,0,1,0,1,0,0.000000,1.000000,98480,1,3,150,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4373901',4373901,105.781898,67.003952,32.023251,0.012847,2251,0,0,0,0,6,0,0,2092,0,0.000000,50,0,120,1,0,23,0,99,6,0,1,0,1,0,0.000000,1.000000,98220,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4373902',4373902,98.563217,66.382050,34.486679,-0.114170,2251,0,0,0,0,6,0,0,2092,0,0.000000,50,0,120,1,0,23,0,99,6,0,1,0,1,0,0.000000,1.000000,97948,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4373903',4373903,93.644531,66.579041,29.648319,-0.303027,2251,0,0,0,0,6,0,0,2092,0,0.000000,50,0,120,1,0,23,0,99,6,0,1,0,1,0,0.000000,1.000000,97676,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4373904',4373904,207.293701,66.361450,100.175400,-1.383969,2251,0,0,0,0,6,0,0,2092,0,0.000000,50,0,120,1,0,15,0,99,6,0,1,0,1,0,0.000000,1.000000,97404,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4373905',4373905,208.351395,67.003937,90.155197,-1.389138,2251,0,0,0,0,6,0,0,2092,0,0.000000,50,0,120,1,0,15,0,99,6,0,1,0,1,0,0.000000,1.000000,97132,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93293,'LVD_bnpc_02','w1d5','bnpc4373887',4373887,233.491104,72.000000,6.896567,0.239912,1955,0,0,0,0,6,0,0,2127,0,0.000000,50,2,120,1,0,22,0,99,8,0,1,0,1,0,0.000000,1.000000,96890,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93346,'LVD_bnpc_03','w1d5','bnpc4304969',4304969,143.877197,45.975342,-53.696529,-1.541050,1967,0,0,0,0,6,0,0,2130,0,0.000000,50,0,120,1,0,25,0,99,8,0,1,0,1,0,0.000000,1.000000,96520,1,3,50,0,0,30331,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93346,'LVD_bnpc_03','w1d5','bnpc4304974',4304974,143.907806,45.944950,-52.475830,1.033823,1957,0,0,0,0,6,0,0,2129,0,0.000000,50,0,120,1,0,25,0,99,8,0,1,0,1,0,0.000000,1.000000,96236,1,3,2000,0,0,30332,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93346,'LVD_bnpc_03','w1d5','bnpc4323533',4323533,193.803497,45.975342,-42.184139,0.505694,2252,0,0,0,5,6,0,0,297,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,95994,1,3,2000,0,0,0,4323538,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93346,'LVD_bnpc_03','w1d5','bnpc4373890',4373890,179.556396,45.999939,26.913670,1.014360,1952,0,0,0,5,6,0,0,2124,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,95716,1,3,20,0,0,0,4373889,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93346,'LVD_bnpc_03','w1d5','bnpc4373891',4373891,153.981705,45.998940,-44.740681,-0.660587,1966,0,0,0,0,6,0,0,2089,0,0.000000,50,0,120,1,0,26,0,99,8,0,1,0,1,0,0.000000,1.000000,95438,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93346,'LVD_bnpc_03','w1d5','bnpc4373892',4373892,159.328796,46.000000,-58.130508,0.153349,1953,0,0,0,0,6,0,0,2125,0,0.000000,50,0,120,1,0,26,0,99,8,0,1,0,1,0,0.000000,1.000000,95112,1,3,50,0,0,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93346,'LVD_bnpc_03','w1d5','bnpc4373893',4373893,159.715805,46.000000,-56.775921,-0.199886,1952,0,0,0,0,6,0,0,2124,0,0.000000,50,0,120,1,0,26,0,99,8,0,1,0,1,0,0.000000,1.000000,94900,1,3,50,0,0,30332,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93346,'LVD_bnpc_03','w1d5','bnpc4331547',4331547,223.949097,45.999939,15.407630,1.014360,1955,0,0,0,5,6,0,0,2127,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,94610,1,3,2000,0,0,0,4326273,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93346,'LVD_bnpc_03','w1d5','bnpc4304975',4304975,148.038193,45.975342,-52.721230,1.415695,2253,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,25,0,99,8,0,1,0,1,0,0.000000,1.000000,94314,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4305246',4305246,83.482063,-107.408302,-47.715031,1.542778,1971,0,0,0,0,6,0,0,2133,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,93944,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4305285',4305285,36.048161,-107.400002,-72.727814,-0.000000,1971,0,0,0,0,6,0,0,2133,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,93672,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4305328',4305328,-36.599522,-103.410400,1.281346,-0.052827,1971,0,0,0,1,6,0,0,2133,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,93400,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4305330',4305330,-36.081821,-103.400002,-1.023186,-0.000000,1971,0,0,0,1,6,0,0,2133,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,93128,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4326294',4326294,55.368198,-107.988197,-79.189568,1.430377,2253,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,34,0,99,6,0,1,0,1,0,0.000000,1.000000,92802,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4326293',4326293,54.794991,-107.988197,-70.603867,1.461200,2253,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,34,0,99,6,0,1,0,1,0,0.000000,1.000000,92530,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4326288',4326288,51.879669,-107.988197,-76.178917,1.519511,2252,0,0,0,0,6,0,0,297,0,0.000000,50,0,120,1,0,35,0,99,6,0,1,0,1,0,0.000000,1.000000,92306,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4326287',4326287,81.633591,-108.000000,-39.412441,-0.040066,2253,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,30,0,99,6,0,1,0,1,0,0.000000,1.000000,91986,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4373908',4373908,86.233932,-107.994202,-39.396591,-0.113652,2253,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,30,0,99,6,0,1,0,1,0,0.000000,1.000000,91714,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4373909',4373909,52.431000,-107.987396,-68.118469,1.519511,2252,0,0,0,0,6,0,0,297,0,0.000000,50,0,120,1,0,35,0,99,6,0,1,0,1,0,0.000000,1.000000,91490,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4373910',4373910,54.600090,-107.988197,-66.260567,1.461200,2253,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,34,0,99,6,0,1,0,1,0,0.000000,1.000000,91170,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4373911',4373911,54.746101,-107.981003,-75.051682,1.461200,2253,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,34,0,99,6,0,1,0,1,0,0.000000,1.000000,90898,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4326296',4326296,18.517410,-106.029999,-26.434719,0.098847,1966,0,0,0,0,6,0,0,2089,0,0.000000,50,0,120,1,0,31,0,99,6,0,1,0,1,0,0.000000,1.000000,90662,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4326290',4326290,4.864758,-106.029999,-26.696051,0.098777,1966,0,0,0,0,6,0,0,2089,0,0.000000,50,0,120,1,0,31,0,99,6,0,1,0,1,0,0.000000,1.000000,90390,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4373912',4373912,11.854660,-106.029999,-24.789351,0.098777,1966,0,0,0,0,6,0,0,2089,0,0.000000,50,0,120,1,0,31,0,99,6,0,1,0,1,0,0.000000,1.000000,90118,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4373913',4373913,15.331230,-104.000000,-13.823400,0.098777,1966,0,0,0,0,6,0,0,2089,0,0.000000,50,0,120,1,0,32,0,99,6,0,1,0,1,0,0.000000,1.000000,89846,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4373914',4373914,7.509180,-103.800003,-14.866620,0.098777,1966,0,0,0,0,6,0,0,2089,0,0.000000,50,0,120,1,0,32,0,99,6,0,1,0,1,0,0.000000,1.000000,89574,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4373915',4373915,11.031520,-103.996696,-10.225560,0.098777,2252,0,0,0,0,6,0,0,297,0,0.000000,50,0,120,1,0,32,0,99,6,0,1,0,1,0,0.000000,1.000000,89314,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4373916',4373916,18.016670,-103.974403,-0.417293,0.098777,2252,0,0,0,0,6,0,0,297,0,0.000000,50,0,120,1,0,33,0,99,6,0,1,0,1,0,0.000000,1.000000,89042,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4373917',4373917,11.099470,-103.815598,-0.485309,0.098777,2252,0,0,0,0,6,0,0,297,0,0.000000,50,0,120,1,0,33,0,99,6,0,1,0,1,0,0.000000,1.000000,88770,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93355,'LVD_bnpc_04','w1d5','bnpc4373918',4373918,4.037630,-104.000000,-0.468032,0.098777,2252,0,0,0,0,6,0,0,297,0,0.000000,50,0,120,1,0,33,0,99,6,0,1,0,1,0,0.000000,1.000000,88498,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93369,'LVD_bnpc_boss_01','w1d5','bnpc4305689',4305689,-781.031616,-399.931610,-599.739990,1.570198,1974,0,0,0,0,6,0,0,2137,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,87830,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93369,'LVD_bnpc_boss_01','w1d5','bnpc4311176',4311176,-771.906372,-400.149994,-618.300171,-0.000048,2038,0,0,0,0,6,0,0,2139,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,86896,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93369,'LVD_bnpc_boss_01','w1d5','bnpc4311177',4311177,-790.772095,-400.131592,-600.571228,1.538173,2039,0,0,0,0,6,0,0,2140,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,86630,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93369,'LVD_bnpc_boss_01','w1d5','bnpc4311178',4311178,-772.436279,-400.150787,-581.839417,0.026709,2040,0,0,0,0,6,0,0,2141,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,86364,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93369,'LVD_bnpc_boss_01','w1d5','bnpc4311172',4311172,-776.930298,-399.931610,-606.273987,-0.000048,2036,0,0,0,0,6,0,0,2138,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,86098,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93369,'LVD_bnpc_boss_01','w1d5','bnpc4323731',4323731,-777.876709,-399.931610,-592.591614,-0.000048,410,0,0,0,0,6,0,0,2137,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,79280,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93369,'LVD_bnpc_boss_01','w1d5','bnpc4323708',4323708,-780.554993,-399.931610,-608.390015,-0.000048,2233,0,0,0,0,6,0,0,2140,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,76518,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93369,'LVD_bnpc_boss_01','w1d5','bnpc4323950',4323950,-781.622375,-399.931610,-612.801086,-0.000048,2232,0,0,0,0,6,0,0,2140,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,76252,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93369,'LVD_bnpc_boss_01','w1d5','bnpc4325336',4325336,-782.261414,-399.931610,-589.945374,-0.000000,2234,0,0,0,1,6,0,0,2183,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,75986,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93870,'LVD_bnpc_boss_02','w1d5','bnpc4305727',4305727,-703.997314,-185.204605,461.343811,-0.000000,434,0,0,0,0,6,0,0,510,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,74412,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93870,'LVD_bnpc_boss_02','w1d5','bnpc4305728',4305728,-722.865601,-185.731598,479.696014,-0.000000,434,0,0,0,0,6,0,0,510,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,74140,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93870,'LVD_bnpc_boss_02','w1d5','bnpc4305730',4305730,-703.996277,-185.302505,498.473297,-0.000000,434,0,0,0,0,6,0,0,510,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,73868,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93870,'LVD_bnpc_boss_02','w1d5','bnpc4311184',4311184,-714.199524,-185.531601,472.930511,1.495729,2037,0,0,0,0,6,0,0,2142,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,73602,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93870,'LVD_bnpc_boss_02','w1d5','bnpc4311512',4311512,-712.898010,-185.531601,485.942413,-0.000000,2036,0,0,0,0,6,0,0,2138,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,73294,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93870,'LVD_bnpc_boss_02','w1d5','bnpc4305719',4305719,-719.309204,-185.534500,478.721313,1.570451,1975,0,0,0,0,6,0,0,2137,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,72920,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93870,'LVD_bnpc_boss_02','w1d5','bnpc4305720',4305720,-703.970520,-185.654999,479.980286,1.570451,1976,0,0,0,0,6,0,0,2143,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,72654,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93870,'LVD_bnpc_boss_02','w1d5','bnpc4331588',4331588,-718.236328,-185.731598,479.262299,1.434468,434,0,0,0,0,6,0,0,2143,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,67228,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93870,'LVD_bnpc_boss_02','w1d5','bnpc4334406',4334406,-716.550110,-185.531601,477.699097,-0.000000,434,0,0,0,0,6,0,0,2137,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,63960,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93870,'LVD_bnpc_boss_02','w1d5','bnpc4335326',4335326,-703.970520,-185.654999,479.980286,1.570451,2234,0,0,0,1,6,0,0,2183,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,63602,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93296,'LVD_bnpc_mboss_01','w1d5','bnpc4304853',4304853,192.034805,75.974609,-0.076355,1.564291,1972,0,0,0,0,6,0,0,2134,0,0.000000,50,0,120,1,0,45,0,99,8,0,1,0,1,0,0.000000,1.000000,53984,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93296,'LVD_bnpc_mboss_01','w1d5','bnpc4305650',4305650,-569.532471,-268.000000,220.067902,1.510530,1441,0,0,0,0,6,0,0,2136,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,52250,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93296,'LVD_bnpc_mboss_01','w1d5','bnpc4312515',4312515,-572.021179,-268.000000,219.393204,-0.000000,2032,0,0,0,0,6,0,0,2136,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,51984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93296,'LVD_bnpc_mboss_01','w1d5','bnpc4305469',4305469,-168.627502,-104.448097,-0.198364,1.562517,1437,0,0,0,0,6,0,0,2135,0,0.000000,50,2,120,1,0,46,0,99,8,0,1,0,1,0,0.000000,1.000000,44414,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93296,'LVD_bnpc_mboss_01','w1d5','bnpc4326208',4326208,-169.792404,-104.221901,3.180098,1.420789,1973,0,0,0,0,6,0,0,2121,0,0.000000,50,0,120,1,0,46,0,99,8,0,1,0,1,0,0.000000,1.000000,44148,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93296,'LVD_bnpc_mboss_01','w1d5','bnpc4329501',4329501,-562.246704,-268.000000,213.464905,-0.000000,410,0,0,0,1,6,0,0,2136,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40716,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93296,'LVD_bnpc_mboss_01','w1d5','bnpc4329522',4329522,180.498795,76.089233,-0.419468,1.555978,1972,0,0,0,0,6,0,0,2134,0,0.000000,50,0,120,1,0,45,0,99,8,0,1,0,1,0,0.000000,1.000000,40492,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93221,'LVD_gimmick_01','w1d5','bnpc4301950',4301950,215.480301,154.131302,-70.202370,-0.000048,434,0,0,0,4,6,0,0,510,0,0.000000,50,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35512,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93221,'LVD_gimmick_01','w1d5','bnpc4303120',4303120,149.436096,154.149002,-61.378880,-0.000048,434,0,0,0,0,6,0,0,510,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35240,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93221,'LVD_gimmick_01','w1d5','bnpc4301783',4301783,149.594604,187.039200,-4.479455,1.305162,1968,0,0,0,0,6,0,0,1486,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34650,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93290,'LVD_gimmick_02','w1d5','bnpc4305186',4305186,266.674988,66.383034,-62.530300,-0.000000,434,0,0,0,0,6,0,0,510,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30524,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93290,'LVD_gimmick_02','w1d5','bnpc4305196',4305196,99.725250,67.003952,0.022499,-0.000000,434,0,0,0,0,6,0,0,510,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30252,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93290,'LVD_gimmick_02','w1d5','bnpc4305200',4305200,154.400497,67.003937,86.513809,-0.000000,434,0,0,0,0,6,0,0,510,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29980,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93290,'LVD_gimmick_02','w1d5','bnpc4308529',4308529,214.943604,66.382843,95.103996,-0.000000,434,0,0,0,0,6,0,0,510,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29708,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93344,'LVD_gimmick_03','w1d5','bnpc4305204',4305204,207.343201,41.111000,-0.033741,-0.000048,1969,0,0,0,3,6,0,0,2131,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25180,1,0,1,4119481,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93354,'LVD_gimmick_04','w1d5','bnpc4305338',4305338,-69.181778,-102.842400,-0.015382,-0.000048,1970,0,0,0,3,6,0,0,2132,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20494,1,0,0,4189149,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505649',4505649,-56.339161,-3.189148,-192.830704,-0.235134,2433,0,0,0,0,6,0,0,2286,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,67812,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505654',4505654,-67.548737,-1.137708,-189.003403,0.713485,2389,0,0,0,3,6,0,0,2281,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,67546,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505659',4505659,-70.312401,-0.076549,-196.404007,1.367085,2389,0,0,0,3,6,0,0,2281,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,67274,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505663',4505663,-57.175598,0.045776,-208.545105,0.152202,2389,0,0,0,3,6,0,0,2281,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,67002,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505665',4505665,-42.526981,-1.419189,-203.296005,-1.513055,2389,0,0,0,3,6,0,0,2281,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,66730,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505667',4505667,-42.907860,-1.487516,-191.569794,-1.073371,2389,0,0,0,3,6,0,0,2281,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,66458,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505669',4505669,9.231689,-5.539063,-207.446396,1.121261,2389,0,0,0,3,6,0,0,2281,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,66186,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505671',4505671,11.699440,-4.281213,-194.873001,1.411406,2389,0,0,0,3,6,0,0,2281,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,65914,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505672',4505672,9.202485,-5.524918,-185.489304,1.280162,2389,0,0,0,3,6,0,0,2281,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,65642,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505694',4505694,58.458569,-9.873078,-21.461990,-0.020215,2433,0,0,0,0,6,0,0,2286,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,65364,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505727',4505727,-54.041340,-6.579142,-157.456207,-0.201247,2345,0,0,0,6,6,0,0,2281,0,0.000000,50,2,120,1,0,15,0,30,3,0,1,0,1,0,0.000000,1.000000,65104,1,0,130,0,0,30246,4505357,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505729',4505729,-15.287730,-6.958161,-218.821503,-1.218437,2345,0,0,0,9,6,0,0,2281,0,0.000000,50,2,120,1,0,16,0,30,3,0,1,0,1,0,0.000000,1.000000,64832,1,0,159,0,0,30246,4505387,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505730',4505730,-42.319801,-6.209507,-220.681702,0.508156,2345,0,0,0,9,6,0,0,2281,0,0.000000,50,2,120,1,0,17,0,30,3,0,1,0,1,0,0.000000,1.000000,64560,1,0,132,0,0,30246,4505404,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505731',4505731,-3.135466,-6.973389,-219.165298,1.526717,2345,0,0,0,9,6,0,0,2281,0,0.000000,50,2,120,1,0,18,0,30,3,0,1,0,1,0,0.000000,1.000000,64288,1,0,172,0,0,30246,4505444,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505732',4505732,-6.240967,-8.957031,-155.077499,-0.351670,2345,0,0,0,6,6,0,0,2281,0,0.000000,50,2,120,1,0,19,0,30,3,0,1,0,1,0,0.000000,1.000000,64016,1,0,162,0,0,30246,4505467,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505776',4505776,-48.889820,-1.663811,-203.957397,-0.376826,2431,0,0,0,0,6,0,0,2293,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,63750,1,0,0,4498400,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505779',4505779,25.559690,-7.756702,-140.696594,-1.559487,2431,0,0,0,0,6,0,0,2293,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,63478,1,0,0,4498416,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505781',4505781,-11.599820,-5.923680,-219.030197,-1.552174,2430,0,0,0,0,6,0,0,2293,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,63212,1,0,0,4498406,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505784',4505784,17.421801,-5.856862,-207.760300,0.010755,2430,0,0,0,0,6,0,0,2293,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,62940,1,0,0,4498409,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505785',4505785,17.295380,-5.909341,-184.254807,0.095186,2430,0,0,0,0,6,0,0,2293,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,62668,1,0,0,4498410,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4517707',4517707,-214.030502,23.872240,-212.201401,-0.850255,2339,0,0,0,1,6,0,0,2275,0,0.000000,50,2,120,1,0,11,0,30,3,0,1,0,1,0,0.000000,1.000000,62402,1,3,80,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4517944',4517944,-214.557098,23.178410,-204.730301,-1.322024,2339,0,0,0,1,6,0,0,2275,0,0.000000,50,2,120,1,0,11,0,30,3,0,1,0,1,0,0.000000,1.000000,62130,1,3,80,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4518075',4518075,-144.648300,-9.266429,-206.555801,-0.000048,2338,0,0,0,1,6,0,0,2274,0,0.000000,50,2,120,1,0,12,0,30,3,0,1,0,1,0,0.000000,1.000000,61688,1,3,30,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4518077',4518077,-144.914307,-7.564291,-202.435898,0.100190,2338,0,0,0,1,6,0,0,2274,0,0.000000,50,2,120,1,0,12,0,30,3,0,1,0,1,0,0.000000,1.000000,61416,1,3,30,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4518378',4518378,15.579410,-9.903137,-146.562897,-1.482041,2332,0,0,0,1,6,0,0,2268,0,0.000000,50,2,120,1,0,14,0,30,3,0,1,0,1,0,0.000000,1.000000,61150,1,3,148,0,0,0,0,355,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4518380',4518380,7.659675,-10.086240,-144.095795,0.100382,2338,0,0,0,1,6,0,0,2274,0,0.000000,50,2,120,1,0,14,0,30,3,0,1,0,1,0,0.000000,1.000000,60872,1,3,148,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4518210',4518210,-13.656920,-6.820801,-218.951706,-1.552174,2334,0,0,0,0,6,0,0,2270,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,60612,1,3,161,0,0,0,0,357,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4518074',4518074,-104.936302,-3.654281,-174.517502,-1.229984,2333,0,0,0,5,0,0,0,2269,0,0.000000,50,2,120,1,0,12,0,30,3,0,1,0,1,0,0.000000,1.000000,60346,1,3,26,0,0,0,4517945,355,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4505902',4505902,-202.441498,22.842710,-208.392502,-1.556295,2335,0,0,0,2,6,0,0,2271,0,22.000000,50,2,120,1,0,11,0,30,3,0,1,0,1,0,0.000000,1.000000,60080,1,3,90,0,0,0,4588780,357,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4518207',4518207,-71.963097,-5.783203,-167.905304,-1.107024,2339,0,0,0,1,6,0,0,2275,0,0.000000,50,2,120,1,0,13,0,30,3,0,1,0,1,0,0.000000,1.000000,59778,1,3,109,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4518379',4518379,13.778870,-9.597961,-137.163406,-0.757894,2334,0,0,0,1,6,0,0,2270,0,0.000000,50,2,120,1,0,14,0,30,3,0,1,0,1,0,0.000000,1.000000,59524,1,3,140,0,0,0,0,357,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4518209',4518209,-75.019432,-5.996826,-165.116806,1.135307,2339,0,0,0,1,6,0,0,2275,0,0.000000,50,2,120,1,0,13,0,30,3,0,1,0,1,0,0.000000,1.000000,59234,1,3,108,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96417,'LVD_BNPC_01','w1d6','bnpc4518208',4518208,-69.992371,-5.996826,-165.148407,-1.293126,2339,0,0,0,1,6,0,0,2275,0,0.000000,50,2,120,1,0,13,0,30,3,0,1,0,1,0,0.000000,1.000000,58962,1,3,112,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96418,'LVD_BNPC_02','w1d6','bnpc4506613',4506613,59.311771,-37.186279,55.771729,-0.039947,2432,0,0,0,0,6,0,0,2293,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,58618,1,0,0,4498451,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96418,'LVD_BNPC_02','w1d6','bnpc4506621',4506621,44.616081,-38.654018,37.841042,1.400454,2337,0,0,0,6,4,0,0,2273,0,1.200000,50,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,58352,1,0,2000,0,0,0,4590160,356,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96418,'LVD_BNPC_02','w1d6','bnpc4506622',4506622,76.469597,-39.436729,41.361210,-1.462983,2336,0,0,0,9,4,0,0,2272,0,1.200000,50,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,58086,1,0,2000,0,0,0,4590159,358,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96418,'LVD_BNPC_02','w1d6','bnpc4506629',4506629,55.954830,-38.681641,53.299679,1.440526,2344,0,0,0,1,6,0,0,2280,0,2.000000,50,3,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57820,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96418,'LVD_BNPC_02','w1d6','bnpc4506632',4506632,56.106499,-38.885620,23.776850,0.758393,2426,0,0,0,0,6,0,0,2291,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57554,1,0,2000,0,0,30068,0,53,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96418,'LVD_BNPC_02','w1d6','bnpc4506633',4506633,54.865459,-39.631161,18.997660,1.115542,2427,0,0,0,0,6,0,0,2292,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57288,1,0,2000,0,0,30077,0,54,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96418,'LVD_BNPC_02','w1d6','bnpc4506634',4506634,54.126961,-39.282101,21.669979,-1.007884,2428,0,0,0,0,6,0,0,2292,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57022,1,0,2000,0,0,30073,0,54,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96418,'LVD_BNPC_02','w1d6','bnpc4506635',4506635,53.179428,-39.156952,21.412840,1.306978,2429,0,0,0,0,6,0,0,2292,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,56756,1,0,2000,0,0,30323,0,54,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96419,'LVD_BNPC_03','w1d6','bnpc4518402',4518402,-49.118839,-39.566650,111.436600,-0.427268,2340,0,0,0,1,6,0,0,2276,0,0.000000,50,2,120,1,0,31,0,30,4,0,1,0,1,0,0.000000,1.000000,56170,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96419,'LVD_BNPC_03','w1d6','bnpc4518393',4518393,-55.710751,-40.268620,115.464996,0.645192,2340,0,0,0,1,6,0,0,2276,0,0.000000,50,2,120,1,0,31,0,30,4,0,1,0,1,0,0.000000,1.000000,55898,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96419,'LVD_BNPC_03','w1d6','bnpc4518422',4518422,-41.912491,-41.700001,159.840103,0.722312,2343,0,0,0,1,6,0,0,2279,0,0.000000,50,2,120,1,0,32,0,30,3,0,1,0,1,0,0.000000,1.000000,55632,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96419,'LVD_BNPC_03','w1d6','bnpc4518423',4518423,-48.120998,-41.700001,157.726700,1.513606,2341,0,0,0,1,6,0,0,2277,0,0.000000,50,2,120,1,0,32,0,30,3,0,1,0,1,0,0.000000,1.000000,55366,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96419,'LVD_BNPC_03','w1d6','bnpc4518661',4518661,-43.625889,-41.700001,166.806900,0.592481,2341,0,0,0,1,6,0,0,2277,0,0.000000,50,2,120,1,0,32,0,30,3,0,1,0,1,0,0.000000,1.000000,55094,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96419,'LVD_BNPC_03','w1d6','bnpc4518768',4518768,-59.680389,-41.700001,139.470093,-0.506529,2343,0,0,0,1,6,0,0,2279,0,0.000000,50,2,120,1,0,33,0,30,2,0,1,0,1,0,0.000000,1.000000,54816,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96419,'LVD_BNPC_03','w1d6','bnpc4518837',4518837,-50.477322,-40.310440,137.085007,-0.071777,2341,0,0,0,1,6,0,0,2277,0,0.000000,50,2,120,1,0,33,0,30,2,0,1,0,1,0,0.000000,1.000000,54550,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96419,'LVD_BNPC_03','w1d6','bnpc4519015',4519015,-80.259941,-38.451229,108.221199,1.456339,2333,0,0,0,5,6,0,0,2269,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,54062,1,3,2000,0,0,0,4518974,355,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96419,'LVD_BNPC_03','w1d6','bnpc4519092',4519092,-92.581177,-38.158821,115.059601,-0.000048,2342,0,0,0,1,6,0,0,2278,0,0.000000,50,0,120,1,0,34,0,30,3,0,1,0,1,0,0.000000,1.000000,53868,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96419,'LVD_BNPC_03','w1d6','bnpc4519093',4519093,-89.072853,-37.726879,116.914803,-0.000048,2342,0,0,0,1,6,0,0,2278,0,0.000000,50,0,120,1,0,34,0,30,3,0,1,0,1,0,0.000000,1.000000,53596,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96419,'LVD_BNPC_03','w1d6','bnpc4519095',4519095,-92.380951,-37.458771,117.918404,-0.000048,2342,0,0,0,1,6,0,0,2278,0,0.000000,50,0,120,1,0,34,0,30,3,0,1,0,1,0,0.000000,1.000000,53324,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96419,'LVD_BNPC_03','w1d6','bnpc4506664',4506664,-91.996643,-43.381409,94.224487,0.789964,2335,0,0,0,5,6,0,0,2271,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,52980,1,3,2000,0,0,0,4578906,357,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96419,'LVD_BNPC_03','w1d6','bnpc4506667',4506667,-83.085388,-39.414059,101.609703,0.721605,2332,0,0,0,0,6,0,0,2268,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,52690,1,3,2000,0,0,0,0,355,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96419,'LVD_BNPC_03','w1d6','bnpc4522548',4522548,-54.734192,-39.658199,107.835403,0.070899,2334,0,0,0,1,6,0,0,2270,0,0.000000,50,2,120,1,0,31,0,30,4,0,1,0,1,0,0.000000,1.000000,52424,1,3,2000,0,0,0,0,357,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4507086',4507086,-99.321037,-58.121639,4.440308,0.187772,2386,0,0,0,0,6,0,0,2289,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,51378,1,2,2000,0,0,0,0,756,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4508145',4508145,-100.663101,-58.225430,7.240038,-0.000000,2388,0,0,0,0,6,0,0,2290,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,50968,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4508154',4508154,-101.161003,-57.626671,-3.826762,-0.000000,2387,0,0,0,0,6,0,0,2290,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,50702,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4508187',4508187,-98.809547,-57.743389,5.382940,-0.000000,434,0,0,0,3,6,0,0,2294,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,48152,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4536274',4536274,-98.509537,-57.747742,5.682940,-0.000000,434,0,0,0,3,6,0,0,2294,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47880,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4536279',4536279,-98.209541,-57.751759,5.982940,-0.000000,434,0,0,0,3,6,0,0,2294,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47608,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4536280',4536280,-97.909538,-57.755779,6.282940,-0.000000,434,0,0,0,3,6,0,0,2294,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47336,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4536281',4536281,-97.609543,-57.759789,6.582941,-0.000000,434,0,0,0,3,6,0,0,2294,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47064,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4536282',4536282,-97.309532,-57.763809,6.882941,-0.000000,434,0,0,0,3,6,0,0,2294,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46792,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4536359',4536359,-98.509537,-57.747742,5.682940,-0.000000,434,0,0,0,3,6,0,0,2294,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46520,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4536360',4536360,-98.209534,-57.751759,5.982940,-0.000000,434,0,0,0,3,6,0,0,2294,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,46248,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4536361',4536361,-97.909538,-57.755779,6.282940,-0.000000,434,0,0,0,3,6,0,0,2294,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45976,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4536364',4536364,-97.609543,-57.759800,6.582940,-0.000000,434,0,0,0,3,6,0,0,2294,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45704,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4536365',4536365,-97.309540,-57.763809,6.882941,-0.000000,434,0,0,0,3,6,0,0,2294,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45432,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4536366',4536366,-97.009529,-57.767830,7.182941,-0.000000,434,0,0,0,3,6,0,0,2294,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45160,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4549506',4549506,-100.631798,-58.232849,7.474482,-0.000000,2388,0,0,0,0,6,0,0,2290,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44876,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4577552',4577552,-99.443047,-58.152222,6.729187,-0.000048,2681,0,0,0,0,6,0,0,2290,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,42054,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96421,'LVD_BNPC_boss_01','w1d6','bnpc4577644',4577644,-123.216698,-57.694401,35.538212,0.877642,2682,0,0,0,0,6,0,0,2273,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41788,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96685,'LVD_BNPC_mboss_01','w1d6','bnpc4497410',4497410,75.456253,-12.000000,-90.976273,-1.474925,2375,0,0,0,0,6,0,0,2282,0,0.000000,50,0,120,1,0,50,0,30,4,0,1,0,1,0,0.000000,1.000000,38974,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96685,'LVD_BNPC_mboss_01','w1d6','bnpc4497437',4497437,68.181023,-12.083000,-48.288368,-0.000000,2379,0,0,0,2,6,0,0,983,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,38708,1,0,2000,0,0,0,4511400,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96685,'LVD_BNPC_mboss_01','w1d6','bnpc4497412',4497412,77.674072,-12.000000,-81.075104,-0.000048,2376,0,0,0,0,6,0,0,2283,0,0.000000,50,0,120,1,0,50,0,30,4,0,1,0,1,0,0.000000,1.000000,38442,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96685,'LVD_BNPC_mboss_01','w1d6','bnpc4497414',4497414,78.469978,-12.000000,-79.099220,-0.000048,2376,0,0,0,0,6,0,0,2283,0,0.000000,50,0,120,1,0,50,0,30,4,0,1,0,1,0,0.000000,1.000000,38170,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96685,'LVD_BNPC_mboss_01','w1d6','bnpc4497416',4497416,80.877663,-12.000020,-79.191544,-0.000048,2376,0,0,0,0,6,0,0,2283,0,0.000000,50,0,120,1,0,50,0,30,4,0,1,0,1,0,0.000000,1.000000,37898,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96685,'LVD_BNPC_mboss_01','w1d6','bnpc4497424',4497424,86.264359,-12.000060,-78.639587,-0.000000,2377,0,0,0,0,6,0,0,2283,0,0.000000,50,0,120,1,0,51,0,30,3,0,1,0,1,0,0.000000,1.000000,37632,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96685,'LVD_BNPC_mboss_01','w1d6','bnpc4497425',4497425,87.848984,-12.000060,-77.356560,-0.000000,2377,0,0,0,0,6,0,0,2283,0,0.000000,50,0,120,1,0,51,0,30,3,0,1,0,1,0,0.000000,1.000000,37360,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96685,'LVD_BNPC_mboss_01','w1d6','bnpc4497427',4497427,89.791550,-12.000060,-78.619003,-0.000000,2377,0,0,0,0,6,0,0,2283,0,0.000000,50,0,120,1,0,51,0,30,3,0,1,0,1,0,0.000000,1.000000,37088,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96685,'LVD_BNPC_mboss_01','w1d6','bnpc4497429',4497429,76.046341,-12.000020,-51.161289,-0.000000,2378,0,0,0,0,6,0,0,2283,0,0.000000,50,0,120,1,0,52,0,30,3,0,1,0,1,0,0.000000,1.000000,36822,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96685,'LVD_BNPC_mboss_01','w1d6','bnpc4497430',4497430,74.126266,-12.000010,-50.706329,-0.000000,2378,0,0,0,0,6,0,0,2283,0,0.000000,50,0,120,1,0,52,0,30,3,0,1,0,1,0,0.000000,1.000000,36550,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96685,'LVD_BNPC_mboss_01','w1d6','bnpc4497431',4497431,73.327408,-12.000000,-48.522099,-0.000000,2378,0,0,0,0,6,0,0,2283,0,0.000000,50,0,120,1,0,52,0,30,3,0,1,0,1,0,0.000000,1.000000,36278,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96685,'LVD_BNPC_mboss_01','w1d6','bnpc4507181',4507181,69.914978,-12.000000,-48.314529,0.839258,2380,0,0,0,0,6,0,0,2284,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36012,1,0,2000,0,0,0,0,357,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96685,'LVD_BNPC_mboss_01','w1d6','bnpc4507182',4507182,68.611847,-12.000000,-47.949921,0.926302,2380,0,0,0,0,6,0,0,2284,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35740,1,0,2000,0,0,0,0,357,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96685,'LVD_BNPC_mboss_01','w1d6','bnpc4514480',4514480,70.663986,-12.000000,-48.419971,1.084254,2380,0,0,0,0,6,0,0,2284,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34956,1,0,2000,0,0,0,0,357,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96702,'LVD_BNPC_mboss_02','w1d6','bnpc4498669',4498669,34.918091,-37.992668,109.431602,-0.000000,2383,0,0,0,0,6,0,0,1303,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33586,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96702,'LVD_BNPC_mboss_02','w1d6','bnpc4498670',4498670,31.363310,-37.873081,109.778702,-0.000000,2384,0,0,0,0,6,0,0,2287,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33320,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96702,'LVD_BNPC_mboss_02','w1d6','bnpc4498671',4498671,28.492800,-37.907940,110.375702,-0.000000,2385,0,0,0,0,6,0,0,2288,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33054,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96702,'LVD_BNPC_mboss_02','w1d6','bnpc4498668',4498668,27.631769,-37.904789,111.818398,3.141593,2381,0,0,0,0,6,0,0,2285,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25612,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96702,'LVD_BNPC_mboss_02','w1d6','bnpc4507199',4507199,27.617689,-37.901131,111.603401,-0.135562,2382,0,0,0,0,6,0,0,2286,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25346,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96702,'LVD_BNPC_mboss_02','w1d6','bnpc4527477',4527477,40.318958,-37.301571,114.179398,-0.000000,2661,0,0,0,3,6,0,0,2374,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24860,1,0,0,4500271,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96702,'LVD_BNPC_mboss_02','w1d6','bnpc4498690',4498690,37.561741,-38.056808,109.926102,-0.000000,2683,0,0,0,3,6,0,0,2295,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24594,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96424,'LVD_gimmick_03','w1d6','bnpc4573680',4573680,-92.952148,-59.298222,41.637699,0.113288,2677,0,0,0,0,6,0,0,2291,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14220,1,0,0,0,0,30064,0,53,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96424,'LVD_gimmick_03','w1d6','bnpc4573681',4573681,-90.255127,-59.218460,42.659752,0.113325,2678,0,0,0,0,6,0,0,2292,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13954,1,0,0,0,0,30066,0,54,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96424,'LVD_gimmick_03','w1d6','bnpc4573682',4573682,-93.334412,-59.037239,44.770161,0.113288,2679,0,0,0,0,6,0,0,2292,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13688,1,0,0,0,0,30067,0,54,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96424,'LVD_gimmick_03','w1d6','bnpc4573683',4573683,-90.738937,-58.910801,45.536968,0.113288,2680,0,0,0,0,6,0,0,2292,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13422,1,0,0,0,0,30323,0,54,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97572,'LVD_BNPC_01','w1d7','bnpc4634925',4634925,46.737961,-11.116050,-96.431511,1.249812,2817,0,0,0,1,6,0,0,2585,0,0.000000,50,0,120,1,0,11,0,32,3,0,1,0,1,0,0.000000,1.000000,43392,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97572,'LVD_BNPC_01','w1d7','bnpc4634926',4634926,41.106880,-10.871090,-92.364250,-0.000000,2816,0,0,0,1,6,0,0,2584,0,0.000000,50,0,120,1,0,11,0,32,3,0,1,0,1,0,0.000000,1.000000,43126,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97572,'LVD_BNPC_01','w1d7','bnpc4634929',4634929,-4.962070,-2.130528,-111.616302,-0.000000,2816,0,0,0,1,6,0,0,2584,0,0.000000,50,0,120,1,0,12,0,32,3,0,1,0,1,0,0.000000,1.000000,42854,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97572,'LVD_BNPC_01','w1d7','bnpc4634930',4634930,-6.214492,-1.875767,-115.117500,-0.000000,2816,0,0,0,1,6,0,0,2584,0,0.000000,50,0,120,1,0,12,0,32,3,0,1,0,1,0,0.000000,1.000000,42582,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97572,'LVD_BNPC_01','w1d7','bnpc4634933',4634933,11.487220,-11.043880,-186.641800,-0.000048,2817,0,0,0,1,6,0,0,2585,0,0.000000,50,0,120,1,0,13,0,32,3,0,1,0,1,0,0.000000,1.000000,42304,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97572,'LVD_BNPC_01','w1d7','bnpc4634934',4634934,16.325800,-11.008110,-186.755203,-0.000048,2816,0,0,0,1,6,0,0,2584,0,0.000000,50,0,120,1,0,13,0,32,3,0,1,0,1,0,0.000000,1.000000,42038,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97572,'LVD_BNPC_01','w1d7','bnpc4634939',4634939,-4.806641,-10.788150,-189.135605,-1.262629,2820,0,0,0,5,6,0,0,2586,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41772,1,3,2000,0,0,0,4634940,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97572,'LVD_BNPC_01','w1d7','bnpc4634943',4634943,3.421977,-3.527810,-114.145897,1.344530,2820,0,0,0,5,6,0,0,2586,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41068,1,3,2000,0,0,0,4634941,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97572,'LVD_BNPC_01','w1d7','bnpc4600436',4600436,-13.861610,-11.263960,-146.508804,1.557487,2814,0,0,0,1,6,0,0,2589,0,0.000000,50,0,120,1,0,14,0,32,3,0,1,0,1,0,0.000000,1.000000,40802,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97572,'LVD_BNPC_01','w1d7','bnpc4600438',4600438,-9.082000,-2.426208,-112.477699,1.557487,2813,0,0,0,1,6,0,0,2591,0,0.000000,50,0,120,1,0,12,0,32,3,0,1,0,1,0,0.000000,1.000000,40536,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97572,'LVD_BNPC_01','w1d7','bnpc4600440',4600440,14.877500,-11.099520,-183.886307,-1.038952,2814,0,0,0,1,6,0,0,2589,0,0.000000,50,0,120,1,0,13,0,32,3,0,1,0,1,0,0.000000,1.000000,40258,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97572,'LVD_BNPC_01','w1d7','bnpc4600442',4600442,-17.134460,-11.100300,-148.660507,0.585319,2813,0,0,0,1,6,0,0,2591,0,0.000000,50,0,120,1,0,14,0,32,3,0,1,0,1,0,0.000000,1.000000,39992,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97572,'LVD_BNPC_01','w1d7','bnpc4634936',4634936,-14.053210,-11.096940,-149.542099,0.649747,2817,0,0,0,1,6,0,0,2585,0,0.000000,50,0,120,1,0,14,0,32,3,0,1,0,1,0,0.000000,1.000000,39696,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97573,'LVD_BNPC_02','w1d7','bnpc4600452',4600452,93.372711,-3.731028,33.454021,0.486903,2818,0,0,0,0,6,0,0,2750,0,4.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39318,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97573,'LVD_BNPC_02','w1d7','bnpc4600454',4600454,134.813400,-3.738525,63.004391,-1.264019,2818,0,0,0,0,6,0,0,2750,0,4.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,39046,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97573,'LVD_BNPC_02','w1d7','bnpc4634968',4634968,57.596401,9.157762,109.399498,0.987324,2821,0,0,0,1,6,0,0,2587,0,0.000000,50,0,120,1,0,21,0,32,3,0,1,0,1,0,0.000000,1.000000,38780,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97573,'LVD_BNPC_02','w1d7','bnpc4634969',4634969,52.988110,9.149729,109.155403,0.987324,2822,0,0,0,1,6,0,0,2588,0,0.000000,50,0,120,1,0,21,0,32,3,0,1,0,1,0,0.000000,1.000000,38514,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97573,'LVD_BNPC_02','w1d7','bnpc4634970',4634970,54.880329,9.141557,105.279503,0.987324,2821,0,0,0,1,6,0,0,2587,0,0.000000,50,0,120,1,0,21,0,32,3,0,1,0,1,0,0.000000,1.000000,38236,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97573,'LVD_BNPC_02','w1d7','bnpc4634975',4634975,86.624207,-1.678856,193.072998,-0.654828,2822,0,0,0,1,6,0,0,2588,0,0.000000,50,0,120,1,0,22,0,32,3,0,1,0,1,0,0.000000,1.000000,37970,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97573,'LVD_BNPC_02','w1d7','bnpc4634976',4634976,81.527771,-2.076723,192.706802,-0.654828,2822,0,0,0,1,6,0,0,2588,0,0.000000,50,0,120,1,0,22,0,32,3,0,1,0,1,0,0.000000,1.000000,37698,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97573,'LVD_BNPC_02','w1d7','bnpc4634977',4634977,83.419861,-2.208830,189.227798,-0.654828,2821,0,0,0,1,6,0,0,2587,0,0.000000,50,0,120,1,0,22,0,32,3,0,1,0,1,0,0.000000,1.000000,37420,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97573,'LVD_BNPC_02','w1d7','bnpc4634978',4634978,50.874310,9.141564,101.452698,-1.299114,2820,0,0,0,5,6,0,0,2586,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,37124,1,3,2000,0,0,0,4634979,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97573,'LVD_BNPC_02','w1d7','bnpc4635011',4635011,67.678963,-3.638154,173.726196,-0.716653,2820,0,0,0,5,6,0,0,2586,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36548,1,3,2000,0,0,0,4635010,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97573,'LVD_BNPC_02','w1d7','bnpc4600462',4600462,26.260740,0.819950,172.289597,0.275546,2819,0,0,0,0,6,0,0,2593,0,4.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36312,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97573,'LVD_BNPC_02','w1d7','bnpc4600460',4600460,-9.039840,0.781528,147.498993,1.118566,2819,0,0,0,0,6,0,0,2593,0,4.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36040,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97573,'LVD_BNPC_02','w1d7','bnpc4600463',4600463,75.455811,0.832446,138.292496,-1.403998,2819,0,0,0,0,6,0,0,2593,0,4.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35768,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97573,'LVD_BNPC_02','w1d7','bnpc4600455',4600455,75.547363,-3.738525,57.083981,1.302993,2934,0,0,0,0,6,0,0,2592,0,4.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35502,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97573,'LVD_BNPC_02','w1d7','bnpc4600457',4600457,109.709602,-3.714834,87.203979,-0.228897,2935,0,0,0,0,6,0,0,2751,0,4.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35236,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97574,'LVD_BNPC_03','w1d7','bnpc4600467',4600467,-159.197403,10.696530,102.738998,0.154551,2720,0,0,0,0,6,0,0,2595,0,0.000000,50,0,120,1,0,31,0,16,3,0,1,0,0,0,0.000000,1.000000,34850,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97574,'LVD_BNPC_03','w1d7','bnpc4600468',4600468,-60.929321,14.419740,60.837650,-1.068578,2718,0,0,0,0,6,0,0,2594,0,0.000000,50,0,120,1,0,32,0,16,3,0,1,0,0,0,0.000000,1.000000,34584,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97574,'LVD_BNPC_03','w1d7','bnpc4600469',4600469,-132.646698,10.177730,1.388489,1.558643,2719,0,0,0,0,6,0,0,2596,0,0.000000,50,0,120,1,0,33,0,16,3,0,1,0,0,0,0.000000,1.000000,34318,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97574,'LVD_BNPC_03','w1d7','bnpc4634981',4634981,-248.218506,-1.236023,141.985107,-1.299110,2820,0,0,0,2,6,0,0,2586,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33980,1,3,2000,0,0,0,4634983,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97574,'LVD_BNPC_03','w1d7','bnpc4635019',4635019,-281.528412,0.010568,141.592102,0.754756,2820,0,0,0,5,6,0,0,2586,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33324,1,3,2000,0,0,0,4635018,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97574,'LVD_BNPC_03','w1d7','bnpc4649857',4649857,-158.159805,10.696530,102.250702,-0.000048,434,0,0,0,0,6,0,0,2595,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33124,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97574,'LVD_BNPC_03','w1d7','bnpc4679014',4679014,-163.042694,10.696530,98.588501,-0.170083,2817,0,0,0,0,6,0,0,2585,0,0.000000,50,0,120,1,0,31,0,16,3,0,1,0,1,0,0.000000,1.000000,32768,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97574,'LVD_BNPC_03','w1d7','bnpc4679016',4679016,-155.321701,10.696530,98.588501,-0.170083,2817,0,0,0,0,6,0,0,2585,0,0.000000,50,0,120,1,0,31,0,16,3,0,1,0,1,0,0.000000,1.000000,32496,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97574,'LVD_BNPC_03','w1d7','bnpc4679931',4679931,-59.189758,14.419740,61.600590,-1.068674,2937,0,0,0,0,6,0,0,2753,0,0.000000,50,0,120,1,0,32,0,16,3,0,1,0,0,0,0.000000,1.000000,32314,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97574,'LVD_BNPC_03','w1d7','bnpc4679932',4679932,-135.973206,10.177730,4.837097,1.558643,2936,0,0,0,0,6,0,0,2754,0,0.000000,50,0,120,1,0,33,0,16,3,0,1,0,0,0,0.000000,1.000000,32048,1,3,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97574,'LVD_BNPC_03','w1d7','bnpc4679933',4679933,-135.973206,10.177730,-1.724304,1.558648,2936,0,0,0,0,6,0,0,2754,0,0.000000,50,0,120,1,0,33,0,16,3,0,1,0,0,0,0.000000,1.000000,31776,1,3,0,0,0,0,0,0,437); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97575,'LVD_BNPC_BOSS','w1d7','bnpc4600224',4600224,-296.958710,17.404200,17.564131,1.570451,2724,0,0,0,0,6,0,0,2602,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31322,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97575,'LVD_BNPC_BOSS','w1d7','bnpc4620363',4620363,-264.850891,17.593571,18.997379,1.570451,2721,0,0,0,0,6,0,0,2604,0,0.000000,50,0,120,1,0,91,0,16,3,0,1,0,0,0,0.000000,1.000000,31056,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97575,'LVD_BNPC_BOSS','w1d7','bnpc4620364',4620364,-264.881409,17.593571,17.807249,1.570451,2722,0,0,0,0,6,0,0,2605,0,0.000000,50,0,120,1,0,91,0,16,3,0,1,0,0,0,0.000000,1.000000,30790,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97575,'LVD_BNPC_BOSS','w1d7','bnpc4620365',4620365,-267.811096,17.593571,15.976140,1.570451,2723,0,0,0,0,6,0,0,2606,0,0.000000,50,0,120,1,0,91,0,16,3,0,1,0,0,0,0.000000,1.000000,30524,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97575,'LVD_BNPC_BOSS','w1d7','bnpc4620366',4620366,-267.627991,17.593571,21.103210,1.570451,2725,0,0,0,0,6,0,0,2607,0,0.000000,50,0,120,1,0,91,0,16,3,0,1,0,0,0,0.000000,1.000000,30258,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97575,'LVD_BNPC_BOSS','w1d7','bnpc4620368',4620368,-296.589600,17.379999,20.492800,1.487984,2764,0,0,0,0,6,0,0,2603,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29992,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97575,'LVD_BNPC_BOSS','w1d7','bnpc4632468',4632468,-261.265900,17.622780,18.439501,-0.000000,2831,0,0,0,0,6,0,0,2603,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27962,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97575,'LVD_BNPC_BOSS','w1d7','bnpc4681668',4681668,-270.068298,17.622801,32.008701,0.000000,434,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27432,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97575,'LVD_BNPC_BOSS','w1d7','bnpc4682335',4682335,-270.068298,17.622801,32.008701,-0.000000,434,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27160,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97575,'LVD_BNPC_BOSS','w1d7','bnpc4682336',4682336,-271.883514,17.622801,6.202800,-0.000000,434,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26888,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97575,'LVD_BNPC_BOSS','w1d7','bnpc4682337',4682337,-271.883514,17.622801,6.202800,-0.000000,434,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26616,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97575,'LVD_BNPC_BOSS','w1d7','bnpc4682338',4682338,-244.251801,17.593599,30.251499,-0.000000,434,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26344,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97575,'LVD_BNPC_BOSS','w1d7','bnpc4682339',4682339,-244.251801,17.593599,30.251499,-0.000000,434,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,26072,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97575,'LVD_BNPC_BOSS','w1d7','bnpc4682340',4682340,-246.038696,17.593599,4.371000,-0.000000,434,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25800,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97575,'LVD_BNPC_BOSS','w1d7','bnpc4682341',4682341,-246.038696,17.593599,4.371000,-0.000000,434,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,25528,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97575,'LVD_BNPC_BOSS','w1d7','bnpc4620561',4620561,-261.078186,17.622761,18.472710,-0.000000,434,0,0,0,0,6,0,0,2605,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24632,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97575,'LVD_BNPC_BOSS','w1d7','bnpc4620562',4620562,-261.078186,17.622709,17.592739,-0.000000,434,0,0,0,0,6,0,0,2605,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24360,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97576,'LVD_BNPC_MBOSS_01','w1d7','bnpc4600222',4600222,-73.624763,-10.208310,-100.877403,1.021168,2757,0,0,0,0,6,0,0,2597,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23996,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97576,'LVD_BNPC_MBOSS_01','w1d7','bnpc4620336',4620336,-67.338127,-10.178000,-104.387001,0.875437,2758,0,0,0,1,6,0,0,2591,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23730,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97576,'LVD_BNPC_MBOSS_01','w1d7','bnpc4620339',4620339,-67.826424,-10.178000,-104.936302,0.926347,2759,0,0,0,1,6,0,0,2589,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23464,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97576,'LVD_BNPC_MBOSS_01','w1d7','bnpc4620352',4620352,-82.261414,-10.208310,-94.499153,0.838621,2760,0,0,0,0,20,0,0,2590,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23198,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97576,'LVD_BNPC_MBOSS_01','w1d7','bnpc4621580',4621580,-85.833862,-8.580495,-92.962219,-0.000000,434,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97577,'LVD_BNPC_MBOSS_02','w1d7','bnpc4600223',4600223,155.413101,4.501404,227.985001,-1.126822,2761,0,0,0,0,6,0,0,2598,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17764,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97577,'LVD_BNPC_MBOSS_02','w1d7','bnpc4620358',4620358,150.201004,4.509544,222.629196,-0.000000,2762,0,0,0,1,6,0,0,2600,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17498,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97577,'LVD_BNPC_MBOSS_02','w1d7','bnpc4620359',4620359,147.698898,4.509544,227.653793,-0.000048,2763,0,0,0,1,6,0,0,2601,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17232,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97577,'LVD_BNPC_MBOSS_02','w1d7','bnpc4620537',4620537,162.378494,4.509542,225.365494,-0.000000,434,0,0,0,0,6,0,0,2598,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15616,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97577,'LVD_BNPC_MBOSS_02','w1d7','bnpc4620538',4620538,162.052704,4.509544,226.875107,-0.000000,434,0,0,0,0,6,0,0,2598,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15344,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97577,'LVD_BNPC_MBOSS_02','w1d7','bnpc4620539',4620539,161.621399,4.509542,228.542297,-0.000000,434,0,0,0,0,6,0,0,2598,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15072,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97577,'LVD_BNPC_MBOSS_02','w1d7','bnpc4620540',4620540,161.041901,4.509542,230.164398,-0.000000,434,0,0,0,0,6,0,0,2598,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14800,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97577,'LVD_BNPC_MBOSS_02','w1d7','bnpc4620541',4620541,160.113007,4.509544,231.862503,-0.000000,434,0,0,0,0,6,0,0,2598,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14528,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97577,'LVD_BNPC_MBOSS_02','w1d7','bnpc4620542',4620542,159.149994,4.509544,233.482895,-0.000000,434,0,0,0,0,6,0,0,2598,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14256,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97577,'LVD_BNPC_MBOSS_02','w1d7','bnpc4620543',4620543,158.188995,4.509544,234.966599,-0.000000,434,0,0,0,0,6,0,0,2598,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97577,'LVD_BNPC_MBOSS_02','w1d7','bnpc4620544',4620544,157.086304,4.509544,236.526398,-0.000000,434,0,0,0,0,6,0,0,2598,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13712,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97578,'LVD_gimmick_01','w1d7','bnpc4600470',4600470,77.747589,-10.582350,-91.129044,-0.000000,434,0,0,0,0,6,0,0,2633,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,5368,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97578,'LVD_gimmick_01','w1d7','bnpc4600471',4600471,35.650700,-9.480681,-105.288300,-0.000000,434,0,0,0,0,6,0,0,2633,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,5096,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97578,'LVD_gimmick_01','w1d7','bnpc4600472',4600472,2.619149,-11.303330,-188.718796,-0.000000,434,0,0,0,0,6,0,0,2633,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,4824,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97578,'LVD_gimmick_01','w1d7','bnpc4600473',4600473,-10.247380,-11.049300,-152.855896,-0.000000,434,0,0,0,0,6,0,0,2633,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,4552,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97578,'LVD_gimmick_01','w1d7','bnpc4620919',4620919,-20.418261,-11.049300,-136.294998,-0.000000,434,0,0,0,0,6,0,0,2633,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,4280,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97583,'QB_JobWar001_002','w1d7','bnpc4569510',4569510,-274.068115,17.196840,18.539671,1.471963,1697,0,0,0,8,6,0,0,2161,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2060,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97583,'QB_JobWar001_002','w1d7','bnpc4569511',4569511,-264.651398,17.211399,-0.089432,-0.000000,1698,0,0,0,8,6,0,0,656,0,80.000000,49,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1794,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97583,'QB_JobWar001_002','w1d7','bnpc4569512',4569512,-263.027313,17.327801,34.926949,0.099441,1698,0,0,0,8,6,0,0,656,0,80.000000,49,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1522,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97583,'QB_JobWar001_002','w1d7','bnpc4569513',4569513,-241.719498,17.225630,28.463320,-1.294286,1698,0,0,0,8,6,0,0,656,0,80.000000,49,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1250,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97583,'QB_JobWar001_002','w1d7','bnpc4569514',4569514,-255.035904,17.206181,17.031811,-0.000000,2043,0,0,0,8,6,0,0,0,0,0.000000,1,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97583,'QB_JobWar001_002','w1d7','bnpc4569515',4569515,-262.511292,17.225630,3.175887,-0.000000,1993,0,0,0,3,6,0,0,0,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,718,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97583,'QB_JobWar001_002','w1d7','bnpc4569516',4569516,-264.496887,17.265390,35.224949,-0.000000,1994,0,0,0,3,6,0,0,0,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,452,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99584,'LVD_BNPC_01','w1d8','bnpc4877907',4877907,-60.514729,-12.000010,-56.188679,-1.277845,1758,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24924,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99584,'LVD_BNPC_01','w1d8','bnpc4877909',4877909,-69.099564,-12.000010,-63.725731,-0.000000,1764,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24658,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99584,'LVD_BNPC_01','w1d8','bnpc4877910',4877910,-79.890457,-12.000010,-62.288101,-0.000000,1768,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24392,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99584,'LVD_BNPC_01','w1d8','bnpc4877911',4877911,-74.570992,-12.000000,-53.318352,-0.530458,1764,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,24114,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99584,'LVD_BNPC_01','w1d8','bnpc4877912',4877912,-34.256039,-17.999990,-4.091128,-1.229548,1765,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23854,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99584,'LVD_BNPC_01','w1d8','bnpc4877913',4877913,-42.131271,-17.999990,2.425258,-0.472759,1765,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23582,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99584,'LVD_BNPC_01','w1d8','bnpc4877916',4877916,-26.743610,-17.999990,2.409045,-0.259962,1766,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23316,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99584,'LVD_BNPC_01','w1d8','bnpc4877917',4877917,-147.128006,12.000000,-0.294096,0.430747,1762,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,23050,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99584,'LVD_BNPC_01','w1d8','bnpc4877918',4877918,-150.647797,12.000000,5.331558,-1.155368,1762,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22778,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99584,'LVD_BNPC_01','w1d8','bnpc4877919',4877919,-151.324203,12.000000,-4.778393,-0.000000,1762,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22506,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99584,'LVD_BNPC_01','w1d8','bnpc4893332',4893332,-45.304081,-51.010990,-1.236023,1.283960,1901,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,22240,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4877933',4877933,60.410889,-40.560020,-59.673981,0.000488,9,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21802,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4877934',4877934,68.750412,-41.953850,-47.966480,-0.000000,10,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21536,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4877935',4877935,67.946220,-40.285271,-57.330341,-0.000000,9,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21258,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4877936',4877936,54.947750,-49.942810,-7.980469,0.027516,1756,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20998,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4877938',4877938,86.045647,-34.592220,65.506958,-1.275908,1759,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20732,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4877939',4877939,58.422260,-38.278461,60.683121,-1.505481,10,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20448,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4877940',4877940,56.679401,-41.250259,50.223381,-0.000000,10,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20176,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4877941',4877941,64.814217,-38.743500,58.930710,-0.000000,9,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19898,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4877942',4877942,134.254593,-36.984200,51.619411,-0.000000,1766,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19608,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4877943',4877943,144.290405,-40.365360,44.900589,-1.388814,1766,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19336,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4877944',4877944,126.450798,-35.926041,56.177269,-0.000000,1766,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19064,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4877946',4877946,192.456696,-46.220531,-3.260695,-1.140594,1756,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18822,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4877947',4877947,190.883408,-45.430889,8.270744,-0.918871,1756,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18550,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4893271',4893271,66.612717,-49.294571,-7.984327,-0.000000,1757,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18290,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4893272',4893272,59.370850,-49.534069,-3.836365,-0.000000,1757,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18018,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4893275',4893275,50.890591,-50.301559,-8.228319,-0.000000,1757,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17746,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4893276',4893276,47.162380,-49.835381,-14.901880,-0.000000,1757,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17474,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4893296',4893296,188.389999,-45.691792,-14.493370,-0.000000,1757,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17202,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4893297',4893297,191.938095,-45.900959,-12.129670,-0.000000,1757,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16930,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4893298',4893298,195.079605,-46.132961,-9.224874,-0.000000,1757,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16658,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4893300',4893300,199.022995,-46.331539,-6.323536,-0.000000,1757,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16386,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4893301',4893301,202.311203,-46.236759,0.717613,-0.000000,1757,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16114,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4893302',4893302,199.951797,-45.628361,6.326140,-0.000000,1757,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15842,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4893303',4893303,196.647003,-44.959499,10.983840,-0.000000,1757,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15570,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4893304',4893304,192.687195,-44.291241,14.768750,-0.000000,1757,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15298,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99585,'LVD_BNPC_02','w1d8','bnpc4893336',4893336,240.037506,-3.999998,2.428795,1.351229,1998,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15032,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99586,'LVD_BNPC_03','w1d8','bnpc4878023',4878023,192.647400,-4.000017,-75.434982,-1.175440,1510,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14658,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99586,'LVD_BNPC_03','w1d8','bnpc4878024',4878024,189.812500,-4.000017,-76.352188,-0.000000,1511,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14392,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99586,'LVD_BNPC_03','w1d8','bnpc4878025',4878025,188.921906,-4.013123,-73.594299,1.212790,1512,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14126,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99586,'LVD_BNPC_03','w1d8','bnpc4878041',4878041,39.472130,-19.000059,3.469959,-1.551052,29,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13860,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99586,'LVD_BNPC_03','w1d8','bnpc4879963',4879963,-37.422562,-18.792400,-59.404079,0.921634,20,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13594,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99586,'LVD_BNPC_03','w1d8','bnpc4879964',4879964,-30.068300,-19.000000,-46.686050,1.027620,20,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13322,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99586,'LVD_BNPC_03','w1d8','bnpc4879965',4879965,10.203960,-18.906370,-37.652119,-0.735377,20,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13050,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99586,'LVD_BNPC_03','w1d8','bnpc4879966',4879966,75.755432,-17.999941,-32.984379,-0.000000,20,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12778,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99586,'LVD_BNPC_03','w1d8','bnpc4879967',4879967,77.096138,-17.999941,30.672050,-0.302072,20,0,0,0,1,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12506,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99586,'LVD_BNPC_03','w1d8','bnpc4893337',4893337,114.888802,-3.999329,-0.185507,-1.437943,1756,0,0,0,0,6,0,0,0,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12186,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926308',3926308,376.795502,84.142036,107.708504,-0.000144,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154812,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926338',3926338,375.147491,84.022469,106.274200,-0.000048,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154540,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926351',3926351,405.431488,88.082703,99.945763,-0.000048,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154268,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926354',3926354,409.251190,88.844963,97.093102,-0.000048,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153996,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926358',3926358,378.901215,84.631958,104.412598,-0.000048,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153724,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926365',3926365,407.170990,88.157288,101.532700,-0.000048,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153452,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926371',3926371,392.339203,86.636040,181.099197,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153180,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926372',3926372,396.068207,86.811653,179.238007,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152908,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926373',3926373,393.988495,86.897270,182.527893,-0.000048,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152636,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926381',3926381,411.703613,88.297813,162.003098,-0.000144,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152364,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926382',3926382,410.055603,88.039360,160.599197,-0.000048,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152092,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926386',3926386,394.559601,85.026733,153.758499,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151820,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926391',3926391,410.144012,88.683350,189.622894,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151548,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926417',3926417,417.375885,87.742783,131.569901,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151276,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926439',3926439,345.812805,76.219322,212.725998,-0.000144,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151004,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926440',3926440,344.548309,75.438789,207.299393,-0.000048,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150732,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926441',3926441,348.012512,76.039337,211.108795,-0.000048,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150460,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926464',3926464,356.043793,74.743179,151.343094,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150188,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926465',3926465,352.759186,74.743149,149.888596,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149916,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926467',3926467,367.410095,80.423607,133.246597,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149644,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926481',3926481,353.852814,80.577820,117.643204,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149372,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926484',3926484,351.360199,79.902428,120.108704,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149100,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926487',3926487,355.985199,80.082771,121.892502,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148828,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926490',3926490,373.090698,84.220062,99.076653,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148556,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926522',3926522,406.246887,86.759048,111.752296,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148284,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926769',3926769,413.944397,89.309250,158.034897,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148018,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926800',3926800,407.416199,87.761620,175.019302,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147746,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926801',3926801,406.609985,87.629570,176.598602,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147474,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926804',3926804,392.991699,87.757637,191.946198,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147202,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926805',3926805,387.339111,84.919083,134.093994,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146930,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926808',3926808,354.084900,81.902718,100.424797,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146658,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926810',3926810,422.356903,89.050278,114.571297,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146386,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926812',3926812,421.045013,88.772667,115.796600,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146114,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926815',3926815,403.283386,86.085800,113.897499,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145842,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926821',3926821,370.507996,82.400093,117.661697,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145570,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926825',3926825,367.792389,81.913681,118.807602,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145298,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926829',3926829,360.534485,74.935432,148.181396,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145026,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926837',3926837,378.317413,79.842934,162.415802,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144754,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926847',3926847,376.053986,78.965889,164.143707,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144482,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926848',3926848,369.552399,77.052002,192.962997,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144210,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926854',3926854,346.371490,75.720573,208.895203,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143938,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926858',3926858,363.167694,77.767464,219.355392,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143666,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926860',3926860,371.780212,77.339363,194.397400,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143394,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926868',3926868,369.826996,77.102577,196.960907,-0.000144,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143116,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926883',3926883,344.452301,72.995819,181.059906,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142850,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926890',3926890,328.520813,67.640129,172.850403,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142578,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926891',3926891,311.090302,65.890671,189.672195,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142306,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926896',3926896,309.819885,64.657661,145.602493,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142034,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926898',3926898,328.420197,67.645653,147.350800,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141762,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926899',3926899,317.188690,65.970573,128.639603,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141490,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926902',3926902,318.570007,65.981651,129.865601,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141218,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926912',3926912,275.386810,55.162628,134.854202,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140946,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926915',3926915,264.207703,55.231709,109.226501,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140674,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926917',3926917,260.486694,54.760460,176.782303,-0.000048,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140402,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926928',3926928,254.790497,55.815201,226.529297,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140130,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926929',3926929,242.801407,55.684689,237.647995,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139858,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926930',3926930,241.351593,55.604931,235.930405,-0.000000,49,0,0,0,1,6,0,0,49,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139586,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926564',3926564,315.245087,65.419243,134.686005,-0.000000,175,0,0,0,1,6,0,0,287,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139320,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926557',3926557,307.153687,65.648338,183.776306,-0.000000,175,0,0,0,1,6,0,0,287,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139048,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926552',3926552,319.223511,67.064529,203.825699,-0.000000,175,0,0,0,1,6,0,0,287,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138776,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926565',3926565,313.912415,65.218117,136.283096,-0.000000,175,0,0,0,1,6,0,0,287,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138504,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926644',3926644,295.185699,60.044201,169.695496,-0.000144,175,0,0,0,1,6,0,0,287,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138232,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926578',3926578,301.380890,64.171013,142.769608,-0.000144,175,0,0,0,1,6,0,0,287,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137960,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926572',3926572,310.648285,65.000732,131.124893,-0.000000,175,0,0,0,1,6,0,0,287,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137688,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926548',3926548,327.065491,67.092491,170.001404,-0.000000,175,0,0,0,1,6,0,0,287,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137416,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926539',3926539,326.017792,67.722847,188.876999,-0.000000,175,0,0,0,1,6,0,0,287,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137144,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926541',3926541,342.366608,72.409378,178.265305,-0.000048,175,0,0,0,1,6,0,0,287,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136872,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926543',3926543,340.851105,72.117889,182.389893,-0.000000,175,0,0,0,1,6,0,0,287,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136600,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926537',3926537,328.927612,68.512451,191.103607,-0.000000,175,0,0,0,1,6,0,0,287,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136328,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926547',3926547,329.747711,68.403687,149.117706,-0.000000,175,0,0,0,1,6,0,0,287,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136056,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926545',3926545,339.368805,71.684380,180.432800,-0.000048,175,0,0,0,1,6,0,0,287,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135784,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926526',3926526,325.732788,66.676826,171.598495,-0.000000,175,0,0,0,1,6,0,0,287,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135512,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926717',3926717,258.076202,55.964081,224.416702,-0.000240,175,0,0,0,1,6,0,0,287,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135240,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926716',3926716,257.191193,55.945511,220.022095,-0.000240,175,0,0,0,1,6,0,0,287,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134968,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926683',3926683,261.666290,55.104469,106.238503,-0.000048,175,0,0,0,1,6,0,0,287,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134696,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926718',3926718,255.085403,55.855000,223.043396,-0.000240,175,0,0,0,1,6,0,0,287,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134424,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926660',3926660,257.465393,54.488819,176.080399,-0.000336,175,0,0,0,1,6,0,0,287,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134152,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926750',3926750,258.564087,54.697350,178.949097,-0.000336,175,0,0,0,1,6,0,0,287,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133880,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926733',3926733,243.941101,55.670811,235.884598,-0.000240,175,0,0,0,1,6,0,0,287,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133608,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926665',3926665,279.163788,55.806110,134.904999,-0.000240,175,0,0,0,1,6,0,0,287,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133336,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926658',3926658,296.070709,60.135750,174.090103,-0.000144,175,0,0,0,1,6,0,0,287,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133064,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926653',3926653,293.079987,59.372799,172.716797,-0.000144,175,0,0,0,1,6,0,0,287,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132792,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926670',3926670,269.266907,56.155140,106.412498,-0.000048,175,0,0,0,1,6,0,0,287,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132520,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926677',3926677,260.700409,54.871441,108.842598,-0.000048,175,0,0,0,1,6,0,0,287,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132248,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926667',3926667,277.598999,55.429420,137.030197,-0.000048,175,0,0,0,1,6,0,0,287,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131976,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3926601',3926601,261.503296,53.867599,124.334000,0.699130,1445,0,0,0,1,6,0,0,244,0,0.000000,12,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131710,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84603,'LVD_BNPC_01','w1f1','bnpc3928946',3928946,358.728088,75.113953,188.477402,0.692843,1445,0,0,0,1,6,0,0,244,0,0.000000,12,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131438,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927149',3927149,27.696630,50.949940,203.695496,-0.000336,431,0,0,0,1,6,0,0,282,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130588,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927152',3927152,173.737106,54.352638,226.520096,-0.000432,431,0,0,0,1,6,0,0,282,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130316,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927153',3927153,183.533401,54.215019,225.513000,-0.000527,431,0,0,0,1,6,0,0,282,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130044,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927154',3927154,99.898514,49.255638,188.131607,-0.000240,431,0,0,0,1,6,0,0,282,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129772,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927156',3927156,128.718903,50.518780,195.651794,-0.000240,431,0,0,0,1,6,0,0,282,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129500,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927158',3927158,115.929298,48.682110,176.508408,-0.000048,431,0,0,0,1,6,0,0,282,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129228,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927162',3927162,108.506699,47.551449,175.644897,-0.000240,431,0,0,0,1,6,0,0,282,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128956,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927163',3927163,32.919010,50.990910,198.741592,-0.000336,431,0,0,0,1,6,0,0,282,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128684,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927164',3927164,31.915621,47.200191,163.456696,-0.000336,431,0,0,0,1,6,0,0,282,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128412,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927165',3927165,65.425613,51.619080,219.897705,-0.000432,431,0,0,0,1,6,0,0,282,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128140,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927166',3927166,70.552643,50.994259,212.756500,-0.000240,431,0,0,0,1,6,0,0,282,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127868,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927168',3927168,60.756340,51.112720,213.427902,-0.000432,431,0,0,0,1,6,0,0,282,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127596,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927169',3927169,1.910973,44.523701,152.350204,-0.000144,431,0,0,0,1,6,0,0,282,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127324,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927170',3927170,6.149339,47.714909,180.407394,-0.000432,431,0,0,0,1,6,0,0,282,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127052,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927171',3927171,175.777206,50.666649,65.453201,-0.000144,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126780,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927172',3927172,170.246994,50.547649,69.196983,-0.000144,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126508,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927174',3927174,240.923996,51.465309,71.654427,-0.000144,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126236,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927175',3927175,249.684906,51.468151,78.309212,-0.000144,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125964,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927176',3927176,255.227203,51.199020,67.745193,-0.000144,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125692,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927178',3927178,253.462494,51.509102,19.847630,-0.000144,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125420,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927179',3927179,201.886398,51.465870,22.835030,-0.000144,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125148,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927182',3927182,111.507797,59.949421,283.252502,-0.000000,42,0,0,0,1,6,0,0,284,0,0.000000,5,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124882,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927185',3927185,98.313828,59.311771,302.754211,-0.000048,42,0,0,0,1,6,0,0,284,0,0.000000,5,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124610,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927186',3927186,110.092697,60.098831,287.907593,-0.000000,42,0,0,0,1,6,0,0,284,0,0.000000,5,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124338,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927187',3927187,128.731201,60.436340,298.911407,-0.000000,42,0,0,0,1,6,0,0,284,0,0.000000,5,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124066,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927188',3927188,83.256920,55.503361,283.185394,-0.000000,42,0,0,0,1,6,0,0,284,0,0.000000,5,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123794,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927189',3927189,91.296028,55.644341,266.384308,-0.000000,42,0,0,0,1,6,0,0,284,0,0.000000,5,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123522,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927190',3927190,82.101891,55.164581,275.573212,-0.000000,42,0,0,0,1,6,0,0,284,0,0.000000,5,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123250,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927191',3927191,115.385597,59.492580,287.027496,-0.000000,42,0,0,0,1,6,0,0,284,0,0.000000,5,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122978,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927192',3927192,178.888199,53.984070,219.121597,-0.000432,431,0,0,0,1,6,0,0,282,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122700,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927194',3927194,131.716507,57.952309,278.151306,-0.000048,42,0,0,0,1,6,0,0,284,0,0.000000,5,0,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122434,3,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927197',3927197,-22.751249,56.290482,304.371613,-0.000048,187,0,0,0,1,6,0,0,276,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122168,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927200',3927200,-18.722870,56.046341,317.952209,-0.000048,187,0,0,0,1,6,0,0,276,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121896,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927201',3927201,-14.837500,56.125702,314.598206,-0.000000,187,0,0,0,1,6,0,0,276,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121624,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927203',3927203,8.417153,55.567989,320.395599,-0.000000,187,0,0,0,1,6,0,0,276,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121352,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927204',3927204,20.042080,57.618370,350.774109,-0.000048,187,0,0,0,1,6,0,0,276,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121080,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927205',3927205,26.145691,57.755730,356.084290,-0.000048,187,0,0,0,1,6,0,0,276,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120808,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927206',3927206,22.476490,58.182598,359.426208,-0.000144,187,0,0,0,1,6,0,0,276,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120536,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927209',3927209,49.869179,57.280979,352.553101,-0.000048,187,0,0,0,1,6,0,0,276,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120264,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927211',3927211,21.927170,54.917171,311.085602,-0.000144,187,0,0,0,1,6,0,0,276,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119992,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927213',3927213,25.229980,54.764481,306.841705,-0.000048,187,0,0,0,1,6,0,0,276,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119720,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927218',3927218,-21.114670,53.540970,264.998993,-0.000240,187,0,0,0,1,6,0,0,276,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119448,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927220',3927220,-5.313622,54.065811,256.266205,-0.000240,187,0,0,0,1,6,0,0,276,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119176,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927221',3927221,-23.334700,53.561840,260.473511,-0.000336,187,0,0,0,1,6,0,0,276,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118904,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927222',3927222,5.204782,54.084610,236.687195,-0.000527,187,0,0,0,1,6,0,0,276,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118632,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927224',3927224,8.561768,54.060150,238.457199,-0.000527,187,0,0,0,1,6,0,0,276,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118360,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927226',3927226,-8.821225,50.881729,201.391602,-0.000048,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118094,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927229',3927229,-6.608897,50.901840,203.446304,-0.000048,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117822,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927230',3927230,-18.636290,51.201260,221.737701,-0.000048,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117550,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927231',3927231,-35.276581,49.465691,214.633698,-0.000048,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117278,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927236',3927236,-11.411140,50.721111,205.313904,-0.000048,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117006,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927239',3927239,-38.801102,49.907009,218.520004,-0.000048,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116734,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927240',3927240,6.279222,50.975891,212.108902,-0.000048,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116462,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927241',3927241,-35.700180,46.975208,193.506195,-0.000048,12,0,0,0,1,6,0,0,299,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116190,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927343',3927343,-45.193470,62.185181,363.152100,-0.000048,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115912,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927345',3927345,-79.881020,55.100281,361.379395,-0.000144,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115640,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927346',3927346,-83.391731,54.977058,365.606995,-0.000048,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115368,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927347',3927347,-54.476139,65.540337,392.423004,-0.000048,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115096,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927349',3927349,-51.241718,65.802643,390.513214,-0.000048,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114824,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927352',3927352,-1.297064,68.802879,377.553894,-0.000144,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114552,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927353',3927353,2.885915,68.536720,372.786896,-0.000048,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114280,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927354',3927354,-109.941299,48.966148,357.015289,-0.000240,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114008,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927356',3927356,-125.981003,51.453751,311.388885,-0.000144,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113736,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927357',3927357,-130.879105,51.717690,309.097412,-0.000144,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113464,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927358',3927358,-131.425293,51.394489,312.798096,-0.000144,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113192,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927359',3927359,-118.158401,53.802921,271.080597,-0.000144,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112920,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927360',3927360,-115.932800,53.461861,267.407501,-0.000144,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112648,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927361',3927361,-95.500458,52.359612,245.109894,-0.000144,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112376,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927364',3927364,-138.997604,45.849251,391.546814,-0.000336,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112104,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927366',3927366,-131.347107,47.246719,398.411713,-0.000240,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111832,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927367',3927367,-141.612305,45.939159,395.010193,-0.000336,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111560,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927368',3927368,-175.499496,39.137119,393.656799,-0.000240,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111288,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927370',3927370,-156.301407,40.866211,345.757813,-0.000240,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111016,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927371',3927371,-162.614700,39.951931,342.568695,-0.000240,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110744,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927373',3927373,-157.533707,40.302212,350.198212,-0.000240,187,0,0,0,1,6,0,0,276,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110472,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927375',3927375,28.610620,55.466499,328.511414,-0.000336,131,0,0,0,1,6,0,0,113,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110212,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927379',3927379,37.804600,58.140781,363.465912,-0.000240,131,0,0,0,1,6,0,0,113,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109940,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927382',3927382,32.272758,55.471779,329.481689,-0.000240,131,0,0,0,1,6,0,0,113,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109668,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927384',3927384,6.784028,54.128811,253.378204,-0.000336,131,0,0,0,1,6,0,0,113,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109396,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927387',3927387,-20.690559,53.685650,251.224396,-0.000240,131,0,0,0,1,6,0,0,113,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109124,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927388',3927388,45.252361,48.095360,180.655197,-0.000240,131,0,0,0,1,6,0,0,113,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108852,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927394',3927394,69.706589,56.137440,318.697693,-0.000240,131,0,0,0,1,6,0,0,113,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108580,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927398',3927398,104.150002,56.064339,263.215607,-0.000240,131,0,0,0,1,6,0,0,113,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108308,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927403',3927403,156.664307,54.703541,236.652100,-0.000336,131,0,0,0,1,6,0,0,113,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108036,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927404',3927404,44.327412,52.658840,244.800400,-0.000336,131,0,0,0,1,6,0,0,113,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107764,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927408',3927408,-26.490999,44.862301,177.075394,-0.000336,131,0,0,0,1,6,0,0,113,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107492,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927413',3927413,152.993607,50.116879,72.775887,-0.000432,131,0,0,0,1,6,0,0,113,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107220,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927414',3927414,220.945801,50.242329,4.633916,-0.000432,131,0,0,0,1,6,0,0,113,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106948,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927417',3927417,219.309296,49.916939,6.135899,-0.000432,131,0,0,0,1,6,0,0,113,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106676,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927424',3927424,-14.541890,67.307503,362.722107,-0.000432,131,0,0,0,1,6,0,0,113,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106404,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927425',3927425,-65.254753,64.638290,395.066498,-0.000336,131,0,0,0,1,6,0,0,113,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106132,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927431',3927431,-117.631798,47.959061,380.300507,-0.000432,131,0,0,0,1,6,0,0,113,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105860,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927432',3927432,-172.127304,40.469398,398.069092,-0.000432,131,0,0,0,1,6,0,0,113,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105588,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927433',3927433,-189.330597,36.909599,341.340210,-0.000432,131,0,0,0,1,6,0,0,113,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105316,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927435',3927435,-140.326401,45.201859,337.794006,-0.000432,131,0,0,0,1,6,0,0,113,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105044,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927436',3927436,-110.657700,52.097160,290.219696,-0.000432,131,0,0,0,1,6,0,0,113,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104772,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927437',3927437,-145.151993,56.686409,288.573792,-0.000432,131,0,0,0,1,6,0,0,113,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104500,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927730',3927730,120.638901,17.207850,96.590080,-0.000048,313,0,0,0,1,6,0,0,265,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104234,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927734',3927734,123.778503,17.206751,88.372543,-0.000048,313,0,0,0,1,6,0,0,265,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103962,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927735',3927735,128.407593,16.559820,98.111130,-0.000048,313,0,0,0,1,6,0,0,265,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103690,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927736',3927736,78.465424,21.109140,92.377060,-0.000144,313,0,0,0,1,6,0,0,265,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103418,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927737',3927737,100.497498,16.583630,126.907097,-0.000144,313,0,0,0,1,6,0,0,265,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103146,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927739',3927739,-25.650459,22.079760,105.851799,-0.000048,313,0,0,0,1,6,0,0,265,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102874,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927742',3927742,-20.340321,21.438881,108.873100,-0.000048,313,0,0,0,1,6,0,0,265,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102602,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927745',3927745,78.228539,22.345881,63.241020,-0.000048,313,0,0,0,1,6,0,0,265,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102330,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927746',3927746,86.209900,22.246161,56.213009,-0.000048,313,0,0,0,1,6,0,0,265,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102058,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927748',3927748,127.763702,25.986071,49.240810,-0.000144,313,0,0,0,1,6,0,0,265,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101786,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927750',3927750,70.167282,16.789490,139.201706,-0.000623,131,0,0,0,1,6,0,0,113,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101508,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927760',3927760,95.818649,15.165110,168.324600,-0.000527,131,0,0,0,1,6,0,0,113,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101236,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927771',3927771,96.919411,15.051520,166.152405,-0.000527,131,0,0,0,1,6,0,0,113,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100964,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927776',3927776,126.695602,15.793040,128.007904,-0.000623,131,0,0,0,1,6,0,0,113,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100692,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927784',3927784,58.284618,22.640039,59.899170,-0.000527,131,0,0,0,1,6,0,0,113,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100420,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927789',3927789,14.317140,20.384331,98.519272,-0.000527,131,0,0,0,1,6,0,0,113,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100148,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927870',3927870,123.073700,18.194111,18.950350,-0.000144,313,0,0,0,1,6,0,0,265,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99882,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927874',3927874,164.476593,18.193741,-3.313263,-0.000144,313,0,0,0,1,6,0,0,265,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99610,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927875',3927875,161.316605,18.193520,6.161218,-0.000144,313,0,0,0,1,6,0,0,265,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99338,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927880',3927880,179.117905,18.193710,3.609651,-0.000144,313,0,0,0,1,6,0,0,265,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99066,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927883',3927883,103.653801,19.374020,93.697792,-0.000623,131,0,0,0,1,6,0,0,113,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98788,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927333',3927333,-125.582298,49.131699,207.139694,-1.025090,769,0,0,0,1,6,0,0,283,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98528,6,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927256',3927256,-130.444595,50.881111,227.569397,-1.025090,769,0,0,0,1,6,0,0,283,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98256,6,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927339',3927339,-121.896698,49.490898,212.546097,-1.025090,769,0,0,0,1,6,0,0,283,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97984,6,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927334',3927334,-153.431595,49.478130,221.025101,-1.025090,769,0,0,0,1,6,0,0,283,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97712,6,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927250',3927250,-140.879105,50.598660,225.798996,0.947321,769,0,0,0,0,6,0,0,283,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97440,6,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927246',3927246,-141.250000,50.637089,227.672501,1.228912,769,0,0,0,0,6,0,0,283,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97168,6,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927255',3927255,-132.305801,49.998920,219.510193,-1.025090,769,0,0,0,0,6,0,0,283,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96896,6,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927252',3927252,-133.580704,50.071732,219.991806,1.424757,769,0,0,0,0,6,0,0,283,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96624,6,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3928945',3928945,129.798294,53.983780,241.581604,-0.091081,1445,0,0,0,1,6,0,0,244,0,0.000000,17,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96310,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927150',3927150,15.640450,53.696449,252.796204,0.692843,1445,0,0,0,1,6,0,0,244,0,0.000000,17,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96038,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84608,'LVD_BNPC_02','w1f1','bnpc3927151',3927151,-61.356571,57.144989,351.064209,0.692843,1445,0,0,0,1,6,0,0,244,0,0.000000,17,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95766,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3927890',3927890,122.968102,56.939259,-36.773190,-0.000000,172,0,0,0,1,6,0,0,305,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95074,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3927910',3927910,123.268097,55.511478,-56.716091,-0.000000,172,0,0,0,1,6,0,0,305,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94802,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3927911',3927911,129.320206,55.924271,-51.987530,-0.000048,172,0,0,0,1,6,0,0,305,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94530,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3927912',3927912,154.660400,55.357391,-41.330311,-0.000048,172,0,0,0,1,6,0,0,305,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94258,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3927919',3927919,189.631897,50.414280,-25.954390,-0.000048,172,0,0,0,1,6,0,0,305,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93986,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3927923',3927923,183.639099,52.017891,-84.284233,-0.000048,172,0,0,0,1,6,0,0,305,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93714,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3927925',3927925,153.890793,52.284729,-77.195427,-0.000240,172,0,0,0,1,6,0,0,305,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93442,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3927934',3927934,191.650803,52.446129,-77.491463,-0.000048,172,0,0,0,1,6,0,0,305,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93170,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3927952',3927952,199.298004,52.109509,-110.399101,-0.000240,172,0,0,0,1,6,0,0,305,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92898,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928005',3928005,249.801102,63.548111,-129.309692,-0.000240,172,0,0,0,1,6,0,0,305,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92626,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928007',3928007,233.766098,63.274509,-115.512901,-0.000336,172,0,0,0,1,6,0,0,305,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92354,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928013',3928013,75.352249,58.717110,35.270901,-0.000000,138,0,0,0,1,6,0,0,302,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92088,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928021',3928021,86.804192,58.856110,31.969290,-0.000000,138,0,0,0,1,6,0,0,302,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91816,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928022',3928022,84.852730,58.771778,28.421551,-0.000000,138,0,0,0,1,6,0,0,302,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91544,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928152',3928152,58.122269,59.502029,1.331460,-0.000000,138,0,0,0,1,6,0,0,302,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91272,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928154',3928154,99.899971,53.697948,21.844801,-0.000000,138,0,0,0,1,6,0,0,302,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91000,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928157',3928157,28.599730,59.945721,27.529560,-0.000000,138,0,0,0,1,6,0,0,302,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90728,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928160',3928160,25.558041,59.878441,30.178419,-0.000000,138,0,0,0,1,6,0,0,302,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90456,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928161',3928161,14.973360,62.347179,18.278700,-0.000000,138,0,0,0,1,6,0,0,302,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90184,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928165',3928165,6.374675,59.338470,42.109829,-0.000000,138,0,0,0,1,6,0,0,302,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89912,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928314',3928314,319.607910,63.456242,-187.854004,-0.000336,17,0,0,0,1,6,0,0,316,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89646,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928315',3928315,318.191406,63.387531,-186.084000,-0.000336,17,0,0,0,1,6,0,0,316,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89374,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928317',3928317,311.617798,62.671181,-255.173492,-0.000336,17,0,0,0,1,6,0,0,316,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89102,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928319',3928319,306.148010,62.678329,-255.381195,-0.000336,17,0,0,0,1,6,0,0,316,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88830,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928320',3928320,310.641205,62.731220,-257.553894,-0.000336,17,0,0,0,1,6,0,0,316,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88558,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928321',3928321,288.386597,62.264820,-212.191498,-0.000336,17,0,0,0,1,6,0,0,316,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88286,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928323',3928323,281.432892,62.276360,-175.724792,-0.000336,17,0,0,0,1,6,0,0,316,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88014,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928324',3928324,294.345215,62.536160,-229.177994,-0.000144,187,0,0,0,1,6,0,0,277,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87700,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928326',3928326,324.076385,63.986629,-248.880295,-0.000144,187,0,0,0,1,6,0,0,277,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87428,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928327',3928327,294.358307,62.940811,-234.107498,-0.000144,187,0,0,0,1,6,0,0,277,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87156,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928328',3928328,298.334686,62.391232,-190.659805,-0.000144,187,0,0,0,1,6,0,0,277,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86884,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928329',3928329,288.392303,62.534901,-229.239197,-0.000144,187,0,0,0,1,6,0,0,277,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86612,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928331',3928331,298.725800,62.141201,-195.515305,-0.000144,187,0,0,0,1,6,0,0,277,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86340,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928332',3928332,265.782898,63.307018,-219.574600,-0.000144,187,0,0,0,1,6,0,0,277,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86068,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928335',3928335,316.656586,63.109501,-200.695007,-0.000144,187,0,0,0,1,6,0,0,277,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85796,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928360',3928360,-105.641998,14.974850,-248.369598,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85572,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928364',3928364,-110.496902,14.974860,-245.931396,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85300,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928366',3928366,-96.993607,14.974790,-263.062500,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85028,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928370',3928370,-134.325607,14.974520,-268.556091,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84756,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928372',3928372,-137.674500,14.974520,-281.872009,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84484,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928373',3928373,-140.064697,14.974790,-279.290314,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84212,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928374',3928374,-183.464493,14.974900,-240.699707,-0.000048,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83940,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928376',3928376,-180.748398,14.974890,-244.758606,-0.000048,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83668,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928378',3928378,-186.089096,14.974890,-243.232697,-0.000048,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83396,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928379',3928379,-147.631104,14.969050,-274.158905,-0.000048,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83124,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928383',3928383,-224.475494,14.969050,-348.714386,-0.000048,389,0,0,0,1,6,0,0,635,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82858,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928386',3928386,-209.268402,14.974940,-344.686401,-0.000000,389,0,0,0,1,6,0,0,635,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82586,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928387',3928387,-206.509598,14.974940,-340.343994,-0.000000,389,0,0,0,1,6,0,0,635,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82314,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928388',3928388,-218.735199,14.974420,-379.859985,-0.000000,389,0,0,0,1,6,0,0,635,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82042,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928389',3928389,-223.490601,14.974420,-382.159912,-0.000000,389,0,0,0,1,6,0,0,635,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81770,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928391',3928391,-258.752411,14.974870,-325.427490,-0.000000,389,0,0,0,1,6,0,0,635,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81498,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928392',3928392,-264.535492,14.974880,-327.510101,-0.000000,389,0,0,0,1,6,0,0,635,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81226,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928394',3928394,-281.808807,14.974920,-208.237701,-0.000048,382,0,0,0,1,6,0,0,636,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80960,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928519',3928519,-253.182007,14.974930,-267.783295,-0.000048,382,0,0,0,1,6,0,0,636,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80688,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928520',3928520,-255.348694,14.974930,-265.372406,-0.000048,382,0,0,0,1,6,0,0,636,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80416,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928523',3928523,-283.110809,14.974940,-291.602112,-0.000144,382,0,0,0,1,6,0,0,636,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80144,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928524',3928524,-282.531006,14.974940,-294.806488,-0.000144,382,0,0,0,1,6,0,0,636,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79872,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928525',3928525,-286.528809,14.974940,-293.707794,-0.000144,382,0,0,0,1,6,0,0,636,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79600,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928527',3928527,-298.754211,14.974940,-221.860397,-0.000048,382,0,0,0,1,6,0,0,636,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79328,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928528',3928528,-295.336212,14.974940,-225.644699,-0.000048,382,0,0,0,1,6,0,0,636,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79056,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928531',3928531,-217.611801,14.974770,-304.205109,-0.000240,389,0,0,0,1,6,0,0,635,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78778,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928534',3928534,-250.701904,14.974930,-243.696503,-0.000048,382,0,0,0,1,6,0,0,636,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78512,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928783',3928783,-182.680801,14.974910,-276.838287,-0.000144,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78228,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928784',3928784,-170.103302,14.974860,-253.832504,-0.000144,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77956,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928788',3928788,-212.801102,14.974940,-333.462799,-0.000336,389,0,0,0,1,6,0,0,635,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77690,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928795',3928795,-266.258698,15.546460,-234.426102,-0.000000,12,0,0,0,1,6,0,0,13,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77370,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928796',3928796,-219.789307,14.974930,-267.238892,-0.000048,12,0,0,0,1,6,0,0,13,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77098,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928797',3928797,-285.191498,14.974940,-268.444397,-0.000048,12,0,0,0,1,6,0,0,13,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76826,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928798',3928798,-203.762299,14.974910,-250.822205,-0.000000,12,0,0,0,1,6,0,0,13,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76554,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928799',3928799,-278.737915,14.974940,-262.906189,-0.000048,12,0,0,0,1,6,0,0,13,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76282,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928800',3928800,-277.257599,14.974940,-267.571411,-0.000048,12,0,0,0,1,6,0,0,13,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76010,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928801',3928801,-256.085907,14.974930,-289.433411,-0.000048,12,0,0,0,1,6,0,0,13,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75738,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928802',3928802,-224.033401,14.974930,-264.018097,-0.000048,12,0,0,0,1,6,0,0,13,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75466,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928803',3928803,146.532303,54.459400,-51.499241,-0.000048,136,0,0,0,1,6,0,0,298,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75254,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928804',3928804,102.067497,53.818520,-56.137989,-0.000144,136,0,0,0,1,6,0,0,298,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74982,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928805',3928805,78.182693,57.105598,-30.773781,-0.000000,136,0,0,0,1,6,0,0,298,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74710,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928806',3928806,76.842499,57.456390,-29.140619,-0.000000,136,0,0,0,1,6,0,0,298,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74438,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928807',3928807,86.645050,57.952759,6.113357,-0.000000,136,0,0,0,1,6,0,0,298,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74166,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928808',3928808,22.705441,61.685020,19.656160,-0.000000,136,0,0,0,1,6,0,0,298,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73894,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928809',3928809,10.100620,59.973881,35.668980,-0.000000,136,0,0,0,1,6,0,0,298,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73622,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928810',3928810,166.031296,50.849098,-100.283997,-0.000048,136,0,0,0,1,6,0,0,298,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73350,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928811',3928811,186.388901,51.621220,-160.082397,-0.000240,136,0,0,0,1,6,0,0,298,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73078,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928812',3928812,238.300095,63.248600,-122.148499,-0.000144,136,0,0,0,1,6,0,0,298,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72806,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928813',3928813,184.099701,52.311790,-57.823231,-0.000048,136,0,0,0,1,6,0,0,298,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72534,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928814',3928814,179.929794,52.482571,-55.958038,-0.000048,136,0,0,0,1,6,0,0,298,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72262,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928815',3928815,142.056702,53.278130,-130.908096,-0.000144,136,0,0,0,1,6,0,0,298,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71990,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928816',3928816,268.193207,63.254810,-222.082703,-0.000240,136,0,0,0,1,6,0,0,298,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71718,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928822',3928822,302.263489,62.065739,-193.318497,-0.000240,136,0,0,0,1,6,0,0,298,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71446,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928825',3928825,-123.838997,14.974520,-263.543488,-0.000336,136,0,0,0,1,6,0,0,298,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71174,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928831',3928831,-176.301498,14.974870,-250.083099,-0.000336,136,0,0,0,1,6,0,0,298,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70902,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928832',3928832,-144.984497,14.974770,-287.996185,-0.000336,136,0,0,0,1,6,0,0,298,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70630,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928833',3928833,-185.416595,14.974910,-280.625488,-0.000336,136,0,0,0,1,6,0,0,298,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70358,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928834',3928834,-244.850296,14.974930,-244.881104,-0.000336,136,0,0,0,1,6,0,0,298,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70086,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928835',3928835,-244.690704,15.599670,-289.695801,-0.000336,136,0,0,0,1,6,0,0,298,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69814,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928836',3928836,-287.953003,14.974940,-254.367096,-0.000432,136,0,0,0,1,6,0,0,298,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69542,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928837',3928837,-288.296387,14.974940,-221.930298,-0.000336,136,0,0,0,1,6,0,0,298,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69270,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928838',3928838,-242.570297,14.974810,-341.476898,-0.000432,136,0,0,0,1,6,0,0,298,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68998,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928839',3928839,-294.252502,14.974850,-321.210785,-0.000336,136,0,0,0,1,6,0,0,298,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68726,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928840',3928840,-213.266998,14.974420,-364.787292,-0.000336,136,0,0,0,1,6,0,0,298,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68454,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84614,'LVD_BNPC_03','w1f1','bnpc3928841',3928841,-196.042206,14.974940,-319.922791,-0.000336,136,0,0,0,1,6,0,0,298,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68182,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928894',3928894,-427.363312,23.320280,-482.444489,-0.000048,342,0,0,0,1,6,0,0,309,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67692,5,0,0,0,29,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928895',3928895,-414.236694,24.246580,-480.094604,-0.000048,342,0,0,0,1,6,0,0,309,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67420,5,0,0,0,29,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928896',3928896,-399.069214,24.662140,-486.445496,-0.000048,342,0,0,0,1,6,0,0,309,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67148,5,0,0,0,29,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928897',3928897,-426.661407,23.254721,-480.735504,-0.000048,342,0,0,0,1,6,0,0,309,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66876,5,0,0,0,29,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928898',3928898,-385.109589,24.366320,-508.717590,-0.000048,342,0,0,0,1,6,0,0,309,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66604,5,0,0,0,29,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928899',3928899,-383.622498,24.283310,-510.090912,-0.000048,342,0,0,0,1,6,0,0,309,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66332,5,0,0,0,29,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928900',3928900,-397.867401,24.621420,-483.869110,-0.000048,342,0,0,0,1,6,0,0,309,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66060,5,0,0,0,29,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928902',3928902,-395.742706,24.800859,-486.720215,-0.000048,342,0,0,0,1,6,0,0,309,0,0.000000,20,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65788,5,0,0,0,29,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928905',3928905,-372.182800,14.915100,-682.187012,-0.000240,42,0,0,0,1,6,0,0,227,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65438,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928915',3928915,-343.109711,14.951240,-708.646729,-0.000144,42,0,0,0,1,6,0,0,227,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65166,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928916',3928916,-336.488098,15.011050,-702.973022,-0.000144,42,0,0,0,1,6,0,0,227,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64894,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928917',3928917,-342.475098,14.886180,-699.100403,-0.000144,42,0,0,0,1,6,0,0,227,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64622,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928918',3928918,-346.725800,15.000050,-648.932983,-0.000240,42,0,0,0,1,6,0,0,227,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64350,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928919',3928919,-360.611603,15.143860,-728.342285,-0.000240,42,0,0,0,1,6,0,0,227,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64078,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928920',3928920,-369.109985,17.086229,-625.858582,-0.000240,42,0,0,0,1,6,0,0,227,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63806,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928921',3928921,-368.551208,14.932670,-677.304016,-0.000240,42,0,0,0,1,6,0,0,227,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63534,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928922',3928922,-289.976898,15.036210,-766.856018,0.835169,26,0,0,0,1,6,0,0,217,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63346,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928923',3928923,-329.499603,13.228890,-734.741028,0.392998,26,0,0,0,1,6,0,0,217,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63074,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928924',3928924,-308.522186,13.199010,-741.054382,-0.588691,26,0,0,0,1,6,0,0,217,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62802,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928926',3928926,-330.769806,14.999570,-781.734985,0.335045,26,0,0,0,1,6,0,0,217,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62530,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928927',3928927,-282.568512,14.996440,-714.049622,-0.916254,26,0,0,0,1,6,0,0,217,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62258,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928928',3928928,-288.031189,15.033810,-704.314270,-0.916254,26,0,0,0,1,6,0,0,217,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61986,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928929',3928929,-340.138885,14.999570,-765.682495,-0.444813,26,0,0,0,1,6,0,0,217,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61714,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928930',3928930,-375.273102,24.057680,-530.949707,-0.000048,187,0,0,0,1,6,0,0,278,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61364,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928931',3928931,-376.594513,24.104771,-528.967224,-0.000048,187,0,0,0,1,6,0,0,278,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61092,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928932',3928932,-385.780304,23.495701,-548.185181,-0.000048,187,0,0,0,1,6,0,0,278,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60820,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928933',3928933,-388.991913,23.634899,-551.127014,-0.000048,187,0,0,0,1,6,0,0,278,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60548,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928934',3928934,-380.102814,23.848009,-554.942871,-0.000048,187,0,0,0,1,6,0,0,278,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60276,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928935',3928935,-383.823486,24.014250,-580.209229,-0.000144,187,0,0,0,1,6,0,0,278,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60004,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928936',3928936,-384.645203,22.916321,-600.375427,-0.000335,187,0,0,0,1,6,0,0,278,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59732,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928937',3928937,-382.814087,22.623171,-601.962280,-0.000335,187,0,0,0,1,6,0,0,278,0,0.000000,21,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59460,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928938',3928938,-160.448700,15.121640,-740.138916,-1.310231,110,0,0,0,1,6,0,0,314,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59272,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928939',3928939,-163.418106,15.126450,-733.144714,-1.324843,109,0,0,0,1,6,0,0,310,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59006,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928940',3928940,-154.855392,15.126450,-735.291016,-1.377962,111,0,0,0,1,6,0,0,312,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58740,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928941',3928941,-184.969193,15.126200,-748.799011,-1.377962,111,0,0,0,1,6,0,0,312,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58468,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928942',3928942,-245.304596,14.639280,-736.399902,-1.324843,109,0,0,0,1,6,0,0,310,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58190,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928943',3928943,-208.907501,15.126340,-737.954224,-1.310240,110,0,0,0,1,6,0,0,314,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57912,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc3928944',3928944,-177.706696,15.126430,-724.218872,-1.310231,110,0,0,0,1,6,0,0,314,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57640,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84620,'LVD_BNPC_04','w1f1','bnpc4190759',4190759,-345.540588,14.999600,-775.448181,-1.325331,26,0,0,0,1,6,0,0,217,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57362,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92547,'LVD_BNPC_05_boss','w1f1','bnpc4267191',4267191,-707.860779,67.740463,-822.422119,1.223121,1439,0,0,0,0,6,0,0,2160,0,0.000000,49,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,57014,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92547,'LVD_BNPC_05_boss','w1f1','bnpc4267197',4267197,-665.501282,62.452560,-807.101318,-1.460680,1872,0,0,0,0,6,0,0,2159,0,0.000000,49,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,56748,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92547,'LVD_BNPC_05_boss','w1f1','bnpc4267200',4267200,-665.515930,62.330540,-804.663086,-1.525737,1872,0,0,0,0,6,0,0,2159,0,0.000000,49,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,56476,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92547,'LVD_BNPC_05_boss','w1f1','bnpc4267201',4267201,-678.426575,63.899670,-816.868713,-0.685261,1872,0,0,0,0,6,0,0,2159,0,0.000000,49,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,56204,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92547,'LVD_BNPC_05_boss','w1f1','bnpc4267202',4267202,-697.547180,65.602493,-808.171204,0.995446,1872,0,0,0,0,6,0,0,2159,0,0.000000,49,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,55932,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92547,'LVD_BNPC_05_boss','w1f1','bnpc4267203',4267203,-691.117920,65.001953,-800.783875,0.995446,1872,0,0,0,0,6,0,0,2159,0,0.000000,49,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,55660,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92547,'LVD_BNPC_05_boss','w1f1','bnpc4267204',4267204,-707.367920,67.125900,-815.833374,0.573337,1872,0,0,0,0,6,0,0,2159,0,0.000000,49,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,55388,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92547,'LVD_BNPC_05_boss','w1f1','bnpc4267205',4267205,-691.542114,65.307541,-815.101807,-0.000000,434,0,0,0,0,6,0,0,2160,0,0.000000,49,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,55122,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308066',4308066,-421.159485,44.462021,-712.226013,0.165632,62,0,0,0,0,6,0,0,1817,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54672,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308069',4308069,-514.378784,51.624359,-759.622498,0.165632,62,0,0,0,0,6,0,0,1817,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54400,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308070',4308070,-599.843384,57.051182,-784.518921,1.557384,62,0,0,0,0,6,0,0,1817,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54128,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308071',4308071,-656.681274,62.116219,-804.503601,1.134933,62,0,0,0,0,6,0,0,1817,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53856,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308072',4308072,-492.048187,50.155430,-704.991577,-0.000048,64,0,0,0,1,6,0,0,1819,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53590,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308073',4308073,-517.815491,50.450741,-713.017395,-0.038547,63,0,0,0,0,6,0,0,1818,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53324,1,0,0,0,0,30066,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308074',4308074,-456.002014,51.014610,-752.579285,1.022830,55,0,0,0,0,6,0,0,1815,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53058,1,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308075',4308075,-495.700897,50.855309,-742.115417,-0.000048,61,0,0,0,1,6,0,0,1816,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52792,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308082',4308082,-441.168610,50.899448,-705.323914,-0.000048,55,0,0,0,1,6,0,0,1815,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52514,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308083',4308083,-518.314270,50.452862,-714.412109,0.509674,62,0,0,0,0,6,0,0,1817,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52224,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308084',4308084,-479.211487,51.372540,-761.453186,-0.000048,63,0,0,0,1,6,0,0,1818,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51964,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308085',4308085,-402.046509,49.868610,-739.848206,-0.000048,61,0,0,0,1,6,0,0,1816,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51704,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308086',4308086,-454.328613,50.848831,-752.713074,-1.120495,64,0,0,0,0,6,0,0,1819,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51414,1,0,0,0,0,30065,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308091',4308091,-536.909607,51.647678,-772.339600,-0.000048,55,0,0,0,1,6,0,0,1815,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51154,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308092',4308092,-566.559387,53.197552,-772.416382,-0.000048,64,0,0,0,1,6,0,0,1819,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50870,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308093',4308093,-534.190186,55.472980,-738.915771,-0.000048,62,0,0,0,1,6,0,0,1817,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50592,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308094',4308094,-570.383728,53.322189,-740.588013,-0.000048,61,0,0,0,1,6,0,0,1816,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50344,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308095',4308095,-576.705811,54.865730,-790.850830,-0.000048,63,0,0,0,1,6,0,0,1818,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50060,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308096',4308096,-598.254211,63.233582,-755.445496,-0.000048,63,0,0,0,1,6,0,0,1818,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49788,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308097',4308097,-601.317322,62.751640,-757.922485,-0.000048,64,0,0,0,1,6,0,0,1819,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49510,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308098',4308098,-621.487915,61.777660,-742.445374,-0.000048,61,0,0,0,1,6,0,0,1816,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49256,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308099',4308099,-621.786072,58.863022,-795.647095,-0.000048,55,0,0,0,1,6,0,0,1815,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48978,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308100',4308100,-646.074890,61.267559,-800.385315,-0.000048,62,0,0,0,1,6,0,0,1817,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48688,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308102',4308102,-555.229980,53.299679,-753.444702,1.122796,201,0,0,0,1,6,0,0,1820,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48446,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308104',4308104,-410.261810,51.000069,-758.953003,0.336666,201,0,0,0,1,6,0,0,1820,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48174,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308105',4308105,-468.451904,50.148300,-723.755676,1.238593,201,0,0,0,1,6,0,0,1820,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47902,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308109',4308109,-626.947510,60.044189,-813.534790,0.778267,201,0,0,0,1,6,0,0,1820,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47630,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308112',4308112,-635.044800,58.894249,-777.102417,1.379639,201,0,0,0,1,6,0,0,1820,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47358,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93472,'LVD_BNPC_06','w1f1','bnpc4308164',4308164,-544.952698,55.549671,-803.447388,0.492643,201,0,0,0,1,6,0,0,1820,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47086,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98357,'LVD_easter_2014','w1f1','bnpc4621821',4621821,-91.708687,15.670890,217.180496,0.176174,2769,0,0,0,1,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24120,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85955,'LVD_guard_01','w1f1','bnpc4057505',4057505,425.836700,93.949097,147.345596,-1.239080,796,0,0,0,0,6,0,0,1277,0,0.500000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23758,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85955,'LVD_guard_01','w1f1','bnpc4057530',4057530,246.828796,52.038040,143.148804,1.399421,795,0,0,0,0,6,0,0,1277,0,0.800000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23492,5,0,0,0,0,30055,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85955,'LVD_guard_01','w1f1','bnpc4057532',4057532,209.687393,52.005539,110.727303,-0.836058,797,0,0,0,0,6,0,0,1277,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23226,5,0,0,0,0,30054,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85955,'LVD_guard_01','w1f1','bnpc4057541',4057541,192.848099,52.038040,162.149994,-1.140868,796,0,0,0,0,6,0,0,1277,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22942,5,0,0,0,0,30052,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85955,'LVD_guard_01','w1f1','bnpc4057553',4057553,108.028297,49.844238,-189.682297,0.353183,798,0,0,0,0,6,0,0,1277,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22688,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85955,'LVD_guard_01','w1f1','bnpc4057563',4057563,-82.688713,15.467950,-260.648010,-1.462308,795,0,0,0,0,6,0,0,1277,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22404,5,0,0,0,0,30053,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85955,'LVD_guard_01','w1f1','bnpc4057572',4057572,-436.003998,23.000170,-484.805511,1.136413,791,0,0,0,0,6,0,0,1275,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22150,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85955,'LVD_guard_01','w1f1','bnpc4510228',4510228,320.279907,67.275337,234.176498,-0.262841,793,0,0,0,0,6,0,0,1275,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21884,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93090,'LVD_kakashi_01','w1f1','bnpc4296870',4296870,242.172607,52.038120,112.691498,0.748405,901,0,0,0,0,6,0,0,541,0,0.000000,1,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20750,8,0,0,4296864,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93090,'LVD_kakashi_01','w1f1','bnpc4296871',4296871,246.709503,52.038120,124.038902,1.470959,901,0,0,0,0,6,0,0,541,0,0.000000,1,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20478,8,0,0,4296863,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93090,'LVD_kakashi_01','w1f1','bnpc4296872',4296872,237.477707,52.017941,108.608101,0.806989,901,0,0,0,0,6,0,0,541,0,0.000000,1,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20206,8,0,0,4296858,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93090,'LVD_kakashi_01','w1f1','bnpc4296873',4296873,244.254303,52.038120,162.449799,1.548731,901,0,0,0,0,6,0,0,541,0,0.000000,1,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19934,8,0,0,4296867,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93090,'LVD_kakashi_01','w1f1','bnpc4296874',4296874,244.299103,52.038120,166.290298,1.567449,901,0,0,0,0,6,0,0,541,0,0.000000,1,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19662,8,0,0,4296868,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87143,'FATE_004','w1f1','bnpc4103521',4103521,24.646770,54.486382,298.829590,0.872665,1219,0,0,0,0,6,0,0,1322,0,0.000000,5,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,162376,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86864,'FATE_005','w1f1','bnpc4098211',4098211,-88.628708,52.402100,268.574493,-0.000000,1218,0,0,0,0,6,0,0,1322,0,0.000000,6,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,160986,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86864,'FATE_005','w1f1','bnpc4148771',4148771,-86.644974,52.402100,258.588806,-0.000000,603,0,0,0,0,6,0,0,902,0,0.000000,8,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,160720,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86864,'FATE_005','w1f1','bnpc4148773',4148773,-83.521477,52.402100,275.685089,-0.000000,603,0,0,0,0,6,0,0,902,0,0.000000,8,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,160448,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86864,'FATE_005','w1f1','bnpc4148774',4148774,-83.102798,52.402088,250.000000,-0.000000,603,0,0,0,0,6,0,0,902,0,0.000000,8,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,160176,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87169,'FATE_007','w1f1','bnpc4103838',4103838,-204.168198,32.713161,370.326294,0.174533,1218,0,0,0,0,6,0,0,1323,0,0.000000,8,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,157058,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86878,'FATE_008','w1f1','bnpc4107973',4107973,156.122604,18.194151,-13.853070,-0.000000,1267,0,0,0,1,6,0,0,865,0,0.000000,9,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,155794,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87413,'FATE_009','w1f1','bnpc4107940',4107940,61.173031,17.271530,126.318398,-0.000000,1268,0,0,0,1,6,0,0,866,0,0.000000,9,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,155380,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87150,'FATE_010','w1f1','bnpc4103559',4103559,164.339798,55.723518,26.756920,-0.837758,1202,0,0,0,1,6,0,0,1277,0,0.000000,6,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,152754,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87193,'FATE_013','w1f1','bnpc4104231',4104231,-282.486511,15.336430,-220.349792,0.174533,1215,0,0,0,0,6,0,0,1324,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,150296,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87200,'FATE_014','w1f1','bnpc4107974',4107974,-282.696198,14.974940,-268.762085,-0.000000,1269,0,0,0,1,6,0,0,867,0,0.000000,13,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,149738,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90613,'FATE_015','w1f1','bnpc4176113',4176113,-353.884308,15.700780,-626.458923,-0.418879,1294,0,0,0,0,6,0,0,1347,0,0.000000,19,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,145800,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87167,'FATE_017','w1f1','bnpc4103827',4103827,156.543396,51.093948,177.107101,-0.000000,1201,0,0,0,1,6,0,0,1277,0,0.000000,2,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,141134,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87176,'FATE_018','w1f1','bnpc4108483',4108483,-383.607605,23.590660,-545.408997,-0.000000,1270,0,0,0,1,6,0,0,868,0,0.000000,21,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,140720,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87152,'FATE_027','w1f1','bnpc4108513',4108513,-355.279999,14.993600,-735.878601,-0.000000,1271,0,0,0,1,6,0,0,869,0,0.000000,22,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,139530,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96974,'FATE_FFXI_01','w1f1','bnpc4515647',4515647,179.125595,52.078979,-82.841248,-1.463776,2439,0,0,0,1,6,0,0,2328,0,0.000000,10,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,137556,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96974,'FATE_FFXI_01','w1f1','bnpc4515650',4515650,179.301697,52.099560,-82.616592,-0.000000,2291,0,0,0,0,6,0,0,750,0,0.000000,99,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,136666,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96975,'FATE_FFXI_02','w1f1','bnpc4515654',4515654,179.716797,52.091942,-82.866524,-1.413792,2308,0,0,0,1,6,0,0,2327,0,0.000000,10,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,135704,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc4103867',4103867,-345.876312,15.226300,-632.379578,1.412386,1124,0,0,0,0,6,0,0,1262,0,0.000000,15,0,120,1,0,0,0,0,0,1,1,0,1,0,0.000000,1.000000,131418,1,0,0,4165897,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc4103869',4103869,-366.714294,14.639060,-650.789917,0.613315,1125,0,0,0,1,6,0,0,1262,0,0.000000,15,0,120,1,0,0,0,0,0,1,1,0,1,0,0.000000,1.000000,131152,1,0,0,4165900,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169441',3169441,-444.559906,22.543631,-483.821411,-1.252275,831,0,0,0,0,6,0,0,402,0,0.000000,13,0,120,1,0,1,0,20,20,1,1,0,1,0,0.000000,1.000000,130734,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169451',3169451,-444.315796,22.521780,-482.600586,-1.163399,831,0,0,0,0,6,0,0,402,0,0.000000,14,0,120,1,0,1,0,20,20,1,1,0,1,0,0.000000,1.000000,130462,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169456',3169456,-444.163208,22.511950,-481.410492,-1.198584,831,0,0,0,0,6,0,0,402,0,0.000000,14,0,120,1,0,1,0,20,20,1,1,0,1,0,0.000000,1.000000,130190,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169457',3169457,-444.163208,22.522650,-479.915009,-1.207693,831,0,0,0,0,6,0,0,402,0,0.000000,13,0,120,1,0,1,0,20,20,1,1,0,1,0,0.000000,1.000000,129918,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169458',3169458,-444.193695,22.541241,-478.297607,-1.305294,831,0,0,0,0,6,0,0,402,0,0.000000,13,0,120,1,0,1,0,20,20,1,1,0,1,0,0.000000,1.000000,129646,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169533',3169533,-443.200714,22.604891,-483.878906,1.545027,827,0,0,0,0,6,0,0,6,0,0.000000,15,0,120,1,0,2,0,20,20,1,1,0,1,0,0.000000,1.000000,129380,1,0,40,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169534',3169534,-443.358887,22.608879,-478.468903,1.432091,827,0,0,0,0,6,0,0,6,0,0.000000,15,0,120,1,0,2,0,20,20,1,1,0,1,0,0.000000,1.000000,129108,1,0,40,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169536',3169536,-384.808289,24.061710,-562.766174,-0.000000,825,0,0,0,0,6,0,0,1260,0,0.000000,13,0,120,1,0,3,0,20,20,1,1,0,1,0,0.000000,1.000000,128842,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169537',3169537,-383.264709,23.879511,-561.193909,-0.000048,825,0,0,0,0,6,0,0,1260,0,0.000000,13,0,120,1,0,3,0,20,20,1,1,0,1,0,0.000000,1.000000,128570,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169538',3169538,-382.009094,24.041691,-562.919678,-0.000048,825,0,0,0,0,6,0,0,1260,0,0.000000,15,0,120,1,0,3,0,20,20,1,1,0,1,0,0.000000,1.000000,128298,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169539',3169539,-380.640198,23.978830,-561.240173,-0.000048,825,0,0,0,0,6,0,0,1260,0,0.000000,13,0,120,1,0,3,0,20,20,1,1,0,1,0,0.000000,1.000000,128026,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169540',3169540,-379.811890,24.111170,-563.072327,-0.000048,825,0,0,0,0,6,0,0,1260,0,0.000000,13,0,120,1,0,3,0,20,20,1,1,0,1,0,0.000000,1.000000,127754,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169545',3169545,-398.428314,24.673830,-486.839111,-0.759284,826,0,0,0,0,6,0,0,1259,0,0.000000,17,0,120,1,0,2,0,20,20,1,1,0,1,0,0.000000,1.000000,127488,1,0,40,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169596',3169596,-341.041199,15.540160,-632.687378,-0.773713,828,0,0,0,0,6,0,0,1043,0,0.000000,15,0,120,1,0,4,0,80,20,1,1,0,1,1,0.000000,1.000000,127222,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169597',3169597,-369.894012,15.243710,-652.857300,-0.737952,828,0,0,0,0,6,0,0,1043,0,0.000000,16,0,120,1,0,4,0,80,20,1,1,0,1,1,0.000000,1.000000,126950,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169598',3169598,-339.857513,15.703840,-630.800415,-0.843127,828,0,0,0,0,6,0,0,1043,0,0.000000,15,0,120,1,0,4,0,80,20,1,1,0,1,1,0.000000,1.000000,126678,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169599',3169599,-342.614685,15.660220,-630.359985,-0.662498,828,0,0,0,0,6,0,0,1043,0,0.000000,15,0,120,1,0,4,0,80,20,1,1,0,1,1,0.000000,1.000000,126406,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80225,'go003','w1f1','bnpc3169657',3169657,-351.491608,14.999570,-654.169617,-0.413941,824,0,0,0,0,6,0,0,1261,0,0.000000,17,0,120,1,0,4,0,80,20,1,1,0,1,1,0.000000,1.000000,126140,1,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4000991',4000991,-237.130295,32.432240,396.992615,0.487175,638,0,0,0,8,6,0,0,689,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100734,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001017',4001017,-219.409500,31.479309,378.927185,-0.898303,633,0,0,0,0,6,0,0,929,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100156,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001018',4001018,-217.030197,31.629290,378.740814,-0.853932,633,0,0,0,0,6,0,0,929,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99884,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001019',4001019,-219.511307,31.566660,380.762787,-0.896392,633,0,0,0,0,6,0,0,929,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99612,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001020',4001020,-218.202393,31.800591,381.397888,-0.933785,633,0,0,0,0,6,0,0,929,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99340,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001025',4001025,-220.864502,31.582821,374.218811,-1.068833,634,0,0,0,0,6,0,0,1306,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99074,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001026',4001026,-222.619202,31.645411,375.014191,-0.777144,634,0,0,0,0,6,0,0,1306,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98802,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001028',4001028,-224.010895,31.513710,378.810913,-0.942265,635,0,0,0,0,6,0,0,1304,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98536,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001029',4001029,-223.156403,31.518190,381.385803,-0.815913,635,0,0,0,0,6,0,0,1304,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98264,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001073',4001073,-224.177902,31.565371,375.959015,-0.000000,634,0,0,0,0,6,0,0,1306,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97566,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001081',4001081,-205.012207,33.658779,356.373901,-0.000000,633,0,0,0,0,6,0,0,929,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97288,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001082',4001082,-204.365601,33.743172,356.331512,-0.367180,633,0,0,0,0,6,0,0,929,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97016,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001083',4001083,-205.307602,33.308189,356.692413,-0.366485,633,0,0,0,0,6,0,0,929,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96744,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001084',4001084,-205.301895,33.222519,357.153595,-0.397863,633,0,0,0,0,6,0,0,929,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96472,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001089',4001089,-203.134293,33.845211,356.674713,-0.407170,634,0,0,0,0,6,0,0,1306,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96206,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001091',4001091,-205.945206,33.193340,356.905487,-0.306539,634,0,0,0,0,6,0,0,1306,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95934,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001094',4001094,-203.754501,33.258671,358.112213,-1.012929,636,0,0,0,0,6,0,0,928,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95674,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001095',4001095,-203.062103,33.333839,358.022003,-1.025631,636,0,0,0,0,6,0,0,928,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95402,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001104',4001104,-201.598007,34.589989,354.241699,-0.579127,633,0,0,0,0,6,0,0,929,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95112,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001105',4001105,-201.427002,33.612839,357.501404,-0.642593,633,0,0,0,0,6,0,0,929,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94840,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001106',4001106,-200.330704,33.746159,357.520813,-0.627560,633,0,0,0,0,6,0,0,929,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94568,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001107',4001107,-201.357407,33.459450,358.421204,-0.693681,633,0,0,0,0,6,0,0,929,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94296,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001113',4001113,-200.362396,33.584621,358.342987,-0.366077,637,0,0,0,0,6,0,0,1307,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94048,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001116',4001116,-198.488297,34.178379,356.657715,-0.494384,637,0,0,0,0,6,0,0,1307,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93776,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001118',4001118,-199.277100,33.942799,357.291290,-0.822469,637,0,0,0,0,6,0,0,1307,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93504,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001010',4001010,-234.614105,32.455410,398.786407,0.805947,868,0,0,0,8,6,0,0,934,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93238,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001011',4001011,-235.979706,32.441269,398.107788,0.569362,869,0,0,0,8,6,0,0,933,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92972,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001012',4001012,-241.286606,32.432159,392.905792,1.437060,870,0,0,0,8,6,0,0,933,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92706,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001013',4001013,-240.995102,32.403400,390.091003,1.337191,871,0,0,0,8,6,0,0,933,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92440,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001144',4001144,-204.674698,33.164452,358.170990,-0.779371,872,0,0,0,0,6,0,0,1304,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92174,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85359,'QB_CLSGLA200_001','w1f1','bnpc4001229',4001229,-202.679596,34.148670,355.471405,-0.000000,634,0,0,0,0,6,0,0,1306,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91854,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85713,'QB_CLSTHM200_001','w1f1','bnpc4031432',4031432,167.335800,18.194151,0.647839,-1.144793,676,0,0,0,1,6,0,0,765,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91088,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85713,'QB_CLSTHM200_001','w1f1','bnpc4031433',4031433,153.858902,18.193979,14.600260,0.711679,678,0,0,0,0,6,0,0,767,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90822,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85713,'QB_CLSTHM200_001','w1f1','bnpc4031434',4031434,166.214294,18.194151,6.514161,-1.021796,677,0,0,0,1,6,0,0,766,0,0.000000,19,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90556,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85713,'QB_CLSTHM200_001','w1f1','bnpc4031747',4031747,164.536499,18.194111,10.128970,-0.951653,677,0,0,0,1,6,0,0,766,0,0.000000,19,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90284,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85714,'QB_CLSTHM300_001','w1f1','bnpc4031416',4031416,-179.844299,15.126420,-736.546875,-1.382554,682,0,0,0,1,6,0,0,841,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89434,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85714,'QB_CLSTHM300_001','w1f1','bnpc4031419',4031419,-202.035095,14.654470,-738.554871,1.090833,683,0,0,0,8,6,0,0,842,0,0.000000,33,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89168,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85714,'QB_CLSTHM300_001','w1f1','bnpc4031420',4031420,-202.106995,14.664230,-734.228821,1.350996,684,0,0,0,8,6,0,0,843,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88902,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85714,'QB_CLSTHM300_001','w1f1','bnpc4031421',4031421,-200.823303,14.633520,-740.226807,0.737564,685,0,0,0,8,6,0,0,844,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88636,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85714,'QB_CLSTHM300_001','w1f1','bnpc4031422',4031422,-200.864502,14.662150,-732.742126,1.342967,686,0,0,0,8,6,0,0,845,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88370,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85714,'QB_CLSTHM300_001','w1f1','bnpc4031423',4031423,-206.841095,15.126380,-736.450806,1.460621,1004,0,0,0,1,6,0,0,1221,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87928,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85714,'QB_CLSTHM300_001','w1f1','bnpc4031424',4031424,-190.401093,15.126370,-746.030029,-0.667737,1004,0,0,0,1,6,0,0,1221,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87656,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85714,'QB_CLSTHM300_001','w1f1','bnpc4031425',4031425,-189.572998,15.126380,-727.405518,-0.633981,1004,0,0,0,1,6,0,0,1221,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87384,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87238,'QB_ManWil302_001','w1f1','bnpc4105364',4105364,173.884094,52.267269,-74.798439,0.269614,1026,0,0,0,8,6,0,0,1005,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85386,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87238,'QB_ManWil302_001','w1f1','bnpc4105365',4105365,167.467697,52.780880,-68.955566,0.582107,1025,0,0,0,8,6,0,0,1006,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85120,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87238,'QB_ManWil302_001','w1f1','bnpc4105366',4105366,174.419296,52.221882,-69.053513,0.434324,1024,0,0,0,8,6,0,0,994,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84854,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87238,'QB_ManWil302_001','w1f1','bnpc4105368',4105368,194.259995,51.948250,-33.432621,-0.546681,1016,0,0,0,0,6,0,0,269,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84588,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87238,'QB_ManWil302_001','w1f1','bnpc4105369',4105369,180.997894,52.427891,-57.420212,-0.444380,1020,0,0,0,0,6,0,0,996,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84322,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87238,'QB_ManWil302_001','w1f1','bnpc4105370',4105370,183.745300,52.066769,-53.047150,-0.610318,1022,0,0,0,0,6,0,0,997,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84056,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87238,'QB_ManWil302_001','w1f1','bnpc4105371',4105371,187.131104,52.177441,-54.288799,-0.841751,1023,0,0,0,0,6,0,0,995,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83790,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87238,'QB_ManWil302_001','w1f1','bnpc4105372',4105372,180.996201,52.021938,-50.298641,-1.054054,1023,0,0,0,0,6,0,0,995,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83518,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87238,'QB_ManWil302_001','w1f1','bnpc4105373',4105373,185.029297,52.294788,-58.139469,-0.033284,1021,0,0,0,0,6,0,0,998,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83252,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87238,'QB_ManWil302_001','w1f1','bnpc4105375',4105375,177.901993,52.558540,-55.049000,-0.026998,1021,0,0,0,0,6,0,0,998,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82980,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87238,'QB_ManWil302_001','w1f1','bnpc4105390',4105390,191.394897,51.988270,-32.488029,-1.035690,1023,0,0,0,0,6,0,0,995,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82702,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87238,'QB_ManWil302_001','w1f1','bnpc4105392',4105392,192.114594,51.882660,-32.194988,-0.605931,1023,0,0,0,0,6,0,0,995,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82430,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86726,'QB_SUBWIL088_001','w1f1','bnpc4093947',4093947,-239.426300,15.199480,-275.756897,0.017551,953,0,0,0,8,6,0,0,1378,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80226,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86726,'QB_SUBWIL088_001','w1f1','bnpc4093955',4093955,-238.241898,15.199480,-281.727692,-0.300322,954,0,0,0,0,6,0,0,1381,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79960,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86726,'QB_SUBWIL088_001','w1f1','bnpc4093957',4093957,-238.480499,15.738420,-285.371307,-0.000000,955,0,0,0,0,6,0,0,1380,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79694,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86726,'QB_SUBWIL088_001','w1f1','bnpc4093961',4093961,-249.473099,14.974930,-278.116699,1.032856,956,0,0,0,0,6,0,0,1277,0,0.010000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79428,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86726,'QB_SUBWIL088_001','w1f1','bnpc4093962',4093962,-229.764801,14.974930,-277.579895,-0.981538,956,0,0,0,0,6,0,0,1277,0,0.010000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79156,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85049,'QST_CLSGLA050_002','w1f1','bnpc3968834',3968834,154.043503,53.005951,207.824997,0.159647,1246,0,0,0,1,6,0,0,1179,0,0.000000,4,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,73634,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85049,'QST_CLSGLA050_002','w1f1','bnpc4148249',4148249,141.460907,53.480381,228.562805,-0.053683,1390,0,0,0,1,6,0,0,1178,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,73300,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85186,'QST_CLSGLA250_001','w1f1','bnpc3986472',3986472,69.211143,54.763050,286.158386,-1.436746,1243,0,0,0,1,6,0,0,1305,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,4.000000,1.000000,72226,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85186,'QST_CLSGLA250_001','w1f1','bnpc3995627',3995627,58.985889,54.581299,285.115387,0.414646,1243,0,0,0,1,6,0,0,1305,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71954,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85186,'QST_CLSGLA250_001','w1f1','bnpc3995631',3995631,66.473480,54.582390,291.039215,-0.202821,1243,0,0,0,1,6,0,0,1305,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71682,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84900,'QST_CLSPGL_050','w1f1','bnpc4068746',4068746,224.227097,52.903439,78.075348,-0.000000,131,0,0,0,1,6,0,0,113,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70576,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84900,'QST_CLSPGL_050','w1f1','bnpc4068756',4068756,246.335602,53.288921,55.897469,-0.000000,131,0,0,0,1,6,0,0,113,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70304,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84900,'QST_CLSPGL_050','w1f1','bnpc4068761',4068761,222.580200,53.276661,39.720211,-0.000000,131,0,0,0,1,6,0,0,113,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70032,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84900,'QST_CLSPGL_050','w1f1','bnpc4068766',4068766,259.778809,53.541168,22.905069,-0.000000,131,0,0,0,1,6,0,0,113,0,0.000000,4,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69760,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85380,'QST_CLSTHM_050','w1f1','bnpc4002289',4002289,-87.371597,50.578999,315.604614,0.514125,12,0,0,0,1,6,0,0,1216,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69278,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85406,'QST_CLSTHM_300','w1f1','bnpc4184423',4184423,-384.648102,23.492001,-549.558228,-1.360776,1239,0,0,0,1,6,0,0,1213,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66420,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96769,'QST_GaiUse118','w1f1','bnpc4502922',4502922,-470.700897,23.069370,-447.212311,-0.000000,2477,0,0,0,1,6,0,0,692,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30694,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96769,'QST_GaiUse118','w1f1','bnpc4502923',4502923,-474.296387,22.934940,-445.838501,0.369358,2477,0,0,0,1,6,0,0,692,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30422,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96769,'QST_GaiUse118','w1f1','bnpc4502924',4502924,-466.819305,23.147890,-445.487213,-0.587476,2477,0,0,0,1,6,0,0,692,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30150,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96769,'QST_GaiUse118','w1f1','bnpc4502925',4502925,-382.959290,24.358070,-520.526123,-0.216035,2478,0,0,0,1,6,0,0,693,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29884,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96769,'QST_GaiUse118','w1f1','bnpc4502927',4502927,-360.180511,15.127130,-645.797424,-0.412727,2479,0,0,0,1,6,0,0,694,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29618,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96769,'QST_GaiUse118','w1f1','bnpc4502928',4502928,-358.399200,15.342740,-634.877075,-0.872744,2479,0,0,0,1,6,0,0,694,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29346,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96769,'QST_GaiUse118','w1f1','bnpc4502929',4502929,-320.441711,14.820420,-776.502075,-0.242349,2480,0,0,0,1,6,0,0,695,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29080,1,0,0,0,0,0,0,754,144); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96769,'QST_GaiUse118','w1f1','bnpc4502930',4502930,-334.564087,15.291520,-785.269409,0.868037,2480,0,0,0,1,6,0,0,695,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28808,1,0,0,0,0,0,0,754,144); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96769,'QST_GaiUse118','w1f1','bnpc4502931',4502931,-328.908813,14.895340,-776.657227,0.597176,2481,0,0,0,1,6,0,0,697,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28542,1,0,0,0,0,0,0,484,144); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96769,'QST_GaiUse118','w1f1','bnpc4502932',4502932,-327.977692,14.858140,-790.821411,-0.384319,2481,0,0,0,1,6,0,0,697,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28270,1,0,0,0,0,0,0,484,144); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98296,'QST_GaiUse202','w1f1','bnpc4620256',4620256,149.751801,54.285191,-54.299671,-0.193595,2853,0,0,0,1,6,0,0,2670,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26924,1,0,0,0,0,0,0,788,50); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98296,'QST_GaiUse202','w1f1','bnpc4620258',4620258,141.842804,56.259789,-58.875130,0.613895,2877,0,0,0,1,6,0,0,2670,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26658,1,0,0,0,0,0,0,787,52); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98296,'QST_GaiUse202','w1f1','bnpc4620255',4620255,158.401993,53.870750,-56.912331,0.673564,2853,0,0,0,1,6,0,0,2670,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26380,1,0,0,0,0,0,0,788,50); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98296,'QST_GaiUse202','w1f1','bnpc4620257',4620257,141.707001,54.338829,-54.150089,1.092927,2877,0,0,0,1,6,0,0,2670,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26114,1,0,0,0,0,0,0,787,52); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98319,'QST_GaiUse204','w1f1','bnpc4630002',4630002,97.402870,15.322600,148.288803,-0.634091,2852,0,0,0,1,6,0,0,1255,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25236,1,0,0,0,0,0,0,86,217); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98319,'QST_GaiUse204','w1f1','bnpc4630003',4630003,89.514091,15.648570,145.892303,-0.000000,2852,0,0,0,1,6,0,0,1255,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24964,1,0,0,0,0,0,0,86,250); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98319,'QST_GaiUse204','w1f1','bnpc4630004',4630004,97.554710,14.884610,160.371002,-0.049689,2875,0,0,0,1,6,0,0,2671,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24698,1,0,0,0,0,0,0,86,241); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98375,'QST_GaiUse208','w1f1','bnpc4622373',4622373,186.092896,52.249779,21.663019,0.824897,2848,0,0,0,1,6,0,0,2672,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20800,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93486,'QST_JobBlm400','w1f1','bnpc4308519',4308519,-178.417999,14.567730,-244.648804,0.650134,182,0,0,0,1,6,0,0,242,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19422,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93486,'QST_JobBlm400','w1f1','bnpc4308522',4308522,-211.261200,14.969060,-345.540588,-0.614459,182,0,0,0,1,6,0,0,242,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19150,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93069,'QST_JobWar_450_003','w1f1','bnpc4295848',4295848,-279.650299,14.976980,-765.676819,-0.533881,1920,0,0,0,1,6,0,0,2015,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18340,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84581,'QST_SUBWIL_036','w1f1','bnpc3923955',3923955,-162.859299,50.054699,312.211914,-0.000335,131,0,0,0,1,6,0,0,113,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12948,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84581,'QST_SUBWIL_036','w1f1','bnpc3949791',3949791,-118.170998,56.472801,411.181488,-0.000239,131,0,0,0,1,6,0,0,113,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12676,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84581,'QST_SUBWIL_036','w1f1','bnpc3949797',3949797,-99.895302,59.123901,389.090698,-0.000335,131,0,0,0,1,6,0,0,113,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12404,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84583,'QST_SUBWIL_038','w1f1','bnpc4086831',4086831,-246.059296,32.446880,384.735901,0.479323,778,0,0,0,1,6,0,0,914,0,0.000000,7,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11258,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84583,'QST_SUBWIL_038','w1f1','bnpc4086832',4086832,-219.199493,34.157001,426.026489,-1.564639,779,0,0,0,1,6,0,0,914,0,0.000000,7,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10992,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84583,'QST_SUBWIL_038','w1f1','bnpc4086833',4086833,-281.225098,33.499901,439.038788,1.314732,778,0,0,0,1,6,0,0,914,0,0.000000,7,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10714,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84583,'QST_SUBWIL_038','w1f1','bnpc4086834',4086834,-305.817688,32.183998,397.070190,1.555160,780,0,0,0,1,6,0,0,914,0,0.000000,7,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10454,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84897,'QST_SUBWIL_039','w1f1','bnpc4031174',4031174,230.499603,52.038040,138.004303,-1.406812,49,0,0,0,1,6,0,0,1222,0,0.000000,3,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9764,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84934,'QST_SUBWIL_095','w1f1','bnpc3952090',3952090,300.887512,62.090111,-197.889496,-0.731558,187,0,0,0,1,6,0,0,901,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84934,'QST_SUBWIL_095','w1f1','bnpc3952281',3952281,297.981293,62.500019,-237.569107,-1.065447,187,0,0,0,1,6,0,0,901,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5566,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84934,'QST_SUBWIL_095','w1f1','bnpc3952286',3952286,322.004700,62.973831,-201.106995,-1.268559,187,0,0,0,1,6,0,0,901,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5294,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73652,'LVD_benchmark_01','w1f2','bnpc1368411',1368411,-66.155998,-12.582840,-8.814363,-0.000000,2,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,213808,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73652,'LVD_benchmark_01','w1f2','bnpc1368412',1368412,-64.537338,-12.499180,-8.712757,-0.000000,2,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,213536,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73652,'LVD_benchmark_01','w1f2','bnpc1368413',1368413,-62.951370,-12.426580,-8.677147,-0.000000,2,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,213264,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73652,'LVD_benchmark_01','w1f2','bnpc1368414',1368414,-61.258369,-12.364150,-8.589471,-0.000000,2,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,212992,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73652,'LVD_benchmark_01','w1f2','bnpc1368416',1368416,-66.693230,-12.961350,-13.380810,-0.000048,14,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,212726,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73652,'LVD_benchmark_01','w1f2','bnpc1368417',1368417,-64.495934,-12.860610,-13.380810,-0.000048,14,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,212454,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73652,'LVD_benchmark_01','w1f2','bnpc1368418',1368418,-62.481739,-12.772990,-13.472360,-0.000048,14,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,212182,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73652,'LVD_benchmark_01','w1f2','bnpc1368419',1368419,-60.162369,-12.662670,-13.441840,-0.000048,14,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,211910,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73652,'LVD_benchmark_01','w1f2','bnpc1368420',1368420,-69.467598,-13.149620,-18.035919,-0.000000,26,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,211644,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73652,'LVD_benchmark_01','w1f2','bnpc1368440',1368440,-65.325943,-13.142030,-18.046921,-0.000000,26,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,211372,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73652,'LVD_benchmark_01','w1f2','bnpc1368441',1368441,-61.416431,-13.052980,-18.065041,-0.000000,26,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,211100,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (73652,'LVD_benchmark_01','w1f2','bnpc1368442',1368442,-57.492748,-12.665620,-17.741350,-0.000000,26,0,0,0,1,10,0,0,0,0,0.000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,210828,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746473',3746473,-134.012207,9.916103,267.132690,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,208458,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746474',3746474,-139.248093,11.343600,270.767487,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,208186,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746475',3746475,-116.714996,8.743372,266.243988,-0.000048,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,207914,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746477',3746477,-123.143700,11.980280,281.311798,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,207642,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746478',3746478,-128.526794,6.043580,250.778503,-0.000048,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,207370,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746481',3746481,-87.065170,8.131585,270.853210,-0.000048,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,207098,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746484',3746484,-77.385406,9.277164,278.146301,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,206826,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746485',3746485,-79.850502,9.815605,280.807892,-0.000048,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,206554,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746486',3746486,-57.801540,7.714478,280.245697,-0.000048,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,206282,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746487',3746487,-32.103970,8.045358,306.695404,-0.000144,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,206010,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746488',3746488,-33.263660,8.805240,310.174408,-0.000144,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,205738,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746489',3746489,-23.206301,7.924604,316.282593,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,205466,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746490',3746490,-1.823452,12.616180,355.344391,-0.000240,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,205194,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746491',3746491,1.058939,11.460450,352.323212,-0.000432,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,204922,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746492',3746492,-1.840275,11.813140,350.644714,-0.000527,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,204650,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746493',3746493,-56.592079,0.108709,220.398895,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,204378,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746494',3746494,-56.292080,3.881968,249.628098,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,204106,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746495',3746495,-31.334530,2.359202,278.398193,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,203834,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746496',3746496,-104.320801,1.025299,207.824005,-0.000048,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,203562,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746498',3746498,7.768722,1.031246,256.953094,-0.000240,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,203290,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746499',3746499,-123.605797,2.842937,210.266296,-0.000240,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,203018,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746500',3746500,30.048519,10.050760,356.964386,-0.000815,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,202746,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746501',3746501,-97.688263,-3.294564,184.145203,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,202474,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746503',3746503,-99.971313,-3.426347,180.765198,-0.000000,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,202202,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746505',3746505,-87.144318,-1.876907,198.901306,-0.000048,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,201930,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746506',3746506,-47.697250,-4.439452,201.516296,-0.000048,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,201658,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746507',3746507,-14.522570,0.676844,242.620300,-0.000144,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,201386,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746508',3746508,-11.261070,0.694751,245.484695,-0.000144,351,0,0,0,1,6,0,0,262,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,201114,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746589',3746589,15.346860,15.164520,392.385712,-0.000815,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,200842,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746592',3746592,14.522880,15.407670,396.017303,-0.000815,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,200570,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746617',3746617,66.524231,10.880620,515.488220,-0.000527,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,200298,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746618',3746618,49.532551,14.712430,506.886414,-0.000527,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,200026,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746619',3746619,50.356541,14.371650,503.254791,-0.000527,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,199754,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746620',3746620,59.248550,11.443580,491.395813,-0.000527,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,199482,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746624',3746624,84.031380,8.407674,556.939026,-0.000719,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,199210,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746625',3746625,89.244087,6.908536,552.574890,-0.000719,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,198938,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746626',3746626,105.598701,4.370574,521.843201,-0.000623,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,198666,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746688',3746688,86.533859,11.154300,622.308594,-0.000815,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,198394,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746689',3746689,77.714149,12.588650,626.672729,-0.000815,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,198122,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746690',3746690,81.986671,11.825690,632.593201,-0.000815,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,197850,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746691',3746691,42.256569,15.522670,621.038330,-0.000623,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,197578,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746692',3746692,36.528320,15.730630,626.060913,-0.000623,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,197306,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746693',3746693,33.963001,15.853820,622.955627,-0.000719,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,197034,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746697',3746697,71.776787,14.357050,666.349792,-0.000815,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,196762,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746699',3746699,110.074799,9.705235,672.023499,-0.000719,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,196490,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746700',3746700,105.802299,9.833974,666.103027,-0.000719,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,196218,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746701',3746701,114.622002,9.802178,661.738892,-0.000719,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,195946,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746706',3746706,148.317993,4.103824,654.705994,-0.000815,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,195674,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746707',3746707,140.430801,4.620288,650.824585,-0.000815,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,195402,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746708',3746708,144.703293,4.162472,656.745178,-0.000815,351,0,0,0,1,6,0,0,262,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,195130,7,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746741',3746741,123.709900,4.546344,401.381409,-0.000048,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,194864,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746744',3746744,119.896500,4.229595,400.430603,-0.000048,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,194592,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746745',3746745,121.385498,4.562400,415.457306,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,194320,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746747',3746747,94.951797,4.409234,415.757996,-0.000048,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,194048,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746748',3746748,98.573242,3.713897,402.903290,-0.000048,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,193776,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746753',3746753,105.931702,3.887046,438.676788,-0.000048,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,193504,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746754',3746754,103.130402,3.837232,441.897888,-0.000048,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,193232,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746756',3746756,101.549301,2.579426,385.163391,-0.000048,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,192960,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746757',3746757,126.748802,2.272390,326.781708,-0.000048,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,192688,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746762',3746762,128.648804,2.609246,322.621399,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,192416,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746767',3746767,115.312401,0.839199,310.200592,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,192144,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746769',3746769,60.052872,2.658700,301.575806,-0.000048,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,191872,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746771',3746771,66.487648,2.270967,295.222290,-0.000048,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,191600,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746772',3746772,59.572800,2.550388,279.994904,-0.000048,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,191328,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746773',3746773,39.864429,5.507329,295.432587,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,191056,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746775',3746775,28.239599,1.102737,258.417786,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,190784,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746782',3746782,33.012630,-0.000074,236.507797,-0.000048,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,190512,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746783',3746783,30.472219,1.540232,261.602997,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,190240,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746790',3746790,40.329552,0.198320,191.668503,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,189968,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746791',3746791,42.740471,0.381429,188.281006,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,189696,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746792',3746792,21.316620,-1.942127,212.041397,-0.000048,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,189424,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746795',3746795,33.488029,0.135540,209.757507,-0.000048,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,189152,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746800',3746800,79.875580,17.322849,153.453400,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,188880,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746801',3746801,86.274673,14.097900,174.830002,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,188608,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746802',3746802,82.595718,17.371531,156.113602,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,188336,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746803',3746803,68.047150,12.851960,169.148697,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,188064,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746805',3746805,145.186905,14.265870,303.993011,-0.000240,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,187792,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746806',3746806,134.595795,15.951970,271.548492,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,187520,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746807',3746807,129.378799,14.996020,276.045807,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,187248,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746808',3746808,102.709000,6.216220,218.986298,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,186976,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746864',3746864,165.074600,12.246150,482.778503,-0.000432,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,186704,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746867',3746867,168.492706,12.057270,478.475494,-0.000432,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,186432,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746868',3746868,162.989304,12.037260,478.563507,-0.000336,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,186160,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746870',3746870,159.288895,10.574450,408.590790,-0.000240,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,185888,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746871',3746871,163.653000,10.757560,411.825714,-0.000240,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,185616,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746872',3746872,180.336197,12.793920,406.002014,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,185344,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746873',3746873,161.736893,16.236589,388.045105,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,185072,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746876',3746876,133.837296,9.269427,459.531403,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,184800,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746878',3746878,131.557098,8.976067,457.624695,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,184528,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746880',3746880,120.227203,8.368025,485.318115,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,184256,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746885',3746885,134.445908,12.144460,507.273987,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,183984,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746887',3746887,131.554993,12.056210,504.412415,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,183712,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746889',3746889,140.997406,11.949580,487.139313,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,183440,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746891',3746891,177.389404,11.185200,525.833618,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,183168,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746894',3746894,180.637207,11.258170,523.414673,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,182896,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746896',3746896,163.836105,12.375020,511.253387,-0.000240,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,182624,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746898',3746898,147.262100,7.242397,543.931824,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,182352,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746902',3746902,159.838196,8.834927,539.787781,-0.000240,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,182080,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746905',3746905,155.880402,7.197376,556.779175,-0.000240,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,181808,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746908',3746908,158.138794,8.079927,559.495300,-0.000240,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,181536,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746910',3746910,143.386200,7.563845,583.138916,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,181264,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746911',3746911,141.779205,7.213043,585.132019,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,180992,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746913',3746913,138.754898,6.737441,570.297424,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,180720,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746914',3746914,149.117798,6.128607,602.883972,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,180448,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746915',3746915,169.704697,11.348940,603.184021,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,180176,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746916',3746916,180.008804,11.209140,617.096130,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,179904,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746917',3746917,182.074905,11.129530,618.747620,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,179632,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746918',3746918,203.008896,12.064710,597.300476,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,179360,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746919',3746919,222.377304,10.658940,600.289978,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,179088,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746920',3746920,219.857101,10.195060,606.104126,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,178816,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746921',3746921,216.053207,12.886560,579.694885,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,178544,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746922',3746922,254.440308,11.644550,583.224670,-0.000144,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,178272,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746923',3746923,187.395996,12.680200,480.674408,-0.000336,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,178000,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3747078',3747078,174.099396,10.387860,561.876526,-0.000240,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,177728,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3782566',3782566,219.465393,20.017179,421.855988,-0.000240,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,177456,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3782567',3782567,215.101303,19.951290,418.621094,-0.000240,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,177184,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3782571',3782571,276.496490,14.358410,504.494598,-0.000240,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176912,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3782576',3782576,223.506195,14.214930,465.799103,-0.000240,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176640,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3782578',3782578,228.904907,14.555940,463.312805,-0.000240,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176368,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3782579',3782579,240.208405,14.734180,473.802307,-0.000336,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176096,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3782581',3782581,203.301804,12.792270,451.523285,-0.000240,205,0,0,0,1,6,0,0,318,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,175824,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746932',3746932,134.477707,12.039320,494.041290,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,175558,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746930',3746930,161.638794,12.497090,508.781494,-0.000911,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,175286,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746934',3746934,145.677795,11.978280,517.051880,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,175014,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746933',3746933,157.244202,8.895963,538.017822,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,174742,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746929',3746929,184.320801,12.674630,482.649414,-0.000911,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,174470,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746925',3746925,122.484100,8.621300,468.558685,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,174198,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3782585',3782585,230.220703,14.451260,471.293915,-0.000911,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,173926,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746928',3746928,200.189301,12.546850,452.841888,-0.000911,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,173654,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746927',3746927,152.697006,11.123780,465.049103,-0.000911,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,173382,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746970',3746970,263.263885,16.647539,520.866577,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,173110,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746971',3746971,247.730194,16.647539,499.259888,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,172838,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746972',3746972,210.126297,16.670370,499.584686,-0.000719,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,172566,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746967',3746967,255.603806,16.647539,552.574890,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,172294,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746968',3746968,261.768494,13.412630,571.068787,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,172022,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746969',3746969,261.341187,16.678061,523.765930,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,171750,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746973',3746973,206.265198,16.709129,502.872498,-0.000719,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,171478,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3747306',3747306,166.825607,12.296140,403.792114,-0.000719,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,171206,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3747310',3747310,155.935303,9.673933,431.016296,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,170934,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3782572',3782572,274.299194,14.525580,502.022614,-0.000911,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,170662,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746974',3746974,201.359299,16.670370,525.525696,-0.000719,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,170390,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746975',3746975,199.202896,16.634470,546.190796,-0.000719,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,170118,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746976',3746976,201.042099,16.670389,547.166199,-0.000719,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,169846,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746966',3746966,219.876907,16.677370,559.278870,-0.000719,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,169574,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746946',3746946,126.004097,4.418174,596.074219,-0.000911,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,169302,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746951',3746951,205.096497,11.978280,595.452820,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,169030,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746954',3746954,201.556396,10.391350,620.202881,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,168758,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746937',3746937,112.465202,5.551401,523.979492,-0.000719,385,0,0,0,1,6,0,0,632,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,168486,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746941',3746941,164.965195,10.635490,582.482483,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,168214,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746945',3746945,140.062500,7.095398,581.505981,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,167942,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746956',3746956,223.407303,9.658914,609.063782,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,167670,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746962',3746962,251.148193,11.947770,580.346313,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,167398,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746963',3746963,236.801498,16.670509,560.962524,-0.000719,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,167126,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746965',3746965,239.996399,16.684830,564.761475,-0.000719,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,166854,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746958',3746958,230.853699,7.095398,629.480286,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,166582,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746959',3746959,228.412201,6.607109,632.684814,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,166310,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746960',3746960,250.843002,10.543940,603.967285,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,4,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,166038,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746539',3746539,-66.280632,6.869143,269.246704,-0.000048,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,165766,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746538',3746538,-40.705959,2.362750,241.470093,-0.000000,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,165494,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746536',3746536,-2.930916,14.263170,364.690308,-0.000240,385,0,0,0,1,6,0,0,632,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,165222,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746541',3746541,4.373672,4.711559,297.562012,-0.000048,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164950,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746544',3746544,-40.587990,10.584770,307.244690,-0.000048,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164678,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746543',3746543,-67.036057,11.719290,294.869385,-0.000000,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164406,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746542',3746542,-63.836632,11.354730,293.474915,-0.000000,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164134,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746826',3746826,100.612602,0.927920,320.347412,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163862,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746828',3746828,122.748901,1.776996,318.298187,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163590,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746831',3746831,90.791931,1.666962,266.808197,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163318,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746821',3746821,109.756599,2.337350,358.451385,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163046,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746535',3746535,-23.599480,-4.862183,218.164505,-0.000000,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162774,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746815',3746815,104.478500,3.524787,410.177704,-0.000623,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162502,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746820',3746820,134.782898,6.790217,393.331787,-0.000719,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162230,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746704',3746704,139.915802,3.409252,629.204895,-0.000623,385,0,0,0,1,6,0,0,632,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161958,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746728',3746728,105.175301,7.446661,611.285278,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161686,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746628',3746628,107.891403,6.906938,609.728882,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161414,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746703',3746703,124.601700,9.267537,672.118774,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161142,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746694',3746694,54.517780,14.477480,614.387390,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160870,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746695',3746695,75.144310,14.202080,664.210083,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160598,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746702',3746702,102.630096,9.930755,678.326416,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160326,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746595',3746595,60.659401,11.900060,438.181702,-0.000432,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160054,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746594',3746594,34.258789,14.106760,421.936798,-0.000623,385,0,0,0,1,6,0,0,632,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159782,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746545',3746545,-18.006081,5.176353,307.655609,-0.000000,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159510,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746616',3746616,55.188671,13.295150,508.984802,-0.000432,385,0,0,0,1,6,0,0,632,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159238,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746623',3746623,46.372120,15.609930,520.347778,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158966,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746622',3746622,84.418831,4.091218,486.350708,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158694,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746621',3746621,87.897888,3.259133,489.249908,-0.000719,385,0,0,0,1,6,0,0,632,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158422,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746529',3746529,-86.737587,1.982069,218.821899,-0.000000,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158150,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746528',3746528,-93.669998,-2.292831,193.599503,-0.000000,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157878,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746527',3746527,28.597651,13.168800,391.636688,-0.000623,385,0,0,0,1,6,0,0,632,0,0.000000,2,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157606,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746530',3746530,-94.103600,-4.710398,174.915298,-0.000000,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157334,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746534',3746534,-52.024101,-4.438385,196.025299,-0.000000,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157062,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746533',3746533,-52.324100,-0.635104,220.185806,-0.000000,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156790,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746532',3746532,-55.083771,1.032392,224.458603,-0.000000,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156518,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746522',3746522,-155.544296,14.321210,274.575500,-0.000000,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156246,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746519',3746519,-132.127899,6.316744,252.007797,-0.000048,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155974,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746514',3746514,-119.246803,8.981372,268.429688,-0.000000,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155702,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746523',3746523,-155.193604,7.549813,251.117706,-0.000048,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155430,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746526',3746526,-114.793701,4.013075,226.245499,-0.000048,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155158,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746525',3746525,-107.799896,1.451139,209.227798,-0.000048,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154886,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746524',3746524,-92.355728,5.076609,248.889801,-0.000048,385,0,0,0,1,6,0,0,632,0,0.000000,1,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154614,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746843',3746843,69.640907,10.773730,192.122192,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154342,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746844',3746844,80.370789,14.464900,168.592697,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154070,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746845',3746845,58.563480,13.422550,142.645203,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153798,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746842',3746842,138.416901,14.910950,291.298401,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153526,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746834',3746834,115.643402,6.086327,252.986206,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153254,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746835',3746835,116.878197,7.099676,249.317596,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152982,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746839',3746839,134.754898,15.738220,277.605591,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152710,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746857',3746857,39.223301,5.294607,322.688812,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152438,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746859',3746859,72.028061,7.308271,404.591492,-0.000623,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152166,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746861',3746861,127.672203,6.607109,430.716309,-0.000815,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151894,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746850',3746850,23.742001,2.113425,263.454895,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151622,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746846',3746846,84.523247,19.105749,150.735306,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151350,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746847',3746847,44.427238,1.305627,214.361099,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151078,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746848',3746848,17.726910,-2.276831,214.661102,-0.000527,385,0,0,0,1,6,0,0,632,0,0.000000,3,1,15,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150806,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746547',3746547,13.581710,5.033936,280.057404,-0.881334,1445,0,0,0,1,6,0,0,244,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150540,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746560',3746560,49.054600,13.360080,439.790100,0.783100,1445,0,0,0,1,6,0,0,244,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150268,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746557',3746557,59.891609,12.558130,450.125793,0.523431,1445,0,0,0,1,6,0,0,244,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149996,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746579',3746579,-107.428101,5.098667,239.118896,1.267471,1445,0,0,0,1,6,0,0,244,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149724,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746630',3746630,189.060593,11.863390,607.536072,-1.305482,1445,0,0,0,1,6,0,0,244,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149452,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82773,'LVD_BNPC_01','w1f2','bnpc3746629',3746629,160.979904,10.423200,445.205414,-0.907699,1445,0,0,0,1,6,0,0,244,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149180,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747388',3747388,-52.163811,-2.028311,119.953003,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147810,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747389',3747389,-86.052368,0.110645,102.987396,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147538,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747390',3747390,-74.317467,-4.983451,25.989620,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147266,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747391',3747391,-33.861969,-6.175569,6.276085,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146994,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747393',3747393,13.815840,0.849448,-43.540058,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146722,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747394',3747394,-25.443001,-6.505634,-66.767128,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146450,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747395',3747395,-66.218620,-2.263651,-110.189796,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146178,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747396',3747396,-92.423927,2.517692,-129.686493,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145906,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747397',3747397,-120.059502,11.096300,-65.332710,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145634,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747398',3747398,-123.346199,11.132750,-62.877190,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145362,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747399',3747399,-135.404602,3.017960,-134.773499,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145090,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747400',3747400,-155.932007,14.084030,-185.687103,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144818,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747401',3747401,-176.806305,20.096081,-127.183998,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144546,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747402',3747402,-182.692200,11.068910,-54.575550,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144274,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747403',3747403,-188.219101,8.602026,-26.668791,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144002,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747404',3747404,-125.142403,-1.327417,12.701530,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143730,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747405',3747405,-142.871094,-0.211552,-0.011758,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143458,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747406',3747406,-188.977707,1.185343,0.288242,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143186,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747407',3747407,-196.063202,-0.991883,44.632591,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142914,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747408',3747408,-198.598099,-1.427130,46.344830,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142642,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747409',3747409,-265.374908,-0.871808,46.644829,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142370,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747410',3747410,-245.222107,0.679796,27.065580,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142098,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747411',3747411,-236.532196,4.119698,-11.326280,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141826,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747413',3747413,-237.229904,7.081615,-22.989599,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141554,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747414',3747414,-238.542206,7.219037,-24.718719,-0.000240,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141282,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747415',3747415,-245.215302,6.500818,-25.125641,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141010,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747417',3747417,-335.459198,7.751451,2.210185,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140738,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747419',3747419,-332.434692,-0.635067,45.192638,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140466,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747420',3747420,-338.391815,2.787159,90.300163,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140194,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747891',3747891,-234.992294,9.310618,-37.905788,-0.000240,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139922,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747893',3747893,-237.711700,8.873294,-42.033760,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139650,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747899',3747899,-214.038300,-30.502831,123.735397,-0.000048,100,0,0,0,1,6,0,0,317,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139384,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747900',3747900,-250.516998,-31.060820,85.115646,-0.000000,101,0,0,0,1,6,0,0,317,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139118,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747904',3747904,-201.968796,-30.857059,117.357803,-0.000000,100,0,0,0,1,6,0,0,317,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138840,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747905',3747905,-183.124893,-31.750071,106.885902,-0.000000,100,0,0,0,1,6,0,0,317,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138568,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747906',3747906,-185.311996,-31.750059,109.415100,-0.000000,100,0,0,0,1,6,0,0,317,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138296,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747907',3747907,-152.843002,-31.750000,109.715103,-0.000000,100,0,0,0,1,6,0,0,317,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138024,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747908',3747908,-166.101105,-31.750000,110.540100,-0.000000,101,0,0,0,1,6,0,0,317,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137758,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747909',3747909,-169.604507,-27.712351,77.843430,-0.000048,101,0,0,0,1,6,0,0,317,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137486,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747910',3747910,-167.071503,-27.177780,76.317528,-0.000048,101,0,0,0,1,6,0,0,317,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137214,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747911',3747911,-210.234406,-30.382589,95.879173,-0.000000,101,0,0,0,1,6,0,0,317,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136942,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747913',3747913,-195.861603,-27.444660,129.920502,-0.000000,101,0,0,0,1,6,0,0,317,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136670,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747914',3747914,-224.566406,-31.750071,110.176003,-0.000000,101,0,0,0,1,6,0,0,317,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136398,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747915',3747915,-263.312103,-31.750090,97.519081,-0.000000,101,0,0,0,1,6,0,0,317,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136126,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747916',3747916,-255.968094,-31.750130,95.789261,-0.000000,100,0,0,0,1,6,0,0,317,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135848,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747919',3747919,-211.436401,-30.614429,97.981651,-0.000000,100,0,0,0,1,6,0,0,317,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135576,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747921',3747921,-244.620895,-28.275660,117.486801,-0.000048,100,0,0,0,1,6,0,0,317,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135304,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747922',3747922,-225.970795,-15.579620,71.709572,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135026,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747923',3747923,-170.891495,-26.165300,72.662949,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134754,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747924',3747924,-154.802902,-29.800900,94.071899,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134482,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747925',3747925,-164.402603,-31.750019,112.296303,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134210,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747927',3747927,-213.131393,-30.063490,125.099403,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133938,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747928',3747928,-234.579193,-29.342421,117.079697,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133666,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747930',3747930,-206.002899,-30.332180,97.422249,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133394,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747931',3747931,-258.774902,-31.750071,93.732712,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133122,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747994',3747994,-93.431030,7.583686,-301.106293,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132850,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747997',3747997,-65.966766,21.859249,-305.947601,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132578,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748004',3748004,-66.655212,20.943001,-309.725586,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132306,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748006',3748006,-38.712181,21.255770,-344.167297,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132034,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748009',3748009,-93.684303,18.821621,-371.862793,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131762,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748015',3748015,-113.144402,27.605829,-397.741913,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131490,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748017',3748017,-112.844398,28.132500,-450.977997,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131218,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748018',3748018,-108.119003,27.149870,-454.027008,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130946,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748020',3748020,-152.178299,27.511971,-419.668915,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130674,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748022',3748022,35.132519,17.855400,-352.433105,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130402,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748394',3748394,65.413780,20.079309,-340.723206,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130130,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748520',3748520,-148.505096,-5.306737,-314.775085,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129858,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748524',3748524,-185.881104,-4.844985,-310.895508,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129586,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748526',3748526,-164.369003,1.507254,-251.882507,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129314,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748528',3748528,-207.412399,17.160610,-247.635193,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129042,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748530',3748530,-229.519104,3.459191,-289.959412,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128770,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748532',3748532,-163.010803,-1.945551,-356.094696,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128498,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748534',3748534,-173.595505,5.841309,-388.489685,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128226,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748537',3748537,-232.440796,-2.339301,-322.417908,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127954,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748553',3748553,-255.836105,7.531438,-290.196289,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127682,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748554',3748554,-246.018097,-2.631598,-372.254608,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127410,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748555',3748555,-236.562103,3.655112,-396.309387,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127138,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748557',3748557,-203.850494,16.277430,-409.920593,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126866,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748559',3748559,-242.042892,18.601339,-425.242401,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126594,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748657',3748657,-207.202301,25.558809,-115.343002,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126322,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748660',3748660,-222.657104,20.702950,-78.345047,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126050,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748662',3748662,-247.438400,20.240339,-67.748871,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125778,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748663',3748663,-230.727005,26.739140,-98.761307,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125506,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748670',3748670,-271.961609,27.969740,-98.954803,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125234,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748672',3748672,-271.661285,23.599831,-70.352722,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124962,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748674',3748674,-231.617004,30.324150,-133.076996,-0.000048,41,0,0,0,1,6,0,0,201,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124690,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748726',3748726,33.854542,6.542700,-211.889801,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124418,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748728',3748728,55.167561,0.798945,-193.606598,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124146,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748729',3748729,69.255318,0.046956,-152.350906,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123874,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748730',3748730,10.055020,5.968488,-132.156097,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123602,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748732',3748732,50.175282,14.921620,-128.489700,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123330,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748734',3748734,76.929573,3.883048,-205.706406,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123058,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748736',3748736,79.198738,3.548813,-202.087204,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122786,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748737',3748737,106.461601,1.818933,-204.985199,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122514,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748738',3748738,140.354401,0.554754,-232.614304,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122242,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748739',3748739,111.391197,0.776695,-238.240707,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121970,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3751325',3751325,-86.401451,-0.314426,-202.187195,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121698,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3751326',3751326,-89.241432,-0.377375,-203.793503,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121426,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3751327',3751327,-54.347431,10.746100,-226.743500,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121154,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3751329',3751329,14.423480,6.148088,-236.752106,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120882,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3751331',3751331,-1.214684,-0.950067,-207.831497,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120610,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3751332',3751332,-12.497190,11.337410,-273.731598,-0.000240,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120338,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3751350',3751350,12.680810,9.512568,-296.489288,-0.000240,41,0,0,0,1,6,0,0,201,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120066,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3751353',3751353,-5.330978,16.424870,-314.262909,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119794,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3751354',3751354,-110.742599,-1.464606,-173.727402,-0.000144,41,0,0,0,1,6,0,0,201,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119522,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747965',3747965,39.420231,19.301970,-356.003815,0.869636,431,0,0,0,1,6,0,0,282,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119268,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747963',3747963,20.322849,15.975690,-350.654205,0.869636,431,0,0,0,1,6,0,0,282,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118996,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747958',3747958,-20.706499,20.599291,-342.888702,0.869636,431,0,0,0,1,6,0,0,282,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118724,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748879',3748879,-129.259201,2.487174,-193.926895,0.869541,431,0,0,0,1,6,0,0,282,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118452,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747955',3747955,-30.148661,20.242010,-347.723907,0.869636,431,0,0,0,1,6,0,0,282,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118180,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747936',3747936,-71.168182,15.618890,-341.319214,0.869636,431,0,0,0,1,6,0,0,282,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117908,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747935',3747935,-120.378502,25.406219,-376.089111,0.869541,431,0,0,0,1,6,0,0,282,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117636,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747933',3747933,-124.520401,25.876591,-384.084900,0.869636,431,0,0,0,1,6,0,0,282,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117364,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747953',3747953,-68.964897,24.845461,-295.047913,0.869636,431,0,0,0,1,6,0,0,282,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117092,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747945',3747945,-104.844803,10.208240,-322.407898,0.869445,431,0,0,0,1,6,0,0,282,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116820,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747937',3747937,-140.945007,34.283039,-443.520813,0.869636,431,0,0,0,1,6,0,0,282,0,0.000000,8,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116548,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747359',3747359,-207.415894,10.971190,-31.418369,-0.558617,431,0,0,0,1,6,0,0,282,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116276,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747358',3747358,-181.261993,6.912290,-21.225349,0.869828,431,0,0,0,1,6,0,0,282,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116004,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747362',3747362,-142.900803,6.271411,-160.784302,0.869636,431,0,0,0,1,6,0,0,282,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115732,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747385',3747385,-374.964294,1.092578,72.868820,0.711155,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115460,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747363',3747363,-153.948898,13.420070,-190.044296,0.869828,431,0,0,0,1,6,0,0,282,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115188,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747347',3747347,-162.133194,17.720350,-97.090424,0.869831,431,0,0,0,1,6,0,0,282,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114916,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747345',3747345,-162.798492,10.177720,-67.887444,0.869828,431,0,0,0,1,6,0,0,282,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114644,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747349',3747349,-170.820297,17.510420,-95.798119,0.204968,431,0,0,0,1,6,0,0,282,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114372,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747356',3747356,-176.280701,8.164456,-26.641380,0.869831,431,0,0,0,1,6,0,0,282,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114100,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747353',3747353,-144.544800,8.164017,-26.941380,0.869831,431,0,0,0,1,6,0,0,282,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113828,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747380',3747380,-350.515015,5.752604,108.384804,0.711155,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113556,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747368',3747368,-228.292801,1.271454,31.448839,0.711226,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113284,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747369',3747369,-281.000000,1.547629,6.098617,0.711226,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113012,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747366',3747366,-162.648407,1.476818,27.867500,0.127034,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112740,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747364',3747364,-199.122604,1.060047,7.769498,-0.558617,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112468,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747365',3747365,-100.182404,-4.169586,5.823180,-0.558617,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112196,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747374',3747374,-362.704590,17.228571,24.585470,0.711226,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111924,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747376',3747376,-337.512299,2.239006,84.820068,0.711226,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111652,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747373',3747373,-367.222809,14.331700,37.588600,0.711226,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111380,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747371',3747371,-289.186615,0.923461,44.489441,0.711226,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111108,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747372',3747372,-331.967499,-0.344346,37.288601,0.711226,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110836,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747344',3747344,-126.726303,9.466410,-79.290817,-1.257293,431,0,0,0,1,6,0,0,282,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110564,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747370',3747370,-292.305786,1.883296,3.669711,0.711226,431,0,0,0,1,6,0,0,282,0,0.000000,7,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110292,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747340',3747340,-58.237549,-4.110259,-107.568703,1.308448,431,0,0,0,1,6,0,0,282,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110020,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747342',3747342,-91.142181,-0.778257,-101.335197,-1.554668,431,0,0,0,1,6,0,0,282,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109748,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747341',3747341,-67.615173,-4.777174,-101.631897,0.451952,431,0,0,0,1,6,0,0,282,0,0.000000,6,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109476,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748407',3748407,-77.690918,8.765988,-234.389694,-0.000144,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109210,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748396',3748396,-140.276199,-3.219701,-317.433502,-0.000336,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108938,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748409',3748409,-50.269390,11.709270,-222.062698,-0.000000,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108666,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748411',3748411,-21.376921,8.231496,-242.911896,-0.000000,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108394,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748410',3748410,-65.652512,8.342214,-211.891998,-0.000000,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108122,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748402',3748402,-72.186493,11.340310,-240.295197,-0.000144,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107850,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748429',3748429,-177.061203,-3.447654,-291.626190,-0.000144,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107578,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748399',3748399,-210.589798,1.083344,-288.624390,-0.000144,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107306,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748428',3748428,-184.704300,-4.704755,-317.082306,-0.000144,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107034,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748397',3748397,-147.234299,-4.593012,-324.147400,-0.000240,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106762,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748413',3748413,-6.975120,11.175980,-282.658691,-0.000000,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106490,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748418',3748418,31.585911,8.951487,-139.193497,-0.000048,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106218,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748417',3748417,95.936577,1.386500,-186.119995,-0.000000,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105946,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748416',3748416,48.714218,0.699683,-174.900604,-0.000000,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105674,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748421',3748421,90.860474,1.763928,-189.065002,-0.000000,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105402,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748420',3748420,34.363049,8.229201,-145.052994,-0.000048,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105130,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748419',3748419,35.112041,16.424919,-113.143204,-0.000000,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104858,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748424',3748424,124.484100,0.743076,-229.449493,-0.000000,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104586,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748425',3748425,89.422256,3.504610,-218.853806,-0.000000,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104314,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748414',3748414,10.056190,8.215180,-250.173004,-0.000000,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104042,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748415',3748415,5.360405,-0.923770,-218.657303,-0.000000,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103770,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748422',3748422,113.054001,1.174898,-202.746704,-0.000048,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103498,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748423',3748423,130.461395,1.093745,-233.497101,-0.000000,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103226,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748430',3748430,-168.688507,-1.968461,-348.439789,-0.000336,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102954,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748567',3748567,-236.289001,19.116409,-424.877502,-0.000240,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102682,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748570',3748570,-254.304306,22.347059,-449.055695,-0.000240,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102410,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748654',3748654,-205.192398,19.296721,-445.294189,-0.000240,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102138,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748566',3748566,-221.473297,17.321730,-412.786896,-0.000240,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101866,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748876',3748876,11.520510,1.022307,-111.986000,-1.130226,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101594,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748564',3748564,-177.168198,14.656220,-411.592987,-0.000240,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101322,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748565',3748565,-215.900406,16.573481,-408.014008,-0.000240,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101050,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747339',3747339,17.013760,3.036498,-38.223900,-1.130130,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100778,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747332',3747332,-80.643967,-0.473077,67.368530,0.380481,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100506,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747336',3747336,-36.911621,-3.830061,32.700039,-1.048779,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100234,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747333',3747333,-86.717056,0.991789,72.831261,0.832820,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99962,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747330',3747330,-88.883842,-0.106860,109.147697,1.123706,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99690,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747338',3747338,-11.550680,0.488563,-28.281300,0.789676,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99418,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747337',3747337,-40.695862,-4.928711,25.589331,-1.130226,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99146,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747331',3747331,-61.120312,0.636424,88.682060,-0.915947,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98874,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748437',3748437,-234.150696,5.014801,-286.084686,-0.000144,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98602,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748436',3748436,-213.360901,-4.497713,-340.979004,-0.000144,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98330,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748438',3748438,-218.334900,17.160500,-255.482300,-0.000144,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98058,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748443',3748443,-212.971405,13.338840,-260.496307,-0.000144,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97786,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748499',3748499,-178.949402,6.440631,-256.865692,-0.000336,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97514,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748434',3748434,-192.189301,-4.726788,-315.063293,-0.000144,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97242,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748431',3748431,-142.835693,-1.140769,-353.109894,-0.000144,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96970,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748479',3748479,-151.282501,-4.870804,-286.887787,-0.000336,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96698,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748433',3748433,-167.528793,6.179857,-382.681000,-0.000240,432,0,0,0,1,6,0,0,294,0,0.000000,9,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96426,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748412',3748412,-16.418360,6.341013,-249.044601,-0.000000,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96154,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3782203',3782203,-10.133880,-3.109667,-92.309822,-1.130226,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95882,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3782206',3782206,-5.820518,-2.317021,-88.935387,-1.130322,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95610,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3782208',3782208,-16.094000,-4.734633,-82.939987,-1.130417,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95338,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3782210',3782210,-16.866150,-3.490384,-51.955761,-1.130417,432,0,0,0,1,6,0,0,294,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95066,6,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748550',3748550,-242.828506,-3.567687,-364.035309,0.886524,197,0,0,0,1,6,0,0,293,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94800,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748552',3748552,-213.087494,1.112077,-382.537415,0.886524,197,0,0,0,1,6,0,0,293,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94528,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748545',3748545,-263.308685,4.237235,-309.758392,1.093335,197,0,0,0,1,6,0,0,293,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94256,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748551',3748551,-250.630707,-3.725200,-363.735291,0.886524,197,0,0,0,1,6,0,0,293,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748549',3748549,-240.737198,1.345172,-393.418396,0.105317,197,0,0,0,1,6,0,0,293,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93712,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748546',3748546,-252.162598,0.152196,-318.392395,1.563720,197,0,0,0,1,6,0,0,293,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93440,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748538',3748538,-251.794006,-1.267901,-386.990295,0.665940,197,0,0,0,0,6,0,0,293,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93168,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748548',3748548,-251.430496,-2.982757,-348.143311,1.563720,197,0,0,0,1,6,0,0,293,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92896,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748543',3748543,-272.222107,0.687642,-325.399811,1.543834,197,0,0,0,0,6,0,0,293,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92624,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748542',3748542,-234.040207,-0.107224,-383.030914,0.034772,197,0,0,0,0,6,0,0,293,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92352,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748852',3748852,9.592600,-6.750232,107.837402,-1.021044,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92086,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747028',3747028,-73.794739,-6.750006,155.086899,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91814,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747037',3747037,-81.662231,-6.750007,162.451996,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91542,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747042',3747042,-100.621399,-6.750030,133.779007,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91270,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747034',3747034,-88.289063,-6.750033,145.505707,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90998,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3748850',3748850,12.774460,-6.750232,111.257401,0.049522,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90726,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747033',3747033,-84.128677,-6.750047,148.117004,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90454,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747018',3747018,-6.179034,-6.750058,138.765106,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90182,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747009',3747009,3.375875,-6.751163,164.669601,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89910,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747006',3747006,-1.016211,-6.750022,160.127197,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89638,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747010',3747010,5.926142,-6.750027,161.728195,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89366,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747012',3747012,22.984619,-6.750012,165.561600,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89094,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747015',3747015,30.818211,-6.750096,148.130096,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88822,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747003',3747003,-38.858761,-6.750058,155.119003,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88550,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3746997',3746997,-40.889229,-6.750034,159.270004,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88278,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747022',3747022,-52.276199,-6.750027,169.793900,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88006,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747019',3747019,-2.610643,-6.750058,141.990707,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87734,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747021',3747021,-15.651240,-6.750003,122.209503,-0.000048,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87462,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747004',3747004,-21.989389,-6.750032,151.563995,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,5,1,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87190,6,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747870',3747870,-266.262207,26.413910,-80.013046,-0.251123,771,0,0,0,0,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86924,2,0,0,0,18,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747873',3747873,-288.302704,28.840969,-91.487991,0.825605,771,0,0,0,1,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86652,2,0,0,0,18,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747867',3747867,-243.216904,18.379009,-62.623611,0.825605,771,0,0,0,1,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86380,2,0,0,0,18,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747868',3747868,-255.936401,24.723961,-77.803009,0.825605,771,0,0,0,1,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86108,2,0,0,0,18,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747869',3747869,-267.446411,25.988930,-78.509064,0.625911,771,0,0,0,0,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85836,2,0,0,0,18,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747864',3747864,-228.529297,20.575800,-76.218086,0.825605,771,0,0,0,1,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85564,2,0,0,0,18,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747865',3747865,-241.385498,18.354990,-63.139381,0.825605,771,0,0,0,1,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85292,2,0,0,0,18,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747884',3747884,-251.270294,27.969730,-102.616898,-0.780760,771,0,0,0,0,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85020,2,0,0,0,18,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747886',3747886,-248.655701,28.000000,-96.725998,0.825605,771,0,0,0,1,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84748,2,0,0,0,18,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747877',3747877,-234.919403,27.970850,-103.431198,1.203802,771,0,0,0,0,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84476,2,0,0,0,18,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747881',3747881,-254.081406,28.000000,-102.002197,1.112371,771,0,0,0,0,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84204,2,0,0,0,18,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747876',3747876,-257.572906,27.938169,-88.810738,0.825605,771,0,0,0,1,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83932,2,0,0,0,18,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747874',3747874,-273.846008,27.999920,-103.128998,0.825605,771,0,0,0,1,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83660,2,0,0,0,18,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747889',3747889,-248.153000,28.470831,-127.263100,0.825605,771,0,0,0,1,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83388,2,0,0,0,18,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747880',3747880,-245.382996,27.999990,-107.453003,0.825605,771,0,0,0,1,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83116,2,0,0,0,18,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747854',3747854,-210.061996,22.349720,-98.801086,1.306890,771,0,0,0,1,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82844,2,0,0,0,18,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747855',3747855,-199.564606,24.777719,-122.897400,0.825605,771,0,0,0,1,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82572,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747883',3747883,-258.959106,28.000000,-105.536201,0.825605,771,0,0,0,1,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82300,2,0,0,0,18,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747853',3747853,-210.928299,22.971910,-101.417801,1.306890,771,0,0,0,1,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82028,2,0,0,0,18,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747856',3747856,-217.284500,27.674749,-122.597397,0.379741,771,0,0,0,0,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81756,2,0,0,0,18,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747860',3747860,-223.520599,24.171949,-95.828552,0.825605,771,0,0,0,1,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81484,2,0,0,0,18,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747858',3747858,-217.212097,28.120930,-124.432098,0.374145,771,0,0,0,0,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81212,2,0,0,0,18,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747859',3747859,-208.813400,29.458891,-133.137894,0.825605,771,0,0,0,1,6,0,0,266,0,0.000000,9,0,90,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80940,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3751224',3751224,25.641180,19.827999,-262.593201,0.894477,736,0,0,0,0,6,0,0,254,0,0.000000,6,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80674,4,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3746984',3746984,30.218941,19.809231,-261.464111,-1.071062,736,0,0,0,0,6,0,0,254,0,0.000000,6,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80402,4,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3746988',3746988,37.782612,19.928471,-277.190186,0.027085,736,0,0,0,1,6,0,0,254,0,0.000000,6,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80130,4,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3746992',3746992,32.101620,19.979660,-229.510406,0.431952,736,0,0,0,0,6,0,0,254,0,0.000000,6,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79858,4,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3751223',3751223,27.075630,19.825541,-258.167999,0.242651,735,0,0,0,0,6,0,0,246,0,0.000000,6,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79592,4,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3746983',3746983,47.837040,20.883829,-297.468597,0.267827,735,0,0,0,1,6,0,0,246,0,0.000000,6,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79320,4,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3746985',3746985,45.726398,19.952000,-251.705505,-0.247694,735,0,0,0,1,6,0,0,246,0,0.000000,6,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79048,4,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3746993',3746993,32.891548,19.908630,-233.898605,-0.273733,735,0,0,0,0,6,0,0,246,0,0.000000,6,0,30,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78776,4,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747636',3747636,-113.067703,0.190863,-235.496902,-1.136284,1445,0,0,0,1,6,0,0,244,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78444,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747635',3747635,-101.580002,3.185857,-122.629700,-0.659435,1445,0,0,0,1,6,0,0,244,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78172,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747975',3747975,-138.811401,27.237310,-416.372986,1.176437,1445,0,0,0,1,6,0,0,244,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77900,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82782,'LVD_BNPC_02','w1f2','bnpc3747637',3747637,-8.689189,-2.987621,-71.427528,-1.543399,1445,0,0,0,1,6,0,0,244,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77628,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748904',3748904,176.132706,4.710299,-187.304703,-0.000000,197,0,0,0,1,6,0,0,292,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76728,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748905',3748905,158.969894,2.732193,-177.146698,-0.000000,197,0,0,0,1,6,0,0,292,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76456,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748906',3748906,191.563705,2.176362,-156.220703,-0.000000,197,0,0,0,1,6,0,0,292,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76184,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748907',3748907,196.388000,3.012704,-160.659393,-0.000000,197,0,0,0,1,6,0,0,292,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75912,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748908',3748908,239.061295,5.923066,-187.296494,-0.000000,197,0,0,0,1,6,0,0,292,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75640,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748910',3748910,269.473785,9.044052,-198.574799,-0.000000,197,0,0,0,1,6,0,0,292,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75368,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748913',3748913,263.650208,11.289570,-202.903397,-0.000000,197,0,0,0,1,6,0,0,292,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75096,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748915',3748915,227.710297,-1.205510,-113.847603,-0.000048,197,0,0,0,1,6,0,0,292,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74824,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748923',3748923,231.280899,-1.632762,-106.462196,-0.000048,197,0,0,0,1,6,0,0,292,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74552,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748926',3748926,200.610306,-1.358100,-103.471497,-0.000144,197,0,0,0,1,6,0,0,292,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74280,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748930',3748930,207.171707,-1.144474,-84.519768,-0.000144,197,0,0,0,1,6,0,0,292,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74008,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748932',3748932,173.937500,1.205416,-81.071228,-0.000240,197,0,0,0,1,6,0,0,292,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73736,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748934',3748934,148.809097,3.036994,-133.465897,-0.000000,197,0,0,0,1,6,0,0,292,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73464,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748937',3748937,169.787094,0.045730,-115.892303,-0.000144,197,0,0,0,1,6,0,0,292,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73192,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748941',3748941,145.535507,4.850001,-129.478104,-0.000000,197,0,0,0,1,6,0,0,292,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72920,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748942',3748942,119.305603,3.909301,-132.622696,-0.000000,197,0,0,0,1,6,0,0,292,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72648,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748943',3748943,109.916496,3.556486,-129.240601,-0.000000,197,0,0,0,1,6,0,0,292,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72376,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748944',3748944,224.505905,-2.975556,-56.412651,-0.000144,197,0,0,0,1,6,0,0,292,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72104,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748947',3748947,281.825989,-9.100459,2.598387,-0.000048,197,0,0,0,1,6,0,0,292,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71832,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748949',3748949,288.471710,-11.734230,-3.952133,-0.000144,197,0,0,0,1,6,0,0,292,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71560,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748950',3748950,278.492310,-14.114640,-37.338871,-0.000240,197,0,0,0,1,6,0,0,292,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71288,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748953',3748953,324.544098,-13.504280,-33.615669,-0.000432,197,0,0,0,1,6,0,0,292,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71016,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748954',3748954,329.030212,-13.565320,-29.770399,-0.000336,197,0,0,0,1,6,0,0,292,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70744,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748955',3748955,356.861603,-15.283880,-44.573921,-0.000336,197,0,0,0,1,6,0,0,292,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70472,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748956',3748956,347.890411,-17.502140,8.102493,-0.000240,197,0,0,0,1,6,0,0,292,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70200,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748968',3748968,400.991608,-12.783140,-32.000870,-0.000144,197,0,0,0,1,6,0,0,292,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69928,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748969',3748969,366.536896,-16.189871,-58.854092,-0.000240,197,0,0,0,1,6,0,0,292,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69656,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748970',3748970,415.234192,-14.170130,-62.547722,-0.000144,197,0,0,0,1,6,0,0,292,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69384,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748972',3748972,432.695709,-16.065250,-112.148399,-0.000144,197,0,0,0,1,6,0,0,292,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69112,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748974',3748974,436.729889,-14.846640,-118.392700,-0.000144,197,0,0,0,1,6,0,0,292,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68840,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748976',3748976,441.284088,-15.576560,-96.939430,-0.000144,197,0,0,0,1,6,0,0,292,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68568,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748980',3748980,384.960602,-17.809891,-96.639427,-0.000144,197,0,0,0,1,6,0,0,292,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68296,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748986',3748986,389.761108,-17.502140,-101.701401,-0.000240,197,0,0,0,1,6,0,0,292,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68024,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748990',3748990,391.353210,-17.460060,-135.489304,-0.000144,197,0,0,0,1,6,0,0,292,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67752,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748967',3748967,142.873703,16.403400,-46.097549,-0.000144,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67510,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748962',3748962,150.469193,19.150021,-76.524040,-0.000144,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67238,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748946',3748946,186.449905,4.165666,-17.319040,-0.000144,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66966,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748945',3748945,175.332993,6.489766,-41.243931,-0.000144,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66694,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748964',3748964,117.082397,20.462299,-97.062683,-0.000240,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66422,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748963',3748963,146.044098,19.581060,-88.241302,-0.000144,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66150,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749004',3749004,172.667496,7.527369,-42.066410,-0.000144,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65878,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749018',3749018,187.591705,4.184689,-15.078180,-0.000144,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65606,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749020',3749020,183.022797,5.398401,-15.566580,-0.000144,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65334,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749031',3749031,202.090393,0.810960,-15.619060,-0.000144,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65062,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749036',3749036,199.896393,1.465439,-15.630680,-0.000144,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64790,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749047',3749047,143.173706,15.773830,-43.893311,-0.000144,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64518,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749053',3749053,153.171097,16.202070,-56.630402,-0.000144,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64246,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749059',3749059,151.803696,19.216890,-78.848953,-0.000144,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63974,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749061',3749061,153.666504,19.040461,-76.088043,-0.000144,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63702,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749071',3749071,144.894501,19.988741,-106.295998,-0.000144,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63430,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749073',3749073,142.185501,20.171949,-108.059097,-0.000144,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63158,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749080',3749080,115.432404,20.583151,-99.077271,-0.000240,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62886,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749083',3749083,114.653099,20.724030,-96.549553,-0.000240,175,0,0,0,1,6,0,0,288,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62614,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749168',3749168,312.979492,-19.718349,-75.451233,-0.000000,26,0,0,0,1,6,0,0,216,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62252,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749170',3749170,261.730194,-19.718349,-82.128349,0.946046,26,0,0,0,1,6,0,0,216,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61980,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749172',3749172,274.699402,-19.718349,-117.167198,-0.698202,26,0,0,0,1,6,0,0,216,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61708,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749173',3749173,291.363098,-19.718349,-136.065598,-0.822558,26,0,0,0,1,6,0,0,216,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61436,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749174',3749174,342.729797,-19.718349,-131.071106,1.250882,26,0,0,0,1,6,0,0,216,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61164,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749175',3749175,353.724091,-19.718349,-85.215424,0.460224,26,0,0,0,1,6,0,0,216,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60892,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749176',3749176,333.410095,-19.718349,-136.385498,0.432146,26,0,0,0,1,6,0,0,216,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60620,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749177',3749177,319.949188,-19.718349,-179.156403,0.689246,26,0,0,0,1,6,0,0,216,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60348,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749178',3749178,308.689301,-19.718349,-60.698299,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60142,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749180',3749180,311.695190,-19.718349,-58.346031,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59870,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749183',3749183,330.312012,-19.729959,-70.267838,-0.000048,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59598,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749186',3749186,296.119995,-19.718349,-90.360474,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59326,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749187',3749187,293.415802,-19.718349,-93.414520,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59054,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749188',3749188,290.216614,-19.718349,-87.193253,-0.000048,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58782,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749189',3749189,258.481415,-19.718349,-104.208000,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58510,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749190',3749190,252.984802,-19.718349,-103.640099,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58238,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749191',3749191,257.907715,-19.718349,-125.303101,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57966,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749192',3749192,286.451904,-19.718349,-129.699097,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57694,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749193',3749193,282.557892,-19.718349,-147.388199,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57422,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749195',3749195,310.290314,-19.718349,-172.318802,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57150,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749196',3749196,313.118591,-19.718349,-169.401993,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56878,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749197',3749197,310.587006,-19.718349,-142.173401,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56606,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749199',3749199,350.892212,-19.718349,-150.816696,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56334,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749200',3749200,368.409302,-19.718349,-144.276596,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56062,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749201',3749201,364.918213,-19.718349,-140.378006,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55790,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749202',3749202,359.256592,-19.718349,-116.557503,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55518,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749203',3749203,346.291199,-19.718349,-105.267899,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55246,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749204',3749204,371.776215,-19.718349,-104.967796,-0.000000,302,0,0,0,1,6,0,0,308,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54974,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748749',3748749,145.884293,-1.750025,-212.434097,-0.000000,160,0,0,0,1,6,0,0,289,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54732,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748752',3748752,136.108398,-1.750136,-190.396194,0.935217,160,0,0,0,1,6,0,0,289,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54460,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748753',3748753,149.821106,-1.750019,-214.231293,-0.000000,160,0,0,0,1,6,0,0,289,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54188,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748755',3748755,84.854179,-1.750136,-139.436905,0.935217,160,0,0,0,1,6,0,0,289,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53916,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748758',3748758,72.003227,-1.750024,-104.510002,-0.283573,160,0,0,0,1,6,0,0,289,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53644,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748760',3748760,68.467178,-1.754834,-99.778793,-0.283503,160,0,0,0,1,6,0,0,289,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53372,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748763',3748763,78.693497,-3.269199,-32.994751,0.217445,160,0,0,0,1,6,0,0,289,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53100,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748765',3748765,68.721947,-2.620518,-49.466751,0.344001,160,0,0,0,1,6,0,0,289,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52828,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748770',3748770,166.277496,-1.754834,-241.382507,0.799791,160,0,0,0,1,6,0,0,289,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52556,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748772',3748772,187.884293,-1.754834,-278.858704,1.236120,160,0,0,0,1,6,0,0,289,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52284,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748773',3748773,194.766006,-1.750224,-280.991394,-0.190840,160,0,0,0,1,6,0,0,289,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52012,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3748775',3748775,71.615707,-3.621419,-26.438259,-0.857365,160,0,0,0,1,6,0,0,289,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51740,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749211',3749211,123.998703,28.662880,-17.350370,0.451093,352,0,0,0,0,6,0,0,326,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51474,1,0,0,0,0,30072,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749213',3749213,121.332397,28.612700,-23.583090,-0.000144,353,0,0,0,1,6,0,0,330,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51208,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749215',3749215,161.791397,28.213881,-14.786040,1.102566,353,0,0,0,0,6,0,0,330,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50936,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749218',3749218,137.021805,28.624880,-23.498341,-0.000144,352,0,0,0,1,6,0,0,326,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50658,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749219',3749219,107.272903,29.216610,-36.643101,-0.000144,353,0,0,0,1,6,0,0,330,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50392,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749222',3749222,149.401093,28.610600,-15.610050,-1.528490,353,0,0,0,0,6,0,0,330,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50120,1,0,0,0,0,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749223',3749223,148.790604,28.610600,-15.152280,0.537956,352,0,0,0,0,6,0,0,326,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49842,1,0,0,0,0,30082,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749225',3749225,122.827698,28.633169,-37.359280,-1.188853,352,0,0,0,1,6,0,0,326,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49570,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749226',3749226,104.128304,29.031771,-49.110481,-0.000144,353,0,0,0,1,6,0,0,330,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49304,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749235',3749235,93.149368,29.525270,-84.964371,-0.000048,197,0,0,0,1,6,0,0,292,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749239',3749239,67.895287,30.429380,-70.394157,-0.000048,197,0,0,0,1,6,0,0,292,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48712,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749240',3749240,65.047180,30.255060,-77.079674,-0.000048,197,0,0,0,1,6,0,0,292,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48440,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749241',3749241,44.682369,28.535789,-84.546478,-0.000048,197,0,0,0,1,6,0,0,292,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48168,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749242',3749242,66.806038,29.155720,-109.342300,-0.000048,197,0,0,0,1,6,0,0,292,0,0.000000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47896,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749245',3749245,204.538101,7.350389,-181.293304,-0.000000,38,0,0,0,1,6,0,0,279,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47678,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749246',3749246,174.853104,5.172761,-202.929794,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47406,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749247',3749247,263.069611,8.545942,-196.205307,-0.000000,38,0,0,0,1,6,0,0,279,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47134,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749252',3749252,231.435593,1.119558,-165.006302,-0.000000,38,0,0,0,1,6,0,0,279,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46862,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749253',3749253,173.375305,2.771811,-168.286102,-0.000000,38,0,0,0,1,6,0,0,279,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46590,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749255',3749255,157.126694,3.796749,-121.347397,-0.000000,38,0,0,0,1,6,0,0,279,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46318,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749257',3749257,115.770103,4.592918,-127.306099,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46046,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749275',3749275,161.730301,-1.754834,-239.398804,-0.000144,38,0,0,0,1,6,0,0,279,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45774,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749277',3749277,185.534393,-1.754834,-265.705414,-0.000144,38,0,0,0,1,6,0,0,279,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45502,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749279',3749279,210.539902,-1.750040,-309.299408,-0.000144,38,0,0,0,1,6,0,0,279,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45230,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749284',3749284,211.839401,-1.750030,-306.582611,-0.000144,38,0,0,0,1,6,0,0,279,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44958,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749290',3749290,143.733002,-1.750026,-193.558701,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44686,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749297',3749297,144.345306,0.955883,-165.104004,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,10,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44414,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749310',3749310,216.777496,0.994229,-97.056053,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44142,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749312',3749312,169.933899,2.409006,-84.351593,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43870,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749314',3749314,219.378906,-3.433327,-46.921539,-0.000144,38,0,0,0,1,6,0,0,279,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43598,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749321',3749321,277.040192,-7.191899,-0.686294,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43326,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749327',3749327,331.429810,-13.937110,-37.954071,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43054,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749332',3749332,384.322205,-19.359289,-5.627488,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42782,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749336',3749336,382.853088,-20.412571,-0.889114,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42510,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749338',3749338,359.951508,-16.405090,-60.846310,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42238,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749343',3749343,451.404602,-11.420970,-118.535599,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41966,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749351',3749351,384.249603,-17.667879,-125.562897,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,13,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41694,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749357',3749357,297.316589,-19.718349,-70.108559,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41422,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749359',3749359,289.558197,-19.718349,-103.097801,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41150,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749362',3749362,240.405807,-18.104980,-89.540627,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40878,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749364',3749364,283.065491,-19.718349,-125.167999,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,12,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40606,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749367',3749367,267.129913,-18.000000,-169.891296,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40334,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749369',3749369,264.685486,-18.000000,-168.247101,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40062,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749370',3749370,316.532898,-19.718349,-157.003693,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39790,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749371',3749371,353.619995,-19.718349,-109.615997,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39518,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749373',3749373,339.318695,-19.718349,-85.941147,-0.000048,38,0,0,0,1,6,0,0,279,0,0.000000,14,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39246,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749376',3749376,165.671799,11.656820,-52.356880,-0.000144,38,0,0,0,1,6,0,0,279,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38974,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749380',3749380,172.813995,6.716133,-26.881840,-0.000144,38,0,0,0,1,6,0,0,279,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38702,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749388',3749388,191.772202,-0.202088,-35.283329,-0.000144,38,0,0,0,1,6,0,0,279,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38430,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749390',3749390,136.510300,18.512560,-57.480461,-0.000144,38,0,0,0,1,6,0,0,279,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38158,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749392',3749392,133.468002,19.606770,-81.872276,-0.000144,38,0,0,0,1,6,0,0,279,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37886,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749396',3749396,128.184402,20.219101,-102.714104,-0.000144,38,0,0,0,1,6,0,0,279,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37614,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749397',3749397,116.821999,23.443171,-63.701351,-0.000144,38,0,0,0,1,6,0,0,279,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37342,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749399',3749399,86.653412,30.354231,-83.224442,-0.000144,38,0,0,0,1,6,0,0,279,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37070,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749402',3749402,86.953407,29.540970,-103.119400,-0.000144,38,0,0,0,1,6,0,0,279,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36798,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (82794,'LVD_BNPC_03','w1f2','bnpc3749404',3749404,58.939091,30.914900,-69.530090,-0.000144,38,0,0,0,1,6,0,0,279,0,0.000000,11,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36526,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98358,'LVD_easter_2014','w1f2','bnpc4621827',4621827,-293.653107,18.424400,-380.671600,1.515371,2770,0,0,0,0,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22760,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85958,'LVD_guard_01','w1f2','bnpc4057631',4057631,-117.387497,15.659340,316.159485,0.669569,795,0,0,0,0,6,0,0,1277,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22414,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85958,'LVD_guard_01','w1f2','bnpc4057642',4057642,32.356911,15.912200,575.715027,1.501795,797,0,0,0,0,6,0,0,1277,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22148,5,0,0,0,0,30053,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85958,'LVD_guard_01','w1f2','bnpc4057659',4057659,-26.174540,-2.337916,-130.147400,-0.872006,794,0,0,0,0,6,0,0,1276,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21882,5,0,0,0,0,30052,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85958,'LVD_guard_01','w1f2','bnpc4057662',4057662,7.597365,-2.072273,-178.519897,1.300859,794,0,0,0,0,6,0,0,1276,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21610,5,0,0,0,0,30054,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80720,'Behest_b153_01','w1f2','bnpc3538835',3538835,-203.662201,-29.800900,92.454353,1.430507,832,0,0,0,0,6,0,0,1258,0,0.000000,17,0,120,1,0,1,0,80,20,1,1,0,1,1,0.000000,1.000000,106348,1,1,200,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80720,'Behest_b153_01','w1f2','bnpc3514219',3514219,-210.242599,-31.706190,113.453697,0.068966,835,0,0,0,1,6,0,0,289,0,0.000000,12,0,120,1,0,1,0,80,20,1,1,0,1,0,0.000000,1.000000,105854,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80720,'Behest_b153_01','w1f2','bnpc3538837',3538837,-200.991394,-30.279030,96.762779,-0.198174,834,0,0,0,0,6,0,0,1257,0,0.000000,15,1,120,1,0,1,0,50,20,1,1,0,1,1,0.000000,1.000000,105588,1,0,200,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80720,'Behest_b153_01','w1f2','bnpc3538838',3538838,-208.620895,-30.314650,95.450523,1.138423,834,0,0,0,0,6,0,0,1257,0,0.000000,15,1,120,1,0,1,0,50,20,1,1,0,1,1,0.000000,1.000000,105316,1,0,200,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80720,'Behest_b153_01','w1f2','bnpc3538839',3538839,-196.612503,-29.984011,93.308838,-1.292303,834,0,0,0,0,6,0,0,1257,0,0.000000,15,1,120,1,0,1,0,50,20,1,1,0,1,1,0.000000,1.000000,105044,1,0,200,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80720,'Behest_b153_01','w1f2','bnpc3538840',3538840,-210.833893,-30.014530,90.623291,0.934160,834,0,0,0,0,6,0,0,1257,0,0.000000,15,1,120,1,0,1,0,50,20,1,1,0,1,1,0.000000,1.000000,104772,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80720,'Behest_b153_01','w1f2','bnpc3538841',3538841,-197.939606,-29.539989,88.614464,-0.745478,834,0,0,0,0,6,0,0,1257,0,0.000000,15,1,120,1,0,1,0,50,20,1,1,0,1,1,0.000000,1.000000,104500,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80720,'Behest_b153_01','w1f2','bnpc3538842',3538842,-208.193695,-29.595381,86.752892,-0.000048,834,0,0,0,0,6,0,0,1257,0,0.000000,15,1,120,1,0,1,0,50,20,1,1,0,1,1,0.000000,1.000000,104228,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80720,'Behest_b153_01','w1f2','bnpc4098240',4098240,-276.098999,-31.750010,93.108551,-0.000000,1130,0,0,0,1,6,0,0,116,0,0.000000,17,0,120,1,0,0,0,20,20,1,1,0,1,0,0.000000,1.000000,103962,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87206,'FATE_003','w1f2','bnpc4145248',4145248,-9.755418,-5.000006,209.329102,-1.208713,1272,0,0,0,0,6,0,0,870,0,0.000000,5,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,97692,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87206,'FATE_003','w1f2','bnpc4145853',4145853,-20.684601,-5.000000,209.763504,1.463637,1178,0,0,0,0,6,0,0,1341,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,97114,1,0,0,0,0,30187,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87210,'FATE_006','w1f2','bnpc4104327',4104327,-50.575008,-4.463549,133.041000,0.498236,1214,0,0,0,0,6,0,0,1352,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,93856,1,0,0,0,0,30139,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87212,'FATE_007','w1f2','bnpc4184469',4184469,-78.109550,-12.768430,-41.739841,1.496246,1133,0,0,0,0,6,0,0,1367,0,0.000000,7,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,93406,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87212,'FATE_007','w1f2','bnpc4186407',4186407,-110.004898,-6.204913,-0.561654,1.505812,1273,0,0,0,0,6,0,0,871,0,0.000000,7,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,90644,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87213,'FATE_008','w1f2','bnpc4104388',4104388,-102.922096,12.988790,-33.890320,-0.867000,1200,0,0,0,0,6,0,0,1277,0,0.000000,3,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,88014,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87290,'FATE_009','w1f2','bnpc4107975',4107975,-261.013000,27.999990,-111.215599,-0.000000,1274,0,0,0,1,6,0,0,872,0,0.000000,9,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,87484,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87291,'FATE_010','w1f2','bnpc4118457',4118457,363.843292,-17.555140,-71.394783,-0.331613,1298,0,0,0,0,6,0,0,1325,0,0.000000,14,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,86366,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87292,'FATE_011','w1f2','bnpc4105942',4105942,80.796806,0.494069,-245.757706,-0.000000,1299,0,0,0,0,6,0,0,1348,0,0.000000,10,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,83876,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87302,'FATE_012','w1f2','bnpc4106014',4106014,-122.832298,0.097718,-241.491898,-0.000000,1200,0,0,0,1,6,0,0,1277,0,0.000000,5,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,81542,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87305,'FATE_014','w1f2','bnpc4106038',4106038,118.021400,23.108009,-63.852428,-0.000000,1290,0,0,0,0,6,0,0,520,0,0.000000,10,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,80478,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (88781,'FATE_016','w1f2','bnpc4121899',4121899,-252.203506,-3.104654,45.441051,-0.890118,1203,0,0,0,1,6,0,0,1277,0,0.000000,3,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,77624,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87308,'FATE_018','w1f2','bnpc4107977',4107977,350.043091,-19.437941,-104.617897,-0.000000,1275,0,0,0,1,6,0,0,873,0,0.000000,14,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,77082,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87214,'FATE_019','w1f2','bnpc4104695',4104695,8.444868,17.999990,-382.422485,-0.000000,470,0,0,0,1,6,0,0,450,0,0.000000,7,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,76020,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87309,'FATE_022','w1f2','bnpc4107978',4107978,-162.224396,-31.032610,100.989098,-0.000000,1276,0,0,0,1,6,0,0,874,0,0.000000,7,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,74358,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87218,'FATE_026','w1f2','bnpc4123889',4123889,-215.769104,-4.277626,-333.358307,-0.000000,1277,0,0,0,1,6,0,0,875,0,0.000000,12,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,73944,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102752,'FATE_CNY_2015_01','w1f2','bnpc4867704',4867704,169.575897,11.057670,457.056305,-0.667070,3112,0,0,0,1,6,0,0,2908,0,0.000000,5,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,73530,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96564,'FATE_DQX_01_01','w1f2','bnpc4492724',4492724,-163.537796,-31.749981,112.221298,-0.657881,2310,0,0,0,1,6,0,0,2221,0,0.000000,7,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,73184,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93917,'FATE_Firefall_2013_01','w1f2','bnpc4325201',4325201,141.496094,8.057353,425.306396,0.785398,2227,0,0,0,0,6,0,0,1807,0,0.000000,5,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,70786,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93917,'FATE_Firefall_2013_01','w1f2','bnpc4325202',4325202,201.547104,13.391170,424.466705,-0.715585,2227,0,0,0,0,6,0,0,1807,0,0.000000,5,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,70514,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93917,'FATE_Firefall_2013_01','w1f2','bnpc4325203',4325203,201.164307,14.281550,487.500488,-0.733038,2227,0,0,0,0,6,0,0,1807,0,0.000000,5,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,70242,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93917,'FATE_Firefall_2013_01','w1f2','bnpc4325204',4325204,143.389893,12.081460,489.949402,0.715585,2227,0,0,0,0,6,0,0,1807,0,0.000000,5,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,69970,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93917,'FATE_Firefall_2013_01','w1f2','bnpc4325200',4325200,171.437195,11.140840,457.302704,-0.000000,2087,0,0,0,0,6,0,0,1641,0,0.000000,6,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,69392,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97164,'FATE_XMAS_2013_01','w1f2','bnpc4536560',4536560,170.975006,11.061130,456.463287,-1.175733,2440,0,0,0,0,6,0,0,2329,0,0.000000,10,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,68418,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97164,'FATE_XMAS_2013_01','w1f2','bnpc4536561',4536561,158.635101,11.704020,471.679901,-0.704746,2441,0,0,0,1,6,0,0,2331,0,0.000000,1,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,68152,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85679,'QBClsPgl150_001','w1f2','bnpc4081071',4081071,-241.199402,6.668152,-23.697269,-0.128808,694,0,0,0,8,6,0,0,823,0,0.010000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67178,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85679,'QBClsPgl150_001','w1f2','bnpc4081077',4081077,-258.326202,3.562956,-11.386780,1.379428,692,0,0,0,0,6,0,0,1305,0,0.010000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66912,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85679,'QBClsPgl150_001','w1f2','bnpc4081078',4081078,-257.782593,3.722004,-12.257930,1.350717,692,0,0,0,0,6,0,0,1305,0,0.010000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66640,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85679,'QBClsPgl150_001','w1f2','bnpc4081080',4081080,-240.680496,8.224609,-34.195499,0.085952,692,0,0,0,0,6,0,0,1305,0,0.010000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66368,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85679,'QBClsPgl150_001','w1f2','bnpc4081081',4081081,-227.669601,2.308003,1.101779,-0.021284,692,0,0,0,0,6,0,0,1305,0,0.010000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66096,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85679,'QBClsPgl150_001','w1f2','bnpc4081082',4081082,-227.605896,2.436257,-0.098826,-0.021284,692,0,0,0,0,6,0,0,1305,0,0.010000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65824,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85679,'QBClsPgl150_001','w1f2','bnpc4081099',4081099,-228.018600,2.222583,1.639395,-0.154838,692,0,0,0,0,6,0,0,1305,0,0.010000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65552,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85679,'QBClsPgl150_001','w1f2','bnpc4081100',4081100,-227.208801,2.418165,0.079764,-0.154838,692,0,0,0,0,6,0,0,1305,0,0.010000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65280,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85679,'QBClsPgl150_001','w1f2','bnpc4081102',4081102,-226.098694,2.671470,-1.790578,-0.099806,691,0,0,0,0,6,0,0,932,0,0.010000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65014,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85679,'QBClsPgl150_001','w1f2','bnpc4081103',4081103,-227.741302,2.365154,0.643722,-0.099806,691,0,0,0,0,6,0,0,932,0,0.010000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64742,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85679,'QBClsPgl150_001','w1f2','bnpc4081104',4081104,-267.364685,4.336208,-11.283750,0.169891,690,0,0,0,0,6,0,0,262,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64476,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85679,'QBClsPgl150_001','w1f2','bnpc4081105',4081105,-266.773193,4.425982,-12.135990,0.169891,690,0,0,0,0,6,0,0,262,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64204,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85679,'QBClsPgl150_001','w1f2','bnpc4081113',4081113,-242.707901,1.102589,12.551180,-0.024256,691,0,0,0,0,6,0,0,932,0,0.010000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63926,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85679,'QBClsPgl150_001','w1f2','bnpc4081114',4081114,-242.238098,1.146075,12.655350,-0.024256,691,0,0,0,0,6,0,0,932,0,0.010000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63654,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85679,'QBClsPgl150_001','w1f2','bnpc4081115',4081115,-243.335602,1.076843,13.045230,-0.024256,691,0,0,0,0,6,0,0,932,0,0.010000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63382,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85679,'QBClsPgl150_001','w1f2','bnpc4081116',4081116,-241.931793,1.144348,12.375060,-0.024256,691,0,0,0,0,6,0,0,932,0,0.010000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63110,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85679,'QBClsPgl150_001','w1f2','bnpc4081117',4081117,-224.505997,5.233826,-12.344600,-0.024256,693,0,0,0,0,6,0,0,1305,0,0.010000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62850,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85125,'QB_CLSGLA100_001','w1f2','bnpc3977803',3977803,10.177820,12.674600,34.741261,0.718799,626,0,0,0,0,6,0,0,923,0,0.200000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60524,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85125,'QB_CLSGLA100_001','w1f2','bnpc3977805',3977805,5.835097,12.516370,37.926491,1.289253,626,0,0,0,0,6,0,0,923,0,0.200000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60252,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85125,'QB_CLSGLA100_001','w1f2','bnpc3977804',3977804,8.259507,12.795540,36.157841,0.654684,626,0,0,0,0,6,0,0,923,0,0.200000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59980,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85125,'QB_CLSGLA100_001','w1f2','bnpc3977807',3977807,36.684189,12.999920,90.764450,-0.726306,627,0,0,0,0,6,0,0,923,0,0.200000,9,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59714,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85125,'QB_CLSGLA100_001','w1f2','bnpc3983981',3983981,7.250591,12.328980,31.341570,-0.000000,628,0,0,0,0,6,0,0,944,0,0.200000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59448,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85125,'QB_CLSGLA100_001','w1f2','bnpc3977801',3977801,20.077999,13.099220,53.796730,-0.268245,625,0,0,0,8,6,0,0,924,0,0.200000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59182,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85125,'QB_CLSGLA100_001','w1f2','bnpc3977808',3977808,33.570889,13.634930,91.804031,-0.494566,626,0,0,0,0,6,0,0,923,0,0.200000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58580,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85125,'QB_CLSGLA100_001','w1f2','bnpc3977809',3977809,31.440241,13.170000,92.307831,-0.423493,626,0,0,0,0,6,0,0,923,0,0.200000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58308,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93414,'QB_JobMnk300_001','w1f2','bnpc4306246',4306246,-221.515305,-31.754089,111.924896,-0.801853,2069,0,0,0,1,6,0,0,1962,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57452,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93414,'QB_JobMnk300_001','w1f2','bnpc4306247',4306247,-234.957596,-31.754089,96.972450,-0.000048,2069,0,0,0,1,6,0,0,1962,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57180,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93414,'QB_JobMnk300_001','w1f2','bnpc4306248',4306248,-208.617004,-31.754089,114.976700,-1.395512,2069,0,0,0,1,6,0,0,1962,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93414,'QB_JobMnk300_001','w1f2','bnpc4306249',4306249,-222.894806,-30.402679,90.301987,-0.000000,2069,0,0,0,1,6,0,0,1962,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56636,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93414,'QB_JobMnk300_001','w1f2','bnpc4306250',4306250,-243.575394,-31.331461,92.323914,0.082980,2069,0,0,0,1,6,0,0,1962,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56364,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93414,'QB_JobMnk300_001','w1f2','bnpc4306251',4306251,-210.260193,-30.823589,100.712997,-0.681146,2069,0,0,0,1,6,0,0,1962,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56092,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93414,'QB_JobMnk300_001','w1f2','bnpc4306259',4306259,-196.515106,-31.750000,112.921600,-1.374251,2070,0,0,0,1,6,0,0,1963,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55826,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93414,'QB_JobMnk300_001','w1f2','bnpc4306260',4306260,-195.604599,-31.750000,110.731300,-1.374251,2070,0,0,0,1,6,0,0,1963,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55554,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93414,'QB_JobMnk300_001','w1f2','bnpc4306261',4306261,-194.609406,-31.750000,113.890503,-1.374251,2070,0,0,0,1,6,0,0,1963,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55282,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93414,'QB_JobMnk300_001','w1f2','bnpc4306253',4306253,-198.397903,-31.750000,114.743500,-1.561284,2068,0,0,0,1,6,0,0,1961,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54876,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86137,'QB_ManWil005_001','w1f2','bnpc4077150',4077150,188.442093,10.652330,540.848022,-0.933221,883,0,0,0,8,6,0,0,1377,0,0.010000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54302,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86137,'QB_ManWil005_001','w1f2','bnpc4077151',4077151,152.071198,9.562325,570.111511,1.192088,885,0,0,0,0,6,0,0,942,0,0.010000,4,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54036,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86137,'QB_ManWil005_001','w1f2','bnpc4077152',4077152,150.442001,8.442017,571.276917,1.439997,885,0,0,0,0,6,0,0,942,0,0.010000,4,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53764,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86137,'QB_ManWil005_001','w1f2','bnpc4077427',4077427,147.861099,8.244619,559.150330,0.999996,885,0,0,0,0,6,0,0,942,0,0.010000,4,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52760,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86137,'QB_ManWil005_001','w1f2','bnpc4077428',4077428,147.237793,8.225020,562.284729,1.444762,885,0,0,0,0,6,0,0,942,0,0.010000,4,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52488,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86137,'QB_ManWil005_001','w1f2','bnpc4077429',4077429,152.843597,7.972651,558.154785,0.829321,885,0,0,0,0,6,0,0,942,0,0.010000,4,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52216,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86137,'QB_ManWil005_001','w1f2','bnpc4077430',4077430,146.949493,7.907832,561.311829,0.354930,885,0,0,0,0,6,0,0,942,0,0.010000,4,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51944,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86137,'QB_ManWil005_001','w1f2','bnpc4077147',4077147,163.408798,8.102478,549.095886,1.278688,933,0,0,0,0,6,0,0,945,0,0.010000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51678,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087433',4087433,253.539993,-19.438311,-127.665298,1.512913,888,0,0,0,8,6,0,0,935,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50844,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087434',4087434,254.534500,-19.438330,-132.312607,1.408241,887,0,0,0,8,6,0,0,936,0,0.000000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50578,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087437',4087437,269.871887,-19.438210,-126.664001,-1.500375,891,0,0,0,0,6,0,0,949,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50312,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087440',4087440,269.084503,-19.438259,-134.990707,-0.715644,892,0,0,0,0,6,0,0,974,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087443',4087443,266.207214,-19.438280,-136.571304,-1.554027,892,0,0,0,0,6,0,0,974,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49774,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087445',4087445,266.998108,-19.438259,-133.218704,-1.486896,892,0,0,0,0,6,0,0,974,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49502,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087449',4087449,265.155487,-19.438210,-120.951103,-1.033173,893,0,0,0,0,6,0,0,973,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49236,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087451',4087451,267.902405,-19.438181,-117.751404,-1.207901,893,0,0,0,0,6,0,0,973,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48964,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087452',4087452,263.888092,-19.438200,-118.036499,-1.257812,893,0,0,0,0,6,0,0,973,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48692,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087459',4087459,247.704193,-17.582880,-128.914993,1.455014,894,0,0,0,8,6,0,0,970,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48426,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087460',4087460,249.099701,-17.895741,-125.798500,1.136751,895,0,0,0,8,6,0,0,970,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48160,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087493',4087493,301.674500,-19.438049,-130.251907,-1.097689,896,0,0,0,0,6,0,0,972,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47894,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087494',4087494,300.461212,-19.455259,-129.055496,-1.146956,897,0,0,0,0,6,0,0,971,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47628,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087498',4087498,291.283386,-19.438169,-143.726501,-1.532997,892,0,0,0,0,6,0,0,974,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47326,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087499',4087499,296.197296,-19.455219,-143.450104,-1.221115,892,0,0,0,0,6,0,0,974,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47054,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087502',4087502,284.901093,-19.455320,-100.022903,-0.662594,893,0,0,0,0,6,0,0,973,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46788,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087504',4087504,286.145111,-19.437969,-97.247513,-0.512645,893,0,0,0,0,6,0,0,973,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46516,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087577',4087577,241.195694,-15.522560,-133.468597,1.563969,889,0,0,0,8,6,0,0,713,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46274,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087563',4087563,270.884308,-19.438181,-121.756897,-1.003853,898,0,0,0,0,6,0,0,945,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45276,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087572',4087572,273.422302,-19.438190,-125.441002,-1.219588,899,0,0,0,0,6,0,0,980,0,0.010000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45010,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4087573',4087573,276.439789,-19.438150,-120.926498,-0.456647,900,0,0,0,0,6,0,0,617,0,0.010000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44744,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089047',4089047,273.313507,-19.438000,-87.054283,0.286285,1251,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44478,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089048',4089048,288.427185,-19.437950,-96.072983,1.256139,1252,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44212,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089049',4089049,270.904510,-19.437969,-78.636780,-0.721932,1253,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43946,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089050',4089050,242.981506,-18.224091,-86.749939,-0.815688,1254,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43680,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089051',4089051,239.176804,-18.031120,-91.271027,0.458178,1250,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43414,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089052',4089052,268.996185,-18.274099,-162.849594,-0.548426,1252,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43124,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089053',4089053,296.200195,-19.438129,-171.550293,-1.023076,1251,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42846,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089054',4089054,293.170898,-19.438169,-145.750793,0.359848,1254,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42592,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089055',4089055,301.910492,-18.923840,-157.577606,-1.272497,1251,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42302,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089037',4089037,266.460602,-18.224110,-159.897095,1.235740,1077,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42060,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089039',4089039,290.475098,-19.438101,-170.115204,1.464618,1077,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41788,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089041',4089041,243.701797,-18.051510,-91.355766,0.139259,1077,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41516,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089044',4089044,291.517090,-19.437950,-96.676003,-1.340644,1077,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41244,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089038',4089038,298.628204,-19.455351,-158.729004,0.575540,1256,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40978,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089040',4089040,294.988495,-19.438141,-141.575806,0.033697,1256,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40706,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089043',4089043,240.436401,-18.204100,-85.404793,0.958177,1256,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40434,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089045',4089045,267.858093,-19.437969,-75.705093,0.949214,1256,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40162,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86465,'QB_ManWil007_01','w1f2','bnpc4089046',4089046,273.569794,-19.438009,-90.396767,-0.531082,1256,0,0,0,0,6,0,0,0,0,0.010000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39890,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (83952,'QB_SUBWIL066_1','w1f2','bnpc3872242',3872242,-232.358307,-28.995131,123.157600,0.671127,549,0,0,0,0,6,0,0,30,0,0.010000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,0.000000,39512,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85111,'QST_CLSGLA100_001','w1f2','bnpc3976825',3976825,-128.401199,3.208397,211.260498,-1.432198,1245,0,0,0,1,6,0,0,923,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,4.000000,1.000000,37358,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85111,'QST_CLSGLA100_001','w1f2','bnpc3976826',3976826,-127.840302,2.650075,203.448502,-1.254385,1245,0,0,0,1,6,0,0,923,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,4.000000,1.000000,37086,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102231,'QST_GaiUse303','w1f2','bnpc4841637',4841637,59.817360,-4.394151,-15.121620,-0.234256,2852,0,0,0,1,6,0,0,2868,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14092,1,0,0,0,0,0,0,811,217); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102231,'QST_GaiUse303','w1f2','bnpc4841638',4841638,68.512016,-4.914388,-6.468899,-1.390575,2852,0,0,0,1,6,0,0,2868,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13820,1,0,0,0,0,0,0,812,249); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102231,'QST_GaiUse303','w1f2','bnpc4841640',4841640,60.455109,-5.502207,3.126799,0.141635,3114,0,0,0,1,6,0,0,2868,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13554,1,0,0,0,0,0,0,812,250); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102231,'QST_GaiUse303','w1f2','bnpc4841641',4841641,63.869709,-4.178751,-18.144791,-0.137176,3115,0,0,0,1,6,0,0,2868,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13288,1,0,0,0,0,0,0,813,218); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102231,'QST_GaiUse303','w1f2','bnpc4841642',4841642,74.111923,-5.047255,-4.298034,-1.276143,3115,0,0,0,1,6,0,0,2868,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,13016,1,0,0,0,0,0,0,821,218); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102231,'QST_GaiUse303','w1f2','bnpc4841643',4841643,64.431053,-3.863163,-22.981319,-0.206108,3116,0,0,0,1,6,0,0,2869,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12750,1,0,0,0,0,0,0,814,455); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102231,'QST_GaiUse303','w1f2','bnpc4841644',4841644,69.126892,-3.942875,-21.167320,-0.300867,3117,0,0,0,1,6,0,0,2870,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12484,1,0,0,0,0,0,0,815,456); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100518,'QST_SubPst004','w1f2','bnpc4745301',4745301,71.108414,1.520583,249.284698,-0.747641,3227,0,0,0,1,6,0,0,2866,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8586,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81544,'QST_SUBWIL_061','w1f2','bnpc3708948',3708948,15.554680,0.648601,-59.534710,-0.884545,205,0,0,0,1,6,0,0,577,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7360,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81544,'QST_SUBWIL_061','w1f2','bnpc3708949',3708949,10.337420,2.675604,-28.138479,-1.093616,205,0,0,0,1,6,0,0,577,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7088,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81558,'QST_SUBWIL_064','w1f2','bnpc3785130',3785130,31.492180,12.999750,49.788319,-0.956099,187,0,0,0,1,6,0,0,575,0,0.000000,6,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6538,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81558,'QST_SUBWIL_064','w1f2','bnpc3785131',3785131,28.378389,12.999810,46.326569,-0.820449,187,0,0,0,1,6,0,0,575,0,0.000000,4,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6266,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81558,'QST_SUBWIL_064','w1f2','bnpc3785134',3785134,26.991930,12.999880,56.719410,-0.139931,187,0,0,0,1,6,0,0,575,0,0.000000,4,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5994,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81590,'QST_SUBWIL_067','w1f2','bnpc3785533',3785533,57.335899,1.162378,247.537796,-0.051101,205,0,0,0,1,6,0,0,574,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4676,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81590,'QST_SUBWIL_067','w1f2','bnpc3785534',3785534,67.996887,1.132216,245.235992,-0.197503,205,0,0,0,1,6,0,0,574,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4404,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81590,'QST_SUBWIL_067','w1f2','bnpc3785535',3785535,60.210781,1.208713,239.414093,1.290816,205,0,0,0,1,6,0,0,574,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,4132,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81657,'QST_SUBWIL_073','w1f2','bnpc3742257',3742257,-135.210007,5.708897,-117.417900,1.312341,100,0,0,0,1,6,0,0,576,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,3036,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81657,'QST_SUBWIL_073','w1f2','bnpc3742258',3742258,-96.110931,-1.343895,-163.212494,-0.078762,100,0,0,0,1,6,0,0,576,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2764,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81657,'QST_SUBWIL_073','w1f2','bnpc3742259',3742259,-104.517303,0.157003,-213.633408,-0.000240,100,0,0,0,1,6,0,0,576,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2492,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (81657,'QST_SUBWIL_073','w1f2','bnpc3742261',3742261,-0.625269,-1.634201,-110.808601,-0.833635,100,0,0,0,1,6,0,0,576,0,0.000000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2220,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84947,'QST_SUBWIL_083','w1f2','bnpc4142933',4142933,128.038498,29.587160,-13.290650,-0.870547,355,0,0,0,1,6,0,0,328,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,1338,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4012541',4012541,-499.944489,-24.206900,274.711395,-0.000000,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136640,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4012542',4012542,-496.735107,-24.822651,275.516113,-0.000000,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136368,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4012543',4012543,-498.215302,-25.168880,279.728394,-0.000000,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136096,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4012544',4012544,-508.450897,-22.501459,275.251801,-0.000000,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135824,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4012545',4012545,-500.246307,-22.856750,332.079407,-0.000000,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135552,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4012546',4012546,-503.241211,-22.525490,333.955200,-0.000000,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135280,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4012547',4012547,-490.592804,-25.436840,313.618591,-0.000048,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135008,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4012548',4012548,-487.602112,-26.077709,308.522095,-0.000048,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134736,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4012549',4012549,-487.632599,-25.467350,315.632813,-0.000048,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134464,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4012550',4012550,-490.196106,-25.009581,264.942413,-0.000144,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134192,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013205',4013205,-304.194305,-34.543591,294.601898,-0.000144,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133920,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013206',4013206,-304.224792,-33.836750,301.712585,-0.000144,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133648,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013207',4013207,-307.184998,-34.167721,299.698395,-0.000144,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133376,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013208',4013208,-370.016113,-38.010269,260.669800,-0.000432,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133104,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013209',4013209,-367.025299,-37.796638,255.573303,-0.000432,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132832,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013210',4013210,-367.055786,-38.345970,262.714508,-0.000336,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132560,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013211',4013211,-393.702789,-33.147480,298.410095,-0.000144,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132288,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013212',4013212,-390.742615,-33.080891,300.424286,-0.000144,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132016,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013213',4013213,-422.867310,-30.681101,303.919800,-0.000240,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131744,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013214',4013214,-421.252197,-30.134701,311.575806,-0.000144,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131472,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013215',4013215,-418.295593,-29.892469,313.588104,-0.000240,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131200,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013216',4013216,-418.261505,-30.624969,306.479187,-0.000144,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130928,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013222',4013222,-228.755997,-29.250050,268.198700,-0.000144,138,0,0,0,1,6,0,0,302,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130662,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013224',4013224,-259.769104,-25.814650,223.363907,-0.000000,138,0,0,0,1,6,0,0,302,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130390,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013225',4013225,-248.303101,-25.635059,215.703506,-0.000048,138,0,0,0,1,6,0,0,302,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130118,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013226',4013226,-244.556595,-29.157000,245.735596,-0.000144,138,0,0,0,1,6,0,0,302,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129846,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013227',4013227,-205.884796,-28.989929,252.945099,-0.000048,138,0,0,0,1,6,0,0,302,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129574,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013230',4013230,-221.465103,-29.933540,230.371399,-0.000048,138,0,0,0,1,6,0,0,302,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129302,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013231',4013231,-191.527893,-33.626598,218.107803,-0.000048,138,0,0,0,1,6,0,0,302,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129030,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013232',4013232,-179.018005,-29.188629,250.063797,-0.000048,138,0,0,0,1,6,0,0,302,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128758,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013234',4013234,-175.844193,-28.984510,287.393402,-0.000335,194,0,0,0,1,6,0,0,274,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128492,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013236',4013236,-180.635498,-30.361820,295.114288,-0.000527,194,0,0,0,1,6,0,0,274,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128220,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013237',4013237,-155.046997,-38.834259,204.882797,-0.000048,194,0,0,0,1,6,0,0,274,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127948,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013238',4013238,-140.856094,-42.038651,199.298004,-0.000048,194,0,0,0,1,6,0,0,274,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127676,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013239',4013239,-147.844696,-38.864811,208.361893,-0.000048,194,0,0,0,1,6,0,0,274,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127404,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013245',4013245,-122.655197,-36.402191,160.250000,-0.000048,194,0,0,0,1,6,0,0,274,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127132,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013246',4013246,-125.513298,-36.825439,155.686493,-0.000048,194,0,0,0,1,6,0,0,274,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126860,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013248',4013248,-240.869400,-31.567810,320.527802,-0.000144,194,0,0,0,1,6,0,0,274,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126588,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013249',4013249,-235.614594,-31.418369,325.917389,-0.000240,194,0,0,0,1,6,0,0,274,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126316,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013250',4013250,-222.186707,-34.622761,365.438293,-0.000336,194,0,0,0,1,6,0,0,274,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126044,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013254',4013254,-287.041687,-32.065750,207.250107,-0.000240,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125760,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013255',4013255,-284.050995,-31.622311,202.123093,-0.000336,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125488,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013256',4013256,-284.081512,-31.907009,209.264297,-0.000240,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125216,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013262',4013262,-273.132507,-35.872952,132.381500,-0.000336,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124944,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013263',4013263,-270.172211,-35.967918,134.395706,-0.000336,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124672,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013264',4013264,-270.141693,-36.277580,127.254402,-0.000432,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124400,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013266',4013266,-259.425812,-35.518791,150.542206,-0.000336,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124128,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013267',4013267,-256.465515,-35.526428,152.556396,-0.000336,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123856,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013479',4013479,-159.265594,-32.346439,51.098259,-0.000144,194,0,0,0,1,6,0,0,274,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123596,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013480',4013480,-151.901093,-33.007351,66.556549,-0.000144,194,0,0,0,1,6,0,0,274,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123324,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013482',4013482,-102.891098,-28.253700,23.320940,-0.000144,194,0,0,0,1,6,0,0,274,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123052,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013483',4013483,-149.419205,-28.890289,2.911655,-0.000144,194,0,0,0,1,6,0,0,274,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122780,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013484',4013484,-188.433701,-27.695169,-13.168580,-0.000240,194,0,0,0,1,6,0,0,274,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122508,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013486',4013486,-182.299606,-27.603621,-9.872634,-0.000240,194,0,0,0,1,6,0,0,274,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122236,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013489',4013489,-219.226395,-37.674568,39.414009,-0.000432,194,0,0,0,1,6,0,0,274,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121964,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013490',4013490,-225.360504,-37.827160,36.118061,-0.000432,194,0,0,0,1,6,0,0,274,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121692,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013500',4013500,-267.855988,-33.038231,97.413803,-0.000336,194,0,0,0,1,6,0,0,274,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121420,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013501',4013501,-272.429901,-34.255821,90.077278,-0.000336,194,0,0,0,1,6,0,0,274,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121148,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013502',4013502,-291.837189,-33.717522,94.695030,-0.000336,194,0,0,0,1,6,0,0,274,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120876,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013504',4013504,-408.834991,-25.528391,375.844910,-0.000336,206,0,0,0,1,6,0,0,306,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120592,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013509',4013509,-412.414703,-25.124140,378.094910,-0.000240,206,0,0,0,1,6,0,0,306,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120320,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013510',4013510,-421.050690,-24.694500,373.044586,-0.000240,206,0,0,0,1,6,0,0,306,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120048,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013511',4013511,-347.292603,-22.499969,411.814514,-0.000240,206,0,0,0,1,6,0,0,306,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119776,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013512',4013512,-350.892090,-22.007130,414.044891,-0.000240,206,0,0,0,1,6,0,0,306,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119504,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013513',4013513,-301.048492,-24.998409,421.781494,-0.000336,206,0,0,0,1,6,0,0,306,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119232,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013514',4013514,-235.065308,-33.493599,442.587891,-0.000336,206,0,0,0,1,6,0,0,306,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118960,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013515',4013515,-231.464096,-34.195511,440.359985,-0.000336,206,0,0,0,1,6,0,0,306,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118688,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013517',4013517,-230.304504,-33.981892,443.503387,-0.000336,206,0,0,0,1,6,0,0,306,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118416,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013521',4013521,-175.050400,-37.658531,450.209198,-0.000336,206,0,0,0,1,6,0,0,306,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118144,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013522',4013522,-175.885300,-38.533630,453.905487,-0.000336,206,0,0,0,1,6,0,0,306,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117872,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013525',4013525,-215.670593,-35.585159,459.834106,-0.000336,206,0,0,0,1,6,0,0,306,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117600,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013533',4013533,99.168327,-25.375799,291.493011,-0.000336,194,0,0,0,1,6,0,0,274,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117340,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013534',4013534,97.093102,-25.223209,297.444092,-0.000527,194,0,0,0,1,6,0,0,274,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117068,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013536',4013536,68.684219,-23.820311,291.749390,-0.000432,194,0,0,0,1,6,0,0,274,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116796,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013550',4013550,-370.036499,-26.139339,-3.111549,-0.000144,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116512,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013552',4013552,-377.077698,-24.934530,-2.811549,-0.000144,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116240,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013553',4013553,-374.311096,-24.946871,-6.761492,-0.000144,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115968,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013554',4013554,-361.013214,-20.157209,-51.316139,-0.000240,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115696,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013556',4013556,-364.370209,-19.974110,-48.996769,-0.000240,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115424,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013558',4013558,-314.082306,-25.819000,-70.030121,-0.000144,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115152,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013559',4013559,-316.848907,-27.254049,-66.080177,-0.000144,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114880,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013560',4013560,-309.807709,-25.975500,-66.380173,-0.000144,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114608,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013562',4013562,-330.224487,-29.939251,-43.977570,-0.000144,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114336,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013564',4013564,-407.858398,-15.091220,-126.360001,-0.000336,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114064,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013565',4013565,-411.203003,-15.113620,-124.026497,-0.000240,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113792,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013569',4013569,-415.904999,-11.930880,-136.712494,-0.000240,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113520,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013571',4013571,-452.618408,-8.742622,-98.281227,-0.000240,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113248,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013572',4013572,-449.357788,-8.414806,-96.310440,-0.000240,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112976,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013576',4013576,-464.105194,-11.407580,-129.066101,-0.000336,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112704,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013577',4013577,-498.092499,-9.974959,-109.458298,-0.000240,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112432,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013580',4013580,-502.620789,-10.577840,-112.821098,-0.000240,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112160,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013582',4013582,-507.470886,-10.328900,-110.974403,-0.000240,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111888,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013583',4013583,-522.056885,-4.348868,-159.960403,-0.000432,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111616,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013584',4013584,-523.460815,-4.837157,-158.281906,-0.000527,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111344,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013594',4013594,-352.898499,-15.213080,-143.948807,-0.000000,21,0,0,0,1,6,0,0,1198,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111090,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013596',4013596,-332.967194,-12.588740,-145.708405,-0.000048,21,0,0,0,1,6,0,0,1198,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110818,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013605',4013605,-332.265198,-17.044371,-127.824898,-0.000144,21,0,0,0,1,6,0,0,1198,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110546,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013606',4013606,-352.598511,-10.906090,-168.210007,-0.000000,21,0,0,0,1,6,0,0,1198,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110274,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013609',4013609,-385.111389,-7.978566,-230.465805,-0.000048,21,0,0,0,1,6,0,0,1198,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110002,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013611',4013611,-331.138092,-11.882090,-143.969299,-0.000048,21,0,0,0,1,6,0,0,1198,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109730,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013627',4013627,-383.286194,-8.260035,-224.126007,-0.000048,21,0,0,0,1,6,0,0,1198,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109458,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013633',4013633,-366.385315,-16.827869,-132.410706,-0.000144,21,0,0,0,1,6,0,0,1198,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109186,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013638',4013638,-349.540588,-11.100560,-235.093994,-0.000000,18,0,0,0,1,6,0,0,319,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108920,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013641',4013641,-346.185791,-11.887330,-259.764496,-0.000000,18,0,0,0,1,6,0,0,319,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108648,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013645',4013645,-327.837799,-11.400080,-244.734406,-0.000000,18,0,0,0,1,6,0,0,319,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108376,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013647',4013647,-309.640594,-10.000100,-243.310898,-0.000000,18,0,0,0,1,6,0,0,319,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108104,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013652',4013652,-323.876587,-6.632608,-212.379700,-0.000000,18,0,0,0,1,6,0,0,319,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107832,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013649',4013649,-301.356903,-10.000100,-247.002197,-0.000000,19,0,0,0,1,6,0,0,322,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107566,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013642',4013642,-344.857910,-11.892970,-258.193207,-0.000000,19,0,0,0,1,6,0,0,322,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107294,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013650',4013650,-322.462311,-9.437181,-225.651001,-0.000000,19,0,0,0,1,6,0,0,322,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107022,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013668',4013668,-335.498505,-12.014050,-229.725906,-0.000000,19,0,0,0,1,6,0,0,322,0,0.000000,17,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106750,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013720',4013720,-429.370209,-1.586753,-278.570801,-0.000432,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106448,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013721',4013721,-430.804504,-1.625461,-276.861786,-0.000432,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106176,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013722',4013722,-444.877411,-1.080222,-258.128387,-0.000432,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105904,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013723',4013723,-464.653595,1.612374,-285.266113,-0.000432,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105632,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013724',4013724,-461.633514,1.079876,-282.367096,-0.000432,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105360,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013725',4013725,-467.806213,2.048990,-283.036896,-0.000432,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105088,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013728',4013728,-533.374023,-6.691851,-159.632706,-0.000527,206,0,0,0,1,6,0,0,306,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104816,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013735',4013735,-450.919403,-29.068480,316.700897,-0.000144,131,0,0,0,1,6,0,0,113,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104580,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013772',4013772,-397.589996,-23.851999,392.935089,-0.000000,131,0,0,0,1,6,0,0,113,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104308,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013777',4013777,-330.837891,-22.252911,401.824585,-0.000000,131,0,0,0,1,6,0,0,113,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104036,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013778',4013778,-318.013306,-23.819380,430.685791,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103764,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013779',4013779,-249.358002,-33.714100,429.461487,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103492,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013780',4013780,-191.484207,-36.256191,404.149292,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103220,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013781',4013781,-190.484894,-35.487671,401.923004,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102948,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013782',4013782,-487.190399,-25.702749,201.419907,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102676,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013784',4013784,-334.884705,-34.612320,299.203400,-0.000144,131,0,0,0,1,6,0,0,113,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102404,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013785',4013785,-312.764191,-31.815109,177.660706,-0.000240,131,0,0,0,1,6,0,0,113,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102132,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013786',4013786,-422.784302,-34.151939,243.826904,-0.000144,131,0,0,0,1,6,0,0,113,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101860,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013788',4013788,-165.697800,-28.246771,253.973404,-0.000336,131,0,0,0,1,6,0,0,113,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101588,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013792',4013792,-54.262890,-17.705391,367.731415,-0.000336,131,0,0,0,1,6,0,0,113,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101316,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013794',4013794,-33.163811,-19.940189,365.769714,-0.000336,131,0,0,0,1,6,0,0,113,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101044,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013795',4013795,-51.895939,-17.512991,370.210602,-0.000336,131,0,0,0,1,6,0,0,113,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100772,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013796',4013796,78.414223,-15.939830,366.048615,-0.000432,131,0,0,0,1,6,0,0,113,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100500,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013798',4013798,7.173542,-23.354309,329.441010,-0.000527,131,0,0,0,1,6,0,0,113,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100228,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013804',4013804,-166.105103,-28.583521,251.194107,-0.000623,131,0,0,0,1,6,0,0,113,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99956,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013807',4013807,-96.303726,-54.621849,189.374496,-0.000336,131,0,0,0,1,6,0,0,113,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99684,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013809',4013809,-129.643600,-41.051750,105.021004,-0.000336,131,0,0,0,1,6,0,0,113,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99412,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013811',4013811,-131.669601,-27.426109,-54.776691,-0.000432,131,0,0,0,1,6,0,0,113,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99140,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013813',4013813,-173.987106,-33.616089,-39.161282,-0.000432,131,0,0,0,1,6,0,0,113,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98868,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013815',4013815,-175.831604,-33.870190,-41.495399,-0.000432,131,0,0,0,1,6,0,0,113,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98596,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013816',4013816,-205.031403,-33.039600,-67.334999,-0.000432,131,0,0,0,1,6,0,0,113,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98324,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013818',4013818,-281.004791,-32.283211,-47.466839,-0.000432,131,0,0,0,1,6,0,0,113,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98052,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013819',4013819,-366.248810,-37.056171,28.697981,-0.000432,131,0,0,0,1,6,0,0,113,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97780,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013820',4013820,-548.804321,-10.844810,-120.767998,-0.000623,131,0,0,0,1,6,0,0,113,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97508,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013821',4013821,-547.929016,-10.919210,-118.103897,-0.000623,131,0,0,0,1,6,0,0,113,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97236,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013822',4013822,-505.184814,-5.976281,-148.866592,-0.000623,131,0,0,0,1,6,0,0,113,0,0.000000,17,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96964,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013823',4013823,-411.073914,-31.135130,46.428162,-0.000000,41,0,0,0,1,6,0,0,1199,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96698,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013824',4013824,-430.816315,-29.355061,29.829710,-0.000000,41,0,0,0,1,6,0,0,1199,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96426,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013825',4013825,-424.892914,-28.321070,3.818028,-0.000000,41,0,0,0,1,6,0,0,1199,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96154,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013826',4013826,-455.293610,-28.139351,76.774193,-0.000000,41,0,0,0,1,6,0,0,1199,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95882,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013827',4013827,-457.516510,-27.855551,79.493294,-0.000000,41,0,0,0,1,6,0,0,1199,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95610,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013828',4013828,-479.286011,-25.295200,93.214996,-0.000000,41,0,0,0,1,6,0,0,1199,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95338,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013829',4013829,-527.688721,-21.083590,110.860397,-0.000000,41,0,0,0,1,6,0,0,1199,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95066,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013830',4013830,-536.720886,-18.332451,74.782097,-0.000000,41,0,0,0,1,6,0,0,1199,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94794,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013831',4013831,-553.551880,-16.714809,84.756439,-0.000000,41,0,0,0,1,6,0,0,1199,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94522,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013832',4013832,-510.295288,-19.041250,45.220119,-0.000000,41,0,0,0,1,6,0,0,1199,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94250,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013833',4013833,-485.247589,-20.332100,48.307430,-0.000000,41,0,0,0,1,6,0,0,1199,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93978,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013834',4013834,-458.042603,-21.417490,14.689170,-0.000000,41,0,0,0,1,6,0,0,1199,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93706,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013835',4013835,-459.737488,-21.394270,13.442860,-0.000000,41,0,0,0,1,6,0,0,1199,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93434,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013836',4013836,-484.622711,-17.327000,0.944125,-0.000000,41,0,0,0,1,6,0,0,1199,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93162,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013837',4013837,-498.477814,-17.417601,25.127859,-0.000000,41,0,0,0,1,6,0,0,1199,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92890,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013499',4013499,-273.627289,-31.862329,103.566002,-0.000336,193,0,0,0,1,6,0,0,273,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92624,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013485',4013485,-199.267593,-31.357340,4.409810,-0.000336,193,0,0,0,1,6,0,0,273,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92352,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013445',4013445,-149.523193,-32.364429,59.342289,-0.000240,193,0,0,0,1,6,0,0,273,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92080,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013244',4013244,-152.971695,-38.651150,171.557098,-0.000144,193,0,0,0,1,6,0,0,273,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91808,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013235',4013235,-189.302597,-29.714430,288.949799,-0.000335,193,0,0,0,1,6,0,0,273,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91536,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013251',4013251,-253.131897,-36.331779,359.212585,-0.000432,193,0,0,0,1,6,0,0,273,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91264,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013539',4013539,92.027107,-24.063520,274.555511,-0.000527,193,0,0,0,1,6,0,0,273,0,0.000000,18,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90992,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013481',4013481,-100.511200,-26.840670,16.128740,-0.000240,193,0,0,0,1,6,0,0,273,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90720,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013868',4013868,146.652603,-5.540083,412.411499,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90454,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013869',4013869,144.284500,-5.955482,411.455200,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90182,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013870',4013870,145.884995,-5.941638,404.887695,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89910,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013872',4013872,136.158096,-6.723706,412.478790,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89638,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013873',4013873,140.986099,-6.708030,406.031189,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89366,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013874',4013874,137.354004,-7.302959,404.747009,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89094,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013877',4013877,127.735001,-8.321562,406.855713,-0.000000,306,0,0,0,1,6,0,0,129,0,0.000000,19,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88822,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4018218',4018218,-299.646698,-38.938461,29.649010,-0.000336,193,0,0,0,1,6,0,0,273,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88544,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4018219',4018219,-291.777802,-38.764221,32.025139,-0.000527,194,0,0,0,1,6,0,0,274,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88236,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4018220',4018220,-333.157501,-38.096481,14.837530,-0.000432,194,0,0,0,1,6,0,0,274,0,0.000000,16,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87964,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4018223',4018223,-450.400604,-30.487301,217.028503,-0.000527,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87680,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4018224',4018224,-437.057800,-30.783661,234.972397,-0.000432,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87408,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4018225',4018225,-439.601105,-30.769150,236.646896,-0.000432,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87136,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4018228',4018228,-364.140503,-35.208920,210.519699,-0.000432,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86864,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4018229',4018229,-361.718689,-35.490021,212.068604,-0.000432,206,0,0,0,1,6,0,0,306,0,0.000000,15,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86592,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013849',4013849,-140.192505,-30.609131,309.013794,-0.924256,735,0,0,0,0,6,0,0,247,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86380,1,0,0,0,19,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013857',4013857,-76.608521,-27.621309,289.534302,1.213397,735,0,0,0,0,6,0,0,247,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86108,1,0,0,0,19,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013859',4013859,-105.272003,-29.404169,285.419891,-0.924285,735,0,0,0,1,6,0,0,247,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85836,1,0,0,0,19,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013851',4013851,-50.371601,-27.557119,321.120697,0.047053,735,0,0,0,0,6,0,0,247,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85564,1,0,0,0,19,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013864',4013864,-122.575798,-30.167110,296.284302,-0.000048,737,0,0,0,1,6,0,0,250,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85298,1,0,0,0,19,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013866',4013866,-71.732674,-27.084780,289.021088,-1.466412,737,0,0,0,0,6,0,0,250,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85026,1,0,0,0,19,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013867',4013867,-109.317596,-27.427130,345.218903,-0.000000,737,0,0,0,1,6,0,0,250,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84754,1,0,0,0,19,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85591,'LVD_BNPC_01','w1f3','bnpc4013865',4013865,-70.664551,-27.908751,300.739990,-0.000048,737,0,0,0,1,6,0,0,250,0,0.000000,18,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84482,1,0,0,0,19,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4014958',4014958,20.401260,2.731318,-54.520531,-0.000048,12,0,0,0,1,6,0,0,301,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83704,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015589',4015589,31.067261,2.425304,-70.573143,-0.000000,12,0,0,0,1,6,0,0,301,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83432,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015593',4015593,48.749241,5.676062,-102.147301,-0.000000,12,0,0,0,1,6,0,0,301,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83160,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015594',4015594,35.250210,6.228703,-92.927460,-0.000000,12,0,0,0,1,6,0,0,301,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82888,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015595',4015595,67.637573,4.351546,-87.514160,-0.000000,12,0,0,0,1,6,0,0,301,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82616,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015596',4015596,54.489922,0.411947,-65.110291,-0.000048,12,0,0,0,1,6,0,0,301,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82344,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015598',4015598,7.965932,1.085048,-77.601852,-0.000000,12,0,0,0,1,6,0,0,301,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82072,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015605',4015605,9.769605,1.369744,-80.136017,-0.000000,12,0,0,0,1,6,0,0,301,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81800,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015668',4015668,104.484001,4.846275,-63.102379,-0.000000,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81534,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015674',4015674,102.296700,4.972450,-66.202560,-0.000000,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81262,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015676',4015676,96.732941,3.052606,-62.312988,-0.000000,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80990,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015678',4015678,99.597008,8.227051,-90.531860,-0.000000,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80718,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015691',4015691,141.042694,10.713930,-50.547859,-0.000000,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80446,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015696',4015696,141.342697,10.968710,-54.225460,-0.000000,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80174,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015701',4015701,108.271400,-2.418733,-8.458347,-0.000000,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79902,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015704',4015704,106.417397,-2.650057,-10.997480,-0.000000,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79630,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015706',4015706,97.733994,-3.219701,2.456656,-0.000048,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79358,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015707',4015707,30.234659,-13.926860,41.901440,-0.000000,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79086,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015709',4015709,27.316900,-15.302890,44.688141,-0.000000,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78814,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015711',4015711,67.083893,-9.601854,56.893761,-0.000000,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78542,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015718',4015718,73.500443,-4.948884,24.766541,-0.000048,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78270,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4015720',4015720,70.143448,-5.095084,22.416651,-0.000048,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77998,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4016500',4016500,104.692101,-11.093380,148.271896,0.798258,170,0,0,0,1,6,0,0,268,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77732,1,0,0,0,9,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4016539',4016539,107.896500,-11.093380,147.508896,-0.321278,170,0,0,0,1,6,0,0,268,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77460,1,0,0,0,9,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4016540',4016540,100.724701,-10.660250,120.341797,-0.321278,170,0,0,0,1,6,0,0,268,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77188,1,0,0,0,9,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4016541',4016541,99.180260,-10.555300,116.451401,1.414976,170,0,0,0,0,6,0,0,268,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76916,1,0,0,0,9,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4016542',4016542,136.732193,-7.571920,111.707901,-0.643708,170,0,0,0,0,6,0,0,268,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76644,1,0,0,0,9,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4016543',4016543,109.599403,-4.406592,97.184692,0.778754,170,0,0,0,1,6,0,0,268,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76372,1,0,0,0,9,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4016544',4016544,110.955200,-4.201653,88.662132,-0.321278,170,0,0,0,1,6,0,0,268,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76100,1,0,0,0,9,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4016545',4016545,113.349701,-3.809178,95.995033,-0.321278,170,0,0,0,0,6,0,0,268,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75828,1,0,0,0,9,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4016546',4016546,116.990799,-8.926575,119.340698,-0.321278,170,0,0,0,1,6,0,0,268,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75556,1,0,0,0,9,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4016549',4016549,132.524506,-4.867676,80.796509,-0.321278,170,0,0,0,1,6,0,0,268,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75284,1,0,0,0,9,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4016552',4016552,172.457306,13.025480,-52.917801,-1.420296,167,0,0,0,1,6,0,0,256,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75018,1,0,0,0,31,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4016557',4016557,176.353500,14.358130,-73.066628,0.348915,167,0,0,0,0,6,0,0,256,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74746,1,0,0,0,31,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4016560',4016560,200.762894,12.344500,-41.489330,-1.420297,167,0,0,0,1,6,0,0,256,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74474,1,0,0,0,31,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4016946',4016946,178.545807,14.145070,-76.310410,-1.260036,168,0,0,0,0,6,0,0,251,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74208,1,0,0,0,31,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4016949',4016949,157.244202,11.490000,-28.885370,-0.849359,168,0,0,0,1,6,0,0,251,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73936,1,0,0,0,31,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4016957',4016957,194.933899,11.673100,-34.256550,-0.849359,168,0,0,0,1,6,0,0,251,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73664,1,0,0,0,31,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017619',4017619,180.407394,10.330310,-23.086950,-1.420297,167,0,0,0,1,6,0,0,256,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73386,1,0,0,0,31,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017833',4017833,165.697693,9.414769,0.106766,-0.849359,168,0,0,0,1,6,0,0,251,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73120,1,0,0,0,31,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017881',4017881,267.688995,7.156434,-121.568703,-0.000336,352,0,0,0,1,6,0,0,1309,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72854,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017882',4017882,256.488800,7.736277,-113.023598,-0.000240,353,0,0,0,1,6,0,0,1311,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72588,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017883',4017883,277.515808,7.583686,-116.807899,-0.000336,354,0,0,0,1,6,0,0,1310,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72322,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017891',4017891,272.907501,17.593611,-157.701996,-0.000432,352,0,0,0,1,6,0,0,1309,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72038,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017892',4017892,270.862915,16.861151,-151.415298,-0.000527,354,0,0,0,1,6,0,0,1310,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71778,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017893',4017893,257.892700,16.006670,-153.185394,-0.000432,353,0,0,0,1,6,0,0,1311,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71500,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017899',4017899,240.680496,7.431091,-122.636803,-0.000335,352,0,0,0,1,6,0,0,1309,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71222,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017900',4017900,243.182999,7.370056,-117.753899,-0.000432,353,0,0,0,1,6,0,0,1311,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70956,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017901',4017901,258.381012,12.313960,-138.811295,-0.000432,354,0,0,0,1,6,0,0,1310,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70690,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017921',4017921,138.353500,9.506287,-146.349304,-0.000048,181,0,0,0,1,6,0,0,281,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70424,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017927',4017927,115.709099,11.123780,-141.435898,-0.000048,181,0,0,0,1,6,0,0,281,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70152,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017928',4017928,212.176605,3.555298,-181.902802,-0.000048,181,0,0,0,1,6,0,0,281,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69880,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017929',4017929,219.897705,3.799438,-195.117096,-0.000048,181,0,0,0,1,6,0,0,281,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69608,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017932',4017932,278.370300,8.041457,-218.646606,-0.000048,181,0,0,0,1,6,0,0,281,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69336,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017937',4017937,289.906097,11.551030,-240.192307,-0.000048,181,0,0,0,1,6,0,0,281,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69064,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017941',4017941,373.476013,20.829370,-239.892303,-0.000048,181,0,0,0,1,6,0,0,281,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68792,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017942',4017942,356.299500,14.980250,-225.505997,-0.000144,181,0,0,0,1,6,0,0,281,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68520,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017945',4017945,404.706909,22.897909,-197.807907,-0.000048,181,0,0,0,1,6,0,0,281,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68248,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017950',4017950,298.207001,5.264315,-172.350693,-0.000144,181,0,0,0,1,6,0,0,281,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67976,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017954',4017954,134.599701,8.987488,-116.411102,-0.000144,181,0,0,0,1,6,0,0,281,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67704,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017972',4017972,189.930405,-1.185125,27.687700,-0.000048,203,0,0,0,1,6,0,0,272,0,0.000000,29,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67390,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017978',4017978,193.187805,-1.444422,30.281919,-0.000048,203,0,0,0,1,6,0,0,272,0,0.000000,29,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67118,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017981',4017981,228.766998,3.164756,31.533100,-0.000048,203,0,0,0,1,6,0,0,272,0,0.000000,29,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66846,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017985',4017985,259.187988,10.854590,-0.979421,-0.000048,203,0,0,0,1,6,0,0,272,0,0.000000,29,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66574,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017987',4017987,256.991486,10.906030,-1.850262,-0.000048,203,0,0,0,1,6,0,0,272,0,0.000000,29,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66302,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017989',4017989,263.108002,12.374600,-6.144668,-0.000048,203,0,0,0,1,6,0,0,272,0,0.000000,29,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66030,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4017999',4017999,144.542801,-1.822149,25.260910,-0.000048,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65758,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018003',4018003,118.866699,-3.156176,35.166130,-0.000048,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65486,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018006',4018006,152.788498,-3.677471,45.426060,-0.000144,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65214,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018007',4018007,149.431503,-3.524881,43.076172,-0.000144,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64942,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018008',4018008,148.638107,-3.585917,46.951962,-0.000144,203,0,0,0,1,6,0,0,272,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64670,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018022',4018022,94.621094,3.248499,83.127548,1.475705,170,0,0,0,0,6,0,0,268,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64404,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018023',4018023,95.261963,2.700867,72.495613,-0.321278,170,0,0,0,1,6,0,0,268,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64132,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018024',4018024,96.513313,3.431219,83.543091,-1.145209,170,0,0,0,0,6,0,0,268,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63860,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018102',4018102,97.606216,6.518048,-80.554100,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63630,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018103',4018103,118.155403,9.586515,-100.878799,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63358,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018104',4018104,120.378304,9.628418,-99.046333,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63086,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018105',4018105,131.592499,8.266950,-67.253014,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62814,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018106',4018106,58.518299,-3.494363,-48.813660,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62542,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018108',4018108,90.160843,-1.231179,-48.488152,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62270,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018109',4018109,75.582893,-5.687634,-3.987827,-0.000000,36,0,0,0,1,6,0,0,296,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61998,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018110',4018110,48.298389,-10.503780,42.532669,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61726,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018112',4018112,90.491623,-2.237890,36.720051,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61454,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018113',4018113,93.131050,-2.135577,38.381100,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61182,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018115',4018115,112.673203,-2.455007,13.961960,-0.000144,36,0,0,0,1,6,0,0,296,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60910,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018117',4018117,127.625603,-3.590302,53.494831,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60638,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018118',4018118,188.733200,4.905004,3.896455,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,27,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60366,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018120',4018120,219.065399,11.690500,5.996748,-0.000144,36,0,0,0,1,6,0,0,296,0,0.000000,27,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60094,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018121',4018121,216.593399,11.322950,7.522650,-0.000144,36,0,0,0,1,6,0,0,296,0,0.000000,27,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59822,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018122',4018122,241.927307,7.629051,9.728237,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,29,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59550,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018125',4018125,268.848206,8.777798,13.353050,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,29,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59278,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018127',4018127,270.080994,9.039959,11.601690,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,29,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59006,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018129',4018129,158.682999,14.718640,-63.220341,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,27,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58734,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018133',4018133,188.223907,10.030940,-97.774307,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,26,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58462,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018134',4018134,166.552094,8.773865,-94.346558,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,26,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58190,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018137',4018137,163.958099,6.301941,-142.320999,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57918,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018141',4018141,160.723297,6.515503,-139.940598,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57646,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018142',4018142,218.860107,3.097534,-168.047699,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57374,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018143',4018143,231.647202,5.874695,-136.827698,-0.000144,36,0,0,0,1,6,0,0,296,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57102,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018152',4018152,228.137604,4.013123,-233.386795,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,25,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56830,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018154',4018154,270.251190,8.134529,-236.478806,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,26,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56558,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018156',4018156,267.750397,7.438218,-233.682907,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,26,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56286,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018157',4018157,316.072815,12.832880,-231.256195,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,26,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56014,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018159',4018159,316.372803,6.627599,-200.028305,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,26,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55742,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018161',4018161,363.549500,16.893539,-200.111694,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,26,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55470,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018165',4018165,365.959412,17.232080,-197.356705,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,26,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55198,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018171',4018171,32.567570,2.131757,-61.269958,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,27,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54926,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018175',4018175,68.556648,3.005930,-78.273499,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,27,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54654,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4018177',4018177,70.294853,2.807336,-76.142509,-0.000048,36,0,0,0,1,6,0,0,296,0,0.000000,27,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54382,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4021495',4021495,290.852203,7.003784,-131.212296,-0.000144,36,0,0,0,1,6,0,0,296,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54110,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85613,'LVD_BNPC_02','w1f3','bnpc4021497',4021497,290.089203,6.881775,-132.860397,-0.000144,36,0,0,0,1,6,0,0,296,0,0.000000,28,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53838,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018449',4018449,408.621307,7.003844,139.543701,-0.000144,204,0,0,0,1,6,0,0,271,0,0.000000,40,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53252,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018452',4018452,410.757507,7.095398,140.581299,-0.000144,204,0,0,0,1,6,0,0,271,0,0.000000,40,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52980,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018453',4018453,405.539001,6.301929,141.710495,-0.000048,204,0,0,0,1,6,0,0,271,0,0.000000,40,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52708,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018455',4018455,433.269897,13.745850,117.412903,-0.000048,204,0,0,0,1,6,0,0,271,0,0.000000,40,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52436,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018459',4018459,458.291687,14.700790,137.946793,-0.000048,204,0,0,0,1,6,0,0,271,0,0.000000,40,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52164,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018460',4018460,456.601501,14.747650,135.462296,-0.000048,204,0,0,0,1,6,0,0,271,0,0.000000,40,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51892,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018462',4018462,435.268585,6.480499,160.338593,-0.000048,204,0,0,0,1,6,0,0,271,0,0.000000,40,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51620,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018465',4018465,340.566010,-7.949997,150.988007,-0.000432,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51348,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018513',4018513,186.169693,-31.149429,258.258911,-0.000336,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51076,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018518',4018518,231.316696,-44.052341,271.940186,-0.000240,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50804,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018520',4018520,230.185699,-44.115601,274.394501,-0.000240,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50532,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018521',4018521,202.469299,-14.894620,157.281494,-0.000336,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50260,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018526',4018526,204.195099,-14.686260,155.274399,-0.000336,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49988,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018531',4018531,215.699997,-14.748440,162.191299,-0.000336,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49716,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018535',4018535,230.609497,-15.671060,152.147705,-0.000432,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49444,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018536',4018536,234.454803,-15.945720,152.452805,-0.000432,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49172,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018541',4018541,316.582214,-12.778530,171.745605,-0.000336,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48900,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018544',4018544,341.519897,-7.554129,153.111801,-0.000336,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48628,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018546',4018546,280.363190,-10.464180,157.039001,-0.000336,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48356,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018548',4018548,277.401794,-10.433680,158.329605,-0.000336,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48084,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018550',4018550,298.631104,-17.845301,138.619705,-0.000336,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47812,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018552',4018552,300.514313,-17.990530,137.021698,-0.000336,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47540,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018553',4018553,304.173004,-16.961420,140.928604,-0.000336,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47268,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018557',4018557,288.870209,-20.820299,112.120399,-0.000336,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46996,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018560',4018560,286.831604,-20.760210,113.868401,-0.000336,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46724,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018565',4018565,384.634094,-8.041552,208.148300,-0.000144,188,0,0,0,1,6,0,0,275,0,0.000000,41,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46458,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018574',4018574,375.753387,-8.651917,202.716095,-0.000048,188,0,0,0,1,6,0,0,275,0,0.000000,41,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46186,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018575',4018575,337.562012,-6.490084,196.335602,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,41,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45914,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018585',4018585,322.451508,0.360318,232.339203,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,41,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45642,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018587',4018587,332.444611,-2.041133,221.043106,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,41,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45370,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018590',4018590,322.120911,0.721062,236.863403,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,41,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45098,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018591',4018591,343.012787,-5.424837,244.845795,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,41,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44826,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018594',4018594,294.422791,2.151475,226.428604,-0.000048,188,0,0,0,1,6,0,0,275,0,0.000000,41,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44554,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018597',4018597,399.075592,-20.838551,256.768402,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44282,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018599',4018599,395.043915,-20.189211,256.316895,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44010,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018600',4018600,388.906586,-19.852030,278.797485,-0.000048,188,0,0,0,1,6,0,0,275,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43738,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018602',4018602,439.887085,-33.409691,296.645996,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43466,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018603',4018603,464.315399,-42.298431,269.112213,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43194,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018604',4018604,464.615387,-42.545731,274.560486,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42922,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018605',4018605,494.224304,-55.678349,265.046295,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42650,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018653',4018653,494.524292,-63.894562,233.206802,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42378,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018656',4018656,453.035309,-64.522003,255.129593,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42106,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018657',4018657,441.404510,-64.788147,246.034805,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41834,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018658',4018658,444.123810,-64.620087,241.737396,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41562,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018661',4018661,439.902802,-20.658911,226.785904,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,44,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41290,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018662',4018662,443.246185,-19.347570,231.567505,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,44,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41018,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018663',4018663,446.924286,-17.912411,214.384598,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,44,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40746,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018664',4018664,483.668396,-8.428408,232.612701,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,44,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40474,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018667',4018667,485.972687,-7.855111,227.039703,-0.000000,188,0,0,0,1,6,0,0,275,0,0.000000,44,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40202,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018683',4018683,420.139191,10.932210,126.607399,-0.000048,399,0,0,0,1,6,0,0,634,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39936,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018685',4018685,447.669708,11.251440,147.314606,-0.000000,399,0,0,0,1,6,0,0,634,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39664,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018687',4018687,388.530914,-9.116596,196.378998,-0.000000,399,0,0,0,1,6,0,0,634,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39392,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018688',4018688,383.230286,-18.143021,263.599487,-0.000144,399,0,0,0,1,6,0,0,634,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39120,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018693',4018693,267.754089,-4.105820,247.045593,-0.000048,399,0,0,0,1,6,0,0,634,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38848,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018694',4018694,430.037811,-64.649399,210.820694,-0.284819,399,0,0,0,1,6,0,0,634,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38576,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018697',4018697,441.279785,-64.462044,202.846802,0.938983,399,0,0,0,1,6,0,0,634,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38304,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018699',4018699,456.870789,-14.453500,215.100906,-0.000144,399,0,0,0,1,6,0,0,634,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38032,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018700',4018700,482.293304,-7.656506,258.934692,-0.000144,399,0,0,0,1,6,0,0,634,0,0.000000,44,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37760,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018711',4018711,319.466095,-21.198891,117.792198,-0.000048,399,0,0,0,1,6,0,0,634,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37488,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018714',4018714,287.041992,-19.224710,132.121902,-0.000048,399,0,0,0,1,6,0,0,634,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37216,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018719',4018719,256.611511,-16.890450,168.769501,-0.000048,399,0,0,0,1,6,0,0,634,0,0.000000,42,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36944,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018721',4018721,226.084503,-3.171931,186.594803,-0.000432,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36660,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85630,'LVD_BNPC_03','w1f3','bnpc4018722',4018722,228.457001,-3.558112,189.543701,-0.000432,204,0,0,0,1,6,0,0,271,0,0.000000,42,1,60,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36388,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98359,'LVD_easter_2014','w1f3','bnpc4621848',4621848,-77.749184,-58.466881,167.597900,-1.487766,2770,0,0,0,1,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22594,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98359,'LVD_easter_2014','w1f3','bnpc4621849',4621849,235.769302,-44.305069,271.670990,-0.844019,2773,0,0,0,1,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22328,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85959,'LVD_guard_01','w1f3','bnpc4057678',4057678,-430.180603,-37.593121,175.636093,-0.000000,792,0,0,0,0,6,0,0,1275,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21986,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85959,'LVD_guard_01','w1f3','bnpc4057682',4057682,-445.348114,-30.229731,50.185131,-0.819941,791,0,0,0,0,6,0,0,1275,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21720,5,0,0,0,0,30054,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85959,'LVD_guard_01','w1f3','bnpc4057686',4057686,-332.421600,-42.604149,42.912781,0.496633,793,0,0,0,0,6,0,0,1275,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21454,5,0,0,0,0,30055,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87433,'FATE_001','w1f3','bnpc4126057',4126057,-251.579407,-36.505531,352.462097,-0.000000,1198,0,0,0,1,6,0,0,1277,0,0.000000,14,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,169804,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87318,'FATE_004','w1f3','bnpc4106206',4106206,-295.248199,-34.949299,245.869003,-0.000000,1208,0,0,0,1,6,0,0,1371,0,0.000000,13,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,166718,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87321,'FATE_005','w1f3','bnpc4151893',4151893,-74.314659,-24.244080,269.665497,-0.182019,1278,0,0,0,1,6,0,0,876,0,0.000000,18,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,166260,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87321,'FATE_005','w1f3','bnpc4153323',4153323,-109.800598,-29.173040,277.405701,-1.512584,1293,0,0,0,3,6,0,0,900,0,0.000000,18,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,165994,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87321,'FATE_005','w1f3','bnpc4153328',4153328,-96.791519,-29.923031,293.168091,0.796664,1293,0,0,0,3,6,0,0,900,0,0.000000,18,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,165722,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87321,'FATE_005','w1f3','bnpc4153332',4153332,-63.227669,-25.918680,285.070801,0.386603,1293,0,0,0,3,6,0,0,900,0,0.000000,18,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,165450,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87321,'FATE_005','w1f3','bnpc4153336',4153336,-57.403969,-23.524811,273.866211,-0.040490,1293,0,0,0,3,6,0,0,900,0,0.000000,18,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,165178,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87321,'FATE_005','w1f3','bnpc4153341',4153341,-58.495689,-27.745190,310.349213,-1.537133,1293,0,0,0,3,6,0,0,900,0,0.000000,18,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,164906,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87321,'FATE_005','w1f3','bnpc4154839',4154839,-174.517502,-31.021669,320.759796,1.105947,1161,0,0,0,0,6,0,0,1343,0,0.000000,18,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,163328,1,0,0,0,0,30202,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86886,'FATE_007','w1f3','bnpc4125606',4125606,-542.799011,2.650756,-218.663498,-0.244346,1209,0,0,0,1,6,0,0,1371,0,0.000000,13,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,160070,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87322,'FATE_008','w1f3','bnpc4108056',4108056,-360.823395,-9.828313,-209.698303,-0.000000,1279,0,0,0,1,6,0,0,877,0,0.000000,17,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,159656,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87337,'FATE_009','w1f3','bnpc4125937',4125937,-543.204529,-11.275240,-134.791107,-0.000000,1199,0,0,0,1,6,0,0,1277,0,0.000000,12,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,157658,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87338,'FATE_013','w1f3','bnpc4106685',4106685,132.655197,9.060312,-54.848511,1.500984,1207,0,0,0,0,6,0,0,1371,0,0.000000,22,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,155216,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87324,'FATE_014','w1f3','bnpc4108058',4108058,246.082108,6.715513,15.324470,-0.000000,1280,0,0,0,1,6,0,0,878,0,0.000000,29,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,154738,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87339,'FATE_016','w1f3','bnpc4125907',4125907,254.148499,1.112552,-180.044998,1.204277,1202,0,0,0,1,6,0,0,1277,0,0.000000,21,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,152424,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87341,'FATE_020','w1f3','bnpc4108062',4108062,-193.164505,-36.826191,128.950195,-0.000000,1281,0,0,0,1,6,0,0,879,0,0.000000,17,0,120,1,0,1,2,60,10,1,1,0,0,0,0.000000,1.000000,150898,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87341,'FATE_020','w1f3','bnpc4168487',4168487,-203.663696,-37.372269,132.391800,-0.000000,1282,0,0,0,1,6,0,0,880,0,0.000000,16,0,120,1,0,2,0,60,10,1,1,0,0,0,0.000000,1.000000,150632,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87341,'FATE_020','w1f3','bnpc4168488',4168488,-186.537292,-36.425720,122.852798,-0.000000,1282,0,0,0,1,6,0,0,880,0,0.000000,16,0,120,1,0,2,0,60,10,1,1,0,0,0,0.000000,1.000000,150360,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87341,'FATE_020','w1f3','bnpc4168489',4168489,-188.072006,-37.088249,135.059601,-0.000000,1282,0,0,0,1,6,0,0,880,0,0.000000,16,0,120,1,0,2,0,60,10,1,1,0,0,0,0.000000,1.000000,150088,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87341,'FATE_020','w1f3','bnpc4168490',4168490,-195.502594,-36.762051,121.962898,-0.000000,1283,0,0,0,1,6,0,0,881,0,0.000000,16,0,120,1,0,3,0,60,10,1,1,0,0,0,0.000000,1.000000,149822,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87341,'FATE_020','w1f3','bnpc4168491',4168491,-194.308807,-37.085388,134.318604,-0.000000,1283,0,0,0,1,6,0,0,881,0,0.000000,16,0,120,1,0,3,0,60,10,0,1,0,0,0,0.000000,1.000000,149550,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87341,'FATE_020','w1f3','bnpc4168492',4168492,-202.316299,-37.117489,123.207603,-0.000000,1283,0,0,0,1,6,0,0,881,16,0.000000,14,0,120,1,0,3,0,60,10,1,1,0,0,0,0.000000,1.000000,149278,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92852,'FATE_027','w1f3','bnpc4288481',4288481,331.030609,17.281071,33.868481,0.453786,1201,0,0,0,1,6,0,0,1277,0,0.000000,35,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,145876,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92854,'FATE_028','w1f3','bnpc4287422',4287422,293.946014,-18.781879,133.887894,-0.000000,2128,0,0,0,1,6,0,0,1503,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,145146,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92855,'FATE_029','w1f3','bnpc4287438',4287438,433.285309,-64.456917,203.224701,-0.000000,2129,0,0,0,1,6,0,0,1504,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,144420,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (102751,'FATE_CNY_2015_01','w1f3','bnpc4867701',4867701,-203.085205,-36.813019,104.804001,-1.004844,3112,0,0,0,1,6,0,0,2908,0,0.000000,15,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,144006,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98418,'FATE_EASTER_2014_01','w1f3','bnpc4627377',4627377,480.992310,-9.903700,238.851898,-0.000048,2768,0,0,0,1,6,0,0,2517,0,0.000000,44,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,143592,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94617,'FATE_FF13_02_02','w1f3','bnpc4387972',4387972,293.744385,3.387477,-202.964096,-0.000000,2086,0,0,0,8,6,0,0,2216,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,143134,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94617,'FATE_FF13_02_02','w1f3','bnpc4387973',4387973,363.487213,16.589640,-227.622604,-1.448347,2081,0,0,0,1,6,0,0,2213,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,142868,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94617,'FATE_FF13_02_02','w1f3','bnpc4387978',4387978,346.647095,14.954410,-231.677094,-1.175280,1218,0,0,0,0,6,0,0,2219,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,141354,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94617,'FATE_FF13_02_02','w1f3','bnpc4387979',4387979,349.237305,15.414780,-232.025604,-1.352569,1219,0,0,0,0,6,0,0,2218,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,141088,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94617,'FATE_FF13_02_02','w1f3','bnpc4387980',4387980,350.595093,15.121490,-229.640900,-1.531640,1290,0,0,0,0,6,0,0,2217,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,140822,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94617,'FATE_FF13_02_02','w1f3','bnpc4387981',4387981,358.979095,16.224110,-230.786804,0.946346,1157,0,0,0,1,6,0,0,1277,0,0.000000,23,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,140556,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94617,'FATE_FF13_02_02','w1f3','bnpc4387982',4387982,357.717896,15.364900,-226.615295,1.332804,1157,0,0,0,1,6,0,0,1277,0,0.000000,23,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,140284,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94617,'FATE_FF13_02_02','w1f3','bnpc4387983',4387983,335.750397,14.112990,-236.584000,-0.000000,2291,0,0,0,0,6,0,0,2216,0,0.000000,99,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,140018,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93918,'FATE_Firefall_2013_01','w1f3','bnpc4325215',4325215,-234.979004,-38.357029,72.838600,0.785398,2227,0,0,0,0,6,0,0,1807,0,0.000000,15,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,137692,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93918,'FATE_Firefall_2013_01','w1f3','bnpc4325216',4325216,-169.788498,-34.651810,77.553574,-0.802851,2227,0,0,0,0,6,0,0,1807,0,0.000000,15,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,137420,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93918,'FATE_Firefall_2013_01','w1f3','bnpc4325217',4325217,-170.794098,-36.797779,136.027298,-0.767945,2227,0,0,0,0,6,0,0,1807,0,0.000000,15,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,137148,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93918,'FATE_Firefall_2013_01','w1f3','bnpc4325218',4325218,-240.848007,-37.503071,131.359695,0.942478,2227,0,0,0,0,6,0,0,1807,0,0.000000,15,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,136876,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93918,'FATE_Firefall_2013_01','w1f3','bnpc4325214',4325214,-202.970993,-36.799259,105.894096,-0.000000,2087,0,0,0,0,6,0,0,1641,0,0.000000,13,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,136610,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc3951330',3951330,15.025760,-5.800000,-27.504841,1.570451,1309,0,0,0,3,6,0,0,1256,0,0.000000,25,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,134820,1,0,0,0,12,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc3951409',3951409,16.596741,-6.014273,-8.180414,1.570451,1309,0,0,0,3,6,0,0,1256,0,0.000000,25,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,134548,1,0,0,0,12,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc3951422',3951422,10.114790,-6.014273,-4.432789,-0.000000,1309,0,0,0,3,6,0,0,1256,0,0.000000,25,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,134276,1,0,0,0,12,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc3951423',3951423,16.189440,-6.014273,5.352960,-1.570451,1309,0,0,0,3,6,0,0,1256,0,0.000000,25,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,134004,1,0,0,0,12,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc4143299',4143299,59.600391,-8.196584,-14.287780,-0.235002,799,0,0,0,0,6,0,0,1255,0,0.000000,25,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133738,10,0,0,0,11,30190,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc4143300',4143300,41.954361,-8.062319,-12.433640,1.139739,799,0,0,0,0,6,0,0,1255,0,0.000000,25,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133466,10,0,0,0,11,30191,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc4143301',4143301,16.902161,-5.992122,-12.998190,1.377218,799,0,0,0,0,6,0,0,1255,0,0.000000,25,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133194,10,0,0,0,11,30190,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc4143304',4143304,16.850790,-6.027352,-18.892191,1.316415,799,0,0,0,0,6,0,0,1255,0,0.000000,25,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132922,10,0,0,0,11,30191,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc4143305',4143305,24.093140,-6.014269,-26.207199,0.236838,799,0,0,0,0,6,0,0,1255,0,0.000000,25,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132650,10,0,0,0,11,30190,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc4143306',4143306,49.934349,-7.892467,-27.152821,1.508261,1311,0,0,0,0,6,0,0,1251,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132384,1,0,0,0,10,30195,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc4143307',4143307,42.425770,-7.478195,-6.747565,1.508165,1312,0,0,0,0,6,0,0,1245,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132118,1,0,0,0,25,30204,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc4143308',4143308,42.552280,-8.029868,-3.517742,1.061663,1313,0,0,0,0,6,0,0,1246,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131852,1,0,0,0,10,30194,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc4143315',4143315,12.200000,-6.014273,-4.400000,-1.012291,800,0,0,0,8,6,0,0,1252,0,1.000000,26,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131586,1,0,0,0,11,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc4143318',4143318,11.000000,-6.014273,-3.800000,1.570796,802,0,0,0,8,6,0,0,1254,0,1.000000,27,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131320,1,0,0,0,11,30190,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc4143319',4143319,12.200000,-6.014273,-3.100000,-1.396264,801,0,0,0,8,6,0,0,1253,0,1.000000,26,2,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131054,1,0,0,0,11,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc4145484',4145484,33.773701,0.199945,4.566419,1.127598,1314,0,0,0,0,6,0,0,1250,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126732,1,0,0,0,10,30201,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc4145485',4145485,32.480831,-5.800000,-5.217875,-1.501152,1315,0,0,0,0,6,0,0,1249,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126466,1,0,0,0,10,30198,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc4145487',4145487,32.416031,-5.773911,-2.138436,-1.493965,1316,0,0,0,0,6,0,0,1248,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126200,1,0,0,0,10,30199,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc4145488',4145488,13.097210,-6.014273,8.654160,1.343560,1317,0,0,0,0,6,0,0,1247,0,0.000000,0,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125934,1,0,0,0,10,30200,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc4175834',4175834,42.425800,-7.478200,-6.747600,1.508166,1343,0,0,0,0,6,0,0,1245,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124420,1,0,0,0,26,30204,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84904,'FATE_HAMLET_01','w1f3','bnpc4089318',4089318,96.248329,-3.611871,-23.928780,-0.925508,799,0,0,0,0,6,0,0,1255,0,0.000000,25,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,120146,1,0,0,0,11,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84955,'FATE_HAMLET_03','w1f3','bnpc4081944',4081944,113.373497,-0.960950,-13.938360,-0.946795,803,0,0,0,1,6,0,0,1243,0,0.000000,26,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,117438,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84956,'FATE_HAMLET_04','w1f3','bnpc4083528',4083528,100.018097,-11.131250,153.595703,0.455915,804,0,0,0,0,6,0,0,1242,0,0.000000,26,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,116268,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84956,'FATE_HAMLET_04','w1f3','bnpc4083536',4083536,115.543800,-10.809160,139.966797,-0.187019,170,0,0,0,0,6,0,0,1244,0,0.000000,26,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,116002,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84956,'FATE_HAMLET_04','w1f3','bnpc4083545',4083545,106.279099,-9.994690,115.007202,0.750799,170,0,0,0,0,6,0,0,1244,0,0.000000,26,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,115730,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84956,'FATE_HAMLET_04','w1f3','bnpc4145792',4145792,92.956627,-11.064620,105.515701,1.470528,170,0,0,0,0,6,0,0,1244,0,0.000000,26,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,115458,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84956,'FATE_HAMLET_04','w1f3','bnpc4145796',4145796,126.025803,-7.818408,102.579300,0.098387,170,0,0,0,0,6,0,0,1244,0,0.000000,26,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,115186,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84956,'FATE_HAMLET_04','w1f3','bnpc3956839',3956839,117.599998,-10.591020,143.000000,-0.698132,1311,0,0,0,0,6,0,0,1251,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,114212,1,0,0,0,0,30254,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84956,'FATE_HAMLET_04','w1f3','bnpc4145717',4145717,118.801102,-10.464530,142.699997,0.000000,1313,0,0,0,0,6,0,0,1246,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,113952,1,0,0,0,0,30254,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84956,'FATE_HAMLET_04','w1f3','bnpc4145721',4145721,102.997398,-10.335910,116.491699,0.908201,1314,0,0,0,0,6,0,0,1250,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,113704,1,0,0,0,0,30254,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84956,'FATE_HAMLET_04','w1f3','bnpc4145723',4145723,129.500000,-7.782004,104.172302,-1.047198,1315,0,0,0,0,6,0,0,1249,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,113438,1,0,0,0,0,30254,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84956,'FATE_HAMLET_04','w1f3','bnpc4145724',4145724,89.800003,-11.730730,106.167397,1.396264,1316,0,0,0,0,6,0,0,1248,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,113172,1,0,0,0,0,30254,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84956,'FATE_HAMLET_04','w1f3','bnpc4145726',4145726,101.975998,-10.299870,114.702003,1.202947,1317,0,0,0,0,6,0,0,1247,0,0.000000,0,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,112906,1,0,0,0,0,30254,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84959,'FATE_HAMLET_05','w1f3','bnpc4088060',4088060,115.543800,-10.809200,139.966797,-0.187019,171,0,0,0,0,6,0,0,1244,0,0.000000,26,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,111240,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84959,'FATE_HAMLET_05','w1f3','bnpc4088062',4088062,106.297401,-9.994100,115.011902,0.750764,171,0,0,0,0,6,0,0,1244,0,0.000000,26,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,110968,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84959,'FATE_HAMLET_05','w1f3','bnpc4088065',4088065,100.018097,-11.131300,153.595703,0.455915,804,0,0,0,0,6,0,0,1242,0,0.000000,26,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,110684,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84959,'FATE_HAMLET_05','w1f3','bnpc4145834',4145834,92.956596,-11.064600,105.515701,1.470528,170,0,0,0,0,6,0,0,1244,0,0.000000,26,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,110418,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84959,'FATE_HAMLET_05','w1f3','bnpc4145837',4145837,126.025803,-7.818400,102.579300,0.098387,170,0,0,0,0,6,0,0,1244,0,0.000000,26,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,110146,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84959,'FATE_HAMLET_05','w1f3','bnpc4086684',4086684,118.466797,-3.524306,50.324100,0.557852,799,0,0,0,0,6,0,0,1255,0,0.000000,25,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,109478,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97166,'FATE_XMAS_2013_01','w1f3','bnpc4536598',4536598,-202.868805,-36.820129,104.966797,0.169134,2440,0,0,0,0,6,0,0,2329,0,0.000000,14,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,109218,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97166,'FATE_XMAS_2013_01','w1f3','bnpc4536611',4536611,-213.524902,-37.323521,111.035103,-0.880441,2441,0,0,0,1,6,0,0,2331,0,0.000000,12,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,108952,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87135,'Grand_Company_Leve','w1f3','bnpc4178230',4178230,-456.091187,-29.182430,278.591614,-0.000000,1331,0,0,0,1,6,0,0,1227,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,107562,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87135,'Grand_Company_Leve','w1f3','bnpc4178232',4178232,-345.266693,-34.185211,134.630203,-0.000048,1332,0,0,0,1,6,0,0,1226,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,107296,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87135,'Grand_Company_Leve','w1f3','bnpc4186129',4186129,-349.754089,-34.719910,134.719894,-0.000048,1332,0,0,0,1,6,0,0,1226,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,107024,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87135,'Grand_Company_Leve','w1f3','bnpc4186130',4186130,-352.471008,-35.168331,137.368896,-0.000048,1332,0,0,0,1,6,0,0,1226,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,106752,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87135,'Grand_Company_Leve','w1f3','bnpc4392500',4392500,-455.703613,-29.252451,280.737000,-0.000000,1331,0,0,0,1,6,0,0,1227,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,106162,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85405,'QB_CLSGLA_250_001','w1f3','bnpc4004491',4004491,-507.504486,-22.851410,109.758904,-0.803176,640,0,0,0,0,6,0,0,698,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85926,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85405,'QB_CLSGLA_250_001','w1f3','bnpc4004494',4004494,-507.877411,-22.985201,107.407700,-0.424270,639,0,0,0,0,6,0,0,0,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85660,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85405,'QB_CLSGLA_250_001','w1f3','bnpc4004495',4004495,-505.248505,-22.950710,110.197800,-1.167870,639,0,0,0,0,6,0,0,0,0,0.000000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85388,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85405,'QB_CLSGLA_250_001','w1f3','bnpc4004498',4004498,-517.999878,-21.574789,122.372704,0.479371,641,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85122,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011007',4011007,0.985069,-30.000000,-28.056801,-0.795849,658,0,0,0,0,6,0,0,929,0,0.000000,26,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83600,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011008',4011008,-0.710848,-30.000000,-27.247431,-0.802677,659,0,0,0,0,6,0,0,928,0,0.000000,26,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83334,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011009',4011009,10.113810,-31.000080,-7.057602,-1.558702,660,0,0,0,0,6,0,0,1305,0,0.800000,26,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83068,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011010',4011010,0.682722,-31.000000,-7.223484,0.746519,659,0,0,0,0,6,0,0,928,0,0.800000,26,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82790,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011011',4011011,6.421261,-17.544371,20.200621,0.018086,661,0,0,0,0,6,0,0,1306,0,0.000000,26,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82530,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011012',4011012,4.580550,-17.544279,20.167940,0.106035,661,0,0,0,0,6,0,0,1306,0,0.000000,26,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82258,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011014',4011014,14.999570,-6.027344,1.205444,-1.507208,662,0,0,0,0,6,0,0,1307,0,0.000000,29,3,120,1,0,0,0,0,0,0,0,0,0,0,0.010000,1.000000,81920,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011015',4011015,22.648600,-6.014692,-8.261452,-0.949908,662,0,0,0,0,6,0,0,1307,0,0.700000,29,3,120,1,0,0,0,0,0,0,0,0,0,0,0.010000,1.000000,81648,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011016',4011016,-6.673909,-10.015130,-15.982270,1.486686,665,0,0,0,8,6,0,0,689,0,0.010000,50,3,120,1,0,0,0,0,0,0,0,0,0,0,0.010000,1.000000,81382,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011017',4011017,-12.465460,-10.015110,-17.786940,1.478462,666,0,0,0,8,6,0,0,934,0,0.010000,34,3,120,1,0,0,0,0,0,0,0,0,0,0,0.010000,1.000000,81116,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011018',4011018,-13.945240,-10.015150,-13.611200,1.409920,667,0,0,0,8,6,0,0,934,0,0.010000,30,3,120,1,0,0,0,0,0,0,0,0,0,0,0.010000,1.000000,80850,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011021',4011021,-3.558222,-10.015130,-16.957121,-1.345549,663,0,0,0,0,6,0,0,929,0,0.010000,34,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80584,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3',NULL,4011027,-10.032360,-10.015110,-18.858459,-1.348427,664,0,0,0,0,6,0,0,1305,0,0.010000,31,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80318,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011028',4011028,-9.327881,-10.015110,-17.791071,-1.374540,664,0,0,0,0,6,0,0,1305,0,0.010000,31,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011029',4011029,-11.446340,-10.015140,-14.701650,-1.032349,664,0,0,0,0,6,0,0,1305,0,0.010000,31,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79774,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011030',4011030,-11.096900,-10.015160,-13.132090,-1.525889,664,0,0,0,0,6,0,0,1305,0,0.010000,31,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79502,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011419',4011419,34.329948,-6.014759,-14.373390,-1.469349,663,0,0,0,0,6,0,0,929,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78184,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011422',4011422,32.755741,-6.014997,-17.709150,-1.183589,663,0,0,0,0,6,0,0,929,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77912,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011426',4011426,33.546669,-6.014803,-15.951930,-1.396773,663,0,0,0,0,6,0,0,929,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77640,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011434',4011434,20.993839,-6.015417,-13.727900,-1.537304,668,0,0,0,0,6,0,0,709,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76588,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011442',4011442,31.243919,-6.014986,-16.480181,-1.399635,656,0,0,0,0,6,0,0,1301,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76322,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011120',4011120,-2.380032,-7.154999,-30.584829,0.051013,657,0,0,0,8,6,0,0,690,0,0.010000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76056,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011122',4011122,-2.211683,-7.180197,-33.237560,-0.097228,1324,0,0,0,0,6,0,0,969,0,0.010000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75790,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011234',4011234,10.190180,-6.014463,-28.179430,-0.000000,1335,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75524,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011237',4011237,31.760059,-6.014463,-24.397829,-0.833646,1336,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75258,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011241',4011241,34.369820,-6.014757,-18.085390,-0.000000,1335,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74980,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011244',4011244,17.713169,-6.120837,4.436374,-0.060911,1336,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74714,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011246',4011246,-35.039669,-10.025220,-19.638411,-0.000048,1335,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74436,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011249',4011249,-37.963482,-10.015110,-15.442570,0.398799,1336,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74170,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011260',4011260,41.511311,-8.047681,-12.881230,1.200292,1335,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73892,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011262',4011262,43.644539,-7.998807,-16.428459,0.757920,1336,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73626,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011266',4011266,11.616960,-6.014526,-8.013350,-0.000000,1335,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73348,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011267',4011267,-43.612991,-11.673310,-17.337061,0.012540,1336,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73082,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011236',4011236,29.467131,-6.014463,-26.018431,0.499218,1338,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72816,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011242',4011242,34.923779,-6.014727,-13.762630,-0.295285,1339,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72550,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011243',4011243,18.190130,-6.014297,6.223917,-0.102713,1340,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72284,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011248',4011248,-35.642101,-10.025220,-13.724410,-0.931489,1338,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72000,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011261',4011261,46.204029,-8.016254,-11.400960,-1.158847,1339,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71734,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011263',4011263,45.278679,-7.938566,-18.898199,-0.279927,1340,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71468,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011265',4011265,13.145110,-6.014687,-6.295640,-0.672723,1339,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71190,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011268',4011268,-42.331749,-10.906670,-15.001930,-0.720775,1340,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70924,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011235',4011235,11.258360,-6.014463,-25.602930,-0.300062,1339,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70646,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011247',4011247,-32.141811,-10.055740,-17.678810,-0.939386,1340,0,0,0,0,6,0,0,0,0,0.010000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70380,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85550,'QB_CLSGLA_300_001','w1f3','bnpc4011022',4011022,-4.315918,-10.015150,-15.074530,-1.372514,687,0,0,0,0,6,0,0,708,0,0.010000,34,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70114,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85716,'QB_CLSTHM150_001','w1f3','bnpc4033627',4033627,-0.294796,-23.624201,337.308502,-1.546083,672,0,0,0,1,6,0,0,1306,0,0.000000,15,2,120,1,0,2,0,20,4,0,0,0,1,0,0.000000,1.000000,69036,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85716,'QB_CLSTHM150_001','w1f3','bnpc4033629',4033629,28.000240,-22.354490,322.560394,-1.053717,672,0,0,0,1,6,0,0,1306,0,0.000000,15,2,120,1,0,2,0,20,4,0,0,0,1,0,0.000000,1.000000,68764,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85716,'QB_CLSTHM150_001','w1f3','bnpc4033631',4033631,58.121578,-23.636290,304.524292,-1.388418,672,0,0,0,1,6,0,0,1306,0,0.000000,15,2,120,1,0,1,0,20,4,0,0,0,1,0,0.000000,1.000000,68492,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85716,'QB_CLSTHM150_001','w1f3','bnpc4033688',4033688,99.596786,-23.961929,258.639313,-0.816288,673,0,0,0,8,6,0,0,758,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68158,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85716,'QB_CLSTHM150_001','w1f3','bnpc4033691',4033691,93.697517,-24.093929,273.178986,0.845939,674,0,0,0,1,6,0,0,756,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67892,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85716,'QB_CLSTHM150_001','w1f3','bnpc4033692',4033692,94.619690,-24.260420,274.997803,0.392386,675,0,0,0,1,6,0,0,757,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67626,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85716,'QB_CLSTHM150_001','w1f3','bnpc4089803',4089803,31.551029,-22.042089,321.040710,0.301524,959,0,0,0,1,6,0,0,1306,0,0.000000,15,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66940,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85716,'QB_CLSTHM150_001','w1f3','bnpc4089804',4089804,33.119160,-21.824329,321.184204,0.210327,959,0,0,0,1,6,0,0,1306,0,0.000000,15,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66668,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85716,'QB_CLSTHM150_001','w1f3','bnpc4089805',4089805,30.276310,-22.149969,322.088898,0.300708,959,0,0,0,1,6,0,0,1306,0,0.000000,15,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66396,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85716,'QB_CLSTHM150_001','w1f3','bnpc4169221',4169221,58.604149,-23.572729,300.566589,-1.069961,672,0,0,0,1,6,0,0,1306,0,0.000000,15,2,120,1,0,1,0,20,4,0,0,0,1,0,0.000000,1.000000,65084,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85717,'QB_CLSTHM250_001','w1f3','bnpc4035753',4035753,186.040405,3.180772,-337.372101,0.791670,679,0,0,0,1,6,0,0,782,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64182,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85717,'QB_CLSTHM250_001','w1f3','bnpc4035757',4035757,186.940308,3.180772,-339.920197,0.826404,679,0,0,0,1,6,0,0,782,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63910,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85717,'QB_CLSTHM250_001','w1f3','bnpc4035758',4035758,182.858398,3.180772,-337.229309,0.678351,679,0,0,0,1,6,0,0,782,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63638,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85717,'QB_CLSTHM250_001','w1f3','bnpc4035762',4035762,184.806000,3.180772,-330.390991,1.465880,680,0,0,0,1,6,0,0,783,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63372,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85717,'QB_CLSTHM250_001','w1f3','bnpc4035763',4035763,192.565796,3.180905,-337.677795,-0.000000,680,0,0,0,1,6,0,0,783,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63100,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85717,'QB_CLSTHM250_001','w1f3','bnpc4035764',4035764,194.371002,3.180905,-328.868713,-0.793816,680,0,0,0,1,6,0,0,783,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62828,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85717,'QB_CLSTHM250_001','w1f3','bnpc4035765',4035765,186.022705,3.158569,-337.300690,0.782774,671,0,0,0,1,6,0,0,781,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61934,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098741',4098741,-329.063202,-11.400080,-243.381195,-0.750626,967,0,0,0,0,6,0,0,992,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60864,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098743',4098743,-326.578400,-11.400080,-244.589294,-1.339433,964,0,0,0,8,6,0,0,994,0,0.000000,22,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60598,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098744',4098744,-330.128998,-11.429080,-240.222794,0.641981,965,0,0,0,8,6,0,0,1007,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60332,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098745',4098745,-335.554596,-12.036310,-243.668396,1.553804,966,0,0,0,8,6,0,0,1005,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60066,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098749',4098749,-331.652405,-11.400080,-245.548706,1.227109,963,0,0,0,8,6,0,0,993,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59800,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098775',4098775,-339.987915,-11.996740,-244.281693,1.391774,968,0,0,0,0,6,0,0,256,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59534,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098776',4098776,-339.995789,-11.878610,-238.282394,1.238344,968,0,0,0,0,6,0,0,256,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59262,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098777',4098777,-338.586700,-11.869250,-233.434692,0.801326,968,0,0,0,0,6,0,0,256,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58990,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098783',4098783,-327.191406,-10.789900,-250.398407,-0.325959,968,0,0,0,0,6,0,0,256,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58718,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098784',4098784,-323.251587,-10.788330,-248.939407,-0.724603,968,0,0,0,0,6,0,0,256,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58446,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098791',4098791,-333.769592,-10.797520,-253.360306,0.710184,969,0,0,0,0,6,0,0,251,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58180,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098792',4098792,-319.227112,-10.814500,-249.908005,-1.179849,969,0,0,0,0,6,0,0,251,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098806',4098806,-352.105011,-10.097430,-225.921295,0.680412,970,0,0,0,0,6,0,0,248,0,0.000000,21,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57642,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098810',4098810,-349.660492,-10.086240,-224.292404,0.657033,969,0,0,0,0,6,0,0,251,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57364,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098819',4098819,-349.057892,-10.106160,-224.417404,0.640675,969,0,0,0,0,6,0,0,251,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57092,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098821',4098821,-351.764496,-10.187680,-227.330002,0.633913,969,0,0,0,0,6,0,0,251,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56820,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098823',4098823,-354.243500,-10.030830,-228.630707,0.683958,969,0,0,0,0,6,0,0,251,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56548,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098866',4098866,-350.653900,-11.414910,-241.182205,1.411351,969,0,0,0,0,6,0,0,251,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56276,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098871',4098871,-352.038300,-11.177220,-237.674896,1.290702,969,0,0,0,0,6,0,0,251,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56004,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098886',4098886,-351.593506,-10.166930,-226.888306,1.420507,970,0,0,0,0,6,0,0,248,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55738,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098887',4098887,-351.522095,-10.208310,-226.642303,1.152133,968,0,0,0,0,6,0,0,256,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55454,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098888',4098888,-355.210205,-10.178070,-231.915100,1.467358,968,0,0,0,0,6,0,0,256,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55182,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098889',4098889,-353.130402,-10.172500,-229.102905,1.474305,968,0,0,0,0,6,0,0,256,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54910,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098839',4098839,-356.965698,-10.495460,-239.034103,1.054347,969,0,0,0,0,6,0,0,251,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54468,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098840',4098840,-353.292694,-10.135470,-228.731506,1.060181,969,0,0,0,0,6,0,0,251,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54196,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86868,'QB_ManFst209_001','w1f3','bnpc4098842',4098842,-353.564301,-10.109700,-228.778900,1.159750,969,0,0,0,0,6,0,0,251,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53924,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100688,'QST_BanAll070_003','w1f3','bnpc4755028',4755028,-328.846405,-11.400000,-239.576004,-1.132732,3119,0,0,0,1,6,0,0,2864,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51748,1,0,0,0,0,0,0,830,464); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (100688,'QST_BanAll070_003','w1f3','bnpc4755106',4755106,-337.249908,-12.134900,-244.538803,-0.348966,2852,0,0,0,1,6,0,0,2865,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51482,1,0,0,0,0,0,0,829,463); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80518,'QST_CLSGLA_150','w1f3','bnpc3982631',3982631,-220.976501,-37.679741,81.619148,0.204726,1244,0,0,0,1,6,0,0,1177,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,48548,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80518,'QST_CLSGLA_150','w1f3','bnpc3982632',3982632,-234.058197,-38.237942,75.760986,1.104100,1244,0,0,0,1,6,0,0,1177,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,48276,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84948,'QST_CLSPGL_200','w1f3','bnpc3996145',3996145,-241.730392,-27.047211,224.423294,-0.000527,57,0,0,0,1,6,0,0,696,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45846,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84948,'QST_CLSPGL_200','w1f3','bnpc3996150',3996150,-243.287399,-26.896919,225.418304,-0.000623,57,0,0,0,1,6,0,0,696,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45574,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84948,'QST_CLSPGL_200','w1f3','bnpc3996230',3996230,-229.944107,-27.578051,251.635498,-0.000432,57,0,0,0,1,6,0,0,696,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45302,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84948,'QST_CLSPGL_200','w1f3','bnpc3996232',3996232,-229.913498,-27.768299,248.400604,-0.000144,57,0,0,0,1,6,0,0,696,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45030,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84948,'QST_CLSPGL_200','w1f3','bnpc4023653',4023653,-223.442795,-29.851231,200.138901,-0.000000,136,0,0,0,1,6,0,0,696,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44704,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84948,'QST_CLSPGL_200','w1f3','bnpc4023654',4023654,-211.190994,-31.079910,197.649506,-0.000000,136,0,0,0,1,6,0,0,696,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44432,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (84948,'QST_CLSPGL_200','w1f3','bnpc4172347',4172347,-225.360794,-37.496368,177.691101,-0.000000,139,0,0,0,1,6,0,0,950,0,0.000000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44166,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86071,'QST_CLSTHM100_001','w1f3','bnpc4074126',4074126,-354.356689,-35.885159,289.590912,-1.550425,166,0,0,0,1,6,0,0,1177,0,0.000000,7,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43676,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86071,'QST_CLSTHM100_001','w1f3','bnpc4184413',4184413,-351.208405,-35.730900,293.091492,-1.139269,1238,0,0,0,1,6,0,0,1177,0,0.000000,7,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43342,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86072,'QST_CLSTHM101_001','w1f3','bnpc4074136',4074136,-354.356689,-35.885201,289.590912,-1.550425,166,0,0,0,1,6,0,0,1177,0,0.000000,7,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42840,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86072,'QST_CLSTHM101_001','w1f3','bnpc4184412',4184412,-351.208405,-35.730900,293.091492,-1.139269,1238,0,0,0,1,6,0,0,1177,0,0.000000,7,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42506,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92622,'QST_GaiUsa504','w1f3','bnpc4279981',4279981,321.976288,17.232620,-249.201004,-1.076045,363,0,0,0,1,6,0,0,1997,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26376,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93084,'QST_GaiUsb505','w1f3','bnpc4296761',4296761,-77.578918,-58.467960,155.332001,-1.034186,118,0,0,0,1,6,0,0,2182,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93084,'QST_GaiUsb505','w1f3','bnpc4296763',4296763,-81.006897,-58.436890,157.684204,-0.338359,118,0,0,0,1,6,0,0,2182,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93084,'QST_GaiUsb505','w1f3','bnpc4296764',4296764,-81.692734,-57.730949,147.796097,-0.000000,118,0,0,0,1,6,0,0,2182,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25414,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93087,'QST_GaiUsb510','w1f3','bnpc4296835',4296835,-464.835602,-28.305540,322.102692,0.515569,1410,0,0,0,1,6,0,0,1188,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24628,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93087,'QST_GaiUsb510','w1f3','bnpc4296837',4296837,-461.052795,-28.381861,324.397186,-1.195376,1410,0,0,0,1,6,0,0,1188,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24356,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93095,'QST_GaiUsb512','w1f3','bnpc4296986',4296986,-236.068497,-36.007401,160.664001,-1.301134,1901,0,0,0,1,6,0,0,1987,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23882,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93471,'QST_JobBlm300','w1f3','bnpc4308050',4308050,-72.690826,-32.783970,-47.348652,0.164445,305,0,0,0,1,6,0,0,2038,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22660,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93471,'QST_JobBlm300','w1f3','bnpc4308051',4308051,-72.194839,-32.816891,-46.634201,1.320387,305,0,0,0,1,6,0,0,2038,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22388,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93471,'QST_JobBlm300','w1f3','bnpc4308052',4308052,-73.006882,-32.686871,-46.710819,-1.107691,305,0,0,0,1,6,0,0,2038,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22116,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93505,'QST_JobBlm451','w1f3','bnpc4308912',4308912,220.216003,5.579391,-269.244598,-0.679259,1935,0,0,0,1,6,0,0,2041,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21326,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93505,'QST_JobBlm451','w1f3','bnpc4308913',4308913,221.572906,5.511848,-269.315613,0.454900,1935,0,0,0,1,6,0,0,2041,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21054,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93505,'QST_JobBlm451','w1f3','bnpc4308914',4308914,219.806107,5.669615,-270.408691,-1.012368,1936,0,0,0,1,6,0,0,2042,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20788,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93505,'QST_JobBlm451','w1f3','bnpc4308915',4308915,220.935303,5.674353,-270.993988,0.056073,1936,0,0,0,1,6,0,0,2042,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20516,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93505,'QST_JobBlm451','w1f3','bnpc4308916',4308916,221.868500,5.604948,-270.309906,1.460054,1936,0,0,0,1,6,0,0,2042,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20244,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93360,'QST_JobBrd350','w1f3','bnpc4305478',4305478,255.531906,15.067150,-148.123306,0.864822,193,0,0,0,1,6,0,0,2049,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19582,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93360,'QST_JobBrd350','w1f3','bnpc4305479',4305479,256.623413,14.759240,-146.108704,0.686225,194,0,0,0,1,6,0,0,2050,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19316,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93277,'QST_JobPld400','w1f3','bnpc4302963',4302963,163.130600,-10.758450,91.090767,1.395924,383,0,0,0,1,6,0,0,2021,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18830,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93277,'QST_JobPld400','w1f3','bnpc4302966',4302966,176.207199,-9.740002,71.040947,0.240988,383,0,0,0,1,6,0,0,2021,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18558,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93277,'QST_JobPld400','w1f3','bnpc4302970',4302970,190.661499,-9.410894,84.197197,-1.383682,383,0,0,0,1,6,0,0,2021,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18286,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93277,'QST_JobPld400','w1f3','bnpc4302971',4302971,163.225494,-10.482320,80.182800,1.133936,383,0,0,0,1,6,0,0,2021,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18014,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93277,'QST_JobPld400','w1f3','bnpc4302973',4302973,176.402802,-10.589440,98.355667,-0.053638,383,0,0,0,1,6,0,0,2021,0,0.000000,39,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17742,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93094,'QST_ManFst401','w1f3','bnpc4296987',4296987,-445.151398,-27.695190,14.785890,-0.000048,1902,0,0,0,1,6,0,0,1988,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16736,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99748,'QST_SubCts813_001','w1f3','bnpc4696205',4696205,-241.353104,-37.775002,102.370300,-0.278808,138,0,0,0,1,6,0,0,2756,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12762,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (99748,'QST_SubCts813_001','w1f3','bnpc4696206',4696206,-238.326202,-37.818710,107.404297,-1.514679,138,0,0,0,1,6,0,0,2756,0,0.000000,16,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12490,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85097,'QST_SUBWIL_110','w1f3','bnpc4100865',4100865,-332.256500,-37.015419,242.572601,-1.555244,166,0,0,0,1,6,0,0,1177,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11184,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85097,'QST_SUBWIL_110','w1f3','bnpc4100866',4100866,-331.105713,-37.057968,246.130203,-1.496422,166,0,0,0,1,6,0,0,1177,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10912,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86956,'QST_SUBWIL_113','w1f3','bnpc4102012',4102012,-420.504089,-0.414920,-280.639404,1.386766,18,0,0,0,1,6,0,0,1218,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8712,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86956,'QST_SUBWIL_113','w1f3','bnpc4102013',4102013,-419.306885,-0.205972,-278.424011,0.531211,19,0,0,0,1,6,0,0,1219,0,0.000000,13,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,8446,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85100,'QST_SUBWIL_119','w1f3','bnpc3982707',3982707,-386.169403,-21.923771,-38.824409,1.071621,206,0,0,0,1,6,0,0,1317,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6396,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85100,'QST_SUBWIL_119','w1f3','bnpc3982708',3982708,-383.962311,-21.958099,-45.288441,0.156013,206,0,0,0,1,6,0,0,1317,0,0.000000,12,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6124,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85107,'QST_SUBWIL_127','w1f3','bnpc3986940',3986940,-74.549667,-58.279518,151.510193,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2726,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85107,'QST_SUBWIL_127','w1f3','bnpc4097181',4097181,-75.628098,-58.611599,166.870300,-1.276162,41,0,0,0,1,6,0,0,201,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2454,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85107,'QST_SUBWIL_127','w1f3','bnpc4097176',4097176,-79.204102,-57.990002,148.863907,-0.000000,41,0,0,0,1,6,0,0,201,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,2182,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128048',4128048,-402.311707,13.399570,-383.545898,-0.000000,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161096,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128049',4128049,-398.984802,13.399560,-382.573486,-0.000000,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160824,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128050',4128050,-398.703003,13.473630,-399.130188,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160552,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128051',4128051,-349.172211,14.053470,-371.236786,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160280,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128052',4128052,-363.032715,12.848900,-352.263092,-0.000000,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160008,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128053',4128053,-344.625000,14.389220,-374.166504,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159736,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128054',4128054,-361.864685,12.175190,-319.089905,-0.000000,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159464,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128055',4128055,-357.923309,12.323080,-315.838715,-0.000000,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159192,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128056',4128056,-366.900909,12.044570,-313.915009,-0.000000,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158920,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128057',4128057,-345.540588,14.114500,-368.795288,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158648,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128058',4128058,-306.752106,19.363649,-347.920990,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158376,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128059',4128059,-303.998688,19.825630,-345.763611,-0.000000,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158104,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128061',4128061,-329.335510,13.992490,-311.024689,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157832,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128062',4128062,-334.273499,12.735820,-272.286011,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157560,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128063',4128063,-332.188293,12.773240,-274.762512,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157288,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128064',4128064,-275.553406,19.811119,-300.743988,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157016,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128065',4128065,-277.943207,19.468559,-300.616791,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156744,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128066',4128066,-216.697205,19.814110,-291.068909,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156472,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128067',4128067,-219.086899,19.669310,-290.941803,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156200,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128068',4128068,-215.855301,18.862061,-286.262787,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155928,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128069',4128069,-251.503403,17.336300,-282.862091,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155656,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128071',4128071,-277.037994,27.629240,-446.633911,-0.000048,174,0,0,0,1,6,0,0,303,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155390,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128072',4128072,-293.590302,20.134371,-406.301605,-0.000048,174,0,0,0,1,6,0,0,303,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155118,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128073',4128073,-241.107803,23.575130,-427.206787,-0.000048,174,0,0,0,1,6,0,0,303,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154846,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128074',4128074,-233.356293,23.788820,-423.636292,-0.000048,174,0,0,0,1,6,0,0,303,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154574,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128075',4128075,-192.850494,24.439541,-471.427490,-0.000048,174,0,0,0,1,6,0,0,303,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154302,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128076',4128076,-225.719101,22.713610,-511.794586,-0.000048,174,0,0,0,1,6,0,0,303,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154030,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128078',4128078,-234.581894,23.154600,-503.730499,-0.000048,174,0,0,0,1,6,0,0,303,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153758,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128080',4128080,-99.297150,11.812300,-624.887512,-0.000048,174,0,0,0,1,6,0,0,303,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153486,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128081',4128081,-101.063499,14.100460,-548.412415,-0.000048,174,0,0,0,1,6,0,0,303,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153214,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128082',4128082,-57.090172,5.200434,-542.299622,-0.000048,174,0,0,0,1,6,0,0,303,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152942,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128083',4128083,-1.143898,7.618513,-528.769287,-0.000048,174,0,0,0,1,6,0,0,303,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152670,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128085',4128085,5.080926,7.618519,-537.079224,-0.000048,174,0,0,0,1,6,0,0,303,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152398,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128089',4128089,-156.176102,17.047890,-567.528198,-0.000048,174,0,0,0,1,6,0,0,303,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152126,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128090',4128090,-129.437500,14.855080,-587.989197,-0.000048,174,0,0,0,1,6,0,0,303,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151854,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128095',4128095,-28.120790,6.618664,-619.769470,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151576,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128096',4128096,-29.463200,6.619354,-617.967285,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151304,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128097',4128097,-24.055080,6.620687,-614.076782,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151032,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128098',4128098,-25.895201,4.928910,-647.637573,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150760,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128099',4128099,-12.619260,4.562378,-658.594727,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150488,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128100',4128100,-9.942262,4.207929,-660.454895,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150216,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128102',4128102,-63.811069,7.713764,-671.437012,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149944,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128103',4128103,-56.610531,6.680237,-675.225220,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149672,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128104',4128104,-63.511070,7.475504,-669.236084,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149400,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128105',4128105,-82.276627,12.964970,-712.882813,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149128,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128106',4128106,-75.376091,12.702090,-718.871826,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148856,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128107',4128107,-82.576622,13.183150,-715.083679,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148584,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128108',4128108,-92.149231,14.084050,-719.172974,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148312,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128109',4128109,-50.418240,10.700190,-716.867188,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148040,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128110',4128110,-36.628948,10.796120,-721.924072,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147768,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128111',4128111,-34.110340,9.565180,-718.908081,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147496,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128112',4128112,-22.776590,6.822047,-697.630371,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147224,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128113',4128113,39.229660,3.128414,-685.332397,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146952,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128114',4128114,36.552662,2.610799,-683.472229,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146680,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128115',4128115,42.912899,6.469104,-652.670776,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146408,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128119',4128119,-65.089844,4.250028,-634.668091,-0.000048,176,0,0,0,1,6,0,0,286,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146136,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128250',4128250,40.021858,6.264256,-433.494293,-0.000048,30,0,0,0,1,6,0,0,280,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145876,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128252',4128252,55.418652,12.390480,-491.216187,-0.000048,30,0,0,0,1,6,0,0,280,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145604,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128253',4128253,77.684799,10.281420,-468.654602,-0.000048,30,0,0,0,1,6,0,0,280,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145332,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128254',4128254,89.542992,10.303750,-428.138397,-0.000048,30,0,0,0,1,6,0,0,280,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145060,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128255',4128255,137.875504,10.065270,-451.167206,-0.000048,30,0,0,0,1,6,0,0,280,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144788,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128256',4128256,35.210232,9.730854,-485.420990,-0.000048,30,0,0,0,1,6,0,0,280,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144516,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128257',4128257,183.695404,14.216050,-465.348206,-0.000048,30,0,0,0,1,6,0,0,280,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144244,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128260',4128260,-75.621529,14.631890,-214.231506,-0.000048,18,0,0,0,1,6,0,0,320,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143978,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128261',4128261,-120.924698,14.520920,-211.301697,-0.000048,19,0,0,0,1,6,0,0,323,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143712,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128262',4128262,-73.457458,14.731040,-236.287506,-0.000048,19,0,0,0,1,6,0,0,323,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143440,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128263',4128263,-89.280579,15.629060,-251.062103,-0.000048,18,0,0,0,1,6,0,0,320,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143162,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128264',4128264,-112.932098,15.533810,-246.046600,-0.000048,19,0,0,0,1,6,0,0,323,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142896,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128265',4128265,-121.350601,14.949070,-239.633499,-0.000048,18,0,0,0,1,6,0,0,320,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142618,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128269',4128269,-1.754883,15.457340,-292.500214,-1.260616,167,0,0,0,0,6,0,0,256,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142358,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128270',4128270,-5.172852,15.518430,-288.410797,0.190024,169,0,0,0,0,6,0,0,259,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142092,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128271',4128271,-26.595400,16.964270,-310.556000,-0.000000,169,0,0,0,1,6,0,0,259,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141820,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128272',4128272,-6.968165,15.539780,-293.998108,0.791853,167,0,0,0,0,6,0,0,256,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141542,1,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128273',4128273,-3.867146,14.547090,-326.988495,0.910544,169,0,0,0,0,6,0,0,259,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141276,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128274',4128274,-1.742153,14.339200,-330.423615,-0.483291,167,0,0,0,0,6,0,0,256,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140998,1,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128275',4128275,-16.894220,15.891530,-344.307587,-0.000000,169,0,0,0,1,6,0,0,259,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140732,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128276',4128276,-36.352852,15.737740,-281.239685,-0.000000,167,0,0,0,1,6,0,0,256,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140454,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128285',4128285,86.811409,3.880296,-641.041382,-0.024232,363,0,0,0,0,6,0,0,331,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140194,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4129531',4129531,154.758194,4.167945,-538.420471,-0.197301,363,0,0,0,0,6,0,0,331,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139922,1,0,0,0,0,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4129542',4129542,86.147247,2.628398,-610.838013,-0.000048,365,0,0,0,1,6,0,0,332,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139656,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130363',4130363,99.626099,3.646851,-655.359680,-0.000048,365,0,0,0,1,6,0,0,332,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139384,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130365',4130365,137.834702,3.433289,-594.293091,-0.000048,365,0,0,0,1,6,0,0,332,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139112,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130366',4130366,148.899902,5.148987,-530.581482,-0.000000,365,0,0,0,1,6,0,0,332,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138840,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130369',4130369,124.284698,2.822876,-604.577820,0.516193,363,0,0,0,0,6,0,0,331,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138562,1,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130372',4130372,124.864502,2.731323,-606.225708,-0.709429,365,0,0,0,0,6,0,0,332,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138296,1,0,0,0,0,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130374',4130374,161.030197,2.624552,-609.139282,-0.000048,363,0,0,0,1,6,0,0,331,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138018,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130377',4130377,161.330200,3.682087,-563.744324,-0.000048,363,0,0,0,1,6,0,0,331,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137746,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130378',4130378,98.850403,6.344423,-544.399780,1.278742,365,0,0,0,0,6,0,0,332,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137480,1,0,0,0,20,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130379',4130379,100.378799,6.344423,-543.894287,-1.373105,363,0,0,0,0,6,0,0,331,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137202,1,0,0,0,20,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130380',4130380,11.922580,6.840849,-592.719177,0.553909,365,0,0,0,0,6,0,0,332,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136936,1,0,0,0,20,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130381',4130381,13.302400,7.038995,-591.807983,-0.613887,363,0,0,0,0,6,0,0,331,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136658,1,0,0,0,20,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130382',4130382,19.505831,19.298901,-624.247314,1.488717,365,0,0,0,0,6,0,0,332,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136392,1,0,0,0,20,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130383',4130383,20.782539,19.319000,-625.061401,-0.843253,363,0,0,0,0,6,0,0,331,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136114,1,0,0,0,20,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130386',4130386,37.483280,18.026581,-609.961670,-0.268996,365,0,0,0,0,6,0,0,332,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135848,1,0,0,0,20,30072,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130388',4130388,36.074890,17.983601,-608.959229,1.356225,363,0,0,0,0,6,0,0,331,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135570,1,0,0,0,20,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130389',4130389,37.643921,17.440981,-596.398926,0.516289,363,0,0,0,1,6,0,0,331,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135298,1,0,0,0,20,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130390',4130390,24.155029,17.990360,-604.119995,-0.709525,365,0,0,0,1,6,0,0,332,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135032,1,0,0,0,20,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130403',4130403,22.943991,6.252352,-608.046997,1.331182,363,0,0,0,0,6,0,0,331,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134754,1,0,0,0,20,30083,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130404',4130404,38.940979,7.903199,-595.086975,-0.709429,365,0,0,0,0,6,0,0,332,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134488,1,0,0,0,20,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130431',4130431,66.514038,9.567322,-576.257019,0.047602,365,0,0,0,1,6,0,0,332,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134216,1,0,0,0,20,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130432',4130432,18.704010,7.066027,-628.667725,0.516289,363,0,0,0,1,6,0,0,331,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133938,1,0,0,0,20,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130682',4130682,95.351791,6.393626,-542.884888,1.048452,363,0,0,0,0,6,0,0,331,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133666,1,0,0,0,20,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130683',4130683,84.609253,6.344424,-545.683472,1.342877,365,0,0,0,0,6,0,0,332,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133400,1,0,0,0,20,30077,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130705',4130705,92.140930,6.705567,-559.693420,0.047602,365,0,0,0,1,6,0,0,332,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133128,1,0,0,0,20,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130708',4130708,98.243317,6.344424,-537.346680,0.047602,363,0,0,0,1,6,0,0,331,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132850,1,0,0,0,20,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130800',4130800,-385.468414,13.547760,-376.772614,-0.000000,57,0,0,0,1,6,0,0,564,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132590,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130805',4130805,-326.314209,15.945620,-388.265808,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132318,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130806',4130806,-305.992188,11.810610,-274.036194,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132046,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130807',4130807,-231.864395,4.434839,-243.585495,-0.000000,57,0,0,0,1,6,0,0,564,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131774,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130808',4130808,-229.445007,4.279073,-242.303406,-0.000000,57,0,0,0,1,6,0,0,564,0,0.000000,25,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131502,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130809',4130809,-189.227203,19.363649,-294.819611,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,26,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131230,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130811',4130811,-71.915771,15.823550,-267.627991,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,26,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130958,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130813',4130813,-70.176270,15.579410,-265.919006,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,26,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130686,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130814',4130814,-119.981796,19.729919,-275.562714,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,26,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130414,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130819',4130819,-21.895340,6.009452,-485.204193,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,26,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130142,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130821',4130821,-26.265631,3.170915,-553.012085,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,26,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129870,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130827',4130827,-105.577202,20.767460,-487.358002,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,26,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129598,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130829',4130829,-155.776306,20.648140,-534.493225,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,26,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129326,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130832',4130832,-62.007500,3.030127,-631.860474,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129054,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130836',4130836,-61.692261,4.837097,-580.163330,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,26,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128782,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130839',4130839,-91.172493,13.691580,-698.557617,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128510,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4130842',4130842,-16.285299,3.398638,-675.862915,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,27,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128238,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4131461',4131461,82.139282,2.612924,-669.048584,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,28,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127966,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4131466',4131466,80.602791,2.681827,-667.547119,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,28,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127694,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4131467',4131467,142.968597,2.741290,-677.939270,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,28,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127422,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4131470',4131470,166.607895,8.180286,-517.830872,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,28,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127150,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4131473',4131473,97.571892,10.129180,-455.764313,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,29,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126878,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4131477',4131477,48.494888,6.708367,-437.703308,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,29,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126606,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4131480',4131480,12.300930,7.902957,-513.924316,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,26,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126334,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4131487',4131487,-19.243019,5.989767,-481.780304,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,26,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126062,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4131489',4131489,45.965000,4.000000,-353.260895,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,29,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125790,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4131491',4131491,44.038780,4.000000,-355.090515,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,29,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125518,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4131492',4131492,-277.563599,21.317619,-408.466705,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,28,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125246,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4131494',4131494,-220.691895,23.733870,-445.561493,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,28,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124974,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4131495',4131495,-203.367996,20.050930,-538.838074,-0.000048,57,0,0,0,1,6,0,0,564,0,0.000000,28,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124702,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4132134',4132134,-23.739849,6.019080,-587.944885,-0.000048,174,0,0,0,1,6,0,0,303,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124382,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4132161',4132161,-219.349106,4.013124,-175.605194,-0.000048,356,0,0,0,1,6,0,0,307,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124164,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4329911',4329911,-253.803406,23.269960,-431.265686,-0.652192,2188,0,0,0,6,6,0,0,1993,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123578,4,1,0,0,0,0,4329909,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128258',4128258,-100.389198,14.631890,-227.392395,-0.000048,2259,0,0,0,1,6,0,0,1998,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123312,4,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4128259',4128259,-97.276253,14.631890,-215.328506,-0.000048,2260,0,0,0,1,6,0,0,1999,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123046,4,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4333133',4333133,-201.984695,24.429350,-469.400787,-0.038124,2188,0,0,0,6,6,0,0,1993,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122442,4,1,0,0,0,0,4329909,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4333143',4333143,-91.031189,14.631890,-220.647095,-0.000048,2260,0,0,0,1,6,0,0,1999,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122182,4,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89383,'LVD_BNPC_01','w1f4','bnpc4333144',4333144,-95.213539,14.640040,-232.687607,-0.000048,2259,0,0,0,1,6,0,0,1998,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121904,4,1,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132178',4132178,-223.713196,3.981025,-172.004196,-0.000048,356,0,0,0,1,6,0,0,307,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121080,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132179',4132179,-217.822601,5.111694,-152.941193,-0.000048,356,0,0,0,1,6,0,0,307,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120808,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132181',4132181,-255.092102,4.214314,-101.690002,-0.000048,356,0,0,0,1,6,0,0,307,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120536,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132182',4132182,-260.379913,3.866467,-142.158005,-0.000048,356,0,0,0,1,6,0,0,307,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120264,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132184',4132184,-284.843506,4.387352,-61.849739,-0.000048,356,0,0,0,1,6,0,0,307,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119992,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132186',4132186,-281.833313,4.514743,-60.248520,-0.000048,356,0,0,0,1,6,0,0,307,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119720,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132187',4132187,-330.772186,4.539914,-70.267380,-0.000048,356,0,0,0,1,6,0,0,307,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119448,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132191',4132191,-395.325806,4.134359,-44.501831,-0.000048,356,0,0,0,1,6,0,0,307,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119176,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132194',4132194,-412.872314,3.503397,-46.007912,-0.000048,356,0,0,0,1,6,0,0,307,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118904,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132197',4132197,-392.828613,4.906980,-40.147282,-0.000048,356,0,0,0,1,6,0,0,307,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118632,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132356',4132356,-38.284969,7.583679,405.569489,-0.000048,356,0,0,0,1,6,0,0,307,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118360,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132357',4132357,-30.167110,8.163513,413.107391,-0.000048,356,0,0,0,1,6,0,0,307,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118088,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132361',4132361,-4.867676,10.116700,466.422485,-0.000048,356,0,0,0,1,6,0,0,307,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117816,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132362',4132362,74.448730,8.224609,416.708588,-0.000048,356,0,0,0,1,6,0,0,307,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117544,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132363',4132363,-96.391296,12.802250,545.708374,-0.000048,356,0,0,0,1,6,0,0,307,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117272,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132371',4132371,-247.455597,14.572330,601.159729,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117024,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132373',4132373,-265.674896,14.389220,594.628723,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116752,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132374',4132374,-409.506897,2.863013,643.319275,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116480,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132375',4132375,-373.173615,1.482062,830.041687,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116208,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132376',4132376,-303.572998,0.554237,737.432800,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115936,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132377',4132377,-285.938812,8.895996,674.952271,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115664,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132378',4132378,-321.243011,0.748059,738.623108,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115392,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132379',4132379,-228.992203,-0.198364,779.568115,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115120,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132381',4132381,-214.807693,1.408311,692.128296,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114848,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132385',4132385,30.807980,25.375731,552.178101,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114576,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132386',4132386,86.625488,18.020809,513.389587,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114304,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132387',4132387,152.666504,8.346619,585.931030,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114032,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132389',4132389,95.506104,14.938600,536.278198,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113760,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132390',4132390,-41.311451,8.914728,618.996887,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113488,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132391',4132391,55.148140,12.639380,622.588928,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113216,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132394',4132394,99.351440,5.569519,656.366699,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112944,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132395',4132395,49.166569,12.003170,629.394592,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112672,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132398',4132398,-155.296402,-0.249691,684.087891,-0.000000,17,0,0,0,1,6,0,0,132,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112406,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132402',4132402,-128.552399,-6.248472,698.360413,-0.000000,17,0,0,0,1,6,0,0,132,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112134,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132403',4132403,-82.598297,-7.092235,672.947815,-0.000000,17,0,0,0,1,6,0,0,132,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111862,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132404',4132404,-47.857578,-2.212809,690.802612,-0.000000,17,0,0,0,1,6,0,0,132,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111590,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132405',4132405,-43.152802,-0.921682,679.936829,-0.000000,17,0,0,0,1,6,0,0,132,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111318,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132406',4132406,-28.558571,-0.125700,752.652527,-0.000000,17,0,0,0,1,6,0,0,132,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132407',4132407,-54.816002,-0.469275,771.766785,-0.000000,17,0,0,0,1,6,0,0,132,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110774,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132408',4132408,-157.322098,-1.367114,781.628418,-0.000000,17,0,0,0,1,6,0,0,132,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110502,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132409',4132409,-162.195999,-0.433001,772.940186,-0.000000,17,0,0,0,1,6,0,0,132,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132410',4132410,-153.362198,0.387354,735.776123,-0.000000,17,0,0,0,1,6,0,0,132,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132411',4132411,-99.790901,-2.270120,789.114685,-0.000000,17,0,0,0,1,6,0,0,132,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109686,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132415',4132415,-174.253799,4.062513,619.920715,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109408,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132416',4132416,103.926498,3.903357,915.233887,-0.000048,190,0,0,0,1,6,0,0,264,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109148,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133094',4133094,136.949707,3.216623,756.322510,-0.000048,190,0,0,0,1,6,0,0,264,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108876,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133095',4133095,256.006012,6.944463,820.505676,-0.000048,190,0,0,0,1,6,0,0,264,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108604,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133096',4133096,200.758102,5.104731,868.748230,-0.000048,190,0,0,0,1,6,0,0,264,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108332,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133097',4133097,152.132797,4.348816,821.800720,-0.000048,190,0,0,0,1,6,0,0,264,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108060,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133098',4133098,194.324295,4.776027,863.148987,-0.000048,190,0,0,0,1,6,0,0,264,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107788,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133099',4133099,229.417892,4.637394,902.513123,-0.000048,190,0,0,0,1,6,0,0,264,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107516,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133100',4133100,83.255379,4.406397,848.491577,-0.000048,190,0,0,0,1,6,0,0,264,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107244,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133102',4133102,-428.485687,5.673192,569.950806,-0.000048,42,0,0,0,1,6,0,0,285,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106978,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133105',4133105,-431.695404,7.408978,526.095520,-0.000048,42,0,0,0,1,6,0,0,285,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106706,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133106',4133106,-391.061707,7.983613,532.203613,-0.000048,42,0,0,0,1,6,0,0,285,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106434,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133107',4133107,-311.320892,6.989801,543.801514,-0.000048,42,0,0,0,1,6,0,0,285,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106162,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133108',4133108,-385.831696,6.261216,581.952576,-0.000048,42,0,0,0,1,6,0,0,285,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105890,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133109',4133109,-404.812103,8.978989,481.090607,-0.000048,42,0,0,0,1,6,0,0,285,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105618,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133111',4133111,-435.612488,7.492519,530.732178,-0.000048,42,0,0,0,1,6,0,0,285,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105346,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133112',4133112,-368.011810,7.345028,545.098206,-0.000048,42,0,0,0,1,6,0,0,285,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105074,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133142',4133142,2.160542,13.238140,867.918884,-0.000000,18,0,0,0,1,6,0,0,321,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104718,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133143',4133143,-9.752866,13.238140,862.073975,-0.000000,19,0,0,0,1,6,0,0,324,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104452,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133146',4133146,-38.601059,-3.610238,870.833984,-0.000048,19,0,0,0,1,6,0,0,324,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104180,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133147',4133147,3.913166,5.198262,844.633179,-0.000000,18,0,0,0,1,6,0,0,321,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103902,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133149',4133149,-23.697269,-3.494385,830.106018,-0.000048,19,0,0,0,1,6,0,0,324,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103636,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133150',4133150,-47.257198,-4.837158,821.164185,-0.000048,18,0,0,0,1,6,0,0,321,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103358,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133152',4133152,-99.204224,-4.564651,854.179871,-0.000000,19,0,0,0,1,6,0,0,324,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103092,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133153',4133153,-91.265266,-5.356507,842.750183,-0.000000,18,0,0,0,1,6,0,0,321,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102814,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133155',4133155,-104.580101,-4.512669,850.706116,-0.000000,18,0,0,0,1,6,0,0,321,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102542,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133160',4133160,-40.085510,-3.585876,880.033630,-0.000048,18,0,0,0,1,6,0,0,321,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102270,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133166',4133166,23.838100,-0.302399,832.912781,-0.000048,18,0,0,0,1,6,0,0,321,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101998,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133167',4133167,31.011000,5.208305,877.738525,-0.000048,19,0,0,0,1,6,0,0,324,0,0.000000,34,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101732,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133171',4133171,23.808920,0.563182,709.098083,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101520,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133175',4133175,-208.948196,-2.203250,889.001587,-0.000000,134,0,0,0,1,6,0,0,116,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101272,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133854',4133854,-169.319504,-3.498206,849.864197,-0.000000,134,0,0,0,1,6,0,0,116,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101000,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133856',4133856,-294.270294,5.081238,808.072021,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100728,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133857',4133857,-252.533798,3.371831,695.150513,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100456,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133858',4133858,-360.768585,11.544860,664.182312,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100184,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133859',4133859,-93.662338,7.398253,582.921509,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99912,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133860',4133860,-173.964798,7.509760,511.382202,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99640,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133861',4133861,-63.357861,7.614773,373.184204,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99368,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133862',4133862,30.766090,9.412603,441.489288,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99096,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133863',4133863,-36.250969,13.359000,500.993500,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98824,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133864',4133864,127.540901,8.141046,481.803406,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98552,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133865',4133865,80.714157,14.492840,579.852722,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98280,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133866',4133866,-16.843950,17.676241,580.152710,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98008,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133867',4133867,24.143961,2.411896,671.088074,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97736,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133868',4133868,140.561096,7.403133,627.360474,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97464,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133869',4133869,96.573219,4.412809,794.674683,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97192,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133870',4133870,197.362503,4.724640,803.828918,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96920,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133872',4133872,130.937607,8.480643,895.933289,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,32,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96648,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133874',4133874,-1.962330,-3.925701,819.197571,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96376,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133877',4133877,-40.858768,-4.353204,847.265625,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96104,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4133878',4133878,-102.367302,-5.084877,872.023987,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,34,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95832,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4134559',4134559,-383.817688,-1.011531,901.672424,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95536,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4134560',4134560,-288.511597,10.613900,859.882324,-0.000048,357,0,0,0,1,6,0,0,290,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95264,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4134561',4134561,-351.064606,6.710670,883.250427,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95016,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4134563',4134563,226.015793,8.615845,608.168701,-0.000048,168,0,0,0,1,6,0,0,252,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94750,1,0,0,0,24,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4134564',4134564,183.543503,9.768476,646.637512,-0.000048,169,0,0,0,1,6,0,0,260,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94400,1,0,0,0,24,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4135251',4135251,295.658600,8.371674,624.363525,-0.000048,169,0,0,0,1,6,0,0,260,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94128,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4135252',4135252,224.383896,9.530697,660.020325,-0.000048,168,0,0,0,1,6,0,0,252,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93934,1,0,0,0,24,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4135932',4135932,214.160294,8.957031,677.332581,1.291248,168,0,0,0,0,6,0,0,252,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93662,1,0,0,0,24,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4135934',4135934,323.184814,6.857816,665.903687,-0.475541,169,0,0,0,1,6,0,0,260,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93312,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4135936',4135936,289.562012,7.415476,729.328918,-0.000048,169,0,0,0,1,6,0,0,260,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93040,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4135937',4135937,238.798294,8.794422,722.661011,-0.000000,168,0,0,0,1,6,0,0,252,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92846,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4134562',4134562,200.244095,10.299800,649.805420,-0.756168,166,0,0,0,0,6,0,0,2155,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92580,1,0,0,0,24,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4135246',4135246,243.579697,8.834900,694.209229,-0.571129,166,0,0,0,0,6,0,0,2155,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92308,1,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4135935',4135935,329.342285,7.113992,659.138672,-0.756264,166,0,0,0,1,6,0,0,2155,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92036,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4135254',4135254,219.592499,8.926453,678.248291,-1.117618,166,0,0,0,0,6,0,0,2155,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91764,1,0,0,0,24,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4142005',4142005,-268.913208,4.851185,-90.289322,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91480,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4142007',4142007,-359.236389,4.669468,-59.445290,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91208,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4142009',4142009,-420.227386,6.206403,-20.966650,-0.000048,134,0,0,0,1,6,0,0,116,0,0.000000,30,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90936,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132355',4132355,-121.233002,7.370056,452.140015,-0.000048,2268,0,0,0,1,6,0,0,2191,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90682,6,1,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132358',4132358,-78.294067,8.377136,475.181000,-0.000048,2268,0,0,0,1,6,0,0,2191,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90410,6,1,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132359',4132359,-112.962601,7.400574,493.125702,-0.000048,2268,0,0,0,1,6,0,0,2191,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90138,6,1,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132360',4132360,-118.791496,6.423950,489.219513,-0.000048,2268,0,0,0,1,6,0,0,2191,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89866,6,1,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132364',4132364,-162.951096,7.675232,421.805206,-0.000048,2268,0,0,0,1,6,0,0,2191,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89594,6,1,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89423,'LVD_BNPC_02','w1f4','bnpc4132367',4132367,-195.513901,8.987488,460.166290,-0.000048,2268,0,0,0,1,6,0,0,2191,0,0.000000,31,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89322,6,1,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4136006',4136006,-7.705540,1.187112,-24.901859,-0.000048,358,0,0,0,1,6,0,0,2511,0,0.000000,43,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88444,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4136008',4136008,-62.727612,-2.486439,-1.833968,-0.000048,358,0,0,0,1,6,0,0,2511,0,0.000000,43,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88172,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4136009',4136009,-95.048462,-2.365173,28.824221,0.928264,358,0,0,0,1,6,0,0,2511,0,0.000000,43,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87900,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4136012',4136012,-46.066471,8.494778,123.064003,-0.000048,358,0,0,0,1,6,0,0,243,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87628,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4136033',4136033,-271.290192,10.421880,211.047501,-0.000048,358,0,0,0,1,6,0,0,243,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87356,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4136034',4136034,-264.806305,7.399314,162.775604,-0.000048,358,0,0,0,1,6,0,0,243,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87084,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4136037',4136037,-177.294601,7.125916,20.614929,-0.000048,358,0,0,0,1,6,0,0,2511,0,0.000000,43,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86812,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4136039',4136039,43.869629,35.416142,165.728104,-0.000048,358,0,0,0,1,6,0,0,243,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86540,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4136040',4136040,-23.361570,40.512569,240.161697,-0.000048,358,0,0,0,1,6,0,0,243,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86268,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4136226',4136226,-131.853699,13.179720,86.700623,-1.235593,358,0,0,0,1,6,0,0,243,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85996,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4138736',4138736,45.873520,23.511459,-135.133301,-0.000048,367,0,0,0,1,6,0,0,337,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85730,1,0,0,0,32,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4138737',4138737,34.941601,23.511471,-143.619507,-0.000048,369,0,0,0,1,6,0,0,339,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85464,1,0,0,0,32,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140356',4140356,38.925659,23.483580,-138.689301,1.036723,369,0,0,0,0,6,0,0,339,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85192,1,0,0,0,32,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140357',4140357,40.383900,23.511459,-138.534897,-0.998494,367,0,0,0,0,6,0,0,337,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84914,1,0,0,0,32,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140358',4140358,42.540970,17.713570,-101.085297,-0.000048,367,0,0,0,1,6,0,0,337,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84642,1,0,0,0,32,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140359',4140359,45.869240,22.788361,-122.945396,-0.000048,369,0,0,0,1,6,0,0,339,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84376,1,0,0,0,32,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140360',4140360,-3.844561,8.435183,-93.056000,-0.000048,367,0,0,0,1,6,0,0,337,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84098,1,0,0,0,32,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140361',4140361,-11.875860,6.747277,-75.913834,-0.000048,369,0,0,0,1,6,0,0,339,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83832,1,0,0,0,32,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140362',4140362,-6.949590,8.713659,-105.002502,-0.915837,367,0,0,0,0,6,0,0,337,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83554,1,0,0,0,32,30082,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140363',4140363,-8.319045,8.596273,-104.796700,1.492122,369,0,0,0,0,6,0,0,339,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83288,1,0,0,0,32,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140373',4140373,62.782619,3.445141,-267.002686,-0.000000,134,0,0,0,1,6,0,0,912,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82980,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140376',4140376,-24.128490,-0.222955,-159.058701,-0.000000,134,0,0,0,1,6,0,0,912,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82708,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140377',4140377,-83.108093,-14.744680,-157.238297,-0.000000,134,0,0,0,1,6,0,0,912,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82436,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140379',4140379,-97.737221,-14.744680,-145.298904,-0.000000,134,0,0,0,1,6,0,0,912,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82164,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140380',4140380,-94.201157,-14.744680,-142.907806,-0.000000,134,0,0,0,1,6,0,0,912,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81892,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140381',4140381,-95.134377,-14.397570,-169.786697,-0.000000,134,0,0,0,1,6,0,0,912,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81620,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140383',4140383,-53.365379,-16.085800,-169.063507,-0.000000,134,0,0,0,1,6,0,0,912,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81348,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140384',4140384,-62.683842,-1.205086,-107.887497,-0.000000,134,0,0,0,1,6,0,0,912,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81076,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140386',4140386,-131.578598,1.541138,-134.599899,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80804,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140387',4140387,-84.214539,-1.937927,-49.942810,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,45,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80532,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140388',4140388,-95.933533,-0.900330,-15.945740,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80260,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140392',4140392,-94.041443,-0.961365,-14.877620,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79988,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140393',4140393,-43.289860,-1.571716,1.235901,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79716,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140394',4140394,-14.218010,4.090468,36.143909,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,47,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79444,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140395',4140395,-17.297621,4.967797,39.749630,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,47,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79172,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140398',4140398,-101.304703,12.741210,80.552368,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,47,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78900,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140400',4140400,-144.371704,-1.052405,41.807720,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78628,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140401',4140401,-107.255699,28.030760,124.498299,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,47,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78356,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140402',4140402,-52.008862,11.528760,192.386597,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,47,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78084,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140404',4140404,-283.105499,9.536800,201.528900,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77812,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140405',4140405,-118.150597,4.442561,248.788605,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77540,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140406',4140406,-114.824203,4.493244,246.347107,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,46,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77268,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140407',4140407,-183.400894,40.000000,157.241699,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76996,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140408',4140408,-169.404205,40.000000,143.694000,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76724,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140409',4140409,-126.916702,37.668209,186.635406,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76452,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140410',4140410,-83.693520,45.889679,179.053299,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76180,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140411',4140411,-85.551117,45.811230,209.439102,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75908,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140412',4140412,20.889589,36.758911,209.735199,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75636,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140413',4140413,112.923897,13.990590,141.405304,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75364,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140414',4140414,160.982407,13.997970,233.444595,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75092,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140416',4140416,146.294601,13.997970,244.723495,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74820,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140417',4140417,124.652702,8.457688,313.738892,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74548,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140419',4140419,139.964203,7.391594,192.456802,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74276,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140420',4140420,224.634705,8.093283,86.476837,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74004,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140421',4140421,253.877808,8.000000,-33.567520,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73732,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140422',4140422,295.798798,8.000000,-26.774521,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73460,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140423',4140423,297.220490,8.000000,-29.494390,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73188,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4140427',4140427,117.781403,9.346180,-7.032808,-0.000048,134,0,0,0,1,6,0,0,912,0,0.000000,48,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72916,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137929',4137929,-135.423798,37.125118,176.409500,-0.000048,742,0,0,0,1,6,0,0,1879,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72686,2,0,0,0,42,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137912',4137912,-174.456406,39.993900,160.387604,0.718585,742,0,0,0,0,6,0,0,1879,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72414,2,0,0,0,42,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137980',4137980,111.253502,13.778870,152.666504,-0.000048,742,0,0,0,1,6,0,0,1879,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72142,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137956',4137956,-79.850456,45.792240,193.377594,-0.000048,742,0,0,0,1,6,0,0,1879,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71870,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137948',4137948,-44.113831,43.259281,222.186493,-0.000048,742,0,0,0,1,6,0,0,1879,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71598,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137892',4137892,-39.719238,-0.900330,-152.208694,-0.000048,742,0,0,0,1,6,0,0,258,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71326,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137050',4137050,79.179077,3.768982,-271.045990,-0.000048,742,0,0,0,1,6,0,0,258,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71054,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137065',4137065,21.736320,5.244883,-278.538391,-0.000048,742,0,0,0,1,6,0,0,258,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70782,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137928',4137928,-103.074699,27.908689,120.592003,0.628989,741,0,0,0,1,6,0,0,249,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70516,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137966',4137966,-42.954159,8.255066,51.499149,0.628989,741,0,0,0,1,6,0,0,249,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70244,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4138722',4138722,129.299393,7.759512,330.730286,0.170180,741,0,0,0,1,6,0,0,249,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69972,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137993',4137993,111.772301,8.529010,204.422699,0.628989,741,0,0,0,1,6,0,0,2296,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69700,2,0,0,0,35,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4138717',4138717,158.251205,13.992490,254.322006,0.628989,741,0,0,0,1,6,0,0,2296,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69428,2,0,0,0,35,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4142018',4142018,-42.274540,10.032320,171.660904,-0.000048,740,0,0,0,1,6,0,0,253,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69162,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137046',4137046,52.658810,2.883911,-257.434998,0.629085,740,0,0,0,0,6,0,0,253,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68890,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137967',4137967,-112.382797,12.191960,75.883057,-0.832820,740,0,0,0,1,6,0,0,253,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68618,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4138003',4138003,145.462601,13.997980,239.934799,-0.000048,740,0,0,0,1,6,0,0,1880,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68346,2,0,0,0,35,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137893',4137893,-91.355766,-1.724304,-58.945621,0.628989,740,0,0,0,1,6,0,0,253,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68074,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4138718',4138718,174.425797,13.992490,235.339798,-0.000048,740,0,0,0,0,6,0,0,1880,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67802,2,0,0,0,35,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4138723',4138723,127.946899,7.071052,376.910889,-0.000048,740,0,0,0,1,6,0,0,253,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67530,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137927',4137927,-140.215103,18.539671,118.211700,-0.551666,739,0,0,0,0,6,0,0,245,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67264,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137048',4137048,55.832760,2.914429,-254.505203,-0.738335,739,0,0,0,0,6,0,0,245,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66992,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137955',4137955,24.765381,2.761841,-0.717224,-1.335207,739,0,0,0,0,6,0,0,245,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66720,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137894',4137894,-71.905777,-1.906798,-74.343948,-0.738239,739,0,0,0,1,6,0,0,245,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66448,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137066',4137066,57.419899,4.007567,-299.611694,-0.000048,739,0,0,0,1,6,0,0,245,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66176,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137941',4137941,-88.853271,43.381351,152.910599,-0.232546,739,0,0,0,0,6,0,0,2297,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65904,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137938',4137938,-61.905880,44.937740,212.664902,1.279311,739,0,0,0,0,6,0,0,2297,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65632,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137982',4137982,124.528801,13.931460,143.175400,-0.932147,739,0,0,0,0,6,0,0,2297,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65360,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137915',4137915,-169.848206,39.993900,158.342804,-1.526237,739,0,0,0,0,6,0,0,2297,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65088,2,0,0,0,42,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4142028',4142028,-93.827759,45.792240,199.145401,0.168548,739,0,0,0,0,6,0,0,2297,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64816,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522053',4522053,-108.508598,-1.658285,50.827759,-0.000048,2452,0,0,0,0,6,0,0,1390,0,0.000000,43,1,120,1,0,1,0,32,1,0,0,0,1,0,0.000000,1.000000,64550,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522057',4522057,-20.309811,4.196167,-48.355900,-0.000048,2452,0,0,0,0,6,0,0,1390,0,0.000000,43,1,120,1,0,2,0,32,1,0,0,0,1,0,0.000000,1.000000,64278,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522061',4522061,-208.789200,7.827881,41.184078,-0.000048,2452,0,0,0,0,6,0,0,1390,0,0.000000,43,1,120,1,0,3,0,32,1,0,0,0,1,0,0.000000,1.000000,64006,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522063',4522063,-277.088593,16.372860,105.149902,-0.000048,2452,0,0,0,0,6,0,0,1390,0,0.000000,43,1,120,1,0,4,0,32,1,0,0,0,1,0,0.000000,1.000000,63734,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522065',4522065,-233.600403,7.156433,195.910507,0.000527,2452,0,0,0,0,6,0,0,1390,0,0.000000,43,1,120,1,0,5,0,32,1,0,0,0,1,0,0.000000,1.000000,63462,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522067',4522067,-24.155090,7.522644,120.195297,-0.000048,2452,0,0,0,0,6,0,0,1877,0,0.000000,46,1,120,1,0,6,0,32,1,0,0,0,1,0,0.000000,1.000000,63190,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522069',4522069,-114.458000,7.766785,222.339096,-0.000048,2452,0,0,0,0,6,0,0,1877,0,0.000000,46,1,120,1,0,7,0,32,1,0,0,0,1,0,0.000000,1.000000,62918,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522077',4522077,-43.839230,7.949890,350.362305,-0.000048,2452,0,0,0,0,6,0,0,1877,0,0.000000,46,1,120,1,0,8,0,32,1,0,0,0,1,0,0.000000,1.000000,62646,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522101',4522101,108.016403,9.690581,194.451294,-0.000048,2452,0,0,0,0,6,0,0,1877,0,0.000000,46,1,120,1,0,9,0,32,1,0,0,0,1,0,0.000000,1.000000,62374,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522396',4522396,-21.478930,2.767368,-38.678539,-0.000048,742,0,0,0,1,6,0,0,258,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62078,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522398',4522398,-207.376999,7.622232,46.231140,0.913879,739,0,0,0,0,6,0,0,245,0,0.000000,45,0,120,1,0,3,0,32,1,0,0,0,1,0,0.000000,1.000000,61824,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522399',4522399,-234.055893,7.389282,200.963898,-1.115375,742,0,0,0,0,6,0,0,258,0,0.000000,45,0,120,1,0,5,0,32,1,0,0,0,1,0,0.000000,1.000000,61534,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522406',4522406,-105.390503,-1.773797,46.289669,-0.101848,742,0,0,0,0,6,0,0,258,0,0.000000,45,0,120,1,0,1,0,32,1,0,0,0,1,0,0.000000,1.000000,61262,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522407',4522407,-271.650208,14.867290,104.792099,1.159862,739,0,0,0,0,6,0,0,245,0,0.000000,45,0,120,1,0,4,0,32,1,0,0,0,1,0,0.000000,1.000000,61008,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522411',4522411,-100.910103,-1.501870,50.329479,0.147939,739,0,0,0,1,6,0,0,245,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60736,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522416',4522416,-109.675301,7.278503,224.872192,0.343228,741,0,0,0,0,6,0,0,249,0,0.000000,47,0,120,1,0,7,0,32,1,0,0,0,1,0,0.000000,1.000000,60452,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522419',4522419,-28.614960,7.609998,118.196198,-1.351175,741,0,0,0,0,6,0,0,249,0,0.000000,47,0,120,1,0,6,0,32,1,0,0,0,1,0,0.000000,1.000000,60180,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522420',4522420,-39.757469,7.899223,353.966003,0.065512,741,0,0,0,0,6,0,0,249,0,0.000000,47,0,120,1,0,8,0,32,1,0,0,0,1,0,0.000000,1.000000,59908,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522421',4522421,-27.695190,7.583679,129.961105,-0.000048,740,0,0,0,1,6,0,0,253,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59642,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522422',4522422,-117.326698,6.179810,229.419296,-0.000048,740,0,0,0,1,6,0,0,253,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59370,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4522424',4522424,-52.859360,7.196684,358.597412,-0.333524,740,0,0,0,1,6,0,0,253,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59098,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4524149',4524149,-46.524780,-1.266479,10.910160,0.879344,740,0,0,0,1,6,0,0,1388,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58826,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4524160',4524160,-52.610519,-1.409638,13.605740,-0.670479,741,0,0,0,1,6,0,0,1389,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58548,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4524163',4524163,14.724910,1.785278,16.159300,-0.670455,741,0,0,0,1,6,0,0,1389,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58276,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4524164',4524164,20.839840,2.344519,13.486760,0.879344,740,0,0,0,1,6,0,0,1388,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58010,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4524175',4524175,-136.317200,10.889600,-70.746132,0.879344,740,0,0,0,1,6,0,0,1388,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57738,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4524176',4524176,-142.403000,11.520290,-68.050552,-0.670479,741,0,0,0,1,6,0,0,1389,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57460,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4524179',4524179,-124.245399,6.484659,-98.137253,-1.315907,739,0,0,0,1,6,0,0,245,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57200,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4524181',4524181,-155.565796,6.332458,-43.106812,-0.000048,742,0,0,0,1,6,0,0,258,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56910,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4524206',4524206,-163.683502,7.064880,7.705750,-0.738239,739,0,0,0,1,6,0,0,245,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56656,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4524215',4524215,-100.204201,12.076750,75.251801,0.647877,742,0,0,0,1,6,0,0,258,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56366,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137937',4137937,-95.628304,45.792240,195.269699,0.628989,740,0,0,0,0,6,0,0,1880,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56106,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137914',4137914,-174.029205,39.993900,155.352097,0.628989,740,0,0,0,0,6,0,0,1880,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55834,2,0,0,0,42,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137979',4137979,75.730469,25.253660,204.974396,0.628989,740,0,0,0,1,6,0,0,1880,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55562,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137953',4137953,-163.534897,40.000000,151.507095,0.628989,740,0,0,0,1,6,0,0,1880,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55290,2,0,0,0,42,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137947',4137947,-24.093990,38.986820,206.042603,0.628989,740,0,0,0,1,6,0,0,1880,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55018,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4137991',4137991,112.391602,9.231154,192.303696,1.019591,742,0,0,0,0,6,0,0,1879,0,0.000000,49,0,120,1,0,9,0,32,1,0,0,0,1,0,0.000000,1.000000,54734,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4138716',4138716,176.348495,13.992490,240.985703,-0.687330,742,0,0,0,0,6,0,0,1879,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54462,2,0,0,0,35,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4553442',4553442,-200.593903,7.600075,38.475250,1.400236,742,0,0,0,1,6,0,0,258,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54190,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4553443',4553443,-17.239441,3.551795,-44.301022,-0.015071,739,0,0,0,0,6,0,0,245,0,0.000000,45,0,120,1,0,2,0,32,1,0,0,0,1,0,0.000000,1.000000,53936,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4553444',4553444,-243.102203,7.628644,196.886398,-0.997247,739,0,0,0,1,6,0,0,245,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53664,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4553445',4553445,-277.132202,14.459210,114.208504,0.192632,742,0,0,0,1,6,0,0,258,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53374,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4553446',4553446,-118.333702,6.485046,-90.318237,-0.000048,742,0,0,0,1,6,0,0,258,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53102,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4553447',4553447,-143.133606,6.438087,-36.288349,0.877029,739,0,0,0,1,6,0,0,245,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52848,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4553448',4553448,-160.387604,7.156433,27.054199,0.070708,739,0,0,0,1,6,0,0,245,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52576,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4553449',4553449,-63.000992,-1.730121,-63.235321,-0.397620,742,0,0,0,1,6,0,0,258,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52286,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4577401',4577401,-110.148399,-0.815602,-20.043240,-0.000048,358,0,0,0,1,6,0,0,2511,0,0.000000,43,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51996,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89482,'LVD_BNPC_03','w1f4','bnpc4695634',4695634,-218.433502,5.298542,95.696121,-0.000048,358,0,0,0,1,6,0,0,2511,0,0.000000,43,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51724,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313527',4313527,313.771210,7.980469,-31.998230,-1.133341,739,0,0,0,0,6,0,0,1837,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51244,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313538',4313538,287.709015,8.000000,-40.641960,-0.313467,739,0,0,0,0,6,0,0,1837,0,0.000000,49,0,120,1,0,11,0,32,1,0,0,0,1,0,0.000000,1.000000,50972,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313539',4313539,417.063385,17.715700,-63.623531,-0.034489,741,0,0,0,0,6,0,0,1838,0,0.000000,49,0,120,1,0,12,0,32,1,0,0,0,1,0,0.000000,1.000000,50688,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313540',4313540,355.620087,9.881611,-35.813759,-0.632133,740,0,0,0,1,6,0,0,1839,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50422,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313547',4313547,445.548096,16.678040,-115.800697,-0.964170,739,0,0,0,0,6,0,0,1837,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50156,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313549',4313549,409.744812,12.774850,-100.924301,-0.000048,190,0,0,0,1,6,0,0,1841,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49812,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313550',4313550,552.483398,7.583679,-164.965302,-1.161098,742,0,0,0,0,6,0,0,1840,0,0.000000,49,0,120,1,0,15,0,32,1,0,0,0,1,0,0.000000,1.000000,49594,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313551',4313551,481.528900,7.614197,-157.915604,1.040486,741,0,0,0,0,6,0,0,1838,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49328,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313552',4313552,484.977386,7.614197,-157.701996,-1.519095,740,0,0,0,0,6,0,0,1839,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49062,2,0,0,0,0,30060,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313556',4313556,509.282410,7.599621,-134.754105,-1.354494,190,0,0,0,1,6,0,0,1841,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48724,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313557',4313557,519.299988,7.581244,-127.391800,0.292183,190,0,0,0,1,6,0,0,1841,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48452,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313561',4313561,549.797729,7.583679,-92.454468,-0.000048,741,0,0,0,1,6,0,0,1838,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48240,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313562',4313562,534.650330,7.599616,-75.784973,0.391842,740,0,0,0,0,6,0,0,1839,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47974,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313563',4313563,569.926575,7.599619,-77.731194,-1.020061,739,0,0,0,0,6,0,0,1837,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47708,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313564',4313564,549.767212,7.599621,-67.267418,-0.078470,739,0,0,0,0,6,0,0,1837,0,0.000000,49,0,120,1,0,14,0,32,1,0,0,0,1,0,0.000000,1.000000,47436,2,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313560',4313560,533.592712,7.583679,-79.881042,1.061291,742,0,0,0,0,6,0,0,1840,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47146,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313565',4313565,442.353912,18.401279,-84.513977,0.122777,190,0,0,0,1,6,0,0,1841,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46820,2,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4313572',4313572,631.942383,7.123771,-69.111237,1.199399,742,0,0,0,1,6,0,0,1840,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46602,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4515628',4515628,230.071304,10.431990,28.589081,-0.408360,2457,0,0,0,5,6,0,0,2303,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45208,2,0,0,0,0,0,4515627,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4515630',4515630,306.129913,8.000000,-35.433121,1.554546,2457,0,0,0,5,6,0,0,2303,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44936,2,0,0,0,0,0,4515617,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4515631',4515631,409.323212,17.164120,-66.182114,1.554616,2457,0,0,0,2,6,0,0,2303,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44664,2,0,0,0,0,0,4515622,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4515632',4515632,450.431000,18.142941,-98.527527,-0.188491,2457,0,0,0,5,6,0,0,2303,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44392,2,0,0,0,0,0,4515619,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4515633',4515633,528.573975,7.599619,-123.610298,0.581887,2457,0,0,0,5,6,0,0,2303,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44120,2,0,0,0,0,0,4515626,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4522427',4522427,554.650085,7.583679,-67.246582,-0.000048,2453,0,0,0,0,6,0,0,1878,0,0.000000,49,0,120,1,0,14,0,32,1,0,0,0,1,0,0.000000,1.000000,43854,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4522544',4522544,557.138977,7.599622,-162.231705,-0.000048,2453,0,0,0,0,6,0,0,1878,0,0.000000,49,0,120,1,0,15,0,32,1,0,0,0,1,0,0.000000,1.000000,43582,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4522545',4522545,413.717804,17.929260,-60.318909,-0.000048,2453,0,0,0,0,6,0,0,1878,0,0.000000,49,0,120,1,0,12,0,32,1,0,0,0,1,0,0.000000,1.000000,43310,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4522546',4522546,349.712006,9.286700,-45.325851,-0.000048,2453,0,0,0,0,6,0,0,1878,0,0.000000,49,0,120,1,0,13,0,32,1,0,0,0,1,0,0.000000,1.000000,43038,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4522547',4522547,291.672913,8.000000,-42.948238,-0.000048,2453,0,0,0,0,6,0,0,1878,0,0.000000,49,0,120,1,0,11,0,32,1,0,0,0,1,0,0.000000,1.000000,42766,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4138062',4138062,273.090698,11.734130,-9.628479,-1.162200,741,0,0,0,0,6,0,0,1838,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42464,2,0,0,0,44,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4138066',4138066,76.493408,12.191390,20.402031,0.628989,741,0,0,0,1,6,0,0,1838,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42192,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4138061',4138061,345.326508,8.771392,-44.180370,-0.721810,742,0,0,0,0,6,0,0,1840,0,0.000000,48,0,120,1,0,13,0,32,1,0,0,0,1,0,0.000000,1.000000,41914,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4138065',4138065,103.105103,15.030030,20.462339,-0.912541,742,0,0,0,0,6,0,0,1840,0,0.000000,48,0,120,1,0,10,0,32,1,0,0,0,1,0,0.000000,1.000000,41642,2,0,0,0,0,30059,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4138067',4138067,117.584900,15.938490,11.404420,-1.197194,740,0,0,0,1,6,0,0,1839,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41382,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4138055',4138055,208.087296,7.980469,104.387001,-0.000048,740,0,0,0,1,6,0,0,1839,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41110,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4138054',4138054,244.128998,7.980469,-24.460270,0.628989,740,0,0,0,1,6,0,0,1839,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40838,2,0,0,0,44,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4138056',4138056,164.005997,7.818353,-31.478350,-1.269101,739,0,0,0,1,6,0,0,1837,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40572,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4522549',4522549,227.166595,8.620508,78.546181,-1.162200,741,0,0,0,1,6,0,0,1838,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40288,2,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4522550',4522550,408.039398,12.424580,-131.584198,0.250138,742,0,0,0,1,6,0,0,1840,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40010,2,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93606,'LVD_BNPC_04','w1f4','bnpc4522066',4522066,102.342300,15.152160,25.375731,-0.000048,2452,0,0,0,0,6,0,0,1877,0,0.000000,46,1,120,1,0,10,0,32,1,0,0,0,1,0,0.000000,1.000000,39762,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98361,'LVD_easter_2014','w1f4','bnpc4621851',4621851,-468.283295,-2.650424,95.657677,-0.070559,2772,0,0,0,0,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28328,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98361,'LVD_easter_2014','w1f4','bnpc4621852',4621852,-103.113701,45.811230,205.494797,-1.165697,2773,0,0,0,0,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28062,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85962,'LVD_guard_01','w1f4','bnpc4057759',4057759,-167.171906,25.428049,-361.451508,-0.000000,798,0,0,0,0,6,0,0,1277,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27716,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85962,'LVD_guard_01','w1f4','bnpc4057772',4057772,-250.234695,27.956100,-323.354889,-1.476120,795,0,0,0,0,6,0,0,1277,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27450,5,0,0,0,0,30052,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85962,'LVD_guard_01','w1f4','bnpc4057782',4057782,-56.647308,26.533920,-382.801697,0.687719,796,0,0,0,0,6,0,0,1277,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27184,5,0,0,0,0,30055,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85962,'LVD_guard_01','w1f4','bnpc4057793',4057793,-250.333099,7.167006,413.444885,1.312344,1342,0,0,0,0,6,0,0,1278,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26918,5,0,0,0,0,30054,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87346,'FATE_001','w1f4','bnpc4165254',4165254,34.597752,17.826941,-603.940796,-0.794612,1285,0,0,0,0,6,0,0,883,0,0.000000,29,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,218108,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87348,'FATE_003','w1f4','bnpc4125366',4125366,-264.721313,25.409889,-317.742188,-1.291544,1200,0,0,0,1,6,0,0,1277,0,0.000000,20,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,214398,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87436,'FATE_004','w1f4','bnpc4164006',4164006,182.646805,13.573160,-437.400513,-0.244346,1219,0,0,0,0,6,0,0,1351,0,0.000000,29,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,212460,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92862,'FATE_005','w1f4','bnpc4288498',4288498,-63.197311,-2.500663,-34.578152,-0.000000,2130,0,0,0,1,6,0,0,1505,0,0.000000,46,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,211730,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93820,'FATE_006','w1f4','bnpc4322581',4322581,-29.732700,-0.589414,-178.193604,-1.186378,1161,0,0,0,0,6,0,0,1733,0,0.000000,41,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,210008,1,0,0,0,0,30189,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93820,'FATE_006','w1f4','bnpc4322582',4322582,-32.042278,-0.703122,-179.190002,1.201503,1162,0,0,0,0,6,0,0,1371,0,0.000000,39,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,209742,1,0,0,0,0,30289,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93820,'FATE_006','w1f4','bnpc4322583',4322583,-31.434971,-0.679319,-180.302094,1.374662,1163,0,0,0,0,6,0,0,1371,0,0.000000,39,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,209476,1,0,0,0,0,30289,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93820,'FATE_006','w1f4','bnpc4322584',4322584,-32.425701,-0.715846,-177.968796,1.417659,1163,0,0,0,0,6,0,0,1371,0,0.000000,39,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,209204,1,0,0,0,0,30289,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93820,'FATE_006','w1f4','bnpc4322654',4322654,15.903120,1.264074,-255.279297,-0.923752,741,0,0,0,10,6,0,0,249,0,0.000000,42,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,208002,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93820,'FATE_006','w1f4','bnpc4322655',4322655,-17.914890,-1.181131,-208.630997,0.119092,741,0,0,0,10,6,0,0,249,0,0.000000,42,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,207730,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93820,'FATE_006','w1f4','bnpc4322656',4322656,19.366579,0.760266,-250.806793,-0.920934,741,0,0,0,10,6,0,0,249,0,0.000000,42,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,207458,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93820,'FATE_006','w1f4','bnpc4322657',4322657,-18.301680,-1.415825,-204.726807,0.130070,741,0,0,0,10,6,0,0,249,0,0.000000,42,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,207186,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93645,'FATE_009','w1f4','bnpc4314090',4314090,-186.449997,39.993900,163.439301,1.484533,2131,0,0,0,1,6,0,0,257,0,0.000000,48,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,206448,1,0,100,0,0,30061,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93645,'FATE_009','w1f4','bnpc4325027',4325027,-201.618805,6.162973,109.287399,-0.861689,1206,0,0,0,0,6,0,0,1343,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,206182,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89614,'FATE_011','w1f4','bnpc4165268',4165268,-350.619812,7.971694,488.113800,-0.000000,1083,0,0,0,0,6,0,0,888,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,203960,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89614,'FATE_011','w1f4','bnpc4165269',4165269,-347.637512,8.020647,482.348389,-0.000000,1085,0,0,0,0,6,0,0,890,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,203694,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89614,'FATE_011','w1f4','bnpc4165271',4165271,-349.631500,8.026290,482.781097,-0.000000,1084,0,0,0,0,6,0,0,889,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,203428,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89614,'FATE_011','w1f4','bnpc4165272',4165272,-351.996307,8.040512,482.564911,-0.000000,1084,0,0,0,0,6,0,0,889,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,203156,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89614,'FATE_011','w1f4','bnpc4165273',4165273,-354.046692,8.050556,482.469086,-0.000000,1084,0,0,0,0,6,0,0,889,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,202884,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92864,'FATE_012','w1f4','bnpc4288520',4288520,166.906693,13.997970,238.030807,-0.628319,2132,0,0,0,1,6,0,0,1506,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,201526,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89574,'FATE_014','w1f4','bnpc4141186',4141186,-105.092003,-10.813500,706.105774,1.466077,1417,0,0,0,0,6,0,0,1276,0,0.000000,29,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,191660,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86856,'FATE_016','w1f4','bnpc4098892',4098892,-187.632507,3.828144,-181.773697,-1.403609,1005,0,0,0,0,6,0,0,1343,0,0.000000,23,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,182782,1,0,0,0,0,30189,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87404,'FATE_018','w1f4','bnpc4108117',4108117,231.550903,9.314829,653.808716,-0.000000,1286,0,0,0,1,6,0,0,884,0,0.000000,32,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,182364,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87349,'FATE_023','w1f4','bnpc4176281',4176281,-271.207886,40.065922,-487.609406,0.714551,166,0,0,0,0,6,0,0,1353,0,0.000000,0,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,179830,1,0,0,0,0,30058,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87349,'FATE_023','w1f4','bnpc4176282',4176282,-280.461090,39.337898,-482.130615,0.505530,167,0,0,0,0,6,0,0,256,0,0.000000,0,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,179564,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87349,'FATE_023','w1f4','bnpc4176283',4176283,-260.691193,43.136681,-504.441589,0.977127,167,0,0,0,0,6,0,0,256,0,0.000000,0,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,179292,1,0,0,0,0,30063,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89615,'FATE_025','w1f4','bnpc4165764',4165764,-327.895508,8.830032,430.135895,-0.297633,1085,0,0,0,1,6,0,0,890,0,0.000000,25,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,178138,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89615,'FATE_025','w1f4','bnpc4165766',4165766,-347.944092,8.517056,421.361511,1.394613,1083,0,0,0,1,6,0,0,888,0,0.000000,30,1,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,177548,0,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89615,'FATE_025','w1f4','bnpc4165751',4165751,-339.529388,7.690730,440.024811,0.500805,1373,0,0,0,0,6,0,0,918,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,177330,1,0,0,0,22,30202,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89615,'FATE_025','w1f4','bnpc4165752',4165752,-333.273010,7.925098,428.912292,-0.061050,1374,0,0,0,0,6,0,0,919,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,177064,1,0,0,0,22,30053,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89615,'FATE_025','w1f4','bnpc4165753',4165753,-346.277100,8.266994,417.722198,1.516915,1375,0,0,0,0,6,0,0,920,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176798,1,0,0,0,22,30067,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89615,'FATE_025','w1f4','bnpc4165754',4165754,-327.675293,8.261888,412.376190,-0.465829,1376,0,0,0,0,6,0,0,921,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176532,1,0,0,0,22,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89615,'FATE_025','w1f4','bnpc4165757',4165757,-312.077393,7.251179,399.754486,-0.966126,1377,0,0,0,0,6,0,0,922,0,0.000000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176266,1,0,0,0,22,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89615,'FATE_025','w1f4','bnpc4172352',4172352,-345.671295,7.980945,467.838898,-0.168492,1342,0,0,0,0,6,0,0,1278,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176000,5,0,0,0,30,30053,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89615,'FATE_025','w1f4','bnpc4172376',4172376,-355.233093,8.004177,467.713409,-0.011076,1342,0,0,0,0,6,0,0,1278,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,175728,5,0,0,0,30,30053,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89615,'FATE_025','w1f4','bnpc4172460',4172460,-346.561615,7.703974,505.207306,-0.042020,1287,0,0,0,1,6,0,0,885,0,0.000000,32,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,174710,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89615,'FATE_025','w1f4','bnpc4175615',4175615,-324.653015,8.830031,430.586212,-0.483105,1084,0,0,0,1,6,0,0,889,0,0.000000,25,0,30,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,174048,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89615,'FATE_025','w1f4','bnpc4175616',4175616,-324.006714,8.830031,429.303589,-1.143590,1084,0,0,0,1,6,0,0,889,0,0.000000,25,0,30,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,173776,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89615,'FATE_025','w1f4','bnpc4175617',4175617,-325.789703,8.830032,430.002686,-0.792189,1084,0,0,0,1,6,0,0,889,0,0.000000,25,0,30,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,173504,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90234,'FATE_026','w1f4','bnpc4164729',4164729,106.248497,6.485046,-538.200989,-0.414373,1284,0,0,0,0,6,0,0,882,0,0.000000,28,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,173092,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90234,'FATE_026','w1f4','bnpc4164781',4164781,129.503296,5.355835,-577.080994,0.694041,363,0,0,0,0,6,0,0,331,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,172698,1,0,0,0,21,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90234,'FATE_026','w1f4','bnpc4164790',4164790,164.493805,3.716885,-595.015381,-1.028873,1157,0,0,0,0,6,0,0,1277,0,0.000000,25,2,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,172432,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90234,'FATE_026','w1f4','bnpc4164791',4164791,165.965805,4.000600,-592.172791,-0.914599,1157,0,0,0,0,6,0,0,1277,0,0.000000,25,2,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,172160,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90234,'FATE_026','w1f4','bnpc4164792',4164792,167.339294,4.355918,-589.117188,-1.363978,1157,0,0,0,0,6,0,0,1277,0,0.000000,25,2,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,171888,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90234,'FATE_026','w1f4','bnpc4164793',4164793,168.226395,4.140904,-586.290283,-1.555703,1157,0,0,0,0,6,0,0,1277,0,0.000000,25,2,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,171616,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (90234,'FATE_026','w1f4','bnpc4164795',4164795,160.278595,2.947277,-588.146179,1.178890,1202,0,0,0,0,6,0,0,1277,0,0.000000,25,2,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,171350,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93646,'FATE_027','w1f4','bnpc4314112',4314112,31.675070,24.486170,-146.054001,-0.265525,2115,0,0,0,0,6,0,0,1710,0,0.000000,46,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,167480,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93646,'FATE_027','w1f4','bnpc4314260',4314260,-27.932770,7.446750,-97.955978,-0.000000,1163,0,0,0,0,6,0,0,1275,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,165816,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92865,'FATE_028','w1f4','bnpc4288529',4288529,26.261049,23.511471,-142.589798,-0.000000,2133,0,0,0,1,6,0,0,1699,0,0.000000,46,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,165166,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92866,'FATE_030','w1f4','bnpc4288550',4288550,-242.078705,7.354307,186.723495,-0.122173,1162,0,0,0,1,6,0,0,1371,0,0.000000,41,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,162378,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92867,'FATE_031','w1f4','bnpc4288591',4288591,-87.786949,7.271192,367.854889,-0.279253,1156,0,0,0,1,6,0,0,1277,0,0.000000,40,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,159908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93308,'FATE_032','w1f4','bnpc4308017',4308017,-83.920624,-1.683431,53.333302,-1.396263,1161,0,0,0,0,6,0,0,1371,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,157724,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93308,'FATE_032','w1f4','bnpc4308018',4308018,-86.480370,-1.640388,52.912231,1.221731,1162,0,0,0,0,6,0,0,1343,0,0.000000,45,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,157458,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93308,'FATE_032','w1f4','bnpc4309520',4309520,81.640587,15.462520,30.564930,-0.523599,2110,0,0,0,1,6,0,0,1724,0,0.000000,45,2,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,157226,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93402,'FATE_033','w1f4','bnpc4325248',4325248,-79.489403,45.811230,205.373505,1.320000,169,0,0,0,0,6,0,0,1725,0,0.000000,45,2,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,155380,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93402,'FATE_033','w1f4','bnpc4325249',4325249,-81.989677,45.811230,202.652206,1.320000,169,0,0,0,0,6,0,0,1725,0,0.000000,45,2,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,155108,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93402,'FATE_033','w1f4','bnpc4325250',4325250,-83.885536,45.811230,206.268997,1.320000,169,0,0,0,1,6,0,0,1725,0,0.000000,45,2,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,154836,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93647,'FATE_034','w1f4','bnpc4314300',4314300,-169.298203,3.987925,-134.817001,0.666429,1290,0,0,0,0,6,0,0,1711,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,154286,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93647,'FATE_034','w1f4','bnpc4314308',4314308,-170.336502,4.043579,-134.660904,0.666381,1219,0,0,0,0,6,0,0,1711,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,153816,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93647,'FATE_034','w1f4','bnpc4314311',4314311,-170.153397,3.982544,-135.912094,0.666381,1179,0,0,0,0,6,0,0,1711,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,153748,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93647,'FATE_034','w1f4','bnpc4314312',4314312,-171.182404,4.046856,-135.641296,0.666429,1161,0,0,0,0,6,0,0,1711,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,153284,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93647,'FATE_034','w1f4','bnpc4328120',4328120,-168.051407,3.995618,-132.764694,0.538492,367,0,0,0,1,6,0,0,337,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,153210,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93647,'FATE_034','w1f4','bnpc4328121',4328121,-172.700195,4.067954,-136.266403,0.538492,368,0,0,0,1,6,0,0,338,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,152944,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93647,'FATE_034','w1f4','bnpc4328153',4328153,-195.678696,2.785205,-222.931702,-0.000000,1162,0,0,0,0,6,0,0,1275,0,0.000000,41,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,150954,1,0,0,0,0,30404,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93647,'FATE_034','w1f4','bnpc4328159',4328159,-196.698898,2.867821,-224.424301,-0.000000,1163,0,0,0,0,6,0,0,1275,0,0.000000,41,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,150688,1,0,0,0,0,30404,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93647,'FATE_034','w1f4','bnpc4328161',4328161,-194.885193,2.831346,-224.473099,-0.000000,1161,0,0,0,0,6,0,0,1275,0,0.000000,41,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,150404,1,0,0,0,0,30404,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93647,'FATE_034','w1f4','bnpc4328122',4328122,-171.008896,3.967553,-137.926697,0.538492,369,0,0,0,1,6,0,0,339,0,0.000000,42,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,148206,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92878,'FATE_035','w1f4','bnpc4289775',4289775,253.955795,8.898056,-43.377991,-0.000048,1417,0,0,0,0,6,0,0,450,0,0.000000,50,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,145120,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92871,'FATE_036','w1f4','bnpc4288638',4288638,543.188293,7.583682,-98.697762,0.157139,2134,0,0,0,1,6,0,0,1507,0,0.000000,50,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,142980,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96826,'FATE_038','w1f4','bnpc4506737',4506737,544.020081,7.599618,-29.064510,0.306487,2501,0,0,0,1,6,0,0,2368,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,141150,1,0,0,0,0,30061,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96951,'FATE_039','w1f4','bnpc4514895',4514895,244.641907,8.277518,-17.424339,-0.358002,2506,0,0,0,1,6,0,0,2354,0,0.000000,48,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,140104,1,0,0,0,0,30061,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96887,'FATE_DQX_01','w1f4','bnpc4509969',4509969,147.456894,10.233120,-449.498993,-0.924513,2310,0,0,0,1,6,0,0,2221,0,0.000000,29,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,139070,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96887,'FATE_DQX_01','w1f4','bnpc4509982',4509982,106.645302,9.577074,-450.706207,1.438807,2311,0,0,0,1,6,0,0,2222,0,0.000000,29,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,138804,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94474,'FATE_FF13_02_01','w1f4','bnpc4374944',4374944,19.919359,4.012720,-429.505615,-1.179174,2086,0,0,0,8,6,0,0,2216,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,137570,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94474,'FATE_FF13_02_01','w1f4','bnpc4374945',4374945,3.339768,7.347215,-513.040222,-0.468166,2081,0,0,0,1,6,0,0,2213,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,137304,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94474,'FATE_FF13_02_01','w1f4','bnpc4376392',4376392,-23.981661,5.303786,-491.128113,-0.176697,1218,0,0,0,0,6,0,0,2217,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,135790,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94474,'FATE_FF13_02_01','w1f4','bnpc4376393',4376393,-25.625401,9.076021,-469.668213,-0.000000,1219,0,0,0,0,6,0,0,2218,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,135248,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94474,'FATE_FF13_02_01','w1f4','bnpc4376394',4376394,-32.580219,7.565638,-482.793701,-0.189623,1290,0,0,0,0,6,0,0,2219,0,0.000000,26,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,135174,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94474,'FATE_FF13_02_01','w1f4','bnpc4376411',4376411,-16.860809,7.400085,-469.184906,-0.000000,2291,0,0,0,0,6,0,0,2216,0,0.000000,99,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,134980,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94474,'FATE_FF13_02_01','w1f4','bnpc4376413',4376413,-5.180856,3.041370,-497.888397,0.357429,1157,0,0,0,0,6,0,0,1277,0,0.000000,23,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,134588,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94474,'FATE_FF13_02_01','w1f4','bnpc4376414',4376414,-7.819515,2.890500,-502.688599,0.368362,1157,0,0,0,0,6,0,0,1277,0,0.000000,23,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,134316,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96980,'FATE_FFXI_01','w1f4','bnpc4515977',4515977,-364.323090,2.673883,847.486877,1.250514,2439,0,0,0,1,6,0,0,2328,0,0.000000,31,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,134078,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96980,'FATE_FFXI_01','w1f4','bnpc4515984',4515984,-364.807495,2.562397,846.904297,-0.000000,2291,0,0,0,0,6,0,0,750,0,0.000000,99,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,133176,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96981,'FATE_FFXI_02','w1f4','bnpc4516013',4516013,-363.746185,2.825055,848.574524,1.358633,2308,0,0,0,1,6,0,0,2327,0,0.000000,31,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,132220,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87139,'Grand_Company_Leve','w1f4','bnpc4178234',4178234,20.256729,4.329454,-352.708710,-0.000048,1333,0,0,0,1,6,0,0,1225,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,131450,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87139,'Grand_Company_Leve','w1f4','bnpc4186186',4186186,22.618959,4.042562,-350.223999,-0.000000,1333,0,0,0,1,6,0,0,1225,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,130806,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87139,'Grand_Company_Leve','w1f4','bnpc4186187',4186187,29.512369,3.757126,-348.455109,-0.000000,1333,0,0,0,1,6,0,0,1225,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,130534,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (87139,'Grand_Company_Leve','w1f4','bnpc4186188',4186188,32.177200,3.422626,-348.921112,-0.000000,1333,0,0,0,1,6,0,0,1225,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,130262,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85678,'QBClsPgl300_001','w1f4','bnpc4075236',4075236,-301.803802,5.319162,471.359009,-1.453502,879,0,0,0,0,6,0,0,751,0,0.010000,20,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121344,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85678,'QBClsPgl300_001','w1f4','bnpc4075238',4075238,-301.803802,5.319162,471.359009,-1.453502,880,0,0,0,0,6,0,0,751,0,0.010000,25,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121078,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85678,'QBClsPgl300_001','w1f4','bnpc4075239',4075239,-301.803802,5.319162,471.359009,-1.453502,881,0,0,0,0,6,0,0,751,0,0.010000,30,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120812,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4252035',4252035,39.398399,3.814185,-348.312592,-0.051162,1977,0,0,0,8,6,0,0,2067,0,0.001000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118730,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4252772',4252772,36.303970,3.396969,-349.395386,0.202727,1978,0,0,0,8,6,0,0,253,0,0.001000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118464,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4252773',4252773,33.646118,3.372192,-351.522095,0.019463,1978,0,0,0,8,6,0,0,253,0,0.001000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118192,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4252774',4252774,32.843430,3.396967,-347.492615,0.238209,1978,0,0,0,8,6,0,0,253,0,0.001000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117920,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4252786',4252786,36.096569,2.671607,-315.518188,0.131925,1729,0,0,0,8,6,0,0,2068,0,0.001000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117654,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4252787',4252787,36.988720,2.438748,-319.737915,0.036294,1729,0,0,0,8,6,0,0,2068,0,0.001000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117382,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4252788',4252788,33.086849,2.690862,-315.682312,0.116009,1730,0,0,0,8,6,0,0,2202,0,0.001000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117116,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4252789',4252789,33.875179,2.435836,-321.963013,0.058491,1730,0,0,0,8,6,0,0,2202,0,0.001000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116844,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4252781',4252781,36.604561,2.400507,-320.965515,0.086718,1978,0,0,0,8,6,0,0,253,0,0.001000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116560,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4252782',4252782,37.056179,2.433777,-324.344086,0.114369,1978,0,0,0,8,6,0,0,253,0,0.001000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116288,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4252783',4252783,33.891689,2.483830,-319.024414,0.102509,1980,0,0,0,8,6,0,0,245,0,0.001000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116034,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4252784',4252784,35.076408,2.570652,-326.735504,0.279415,1980,0,0,0,8,6,0,0,245,0,0.001000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115762,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4252785',4252785,33.979759,2.436675,-322.323486,0.380440,1981,0,0,0,8,6,0,0,1126,0,0.001000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115496,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4251863',4251863,35.544399,3.396965,-368.606506,-0.016444,1984,0,0,0,8,6,0,0,2071,0,80.000000,27,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4251864',4251864,34.087029,3.396969,-370.788696,-0.332072,1985,0,0,0,8,6,0,0,2072,0,80.000000,25,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114964,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4251867',4251867,37.130039,3.396966,-370.684387,-0.082297,1986,0,0,0,8,6,0,0,2072,0,80.000000,25,3,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114698,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4252775',4252775,35.879669,3.396967,-342.485291,0.129042,1980,0,0,0,8,6,0,0,245,0,0.001000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114402,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4252776',4252776,33.290871,3.851276,-339.480011,0.299471,1980,0,0,0,8,6,0,0,245,0,0.001000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114130,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4252790',4252790,33.322769,2.550628,-317.929413,0.244674,1979,0,0,0,8,6,0,0,249,0,0.001000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113888,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4251873',4251873,34.958370,3.372192,-363.149506,-0.000048,1982,0,0,0,8,6,0,0,2069,0,0.001000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113622,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92154,'QB_GaiUsa709_001','w1f4','bnpc4251874',4251874,30.506121,3.727045,-365.148010,-0.000048,1983,0,0,0,8,6,0,0,2070,0,0.001000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113356,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92756,'QB_JobBlm500_001','w1f4','bnpc4278135',4278135,-462.666107,-2.860366,47.982029,-0.000000,1578,0,0,0,8,6,0,0,1453,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112078,1,0,0,0,0,0,0,317,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92756,'QB_JobBlm500_001','w1f4','bnpc4278137',4278137,-460.491608,-3.041317,49.826931,-0.000000,1577,0,0,0,8,6,0,0,2099,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111812,1,0,0,0,0,0,0,311,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92756,'QB_JobBlm500_001','w1f4','bnpc4278138',4278138,-465.615204,-3.164935,51.322620,-0.000000,1576,0,0,0,8,6,0,0,2098,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111546,1,0,0,0,0,0,0,305,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92756,'QB_JobBlm500_001','w1f4','bnpc4278139',4278139,-463.553314,-2.003586,70.996643,-0.041159,1575,0,0,0,1,6,0,0,2100,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111280,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92756,'QB_JobBlm500_001','w1f4','bnpc4278157',4278157,-462.607788,-2.377049,36.730721,0.158242,1581,0,0,0,1,6,0,0,2103,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111014,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92756,'QB_JobBlm500_001','w1f4','bnpc4278336',4278336,-460.640808,-1.383244,75.595833,-0.000000,1579,0,0,0,1,6,0,0,2101,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110468,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92756,'QB_JobBlm500_001','w1f4','bnpc4278337',4278337,-466.120392,-1.340120,75.679283,-0.000000,1580,0,0,0,1,6,0,0,2102,0,0.000000,48,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110202,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92756,'QB_JobBlm500_001','w1f4','bnpc4278142',4278142,-460.668213,-1.383243,75.490417,-0.000000,2245,0,0,0,3,6,0,0,2097,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109848,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92756,'QB_JobBlm500_001','w1f4','bnpc4278143',4278143,-466.100189,-1.343788,75.680809,-0.000000,2245,0,0,0,3,6,0,0,2097,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109576,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92756,'QB_JobBlm500_001','w1f4','bnpc4278156',4278156,-462.638306,-2.330188,35.939259,-0.000048,2245,0,0,0,3,6,0,0,2097,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109304,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93092,'QB_JobPld451_001','w1f4','bnpc4296937',4296937,-407.212708,7.250202,517.115723,-0.000000,1663,0,0,0,8,6,0,0,1421,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108286,1,0,0,0,0,0,0,671,309); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93092,'QB_JobPld451_001','w1f4','bnpc4296942',4296942,-415.036804,7.111749,520.506226,0.663648,1665,0,0,0,8,6,0,0,1912,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108020,1,0,0,0,0,0,0,85,386); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93092,'QB_JobPld451_001','w1f4','bnpc4296943',4296943,-400.097107,7.799229,521.187622,-0.806710,1665,0,0,0,8,6,0,0,1912,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107748,1,0,0,0,0,0,0,85,387); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93092,'QB_JobPld451_001','w1f4','bnpc4296944',4296944,-414.272003,7.117049,532.192200,0.735796,1665,0,0,0,8,6,0,0,1912,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107476,1,0,0,0,0,0,0,85,388); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93092,'QB_JobPld451_001','w1f4','bnpc4296945',4296945,-401.722412,7.355399,532.456726,-0.400948,1664,0,0,0,8,6,0,0,1911,0,0.000000,41,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107210,1,0,0,0,0,0,0,85,385); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93189,'QB_JobSmn300_001','w1f4','bnpc4300437',4300437,-347.130005,0.950000,741.419983,-1.214942,1514,0,0,0,8,6,0,0,1640,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105868,1,0,0,0,0,0,0,669,307); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93189,'QB_JobSmn300_001','w1f4','bnpc4300450',4300450,-356.750214,1.088702,743.358276,1.153613,1513,0,0,0,1,6,0,0,1402,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105602,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93189,'QB_JobSmn300_001','w1f4','bnpc4300454',4300454,-364.381592,1.266165,736.971680,-0.000000,1515,0,0,0,1,6,0,0,1970,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105336,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93189,'QB_JobSmn300_001','w1f4','bnpc4300455',4300455,-354.745697,1.396044,749.066284,-0.000000,1515,0,0,0,1,6,0,0,1970,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105064,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93189,'QB_JobSmn300_001','w1f4','bnpc4300456',4300456,-344.592804,0.841001,738.562927,-0.000000,1515,0,0,0,1,6,0,0,1970,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104792,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93189,'QB_JobSmn300_001','w1f4','bnpc4300459',4300459,-343.949585,0.950401,747.727417,-0.000000,1516,0,0,0,3,6,0,0,2104,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104526,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93189,'QB_JobSmn300_001','w1f4','bnpc4300461',4300461,-361.659790,1.510418,750.378906,-0.000000,1516,0,0,0,3,6,0,0,2104,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104254,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93189,'QB_JobSmn300_001','w1f4','bnpc4300462',4300462,-355.136810,1.304626,734.173401,-0.000000,1516,0,0,0,3,6,0,0,2104,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103982,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86197,'QB_QST_PGL250','w1f4','bnpc4082299',4082299,-156.457306,24.271360,-348.497986,-0.036847,698,0,0,0,0,6,0,0,828,0,0.010000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102712,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86197,'QB_QST_PGL250','w1f4','bnpc4082301',4082301,-156.447906,25.275810,-358.545685,-0.000000,699,0,0,0,8,6,0,0,823,0,0.010000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102446,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86197,'QB_QST_PGL250','w1f4','bnpc4082311',4082311,-155.809906,22.895639,-326.037994,0.042664,700,0,0,0,0,6,0,0,829,0,0.010000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102180,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86197,'QB_QST_PGL250','w1f4','bnpc4082312',4082312,-161.425201,22.891859,-326.434814,0.042664,700,0,0,0,0,6,0,0,829,0,0.010000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86197,'QB_QST_PGL250','w1f4','bnpc4082314',4082314,-158.434402,22.922380,-326.495789,0.042664,701,0,0,0,0,6,0,0,830,0,0.010000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101642,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86197,'QB_QST_PGL250','w1f4','bnpc4082315',4082315,-153.740097,24.159901,-347.614807,0.007843,700,0,0,0,0,6,0,0,829,0,0.010000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101364,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86197,'QB_QST_PGL250','w1f4','bnpc4082316',4082316,-159.455200,24.283340,-348.169403,0.053726,700,0,0,0,0,6,0,0,829,0,0.010000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101092,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86197,'QB_QST_PGL250','w1f4','bnpc4082323',4082323,-163.439407,22.973480,-326.347412,0.143046,702,0,0,0,0,6,0,0,831,0,0.010000,25,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100832,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86197,'QB_QST_PGL250','w1f4','bnpc4082317',4082317,-161.791397,24.307501,-348.531403,0.053786,716,0,0,0,0,6,0,0,262,0,0.010000,23,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100446,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96679,'QST_BanAma002','w1f4','bnpc4507096',4507096,-283.436005,4.296864,-69.779129,1.089197,2458,0,0,0,1,6,0,0,2306,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,1.000000,1.000000,99044,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96679,'QST_BanAma002','w1f4','bnpc4507097',4507097,-274.094788,4.472507,-73.008133,0.962993,2458,0,0,0,1,6,0,0,2306,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,1.000000,1.000000,98772,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96679,'QST_BanAma002','w1f4','bnpc4507098',4507098,-276.726410,4.350212,-67.619522,0.636166,2459,0,0,0,1,6,0,0,2307,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,1.000000,1.000000,98506,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96680,'QST_BanAma003','w1f4','bnpc4583667',4583667,-193.979599,5.861968,101.355499,-1.455462,2685,0,0,0,1,6,0,0,2309,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,1.000000,1.000000,96048,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96680,'QST_BanAma003','w1f4','bnpc4583668',4583668,-190.774704,5.941564,99.541908,-1.436095,2686,0,0,0,1,6,0,0,2307,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,1.000000,1.000000,95782,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96680,'QST_BanAma003','w1f4','bnpc4583669',4583669,-188.298004,6.420446,101.036301,-1.218792,2686,0,0,0,1,6,0,0,2307,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,1.000000,1.000000,95510,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96680,'QST_BanAma003','w1f4','bnpc4583682',4583682,-75.471184,12.272830,94.448830,0.487391,2685,0,0,0,1,6,0,0,2309,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,1.000000,1.000000,95232,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96680,'QST_BanAma003','w1f4','bnpc4583683',4583683,-80.047043,12.623360,92.384537,1.089756,2686,0,0,0,1,6,0,0,2307,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,1.000000,1.000000,94966,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96680,'QST_BanAma003','w1f4','bnpc4583684',4583684,-77.548737,12.507050,93.469063,0.730051,2686,0,0,0,1,6,0,0,2307,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,1.000000,1.000000,94694,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96680,'QST_BanAma003','w1f4','bnpc4583685',4583685,-120.490898,27.892071,132.139206,-0.290520,2685,0,0,0,1,6,0,0,2309,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,1.000000,1.000000,94416,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96680,'QST_BanAma003','w1f4','bnpc4583686',4583686,-120.888397,28.167290,135.514099,-0.146979,2686,0,0,0,1,6,0,0,2307,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,1.000000,1.000000,94150,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96680,'QST_BanAma003','w1f4','bnpc4583687',4583687,-122.727997,28.098030,137.646194,0.250204,2686,0,0,0,1,6,0,0,2307,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,1.000000,1.000000,93878,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96681,'QST_BanAma004','w1f4','bnpc4508674',4508674,-72.405724,-1.510602,-90.351318,-1.202018,2462,0,0,0,1,6,0,0,2306,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,92984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96681,'QST_BanAma004','w1f4','bnpc4508675',4508675,-79.424408,-2.142971,-94.223984,0.556412,2462,0,0,0,1,6,0,0,2306,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,92712,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96681,'QST_BanAma004','w1f4','bnpc4508676',4508676,-81.135834,-2.141351,-89.733688,1.502862,2461,0,0,0,1,6,0,0,2309,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,92446,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96681,'QST_BanAma004','w1f4','bnpc4508677',4508677,-31.155630,8.026709,72.964760,0.333494,739,0,0,0,1,6,0,0,2301,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,92180,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96681,'QST_BanAma004','w1f4','bnpc4508678',4508678,-35.459190,8.164630,153.944504,0.126300,739,0,0,0,1,6,0,0,2301,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,91908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96681,'QST_BanAma004','w1f4','bnpc4508679',4508679,-74.373909,-1.800325,28.468731,0.693561,739,0,0,0,1,6,0,0,2301,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,91636,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96681,'QST_BanAma004','w1f4','bnpc4508680',4508680,-220.760605,5.499704,120.429100,0.292680,739,0,0,0,1,6,0,0,2301,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,3.000000,1.000000,91364,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96682,'QST_BanAma005','w1f4','bnpc4508701',4508701,406.293610,12.913260,-99.942177,-0.506910,2454,0,0,0,1,6,0,0,258,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,88850,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97125,'QST_BanAma104_001','w1f4','bnpc4534639',4534639,-106.847900,-2.355494,21.505840,-0.000000,2451,0,0,0,1,6,0,0,2360,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86848,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97387,'QST_BanAma107','w1f4','bnpc4553358',4553358,-75.518227,-2.225647,-105.483498,1.208557,79,0,0,0,1,6,0,0,2362,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84182,1,0,0,0,0,0,0,406,255); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97387,'QST_BanAma107','w1f4','bnpc4553359',4553359,-83.325668,-4.627735,-105.670799,-0.319933,79,0,0,0,1,6,0,0,2362,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83910,1,0,0,0,0,0,0,406,255); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97387,'QST_BanAma107','w1f4','bnpc4553360',4553360,-159.839203,4.314397,-136.807907,0.943300,80,0,0,0,1,6,0,0,2363,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83644,1,0,0,0,0,0,0,404,256); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97387,'QST_BanAma107','w1f4','bnpc4553361',4553361,-198.381699,4.401860,-156.899994,0.813608,80,0,0,0,1,6,0,0,2363,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83372,1,0,0,0,0,0,0,404,256); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97387,'QST_BanAma107','w1f4','bnpc4553362',4553362,-151.406097,7.056529,-51.180882,-0.775445,80,0,0,0,1,6,0,0,2363,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83100,1,0,0,0,0,0,0,404,256); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97387,'QST_BanAma107','w1f4','bnpc4553363',4553363,-21.491510,1.427447,-28.544041,0.998410,81,0,0,0,1,6,0,0,2361,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82834,1,0,0,0,0,0,0,762,426); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97387,'QST_BanAma107','w1f4','bnpc4553365',4553365,-21.335831,1.012324,20.176640,0.640751,81,0,0,0,1,6,0,0,2361,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82562,1,0,0,0,0,0,0,762,426); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96886,'QST_BanAma108','w1f4','bnpc4510739',4510739,-263.921997,4.500718,-109.889702,0.368591,739,0,0,0,1,6,0,0,2300,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,0.000000,80352,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96886,'QST_BanAma108','w1f4','bnpc4510760',4510760,-76.212349,-2.136024,-78.181923,-0.151142,739,0,0,0,1,6,0,0,2300,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,0.000000,80080,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96886,'QST_BanAma108','w1f4','bnpc4510762',4510762,33.779308,3.670261,-295.765686,-0.241989,739,0,0,0,1,6,0,0,2300,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,0.000000,79808,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96886,'QST_BanAma108','w1f4','bnpc4510764',4510764,-25.066851,-0.847961,-170.093704,0.129341,739,0,0,0,1,6,0,0,2300,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,0.000000,79536,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96886,'QST_BanAma108','w1f4','bnpc4510765',4510765,-3.324440,-0.000979,-229.727097,-1.390165,739,0,0,0,1,6,0,0,2300,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,0.000000,79264,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (96886,'QST_BanAma108','w1f4','bnpc4512279',4512279,-158.282806,4.637473,-102.732300,0.311882,739,0,0,0,1,6,0,0,2300,0,0.000000,43,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,0.000000,78192,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97253,'QST_BanAma204_001','w1f4','bnpc4545525',4545525,-89.616798,12.525140,84.483047,0.498907,2454,0,0,0,1,6,0,0,2298,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,74994,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97253,'QST_BanAma204_001','w1f4','bnpc4545528',4545528,89.603737,26.521549,225.315598,-0.971483,2454,0,0,0,1,6,0,0,2298,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,74722,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97253,'QST_BanAma204_001','w1f4','bnpc4545529',4545529,-38.761330,8.161511,143.674698,-0.291766,2454,0,0,0,1,6,0,0,2298,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,74450,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97253,'QST_BanAma204_001','w1f4','bnpc4545531',4545531,-186.380997,39.993938,153.238403,0.834101,2454,0,0,0,1,6,0,0,2298,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,74178,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97253,'QST_BanAma204_001','w1f4','bnpc4545532',4545532,-108.893501,45.811230,195.703094,0.630483,2454,0,0,0,1,6,0,0,2298,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,73906,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97253,'QST_BanAma204_001','w1f4','bnpc4545533',4545533,-33.586971,38.308262,288.743713,0.389365,2454,0,0,0,1,6,0,0,2298,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,73634,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97253,'QST_BanAma204_001','w1f4','bnpc4545537',4545537,61.009270,34.144371,148.327896,-1.539228,2454,0,0,0,1,6,0,0,2298,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,73362,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97314,'QST_BanAma206','w1f4','bnpc4551428',4551428,-81.925720,7.769803,349.610809,-0.271199,2475,0,0,0,1,6,0,0,2299,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70076,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97314,'QST_BanAma206','w1f4','bnpc4551430',4551430,-90.156013,7.566264,299.344391,0.200494,2475,0,0,0,1,6,0,0,2299,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69736,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97314,'QST_BanAma206','w1f4','bnpc4551433',4551433,-50.262119,10.736700,173.755295,0.153636,2475,0,0,0,1,6,0,0,2299,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69396,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97314,'QST_BanAma206','w1f4','bnpc4551436',4551436,-135.202896,6.063423,261.563293,-0.293053,2475,0,0,0,1,6,0,0,2299,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69056,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97314,'QST_BanAma206','w1f4','bnpc4551438',4551438,-208.668396,8.401428,232.793701,-1.164021,2475,0,0,0,1,6,0,0,2299,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68716,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97314,'QST_BanAma206','w1f4','bnpc4551440',4551440,-97.349007,9.130962,208.134003,0.730857,2475,0,0,0,1,6,0,0,2299,0,0.000000,47,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68376,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97628,'QST_BanAma207_001','w1f4','bnpc4572963',4572963,-67.879707,9.704253,54.908569,1.038956,2455,0,0,0,1,6,0,0,2300,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,66990,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97628,'QST_BanAma207_001','w1f4','bnpc4572964',4572964,-126.660500,14.192900,92.514351,1.081446,2455,0,0,0,1,6,0,0,2300,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,66718,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97628,'QST_BanAma207_001','w1f4','bnpc4572965',4572965,-124.618401,26.663179,131.275894,-1.246638,2455,0,0,0,1,6,0,0,2300,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,66446,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97628,'QST_BanAma207_001','w1f4','bnpc4572966',4572966,-148.782806,38.526119,164.309692,1.245944,2455,0,0,0,1,6,0,0,2300,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,66174,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97628,'QST_BanAma207_001','w1f4','bnpc4572967',4572967,-93.815666,45.811230,184.402496,0.147381,2455,0,0,0,1,6,0,0,2300,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,65902,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97628,'QST_BanAma207_001','w1f4','bnpc4572968',4572968,25.743540,36.072540,186.507599,-0.600201,2455,0,0,0,1,6,0,0,2300,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,65630,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97628,'QST_BanAma207_001','w1f4','bnpc4572969',4572969,84.230057,25.226540,205.877396,-0.186086,2455,0,0,0,1,6,0,0,2300,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,65358,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97069,'QST_BanAma208_001','w1f4','bnpc4521183',4521183,-129.301895,-0.737791,56.512718,0.666639,166,0,0,0,1,6,0,0,2300,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64126,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97069,'QST_BanAma208_001','w1f4','bnpc4521185',4521185,-161.131699,6.824592,84.207527,-1.182765,166,0,0,0,1,6,0,0,2300,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63786,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97069,'QST_BanAma208_001','w1f4','bnpc4521187',4521187,-83.878662,45.079231,152.138702,-0.791192,166,0,0,0,1,6,0,0,2300,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63446,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97069,'QST_BanAma208_001','w1f4','bnpc4521189',4521189,-102.769501,27.908689,112.748901,-0.000048,166,0,0,0,1,6,0,0,2300,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63106,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97069,'QST_BanAma208_001','w1f4','bnpc4521215',4521215,-139.129700,17.069571,112.302299,-1.105469,166,0,0,0,1,6,0,0,2300,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62766,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97069,'QST_BanAma208_001','w1f4','bnpc4521217',4521217,-88.074226,12.926750,98.903954,0.788364,166,0,0,0,1,6,0,0,2300,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62426,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97069,'QST_BanAma208_001','w1f4','bnpc4521238',4521238,-52.872501,9.658875,57.999512,0.428083,166,0,0,0,1,6,0,0,2300,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62086,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97002,'QST_BanAma209_001','w1f4','bnpc4517450',4517450,140.576904,7.606730,184.622696,-0.667632,2456,0,0,0,1,6,0,0,2302,0,0.000000,46,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59780,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97315,'QST_BanAma307','w1f4','bnpc4551960',4551960,500.602692,7.583679,-138.963898,-1.120207,2455,0,0,0,1,6,0,0,2309,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55046,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97315,'QST_BanAma307','w1f4','bnpc4551963',4551963,537.010681,7.583679,-110.551598,-0.482183,2455,0,0,0,1,6,0,0,2309,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54774,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97315,'QST_BanAma307','w1f4','bnpc4551964',4551964,492.095215,7.613396,-159.095901,-1.109605,2455,0,0,0,1,6,0,0,2309,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54502,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97315,'QST_BanAma307','w1f4','bnpc4551967',4551967,328.230804,8.118853,-34.057281,-1.557402,2455,0,0,0,1,6,0,0,2309,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97315,'QST_BanAma307','w1f4','bnpc4551970',4551970,391.815613,15.338350,-77.376793,-0.528284,2455,0,0,0,1,6,0,0,2309,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97315,'QST_BanAma307','w1f4','bnpc4551972',4551972,351.696808,9.319548,-29.745081,0.181470,2455,0,0,0,1,6,0,0,2309,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97062,'QST_BanAma308','w1f4','bnpc4520556',4520556,548.968994,7.599621,-155.346207,-1.523380,739,0,0,0,1,6,0,0,2304,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,52068,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97062,'QST_BanAma308','w1f4','bnpc4520557',4520557,421.436005,12.784640,-127.797798,-1.535427,739,0,0,0,1,6,0,0,2304,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,51796,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97062,'QST_BanAma308','w1f4','bnpc4520558',4520558,549.797485,7.583681,-95.383682,-0.104071,739,0,0,0,1,6,0,0,2304,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,51524,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97062,'QST_BanAma308','w1f4','bnpc4520559',4520559,537.827576,7.599620,-68.221527,-0.573849,739,0,0,0,1,6,0,0,2304,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,51252,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97062,'QST_BanAma308','w1f4','bnpc4520560',4520560,589.679382,6.332453,-78.016670,-1.272606,739,0,0,0,1,6,0,0,2304,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,50980,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97062,'QST_BanAma308','w1f4','bnpc4520561',4520561,434.308411,18.090269,-78.906548,-1.220166,739,0,0,0,1,6,0,0,2304,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,50708,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97062,'QST_BanAma308','w1f4','bnpc4520562',4520562,530.914307,7.599625,-114.901001,-0.491804,739,0,0,0,1,6,0,0,2304,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,2.000000,1.000000,50436,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97629,'QST_BanAma309_001','w1f4','bnpc4572980',4572980,208.266907,8.000000,96.540466,0.599744,740,0,0,0,1,6,0,0,2305,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,48718,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97629,'QST_BanAma309_001','w1f4','bnpc4572981',4572981,183.040405,8.105050,124.435699,0.898522,740,0,0,0,1,6,0,0,2305,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,48446,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97629,'QST_BanAma309_001','w1f4','bnpc4572982',4572982,399.619598,12.972780,-106.124298,-0.088103,740,0,0,0,1,6,0,0,2305,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,48174,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97629,'QST_BanAma309_001','w1f4','bnpc4572983',4572983,449.814392,18.514330,-85.837532,-0.920775,740,0,0,0,1,6,0,0,2305,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,47902,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97629,'QST_BanAma309_001','w1f4','bnpc4572984',4572984,614.716614,5.741928,-78.296623,-1.243608,740,0,0,0,1,6,0,0,2305,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,47630,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97629,'QST_BanAma309_001','w1f4','bnpc4572985',4572985,657.525085,6.830379,-66.414124,-1.533640,740,0,0,0,1,6,0,0,2305,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,47358,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97629,'QST_BanAma309_001','w1f4','bnpc4572986',4572986,481.695801,8.803326,-138.581207,-1.412528,740,0,0,0,1,6,0,0,2305,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,1.500000,1.000000,47086,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85205,'QST_CLSGLA_300_001','w1f4','bnpc3987754',3987754,90.491173,6.349188,-538.135498,1.453787,1241,0,0,0,1,6,0,0,929,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,4.000000,1.000000,45340,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85205,'QST_CLSGLA_300_001','w1f4','bnpc3987753',3987753,105.484001,6.349190,-540.900574,-0.719646,1242,0,0,0,1,6,0,0,974,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,4.000000,1.000000,45074,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85205,'QST_CLSGLA_300_001','w1f4','bnpc3987755',3987755,100.030602,6.809877,-528.655823,0.332919,1241,0,0,0,1,6,0,0,929,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,4.000000,1.000000,44796,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85205,'QST_CLSGLA_300_001','w1f4','bnpc3995641',3995641,24.547079,6.144209,-603.545776,0.590358,1242,0,0,0,1,6,0,0,974,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,4.000000,1.000000,44530,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85205,'QST_CLSGLA_300_001','w1f4','bnpc3995643',3995643,33.475460,6.172824,-610.936218,-1.411902,1240,0,0,0,1,6,0,0,1304,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,4.000000,1.000000,44264,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85205,'QST_CLSGLA_300_001','w1f4','bnpc3995644',3995644,15.979140,7.675615,-610.173279,1.488368,1240,0,0,0,1,6,0,0,1304,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,4.000000,1.000000,43992,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92775,'QST_GaiUsa705','w1f4','bnpc4279871',4279871,-187.713501,18.788700,-553.974976,-0.933900,2257,0,0,0,1,6,0,0,1984,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28122,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92775,'QST_GaiUsa705','w1f4','bnpc4279874',4279874,-195.718307,18.917820,-550.314026,0.571209,2258,0,0,0,1,6,0,0,1984,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27856,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92818,'QST_GaiUsa706','w1f4','bnpc4284065',4284065,8.016682,4.350820,-661.911316,0.976873,1905,0,0,0,1,6,0,0,331,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27274,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92818,'QST_GaiUsa706','w1f4','bnpc4284063',4284063,23.294741,3.608177,-664.546326,-0.994130,1906,0,0,0,1,6,0,0,333,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27008,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92818,'QST_GaiUsa706','w1f4','bnpc4284066',4284066,6.938970,3.766764,-665.139282,1.441101,1906,0,0,0,1,6,0,0,333,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26736,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92818,'QST_GaiUsa706','w1f4','bnpc4284064',4284064,21.731730,4.769817,-660.912903,-0.627504,1907,0,0,0,1,6,0,0,332,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26470,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92818,'QST_GaiUsa706','w1f4','bnpc4284067',4284067,9.622924,3.329426,-668.147583,0.633688,1907,0,0,0,1,6,0,0,332,0,0.000000,24,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26198,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92818,'QST_GaiUsa706','w1f4','bnpc4284061',4284061,20.620760,3.165848,-667.931702,-1.208364,2238,0,0,0,1,6,0,0,331,0,0.000000,26,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25932,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92821,'QST_GaiUsa708','w1f4','bnpc4284978',4284978,-305.929993,19.863461,-389.978699,-0.317443,2089,0,0,0,1,6,0,0,1994,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24614,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92821,'QST_GaiUsa708','w1f4','bnpc4284980',4284980,-238.060806,4.672964,-242.439102,-0.000047,2089,0,0,0,1,6,0,0,1994,0,0.000000,27,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24342,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92944,'QST_GaiUsb102','w1f4','bnpc4293187',4293187,81.217033,1.769958,693.674683,-1.385664,1889,0,0,0,1,6,0,0,1977,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22272,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92950,'QST_GaiUsb103','w1f4','bnpc4293190',4293190,26.194611,17.519190,594.200012,0.517445,1890,0,0,0,1,6,0,0,1978,0,0.000000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21702,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92952,'QST_GaiUsb104','w1f4','bnpc4293202',4293202,-452.857605,7.272432,577.050171,-0.436002,356,0,0,0,1,6,0,0,307,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21188,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92952,'QST_GaiUsb104','w1f4','bnpc4293203',4293203,-452.081299,7.204002,582.015625,-1.119184,356,0,0,0,1,6,0,0,307,0,0.000000,29,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20916,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92957,'QST_GaiUsb108','w1f4','bnpc4334161',4334161,-114.736801,-10.813500,731.295471,-0.645564,17,0,0,0,1,6,0,0,132,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19834,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92957,'QST_GaiUsb108','w1f4','bnpc4334162',4334162,-86.028610,-10.813500,726.781799,-0.910381,17,0,0,0,1,6,0,0,132,0,0.000000,32,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19562,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93483,'QST_JobBlm350','w1f4','bnpc4308253',4308253,-7.339868,13.238140,866.062317,0.609910,21,0,0,0,1,6,0,0,2039,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16524,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93483,'QST_JobBlm350','w1f4','bnpc4308254',4308254,-8.462129,13.238140,866.109070,-0.757989,21,0,0,0,1,6,0,0,2039,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16252,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93483,'QST_JobBlm350','w1f4','bnpc4308257',4308257,-7.964730,13.238140,867.327515,0.065531,21,0,0,0,1,6,0,0,2039,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15980,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93258,'QST_JobPld300','w1f4','bnpc4302782',4302782,-96.630814,14.866780,-192.476303,-0.227604,18,0,0,0,1,6,0,0,2018,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12602,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93258,'QST_JobPld300','w1f4','bnpc4302786',4302786,-99.719238,14.866780,-191.503098,0.224373,18,0,0,0,1,6,0,0,2018,0,0.000000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12330,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93258,'QST_JobPld300','w1f4','bnpc4302787',4302787,-98.471977,14.866790,-194.412796,-0.000000,19,0,0,0,1,6,0,0,2019,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12064,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93294,'QST_JobPld450','w1f4','bnpc4303129',4303129,-95.016273,-13.742590,-163.237396,0.059066,1923,0,0,0,1,6,0,0,2022,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11090,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93294,'QST_JobPld450','w1f4','bnpc4303130',4303130,-85.049149,-14.767000,-171.236298,-1.416650,1924,0,0,0,1,6,0,0,2023,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10824,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93294,'QST_JobPld450','w1f4','bnpc4303134',4303134,-88.755127,14.847000,-189.679199,-1.414649,1923,0,0,0,1,6,0,0,2022,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10546,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93294,'QST_JobPld450','w1f4','bnpc4303135',4303135,-103.561401,14.847120,-187.093994,1.262075,1924,0,0,0,1,6,0,0,2023,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10280,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93294,'QST_JobPld450','w1f4','bnpc4303138',4303138,108.273300,11.122000,-480.161804,0.619484,1923,0,0,0,1,6,0,0,2022,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,10002,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93294,'QST_JobPld450','w1f4','bnpc4303140',4303140,122.705299,11.048370,-467.150085,-0.452527,1924,0,0,0,1,6,0,0,2023,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9736,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93294,'QST_JobPld450','w1f4','bnpc4303142',4303142,132.056000,10.387890,-419.508911,-0.012726,1923,0,0,0,1,6,0,0,2022,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9458,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93294,'QST_JobPld450','w1f4','bnpc4303143',4303143,143.766403,10.360610,-419.283600,0.024161,1924,0,0,0,1,6,0,0,2023,0,0.000000,45,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,9192,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93249,'QST_JobSmn400_001','w1f4','bnpc4302608',4302608,-97.012192,26.526920,-369.269714,-1.528442,1946,0,0,0,1,6,0,0,2052,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7302,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93249,'QST_JobSmn400_001','w1f4','bnpc4302609',4302609,-116.624001,27.418739,-366.649689,0.822336,1946,0,0,0,1,6,0,0,2052,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7030,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93249,'QST_JobSmn400_001','w1f4','bnpc4302610',4302610,-104.578903,26.178820,-355.866699,-0.109785,1947,0,0,0,1,6,0,0,2053,0,0.000000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6764,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93074,'QST_JobWar_350_001','w1f4','bnpc4296343',4296343,157.733093,4.288797,831.841125,-0.901436,1917,0,0,0,1,6,0,0,2010,0,0.000000,35,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5854,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143257',4143257,-22.751280,11.306820,255.023895,-0.000048,173,0,0,0,1,6,0,0,304,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43412,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143258',4143258,36.026489,12.344480,271.015411,-0.000048,173,0,0,0,1,6,0,0,304,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43140,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143259',4143259,55.802120,17.593571,268.879211,-0.000048,173,0,0,0,1,6,0,0,304,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42868,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143262',4143262,-27.096640,22.818489,171.618607,-0.000048,173,0,0,0,1,6,0,0,304,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42596,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143263',4143263,-2.783560,22.065960,179.791595,1.173278,173,0,0,0,1,6,0,0,304,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42324,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143264',4143264,81.315308,19.180540,136.797104,1.173322,173,0,0,0,1,6,0,0,304,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42052,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143549',4143549,88.120850,26.535400,85.465698,0.924573,173,0,0,0,1,6,0,0,304,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41780,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143550',4143550,25.709190,31.163389,87.561913,1.173322,173,0,0,0,1,6,0,0,304,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41508,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143554',4143554,154.924805,26.413330,55.680180,1.173322,173,0,0,0,1,6,0,0,304,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41236,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143562',4143562,91.538818,16.617001,247.455597,-0.000048,188,0,0,0,1,6,0,0,275,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40970,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143564',4143564,113.600899,20.635731,256.752289,-0.000048,188,0,0,0,1,6,0,0,275,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40698,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143565',4143565,97.404030,15.458280,235.336502,-0.000048,188,0,0,0,1,6,0,0,275,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40426,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143567',4143567,90.499191,15.431490,213.212006,-0.000048,188,0,0,0,1,6,0,0,275,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40154,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143568',4143568,94.008713,15.986880,210.037994,-0.000048,188,0,0,0,1,6,0,0,275,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39882,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143569',4143569,72.804611,17.211941,188.128403,-0.000048,188,0,0,0,1,6,0,0,275,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39610,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143570',4143570,113.583397,20.725821,198.431107,-0.000048,188,0,0,0,1,6,0,0,275,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39338,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143572',4143572,110.270599,19.667850,255.799896,-0.000048,188,0,0,0,1,6,0,0,275,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39066,5,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143576',4143576,232.090897,25.124689,91.229813,-0.000000,327,0,0,0,1,6,0,0,270,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38800,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143582',4143582,235.318207,25.000000,90.251823,-0.000000,327,0,0,0,1,6,0,0,270,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38528,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143583',4143583,217.891495,24.995701,66.152168,-0.000048,327,0,0,0,1,6,0,0,270,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38256,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143584',4143584,238.131699,25.000000,69.756897,-0.000000,327,0,0,0,1,6,0,0,270,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37984,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143585',4143585,181.954498,24.096069,108.793198,-0.000048,327,0,0,0,1,6,0,0,270,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37712,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143587',4143587,187.734497,23.467779,81.350632,-0.000048,327,0,0,0,1,6,0,0,270,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37440,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143599',4143599,206.140198,24.982540,99.308563,-0.000048,327,0,0,0,1,6,0,0,270,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37168,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143601',4143601,128.801407,32.150631,22.171329,-0.000048,183,0,0,0,1,6,0,0,242,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36902,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143603',4143603,145.579803,36.363121,0.951006,-0.000048,183,0,0,0,1,6,0,0,242,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36630,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143605',4143605,199.000107,37.938610,-38.092609,-0.000048,183,0,0,0,1,6,0,0,242,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36358,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143606',4143606,210.101303,43.259281,-62.882450,-0.000048,183,0,0,0,1,6,0,0,242,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36086,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143607',4143607,168.781799,34.245739,-48.962570,-0.000000,183,0,0,0,1,6,0,0,242,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35814,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143609',4143609,124.096703,36.327381,1.739570,-0.000000,183,0,0,0,1,6,0,0,242,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35542,1,0,0,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143633',4143633,103.898697,29.587160,51.316040,1.173322,173,0,0,0,1,6,0,0,304,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35252,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143658',4143658,-43.847889,4.272492,328.905212,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35004,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143664',4143664,21.199301,12.444670,247.143097,-0.000000,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34732,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143665',4143665,26.998260,8.727581,301.573212,-0.000000,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34460,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143667',4143667,91.295532,17.012800,203.566498,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34188,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143675',4143675,151.964798,23.031151,219.041107,-0.000000,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33916,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143678',4143678,12.408140,27.175131,161.493607,-0.000000,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33644,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143680',4143680,102.545601,20.679501,134.920197,-0.000000,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33372,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143681',4143681,5.065147,32.352421,92.032951,-0.000000,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33100,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143683',4143683,122.494400,28.121000,63.417889,-0.000000,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32828,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143686',4143686,159.263199,38.439861,-21.090820,-0.000000,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32556,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143689',4143689,156.182205,38.100910,-21.738810,-0.000000,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32284,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143696',4143696,191.562195,35.245621,19.655609,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32012,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143697',4143697,237.079300,24.979000,10.849120,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31740,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89700,'LVD_BNPC_01','w1f5','bnpc4143698',4143698,270.740692,24.979000,19.821409,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31468,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4143985',4143985,-236.942505,74.336182,-139.612595,-0.000048,55,0,0,0,1,6,0,0,53,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30974,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4143987',4143987,-175.616104,72.465088,-175.524506,-0.000048,62,0,0,0,1,6,0,0,59,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30708,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4143988',4143988,-173.022003,75.478470,-197.758698,-0.000048,64,0,0,0,1,6,0,0,61,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30442,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4143993',4143993,-149.580002,77.503860,-222.418793,-0.000048,62,0,0,0,1,6,0,0,59,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30164,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4143994',4143994,-93.107857,75.162788,-232.686707,-0.000048,55,0,0,0,1,6,0,0,53,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29886,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4143995',4143995,-123.641602,77.912354,-256.362396,-0.000048,64,0,0,0,1,6,0,0,61,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29626,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4143996',4143996,-226.793793,81.000000,-184.122299,0.416610,62,0,0,0,0,6,0,0,59,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29348,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4143997',4143997,-235.407898,81.000000,-178.838806,-0.000048,55,0,0,0,1,6,0,0,53,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29070,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4143998',4143998,-230.074997,80.916733,-190.776306,-0.000048,64,0,0,0,1,6,0,0,61,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28810,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144004',4144004,-226.367599,84.489143,-253.589706,0.676352,64,0,0,0,0,6,0,0,61,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28538,1,0,0,0,0,30073,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144005',4144005,-224.933304,84.489143,-253.589706,-1.277202,63,0,0,0,0,6,0,0,60,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28272,1,0,0,0,0,30079,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144006',4144006,-220.538696,84.580688,-272.175201,-0.000048,61,0,0,0,1,6,0,0,58,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28006,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144007',4144007,-185.748199,82.993767,-343.923187,-0.000048,64,0,0,0,1,6,0,0,61,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27722,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144008',4144008,-241.626602,82.871696,-325.673401,-0.000048,61,0,0,0,1,6,0,0,58,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27462,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144009',4144009,-183.731796,82.171227,-277.526794,-0.000048,63,0,0,0,1,6,0,0,60,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27184,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144010',4144010,-150.125107,79.349922,-288.540314,-0.000048,64,0,0,0,1,6,0,0,61,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26906,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144011',4144011,-145.403198,79.148438,-287.983490,-0.000048,61,0,0,0,1,6,0,0,58,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26646,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144012',4144012,-137.499100,78.965332,-316.365387,-0.000048,63,0,0,0,1,6,0,0,60,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26368,1,0,0,0,0,30096,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144014',4144014,-270.984497,86.114403,-209.552200,1.083630,200,0,0,0,1,6,0,0,269,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26108,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144019',4144019,-271.322510,85.845490,-250.351501,1.083643,200,0,0,0,1,6,0,0,269,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25836,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144020',4144020,-215.539902,78.789352,-220.913300,1.083630,200,0,0,0,1,6,0,0,269,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25564,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144021',4144021,-207.940796,79.257797,-225.979294,1.083534,200,0,0,0,1,6,0,0,269,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25292,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144022',4144022,-206.439301,81.986687,-312.581085,1.083630,200,0,0,0,1,6,0,0,269,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25020,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144024',4144024,-245.671600,85.185867,-295.674591,1.083643,200,0,0,0,1,6,0,0,269,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24748,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144026',4144026,-281.544312,84.733276,-337.270111,1.083534,200,0,0,0,1,6,0,0,269,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24476,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144030',4144030,-197.894302,73.685791,-155.962494,1.083534,200,0,0,0,1,6,0,0,269,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24204,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4143699',4143699,-171.068893,65.201782,-114.244301,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23896,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144093',4144093,-116.075401,69.687866,-168.993698,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23624,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144094',4144094,-264.972992,66.300423,-94.865417,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23352,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144096',4144096,-268.024811,82.291870,-176.836807,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23080,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144098',4144098,-269.398102,82.566528,-178.057602,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22808,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144099',4144099,-264.698303,84.550171,-278.523010,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22536,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144100',4144100,-188.461502,82.094650,-246.270706,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22264,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144111',4144111,-151.170593,81.992996,-335.126007,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21992,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144120',4144120,-94.132240,86.095337,-349.362091,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21720,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144121',4144121,-135.933197,74.805679,-201.996399,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21448,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144122',4144122,-197.625793,75.483841,-186.585007,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21176,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144123',4144123,-66.867043,77.003868,-231.542603,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20904,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4144125',4144125,-52.429440,74.259010,-179.350494,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20632,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89744,'LVD_BNPC_02','w1f5','bnpc4321602',4321602,-34.066769,78.059433,-197.537704,-0.000048,131,0,0,0,1,6,0,0,113,0,0.000000,49,1,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20360,5,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (98381,'LVD_easter_2014','w1f5','bnpc4622463',4622463,-256.647614,58.429218,-42.257309,0.137566,2773,0,0,0,1,6,0,0,2514,0,0.000000,5,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,12330,11,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85964,'LVD_guard_01','w1f5','bnpc4057836',4057836,28.031610,4.298763,383.960999,-0.551668,793,0,0,0,0,6,0,0,1275,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11604,5,0,0,0,0,30055,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85964,'LVD_guard_01','w1f5','bnpc4057838',4057838,29.892330,35.882359,42.700661,0.896160,791,0,0,0,0,6,0,0,1275,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11338,5,0,0,0,0,30054,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85964,'LVD_guard_01','w1f5','bnpc4057854',4057854,-104.771599,56.986221,-91.275787,-0.651489,792,0,0,0,0,6,0,0,1275,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,11072,5,0,0,0,0,30051,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93699,'FATE_004','w1f5','bnpc4317488',4317488,191.587601,41.174301,-54.471569,-0.788686,2135,0,0,0,1,6,0,0,1508,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,59168,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93700,'FATE_005','w1f5','bnpc4317505',4317505,135.911697,30.032120,34.523911,0.631722,1208,0,0,0,0,6,0,0,1275,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,57490,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93701,'FATE_007','w1f5','bnpc4317577',4317577,-135.695099,63.680500,-135.640503,-1.291934,1209,0,0,0,0,6,0,0,1275,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,56128,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93702,'FATE_008','w1f5','bnpc4317660',4317660,-129.475800,83.839211,-357.366089,1.051230,2136,0,0,0,0,6,0,0,1509,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,55710,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93702,'FATE_008','w1f5','bnpc4317662',4317662,-127.929703,83.497032,-354.793396,-0.573157,62,0,0,0,0,6,0,0,59,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,55444,1,0,0,0,0,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93697,'FATE_009','w1f5','bnpc4317440',4317440,28.898680,35.028111,55.771660,0.755937,2168,0,0,0,0,6,0,0,1726,0,0.000000,0,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,54994,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93703,'FATE_011','w1f5','bnpc4317671',4317671,-59.474621,77.142143,-206.333099,-0.252054,2137,0,0,0,0,6,0,0,1510,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,53664,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93704,'FATE_012','w1f5','bnpc4317680',4317680,191.446594,24.593330,108.681396,-0.982139,2138,0,0,0,1,6,0,0,1511,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,53250,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93705,'FATE_013','w1f5','bnpc4317688',4317688,43.158779,33.740810,50.873409,-0.000000,1206,0,0,0,0,6,0,0,1275,0,0.000000,44,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,51568,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93706,'FATE_014','w1f5','bnpc4317696',4317696,53.167271,14.401170,196.557800,0.484902,1208,0,0,0,0,6,0,0,1275,0,0.000000,44,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,49526,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93278,'FATE_015','w1f5','bnpc4308013',4308013,-95.697647,83.563751,-268.479401,-0.349066,2168,0,0,0,0,6,0,0,1726,0,0.000000,46,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,47522,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93708,'FATE_018','w1f5','bnpc4317705',4317705,-50.640850,11.032480,255.285706,0.627369,1207,0,0,0,0,6,0,0,1275,0,0.000000,46,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,45486,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93839,'FATE_019','w1f5','bnpc4322756',4322756,17.570780,4.091199,397.798309,1.260778,2106,0,0,0,0,6,0,0,1718,0,0.000000,46,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44680,1,0,0,0,0,30189,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4317815',4317815,214.608505,24.361719,90.003059,0.662634,2139,0,0,0,0,6,0,0,1512,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,39462,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4317831',4317831,252.152298,25.000000,2.374264,0.585705,2140,0,0,0,8,6,0,0,1513,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,39196,1,0,0,0,0,30264,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323833',4323833,253.733398,25.000000,2.080352,0.172058,2217,0,0,0,0,6,0,0,1870,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,38930,1,0,0,0,38,30068,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323834',4323834,250.872101,25.000000,3.305268,1.038979,2217,0,0,0,0,6,0,0,1870,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,38658,1,0,0,0,38,30068,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323844',4323844,252.903793,25.000000,4.129642,0.395804,2217,0,0,0,0,6,0,0,1870,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,38386,1,0,0,0,38,30064,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323847',4323847,242.623306,31.992500,79.404007,-0.875872,2217,0,0,0,0,6,0,0,1690,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,38114,1,0,0,0,37,30111,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323849',4323849,212.200897,29.384190,59.481171,-0.988395,2214,0,0,0,0,6,0,0,1681,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,37848,1,0,0,0,37,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323851',4323851,250.906204,25.000000,59.170460,0.284220,2216,0,0,0,1,6,0,0,1681,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,37582,1,0,0,0,37,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323852',4323852,227.797607,25.000000,75.600082,-0.830330,2215,0,0,0,1,6,0,0,1681,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,37316,1,0,0,0,37,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323853',4323853,244.483307,25.451220,72.605797,-0.732085,2215,0,0,0,0,6,0,0,1681,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,37044,1,0,0,0,37,30065,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323854',4323854,243.488297,31.992500,77.682480,-0.868043,2215,0,0,0,0,6,0,0,1681,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,36772,1,0,0,0,37,30265,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323855',4323855,244.556595,31.992500,79.152901,-1.125454,2215,0,0,0,0,6,0,0,1681,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,36500,1,0,0,0,37,30265,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323856',4323856,230.643005,24.974369,53.909389,0.505741,2214,0,0,0,0,6,0,0,1681,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,36216,1,0,0,0,37,30065,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323858',4323858,237.940903,25.162359,64.760986,-1.341270,2216,0,0,0,0,6,0,0,1681,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,35950,1,0,0,0,37,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323880',4323880,252.759705,25.146170,19.231331,0.190070,2214,0,0,0,0,6,0,0,1870,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,35672,1,0,0,0,38,30075,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323882',4323882,259.822815,25.155920,19.382021,-0.432405,2216,0,0,0,0,6,0,0,1870,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,35406,1,0,0,0,38,30076,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323902',4323902,255.326508,25.000000,10.416210,0.087020,2215,0,0,0,0,6,0,0,1870,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,35140,1,0,0,0,38,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323903',4323903,242.884293,25.000000,16.865841,0.345913,2215,0,0,0,0,6,0,0,1870,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,34868,1,0,0,0,38,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323904',4323904,265.247009,25.000000,14.843340,-0.108940,2215,0,0,0,0,6,0,0,1870,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,34596,1,0,0,0,38,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93709,'FATE_024','w1f5','bnpc4323857',4323857,231.397598,24.966181,51.788940,-0.317361,2217,0,0,0,0,6,0,0,1681,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,34306,1,0,0,0,37,30082,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93710,'FATE_025','w1f5','bnpc4328449',4328449,258.662292,25.000000,14.966350,-0.455555,2217,0,0,0,1,6,0,0,1870,0,0.000000,49,3,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,33330,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93712,'FATE_027','w1f5','bnpc4323887',4323887,252.602402,25.000000,3.026842,0.571393,2141,0,0,0,0,6,0,0,1514,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,32626,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93872,'FATE_028','w1f5','bnpc4323764',4323764,-211.955399,84.427101,-360.794189,0.454820,1800,0,0,0,1,6,0,0,1446,0,0.000000,49,0,120,1,0,0,0,0,0,1,1,0,0,0,0.000000,1.000000,31892,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92951,'QST_GaiUsb811','w1f5','bnpc4293195',4293195,-46.059280,3.787999,418.692413,1.124320,1913,0,0,0,1,6,0,0,2005,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7934,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92951,'QST_GaiUsb811','w1f5','bnpc4293196',4293196,-44.483910,3.739854,416.186005,0.400779,1913,0,0,0,1,6,0,0,2005,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7662,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92951,'QST_GaiUsb811','w1f5','bnpc4293197',4293197,-25.925110,3.982543,414.188812,-0.930715,1913,0,0,0,1,6,0,0,2005,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7390,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92951,'QST_GaiUsb811','w1f5','bnpc4293198',4293198,-28.824341,3.829956,410.971191,0.615375,1913,0,0,0,1,6,0,0,2005,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,7118,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92951,'QST_GaiUsb811','w1f5','bnpc4293199',4293199,-24.694201,5.026135,425.393585,-0.617816,1913,0,0,0,1,6,0,0,2005,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6846,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92951,'QST_GaiUsb811','w1f5','bnpc4293200',4293200,-27.328920,3.982544,422.659698,0.747875,1913,0,0,0,1,6,0,0,2005,0,0.000000,38,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,6574,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93233,'QST_GaiUsc903','w1f5','bnpc4301884',4301884,-68.454964,-1.118185,299.385986,-1.302751,188,0,0,0,1,6,0,0,2008,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5752,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93237,'QST_GaiUsc906','w1f5','bnpc4302012',4302012,136.689102,32.541592,14.987310,0.207228,2092,0,0,0,1,6,0,0,270,0,0.000000,49,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,5010,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80599,'LVD_bnpc_01','w1fa','bnpc4126276',4126276,15.000000,0.000000,0.000000,-1.570796,207,0,0,0,0,6,0,0,1185,0,0.000000,20,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21876,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80599,'LVD_bnpc_01','w1fa','bnpc4126281',4126281,0.000000,0.000000,0.000000,-0.000000,208,0,0,0,0,6,0,0,1186,0,0.000000,20,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21610,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (80599,'LVD_bnpc_01','w1fa','bnpc4126284',4126284,36.299999,0.000000,0.000000,-0.000000,401,0,0,0,0,6,0,0,1185,0,0.000000,20,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,21344,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89221,'LVD_bnpc_02','w1fa','bnpc3292760',3292760,15.000000,0.000000,0.000000,-1.570796,209,0,0,0,0,6,0,0,1185,0,0.000000,50,2,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20954,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89221,'LVD_bnpc_02','w1fa','bnpc3640608',3640608,21.000000,0.000000,-0.000000,-1.570451,209,0,0,0,0,6,0,0,1185,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20682,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89221,'LVD_bnpc_02','w1fa','bnpc3640609',3640609,14.850000,0.000000,14.850000,-2.356194,209,0,0,0,0,6,0,0,1185,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20410,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89221,'LVD_bnpc_02','w1fa','bnpc3640610',3640610,0.000000,0.000000,21.000000,3.141593,209,0,0,0,0,6,0,0,1185,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,20138,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89221,'LVD_bnpc_02','w1fa','bnpc3640611',3640611,-14.850000,0.000000,14.850000,2.356194,209,0,0,0,0,6,0,0,1185,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19866,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89221,'LVD_bnpc_02','w1fa','bnpc3640612',3640612,-21.000000,0.000000,0.000000,1.570451,209,0,0,0,0,6,0,0,1185,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19594,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89221,'LVD_bnpc_02','w1fa','bnpc3640613',3640613,-14.850000,0.000000,-14.850000,0.785398,209,0,0,0,0,6,0,0,1185,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19322,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89221,'LVD_bnpc_02','w1fa','bnpc3640614',3640614,0.000000,0.000000,-21.000000,0.000000,209,0,0,0,0,6,0,0,1185,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,19050,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89221,'LVD_bnpc_02','w1fa','bnpc3640615',3640615,14.850000,0.000000,-14.850000,-0.785398,209,0,0,0,0,6,0,0,1185,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18778,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89221,'LVD_bnpc_02','w1fa','bnpc3668270',3668270,0.000000,0.000000,10.000000,-0.000000,210,0,0,0,0,6,0,0,1186,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18512,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89221,'LVD_bnpc_02','w1fa','bnpc3668271',3668271,0.000000,0.000000,-10.000000,-0.000000,210,0,0,0,0,6,0,0,1186,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,18240,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89221,'LVD_bnpc_02','w1fa','bnpc4082426',4082426,36.000000,0.000000,0.000000,-0.000000,434,0,0,0,0,6,0,0,1185,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17974,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89221,'LVD_bnpc_02','w1fa','bnpc4266579',4266579,10.000000,0.000000,0.000000,-0.000000,210,0,0,0,0,6,0,0,1186,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17696,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (89221,'LVD_bnpc_02','w1fa','bnpc4266580',4266580,-10.000000,0.000000,0.000000,-0.000000,210,0,0,0,0,6,0,0,1186,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17424,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4265974',4265974,15.000000,0.000000,0.000000,-1.570796,211,0,0,0,0,6,0,0,1185,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,17000,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4265977',4265977,21.000000,0.000000,0.300000,-1.570451,211,0,0,0,0,6,0,0,1185,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16728,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4265978',4265978,14.850000,0.000000,14.850000,-2.356194,211,0,0,0,0,6,0,0,1185,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16456,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4265979',4265979,0.000000,0.000000,21.000000,3.141593,211,0,0,0,0,6,0,0,1185,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,16184,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4265980',4265980,-14.850000,0.000000,14.850000,2.356194,211,0,0,0,0,6,0,0,1185,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15912,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4265981',4265981,-21.000000,0.000000,0.000000,1.570796,211,0,0,0,0,6,0,0,1185,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15640,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4265982',4265982,-14.850000,0.000000,-14.850000,0.785398,211,0,0,0,0,6,0,0,1185,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15368,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4265983',4265983,0.000000,0.000000,-21.000000,0.000000,211,0,0,0,0,6,0,0,1185,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,15096,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4265984',4265984,14.850000,0.000000,-14.850000,-0.785398,211,0,0,0,0,6,0,0,1185,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14824,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4265990',4265990,0.000000,0.000000,-13.000000,0.000000,212,0,0,0,0,6,0,0,1186,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14558,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4265991',4265991,13.000000,0.000000,0.000000,-0.000000,212,0,0,0,0,6,0,0,1186,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14286,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4265992',4265992,36.000000,0.000000,0.000000,0.000000,434,0,0,0,0,6,0,0,1185,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,14002,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4404192',4404192,0.778013,0.000000,1.057422,-0.000000,2312,0,0,0,0,6,0,0,1185,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13748,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4266590',4266590,0.000000,0.000000,13.000000,-0.000000,212,0,0,0,0,6,0,0,1186,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13470,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4266591',4266591,-13.000000,0.000000,0.000000,-0.000000,212,0,0,0,0,6,0,0,1186,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,13198,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4404193',4404193,0.000000,0.000000,-19.000000,-0.000000,212,0,0,0,0,6,0,0,1186,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12926,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4404194',4404194,14.000000,0.000000,-13.000000,-0.000000,212,0,0,0,0,6,0,0,1186,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12654,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4404196',4404196,19.000000,0.000000,0.000000,-0.000000,212,0,0,0,0,6,0,0,1186,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12382,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4404199',4404199,14.000000,0.000000,13.000000,-0.000000,212,0,0,0,0,6,0,0,1186,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,12110,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4404200',4404200,0.000000,0.000000,19.000000,-0.000000,212,0,0,0,0,6,0,0,1186,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4404202',4404202,-14.000000,0.000000,13.000000,-0.000000,212,0,0,0,0,6,0,0,1186,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11566,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4404204',4404204,-19.000000,0.000000,0.000000,-0.000000,212,0,0,0,0,6,0,0,1186,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11294,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4404206',4404206,-14.000000,0.000000,-13.000000,-0.000000,212,0,0,0,0,6,0,0,1186,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,11022,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (92526,'LVD_bnpc_03','w1fa','bnpc4404209',4404209,0.000000,0.000000,0.000000,-0.000000,2331,0,0,0,0,6,0,0,1186,0,0.000000,50,1,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,10762,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94785,'LVD_bnpc_01','w1fb','bnpc4391945',4391945,-8.184062,0.068419,-3.643234,-0.000000,434,0,0,0,0,6,0,0,2137,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35672,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94785,'LVD_bnpc_01','w1fb','bnpc4391946',4391946,0.000000,-0.130726,-9.630427,-0.000000,2319,0,0,0,0,6,0,0,2137,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35406,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94785,'LVD_bnpc_01','w1fb','bnpc4391947',4391947,-6.297779,-0.062501,2.265377,-0.000000,2320,0,0,0,0,6,0,0,2139,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35140,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94785,'LVD_bnpc_01','w1fb','bnpc4391948',4391948,-0.874792,-0.090699,1.347854,-0.000000,2321,0,0,0,0,6,0,0,2140,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34874,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94785,'LVD_bnpc_01','w1fb','bnpc4391949',4391949,6.249414,0.068419,2.908603,-0.000000,2322,0,0,0,0,6,0,0,2141,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34608,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94785,'LVD_bnpc_01','w1fb','bnpc4391950',4391950,-3.868140,0.068419,-3.146975,-0.000000,2323,0,0,0,0,6,0,0,2138,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34342,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94785,'LVD_bnpc_01','w1fb','bnpc4391951',4391951,-0.051858,0.068420,-2.855260,-0.000000,2324,0,0,0,0,6,0,0,2324,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34076,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94785,'LVD_bnpc_01','w1fb','bnpc4391952',4391952,3.520819,0.068419,-2.759409,-0.000000,2325,0,0,0,0,6,0,0,2142,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33810,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94785,'LVD_bnpc_01','w1fb','bnpc4391953',4391953,6.664665,0.068419,-2.725165,-0.000000,2326,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33544,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94785,'LVD_bnpc_01','w1fb','bnpc4392988',4392988,9.613314,0.068419,-3.643234,-0.000000,434,0,0,0,0,6,0,0,510,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32912,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (94785,'LVD_bnpc_01','w1fb','bnpc4488654',4488654,4.998253,0.068419,5.179171,-0.000000,2286,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32694,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97382,'LVD_BNPC_real','w1fb','bnpc4553221',4553221,-8.184100,0.068400,-3.643200,-0.000000,434,0,0,0,0,6,0,0,2137,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32252,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97382,'LVD_BNPC_real','w1fb','bnpc4553231',4553231,9.613300,0.068400,-3.643200,0.000000,434,0,0,0,0,6,0,0,510,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31980,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97382,'LVD_BNPC_real','w1fb','bnpc4553232',4553232,4.998300,0.068400,5.179200,0.000000,2286,0,0,0,0,6,0,0,0,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31762,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97382,'LVD_BNPC_real','w1fb','bnpc4553222',4553222,0.000000,-0.130700,-9.630400,-0.000000,2669,0,0,0,0,6,0,0,2137,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31496,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97382,'LVD_BNPC_real','w1fb','bnpc4553223',4553223,-6.297800,-0.062500,2.265400,-0.000000,2670,0,0,0,0,6,0,0,2139,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31230,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97382,'LVD_BNPC_real','w1fb','bnpc4553224',4553224,-0.874800,-0.090700,1.347900,0.000000,2671,0,0,0,0,6,0,0,2140,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30964,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97382,'LVD_BNPC_real','w1fb','bnpc4553225',4553225,6.249400,0.068400,2.908600,0.000000,2672,0,0,0,0,6,0,0,2141,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30698,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97382,'LVD_BNPC_real','w1fb','bnpc4553228',4553228,3.520800,0.068400,-2.759400,0.000000,2675,0,0,0,0,6,0,0,2142,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30432,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97382,'LVD_BNPC_real','w1fb','bnpc4553229',4553229,6.664700,0.068400,-2.725200,0.000000,2676,0,0,0,0,6,0,0,1803,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30166,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97382,'LVD_BNPC_real','w1fb','bnpc4553227',4553227,-0.051900,0.068400,-2.855300,0.000000,2674,0,0,0,0,6,0,0,2324,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29900,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (97382,'LVD_BNPC_real','w1fb','bnpc4553226',4553226,-3.868100,0.068400,-3.147000,0.000000,2673,0,0,0,0,6,0,0,2138,0,0.000000,50,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29634,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270026',4270026,257.715607,-3.952148,96.621063,0.924190,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,11,0,100,1,0,1,0,1,0,0.000000,1.000000,54072,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270028',4270028,265.894501,-4.130882,102.518303,-0.976957,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,11,0,100,1,0,1,0,1,0,0.000000,1.000000,53800,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270040',4270040,282.337585,0.106751,82.505493,-0.925244,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,12,0,100,3,0,1,0,1,0,0.000000,1.000000,53528,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270041',4270041,232.898407,0.106751,85.587769,0.929175,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,12,0,100,3,0,1,0,1,0,0.000000,1.000000,53256,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270042',4270042,233.475998,-0.139376,109.749100,1.503708,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,12,0,100,3,0,1,0,1,0,0.000000,1.000000,52984,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270043',4270043,288.288696,-3.799561,105.363503,-1.507253,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,12,0,100,3,0,1,0,1,0,0.000000,1.000000,52712,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270054',4270054,87.300453,-4.232649,163.166504,0.893605,1617,0,0,0,1,6,0,0,1593,0,0.000000,38,0,120,1,0,13,0,100,2,0,1,0,1,0,0.000000,1.000000,52446,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270055',4270055,87.265152,-4.502538,174.865005,1.281277,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,13,0,100,2,0,1,0,1,0,0.000000,1.000000,52168,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270056',4270056,98.045227,-4.921893,166.423599,-1.069045,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,13,0,100,2,0,1,0,1,0,0.000000,1.000000,51896,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270064',4270064,97.599060,-0.747276,144.439499,-0.000048,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,14,0,100,4,0,1,0,1,0,0.000000,1.000000,51624,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270065',4270065,120.157700,-0.055491,158.451401,-1.099764,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,14,0,100,4,0,1,0,1,0,0.000000,1.000000,51352,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270067',4270067,70.485283,-0.776460,168.820404,1.556139,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,14,0,100,4,0,1,0,1,0,0.000000,1.000000,51080,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270070',4270070,78.373550,0.319204,192.106506,0.713914,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,14,0,100,4,0,1,0,1,0,0.000000,1.000000,50808,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270071',4270071,73.768806,3.288369,145.569305,0.883718,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,14,0,100,4,0,1,0,1,0,0.000000,1.000000,50536,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270080',4270080,12.233560,-1.318931,131.516006,0.048129,1618,0,0,0,1,6,0,0,1799,0,0.000000,38,0,120,1,0,15,0,30,2,0,1,0,1,0,0.000000,1.000000,50276,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270081',4270081,14.938600,-0.228943,121.293800,0.208193,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,15,0,30,2,0,1,0,1,0,0.000000,1.000000,49992,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270083',4270083,14.511290,-1.510742,138.170395,-0.237867,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,15,0,30,2,0,1,0,1,0,0.000000,1.000000,49720,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270110',4270110,-36.413910,-0.027591,143.941406,1.165603,1617,0,0,0,1,6,0,0,1593,0,0.000000,38,0,120,1,0,17,0,30,2,0,1,0,1,0,0.000000,1.000000,49454,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270112',4270112,-45.498619,1.089698,139.967102,1.407688,1618,0,0,0,1,6,0,0,1799,0,0.000000,38,0,120,1,0,17,0,30,2,0,1,0,1,0,0.000000,1.000000,49188,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270114',4270114,-29.136499,-0.597348,139.408905,-1.403949,1618,0,0,0,1,6,0,0,1799,0,0.000000,38,0,120,1,0,17,0,30,2,0,1,0,1,0,0.000000,1.000000,48916,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270138',4270138,-66.242943,-0.581671,108.346397,0.996767,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,18,0,30,3,0,1,0,1,0,0.000000,1.000000,48632,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270139',4270139,-59.451149,-1.358872,115.116096,-1.222099,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,18,0,30,3,0,1,0,1,0,0.000000,1.000000,48360,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270140',4270140,-67.338127,-0.473083,115.464996,0.414181,1616,0,0,0,1,6,0,0,1591,0,0.000000,38,0,120,1,0,18,0,30,3,0,1,0,1,0,0.000000,1.000000,48088,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270030',4270030,248.864395,-2.483665,110.047302,1.009108,1615,0,0,0,1,6,0,0,1592,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47834,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4270024',4270024,269.549011,-2.074284,85.926857,-0.787514,1615,0,0,0,1,6,0,0,1592,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,47562,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86544,'LVD_bnpc_01','w1r1','bnpc4272586',4272586,-75.156616,0.688202,112.473701,-0.000000,1615,0,0,0,1,6,0,0,1592,0,0.000000,38,0,120,1,0,18,0,30,3,0,1,0,1,0,0.000000,1.000000,47290,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270147',4270147,257.697205,-1.351029,-56.777142,-0.000048,1619,0,0,0,1,6,0,0,1596,0,1.400000,38,0,120,1,0,21,0,40,2,0,1,0,1,0,0.000000,1.000000,46868,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270148',4270148,272.532715,-2.792419,-46.895432,-0.000048,1619,0,0,0,1,6,0,0,1596,0,1.400000,38,0,120,1,0,21,0,40,2,0,1,0,1,0,0.000000,1.000000,46596,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270149',4270149,241.800201,-0.531303,-46.594440,-0.000048,1619,0,0,0,1,6,0,0,1596,0,1.400000,38,0,120,1,0,21,0,40,2,0,1,0,1,0,0.000000,1.000000,46324,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270155',4270155,333.341614,-1.645383,-47.092510,0.636755,1620,0,0,0,1,6,0,0,1597,0,0.000000,38,0,120,1,0,22,0,40,2,0,1,0,1,0,0.000000,1.000000,46058,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270156',4270156,330.356293,-2.792419,-63.651680,-0.178619,1620,0,0,0,0,6,0,0,1597,0,0.000000,38,0,120,1,0,22,0,40,2,0,1,0,1,0,0.000000,1.000000,45786,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270157',4270157,346.364502,-1.388611,-55.252991,0.910671,1620,0,0,0,0,6,0,0,1597,0,0.000000,38,0,120,1,0,22,0,40,2,0,1,0,1,0,0.000000,1.000000,45514,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270202',4270202,258.921387,-0.276851,-13.998210,-0.000000,1622,0,0,0,6,6,0,0,1594,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,45248,1,3,2000,0,0,0,4328835,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270205',4270205,317.097687,-1.815857,-35.904541,0.670648,1622,0,0,0,6,6,0,0,1594,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44976,1,3,2000,0,0,0,4328844,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270220',4270220,273.061798,0.376721,-106.383102,-0.000000,1622,0,0,0,6,6,0,0,1594,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,44704,1,3,2000,0,0,0,4328851,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270231',4270231,300.594208,-2.429013,-212.593094,-0.971936,1620,0,0,0,1,6,0,0,1597,0,0.000000,38,0,120,1,0,27,0,30,2,0,1,0,1,0,0.000000,1.000000,44426,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270232',4270232,305.609894,-2.761902,-205.211197,-0.420029,1620,0,0,0,1,6,0,0,1597,0,0.000000,38,0,120,1,0,27,0,30,2,0,1,0,1,0,0.000000,1.000000,44154,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270233',4270233,292.174011,-1.339204,-219.866501,1.383816,1621,0,0,0,1,6,0,0,1595,0,0.000000,38,0,120,1,0,27,0,30,2,0,1,0,1,0,0.000000,1.000000,43894,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270241',4270241,332.585785,-2.737000,-209.891800,0.763072,1620,0,0,0,1,6,0,0,1597,0,0.000000,38,0,120,1,0,29,0,30,2,0,1,0,1,0,0.000000,1.000000,43610,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270242',4270242,344.343506,-2.509510,-207.858704,0.482445,1620,0,0,0,1,6,0,0,1597,0,0.000000,38,0,120,1,0,29,0,30,2,0,1,0,1,0,0.000000,1.000000,43338,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270243',4270243,345.656586,-1.357894,-219.570801,-0.659957,1621,0,0,0,1,6,0,0,1595,0,0.000000,38,0,120,1,0,29,0,30,2,0,1,0,1,0,0.000000,1.000000,43078,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270247',4270247,282.796509,0.037887,-187.224396,-0.000000,1619,0,0,0,1,6,0,0,1596,0,0.000000,38,0,120,1,0,30,0,30,2,0,1,0,1,0,0.000000,1.000000,42788,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270248',4270248,287.793488,-0.605409,-174.587997,-0.000048,1619,0,0,0,1,6,0,0,1596,0,0.000000,38,0,120,1,0,30,0,30,2,0,1,0,1,0,0.000000,1.000000,42516,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270249',4270249,299.803986,-2.761902,-182.871902,-0.000048,1619,0,0,0,1,6,0,0,1596,0,0.000000,38,0,120,1,0,30,0,30,2,0,1,0,1,0,0.000000,1.000000,42244,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270259',4270259,351.179993,-1.465573,-183.953598,-0.000048,1622,0,0,0,6,6,0,0,1594,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41984,1,3,2000,0,0,0,4328862,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4270261',4270261,287.094086,-1.005114,-168.990097,-0.000048,1622,0,0,0,6,6,0,0,1594,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,41712,1,3,2000,0,0,0,4328856,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4328818',4328818,350.201202,-1.189742,-171.039398,-0.843463,1621,0,0,0,1,6,0,0,1595,0,0.000000,38,0,120,1,0,28,0,30,1,0,1,0,1,0,0.000000,1.000000,41446,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86545,'LVD_bnpc_02','w1r1','bnpc4328819',4328819,339.892395,-2.761902,-177.661407,-1.161769,1620,0,0,0,1,6,0,0,1597,0,0.000000,38,0,120,1,0,28,0,30,1,0,1,0,1,0,0.000000,1.000000,41162,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86546,'LVD_bnpc_03','w1r1','bnpc4271523',4271523,-10.360960,-4.538070,-156.817001,-0.000048,1623,0,0,0,1,6,0,0,1599,0,0.000000,38,0,120,1,0,41,0,30,1,0,1,0,1,0,0.000000,1.000000,40772,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86546,'LVD_bnpc_03','w1r1','bnpc4271525',4271525,-13.229610,-3.825844,-148.302399,-0.000048,1623,0,0,0,1,6,0,0,1599,0,0.000000,38,0,120,1,0,41,0,30,1,0,1,0,1,0,0.000000,1.000000,40500,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86546,'LVD_bnpc_03','w1r1','bnpc4271535',4271535,-58.575890,-4.001184,-172.983795,0.370436,1626,0,0,0,0,6,0,0,1601,0,0.000000,38,0,120,1,0,42,0,30,0,0,1,0,1,0,0.000000,1.000000,40234,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86546,'LVD_bnpc_03','w1r1','bnpc4271564',4271564,-91.784653,-3.473932,-201.447495,-0.000000,1624,0,0,0,1,6,0,0,1598,0,0.000000,38,0,120,1,0,43,0,30,2,0,1,0,1,0,0.000000,1.000000,39968,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86546,'LVD_bnpc_03','w1r1','bnpc4271565',4271565,-94.610367,-3.439945,-194.046799,-0.000000,1623,0,0,0,1,6,0,0,1599,0,0.000000,38,0,120,1,0,43,0,30,2,0,1,0,1,0,0.000000,1.000000,39684,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86546,'LVD_bnpc_03','w1r1','bnpc4271566',4271566,-87.747887,-4.673203,-194.719604,-0.000000,1623,0,0,0,1,6,0,0,1599,0,0.000000,38,0,120,1,0,43,0,30,2,0,1,0,1,0,0.000000,1.000000,39412,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86546,'LVD_bnpc_03','w1r1','bnpc4271580',4271580,-55.741268,8.621277,-118.028603,-0.000048,1626,0,0,0,1,6,0,0,1601,0,0.000000,38,0,120,1,0,44,0,30,1,0,1,0,1,0,0.000000,1.000000,39146,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86546,'LVD_bnpc_03','w1r1','bnpc4271582',4271582,-47.524731,8.934116,-113.675499,-0.000048,1625,0,0,0,1,6,0,0,1600,0,0.000000,38,0,120,1,0,44,0,30,1,0,1,0,1,0,0.000000,1.000000,38886,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86546,'LVD_bnpc_03','w1r1','bnpc4271596',4271596,-174.131897,0.742128,-140.585297,-0.180730,1626,0,0,0,1,6,0,0,1601,0,0.000000,38,0,120,1,0,45,0,30,2,0,1,0,1,0,0.000000,1.000000,38602,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86546,'LVD_bnpc_03','w1r1','bnpc4271597',4271597,-161.431198,-0.418736,-145.185394,-0.700439,1625,0,0,0,1,6,0,0,1600,0,0.000000,38,0,120,1,0,45,0,30,2,0,1,0,1,0,0.000000,1.000000,38342,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86546,'LVD_bnpc_03','w1r1','bnpc4271598',4271598,-163.237503,-0.376722,-140.352295,-1.134686,1625,0,0,0,1,6,0,0,1600,0,0.000000,38,0,120,1,0,45,0,30,2,0,1,0,1,0,0.000000,1.000000,38070,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86546,'LVD_bnpc_03','w1r1','bnpc4271649',4271649,-115.944504,-5.231832,-74.447868,-0.000048,1624,0,0,0,1,6,0,0,1598,0,0.000000,38,0,120,1,0,47,0,30,2,0,1,0,1,0,0.000000,1.000000,37792,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86546,'LVD_bnpc_03','w1r1','bnpc4272302',4272302,-211.330597,-4.454144,-87.092644,-0.000000,1623,0,0,0,1,6,0,0,1599,0,0.000000,38,0,120,1,0,48,0,30,2,0,1,0,1,0,0.000000,1.000000,37508,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86546,'LVD_bnpc_03','w1r1','bnpc4272303',4272303,-210.706802,-3.808806,-79.983810,-0.000048,1623,0,0,0,1,6,0,0,1599,0,0.000000,38,0,120,1,0,48,0,30,2,0,1,0,1,0,0.000000,1.000000,37236,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86546,'LVD_bnpc_03','w1r1','bnpc4272304',4272304,-202.643799,-3.757984,-80.168457,-0.000000,1624,0,0,0,1,6,0,0,1598,0,0.000000,38,0,120,1,0,48,0,30,2,0,1,0,1,0,0.000000,1.000000,36976,1,3,2000,0,0,30246,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86546,'LVD_bnpc_03','w1r1','bnpc4271648',4271648,-109.074501,-5.250711,-70.313942,-0.000048,1623,0,0,0,1,6,0,0,1599,0,0.000000,38,0,120,1,0,47,0,30,2,0,1,0,1,0,0.000000,1.000000,36692,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86546,'LVD_bnpc_03','w1r1','bnpc4271646',4271646,-120.333801,-4.030427,-68.317963,-0.000048,1623,0,0,0,1,6,0,0,1599,0,0.000000,38,0,120,1,0,47,0,30,2,0,1,0,1,0,0.000000,1.000000,36420,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86547,'LVD_bnpc_04','w1r1','bnpc4272307',4272307,-17.881680,-9.609415,206.321701,-0.785314,1606,0,0,0,0,6,0,0,1585,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,36060,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86547,'LVD_bnpc_04','w1r1','bnpc4272313',4272313,-25.242439,-12.117350,201.200302,-0.785314,1607,0,0,0,0,6,0,0,1586,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35794,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86547,'LVD_bnpc_04','w1r1','bnpc4272314',4272314,-18.042830,-9.498359,195.305298,-0.785314,1608,0,0,0,0,6,0,0,1587,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35528,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86547,'LVD_bnpc_04','w1r1','bnpc4272315',4272315,-33.656422,-9.992202,199.901306,-0.785314,1609,0,0,0,0,6,0,0,1588,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,35262,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86547,'LVD_bnpc_04','w1r1','bnpc4272317',4272317,-15.254610,-9.348215,204.173798,-0.000000,1565,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34996,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86547,'LVD_bnpc_04','w1r1','bnpc4090078',4090078,-144.507095,-4.900004,153.311005,-0.000000,1334,0,0,0,0,6,0,0,1589,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34730,1,6,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86547,'LVD_bnpc_04','w1r1','bnpc4272319',4272319,-138.488297,-4.900002,153.215897,-0.000000,1610,0,0,0,0,6,0,0,1589,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34464,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86547,'LVD_bnpc_04','w1r1','bnpc4272320',4272320,-150.651199,-4.877595,153.731293,-0.000000,1611,0,0,0,0,6,0,0,1589,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,34198,1,0,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86547,'LVD_bnpc_04','w1r1','bnpc4090098',4090098,-180.913193,-4.928711,-210.636093,-0.000048,1612,0,0,0,0,6,0,0,1590,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33932,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86547,'LVD_bnpc_04','w1r1','bnpc4272333',4272333,-174.312393,-4.832601,-209.756500,-0.000000,1613,0,0,0,0,6,0,0,1848,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33666,1,2,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4301642',4301642,95.880836,-4.900007,169.887497,-0.000000,1629,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,33052,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4313489',4313489,6.373053,-1.590077,140.234894,-0.000000,1629,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32780,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4313491',4313491,-49.128590,2.960764,143.775406,-0.000000,1629,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32508,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4313494',4313494,-51.850460,-1.708716,120.540802,-0.000000,1629,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,32236,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4313498',4313498,2.969836,-0.617786,113.133499,-0.000000,1629,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31964,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4301643',4301643,262.439911,-4.013123,101.060402,-0.000048,1565,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31656,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4313479',4313479,96.944160,-4.811168,175.721893,-0.000000,1565,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31384,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4313486',4313486,-5.922855,0.340397,113.326599,-0.000048,1565,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,31112,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4317182',4317182,268.610687,-4.089732,104.917397,-0.000000,1630,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30666,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4317184',4317184,250.254807,-3.751575,99.675140,-0.000000,1630,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30394,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4317185',4317185,268.589386,-2.608964,88.017647,-0.000000,1630,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,30122,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4317190',4317190,116.819603,-0.613962,179.620300,-0.000000,1630,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29850,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4317194',4317194,119.166603,0.307967,155.483704,-0.000000,1630,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29578,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4317195',4317195,105.129799,-0.534215,147.850800,-0.000000,1630,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29306,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4317196',4317196,72.064873,0.259763,157.992203,-0.000000,1630,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,29034,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4317197',4317197,73.898628,0.574642,187.497803,-0.000000,1630,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28762,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4317199',4317199,103.312500,-0.406301,194.717194,-0.000000,1630,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28490,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4317201',4317201,15.180990,-0.706052,126.443100,-0.000000,1630,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,28218,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4317202',4317202,-11.408720,-1.184632,148.053894,-0.000000,1630,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27946,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4317223',4317223,-24.331551,-1.221598,145.870697,-0.000000,1630,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27674,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4317224',4317224,-46.669270,0.651814,135.550003,-0.000000,1630,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27402,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93599,'LVD_bnpc_05','w1r1','bnpc4317231',4317231,-92.665848,4.399469,112.625504,-0.000000,1630,0,0,0,0,6,0,0,1805,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,27130,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93652,'LVD_gimmick_02','w1r1','bnpc4271546',4271546,-53.977600,-4.084390,-182.914703,-0.000000,1628,0,0,0,0,6,0,0,1806,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,8308,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93652,'LVD_gimmick_02','w1r1','bnpc4271567',4271567,-56.138771,5.870819,-136.781906,-0.000000,1628,0,0,0,0,6,0,0,1806,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,8036,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93652,'LVD_gimmick_02','w1r1','bnpc4271630',4271630,-78.954369,0.340690,-82.838783,-0.000000,1628,0,0,0,0,6,0,0,1806,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,7764,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93652,'LVD_gimmick_02','w1r1','bnpc4271635',4271635,-164.458099,-3.285083,-95.380966,-0.000000,1628,0,0,0,0,6,0,0,1806,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,7492,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (93652,'LVD_gimmick_02','w1r1','bnpc4271644',4271644,-166.639999,-5.682338,-114.675301,-0.000048,1628,0,0,0,0,6,0,0,1806,0,0.000000,38,0,120,1,0,0,0,0,0,0,1,0,0,0,0.000000,1.000000,7220,1,3,2000,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993218',3993218,13.247370,7.980413,-103.141197,0.979610,630,0,0,0,0,6,0,0,925,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71940,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993219',3993219,12.942610,7.980422,-97.627670,1.484571,630,0,0,0,0,6,0,0,925,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71668,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993220',3993220,12.634570,7.980420,-100.653900,1.140555,630,0,0,0,0,6,0,0,925,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71396,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993221',3993221,14.062690,7.980480,-105.659500,0.700115,630,0,0,0,0,6,0,0,925,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71124,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993222',3993222,15.556120,7.999940,-107.600800,0.706095,630,0,0,0,0,6,0,0,925,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70852,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993250',3993250,39.733189,7.999941,-95.638702,-1.130590,631,0,0,0,0,6,0,0,943,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70586,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993251',3993251,38.761551,7.999976,-92.514839,-0.665495,631,0,0,0,0,6,0,0,943,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70314,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993254',3993254,27.351110,7.199999,-102.309402,-0.217944,629,0,0,0,8,6,0,0,690,0,0.000000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70048,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993388',3993388,25.184971,7.999986,-112.766800,-0.000000,630,0,0,0,0,6,0,0,925,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69452,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993389',3993389,27.401030,7.999954,-112.738800,-0.000000,630,0,0,0,0,6,0,0,925,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69180,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993390',3993390,29.559820,7.999986,-112.675797,-0.000000,630,0,0,0,0,6,0,0,925,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68908,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993391',3993391,31.780640,7.999983,-111.749199,-0.132520,630,0,0,0,0,6,0,0,925,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68636,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993392',3993392,33.609921,7.999928,-109.801598,-0.554381,630,0,0,0,0,6,0,0,925,0,0.000000,20,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68364,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993399',3993399,40.608910,7.999941,-95.815826,-0.000000,632,0,0,0,0,6,0,0,925,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68110,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993528',3993528,39.950001,8.000000,-95.000000,0.349066,632,0,0,0,0,6,0,0,925,0,0.000000,14,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67838,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993614',3993614,33.810001,8.000000,-110.000000,-0.541052,669,0,0,0,0,6,0,0,925,0,0.000000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67512,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993615',3993615,30.209999,8.000000,-111.000000,-2.617994,669,0,0,0,0,6,0,0,925,0,0.000000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67240,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993616',3993616,27.000000,8.000000,-112.000000,-0.157080,669,0,0,0,0,6,0,0,925,0,0.000000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66968,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993617',3993617,24.580000,8.000000,-112.000000,-1.675516,669,0,0,0,0,6,0,0,925,0,0.000000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66696,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993618',3993618,36.939999,8.000000,-106.000000,0.453786,669,0,0,0,0,6,0,0,925,0,0.000000,17,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66424,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993529',3993529,6.630645,7.980469,-103.166298,1.500976,670,0,0,0,0,6,0,0,925,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66158,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85222,'QB_CLSGLA150_001','w1t1','bnpc3993544',3993544,7.097980,7.999997,-105.000000,1.047197,670,0,0,0,0,6,0,0,925,0,0.000000,15,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65886,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85676,'QB_CLSPGL_200','w1t1','bnpc4074121',4074121,-69.091408,0.900203,-53.976311,-0.000048,695,0,0,0,0,6,0,0,751,0,0.010000,1,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64060,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85676,'QB_CLSPGL_200','w1t1','bnpc4074122',4074122,-69.091408,0.900203,-53.976311,-0.000048,696,0,0,0,0,6,0,0,751,0,0.010000,4,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63794,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85676,'QB_CLSPGL_200','w1t1','bnpc4074123',4074123,-69.091408,0.900203,-53.976311,-0.000048,697,0,0,0,0,6,0,0,751,0,0.010000,8,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63528,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082369',4082369,-29.209150,3.982562,-144.472702,1.366549,703,0,0,0,8,6,0,0,823,0,0.010000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60826,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082370',4082370,-29.239660,3.982555,-143.476395,1.366549,704,0,0,0,8,6,0,0,828,0,0.010000,40,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60560,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082371',4082371,-29.221010,3.982544,-145.586395,1.366606,705,0,0,0,8,6,0,0,751,0,0.010000,50,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60294,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082372',4082372,-22.903870,3.952026,-145.922104,-1.290433,706,0,0,0,0,6,0,0,907,0,0.010000,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60028,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082379',4082379,-63.809959,3.982544,-135.182907,1.304910,707,0,0,0,0,6,0,0,756,0,0.010000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59762,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082380',4082380,-63.157101,3.982544,-131.578598,0.661539,708,0,0,0,0,6,0,0,932,0,0.010000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59496,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082392',4082392,-23.727840,3.982544,-144.060501,-1.498722,710,0,0,0,0,6,0,0,932,0,0.010000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59230,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082393',4082393,-24.155090,3.982544,-142.412506,-1.498750,710,0,0,0,0,6,0,0,932,0,0.010000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58958,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082394',4082394,-24.643370,3.982544,-140.733994,-1.498750,710,0,0,0,0,6,0,0,932,0,0.010000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58686,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082399',4082399,-8.957031,3.982544,-145.037003,-1.324708,710,0,0,0,0,6,0,0,932,0,0.010000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58414,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082400',4082400,-9.231750,3.982544,-143.694199,-1.324708,710,0,0,0,0,6,0,0,932,0,0.010000,31,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58142,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082401',4082401,-9.720032,3.982544,-141.893707,-1.324708,711,0,0,0,0,6,0,0,757,0,0.010000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57876,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082402',4082402,-23.208981,5.996765,-125.597000,0.703628,709,0,0,0,0,6,0,0,1306,0,0.010000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57610,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082403',4082403,-25.040100,5.996765,-123.552399,0.703628,709,0,0,0,0,6,0,0,1306,0,0.010000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57338,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082404',4082404,-26.901670,5.996765,-124.956200,0.912732,712,0,0,0,0,6,0,0,1307,0,0.010000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57072,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082383',4082383,-24.840891,3.982564,-147.088196,-1.472819,709,0,0,0,0,6,0,0,1306,0,0.010000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56794,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082384',4082384,-25.467350,3.952026,-148.851807,-1.472643,709,0,0,0,0,6,0,0,1306,0,0.010000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56522,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4082385',4082385,-26.474489,3.952026,-150.438797,-1.472643,709,0,0,0,0,6,0,0,1306,0,0.010000,28,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56250,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4163992',4163992,-64.805107,3.982544,-132.432999,1.552232,707,0,0,0,0,6,0,0,756,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55954,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (85677,'QB_CLSPGL_300_02','w1t1','bnpc4163993',4163993,-65.232361,3.982544,-133.562302,1.306961,708,0,0,0,0,6,0,0,932,0,0.000000,30,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55688,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86766,'QB_ManFst205_001','w1t1','bnpc4094987',4094987,39.387630,4.000000,-148.223007,-0.000000,960,0,0,0,0,6,0,0,991,0,0.010000,11,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52630,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86766,'QB_ManFst205_001','w1t1','bnpc4094990',4094990,37.365700,3.982500,-153.063293,-0.206254,961,0,0,0,0,6,0,0,989,0,0.010000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52364,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (86766,'QB_ManFst205_001','w1t1','bnpc4094992',4094992,43.368301,3.982500,-151.289505,-0.219852,962,0,0,0,0,6,0,0,990,0,0.010000,10,0,120,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52098,1,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503028',4503028,196.000000,2.000000,-245.000000,3.141593,2,0,0,0,2,6,0,0,2,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,627036,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503029',4503029,188.000000,2.000000,-245.000000,3.141593,3,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,626770,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503030',4503030,180.000000,2.000000,-245.000000,3.141593,4,0,0,0,2,6,0,0,4,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,626504,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503031',4503031,172.000000,2.000000,-245.000000,3.141593,5,0,0,0,2,6,0,0,408,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,626238,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503032',4503032,164.000000,2.000000,-245.000000,3.141593,6,0,0,0,2,6,0,0,2020,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,625972,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503033',4503033,156.000000,2.000000,-245.000000,3.141593,7,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,625706,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503034',4503034,148.000000,2.000000,-245.000000,3.141593,8,0,0,0,2,6,0,0,8,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,625440,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503035',4503035,140.000000,2.000000,-245.000000,3.141593,9,0,0,0,2,6,0,0,571,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,625174,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503036',4503036,132.000000,2.000000,-245.000000,3.141593,10,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,624908,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503037',4503037,124.000000,2.000000,-245.000000,3.141593,11,0,0,0,2,6,0,0,2033,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,624642,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503038',4503038,116.000000,2.000000,-245.000000,3.141593,12,0,0,0,2,6,0,0,301,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,624376,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503039',4503039,108.000000,2.000000,-245.000000,3.141593,13,0,0,0,2,6,0,0,398,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,624110,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503040',4503040,100.000000,2.000000,-245.000000,3.141593,14,0,0,0,2,6,0,0,1,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,623844,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503041',4503041,92.000000,2.000000,-245.000000,3.141593,15,0,0,0,2,6,0,0,1,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,623578,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503042',4503042,84.000000,2.000000,-245.000000,3.141593,16,0,0,0,2,6,0,0,15,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,623312,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503043',4503043,76.000000,2.000000,-245.000000,3.141593,17,0,0,0,2,6,0,0,1,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,623046,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503044',4503044,68.000000,2.000000,-245.000000,3.141593,20,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,622780,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503045',4503045,60.000000,2.000000,-245.000000,3.141593,21,0,0,0,2,6,0,0,2039,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,622514,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503046',4503046,52.000000,2.000000,-245.000000,3.141593,22,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,622248,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503047',4503047,44.000000,2.000000,-245.000000,3.141593,23,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,621982,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503048',4503048,34.000000,2.000000,-245.000000,3.141593,24,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,621716,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503049',4503049,22.000000,2.000000,-245.000000,3.141593,25,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,621450,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503050',4503050,10.000000,2.000000,-245.000000,3.141593,26,0,0,0,2,6,0,0,216,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,621184,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503051',4503051,-2.000000,2.000000,-245.000000,3.141593,27,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,620918,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503052',4503052,-14.000000,2.000000,-245.000000,3.141593,28,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,620652,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503053',4503053,-24.000000,2.000000,-245.000000,3.141593,29,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,620386,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503054',4503054,-32.000000,2.000000,-245.000000,3.141593,30,0,0,0,2,6,0,0,2188,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,620120,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503055',4503055,-40.000000,2.000000,-245.000000,3.141593,31,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,619854,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503056',4503056,-48.000000,2.000000,-245.000000,3.141593,32,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,619588,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503057',4503057,-56.000000,2.000000,-245.000000,3.141593,33,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,619322,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503058',4503058,-66.000000,2.000000,-245.000000,3.141593,34,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,619056,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503059',4503059,-76.000000,2.000000,-245.000000,3.141593,35,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,618790,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503060',4503060,-84.000000,2.000000,-245.000000,3.141593,36,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,618524,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503061',4503061,-92.000000,2.000000,-245.000000,3.141593,37,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,618258,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503062',4503062,-100.000000,2.000000,-245.000000,3.141593,38,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,617992,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503063',4503063,-108.000000,2.000000,-245.000000,3.141593,39,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,617726,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503064',4503064,-116.000000,2.000000,-245.000000,3.141593,40,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,617460,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503065',4503065,-124.000000,2.000000,-245.000000,3.141593,41,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,617194,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503066',4503066,-132.000000,2.000000,-245.000000,3.141593,42,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,616928,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503067',4503067,-140.000000,2.000000,-245.000000,3.141593,43,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,616662,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503068',4503068,-148.000000,2.000000,-245.000000,3.141593,44,0,0,0,2,6,0,0,587,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,616396,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503069',4503069,-156.000000,2.000000,-245.000000,3.141593,45,0,0,0,2,6,0,0,2918,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,616130,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503070',4503070,-164.000000,2.000000,-245.000000,3.141593,46,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,615864,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503071',4503071,-172.000000,2.000000,-245.000000,3.141593,47,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,615598,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503072',4503072,-180.000000,2.000000,-245.000000,3.141593,48,0,0,0,2,6,0,0,166,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,615332,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503073',4503073,-188.000000,2.000000,-245.000000,3.141593,49,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,615066,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503074',4503074,196.000000,2.000000,-233.000000,3.141593,50,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,614800,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503075',4503075,188.000000,2.000000,-233.000000,3.141593,51,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,614534,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503076',4503076,180.000000,2.000000,-233.000000,3.141593,52,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,614268,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503077',4503077,172.000000,2.000000,-233.000000,3.141593,53,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,614002,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503078',4503078,164.000000,2.000000,-233.000000,3.141593,57,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,613736,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503079',4503079,156.000000,2.000000,-233.000000,3.141593,58,0,0,0,2,6,0,0,2032,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,613470,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503080',4503080,148.000000,2.000000,-233.000000,3.141593,59,0,0,0,2,6,0,0,56,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,613204,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503081',4503081,140.000000,2.000000,-233.000000,3.141593,65,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,612938,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503082',4503082,132.000000,2.000000,-233.000000,3.141593,66,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,612672,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503083',4503083,124.000000,2.000000,-233.000000,3.141593,67,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,612406,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503084',4503084,116.000000,2.000000,-233.000000,3.141593,68,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,612140,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503085',4503085,108.000000,2.000000,-233.000000,3.141593,69,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,611874,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503086',4503086,100.000000,2.000000,-233.000000,3.141593,70,0,0,0,2,6,0,0,538,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,611608,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503087',4503087,92.000000,2.000000,-233.000000,3.141593,71,0,0,0,2,6,0,0,2320,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,611342,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503088',4503088,84.000000,2.000000,-233.000000,3.141593,72,0,0,0,2,6,0,0,2877,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,611076,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503089',4503089,76.000000,2.000000,-233.000000,3.141593,73,0,0,0,2,6,0,0,70,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,610810,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503090',4503090,68.000000,2.000000,-233.000000,3.141593,74,0,0,0,2,6,0,0,71,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,610544,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503091',4503091,60.000000,2.000000,-233.000000,3.141593,75,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,610278,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503092',4503092,52.000000,2.000000,-233.000000,3.141593,76,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,610012,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503093',4503093,42.000000,2.000000,-233.000000,3.141593,77,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,609746,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503094',4503094,32.000000,2.000000,-233.000000,3.141593,78,0,0,0,2,6,0,0,75,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,609480,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503095',4503095,24.000000,2.000000,-233.000000,3.141593,94,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,609214,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503096',4503096,16.000000,2.000000,-233.000000,3.141593,95,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,608948,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503097',4503097,8.000000,2.000000,-233.000000,3.141593,96,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,608682,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503098',4503098,-0.000000,2.000000,-233.000000,3.141593,97,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,608416,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503099',4503099,-8.000000,2.000000,-233.000000,3.141593,98,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,608150,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503100',4503100,-16.000000,2.000000,-233.000000,3.141593,99,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,607884,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503101',4503101,-24.000000,2.000000,-233.000000,3.141593,100,0,0,0,2,6,0,0,576,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,607618,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503102',4503102,-32.000000,2.000000,-233.000000,3.141593,101,0,0,0,2,6,0,0,317,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,607352,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503103',4503103,-40.000000,2.000000,-233.000000,3.141593,102,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,607086,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503104',4503104,-48.000000,2.000000,-233.000000,3.141593,103,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,606820,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503105',4503105,-58.000000,2.000000,-233.000000,3.141593,104,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,606554,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503106',4503106,-68.000000,2.000000,-233.000000,3.141593,105,0,0,0,2,6,0,0,1,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,606288,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503107',4503107,-76.000000,2.000000,-233.000000,3.141593,106,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,606022,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503108',4503108,-84.000000,2.000000,-233.000000,3.141593,107,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,605756,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503109',4503109,-92.000000,2.000000,-233.000000,3.141593,108,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,605490,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503110',4503110,-100.000000,2.000000,-233.000000,3.141593,109,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,605224,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503111',4503111,-108.000000,2.000000,-233.000000,3.141593,110,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,604958,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503112',4503112,-116.000000,2.000000,-233.000000,3.141593,111,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,604692,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503113',4503113,-126.000000,2.000000,-233.000000,3.141593,112,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,604426,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503114',4503114,-136.000000,2.000000,-233.000000,3.141593,113,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,604160,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503115',4503115,-144.000000,2.000000,-233.000000,3.141593,114,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,603894,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503116',4503116,-152.000000,2.000000,-233.000000,3.141593,115,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,603628,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503117',4503117,-160.000000,2.000000,-233.000000,3.141593,116,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,603362,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503118',4503118,-170.000000,2.000000,-233.000000,3.141593,117,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,603096,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503119',4503119,-180.000000,2.000000,-233.000000,3.141593,118,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,602830,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503120',4503120,-188.000000,2.000000,-233.000000,3.141593,119,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,602564,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503121',4503121,196.000000,2.000000,-221.000000,3.141593,120,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,602298,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503122',4503122,188.000000,2.000000,-221.000000,3.141593,121,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,602032,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503123',4503123,178.000000,2.000000,-221.000000,3.141593,122,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,601766,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503124',4503124,166.000000,2.000000,-221.000000,3.141593,123,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,601500,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503125',4503125,154.000000,2.000000,-221.000000,3.141593,124,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,601234,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503126',4503126,144.000000,2.000000,-221.000000,3.141593,125,0,0,0,2,6,0,0,456,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,600968,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503127',4503127,136.000000,2.000000,-221.000000,3.141593,126,0,0,0,2,6,0,0,110,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,600702,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503128',4503128,128.000000,2.000000,-221.000000,3.141593,127,0,0,0,2,6,0,0,111,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,600436,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503129',4503129,120.000000,2.000000,-221.000000,3.141593,128,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,600170,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503130',4503130,112.000000,2.000000,-221.000000,3.141593,129,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,599904,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503131',4503131,104.000000,2.000000,-221.000000,3.141593,130,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,599638,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503132',4503132,96.000000,2.000000,-221.000000,3.141593,131,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,599372,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503133',4503133,88.000000,2.000000,-221.000000,3.141593,132,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,599106,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503134',4503134,80.000000,2.000000,-221.000000,3.141593,133,0,0,0,2,6,0,0,115,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,598840,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503135',4503135,72.000000,2.000000,-221.000000,3.141593,134,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,598574,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503136',4503136,64.000000,2.000000,-221.000000,3.141593,135,0,0,0,2,6,0,0,2190,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,598308,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503137',4503137,56.000000,2.000000,-221.000000,3.141593,136,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,598042,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503138',4503138,48.000000,2.000000,-221.000000,3.141593,138,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,597776,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503139',4503139,38.000000,2.000000,-221.000000,3.141593,139,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,597510,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503140',4503140,26.000000,2.000000,-221.000000,3.141593,140,0,0,0,2,6,0,0,2871,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,597244,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503141',4503141,16.000000,2.000000,-221.000000,3.141593,141,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,596978,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503142',4503142,8.000000,2.000000,-221.000000,3.141593,142,0,0,0,2,6,0,0,605,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,596712,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503143',4503143,-0.000000,2.000000,-221.000000,3.141593,143,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,596446,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503144',4503144,-8.000000,2.000000,-221.000000,3.141593,149,0,0,0,2,6,0,0,123,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,596180,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503145',4503145,-16.000000,2.000000,-221.000000,3.141593,150,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,595914,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503146',4503146,-24.000000,2.000000,-221.000000,3.141593,151,0,0,0,2,6,0,0,125,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,595648,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503147',4503147,-32.000000,2.000000,-221.000000,3.141593,156,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,595382,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503148',4503148,-40.000000,2.000000,-221.000000,3.141593,157,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,595116,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503149',4503149,-48.000000,2.000000,-221.000000,3.141593,159,0,0,0,2,6,0,0,381,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,594850,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503150',4503150,-56.000000,2.000000,-221.000000,3.141593,160,0,0,0,2,6,0,0,289,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,594584,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503151',4503151,-66.000000,2.000000,-221.000000,3.141593,161,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,594318,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503152',4503152,-76.000000,2.000000,-221.000000,3.141593,162,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,594052,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503153',4503153,-84.000000,2.000000,-221.000000,3.141593,163,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,593786,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503154',4503154,-92.000000,2.000000,-221.000000,3.141593,164,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,593520,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503155',4503155,-100.000000,2.000000,-221.000000,3.141593,166,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,593254,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503156',4503156,-108.000000,2.000000,-221.000000,3.141593,167,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,592988,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503157',4503157,-116.000000,2.000000,-221.000000,3.141593,168,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,592722,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503158',4503158,-124.000000,2.000000,-221.000000,3.141593,169,0,0,0,2,6,0,0,1725,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,592456,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503159',4503159,-132.000000,2.000000,-221.000000,3.141593,170,0,0,0,2,6,0,0,1244,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,592190,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503160',4503160,-140.000000,2.000000,-221.000000,3.141593,171,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,591924,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503161',4503161,-148.000000,2.000000,-221.000000,3.141593,172,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,591658,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503162',4503162,-156.000000,2.000000,-221.000000,3.141593,173,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,591392,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503163',4503163,-164.000000,2.000000,-221.000000,3.141593,174,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,591126,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503164',4503164,-172.000000,2.000000,-221.000000,3.141593,175,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,590860,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503165',4503165,-180.000000,2.000000,-221.000000,3.141593,176,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,590594,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503166',4503166,-188.000000,2.000000,-221.000000,3.141593,177,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,590328,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503167',4503167,196.000000,2.000000,-209.000000,3.141593,178,0,0,0,2,6,0,0,1465,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,590062,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503168',4503168,188.000000,2.000000,-209.000000,3.141593,179,0,0,0,2,6,0,0,1316,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,589796,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503169',4503169,180.000000,2.000000,-209.000000,3.141593,180,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,589530,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503170',4503170,172.000000,2.000000,-209.000000,3.141593,181,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,589264,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503171',4503171,164.000000,2.000000,-209.000000,3.141593,182,0,0,0,2,6,0,0,2040,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,588998,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503172',4503172,156.000000,2.000000,-209.000000,3.141593,183,0,0,0,2,6,0,0,242,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,588732,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503173',4503173,148.000000,2.000000,-209.000000,3.141593,184,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,588466,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503174',4503174,140.000000,2.000000,-209.000000,3.141593,185,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,588200,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503175',4503175,132.000000,2.000000,-209.000000,3.141593,186,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,587934,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503176',4503176,124.000000,2.000000,-209.000000,3.141593,187,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,587668,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503177',4503177,116.000000,2.000000,-209.000000,3.141593,188,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,587402,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503178',4503178,108.000000,2.000000,-209.000000,3.141593,189,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,587136,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503179',4503179,98.000000,2.000000,-209.000000,3.141593,190,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,586870,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503180',4503180,86.000000,2.000000,-209.000000,3.141593,191,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,586604,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503181',4503181,74.000000,2.000000,-209.000000,3.141593,192,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,586338,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503182',4503182,64.000000,2.000000,-209.000000,3.141593,193,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,586072,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503183',4503183,56.000000,2.000000,-209.000000,3.141593,194,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,585806,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503184',4503184,48.000000,2.000000,-209.000000,3.141593,195,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,585540,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503185',4503185,40.000000,2.000000,-209.000000,3.141593,196,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,585274,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503186',4503186,32.000000,2.000000,-209.000000,3.141593,197,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,585008,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503187',4503187,24.000000,2.000000,-209.000000,3.141593,198,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,584742,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503188',4503188,16.000000,2.000000,-209.000000,3.141593,199,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,584476,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503189',4503189,6.000000,2.000000,-209.000000,3.141593,200,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,584210,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503190',4503190,-6.000000,2.000000,-209.000000,3.141593,201,0,0,0,2,6,0,0,1820,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,583944,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503191',4503191,-18.000000,2.000000,-209.000000,3.141593,202,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,583678,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503192',4503192,-28.000000,2.000000,-209.000000,3.141593,203,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,583412,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503193',4503193,-36.000000,2.000000,-209.000000,3.141593,204,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,583146,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503194',4503194,-44.000000,2.000000,-209.000000,3.141593,205,0,0,0,2,6,0,0,2866,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,582880,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503195',4503195,-52.000000,2.000000,-209.000000,3.141593,206,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,582614,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503196',4503196,-62.000000,2.000000,-209.000000,3.141593,207,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,582348,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503197',4503197,-72.000000,2.000000,-209.000000,3.141593,208,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,582082,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503198',4503198,-82.000000,2.000000,-209.000000,3.141593,209,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,581816,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503199',4503199,-92.000000,2.000000,-209.000000,3.141593,210,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,581550,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503200',4503200,-102.000000,2.000000,-209.000000,3.141593,211,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,581284,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503201',4503201,-112.000000,2.000000,-209.000000,3.141593,212,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,581018,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503202',4503202,-120.000000,2.000000,-209.000000,3.141593,213,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,580752,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503203',4503203,-128.000000,2.000000,-209.000000,3.141593,214,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,580486,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503204',4503204,-136.000000,2.000000,-209.000000,3.141593,215,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,580220,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503205',4503205,-144.000000,2.000000,-209.000000,3.141593,216,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,579954,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503206',4503206,-152.000000,2.000000,-209.000000,3.141593,217,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,579688,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503207',4503207,-160.000000,2.000000,-209.000000,3.141593,218,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,579422,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503208',4503208,-168.000000,2.000000,-209.000000,3.141593,219,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,579156,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503209',4503209,-176.000000,2.000000,-209.000000,3.141593,220,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,578890,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503210',4503210,-184.000000,2.000000,-209.000000,3.141593,221,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,578624,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503211',4503211,-192.000000,2.000000,-209.000000,3.141593,222,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,578358,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503212',4503212,196.000000,2.000000,-197.000000,3.141593,223,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,578092,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503213',4503213,188.000000,2.000000,-197.000000,3.141593,224,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,577826,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503214',4503214,180.000000,2.000000,-197.000000,3.141593,225,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,577560,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503215',4503215,172.000000,2.000000,-197.000000,3.141593,226,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,577294,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503216',4503216,164.000000,2.000000,-197.000000,3.141593,227,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,577028,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503217',4503217,154.000000,2.000000,-197.000000,3.141593,228,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,576762,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503218',4503218,144.000000,2.000000,-197.000000,3.141593,229,0,0,0,2,6,0,0,718,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,576496,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503219',4503219,136.000000,2.000000,-197.000000,3.141593,230,0,0,0,2,6,0,0,719,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,576230,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503220',4503220,128.000000,2.000000,-197.000000,3.141593,231,0,0,0,2,6,0,0,720,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,575964,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503221',4503221,120.000000,2.000000,-197.000000,3.141593,232,0,0,0,2,6,0,0,721,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,575698,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503222',4503222,112.000000,2.000000,-197.000000,3.141593,233,0,0,0,2,6,0,0,722,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,575432,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503223',4503223,104.000000,2.000000,-197.000000,3.141593,234,0,0,0,2,6,0,0,723,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,575166,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503224',4503224,96.000000,2.000000,-197.000000,3.141593,235,0,0,0,2,6,0,0,724,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,574900,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503225',4503225,86.000000,2.000000,-197.000000,3.141593,236,0,0,0,2,6,0,0,2752,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,574634,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503226',4503226,76.000000,2.000000,-197.000000,3.141593,237,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,574368,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503227',4503227,68.000000,2.000000,-197.000000,3.141593,238,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,574102,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503228',4503228,60.000000,2.000000,-197.000000,3.141593,239,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,573836,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503229',4503229,52.000000,2.000000,-197.000000,3.141593,240,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,573570,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503230',4503230,44.000000,2.000000,-197.000000,3.141593,241,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,573304,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503231',4503231,36.000000,2.000000,-197.000000,3.141593,242,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,573038,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503232',4503232,28.000000,2.000000,-197.000000,3.141593,243,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,572772,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503233',4503233,20.000000,2.000000,-197.000000,3.141593,244,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,572506,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503234',4503234,12.000000,2.000000,-197.000000,3.141593,245,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,572240,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503235',4503235,2.000000,2.000000,-197.000000,3.141593,246,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,571974,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503236',4503236,-10.000000,2.000000,-197.000000,3.141593,247,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,571708,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503237',4503237,-22.000000,2.000000,-197.000000,3.141593,248,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,571442,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503238',4503238,-32.000000,2.000000,-197.000000,3.141593,251,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,571176,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503239',4503239,-40.000000,2.000000,-197.000000,3.141593,253,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,570910,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503240',4503240,-48.000000,2.000000,-197.000000,3.141593,254,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,570644,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503241',4503241,-56.000000,2.000000,-197.000000,3.141593,255,0,0,0,2,6,0,0,422,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,570378,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503242',4503242,-64.000000,2.000000,-197.000000,3.141593,256,0,0,0,2,6,0,0,424,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,570112,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503243',4503243,-72.000000,2.000000,-197.000000,3.141593,257,0,0,0,2,6,0,0,425,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,569846,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503244',4503244,-80.000000,2.000000,-197.000000,3.141593,258,0,0,0,2,6,0,0,428,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,569580,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503245',4503245,-90.000000,2.000000,-197.000000,3.141593,259,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,569314,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503246',4503246,-100.000000,2.000000,-197.000000,3.141593,260,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,569048,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503247',4503247,-108.000000,2.000000,-197.000000,3.141593,261,0,0,0,2,6,0,0,437,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,568782,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503248',4503248,-118.000000,2.000000,-197.000000,3.141593,262,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,568516,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503249',4503249,-128.000000,2.000000,-197.000000,3.141593,263,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,568250,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503250',4503250,-136.000000,2.000000,-197.000000,3.141593,264,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,567984,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503251',4503251,-144.000000,2.000000,-197.000000,3.141593,265,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,567718,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503252',4503252,-154.000000,2.000000,-197.000000,3.141593,266,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,567452,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503253',4503253,-164.000000,2.000000,-197.000000,3.141593,267,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,567186,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503254',4503254,-172.000000,2.000000,-197.000000,3.141593,268,0,0,0,2,6,0,0,430,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,566920,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503255',4503255,-180.000000,2.000000,-197.000000,3.141593,269,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,566654,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503256',4503256,-188.000000,2.000000,-197.000000,3.141593,270,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,566388,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503257',4503257,196.000000,2.000000,-185.000000,3.141593,271,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,566122,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503258',4503258,188.000000,2.000000,-185.000000,3.141593,272,0,0,0,2,6,0,0,423,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,565856,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503259',4503259,180.000000,2.000000,-185.000000,3.141593,273,0,0,0,2,6,0,0,426,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,565590,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503260',4503260,172.000000,2.000000,-185.000000,3.141593,274,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,565324,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503261',4503261,164.000000,2.000000,-185.000000,3.141593,275,0,0,0,2,6,0,0,428,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,565058,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503262',4503262,156.000000,2.000000,-185.000000,3.141593,276,0,0,0,2,6,0,0,633,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,564792,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503263',4503263,148.000000,2.000000,-185.000000,3.141593,277,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,564526,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503264',4503264,140.000000,2.000000,-185.000000,3.141593,278,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,564260,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503265',4503265,132.000000,2.000000,-185.000000,3.141593,279,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,563994,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503266',4503266,124.000000,2.000000,-185.000000,3.141593,280,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,563728,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503267',4503267,114.000000,2.000000,-185.000000,3.141593,281,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,563462,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503268',4503268,104.000000,2.000000,-185.000000,3.141593,282,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,563196,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503269',4503269,96.000000,2.000000,-185.000000,3.141593,283,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,562930,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503270',4503270,88.000000,2.000000,-185.000000,3.141593,284,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,562664,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503271',4503271,80.000000,2.000000,-185.000000,3.141593,285,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,562398,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503272',4503272,72.000000,2.000000,-185.000000,3.141593,286,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,562132,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503273',4503273,62.000000,2.000000,-185.000000,3.141593,287,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,561866,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503274',4503274,52.000000,2.000000,-185.000000,3.141593,288,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,561600,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503275',4503275,44.000000,2.000000,-185.000000,3.141593,289,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,561334,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503276',4503276,36.000000,2.000000,-185.000000,3.141593,290,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,561068,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503277',4503277,28.000000,2.000000,-185.000000,3.141593,291,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,560802,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503278',4503278,20.000000,2.000000,-185.000000,3.141593,292,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,560536,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503279',4503279,12.000000,2.000000,-185.000000,3.141593,293,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,560270,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503280',4503280,4.000000,2.000000,-185.000000,3.141593,294,0,0,0,2,6,0,0,134,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,560004,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503281',4503281,-4.000000,2.000000,-185.000000,3.141593,295,0,0,0,2,6,0,0,553,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,559738,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503282',4503282,-12.000000,2.000000,-185.000000,3.141593,296,0,0,0,2,6,0,0,135,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,559472,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503283',4503283,-20.000000,2.000000,-185.000000,3.141593,297,0,0,0,2,6,0,0,136,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,559206,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503284',4503284,-28.000000,2.000000,-185.000000,3.141593,298,0,0,0,2,6,0,0,142,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,558940,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503285',4503285,-36.000000,2.000000,-185.000000,3.141593,299,0,0,0,2,6,0,0,135,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,558674,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503286',4503286,-44.000000,2.000000,-185.000000,3.141593,300,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,558408,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503287',4503287,-52.000000,2.000000,-185.000000,3.141593,301,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,558142,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503288',4503288,-60.000000,2.000000,-185.000000,3.141593,302,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,557876,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503289',4503289,-68.000000,2.000000,-185.000000,3.141593,303,0,0,0,2,6,0,0,1180,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,557610,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503290',4503290,-78.000000,2.000000,-185.000000,3.141593,304,0,0,0,2,6,0,0,238,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,557344,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503291',4503291,-88.000000,2.000000,-185.000000,3.141593,305,0,0,0,2,6,0,0,2038,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,557078,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503292',4503292,-96.000000,2.000000,-185.000000,3.141593,306,0,0,0,2,6,0,0,211,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,556812,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503293',4503293,-104.000000,2.000000,-185.000000,3.141593,307,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,556546,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503294',4503294,-112.000000,2.000000,-185.000000,3.141593,308,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,556280,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503295',4503295,-120.000000,2.000000,-185.000000,3.141593,312,0,0,0,2,6,0,0,360,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,556014,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503296',4503296,-128.000000,2.000000,-185.000000,3.141593,313,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,555748,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503297',4503297,-136.000000,2.000000,-185.000000,3.141593,314,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,555482,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503298',4503298,-146.000000,2.000000,-185.000000,3.141593,320,0,0,0,2,6,0,0,687,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,555216,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503299',4503299,-158.000000,2.000000,-185.000000,3.141593,321,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,554950,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503300',4503300,-170.000000,2.000000,-185.000000,3.141593,322,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,554684,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503301',4503301,-180.000000,2.000000,-185.000000,3.141593,323,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,554418,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503302',4503302,-188.000000,2.000000,-185.000000,3.141593,324,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,554152,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503303',4503303,194.000000,2.000000,-173.000000,3.141593,325,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,553886,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503304',4503304,182.000000,2.000000,-173.000000,3.141593,326,0,0,0,2,6,0,0,561,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,553620,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503305',4503305,172.000000,2.000000,-173.000000,3.141593,327,0,0,0,2,6,0,0,17,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,553354,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503306',4503306,164.000000,2.000000,-173.000000,3.141593,328,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,553088,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503307',4503307,156.000000,2.000000,-173.000000,3.141593,329,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,552822,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503308',4503308,148.000000,2.000000,-173.000000,3.141593,330,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,552556,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503309',4503309,140.000000,2.000000,-173.000000,3.141593,331,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,552290,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503310',4503310,132.000000,2.000000,-173.000000,3.141593,332,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,552024,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503311',4503311,124.000000,2.000000,-173.000000,3.141593,333,0,0,0,2,6,0,0,134,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,551758,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503312',4503312,116.000000,2.000000,-173.000000,3.141593,334,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,551492,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503313',4503313,108.000000,2.000000,-173.000000,3.141593,335,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,551226,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503314',4503314,100.000000,2.000000,-173.000000,3.141593,336,0,0,0,2,6,0,0,134,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,550960,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503315',4503315,92.000000,2.000000,-173.000000,3.141593,337,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,550694,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503316',4503316,84.000000,2.000000,-173.000000,3.141593,338,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,550428,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503317',4503317,76.000000,2.000000,-173.000000,3.141593,339,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,550162,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503318',4503318,68.000000,2.000000,-173.000000,3.141593,340,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,549896,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503319',4503319,60.000000,2.000000,-173.000000,3.141593,341,0,0,0,2,6,0,0,402,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,549630,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503320',4503320,52.000000,2.000000,-173.000000,3.141593,342,0,0,0,2,6,0,0,309,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,549364,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503321',4503321,44.000000,2.000000,-173.000000,3.141593,343,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,549098,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503322',4503322,36.000000,2.000000,-173.000000,3.141593,344,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,548832,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503323',4503323,28.000000,2.000000,-173.000000,3.141593,345,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,548566,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503324',4503324,20.000000,2.000000,-173.000000,3.141593,346,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,548300,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503325',4503325,12.000000,2.000000,-173.000000,3.141593,347,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,548034,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503326',4503326,4.000000,2.000000,-173.000000,3.141593,351,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,547768,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503327',4503327,-4.000000,2.000000,-173.000000,3.141593,356,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,547502,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503328',4503328,-14.000000,2.000000,-173.000000,3.141593,357,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,547236,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503329',4503329,-26.000000,2.000000,-173.000000,3.141593,358,0,0,0,2,6,0,0,2511,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,546970,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503330',4503330,-36.000000,2.000000,-173.000000,3.141593,359,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,546704,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503331',4503331,-44.000000,2.000000,-173.000000,3.141593,360,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,546438,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503332',4503332,-52.000000,2.000000,-173.000000,3.141593,361,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,546172,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503333',4503333,-60.000000,2.000000,-173.000000,3.141593,362,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,545906,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503334',4503334,-70.000000,2.000000,-173.000000,3.141593,371,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,545640,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503335',4503335,-80.000000,2.000000,-173.000000,3.141593,376,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,545374,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503336',4503336,-88.000000,2.000000,-173.000000,3.141593,377,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,545108,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503337',4503337,-96.000000,2.000000,-173.000000,3.141593,378,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,544842,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503338',4503338,-104.000000,2.000000,-173.000000,3.141593,379,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,544576,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503339',4503339,-112.000000,2.000000,-173.000000,3.141593,382,0,0,0,2,6,0,0,636,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,544310,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503340',4503340,-120.000000,2.000000,-173.000000,3.141593,383,0,0,0,2,6,0,0,2021,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,544044,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503341',4503341,-128.000000,2.000000,-173.000000,3.141593,384,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,543778,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503342',4503342,-136.000000,2.000000,-173.000000,3.141593,385,0,0,0,2,6,0,0,632,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,543512,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503343',4503343,-144.000000,2.000000,-173.000000,3.141593,386,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,543246,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503344',4503344,-152.000000,2.000000,-173.000000,3.141593,387,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,542980,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503345',4503345,-160.000000,2.000000,-173.000000,3.141593,388,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,542714,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503346',4503346,-168.000000,2.000000,-173.000000,3.141593,389,0,0,0,2,6,0,0,635,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,542448,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503347',4503347,-176.000000,2.000000,-173.000000,3.141593,390,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,542182,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503348',4503348,-184.000000,2.000000,-173.000000,3.141593,391,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,541916,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503349',4503349,-192.000000,2.000000,-173.000000,3.141593,392,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,541650,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503350',4503350,194.000000,2.000000,-161.000000,3.141593,393,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,541384,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503351',4503351,184.000000,2.000000,-161.000000,3.141593,394,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,541118,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503352',4503352,176.000000,2.000000,-161.000000,3.141593,395,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,540852,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503353',4503353,168.000000,2.000000,-161.000000,3.141593,396,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,540586,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503354',4503354,160.000000,2.000000,-161.000000,3.141593,397,0,0,0,2,6,0,0,2755,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,540320,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503355',4503355,152.000000,2.000000,-161.000000,3.141593,398,0,0,0,2,6,0,0,1849,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,540054,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503356',4503356,144.000000,2.000000,-161.000000,3.141593,399,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,539788,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503357',4503357,136.000000,2.000000,-161.000000,3.141593,400,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,539522,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503358',4503358,128.000000,2.000000,-161.000000,3.141593,401,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,539256,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503359',4503359,120.000000,2.000000,-161.000000,3.141593,402,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,538990,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503360',4503360,112.000000,2.000000,-161.000000,3.141593,403,0,0,0,2,6,0,0,1853,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,538724,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503361',4503361,104.000000,2.000000,-161.000000,3.141593,404,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,538458,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503362',4503362,96.000000,2.000000,-161.000000,3.141593,405,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,538192,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503363',4503363,88.000000,2.000000,-161.000000,3.141593,406,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,537926,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503364',4503364,80.000000,2.000000,-161.000000,3.141593,407,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,537660,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503365',4503365,72.000000,2.000000,-161.000000,3.141593,408,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,537394,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503366',4503366,64.000000,2.000000,-161.000000,3.141593,409,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,537128,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503367',4503367,56.000000,2.000000,-161.000000,3.141593,410,0,0,0,2,6,0,0,2137,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,536862,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503368',4503368,46.000000,2.000000,-161.000000,3.141593,411,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,536596,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503369',4503369,36.000000,2.000000,-161.000000,3.141593,414,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,536330,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503370',4503370,28.000000,2.000000,-161.000000,3.141593,415,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,536064,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503371',4503371,20.000000,2.000000,-161.000000,3.141593,417,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,535798,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503372',4503372,12.000000,2.000000,-161.000000,3.141593,418,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,535532,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503373',4503373,4.000000,2.000000,-161.000000,3.141593,419,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,535266,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503374',4503374,-4.000000,2.000000,-161.000000,3.141593,420,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,535000,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503375',4503375,-12.000000,2.000000,-161.000000,3.141593,421,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,534734,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503376',4503376,-20.000000,2.000000,-161.000000,3.141593,422,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,534468,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503377',4503377,-30.000000,2.000000,-161.000000,3.141593,423,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,534202,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503378',4503378,-40.000000,2.000000,-161.000000,3.141593,424,0,0,0,2,6,0,0,1,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,533936,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503379',4503379,-48.000000,2.000000,-161.000000,3.141593,425,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,533670,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503380',4503380,-56.000000,2.000000,-161.000000,3.141593,426,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,533404,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503381',4503381,-66.000000,2.000000,-161.000000,3.141593,427,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,533138,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503382',4503382,-78.000000,2.000000,-161.000000,3.141593,428,0,0,0,2,6,0,0,1,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,532872,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503383',4503383,-90.000000,2.000000,-161.000000,3.141593,429,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,532606,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503384',4503384,-100.000000,2.000000,-161.000000,3.141593,430,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,532340,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503385',4503385,-108.000000,2.000000,-161.000000,3.141593,431,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,532074,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503386',4503386,-116.000000,2.000000,-161.000000,3.141593,432,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,531808,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503387',4503387,-124.000000,2.000000,-161.000000,3.141593,433,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,531542,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503388',4503388,-132.000000,2.000000,-161.000000,3.141593,434,0,0,0,2,6,0,0,1185,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,531276,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503389',4503389,-142.000000,2.000000,-161.000000,3.141593,471,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,531010,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4596254',4596254,-152.000000,2.000000,-161.000000,3.141593,473,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,530744,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503390',4503390,-160.000000,2.000000,-161.000000,3.141593,475,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,530478,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503391',4503391,-168.000000,2.000000,-161.000000,3.141593,476,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,530212,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503392',4503392,-176.000000,2.000000,-161.000000,3.141593,479,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,529946,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503393',4503393,-186.000000,2.000000,-161.000000,3.141593,481,0,0,0,2,6,0,0,51,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,529680,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503394',4503394,196.000000,2.000000,-149.000000,3.141593,482,0,0,0,2,6,0,0,512,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,529414,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503395',4503395,186.000000,2.000000,-149.000000,3.141593,483,0,0,0,2,6,0,0,446,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,529148,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503396',4503396,176.000000,2.000000,-149.000000,3.141593,486,0,0,0,2,6,0,0,445,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,528882,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503397',4503397,168.000000,2.000000,-149.000000,3.141593,487,0,0,0,2,6,0,0,447,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,528616,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503398',4503398,158.000000,2.000000,-149.000000,3.141593,488,0,0,0,2,6,0,0,448,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,528350,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503399',4503399,148.000000,2.000000,-149.000000,3.141593,489,0,0,0,2,6,0,0,513,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,528084,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503400',4503400,140.000000,2.000000,-149.000000,3.141593,490,0,0,0,2,6,0,0,449,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,527818,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503401',4503401,130.000000,2.000000,-149.000000,3.141593,491,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,527552,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503402',4503402,118.000000,2.000000,-149.000000,3.141593,496,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,527286,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503403',4503403,106.000000,2.000000,-149.000000,3.141593,497,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,527020,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503404',4503404,96.000000,2.000000,-149.000000,3.141593,498,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,526754,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503405',4503405,88.000000,2.000000,-149.000000,3.141593,499,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,526488,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503406',4503406,80.000000,2.000000,-149.000000,3.141593,500,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,526222,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503407',4503407,70.000000,2.000000,-149.000000,3.141593,501,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,525956,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503408',4503408,58.000000,2.000000,-149.000000,3.141593,502,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,525690,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503409',4503409,48.000000,2.000000,-149.000000,3.141593,503,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,525424,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503410',4503410,40.000000,2.000000,-149.000000,3.141593,504,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,525158,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503411',4503411,32.000000,2.000000,-149.000000,3.141593,505,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,524892,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503412',4503412,24.000000,2.000000,-149.000000,3.141593,506,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,524626,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503413',4503413,14.000000,2.000000,-149.000000,3.141593,507,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,524360,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503414',4503414,4.000000,2.000000,-149.000000,3.141593,508,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,524094,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503415',4503415,-4.000000,2.000000,-149.000000,3.141593,513,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,523828,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503416',4503416,-12.000000,2.000000,-149.000000,3.141593,514,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,523562,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503417',4503417,-20.000000,2.000000,-149.000000,3.141593,515,0,0,0,2,6,0,0,72,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,523296,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503418',4503418,-28.000000,2.000000,-149.000000,3.141593,516,0,0,0,2,6,0,0,20,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,523030,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503419',4503419,-36.000000,2.000000,-149.000000,3.141593,518,0,0,0,2,6,0,0,14,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,522764,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503420',4503420,-44.000000,2.000000,-149.000000,3.141593,520,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,522498,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503421',4503421,-52.000000,2.000000,-149.000000,3.141593,521,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,522232,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503422',4503422,-60.000000,2.000000,-149.000000,3.141593,523,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,521966,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503423',4503423,-68.000000,2.000000,-149.000000,3.141593,525,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,521700,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503424',4503424,-76.000000,2.000000,-149.000000,3.141593,526,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,521434,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503425',4503425,-86.000000,2.000000,-149.000000,3.141593,527,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,521168,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503426',4503426,-96.000000,2.000000,-149.000000,3.141593,528,0,0,0,2,6,0,0,462,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,520902,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503427',4503427,-104.000000,2.000000,-149.000000,3.141593,529,0,0,0,2,6,0,0,463,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,520636,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503428',4503428,-112.000000,2.000000,-149.000000,3.141593,530,0,0,0,2,6,0,0,464,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,520370,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503429',4503429,-120.000000,2.000000,-149.000000,3.141593,531,0,0,0,2,6,0,0,464,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,520104,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503430',4503430,-128.000000,2.000000,-149.000000,3.141593,532,0,0,0,2,6,0,0,464,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,519838,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503431',4503431,-136.000000,2.000000,-149.000000,3.141593,533,0,0,0,2,6,0,0,465,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,519572,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503432',4503432,-144.000000,2.000000,-149.000000,3.141593,534,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,519306,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503433',4503433,-152.000000,2.000000,-149.000000,3.141593,535,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,519040,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503434',4503434,-160.000000,2.000000,-149.000000,3.141593,536,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,518774,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503435',4503435,-168.000000,2.000000,-149.000000,3.141593,537,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,518508,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503436',4503436,-176.000000,2.000000,-149.000000,3.141593,538,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,518242,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503437',4503437,-184.000000,2.000000,-149.000000,3.141593,543,0,0,0,2,6,0,0,608,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,517976,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503438',4503438,-194.000000,2.000000,-149.000000,3.141593,548,0,0,0,2,6,0,0,939,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,517710,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503439',4503439,196.000000,2.000000,-137.000000,3.141593,549,0,0,0,2,6,0,0,578,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,517444,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503440',4503440,188.000000,2.000000,-137.000000,3.141593,554,0,0,0,2,6,0,0,193,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,517178,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503441',4503441,180.000000,2.000000,-137.000000,3.141593,555,0,0,0,2,6,0,0,194,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,516912,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503442',4503442,172.000000,2.000000,-137.000000,3.141593,556,0,0,0,2,6,0,0,192,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,516646,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503443',4503443,164.000000,2.000000,-137.000000,3.141593,557,0,0,0,2,6,0,0,947,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,516380,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503444',4503444,156.000000,2.000000,-137.000000,3.141593,563,0,0,0,2,6,0,0,583,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,516114,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503445',4503445,148.000000,2.000000,-137.000000,3.141593,566,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,515848,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503446',4503446,140.000000,2.000000,-137.000000,3.141593,567,0,0,0,2,6,0,0,455,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,515582,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503447',4503447,132.000000,2.000000,-137.000000,3.141593,570,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,515316,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503448',4503448,124.000000,2.000000,-137.000000,3.141593,572,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,515050,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503449',4503449,116.000000,2.000000,-137.000000,3.141593,573,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,514784,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503450',4503450,106.000000,2.000000,-137.000000,3.141593,579,0,0,0,2,6,0,0,558,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,514518,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503451',4503451,96.000000,2.000000,-137.000000,3.141593,587,0,0,0,2,6,0,0,511,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,514252,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503452',4503452,86.000000,2.000000,-137.000000,3.141593,588,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,513986,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503453',4503453,74.000000,2.000000,-137.000000,3.141593,589,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,513720,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503454',4503454,62.000000,2.000000,-137.000000,3.141593,590,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,513454,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503455',4503455,50.000000,2.000000,-137.000000,3.141593,591,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,513188,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503456',4503456,40.000000,2.000000,-137.000000,3.141593,592,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,512922,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503457',4503457,32.000000,2.000000,-137.000000,3.141593,593,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,512656,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503458',4503458,24.000000,2.000000,-137.000000,3.141593,596,0,0,0,2,6,0,0,2295,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,512390,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503459',4503459,16.000000,2.000000,-137.000000,3.141593,599,0,0,0,2,6,0,0,439,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,512124,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503460',4503460,8.000000,2.000000,-137.000000,3.141593,601,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,511858,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503461',4503461,-0.000000,2.000000,-137.000000,3.141593,602,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,511592,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503462',4503462,-8.000000,2.000000,-137.000000,3.141593,603,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,511326,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503463',4503463,-16.000000,2.000000,-137.000000,3.141593,604,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,511060,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503464',4503464,-26.000000,2.000000,-137.000000,3.141593,606,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,510794,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503465',4503465,-36.000000,2.000000,-137.000000,3.141593,607,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,510528,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503466',4503466,-44.000000,2.000000,-137.000000,3.141593,608,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,510262,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503467',4503467,-52.000000,2.000000,-137.000000,3.141593,609,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,509996,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503468',4503468,-60.000000,2.000000,-137.000000,3.141593,610,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,509730,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503469',4503469,-68.000000,2.000000,-137.000000,3.141593,611,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,509464,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503470',4503470,-76.000000,2.000000,-137.000000,3.141593,612,0,0,0,2,6,0,0,535,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,509198,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503471',4503471,-84.000000,2.000000,-137.000000,3.141593,613,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,508932,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503472',4503472,-92.000000,2.000000,-137.000000,3.141593,614,0,0,0,2,6,0,0,1728,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,508666,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503473',4503473,-100.000000,2.000000,-137.000000,3.141593,616,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,508400,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503474',4503474,-108.000000,2.000000,-137.000000,3.141593,617,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,508134,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503475',4503475,-116.000000,2.000000,-137.000000,3.141593,618,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,507868,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503476',4503476,-124.000000,2.000000,-137.000000,3.141593,619,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,507602,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503477',4503477,-132.000000,2.000000,-137.000000,3.141593,620,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,507336,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503478',4503478,-140.000000,2.000000,-137.000000,3.141593,621,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,507070,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503479',4503479,-148.000000,2.000000,-137.000000,3.141593,622,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,506804,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503480',4503480,-156.000000,2.000000,-137.000000,3.141593,642,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,506538,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503481',4503481,-166.000000,2.000000,-137.000000,3.141593,643,0,0,0,2,6,0,0,1694,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,506272,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503482',4503482,-176.000000,2.000000,-137.000000,3.141593,644,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,506006,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503483',4503483,-184.000000,2.000000,-137.000000,3.141593,645,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,505740,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503484',4503484,-192.000000,2.000000,-137.000000,3.141593,646,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,505474,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503485',4503485,196.000000,2.000000,-125.000000,3.141593,647,0,0,0,2,6,0,0,2874,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,505208,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503486',4503486,188.000000,2.000000,-125.000000,3.141593,648,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,504942,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503487',4503487,180.000000,2.000000,-125.000000,3.141593,649,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,504676,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503488',4503488,170.000000,2.000000,-125.000000,3.141593,650,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,504410,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503489',4503489,158.000000,2.000000,-125.000000,3.141593,651,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,504144,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503490',4503490,146.000000,2.000000,-125.000000,3.141593,652,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,503878,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503491',4503491,134.000000,2.000000,-125.000000,3.141593,653,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,503612,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503492',4503492,122.000000,2.000000,-125.000000,3.141593,654,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,503346,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503493',4503493,112.000000,2.000000,-125.000000,3.141593,655,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,503080,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503494',4503494,104.000000,2.000000,-125.000000,3.141593,668,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,502814,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503495',4503495,96.000000,2.000000,-125.000000,3.141593,671,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,502548,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503496',4503496,88.000000,2.000000,-125.000000,3.141593,676,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,502282,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503497',4503497,80.000000,2.000000,-125.000000,3.141593,677,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,502016,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503498',4503498,72.000000,2.000000,-125.000000,3.141593,679,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,501750,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503499',4503499,64.000000,2.000000,-125.000000,3.141593,680,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,501484,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503500',4503500,56.000000,2.000000,-125.000000,3.141593,681,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,501218,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503501',4503501,48.000000,2.000000,-125.000000,3.141593,682,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,500952,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503502',4503502,40.000000,2.000000,-125.000000,3.141593,688,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,500686,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503503',4503503,32.000000,2.000000,-125.000000,3.141593,689,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,500420,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503504',4503504,24.000000,2.000000,-125.000000,3.141593,690,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,500154,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503505',4503505,16.000000,2.000000,-125.000000,3.141593,700,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,499888,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503506',4503506,8.000000,2.000000,-125.000000,3.141593,701,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,499622,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503507',4503507,-2.000000,2.000000,-125.000000,3.141593,702,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,499356,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503508',4503508,-12.000000,2.000000,-125.000000,3.141593,714,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,499090,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503509',4503509,-20.000000,2.000000,-125.000000,3.141593,716,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,498824,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503510',4503510,-28.000000,2.000000,-125.000000,3.141593,717,0,0,0,2,6,0,0,937,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,498558,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503511',4503511,-36.000000,2.000000,-125.000000,3.141593,719,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,498292,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503512',4503512,-46.000000,2.000000,-125.000000,3.141593,720,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,498026,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503513',4503513,-56.000000,2.000000,-125.000000,3.141593,721,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,497760,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503514',4503514,-64.000000,2.000000,-125.000000,3.141593,722,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,497494,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503515',4503515,-72.000000,2.000000,-125.000000,3.141593,723,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,497228,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503516',4503516,-80.000000,2.000000,-125.000000,3.141593,727,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,496962,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503517',4503517,-88.000000,2.000000,-125.000000,3.141593,728,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,496696,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503518',4503518,-96.000000,2.000000,-125.000000,3.141593,729,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,496430,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503519',4503519,-104.000000,2.000000,-125.000000,3.141593,730,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,496164,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503520',4503520,-112.000000,2.000000,-125.000000,3.141593,731,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,495898,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503521',4503521,-122.000000,2.000000,-125.000000,3.141593,732,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,495632,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503522',4503522,-134.000000,2.000000,-125.000000,3.141593,733,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,495366,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503523',4503523,-146.000000,2.000000,-125.000000,3.141593,734,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,495100,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503524',4503524,-156.000000,2.000000,-125.000000,3.141593,735,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,494834,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503525',4503525,-164.000000,2.000000,-125.000000,3.141593,736,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,494568,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503526',4503526,-172.000000,2.000000,-125.000000,3.141593,737,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,494302,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503527',4503527,-180.000000,2.000000,-125.000000,3.141593,738,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,494036,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503528',4503528,-188.000000,2.000000,-125.000000,3.141593,739,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,493770,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503529',4503529,196.000000,2.000000,-113.000000,3.141593,740,0,0,0,2,6,0,0,2727,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,493504,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503530',4503530,188.000000,2.000000,-113.000000,3.141593,741,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,493238,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503531',4503531,180.000000,2.000000,-113.000000,3.141593,742,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,492972,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503532',4503532,172.000000,2.000000,-113.000000,3.141593,743,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,492706,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503533',4503533,164.000000,2.000000,-113.000000,3.141593,744,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,492440,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503534',4503534,156.000000,2.000000,-113.000000,3.141593,745,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,492174,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503535',4503535,148.000000,2.000000,-113.000000,3.141593,746,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,491908,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503536',4503536,140.000000,2.000000,-113.000000,3.141593,747,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,491642,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503537',4503537,132.000000,2.000000,-113.000000,3.141593,748,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,491376,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503538',4503538,124.000000,2.000000,-113.000000,3.141593,749,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,491110,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503539',4503539,116.000000,2.000000,-113.000000,3.141593,750,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,490844,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503540',4503540,108.000000,2.000000,-113.000000,3.141593,751,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,490578,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503541',4503541,100.000000,2.000000,-113.000000,3.141593,752,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,490312,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503542',4503542,92.000000,2.000000,-113.000000,3.141593,753,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,490046,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503543',4503543,84.000000,2.000000,-113.000000,3.141593,754,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,489780,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503544',4503544,76.000000,2.000000,-113.000000,3.141593,755,0,0,0,2,6,0,0,2711,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,489514,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503545',4503545,68.000000,2.000000,-113.000000,3.141593,756,0,0,0,2,6,0,0,2694,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,489248,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503546',4503546,60.000000,2.000000,-113.000000,3.141593,757,0,0,0,2,6,0,0,2704,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,488982,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503547',4503547,52.000000,2.000000,-113.000000,3.141593,758,0,0,0,2,6,0,0,2703,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,488716,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503548',4503548,44.000000,2.000000,-113.000000,3.141593,759,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,488450,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503549',4503549,36.000000,2.000000,-113.000000,3.141593,760,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,488184,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503550',4503550,28.000000,2.000000,-113.000000,3.141593,761,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,487918,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503551',4503551,20.000000,2.000000,-113.000000,3.141593,762,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,487652,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503552',4503552,12.000000,2.000000,-113.000000,3.141593,763,0,0,0,2,6,0,0,2320,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,487386,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503553',4503553,4.000000,2.000000,-113.000000,3.141593,764,0,0,0,2,6,0,0,2318,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,487120,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503554',4503554,-4.000000,2.000000,-113.000000,3.141593,765,0,0,0,2,6,0,0,2543,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,486854,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503555',4503555,-12.000000,2.000000,-113.000000,3.141593,766,0,0,0,2,6,0,0,2679,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,486588,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503556',4503556,-20.000000,2.000000,-113.000000,3.141593,767,0,0,0,2,6,0,0,134,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,486322,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503557',4503557,-28.000000,2.000000,-113.000000,3.141593,768,0,0,0,2,6,0,0,134,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,486056,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503558',4503558,-36.000000,2.000000,-113.000000,3.141593,769,0,0,0,2,6,0,0,283,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,485790,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503559',4503559,-44.000000,2.000000,-113.000000,3.141593,770,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,485524,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503560',4503560,-52.000000,2.000000,-113.000000,3.141593,771,0,0,0,2,6,0,0,266,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,485258,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503561',4503561,-60.000000,2.000000,-113.000000,3.141593,772,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,484992,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503562',4503562,-68.000000,2.000000,-113.000000,3.141593,777,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,484726,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503563',4503563,-78.000000,2.000000,-113.000000,3.141593,782,0,0,0,2,6,0,0,1329,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,484460,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503564',4503564,-88.000000,2.000000,-113.000000,3.141593,803,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,484194,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503565',4503565,-96.000000,2.000000,-113.000000,3.141593,804,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,483928,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503566',4503566,-104.000000,2.000000,-113.000000,3.141593,818,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,483662,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503567',4503567,-114.000000,2.000000,-113.000000,3.141593,819,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,483396,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503568',4503568,-126.000000,2.000000,-113.000000,3.141593,820,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,483130,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503569',4503569,-136.000000,2.000000,-113.000000,3.141593,821,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,482864,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503570',4503570,-144.000000,2.000000,-113.000000,3.141593,822,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,482598,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503571',4503571,-152.000000,2.000000,-113.000000,3.141593,823,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,482332,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503572',4503572,-162.000000,2.000000,-113.000000,3.141593,824,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,482066,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503573',4503573,-172.000000,2.000000,-113.000000,3.141593,825,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,481800,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503574',4503574,-180.000000,2.000000,-113.000000,3.141593,826,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,481534,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503575',4503575,-188.000000,2.000000,-113.000000,3.141593,827,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,481268,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503576',4503576,196.000000,2.000000,-101.000000,3.141593,828,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,481002,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503577',4503577,188.000000,2.000000,-101.000000,3.141593,829,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,480736,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503578',4503578,180.000000,2.000000,-101.000000,3.141593,830,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,480470,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503579',4503579,172.000000,2.000000,-101.000000,3.141593,831,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,480204,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503580',4503580,162.000000,2.000000,-101.000000,3.141593,832,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,479938,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503581',4503581,152.000000,2.000000,-101.000000,3.141593,833,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,479672,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503582',4503582,142.000000,2.000000,-101.000000,3.141593,835,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,479406,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503583',4503583,132.000000,2.000000,-101.000000,3.141593,836,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,479140,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503584',4503584,124.000000,2.000000,-101.000000,3.141593,837,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,478874,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503585',4503585,116.000000,2.000000,-101.000000,3.141593,838,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,478608,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503586',4503586,106.000000,2.000000,-101.000000,3.141593,839,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,478342,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503587',4503587,96.000000,2.000000,-101.000000,3.141593,840,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,478076,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503588',4503588,86.000000,2.000000,-101.000000,3.141593,841,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,477810,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503589',4503589,76.000000,2.000000,-101.000000,3.141593,843,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,477544,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503590',4503590,68.000000,2.000000,-101.000000,3.141593,844,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,477278,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503591',4503591,58.000000,2.000000,-101.000000,3.141593,846,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,477012,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503592',4503592,48.000000,2.000000,-101.000000,3.141593,847,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,476746,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503593',4503593,40.000000,2.000000,-101.000000,3.141593,848,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,476480,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503594',4503594,32.000000,2.000000,-101.000000,3.141593,849,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,476214,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503595',4503595,22.000000,2.000000,-101.000000,3.141593,850,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,475948,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503596',4503596,10.000000,2.000000,-101.000000,3.141593,851,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,475682,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503597',4503597,-0.000000,2.000000,-101.000000,3.141593,852,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,475416,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503598',4503598,-8.000000,2.000000,-101.000000,3.141593,853,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,475150,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503599',4503599,-16.000000,2.000000,-101.000000,3.141593,854,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,474884,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503600',4503600,-24.000000,2.000000,-101.000000,3.141593,855,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,474618,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503601',4503601,-34.000000,2.000000,-101.000000,3.141593,857,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,474352,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503602',4503602,-44.000000,2.000000,-101.000000,3.141593,858,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,474086,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503603',4503603,-52.000000,2.000000,-101.000000,3.141593,859,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,473820,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503604',4503604,-60.000000,2.000000,-101.000000,3.141593,861,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,473554,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503605',4503605,-70.000000,2.000000,-101.000000,3.141593,862,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,473288,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503606',4503606,-80.000000,2.000000,-101.000000,3.141593,864,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,473022,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503607',4503607,-88.000000,2.000000,-101.000000,3.141593,867,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,472756,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503608',4503608,-96.000000,2.000000,-101.000000,3.141593,873,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,472490,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503609',4503609,-104.000000,2.000000,-101.000000,3.141593,876,0,0,0,2,6,0,0,531,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,472224,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503610',4503610,-114.000000,2.000000,-101.000000,3.141593,877,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,471958,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503611',4503611,-124.000000,2.000000,-101.000000,3.141593,884,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,471692,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503612',4503612,-132.000000,2.000000,-101.000000,3.141593,885,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,471426,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503613',4503613,-140.000000,2.000000,-101.000000,3.141593,886,0,0,0,2,6,0,0,938,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,471160,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503614',4503614,-148.000000,2.000000,-101.000000,3.141593,890,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,470894,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503615',4503615,-156.000000,2.000000,-101.000000,3.141593,898,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,470628,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503616',4503616,-164.000000,2.000000,-101.000000,3.141593,899,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,470362,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503617',4503617,-172.000000,2.000000,-101.000000,3.141593,901,0,0,0,2,6,0,0,541,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,470096,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503618',4503618,-182.000000,2.000000,-101.000000,3.141593,902,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,469830,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503619',4503619,-192.000000,2.000000,-101.000000,3.141593,903,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,469564,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503620',4503620,196.000000,2.000000,-89.000000,3.141593,905,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,469298,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503621',4503621,188.000000,2.000000,-89.000000,3.141593,916,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,469032,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503622',4503622,180.000000,2.000000,-89.000000,3.141593,917,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,468766,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503623',4503623,172.000000,2.000000,-89.000000,3.141593,919,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,468500,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503624',4503624,164.000000,2.000000,-89.000000,3.141593,924,0,0,0,2,6,0,0,946,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,468234,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503625',4503625,156.000000,2.000000,-89.000000,3.141593,925,0,0,0,2,6,0,0,193,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,467968,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503626',4503626,148.000000,2.000000,-89.000000,3.141593,926,0,0,0,2,6,0,0,194,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,467702,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503627',4503627,140.000000,2.000000,-89.000000,3.141593,927,0,0,0,2,6,0,0,947,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,467436,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503628',4503628,132.000000,2.000000,-89.000000,3.141593,928,0,0,0,2,6,0,0,945,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,467170,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503629',4503629,124.000000,2.000000,-89.000000,3.141593,929,0,0,0,2,6,0,0,980,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,466904,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503630',4503630,116.000000,2.000000,-89.000000,3.141593,931,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,466638,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503631',4503631,108.000000,2.000000,-89.000000,3.141593,932,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,466372,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503632',4503632,100.000000,2.000000,-89.000000,3.141593,933,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,466106,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503633',4503633,92.000000,2.000000,-89.000000,3.141593,936,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,465840,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503634',4503634,84.000000,2.000000,-89.000000,3.141593,937,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,465574,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503635',4503635,76.000000,2.000000,-89.000000,3.141593,941,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,465308,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503636',4503636,68.000000,2.000000,-89.000000,3.141593,942,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,465042,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503637',4503637,58.000000,2.000000,-89.000000,3.141593,943,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,464776,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503638',4503638,48.000000,2.000000,-89.000000,3.141593,944,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,464510,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503639',4503639,40.000000,2.000000,-89.000000,3.141593,945,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,464244,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503640',4503640,32.000000,2.000000,-89.000000,3.141593,946,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,463978,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503641',4503641,24.000000,2.000000,-89.000000,3.141593,947,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,463712,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503642',4503642,14.000000,2.000000,-89.000000,3.141593,948,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,463446,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503643',4503643,4.000000,2.000000,-89.000000,3.141593,949,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,463180,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503644',4503644,-4.000000,2.000000,-89.000000,3.141593,950,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,462914,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503645',4503645,-12.000000,2.000000,-89.000000,3.141593,951,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,462648,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503646',4503646,-20.000000,2.000000,-89.000000,3.141593,952,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,462382,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503647',4503647,-30.000000,2.000000,-89.000000,3.141593,957,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,462116,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503648',4503648,-40.000000,2.000000,-89.000000,3.141593,958,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,461850,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503649',4503649,-48.000000,2.000000,-89.000000,3.141593,967,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,461584,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503650',4503650,-56.000000,2.000000,-89.000000,3.141593,968,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,461318,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503651',4503651,-64.000000,2.000000,-89.000000,3.141593,969,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,461052,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503652',4503652,-72.000000,2.000000,-89.000000,3.141593,970,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,460786,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503653',4503653,-80.000000,2.000000,-89.000000,3.141593,971,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,460520,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503654',4503654,-88.000000,2.000000,-89.000000,3.141593,972,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,460254,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503655',4503655,-96.000000,2.000000,-89.000000,3.141593,973,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,459988,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503656',4503656,-104.000000,2.000000,-89.000000,3.141593,974,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,459722,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503657',4503657,-114.000000,2.000000,-89.000000,3.141593,975,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,459456,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503658',4503658,-124.000000,2.000000,-89.000000,3.141593,976,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,459190,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503659',4503659,-132.000000,2.000000,-89.000000,3.141593,977,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,458924,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503660',4503660,-140.000000,2.000000,-89.000000,3.141593,978,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,458658,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503661',4503661,-148.000000,2.000000,-89.000000,3.141593,979,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,458392,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503662',4503662,-156.000000,2.000000,-89.000000,3.141593,980,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,458126,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503663',4503663,-166.000000,2.000000,-89.000000,3.141593,989,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,457860,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503664',4503664,-178.000000,2.000000,-89.000000,3.141593,990,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,457594,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503665',4503665,-188.000000,2.000000,-89.000000,3.141593,991,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,457328,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503666',4503666,194.000000,2.000000,-77.000000,3.141593,994,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,457062,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503667',4503667,184.000000,2.000000,-77.000000,3.141593,995,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,456796,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503668',4503668,176.000000,2.000000,-77.000000,3.141593,996,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,456530,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503669',4503669,168.000000,2.000000,-77.000000,3.141593,998,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,456264,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503670',4503670,160.000000,2.000000,-77.000000,3.141593,1004,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,455998,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503671',4503671,152.000000,2.000000,-77.000000,3.141593,1007,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,455732,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503672',4503672,144.000000,2.000000,-77.000000,3.141593,1008,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,455466,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503673',4503673,136.000000,2.000000,-77.000000,3.141593,1009,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,455200,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503674',4503674,128.000000,2.000000,-77.000000,3.141593,1011,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,454934,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503675',4503675,120.000000,2.000000,-77.000000,3.141593,1012,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,454668,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503676',4503676,112.000000,2.000000,-77.000000,3.141593,1013,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,454402,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503677',4503677,104.000000,2.000000,-77.000000,3.141593,1014,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,454136,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503678',4503678,96.000000,2.000000,-77.000000,3.141593,1015,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,453870,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503679',4503679,86.000000,2.000000,-77.000000,3.141593,1016,0,0,0,2,6,0,0,269,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,453604,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503680',4503680,76.000000,2.000000,-77.000000,3.141593,1027,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,453338,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503681',4503681,68.000000,2.000000,-77.000000,3.141593,1028,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,453072,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503682',4503682,60.000000,2.000000,-77.000000,3.141593,1029,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,452806,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503683',4503683,52.000000,2.000000,-77.000000,3.141593,1037,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,452540,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503684',4503684,44.000000,2.000000,-77.000000,3.141593,1038,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,452274,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503685',4503685,36.000000,2.000000,-77.000000,3.141593,1039,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,452008,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503686',4503686,28.000000,2.000000,-77.000000,3.141593,1040,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,451742,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503687',4503687,20.000000,2.000000,-77.000000,3.141593,1041,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,451476,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503688',4503688,12.000000,2.000000,-77.000000,3.141593,1042,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,451210,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503689',4503689,4.000000,2.000000,-77.000000,3.141593,1043,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,450944,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503690',4503690,-4.000000,2.000000,-77.000000,3.141593,1044,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,450678,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503691',4503691,-12.000000,2.000000,-77.000000,3.141593,1045,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,450412,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503692',4503692,-20.000000,2.000000,-77.000000,3.141593,1046,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,450146,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503693',4503693,-28.000000,2.000000,-77.000000,3.141593,1047,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,449880,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503694',4503694,-38.000000,2.000000,-77.000000,3.141593,1048,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,449614,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503695',4503695,-48.000000,2.000000,-77.000000,3.141593,1049,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,449348,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503696',4503696,-56.000000,2.000000,-77.000000,3.141593,1050,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,449082,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503697',4503697,-66.000000,2.000000,-77.000000,3.141593,1051,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,448816,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503698',4503698,-78.000000,2.000000,-77.000000,3.141593,1052,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,448550,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503699',4503699,-90.000000,2.000000,-77.000000,3.141593,1053,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,448284,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503700',4503700,-100.000000,2.000000,-77.000000,3.141593,1054,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,448018,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503701',4503701,-108.000000,2.000000,-77.000000,3.141593,1055,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,447752,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503702',4503702,-116.000000,2.000000,-77.000000,3.141593,1056,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,447486,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503703',4503703,-124.000000,2.000000,-77.000000,3.141593,1057,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,447220,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503704',4503704,-132.000000,2.000000,-77.000000,3.141593,1058,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,446954,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503705',4503705,-140.000000,2.000000,-77.000000,3.141593,1059,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,446688,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503706',4503706,-148.000000,2.000000,-77.000000,3.141593,1061,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,446422,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503707',4503707,-156.000000,2.000000,-77.000000,3.141593,1062,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,446156,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503708',4503708,-164.000000,2.000000,-77.000000,3.141593,1063,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,445890,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503709',4503709,-172.000000,2.000000,-77.000000,3.141593,1064,0,0,0,2,6,0,0,1,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,445624,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503710',4503710,-180.000000,2.000000,-77.000000,3.141593,1065,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,445358,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503711',4503711,-188.000000,2.000000,-77.000000,3.141593,1066,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,445092,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503712',4503712,196.000000,2.000000,-65.000000,3.141593,1070,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,444826,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503713',4503713,188.000000,2.000000,-65.000000,3.141593,1071,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,444560,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503714',4503714,180.000000,2.000000,-65.000000,3.141593,1072,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,444294,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503715',4503715,172.000000,2.000000,-65.000000,3.141593,1073,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,444028,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503716',4503716,164.000000,2.000000,-65.000000,3.141593,1074,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,443762,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503717',4503717,156.000000,2.000000,-65.000000,3.141593,1075,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,443496,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503718',4503718,148.000000,2.000000,-65.000000,3.141593,1076,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,443230,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503719',4503719,140.000000,2.000000,-65.000000,3.141593,1086,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,442964,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503720',4503720,132.000000,2.000000,-65.000000,3.141593,1087,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,442698,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503721',4503721,124.000000,2.000000,-65.000000,3.141593,1088,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,442432,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503722',4503722,116.000000,2.000000,-65.000000,3.141593,1092,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,442166,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503723',4503723,108.000000,2.000000,-65.000000,3.141593,1093,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,441900,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503724',4503724,100.000000,2.000000,-65.000000,3.141593,1094,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,441634,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503725',4503725,92.000000,2.000000,-65.000000,3.141593,1095,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,441368,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503726',4503726,82.000000,2.000000,-65.000000,3.141593,1096,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,441102,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503727',4503727,72.000000,2.000000,-65.000000,3.141593,1101,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,440836,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503728',4503728,64.000000,2.000000,-65.000000,3.141593,1102,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,440570,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503729',4503729,54.000000,2.000000,-65.000000,3.141593,1103,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,440304,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503730',4503730,44.000000,2.000000,-65.000000,3.141593,1106,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,440038,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503731',4503731,36.000000,2.000000,-65.000000,3.141593,1107,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,439772,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503732',4503732,26.000000,2.000000,-65.000000,3.141593,1108,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,439506,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503733',4503733,16.000000,2.000000,-65.000000,3.141593,1109,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,439240,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503734',4503734,8.000000,2.000000,-65.000000,3.141593,1112,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,438974,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503735',4503735,-0.000000,2.000000,-65.000000,3.141593,1113,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,438708,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503736',4503736,-8.000000,2.000000,-65.000000,3.141593,1121,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,438442,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503737',4503737,-16.000000,2.000000,-65.000000,3.141593,1122,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,438176,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503738',4503738,-26.000000,2.000000,-65.000000,3.141593,1123,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,437910,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503739',4503739,-36.000000,2.000000,-65.000000,3.141593,1124,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,437644,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503740',4503740,-44.000000,2.000000,-65.000000,3.141593,1125,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,437378,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503741',4503741,-54.000000,2.000000,-65.000000,3.141593,1126,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,437112,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503742',4503742,-64.000000,2.000000,-65.000000,3.141593,1127,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,436846,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503743',4503743,-72.000000,2.000000,-65.000000,3.141593,1128,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,436580,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503744',4503744,-80.000000,2.000000,-65.000000,3.141593,1129,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,436314,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503745',4503745,-88.000000,2.000000,-65.000000,3.141593,1130,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,436048,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503746',4503746,-98.000000,2.000000,-65.000000,3.141593,1222,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,435782,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503747',4503747,-110.000000,2.000000,-65.000000,3.141593,1223,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,435516,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503748',4503748,-122.000000,2.000000,-65.000000,3.141593,1224,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,435250,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503749',4503749,-132.000000,2.000000,-65.000000,3.141593,1225,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,434984,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503750',4503750,-140.000000,2.000000,-65.000000,3.141593,1229,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,434718,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503751',4503751,-150.000000,2.000000,-65.000000,3.141593,1230,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,434452,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503752',4503752,-160.000000,2.000000,-65.000000,3.141593,1231,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,434186,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503753',4503753,-170.000000,2.000000,-65.000000,3.141593,1232,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,433920,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503754',4503754,-182.000000,2.000000,-65.000000,3.141593,1233,0,0,0,2,6,0,0,860,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,433654,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503755',4503755,-192.000000,2.000000,-65.000000,3.141593,1234,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,433388,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503756',4503756,196.000000,2.000000,-53.000000,3.141593,1235,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,433122,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503757',4503757,188.000000,2.000000,-53.000000,3.141593,1236,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,432856,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503758',4503758,178.000000,2.000000,-53.000000,3.141593,1237,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,432590,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503759',4503759,168.000000,2.000000,-53.000000,3.141593,1238,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,432324,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503760',4503760,160.000000,2.000000,-53.000000,3.141593,1239,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,432058,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503761',4503761,152.000000,2.000000,-53.000000,3.141593,1244,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,431792,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503762',4503762,144.000000,2.000000,-53.000000,3.141593,1257,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,431526,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503763',4503763,136.000000,2.000000,-53.000000,3.141593,1258,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,431260,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503764',4503764,128.000000,2.000000,-53.000000,3.141593,1259,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,430994,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503765',4503765,120.000000,2.000000,-53.000000,3.141593,1262,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,430728,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503766',4503766,112.000000,2.000000,-53.000000,3.141593,1263,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,430462,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503767',4503767,104.000000,2.000000,-53.000000,3.141593,1265,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,430196,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503768',4503768,96.000000,2.000000,-53.000000,3.141593,1266,0,0,0,2,6,0,0,539,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,429930,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503769',4503769,86.000000,2.000000,-53.000000,3.141593,1267,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,429664,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503770',4503770,76.000000,2.000000,-53.000000,3.141593,1268,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,429398,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503771',4503771,66.000000,2.000000,-53.000000,3.141593,1269,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,429132,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503772',4503772,54.000000,2.000000,-53.000000,3.141593,1270,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,428866,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503773',4503773,44.000000,2.000000,-53.000000,3.141593,1271,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,428600,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503774',4503774,36.000000,2.000000,-53.000000,3.141593,1273,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,428334,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503775',4503775,28.000000,2.000000,-53.000000,3.141593,1274,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,428068,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503776',4503776,18.000000,2.000000,-53.000000,3.141593,1275,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,427802,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503777',4503777,8.000000,2.000000,-53.000000,3.141593,1276,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,427536,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503778',4503778,-2.000000,2.000000,-53.000000,3.141593,1277,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,427270,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503779',4503779,-12.000000,2.000000,-53.000000,3.141593,1278,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,427004,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503780',4503780,-20.000000,2.000000,-53.000000,3.141593,1280,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,426738,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503781',4503781,-30.000000,2.000000,-53.000000,3.141593,1281,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,426472,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503782',4503782,-40.000000,2.000000,-53.000000,3.141593,1282,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,426206,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503783',4503783,-48.000000,2.000000,-53.000000,3.141593,1283,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,425940,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503784',4503784,-56.000000,2.000000,-53.000000,3.141593,1286,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,425674,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503785',4503785,-66.000000,2.000000,-53.000000,3.141593,1287,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,425408,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503786',4503786,-78.000000,2.000000,-53.000000,3.141593,1288,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,425142,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503787',4503787,-88.000000,2.000000,-53.000000,3.141593,1292,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,424876,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503788',4503788,-96.000000,2.000000,-53.000000,3.141593,1293,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,424610,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503789',4503789,-106.000000,2.000000,-53.000000,3.141593,1306,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,424344,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503790',4503790,-116.000000,2.000000,-53.000000,3.141593,1307,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,424078,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503791',4503791,-124.000000,2.000000,-53.000000,3.141593,1308,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,423812,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503792',4503792,-132.000000,2.000000,-53.000000,3.141593,1309,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,423546,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503793',4503793,-140.000000,2.000000,-53.000000,3.141593,1310,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,423280,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503794',4503794,-148.000000,2.000000,-53.000000,3.141593,1325,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,423014,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503795',4503795,-156.000000,2.000000,-53.000000,3.141593,1326,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,422748,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503796',4503796,-164.000000,2.000000,-53.000000,3.141593,1327,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,422482,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503797',4503797,-172.000000,2.000000,-53.000000,3.141593,1328,0,0,0,2,6,0,0,1230,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,422216,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503798',4503798,-180.000000,2.000000,-53.000000,3.141593,1329,0,0,0,2,6,0,0,1229,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,421950,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503799',4503799,-188.000000,2.000000,-53.000000,3.141593,1330,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,421684,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503800',4503800,196.000000,2.000000,-41.000000,3.141593,1331,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,421418,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503801',4503801,188.000000,2.000000,-41.000000,3.141593,1332,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,421152,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503802',4503802,180.000000,2.000000,-41.000000,3.141593,1333,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,420886,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503803',4503803,170.000000,2.000000,-41.000000,3.141593,1334,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,420620,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503804',4503804,160.000000,2.000000,-41.000000,3.141593,1345,0,0,0,2,6,0,0,109,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,420354,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503805',4503805,152.000000,2.000000,-41.000000,3.141593,1348,0,0,0,2,6,0,0,145,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,420088,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503806',4503806,144.000000,2.000000,-41.000000,3.141593,1349,0,0,0,2,6,0,0,146,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,419822,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503807',4503807,136.000000,2.000000,-41.000000,3.141593,1350,0,0,0,2,6,0,0,111,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,419556,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503808',4503808,128.000000,2.000000,-41.000000,3.141593,1351,0,0,0,2,6,0,0,284,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,419290,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503809',4503809,120.000000,2.000000,-41.000000,3.141593,1352,0,0,0,2,6,0,0,147,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,419024,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503810',4503810,112.000000,2.000000,-41.000000,3.141593,1353,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,418758,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503811',4503811,104.000000,2.000000,-41.000000,3.141593,1354,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,418492,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503812',4503812,96.000000,2.000000,-41.000000,3.141593,1355,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,418226,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503813',4503813,88.000000,2.000000,-41.000000,3.141593,1356,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,417960,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503814',4503814,80.000000,2.000000,-41.000000,3.141593,1357,0,0,0,2,6,0,0,438,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,417694,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503815',4503815,72.000000,2.000000,-41.000000,3.141593,1358,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,417428,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503816',4503816,64.000000,2.000000,-41.000000,3.141593,1359,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,417162,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503817',4503817,56.000000,2.000000,-41.000000,3.141593,1360,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,416896,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503818',4503818,48.000000,2.000000,-41.000000,3.141593,1361,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,416630,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503819',4503819,40.000000,2.000000,-41.000000,3.141593,1362,0,0,0,2,6,0,0,430,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,416364,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503820',4503820,32.000000,2.000000,-41.000000,3.141593,1363,0,0,0,2,6,0,0,431,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,416098,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503821',4503821,24.000000,2.000000,-41.000000,3.141593,1364,0,0,0,2,6,0,0,432,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,415832,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503822',4503822,16.000000,2.000000,-41.000000,3.141593,1365,0,0,0,2,6,0,0,433,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,415566,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503823',4503823,8.000000,2.000000,-41.000000,3.141593,1366,0,0,0,2,6,0,0,434,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,415300,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503824',4503824,-0.000000,2.000000,-41.000000,3.141593,1367,0,0,0,2,6,0,0,435,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,415034,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503825',4503825,-8.000000,2.000000,-41.000000,3.141593,1368,0,0,0,2,6,0,0,625,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,414768,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503826',4503826,-18.000000,2.000000,-41.000000,3.141593,1369,0,0,0,2,6,0,0,1202,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,414502,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503827',4503827,-28.000000,2.000000,-41.000000,3.141593,1370,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,414236,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503828',4503828,-38.000000,2.000000,-41.000000,3.141593,1371,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,413970,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503829',4503829,-48.000000,2.000000,-41.000000,3.141593,1372,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,413704,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503830',4503830,-56.000000,2.000000,-41.000000,3.141593,1391,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,413438,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503831',4503831,-64.000000,2.000000,-41.000000,3.141593,1393,0,0,0,2,6,0,0,497,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,413172,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503832',4503832,-72.000000,2.000000,-41.000000,3.141593,1394,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,412906,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503833',4503833,-80.000000,2.000000,-41.000000,3.141593,1395,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,412640,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503834',4503834,-88.000000,2.000000,-41.000000,3.141593,1396,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,412374,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503835',4503835,-96.000000,2.000000,-41.000000,3.141593,1397,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,412108,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503836',4503836,-104.000000,2.000000,-41.000000,3.141593,1398,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,411842,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503837',4503837,-112.000000,2.000000,-41.000000,3.141593,1399,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,411576,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503838',4503838,-120.000000,2.000000,-41.000000,3.141593,1400,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,411310,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503839',4503839,-128.000000,2.000000,-41.000000,3.141593,1401,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,411044,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503840',4503840,-136.000000,2.000000,-41.000000,3.141593,1402,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,410778,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503841',4503841,-144.000000,2.000000,-41.000000,3.141593,1403,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,410512,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503842',4503842,-152.000000,2.000000,-41.000000,3.141593,1404,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,410246,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503843',4503843,-160.000000,2.000000,-41.000000,3.141593,1405,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,409980,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503844',4503844,-168.000000,2.000000,-41.000000,3.141593,1406,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,409714,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503845',4503845,-178.000000,2.000000,-41.000000,3.141593,1407,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,409448,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503846',4503846,-190.000000,2.000000,-41.000000,3.141593,1408,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,409182,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503847',4503847,196.000000,2.000000,-29.000000,3.141593,1409,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,408916,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503848',4503848,188.000000,2.000000,-29.000000,3.141593,1410,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,408650,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503849',4503849,180.000000,2.000000,-29.000000,3.141593,1411,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,408384,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503850',4503850,172.000000,2.000000,-29.000000,3.141593,1412,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,408118,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503851',4503851,164.000000,2.000000,-29.000000,3.141593,1413,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,407852,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503852',4503852,154.000000,2.000000,-29.000000,3.141593,1414,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,407586,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503853',4503853,144.000000,2.000000,-29.000000,3.141593,1415,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,407320,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503854',4503854,136.000000,2.000000,-29.000000,3.141593,1416,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,407054,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503855',4503855,126.000000,2.000000,-29.000000,3.141593,1419,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,406788,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503856',4503856,114.000000,2.000000,-29.000000,3.141593,1420,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,406522,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503857',4503857,104.000000,2.000000,-29.000000,3.141593,1421,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,406256,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503858',4503858,96.000000,2.000000,-29.000000,3.141593,1424,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,405990,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619729',4619729,88.000000,2.000000,-29.000000,3.141593,1425,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,405724,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503859',4503859,80.000000,2.000000,-29.000000,3.141593,1426,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,405458,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503860',4503860,72.000000,2.000000,-29.000000,3.141593,1427,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,405192,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503861',4503861,64.000000,2.000000,-29.000000,3.141593,1428,0,0,0,2,6,0,0,602,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,404926,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503862',4503862,56.000000,2.000000,-29.000000,3.141593,1429,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,404660,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503863',4503863,48.000000,2.000000,-29.000000,3.141593,1433,0,0,0,2,6,0,0,212,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,404394,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503864',4503864,40.000000,2.000000,-29.000000,3.141593,1435,0,0,0,2,6,0,0,130,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,404128,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503865',4503865,32.000000,2.000000,-29.000000,3.141593,1436,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,403862,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503871',4503871,24.000000,2.000000,-29.000000,3.141593,1442,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,403596,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503872',4503872,16.000000,2.000000,-29.000000,3.141593,1443,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,403330,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503873',4503873,8.000000,2.000000,-29.000000,3.141593,1444,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,403064,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503874',4503874,-2.000000,2.000000,-29.000000,3.141593,1445,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,402798,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503875',4503875,-14.000000,2.000000,-29.000000,3.141593,1446,0,0,0,2,6,0,0,128,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,402532,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503876',4503876,-26.000000,2.000000,-29.000000,3.141593,1447,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,402266,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503877',4503877,-36.000000,2.000000,-29.000000,3.141593,1451,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,402000,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503878',4503878,-44.000000,2.000000,-29.000000,3.141593,1452,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,401734,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503879',4503879,-52.000000,2.000000,-29.000000,3.141593,1453,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,401468,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503880',4503880,-62.000000,2.000000,-29.000000,3.141593,1455,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,401202,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503881',4503881,-74.000000,2.000000,-29.000000,3.141593,1456,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,400936,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503882',4503882,-86.000000,2.000000,-29.000000,3.141593,1457,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,400670,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503883',4503883,-96.000000,2.000000,-29.000000,3.141593,1458,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,400404,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503884',4503884,-106.000000,2.000000,-29.000000,3.141593,1459,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,400138,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503885',4503885,-118.000000,2.000000,-29.000000,3.141593,1460,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,399872,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503886',4503886,-130.000000,2.000000,-29.000000,3.141593,1461,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,399606,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503887',4503887,-140.000000,2.000000,-29.000000,3.141593,1462,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,399340,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503888',4503888,-150.000000,2.000000,-29.000000,3.141593,1463,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,399074,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503889',4503889,-160.000000,2.000000,-29.000000,3.141593,1464,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,398808,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503890',4503890,-168.000000,2.000000,-29.000000,3.141593,1465,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,398542,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503891',4503891,-176.000000,2.000000,-29.000000,3.141593,1466,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,398276,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503892',4503892,-184.000000,2.000000,-29.000000,3.141593,1467,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,398010,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503893',4503893,-192.000000,2.000000,-29.000000,3.141593,1468,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,397744,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503894',4503894,196.000000,2.000000,-17.000000,3.141593,1469,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,397478,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503895',4503895,186.000000,2.000000,-17.000000,3.141593,1470,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,397212,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503896',4503896,174.000000,2.000000,-17.000000,3.141593,1471,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,396946,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503897',4503897,162.000000,2.000000,-17.000000,3.141593,1472,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,396680,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503898',4503898,152.000000,2.000000,-17.000000,3.141593,1473,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,396414,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503899',4503899,144.000000,2.000000,-17.000000,3.141593,1474,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,396148,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503900',4503900,136.000000,2.000000,-17.000000,3.141593,1475,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,395882,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503901',4503901,128.000000,2.000000,-17.000000,3.141593,1476,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,395616,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503902',4503902,120.000000,2.000000,-17.000000,3.141593,1477,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,395350,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503903',4503903,110.000000,2.000000,-17.000000,3.141593,1478,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,395084,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503904',4503904,100.000000,2.000000,-17.000000,3.141593,1479,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,394818,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503905',4503905,92.000000,2.000000,-17.000000,3.141593,1480,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,394552,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503906',4503906,84.000000,2.000000,-17.000000,3.141593,1481,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,394286,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503907',4503907,76.000000,2.000000,-17.000000,3.141593,1482,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,394020,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503908',4503908,66.000000,2.000000,-17.000000,3.141593,1484,0,0,0,2,6,0,0,1696,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,393754,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503909',4503909,56.000000,2.000000,-17.000000,3.141593,1485,0,0,0,2,6,0,0,1697,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,393488,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503910',4503910,48.000000,2.000000,-17.000000,3.141593,1486,0,0,0,2,6,0,0,1698,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,393222,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503911',4503911,40.000000,2.000000,-17.000000,3.141593,1487,0,0,0,2,6,0,0,1695,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,392956,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503912',4503912,32.000000,2.000000,-17.000000,3.141593,1488,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,392690,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503913',4503913,24.000000,2.000000,-17.000000,3.141593,1490,0,0,0,2,6,0,0,1691,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,392424,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503914',4503914,16.000000,2.000000,-17.000000,3.141593,1491,0,0,0,2,6,0,0,1692,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,392158,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503915',4503915,6.000000,2.000000,-17.000000,3.141593,1492,0,0,0,2,6,0,0,1693,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,391892,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503916',4503916,-4.000000,2.000000,-17.000000,3.141593,1497,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,391626,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503917',4503917,-12.000000,2.000000,-17.000000,3.141593,1498,0,0,0,2,6,0,0,1683,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,391360,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503918',4503918,-20.000000,2.000000,-17.000000,3.141593,1499,0,0,0,2,6,0,0,1684,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,391094,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503919',4503919,-28.000000,2.000000,-17.000000,3.141593,1500,0,0,0,2,6,0,0,1685,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,390828,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503920',4503920,-36.000000,2.000000,-17.000000,3.141593,1501,0,0,0,2,6,0,0,1686,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,390562,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503921',4503921,-44.000000,2.000000,-17.000000,3.141593,1502,0,0,0,2,6,0,0,1687,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,390296,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503922',4503922,-54.000000,2.000000,-17.000000,3.141593,1503,0,0,0,2,6,0,0,108,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,390030,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503923',4503923,-64.000000,2.000000,-17.000000,3.141593,1504,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,389764,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503924',4503924,-72.000000,2.000000,-17.000000,3.141593,1505,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,389498,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503925',4503925,-80.000000,2.000000,-17.000000,3.141593,1506,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,389232,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503926',4503926,-88.000000,2.000000,-17.000000,3.141593,1507,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,388966,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503927',4503927,-96.000000,2.000000,-17.000000,3.141593,1508,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,388700,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503928',4503928,-104.000000,2.000000,-17.000000,3.141593,1509,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,388434,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503929',4503929,-112.000000,2.000000,-17.000000,3.141593,1513,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,388168,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503930',4503930,-120.000000,2.000000,-17.000000,3.141593,1515,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,387902,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503931',4503931,-128.000000,2.000000,-17.000000,3.141593,1516,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,387636,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503932',4503932,-136.000000,2.000000,-17.000000,3.141593,1522,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,387370,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503933',4503933,-144.000000,2.000000,-17.000000,3.141593,1523,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,387104,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503934',4503934,-152.000000,2.000000,-17.000000,3.141593,1524,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,386838,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503935',4503935,-160.000000,2.000000,-17.000000,3.141593,1525,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,386572,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503936',4503936,-168.000000,2.000000,-17.000000,3.141593,1527,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,386306,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503937',4503937,-176.000000,2.000000,-17.000000,3.141593,1528,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,386040,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503938',4503938,-184.000000,2.000000,-17.000000,3.141593,1529,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,385774,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503939',4503939,-192.000000,2.000000,-17.000000,3.141593,1533,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,385508,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503940',4503940,196.000000,2.000000,-5.000000,3.141593,1534,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,385242,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503941',4503941,188.000000,2.000000,-5.000000,3.141593,1535,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,384976,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503942',4503942,180.000000,2.000000,-5.000000,3.141593,1536,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,384710,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503943',4503943,172.000000,2.000000,-5.000000,3.141593,1537,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,384444,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503944',4503944,164.000000,2.000000,-5.000000,3.141593,1538,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,384178,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503945',4503945,156.000000,2.000000,-5.000000,3.141593,1539,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,383912,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503946',4503946,146.000000,2.000000,-5.000000,3.141593,1540,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,383646,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503947',4503947,134.000000,2.000000,-5.000000,3.141593,1541,0,0,0,2,6,0,0,1397,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,383380,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503948',4503948,124.000000,2.000000,-5.000000,3.141593,1542,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,383114,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503949',4503949,116.000000,2.000000,-5.000000,3.141593,1543,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,382848,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503950',4503950,108.000000,2.000000,-5.000000,3.141593,1544,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,382582,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503951',4503951,100.000000,2.000000,-5.000000,3.141593,1545,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,382316,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503952',4503952,90.000000,2.000000,-5.000000,3.141593,1546,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,382050,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503953',4503953,80.000000,2.000000,-5.000000,3.141593,1547,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,381784,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503954',4503954,72.000000,2.000000,-5.000000,3.141593,1548,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,381518,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503955',4503955,64.000000,2.000000,-5.000000,3.141593,1549,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,381252,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503956',4503956,56.000000,2.000000,-5.000000,3.141593,1550,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,380986,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503957',4503957,48.000000,2.000000,-5.000000,3.141593,1551,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,380720,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503958',4503958,40.000000,2.000000,-5.000000,3.141593,1552,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,380454,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503959',4503959,32.000000,2.000000,-5.000000,3.141593,1553,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,380188,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503960',4503960,22.000000,2.000000,-5.000000,3.141593,1554,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,379922,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503961',4503961,12.000000,2.000000,-5.000000,3.141593,1555,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,379656,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503962',4503962,2.000000,2.000000,-5.000000,3.141593,1556,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,379390,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503963',4503963,-8.000000,2.000000,-5.000000,3.141593,1559,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,379124,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503964',4503964,-16.000000,2.000000,-5.000000,3.141593,1563,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,378858,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503965',4503965,-24.000000,2.000000,-5.000000,3.141593,1564,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,378592,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503966',4503966,-32.000000,2.000000,-5.000000,3.141593,1565,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,378326,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503967',4503967,-40.000000,2.000000,-5.000000,3.141593,1566,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,378060,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503968',4503968,-48.000000,2.000000,-5.000000,3.141593,1567,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,377794,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503969',4503969,-56.000000,2.000000,-5.000000,3.141593,1568,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,377528,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503970',4503970,-64.000000,2.000000,-5.000000,3.141593,1569,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,377262,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503971',4503971,-72.000000,2.000000,-5.000000,3.141593,1570,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,376996,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503972',4503972,-80.000000,2.000000,-5.000000,3.141593,1571,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,376730,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503973',4503973,-88.000000,2.000000,-5.000000,3.141593,1572,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,376464,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503974',4503974,-96.000000,2.000000,-5.000000,3.141593,1573,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,376198,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503975',4503975,-104.000000,2.000000,-5.000000,3.141593,1574,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,375932,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503976',4503976,-114.000000,2.000000,-5.000000,3.141593,1575,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,375666,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503977',4503977,-124.000000,2.000000,-5.000000,3.141593,1576,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,375400,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503978',4503978,-132.000000,2.000000,-5.000000,3.141593,1577,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,375134,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503979',4503979,-140.000000,2.000000,-5.000000,3.141593,1578,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,374868,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503980',4503980,-148.000000,2.000000,-5.000000,3.141593,1579,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,374602,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503981',4503981,-156.000000,2.000000,-5.000000,3.141593,1580,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,374336,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503982',4503982,-164.000000,2.000000,-5.000000,3.141593,1581,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,374070,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503983',4503983,-172.000000,2.000000,-5.000000,3.141593,1582,0,0,0,2,6,0,0,727,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,373804,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503984',4503984,-180.000000,2.000000,-5.000000,3.141593,1583,0,0,0,2,6,0,0,697,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,373538,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503985',4503985,-188.000000,2.000000,-5.000000,3.141593,1584,0,0,0,2,6,0,0,700,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,373272,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503986',4503986,194.000000,2.000000,7.000000,3.141593,1585,0,0,0,2,6,0,0,2063,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,373006,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503987',4503987,184.000000,2.000000,7.000000,3.141593,1589,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,372740,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503988',4503988,176.000000,2.000000,7.000000,3.141593,1590,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,372474,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503989',4503989,168.000000,2.000000,7.000000,3.141593,1592,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,372208,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503990',4503990,160.000000,2.000000,7.000000,3.141593,1593,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,371942,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503991',4503991,152.000000,2.000000,7.000000,3.141593,1595,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,371676,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503992',4503992,144.000000,2.000000,7.000000,3.141593,1596,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,371410,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503993',4503993,136.000000,2.000000,7.000000,3.141593,1597,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,371144,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503994',4503994,128.000000,2.000000,7.000000,3.141593,1598,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,370878,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503995',4503995,120.000000,2.000000,7.000000,3.141593,1599,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,370612,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503996',4503996,112.000000,2.000000,7.000000,3.141593,1601,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,370346,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503997',4503997,102.000000,2.000000,7.000000,3.141593,1606,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,370080,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503998',4503998,92.000000,2.000000,7.000000,3.141593,1607,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,369814,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4503999',4503999,84.000000,2.000000,7.000000,3.141593,1608,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,369548,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504000',4504000,76.000000,2.000000,7.000000,3.141593,1609,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,369282,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504001',4504001,68.000000,2.000000,7.000000,3.141593,1610,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,369016,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504002',4504002,60.000000,2.000000,7.000000,3.141593,1611,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,368750,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504003',4504003,50.000000,2.000000,7.000000,3.141593,1612,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,368484,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504004',4504004,40.000000,2.000000,7.000000,3.141593,1613,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,368218,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504005',4504005,32.000000,2.000000,7.000000,3.141593,1614,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,367952,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504006',4504006,24.000000,2.000000,7.000000,3.141593,1615,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,367686,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504007',4504007,16.000000,2.000000,7.000000,3.141593,1616,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,367420,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504008',4504008,8.000000,2.000000,7.000000,3.141593,1617,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,367154,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504009',4504009,-0.000000,2.000000,7.000000,3.141593,1618,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,366888,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504010',4504010,-8.000000,2.000000,7.000000,3.141593,1619,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,366622,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504011',4504011,-16.000000,2.000000,7.000000,3.141593,1620,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,366356,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504012',4504012,-24.000000,2.000000,7.000000,3.141593,1621,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,366090,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504013',4504013,-32.000000,2.000000,7.000000,3.141593,1622,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,365824,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504014',4504014,-40.000000,2.000000,7.000000,3.141593,1623,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,365558,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504015',4504015,-48.000000,2.000000,7.000000,3.141593,1624,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,365292,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504016',4504016,-56.000000,2.000000,7.000000,3.141593,1625,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,365026,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504017',4504017,-64.000000,2.000000,7.000000,3.141593,1626,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,364760,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504018',4504018,-72.000000,2.000000,7.000000,3.141593,1627,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,364494,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504019',4504019,-80.000000,2.000000,7.000000,3.141593,1628,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,364228,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504020',4504020,-88.000000,2.000000,7.000000,3.141593,1629,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,363962,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504021',4504021,-96.000000,2.000000,7.000000,3.141593,1630,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,363696,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504022',4504022,-104.000000,2.000000,7.000000,3.141593,1631,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,363430,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504023',4504023,-112.000000,2.000000,7.000000,3.141593,1632,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,363164,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504024',4504024,-120.000000,2.000000,7.000000,3.141593,1633,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,362898,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504025',4504025,-128.000000,2.000000,7.000000,3.141593,1634,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,362632,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504026',4504026,-138.000000,2.000000,7.000000,3.141593,1655,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,362366,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504027',4504027,-150.000000,2.000000,7.000000,3.141593,1657,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,362100,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504028',4504028,-160.000000,2.000000,7.000000,3.141593,1658,0,0,0,2,6,0,0,702,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,361834,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504029',4504029,-168.000000,2.000000,7.000000,3.141593,1659,0,0,0,2,6,0,0,1909,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,361568,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504030',4504030,-176.000000,2.000000,7.000000,3.141593,1660,0,0,0,2,6,0,0,1910,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,361302,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504031',4504031,-184.000000,2.000000,7.000000,3.141593,1662,0,0,0,2,6,0,0,1420,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,361036,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504032',4504032,-194.000000,2.000000,7.000000,3.141593,1674,0,0,0,2,6,0,0,1913,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,360770,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504033',4504033,196.000000,2.000000,19.000000,3.141593,1677,0,0,0,2,6,0,0,1914,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,360504,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504034',4504034,188.000000,2.000000,19.000000,3.141593,1678,0,0,0,2,6,0,0,1915,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,360238,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504035',4504035,180.000000,2.000000,19.000000,3.141593,1679,0,0,0,2,6,0,0,1916,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,359972,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504036',4504036,172.000000,2.000000,19.000000,3.141593,1680,0,0,0,2,6,0,0,1917,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,359706,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504037',4504037,164.000000,2.000000,19.000000,3.141593,1681,0,0,0,2,6,0,0,56,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,359440,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504038',4504038,156.000000,2.000000,19.000000,3.141593,1682,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,359174,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504039',4504039,148.000000,2.000000,19.000000,3.141593,1683,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,358908,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504040',4504040,138.000000,2.000000,19.000000,3.141593,1684,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,358642,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504041',4504041,128.000000,2.000000,19.000000,3.141593,1685,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,358376,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504042',4504042,120.000000,2.000000,19.000000,3.141593,1686,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,358110,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504043',4504043,112.000000,2.000000,19.000000,3.141593,1687,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,357844,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504044',4504044,104.000000,2.000000,19.000000,3.141593,1691,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,357578,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504045',4504045,96.000000,2.000000,19.000000,3.141593,1692,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,357312,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504046',4504046,88.000000,2.000000,19.000000,3.141593,1693,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,357046,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504047',4504047,80.000000,2.000000,19.000000,3.141593,1694,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,356780,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504048',4504048,72.000000,2.000000,19.000000,3.141593,1695,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,356514,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504049',4504049,64.000000,2.000000,19.000000,3.141593,1696,0,0,0,2,6,0,0,1926,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,356248,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504050',4504050,54.000000,2.000000,19.000000,3.141593,1697,0,0,0,2,6,0,0,2161,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,355982,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504051',4504051,42.000000,2.000000,19.000000,3.141593,1698,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,355716,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504052',4504052,30.000000,2.000000,19.000000,3.141593,1699,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,355450,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504053',4504053,20.000000,2.000000,19.000000,3.141593,1700,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,355184,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504054',4504054,10.000000,2.000000,19.000000,3.141593,1701,0,0,0,2,6,0,0,1927,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,354918,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504055',4504055,-0.000000,2.000000,19.000000,3.141593,1702,0,0,0,2,6,0,0,1450,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,354652,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504056',4504056,-8.000000,2.000000,19.000000,3.141593,1703,0,0,0,2,6,0,0,213,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,354386,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504057',4504057,-16.000000,2.000000,19.000000,3.141593,1704,0,0,0,2,6,0,0,1451,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,354120,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504058',4504058,-24.000000,2.000000,19.000000,3.141593,1705,0,0,0,2,6,0,0,1929,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,353854,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504059',4504059,-32.000000,2.000000,19.000000,3.141593,1709,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,353588,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504060',4504060,-40.000000,2.000000,19.000000,3.141593,1710,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,353322,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504061',4504061,-48.000000,2.000000,19.000000,3.141593,1711,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,353056,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504062',4504062,-56.000000,2.000000,19.000000,3.141593,1712,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,352790,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504063',4504063,-64.000000,2.000000,19.000000,3.141593,1713,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,352524,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504064',4504064,-72.000000,2.000000,19.000000,3.141593,1714,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,352258,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504065',4504065,-80.000000,2.000000,19.000000,3.141593,1715,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,351992,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504066',4504066,-88.000000,2.000000,19.000000,3.141593,1716,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,351726,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504067',4504067,-98.000000,2.000000,19.000000,3.141593,1719,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,351460,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504068',4504068,-110.000000,2.000000,19.000000,3.141593,1720,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,351194,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504069',4504069,-120.000000,2.000000,19.000000,3.141593,1721,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,350928,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504070',4504070,-128.000000,2.000000,19.000000,3.141593,1722,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,350662,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504071',4504071,-136.000000,2.000000,19.000000,3.141593,1725,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,350396,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504072',4504072,-144.000000,2.000000,19.000000,3.141593,1728,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,350130,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504073',4504073,-154.000000,2.000000,19.000000,3.141593,1737,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,349864,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504074',4504074,-164.000000,2.000000,19.000000,3.141593,1740,0,0,0,2,6,0,0,1688,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,349598,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504075',4504075,-174.000000,2.000000,19.000000,3.141593,1741,0,0,0,2,6,0,0,1942,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,349332,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504076',4504076,-184.000000,2.000000,19.000000,3.141593,1742,0,0,0,2,6,0,0,1943,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,349066,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504077',4504077,-192.000000,2.000000,19.000000,3.141593,1743,0,0,0,2,6,0,0,1916,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,348800,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504078',4504078,196.000000,2.000000,31.000000,3.141593,1744,0,0,0,2,6,0,0,1945,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,348534,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504079',4504079,186.000000,2.000000,31.000000,3.141593,1747,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,348268,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504080',4504080,176.000000,2.000000,31.000000,3.141593,1748,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,348002,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504081',4504081,166.000000,2.000000,31.000000,3.141593,1749,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,347736,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504082',4504082,156.000000,2.000000,31.000000,3.141593,1753,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,347470,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504083',4504083,148.000000,2.000000,31.000000,3.141593,1754,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,347204,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504084',4504084,140.000000,2.000000,31.000000,3.141593,1755,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,346938,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504085',4504085,132.000000,2.000000,31.000000,3.141593,1756,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,346672,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504086',4504086,124.000000,2.000000,31.000000,3.141593,1757,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,346406,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504087',4504087,116.000000,2.000000,31.000000,3.141593,1758,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,346140,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504088',4504088,108.000000,2.000000,31.000000,3.141593,1759,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,345874,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504089',4504089,100.000000,2.000000,31.000000,3.141593,1760,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,345608,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504090',4504090,92.000000,2.000000,31.000000,3.141593,1761,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,345342,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504091',4504091,84.000000,2.000000,31.000000,3.141593,1762,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,345076,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504092',4504092,76.000000,2.000000,31.000000,3.141593,1763,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,344810,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504093',4504093,68.000000,2.000000,31.000000,3.141593,1764,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,344544,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504094',4504094,60.000000,2.000000,31.000000,3.141593,1765,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,344278,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504095',4504095,52.000000,2.000000,31.000000,3.141593,1766,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,344012,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504096',4504096,44.000000,2.000000,31.000000,3.141593,1767,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,343746,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504097',4504097,36.000000,2.000000,31.000000,3.141593,1768,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,343480,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504098',4504098,28.000000,2.000000,31.000000,3.141593,1770,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,343214,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504099',4504099,20.000000,2.000000,31.000000,3.141593,1771,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,342948,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504100',4504100,12.000000,2.000000,31.000000,3.141593,1772,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,342682,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504101',4504101,4.000000,2.000000,31.000000,3.141593,1779,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,342416,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504102',4504102,-6.000000,2.000000,31.000000,3.141593,1780,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,342150,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504103',4504103,-18.000000,2.000000,31.000000,3.141593,1781,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,341884,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504104',4504104,-28.000000,2.000000,31.000000,3.141593,1782,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,341618,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504105',4504105,-36.000000,2.000000,31.000000,3.141593,1783,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,341352,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504106',4504106,-44.000000,2.000000,31.000000,3.141593,1784,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,341086,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504107',4504107,-54.000000,2.000000,31.000000,3.141593,1785,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,340820,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504108',4504108,-66.000000,2.000000,31.000000,3.141593,1786,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,340554,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504109',4504109,-78.000000,2.000000,31.000000,3.141593,1787,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,340288,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504110',4504110,-88.000000,2.000000,31.000000,3.141593,1788,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,340022,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504111',4504111,-96.000000,2.000000,31.000000,3.141593,1789,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,339756,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504112',4504112,-104.000000,2.000000,31.000000,3.141593,1790,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,339490,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504113',4504113,-112.000000,2.000000,31.000000,3.141593,1791,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,339224,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504114',4504114,-120.000000,2.000000,31.000000,3.141593,1792,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,338958,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504115',4504115,-130.000000,2.000000,31.000000,3.141593,1793,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,338692,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504116',4504116,-142.000000,2.000000,31.000000,3.141593,1794,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,338426,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504117',4504117,-152.000000,2.000000,31.000000,3.141593,1795,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,338160,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504118',4504118,-160.000000,2.000000,31.000000,3.141593,1796,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,337894,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504119',4504119,-170.000000,2.000000,31.000000,3.141593,1797,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,337628,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504120',4504120,-182.000000,2.000000,31.000000,3.141593,1798,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,337362,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504121',4504121,-194.000000,2.000000,31.000000,3.141593,1799,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,337096,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504122',4504122,194.000000,2.000000,43.000000,3.141593,1800,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,336830,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504123',4504123,184.000000,2.000000,43.000000,3.141593,1801,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,336564,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504124',4504124,176.000000,2.000000,43.000000,3.141593,1802,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,336298,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504125',4504125,168.000000,2.000000,43.000000,3.141593,1803,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,336032,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504126',4504126,160.000000,2.000000,43.000000,3.141593,1804,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,335766,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504127',4504127,152.000000,2.000000,43.000000,3.141593,1805,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,335500,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504128',4504128,144.000000,2.000000,43.000000,3.141593,1806,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,335234,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504129',4504129,136.000000,2.000000,43.000000,3.141593,1807,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,334968,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504130',4504130,128.000000,2.000000,43.000000,3.141593,1808,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,334702,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504131',4504131,120.000000,2.000000,43.000000,3.141593,1809,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,334436,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504132',4504132,112.000000,2.000000,43.000000,3.141593,1810,0,0,0,2,6,0,0,1623,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,334170,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504133',4504133,104.000000,2.000000,43.000000,3.141593,1811,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,333904,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504134',4504134,94.000000,2.000000,43.000000,3.141593,1812,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,333638,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504135',4504135,84.000000,2.000000,43.000000,3.141593,1813,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,333372,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504136',4504136,76.000000,2.000000,43.000000,3.141593,1814,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,333106,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504137',4504137,68.000000,2.000000,43.000000,3.141593,1815,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,332840,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504138',4504138,60.000000,2.000000,43.000000,3.141593,1816,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,332574,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504139',4504139,52.000000,2.000000,43.000000,3.141593,1817,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,332308,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504140',4504140,44.000000,2.000000,43.000000,3.141593,1818,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,332042,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504141',4504141,36.000000,2.000000,43.000000,3.141593,1819,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,331776,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504142',4504142,28.000000,2.000000,43.000000,3.141593,1820,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,331510,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504143',4504143,20.000000,2.000000,43.000000,3.141593,1821,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,331244,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504144',4504144,12.000000,2.000000,43.000000,3.141593,1822,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,330978,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504145',4504145,2.000000,2.000000,43.000000,3.141593,1823,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,330712,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504146',4504146,-10.000000,2.000000,43.000000,3.141593,1824,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,330446,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504147',4504147,-20.000000,2.000000,43.000000,3.141593,1825,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,330180,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504148',4504148,-28.000000,2.000000,43.000000,3.141593,1826,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,329914,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504149',4504149,-36.000000,2.000000,43.000000,3.141593,1827,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,329648,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504150',4504150,-46.000000,2.000000,43.000000,3.141593,1831,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,329382,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504151',4504151,-56.000000,2.000000,43.000000,3.141593,1832,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,329116,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504152',4504152,-64.000000,2.000000,43.000000,3.141593,1833,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,328850,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504153',4504153,-72.000000,2.000000,43.000000,3.141593,1834,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,328584,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504154',4504154,-80.000000,2.000000,43.000000,3.141593,1835,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,328318,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504155',4504155,-90.000000,2.000000,43.000000,3.141593,1836,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,328052,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504156',4504156,-100.000000,2.000000,43.000000,3.141593,1837,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,327786,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504157',4504157,-108.000000,2.000000,43.000000,3.141593,1838,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,327520,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504158',4504158,-116.000000,2.000000,43.000000,3.141593,1840,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,327254,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504159',4504159,-124.000000,2.000000,43.000000,3.141593,1841,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,326988,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504160',4504160,-132.000000,2.000000,43.000000,3.141593,1842,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,326722,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504161',4504161,-140.000000,2.000000,43.000000,3.141593,1843,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,326456,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504162',4504162,-148.000000,2.000000,43.000000,3.141593,1844,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,326190,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504163',4504163,-156.000000,2.000000,43.000000,3.141593,1845,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,325924,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504164',4504164,-164.000000,2.000000,43.000000,3.141593,1846,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,325658,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504165',4504165,-172.000000,2.000000,43.000000,3.141593,1847,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,325392,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504166',4504166,-180.000000,2.000000,43.000000,3.141593,1848,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,325126,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504167',4504167,-188.000000,2.000000,43.000000,3.141593,1849,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,324860,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504168',4504168,196.000000,2.000000,55.000000,3.141593,1850,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,324594,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504169',4504169,188.000000,2.000000,55.000000,3.141593,1851,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,324328,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504170',4504170,180.000000,2.000000,55.000000,3.141593,1852,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,324062,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504171',4504171,172.000000,2.000000,55.000000,3.141593,1853,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,323796,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504172',4504172,164.000000,2.000000,55.000000,3.141593,1854,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,323530,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504173',4504173,156.000000,2.000000,55.000000,3.141593,1856,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,323264,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504174',4504174,148.000000,2.000000,55.000000,3.141593,1857,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,322998,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504175',4504175,140.000000,2.000000,55.000000,3.141593,1858,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,322732,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504176',4504176,132.000000,2.000000,55.000000,3.141593,1859,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,322466,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504177',4504177,124.000000,2.000000,55.000000,3.141593,1860,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,322200,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504178',4504178,116.000000,2.000000,55.000000,3.141593,1861,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,321934,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504179',4504179,108.000000,2.000000,55.000000,3.141593,1862,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,321668,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504180',4504180,100.000000,2.000000,55.000000,3.141593,1863,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,321402,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504181',4504181,92.000000,2.000000,55.000000,3.141593,1877,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,321136,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504182',4504182,84.000000,2.000000,55.000000,3.141593,1878,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,320870,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504183',4504183,74.000000,2.000000,55.000000,3.141593,1879,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,320604,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504184',4504184,62.000000,2.000000,55.000000,3.141593,1883,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,320338,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504185',4504185,50.000000,2.000000,55.000000,3.141593,1884,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,320072,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504186',4504186,40.000000,2.000000,55.000000,3.141593,1885,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,319806,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504187',4504187,30.000000,2.000000,55.000000,3.141593,1886,0,0,0,2,6,0,0,1975,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,319540,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504188',4504188,18.000000,2.000000,55.000000,3.141593,1887,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,319274,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504189',4504189,6.000000,2.000000,55.000000,3.141593,1888,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,319008,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504190',4504190,-4.000000,2.000000,55.000000,3.141593,1889,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,318742,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504191',4504191,-14.000000,2.000000,55.000000,3.141593,1890,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,318476,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504192',4504192,-24.000000,2.000000,55.000000,3.141593,1891,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,318210,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504193',4504193,-32.000000,2.000000,55.000000,3.141593,1892,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,317944,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504194',4504194,-40.000000,2.000000,55.000000,3.141593,1893,0,0,0,2,6,0,0,1981,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,317678,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504195',4504195,-48.000000,2.000000,55.000000,3.141593,1894,0,0,0,2,6,0,0,1982,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,317412,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504196',4504196,-56.000000,2.000000,55.000000,3.141593,1899,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,317146,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504197',4504197,-66.000000,2.000000,55.000000,3.141593,1900,0,0,0,2,6,0,0,1986,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,316880,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504198',4504198,-76.000000,2.000000,55.000000,3.141593,1901,0,0,0,2,6,0,0,1987,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,316614,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504199',4504199,-86.000000,2.000000,55.000000,3.141593,1904,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,316348,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504200',4504200,-96.000000,2.000000,55.000000,3.141593,1908,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,316082,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504201',4504201,-104.000000,2.000000,55.000000,3.141593,1909,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,315816,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504202',4504202,-114.000000,2.000000,55.000000,3.141593,1910,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,315550,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504203',4504203,-124.000000,2.000000,55.000000,3.141593,1911,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,315284,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504204',4504204,-132.000000,2.000000,55.000000,3.141593,1912,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,315018,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504205',4504205,-140.000000,2.000000,55.000000,3.141593,1913,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,314752,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504206',4504206,-150.000000,2.000000,55.000000,3.141593,1914,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,314486,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504207',4504207,-162.000000,2.000000,55.000000,3.141593,1915,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,314220,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504208',4504208,-172.000000,2.000000,55.000000,3.141593,1916,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,313954,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504209',4504209,-182.000000,2.000000,55.000000,3.141593,1917,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,313688,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504210',4504210,-192.000000,2.000000,55.000000,3.141593,1918,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,313422,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504211',4504211,194.000000,2.000000,67.000000,3.141593,1919,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,313156,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504212',4504212,182.000000,2.000000,67.000000,3.141593,1920,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,312890,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504213',4504213,172.000000,2.000000,67.000000,3.141593,1921,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,312624,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504214',4504214,164.000000,2.000000,67.000000,3.141593,1922,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,312358,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504215',4504215,156.000000,2.000000,67.000000,3.141593,1925,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,312092,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504216',4504216,148.000000,2.000000,67.000000,3.141593,1926,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,311826,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504217',4504217,140.000000,2.000000,67.000000,3.141593,1928,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,311560,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504218',4504218,130.000000,2.000000,67.000000,3.141593,1929,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,311294,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504219',4504219,118.000000,2.000000,67.000000,3.141593,1930,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,311028,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504220',4504220,108.000000,2.000000,67.000000,3.141593,1931,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,310762,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504221',4504221,100.000000,2.000000,67.000000,3.141593,1932,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,310496,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504222',4504222,92.000000,2.000000,67.000000,3.141593,1933,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,310230,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504223',4504223,84.000000,2.000000,67.000000,3.141593,1934,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,309964,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504224',4504224,76.000000,2.000000,67.000000,3.141593,1937,0,0,0,2,6,0,0,2043,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,309698,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504225',4504225,68.000000,2.000000,67.000000,3.141593,1938,0,0,0,2,6,0,0,2044,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,309432,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504226',4504226,60.000000,2.000000,67.000000,3.141593,1939,0,0,0,2,6,0,0,2045,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,309166,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504227',4504227,52.000000,2.000000,67.000000,3.141593,1943,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,308900,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504228',4504228,44.000000,2.000000,67.000000,3.141593,1944,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,308634,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504229',4504229,36.000000,2.000000,67.000000,3.141593,1945,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,308368,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504230',4504230,28.000000,2.000000,67.000000,3.141593,1948,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,308102,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504231',4504231,20.000000,2.000000,67.000000,3.141593,1949,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,307836,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504232',4504232,12.000000,2.000000,67.000000,3.141593,1950,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,307570,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504233',4504233,2.000000,2.000000,67.000000,3.141593,1958,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,307304,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504234',4504234,-8.000000,2.000000,67.000000,3.141593,1959,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,307038,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504235',4504235,-16.000000,2.000000,67.000000,3.141593,1960,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,306772,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504236',4504236,-26.000000,2.000000,67.000000,3.141593,1961,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,306506,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504237',4504237,-36.000000,2.000000,67.000000,3.141593,1962,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,306240,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504238',4504238,-44.000000,2.000000,67.000000,3.141593,1963,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,305974,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504239',4504239,-52.000000,2.000000,67.000000,3.141593,1964,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,305708,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504240',4504240,-60.000000,2.000000,67.000000,3.141593,1965,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,305442,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504241',4504241,-70.000000,2.000000,67.000000,3.141593,1966,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,305176,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504242',4504242,-80.000000,2.000000,67.000000,3.141593,1969,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,304910,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504243',4504243,-88.000000,2.000000,67.000000,3.141593,1970,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,304644,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504244',4504244,-98.000000,2.000000,67.000000,3.141593,1971,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,304378,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504245',4504245,-110.000000,2.000000,67.000000,3.141593,1972,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,304112,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504246',4504246,-120.000000,2.000000,67.000000,3.141593,1973,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,303846,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504247',4504247,-130.000000,2.000000,67.000000,3.141593,1974,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,303580,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504248',4504248,-142.000000,2.000000,67.000000,3.141593,1975,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,303314,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504249',4504249,-152.000000,2.000000,67.000000,3.141593,1976,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,303048,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504250',4504250,-160.000000,2.000000,67.000000,3.141593,1977,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,302782,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504251',4504251,-168.000000,2.000000,67.000000,3.141593,1978,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,302516,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504252',4504252,-176.000000,2.000000,67.000000,3.141593,1979,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,302250,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504253',4504253,-184.000000,2.000000,67.000000,3.141593,1980,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,301984,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504254',4504254,-194.000000,2.000000,67.000000,3.141593,1981,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,301718,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504255',4504255,196.000000,2.000000,79.000000,3.141593,1993,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,301452,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504256',4504256,188.000000,2.000000,79.000000,3.141593,1994,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,301186,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504257',4504257,180.000000,2.000000,79.000000,3.141593,1996,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,300920,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504258',4504258,172.000000,2.000000,79.000000,3.141593,1997,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,300654,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504259',4504259,164.000000,2.000000,79.000000,3.141593,1998,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,300388,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504260',4504260,156.000000,2.000000,79.000000,3.141593,1999,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,300122,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504261',4504261,148.000000,2.000000,79.000000,3.141593,2000,0,0,0,2,6,0,0,2174,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,299856,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504262',4504262,140.000000,2.000000,79.000000,3.141593,2001,0,0,0,2,6,0,0,1479,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,299590,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504263',4504263,132.000000,2.000000,79.000000,3.141593,2002,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,299324,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504264',4504264,124.000000,2.000000,79.000000,3.141593,2003,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,299058,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504265',4504265,116.000000,2.000000,79.000000,3.141593,2004,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,298792,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504266',4504266,106.000000,2.000000,79.000000,3.141593,2005,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,298526,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504267',4504267,96.000000,2.000000,79.000000,3.141593,2006,0,0,0,2,6,0,0,1465,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,298260,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504268',4504268,86.000000,2.000000,79.000000,3.141593,2007,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,297994,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504269',4504269,76.000000,2.000000,79.000000,3.141593,2008,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,297728,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504270',4504270,68.000000,2.000000,79.000000,3.141593,2009,0,0,0,2,6,0,0,1459,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,297462,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504271',4504271,60.000000,2.000000,79.000000,3.141593,2010,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,297196,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504272',4504272,52.000000,2.000000,79.000000,3.141593,2011,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,296930,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504273',4504273,44.000000,2.000000,79.000000,3.141593,2012,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,296664,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504274',4504274,36.000000,2.000000,79.000000,3.141593,2013,0,0,0,2,6,0,0,1471,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,296398,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504275',4504275,28.000000,2.000000,79.000000,3.141593,2014,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,296132,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504276',4504276,20.000000,2.000000,79.000000,3.141593,2015,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,295866,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504277',4504277,12.000000,2.000000,79.000000,3.141593,2016,0,0,0,2,6,0,0,1474,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,295600,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504278',4504278,4.000000,2.000000,79.000000,3.141593,2017,0,0,0,2,6,0,0,1475,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,295334,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504279',4504279,-4.000000,2.000000,79.000000,3.141593,2018,0,0,0,2,6,0,0,1477,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,295068,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504280',4504280,-12.000000,2.000000,79.000000,3.141593,2019,0,0,0,2,6,0,0,1476,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,294802,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504281',4504281,-22.000000,2.000000,79.000000,3.141593,2020,0,0,0,2,6,0,0,1478,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,294536,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504282',4504282,-34.000000,2.000000,79.000000,3.141593,2021,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,294270,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504283',4504283,-44.000000,2.000000,79.000000,3.141593,2022,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,294004,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504284',4504284,-54.000000,2.000000,79.000000,3.141593,2023,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,293738,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504285',4504285,-64.000000,2.000000,79.000000,3.141593,2024,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,293472,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504286',4504286,-72.000000,2.000000,79.000000,3.141593,2025,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,293206,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504287',4504287,-80.000000,2.000000,79.000000,3.141593,2026,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,292940,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504288',4504288,-90.000000,2.000000,79.000000,3.141593,2031,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,292674,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504289',4504289,-100.000000,2.000000,79.000000,3.141593,2032,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,292408,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504290',4504290,-108.000000,2.000000,79.000000,3.141593,2033,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,292142,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504291',4504291,-118.000000,2.000000,79.000000,3.141593,2034,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,291876,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504292',4504292,-128.000000,2.000000,79.000000,3.141593,2035,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,291610,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504293',4504293,-136.000000,2.000000,79.000000,3.141593,2036,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,291344,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504294',4504294,-144.000000,2.000000,79.000000,3.141593,2037,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,291078,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504295',4504295,-154.000000,2.000000,79.000000,3.141593,2038,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,290812,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504296',4504296,-166.000000,2.000000,79.000000,3.141593,2039,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,290546,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504297',4504297,-178.000000,2.000000,79.000000,3.141593,2040,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,290280,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504298',4504298,-188.000000,2.000000,79.000000,3.141593,2041,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,290014,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504299',4504299,196.000000,2.000000,91.000000,3.141593,2042,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,289748,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504300',4504300,188.000000,2.000000,91.000000,3.141593,2043,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,289482,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504301',4504301,180.000000,2.000000,91.000000,3.141593,2046,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,289216,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504302',4504302,172.000000,2.000000,91.000000,3.141593,2047,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,288950,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504303',4504303,164.000000,2.000000,91.000000,3.141593,2049,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,288684,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504304',4504304,156.000000,2.000000,91.000000,3.141593,2056,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,288418,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504305',4504305,148.000000,2.000000,91.000000,3.141593,2062,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,288152,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504306',4504306,140.000000,2.000000,91.000000,3.141593,2065,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,287886,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504307',4504307,132.000000,2.000000,91.000000,3.141593,2066,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,287620,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504308',4504308,124.000000,2.000000,91.000000,3.141593,2068,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,287354,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504309',4504309,116.000000,2.000000,91.000000,3.141593,2069,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,287088,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504310',4504310,108.000000,2.000000,91.000000,3.141593,2070,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,286822,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504311',4504311,100.000000,2.000000,91.000000,3.141593,2076,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,286556,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504312',4504312,92.000000,2.000000,91.000000,3.141593,2077,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,286290,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504313',4504313,82.000000,2.000000,91.000000,3.141593,2081,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,286024,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504314',4504314,70.000000,2.000000,91.000000,3.141593,2082,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,285758,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504315',4504315,58.000000,2.000000,91.000000,3.141593,2083,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,285492,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504316',4504316,48.000000,2.000000,91.000000,3.141593,2084,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,285226,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504317',4504317,40.000000,2.000000,91.000000,3.141593,2085,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,284960,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504318',4504318,32.000000,2.000000,91.000000,3.141593,2086,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,284694,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504319',4504319,22.000000,2.000000,91.000000,3.141593,2087,0,0,0,2,6,0,0,1641,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,284428,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504320',4504320,12.000000,2.000000,91.000000,3.141593,2088,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,284162,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504321',4504321,4.000000,2.000000,91.000000,3.141593,2089,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,283896,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504322',4504322,-4.000000,2.000000,91.000000,3.141593,2090,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,283630,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504323',4504323,-12.000000,2.000000,91.000000,3.141593,2091,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,283364,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504324',4504324,-20.000000,2.000000,91.000000,3.141593,2092,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,283098,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504325',4504325,-28.000000,2.000000,91.000000,3.141593,2093,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,282832,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504326',4504326,-36.000000,2.000000,91.000000,3.141593,2094,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,282566,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504327',4504327,-44.000000,2.000000,91.000000,3.141593,2104,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,282300,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504328',4504328,-52.000000,2.000000,91.000000,3.141593,2107,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,282034,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504329',4504329,-60.000000,2.000000,91.000000,3.141593,2108,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,281768,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504330',4504330,-68.000000,2.000000,91.000000,3.141593,2109,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,281502,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504331',4504331,-76.000000,2.000000,91.000000,3.141593,2110,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,281236,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504332',4504332,-84.000000,2.000000,91.000000,3.141593,2111,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,280970,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504333',4504333,-92.000000,2.000000,91.000000,3.141593,2113,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,280704,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504334',4504334,-100.000000,2.000000,91.000000,3.141593,2114,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,280438,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504335',4504335,-108.000000,2.000000,91.000000,3.141593,2115,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,280172,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504336',4504336,-116.000000,2.000000,91.000000,3.141593,2117,0,0,0,2,6,0,0,1661,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,279906,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504337',4504337,-126.000000,2.000000,91.000000,3.141593,2118,0,0,0,2,6,0,0,1662,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,279640,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504338',4504338,-136.000000,2.000000,91.000000,3.141593,2120,0,0,0,2,6,0,0,1664,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,279374,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504339',4504339,-144.000000,2.000000,91.000000,3.141593,2121,0,0,0,2,6,0,0,1665,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,279108,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504340',4504340,-152.000000,2.000000,91.000000,3.141593,2122,0,0,0,2,6,0,0,1666,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,278842,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504341',4504341,-162.000000,2.000000,91.000000,3.141593,2123,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,278576,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504342',4504342,-174.000000,2.000000,91.000000,3.141593,2124,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,278310,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504343',4504343,-186.000000,2.000000,91.000000,3.141593,2125,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,278044,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504344',4504344,196.000000,2.000000,103.000000,3.141593,2126,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,277778,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504345',4504345,186.000000,2.000000,103.000000,3.141593,2127,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,277512,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504346',4504346,176.000000,2.000000,103.000000,3.141593,2128,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,277246,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504347',4504347,166.000000,2.000000,103.000000,3.141593,2129,0,0,0,2,6,0,0,1504,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,276980,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504348',4504348,154.000000,2.000000,103.000000,3.141593,2130,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,276714,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504349',4504349,144.000000,2.000000,103.000000,3.141593,2131,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,276448,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504350',4504350,136.000000,2.000000,103.000000,3.141593,2132,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,276182,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504351',4504351,128.000000,2.000000,103.000000,3.141593,2134,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,275916,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504352',4504352,118.000000,2.000000,103.000000,3.141593,2135,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,275650,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504353',4504353,106.000000,2.000000,103.000000,3.141593,2136,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,275384,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504354',4504354,94.000000,2.000000,103.000000,3.141593,2137,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,275118,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504355',4504355,84.000000,2.000000,103.000000,3.141593,2138,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,274852,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504356',4504356,76.000000,2.000000,103.000000,3.141593,2141,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,274586,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504357',4504357,66.000000,2.000000,103.000000,3.141593,2142,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,274320,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504358',4504358,54.000000,2.000000,103.000000,3.141593,2143,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,274054,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504359',4504359,44.000000,2.000000,103.000000,3.141593,2144,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,273788,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504360',4504360,36.000000,2.000000,103.000000,3.141593,2145,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,273522,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504361',4504361,28.000000,2.000000,103.000000,3.141593,2146,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,273256,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504362',4504362,20.000000,2.000000,103.000000,3.141593,2147,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,272990,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504363',4504363,10.000000,2.000000,103.000000,3.141593,2148,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,272724,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504364',4504364,-2.000000,2.000000,103.000000,3.141593,2149,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,272458,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504365',4504365,-14.000000,2.000000,103.000000,3.141593,2150,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,272192,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504366',4504366,-24.000000,2.000000,103.000000,3.141593,2151,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,271926,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504367',4504367,-34.000000,2.000000,103.000000,3.141593,2152,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,271660,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504368',4504368,-44.000000,2.000000,103.000000,3.141593,2153,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,271394,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504369',4504369,-52.000000,2.000000,103.000000,3.141593,2154,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,271128,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504370',4504370,-60.000000,2.000000,103.000000,3.141593,2155,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,270862,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504371',4504371,-70.000000,2.000000,103.000000,3.141593,2156,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,270596,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504372',4504372,-82.000000,2.000000,103.000000,3.141593,2157,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,270330,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504373',4504373,-94.000000,2.000000,103.000000,3.141593,2158,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,270064,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504374',4504374,-106.000000,2.000000,103.000000,3.141593,2159,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,269798,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504375',4504375,-118.000000,2.000000,103.000000,3.141593,2160,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,269532,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504376',4504376,-128.000000,2.000000,103.000000,3.141593,2161,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,269266,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504377',4504377,-136.000000,2.000000,103.000000,3.141593,2174,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,269000,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504378',4504378,-146.000000,2.000000,103.000000,3.141593,2177,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,268734,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504379',4504379,-156.000000,2.000000,103.000000,3.141593,2178,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,268468,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504380',4504380,-164.000000,2.000000,103.000000,3.141593,2179,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,268202,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504381',4504381,-172.000000,2.000000,103.000000,3.141593,2183,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,267936,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504382',4504382,-180.000000,2.000000,103.000000,3.141593,2184,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,267670,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504383',4504383,-188.000000,2.000000,103.000000,3.141593,2185,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,267404,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504384',4504384,196.000000,2.000000,115.000000,3.141593,2186,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,267138,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504385',4504385,186.000000,2.000000,115.000000,3.141593,2187,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,266872,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504386',4504386,174.000000,2.000000,115.000000,3.141593,2188,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,266606,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504387',4504387,162.000000,2.000000,115.000000,3.141593,2189,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,266340,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504388',4504388,150.000000,2.000000,115.000000,3.141593,2193,0,0,0,2,6,0,0,2057,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,266074,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504389',4504389,140.000000,2.000000,115.000000,3.141593,2194,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,265808,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504390',4504390,132.000000,2.000000,115.000000,3.141593,2195,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,265542,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504391',4504391,122.000000,2.000000,115.000000,3.141593,2196,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,265276,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504392',4504392,110.000000,2.000000,115.000000,3.141593,2197,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,265010,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504393',4504393,100.000000,2.000000,115.000000,3.141593,2198,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,264744,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504394',4504394,92.000000,2.000000,115.000000,3.141593,2199,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,264478,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504395',4504395,84.000000,2.000000,115.000000,3.141593,2200,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,264212,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504396',4504396,76.000000,2.000000,115.000000,3.141593,2201,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,263946,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504397',4504397,68.000000,2.000000,115.000000,3.141593,2202,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,263680,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504398',4504398,60.000000,2.000000,115.000000,3.141593,2203,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,263414,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504399',4504399,52.000000,2.000000,115.000000,3.141593,2204,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,263148,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504400',4504400,44.000000,2.000000,115.000000,3.141593,2205,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,262882,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504401',4504401,36.000000,2.000000,115.000000,3.141593,2207,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,262616,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504402',4504402,28.000000,2.000000,115.000000,3.141593,2209,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,262350,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504403',4504403,20.000000,2.000000,115.000000,3.141593,2210,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,262084,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504404',4504404,12.000000,2.000000,115.000000,3.141593,2212,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,261818,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504405',4504405,4.000000,2.000000,115.000000,3.141593,2213,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,261552,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504406',4504406,-6.000000,2.000000,115.000000,3.141593,2219,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,261286,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504407',4504407,-16.000000,2.000000,115.000000,3.141593,2221,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,261020,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504408',4504408,-24.000000,2.000000,115.000000,3.141593,2222,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,260754,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504409',4504409,-32.000000,2.000000,115.000000,3.141593,2223,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,260488,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504410',4504410,-40.000000,2.000000,115.000000,3.141593,2224,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,260222,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504411',4504411,-48.000000,2.000000,115.000000,3.141593,2225,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,259956,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504412',4504412,-56.000000,2.000000,115.000000,3.141593,2226,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,259690,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504413',4504413,-64.000000,2.000000,115.000000,3.141593,2227,0,0,0,2,6,0,0,1807,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,259424,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504414',4504414,-74.000000,2.000000,115.000000,3.141593,2228,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,259158,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504415',4504415,-84.000000,2.000000,115.000000,3.141593,2229,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,258892,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504416',4504416,-94.000000,2.000000,115.000000,3.141593,2230,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,258626,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504417',4504417,-104.000000,2.000000,115.000000,3.141593,2232,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,258360,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504418',4504418,-112.000000,2.000000,115.000000,3.141593,2233,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,258094,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504419',4504419,-120.000000,2.000000,115.000000,3.141593,2234,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,257828,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504420',4504420,-128.000000,2.000000,115.000000,3.141593,2235,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,257562,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504421',4504421,-136.000000,2.000000,115.000000,3.141593,2236,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,257296,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504422',4504422,-144.000000,2.000000,115.000000,3.141593,2237,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,257030,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504423',4504423,-152.000000,2.000000,115.000000,3.141593,2239,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,256764,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504424',4504424,-160.000000,2.000000,115.000000,3.141593,2240,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,256498,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504425',4504425,-168.000000,2.000000,115.000000,3.141593,2241,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,256232,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504426',4504426,-176.000000,2.000000,115.000000,3.141593,2242,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,255966,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504427',4504427,-184.000000,2.000000,115.000000,3.141593,2243,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,255700,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504428',4504428,-192.000000,2.000000,115.000000,3.141593,2244,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,255434,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504429',4504429,196.000000,2.000000,127.000000,3.141593,2245,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,255168,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504430',4504430,186.000000,2.000000,127.000000,3.141593,2249,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,254902,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504431',4504431,176.000000,2.000000,127.000000,3.141593,2250,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,254636,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504432',4504432,166.000000,2.000000,127.000000,3.141593,2252,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,254370,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504433',4504433,156.000000,2.000000,127.000000,3.141593,2253,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,254104,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504434',4504434,146.000000,2.000000,127.000000,3.141593,2255,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,253838,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504435',4504435,136.000000,2.000000,127.000000,3.141593,2256,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,253572,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504436',4504436,128.000000,2.000000,127.000000,3.141593,2261,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,253306,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504437',4504437,120.000000,2.000000,127.000000,3.141593,2262,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,253040,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504438',4504438,112.000000,2.000000,127.000000,3.141593,2263,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,252774,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504439',4504439,104.000000,2.000000,127.000000,3.141593,2264,0,0,0,2,6,0,0,2187,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,252508,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504440',4504440,96.000000,2.000000,127.000000,3.141593,2265,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,252242,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504441',4504441,88.000000,2.000000,127.000000,3.141593,2266,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,251976,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504442',4504442,80.000000,2.000000,127.000000,3.141593,2267,0,0,0,2,6,0,0,2190,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,251710,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504443',4504443,72.000000,2.000000,127.000000,3.141593,2268,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,251444,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504444',4504444,62.000000,2.000000,127.000000,3.141593,2269,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,251178,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504445',4504445,52.000000,2.000000,127.000000,3.141593,2270,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,250912,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504446',4504446,44.000000,2.000000,127.000000,3.141593,2271,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,250646,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504447',4504447,36.000000,2.000000,127.000000,3.141593,2272,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,250380,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504448',4504448,28.000000,2.000000,127.000000,3.141593,2273,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,250114,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504449',4504449,20.000000,2.000000,127.000000,3.141593,2274,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,249848,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504450',4504450,12.000000,2.000000,127.000000,3.141593,2275,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,249582,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504451',4504451,4.000000,2.000000,127.000000,3.141593,2282,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,249316,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504452',4504452,-4.000000,2.000000,127.000000,3.141593,2283,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,249050,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504453',4504453,-12.000000,2.000000,127.000000,3.141593,2284,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,248784,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504454',4504454,-20.000000,2.000000,127.000000,3.141593,2285,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,248518,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504455',4504455,-28.000000,2.000000,127.000000,3.141593,2286,0,0,0,2,6,0,0,1482,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,248252,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504456',4504456,-36.000000,2.000000,127.000000,3.141593,2287,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,247986,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504457',4504457,-44.000000,2.000000,127.000000,3.141593,2288,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,247720,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504458',4504458,-52.000000,2.000000,127.000000,3.141593,2289,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,247454,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504459',4504459,-60.000000,2.000000,127.000000,3.141593,2290,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,247188,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504460',4504460,-68.000000,2.000000,127.000000,3.141593,2291,0,0,0,2,6,0,0,2216,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,246922,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504461',4504461,-78.000000,2.000000,127.000000,3.141593,2292,0,0,0,2,6,0,0,2261,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,246656,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504462',4504462,-88.000000,2.000000,127.000000,3.141593,2293,0,0,0,2,6,0,0,2262,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,246390,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504463',4504463,-96.000000,2.000000,127.000000,3.141593,2294,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,246124,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504464',4504464,-104.000000,2.000000,127.000000,3.141593,2295,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,245858,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504465',4504465,-112.000000,2.000000,127.000000,3.141593,2296,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,245592,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504466',4504466,-122.000000,2.000000,127.000000,3.141593,2297,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,245326,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504467',4504467,-132.000000,2.000000,127.000000,3.141593,2298,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,245060,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504468',4504468,-140.000000,2.000000,127.000000,3.141593,2299,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,244794,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504469',4504469,-148.000000,2.000000,127.000000,3.141593,2300,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,244528,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504470',4504470,-156.000000,2.000000,127.000000,3.141593,2301,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,244262,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504471',4504471,-164.000000,2.000000,127.000000,3.141593,2302,0,0,0,2,6,0,0,2252,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,243996,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504472',4504472,-172.000000,2.000000,127.000000,3.141593,2303,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,243730,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504473',4504473,-180.000000,2.000000,127.000000,3.141593,2304,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,243464,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504474',4504474,-188.000000,2.000000,127.000000,3.141593,2305,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,243198,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504475',4504475,196.000000,2.000000,139.000000,3.141593,2306,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,242932,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4546925',4546925,188.000000,2.000000,139.000000,3.141593,2307,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,242666,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504477',4504477,178.000000,2.000000,139.000000,3.141593,2308,0,0,0,2,6,0,0,2328,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,242400,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504478',4504478,168.000000,2.000000,139.000000,3.141593,2309,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,242134,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504479',4504479,158.000000,2.000000,139.000000,3.141593,2310,0,0,0,2,6,0,0,2221,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,241868,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504480',4504480,146.000000,2.000000,139.000000,3.141593,2311,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,241602,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504481',4504481,136.000000,2.000000,139.000000,3.141593,2312,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,241336,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504482',4504482,128.000000,2.000000,139.000000,3.141593,2313,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,241070,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504483',4504483,120.000000,2.000000,139.000000,3.141593,2314,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,240804,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504484',4504484,110.000000,2.000000,139.000000,3.141593,2315,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,240538,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504485',4504485,100.000000,2.000000,139.000000,3.141593,2316,0,0,0,2,6,0,0,2250,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,240272,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504486',4504486,92.000000,2.000000,139.000000,3.141593,2317,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,240006,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504487',4504487,84.000000,2.000000,139.000000,3.141593,2318,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,239740,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504488',4504488,74.000000,2.000000,139.000000,3.141593,2319,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,239474,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504489',4504489,62.000000,2.000000,139.000000,3.141593,2320,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,239208,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504490',4504490,50.000000,2.000000,139.000000,3.141593,2321,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,238942,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504491',4504491,38.000000,2.000000,139.000000,3.141593,2322,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,238676,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504492',4504492,28.000000,2.000000,139.000000,3.141593,2323,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,238410,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504493',4504493,20.000000,2.000000,139.000000,3.141593,2324,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,238144,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504494',4504494,12.000000,2.000000,139.000000,3.141593,2325,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,237878,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504495',4504495,4.000000,2.000000,139.000000,3.141593,2326,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,237612,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504496',4504496,-4.000000,2.000000,139.000000,3.141593,2327,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,237346,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504497',4504497,-14.000000,2.000000,139.000000,3.141593,2328,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,237080,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504498',4504498,-24.000000,2.000000,139.000000,3.141593,2329,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,236814,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504499',4504499,-32.000000,2.000000,139.000000,3.141593,2330,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,236548,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504500',4504500,-40.000000,2.000000,139.000000,3.141593,2331,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,236282,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504501',4504501,-48.000000,2.000000,139.000000,3.141593,2332,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,236016,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504502',4504502,-56.000000,2.000000,139.000000,3.141593,2333,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,235750,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504503',4504503,-64.000000,2.000000,139.000000,3.141593,2334,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,235484,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504504',4504504,-72.000000,2.000000,139.000000,3.141593,2335,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,235218,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504505',4504505,-80.000000,2.000000,139.000000,3.141593,2336,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,234952,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504506',4504506,-88.000000,2.000000,139.000000,3.141593,2337,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,234686,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504507',4504507,-96.000000,2.000000,139.000000,3.141593,2338,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,234420,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504508',4504508,-104.000000,2.000000,139.000000,3.141593,2339,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,234154,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504509',4504509,-112.000000,2.000000,139.000000,3.141593,2340,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,233888,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504510',4504510,-120.000000,2.000000,139.000000,3.141593,2341,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,233622,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504511',4504511,-128.000000,2.000000,139.000000,3.141593,2342,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,233356,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504512',4504512,-138.000000,2.000000,139.000000,3.141593,2343,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,233090,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504513',4504513,-148.000000,2.000000,139.000000,3.141593,2344,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,232824,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504514',4504514,-156.000000,2.000000,139.000000,3.141593,2345,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,232558,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504515',4504515,-164.000000,2.000000,139.000000,3.141593,2346,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,232292,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504516',4504516,-174.000000,2.000000,139.000000,3.141593,2347,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,232026,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504517',4504517,-184.000000,2.000000,139.000000,3.141593,2348,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,231760,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504518',4504518,-192.000000,2.000000,139.000000,3.141593,2349,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,231494,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504519',4504519,194.000000,2.000000,151.000000,3.141593,2350,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,231228,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504520',4504520,184.000000,2.000000,151.000000,3.141593,2351,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,230962,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504521',4504521,176.000000,2.000000,151.000000,3.141593,2352,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,230696,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504522',4504522,168.000000,2.000000,151.000000,3.141593,2353,0,0,0,2,6,0,0,712,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,230430,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504523',4504523,158.000000,2.000000,151.000000,3.141593,2354,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,230164,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504524',4504524,148.000000,2.000000,151.000000,3.141593,2355,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,229898,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504525',4504525,140.000000,2.000000,151.000000,3.141593,2356,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,229632,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504526',4504526,130.000000,2.000000,151.000000,3.141593,2357,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,229366,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504527',4504527,120.000000,2.000000,151.000000,3.141593,2358,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,229100,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504528',4504528,112.000000,2.000000,151.000000,3.141593,2359,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,228834,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504529',4504529,102.000000,2.000000,151.000000,3.141593,2360,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,228568,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504530',4504530,92.000000,2.000000,151.000000,3.141593,2361,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,228302,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504531',4504531,84.000000,2.000000,151.000000,3.141593,2362,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,228036,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504532',4504532,76.000000,2.000000,151.000000,3.141593,2363,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,227770,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504533',4504533,68.000000,2.000000,151.000000,3.141593,2364,0,0,0,2,6,0,0,2370,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,227504,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504534',4504534,60.000000,2.000000,151.000000,3.141593,2365,0,0,0,2,6,0,0,2371,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,227238,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504535',4504535,52.000000,2.000000,151.000000,3.141593,2366,0,0,0,2,6,0,0,2371,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,226972,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504536',4504536,44.000000,2.000000,151.000000,3.141593,2367,0,0,0,2,6,0,0,2333,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,226706,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504537',4504537,36.000000,2.000000,151.000000,3.141593,2368,0,0,0,2,6,0,0,2334,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,226440,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504538',4504538,26.000000,2.000000,151.000000,3.141593,2369,0,0,0,2,6,0,0,2335,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,226174,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504539',4504539,16.000000,2.000000,151.000000,3.141593,2370,0,0,0,2,6,0,0,428,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,225908,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504540',4504540,8.000000,2.000000,151.000000,3.141593,2371,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,225642,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504541',4504541,-0.000000,2.000000,151.000000,3.141593,2372,0,0,0,2,6,0,0,2337,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,225376,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504542',4504542,-8.000000,2.000000,151.000000,3.141593,2373,0,0,0,2,6,0,0,2338,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,225110,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504543',4504543,-16.000000,2.000000,151.000000,3.141593,2374,0,0,0,2,6,0,0,2339,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,224844,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504544',4504544,-24.000000,2.000000,151.000000,3.141593,2375,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,224578,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504545',4504545,-32.000000,2.000000,151.000000,3.141593,2376,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,224312,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504546',4504546,-40.000000,2.000000,151.000000,3.141593,2377,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,224046,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504547',4504547,-48.000000,2.000000,151.000000,3.141593,2378,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,223780,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504548',4504548,-56.000000,2.000000,151.000000,3.141593,2379,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,223514,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504549',4504549,-64.000000,2.000000,151.000000,3.141593,2380,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,223248,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504550',4504550,-72.000000,2.000000,151.000000,3.141593,2381,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,222982,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504551',4504551,-80.000000,2.000000,151.000000,3.141593,2382,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,222716,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504552',4504552,-88.000000,2.000000,151.000000,3.141593,2383,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,222450,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504553',4504553,-96.000000,2.000000,151.000000,3.141593,2384,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,222184,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504554',4504554,-104.000000,2.000000,151.000000,3.141593,2385,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,221918,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504555',4504555,-114.000000,2.000000,151.000000,3.141593,2386,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,221652,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504556',4504556,-126.000000,2.000000,151.000000,3.141593,2387,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,221386,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504557',4504557,-136.000000,2.000000,151.000000,3.141593,2388,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,221120,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504558',4504558,-144.000000,2.000000,151.000000,3.141593,2389,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,220854,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504559',4504559,-152.000000,2.000000,151.000000,3.141593,2392,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,220588,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504560',4504560,-160.000000,2.000000,151.000000,3.141593,2393,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,220322,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504561',4504561,-168.000000,2.000000,151.000000,3.141593,2394,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,220056,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504562',4504562,-176.000000,2.000000,151.000000,3.141593,2395,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,219790,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504563',4504563,-184.000000,2.000000,151.000000,3.141593,2396,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,219524,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504564',4504564,-192.000000,2.000000,151.000000,3.141593,2397,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,219258,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504565',4504565,194.000000,2.000000,163.000000,3.141593,2398,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,218992,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504566',4504566,184.000000,2.000000,163.000000,3.141593,2399,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,218726,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504567',4504567,176.000000,2.000000,163.000000,3.141593,2400,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,218460,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504568',4504568,168.000000,2.000000,163.000000,3.141593,2401,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,218194,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504569',4504569,160.000000,2.000000,163.000000,3.141593,2402,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,217928,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504570',4504570,152.000000,2.000000,163.000000,3.141593,2403,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,217662,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504571',4504571,142.000000,2.000000,163.000000,3.141593,2404,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,217396,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504572',4504572,132.000000,2.000000,163.000000,3.141593,2405,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,217130,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504573',4504573,124.000000,2.000000,163.000000,3.141593,2406,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,216864,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504574',4504574,116.000000,2.000000,163.000000,3.141593,2407,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,216598,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504575',4504575,108.000000,2.000000,163.000000,3.141593,2408,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,216332,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504576',4504576,100.000000,2.000000,163.000000,3.141593,2409,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,216066,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504577',4504577,90.000000,2.000000,163.000000,3.141593,2410,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,215800,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504578',4504578,78.000000,2.000000,163.000000,3.141593,2411,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,215534,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504579',4504579,68.000000,2.000000,163.000000,3.141593,2412,0,0,0,2,6,0,0,426,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,215268,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504580',4504580,60.000000,2.000000,163.000000,3.141593,2413,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,215002,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504581',4504581,52.000000,2.000000,163.000000,3.141593,2414,0,0,0,2,6,0,0,427,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,214736,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504582',4504582,44.000000,2.000000,163.000000,3.141593,2415,0,0,0,2,6,0,0,2341,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,214470,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504583',4504583,36.000000,2.000000,163.000000,3.141593,2416,0,0,0,2,6,0,0,2342,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,214204,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504584',4504584,28.000000,2.000000,163.000000,3.141593,2417,0,0,0,2,6,0,0,2343,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,213938,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504585',4504585,20.000000,2.000000,163.000000,3.141593,2418,0,0,0,2,6,0,0,2344,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,213672,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504586',4504586,12.000000,2.000000,163.000000,3.141593,2419,0,0,0,2,6,0,0,2346,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,213406,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504587',4504587,4.000000,2.000000,163.000000,3.141593,2420,0,0,0,2,6,0,0,2917,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,213140,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504588',4504588,-4.000000,2.000000,163.000000,3.141593,2421,0,0,0,2,6,0,0,633,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,212874,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504589',4504589,-12.000000,2.000000,163.000000,3.141593,2422,0,0,0,2,6,0,0,428,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,212608,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504590',4504590,-20.000000,2.000000,163.000000,3.141593,2423,0,0,0,2,6,0,0,2347,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,212342,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504591',4504591,-28.000000,2.000000,163.000000,3.141593,2430,0,0,0,2,6,0,0,2293,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,212076,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504592',4504592,-36.000000,2.000000,163.000000,3.141593,2431,0,0,0,2,6,0,0,2293,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,211810,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504593',4504593,-44.000000,2.000000,163.000000,3.141593,2432,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,211544,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504594',4504594,-52.000000,2.000000,163.000000,3.141593,2433,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,211278,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4505094',4505094,-60.000000,2.000000,163.000000,3.141593,2434,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,211012,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4507088',4507088,-68.000000,2.000000,163.000000,3.141593,2435,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,210746,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4507089',4507089,-78.000000,2.000000,163.000000,3.141593,2436,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,210480,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4515692',4515692,-88.000000,2.000000,163.000000,3.141593,2437,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,210214,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4515693',4515693,-98.000000,2.000000,163.000000,3.141593,2438,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,209948,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504595',4504595,-108.000000,2.000000,163.000000,3.141593,2439,0,0,0,2,6,0,0,2328,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,209682,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504596',4504596,-116.000000,2.000000,163.000000,3.141593,2440,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,209416,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504597',4504597,-126.000000,2.000000,163.000000,3.141593,2441,0,0,0,2,6,0,0,2331,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,209150,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504598',4504598,-136.000000,2.000000,163.000000,3.141593,2442,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,208884,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4534361',4534361,-144.000000,2.000000,163.000000,3.141593,2443,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,208618,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4534362',4534362,-152.000000,2.000000,163.000000,3.141593,2444,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,208352,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4584470',4584470,-162.000000,2.000000,163.000000,3.141593,2445,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,208086,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504599',4504599,-172.000000,2.000000,163.000000,3.141593,2447,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,207820,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504600',4504600,-180.000000,2.000000,163.000000,3.141593,2448,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,207554,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504601',4504601,-188.000000,2.000000,163.000000,3.141593,2449,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,207288,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504602',4504602,196.000000,2.000000,175.000000,3.141593,2450,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,207022,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504603',4504603,186.000000,2.000000,175.000000,3.141593,2451,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,206756,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504604',4504604,174.000000,2.000000,175.000000,3.141593,2452,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,206490,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504605',4504605,162.000000,2.000000,175.000000,3.141593,2453,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,206224,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504606',4504606,152.000000,2.000000,175.000000,3.141593,2454,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,205958,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504607',4504607,144.000000,2.000000,175.000000,3.141593,2455,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,205692,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504608',4504608,136.000000,2.000000,175.000000,3.141593,2456,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,205426,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504609',4504609,128.000000,2.000000,175.000000,3.141593,2457,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,205160,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525959',4525959,120.000000,2.000000,175.000000,3.141593,2458,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,204894,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504611',4504611,112.000000,2.000000,175.000000,3.141593,2459,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,204628,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504612',4504612,104.000000,2.000000,175.000000,3.141593,2461,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,204362,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504613',4504613,96.000000,2.000000,175.000000,3.141593,2462,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,204096,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504614',4504614,86.000000,2.000000,175.000000,3.141593,2463,0,0,0,2,6,0,0,2310,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,203830,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504615',4504615,76.000000,2.000000,175.000000,3.141593,2464,0,0,0,2,6,0,0,2315,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,203564,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504616',4504616,68.000000,2.000000,175.000000,3.141593,2465,0,0,0,2,6,0,0,2316,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,203298,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4574889',4574889,60.000000,2.000000,175.000000,3.141593,2466,0,0,0,2,6,0,0,2312,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,203032,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504618',4504618,50.000000,2.000000,175.000000,3.141593,2467,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,202766,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504619',4504619,38.000000,2.000000,175.000000,3.141593,2468,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,202500,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504620',4504620,28.000000,2.000000,175.000000,3.141593,2469,0,0,0,2,6,0,0,2508,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,202234,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504621',4504621,20.000000,2.000000,175.000000,3.141593,2470,0,0,0,2,6,0,0,2509,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,201968,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504622',4504622,12.000000,2.000000,175.000000,3.141593,2471,0,0,0,2,6,0,0,2364,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,201702,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504623',4504623,4.000000,2.000000,175.000000,3.141593,2472,0,0,0,2,6,0,0,2365,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,201436,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504624',4504624,-4.000000,2.000000,175.000000,3.141593,2473,0,0,0,2,6,0,0,2366,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,201170,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504625',4504625,-14.000000,2.000000,175.000000,3.141593,2475,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,200904,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504626',4504626,-26.000000,2.000000,175.000000,3.141593,2476,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,200638,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504627',4504627,-36.000000,2.000000,175.000000,3.141593,2477,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,200372,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504628',4504628,-46.000000,2.000000,175.000000,3.141593,2478,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,200106,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504629',4504629,-58.000000,2.000000,175.000000,3.141593,2479,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,199840,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504630',4504630,-68.000000,2.000000,175.000000,3.141593,2482,0,0,0,2,6,0,0,2359,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,199574,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504631',4504631,-76.000000,2.000000,175.000000,3.141593,2483,0,0,0,2,6,0,0,700,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,199308,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504632',4504632,-84.000000,2.000000,175.000000,3.141593,2484,0,0,0,2,6,0,0,701,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,199042,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504633',4504633,-92.000000,2.000000,175.000000,3.141593,2485,0,0,0,2,6,0,0,702,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,198776,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504634',4504634,-100.000000,2.000000,175.000000,3.141593,2486,0,0,0,2,6,0,0,703,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,198510,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504635',4504635,-108.000000,2.000000,175.000000,3.141593,2487,0,0,0,2,6,0,0,704,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,198244,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504636',4504636,-118.000000,2.000000,175.000000,3.141593,2488,0,0,0,2,6,0,0,705,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,197978,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504637',4504637,-130.000000,2.000000,175.000000,3.141593,2489,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,197712,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504638',4504638,-140.000000,2.000000,175.000000,3.141593,2490,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,197446,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504639',4504639,-148.000000,2.000000,175.000000,3.141593,2491,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,197180,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504640',4504640,-158.000000,2.000000,175.000000,3.141593,2492,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,196914,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504641',4504641,-168.000000,2.000000,175.000000,3.141593,2493,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,196648,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504642',4504642,-176.000000,2.000000,175.000000,3.141593,2494,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,196382,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504643',4504643,-184.000000,2.000000,175.000000,3.141593,2495,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,196116,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504644',4504644,-192.000000,2.000000,175.000000,3.141593,2496,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,195850,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504645',4504645,194.000000,2.000000,187.000000,3.141593,2497,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,195584,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504646',4504646,184.000000,2.000000,187.000000,3.141593,2498,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,195318,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504647',4504647,174.000000,2.000000,187.000000,3.141593,2499,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,195052,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4504648',4504648,164.000000,2.000000,187.000000,3.141593,2500,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,194786,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4507090',4507090,156.000000,2.000000,187.000000,3.141593,2501,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,194520,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4507091',4507091,148.000000,2.000000,187.000000,3.141593,2503,0,0,0,2,6,0,0,64,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,194254,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4507092',4507092,138.000000,2.000000,187.000000,3.141593,2504,0,0,0,2,6,0,0,2367,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,193988,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4507093',4507093,128.000000,2.000000,187.000000,3.141593,2505,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,193722,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4511530',4511530,120.000000,2.000000,187.000000,3.141593,2506,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,193456,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4511531',4511531,112.000000,2.000000,187.000000,3.141593,2507,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,193190,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4511532',4511532,104.000000,2.000000,187.000000,3.141593,2508,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,192924,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4511533',4511533,96.000000,2.000000,187.000000,3.141593,2509,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,192658,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525960',4525960,88.000000,2.000000,187.000000,3.141593,2510,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,192392,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525961',4525961,80.000000,2.000000,187.000000,3.141593,2511,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,192126,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525962',4525962,72.000000,2.000000,187.000000,3.141593,2512,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,191860,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525963',4525963,64.000000,2.000000,187.000000,3.141593,2513,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,191594,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525964',4525964,56.000000,2.000000,187.000000,3.141593,2514,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,191328,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525965',4525965,48.000000,2.000000,187.000000,3.141593,2516,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,191062,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525966',4525966,40.000000,2.000000,187.000000,3.141593,2517,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,190796,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525967',4525967,32.000000,2.000000,187.000000,3.141593,2518,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,190530,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525968',4525968,24.000000,2.000000,187.000000,3.141593,2519,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,190264,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525969',4525969,14.000000,2.000000,187.000000,3.141593,2520,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,189998,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525970',4525970,4.000000,2.000000,187.000000,3.141593,2521,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,189732,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525971',4525971,-4.000000,2.000000,187.000000,3.141593,2522,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,189466,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525972',4525972,-12.000000,2.000000,187.000000,3.141593,2523,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,189200,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525973',4525973,-20.000000,2.000000,187.000000,3.141593,2524,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,188934,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525974',4525974,-28.000000,2.000000,187.000000,3.141593,2525,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,188668,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525975',4525975,-36.000000,2.000000,187.000000,3.141593,2526,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,188402,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525976',4525976,-44.000000,2.000000,187.000000,3.141593,2527,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,188136,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525977',4525977,-54.000000,2.000000,187.000000,3.141593,2528,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,187870,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525978',4525978,-66.000000,2.000000,187.000000,3.141593,2529,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,187604,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525979',4525979,-76.000000,2.000000,187.000000,3.141593,2530,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,187338,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525980',4525980,-84.000000,2.000000,187.000000,3.141593,2531,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,187072,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525981',4525981,-92.000000,2.000000,187.000000,3.141593,2532,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,186806,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525982',4525982,-100.000000,2.000000,187.000000,3.141593,2533,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,186540,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525983',4525983,-108.000000,2.000000,187.000000,3.141593,2534,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,186274,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525984',4525984,-116.000000,2.000000,187.000000,3.141593,2535,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,186008,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525985',4525985,-124.000000,2.000000,187.000000,3.141593,2536,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,185742,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525986',4525986,-132.000000,2.000000,187.000000,3.141593,2537,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,185476,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525987',4525987,-140.000000,2.000000,187.000000,3.141593,2538,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,185210,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525988',4525988,-148.000000,2.000000,187.000000,3.141593,2539,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,184944,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525989',4525989,-156.000000,2.000000,187.000000,3.141593,2540,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,184678,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525990',4525990,-164.000000,2.000000,187.000000,3.141593,2541,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,184412,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525991',4525991,-174.000000,2.000000,187.000000,3.141593,2542,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,184146,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525992',4525992,-184.000000,2.000000,187.000000,3.141593,2543,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,183880,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525993',4525993,-192.000000,2.000000,187.000000,3.141593,2544,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,183614,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525994',4525994,194.000000,2.000000,199.000000,3.141593,2545,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,183348,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525995',4525995,184.000000,2.000000,199.000000,3.141593,2546,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,183082,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525996',4525996,176.000000,2.000000,199.000000,3.141593,2547,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,182816,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525997',4525997,168.000000,2.000000,199.000000,3.141593,2548,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,182550,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525998',4525998,160.000000,2.000000,199.000000,3.141593,2549,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,182284,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4525999',4525999,152.000000,2.000000,199.000000,3.141593,2550,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,182018,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526000',4526000,144.000000,2.000000,199.000000,3.141593,2551,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,181752,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526001',4526001,136.000000,2.000000,199.000000,3.141593,2552,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,181486,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526002',4526002,128.000000,2.000000,199.000000,3.141593,2553,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,181220,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526003',4526003,120.000000,2.000000,199.000000,3.141593,2554,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,180954,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526004',4526004,110.000000,2.000000,199.000000,3.141593,2555,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,180688,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526005',4526005,98.000000,2.000000,199.000000,3.141593,2556,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,180422,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526006',4526006,86.000000,2.000000,199.000000,3.141593,2557,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,180156,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526007',4526007,76.000000,2.000000,199.000000,3.141593,2558,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,179890,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526008',4526008,68.000000,2.000000,199.000000,3.141593,2559,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,179624,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526009',4526009,60.000000,2.000000,199.000000,3.141593,2560,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,179358,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526010',4526010,50.000000,2.000000,199.000000,3.141593,2561,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,179092,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526011',4526011,38.000000,2.000000,199.000000,3.141593,2562,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,178826,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526012',4526012,28.000000,2.000000,199.000000,3.141593,2563,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,178560,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526013',4526013,20.000000,2.000000,199.000000,3.141593,2564,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,178294,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526014',4526014,10.000000,2.000000,199.000000,3.141593,2565,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,178028,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526015',4526015,-2.000000,2.000000,199.000000,3.141593,2566,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,177762,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526016',4526016,-14.000000,2.000000,199.000000,3.141593,2567,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,177496,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526017',4526017,-24.000000,2.000000,199.000000,3.141593,2568,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,177230,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526018',4526018,-32.000000,2.000000,199.000000,3.141593,2569,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176964,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526019',4526019,-42.000000,2.000000,199.000000,3.141593,2570,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176698,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526020',4526020,-52.000000,2.000000,199.000000,3.141593,2571,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176432,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526021',4526021,-60.000000,2.000000,199.000000,3.141593,2572,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,176166,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526022',4526022,-68.000000,2.000000,199.000000,3.141593,2573,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,175900,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526023',4526023,-78.000000,2.000000,199.000000,3.141593,2574,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,175634,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526024',4526024,-88.000000,2.000000,199.000000,3.141593,2575,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,175368,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526025',4526025,-96.000000,2.000000,199.000000,3.141593,2576,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,175102,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526026',4526026,-104.000000,2.000000,199.000000,3.141593,2577,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,174836,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526027',4526027,-112.000000,2.000000,199.000000,3.141593,2578,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,174570,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526028',4526028,-120.000000,2.000000,199.000000,3.141593,2579,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,174304,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526029',4526029,-128.000000,2.000000,199.000000,3.141593,2580,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,174038,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526030',4526030,-136.000000,2.000000,199.000000,3.141593,2581,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,173772,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526031',4526031,-146.000000,2.000000,199.000000,3.141593,2582,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,173506,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526032',4526032,-156.000000,2.000000,199.000000,3.141593,2583,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,173240,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526033',4526033,-164.000000,2.000000,199.000000,3.141593,2584,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,172974,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526034',4526034,-172.000000,2.000000,199.000000,3.141593,2585,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,172708,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526035',4526035,-180.000000,2.000000,199.000000,3.141593,2586,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,172442,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526036',4526036,-188.000000,2.000000,199.000000,3.141593,2587,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,172176,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526037',4526037,196.000000,2.000000,211.000000,3.141593,2588,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,171910,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526038',4526038,188.000000,2.000000,211.000000,3.141593,2589,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,171644,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526039',4526039,180.000000,2.000000,211.000000,3.141593,2590,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,171378,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526040',4526040,172.000000,2.000000,211.000000,3.141593,2591,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,171112,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526041',4526041,164.000000,2.000000,211.000000,3.141593,2592,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,170846,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526042',4526042,156.000000,2.000000,211.000000,3.141593,2593,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,170580,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526043',4526043,148.000000,2.000000,211.000000,3.141593,2594,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,170314,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526044',4526044,140.000000,2.000000,211.000000,3.141593,2595,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,170048,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526045',4526045,130.000000,2.000000,211.000000,3.141593,2596,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,169782,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526046',4526046,120.000000,2.000000,211.000000,3.141593,2597,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,169516,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526047',4526047,112.000000,2.000000,211.000000,3.141593,2598,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,169250,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526048',4526048,104.000000,2.000000,211.000000,3.141593,2599,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,168984,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526049',4526049,96.000000,2.000000,211.000000,3.141593,2600,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,168718,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526050',4526050,88.000000,2.000000,211.000000,3.141593,2601,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,168452,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526051',4526051,80.000000,2.000000,211.000000,3.141593,2602,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,168186,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526052',4526052,72.000000,2.000000,211.000000,3.141593,2603,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,167920,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526053',4526053,64.000000,2.000000,211.000000,3.141593,2604,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,167654,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526054',4526054,54.000000,2.000000,211.000000,3.141593,2605,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,167388,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526055',4526055,44.000000,2.000000,211.000000,3.141593,2606,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,167122,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526056',4526056,36.000000,2.000000,211.000000,3.141593,2607,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,166856,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526057',4526057,26.000000,2.000000,211.000000,3.141593,2608,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,166590,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526058',4526058,16.000000,2.000000,211.000000,3.141593,2609,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,166324,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526059',4526059,6.000000,2.000000,211.000000,3.141593,2610,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,166058,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526060',4526060,-6.000000,2.000000,211.000000,3.141593,2611,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,165792,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526061',4526061,-16.000000,2.000000,211.000000,3.141593,2612,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,165526,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526062',4526062,-26.000000,2.000000,211.000000,3.141593,2613,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,165260,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526063',4526063,-36.000000,2.000000,211.000000,3.141593,2614,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164994,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526064',4526064,-46.000000,2.000000,211.000000,3.141593,2615,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164728,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526065',4526065,-58.000000,2.000000,211.000000,3.141593,2616,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164462,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526066',4526066,-70.000000,2.000000,211.000000,3.141593,2617,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,164196,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526067',4526067,-80.000000,2.000000,211.000000,3.141593,2618,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163930,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526068',4526068,-88.000000,2.000000,211.000000,3.141593,2619,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163664,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526069',4526069,-98.000000,2.000000,211.000000,3.141593,2620,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163398,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526070',4526070,-108.000000,2.000000,211.000000,3.141593,2621,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,163132,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526071',4526071,-116.000000,2.000000,211.000000,3.141593,2622,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162866,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526072',4526072,-126.000000,2.000000,211.000000,3.141593,2623,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162600,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526073',4526073,-136.000000,2.000000,211.000000,3.141593,2624,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162334,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526074',4526074,-144.000000,2.000000,211.000000,3.141593,2625,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,162068,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526075',4526075,-152.000000,2.000000,211.000000,3.141593,2626,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161802,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526076',4526076,-160.000000,2.000000,211.000000,3.141593,2627,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161536,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526077',4526077,-168.000000,2.000000,211.000000,3.141593,2628,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161270,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526078',4526078,-178.000000,2.000000,211.000000,3.141593,2629,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,161004,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526079',4526079,-190.000000,2.000000,211.000000,3.141593,2630,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160738,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526080',4526080,196.000000,2.000000,223.000000,3.141593,2631,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160472,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526081',4526081,188.000000,2.000000,223.000000,3.141593,2632,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,160206,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526082',4526082,180.000000,2.000000,223.000000,3.141593,2633,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159940,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526083',4526083,172.000000,2.000000,223.000000,3.141593,2634,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159674,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526084',4526084,164.000000,2.000000,223.000000,3.141593,2635,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159408,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526085',4526085,154.000000,2.000000,223.000000,3.141593,2636,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,159142,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526086',4526086,142.000000,2.000000,223.000000,3.141593,2637,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158876,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526087',4526087,132.000000,2.000000,223.000000,3.141593,2638,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158610,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526088',4526088,124.000000,2.000000,223.000000,3.141593,2639,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158344,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526089',4526089,116.000000,2.000000,223.000000,3.141593,2640,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,158078,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526090',4526090,108.000000,2.000000,223.000000,3.141593,2641,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157812,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526091',4526091,100.000000,2.000000,223.000000,3.141593,2642,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157546,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526092',4526092,90.000000,2.000000,223.000000,3.141593,2643,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157280,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526093',4526093,78.000000,2.000000,223.000000,3.141593,2644,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,157014,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526094',4526094,68.000000,2.000000,223.000000,3.141593,2645,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156748,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526095',4526095,58.000000,2.000000,223.000000,3.141593,2646,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156482,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526096',4526096,46.000000,2.000000,223.000000,3.141593,2647,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,156216,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526097',4526097,36.000000,2.000000,223.000000,3.141593,2648,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155950,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526098',4526098,28.000000,2.000000,223.000000,3.141593,2649,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155684,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526099',4526099,18.000000,2.000000,223.000000,3.141593,2650,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155418,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526100',4526100,6.000000,2.000000,223.000000,3.141593,2651,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,155152,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526101',4526101,-6.000000,2.000000,223.000000,3.141593,2652,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154886,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526102',4526102,-16.000000,2.000000,223.000000,3.141593,2653,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154620,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526103',4526103,-26.000000,2.000000,223.000000,3.141593,2654,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154354,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526104',4526104,-38.000000,2.000000,223.000000,3.141593,2655,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,154088,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526105',4526105,-48.000000,2.000000,223.000000,3.141593,2656,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153822,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526106',4526106,-58.000000,2.000000,223.000000,3.141593,2657,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153556,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526107',4526107,-68.000000,2.000000,223.000000,3.141593,2658,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153290,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4526108',4526108,-76.000000,2.000000,223.000000,3.141593,2659,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,153024,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4528377',4528377,-84.000000,2.000000,223.000000,3.141593,2660,0,0,0,2,6,0,0,2314,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152758,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4528378',4528378,-92.000000,2.000000,223.000000,3.141593,2661,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152492,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4534640',4534640,-100.000000,2.000000,223.000000,3.141593,2662,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,152226,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4536571',4536571,-110.000000,2.000000,223.000000,3.141593,2663,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151960,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4545602',4545602,-120.000000,2.000000,223.000000,3.141593,2664,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151694,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4545603',4545603,-128.000000,2.000000,223.000000,3.141593,2665,0,0,0,2,6,0,0,2334,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151428,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4572930',4572930,-138.000000,2.000000,223.000000,3.141593,2666,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,151162,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4572931',4572931,-148.000000,2.000000,223.000000,3.141593,2667,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150896,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4572932',4572932,-156.000000,2.000000,223.000000,3.141593,2668,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150630,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4572933',4572933,-166.000000,2.000000,223.000000,3.141593,2669,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150364,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4572934',4572934,-178.000000,2.000000,223.000000,3.141593,2670,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,150098,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4572935',4572935,-190.000000,2.000000,223.000000,3.141593,2671,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149832,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4572936',4572936,194.000000,2.000000,235.000000,3.141593,2672,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149566,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4572937',4572937,184.000000,2.000000,235.000000,3.141593,2673,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149300,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4572938',4572938,176.000000,2.000000,235.000000,3.141593,2674,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,149034,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4572939',4572939,168.000000,2.000000,235.000000,3.141593,2675,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148768,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4572940',4572940,160.000000,2.000000,235.000000,3.141593,2676,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148502,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4578256',4578256,150.000000,2.000000,235.000000,3.141593,2681,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,148236,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4578257',4578257,140.000000,2.000000,235.000000,3.141593,2682,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147970,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4581926',4581926,132.000000,2.000000,235.000000,3.141593,2683,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147704,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4583348',4583348,124.000000,2.000000,235.000000,3.141593,2684,0,0,0,2,6,0,0,2564,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147438,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4584471',4584471,116.000000,2.000000,235.000000,3.141593,2685,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,147172,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4584472',4584472,108.000000,2.000000,235.000000,3.141593,2686,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146906,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4589616',4589616,100.000000,2.000000,235.000000,3.141593,2687,0,0,0,2,6,0,0,2313,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146640,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4597845',4597845,90.000000,2.000000,235.000000,3.141593,2688,0,0,0,2,6,0,0,2556,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146374,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4600604',4600604,78.000000,2.000000,235.000000,3.141593,2689,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,146108,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4597847',4597847,68.000000,2.000000,235.000000,3.141593,2690,0,0,0,2,6,0,0,2559,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145842,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4598049',4598049,60.000000,2.000000,235.000000,3.141593,2691,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145576,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4598050',4598050,52.000000,2.000000,235.000000,3.141593,2692,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145310,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4598051',4598051,44.000000,2.000000,235.000000,3.141593,2693,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,145044,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4598052',4598052,34.000000,2.000000,235.000000,3.141593,2694,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144778,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4598089',4598089,22.000000,2.000000,235.000000,3.141593,2695,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144512,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4598090',4598090,12.000000,2.000000,235.000000,3.141593,2696,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,144246,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4600374',4600374,4.000000,2.000000,235.000000,3.141593,2697,0,0,0,2,6,0,0,2566,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143980,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4600375',4600375,-4.000000,2.000000,235.000000,3.141593,2698,0,0,0,2,6,0,0,2565,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143714,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4600376',4600376,-12.000000,2.000000,235.000000,3.141593,2699,0,0,0,2,6,0,0,2567,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143448,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4597846',4597846,-20.000000,2.000000,235.000000,3.141593,2700,0,0,0,2,6,0,0,2558,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,143182,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4603922',4603922,-30.000000,2.000000,235.000000,3.141593,2701,0,0,0,2,6,0,0,2560,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142916,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4603923',4603923,-40.000000,2.000000,235.000000,3.141593,2702,0,0,0,2,6,0,0,2561,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142650,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4603924',4603924,-48.000000,2.000000,235.000000,3.141593,2703,0,0,0,2,6,0,0,2562,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142384,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4603925',4603925,-56.000000,2.000000,235.000000,3.141593,2704,0,0,0,2,6,0,0,2563,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,142118,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4603926',4603926,-64.000000,2.000000,235.000000,3.141593,2705,0,0,0,2,6,0,0,2572,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141852,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4603927',4603927,-72.000000,2.000000,235.000000,3.141593,2706,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141586,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4603928',4603928,-80.000000,2.000000,235.000000,3.141593,2707,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141320,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4603929',4603929,-88.000000,2.000000,235.000000,3.141593,2708,0,0,0,2,6,0,0,2575,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,141054,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4603930',4603930,-96.000000,2.000000,235.000000,3.141593,2709,0,0,0,2,6,0,0,2576,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140788,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4603931',4603931,-104.000000,2.000000,235.000000,3.141593,2710,0,0,0,2,6,0,0,2577,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140522,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4603932',4603932,-112.000000,2.000000,235.000000,3.141593,2711,0,0,0,2,6,0,0,2578,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,140256,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4603933',4603933,-120.000000,2.000000,235.000000,3.141593,2712,0,0,0,2,6,0,0,2579,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139990,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4603934',4603934,-128.000000,2.000000,235.000000,3.141593,2713,0,0,0,2,6,0,0,2580,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139724,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4604008',4604008,-136.000000,2.000000,235.000000,3.141593,2714,0,0,0,2,6,0,0,2581,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139458,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4604009',4604009,-144.000000,2.000000,235.000000,3.141593,2715,0,0,0,2,6,0,0,2582,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,139192,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4604010',4604010,-152.000000,2.000000,235.000000,3.141593,2716,0,0,0,2,6,0,0,2583,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138926,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4604011',4604011,-160.000000,2.000000,235.000000,3.141593,2717,0,0,0,2,6,0,0,2566,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138660,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616061',4616061,-170.000000,2.000000,235.000000,3.141593,2726,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138394,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616062',4616062,-180.000000,2.000000,235.000000,3.141593,2727,0,0,0,2,6,0,0,2619,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,138128,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616063',4616063,-188.000000,2.000000,235.000000,3.141593,2728,0,0,0,2,6,0,0,2620,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137862,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616064',4616064,196.000000,2.000000,247.000000,3.141593,2729,0,0,0,2,6,0,0,2621,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137596,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616065',4616065,188.000000,2.000000,247.000000,3.141593,2730,0,0,0,2,6,0,0,2622,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137330,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616066',4616066,180.000000,2.000000,247.000000,3.141593,2731,0,0,0,2,6,0,0,2621,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,137064,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616067',4616067,172.000000,2.000000,247.000000,3.141593,2732,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136798,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616068',4616068,164.000000,2.000000,247.000000,3.141593,2733,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136532,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616069',4616069,156.000000,2.000000,247.000000,3.141593,2734,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136266,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616070',4616070,148.000000,2.000000,247.000000,3.141593,2735,0,0,0,2,6,0,0,2626,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,136000,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616071',4616071,138.000000,2.000000,247.000000,3.141593,2736,0,0,0,2,6,0,0,2627,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135734,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616072',4616072,128.000000,2.000000,247.000000,3.141593,2737,0,0,0,2,6,0,0,2613,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135468,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616073',4616073,118.000000,2.000000,247.000000,3.141593,2738,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,135202,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616074',4616074,106.000000,2.000000,247.000000,3.141593,2739,0,0,0,2,6,0,0,1478,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134936,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4651248',4651248,96.000000,2.000000,247.000000,3.141593,2740,0,0,0,2,6,0,0,2654,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134670,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616076',4616076,88.000000,2.000000,247.000000,3.141593,2741,0,0,0,2,6,0,0,2616,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134404,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616077',4616077,80.000000,2.000000,247.000000,3.141593,2742,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,134138,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616078',4616078,72.000000,2.000000,247.000000,3.141593,2743,0,0,0,2,6,0,0,2628,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133872,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616079',4616079,62.000000,2.000000,247.000000,3.141593,2744,0,0,0,2,6,0,0,2629,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133606,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616080',4616080,50.000000,2.000000,247.000000,3.141593,2745,0,0,0,2,6,0,0,2630,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133340,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616081',4616081,38.000000,2.000000,247.000000,3.141593,2746,0,0,0,2,6,0,0,2631,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,133074,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616082',4616082,26.000000,2.000000,247.000000,3.141593,2747,0,0,0,2,6,0,0,2632,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132808,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616083',4616083,16.000000,2.000000,247.000000,3.141593,2748,0,0,0,2,6,0,0,2634,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132542,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616084',4616084,6.000000,2.000000,247.000000,3.141593,2749,0,0,0,2,6,0,0,2634,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132276,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616085',4616085,-4.000000,2.000000,247.000000,3.141593,2750,0,0,0,2,6,0,0,2635,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,132010,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616086',4616086,-12.000000,2.000000,247.000000,3.141593,2751,0,0,0,2,6,0,0,2636,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131744,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616087',4616087,-20.000000,2.000000,247.000000,3.141593,2752,0,0,0,2,6,0,0,2637,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131478,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616088',4616088,-28.000000,2.000000,247.000000,3.141593,2753,0,0,0,2,6,0,0,2638,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,131212,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616089',4616089,-38.000000,2.000000,247.000000,3.141593,2754,0,0,0,2,6,0,0,2639,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130946,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4616090',4616090,-48.000000,2.000000,247.000000,3.141593,2755,0,0,0,2,6,0,0,2618,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130680,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4618407',4618407,-56.000000,2.000000,247.000000,3.141593,2756,0,0,0,2,6,0,0,2623,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130414,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619393',4619393,-66.000000,2.000000,247.000000,3.141593,2757,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,130148,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619394',4619394,-76.000000,2.000000,247.000000,3.141593,2758,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129882,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619395',4619395,-84.000000,2.000000,247.000000,3.141593,2759,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129616,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619396',4619396,-92.000000,2.000000,247.000000,3.141593,2760,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129350,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619397',4619397,-102.000000,2.000000,247.000000,3.141593,2761,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,129084,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619398',4619398,-112.000000,2.000000,247.000000,3.141593,2762,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128818,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619399',4619399,-120.000000,2.000000,247.000000,3.141593,2763,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128552,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619400',4619400,-130.000000,2.000000,247.000000,3.141593,2764,0,0,0,2,6,0,0,2603,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128286,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619506',4619506,-140.000000,2.000000,247.000000,3.141593,2765,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,128020,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619564',4619564,-148.000000,2.000000,247.000000,3.141593,2766,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127754,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619565',4619565,-156.000000,2.000000,247.000000,3.141593,2767,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127488,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619627',4619627,-164.000000,2.000000,247.000000,3.141593,2768,0,0,0,2,6,0,0,2517,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,127222,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619628',4619628,-172.000000,2.000000,247.000000,3.141593,2769,0,0,0,2,6,0,0,2514,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126956,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619629',4619629,-180.000000,2.000000,247.000000,3.141593,2770,0,0,0,2,6,0,0,2514,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126690,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619630',4619630,-188.000000,2.000000,247.000000,3.141593,2771,0,0,0,2,6,0,0,2514,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126424,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619631',4619631,196.000000,2.000000,259.000000,3.141593,2772,0,0,0,2,6,0,0,2514,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,126158,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619632',4619632,188.000000,2.000000,259.000000,3.141593,2773,0,0,0,2,6,0,0,2514,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125892,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4619633',4619633,180.000000,2.000000,259.000000,3.141593,2774,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125626,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620871',4620871,172.000000,2.000000,259.000000,3.141593,2775,0,0,0,2,6,0,0,2660,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125360,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620872',4620872,164.000000,2.000000,259.000000,3.141593,2776,0,0,0,2,6,0,0,2659,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,125094,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620873',4620873,156.000000,2.000000,259.000000,3.141593,2777,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124828,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620874',4620874,146.000000,2.000000,259.000000,3.141593,2778,0,0,0,2,6,0,0,2547,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124562,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620875',4620875,136.000000,2.000000,259.000000,3.141593,2779,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124296,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620876',4620876,128.000000,2.000000,259.000000,3.141593,2780,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,124030,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620877',4620877,120.000000,2.000000,259.000000,3.141593,2781,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123764,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620878',4620878,112.000000,2.000000,259.000000,3.141593,2782,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123498,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620879',4620879,104.000000,2.000000,259.000000,3.141593,2783,0,0,0,2,6,0,0,2661,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,123232,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620880',4620880,96.000000,2.000000,259.000000,3.141593,2784,0,0,0,2,6,0,0,2656,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122966,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620881',4620881,86.000000,2.000000,259.000000,3.141593,2785,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122700,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620882',4620882,74.000000,2.000000,259.000000,3.141593,2786,0,0,0,2,6,0,0,2658,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122434,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620883',4620883,64.000000,2.000000,259.000000,3.141593,2787,0,0,0,2,6,0,0,2662,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,122168,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620884',4620884,56.000000,2.000000,259.000000,3.141593,2788,0,0,0,2,6,0,0,2663,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121902,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620885',4620885,48.000000,2.000000,259.000000,3.141593,2789,0,0,0,2,6,0,0,1300,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121636,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620886',4620886,40.000000,2.000000,259.000000,3.141593,2790,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121370,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620887',4620887,32.000000,2.000000,259.000000,3.141593,2791,0,0,0,2,6,0,0,2548,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,121104,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620888',4620888,24.000000,2.000000,259.000000,3.141593,2792,0,0,0,2,6,0,0,2654,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120838,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620889',4620889,14.000000,2.000000,259.000000,3.141593,2793,0,0,0,2,6,0,0,2549,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120572,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620890',4620890,4.000000,2.000000,259.000000,3.141593,2794,0,0,0,2,6,0,0,2656,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120306,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620891',4620891,-4.000000,2.000000,259.000000,3.141593,2795,0,0,0,2,6,0,0,2660,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,120040,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620892',4620892,-14.000000,2.000000,259.000000,3.141593,2796,0,0,0,2,6,0,0,2547,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119774,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620893',4620893,-24.000000,2.000000,259.000000,3.141593,2797,0,0,0,2,6,0,0,2654,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119508,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620894',4620894,-32.000000,2.000000,259.000000,3.141593,2798,0,0,0,2,6,0,0,1385,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,119242,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620895',4620895,-40.000000,2.000000,259.000000,3.141593,2799,0,0,0,2,6,0,0,2650,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118976,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620896',4620896,-48.000000,2.000000,259.000000,3.141593,2800,0,0,0,2,6,0,0,2655,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118710,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4620897',4620897,-56.000000,2.000000,259.000000,3.141593,2801,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118444,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621515',4621515,-66.000000,2.000000,259.000000,3.141593,2802,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,118178,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621516',4621516,-78.000000,2.000000,259.000000,3.141593,2803,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117912,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621517',4621517,-90.000000,2.000000,259.000000,3.141593,2804,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117646,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621518',4621518,-100.000000,2.000000,259.000000,3.141593,2805,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117380,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621519',4621519,-110.000000,2.000000,259.000000,3.141593,2806,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,117114,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621520',4621520,-120.000000,2.000000,259.000000,3.141593,2807,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116848,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621521',4621521,-128.000000,2.000000,259.000000,3.141593,2808,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116582,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621522',4621522,-136.000000,2.000000,259.000000,3.141593,2809,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116316,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621523',4621523,-144.000000,2.000000,259.000000,3.141593,2810,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,116050,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621727',4621727,-152.000000,2.000000,259.000000,3.141593,2811,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115784,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621728',4621728,-160.000000,2.000000,259.000000,3.141593,2812,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115518,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621729',4621729,-168.000000,2.000000,259.000000,3.141593,2813,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,115252,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621730',4621730,-176.000000,2.000000,259.000000,3.141593,2814,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114986,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621731',4621731,-184.000000,2.000000,259.000000,3.141593,2815,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114720,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621732',4621732,-192.000000,2.000000,259.000000,3.141593,2816,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114454,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621733',4621733,196.000000,2.000000,271.000000,3.141593,2817,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,114188,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621734',4621734,186.000000,2.000000,271.000000,3.141593,2818,0,0,0,2,6,0,0,2750,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113922,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621735',4621735,176.000000,2.000000,271.000000,3.141593,2819,0,0,0,2,6,0,0,2593,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113656,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621736',4621736,168.000000,2.000000,271.000000,3.141593,2820,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113390,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621737',4621737,160.000000,2.000000,271.000000,3.141593,2821,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,113124,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4621738',4621738,152.000000,2.000000,271.000000,3.141593,2822,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112858,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4622444',4622444,144.000000,2.000000,271.000000,3.141593,2823,0,0,0,2,6,0,0,2665,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112592,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4622445',4622445,136.000000,2.000000,271.000000,3.141593,2824,0,0,0,2,6,0,0,2666,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112326,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4622446',4622446,128.000000,2.000000,271.000000,3.141593,2825,0,0,0,2,6,0,0,2667,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,112060,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4622447',4622447,120.000000,2.000000,271.000000,3.141593,2826,0,0,0,2,6,0,0,2668,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111794,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4622448',4622448,112.000000,2.000000,271.000000,3.141593,2827,0,0,0,2,6,0,0,2669,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111528,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4627383',4627383,104.000000,2.000000,271.000000,3.141593,2828,0,0,0,2,6,0,0,2516,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,111262,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4627384',4627384,94.000000,2.000000,271.000000,3.141593,2829,0,0,0,2,6,0,0,1528,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110996,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4627385',4627385,84.000000,2.000000,271.000000,3.141593,2830,0,0,0,2,6,0,0,374,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110730,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4631434',4631434,76.000000,2.000000,271.000000,3.141593,2831,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110464,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4631917',4631917,68.000000,2.000000,271.000000,3.141593,2832,0,0,0,2,6,0,0,2538,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,110198,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4631918',4631918,60.000000,2.000000,271.000000,3.141593,2833,0,0,0,2,6,0,0,2528,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109932,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4631919',4631919,52.000000,2.000000,271.000000,3.141593,2834,0,0,0,2,6,0,0,2529,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109666,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4631920',4631920,44.000000,2.000000,271.000000,3.141593,2835,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109400,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4631921',4631921,36.000000,2.000000,271.000000,3.141593,2836,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,109134,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4631922',4631922,26.000000,2.000000,271.000000,3.141593,2837,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108868,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633163',4633163,16.000000,2.000000,271.000000,3.141593,2838,0,0,0,2,6,0,0,2522,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108602,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633164',4633164,8.000000,2.000000,271.000000,3.141593,2839,0,0,0,2,6,0,0,2725,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108336,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633165',4633165,-0.000000,2.000000,271.000000,3.141593,2840,0,0,0,2,6,0,0,2698,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,108070,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633166',4633166,-8.000000,2.000000,271.000000,3.141593,2841,0,0,0,2,6,0,0,2706,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107804,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633167',4633167,-16.000000,2.000000,271.000000,3.141593,2842,0,0,0,2,6,0,0,2722,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107538,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633168',4633168,-24.000000,2.000000,271.000000,3.141593,2845,0,0,0,2,6,0,0,2690,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107272,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633169',4633169,-32.000000,2.000000,271.000000,3.141593,2846,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,107006,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633170',4633170,-40.000000,2.000000,271.000000,3.141593,2847,0,0,0,2,6,0,0,2725,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106740,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633171',4633171,-48.000000,2.000000,271.000000,3.141593,2848,0,0,0,2,6,0,0,2672,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106474,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633172',4633172,-56.000000,2.000000,271.000000,3.141593,2849,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,106208,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633173',4633173,-64.000000,2.000000,271.000000,3.141593,2854,0,0,0,2,6,0,0,2702,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105942,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633174',4633174,-72.000000,2.000000,271.000000,3.141593,2855,0,0,0,2,6,0,0,2702,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105676,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633175',4633175,-80.000000,2.000000,271.000000,3.141593,2856,0,0,0,2,6,0,0,2712,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105410,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633176',4633176,-88.000000,2.000000,271.000000,3.141593,2857,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,105144,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633177',4633177,-96.000000,2.000000,271.000000,3.141593,2858,0,0,0,2,6,0,0,2680,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104878,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633178',4633178,-104.000000,2.000000,271.000000,3.141593,2859,0,0,0,2,6,0,0,2681,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104612,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633179',4633179,-112.000000,2.000000,271.000000,3.141593,2860,0,0,0,2,6,0,0,1,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104346,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633180',4633180,-120.000000,2.000000,271.000000,3.141593,2864,0,0,0,2,6,0,0,2686,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,104080,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633181',4633181,-128.000000,2.000000,271.000000,3.141593,2865,0,0,0,2,6,0,0,2686,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103814,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633182',4633182,-136.000000,2.000000,271.000000,3.141593,2866,0,0,0,2,6,0,0,2686,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103548,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633183',4633183,-144.000000,2.000000,271.000000,3.141593,2867,0,0,0,2,6,0,0,2716,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103282,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633184',4633184,-152.000000,2.000000,271.000000,3.141593,2868,0,0,0,2,6,0,0,2717,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,103016,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633185',4633185,-160.000000,2.000000,271.000000,3.141593,2869,0,0,0,2,6,0,0,2718,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102750,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633186',4633186,-168.000000,2.000000,271.000000,3.141593,2870,0,0,0,2,6,0,0,2715,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102484,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633187',4633187,-176.000000,2.000000,271.000000,3.141593,2871,0,0,0,2,6,0,0,2705,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,102218,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633188',4633188,-184.000000,2.000000,271.000000,3.141593,2872,0,0,0,2,6,0,0,2749,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101952,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633189',4633189,-192.000000,2.000000,271.000000,3.141593,2873,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101686,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633190',4633190,196.000000,2.000000,283.000000,3.141593,2874,0,0,0,2,6,0,0,2723,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101420,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633191',4633191,188.000000,2.000000,283.000000,3.141593,2881,0,0,0,2,6,0,0,2687,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,101154,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633192',4633192,180.000000,2.000000,283.000000,3.141593,2882,0,0,0,2,6,0,0,2708,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100888,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633193',4633193,172.000000,2.000000,283.000000,3.141593,2883,0,0,0,2,6,0,0,2699,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100622,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633194',4633194,164.000000,2.000000,283.000000,3.141593,2884,0,0,0,2,6,0,0,2713,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100356,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633195',4633195,156.000000,2.000000,283.000000,3.141593,2885,0,0,0,2,6,0,0,2714,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,100090,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633196',4633196,148.000000,2.000000,283.000000,3.141593,2886,0,0,0,2,6,0,0,620,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99824,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633197',4633197,140.000000,2.000000,283.000000,3.141593,2887,0,0,0,2,6,0,0,620,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99558,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633198',4633198,132.000000,2.000000,283.000000,3.141593,2888,0,0,0,2,6,0,0,620,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99292,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633199',4633199,122.000000,2.000000,283.000000,3.141593,2889,0,0,0,2,6,0,0,2727,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,99026,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633200',4633200,112.000000,2.000000,283.000000,3.141593,2890,0,0,0,2,6,0,0,2678,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98760,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633201',4633201,104.000000,2.000000,283.000000,3.141593,2891,0,0,0,2,6,0,0,2679,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98494,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633202',4633202,96.000000,2.000000,283.000000,3.141593,2892,0,0,0,2,6,0,0,2680,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,98228,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633203',4633203,88.000000,2.000000,283.000000,3.141593,2893,0,0,0,2,6,0,0,2678,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97962,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633204',4633204,80.000000,2.000000,283.000000,3.141593,2894,0,0,0,2,6,0,0,2679,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97696,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633205',4633205,72.000000,2.000000,283.000000,3.141593,2895,0,0,0,2,6,0,0,2681,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97430,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633206',4633206,64.000000,2.000000,283.000000,3.141593,2896,0,0,0,2,6,0,0,2680,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,97164,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633207',4633207,56.000000,2.000000,283.000000,3.141593,2897,0,0,0,2,6,0,0,2681,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96898,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633208',4633208,48.000000,2.000000,283.000000,3.141593,2899,0,0,0,2,6,0,0,2695,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96632,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633209',4633209,40.000000,2.000000,283.000000,3.141593,2900,0,0,0,2,6,0,0,2695,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96366,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633210',4633210,32.000000,2.000000,283.000000,3.141593,2901,0,0,0,2,6,0,0,2696,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,96100,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633211',4633211,24.000000,2.000000,283.000000,3.141593,2902,0,0,0,2,6,0,0,2719,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95834,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633212',4633212,16.000000,2.000000,283.000000,3.141593,2903,0,0,0,2,6,0,0,2726,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95568,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633213',4633213,8.000000,2.000000,283.000000,3.141593,2904,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95302,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633214',4633214,-0.000000,2.000000,283.000000,3.141593,2905,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,95036,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633215',4633215,-8.000000,2.000000,283.000000,3.141593,2906,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94770,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633216',4633216,-16.000000,2.000000,283.000000,3.141593,2907,0,0,0,2,6,0,0,2678,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94504,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633217',4633217,-24.000000,2.000000,283.000000,3.141593,2908,0,0,0,2,6,0,0,2679,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,94238,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633218',4633218,-32.000000,2.000000,283.000000,3.141593,2909,0,0,0,2,6,0,0,2680,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93972,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633850',4633850,-40.000000,2.000000,283.000000,3.141593,2911,0,0,0,2,6,0,0,539,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93706,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633851',4633851,-48.000000,2.000000,283.000000,3.141593,2912,0,0,0,2,6,0,0,2640,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93440,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633852',4633852,-56.000000,2.000000,283.000000,3.141593,2913,0,0,0,2,6,0,0,1,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,93174,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633853',4633853,-64.000000,2.000000,283.000000,3.141593,2914,0,0,0,2,6,0,0,1,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92908,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633854',4633854,-72.000000,2.000000,283.000000,3.141593,2915,0,0,0,2,6,0,0,2641,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92642,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633855',4633855,-82.000000,2.000000,283.000000,3.141593,2916,0,0,0,2,6,0,0,2642,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92376,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633856',4633856,-92.000000,2.000000,283.000000,3.141593,2917,0,0,0,2,6,0,0,2643,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,92110,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633857',4633857,-100.000000,2.000000,283.000000,3.141593,2918,0,0,0,2,6,0,0,2174,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91844,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633858',4633858,-108.000000,2.000000,283.000000,3.141593,2919,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91578,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633859',4633859,-116.000000,2.000000,283.000000,3.141593,2920,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91312,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633860',4633860,-124.000000,2.000000,283.000000,3.141593,2921,0,0,0,2,6,0,0,2646,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,91046,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633861',4633861,-132.000000,2.000000,283.000000,3.141593,2922,0,0,0,2,6,0,0,1474,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90780,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633862',4633862,-140.000000,2.000000,283.000000,3.141593,2923,0,0,0,2,6,0,0,2647,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90514,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633863',4633863,-148.000000,2.000000,283.000000,3.141593,2924,0,0,0,2,6,0,0,2648,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,90248,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633864',4633864,-156.000000,2.000000,283.000000,3.141593,2925,0,0,0,2,6,0,0,2649,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89982,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4634834',4634834,-164.000000,2.000000,283.000000,3.141593,2926,0,0,0,2,6,0,0,2570,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89716,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4634835',4634835,-172.000000,2.000000,283.000000,3.141593,2927,0,0,0,2,6,0,0,2569,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89450,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4634836',4634836,-180.000000,2.000000,283.000000,3.141593,2928,0,0,0,2,6,0,0,2571,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,89184,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4633865',4633865,-188.000000,2.000000,283.000000,3.141593,2929,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88918,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4635322',4635322,196.000000,2.000000,295.000000,3.141593,2930,0,0,0,2,6,0,0,2665,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88652,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4651267',4651267,188.000000,2.000000,295.000000,3.141593,2931,0,0,0,2,6,0,0,2665,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88386,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4663897',4663897,180.000000,2.000000,295.000000,3.141593,2932,0,0,0,2,6,0,0,2608,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,88120,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4663987',4663987,172.000000,2.000000,295.000000,3.141593,2933,0,0,0,2,6,0,0,2634,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87854,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4678499',4678499,162.000000,2.000000,295.000000,3.141593,2934,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87588,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4678500',4678500,150.000000,2.000000,295.000000,3.141593,2935,0,0,0,2,6,0,0,2751,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87322,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4680013',4680013,138.000000,2.000000,295.000000,3.141593,2938,0,0,0,2,6,0,0,2550,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,87056,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4680014',4680014,128.000000,2.000000,295.000000,3.141593,2939,0,0,0,2,6,0,0,2552,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86790,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4680015',4680015,120.000000,2.000000,295.000000,3.141593,2940,0,0,0,2,6,0,0,2553,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86524,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4680016',4680016,112.000000,2.000000,295.000000,3.141593,2941,0,0,0,2,6,0,0,2554,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,86258,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4680017',4680017,102.000000,2.000000,295.000000,3.141593,2942,0,0,0,2,6,0,0,2551,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85992,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4680018',4680018,90.000000,2.000000,295.000000,3.141593,2943,0,0,0,2,6,0,0,2550,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85726,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4680019',4680019,80.000000,2.000000,295.000000,3.141593,2944,0,0,0,2,6,0,0,2550,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85460,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4680020',4680020,72.000000,2.000000,295.000000,3.141593,2945,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,85194,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4681185',4681185,64.000000,2.000000,295.000000,3.141593,2946,0,0,0,2,6,0,0,725,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84928,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4691766',4691766,56.000000,2.000000,295.000000,3.141593,2947,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84662,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4694197',4694197,48.000000,2.000000,295.000000,3.141593,2948,0,0,0,2,6,0,0,2608,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84396,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4695130',4695130,40.000000,2.000000,295.000000,3.141593,2949,0,0,0,2,6,0,0,2730,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,84130,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4696073',4696073,32.000000,2.000000,295.000000,3.141593,2950,0,0,0,2,6,0,0,2827,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83864,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4696074',4696074,24.000000,2.000000,295.000000,3.141593,2951,0,0,0,2,6,0,0,2828,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83598,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4696075',4696075,16.000000,2.000000,295.000000,3.141593,2952,0,0,0,2,6,0,0,2829,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83332,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4696076',4696076,8.000000,2.000000,295.000000,3.141593,2953,0,0,0,2,6,0,0,2830,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,83066,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4696077',4696077,-0.000000,2.000000,295.000000,3.141593,2954,0,0,0,2,6,0,0,2831,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82800,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4710824',4710824,-8.000000,2.000000,295.000000,3.141593,2955,0,0,0,2,6,0,0,2887,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82534,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4710825',4710825,-16.000000,2.000000,295.000000,3.141593,2956,0,0,0,2,6,0,0,2888,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82268,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4710826',4710826,-24.000000,2.000000,295.000000,3.141593,2957,0,0,0,2,6,0,0,2889,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,82002,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4710827',4710827,-32.000000,2.000000,295.000000,3.141593,2958,0,0,0,2,6,0,0,2890,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81736,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4710828',4710828,-40.000000,2.000000,295.000000,3.141593,2959,0,0,0,2,6,0,0,2892,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81470,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4710829',4710829,-48.000000,2.000000,295.000000,3.141593,2960,0,0,0,2,6,0,0,2893,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,81204,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4710830',4710830,-58.000000,2.000000,295.000000,3.141593,2961,0,0,0,2,6,0,0,2894,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80938,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4710831',4710831,-68.000000,2.000000,295.000000,3.141593,2962,0,0,0,2,6,0,0,2895,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80672,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4710832',4710832,-76.000000,2.000000,295.000000,3.141593,2963,0,0,0,2,6,0,0,2896,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80406,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4710833',4710833,-84.000000,2.000000,295.000000,3.141593,2964,0,0,0,2,6,0,0,2897,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,80140,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4710834',4710834,-92.000000,2.000000,295.000000,3.141593,2965,0,0,0,2,6,0,0,2898,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79874,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4710835',4710835,-100.000000,2.000000,295.000000,3.141593,2966,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79608,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4710836',4710836,-108.000000,2.000000,295.000000,3.141593,2967,0,0,0,2,6,0,0,2900,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79342,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4710837',4710837,-118.000000,2.000000,295.000000,3.141593,2968,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,79076,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4710838',4710838,-128.000000,2.000000,295.000000,3.141593,2969,0,0,0,2,6,0,0,2902,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78810,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4711991',4711991,-136.000000,2.000000,295.000000,3.141593,2970,0,0,0,2,6,0,0,2904,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78544,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4725721',4725721,-146.000000,2.000000,295.000000,3.141593,2971,0,0,0,2,6,0,0,2906,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78278,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4711993',4711993,-158.000000,2.000000,295.000000,3.141593,2972,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,78012,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4711994',4711994,-168.000000,2.000000,295.000000,3.141593,2973,0,0,0,2,6,0,0,2904,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77746,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724076',4724076,-176.000000,2.000000,295.000000,3.141593,2974,0,0,0,2,6,0,0,2790,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77480,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724077',4724077,-186.000000,2.000000,295.000000,3.141593,2975,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,77214,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724078',4724078,194.000000,2.000000,307.000000,3.141593,2976,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76948,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724079',4724079,184.000000,2.000000,307.000000,3.141593,2977,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76682,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724080',4724080,176.000000,2.000000,307.000000,3.141593,2978,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76416,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724081',4724081,168.000000,2.000000,307.000000,3.141593,2979,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,76150,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724082',4724082,158.000000,2.000000,307.000000,3.141593,2984,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75884,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724083',4724083,146.000000,2.000000,307.000000,3.141593,2985,0,0,0,2,6,0,0,2780,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75618,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724084',4724084,134.000000,2.000000,307.000000,3.141593,2986,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75352,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724085',4724085,122.000000,2.000000,307.000000,3.141593,2987,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,75086,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724086',4724086,112.000000,2.000000,307.000000,3.141593,2988,0,0,0,2,6,0,0,2832,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74820,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724087',4724087,104.000000,2.000000,307.000000,3.141593,2989,0,0,0,2,6,0,0,2833,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74554,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724088',4724088,94.000000,2.000000,307.000000,3.141593,2990,0,0,0,2,6,0,0,2832,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74288,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724089',4724089,84.000000,2.000000,307.000000,3.141593,2991,0,0,0,2,6,0,0,2832,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,74022,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724090',4724090,76.000000,2.000000,307.000000,3.141593,2992,0,0,0,2,6,0,0,2833,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73756,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724381',4724381,68.000000,2.000000,307.000000,3.141593,2993,0,0,0,2,6,0,0,2891,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73490,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724382',4724382,58.000000,2.000000,307.000000,3.141593,2994,0,0,0,2,6,0,0,2903,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,73224,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724383',4724383,48.000000,2.000000,307.000000,3.141593,2995,0,0,0,2,6,0,0,2903,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72958,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4724935',4724935,40.000000,2.000000,307.000000,3.141593,2996,0,0,0,2,6,0,0,2168,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72692,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4725402',4725402,32.000000,2.000000,307.000000,3.141593,2997,0,0,0,2,6,0,0,2833,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72426,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4729520',4729520,22.000000,2.000000,307.000000,3.141593,2998,0,0,0,2,6,0,0,2778,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,72160,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4729521',4729521,12.000000,2.000000,307.000000,3.141593,2999,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71894,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4729522',4729522,2.000000,2.000000,307.000000,3.141593,3000,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71628,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4729523',4729523,-8.000000,2.000000,307.000000,3.141593,3001,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71362,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4729524',4729524,-16.000000,2.000000,307.000000,3.141593,3002,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,71096,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4729525',4729525,-26.000000,2.000000,307.000000,3.141593,3007,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70830,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4729526',4729526,-38.000000,2.000000,307.000000,3.141593,3008,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70564,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4729533',4729533,-50.000000,2.000000,307.000000,3.141593,3009,0,0,0,2,6,0,0,2809,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70298,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4729534',4729534,-60.000000,2.000000,307.000000,3.141593,3010,0,0,0,2,6,0,0,2808,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,70032,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4729535',4729535,-68.000000,2.000000,307.000000,3.141593,3011,0,0,0,2,6,0,0,2801,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69766,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4729536',4729536,-76.000000,2.000000,307.000000,3.141593,3012,0,0,0,2,6,0,0,2806,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69500,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4729537',4729537,-84.000000,2.000000,307.000000,3.141593,3013,0,0,0,2,6,0,0,2805,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,69234,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4729538',4729538,-92.000000,2.000000,307.000000,3.141593,3014,0,0,0,2,6,0,0,2804,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68968,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4738741',4738741,-102.000000,2.000000,307.000000,3.141593,3015,0,0,0,2,6,0,0,2800,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68702,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4740094',4740094,-112.000000,2.000000,307.000000,3.141593,3018,0,0,0,2,6,0,0,2801,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68436,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4740095',4740095,-122.000000,2.000000,307.000000,3.141593,3019,0,0,0,2,6,0,0,2800,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,68170,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4740096',4740096,-134.000000,2.000000,307.000000,3.141593,3020,0,0,0,2,6,0,0,2799,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67904,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4740097',4740097,-144.000000,2.000000,307.000000,3.141593,3021,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67638,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4740098',4740098,-152.000000,2.000000,307.000000,3.141593,3022,0,0,0,2,6,0,0,2795,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67372,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4740099',4740099,-162.000000,2.000000,307.000000,3.141593,3023,0,0,0,2,6,0,0,2798,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,67106,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4740100',4740100,-174.000000,2.000000,307.000000,3.141593,3025,0,0,0,2,6,0,0,2797,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66840,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4740101',4740101,-186.000000,2.000000,307.000000,3.141593,3026,0,0,0,2,6,0,0,2797,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66574,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4740102',4740102,196.000000,2.000000,319.000000,3.141593,3027,0,0,0,2,6,0,0,2792,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66308,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4740103',4740103,188.000000,2.000000,319.000000,3.141593,3028,0,0,0,2,6,0,0,2807,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,66042,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4740104',4740104,180.000000,2.000000,319.000000,3.141593,3029,0,0,0,2,6,0,0,2791,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65776,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4741270',4741270,170.000000,2.000000,319.000000,3.141593,3031,0,0,0,2,6,0,0,2815,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65510,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4741271',4741271,160.000000,2.000000,319.000000,3.141593,3032,0,0,0,2,6,0,0,2814,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,65244,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4741272',4741272,152.000000,2.000000,319.000000,3.141593,3033,0,0,0,2,6,0,0,2813,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64978,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4741273',4741273,144.000000,2.000000,319.000000,3.141593,3034,0,0,0,2,6,0,0,2812,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64712,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4741322',4741322,134.000000,2.000000,319.000000,3.141593,3035,0,0,0,2,6,0,0,2824,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64446,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4741323',4741323,124.000000,2.000000,319.000000,3.141593,3036,0,0,0,2,6,0,0,2823,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,64180,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4741324',4741324,116.000000,2.000000,319.000000,3.141593,3037,0,0,0,2,6,0,0,2822,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63914,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4741325',4741325,108.000000,2.000000,319.000000,3.141593,3038,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63648,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4741425',4741425,100.000000,2.000000,319.000000,3.141593,3039,0,0,0,2,6,0,0,2825,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63382,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4741557',4741557,90.000000,2.000000,319.000000,3.141593,3040,0,0,0,2,6,0,0,2821,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,63116,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888241',4888241,80.000000,2.000000,319.000000,3.141593,3041,0,0,0,2,6,0,0,2820,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62850,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4741559',4741559,72.000000,2.000000,319.000000,3.141593,3042,0,0,0,2,6,0,0,2819,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62584,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4741560',4741560,64.000000,2.000000,319.000000,3.141593,3043,0,0,0,2,6,0,0,2818,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62318,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4741561',4741561,56.000000,2.000000,319.000000,3.141593,3044,0,0,0,2,6,0,0,2817,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,62052,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4741562',4741562,48.000000,2.000000,319.000000,3.141593,3045,0,0,0,2,6,0,0,2816,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61786,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4741563',4741563,40.000000,2.000000,319.000000,3.141593,3046,0,0,0,2,6,0,0,2826,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61520,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4741564',4741564,32.000000,2.000000,319.000000,3.141593,3047,0,0,0,2,6,0,0,2886,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,61254,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4742786',4742786,24.000000,2.000000,319.000000,3.141593,3048,0,0,0,2,6,0,0,2970,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60988,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4742787',4742787,16.000000,2.000000,319.000000,3.141593,3049,0,0,0,2,6,0,0,2970,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60722,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4772642',4772642,8.000000,2.000000,319.000000,3.141593,3051,0,0,0,2,6,0,0,2854,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60456,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4772643',4772643,-0.000000,2.000000,319.000000,3.141593,3052,0,0,0,2,6,0,0,2853,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,60190,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4742790',4742790,-8.000000,2.000000,319.000000,3.141593,3053,0,0,0,2,6,0,0,2855,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59924,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4742791',4742791,-16.000000,2.000000,319.000000,3.141593,3055,0,0,0,2,6,0,0,2857,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59658,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4742792',4742792,-24.000000,2.000000,319.000000,3.141593,3056,0,0,0,2,6,0,0,2857,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59392,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4742793',4742793,-32.000000,2.000000,319.000000,3.141593,3057,0,0,0,2,6,0,0,2858,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,59126,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4742794',4742794,-40.000000,2.000000,319.000000,3.141593,3058,0,0,0,2,6,0,0,2859,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58860,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4742795',4742795,-48.000000,2.000000,319.000000,3.141593,3059,0,0,0,2,6,0,0,2860,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58594,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4754309',4754309,-56.000000,2.000000,319.000000,3.141593,3061,0,0,0,2,6,0,0,2811,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58328,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4754310',4754310,-64.000000,2.000000,319.000000,3.141593,3062,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,58062,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4754311',4754311,-72.000000,2.000000,319.000000,3.141593,3063,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57796,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4754312',4754312,-80.000000,2.000000,319.000000,3.141593,3064,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57530,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4754313',4754313,-90.000000,2.000000,319.000000,3.141593,3065,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,57264,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4754314',4754314,-100.000000,2.000000,319.000000,3.141593,3066,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56998,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4754315',4754315,-110.000000,2.000000,319.000000,3.141593,3067,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56732,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4754316',4754316,-122.000000,2.000000,319.000000,3.141593,3068,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56466,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4754317',4754317,-134.000000,2.000000,319.000000,3.141593,3069,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,56200,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4754318',4754318,-144.000000,2.000000,319.000000,3.141593,3070,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55934,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4754319',4754319,-152.000000,2.000000,319.000000,3.141593,3071,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55668,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4754320',4754320,-160.000000,2.000000,319.000000,3.141593,3072,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55402,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4754321',4754321,-168.000000,2.000000,319.000000,3.141593,3073,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,55136,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4754322',4754322,-176.000000,2.000000,319.000000,3.141593,3074,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54870,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4754323',4754323,-184.000000,2.000000,319.000000,3.141593,3075,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54604,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4754324',4754324,-192.000000,2.000000,319.000000,3.141593,3076,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54338,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4755526',4755526,196.000000,2.000000,331.000000,3.141593,3077,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,54072,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4755524',4755524,188.000000,2.000000,331.000000,3.141593,3078,0,0,0,2,6,0,0,2810,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53806,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4757232',4757232,180.000000,2.000000,331.000000,3.141593,3079,0,0,0,2,6,0,0,2834,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53540,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4757233',4757233,172.000000,2.000000,331.000000,3.141593,3080,0,0,0,2,6,0,0,2836,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53274,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4757234',4757234,164.000000,2.000000,331.000000,3.141593,3081,0,0,0,2,6,0,0,2835,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,53008,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4757235',4757235,156.000000,2.000000,331.000000,3.141593,3082,0,0,0,2,6,0,0,2837,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52742,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4757236',4757236,148.000000,2.000000,331.000000,3.141593,3083,0,0,0,2,6,0,0,2838,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52476,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4757237',4757237,140.000000,2.000000,331.000000,3.141593,3084,0,0,0,2,6,0,0,2839,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,52210,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4757238',4757238,132.000000,2.000000,331.000000,3.141593,3085,0,0,0,2,6,0,0,2840,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51944,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4757239',4757239,124.000000,2.000000,331.000000,3.141593,3086,0,0,0,2,6,0,0,2841,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51678,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4757240',4757240,116.000000,2.000000,331.000000,3.141593,3087,0,0,0,2,6,0,0,2842,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51412,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4757241',4757241,108.000000,2.000000,331.000000,3.141593,3088,0,0,0,2,6,0,0,2843,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,51146,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4757242',4757242,100.000000,2.000000,331.000000,3.141593,3089,0,0,0,2,6,0,0,2844,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50880,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4757243',4757243,92.000000,2.000000,331.000000,3.141593,3090,0,0,0,2,6,0,0,2845,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50614,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4757244',4757244,84.000000,2.000000,331.000000,3.141593,3091,0,0,0,2,6,0,0,2846,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50348,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4757245',4757245,76.000000,2.000000,331.000000,3.141593,3092,0,0,0,2,6,0,0,2847,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,50082,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4757246',4757246,68.000000,2.000000,331.000000,3.141593,3093,0,0,0,2,6,0,0,2848,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49816,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4757247',4757247,60.000000,2.000000,331.000000,3.141593,3094,0,0,0,2,6,0,0,2849,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49550,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4759594',4759594,52.000000,2.000000,331.000000,3.141593,3095,0,0,0,2,6,0,0,2850,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49284,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4759595',4759595,42.000000,2.000000,331.000000,3.141593,3096,0,0,0,2,6,0,0,2884,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,49018,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4759596',4759596,32.000000,2.000000,331.000000,3.141593,3097,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48752,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4760471',4760471,24.000000,2.000000,331.000000,3.141593,3098,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48486,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4768182',4768182,16.000000,2.000000,331.000000,3.141593,3099,0,0,0,2,6,0,0,2168,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,48220,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4768250',4768250,8.000000,2.000000,331.000000,3.141593,3100,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47954,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4771768',4771768,-0.000000,2.000000,331.000000,3.141593,3103,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47688,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4771769',4771769,-8.000000,2.000000,331.000000,3.141593,3104,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47422,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4771770',4771770,-16.000000,2.000000,331.000000,3.141593,3105,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,47156,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4771771',4771771,-24.000000,2.000000,331.000000,3.141593,3106,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46890,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4771772',4771772,-32.000000,2.000000,331.000000,3.141593,3107,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46624,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4889311',4889311,-40.000000,2.000000,331.000000,3.141593,3108,0,0,0,2,6,0,0,2912,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46358,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4772340',4772340,-48.000000,2.000000,331.000000,3.141593,3109,0,0,0,2,6,0,0,2911,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,46092,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4772341',4772341,-56.000000,2.000000,331.000000,3.141593,3110,0,0,0,2,6,0,0,2910,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45826,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4772342',4772342,-64.000000,2.000000,331.000000,3.141593,3111,0,0,0,2,6,0,0,2909,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45560,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4772343',4772343,-74.000000,2.000000,331.000000,3.141593,3112,0,0,0,2,6,0,0,2908,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45294,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4772344',4772344,-84.000000,2.000000,331.000000,3.141593,3113,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,45028,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4772345',4772345,-94.000000,2.000000,331.000000,3.141593,3118,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44762,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4772346',4772346,-104.000000,2.000000,331.000000,3.141593,3123,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44496,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4772347',4772347,-112.000000,2.000000,331.000000,3.141593,3124,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,44230,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4772348',4772348,-122.000000,2.000000,331.000000,3.141593,3125,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43964,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4841530',4841530,-132.000000,2.000000,331.000000,3.141593,3126,0,0,0,2,6,0,0,2914,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43698,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4841531',4841531,-140.000000,2.000000,331.000000,3.141593,3127,0,0,0,2,6,0,0,2915,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43432,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867685',4867685,-150.000000,2.000000,331.000000,3.141593,3128,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,43166,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867686',4867686,-160.000000,2.000000,331.000000,3.141593,3129,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42900,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867687',4867687,-168.000000,2.000000,331.000000,3.141593,3130,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42634,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867800',4867800,-178.000000,2.000000,331.000000,3.141593,3131,0,0,0,2,6,0,0,2609,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42368,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867801',4867801,-188.000000,2.000000,331.000000,3.141593,3132,0,0,0,2,6,0,0,2619,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,42102,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867802',4867802,196.000000,2.000000,343.000000,3.141593,3133,0,0,0,2,6,0,0,2620,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41836,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867803',4867803,188.000000,2.000000,343.000000,3.141593,3134,0,0,0,2,6,0,0,2621,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41570,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867804',4867804,180.000000,2.000000,343.000000,3.141593,3135,0,0,0,2,6,0,0,2622,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41304,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867805',4867805,172.000000,2.000000,343.000000,3.141593,3136,0,0,0,2,6,0,0,2623,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,41038,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867806',4867806,164.000000,2.000000,343.000000,3.141593,3137,0,0,0,2,6,0,0,2621,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40772,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867807',4867807,156.000000,2.000000,343.000000,3.141593,3138,0,0,0,2,6,0,0,2610,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40506,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867808',4867808,148.000000,2.000000,343.000000,3.141593,3139,0,0,0,2,6,0,0,2624,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,40240,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867809',4867809,140.000000,2.000000,343.000000,3.141593,3140,0,0,0,2,6,0,0,2625,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39974,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867810',4867810,132.000000,2.000000,343.000000,3.141593,3141,0,0,0,2,6,0,0,2626,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39708,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867811',4867811,122.000000,2.000000,343.000000,3.141593,3142,0,0,0,2,6,0,0,2627,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39442,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867812',4867812,112.000000,2.000000,343.000000,3.141593,3143,0,0,0,2,6,0,0,2613,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,39176,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867813',4867813,102.000000,2.000000,343.000000,3.141593,3144,0,0,0,2,6,0,0,2611,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38910,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867814',4867814,90.000000,2.000000,343.000000,3.141593,3145,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38644,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867815',4867815,80.000000,2.000000,343.000000,3.141593,3146,0,0,0,2,6,0,0,2616,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38378,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867816',4867816,72.000000,2.000000,343.000000,3.141593,3147,0,0,0,2,6,0,0,2612,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,38112,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867817',4867817,64.000000,2.000000,343.000000,3.141593,3148,0,0,0,2,6,0,0,2628,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37846,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867818',4867818,54.000000,2.000000,343.000000,3.141593,3149,0,0,0,2,6,0,0,2629,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37580,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867819',4867819,42.000000,2.000000,343.000000,3.141593,3150,0,0,0,2,6,0,0,2630,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37314,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867820',4867820,30.000000,2.000000,343.000000,3.141593,3151,0,0,0,2,6,0,0,2631,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,37048,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867821',4867821,18.000000,2.000000,343.000000,3.141593,3152,0,0,0,2,6,0,0,2632,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36782,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867822',4867822,8.000000,2.000000,343.000000,3.141593,3153,0,0,0,2,6,0,0,2634,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36516,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867823',4867823,-0.000000,2.000000,343.000000,3.141593,3154,0,0,0,2,6,0,0,2635,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,36250,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867824',4867824,-8.000000,2.000000,343.000000,3.141593,3155,0,0,0,2,6,0,0,2636,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35984,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867825',4867825,-16.000000,2.000000,343.000000,3.141593,3156,0,0,0,2,6,0,0,2637,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35718,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867826',4867826,-24.000000,2.000000,343.000000,3.141593,3157,0,0,0,2,6,0,0,2638,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35452,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867827',4867827,-32.000000,2.000000,343.000000,3.141593,3158,0,0,0,2,6,0,0,2612,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,35186,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867828',4867828,-40.000000,2.000000,343.000000,3.141593,3159,0,0,0,2,6,0,0,2634,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34920,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867829',4867829,-48.000000,2.000000,343.000000,3.141593,3160,0,0,0,2,6,0,0,539,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34654,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867830',4867830,-56.000000,2.000000,343.000000,3.141593,3161,0,0,0,2,6,0,0,2640,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34388,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867831',4867831,-64.000000,2.000000,343.000000,3.141593,3162,0,0,0,2,6,0,0,2742,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,34122,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867832',4867832,-72.000000,2.000000,343.000000,3.141593,3163,0,0,0,2,6,0,0,2742,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33856,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867833',4867833,-80.000000,2.000000,343.000000,3.141593,3164,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33590,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867834',4867834,-90.000000,2.000000,343.000000,3.141593,3165,0,0,0,2,6,0,0,2642,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33324,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867835',4867835,-100.000000,2.000000,343.000000,3.141593,3166,0,0,0,2,6,0,0,2643,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,33058,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867836',4867836,-108.000000,2.000000,343.000000,3.141593,3167,0,0,0,2,6,0,0,2174,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32792,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867837',4867837,-116.000000,2.000000,343.000000,3.141593,3168,0,0,0,2,6,0,0,2644,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32526,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867838',4867838,-124.000000,2.000000,343.000000,3.141593,3169,0,0,0,2,6,0,0,2645,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,32260,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867839',4867839,-132.000000,2.000000,343.000000,3.141593,3170,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31994,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867840',4867840,-140.000000,2.000000,343.000000,3.141593,3171,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31728,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867841',4867841,-148.000000,2.000000,343.000000,3.141593,3172,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31462,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867842',4867842,-156.000000,2.000000,343.000000,3.141593,3173,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,31196,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4867843',4867843,-164.000000,2.000000,343.000000,3.141593,3174,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30930,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888242',4888242,-172.000000,2.000000,343.000000,3.141593,3175,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30664,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888243',4888243,-180.000000,2.000000,343.000000,3.141593,3176,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30398,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888244',4888244,-188.000000,2.000000,343.000000,3.141593,3177,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,30132,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888245',4888245,196.000000,2.000000,355.000000,3.141593,3178,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29866,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888246',4888246,188.000000,2.000000,355.000000,3.141593,3179,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29600,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888247',4888247,180.000000,2.000000,355.000000,3.141593,3180,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29334,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888248',4888248,172.000000,2.000000,355.000000,3.141593,3181,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,29068,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888249',4888249,164.000000,2.000000,355.000000,3.141593,3183,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28802,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888250',4888250,156.000000,2.000000,355.000000,3.141593,3184,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28536,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888251',4888251,148.000000,2.000000,355.000000,3.141593,3185,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28270,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888252',4888252,140.000000,2.000000,355.000000,3.141593,3186,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,28004,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888253',4888253,132.000000,2.000000,355.000000,3.141593,3187,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27738,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888254',4888254,124.000000,2.000000,355.000000,3.141593,3188,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27472,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888255',4888255,116.000000,2.000000,355.000000,3.141593,3189,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,27206,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888256',4888256,106.000000,2.000000,355.000000,3.141593,3190,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26940,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888257',4888257,96.000000,2.000000,355.000000,3.141593,3191,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26674,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888258',4888258,88.000000,2.000000,355.000000,3.141593,3192,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26408,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888259',4888259,80.000000,2.000000,355.000000,3.141593,3193,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,26142,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888260',4888260,72.000000,2.000000,355.000000,3.141593,3194,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25876,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888261',4888261,64.000000,2.000000,355.000000,3.141593,3195,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25610,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888262',4888262,56.000000,2.000000,355.000000,3.141593,3196,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25344,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888263',4888263,48.000000,2.000000,355.000000,3.141593,3197,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,25078,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888264',4888264,38.000000,2.000000,355.000000,3.141593,3198,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24812,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888265',4888265,26.000000,2.000000,355.000000,3.141593,3199,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24546,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888266',4888266,16.000000,2.000000,355.000000,3.141593,3200,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24280,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888267',4888267,8.000000,2.000000,355.000000,3.141593,3201,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,24014,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888268',4888268,-2.000000,2.000000,355.000000,3.141593,3202,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23748,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888269',4888269,-12.000000,2.000000,355.000000,3.141593,3203,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23482,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888270',4888270,-22.000000,2.000000,355.000000,3.141593,3204,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,23216,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888271',4888271,-32.000000,2.000000,355.000000,3.141593,3205,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22950,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888272',4888272,-42.000000,2.000000,355.000000,3.141593,3206,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22684,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888273',4888273,-54.000000,2.000000,355.000000,3.141593,3207,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22418,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888274',4888274,-66.000000,2.000000,355.000000,3.141593,3208,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,22152,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888275',4888275,-76.000000,2.000000,355.000000,3.141593,3209,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21886,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888276',4888276,-86.000000,2.000000,355.000000,3.141593,3210,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21620,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888277',4888277,-96.000000,2.000000,355.000000,3.141593,3211,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21354,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888278',4888278,-104.000000,2.000000,355.000000,3.141593,3212,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,21088,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888279',4888279,-112.000000,2.000000,355.000000,3.141593,3213,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20822,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888280',4888280,-122.000000,2.000000,355.000000,3.141593,3214,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20556,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888281',4888281,-132.000000,2.000000,355.000000,3.141593,3215,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20290,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888282',4888282,-142.000000,2.000000,355.000000,3.141593,3216,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,20024,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888283',4888283,-154.000000,2.000000,355.000000,3.141593,3217,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19758,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888284',4888284,-166.000000,2.000000,355.000000,3.141593,3218,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19492,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888285',4888285,-178.000000,2.000000,355.000000,3.141593,3219,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,19226,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888286',4888286,-190.000000,2.000000,355.000000,3.141593,3220,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18960,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888287',4888287,194.000000,2.000000,367.000000,3.141593,3221,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18694,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888288',4888288,182.000000,2.000000,367.000000,3.141593,3222,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18428,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888289',4888289,172.000000,2.000000,367.000000,3.141593,3223,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,18162,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888290',4888290,162.000000,2.000000,367.000000,3.141593,3224,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17896,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4888291',4888291,150.000000,2.000000,367.000000,3.141593,3225,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17630,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4894341',4894341,138.000000,2.000000,367.000000,3.141593,3226,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17364,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4903048',4903048,128.000000,2.000000,367.000000,3.141593,3227,0,0,0,2,6,0,0,2866,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,17098,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4903110',4903110,118.000000,2.000000,367.000000,3.141593,3228,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16832,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4903111',4903111,108.000000,2.000000,367.000000,3.141593,3229,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16566,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4903112',4903112,100.000000,2.000000,367.000000,3.141593,3230,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16300,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4903113',4903113,90.000000,2.000000,367.000000,3.141593,3231,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,16034,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4903114',4903114,80.000000,2.000000,367.000000,3.141593,3232,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15768,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4903115',4903115,72.000000,2.000000,367.000000,3.141593,3233,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15502,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4903116',4903116,64.000000,2.000000,367.000000,3.141593,3234,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,15236,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4903117',4903117,56.000000,2.000000,367.000000,3.141593,3235,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14970,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4903118',4903118,48.000000,2.000000,367.000000,3.141593,3236,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14704,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4903119',4903119,40.000000,2.000000,367.000000,3.141593,3237,0,0,0,2,6,0,0,0,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14438,7,0,0,0,0,0,0,0,0); +INSERT INTO BattleNpc(GroupId,GroupName,TerritoryName,name,instanceId,x,y,z,Rotation,BaseId,PopWeather,PopTimeStart,PopTimeEnd,MoveAI,WanderingRange,Route,EventGroup,NameId,DropItem,SenseRangeRate,Level,ActiveType,PopInterval,PopRate,PopEvent,LinkGroup,LinkFamily,LinkRange,LinkCountLimit,NonpopInitZone,InvalidRepop,LinkParent,LinkOverride,LinkReply,HorizontalPopRange,VerticalPopRange,BNpcBaseData,RepopId,BNPCRankId,TerritoryRange,BoundInstanceID,FateLayoutLabelId,NormalAI,ServerPathId,EquipmentID,CustomizeID) VALUES (69230,'BNpc','zoo','bnpc4903338',4903338,32.000000,2.000000,367.000000,3.141593,3238,0,0,0,2,6,0,0,2982,0,0.000000,1,1,5,1,0,0,0,0,0,0,0,0,0,0,0.000000,1.000000,14172,7,0,0,0,0,0,0,0,0); + +CREATE TABLE BattleNpcGroupMapping( + TerritoryTypeId INTEGER NOT NULL + ,LayerSetId INTEGER NOT NULL + ,LayerGroupId INTEGER NOT NULL + ,LayerGroupName VARCHAR(29) NOT NULL +); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,97513,97583,'QB_JobWar001_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (317,92341,93036,'QB_JobBlm450_001_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (317,92341,93037,'QB_JobBlm450_001_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (317,92341,93038,'QB_JobBlm450_001_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (234,82589,83996,'QB_CLSCNJ003_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (167,80469,85261,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (167,80469,85262,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (167,80469,85267,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (167,80469,92097,'LVD_boss'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (167,80469,92095,'LVD_mboss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (167,80469,92096,'LVD_mboss_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (236,83063,82857,'QB_CLSARC_006_1'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (20,82581,82613,'Prog001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (20,90280,82613,'Prog001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (354,103456,103458,'LVD_bnpc_01_Real'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (363,97591,98525,'LVD_bnpc_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (363,97591,97693,'LVD_bnpc_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (363,97591,98533,'LVD_bnpc_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (363,97591,97666,'LVD_bnpc_gim_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (363,97591,97692,'LVD_bnpc_gim_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (363,97591,97703,'LVD_bnpc_gim_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (363,97591,97704,'LVD_boss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (363,97591,97665,'LVD_gimmick_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (363,97591,97702,'LVD_gimmick_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (363,97591,97689,'LVD_mboss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (363,97591,97691,'LVD_mboss_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (5,68517,91510,'PlanEvent_kawase'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (5,68517,73688,'QST_BNPC'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (355,97346,97627,'LVD_BNPC_01_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (355,97346,98183,'LVD_Boss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (380,100765,100858,'LVD_BNPC_01_01_HARD'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (380,100765,100859,'LVD_Boss_01_HARD'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (356,98880,98902,'LVD_BNPC_02_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (356,98880,98906,'LVD_Boss_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (356,98880,98909,'LVD_gimmick_02_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (237,83066,83082,'QB_ClsLnc003_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,67137,'LVD_BNPC_PUB_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,70479,'LVD_BNPC_PUB_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,70480,'LVD_BNPC_PUB_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,70481,'LVD_BNPC_PUB_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,96986,'LVD_BNPC_PUB_05'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,83943,'LVD_guard_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,83922,'FATE_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,84018,'FATE_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,83843,'FATE_006'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,83670,'FATE_007'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,83680,'FATE_008'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,83681,'FATE_009'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,86209,'FATE_012'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,87257,'FATE_013'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,86225,'FATE_014'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,93822,'FATE_016'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,93528,'FATE_018'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,93845,'FATE_019'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,93529,'FATE_021'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,93783,'FATE_024'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,93835,'FATE_025'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,93836,'FATE_028'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,93531,'FATE_031'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,96836,'FATE_032'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,96838,'FATE_033'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,96772,'FATE_FFXI_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,96773,'FATE_FFXI_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,87129,'Grand_Company_Leve'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,96606,'QST_BanSyl004'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,96644,'QST_BanSyl005'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,96976,'QST_BanSyl109'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,97630,'QST_BanSyl204_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,97313,'QST_BanSyl208_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,97064,'QST_BanSyl303_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,97354,'QST_BanSyl304_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,97623,'QST_BanSyl307_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,92621,'QST_GaiUsa002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,92548,'QST_GaiUsa004'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,82657,'QST_GaiUsa007_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,92570,'QST_GaiUsa105'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,82651,'QST_GaiUsa107_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,92571,'QST_GaiUsa108'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,93185,'QST_GaiUsc303'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,93187,'QST_GaiUsc304'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,93196,'QST_GaiUsc307'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,96556,'QST_GaiUse116'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,102789,'QST_GaiUse309'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,102225,'QST_GaiUse310'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,93488,'QST_JobMnk450_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,93426,'QST_JobWhm400_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,99747,'QST_SubCts811_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,82621,'QST_SUBFST081_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,82656,'QST_SUBFST086_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,82947,'QST_SUBFST091_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,82892,'QST_CLSCNJ002_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,76544,'QST_CLSCNJ003_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,76490,'QST_CLSLNC003_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (152,67909,83007,'QST_ClsLnc005_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (381,100805,100861,'LVD_BNPC_02_01_HARD'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (381,100805,100862,'LVD_Boss_02_HARD'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (381,100805,98909,'LVD_gimmick_02_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (369,97941,97946,'LVD_EPIC_BATTLE'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (264,85492,86838,'QB_ClsExc250_000'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,98881,98902,'LVD_BNPC_02_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,98881,98906,'LVD_Boss_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,98881,98909,'LVD_gimmick_02_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (357,98928,98951,'LVD_BNPC_03_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (357,98928,98952,'LVD_BNPC_03_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (357,98928,98955,'LVD_Boss_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (303,92269,92228,'QB_GAIUSA201_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (382,100806,100864,'LVD_BNPC_03_01_HARD'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (382,100806,100865,'LVD_BNPC_03_02_HARD'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (382,100806,100866,'LVD_Boss_03_HARD'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (305,92256,92758,'QB_GaiUsc606_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,98930,98951,'LVD_BNPC_03_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,98930,98952,'LVD_BNPC_03_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,98930,98955,'LVD_Boss_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (226,82500,83231,'QB_ManFst007_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (164,73128,73442,'LVD_BNPC_Dungeon_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (164,73128,73443,'LVD_BNPC_Dungeon_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (164,73128,73627,'LVD_BNPC_Dungeon_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (164,73128,73383,'LVD_BNPC_Dungeon_boss'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (243,83103,93039,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (243,83103,93040,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (243,83103,93041,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,85024,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,85030,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,93594,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,85947,'LVD_gurad_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,93865,'FATE_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,93713,'FATE_006'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,93611,'FATE_007'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,89203,'FATE_013'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,89584,'FATE_014'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,89586,'FATE_015'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,89553,'FATE_021'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,89587,'FATE_022'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,89588,'FATE_024'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,90664,'FATE_025'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,93353,'FATE_026'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,93371,'FATE_027'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,93807,'FATE_028'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,93808,'FATE_029'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,93809,'FATE_030'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,93811,'FATE_031'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,96988,'FATE_FFXI_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,96989,'FATE_FFXI_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,92557,'FATE_Firefall_2013_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,87128,'Grand_Company_Leve'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,92906,'QST_GaiUsb005'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,92963,'QST_GaiUsb202'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,92964,'QST_GaiUsb203'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,92965,'QST_GaiUsb204'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,92967,'QST_GaiUsb206'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,92975,'QST_GaiUsb309'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,92976,'QST_GaiUsb310'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,92981,'QST_GaiUsb312'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,96755,'QST_GaiUse103'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,93363,'QST_JobBrd400'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,93479,'QST_JobMnk_350_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,93062,'QST_JobWar_400_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (137,73534,93064,'QST_JobWar_450_004'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (239,83067,83337,'QB_ClsLnc006_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (215,80071,80225,'go003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (383,100808,100867,'LVD_Boss_01_HARD'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (233,82535,83209,'QB_ManFst005_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (7,73094,73095,'LVD_benchmark_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (308,92257,92610,'QB_GaiUsc604_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (166,74247,86574,'LVD_BNPC_00'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (166,74247,81667,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (166,74247,83469,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (166,74247,83597,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (166,74247,83598,'LVD_BNPC_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (166,74247,83600,'LVD_BNPC_05'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (166,74247,81654,'LVD_BNPC_BossBattle'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,67219,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,69263,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,69268,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,69317,'LVD_BNPC_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,93217,'LVD_BNPC_05'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,82198,'LVD_guard_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,86467,'LVD_kakashi'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,80466,'FATE_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,83954,'FATE_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,83955,'FATE_003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,83957,'FATE_004'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,82416,'FATE_006'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,83707,'FATE_008'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,83921,'FATE_013'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,83656,'FATE_015'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,83657,'FATE_017'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,83662,'FATE_021'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,83663,'FATE_022'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,83664,'FATE_023'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,84152,'FATE_024'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,85551,'FATE_025'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,85808,'FATE_026'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,85912,'FATE_027'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,93780,'FATE_028'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,93952,'FATE_029'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,93526,'FATE_031'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,93527,'FATE_032'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,100807,'FATE_CNY_2015_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,96894,'FATE_DQX_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,93919,'FATE_Firefall_2013_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,97167,'FATE_XMAS_2013_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,93425,'QST_JobWhm350_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,83292,'QST_SubFst057'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,83536,'QST_SubFst060'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,82588,'QST_SubFst067'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,83574,'QST_SubFst073'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,82790,'QST_ClsCnj004_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,76855,'QST_ClsLnc001_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,83040,'QST_ClsLnc002_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,73436,'QST_ENPC_012'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,75549,'QST_ENPC_013'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,92716,'QST_GaiUsa908'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,92743,'QST_GaiUsa912'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,93200,'QST_GaiUsc307'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (148,67908,73749,'QST_SubFst033_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (350,96435,96510,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (350,96435,96511,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (350,96435,96512,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (350,96435,96690,'LVD_bnpc_mboss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (350,96435,96797,'LVD_bnpc_mboss_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (350,96435,96870,'LVD_bnpc_mboss_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (350,96435,96833,'LVD_gimmick_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (19,82580,85797,'Leve_PopRange'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (373,99283,99167,'LVD_BNPC_Dungeon_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (373,99283,99168,'LVD_BNPC_Dungeon_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (373,99283,99877,'LVD_BNPC_Dungeon_HARD_Boss'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (373,99283,99875,'LVD_BNPC_Dungeon_HARD_Mboss01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (373,99283,99876,'LVD_BNPC_Dungeon_HARD_Mboss02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (373,99283,99686,'LVD_phase01gimmick'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (373,99283,99687,'LVD_phase02gimmick'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (373,99283,99688,'LVD_phase03gimmick'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (319,92337,92941,'QB_JobWhm300_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,99112,99167,'LVD_BNPC_Dungeon_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,99112,99168,'LVD_BNPC_Dungeon_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (235,82591,83969,'QB_CLSCNJ006_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (190,76374,77548,'Behest_b201_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (219,81836,81946,'Behest_b252_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,67815,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,83421,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,83422,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,83423,'LVD_BNPC_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,83945,'LVD_guard_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,84057,'FATE_005'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,84062,'FATE_007'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,83924,'FATE_010'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,83925,'FATE_011'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,83928,'FATE_012'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,83930,'FATE_014'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,83931,'FATE_015'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,83932,'FATE_016'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,93536,'FATE_019'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,93989,'FATE_020'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,93537,'FATE_021'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,102729,'FATE_CNY_2015_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,96895,'FATE_DQX_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,93920,'FATE_Firefall_2013_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,97168,'FATE_XMAS_2013_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,103415,'QST_BanIxa101'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,100782,'QST_BanIxa103'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,103420,'QST_BanIxa201'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,103422,'QST_BanIxa202'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,103423,'QST_BanIxa203'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,103432,'QST_BanIxa405'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,102896,'QST_ClsCnj511_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,96717,'QST_GaiUsd203'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,73843,'QST_BNPC_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,76817,'QST_CLSCNJ001_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,82995,'QST_ClsLnc005_003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,92671,'QST_GaiUsa802'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,92676,'QST_GaiUsa806'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,92840,'QST_GaiUsa809'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,93154,'QST_GaiUsa904'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,92880,'QST_GaiUsb603'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,92935,'QST_GaiUsb711'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,92939,'QST_GaiUsb713'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (154,68006,78642,'QST_SubFst028_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (348,94771,94785,'LVD_bnpc_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (332,92422,92547,'LVD_BNPC_05_boss'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (225,82499,83940,'QB_SubFst035_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (220,81840,81958,'go007'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (227,82501,83854,'QB_SubFst055_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (295,92164,92526,'LVD_bnpc_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (230,82502,82967,'QB_ClsArc005_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (320,92338,92886,'QB_JobWhm500_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (191,76375,77261,'Behest_b202_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (161,74252,79304,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (161,74252,79306,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (161,74252,79310,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (161,74252,79312,'LVD_BNPC_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (161,74252,79308,'LVD_BNPC_boss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,67117,'LVD_BNPC_PUB_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,70561,'LVD_BNPC_PUB_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,70575,'LVD_BNPC_PUB_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,70785,'LVD_BNPC_PUB_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,70793,'LVD_BNPC_PUB_05'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,83944,'LVD_guard_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,84025,'FATE_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,84027,'FATE_006'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,82141,'FATE_007'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,82431,'FATE_008'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,82432,'FATE_009'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,84719,'FATE_010'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,84044,'FATE_012'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,83844,'FATE_014'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,83850,'FATE_015'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,83914,'FATE_016'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,83916,'FATE_017'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,83917,'FATE_018'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,83918,'FATE_019'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,83919,'FATE_020'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,84574,'FATE_022'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,85948,'FATE_023'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,93987,'FATE_027'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,93988,'FATE_029'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,96965,'FATE_FFXI_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,96966,'FATE_FFXI_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,87361,'Grand_Company_Leve'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,93441,'QST_JobWhm451_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,82965,'QST_SUBFST099_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,84931,'QST_SUBFST116_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,84932,'QST_SUBFST117_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,83117,'QST_CLSCNJ_006_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,93525,'QST_GaiUsa207'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,92591,'QST_GaiUsa306'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,92592,'QST_GaiUsa308'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,92593,'QST_GaiUsa310'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,92625,'QST_GaiUsa604'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,92626,'QST_GaiUsa606'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,92771,'QST_GaiUsa702'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,92920,'QST_GaiUsb008'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,92925,'QST_GaiUsb010'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,92929,'QST_GaiUsb011'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,92932,'QST_GaiUsb012'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,93182,'QST_GaiUsc609'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,93484,'QST_JobMnk400_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (153,68005,93068,'QST_JobWar_450_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (277,87003,87163,'QB_MANFST302_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (278,87004,87238,'QB_ManWil302_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (287,92229,92266,'QB_CLSARC200_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (290,92080,92103,'QB_ClsLnc004_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (289,92081,92089,'QB_CLSCNJ_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (192,76376,76589,'go006'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (229,82520,83350,'QB_ClsArc004_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (371,98568,100240,'LVD_bnpc_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (371,98568,100243,'LVD_bnpc_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (371,98568,100274,'LVD_bnpc_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (371,98568,100239,'LVD_gimmick_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (371,98568,100271,'LVD_gimmick_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (371,98568,100241,'LVD_mboss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (371,98568,100245,'LVD_mboss_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (231,82521,82593,'QB_CLSARC_006_0'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (359,97508,98560,'LVD_bnpc_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (359,97508,97948,'LVD_gimmick_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (232,82522,92937,'QB_GaiUsa308_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (232,82522,83834,'QB_SUBFST099_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (291,92079,92115,'QB_ClsCnj005_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (218,81834,81849,'Behest_b251_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (228,82655,83349,'QB_ClsArc003_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (240,83073,83345,'QB_ClsLnc006_003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (321,92339,93130,'QB_JobBrd_451_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (324,92340,93211,'QB_JobSmn350_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (207,79267,94916,'LVD_bnpc_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (364,97594,98323,'LVD_bnpc_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (374,99502,99964,'LVD_bnpc_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (292,92163,89221,'LVD_bnpc_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (375,99503,100179,'LVD_bnpc_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (353,99470,99471,'LVD_bnpc_01_real'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (353,99470,97948,'LVD_gimmick_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (169,74201,74193,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (169,74201,82997,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (169,74201,82998,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (169,74201,77554,'LVD_BNPC_boss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (169,74201,77424,'LVD_gimmick_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (169,74201,82328,'LVD_gimmick_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (238,83071,83084,'QB_ClsLnc004_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (330,92365,93006,'QB_GaiUsc208_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93059,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,92909,'LVD_guard_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93490,'FATE_003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93448,'FATE_007'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93450,'FATE_012'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93478,'FATE_013'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,92349,'FATE_014'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,92350,'FATE_015'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,92351,'FATE_016'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93797,'FATE_017'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93451,'FATE_018'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93183,'FATE_020'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,92353,'FATE_021'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,94510,'FATE_FF13_04_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,94658,'FATE_FF13_04_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,94512,'FATE_FF13_05_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,94659,'FATE_FF13_05_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93080,'Grand_Company_Leve'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,103407,'QST_BanIxa50x'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93234,'QST_GaiUsc411'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93236,'QST_GaiUsc412'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93238,'QST_GaiUsc413'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93112,'QST_GaiUsc505'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93132,'QST_GaiUsc506'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93158,'QST_GaiUsc507'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93161,'QST_GaiUsc509'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93170,'QST_GaiUsc601'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93174,'QST_GaiUsc602'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,98387,'QST_GaiUse211'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,102726,'QST_GaiUse314'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93398,'QST_JobSch_450_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (156,73541,93254,'QST_JobSmn450_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (306,92270,92154,'QB_GaiUsa709_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (202,79145,80599,'LVD_bnpc_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (299,92230,92232,'go013'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (300,92231,92233,'go014'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (309,92258,92741,'QB_GaiUsc605_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (315,92322,92574,'QB_JOBMNK_500_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (168,74253,85357,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (168,74253,85360,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (168,74253,85361,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (168,74253,93853,'LVD_BNPC_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (168,74253,91856,'LVD_boss'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (168,74253,91850,'LVD_gmmick_ice'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (168,74253,91849,'LVD_gmmick_wyvern'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (168,74253,91854,'LVD_mboss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (168,74253,91855,'LVD_mboss_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (326,92323,93259,'QB_JOBSMN_500_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (174,84906,93316,'LVD_bnpc_11'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (174,84906,93661,'LVD_bnpc_12'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (174,84906,93317,'LVD_bnpc_21'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (174,84906,93662,'LVD_bnpc_22'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (174,84906,93318,'LVD_bnpc_31'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (174,84906,93663,'LVD_bnpc_32'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (174,84906,93319,'LVD_bnpc_41'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,97268,94785,'LVD_bnpc_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (379,100565,100705,'QB_GaiUse315_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (362,97587,97225,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (362,97587,97226,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (362,97587,97227,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (362,97587,97902,'LVD_Boss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (362,97587,97903,'LVD_Boss_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (362,97587,97917,'LVD_Boss_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (362,97587,97228,'LVD_eventBNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (372,99420,100173,'LVD_boss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (372,99420,100170,'LVD_mboss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (372,99420,100171,'LVD_mboss_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (372,99420,100172,'LVD_mboss_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (372,99420,100167,'LVD_trush_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (372,99420,100168,'LVD_trush_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (372,99420,100169,'LVD_trush_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (281,90861,97947,'LVD_bnpc_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (281,90861,97948,'LVD_gimmick_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (171,80513,91729,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (171,80513,91730,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (171,80513,91731,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (22,84068,84942,'QIB_Test_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93093,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93153,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93159,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93173,'LVD_BNPC_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92902,'LVD_guard_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93107,'LVD_kakashi_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92289,'FATE_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92291,'FATE_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92293,'FATE_004'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92517,'FATE_005'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92523,'FATE_006'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93688,'FATE_007'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92431,'FATE_008'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92516,'FATE_010'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93716,'FATE_013'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92297,'FATE_015'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92298,'FATE_016'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92301,'FATE_020'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92302,'FATE_021'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92788,'FATE_023'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92795,'FATE_024'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92304,'FATE_025'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92535,'FATE_027'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92816,'FATE_028'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92823,'FATE_030'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92305,'FATE_031'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93718,'FATE_032'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93218,'FATE_034'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92306,'FATE_035'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92307,'FATE_037'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92829,'FATE_038'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92896,'FATE_039'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92898,'FATE_040'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92900,'FATE_041'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93310,'FATE_042'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93326,'FATE_044'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93343,'FATE_045'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93114,'FATE_046'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93117,'FATE_047'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93220,'FATE_048'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,96954,'FATE_049'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,98436,'FATE_EASTER_2014_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,94519,'FATE_FF13_03_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,94576,'FATE_FF13_03_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,97083,'FATE_XMAS_2013_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93075,'Grand_Company_Leve'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,103457,'QST_BanIxa60x'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92881,'QST_GaiUsb604'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92887,'QST_GaiUsb607'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92888,'QST_GaiUsb609'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92897,'QST_GaiUsb612'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92901,'QST_GaiUsb701'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92907,'QST_GaiUsb706'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92921,'QST_GaiUsb708'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92923,'QST_GaiUsb709'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92940,'QST_GaiUsb801'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92945,'QST_GaiUsb805'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92947,'QST_GaiUsb806'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92948,'QST_GaiUsb807'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92955,'QST_GaiUsb903'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92956,'QST_GaiUsb904'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92959,'QST_GaiUsb910'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92962,'QST_GaiUsb913'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93098,'QST_GaiUsc002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,92409,'QST_GaiUsc006'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93141,'QST_GaiUsc012'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93219,'QST_GaiUsc407'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93228,'QST_GaiUsc410'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,96602,'QST_GaiUse113'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,102775,'QST_GaiUse318'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93459,'QST_JobDrg300_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93460,'QST_JobDrg350_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93462,'QST_JobDrg400_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93463,'QST_JobDrg450_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93464,'QST_JobDrg451_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93065,'QST_JobWar_450_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (155,73777,93070,'QST_JobWar_451_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (223,81844,86836,'go011'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (298,92225,92227,'go012'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (271,86131,86465,'QB_ManWil007_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (301,92251,92382,'QB_GaiUsb803_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,84643,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,84648,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,84652,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,85941,'LVD_guard_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,93082,'LVD_kakashi_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,89403,'FATE_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,86270,'FATE_003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,86432,'FATE_004'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,86808,'FATE_006'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,86519,'FATE_007'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,86928,'FATE_008'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,86227,'FATE_010'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,89504,'FATE_012'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,86992,'FATE_014'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,86262,'FATE_018'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,87205,'FATE_019'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,87059,'FATE_020'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,102732,'FATE_CNY_2015_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,94601,'FATE_FF13_01_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,96984,'FATE_FFXI_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,96985,'FATE_FFXI_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,93915,'FATE_Firefall_2013_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,97135,'FATE_XMAS_2013_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,92370,'QST_ClsAcn050_000'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,81658,'QST_ClsExc100_000'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,100513,'QST_SubPst002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,84626,'QST_SubSea054_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,84640,'QST_SubSea058_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,84642,'QST_SubSea060_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,84602,'QST_SubSea104_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (134,73537,84609,'QST_SubSea105_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (302,92252,92268,'QB_GaiUsc004_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (304,92253,92464,'QB_GaiUsc408_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (313,92319,92984,'QB_JobPld500_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (316,92320,92841,'QB_JobDrg500_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (322,92321,92582,'QB_JOBBRD500_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (333,92566,93129,'QB_JobWar001_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (256,85237,85405,'QB_CLSGLA_250_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (241,83085,92993,'LVD_BNPC_02a'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (241,83085,94463,'LVD_BNPC_02b'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (241,83085,94464,'LVD_BNPC_02c'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (241,83085,92980,'LVD_BNPC_boss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (241,83085,92994,'LVD_BNPC_boss_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (368,97939,97950,'LVD_EPIC_BATTLE'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (208,79276,91997,'LVD_bnpc_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (294,92169,92063,'LVD_bnpc_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (297,92170,92410,'LVD_bnpc_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (366,97595,98594,'LVD_bnpc_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (366,97595,98502,'LVD_boss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (366,97595,98593,'LVD_mboss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (377,100128,100359,'LVD_bnpc_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (273,86625,86726,'QB_SUBWIL088_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (378,100326,100369,'LVD_bnpc_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (172,79272,81485,'LVD_bnpc_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (172,79272,82772,'LVD_bnpc_ph1_1'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (172,79272,93587,'LVD_bnpc_ph1_2'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (172,79272,82775,'LVD_bnpc_ph2_1'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (172,79272,82776,'LVD_bnpc_ph3_1'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (172,79272,82795,'LVD_gimmick_ph1_2'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (172,79272,92476,'LVD_gimmick_ph1_3'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (172,79272,92477,'LVD_gimmick_ph1_4'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (172,79272,83949,'LVD_gimmick_ph2_2'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (172,79272,91858,'LVD_gimmick_ph3_2'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (242,83095,92996,'LVD_BNPC_boss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (242,83095,92995,'LVD_BNPC_boss_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (242,83095,93514,'LVD_BNPC_boss_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (242,83095,93515,'LVD_BNPC_boss_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (242,83095,93516,'LVD_BNPC_boss_05'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (242,83095,93517,'LVD_BNPC_boss_06'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (242,83095,93518,'LVD_BNPC_boss_07'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (253,85134,85125,'QB_CLSGLA100_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (244,83110,93026,'LVD_BNPC_boss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (245,83113,93033,'LVD_BNPC_boss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (157,79213,85774,'LVD_bnpc_00'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (157,79213,80374,'LVD_bnpc_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (157,79213,80949,'LVD_bnpc_ph1_1'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (157,79213,82676,'LVD_bnpc_ph1_2'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (157,79213,82746,'LVD_bnpc_ph2_1'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (157,79213,82747,'LVD_bnpc_ph3_1'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (159,79640,86250,'LVD_bnpc_00'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (159,79640,86255,'LVD_bnpc_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (159,79640,86256,'LVD_bnpc_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (159,79640,86259,'LVD_bnpc_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (329,92346,93365,'QB_JobSch500_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (329,92346,93406,'QB_JobSch500_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (160,94478,94483,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (160,94478,94485,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (160,94478,94818,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (160,94478,94762,'LVD_boss'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (160,94478,94502,'LVD_Gimmick_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (160,94478,94759,'LVD_Mboss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (160,94478,94760,'LVD_Mboss_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (160,94478,94761,'LVD_Mboss_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (361,97588,99650,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (361,97588,99655,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (361,97588,99656,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (361,97588,99552,'LVD_boss'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (361,97588,99540,'LVD_gimmick'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (361,97588,99550,'LVD_mboss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (361,97588,99551,'LVD_mboss_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (361,97588,99553,'LVD_trap'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,97193,97225,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,97193,97226,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,97193,97227,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,97193,97228,'LVD_eventBNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (275,86631,86868,'QB_ManFst209_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (387,100911,103332,'LVD_BOSS_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (387,100911,103333,'LVD_BOSS_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (387,100911,103334,'LVD_BOSS_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (387,100911,100899,'LVD_gimmick_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (387,100911,100900,'LVD_gimmick_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (387,100911,103030,'LVD_gimmick_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (387,100911,103031,'LVD_gimmick_05'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (387,100911,103032,'LVD_gimmick_06'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,100868,100899,'LVD_gimmick_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,100868,100900,'LVD_gimmick_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,100868,100901,'LVD_gimmick_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (252,86178,86235,'QB_ManSea005_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (224,82292,93229,'LVD_bnpc_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (224,82292,93293,'LVD_bnpc_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (224,82292,93346,'LVD_bnpc_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (224,82292,93355,'LVD_bnpc_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (224,82292,93369,'LVD_bnpc_boss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (224,82292,93870,'LVD_bnpc_boss_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (224,82292,93296,'LVD_bnpc_mboss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (224,82292,93221,'LVD_gimmick_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (224,82292,93290,'LVD_gimmick_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (224,82292,93344,'LVD_gimmick_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (224,82292,93354,'LVD_gimmick_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (272,86179,86215,'QB_SubSea057_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (214,86828,86832,'go001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (285,92067,92207,'QB_CLSARC_100'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,82845,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,82881,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,83970,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,85946,'LVD_guard_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,87465,'FATE_003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,87083,'FATE_004'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,87201,'FATE_007'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,89220,'FATE_008'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,87082,'FATE_009'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,89296,'FATE_015'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,89363,'FATE_018'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,89677,'FATE_019'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,86534,'FATE_023'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,87441,'FATE_024'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,102749,'FATE_CNY_2015_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,96875,'FATE_DQX_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,93916,'FATE_Firefall_2013_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,97163,'FATE_XMAS_2013_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,87112,'Grand_Company_Leve'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,81634,'QST_CLSEXC300_000'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,92836,'QST_GaiUsb002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,92839,'QST_GaiUsb003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,93498,'QST_JobMnk451_003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,85608,'QST_SubSea066_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,85612,'QST_SubSea067_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,85736,'QST_SubSea070_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,85737,'QST_SubSea071_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,85738,'QST_SubSea073_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,82989,'QST_SUBSEA118_000'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,82990,'QST_SUBSEA119_000'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (135,73533,82991,'QST_SUBSEA120_000'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (367,99554,99584,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (367,99554,99585,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (367,99554,99586,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (249,83697,85062,'QB_SUBSEA117_000'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (262,85491,86070,'QB_ClsExc050_000'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (265,85493,89297,'QB_ClsExc300_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (307,92267,93056,'QB_GaiUsb004_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (222,86830,86833,'go010'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (279,87005,87280,'QB_MANSEA302_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (310,92334,93163,'QB_ClsWar300_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (310,92334,93164,'QB_ClsWar300_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (311,92335,92648,'QB_JobWar_500_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (311,92335,92672,'QB_JobWar_500_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (311,92335,92678,'QB_JobWar_500_003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (327,92336,93325,'QB_JobSch300_000'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,85055,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,85060,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,87864,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,93691,'LVD_BNPC_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,93773,'LVD_BNPC_05'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98552,'LVD_BNPC_06'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,85949,'LVD_guard_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,90605,'FATE_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,89237,'FATE_003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,89344,'FATE_008'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,89345,'FATE_010'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,90523,'FATE_011'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,89366,'FATE_016'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,90739,'FATE_017'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,89346,'FATE_019'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,89610,'FATE_022'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,89611,'FATE_023'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,93373,'FATE_026'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,93377,'FATE_027'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,93383,'FATE_028'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,93385,'FATE_029'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,93387,'FATE_030'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,93389,'FATE_033'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,93393,'FATE_035'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,96956,'FATE_036'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,100810,'FATE_037'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98431,'FATE_EASTER_2104_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,94615,'FATE_FF13_01_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,100535,'QST_BanAll030_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98618,'QST_BanSah002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,99253,'QST_BanSah005'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98584,'QST_BanSah104_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98480,'QST_BanSah105'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98530,'QST_BanSah106'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98531,'QST_BanSah107'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,99259,'QST_BanSah108'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,99220,'QST_BanSah109_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98444,'QST_BanSah110'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98545,'QST_BanSah202'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98461,'QST_BanSah203_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98498,'QST_BanSah205_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98506,'QST_BanSah206_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98500,'QST_BanSah208'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98532,'QST_BanSah209'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98616,'QST_BanSah301'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98469,'QST_BanSah303_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98540,'QST_BanSah304_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98520,'QST_BanSah305'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98521,'QST_BanSah306'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,99260,'QST_BanSah307'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,99232,'QST_BanSah309_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,92375,'QST_ClsAcn150'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,81669,'QST_ClsExc150_000'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,81668,'QST_ClsExc200_000'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,93176,'QST_GaiUsc206'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,93469,'QST_GaiUsc803'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,93521,'QST_GaiUsc804'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,93223,'QST_GaiUsc811'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98448,'QST_GaiUse213'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98449,'QST_GaiUse214'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,98450,'QST_GaiUse215'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,99746,'QST_SubCts812_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,84564,'QST_SubSea106_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,84645,'QST_SubSea108_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,96672,'QST_SubSea156'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,96674,'QST_SubSea158'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (138,77653,93938,'QST_SubSea161_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (263,85489,86080,'QB_ClsExc200_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (280,87149,87070,'QB_ManSea007_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (194,103522,103568,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (194,103522,103653,'LVD_Boss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,89200,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,89205,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,85951,'LVD_guard_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,89613,'FATE_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,93677,'FATE_005'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,93650,'FATE_008'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,93396,'FATE_010'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,93397,'FATE_011'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,93399,'FATE_017'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,93785,'FATE_019'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,93401,'FATE_020'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,96891,'FATE_DQX_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,87013,'FATE_HAMLET'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,87019,'FATE_HAMLET_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,87034,'FATE_HAMLET_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,87038,'FATE_HAMLET_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,87039,'FATE_HAMLET_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,92467,'QST_ClsAcn250'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,96771,'QST_GaiUse104'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,93400,'QST_JobSch_451_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (139,73535,96804,'QST_SubCts802_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (221,86829,86834,'go009'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (328,92343,93303,'QB_JobSch400_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,89225,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,89271,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93601,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93665,'FATE_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93403,'FATE_003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93846,'FATE_005'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93404,'FATE_008'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93888,'FATE_009'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93405,'FATE_010'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93407,'FATE_011'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93825,'FATE_013'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93435,'FATE_015'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93433,'FATE_016'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93897,'FATE_017'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93410,'FATE_019'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93849,'FATE_020'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,96955,'FATE_021'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98415,'FATE_022'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98407,'QST_BanKob003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98408,'QST_BanKob004'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98298,'QST_BanKob104_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98270,'QST_BanKob105'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98503,'QST_BanKob106_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98539,'QST_BanKob107_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98598,'QST_BanKob110_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98484,'QST_BanKob201_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98366,'QST_BanKob203'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98426,'QST_BanKob205'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98326,'QST_BanKob206'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98583,'QST_BanKob207_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98417,'QST_BanKob208_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98421,'QST_BanKob209_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98613,'QST_BanKob210_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98377,'QST_BanKob303'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98607,'QST_BanKob305'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98599,'QST_BanKob306'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98595,'QST_BanKob307_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98300,'QST_BanKob308_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,98615,'QST_BanKob310_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,102916,'QST_ClsExc510_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93011,'QST_GaiUsb405'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93016,'QST_GaiUsb408'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93017,'QST_GaiUsb409'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (180,79205,93273,'QST_JobPld350'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (325,92344,93246,'QB_JobSmn451_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (206,79238,85816,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (293,92165,89848,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (296,92166,92237,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (251,85305,85677,'QB_CLSPGL_300_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (0,97267,85816,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (255,85215,85359,'QB_CLSGLA200_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (250,84008,101963,'LVD_kakashi_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (193,103516,103567,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (193,103516,103584,'LVD_BNPC_Boss'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (195,103524,103654,'LVD_Boss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (196,103528,103655,'LVD_Boss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (162,80410,85147,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (162,80410,85194,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (162,80410,85287,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (162,80410,86916,'LVD_BNPC_BOSS'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (162,80410,85195,'LVD_BNPC_MBOSS_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (162,80410,86915,'LVD_BNPC_MBOSS_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (162,80410,86753,'LVD_gimmick_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (334,92978,93106,'QB_JobWar001_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (163,80022,85569,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (163,80022,85404,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (163,80022,85572,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (163,80022,91498,'LVD_BNPC_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (163,80022,93066,'LVD_BNPC_05'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (163,80022,93067,'LVD_BNPC_06'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (217,80412,92078,'LVD_bnpc_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (217,80412,92087,'LVD_bnpc_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (217,80412,92123,'LVD_bnpc_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (217,80412,92130,'LVD_bnpc_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (217,80412,92083,'LVD_bnpc_boss'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (217,80412,93252,'LVD_bnpc_mboss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (217,80412,94142,'LVD_bnpc_mboss_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (217,80412,94191,'LVD_bnpc_mboss_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (217,80412,92085,'LVD_gimmick_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (217,80412,92122,'LVD_gimmick_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (217,80412,92129,'LVD_gimmick_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (349,96397,96417,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (349,96397,96418,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (349,96397,96419,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (349,96397,96421,'LVD_BNPC_boss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (349,96397,96685,'LVD_BNPC_mboss_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (349,96397,96702,'LVD_BNPC_mboss_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (349,96397,96424,'LVD_gimmick_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (360,97512,97572,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (360,97512,97573,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (360,97512,97574,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (360,97512,97575,'LVD_BNPC_BOSS'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (360,97512,97576,'LVD_BNPC_MBOSS_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (360,97512,97577,'LVD_BNPC_MBOSS_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (360,97512,97578,'LVD_gimmick_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (257,85238,85550,'QB_CLSGLA_300_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (274,86629,86766,'QB_ManFst205_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,84603,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,84608,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,84614,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,84620,'LVD_BNPC_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,93472,'LVD_BNPC_06'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,85955,'LVD_guard_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,93090,'LVD_kakashi_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,87143,'FATE_004'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,86864,'FATE_005'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,87169,'FATE_007'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,86878,'FATE_008'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,87413,'FATE_009'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,87150,'FATE_010'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,87193,'FATE_013'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,87200,'FATE_014'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,90613,'FATE_015'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,87167,'FATE_017'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,87176,'FATE_018'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,96974,'FATE_FFXI_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,96975,'FATE_FFXI_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,85049,'QST_CLSGLA050_002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,85186,'QST_CLSGLA250_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,84900,'QST_CLSPGL_050'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,85380,'QST_CLSTHM_050'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,85406,'QST_CLSTHM_300'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,96769,'QST_GaiUse118'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,98296,'QST_GaiUse202'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,98319,'QST_GaiUse204'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,98375,'QST_GaiUse208'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,93486,'QST_JobBlm400'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,93069,'QST_JobWar_450_003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,84581,'QST_SUBWIL_036'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,84583,'QST_SUBWIL_038'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,84897,'QST_SUBWIL_039'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (140,73539,84934,'QST_SUBWIL_095'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (267,85693,85713,'QB_CLSTHM200_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (269,85694,85714,'QB_CLSTHM300_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,82773,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,82782,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,82794,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,85958,'LVD_guard_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,87206,'FATE_003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,87210,'FATE_006'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,87212,'FATE_007'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,87213,'FATE_008'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,87290,'FATE_009'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,87291,'FATE_010'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,87292,'FATE_011'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,87302,'FATE_012'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,87305,'FATE_014'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,88781,'FATE_016'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,87308,'FATE_018'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,87214,'FATE_019'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,87309,'FATE_022'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,87218,'FATE_026'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,102752,'FATE_CNY_2015_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,96564,'FATE_DQX_01_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,93917,'FATE_Firefall_2013_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,97164,'FATE_XMAS_2013_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,85111,'QST_CLSGLA100_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,102231,'QST_GaiUse303'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,100518,'QST_SubPst004'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,81544,'QST_SUBWIL_061'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,81558,'QST_SUBWIL_064'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,81590,'QST_SUBWIL_067'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,81657,'QST_SUBWIL_073'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (141,65617,84947,'QST_SUBWIL_083'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (216,80075,80720,'Behest_b153_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (248,83695,83952,'QB_SUBWIL066_1'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (258,85302,85679,'QBClsPgl150_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (270,86130,86137,'QB_ManWil005_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (314,92342,93414,'QB_JobMnk300_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,85591,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,85613,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,85630,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,85959,'LVD_guard_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,87433,'FATE_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,87318,'FATE_004'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,87321,'FATE_005'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,86886,'FATE_007'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,87322,'FATE_008'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,87337,'FATE_009'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,87338,'FATE_013'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,87324,'FATE_014'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,87339,'FATE_016'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,87341,'FATE_020'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,92852,'FATE_027'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,92855,'FATE_029'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,102751,'FATE_CNY_2015_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,98418,'FATE_EASTER_2014_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,94617,'FATE_FF13_02_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,93918,'FATE_Firefall_2013_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,84904,'FATE_HAMLET_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,84955,'FATE_HAMLET_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,84956,'FATE_HAMLET_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,84959,'FATE_HAMLET_05'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,97166,'FATE_XMAS_2013_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,87135,'Grand_Company_Leve'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,100688,'QST_BanAll070_003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,80518,'QST_CLSGLA_150'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,84948,'QST_CLSPGL_200'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,86071,'QST_CLSTHM100_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,86072,'QST_CLSTHM101_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,92622,'QST_GaiUsa504'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,93084,'QST_GaiUsb505'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,93087,'QST_GaiUsb510'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,93095,'QST_GaiUsb512'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,93471,'QST_JobBlm300'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,93505,'QST_JobBlm451'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,93360,'QST_JobBrd350'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,93277,'QST_JobPld400'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,93094,'QST_ManFst401'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,99748,'QST_SubCts813_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,85097,'QST_SUBWIL_110'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,86956,'QST_SUBWIL_113'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,85100,'QST_SUBWIL_119'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (145,71051,85107,'QST_SUBWIL_127'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (266,85689,85716,'QB_CLSTHM150_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (268,85690,85717,'QB_CLSTHM250_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,89383,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,89423,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,89482,'LVD_BNPC_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,93606,'LVD_BNPC_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,85962,'LVD_guard_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,87346,'FATE_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,87348,'FATE_003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,87436,'FATE_004'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,92862,'FATE_005'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,93820,'FATE_006'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,93645,'FATE_009'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,89614,'FATE_011'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,92864,'FATE_012'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,89574,'FATE_014'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,86856,'FATE_016'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,87404,'FATE_018'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,87349,'FATE_023'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,89615,'FATE_025'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,90234,'FATE_026'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,93646,'FATE_027'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,92865,'FATE_028'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,92866,'FATE_030'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,92867,'FATE_031'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,93308,'FATE_032'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,93402,'FATE_033'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,93647,'FATE_034'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,92878,'FATE_035'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,92871,'FATE_036'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,96826,'FATE_038'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,96951,'FATE_039'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,96887,'FATE_DQX_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,94474,'FATE_FF13_02_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,96980,'FATE_FFXI_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,96981,'FATE_FFXI_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,87139,'Grand_Company_Leve'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,96679,'QST_BanAma002'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,96680,'QST_BanAma003'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,96681,'QST_BanAma004'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,96682,'QST_BanAma005'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,97125,'QST_BanAma104_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,97387,'QST_BanAma107'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,96886,'QST_BanAma108'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,97253,'QST_BanAma204_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,97628,'QST_BanAma207_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,97069,'QST_BanAma208_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,97002,'QST_BanAma209_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,97062,'QST_BanAma308'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,97629,'QST_BanAma309_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,85205,'QST_CLSGLA_300_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,92775,'QST_GaiUsa705'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,92818,'QST_GaiUsa706'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,92821,'QST_GaiUsa708'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,92944,'QST_GaiUsb102'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,92950,'QST_GaiUsb103'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,92952,'QST_GaiUsb104'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,92957,'QST_GaiUsb108'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,93483,'QST_JobBlm350'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,93258,'QST_JobPld300'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,93294,'QST_JobPld450'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,93249,'QST_JobSmn400_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (146,66370,93074,'QST_JobWar_350_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (261,85310,85678,'QBClsPgl300_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (260,85976,86197,'QB_QST_PGL250'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (312,92331,93092,'QB_JobPld451_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (318,92332,92756,'QB_JobBlm500_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (323,92333,93189,'QB_JobSmn300_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,89700,'LVD_BNPC_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,89744,'LVD_BNPC_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,85964,'LVD_guard_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,93699,'FATE_004'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,93700,'FATE_005'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,93701,'FATE_007'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,93702,'FATE_008'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,93697,'FATE_009'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,93703,'FATE_011'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,93704,'FATE_012'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,93705,'FATE_013'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,93706,'FATE_014'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,93278,'FATE_015'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,93708,'FATE_018'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,93839,'FATE_019'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,93709,'FATE_024'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,93712,'FATE_027'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,93872,'FATE_028'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,92951,'QST_GaiUsb811'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,93233,'QST_GaiUsc903'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (147,77662,93237,'QST_GaiUsc906'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (170,79339,86544,'LVD_bnpc_01'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (170,79339,86545,'LVD_bnpc_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (170,79339,86546,'LVD_bnpc_03'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (170,79339,86547,'LVD_bnpc_04'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (170,79339,93599,'LVD_bnpc_05'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (170,79339,93652,'LVD_gimmick_02'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (254,85209,85222,'QB_CLSGLA150_001'); +INSERT INTO BattleNpcGroupMapping(TerritoryTypeId,LayerSetId,LayerGroupId,LayerGroupName) VALUES (259,85304,85676,'QB_CLSPGL_200'); diff --git a/sql/migrations/20210910074112_AddFriendlist.sql b/sql/migrations/20210910074112_AddFriendlist.sql new file mode 100644 index 00000000..d9ebcc72 --- /dev/null +++ b/sql/migrations/20210910074112_AddFriendlist.sql @@ -0,0 +1,9 @@ +CREATE TABLE IF NOT EXISTS CharaInfoFriendlist ( + `CharacterId` int(20) NOT NULL, + `CharacterIdList` blob, + `InviteDataList` blob, + `IS_DELETE` int(3) DEFAULT 0, + `IS_NOT_ACTIVE_FLG` int(3) DEFAULT 0, + `UPDATE_DATE` datetime, + PRIMARY KEY (`CharacterId`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; \ No newline at end of file diff --git a/sql/migrations/20210911163405_AddLinkshell.sql b/sql/migrations/20210911163405_AddLinkshell.sql new file mode 100644 index 00000000..73c2f758 --- /dev/null +++ b/sql/migrations/20210911163405_AddLinkshell.sql @@ -0,0 +1,2 @@ +ALTER TABLE `infolinkshell` + CHANGE COLUMN `MasterCharacterId` `MasterCharacterId` BIGINT NULL DEFAULT NULL AFTER `LinkshellId`; \ No newline at end of file diff --git a/sql/migrations/20210916081902_RenameContentIdToActorId.sql b/sql/migrations/20210916081902_RenameContentIdToActorId.sql new file mode 100644 index 00000000..f5bdf411 --- /dev/null +++ b/sql/migrations/20210916081902_RenameContentIdToActorId.sql @@ -0,0 +1,49 @@ +-- Migration generated at 2021/09/16 08:19:02 +-- 20210916081902_RenameContentIdToActorId.sql + +ALTER TABLE `accounts` + CHANGE COLUMN `account_id` `account_id` BIGINT UNSIGNED NOT NULL FIRST; + +ALTER TABLE `characlass` + CHANGE COLUMN `CharacterId` `CharacterId` BIGINT UNSIGNED NOT NULL FIRST; + +ALTER TABLE `charaglobalitem` + CHANGE COLUMN `CharacterId` `CharacterId` BIGINT UNSIGNED NOT NULL FIRST; + +ALTER TABLE `charainfo` + CHANGE COLUMN `AccountId` `AccountId` BIGINT UNSIGNED NOT NULL FIRST, + CHANGE COLUMN `CharacterId` `CharacterId` BIGINT UNSIGNED NOT NULL AFTER `AccountId`, + CHANGE COLUMN `ContentId` `EntityId` INT UNSIGNED NULL DEFAULT '0' AFTER `CharacterId`; + +ALTER TABLE `charainfoblacklist` + CHANGE COLUMN `CharacterId` `CharacterId` BIGINT UNSIGNED NOT NULL FIRST; + +ALTER TABLE `charainfolinkshell` + CHANGE COLUMN `CharacterId` `CharacterId` BIGINT UNSIGNED NOT NULL FIRST; + +ALTER TABLE `charainfosearch` + CHANGE COLUMN `CharacterId` `CharacterId` BIGINT UNSIGNED NOT NULL FIRST; + +ALTER TABLE `charaitemcrystal` + CHANGE COLUMN `CharacterId` `CharacterId` BIGINT UNSIGNED NOT NULL FIRST; + +ALTER TABLE `charaitemcurrency` + CHANGE COLUMN `CharacterId` `CharacterId` BIGINT UNSIGNED NOT NULL FIRST; + +ALTER TABLE `charaitemgearset` + CHANGE COLUMN `CharacterId` `CharacterId` BIGINT UNSIGNED NOT NULL FIRST; + +ALTER TABLE `charaiteminventory` + CHANGE COLUMN `CharacterId` `CharacterId` BIGINT UNSIGNED NOT NULL FIRST; + +ALTER TABLE `charamonsternote` + CHANGE COLUMN `CharacterId` `CharacterId` BIGINT UNSIGNED NOT NULL FIRST; + +ALTER TABLE `charaquest` + CHANGE COLUMN `CharacterId` `CharacterId` BIGINT UNSIGNED NOT NULL FIRST; + +ALTER TABLE `charastatus` + CHANGE COLUMN `CharacterId` `CharacterId` BIGINT UNSIGNED NOT NULL FIRST; + +ALTER TABLE `infolinkshell` + CHANGE COLUMN `MasterCharacterId` `MasterCharacterId` BIGINT UNSIGNED NULL DEFAULT NULL AFTER `LinkshellId`; diff --git a/sql/migrations/20211003182901_UpdateCharaInfoUpdateDate.sql b/sql/migrations/20211003182901_UpdateCharaInfoUpdateDate.sql new file mode 100644 index 00000000..efa12c8b --- /dev/null +++ b/sql/migrations/20211003182901_UpdateCharaInfoUpdateDate.sql @@ -0,0 +1,2 @@ +ALTER TABLE `charainfo` + CHANGE COLUMN `UPDATE_DATE` `UPDATE_DATE` DATETIME NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP AFTER `CFPenaltyUntil`; \ No newline at end of file diff --git a/sql/migrations/20211005112001_DropSpawnTables.sql b/sql/migrations/20211005112001_DropSpawnTables.sql new file mode 100644 index 00000000..cf99e40c --- /dev/null +++ b/sql/migrations/20211005112001_DropSpawnTables.sql @@ -0,0 +1,3 @@ +DROP TABLE IF EXISTS bnpctemplate; +DROP TABLE IF EXISTS spawnpoint; +DROP TABLE IF EXISTS spawngroup; \ No newline at end of file diff --git a/sql/schema/inserts.sql b/sql/schema/inserts.sql index cb94763b..29c735cb 100644 --- a/sql/schema/inserts.sql +++ b/sql/schema/inserts.sql @@ -1,428 +1,5 @@ INSERT INTO `accounts` (`account_id`, `account_name`, `account_pass`, `account_created`, `account_status`) VALUES (1, 'Admin', 'Admin', 0, 2); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "littleladybug_49", 49, 49, 0, 0, 1, 4, 4, 57, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "beecloud_57", 57, 395, 0, 0, 1, 4, 4, 60, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "watersprite_59", 59, 56, 0, 0, 1, 4, 4, 385, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "tinymandragora_118", 118, 405, 0, 0, 1, 4, 4, 297, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "wildjackal_138", 138, 399, 0, 0, 2, 4, 4, 160, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "woundedaurochs_323", 323, 358, 0, 0, 2, 4, 4, 138, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "megalocrab_326", 326, 561, 0, 0, 1, 4, 4, 148, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "lostlamb_338", 338, 392, 0, 0, 1, 4, 4, 287, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "pukhatchling_341", 341, 401, 0, 0, 1, 4, 4, 130, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "bogy_342", 342, 404, 0, 0, 1, 4, 4, 264, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "wharfrat_347", 347, 417, 0, 0, 1, 4, 4, 24, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "groundedpirate_348", 348, 421, 4297654473, 8590262373, 2, 4, 4, 0, 0, UNHEX( '0100013201050601623b32000001013b83010102004b004b0001'), UNHEX( '170032000a000512000001000a000100080059000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "groundedraider_349", 349, 418, 8591966609, 0, 2, 4, 4, 0, 0, UNHEX( '0100013201040c01300305000001010304040302004b00320001'), UNHEX( '170032000a000512000001000a000100080059000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "CaptainPetyrPigeontoe_350", 350, 419, 8591966609, 0, 2, 4, 4, 0, 0, UNHEX( '0100014b010304016b3b2b000001023b83000200006400320001'), UNHEX( '170032000a000512000001000a000100080059000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "pugil_383", 383, 640, 0, 0, 1, 4, 4, 356, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "wespe_385", 385, 641, 0, 0, 1, 4, 4, 359, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "goblinfisher_769", 769, 367, 4297588937, 0, 1, 4, 4, 6, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000100010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "mosslessgoobbue_1447", 1447, 354, 0, 0, 1, 4, 4, 198, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "SkogsFru_3184", 3184, 2928, 0, 0, 1, 4, 0, 57, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "galago_5", 5, 408, 0, 0, 1, 4, 4, 31, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "nestingbuzzard_12", 12, 299, 0, 0, 1, 4, 4, 39, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "cavebat_38", 38, 364, 0, 0, 1, 4, 4, 98, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "windsprite_133", 133, 115, 0, 0, 1, 4, 4, 383, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "rivertoad_313", 313, 349, 0, 0, 1, 4, 4, 126, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "aurelia_324", 324, 563, 0, 0, 1, 4, 4, 279, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "wilddodo_339", 339, 393, 0, 0, 1, 4, 4, 173, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "koboldpotman_751", 751, 378, 4297588937, 0, 2, 8, 4, 5, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000100010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "kobolddustman_752", 752, 368, 4295033233, 0, 2, 8, 4, 5, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000200010002000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "koboldsupplicant_754", 754, 372, 4295951237, 0, 2, 8, 4, 5, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000300010003000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Barbastelle_3185", 3185, 2929, 0, 0, 1, 4, 0, 98, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "grassraptor_2", 2, 411, 0, 0, 2, 4, 4, 96, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "gigantoad_26", 26, 26, 0, 0, 2, 4, 4, 126, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "2ndCohorthoplomachus_55", 55, 1821, 17180065993, 12885295205, 2, 4, 4, 0, 0, UNHEX( '0100013201020401110505000000030580040101001900320000'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "2ndCohortlaquearius_61", 61, 1822, 12884967825, 0, 2, 4, 4, 0, 0, UNHEX( '0100013201010201aa9206000000029202000302003200320007'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "2ndCohorteques_62", 62, 1823, 12885230069, 0, 2, 4, 4, 0, 0, UNHEX( '02000132030203013c9236000000019201050300003201320007'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "2ndCohortsecutor_63", 63, 1824, 21475033389, 21475033439, 2, 4, 4, 0, 0, UNHEX( '0100013201010701984706000000024701020302003200320007'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "2ndCohortsignifer_64", 64, 1825, 30064837609, 0, 2, 4, 4, 0, 0, UNHEX( '0100013201050301113b27000000043b850103000032004b0007'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "junglecoeurl_117", 117, 352, 0, 0, 2, 4, 4, 65, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "dungmidgeswarm_136", 136, 396, 0, 0, 1, 4, 4, 58, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "giantpelican_178", 178, 366, 0, 0, 2, 4, 4, 154, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "2ndCohortvanguard_201", 201, 1826, 0, 0, 2, 4, 4, 214, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Bloodshorebell_312", 312, 361, 0, 0, 2, 4, 4, 280, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "apkallu_314", 314, 341, 0, 0, 1, 4, 4, 190, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "goobbue_320", 320, 353, 0, 0, 1, 4, 4, 198, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "mildewedgoobbue_321", 321, 355, 0, 0, 2, 4, 4, 198, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "largebuffalo_322", 322, 1313, 0, 0, 2, 4, 4, 138, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "snipper_325", 325, 560, 0, 0, 2, 4, 4, 149, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "koboldpatrolman_328", 328, 379, 8592556233, 0, 2, 8, 4, 5, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000100010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "koboldpitman_329", 329, 369, 4295033233, 0, 2, 8, 4, 5, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000200010002000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "koboldmissionary_331", 331, 373, 4295951237, 0, 2, 8, 4, 5, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000300010003000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "corkbulb_384", 384, 684, 0, 0, 1, 4, 4, 358, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "colibri_386", 386, 639, 0, 0, 2, 4, 4, 360, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "BloodyMary_3186", 3186, 2930, 0, 0, 1, 4, 0, 190, 3, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "arborbuzzard_12", 12, 13, 0, 0, 2, 4, 4, 39, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "deadmansmoan_20", 20, 1854, 25772425417, 0, 2, 4, 4, 17, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "roseling_22", 22, 400, 0, 0, 1, 4, 4, 48, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "duskbat_38", 38, 363, 0, 0, 1, 4, 4, 98, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "plasmoid_46", 46, 46, 0, 0, 1, 4, 4, 80, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "lightningsprite_135", 135, 117, 0, 0, 1, 4, 4, 384, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Rothlytpelican_181", 181, 1181, 0, 0, 2, 4, 4, 157, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "sewermole_205", 205, 410, 0, 0, 1, 4, 4, 282, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "hedgemole_206", 206, 403, 0, 0, 1, 4, 4, 283, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "firefly_306", 306, 129, 0, 0, 1, 4, 4, 78, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "fatdodo_340", 340, 394, 0, 0, 1, 4, 4, 174, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Rhotanobuccaneer_348", 348, 420, 4297654473, 8590262373, 2, 4, 4, 0, 0, UNHEX( '0100013201050601623b32000001013b83010102004b004b0001'), UNHEX( '170032000a000512000001000a000100080059000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Rhotanobuccaneer_349", 349, 420, 8591966609, 0, 2, 4, 4, 0, 0, UNHEX( '0100013201040c01300305000001010304040302004b00320001'), UNHEX( '170032000a000512000001000a000100080059000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "preyingmantis_396", 396, 1852, 0, 0, 2, 4, 4, 376, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "killermantis_397", 397, 644, 0, 0, 2, 4, 4, 374, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "lammergeyer_403", 403, 1853, 0, 0, 2, 4, 4, 41, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "shoalscaleSahagin_765", 765, 2525, 4295688693, 0, 2, 4, 4, 9, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "shoalclawSahagin_766", 766, 2524, 0, 0, 2, 4, 4, 9, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "shelfspineSahagin_767", 767, 389, 4295688693, 4295426149, 2, 4, 4, 9, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000020001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "shoaltoothSahagin_768", 768, 2526, 51539673889, 0, 2, 4, 4, 9, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000020002000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "goblinhunter_769", 769, 225, 4297588937, 0, 1, 4, 4, 6, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000100010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "whelkballista_2835", 2835, 2530, 0, 0, 1, 4, 2, 679, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "DarkHelmet_3187", 3187, 2931, 0, 0, 1, 4, 0, 722, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000100010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Nahn_3204", 3204, 2948, 0, 0, 2, 4, 0, 150, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "coeurlpup_28", 28, 28, 0, 0, 2, 4, 4, 69, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "bumblebeetle_36", 36, 296, 0, 0, 1, 4, 4, 56, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "salamander_139", 139, 391, 0, 0, 2, 4, 4, 151, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "forestyarzon_159", 159, 381, 0, 0, 2, 4, 4, 76, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "wildwolf_303", 303, 1180, 0, 0, 2, 4, 4, 159, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "koboldsidesman_330", 330, 376, 4295033533, 0, 2, 8, 4, 5, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000400010004000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "MamoolJabreeder_343", 343, 414, 4295033033, 4295426149, 2, 4, 4, 10, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "MamoolJaexecutioner_344", 344, 413, 4295033233, 0, 2, 4, 4, 10, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "MamoolJainfiltrator_345", 345, 416, 4295033333, 0, 2, 4, 4, 10, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "MamoolJasophist_346", 346, 415, 51539673889, 0, 2, 4, 4, 10, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000020001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "stoneshell_382", 382, 638, 0, 0, 1, 4, 4, 355, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "mudpugil_383", 383, 642, 0, 0, 1, 4, 4, 356, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "uragnite_389", 389, 643, 0, 0, 1, 4, 4, 364, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Myradrosh_3188", 3188, 2932, 0, 0, 1, 4, 0, 360, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "bomb_17", 17, 316, 0, 0, 1, 4, 4, 100, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "laughingtoad_26", 26, 217, 0, 0, 2, 4, 4, 126, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "yarzonfeeder_42", 42, 284, 0, 0, 2, 4, 4, 75, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "4thCohorthoplomachus_55", 55, 1815, 17180065993, 12885295205, 2, 4, 4, 0, 0, UNHEX( '0100013201020401110505000000030580040101001900320000'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "4thCohortlaquearius_61", 61, 1816, 12884967825, 0, 2, 4, 4, 0, 0, UNHEX( '0100013201010201aa9206000000029202000302003200320007'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "4thCohorteques_62", 62, 1817, 12885230069, 0, 2, 4, 4, 0, 0, UNHEX( '02000132030203013c9236000000019201050300003201320007'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "4thCohortsecutor_63", 63, 1818, 21475033389, 21475033439, 2, 4, 4, 0, 0, UNHEX( '0100013201010701984706000000024701020302003200320007'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "4thCohortsignifer_64", 64, 1819, 30064837609, 0, 2, 4, 4, 0, 0, UNHEX( '0100013201050301113b27000000043b850103000032004b0007'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Moondripstonehauler_109", 109, 310, 4295040851, 0, 2, 11, 4, 12, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '05000100010005000500010005000100000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Moondrippiledriver_110", 110, 314, 4295040840, 0, 2, 11, 4, 12, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '05000100010005000500010005000100000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Moondripblastmaster_111", 111, 312, 4295040852, 0, 2, 11, 4, 12, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '05000200010006000500020005000200000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "earthsprite_131", 131, 113, 0, 0, 1, 4, 4, 386, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "sunmidgeswarm_136", 136, 298, 0, 0, 1, 4, 4, 58, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "dustymongrel_138", 138, 302, 0, 0, 2, 4, 4, 160, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "desertpeiste_172", 172, 305, 0, 0, 2, 4, 4, 136, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "cactuar_175", 175, 287, 0, 0, 1, 4, 4, 141, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "rustycoblyn_187", 187, 276, 0, 0, 1, 4, 4, 176, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "4thCohortvanguard_201", 201, 1820, 0, 0, 2, 4, 4, 214, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "orobon_302", 302, 308, 0, 0, 1, 4, 4, 270, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "sandtoad_313", 313, 265, 0, 0, 1, 4, 4, 126, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "bloatedbogy_342", 342, 309, 0, 0, 1, 4, 4, 264, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "starmarmot_351", 351, 262, 0, 0, 1, 4, 4, 26, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "thickshell_382", 382, 636, 0, 0, 1, 4, 4, 355, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "scaphite_389", 389, 635, 0, 0, 1, 4, 4, 364, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "hammerbeak_431", 431, 282, 0, 0, 1, 4, 4, 156, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "goblinmugger_769", 769, 283, 4297588937, 0, 1, 4, 4, 6, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000100010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "strikingdummy_901", 901, 541, 0, 0, 1, 4, 0, 480, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "gianttortoise_1445", 1445, 244, 0, 0, 1, 4, 4, 95, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "SewerSyrup_3179", 3179, 2923, 0, 0, 1, 4, 0, 292, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "toxictoad_26", 26, 216, 0, 0, 2, 4, 4, 126, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "sunbat_38", 38, 279, 0, 0, 1, 4, 4, 98, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "syrphidcloud_41", 41, 201, 0, 0, 1, 4, 4, 59, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "spriggangraverobber_100", 100, 317, 0, 0, 1, 4, 4, 110, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "spriggangraverobber_101", 101, 317, 0, 0, 1, 4, 4, 109, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "eft_160", 160, 289, 0, 0, 1, 4, 4, 152, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "cochinealcactuar_175", 175, 288, 0, 0, 1, 4, 4, 141, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "antlingsoldier_197", 197, 292, 0, 0, 2, 4, 4, 193, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "snappingshrew_205", 205, 318, 0, 0, 1, 4, 4, 282, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Quiveronguard_352", 352, 326, 17180131629, 17180131679, 2, 4, 4, 0, 0, UNHEX( '0300013206030201564f04000001004f00010302003201320001'), UNHEX( '19002a000e0003000e00380009000100050096000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Quiveronattendant_353", 353, 330, 21474968153, 4295033530, 2, 4, 4, 0, 0, UNHEX( '03000132060401013d7a06000001017a05030303003201320001'), UNHEX( '19002a000e0003000e00380009000100050096000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "hugehornet_385", 385, 632, 0, 0, 1, 4, 4, 359, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "antlingworker_432", 432, 294, 0, 0, 1, 4, 4, 192, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Amaljaaimpaler_735", 735, 246, 4295361013, 0, 2, 7, 4, 3, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '02000100010001000100010000000000010001000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Amaljaastriker_736", 736, 254, 8590524717, 8590524767, 2, 7, 4, 3, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '02000100010001000100010000000000010001000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Qiqirnshellsweeper_771", 771, 266, 0, 0, 2, 4, 4, 14, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Ovjang_3180", 3180, 2924, 0, 0, 1, 4, 0, 221, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "SabotenderBailarina_3197", 3197, 2941, 0, 0, 2, 4, 0, 143, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "chasmbuzzard_12", 12, 301, 0, 0, 2, 4, 4, 39, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "rottingcorpse_18", 18, 319, 42949870069, 0, 2, 4, 4, 0, 0, UNHEX( '0100013201c80101983904000000003900000000000000320107'), UNHEX( '000000006b2301000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "rottingnoble_19", 19, 322, 12884968425, 0, 2, 4, 4, 0, 0, UNHEX( '0100013201c80101983904000000003900000000000000320107'), UNHEX( '000000006b2301000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "vandalousimp_21", 21, 1198, 0, 0, 2, 4, 4, 63, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "blowflyswarm_41", 41, 1199, 0, 0, 1, 4, 4, 59, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Amaljaabruiser_167", 167, 256, 17180459309, 17180459359, 2, 7, 4, 3, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '02000100010001000100010000000000010001000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Amaljaaranger_168", 168, 251, 38654902873, 4295033530, 2, 7, 4, 3, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010002000100020001000200020002000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Qiqirnroerunner_170", 170, 268, 0, 0, 2, 4, 4, 14, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "axebeak_181", 181, 281, 0, 0, 2, 4, 4, 157, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "quartzdoblyn_188", 188, 275, 0, 0, 1, 4, 4, 177, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "myotragusbilly_193", 193, 273, 0, 0, 1, 4, 4, 183, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "myotragusnanny_194", 194, 274, 0, 0, 1, 4, 4, 184, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "phurble_203", 203, 272, 0, 0, 1, 4, 4, 266, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "goldenfleece_204", 204, 271, 0, 0, 1, 4, 4, 267, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "tuco-tuco_206", 206, 306, 0, 0, 1, 4, 4, 283, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "bandittrapper_352", 352, 1309, 17180131629, 17180131679, 2, 4, 4, 0, 0, UNHEX( '0300013206030201564f04000001004f00010302003201320001'), UNHEX( '19002a000e0003000e00380009000100050096000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "banditarcher_353", 353, 1311, 21474968153, 4295033530, 2, 4, 4, 0, 0, UNHEX( '03000132060401013d7a06000001017a05030303003201320001'), UNHEX( '19002a000e0003000e00380009000100050096000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "banditmage_354", 354, 1310, 17180853125, 0, 2, 4, 4, 0, 0, UNHEX( '03000132060303012c4706000001004700010302003201320001'), UNHEX( '000001001d0005000e00390009000100050096000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "mirrorknight_399", 399, 634, 0, 0, 2, 4, 4, 378, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Amaljaajavelinier_735", 735, 247, 4295361013, 0, 2, 7, 4, 3, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '02000100010001000100010000000000010001000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Amaljaahunter_737", 737, 250, 8590131801, 4295033530, 2, 7, 4, 3, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010002000100020001000200020002000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Gatling_3181", 3181, 2925, 0, 0, 1, 4, 0, 283, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Maahes_3198", 3198, 2942, 0, 0, 2, 4, 0, 66, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "smokebomb_17", 17, 132, 0, 0, 1, 4, 4, 100, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "fallenpikeman_18", 18, 321, 42949870069, 0, 2, 4, 4, 0, 0, UNHEX( '0100013201c80101983904000000003900000000000000320107'), UNHEX( '000000006b2301000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "fallenwizard_19", 19, 324, 12884968425, 0, 2, 4, 4, 0, 0, UNHEX( '0100013201c80101983904000000003900000000000000320107'), UNHEX( '000000006b2301000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "sandstonegolem_30", 30, 280, 0, 0, 2, 4, 4, 81, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "russetyarzon_42", 42, 285, 0, 0, 2, 4, 4, 75, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "potterwaspswarm_57", 57, 564, 0, 0, 1, 4, 4, 60, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "firesprite_134", 134, 116, 0, 0, 1, 4, 4, 381, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Amaljaahalberdier_166", 166, 2155, 12885295605, 0, 2, 7, 4, 3, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '02000100010001000100010000000000010001000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Amaljaasniper_168", 168, 252, 38654902873, 4295033530, 2, 7, 4, 3, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010002000100020001000200020002000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Amaljaaseer_169", 169, 259, 17179935721, 0, 2, 7, 4, 3, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '02000300010003000200030000000000010003000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "sandskinpeiste_174", 174, 303, 0, 0, 2, 4, 4, 137, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "sabotender_176", 176, 286, 0, 0, 1, 4, 4, 142, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Zaharakbattledrake_190", 190, 1841, 0, 0, 2, 4, 4, 179, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "angler_356", 356, 307, 0, 0, 1, 4, 4, 268, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "sandworm_357", 357, 290, 0, 0, 2, 4, 4, 238, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "irontortoise_358", 358, 243, 0, 0, 1, 4, 4, 95, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "CorpseBrigadeknuckledancer_363", 363, 331, 12885098797, 12885098847, 2, 4, 4, 0, 0, UNHEX( '01000132020101011d0106000001000100000000003200320001'), UNHEX( '1900300008001430000001000a003d0008005c000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "CorpseBrigadefiredancer_365", 365, 332, 17180853125, 0, 2, 4, 4, 0, 0, UNHEX( '010001320202080152b60400000100b600000000003200320001'), UNHEX( '000001001d000800000001000300320008005c000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Zanraklancer_739", 739, 2297, 12885295605, 0, 2, 7, 4, 3, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '02000100010001000100010000000000010001000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Zaharakpugilist_740", 740, 1839, 30064836910, 30064836960, 2, 7, 4, 3, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '02000100010001000100010000000000010001000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Amaljaaarcher_741", 741, 249, 34359935577, 4295033530, 2, 7, 1, 3, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010002000100020001000200020002000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Zanrakthaumaturge_742", 742, 1879, 25769870313, 0, 2, 7, 4, 3, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '02000300010003000200030000000000010003000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "rockskinpeiste_2188", 2188, 1993, 0, 0, 2, 4, 0, 137, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "temperedsword_2259", 2259, 1998, 42949870069, 0, 2, 4, 4, 0, 0, UNHEX( '0100013201c80101983904000000003900000000000000320107'), UNHEX( '03001400030016000300160003000100030016000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "temperedbrand_2260", 2260, 1999, 12884968425, 0, 2, 4, 4, 0, 0, UNHEX( '0100013201c80101983904000000003900000000000000320107'), UNHEX( '0400c500220029000200010007003e00040095000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "duneangler_2268", 2268, 2191, 0, 0, 1, 4, 4, 268, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "infernalbeacon_2452", 2452, 1877, 0, 0, 1, 7, 1, 615, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Ifritsbeacon_2453", 2453, 1878, 0, 0, 1, 7, 1, 615, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Zaharakfortune-teller_2457", 2457, 2303, 25769870313, 0, 2, 7, 4, 3, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '02000300010003000200030000000000010003000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "AlbintheAshen_3182", 3182, 2926, 42949870069, 0, 1, 4, 0, 0, 0, UNHEX( '0100013201c80101983904000000003900000000000000320107'), UNHEX( '000000006b2301000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Zanigoh_3199", 3199, 2943, 0, 0, 2, 4, 0, 826, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "3rdCohorthoplomachus_55", 55, 53, 17180065993, 12885295205, 2, 4, 4, 0, 0, UNHEX( '0100013201020401110505000000030580040101001900320000'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "3rdCohortlaquearius_61", 61, 58, 12884967825, 0, 2, 4, 4, 0, 0, UNHEX( '0100013201010201aa9206000000029202000302003200320007'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "3rdCohorteques_62", 62, 59, 12885230069, 0, 2, 4, 4, 0, 0, UNHEX( '02000132030203013c9236000000019201050300003201320007'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "3rdCohortsecutor_63", 63, 60, 21475033389, 21475033439, 2, 4, 4, 0, 0, UNHEX( '0100013201010701984706000000024701020302003200320007'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "3rdCohortsignifer_64", 64, 61, 30064837609, 0, 2, 4, 4, 0, 0, UNHEX( '0100013201050301113b27000000043b850103000032004b0007'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "basilisk_173", 173, 304, 0, 0, 2, 4, 4, 135, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "ahriman_183", 183, 242, 0, 0, 2, 4, 4, 168, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "magitekvanguard_200", 200, 269, 0, 0, 2, 4, 4, 213, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "grenade_327", 327, 270, 0, 0, 2, 4, 4, 101, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "FlameSergeantDalvag_3183", 3183, 2927, 0, 0, 1, 4, 0, 717, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000040001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "diremite_10", 10, 10, 0, 0, 2, 4, 4, 21, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "hoglet_14", 14, 195, 0, 0, 1, 4, 4, 46, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "magickedbones_20", 20, 20, 25772425417, 0, 2, 4, 4, 17, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "tricksterimp_21", 21, 21, 0, 0, 2, 4, 4, 63, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "roselet_22", 22, 22, 0, 0, 1, 4, 4, 48, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "cratergolem_30", 30, 131, 0, 0, 2, 4, 4, 81, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "microchu_32", 32, 32, 0, 0, 1, 4, 4, 35, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "groundsquirrel_37", 37, 37, 0, 0, 1, 4, 4, 25, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "treeslug_39", 39, 39, 0, 0, 1, 4, 4, 50, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "syrphidswarm_41", 41, 41, 0, 0, 1, 4, 4, 59, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "chigoe_43", 43, 43, 0, 0, 1, 4, 4, 36, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "forestfunguar_47", 47, 47, 0, 0, 1, 4, 4, 28, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "toadstool_48", 48, 48, 0, 0, 2, 4, 4, 29, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "lindwurm_53", 53, 130, 0, 0, 2, 4, 4, 97, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "hornetswarm_57", 57, 54, 0, 0, 1, 4, 4, 60, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "deathgaze_58", 58, 55, 0, 0, 2, 4, 4, 233, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "spriggan_98", 98, 91, 0, 0, 2, 4, 4, 107, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "spriggan_99", 99, 91, 0, 0, 2, 4, 4, 108, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "spriggan_100", 100, 91, 0, 0, 2, 4, 4, 110, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "spriggan_101", 101, 91, 0, 0, 2, 4, 4, 109, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "anole_142", 142, 120, 0, 0, 2, 4, 4, 97, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "bogyarzon_159", 159, 197, 0, 0, 2, 4, 4, 76, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "blackeft_160", 160, 196, 0, 0, 1, 4, 4, 152, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "broodziz_178", 178, 221, 0, 0, 2, 4, 4, 154, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "floatingeye_182", 182, 207, 0, 0, 2, 4, 4, 167, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "stroper_304", 304, 238, 0, 0, 2, 4, 4, 145, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "revenant_305", 305, 236, 0, 0, 2, 4, 4, 265, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Qiqirnscrambler_771", 771, 218, 0, 0, 2, 4, 4, 14, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "treantsapling_1446", 1446, 128, 0, 0, 1, 4, 4, 104, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "halitostroper_2193", 2193, 2057, 0, 0, 2, 4, 0, 145, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "lightningspark_2267", 2267, 2190, 0, 0, 1, 4, 4, 384, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "WhiteJoker_3175", 3175, 2919, 0, 0, 1, 4, 0, 27, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "lemur_6", 6, 6, 0, 0, 1, 4, 4, 32, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "gallgnat_7", 7, 2157, 0, 0, 2, 4, 4, 53, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "northernvulture_12", 12, 12, 0, 0, 2, 4, 4, 39, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "wildhoglet_14", 14, 14, 0, 0, 1, 4, 4, 46, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "wildboar_15", 15, 16, 0, 0, 2, 4, 4, 44, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "milkrootsapling_23", 23, 162, 0, 0, 2, 4, 4, 49, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Sylphlandssentinel_24", 24, 163, 0, 0, 2, 4, 4, 104, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "dreamtoad_27", 27, 164, 0, 0, 2, 4, 4, 127, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "milkrootcluster_33", 33, 165, 0, 0, 2, 4, 4, 34, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "boringweevil_36", 36, 36, 0, 0, 1, 4, 4, 56, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "blackbat_38", 38, 38, 0, 0, 1, 4, 4, 98, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "jumpingdjigga_44", 44, 44, 0, 0, 1, 4, 4, 37, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "faeriefunguar_47", 47, 220, 0, 0, 1, 4, 4, 28, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "sylphbonnet_48", 48, 166, 0, 0, 2, 4, 4, 29, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "raptorpoacher_79", 79, 239, 38654902773, 0, 2, 4, 4, 0, 0, UNHEX( '0401013208030201150c05000000000c00000000003201000000'), UNHEX( '130010000900260009007c0009004d000900b2000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "boarpoacher_81", 81, 240, 17179935321, 4295033530, 2, 4, 4, 0, 0, UNHEX( '04010132080301014a0c1e000000000c00000000003201000000'), UNHEX( '130010000900260009007c0009004d000900b2000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "mandragora_118", 118, 107, 0, 0, 1, 4, 4, 297, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "morbol_140", 140, 237, 0, 0, 2, 4, 4, 145, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "moltedziz_178", 178, 222, 0, 0, 2, 4, 4, 154, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "zizgorlin_179", 179, 223, 0, 0, 2, 4, 4, 155, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "glowfly_306", 306, 211, 0, 0, 1, 4, 4, 78, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "wolfpoacher_311", 311, 241, 17182556361, 17180328037, 2, 4, 4, 0, 0, UNHEX( '040101320801060189241e000000032403040301003201320000'), UNHEX( '130010000900260009007c0009004d000900b2000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Sylphlandscondor_403", 403, 567, 0, 0, 2, 4, 4, 41, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "sylpheedscreech_762", 762, 67, 17182556361, 0, 2, 4, 4, 7, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010002000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "sylpheedsigh_763", 763, 68, 30064837309, 0, 2, 4, 4, 7, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010002000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "violetsnarl_764", 764, 2318, 30065755013, 0, 2, 4, 4, 7, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010002000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "swollendjigga_2264", 2264, 2187, 0, 0, 1, 4, 4, 37, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "greaterbanestool_2464", 2464, 2315, 0, 0, 1, 4, 1, 616, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "giantbanestool_2465", 2465, 2316, 0, 0, 1, 4, 1, 616, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "banestool_2660", 2660, 2314, 0, 0, 1, 4, 0, 616, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "StingingSophie_3176", 3176, 2920, 0, 0, 1, 4, 0, 359, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Melt_3193", 3193, 2937, 0, 0, 2, 4, 0, 690, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "antelopedoe_3", 3, 3, 0, 0, 1, 4, 4, 61, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "antelopestag_4", 4, 4, 0, 0, 1, 4, 4, 62, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "ked_8", 8, 8, 0, 0, 2, 4, 4, 54, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "midlandcondor_13", 13, 566, 0, 0, 2, 4, 4, 40, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "wildhog_16", 16, 15, 0, 0, 2, 4, 4, 45, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "kedtrap_23", 23, 23, 0, 0, 2, 4, 4, 49, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "treant_24", 24, 24, 0, 0, 2, 4, 4, 104, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "overgrownoffering_33", 33, 215, 0, 0, 2, 4, 4, 34, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "adamantoise_34", 34, 34, 0, 0, 1, 4, 4, 94, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "hoverflyswarm_41", 41, 168, 0, 0, 1, 4, 4, 59, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "will-o-the-wisp_45", 45, 45, 0, 0, 1, 4, 4, 79, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "goblinthug_52", 52, 50, 8592556233, 0, 2, 4, 4, 6, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000100010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Coeurlclawpoacher_79", 79, 140, 38654902773, 0, 2, 4, 4, 0, 0, UNHEX( '0401013208030201150c05000000000c00000000003201000000'), UNHEX( '130010000900260009007c0009004d000900b2000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Coeurlclawhunter_81", 81, 139, 17179935321, 4295033530, 2, 4, 4, 0, 0, UNHEX( '04010132080301014a0c1e000000000c00000000003201000000'), UNHEX( '130010000900260009007c0009004d000900b2000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Redbellylookout_84", 84, 52, 21474902217, 8590393445, 2, 4, 4, 0, 0, UNHEX( '02000132040102013a8a06000000028a02000302003201320000'), UNHEX( '0900d200090010000900670009004a000900a0000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Redbellylarcener_86", 86, 172, 12885033261, 12885033311, 2, 4, 4, 0, 0, UNHEX( '0200013204010701224e06000000024e01020302003201320000'), UNHEX( '0900d200090010000900670009004a000900a0000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Redbellysharpeye_87", 87, 83, 8590131801, 4295033530, 2, 4, 4, 0, 0, UNHEX( '0200013204030401282605000000022685010102003201320000'), UNHEX( '0900d200090010000900670009004a000900a0000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "lesserkalong_130", 130, 171, 0, 0, 1, 4, 4, 99, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "deepvoiddeathmouse_143", 143, 170, 0, 0, 1, 4, 4, 27, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "riveryarzon_159", 159, 226, 0, 0, 2, 4, 4, 76, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "barkeft_161", 161, 228, 0, 0, 1, 4, 4, 152, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Qiqirnbeater_170", 170, 219, 0, 0, 2, 4, 4, 14, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "bigmouthorobon_302", 302, 235, 0, 0, 1, 4, 4, 270, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Coeurlclawcutter_311", 311, 169, 17182556361, 17180328037, 2, 4, 4, 0, 0, UNHEX( '040101320801060189241e000000032403040301003201320000'), UNHEX( '130010000900260009007c0009004d000900b2000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "scarredantelope_2187", 2187, 1992, 0, 0, 1, 4, 0, 61, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "MonarchOgrefly_3177", 3177, 2921, 0, 0, 1, 4, 0, 654, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "opo-opo_5", 5, 5, 0, 0, 1, 4, 4, 31, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "miteling_9", 9, 9, 0, 0, 1, 4, 4, 20, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "banemite_11", 11, 11, 0, 0, 2, 4, 4, 22, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "balloon_17", 17, 17, 0, 0, 1, 4, 4, 100, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "dryad_25", 25, 25, 0, 0, 2, 4, 4, 106, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "dullahan_29", 29, 29, 4298178761, 0, 2, 4, 4, 125, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "claygolem_30", 30, 30, 0, 0, 2, 4, 4, 81, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Shroudhare_40", 40, 40, 0, 0, 1, 4, 4, 51, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "yarzonscavenger_42", 42, 227, 0, 0, 2, 4, 4, 75, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Ixalideftalon_113", 113, 209, 12887982281, 12885360741, 2, 6, 4, 4, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010001000100010000000000010001000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Ixalilightwing_114", 114, 208, 21474967953, 0, 2, 6, 4, 4, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000200010002000100020000000000010002000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Ixalistraightbeak_115", 115, 210, 8590262773, 0, 2, 6, 4, 4, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010004000200040000000000020004000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "midgeswarm_136", 136, 118, 0, 0, 1, 4, 4, 58, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "watchwolf_141", 141, 174, 0, 0, 2, 4, 4, 163, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "ziz_179", 179, 224, 0, 0, 2, 4, 4, 155, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Ixalidulltalon_743", 743, 192, 8593014985, 12885360741, 2, 6, 4, 4, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010001000100010000000000010001000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Ixalilostwing_744", 744, 193, 17180000657, 0, 2, 6, 4, 4, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000200010002000100020000000000010002000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Ixalislowbeak_745", 745, 194, 4295295477, 0, 2, 6, 4, 4, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010004000200040000000000020004000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Ixaliwindtalon_747", 747, 436, 17182949577, 12885360741, 2, 6, 4, 4, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010001000100010000000000010001000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Ixaliboldwing_748", 748, 103, 25769935249, 0, 2, 6, 4, 4, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000200010002000100020000000000010002000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "pumicegolem_2265", 2265, 2188, 0, 0, 2, 4, 4, 81, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "brightballoon_2266", 2266, 2189, 0, 0, 1, 4, 4, 100, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Phecda_3178", 3178, 2922, 0, 0, 1, 4, 0, 574, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "will-o-the-wyke_45", 45, 2918, 0, 0, 1, 4, 4, 79, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Ixaliwildtalon_113", 113, 660, 12887982281, 12885360741, 2, 6, 4, 4, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010001000100010000000000010001000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Ixaliboundwing_114", 114, 662, 21474967953, 0, 2, 6, 4, 4, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000200010002000100020000000000010002000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Ixalistillbeak_115", 115, 661, 8590262773, 0, 2, 6, 4, 4, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010004000200040000000000020004000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Ixalifearcaller_116", 116, 663, 42949804833, 0, 2, 6, 4, 4, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000200010003000200040000000000020004000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "icesprite_132", 132, 114, 0, 0, 1, 4, 4, 382, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "mudpuppy_139", 139, 645, 0, 0, 2, 4, 4, 151, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Natalanwatchwolf_141", 141, 1846, 0, 0, 2, 4, 4, 163, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "chinchilla_143", 143, 2156, 0, 0, 2, 4, 4, 27, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "biast_191", 191, 788, 0, 0, 2, 4, 4, 180, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "dragonfly_387", 387, 637, 0, 0, 2, 4, 4, 362, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "vodoriga_388", 388, 658, 0, 0, 2, 4, 4, 363, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "taurus_390", 390, 1182, 0, 0, 2, 4, 4, 365, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "baritinecroc_394", 394, 1850, 0, 0, 2, 4, 4, 372, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "feralcroc_395", 395, 784, 0, 0, 2, 4, 4, 373, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "downyaevis_398", 398, 1849, 0, 0, 2, 4, 4, 377, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "bateleur_403", 403, 1183, 0, 0, 2, 4, 4, 41, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "hippocerf_644", 644, 790, 0, 0, 2, 4, 4, 133, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "redhornogre_646", 646, 794, 0, 0, 2, 4, 4, 187, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "ornerykarakul_719", 719, 795, 0, 0, 1, 4, 4, 291, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "snowstormgoobbue_720", 720, 1611, 0, 0, 1, 4, 4, 199, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "giantlogger_721", 721, 785, 4295106375, 0, 2, 9, 4, 11, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010002000200010001000200000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "giantlugger_722", 722, 786, 0, 0, 2, 9, 4, 11, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010003000300010001000300000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "giantreader_723", 723, 787, 0, 0, 2, 9, 4, 11, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010004000400010001000400000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "snowwolfpup_731", 731, 659, 0, 0, 2, 4, 4, 161, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Natalanwindtalon_747", 747, 1842, 17182949577, 12885360741, 2, 6, 4, 4, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010001000100010000000000010001000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Natalanboldwing_748", 748, 1843, 25769935249, 0, 2, 6, 4, 4, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000200010002000100020000000000010002000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Natalanswiftbeak_749", 749, 1844, 17180197365, 0, 2, 6, 4, 4, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010004000200040000000000020004000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Natalanfogcaller_750", 750, 1845, 42949804833, 0, 2, 6, 4, 4, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000200010003000200040000000000020004000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Naul_3190", 3190, 2934, 0, 0, 1, 4, 0, 224, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Marraco_3207", 3207, 2951, 0, 0, 2, 4, 0, 371, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "nix_27", 27, 27, 0, 0, 2, 4, 4, 127, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "5thCohorthoplomachus_55", 55, 1809, 17180065993, 12885295205, 2, 4, 4, 0, 0, UNHEX( '0100013201020401110505000000030580040101001900320000'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "5thCohortlaquearius_61", 61, 1810, 12884967825, 0, 2, 4, 4, 0, 0, UNHEX( '0100013201010201aa9206000000029202000302003200320007'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "5thCohorteques_62", 62, 1811, 12885230069, 0, 2, 4, 4, 0, 0, UNHEX( '02000132030203013c9236000000019201050300003201320007'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "5thCohortsecutor_63", 63, 1812, 21475033389, 21475033439, 2, 4, 4, 0, 0, UNHEX( '0100013201010701984706000000024701020302003200320007'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "5thCohortsignifer_64", 64, 1813, 30064837609, 0, 2, 4, 4, 0, 0, UNHEX( '0100013201050301113b27000000043b850103000032004b0007'), UNHEX( '0d009300220037000d004000070061000a009e000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "5thCohortvanguard_201", 201, 1814, 0, 0, 2, 4, 4, 214, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "hippogryph_645", 645, 789, 0, 0, 2, 4, 4, 134, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "hapalit_647", 647, 793, 0, 0, 2, 4, 4, 188, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "daringharrier_724", 724, 650, 4295033034, 25770000485, 2, 4, 4, 0, 0, UNHEX( '02000132030104010a2605000001002682000000003201320001'), UNHEX( '0f0099000f0030000b0040000f0047000f0070000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "ragingharrier_725", 725, 651, 12885230069, 0, 2, 4, 4, 0, 0, UNHEX( '02000132030206013a4e16000001024e82000000003201320001'), UNHEX( '0f0099000f0030000b0040000f0047000f0070000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "hexingharrier_726", 726, 652, 47244706793, 0, 2, 4, 4, 0, 0, UNHEX( '0201013203030501422605000001022684000103003201320001'), UNHEX( '10000100070028000200590207003e000a008b000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "gigasshramana_727", 727, 647, 4295040839, 0, 2, 10, 4, 13, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000070001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "gigasbonze_728", 728, 646, 4295106370, 0, 2, 10, 4, 13, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000070001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "gigassozu_729", 729, 648, 4295040844, 0, 2, 10, 4, 13, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000070001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "gigasbhikkhu_730", 730, 649, 4295106388, 4295106369, 2, 10, 4, 13, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000070001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "lakecobra_777", 777, 1851, 0, 0, 2, 4, 4, 235, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "LeechKing_3191", 3191, 2935, 0, 0, 1, 4, 0, 600, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Kurrea_3208", 3208, 2952, 0, 0, 2, 4, 0, 151, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Morabymole_205", 205, 409, 0, 0, 1, 4, 4, 282, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Qiqirneggdigger_771", 771, 350, 0, 0, 2, 4, 4, 14, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "blackbat_1037", 1037, 38, 0, 0, 3, 4, 2, 98, 262144, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "caveaurelia_1038", 1038, 1210, 0, 0, 3, 4, 2, 279, 262144, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "foper_7439", 7439, 5674, 0, 0, 2, 4, 4, 1906, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "spinner_7442", 7442, 5677, 0, 0, 2, 4, 4, 1542, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "velociraptor_2", 2, 412, 0, 0, 2, 4, 4, 96, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "ringtail_6", 6, 407, 0, 0, 1, 4, 4, 32, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "highlandcondor_13", 13, 398, 0, 0, 2, 4, 4, 40, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "basaltgolem_30", 30, 365, 0, 0, 2, 4, 4, 81, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "pteroc_65", 65, 62, 0, 0, 1, 4, 4, 131, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "coeurl_117", 117, 106, 0, 0, 2, 4, 4, 65, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "syntheticdoblyn_189", 189, 1836, 0, 0, 2, 4, 4, 178, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "eliteroundsman_755", 755, 2518, 17182490825, 0, 2, 8, 2, 5, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000100010001000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "elitequarryman_756", 756, 2519, 8590000529, 0, 2, 8, 4, 5, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000200010002000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "elitebedesman_757", 757, 2521, 30064837309, 0, 2, 8, 4, 5, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000400010004000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "koboldpriest_758", 758, 371, 30065755013, 0, 2, 8, 4, 5, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '01000300010003000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "youngcoeurl_2269", 2269, 2192, 0, 0, 2, 4, 4, 65, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "bombincubator_2833", 2833, 2528, 0, 0, 1, 4, 2, 678, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "prototypebombincubator_2834", 2834, 2529, 0, 0, 1, 4, 2, 678, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "UGhamarogolem_2838", 2838, 2522, 0, 0, 2, 4, 4, 81, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Vuokho_3189", 3189, 2933, 0, 0, 1, 4, 0, 39, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Cornu_3206", 3206, 2950, 0, 0, 2, 4, 0, 604, 3, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "strikingdummy_8016", 8016, 541, 0, 0, 1, 4, 0, 480, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "cocoon_6358", 6358, 6275, 0, 0, 1, 4, 0, 480, 262152, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Shinryu_6531", 6531, 5640, 0, 0, 3, 4, 0, 1893, 262144, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "tail_6930", 6930, 5789, 0, 0, 3, 4, 0, 1926, 262187, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "cocoon_6931", 6931, 6275, 0, 0, 3, 4, 0, 2007, 262187, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "ginryu_6932", 6932, 6272, 0, 0, 3, 4, 0, 1891, 262187, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "(仮)鎖_6933", 6933, 6279, 0, 0, 3, 4, 0, 2054, 262152, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "icicle_6934", 6934, 6278, 0, 0, 3, 4, 0, 764, 393224, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "eyeofthestorm_6935", 6935, 6277, 0, 0, 3, 4, 0, 1453, 262155, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "hakkinryu_7299", 7299, 6273, 0, 0, 3, 4, 0, 1985, 262187, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "massivecocoon_7302", 7302, 6276, 0, 0, 3, 4, 0, 2008, 262187, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "saitaisui_6358", 6358, 7206, 0, 0, 1, 4, 0, 480, 262152, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Otengu_8662", 8662, 7200, 4295827266, 0, 3, 4, 0, 2187, 262144, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "tenguember_8663", 8663, 7201, 0, 0, 3, 4, 0, 2281, 262155, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "Daidarabotchi_8664", 8664, 7202, 0, 0, 3, 4, 0, 2217, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "QitianDasheng_8665", 8665, 7203, 0, 0, 3, 4, 0, 2211, 262144, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "shadowofthesage_8666", 8666, 7204, 0, 0, 3, 4, 0, 2211, 262187, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "saitaisui_8737", 8737, 7206, 4295302988, 0, 3, 4, 3, 2218, 8, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "geomantickiyofusa_8738", 8738, 7207, 4295434050, 0, 3, 4, 1, 1813, 262144, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "geomanticapa_8739", 8739, 7208, 0, 0, 3, 4, 3, 1867, 262147, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "torrent_8740", 8740, 7209, 0, 0, 3, 4, 3, 1202, 262147, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "geomanticdhara_8741", 8741, 7210, 0, 0, 3, 4, 3, 1819, 262144, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "geomanticanila_8742", 8742, 7211, 0, 0, 3, 4, 4, 1923, 262147, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "_8743", 8743, 108, 0, 0, 1, 4, 0, 1453, 262152, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "riverunkiu_8744", 8744, 7212, 0, 0, 3, 4, 2, 1719, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "jinmenju_8745", 8745, 7213, 0, 0, 3, 4, 0, 1281, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "riverhikagiri_8746", 8746, 7214, 0, 0, 3, 4, 3, 572, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "riverray_8747", 8747, 7215, 0, 0, 3, 4, 0, 1346, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "riverscorpion_8748", 8748, 7216, 0, 0, 3, 4, 2, 1057, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "dragonhornbill_8749", 8749, 7217, 0, 0, 3, 4, 2, 1944, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "dragonbifang_8750", 8750, 7218, 0, 0, 3, 4, 2, 953, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "whitebaboon_8751", 8751, 7219, 0, 0, 3, 4, 2, 2270, 262144, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "dragonweasel_8752", 8752, 7220, 0, 0, 3, 4, 3, 1948, 0, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "servantofthesage_8754", 8754, 7205, 0, 0, 3, 4, 0, 2270, 262147, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); -INSERT IGNORE INTO `bnpctemplate` ( `Name`, `bNPCBaseId`, `bNPCNameId`, `mainWeaponModel`, `secWeaponModel`, `aggressionMode`, `enemyType`, `pose`, `modelChara`, `displayFlags`, `Look`, `Models`) VALUES ( "saitaisui_8780", 8780, 7206, 4295302988, 0, 1, 4, 0, 2218, 12, UNHEX( '0000000000000000000000000000000000000000000000000000'), UNHEX( '00000000000000000000000000000000000000000000000000000000000000000000000000000000') ); INSERT INTO `land` (`LandSetId`, `LandId`, `Type`, `Size`, `Status`, `LandPrice`, `UpdateTime`, `OwnerId`, `HouseId`, `UPDATE_DATE`) VALUES (22216704, 0, 0, 1, 1, 19000000, 0, 0, 0, '2018-12-02 23:28:14'), @@ -4825,1528 +4402,3 @@ INSERT INTO `landset` (`LandSetId`, `LandId_0`, `LandId_1`, `LandId_2`, `LandId_ (42008591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL), (42008592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL), (42008593, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL); - - -INSERT INTO `zonepositions` (`id`, `target_zone_id`, `pos_x`, `pos_y`, `pos_z`, `pos_o`, `radius`) VALUES -(1317556, 133, 16.3201, 8.34547, -91.7458, 2.48019, 2), -(1317554, 133, 140.8, 11.15, -22.6, 2.5, 2), -(1317535, 132, 10.2559, 1.03707, -11.7784, -0.43944, 2), -(1317558, 133, -130.42, 5.5, -36.36, -1.69019, 2), -(1317552, 148, 129.341, 26.9524, -311.06, -0.01836, 2), -(1317623, 132, 149.42, -11.2378, 157.749, -1.66604, 2), -(1317628, 152, -515.845, 18.4252, 271.573, 2.83271, 2), -(1320077, 148, 384, -3, -184, -1, 2), -(1317540, 132, -104, 1, 12.6, 0.3, 2), -(1320086, 148, 158, -24, 546, -3, 2), -(1317630, 153, -366, 29, -241, 0.8, 2), -(1332303, 152, -165, 6, 450, -1.4, 2), -(1320082, 153, 275.5, 11.1, -258.7, -0.8, 2), -(1317533, 132, 99.2226, 4.78645, 16.5797, -0.741859, 2), -(1317542, 154, 452, -1, 196, -1, 2), -(1320072, 133, -205, 10, -96, 1.6, 2), -(1317633, 154, 14.8739, -55.3396, 527.905, -2.44165, 2), -(1359064, 132, 40.1767, 1.19993, 33.5491, -2.0572, 2), -(1359244, 152, -196.215, 3.10004, 291.934, 1.0742, 2), -(1359648, 153, 185.686, 9.21862, -74.6898, -0.828473, 2), -(1359652, 154, -31.4935, -39.9006, 238.436, -1.95462, 2), -(3693843, 129, -96.5371, 18.5462, 0.164331, 1.55699, 2), -(3693863, 130, -144.305, -3.15489, -163.06, 0.844608, 2), -(3860373, 135, 156.876, 14.0959, 680.845, -3.01048, 2), -(3961173, 137, 491.614, 18.236, 474.858, -2.71565, 2), -(3965407, 138, 651.437, 9.39925, 507.082, -0.015805, 2), -(4142002, 139, 437.484, 4.21339, 84.1072, 0, 2), -(4142062, 180, -117.633, 64.3225, -219.456, 0, 2), -(3965476, 140, 73.0305, 45.9193, -232.058, -0.837415, 2), -(3965498, 145, -379.737, -59, 142.563, -1.60992, 2), -(3965549, 146, -153.169, 26.3166, -418.709, -0.966313, 2), -(3965676, 147, 28.5353, 6.97858, 454.249, -1.59139, 2), -(3965792, 155, 228.603, 312, -238.728, -0.872663, 2), -(3965896, 156, 47.7514, 20.4912, -667.904, -1.5964, 2), -(2563653, 132, 165.172, -2.53922, 83.0344, 2.28249, 2), -(2563690, 133, 101.232, 8.36029, -108.339, -1.72413, 2), -(2563700, 133, 117.217, 11.5772, -231.311, 2.29494, 2), -(2563702, 133, -146.938, 3.99984, -13.7873, -1.46085, 2), -(2563740, 133, -307.932, 7.06028, -174.981, 1.41482, 2), -(2563748, 133, -73.8652, 6.99362, -136.568, 1.13622, 2), -(2563810, 148, 128.68, 25.6247, -302.237, -0.407334, 2), -(2563828, 154, 448.667, -0.881895, 198.039, -0.81543, 2), -(4205005, 134, 224, 113.1, -261, 0.71968, 2), -(4205026, 141, -16.1511, -1.87702, -163.139, 3.13206, 2), -(4265667, 250, 40.9851, 5.6, -23.4832, 0, 2), -(3724283, 148, -502.084, 73.8739, -349.12, 0.022136, 2), -(1406089, 155, 7.46379, 184.824, 573.833, -2.9039, 2), -(1406085, 154, -366.571, -7.6982, 194.777, 0.759619, 2), -(4176152, 153, -282.699, -0.13973, 692.715, 2.57545, 2), -(1320088, 145, 366.689, 31.0121, -291.751, -0.526007, 2), -(1406087, 156, 120.007, 31.4998, -765.044, -0.804052, 2), -(1418272, 155, -228.277, 218.179, 698.528, -2.42958, 2), -(1418277, 147, -102.023, 84.4271, -411.113, -0.874677, 2), -(4295875, 156, -421.317, -3.21682, -122.225, -2.80336, 2), -(3876614, 134, -36.4611, 36.6508, 150.243, 1.98843, 2), -(2464045, 129, 58.7886, 20, -0.066879, -1.53495, 2), -(2453662, 134, 194.511, 65.2717, 285.229, -1.59811, 2), -(2464048, 135, 235.118, 73.7873, -338.534, 0.887104, 2), -(2453729, 134, -372.325, 33.3472, -595.069, 0.942594, 2), -(2464054, 138, 810.028, 49.9019, 384.635, -2.54678, 2), -(2210360, 135, -46.1092, 73.9411, 116.089, 1.54535, 2), -(2443382, 128, 24.9766, 44.5, 175.56, -3.13474, 2), -(4323017, 135, 596.704, 61.6635, -112.685, -2.81539, 2), -(2453713, 135, 571.106, 96.3, -518.642, -0.05646, 2), -(2453673, 137, -132.425, 69.3748, 739.518, -3.13744, 2), -(2453708, 135, 693.492, 79.5221, -382.789, -0.232514, 2), -(2453666, 137, 246.611, 56.1687, 831.572, 2.89764, 2), -(2372269, 130, 42.3246, 4, -158.943, -0.273386, 2), -(2377056, 141, -114.159, 18.3778, 332.705, 2.8655, 2), -(2376310, 130, 91.1395, 4, -111.101, -2.27906, 2), -(2377064, 131, 94.3718, 4, -108.09, 0.815058, 2), -(2376964, 130, 58.4986, 8, -88.0199, -2.27798, 2), -(2377068, 131, 67.2002, 8, -80.4213, 0.854852, 2), -(2376969, 130, -12.143, 10, -44.8101, -2.89781, 2), -(2377071, 131, -7.5771, 12.5628, -27.816, 0.26209, 2), -(2369965, 130, -176.583, 14, -14.6283, 1.56838, 2), -(2377075, 140, 465.194, 96.6206, 159.051, -1.73197, 2), -(2379246, 130, -123.162, 9.99999, -8.84062, -1.56451, 2), -(2377082, 131, -107.435, 6.98457, -9.0397, 1.57633, 2), -(2379249, 130, -121.899, 10.0722, 9.43441, -1.5354, 2), -(2377078, 131, -106.993, 6.98457, 9.39492, 1.58387, 2), -(2372279, 131, 159.45, 4, 42.6079, -1.86339, 2), -(2376287, 141, 20.1486, 18.3778, 565.384, 1.34262, 2), -(2210427, 128, -3.02154, 43, -27.8195, 1.52636, 2), -(2210364, 129, -2.24011, 20.0008, 27.8738, 1.54483, 2), -(2210434, 128, -92.7087, 35.5, 104.59, 0.839544, 2), -(2210376, 129, -89.9423, 20.6775, 111.428, -3.09037, 2), -(2210411, 128, -70.0571, 40.6609, -125.182, 2.3762, 2), -(2210368, 129, -84.1969, 18.0003, -22.3949, 0.030137, 2), -(2453691, 134, -166.683, 35.0913, -726.536, -0.302407, 2), -(2464051, 137, -108.773, 70.3399, 46.5696, 1.79447, 2), -(2453742, 137, 80.4418, 80.0177, -115.679, 0.063873, 2), -(2453717, 139, 717.879, 0.468218, 208.285, -3.11069, 2), -(2453747, 138, 408.384, 27.5189, -5.33734, -0.320773, 2), -(2453733, 139, -472.983, 1.43406, 283.031, 2.36451, 2), -(4057217, 139, -350.797, 47.4884, -14.5283, -1.14213, 2), -(4056858, 148, -326.559, 51.2799, -87.2374, -2.82522, 2), -(4057229, 139, 289.163, 41.1628, -198.013, 0.64875, 2), -(4056861, 148, 238.76, 54.7158, -252.767, -1.7284, 2), -(2376981, 141, -398.28, -0.789985, 99.3511, 1.96518, 2), -(2372291, 140, 258.5, 52.6883, -4.64944, -0.456935, 2), -(2377124, 141, 226.726, 2.7533, 669.653, -2.22354, 2), -(2372323, 146, -423.482, 12.8616, -422.811, 0.697403, 2), -(2377115, 141, 446.556, -17.9999, -174.403, -0.73727, 2), -(2372300, 145, -559.838, -19.777, 335.605, 2.10368, 2), -(2377133, 141, -26.9884, 33, -486.807, 0.127408, 2), -(2372337, 147, 36.6025, 5.93622, 506.673, 3.10036, 2), -(2377127, 145, -173.756, -45.2898, 483.95, -2.64246, 2), -(2377118, 146, -27.6321, 16.1257, -760.456, -0.049568, 2), -(1359242, 148, 5.5, -1.2, 39, 2, 2), -(5866176, 397, 469.424, 224.482, 878.862, 2.871, 2), -(5866084, 418, -187.517, 14.727, -57.656, 0.855, 2), -(5866221, 418, 154.928, -19.477, 55.268, -0.73, 2), -(5866257, 419, 256.628, -13.734, -103.892, -1.439, 2), -(5866245, 419, -18.889, -12.57, -68.431, -1.771, 2), -(5866233, 418, -61.586, 18.543, -92.179, -0.651, 2), -(5866262, 419, 19.538, -12.472, -68.271, 2.03, 2), -(5866230, 418, -154.269, 28.129, -132.983, -0.0197, 2), -(5866241, 419, -310.907, -24.644, -67.234, 2.203, 2), -(5866236, 418, 55.03, 27.575, -73.413, 0.242, 2), -(5877389, 418, -64.611, 8.113, 33.657, 1.315, 2), -(6905480, 635, 71.855, 0, 90.949, 90.94, 2), -(6905243, 612, -625.769, 130, -499.801, -2.776, 2), -(6905262, 612, 417.205, 114.272, 235.743, -0.195, 2), -(6905281, 620, 121.319, 118.155, -735.75, -2.59, 2), -(6905290, 620, -264.638, 257.78, 754.837, -2.283, 2), -(6905383, 621, -649.236, 50, -7.226, -2.841, 2), -(6905404, 621, 600.419, 80.999, 650.526, 1.105, 2), -(6905785, 628, 36.879, 4.499, -38.675, 1.443, 2), -(6905517, 613, 340.799, -119.983, -259.297, 1.787, 2), -(6905556, 613, 97.253, 3.0741, -578.398, -2.061, 2), -(6905594, 614, 430.091, 68.028, -76.178, 2.976, 2), -(6905606, 614, 240.855, 4.903, -405.901, 0.848, 2), -(6905720, 622, 553.881, -19.505, 354.754, 3.004, 2), -(6905736, 622, 77.954, 114.904, 54.161, 3.124, 2), -(5877470, 397, 475.573, 212.539, 724.138, -3.088, 2), -(5877548, 401, -614.543, -122.5, 560.65, -2.967, 2), -(5877554, 401, -602.771, -51.051, -402.786, -2.478, 2), -(5877573, 402, -732.918, -186.96, -600.872, 0.791, 2), -(5877684, 478, 78.692, 207.827, -11.564, -2.42, 2), -(5877731, 398, 527.068, -51.275, 44.389, 2.778, 2), -(5877743, 398, -295.193, -21.131, 30.783, -1.449, 2), -(5877767, 400, 244.675, -42.223, 589.172, 1.071, 2), -(5877776, 400, -577.575, 48.808, 305.611, -0.752, 2), -(4168380, 130, 65.298, 4, -118.459, -0.312, 2), -(4168385, 130, -154.348, 14.005, 70.563, -0.192, 2), -(4169078, 131, -52.238, 10, 10.248, -0.679, 2), -(4203093, 131, -20.026, 14.049, 74.811, 2.875, 2), -(4169094, 131, 30.708, 12.056, 111.8, 1.098, 2), -(4194547, 131, 91.638, 12, 59.42, -2.105, 2), -(6953712, 131, 131.552, 4, -31.932, 0.23, 2), -(4203094, 131, 3.728, 29.999, -23.907, 1.886, 2), -(4169099, 131, -99.958, 41, 88.312, 1.483, 2), -(6390350, 130, -26.465, 83, -17.332, -0.148, 2), -(4169491, 140, 467.013, 96.62, 159.009, -1.692, 2), -(4169494, 141, -115.018, 18.377, 333.546, 2.882, 2), -(4169496, 141, 18.549, 18.377, 565.206, 1.345, 2), -(4170478, 128, 15.792, 40, 71.464, 3.027, 2), -(4170467, 128, -55.892, 42, -129.285, -2.857, 2), -(4170361, 129, -335.144, 11.999, 53.509, -0.002, 2), -(4170387, 129, -180.396, 4, 180.309, 0.386, 2), -(4203091, 128, -3.309, 44, -218.191, -1.517, 2), -(4203092, 129, -213.582, 16, 48.801, -0.006, 2), -(6390356, 128, -11.685, 91.499, -13.191, -0.377, 2), -(4170499, 134, -39.562, 36.039, 152.972, 2.041, 2), -(4170784, 135, -39.271, 71.504, 116.516, 1.587, 2), -(6100648, 478, -74.827, 209.524, -23.346, 2.854, 2), -(5865600, 478, 135.482, 207, 114.076, -2.166, 2), -(5865605, 478, 79.813, 203.98, 132.018, 2.558, 2), -(5865668, 399, -221.2, 104.271, -599.535, 0.268, 2), -(5865672, 399, -221.2, 155.809, -516.036, 0.295, 2), -(5865598, 399, -221.2, 104.271, -599.535, 0.268, 2), -(5865604, 399, -533.153, 153.074, -487.968, 0.18, 2), -(5916706, 418, -111.521, 15.14, -29.188, 0.0077, 2), -(5916705, 418, 47.713, 23.979, 1.144, 1.457, 2), -(5916704, 418, 47.701, -12.02, 67.738, 2.057, 2), -(5916727, 155, -161.481, 304.153, -321.403, 0.795, 2), -(5916708, 419, 0.000456, 16.015, -35.806, -0.0296, 2), -(5916724, 419, 80.156, 10.054, -123.9, -2.445, 2), -(5916722, 419, -80.517, 10.054, -123.315, 2.468, 2), -(5916717, 419, -136.889, -12.634, -16.757, 0.978, 2), -(5916716, 419, 136.079, -9.234, -66.426, -0.989, 2), -(6905273, 612, 475.811, 61.576, -555.551, -1.274, 2), -(6905297, 620, -653.588, 51.867, -790.168, 1.1366, 2), -(6906489, 635, -82.295, 0, 8.925, 1.77, 2), -(6906492, 635, 100.312, 2.731, -113.366, -0.481, 2); - -INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'megalocrab_326' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -331.965668, 22.992815, -397.683472, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -343.520752, 29.194338, -434.403931, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -287.851410, 23.329105, -389.787903, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -279.919769, 23.185986, -379.368286, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -296.690704, 18.819510, -358.737640, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -317.698059, 14.251725, -314.956085, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -307.845459, 12.771940, -294.912384, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -237.021545, 12.128521, -304.521088, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -246.034760, 15.414858, -352.626801, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -230.411011, 14.661633, -353.962830, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -245.534393, 15.604112, -364.897766, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'wespe_385' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -267.086853, 14.243032, -318.071198, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -268.355133, 14.702018, -324.354950, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -265.035980, 21.642460, -391.558014, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -294.696960, 21.995447, -408.036621, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -311.346100, 13.090148, -301.844757, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'watersprite_59' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -7.446762, 14.427491, -455.573090, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -26.431925, 11.248571, -450.000061, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -2.233833, 15.026097, -455.286896, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -20.050797, 11.844938, -442.189026, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -221.341934, 11.961915, -312.651794, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -232.595505, 12.352926, -309.352112, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -194.311447, 12.183639, -354.748505, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -76.889236, 12.132688, -411.779266, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -229.057877, 12.777744, -317.539368, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -220.589676, 11.878364, -312.511322, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -190.594452, 11.962065, -355.653717, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'wildjackal_138' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -145.458466, 13.031585, -388.402069, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -234.588074, 22.026314, -439.699127, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -171.213028, 17.009743, -408.806580, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -178.518661, 15.478683, -400.348083, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -197.690918, 25.026531, -447.813477, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -218.352142, 23.785759, -445.140503, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -218.630051, 26.268248, -468.249023, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'CaptainPetyrPigeontoe_350' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -57.328251, 51.480759, -227.008499, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'wespe_385' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -200.632477, 14.262453, -394.524506, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -201.580444, 25.003616, -457.214355, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -233.669510, 25.396883, -469.948120, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'wildjackal_138' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -354.876251, 33.179375, -531.375732, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -282.444611, 29.387190, -557.825806, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -319.476227, 32.986965, -580.984131, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -317.406036, 36.740250, -593.969604, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -326.460938, 37.536251, -597.999878, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -365.849640, 33.818455, -481.190399, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -374.081909, 35.475296, -484.046387, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -367.944244, 35.019844, -487.927612, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -323.445374, 27.251024, -480.311096, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -318.842468, 26.529778, -471.926849, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -249.396149, 24.733049, -476.782074, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -321.318604, 26.724133, -522.998108, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -288.162201, 22.502029, -434.296936, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'mosslessgoobbue_1447' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 77.579002, 46.302719, 136.330963, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 5.277904, 45.958427, 89.831421, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 158.373032, 46.830406, 136.811768, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'wespe_385' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -358.630188, 33.284374, -562.802307, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -331.671478, 28.954283, -468.071960, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -289.281952, 25.531479, -534.289124, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -282.551788, 25.483965, -535.692383, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'wildjackal_138' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -221.423065, 33.260006, -508.795624, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -258.155182, 33.656048, -595.986572, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -212.737015, 32.900944, -534.774719, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -230.601257, 31.270628, -507.494110, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -253.176514, 34.081833, -600.018372, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -250.243698, 29.901766, -568.369141, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'megalocrab_326' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -356.232300, 13.367952, -313.518707, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -373.790436, 24.519091, -382.447144, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -370.241608, 25.123201, -388.656769, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -345.935852, 16.643759, -343.528595, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -352.046814, 17.659555, -349.897217, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'wespe_385' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -270.811096, 33.180580, -584.978638, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -204.400558, 33.691841, -560.175659, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -239.972076, 28.178400, -522.827271, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -383.083313, 13.583163, -323.224487, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -240.079239, 29.303089, -564.556519, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -375.856689, 26.441006, -393.485809, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -347.793030, 19.214540, -359.546417, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'watersprite_59' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -428.562866, 12.289565, -314.695221, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -423.095123, 12.191257, -306.691467, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -367.459808, 12.385678, -308.873810, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'mosslessgoobbue_1447' ) , 17, 369 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -30.180510, 47.027378, 12.784531, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 79.008659, 51.533749, -31.664383, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -63.886040, 54.600922, -263.414673, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'wharfrat_347' ) , 1, 44 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -3.731861, 23.661076, 204.562988, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 7.016368, 35.099998, 163.830719, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 11.641629, 26.810532, 190.754227, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -67.454597, 42.976189, 113.839752, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -86.012451, 44.385124, 139.043472, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -90.423431, 45.889622, 145.067398, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -69.835480, 43.484474, 154.071686, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -7.363383, 23.143206, 200.119553, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -64.294884, 43.361660, 111.288300, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -4.473485, 23.589346, 203.556610, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -14.786334, 45.329361, 96.517563, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -13.161414, 29.134892, 178.685349, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -15.147864, 29.146116, 179.532257, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -16.632212, 45.301182, 96.967239, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -43.133400, 44.330608, 115.136566, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -60.981113, 43.687714, 108.712296, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 4.107932, 46.042328, 77.476730, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 45.481239, 45.081741, 150.092957, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 30.873688, 44.051514, 160.252258, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 30.736515, 44.017147, 142.342926, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 43.914749, 45.119297, 146.800415, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 13.142145, 43.529034, 110.186653, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 1, 44 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 6.210701, 27.690407, 217.402222, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 24.309614, 32.836544, 185.042557, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 29.545460, 34.655739, 182.922638, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -75.660500, 43.329624, 145.106323, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -4.046512, 29.098654, 176.504395, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -53.103287, 44.328880, 101.398026, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -6.694211, 46.129498, 92.730927, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 32.878178, 44.330265, 149.463898, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'wharfrat_347' ) , 2, 51 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 160.774567, 47.540539, 107.388519, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 159.889664, 47.431347, 108.330070, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 133.052597, 47.118847, 106.192291, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 135.561737, 47.145977, 107.036568, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 97.288307, 48.259750, 62.811817, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 128.470749, 46.933422, 106.390732, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 95.517159, 47.722393, 70.257515, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 98.813454, 48.145638, 66.945900, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 100.282341, 46.664196, 83.426262, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 134.065308, 49.132767, 61.574669, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 133.981583, 48.400425, 74.234680, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 134.333969, 48.254456, 79.320755, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 76.767609, 46.476234, 119.860565, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 84.848404, 46.347179, 115.419701, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 85.781715, 46.364143, 116.708534, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 38.176544, 44.655468, 96.448257, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 39.812160, 44.979256, 94.367928, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 73.905632, 47.650303, 55.632393, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 74.847397, 47.624672, 58.280781, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 2, 51 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 98.870117, 48.092091, 48.467918, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 106.461876, 46.473701, 108.118568, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 107.729523, 46.327087, 101.884705, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 139.160110, 48.610489, 73.614281, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 41.589314, 44.923477, 100.693321, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 38.036175, 47.728592, 62.147556, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'lostlamb_338' ) , 3, 59 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 52.275890, 62.276653, 280.330811, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 54.393841, 61.934650, 277.944275, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 55.748829, 57.116402, 238.578323, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 120.564796, 51.639057, 185.418686, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 108.885849, 57.124508, 216.315903, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 116.507950, 57.191601, 214.181427, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 120.427338, 50.863556, 180.189285, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 124.806290, 49.885899, 173.044128, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 113.125015, 50.398483, 180.739792, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 109.493004, 46.537899, 150.136261, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 107.593819, 46.540844, 147.683060, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 64.423653, 57.350300, 229.693344, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 39.270386, 50.072704, 206.503067, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 33.727348, 51.166588, 217.350525, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 71.301666, 57.450714, 232.595230, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 55.711681, 47.603344, 189.302795, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 52.963795, 46.741600, 186.539597, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 61.490932, 49.122814, 192.835571, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 76.258034, 46.933235, 178.033234, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 3, 59 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 88.179604, 61.357574, 261.847473, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 91.864029, 57.302895, 222.911011, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 33.337551, 48.641586, 203.757858, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 83.893715, 47.863098, 184.184570, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 87.286522, 48.131924, 185.016525, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 103.786911, 46.660172, 151.838699, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'lostlamb_338' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 189.272522, 61.816093, 209.208542, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 189.378403, 58.593189, 194.887985, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 181.571884, 55.666573, 191.486298, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 188.804138, 57.049568, 187.654816, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 137.328705, 57.963001, 223.486679, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 142.900436, 56.968338, 219.604263, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 152.178146, 56.990185, 231.923904, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 139.424438, 58.035606, 228.723206, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 164.824005, 53.772987, 206.522491, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 155.060883, 61.051876, 265.598724, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 155.599197, 60.962376, 264.089813, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 127.403656, 60.077000, 251.003403, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 176.181137, 48.114662, 150.232208, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 177.999313, 47.781944, 144.144470, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 184.752869, 48.446835, 149.026245, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'pukhatchling_341' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 9.883813, 51.649990, -103.576378, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 2.601048, 52.335876, -109.139053, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -3.310030, 53.460983, -115.968292, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -12.127865, 49.762062, -91.193512, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -18.602348, 48.661625, -85.810738, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 9.288257, 50.456486, -56.699429, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 10.769259, 50.553490, -56.633259, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 3.429778, 47.202480, 24.911612, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -5.252251, 48.993488, -31.224022, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -8.689426, 48.820152, -26.091892, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -13.901205, 47.835781, -29.854734, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 79.845871, 49.535797, 1.020960, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 75.759415, 49.253456, 5.844504, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 29.817707, 49.309433, -2.502621, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 54.969727, 50.291496, -27.108908, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 103.775833, 57.186680, -52.900967, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 85.871330, 56.455254, -70.492790, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 84.666687, 55.411270, -60.208988, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 107.816055, 62.911079, -101.286621, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 113.982086, 63.152512, -94.651260, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 113.247849, 64.631615, -105.485771, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'pugil_383' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -71.904892, 39.021957, 75.060997, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 141.153442, 44.526516, 25.384666, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -35.157337, 40.907158, 65.473549, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -33.176159, 41.184235, 67.647400, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -2.570331, 42.700001, 54.898056, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 40.771469, 42.900009, 36.930901, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 10.453321, 42.909824, 37.001194, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 8.184493, 42.967644, 45.382553, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 12.345761, 43.263519, 45.798283, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 111.538612, 44.537842, 34.699539, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 109.264824, 44.129055, 33.048660, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 83.665848, 43.268738, 30.722244, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 180.400940, 55.607468, 193.319229, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 200.451569, 50.098648, 149.091019, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 201.656845, 50.096828, 147.920059, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 121.634842, 58.923622, 225.616882, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 131.366821, 61.058308, 280.821869, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 128.860992, 59.986004, 250.667664, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 181.040421, 59.861511, 221.174942, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'beecloud_57' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 100.407074, 51.388374, -17.204609, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 10.797469, 49.753666, -67.309891, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -21.511536, 46.711739, -32.711185, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 6.260452, 47.518181, 22.076773, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 82.869972, 56.200687, -71.013557, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'tinymandragora_118' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 53.494286, 62.625416, -165.739075, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 52.233376, 62.890347, -170.285385, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 59.147640, 63.796188, -168.319336, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 54.451111, 63.418686, -170.066605, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -14.535679, 54.288269, -153.325455, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 21.694853, 56.179790, -158.473068, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 21.748583, 55.466850, -150.295563, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -7.061856, 54.675930, -148.082504, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -13.198866, 54.578049, -157.733429, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 26.812799, 61.360905, -190.280746, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 23.067789, 60.292828, -183.608658, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 61.106598, 55.248795, -120.635345, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 60.617790, 55.198704, -121.482445, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 60.215248, 55.159809, -122.368248, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 25.661213, 61.571171, -192.870209, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 98.657776, 73.085945, -206.233261, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -12.003942, 57.393898, -190.329819, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -8.072847, 58.014038, -193.903305, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 120.486526, 73.817039, -168.227951, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 122.554665, 70.415909, -145.326981, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 117.183441, 76.688736, -186.868301, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 97.458588, 66.799889, -161.670242, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 90.009644, 66.022507, -164.210098, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 151.279770, 87.549683, -183.108475, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 124.581230, 81.384987, -215.119690, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 116.684822, 77.109184, -190.357040, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 118.744141, 78.365181, -197.438538, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 138.474792, 87.128471, -213.734756, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 117.448174, 67.894669, -128.750015, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 116.077179, 68.014374, -144.393539, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 123.745865, 71.020630, -146.962265, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'beecloud_57' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 1.637570, 56.398060, -163.165619, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 29.939270, 61.739025, -194.317062, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -28.712162, 51.282845, -123.338188, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -31.247005, 50.776382, -119.371780, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -3.896622, 58.627319, -211.458221, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 136.400726, 86.560204, -217.529419, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 81.536385, 65.806290, -159.908600, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 111.755356, 76.003296, -193.064423, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'goblinfisher_769' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 131.630295, 52.191109, 0.493474, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 118.425201, 49.484989, 10.177730, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 119.187698, 52.657040, -17.502140, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 117.565399, 49.175140, 13.275840, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 132.709000, 52.181438, 1.958378, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 115.385597, 49.234230, 11.315280, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 106.485985, 49.069504, 12.090261, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 118.691986, 51.362583, -4.647203, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'pukhatchling_341' ) , 6, 108 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -96.868835, 44.560413, -39.105984, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -89.342072, 46.194141, -82.156837, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -93.856956, 46.326416, -75.676338, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -91.745079, 46.274441, -79.205025, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -58.680473, 47.408348, -102.197701, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -148.213577, 42.608311, -33.994537, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -150.275162, 42.133709, -30.405054, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -87.514290, 43.546738, -20.661009, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -88.669479, 43.655354, -22.574450, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -83.950882, 41.620068, 31.435547, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -144.019928, 42.150249, -28.266453, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -46.953049, 45.617867, 27.841829, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -38.752907, 46.494484, 18.667154, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -35.902935, 46.432888, 30.632761, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'pugil_383' ) , 6, 108 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -106.067581, 44.654510, -129.329956, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -110.756264, 44.420502, -130.757858, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -71.063225, 45.823952, -173.768906, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -37.357929, 48.037205, -216.265564, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -183.266495, 41.114708, -108.932144, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -167.064804, 40.700005, -66.193069, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -163.551376, 40.691860, -64.839310, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -75.583542, 45.700001, -163.037247, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -69.250282, 45.794891, -170.344879, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 53.943092, 57.021660, -253.610474, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 24.373447, 55.304802, -252.639816, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 16.591105, 54.745075, -253.853500, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'beecloud_57' ) , 6, 108 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -120.475319, 45.710564, -77.498833, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -74.733589, 43.079575, -41.503971, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -119.823639, 42.508015, -3.421261, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -39.545799, 45.535061, 45.050991, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -55.018173, 45.698727, 4.680328, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'tinymandragora_118' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -50.483944, 46.071774, -346.390167, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -52.750397, 45.590187, -355.197235, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -109.832199, 40.493553, -327.126007, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -114.270653, 40.290581, -322.167053, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -103.981972, 41.329067, -325.891052, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -121.046898, 42.696621, -290.838226, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -152.571640, 41.642223, -258.028961, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -155.960556, 41.586990, -255.659836, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -89.521942, 39.615871, -350.244019, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -92.405464, 38.840076, -358.638306, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -56.707485, 44.942493, -374.945618, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -54.537674, 45.260014, -371.216949, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -49.741741, 45.923832, -356.883698, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -70.185287, 45.547401, -311.545349, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -89.649803, 45.129978, -291.564819, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -71.037689, 53.372925, -254.668945, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -93.857521, 47.852798, -263.410156, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -76.711746, 51.913376, -252.973755, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -106.470970, 46.484192, -241.164505, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -101.853516, 46.834717, -238.944489, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -75.037437, 52.156349, -251.734039, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -72.207336, 52.251644, -246.714981, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -57.625233, 54.784733, -273.289337, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -60.326626, 53.947102, -279.948456, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -40.461426, 54.673340, -241.702972, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -39.232708, 55.208588, -244.539566, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -85.323067, 50.313816, -266.397400, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -95.850533, 48.482300, -196.227295, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -93.270882, 48.552269, -198.037018, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -93.451256, 48.365513, -202.751999, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -7.309576, 58.327408, -267.815887, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -91.586647, 47.789253, -271.408386, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -96.088913, 44.770199, -289.537079, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -39.622337, 54.579426, -261.872467, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -39.002579, 55.053753, -242.669632, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -12.458018, 57.721428, -263.328308, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'bogy_342' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -45.042118, 26.434660, -141.567322, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -67.581841, 26.191332, -148.586304, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -54.823967, 25.266302, -156.286758, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -57.748421, 25.648920, -159.202942, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -70.313339, 27.375238, -132.230255, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -56.168411, 28.770184, -106.277733, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -52.088058, 27.109352, -131.528122, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -54.476223, 27.257706, -127.671783, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'beecloud_57' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -57.992149, 46.621784, -320.279449, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -59.272228, 46.292400, -317.640259, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -44.897835, 46.484447, -360.757782, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -84.110481, 50.385708, -269.203949, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -145.695389, 40.059208, -289.757538, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -142.425964, 40.207573, -292.737610, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -49.925922, 54.240845, -242.550812, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'goblingambler_769' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 111.503899, 49.330059, 5.172480, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 134.973587, 55.239212, -7.700588, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 143.246231, 52.017315, 15.169677, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 123.273178, 50.731594, 6.752262, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 99.274048, 49.782257, -0.848571, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'woundedaurochs_323' ) , 8, 143 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -133.487823, 45.774521, -216.851669, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -149.791916, 45.625839, -204.073730, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -164.620773, 44.984394, -212.142273, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -132.186371, 45.696972, -219.915649, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'pukhatchling_341' ) , 8, 143 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -196.067963, 39.969368, -264.570404, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -185.715164, 41.744507, -243.245865, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -176.974609, 41.117317, -254.499191, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -126.649742, 47.499996, -168.992538, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -118.048874, 48.221626, -166.108597, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -123.767822, 47.737617, -166.441193, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -181.419312, 42.904758, -187.287781, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -226.345200, 37.947273, -179.053879, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -190.904724, 42.527912, -139.157120, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -188.997589, 42.209450, -145.630234, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'beecloud_57' ) , 8, 143 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -179.734818, 41.483917, -249.543243, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -174.548996, 44.116032, -200.080963, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -213.138306, 39.034805, -151.014130, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'groundedpirate_348' ) , 9, 160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -71.643723, 50.040466, -222.957214, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -63.299820, 50.321152, -220.334595, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -67.444130, 51.133343, -228.663345, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -58.565269, 51.362320, -226.270996, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 134, ( SELECT id FROM bnpctemplate WHERE name = 'groundedraider_349' ) , 9, 160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -64.276390, 50.332390, -220.639801, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -57.636803, 53.218609, -238.138611, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -59.599991, 52.900009, -236.000000, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -67.599823, 50.762180, -225.515579, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'mosslessgoobbue_1447' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 94.520477, 48.978989, 85.119926, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 68.709465, 52.136890, 163.452972, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 198.847336, 44.533867, 46.714577, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'mosslessgoobbue_1447' ) , 17, 369 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 563.707275, 84.092758, -314.004272, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 456.225952, 67.847412, -124.112106, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 425.172363, 79.358009, -347.228699, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 371.515900, 67.106621, -110.092201, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'wharfrat_347' ) , 1, 44 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 26.916197, 60.716721, 146.313339, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 40.009014, 64.117569, 64.150169, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 34.771515, 63.872021, 71.497284, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 29.662863, 60.371620, 126.713242, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 28.466755, 64.624504, 67.854362, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 34.007267, 63.887379, 72.604797, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 30.432383, 64.874329, 63.427479, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 7.254086, 64.915436, 104.146622, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 69.494453, 54.715496, 106.259918, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 58.722973, 59.275185, 102.089981, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 67.633492, 54.621197, 110.598335, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 68.348351, 55.308243, 104.995171, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 11.569650, 64.269142, 103.174004, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 1, 44 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 26.958265, 64.357643, 72.756767, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 27.002611, 64.851471, 67.580421, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 8.216500, 65.307701, 92.650581, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 16.980753, 64.048355, 99.779839, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 13.985167, 64.647377, 93.622849, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 52.602680, 60.511314, 100.787941, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 32.744072, 59.650726, 131.413681, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'wharfrat_347' ) , 2, 51 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 56.221268, 62.042149, 72.297455, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 91.332108, 47.055599, 157.997559, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 87.691399, 47.809818, 157.992111, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 49.532116, 56.409939, 152.623367, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 48.690186, 56.613407, 148.004532, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 113.440361, 41.885426, 108.027702, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 113.414001, 41.900452, 106.670898, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 114.788857, 41.656944, 108.585037, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 94.786339, 50.238026, 75.322945, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 118.802109, 42.820206, 144.111496, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 96.860977, 44.613991, 130.650070, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 71.097237, 53.633926, 109.696114, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 76.104874, 55.156792, 84.312637, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 83.253525, 52.465530, 86.808594, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 2, 51 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 69.956696, 53.950336, 179.983109, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 61.942692, 60.913414, 75.686951, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 94.057419, 46.317200, 154.471436, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 50.125969, 56.087383, 156.880859, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 49.523792, 56.254055, 140.493607, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 45.816303, 57.165283, 155.420288, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 103.615417, 43.462231, 128.439377, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 102.067993, 44.149277, 133.487228, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 112.447159, 42.066437, 108.635132, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 99.107857, 49.034706, 73.884544, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 92.852737, 51.566437, 70.319206, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 70.893890, 54.428802, 104.919304, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 82.155479, 52.431778, 89.570999, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'aurelia_324' ) , 3, 59 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 219.731857, 32.506802, 168.673019, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 181.891434, 43.358509, 200.149002, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 180.901138, 43.579578, 200.677719, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 3, 59 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 203.018219, 37.031994, 175.462402, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 215.580170, 32.328014, 164.474243, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 220.377899, 30.585899, 160.532349, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 228.336670, 34.043797, 201.093536, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 183.616898, 43.118244, 194.632889, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 336.194672, 47.099918, 1.888668, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 343.956146, 60.216846, -71.944847, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 416.016479, 55.117226, -17.193724, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 418.138916, 57.351116, -23.052483, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'rivertoad_313' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 120.737450, 37.739044, 16.051737, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 109.687134, 38.531654, 10.432497, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 117.664635, 38.761612, 3.636368, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 136.558075, 36.581043, 47.400150, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 198.763367, 28.137863, 93.380295, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 171.544052, 32.847466, 75.029411, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 156.255524, 34.608242, 78.988182, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 154.492371, 34.888306, 71.363861, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'aurelia_324' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 225.081253, 52.263409, 24.574612, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 220.517456, 51.088158, 30.080524, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 220.027435, 50.111191, 32.663101, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 190.832306, 43.244701, 49.525848, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 181.493118, 41.064919, 51.910580, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 286.888763, 43.871349, 47.657894, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 284.342529, 42.973698, 55.895695, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 242.765549, 44.245422, 45.477222, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 147.612732, 38.616558, 41.336758, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 155.868851, 40.272617, 41.298016, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 182.561386, 40.957935, 52.696888, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 240.660263, 44.478020, 45.478687, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 234.358673, 36.276134, 68.959831, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 239.134186, 38.718204, 63.955700, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'wilddodo_339' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 359.800201, 63.130806, -84.775078, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 363.362915, 50.247875, -13.523794, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 448.148346, 55.611485, 2.787222, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 457.218597, 57.893337, -4.278357, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 455.054413, 55.001904, 7.132930, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 371.478149, 58.988144, -57.325966, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 368.725311, 58.351700, -54.586235, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 446.569183, 64.181458, -28.631693, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 443.518524, 64.607430, -34.817146, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 450.737610, 66.189697, -74.113396, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 371.522095, 50.759735, -14.023604, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 309.414459, 48.791954, -3.791578, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 304.958496, 47.758831, 0.953015, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 414.083344, 63.713451, -88.050529, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 408.029083, 63.005074, -80.563271, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 340.289886, 50.930775, -27.551414, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 365.094940, 58.296124, -55.134441, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 219.421768, 54.241119, 18.977077, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 207.526077, 41.749401, 54.424164, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 149.695404, 38.861641, 42.083420, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 215.521103, 45.543827, 44.646008, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 219.873489, 53.062775, 23.399588, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 203.348724, 32.232147, 77.736404, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 280.816010, 43.143028, 56.584328, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 268.288818, 46.388695, 33.790966, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 244.408783, 37.147427, 67.710571, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 211.033401, 40.701782, 57.616493, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 187.702911, 41.235081, 53.626133, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'tinymandragora_118' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 380.622498, 70.246849, -141.464813, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 380.550354, 70.266815, -140.589005, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 381.400635, 70.157051, -140.867416, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 477.479614, 66.597771, -142.589798, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 472.596039, 66.876633, -149.534363, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 381.825043, 70.124992, -139.614426, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 417.948914, 66.089348, -157.965424, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 419.606659, 66.172523, -156.331116, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 418.834595, 66.488335, -160.934219, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 397.047394, 67.288803, -118.359344, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 397.942139, 68.064751, -127.881569, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 392.877960, 67.922607, -119.000290, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 436.890656, 65.065147, -118.815918, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 434.758820, 65.734489, -128.353104, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 337.428650, 70.121071, -138.058868, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 353.795044, 69.926262, -125.548866, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 356.366119, 69.583214, -123.833481, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 351.608002, 69.986290, -126.135391, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 436.935638, 65.926300, -130.945190, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 353.821075, 71.324783, -139.742188, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 353.473663, 71.444519, -142.790955, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'nestingbuzzard_12' ) , 6, 108 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 526.465515, 78.800354, -292.257721, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 526.971680, 78.023567, -289.232727, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 565.471680, 74.452820, -272.191528, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 534.689392, 74.968597, -275.219269, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 557.510620, 75.958351, -278.171417, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 567.830505, 74.282425, -271.650726, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 507.802917, 72.082581, -258.450287, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 526.328308, 69.882721, -240.080872, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 528.398376, 70.347511, -243.893829, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 561.558105, 68.125473, -229.163986, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 561.041992, 68.687424, -233.656509, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 525.478516, 69.400528, -236.250198, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 403.368011, 87.692116, -398.476318, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 406.053772, 88.196365, -400.371277, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 385.798767, 79.078354, -353.764862, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 636.305542, 71.157471, -283.066467, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 631.170898, 73.595642, -291.549469, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'wilddodo_339' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 430.422272, 72.143112, -302.979462, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 431.083374, 71.725746, -301.065430, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 440.562805, 74.180466, -307.044678, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 610.812378, 70.181664, -264.543274, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 607.902344, 70.368347, -263.571411, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 610.119141, 71.524094, -271.122894, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 650.266174, 68.213875, -276.976776, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 695.698914, 67.189156, -297.329865, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 659.421204, 68.301704, -284.334290, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 499.032196, 76.469223, -297.054108, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 507.059937, 78.411415, -301.477173, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 485.793793, 72.503822, -274.495911, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 362.579193, 74.094772, -317.438782, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 360.985870, 74.757294, -320.865295, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 381.258942, 72.667435, -253.095200, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 390.210175, 70.528702, -258.373779, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 387.903900, 70.259445, -263.859558, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 353.380554, 74.469505, -319.400452, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 361.543030, 75.335442, -325.462616, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 361.944641, 73.961372, -316.851318, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 359.497986, 73.275612, -313.808380, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'cavebat_38' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 219.154526, 75.415268, -302.474640, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 246.290009, 74.278061, -328.429962, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 273.755554, 74.231094, -279.361694, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 281.948761, 74.149261, -279.882660, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 231.710861, 73.749962, -272.697021, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 233.452744, 73.451477, -275.917358, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 289.682800, 74.563805, -268.666901, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 274.948883, 73.326317, -232.849640, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 282.617279, 74.647270, -245.464569, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 286.071808, 75.019012, -257.100647, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 268.314819, 73.616829, -311.259155, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 294.758606, 76.989525, -322.206909, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 287.976715, 76.378532, -315.052063, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'tinymandragora_118' ) , 8, 143 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 610.244812, 62.599201, -151.904495, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 615.752380, 61.307377, -154.050751, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 615.909607, 61.289349, -154.147369, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 622.456604, 63.270096, -173.710831, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 629.580811, 61.927479, -172.612106, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 687.953247, 64.900391, -226.652832, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 630.504089, 66.755577, -233.983429, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 634.583618, 65.566711, -206.673035, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 634.613647, 65.784950, -209.357834, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 630.603516, 66.758064, -232.625183, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 611.426758, 62.175373, -151.224609, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 583.816589, 63.812851, -161.428101, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 580.313782, 64.361633, -166.443390, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 623.554199, 66.057755, -213.178711, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 602.534119, 66.056328, -197.366196, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 597.319763, 65.991791, -206.936401, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 602.844177, 66.067886, -214.333893, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 632.294922, 65.812126, -209.789444, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 646.164307, 62.150177, -182.979691, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 639.264160, 61.783348, -178.412216, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 643.870361, 62.150955, -182.630478, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 675.260681, 64.967140, -220.052032, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 687.195251, 64.825058, -224.047852, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 665.313110, 66.141937, -233.154327, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 663.307800, 66.257874, -233.393707, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 661.676147, 66.363892, -233.875961, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 686.078796, 64.925667, -225.522598, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 678.974243, 65.234863, -226.596603, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 8, 143 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 614.690063, 60.611382, -142.455536, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 722.700012, 64.739128, -245.335526, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 636.959595, 66.916962, -236.450912, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 681.110657, 60.746681, -188.646606, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 672.000000, 61.548008, -185.964554, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 616.998108, 63.642872, -171.947540, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 675.114380, 64.082191, -210.585907, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'galago_5' ) , 8, 143 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 414.897522, 83.197807, -377.884918, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 419.512299, 82.718948, -374.235229, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 392.727142, 86.595573, -394.768890, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 389.901306, 82.775887, -376.538605, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 383.281311, 81.563545, -369.319458, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 414.015625, 82.531319, -374.098297, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 429.893555, 78.015106, -335.276764, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 463.194061, 85.473427, -347.098694, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 450.785156, 83.453850, -349.889191, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 466.127350, 86.678177, -353.041870, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 393.707153, 75.437180, -325.325562, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 392.298309, 76.056091, -329.690002, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 398.891510, 76.846695, -335.685181, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 395.553345, 75.911232, -328.783844, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 395.575531, 76.543106, -332.892670, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 397.423737, 76.499069, -333.035767, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 9, 160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 595.179810, 91.233162, -390.332123, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 527.361145, 91.624405, -384.443237, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 532.407410, 91.183319, -383.236877, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 658.276245, 78.828644, -359.061920, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 660.031128, 77.015770, -353.038025, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 654.794373, 79.749718, -361.729309, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'wilddodo_339' ) , 9, 160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 555.433289, 86.333717, -336.567139, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 588.381226, 98.295441, -479.515533, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 568.430603, 90.784363, -411.758392, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 591.321655, 98.860695, -478.478149, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 554.739441, 86.277000, -343.268829, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 548.470764, 86.171547, -338.712372, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 582.669434, 78.800476, -295.593811, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 579.598877, 77.889015, -289.779083, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 579.854675, 83.492142, -320.351471, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 595.346436, 86.445511, -365.197205, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 592.932678, 87.374374, -368.263550, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 519.849182, 87.575882, -360.376190, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 639.035706, 75.546951, -317.063904, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 639.385742, 75.104202, -313.686127, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 633.730652, 76.028061, -313.677185, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'kobolddustman_752' ) , 9, 160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 516.112183, 96.215790, -461.741760, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 135, ( SELECT id FROM bnpctemplate WHERE name = 'koboldsupplicant_754' ) , 9, 160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 532.929382, 96.018616, -463.291870, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 514.586426, 96.181610, -462.996216, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 30, 821 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 366.943237, 30.411835, 743.247009, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 329.377411, 32.017921, 701.458740, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'apkallu_314' ) , 30, 821 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 398.033875, 24.747860, 712.352539, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 386.001404, 26.363014, 709.484924, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 388.957275, 27.568388, 714.037964, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 392.599121, 25.373924, 699.375183, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 387.534729, 25.019714, 697.746521, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 430.259735, 15.257207, 730.365540, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 429.590668, 15.344368, 731.300964, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 427.713409, 15.523403, 725.975830, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 419.516266, 18.289516, 744.408569, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 350.455597, 30.943064, 725.597290, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 354.670166, 30.757586, 730.504578, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 292.694946, 43.795193, 748.876221, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 293.085693, 42.554966, 742.341736, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 298.369293, 38.664070, 702.729980, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 327.720734, 31.483700, 696.545959, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 424.456329, 14.514975, 658.568115, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 423.756622, 14.282126, 667.194153, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 428.326447, 13.731042, 671.630127, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 432.560669, 13.386756, 670.861267, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 233.617752, 54.696808, 612.001099, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 306.974670, 32.182510, 526.395691, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 372.566742, 34.253368, 251.438644, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 327.905396, 37.845165, 430.416412, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 279.836884, 41.975361, 407.754578, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 409.703003, 27.358929, 482.600616, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 315.276093, 34.354637, 594.634888, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 332.468567, 38.916241, 325.927765, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 471.311798, 33.351456, 552.860352, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 522.920288, 40.045429, 554.425110, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 520.917053, 41.215374, 548.023682, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'largebuffalo_322' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 283.033051, 41.073044, 660.960449, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 448.957642, 33.344639, 543.205872, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 286.909393, 42.375214, 548.253418, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 339.497375, 31.172983, 451.820587, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 315.489868, 37.216896, 437.410004, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 388.181641, 25.194447, 518.975830, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 415.565063, 29.351675, 516.830688, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 401.648560, 35.042168, 219.009995, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 288.462433, 43.414124, 363.499817, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 300.744446, 41.695026, 348.489532, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 426.992218, 18.043739, 590.898865, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 448.078796, 13.079614, 707.740601, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 429.162170, 21.023014, 776.224426, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'dungmidgeswarm_136' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 137.968658, 73.973946, 11.323692, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 145.282791, 74.850304, 12.069229, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -85.219925, 50.398727, 287.803894, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -255.125351, 54.403214, 198.444733, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -7.211691, 40.295891, 347.051331, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -132.716187, 53.684002, 633.767151, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -150.379700, 63.112774, 694.253540, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 73.599998, 79.397003, -12.800000, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -95.356346, 59.693123, 661.746948, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -250.328781, 43.852863, 255.456207, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -14.204324, 41.876545, 342.060211, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -5.784665, 40.673908, 300.115967, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 117.487968, 82.971359, -65.355934, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -137.891876, 48.905342, 329.205627, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'giantpelican_178' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -107.178169, 37.588188, 456.818542, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -73.980019, 44.123444, 546.801575, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -57.923431, 52.839302, 586.828613, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -48.573772, 52.570553, 573.257813, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -40.848034, 47.364422, 528.481140, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -97.269730, 40.339928, 506.336639, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -50.553032, 44.566494, 518.273376, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -2.946935, 50.353054, 509.164948, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'grassraptor_2' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -311.244568, 54.102238, 251.691620, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -228.714813, 45.431358, 225.154282, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -240.671722, 45.316364, 232.024765, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -280.082764, 53.290184, 220.484055, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -245.903992, 51.712524, 201.507202, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -168.108810, 55.592293, 635.323730, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -159.564362, 60.679104, 678.249329, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -165.296036, 62.108791, 681.263672, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -91.238617, 57.518993, 635.457825, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -94.940437, 63.185318, 682.319763, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -104.096672, 64.696007, 693.756714, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -109.266182, 59.319481, 668.447632, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 83.142509, 78.496155, -60.952473, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 113.041054, 88.838974, -91.117599, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 138.588913, 89.144913, -71.945816, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 133.124619, 90.856186, -77.241501, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 77.086449, 76.919075, -8.224215, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 121.506851, 74.747993, -28.643429, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 124.778542, 85.725723, -68.054611, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 116.964340, 71.092415, 18.089144, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'snipper_325' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 467.947144, 12.508534, 598.638062, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 462.797394, 11.419182, 697.048340, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 501.247070, 9.533019, 626.145264, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 488.882263, 9.919420, 639.705383, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 480.661163, 9.392863, 731.849426, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 487.607819, 9.328456, 755.131409, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 502.908112, 9.230279, 687.385437, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 480.097931, 9.396113, 765.060852, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'corkbulb_384' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -164.029877, 46.805298, 187.491531, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -165.063843, 47.080818, 185.822739, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -151.608887, 48.966293, 171.541672, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -156.969116, 47.857903, 179.260574, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -154.382980, 48.156105, 176.447220, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -128.737061, 49.797035, 160.221497, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -107.345375, 41.672718, 201.978867, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -70.365433, 41.217678, 202.295944, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -97.592255, 47.504143, 175.029602, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -91.501320, 46.424129, 177.758530, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -109.284584, 42.491043, 199.681564, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -119.015556, 41.879929, 197.930267, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 438.978607, 35.289642, 196.420792, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 428.113281, 36.674263, 131.480499, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 463.073883, 14.008018, 276.716461, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 458.634308, 14.439973, 277.424316, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 435.567444, 18.043064, 333.603088, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'dungmidgeswarm_136' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -123.248337, 44.253998, 410.162018, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -149.589615, 50.843952, 566.526062, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -230.342636, 44.907818, 560.528137, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -192.930557, 52.676037, 608.856506, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -191.280518, 52.674961, 609.959290, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -307.665955, 44.603313, 470.972107, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -312.293579, 45.535461, 466.613983, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -238.353210, 44.927868, 489.730682, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -74.981499, 34.607243, 225.997330, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -273.966003, 44.694962, 323.393402, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -204.899612, 41.604313, 383.299744, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -203.830872, 41.397915, 381.857819, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -184.958786, 34.886864, 259.779205, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'gigantoad_26' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -194.496552, 34.819939, 264.691956, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -59.089077, 34.551640, 220.379929, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -115.677841, 35.769428, 233.357391, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -125.987366, 35.064560, 241.210358, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -324.696838, 46.185116, 366.444733, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -237.344849, 34.963799, 296.424072, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'Bloodshorebell_312' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 506.013947, 9.999478, 214.822510, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 508.599731, 9.916330, 208.071320, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 498.682526, 9.850472, 227.334579, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 462.902618, 13.924405, 221.026779, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 515.462036, 9.201304, 223.403900, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 532.730652, 10.463955, 194.791229, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 510.373413, 9.308819, 266.889709, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 525.567444, 10.599649, 247.179520, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 475.550659, 12.114610, 256.397064, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'goobbue_320' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -194.911987, 46.723923, 563.661133, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -192.213303, 47.607143, 494.635254, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -214.036758, 46.956684, 442.530334, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -147.544083, 44.722500, 390.774872, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -222.595398, 53.651810, 603.908691, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -141.300110, 48.290043, 545.323181, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -208.096420, 39.636707, 369.721466, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -254.678345, 45.866787, 529.043457, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -269.531158, 43.485477, 333.168549, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -149.182877, 54.812775, 615.944702, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -0.967909, 41.498726, 384.539886, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -50.235374, 43.584667, 392.715363, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'colibri_386' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 416.518768, 35.184807, 160.791183, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 424.391479, 35.989933, 157.879028, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 425.326019, 36.444523, 106.126572, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 446.327423, 36.705833, 116.732712, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 427.454926, 36.585091, 107.858543, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 419.523712, 34.808647, 172.358658, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 522.582092, 30.273300, 188.175461, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 518.734009, 31.572489, 185.489685, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 441.487793, 36.209080, 190.717712, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 473.706055, 31.309484, 205.078903, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 481.525757, 42.944893, 165.079254, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 500.979706, 47.253742, 142.158600, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 511.670349, 50.567940, 134.250397, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 457.311920, 13.140470, 180.342148, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 454.598236, 12.948121, 151.204773, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 454.568451, 13.125692, 146.196671, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'junglecoeurl_117' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -86.833313, 61.860649, 343.494324, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -94.091049, 47.457386, 282.175110, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -124.995316, 50.125973, 320.916443, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -124.321213, 52.808727, 328.877045, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -183.722061, 38.668686, 340.225006, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -170.237411, 40.843819, 318.809723, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -147.357071, 48.516911, 346.697906, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -147.295120, 41.553963, 293.715729, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 332.769287, 38.627895, 164.296387, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 332.291687, 38.677589, 166.051926, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'dungmidgeswarm_136' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -32.165962, 50.564468, 546.506775, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -82.273041, 38.389381, 480.647034, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -86.769554, 45.120163, 561.170105, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'mildewedgoobbue_321' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -231.126053, 44.758728, 547.571289, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'koboldpatrolman_328' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 318.658203, 37.686790, 233.860397, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 329.820190, 36.708775, 214.244400, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 322.804413, 37.674561, 206.378204, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'koboldpitman_329' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 316.045197, 38.194221, 236.654907, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 307.433044, 39.709900, 220.881058, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 325.863403, 37.460819, 205.065903, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = 'koboldmissionary_331' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 329.001373, 38.084869, 238.636719, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 315.073486, 38.121010, 233.173004, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 314.330536, 39.741608, 201.301178, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = '2ndCohorthoplomachus_55' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 475.162140, 76.196999, -65.447197, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 289.896545, 76.216492, 0.896987, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 187.023880, 74.196785, -6.796603, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 372.364105, 76.294594, -17.988377, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = '2ndCohortlaquearius_61' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 447.282318, 76.197006, -18.067156, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 200.357941, 75.721855, -33.325745, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 297.434235, 76.291534, -17.661331, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 433.068420, 76.197006, -103.029526, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = '2ndCohorteques_62' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 481.615387, 77.197006, -107.208000, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 429.465088, 76.203674, -63.431820, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 354.466187, 76.065430, -67.588791, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 389.015991, 76.084824, -102.386803, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 411.856293, 76.196999, 3.619245, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 387.136505, 76.218750, -61.814331, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 432.288361, 76.197006, -104.583038, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 335.849396, 76.161110, -11.489540, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 233.655579, 76.155586, -3.952644, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 242.298004, 74.479248, -23.727840, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 315.220184, 76.196999, -40.267742, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = '2ndCohortsecutor_63' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 456.643921, 76.196999, -122.342476, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 206.856308, 75.163643, -31.110403, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 303.089081, 76.279625, -14.961029, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 414.787048, 76.461037, 1.615679, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = '2ndCohortsignifer_64' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 469.919586, 76.196999, -95.671555, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 401.510406, 79.863983, -80.450699, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 448.056213, 79.863983, -48.739960, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 216.806122, 75.307137, -10.971825, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 281.365662, 76.657791, -20.273458, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 336.851501, 79.863983, 1.148477, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 336.851501, 79.863983, -34.551071, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 355.226044, 76.255104, -30.640118, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 376.375610, 79.863983, -55.369541, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 137, ( SELECT id FROM bnpctemplate WHERE name = '2ndCohortvanguard_201' ) , 50, 2778 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 456.903564, 76.196999, -99.884727, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 460.690460, 76.196999, -77.826706, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 389.243805, 76.306938, -48.270836, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 433.525970, 76.196999, -35.378128, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 355.095093, 76.140678, -93.768280, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 361.046265, 76.388672, -101.417992, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'lightningsprite_135' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 657.004395, 17.368681, 443.307617, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 608.437622, 6.874037, 483.624908, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 598.092957, 5.624268, 485.841370, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'roseling_22' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 743.810669, 28.486433, 443.094849, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 732.801880, 27.192383, 436.734955, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 751.034180, 49.293427, 365.884003, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 678.184875, 12.579115, 451.152496, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 672.374451, 20.020576, 430.694153, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 683.049622, 21.505512, 429.393127, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 745.880432, 49.606308, 364.105072, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 741.192810, 43.412918, 401.072021, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'wildjackal_138' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 719.931824, 40.770763, 366.043945, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 716.588379, 39.744038, 370.804169, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 656.996582, 40.698101, 343.223419, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 688.271423, 42.393299, 334.157410, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 674.529846, 40.743046, 352.379181, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 712.213318, 28.681044, 411.158905, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 703.297668, 26.622908, 414.841644, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 692.607056, 32.192436, 397.476685, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'sewermole_205' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 614.799011, 36.202713, 346.197815, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 589.705078, 31.312195, 346.954620, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 605.654846, 35.576542, 343.014435, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 587.583862, 26.726681, 358.939362, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 590.501038, 32.395397, 344.623199, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 617.865173, 26.123547, 377.839600, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 617.201477, 30.187380, 364.998322, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 618.913208, 30.684265, 364.257690, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'fatdodo_340' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 634.595825, 42.144840, 321.818115, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 622.963623, 41.739059, 320.949005, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 622.732727, 41.628902, 324.355103, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 598.226685, 25.550039, 368.222595, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 594.187866, 29.405296, 354.589539, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 617.181580, 32.516930, 357.289886, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 635.787903, 24.549667, 392.769928, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 635.004395, 20.669270, 404.579987, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 643.447693, 23.634590, 398.243011, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'arborbuzzard_12' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 510.587006, 1.051038, 425.578125, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 490.298950, 7.970772, 405.618469, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 517.436707, 2.339736, 418.028870, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 513.149048, 4.746355, 408.135315, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 463.269379, 12.985873, 359.531738, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 450.845001, 8.795874, 392.230164, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 457.357269, 9.440628, 389.464264, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 450.814880, 9.224236, 418.365997, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'lightningsprite_135' ) , 14, 293 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 510.345581, 16.371487, 356.638947, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 442.852814, 5.813713, 285.207611, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'fatdodo_340' ) , 14, 293 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 522.148376, 23.025820, 338.460297, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 569.967773, 36.832466, 315.448456, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 549.980774, 37.888100, 297.108398, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 557.436218, 31.274172, 328.104767, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 562.652405, 30.174381, 335.077301, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 560.540100, 24.185499, 348.622803, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 504.152618, 18.017019, 320.767883, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 513.995728, 21.905985, 301.430267, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 529.777893, 26.199690, 320.881897, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'Rhotanobuccaneer_348' ) , 14, 293 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 610.951721, 45.291042, 292.944641, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 614.071289, 43.317787, 311.833557, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 601.489197, 43.952782, 299.576599, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 607.670898, 42.955601, 306.352112, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'Rhotanobuccaneer_349' ) , 14, 293 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 606.436035, 45.457214, 289.224731, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 586.842285, 44.523304, 290.586853, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 580.325989, 44.005836, 292.210266, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 600.182373, 43.941280, 299.534485, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'hedgemole_206' ) , 15, 319 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 242.827179, -13.705018, 112.721565, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 243.463867, -13.938252, 115.254585, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 273.194031, -7.971107, 91.445923, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 272.405945, -9.450314, 100.746597, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 260.882416, -9.479098, 86.509323, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 242.135361, -14.091815, 122.016670, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 217.356918, -14.604814, 103.779152, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 222.283783, -14.701883, 105.725792, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 235.371048, -12.298371, 94.927170, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 240.179520, -12.494881, 97.890442, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'pukhatchling_341' ) , 15, 319 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 412.549072, -8.084236, 198.349197, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 343.547150, -20.819576, 221.554092, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 406.804932, -8.912496, 204.511398, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 310.066132, 3.979212, 61.599541, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 303.271942, 3.215408, 69.605576, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 295.582397, -14.396211, 146.398376, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 293.063263, -12.094148, 133.471710, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 306.202240, -20.865870, 164.054749, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 298.402802, -13.123147, 139.423691, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'duskbat_38' ) , 15, 319 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 276.351807, -8.836630, 100.647888, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 262.702301, -16.667194, 156.825119, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 261.961761, -18.991142, 168.344955, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 219.532211, -13.997048, 100.031502, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 326.644409, -4.131938, 104.013733, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'Rothlytpelican_181' ) , 16, 344 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 188.767944, -9.780312, 66.181999, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 138.696579, -15.939011, 51.519615, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 164.895844, -14.250706, 79.683289, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 99.167610, -17.022415, 171.601913, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 178.624680, -13.061819, 115.803726, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 124.335793, -15.385089, 95.921272, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 82.930557, -15.900168, 123.740311, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 125.872498, -18.657330, 163.153763, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'duskbat_38' ) , 16, 344 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 79.149704, -3.653494, -16.345657, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 45.568344, -1.704098, -10.601416, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 47.074207, -2.038181, -12.459220, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 2.670887, -22.138065, 48.434181, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 170.833771, -14.563396, 67.946289, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 381.351990, 16.993977, 25.189274, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 371.939545, 6.450073, 79.478783, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 370.424103, 5.344580, 83.595963, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 150.297958, -12.896513, 98.393936, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 146.025726, -11.842587, 104.012558, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'killermantis_397' ) , 16, 344 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 5.420861, -22.691521, 71.720894, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -12.526397, -22.481514, 47.029919, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -18.796715, -22.510216, 51.259472, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 25.192041, -23.454264, 109.299332, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 6.632263, -24.057436, 106.656876, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 101.775871, -10.198902, 7.465402, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 57.104790, -4.891737, -30.372355, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 66.644646, -2.623933, -69.674629, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 37.014824, -3.445723, -29.440344, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'firefly_306' ) , 19, 420 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 76.688599, -2.336746, -61.448326, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 82.041916, -1.870520, -57.631100, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 87.003410, -1.288228, -58.280697, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 85.633675, -1.707821, -55.243763, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 84.588829, -1.336391, -58.665497, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 79.618637, -2.077911, -59.392395, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'preyingmantis_396' ) , 40, 1732 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -245.229858, -37.934452, 662.779663, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -274.557770, -39.071556, 647.018433, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -278.861542, -39.754841, 652.675781, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -317.313538, -38.622566, 629.100586, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -345.678711, -40.303226, 660.740540, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -363.421783, -39.786888, 695.661865, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -397.508423, -39.543919, 654.552795, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -258.129791, -37.586475, 568.134094, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'plasmoid_46' ) , 40, 1732 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -374.046631, -39.790859, 689.106506, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -256.936737, -39.339005, 661.075745, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -293.600281, -39.120235, 630.294006, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -210.299210, -38.453133, 497.112946, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -259.771942, -39.876102, 444.647125, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -309.042145, -40.904171, 417.387207, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -293.991730, -39.666859, 429.906219, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -283.312195, -40.112728, 431.316406, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -247.016403, -36.999790, 504.336334, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -240.983429, -36.860287, 483.397125, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -228.460037, -38.404160, 513.101929, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -218.547546, -38.779144, 513.332336, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -245.805618, -37.219120, 547.341797, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'lammergeyer_403' ) , 41, 1837 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -472.880676, -37.944370, 761.081055, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -506.829773, -36.366119, 735.218811, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -443.145111, -37.035763, 730.804382, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -451.199036, -37.593052, 730.379883, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -479.084900, -37.694351, 742.679443, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -452.487549, -36.791161, 704.543091, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -477.823334, -36.270195, 713.878357, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'plasmoid_46' ) , 41, 1837 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -334.013062, -41.439625, 710.262573, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -332.316345, -41.565933, 710.397095, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -295.166931, -41.569130, 695.213257, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -242.890076, -41.953548, 744.200012, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -247.231506, -40.195026, 708.656433, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'deadmansmoan_20' ) , 42, 1941 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -344.808533, -41.567513, 720.813110, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -269.155579, -41.640957, 720.676636, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -229.455460, -41.417553, 738.392761, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -230.263412, -41.366783, 737.019897, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -311.722870, -41.953548, 709.911621, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -321.297699, -41.175224, 688.248962, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -287.517731, -41.749794, 699.480042, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'plasmoid_46' ) , 42, 1941 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -439.283081, -34.331913, 671.793457, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -471.863129, -37.052464, 722.286804, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -467.708221, -37.826336, 744.686829, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -439.810822, -35.891434, 714.277954, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -466.337250, -37.133499, 719.715393, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'whelkballista_2835' ) , 44, 4300 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -91.264221, -29.928743, -128.465698, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -103.441002, -31.191349, -116.075401, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -96.910004, -30.450001, -92.839996, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -118.730499, -32.303410, -133.012894, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -84.733398, -29.304998, -110.399101, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'watersprite_59' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -157.365387, -33.956795, -97.778336, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -65.040550, -25.701822, -112.658699, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -46.579906, -23.056885, -95.180130, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -128.125305, -32.371189, -113.921349, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -164.799789, -35.724945, -15.357382, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -141.256836, -31.314682, -2.205954, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -194.653976, -40.073246, -51.765221, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -184.477036, -37.889233, -85.424019, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -199.566254, -39.540298, -91.333366, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -217.380173, -40.401752, -87.147987, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -86.431229, -28.933855, -138.298645, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'shelfscaleSahagin_765' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -38.995445, -21.884605, -159.829468, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -214.891159, -40.533752, -84.432030, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -155.565796, -37.585857, -31.357361, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -159.066406, -35.271103, -85.843086, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -104.014999, -31.240551, -118.950104, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -118.166702, -32.339401, -135.991302, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -75.913696, -28.427610, -146.562897, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -144.285202, -27.447048, 18.632601, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'shelfclawSahagin_766' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -193.199829, -37.656906, -110.313446, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -136.521759, -31.288570, -3.978702, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -157.610504, -37.808823, -31.235229, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -180.685837, -39.160027, -74.769562, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -85.840622, -29.359774, -107.485497, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -75.944153, -28.244450, -144.487701, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -96.452835, -30.365240, -142.395813, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -123.432777, -31.651533, -108.885483, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'shelfspineSahagin_767' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -144.795975, -31.806580, -115.732170, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -213.331635, -40.953548, -71.524643, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -166.765900, -32.099857, 5.874695, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -94.161926, -30.635151, -89.379402, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -106.523300, -31.509951, -130.479904, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -89.256203, -30.084669, -124.693199, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -48.966251, -22.781740, -124.681503, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -119.512009, -26.621153, 27.748713, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'shoalscaleSahagin_765' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -218.385223, -41.260593, -193.437286, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'shoalclawSahagin_766' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -216.631119, -40.216190, -229.671234, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'shoalspineSahagin_767' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -243.732407, -41.367310, -179.705597, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -237.445602, -41.977600, -231.189499, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'shoaltoothSahagin_768' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -184.406281, -40.466656, -216.125931, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -145.685349, -40.028702, -244.119995, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -247.681793, -41.504192, -221.129578, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 138, ( SELECT id FROM bnpctemplate WHERE name = 'trenchtoothSahagin_768' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -67.202354, -25.252371, -87.752235, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -69.823166, -25.679239, -73.956024, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -78.263550, -26.108219, -70.908691, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'wildwolf_303' ) , 20, 445 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -399.963013, -2.593951, 172.149048, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -386.632416, -3.094246, 212.581497, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -469.315460, -8.370351, 229.056213, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -405.483276, -3.353436, 174.017899, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -430.151733, -4.209939, 252.725204, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -421.923340, -4.452601, 253.669266, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -447.462128, -11.811593, 207.381439, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -366.752228, -0.477297, 197.440613, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'bumblebeetle_36' ) , 20, 445 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -355.643921, -0.252257, 169.514084, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -419.159485, -8.618117, 202.864288, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -434.815674, -7.283551, 240.109985, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -466.738770, -3.765230, 246.375946, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -463.817902, -3.408179, 249.032669, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -385.919098, -2.004575, 179.630890, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'bumblebeetle_36' ) , 21, 483 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -414.854950, -3.084553, 163.339508, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -423.037201, -1.573701, 106.529961, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -444.345306, -0.800698, 125.768532, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -437.874329, -0.708115, 120.024284, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'stoneshell_382' ) , 21, 483 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -410.276764, -2.779786, 149.452469, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -371.331268, -2.356661, 157.195450, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -379.863556, -2.982907, 149.851410, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -387.012054, -2.883863, 156.213531, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -390.136658, -2.948145, 143.214462, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -398.332336, -2.665001, 145.417374, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -408.627655, -2.847382, 143.295654, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -425.506104, -2.247178, 139.498947, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'forestyarzon_159' ) , 22, 520 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -511.271484, -2.877078, -6.817360, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -523.743225, -3.022781, -11.141374, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -409.921387, -3.022781, 26.057182, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -433.403625, -2.779149, 16.152559, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -411.006500, -2.664725, 36.579662, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -431.704773, -2.596823, 23.318489, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -483.693481, -2.996806, 1.324723, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'bumblebeetle_36' ) , 22, 520 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -431.036346, -1.861258, 65.004272, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -477.746277, -1.513515, 21.153439, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'coeurlpup_28' ) , 23, 558 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -648.262146, -2.589449, 4.658347, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -589.121765, -0.959394, -1.788302, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -589.512634, -0.116075, 8.695585, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -632.006775, -2.708929, -3.060220, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -559.642578, -1.484024, -9.069724, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -588.414185, -2.159060, -39.774429, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'bumblebeetle_36' ) , 23, 558 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -557.989746, -1.843499, -1.074752, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -585.969482, -1.561126, -15.984694, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -585.874512, -1.629109, -17.883661, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'koboldfootman_328' ) , 24, 595 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -440.920837, 30.468151, 63.316032, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -461.728577, 36.668659, 34.901878, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -401.017914, 43.853096, -6.055201, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -381.218323, 38.771244, 24.947515, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -404.069885, 35.812199, 36.532841, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -489.859711, -1.413108, 38.082218, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -485.398102, -1.233985, 19.980440, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'koboldpickman_329' ) , 24, 595 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -478.043793, 29.265388, 51.485188, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -477.024384, 27.540518, 57.723557, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -428.984100, 37.887581, 19.708645, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -491.041992, -2.412468, 34.461601, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -481.084778, -2.234457, 32.011478, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -402.817291, 36.137718, 33.293110, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -391.328400, 44.270889, -5.423687, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'bumblebeetle_36' ) , 24, 595 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -473.813660, 31.595440, 44.083755, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -432.370178, 35.165001, 38.073444, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -385.892670, 40.187538, 12.788408, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'mudpugil_383' ) , 30, 821 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 568.278198, -1.853197, 206.880676, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 626.420044, -2.942010, 131.304550, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 637.734558, -3.022781, 169.160385, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 644.119446, -3.022781, 168.883255, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 634.512695, -3.022781, 183.388657, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 573.758423, -3.002139, 135.945755, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 594.864746, -2.798157, 141.690338, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 584.305481, -2.260647, 164.805756, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 572.286621, -2.934438, 126.321159, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'watersprite_59' ) , 30, 821 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 533.594360, -3.022781, 154.079971, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 661.617249, -2.590199, 159.400162, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 616.926575, -2.773323, 180.421677, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 539.675354, -2.441824, 151.688293, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 605.704773, -2.681829, 128.622864, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'MamoolJabreeder_343' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 667.161011, -1.063845, 140.894440, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 590.514221, -2.477987, 214.035919, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'MamoolJaexecutioner_344' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 698.512695, 0.200548, 145.477539, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 566.779480, -2.052615, 188.277481, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'MamoolJainfiltrator_345' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 590.680054, -2.734337, 205.680695, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 688.749390, 0.234145, 121.745003, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'MamoolJasophist_346' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 609.782410, -2.947150, 195.897034, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 700.731567, 0.033245, 141.122345, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'uragnite_389' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 371.012970, -2.845351, 123.386749, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 383.615143, -2.302974, 22.247391, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 373.374817, -2.236211, 20.208181, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 361.051941, -2.232438, 37.766304, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 390.914307, -2.902595, 140.266129, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 442.727264, -2.967286, 196.861069, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 436.260529, -2.870690, 198.635162, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 418.548279, -2.886929, 156.926483, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 390.820557, -2.320590, 144.750793, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 403.272247, -2.996202, 181.563477, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 446.133972, -3.022781, 175.314377, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'watersprite_59' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 363.400269, -2.879202, 53.059139, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 356.148743, -2.997633, 145.824448, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 394.711304, -3.022781, 172.193954, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'MamoolJabreeder_343' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 298.254761, -2.359517, 92.006157, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 333.045013, -0.560520, 209.060959, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 324.101563, -1.461589, 1.823075, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'MamoolJaexecutioner_344' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 323.026428, -2.710696, 79.434731, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 373.807068, 2.821242, -11.275184, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 345.660431, -0.937182, 206.924744, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'MamoolJainfiltrator_345' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 359.141479, -0.283206, 1.610093, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 363.230652, -1.234547, 208.342453, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 332.796600, -2.429541, 104.093323, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'MamoolJasophist_346' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 353.956940, -2.153399, 191.588837, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 300.631042, -2.337128, 86.584427, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 361.682251, -0.095059, 1.141446, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'watersprite_59' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 271.526093, -3.022781, 223.919037, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 272.548584, -3.022781, 225.818253, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 245.600006, -3.022781, 249.738434, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'salamander_139' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 324.957062, -2.978830, 29.275167, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 298.477295, -2.993704, 39.887897, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 272.687073, -3.016507, 77.950378, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 308.746063, -3.022781, 147.616531, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 302.349792, -3.022781, 158.338409, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 327.037476, -2.484233, 148.065796, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 291.138184, -2.871111, 29.703274, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'koboldpatrolman_328' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 368.904877, 23.456797, -127.060875, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 290.014465, 22.326096, -95.667023, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 345.406555, 27.263988, -150.143967, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'koboldpitman_329' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 365.261505, 25.701416, -141.892105, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 262.362488, 26.421909, -92.842506, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 333.686920, 13.762062, -71.895325, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'koboldsidesman_330' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 259.484711, 26.393141, -94.860497, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 259.445740, 33.897736, -144.446793, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 378.407684, 24.602100, -139.026627, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 139, ( SELECT id FROM bnpctemplate WHERE name = 'watersprite_59' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 245.325684, -2.379590, 44.140923, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 250.873306, -2.960423, 82.499550, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 246.044342, -3.018618, 80.287590, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 308.557037, -2.208508, 19.669523, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 304.052094, -3.022781, 128.465851, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 325.435577, -2.621470, 85.461044, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'sunmidgeswarm_136' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 77.362946, 57.878689, -29.786932, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 79.564255, 57.017956, -33.925926, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 101.683281, 54.868725, -50.581268, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 90.365768, 58.052677, 2.143167, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 236.987350, 63.529976, -123.588524, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 187.869171, 52.848286, -56.454174, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 145.732819, 54.902134, -53.362572, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 182.870316, 51.839558, -161.362061, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 163.352936, 51.194023, -99.910034, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 175.849411, 53.108635, -60.214973, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 26.532848, 61.846325, 21.052542, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 7.031486, 60.784248, 36.980217, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 140.815140, 53.103539, -132.624802, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'dustymongrel_138' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 90.813576, 58.569042, 35.187431, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 100.103859, 54.412777, 21.324905, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 82.128319, 58.501022, 27.853186, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 60.815205, 60.136868, -2.888081, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 77.091949, 57.713444, 40.039589, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 31.128345, 60.255199, 28.328548, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 10.083114, 62.982018, 21.516644, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 28.087555, 59.949104, 32.507141, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 5.252269, 60.076294, 44.025448, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'desertpeiste_172' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 236.019913, 64.188225, -110.453613, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 244.339157, 63.663452, -128.340515, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 153.305084, 56.245262, -38.932583, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 190.296509, 50.607651, -25.799883, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 183.666153, 52.288956, -84.248810, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 200.841919, 53.481869, -109.915512, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 189.297241, 52.181160, -82.929817, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 153.186386, 52.949856, -75.747604, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 123.766594, 56.739906, -56.648029, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 133.247437, 56.599625, -51.180813, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 127.713814, 56.766445, -36.407833, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'sunmidgeswarm_136' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 269.399048, 63.687740, -220.987549, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 298.606079, 62.708714, -188.867828, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'bomb_17' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 324.504272, 63.964970, -189.740524, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 283.904205, 63.188160, -173.473679, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 292.196350, 62.489777, -212.080597, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 316.381378, 63.268383, -191.093918, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 306.015381, 63.016182, -256.289917, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 312.877899, 63.216038, -254.674255, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 305.374512, 63.960533, -252.048309, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'coppercoblyn_187' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 264.906738, 63.990822, -220.645203, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 321.031097, 62.853329, -252.227066, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 293.950806, 62.697662, -233.945404, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 287.526642, 62.654705, -225.621490, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 290.755707, 62.794189, -233.036789, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 322.412201, 63.233589, -202.325775, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 301.029022, 62.663834, -195.368164, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 300.776428, 62.714092, -189.469070, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'sunmidgeswarm_136' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -188.185226, 15.683825, -281.877960, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -140.563171, 16.704737, -288.828583, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -171.506668, 15.097980, -251.375732, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -124.068359, 15.812678, -262.994507, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'gianttortoise_1445' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 354.832550, 74.976295, 189.649277, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 264.395569, 54.607376, 127.792107, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'orobon_302' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -135.822968, 15.823594, -286.871033, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -139.273834, 15.552418, -275.547363, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -181.105621, 15.753315, -273.036774, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -170.639679, 15.229375, -255.477844, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -186.286331, 15.263555, -239.428009, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -182.937408, 14.986830, -243.591232, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -186.983032, 15.647796, -243.629059, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -147.246628, 16.461535, -272.849823, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -133.901871, 16.609177, -269.763580, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -106.131767, 15.712878, -248.392181, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -99.554253, 15.124751, -261.593079, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'arborbuzzard_12' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -277.858673, 14.986830, -267.300232, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -284.222351, 15.030583, -268.570007, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -260.868256, 15.352041, -286.834869, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -229.199951, 15.221350, -262.706879, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -201.139709, 15.572870, -246.400986, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -223.101227, 15.157563, -270.235565, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -267.225403, 15.511198, -236.463699, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -280.757660, 14.986830, -258.315033, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'sunmidgeswarm_136' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -240.362869, 15.162018, -245.425674, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -239.897675, 15.350551, -289.367920, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -287.542084, 15.610629, -218.101578, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -283.281921, 15.068916, -252.716583, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'thickshell_382' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -285.219086, 15.124865, -292.237610, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -291.344818, 15.370173, -295.864227, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -278.758362, 14.986830, -288.515930, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -281.602570, 16.823776, -204.922607, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -253.168503, 15.074906, -267.783295, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -255.155975, 14.989344, -265.494690, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -255.426239, 15.732086, -245.722214, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -298.239685, 16.270042, -216.676147, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -295.649902, 15.679144, -230.560593, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'sunmidgeswarm_136' ) , 14, 293 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -218.283325, 15.196787, -365.370789, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -289.466339, 15.412482, -321.257721, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -197.738632, 14.986830, -319.806091, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -238.824615, 14.986830, -345.373749, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'scaphite_389' ) , 14, 293 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -219.501633, 15.334006, -381.460052, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -224.881012, 15.126434, -382.547882, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -223.883209, 14.986830, -351.834930, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -201.765823, 15.285220, -339.660431, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -213.798248, 14.986830, -344.871765, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -212.094467, 14.986829, -328.084503, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -266.814545, 14.986830, -324.871246, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -212.468948, 15.054999, -305.227814, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -258.006805, 14.986829, -327.108948, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'gianttortoise_1445' ) , 17, 369 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 134.477722, 53.933983, 237.885986, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 18.961184, 55.155243, 256.131409, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -61.765362, 57.801758, 356.161682, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'starmarmot_351' ) , 1, 44 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 412.389008, 89.042519, 100.449532, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 407.665375, 88.481476, 100.987282, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 407.750183, 88.797562, 97.059380, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 403.179962, 87.094978, 112.551384, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 394.873840, 87.601807, 186.132874, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 398.755096, 87.447830, 179.861176, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 394.203400, 87.267311, 183.293076, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 410.134247, 88.858070, 189.627411, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 412.055054, 86.920731, 131.728973, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 409.407074, 88.280922, 158.475494, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 412.552643, 89.133110, 159.030655, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 394.322357, 85.118454, 151.810898, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 1, 44 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 425.917572, 89.533798, 118.689026, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 423.424133, 89.115753, 119.204964, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 403.600983, 87.036957, 113.900253, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 382.024170, 85.519951, 136.799225, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 405.258240, 87.986847, 180.366989, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 409.082184, 88.061966, 176.248825, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 393.822784, 87.715111, 188.975372, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 412.697205, 89.143417, 163.378571, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'strikingdummy_901' ) , 1, 44 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 244.299103, 52.038120, 166.290298, 0, 4296868 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 244.254303, 52.038120, 162.449799, 0, 4296867 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 237.477707, 52.017941, 108.608101, 0, 4296858 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 246.709503, 52.038120, 124.038902, 0, 4296863 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 242.172607, 52.038120, 112.691498, 0, 4296864 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'leadcoblyn_187' ) , 21, 483 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -382.884735, 24.117081, -556.268555, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -379.730377, 24.586840, -581.369202, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -385.009186, 23.111408, -596.734863, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -380.622467, 23.480238, -599.083679, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -376.264099, 24.436598, -530.908264, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -372.943054, 24.534470, -533.483276, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -383.591553, 23.833412, -542.733643, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -390.524689, 24.414841, -554.813538, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'yarzonscavenger_42' ) , 22, 520 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -368.706055, 17.494400, -624.338745, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -343.946106, 15.186830, -652.463684, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -368.560913, 15.410963, -677.185303, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -378.020050, 15.127582, -683.060303, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -339.686646, 15.120122, -698.585449, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -331.969757, 15.186830, -703.837524, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -357.870453, 15.108557, -723.183105, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -338.006348, 15.103650, -708.907593, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'laughingtoad_26' ) , 23, 558 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -281.749268, 15.358088, -718.142761, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -293.077820, 15.186831, -707.281372, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -290.077148, 15.224851, -771.809631, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -332.843109, 15.413390, -783.588623, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -335.340271, 15.168776, -767.416687, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -348.116272, 15.454859, -773.293579, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -304.581451, 14.992727, -737.065857, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -327.706726, 13.386830, -738.382446, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'Moondripstonehauler_109' ) , 24, 1190 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -249.821518, 15.008770, -735.877625, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -159.398468, 15.217943, -732.547668, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'Moondrippiledriver_110' ) , 24, 595 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -208.275238, 15.392570, -738.933289, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -176.346649, 15.186831, -725.061890, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -161.735229, 15.388600, -740.634521, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'Moondripblastmaster_111' ) , 24, 595 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -190.242920, 15.186831, -750.385376, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -154.257278, 15.587485, -740.245056, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'starmarmot_351' ) , 2, 51 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 349.688599, 76.876884, 211.531418, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 374.105316, 77.792480, 198.858215, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 369.485535, 82.036636, 128.080322, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 377.084747, 84.616287, 108.789406, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 379.580261, 84.750168, 112.930344, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 376.887085, 85.170654, 99.615250, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 370.760559, 84.367920, 99.599068, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 350.151184, 79.575348, 121.144356, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 353.504211, 80.159409, 118.561562, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 348.667603, 80.101921, 116.652542, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 345.280487, 76.697456, 208.630035, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 345.793640, 77.546120, 212.715851, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 353.602875, 76.288712, 146.871292, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 358.695007, 75.441162, 147.973145, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 2, 51 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 363.328247, 77.386948, 214.265350, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 376.374512, 78.043961, 196.363434, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 345.138885, 77.288124, 210.792526, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 364.422180, 76.422302, 192.851349, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 352.083466, 82.273712, 95.127480, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 381.373505, 81.716942, 157.878601, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 377.561768, 79.798492, 162.358063, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 363.085602, 77.790436, 142.908432, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 365.182892, 82.170029, 116.361198, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 369.851776, 83.218834, 113.282593, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'cactuar_175' ) , 3, 59 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 307.395325, 65.555565, 132.698669, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 319.659668, 67.441933, 206.012695, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 311.087280, 65.892410, 136.456726, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 314.873840, 66.121727, 133.923264, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 297.873413, 62.828804, 143.082336, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 329.873566, 69.168564, 151.207550, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 325.945953, 67.444283, 168.557068, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 323.380920, 66.959396, 173.455048, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 311.904449, 66.432648, 182.718567, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 329.720184, 69.911812, 193.588425, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 330.207520, 69.655319, 187.129074, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 343.823364, 73.823715, 175.368500, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 342.431244, 73.265747, 178.598236, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 339.533203, 72.060814, 185.989456, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 3, 59 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 344.748871, 73.451508, 184.654541, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 311.108276, 65.764122, 149.063217, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 314.683624, 65.999367, 128.928513, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 324.361206, 66.642479, 150.195862, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 323.000549, 66.616356, 127.706322, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 325.014465, 67.793121, 177.618622, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 306.996521, 66.534859, 186.106415, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = '4thCohorthoplomachus_55' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -441.832184, 50.871376, -705.717712, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -531.079834, 52.075893, -773.161987, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -456.002014, 51.014610, -752.579285, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -619.753174, 59.589306, -798.950195, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = '4thCohortlaquearius_61' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -404.575348, 49.000999, -744.323181, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -624.231934, 61.740665, -744.003052, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -574.043945, 53.386829, -736.145386, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -501.557220, 51.161560, -741.717041, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = '4thCohorteques_62' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -539.219543, 55.256348, -740.893066, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -518.314270, 50.452862, -714.412109, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -514.378784, 51.697456, -759.622498, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -599.843384, 57.253597, -784.518921, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -421.159485, 44.462021, -712.226013, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -656.681274, 62.116219, -804.503601, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -642.406189, 61.025417, -797.639160, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = '4thCohortsecutor_63' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -483.828033, 51.738083, -757.700500, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -517.815491, 50.450741, -713.017395, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -574.717346, 54.950596, -787.677612, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -595.289551, 63.665363, -751.590881, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = '4thCohortsignifer_64' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -494.698364, 50.399204, -708.061279, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -570.622925, 53.691685, -775.880798, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -605.065002, 63.094318, -754.225647, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -454.328613, 50.848831, -752.713074, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = '4thCohortvanguard_201' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -634.960266, 59.039497, -777.019409, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -555.351624, 53.445580, -752.459229, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -466.984497, 50.670948, -723.799744, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -410.956299, 50.414986, -763.727966, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -626.511536, 60.120979, -814.057739, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -546.916931, 56.377281, -805.473389, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'cactuar_175' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 257.057739, 56.351803, 219.084427, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 296.339844, 60.627789, 171.870178, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 287.277588, 57.897289, 173.276642, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 293.039551, 59.582722, 170.812241, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 256.675110, 55.534565, 175.494080, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 259.550354, 55.746025, 173.968994, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 257.165710, 56.202602, 225.145172, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 243.368591, 55.701454, 232.144531, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 258.058075, 56.127468, 223.317703, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 264.601807, 55.888966, 109.514389, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 261.491730, 55.489803, 109.289391, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 268.280975, 56.329464, 109.621246, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 276.440887, 55.728809, 133.362823, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 276.916809, 55.323189, 137.590149, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 266.039551, 56.767578, 174.639359, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 244.892944, 55.782864, 232.593109, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 245.091385, 57.145382, 241.737213, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 250.272110, 55.896389, 228.601379, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 270.748108, 54.885086, 133.576477, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 264.633972, 55.684399, 112.369080, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'earthsprite_131' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -25.143955, 44.177044, 174.537827, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 74.982864, 56.917221, 318.417511, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 48.785152, 48.830349, 178.263474, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 43.864765, 52.657127, 245.705170, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 160.158569, 56.503048, 238.946960, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 104.453560, 56.806915, 263.695343, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'yarzonfeeder_42' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 103.854935, 60.276432, 304.299225, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 129.476929, 61.032520, 301.493958, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 84.344055, 56.118526, 274.188599, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 79.894310, 55.818336, 287.392090, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 115.426117, 59.560295, 281.447815, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 94.864365, 55.691021, 262.080414, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 129.377365, 57.807888, 275.822601, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 113.682816, 60.083164, 289.550812, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 109.586159, 60.003593, 286.378387, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'hammerbeak_431' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 30.045639, 46.864952, 158.096100, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -0.584439, 45.777466, 148.414703, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 6.012629, 48.605392, 178.471466, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 26.557934, 51.428593, 204.494553, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 27.833475, 51.136341, 196.485123, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 97.052513, 49.932262, 191.209305, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 71.799057, 51.148090, 212.751785, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 110.434380, 47.942570, 174.132797, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 114.086227, 49.378880, 181.922089, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 128.064072, 50.799091, 195.341721, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 68.283997, 51.449207, 216.795975, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 188.946396, 54.322884, 225.481308, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 61.344921, 51.150177, 213.160645, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 175.232910, 53.982983, 215.127243, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 171.405243, 54.329166, 224.158554, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'nestingbuzzard_12' ) , 6, 108 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -37.425274, 50.129452, 219.870728, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -30.504934, 49.748901, 212.749344, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -38.836624, 47.423523, 193.916061, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -16.522020, 51.690231, 219.624725, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 6.142912, 51.647934, 211.832947, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -5.788450, 51.708107, 203.934937, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -7.090078, 51.566109, 203.576797, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -9.472204, 52.106628, 210.925369, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'earthsprite_131' ) , 6, 108 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -20.387239, 53.548248, 251.823593, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 32.742771, 58.293602, 360.496765, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 2.595654, 54.321415, 250.872284, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 36.704807, 55.781029, 330.115234, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 31.406578, 55.421589, 323.505127, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'rustycoblyn_187' ) , 6, 108 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -0.307931, 54.218685, 236.600082, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 27.204052, 54.558956, 301.804871, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 9.482357, 55.559170, 316.581421, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 50.522076, 58.166504, 353.728424, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 25.147402, 54.634384, 307.018951, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 19.940275, 57.724049, 344.877441, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 21.956335, 58.376316, 358.752289, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 13.563601, 54.727650, 238.391327, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 27.660229, 58.292553, 361.164734, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -20.105354, 56.656372, 308.184662, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -15.232339, 55.985054, 318.689697, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -10.775599, 56.098049, 317.646118, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -23.104965, 53.403831, 262.835938, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -19.358086, 53.597591, 261.722198, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -5.817325, 53.721111, 262.083649, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'earthsprite_131' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 223.503174, 52.125618, -0.082753, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 225.139221, 51.744270, 6.439182, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 152.991440, 50.431175, 73.257027, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'hammerbeak_431' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 173.785248, 50.891171, 70.453064, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 175.629578, 50.834221, 67.065903, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 249.573502, 51.738613, 78.248955, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 237.553696, 51.656364, 71.979782, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 254.248566, 51.388229, 67.681290, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 256.975128, 52.017986, 19.820318, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 206.137756, 50.941696, 25.290976, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'earthsprite_131' ) , 8, 143 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -64.147484, 66.266045, 399.097626, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -15.547949, 67.615616, 365.142578, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -118.979401, 48.299389, 383.079285, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -148.141602, 57.342918, 288.597565, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -113.978149, 53.739441, 288.654663, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -137.854919, 46.374153, 336.578888, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -187.124557, 37.738495, 341.879089, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -170.677048, 41.915394, 401.111755, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'rustycoblyn_187' ) , 8, 143 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -2.262378, 68.909454, 370.683472, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -2.455279, 68.998543, 379.007629, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -48.751709, 67.264221, 390.642120, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -53.810997, 66.000244, 389.905457, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -125.840111, 51.202984, 314.281647, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -131.761612, 51.850426, 310.777985, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -128.178223, 52.095619, 308.523743, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -111.628517, 52.917213, 264.034607, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -100.081810, 52.962093, 241.474503, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -118.389206, 53.920219, 272.884888, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -151.427536, 41.793110, 349.237946, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -159.645874, 40.800976, 345.000885, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -179.216888, 39.329014, 393.125946, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -155.653824, 40.785412, 353.835907, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -77.540878, 56.312889, 362.028198, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -112.038986, 48.547070, 358.278046, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -42.031586, 64.551018, 365.496582, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -83.808243, 55.492188, 369.072083, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'hammerbeak_431' ) , 8, 143 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -136.458023, 33.110733, -441.960785, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'goblinmugger_769' ) , 8, 143 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -152.708801, 50.439430, 225.901962, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -124.341133, 49.499725, 212.134918, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -121.259323, 49.150318, 209.047531, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -140.879105, 50.598660, 225.798996, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -141.250000, 50.637089, 227.672501, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -134.239197, 50.788750, 226.800369, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -132.305801, 49.998920, 219.510193, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -133.580704, 50.071732, 219.991806, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'earthsprite_131' ) , 9, 160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 56.404484, 22.522034, 62.307392, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 126.441742, 16.020668, 128.138702, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 97.676804, 15.760381, 169.980637, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 100.144615, 16.512531, 167.752258, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 68.531380, 17.441198, 133.901688, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 103.122185, 19.596285, 89.063515, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 19.285603, 19.636349, 99.837990, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 140, ( SELECT id FROM bnpctemplate WHERE name = 'sandtoad_313' ) , 9, 160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 82.359482, 22.282566, 61.104462, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 130.118103, 24.934511, 44.197083, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 161.135132, 17.986830, 2.245242, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 125.475182, 17.424469, 88.015686, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 130.059723, 16.651197, 97.222717, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 124.482552, 17.213715, 93.908943, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 86.381737, 22.347158, 58.001335, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 124.572502, 18.476463, 16.029045, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 164.204239, 17.986830, -6.797384, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 178.295074, 17.986830, 7.939592, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -28.750217, 22.451992, 107.558098, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -23.982216, 21.138380, 112.136604, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 73.896690, 21.071253, 95.151382, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 105.595184, 16.570642, 127.513367, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'eft_160' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 131.317963, -1.165905, -188.232162, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 81.466858, -0.136303, -139.674576, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 68.721359, -1.687370, -108.115471, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 65.040367, -1.669906, -96.106468, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 69.046310, -3.266732, -31.652222, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 67.571884, -2.392881, -49.928017, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 78.701424, -3.256397, -30.419973, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 185.535339, -1.687370, -275.474915, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 197.613388, -1.687370, -286.000183, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 148.452499, -1.247753, -213.603455, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 165.267853, -1.687370, -244.374710, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 140.709717, -0.809511, -213.737610, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'antlingsoldier_197' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 258.785400, 11.886861, -202.225662, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 267.625671, 6.714606, -192.929611, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 239.556320, 7.075986, -189.294647, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 179.167770, 5.486621, -184.068756, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 192.025330, 3.521654, -163.479538, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 196.647537, 2.287169, -154.598160, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 145.780701, 3.454069, -130.197876, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 151.103470, 2.876902, -129.375961, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 167.662186, 0.630193, -120.090347, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 109.980850, 4.096877, -129.117706, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 119.365845, 2.476953, -138.221100, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 155.802734, 2.178777, -172.214218, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'sunbat_38' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 212.381546, -1.566008, -307.883087, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 211.972946, -1.669141, -305.839111, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 231.227692, 1.598073, -165.329132, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 264.628601, 9.609035, -198.794052, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 200.627090, 7.348972, -181.738541, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 161.646561, 1.863142, -125.187531, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 146.396301, 0.249111, -190.529114, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 174.164841, 6.166096, -208.881775, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 112.429680, 3.673528, -131.654022, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 182.745605, -1.687370, -268.504700, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 162.711365, -1.687370, -237.827469, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 151.873871, 0.352801, -153.226593, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 144.400620, 1.287721, -165.066238, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 174.287170, 2.965053, -167.919968, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 121.084709, 6.454357, -124.551498, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'cochinealcactuar_175' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 138.954102, 19.872227, -109.696388, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 143.980453, 19.586889, -107.833214, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 143.671753, 16.355024, -46.775188, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 138.705200, 17.379549, -47.095615, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 113.623947, 21.269522, -99.859749, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 110.229988, 21.657568, -97.443985, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 111.855919, 21.364822, -100.793694, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 150.951050, 18.070759, -61.208858, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 176.942581, 5.754190, -40.436474, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 176.047363, 7.193097, -45.752647, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 201.895233, 0.564799, -17.761211, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 186.548996, 6.470027, -11.748389, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 182.706696, 4.848518, -21.671053, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 184.464676, 6.504350, -13.421595, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 204.457184, 0.582203, -16.487110, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 149.948654, 19.558901, -72.971085, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 158.685776, 18.736345, -75.948265, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 149.148560, 20.397184, -81.653526, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 141.057114, 21.562983, -90.913788, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'antlingsoldier_197' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 289.185242, -12.185346, -3.634977, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 278.125732, -7.270465, 3.735350, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 228.238434, -3.190615, -52.263821, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 67.392738, 31.931646, -72.179665, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 47.721523, 28.381290, -86.174660, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 60.895901, 30.779264, -74.205223, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 62.832901, 28.992264, -110.199524, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 280.103638, -13.975206, -33.716408, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 207.365051, -1.735680, -88.080757, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 88.966805, 30.463255, -88.708885, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 235.800323, -0.795686, -109.902290, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 228.493256, -0.977907, -108.417580, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 169.772827, 2.926476, -82.803047, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 206.137039, -1.308364, -101.623215, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'Quiveronguard_352' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 148.790604, 28.751122, -15.152280, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 119.571014, 29.149429, -32.464714, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 139.007233, 29.540972, -19.660963, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 123.998703, 28.662880, -17.350370, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'Quiveronattendant_353' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 161.791397, 28.213881, -14.786040, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 110.435417, 30.386259, -38.183147, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 124.128754, 28.961983, -21.724655, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 104.299660, 29.776699, -49.910431, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 149.401093, 28.610600, -15.610050, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'sunbat_38' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 275.785339, -7.258123, -3.556571, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 219.419418, -2.798912, -49.868896, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 57.971443, 30.957779, -69.957573, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 86.125404, 29.961285, -98.775574, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 84.592178, 31.343275, -85.451653, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 123.537621, 20.357344, -105.267334, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 133.419800, 21.001585, -87.090698, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 134.256180, 19.494431, -56.185108, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 195.657211, -0.375196, -32.008640, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 117.114876, 23.954308, -61.684052, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 166.879379, 3.594278, -88.321251, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 166.600006, 12.312630, -55.399990, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 171.845291, 7.478282, -25.197289, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 217.097427, -1.598797, -97.632507, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'gianttortoise_1445' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 158.195206, 10.326872, 441.296875, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 190.036789, 11.567005, 612.941223, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -102.328239, 6.438030, 238.985977, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 14.439594, 5.123513, 278.447388, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 64.927704, 12.154896, 452.000092, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 50.181721, 13.213046, 440.801208, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'antlingsentry_197' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -212.737686, 0.805563, -377.694946, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -234.040207, -0.107224, -383.030914, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -238.105820, 3.429567, -396.707092, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -251.794006, -1.267901, -386.990295, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -249.114563, -3.528678, -368.096710, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -245.463409, -3.309677, -359.755066, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -255.719879, -1.648945, -344.178101, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -255.537643, 2.030085, -313.443024, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -262.307526, 3.082225, -314.470093, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -272.222107, 0.687642, -325.399811, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'orobon_302' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 287.786469, -19.279236, -84.602875, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 293.422546, -19.287373, -93.380470, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 294.367279, -19.287373, -85.127342, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 330.934540, -18.985165, -74.879967, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 312.820343, -19.226448, -56.883072, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 303.581451, -19.088863, -63.526638, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 252.791321, -18.311853, -98.901375, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 254.129929, -18.688391, -120.960609, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 262.494843, -18.655554, -100.651924, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 292.091064, -18.947048, -128.349960, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'sunbat_38' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 240.577698, -18.050556, -89.830620, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 288.822784, -18.948578, -107.921959, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 297.953400, -19.287371, -74.660225, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 281.640991, -19.209934, -124.902550, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'antlingsoldier_197' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 388.529358, -17.753366, -100.019745, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 441.174438, -15.417088, -97.080559, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 436.217285, -14.489692, -118.389198, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 434.497955, -14.433805, -107.303909, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 414.755371, -13.449295, -60.659534, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 367.429291, -16.153448, -60.517349, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 357.284912, -14.688212, -50.520935, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 327.520721, -13.862247, -32.601498, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 323.868134, -13.727184, -31.085527, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 353.531525, -18.566017, 9.467869, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 394.391937, -17.462542, -137.940536, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 385.491669, -17.767740, -90.793671, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 396.968903, -14.220932, -32.701488, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'sunbat_38' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 383.551575, -17.660118, -130.498917, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 449.097107, -12.024187, -123.699890, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 355.190918, -16.396107, -61.420734, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 381.827545, -18.796280, -10.548698, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 327.172211, -14.007333, -39.606686, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 382.702301, -20.909592, 0.586188, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'toxictoad_26' ) , 14, 293 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 332.302826, -18.577339, -136.994446, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 347.631073, -18.172041, -134.239075, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 320.126343, -18.754692, -179.541382, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 262.970001, -18.522854, -83.082108, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 274.504364, -19.030172, -117.712013, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 291.423248, -18.842793, -132.835846, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 314.732086, -19.287371, -79.344177, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 356.597290, -19.056744, -89.002281, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'orobon_302' ) , 14, 293 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 368.339996, -19.045889, -106.640076, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 347.621643, -18.786987, -105.400925, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 359.183502, -19.287371, -120.962143, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 358.936768, -19.287371, -140.377869, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 371.497803, -19.102837, -143.337112, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 351.908539, -19.018908, -145.594055, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 305.920776, -18.236301, -138.750046, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 312.901886, -19.025372, -168.566666, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 280.709351, -19.006962, -149.436874, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 310.511810, -18.931107, -171.176727, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'sunbat_38' ) , 14, 293 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 343.037994, -18.327412, -87.197243, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 359.126526, -19.287371, -108.864944, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 260.386139, -17.456427, -166.527679, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 264.615906, -17.618288, -168.175003, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 318.238464, -19.127840, -152.614975, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'gianttortoise_1445' ) , 17, 369 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -135.470047, 28.670164, -419.590881, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -99.224838, 2.699236, -118.225876, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -110.921562, 0.412751, -236.404755, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -7.979348, -3.027161, -74.448112, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'starmarmot_351' ) , 1, 44 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -92.132088, -0.830669, 201.631592, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -94.147560, -3.294404, 183.307251, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -101.588104, -2.192851, 179.789841, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -27.576221, 7.620778, 306.484680, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -37.388714, 10.764454, 314.159058, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -26.421753, 9.580258, 320.756927, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -106.630257, 1.344174, 208.056931, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -123.679886, 2.505999, 207.012268, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -44.738930, -4.681663, 201.177994, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -53.463608, -0.063744, 223.178589, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -134.193832, 10.811487, 270.015961, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -141.092300, 10.893873, 265.857605, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -125.918709, 13.032800, 284.798859, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -118.610207, 8.807741, 268.232330, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -127.522835, 5.933615, 245.138672, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -89.184700, 8.765226, 273.554779, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -57.701550, 7.920088, 280.999146, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -33.272747, 3.804565, 277.206787, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -77.643669, 10.467034, 285.109680, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -81.292953, 9.661130, 275.120758, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -55.861851, 3.483287, 249.451416, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -14.311630, -0.678766, 237.591400, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -7.114380, -0.351166, 244.103668, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 12.492167, 1.312411, 258.657898, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'hugehornet_385' ) , 1, 44 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -23.907471, -3.571720, 219.243805, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -16.718153, 5.451878, 301.894287, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 66.059456, 11.571009, 437.029022, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -92.989937, -1.690629, 196.724426, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -98.574768, -3.166113, 177.319946, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -49.221661, -4.524842, 197.873322, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -103.894516, 0.839635, 206.144241, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -45.587852, 11.689942, 306.759338, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -53.864689, -0.608879, 219.315063, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -150.694717, 7.765455, 250.819580, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -81.281471, 1.775036, 219.440277, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 6.971764, 4.860685, 292.619232, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -157.237152, 14.523499, 274.601074, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -62.510185, 12.217365, 295.750916, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -113.435028, 4.471564, 229.436203, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -95.442757, 5.596817, 247.354599, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -57.250259, 0.743027, 224.516617, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -131.127899, 6.875826, 254.238861, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -119.798729, 9.261072, 269.827026, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -59.173138, 10.748014, 290.876617, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -61.768524, 6.594630, 268.781647, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -42.127663, 2.327297, 243.374619, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'starmarmot_351' ) , 2, 51 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 74.781837, 14.651251, 669.321472, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 16.359709, 14.894112, 395.458313, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 14.701683, 14.855042, 391.761932, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -0.409471, 12.507113, 356.361053, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -3.738061, 12.499704, 353.422516, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -1.437883, 12.348068, 354.726654, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 34.385303, 10.040910, 355.210175, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 144.675583, 3.620145, 656.068542, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 145.988068, 3.957043, 649.779724, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 148.201996, 3.709966, 651.812317, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 106.757111, 9.695004, 673.369324, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 112.417152, 9.607377, 663.583374, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 111.372337, 9.634759, 667.174438, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 91.272270, 10.469758, 619.963623, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 39.092484, 15.774632, 620.959656, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 32.232311, 15.999292, 624.787720, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 35.822330, 15.876580, 623.607727, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 82.112305, 12.563763, 632.846008, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 71.809380, 14.387797, 625.939331, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 47.678493, 13.977177, 502.199097, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 70.831474, 10.266142, 518.589539, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 60.580246, 11.780632, 495.500763, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 46.172245, 14.325772, 510.318573, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 85.788620, 8.259278, 555.055725, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 86.958824, 7.919072, 554.096985, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 110.997444, 6.136663, 519.846680, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'hugehornet_385' ) , 2, 51 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 74.620827, 14.612107, 667.884277, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 140.606979, 4.081238, 627.820313, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -3.877231, 13.615626, 363.381775, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 33.040424, 11.795031, 388.193512, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 28.870335, 14.724174, 419.960144, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 103.825455, 8.400401, 616.184326, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 102.928337, 7.781808, 607.554565, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 119.298714, 9.343278, 672.693665, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 101.191315, 9.548332, 678.953552, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 54.697060, 14.094070, 614.355408, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 52.031380, 13.567678, 521.799500, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 58.086319, 12.297340, 509.745117, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 87.912727, 4.945649, 482.360016, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 90.407799, 4.273463, 484.751678, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 113.583496, 6.545595, 519.189026, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'snappingshrew_205' ) , 3, 59 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 99.998642, 7.118342, 214.938965, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 82.988998, 18.148701, 156.375671, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 44.856079, 0.864347, 188.346634, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 44.998817, 1.357087, 194.430435, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 107.291412, 4.543108, 443.690582, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 99.802704, 4.079570, 437.752869, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 88.881271, 15.910508, 172.408722, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 83.277328, 19.488789, 148.662613, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 70.168274, 12.436956, 174.105209, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 123.814926, 5.529444, 416.189911, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 96.458847, 4.084651, 410.876373, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 100.766350, 3.995774, 399.245483, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 113.294464, 5.000326, 391.724487, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 101.839973, 3.355674, 385.360779, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 125.350800, 6.035253, 401.967224, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 136.543274, 15.981478, 268.632599, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 130.723206, 14.708333, 281.154755, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 146.252823, 14.332496, 308.223877, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 35.716537, 0.839609, 215.068741, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 27.178265, -1.547267, 212.598114, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 57.828777, 3.218596, 279.158722, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 44.126835, 4.979368, 299.000702, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 64.690193, 1.958333, 299.042206, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 69.291428, 2.160212, 292.237701, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 128.333908, 2.986871, 323.785309, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 129.215195, 3.397606, 329.086060, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 116.356453, 2.064967, 309.819580, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 25.462738, 1.711851, 259.637878, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 31.146549, 2.291308, 261.737396, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 33.029797, 0.759700, 236.502197, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'hugehornet_385' ) , 3, 59 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 154.899536, 9.782428, 432.289276, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 163.749908, 13.249993, 402.076843, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 131.082184, 6.998433, 391.464294, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 82.414711, 15.102674, 170.824905, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 85.624680, 20.129055, 150.056442, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 118.286270, 7.945267, 258.346527, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 118.893745, 8.418118, 250.248871, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 42.572422, 1.725515, 211.626709, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 66.475426, 10.318566, 194.904953, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 63.464970, 15.675315, 145.210022, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 41.135872, 3.520420, 321.376068, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 108.668945, 5.162446, 406.542450, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 131.659348, 7.828197, 434.532013, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 133.262604, 15.263828, 276.155731, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 133.409973, 14.276332, 290.152313, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 20.384861, -1.388451, 218.726242, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 114.250977, 3.618062, 361.547394, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 76.193108, 6.985967, 401.533325, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 23.641546, 2.186462, 261.691833, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 119.031227, 1.989501, 315.129547, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 100.663902, 1.086089, 320.265533, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 90.619003, 2.013515, 265.924622, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'snappingshrew_205' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 212.258286, 13.125544, 576.897644, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 215.307144, 10.684145, 606.535767, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 220.092346, 11.393424, 597.792480, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 179.315872, 10.921528, 619.139099, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 177.152390, 10.892845, 612.435669, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 158.819473, 12.526879, 510.025391, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 184.340530, 12.429687, 522.777466, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 173.160736, 11.566209, 524.117798, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 127.693138, 11.135562, 504.030792, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 161.792953, 16.537683, 387.454102, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 182.712738, 12.810107, 407.560608, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 161.206299, 10.239838, 415.688110, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 159.063431, 11.521556, 407.843262, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 203.331299, 13.434283, 451.513397, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 241.723328, 15.164034, 475.223694, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 233.073654, 15.494044, 459.337463, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 222.878204, 14.875070, 467.820557, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 186.741547, 13.106076, 481.490204, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 213.944992, 18.921860, 422.087891, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 218.496735, 21.018387, 413.806244, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 279.653351, 15.331147, 501.079346, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 140.621521, 10.984225, 487.070648, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 135.218124, 11.886612, 512.258850, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 178.539856, 10.749427, 565.575134, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 253.855530, 12.587099, 582.057678, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 199.167542, 12.427143, 601.201843, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 123.541946, 8.544447, 484.919403, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 155.782852, 9.589719, 536.118408, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 133.246628, 9.324942, 456.188721, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 130.286987, 9.248465, 458.491608, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 161.115677, 12.254954, 481.014984, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 165.215942, 12.257030, 479.717438, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 167.565079, 12.493283, 481.362427, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 172.021057, 10.178137, 600.886536, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 148.277679, 7.702478, 544.200928, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 158.267120, 8.876033, 558.221924, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 157.345062, 8.563926, 554.235779, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 135.595886, 6.497559, 566.207703, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 148.182800, 8.325212, 581.167053, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 142.774979, 7.591152, 583.888611, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 148.509796, 5.909552, 605.887817, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'hugehornet_385' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 196.900360, 18.446592, 527.129272, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 206.015793, 15.328307, 502.550446, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 265.371399, 16.502869, 525.063660, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 258.878937, 13.694697, 567.167297, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 260.390625, 15.126431, 556.181213, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 211.264465, 15.964714, 496.781921, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 247.550003, 16.704090, 499.550293, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 265.941132, 16.418941, 525.251831, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 201.785736, 13.118353, 448.505951, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 230.005951, 15.134412, 471.413696, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 188.504791, 13.098309, 480.896393, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 143.266037, 11.740788, 521.091675, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 161.121994, 12.725099, 508.515991, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 135.343430, 11.030483, 495.614105, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 253.776962, 11.239170, 607.635010, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 223.814560, 6.595161, 634.641541, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 231.908020, 7.764597, 626.226624, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 236.369141, 17.072481, 561.166443, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 231.604401, 16.865252, 559.998169, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 249.611099, 12.557126, 581.760376, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 226.898743, 9.841074, 608.941040, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 204.289505, 8.618523, 625.023499, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 202.500046, 12.600811, 594.490967, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 278.153351, 15.199907, 501.706635, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 122.192986, 7.545269, 464.524933, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 151.376160, 11.163703, 469.630646, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 158.750580, 8.495440, 543.235718, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 167.313354, 10.356873, 586.242432, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 200.458221, 16.701763, 545.661316, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 199.982162, 16.281801, 541.067505, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 218.088409, 17.030666, 555.317505, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 137.777893, 6.832203, 586.982300, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 127.112747, 4.498141, 598.777100, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'orobon_302' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -99.671890, -5.812543, 136.228577, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 8.860905, -5.928177, 108.802963, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 13.171816, -5.780242, 115.627808, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -1.193864, -6.687370, 142.990326, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -73.495399, -6.687369, 152.691483, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -84.578224, -5.396751, 167.349640, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -87.216805, -6.202558, 151.391937, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -89.553169, -5.670652, 146.642685, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -38.834076, -5.760743, 151.085037, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -40.845631, -6.617375, 159.460037, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -51.352818, -6.048653, 169.783157, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -19.928562, -6.501933, 118.357712, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -21.232611, -6.687370, 148.945953, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 19.706760, -6.544453, 169.219193, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 33.629375, -6.320920, 150.430145, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 1.376432, -6.431837, 163.946106, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 4.738632, -6.563811, 165.023895, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 2.158860, -6.687257, 161.648239, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -9.510571, -5.822853, 137.741272, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'syrphidcloud_41' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -50.745617, 11.664762, -229.661652, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -86.915657, 0.784127, -208.201538, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -87.171028, 0.069792, -200.240112, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -35.055233, -6.144990, 4.812652, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 105.744278, 1.133011, -237.582520, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 53.839657, 1.544590, -191.658173, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 33.773842, 8.469147, -216.930405, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 76.233879, 3.770367, -208.780090, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 78.115700, 3.535342, -202.578690, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 12.659208, 1.885491, -40.210419, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -27.759754, -6.575808, -70.365150, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 10.718639, 6.296513, -132.878937, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 74.456947, 0.432563, -152.496597, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 52.082401, 14.469296, -129.908646, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 140.713852, 1.435835, -236.996765, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -50.621788, -1.968755, 121.580048, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -81.630272, -1.027033, 105.000916, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 103.412865, 1.787126, -204.141739, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 12.140063, 11.320907, -298.604126, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -74.422630, -4.631270, 26.572216, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -2.309331, -0.501844, -202.697876, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 10.897972, 5.603918, -237.664307, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -18.256142, 14.679240, -275.372681, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'antlingworker_432' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -68.117996, 12.566562, -239.765198, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -53.455795, 10.501761, -224.876816, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -78.593353, 8.487895, -234.047760, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 130.566635, 1.618612, -233.436401, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -8.910463, 11.854109, -283.469116, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 7.956008, 8.533451, -247.540466, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 89.598175, 1.694249, -188.811493, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 4.826326, 0.225419, -222.496124, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -19.712059, 8.363413, -247.978119, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -17.619656, 7.148906, -239.940216, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -67.307961, 8.238957, -209.274521, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 91.111885, 3.283652, -216.581909, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 125.942444, 1.940440, -233.367432, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 96.877617, 0.679963, -182.853180, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 44.277550, 1.360019, -175.104919, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 32.065495, 6.548012, -149.945313, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 31.807383, 10.121017, -133.410751, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 32.021042, 15.923297, -111.995705, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -10.600470, -3.574974, -83.229507, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 13.504713, 2.464338, -38.354126, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -6.353378, -2.798462, -85.107544, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 14.207628, 2.423386, -110.910767, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -7.680536, -3.097924, -93.610481, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -84.705696, -0.625961, 110.627457, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -59.126144, 1.053093, 88.866135, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -13.271574, -3.449548, -56.706383, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -9.644728, 0.709381, -27.072062, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -36.820358, -4.425104, 24.577980, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -36.056725, -3.205539, 35.216789, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 113.103447, 0.375181, -196.803650, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -85.875809, 1.189918, 71.765923, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -84.911522, 0.985137, 66.710670, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'syrphidcloud_41' ) , 6, 108 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -174.468109, 19.115213, -125.338837, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -110.471130, -0.537652, -168.935211, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -136.790268, 3.347808, -138.357941, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -94.235672, 3.883178, -126.912987, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -189.675522, 9.452148, -29.751484, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -65.050079, -0.113263, -115.859344, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -183.054703, 12.273926, -60.369213, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -158.960083, 15.340821, -188.681152, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -117.949181, 11.767560, -65.087570, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -122.582817, 11.198878, -65.281563, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'hammerbeak_431' ) , 6, 108 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -202.132462, 11.256601, -32.651081, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -176.753723, 9.860044, -31.733425, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -183.072800, 6.475171, -19.586803, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -144.904358, 9.230814, -27.321465, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -146.938004, 8.912346, -161.776810, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -133.657852, 4.540196, -194.241333, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -150.965881, 12.719676, -189.215698, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -56.758118, -4.028542, -105.878067, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -64.833687, -2.745871, -106.717339, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -93.153114, 0.455269, -101.453857, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -159.298645, 9.913610, -67.934662, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -162.382309, 17.889938, -96.520218, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -172.515152, 18.485138, -95.555511, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -126.390610, 10.041080, -78.760681, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'Amaljaaimpaler_735' ) , 6, 108 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 32.891548, 19.908630, -233.898605, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 47.145218, 19.852844, -255.847229, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 45.056973, 20.372236, -298.794312, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 27.075630, 19.825541, -258.167999, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'Amaljaastriker_736' ) , 6, 108 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 32.101620, 19.979660, -229.510406, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 36.453423, 19.721775, -278.135376, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 30.218941, 19.809231, -261.464111, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 25.641180, 19.827999, -262.593201, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'spriggangraverobber_100' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -257.285706, -30.639889, 100.659332, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -153.746185, -31.521635, 109.572319, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -182.912827, -31.560745, 114.211540, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -201.124924, -31.650459, 117.030487, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -209.918854, -29.263367, 122.909149, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -242.000000, -28.087360, 121.000000, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -180.561066, -28.439131, 89.026329, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -211.793625, -30.258345, 95.008110, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'spriggangraverobber_101' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -268.746063, -31.275227, 99.159760, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -253.332245, -31.016640, 82.823921, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -166.355026, -31.131470, 109.242416, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -201.172867, -27.795612, 128.031372, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -208.535385, -30.566776, 97.437675, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -226.847794, -30.994158, 110.904938, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -169.657761, -25.690193, 77.928909, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -183.002594, -26.014444, 76.528809, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -169.481079, -24.500380, 72.624008, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -167.796280, -24.799749, 74.366158, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'syrphidcloud_41' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -242.560226, 8.769100, -42.823318, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -233.515686, 10.141810, -42.636036, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -340.534363, 2.979852, 89.331467, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -337.402191, 9.110394, 0.857142, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -243.269806, 7.445292, -28.041258, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -242.964035, 7.105038, -26.203512, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -241.027557, 7.168646, -25.286453, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -248.821426, 0.498789, 27.290764, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -202.595093, -2.038183, 49.544174, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -195.633865, -0.844712, 47.052341, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -257.344849, -31.354811, 97.560005, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -234.364380, -28.002857, 121.176292, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -161.679474, -30.969820, 107.763519, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -154.422623, -28.568213, 90.166145, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -168.624771, -24.559311, 73.175056, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -239.488419, 4.989126, -12.505265, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -194.069672, 1.312630, 0.800000, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -209.778152, -28.509418, 124.644913, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -228.660950, -13.139356, 68.169518, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -203.526077, -30.365080, 96.233894, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -268.052338, 0.159323, 44.267715, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -338.130280, 0.112633, 46.599998, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -129.436829, 0.656171, 14.080331, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -145.624420, 0.069183, -0.496667, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'hammerbeak_431' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -369.829193, 15.069108, 35.708076, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -365.639099, 19.034811, 23.197189, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -349.274536, 6.536371, 109.095245, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -337.398926, 2.467660, 84.230064, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -230.567932, 1.125090, 31.142580, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -375.911346, 1.051809, 74.666779, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -164.546661, 1.604612, 22.896580, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -199.485275, 2.158093, 6.506456, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -294.707428, 0.095981, 43.603157, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -333.017365, 1.315657, 34.652439, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -103.620270, -2.576677, 9.671551, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -279.372589, 1.401986, 9.738690, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -295.311005, 2.988596, 2.444945, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'syrphidcloud_41' ) , 8, 143 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -150.466049, 27.535706, -415.632294, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -112.311241, 29.659466, -452.898926, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -111.140228, 29.489735, -456.632935, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -91.947807, 18.630487, -368.788391, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -38.946095, 22.901558, -338.375122, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -65.293419, 22.134720, -310.756500, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -66.677475, 21.938700, -308.097961, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -90.349937, 9.487349, -305.346405, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -113.466446, 28.024633, -397.309448, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 36.140484, 18.383497, -349.105286, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 65.269302, 22.172178, -344.895966, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -2.704227, 16.218281, -317.405396, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'hammerbeak_431' ) , 8, 143 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -140.702316, 33.872025, -446.510010, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -107.646355, 10.480783, -324.141663, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -66.368797, 26.791588, -289.778503, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -70.286171, 16.276838, -340.310242, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -121.318733, 25.104271, -380.967377, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -122.229584, 24.877123, -377.505188, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 18.747263, 16.215797, -349.247772, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 42.479435, 20.838026, -351.218750, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -24.510614, 20.519810, -347.030090, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -30.572090, 20.599014, -347.295410, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'syrphidcloud_41' ) , 9, 160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -229.545792, 4.048837, -288.528625, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -207.170517, 15.278139, -253.580109, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -230.921768, 31.102160, -134.397171, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -242.640320, 18.527098, -425.756500, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -232.898544, 5.768130, -399.291046, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -255.994934, 7.472522, -291.442963, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -173.742828, 8.675222, -388.937225, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -276.972778, 28.430258, -97.456123, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -158.553162, -1.335998, -355.868011, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -231.530197, 27.563112, -98.981491, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -223.118622, 21.543591, -76.168953, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -268.472351, 22.300694, -66.976128, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -246.199478, 20.674025, -68.542526, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -211.559006, 27.282198, -116.293648, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -202.320663, 16.213512, -411.069977, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -147.604935, -4.920741, -317.281403, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -245.478394, -1.102257, -378.153717, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -230.023590, -1.069958, -323.555908, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -183.588623, -4.211949, -316.253418, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -166.550674, 3.683212, -249.466064, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'antlingworker_432' ) , 9, 160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -170.672668, 5.725224, -380.353394, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -142.486115, 0.382593, -352.609497, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -215.576035, 15.891566, -256.654694, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -215.449860, 19.024891, -250.827515, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -234.024704, 4.437086, -289.745239, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -179.785187, 15.512178, -411.665558, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -218.869888, 16.793764, -410.182617, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -203.026993, 20.398464, -443.788635, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -233.056122, 19.603687, -425.392517, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -254.036758, 22.574421, -449.634033, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -144.454971, -2.713586, -327.377380, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -139.019165, -1.322632, -317.811493, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -165.170593, -1.746717, -350.219360, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -216.630142, 16.496622, -409.291626, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -215.773361, -3.983918, -344.796509, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -191.575333, -3.974144, -310.972046, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -182.679825, 7.299078, -254.417648, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -208.747940, 2.271596, -284.101563, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -176.334564, -2.889948, -288.446289, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -156.831696, -4.948355, -290.167999, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -183.969879, -4.270676, -312.507568, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 141, ( SELECT id FROM bnpctemplate WHERE name = 'Qiqirnshellsweeper_771' ) , 9, 160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -213.712357, 32.179573, -134.272324, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -203.933212, 26.360641, -123.227745, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'earthsprite_131' ) , 15, 319 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -484.991241, -25.187517, 201.670319, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -329.342896, -33.934418, 297.992279, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -318.308746, -30.914782, 177.337891, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -424.536438, -33.283409, 239.491302, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -456.727295, -28.000910, 316.989502, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'dustymongrel_138' ) , 15, 319 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -226.911530, -28.999681, 264.300781, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -239.743607, -27.619967, 247.057297, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -225.296005, -29.151970, 234.316254, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -205.771042, -28.740837, 255.437057, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -187.361252, -33.775242, 216.512009, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -178.393036, -28.873592, 250.467804, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -250.179962, -25.747940, 211.827621, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -264.710510, -25.874268, 224.707611, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'tuco-tuco_206' ) , 15, 319 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -302.678558, -33.616066, 300.312164, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -303.868683, -34.359276, 289.449341, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -284.651367, -31.280107, 205.473053, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -288.382599, -31.038023, 198.058395, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -288.642944, -31.578020, 207.164032, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -507.679688, -20.569572, 337.038849, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -499.235199, -22.309088, 333.848206, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -424.403564, -31.286730, 301.295868, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -422.184235, -29.008957, 314.151062, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -421.957764, -29.996052, 309.365234, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -419.208740, -29.508144, 313.621094, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -273.777527, -35.258747, 137.535233, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -508.997345, -22.112411, 279.362152, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -255.639832, -35.407772, 148.410736, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -255.426910, -35.501396, 147.168854, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -276.451172, -35.265522, 133.717224, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -305.099731, -33.749275, 301.115814, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -392.863983, -32.881630, 297.657043, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -389.407684, -31.785336, 305.213654, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -495.145081, -23.811481, 284.782135, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -496.574371, -23.561522, 273.631775, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -502.490631, -22.843765, 275.757538, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -487.431183, -25.043034, 265.572235, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -275.511841, -35.618446, 126.654160, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -495.211609, -25.499161, 310.095642, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -485.739563, -25.898212, 312.546967, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -486.865112, -25.530273, 315.123505, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -449.873932, -30.354820, 216.113907, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -362.939209, -35.152466, 215.493805, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -363.506683, -34.636967, 205.680450, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -374.480957, -37.692600, 262.140778, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -371.271271, -37.090099, 255.922150, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -370.988586, -37.904465, 262.441589, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -439.181396, -30.376070, 235.686996, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -434.435852, -30.331448, 236.261108, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'earthsprite_131' ) , 16, 344 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -207.834000, -31.706461, -67.328369, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -134.165573, -26.173424, -55.797081, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -176.624481, -33.022179, -42.650204, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -173.458221, -32.725704, -44.317646, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'myotragusbilly_193' ) , 16, 344 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -106.146774, -26.706688, 16.668758, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -272.638397, -32.341824, 103.193886, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -301.051910, -39.132874, 30.185776, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -144.659622, -31.126200, 57.981880, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -197.230606, -31.469805, 8.866949, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'myotragusnanny_194' ) , 16, 344 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -332.908386, -37.875786, 16.742508, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -108.107735, -27.696709, 23.377899, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -291.343140, -33.267673, 97.862312, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -273.037842, -34.323540, 89.681931, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -267.513672, -33.604614, 94.919838, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -287.862793, -38.567112, 33.248394, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -146.443405, -29.326656, 4.887208, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -157.798996, -32.216972, 50.753544, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -154.341660, -33.248970, 68.851402, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -218.419235, -37.095924, 39.347988, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -222.852219, -37.343269, 36.708420, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -182.841232, -29.003389, -4.135243, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -187.212479, -28.667593, -11.253172, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'vandalousimp_21' ) , 16, 344 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -364.092621, -16.086731, -134.470932, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -335.121429, -12.310300, -146.503418, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -333.660828, -16.950497, -121.999985, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -357.916199, -13.559976, -145.579025, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -377.828156, -8.161343, -222.491608, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -350.001099, -12.161416, -163.291885, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -329.731110, -11.344488, -141.097626, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -385.424774, -7.739377, -226.486572, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'blowflyswarm_41' ) , 16, 344 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -529.005371, -20.296566, 115.723396, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -409.923004, -30.964329, 50.385559, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -427.733551, -27.899689, 5.703920, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -452.606354, -27.019609, 78.664604, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -450.648926, -27.317963, 79.126144, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -481.048523, -25.345230, 87.828316, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -485.405090, -16.382105, 5.979623, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -479.359344, -20.699858, 49.399818, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -461.533112, -19.991516, 8.722773, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -460.610138, -19.959024, 16.283731, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -495.771057, -17.256380, 22.231327, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -505.891876, -19.540010, 47.416748, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -550.252502, -17.063587, 82.358772, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -539.513855, -18.112019, 75.370293, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -429.179962, -28.716864, 31.954006, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'earthsprite_131' ) , 17, 369 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -367.427460, -35.463146, 30.167294, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -548.459839, -11.228683, -114.085464, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -549.478088, -10.367211, -121.207787, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -507.344696, -5.328842, -149.964249, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -284.804260, -32.056366, -47.423195, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'rottingcorpse_18' ) , 17, 369 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -323.307404, -5.856354, -210.780762, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -344.644592, -12.273813, -263.138733, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -312.740692, -8.968553, -241.169891, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -324.759399, -10.752277, -244.811203, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -351.532471, -10.740891, -234.398849, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'rottingnoble_19' ) , 17, 369 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -299.817566, -9.541530, -247.074829, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -322.715576, -8.995357, -226.656616, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -348.668427, -11.842318, -261.122406, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -329.615051, -12.056370, -228.737091, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'tuco-tuco_206' ) , 17, 369 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -452.206543, -8.374084, -97.009766, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -456.835571, -8.327034, -97.224922, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -508.915070, -8.144362, -106.849747, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -498.490875, -9.246281, -111.842346, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -500.925110, -8.065235, -106.325256, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -529.930359, -5.254326, -158.924606, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -433.683044, -1.377185, -278.104187, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -463.289490, 1.913277, -277.107483, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -467.423950, 1.998846, -287.840515, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -464.792419, 2.070801, -280.055084, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -445.890808, -0.501097, -258.405731, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -466.084137, -8.760872, -134.507736, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -412.274963, -14.629063, -123.086098, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -415.326508, -13.628244, -128.333420, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -417.743195, -11.475676, -136.692627, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -316.518402, -27.066162, -65.823196, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -313.421753, -26.403278, -66.796478, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -364.770599, -19.993786, -48.161289, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -360.112549, -20.375036, -51.276566, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -371.338806, -26.541945, -0.368022, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -375.277161, -24.883547, -7.235680, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -379.337311, -25.094240, 1.966228, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -332.386292, -29.348072, -41.733345, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -318.111542, -27.160318, -66.372932, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -428.251740, -1.542237, -282.473877, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -526.710144, -4.604022, -159.191193, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -524.716797, -4.472753, -156.816269, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'earthsprite_131' ) , 18, 394 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 73.887634, -15.438148, 364.300751, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -49.815994, -17.860256, 365.976135, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -34.281574, -19.345608, 366.615509, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -55.584923, -16.069715, 368.177246, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -170.271667, -28.467062, 250.825638, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -164.736450, -27.796406, 253.737991, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -132.088898, -40.237690, 109.988831, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -94.099541, -54.793976, 186.776688, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 5.347713, -21.817692, 325.778137, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'myotragusbilly_193' ) , 18, 394 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 88.033478, -23.383842, 270.089294, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -251.875397, -36.464954, 355.037933, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -188.349762, -29.238123, 284.410980, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -148.283539, -38.474163, 171.637787, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'myotragusnanny_194' ) , 18, 394 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 95.203461, -24.581959, 292.276520, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 70.558434, -23.737591, 297.012238, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 101.074471, -25.012722, 296.553375, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -220.626770, -33.268154, 364.314484, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -123.721840, -36.393597, 158.874588, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -123.374695, -35.473305, 165.655716, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -230.316299, -29.696871, 323.104340, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -239.694321, -30.739241, 317.769073, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -178.108994, -28.618093, 285.133636, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -177.474213, -29.202887, 292.421173, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -142.759262, -42.309391, 196.634842, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -157.191559, -37.673050, 206.133942, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -145.524445, -38.939838, 205.554306, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'earthsprite_131' ) , 19, 420 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -249.952667, -32.593742, 433.704773, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -397.064301, -23.813620, 391.106354, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -186.622894, -34.389584, 401.777100, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -194.944168, -36.841331, 408.199554, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -321.627716, -22.423767, 430.467133, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -329.618469, -21.524384, 398.891266, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'tuco-tuco_206' ) , 19, 420 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -233.625046, -33.955879, 444.113373, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -414.527435, -24.722118, 372.622650, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -411.635345, -24.929766, 375.622223, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -173.510254, -35.633194, 444.918365, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -180.227966, -38.731392, 450.520203, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -216.377441, -35.755024, 456.193848, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -230.637207, -35.008701, 440.019806, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -239.285034, -33.459488, 442.363739, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -306.246155, -22.767551, 419.346985, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -352.676910, -21.276344, 415.302704, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -346.035797, -21.647738, 407.514465, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -425.031464, -22.948454, 372.585510, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'firefly_306' ) , 19, 420 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 134.814056, -7.363220, 402.451660, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 142.417358, -6.013386, 406.818542, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 147.706802, -5.085683, 404.621460, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 125.486176, -9.641673, 403.349426, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 136.679642, -6.367616, 412.895142, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 145.801483, -5.514339, 415.776520, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 141.714233, -5.766311, 409.883545, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'chasmbuzzard_12' ) , 25, 633 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 38.429844, 6.096233, -90.885643, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 46.909683, 6.038020, -106.818878, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 7.992106, 1.136188, -77.042572, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 7.428836, 1.135599, -81.120918, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 58.962696, 1.282207, -68.845734, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 26.565632, 2.706309, -67.367546, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 24.208549, 1.956167, -53.140327, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 63.750057, 4.113204, -88.710487, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'axebeak_181' ) , 25, 633 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 129.103653, 10.362114, -116.409111, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 139.817749, 9.256701, -140.621918, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 113.657646, 11.338365, -140.108582, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 222.426117, 3.901125, -191.832199, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 215.434158, 3.743622, -183.984589, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'phurble_203' ) , 25, 633 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 120.012466, -2.656372, 33.173153, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 141.735611, -0.269737, 20.213810, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 106.827316, -1.419361, -14.397512, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 108.823868, -1.052194, -11.347628, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 150.893890, -2.959147, 38.616627, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 149.637772, -3.086644, 41.056332, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 153.158691, -3.330426, 45.657276, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 96.662201, -3.141382, -0.669094, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 66.343834, -5.448619, 25.655672, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 75.981079, -3.603084, 28.575338, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 61.382442, -11.482869, 57.932354, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 32.684780, -13.262908, 41.934837, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 32.752884, -12.787717, 40.441483, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 98.200226, 8.138439, -89.086197, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 143.774261, 11.209060, -49.655876, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 143.682510, 11.205635, -45.911793, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 96.594933, 3.377338, -63.015484, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 102.594749, 3.077654, -58.888950, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 98.809525, 3.894166, -64.439400, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'bumblebeetle_36' ) , 25, 633 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 229.549194, 4.700777, -233.226471, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 220.497482, 2.813300, -163.636047, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 165.335526, 6.628993, -137.983932, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 164.833221, 7.021600, -141.903610, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 93.970024, -1.785703, 38.579987, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 95.266953, -2.305713, 34.628284, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 53.175667, -9.578513, 40.719746, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 127.103333, 8.563081, -70.364990, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 115.400002, 9.943634, -104.725891, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 72.595512, -5.594739, -2.399326, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 123.516129, -3.295207, 54.802887, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 108.990120, -2.520883, 18.508915, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 58.107597, -3.085790, -47.860992, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 91.597878, -0.985435, -46.101570, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 101.666069, 6.658454, -78.786514, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 117.436775, 9.910349, -103.659454, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'Qiqirnroerunner_170' ) , 26, 671 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 97.297249, 2.500169, 75.817917, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 94.621094, 2.091204, 83.127548, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 96.513313, 3.431219, 83.543091, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'axebeak_181' ) , 26, 671 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 403.971008, 23.860987, -192.556824, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 356.965729, 16.335798, -229.082153, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 373.370117, 21.001823, -239.947159, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 293.809235, 4.948678, -176.027298, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 279.223877, 8.225854, -220.383621, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 288.818542, 11.820333, -244.057159, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'bumblebeetle_36' ) , 26, 671 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 160.906830, 9.033947, -92.687920, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 187.292984, 11.769240, -93.169754, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 360.162109, 17.069096, -198.839828, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 367.716217, 17.483278, -202.369522, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 313.240936, 6.239344, -197.825821, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 317.527832, 11.406107, -226.573944, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 269.140320, 7.657880, -227.893311, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 270.692474, 8.477456, -232.665054, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'bumblebeetle_36' ) , 27, 708 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 158.761597, 14.526194, -63.249428, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 211.598770, 11.764691, 6.670747, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 219.253693, 12.286627, 4.690894, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 187.210846, 4.681228, 5.912809, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 37.971516, 1.544646, -58.938843, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 74.868454, 3.286330, -74.433182, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 69.960129, 3.847299, -82.594696, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'bandittrapper_352' ) , 28, 746 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 271.149200, 7.832132, -121.814507, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 240.250153, 7.425583, -117.148819, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 272.946014, 16.629387, -159.003784, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'banditarcher_353' ) , 28, 746 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 252.805573, 8.143165, -110.037048, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 247.666763, 8.045337, -120.896767, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 262.752808, 17.365179, -153.768158, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'banditmage_354' ) , 28, 746 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 255.702896, 10.444925, -133.856613, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 280.059204, 8.081619, -114.215233, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 274.195984, 16.954216, -156.047668, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'bumblebeetle_36' ) , 28, 746 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 229.430206, 6.290583, -133.613724, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 291.949768, 7.940729, -130.528976, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 289.226898, 7.565547, -136.333984, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'phurble_203' ) , 29, 783 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 190.778137, 0.284409, 24.048899, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 194.781082, -1.815820, 35.538292, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 224.956009, 3.288124, 29.590294, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 251.532928, 10.957792, -2.426377, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 267.516724, 12.238542, -6.506516, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 254.951050, 11.789901, -4.733750, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'bumblebeetle_36' ) , 29, 783 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 275.287567, 10.992482, 11.515173, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 266.327637, 9.818665, 10.560208, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 241.530197, 9.143084, 7.788676, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'goldenfleece_204' ) , 40, 1732 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 438.447174, 14.981830, 119.057930, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 407.329865, 7.785298, 138.902893, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 404.780731, 7.140129, 140.676254, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 407.674103, 8.365909, 134.401047, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 433.261719, 5.646908, 163.707321, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 455.744324, 14.407484, 137.404663, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 461.093567, 15.694507, 135.974991, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'mirrorknight_399' ) , 40, 1732 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 453.449524, 12.238844, 147.294937, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 425.008972, 12.026990, 127.154160, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'quartzdoblyn_188' ) , 41, 1837 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 294.551147, 2.849841, 220.490952, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 345.230530, -7.157960, 248.519028, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 318.046967, 2.253586, 239.829697, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 386.268005, -7.850298, 210.047943, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 376.974152, -8.712187, 201.061829, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 339.496216, -6.169793, 193.508133, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 328.139160, -0.957204, 222.227661, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 327.047333, -0.146038, 232.506882, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'mirrorknight_399' ) , 41, 1837 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 272.452179, -3.336429, 245.358948, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 390.626251, -9.356419, 196.715912, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'quartzdoblyn_188' ) , 42, 1941 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 462.282684, -41.734840, 272.434937, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 438.799805, -32.313110, 293.936768, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 466.766510, -42.383240, 279.832733, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 489.856232, -53.608055, 267.318604, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 494.171722, -63.775795, 235.969818, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 451.657654, -64.221817, 255.395981, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 446.442688, -64.269775, 240.372803, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 437.751678, -64.790436, 249.730850, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 395.183441, -19.850119, 255.316437, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 399.050873, -19.599689, 259.573761, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 384.783997, -18.387295, 277.796265, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'goldenfleece_204' ) , 42, 1941 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 233.701202, -44.282707, 274.014404, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 226.699997, -43.795216, 275.533844, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 186.764206, -30.602200, 257.407257, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 224.159866, -2.044894, 184.268387, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 228.558014, -3.821499, 186.065369, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 238.254990, -15.797669, 154.910095, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 227.631393, -15.421698, 154.252182, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 202.508408, -15.438535, 159.015457, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 202.112900, -14.476564, 153.974579, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 298.033295, -16.599995, 137.826294, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 302.097473, -16.817944, 138.943665, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 307.210663, -16.955101, 140.750946, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 276.222565, -10.778378, 161.037933, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 285.550415, -10.331572, 159.398483, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 289.415802, -20.319990, 111.112953, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 293.613464, -20.236130, 108.895203, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 343.689056, -7.436459, 147.937241, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 344.355988, -7.168438, 155.882507, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 321.669617, -11.453640, 173.856171, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 217.242981, -14.804549, 162.290604, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'mirrorknight_399' ) , 42, 1941 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 319.996765, -21.125742, 116.999382, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 443.110687, -63.587006, 206.607239, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 388.656891, -18.258707, 262.557495, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 282.888123, -19.480589, 128.800354, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 430.258331, -63.628407, 212.745209, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 255.740097, -16.554155, 168.694962, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 429.876038, -63.319862, 205.396240, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 443.811462, -63.286488, 199.766144, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'quartzdoblyn_188' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 439.710358, -20.490881, 229.019791, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 448.676514, -17.350208, 219.142181, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 490.652618, -6.790624, 229.868713, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 486.885712, -7.209616, 236.287659, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 439.740356, -20.526875, 226.544983, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 145, ( SELECT id FROM bnpctemplate WHERE name = 'mirrorknight_399' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 484.698792, -7.375312, 254.274094, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 459.535492, -13.523539, 215.478180, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'sabotender_176' ) , 25, 633 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -341.637085, 15.248937, -369.547394, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -346.753113, 14.632287, -367.786255, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -352.496124, 15.143094, -376.132904, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -403.704224, 14.415089, -397.821411, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -402.979431, 13.427110, -381.696014, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -403.571777, 13.655423, -385.639709, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -358.541382, 12.458455, -349.999512, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -301.948059, 20.806694, -343.346527, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -304.512543, 20.637697, -349.514374, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -246.563370, 18.185057, -283.109314, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -215.150772, 19.364697, -288.569977, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -215.075333, 19.599781, -289.872253, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -279.258453, 20.512615, -301.388428, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -275.727753, 20.619194, -300.036346, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -213.429916, 20.102016, -292.526855, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -327.830505, 14.100457, -306.136353, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -332.538300, 12.465477, -273.346954, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -336.673645, 12.351367, -272.477112, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -367.908661, 12.565961, -311.766724, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -362.793396, 12.856035, -318.004181, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -366.404633, 12.726810, -322.908661, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'potterwaspswarm_57' ) , 25, 633 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -382.758759, 13.726509, -372.601440, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -325.927917, 17.958885, -393.933655, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -307.227081, 12.105808, -273.000000, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -233.109406, 4.529190, -241.368805, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -223.699722, 4.325295, -241.154373, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Amaljaabruiser_167' ) , 26, 671 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -35.174934, 16.337717, -279.724518, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -1.742153, 14.339200, -330.423615, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -6.968165, 15.539780, -293.998108, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -1.754883, 15.457340, -292.500214, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Amaljaaseer_169' ) , 26, 671 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -5.172852, 15.518430, -288.410797, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -24.880569, 16.603331, -306.262177, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -3.867146, 14.588022, -326.988495, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -19.294027, 17.117447, -339.271637, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'sandskinpeiste_174' ) , 26, 671 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 1.703295, 7.590187, -536.395752, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -24.003557, 6.297407, -591.194946, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -102.345047, 14.672602, -543.803162, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -125.636925, 15.845934, -591.975586, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -104.557884, 14.025711, -625.867859, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -159.444565, 18.585466, -567.216980, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -59.196949, 5.440549, -544.580688, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -5.589753, 7.526525, -532.481445, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'fallensoldier_18' ) , 26, 671 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -75.178520, 14.496999, -216.672791, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -87.461090, 15.902476, -250.280731, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -124.489983, 14.831576, -238.253891, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'fallenmage_19' ) , 26, 671 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -110.942314, 15.675309, -250.188339, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -79.341881, 15.392420, -237.287003, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -120.635643, 14.480289, -207.420853, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'temperedsword_2259' ) , 26, 6039 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -96.000237, 15.189289, -230.438416, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -95.057976, 15.246635, -229.829453, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'temperedbrand_2260' ) , 26, 6039 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -86.033096, 14.625609, -222.886642, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -97.966988, 15.189769, -217.586121, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'potterwaspswarm_57' ) , 26, 671 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -156.889648, 20.725876, -533.183167, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -109.671623, 21.149654, -488.154846, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -65.190979, 5.195847, -579.018921, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -71.552124, 16.732939, -266.645203, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -70.952515, 16.603691, -265.845032, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -18.176331, 6.025636, -480.301727, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -23.676399, 6.171919, -485.482910, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 12.842543, 8.333550, -515.615540, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -29.735718, 3.146374, -552.813232, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -192.497482, 20.943213, -298.499512, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -118.478844, 18.252909, -271.848511, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'sabotender_176' ) , 27, 708 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 41.150547, 8.041116, -648.016907, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 42.191765, 3.281225, -683.554016, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 44.303432, 3.347896, -685.575378, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -9.847412, 4.300720, -661.052612, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -11.873814, 4.075322, -661.723145, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -29.046093, 4.724108, -643.456482, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -26.035313, 6.777255, -613.198730, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -24.902639, 6.752831, -615.032898, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -24.415493, 6.472792, -620.134338, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -64.025322, 5.021073, -639.474182, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -59.776642, 7.660436, -675.639282, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -61.377548, 7.963757, -676.130859, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -63.402561, 7.782623, -670.331299, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -90.784859, 14.643532, -716.568237, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -88.348373, 14.574419, -715.631104, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -76.552818, 13.243704, -713.007568, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -80.773186, 14.474371, -718.843567, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -35.795776, 9.046797, -714.967712, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -35.057232, 9.454026, -717.463318, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -55.356262, 11.267091, -719.176208, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -25.001568, 5.933284, -692.732666, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'potterwaspswarm_57' ) , 27, 708 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -91.569916, 13.625988, -692.940430, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -21.455441, 4.199953, -677.880371, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -61.488113, 4.564605, -635.682861, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'sandskinpeiste_174' ) , 28, 746 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -191.165131, 25.067472, -470.628754, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -232.027023, 23.394819, -500.301514, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -229.685059, 23.105383, -515.495972, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -231.411407, 23.979979, -422.153656, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -296.539398, 20.283255, -409.838745, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -246.117401, 23.670439, -424.076599, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -274.116791, 26.772181, -450.126251, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'rockskinpeiste_2188' ) , 28, 6714 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -215.253418, 25.279840, -448.596497, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -210.940979, 24.143250, -481.751343, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'CorpseBrigadeknuckledancer_363' ) , 28, 746 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 154.758194, 4.221159, -538.420471, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 157.473602, 3.439358, -566.348633, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 161.494278, 2.644275, -612.663025, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 124.284698, 2.822876, -604.577820, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 86.811409, 3.981382, -641.041382, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'CorpseBrigadefiredancer_365' ) , 28, 746 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 103.623222, 4.398694, -655.155884, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 147.769608, 6.196021, -525.639038, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 137.263565, 3.255352, -594.161682, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 124.864502, 3.048638, -606.225708, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 89.221619, 3.050266, -610.632446, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'potterwaspswarm_57' ) , 28, 746 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 169.683044, 8.914387, -521.328308, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 141.245499, 3.730744, -681.089966, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 85.977226, 2.696516, -667.625244, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 80.155174, 2.723143, -672.675476, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -201.447769, 20.940304, -539.291321, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -218.534149, 24.382538, -450.402863, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -276.618927, 21.723251, -410.969055, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'sandstonegolem_30' ) , 29, 783 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 181.285141, 14.031194, -465.552490, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 77.901810, 10.457961, -468.261444, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 53.616154, 11.546996, -485.890137, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 29.237967, 9.004092, -485.614227, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 84.610054, 11.354488, -429.192810, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 142.041260, 10.432861, -448.978912, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 38.007725, 6.058152, -433.481140, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'potterwaspswarm_57' ) , 29, 783 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 40.484131, 3.781368, -352.528961, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 51.012569, 3.972790, -354.171326, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 52.860119, 7.139668, -438.591888, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 100.107391, 10.057013, -454.467743, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'firesprite_134' ) , 30, 821 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -420.561157, 6.119120, -24.841024, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -358.329071, 4.686082, -60.768394, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -264.495453, 5.086989, -90.344429, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'angler_356' ) , 30, 821 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -394.017303, 4.791004, -44.808750, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -409.121918, 3.708094, -46.633347, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -332.283722, 5.007236, -73.923218, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -285.345703, 4.687445, -64.785225, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -261.327698, 4.535207, -141.611847, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -215.296387, 4.820094, -157.085388, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -224.669327, 4.138251, -166.487625, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -217.325714, 3.668946, -171.291916, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -395.609406, 4.660939, -44.472633, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -278.121063, 4.849409, -59.821224, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -256.179474, 4.453109, -96.875435, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'firesprite_134' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -360.684631, 12.601675, 667.370972, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -299.866577, 5.548285, 806.432190, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -174.263855, -3.505442, 850.275940, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -348.827942, 6.342593, 880.352661, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -208.840027, -1.759316, 889.026367, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -253.007797, 2.837920, 697.425354, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'duneangler_2268' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -117.050583, 7.017793, 484.323761, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -118.771515, 7.345415, 491.677887, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -79.430984, 9.836941, 474.048553, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -198.288666, 9.965641, 455.557739, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -158.370468, 9.119872, 423.690063, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -117.780418, 7.976282, 450.519836, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'sandworm_357' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -408.211731, 3.262074, 640.299377, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -175.210938, 5.585324, 616.339722, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -369.904541, 1.470382, 832.272827, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -384.078705, -0.742431, 897.945007, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -284.580048, 9.488121, 856.222656, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -224.999695, -0.824747, 780.274475, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -211.020782, 2.253085, 695.594849, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -243.894928, 15.951363, 600.319336, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -280.694519, 8.655359, 673.722656, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -300.155334, 1.210423, 739.073425, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -325.037415, 1.126598, 736.725403, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -269.606232, 16.449139, 597.034241, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'russetyarzon_42' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -368.446472, 7.079077, 548.377747, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -386.341644, 5.892193, 581.836365, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -408.777100, 9.377183, 480.405640, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -430.868256, 7.637902, 524.583679, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -434.151520, 7.418620, 526.732300, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -428.133240, 6.389795, 568.580627, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -311.121521, 7.708793, 543.937317, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -394.593506, 8.462166, 529.714233, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'firesprite_134' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -40.621212, 14.405364, 501.829407, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 34.816879, 9.778998, 438.623199, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -173.908875, 7.130990, 511.457581, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -97.659332, 7.624303, 580.384583, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 194.938904, 5.167058, 806.075195, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 93.432465, 4.370359, 797.631470, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 142.249069, 7.074224, 632.121582, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 28.287848, 1.652231, 674.602295, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 78.575623, 15.969944, 575.116882, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 126.726723, 8.047317, 476.976929, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 128.920685, 8.077539, 898.669678, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -62.161049, 8.957856, 369.100189, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -15.554071, 17.036455, 583.447998, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Amaljaahalberdier_166' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 329.217773, 7.210039, 663.189209, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 243.579697, 8.834900, 694.209229, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Amaljaasniper_168' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 235.206451, 8.976408, 718.176514, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Amaljaadivinator_169' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 293.062347, 8.689137, 622.257813, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 289.314667, 8.224250, 725.866455, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 317.469025, 7.006060, 666.662964, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'smokebomb_17' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -99.861313, -1.443766, 787.843567, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -88.283966, -7.100940, 673.698914, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -48.124119, -1.645207, 693.384277, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -42.304230, -1.230455, 674.710938, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -29.125389, -0.075589, 758.180969, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -59.369633, -0.763578, 771.949463, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -127.123611, -5.725849, 701.820007, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -160.106903, -0.080513, 681.678772, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -154.764603, 0.884840, 740.086853, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -165.181778, -0.461543, 770.968079, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -160.632187, -1.305815, 782.926636, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -127.451012, -5.433787, 693.237671, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -155.180862, -0.852001, 684.498718, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -155.521179, 0.284155, 731.218750, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -158.900406, -0.416264, 768.694031, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'sundrake_190' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 107.637024, 5.312876, 918.295715, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 88.008537, 4.474587, 851.856934, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 148.060822, 5.402318, 821.557617, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 199.309921, 5.171023, 860.329529, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 201.732697, 5.800343, 869.839417, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 229.483826, 4.685165, 905.245483, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 253.311859, 6.210077, 817.914368, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 139.606125, 3.169069, 756.310730, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'angler_356' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 76.308365, 8.451810, 417.437927, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -96.465866, 12.394971, 549.543701, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -5.070523, 10.603338, 466.204926, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -34.128860, 8.285004, 408.654663, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -26.990744, 8.227112, 416.061676, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'sandworm_357' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 96.980301, 14.692114, 537.528442, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 84.608803, 19.052532, 513.785461, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 28.914835, 25.467201, 549.466309, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 156.095917, 8.271113, 584.728333, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 19.751390, 0.646676, 708.559143, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -41.306107, 9.027570, 618.961975, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 57.760128, 12.244857, 620.913269, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 49.158424, 10.739512, 629.228577, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 100.541542, 5.774489, 656.338074, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'firesprite_134' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -99.832245, -5.246658, 867.725220, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -42.541096, -4.043981, 852.046387, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -5.607573, -2.413896, 819.853699, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'fallenpikeman_18' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -104.895882, -4.957826, 847.381348, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -87.694870, -5.392631, 839.152222, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 26.610128, 0.594987, 836.949585, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -49.254620, -4.733998, 818.668579, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -40.064323, -3.446026, 885.889832, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 5.329031, 4.742103, 842.769043, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 2.401953, 13.248557, 863.071045, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'fallenwizard_19' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -102.825668, -4.996397, 849.412354, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -37.412384, -2.633514, 870.829956, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 26.467678, 5.540044, 876.900452, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -23.727427, -3.291145, 829.680115, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -7.259717, 13.372457, 862.419312, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'flamingbeacon_2452' ) , 43, 4092 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -208.789200, 7.827881, 41.184078, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -233.600403, 7.156433, 195.910507, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -277.088593, 16.372860, 105.149902, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -108.508598, -1.658285, 50.827759, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -20.309811, 4.196167, -48.355900, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'bronzetortoise_358' ) , 43, 2046 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -5.399730, 1.977385, -28.298733, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -181.654190, 7.786726, 21.221775, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -216.621262, 5.675678, 96.065308, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -94.169006, -1.989179, 27.018183, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -64.116562, -2.351030, -3.361914, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -114.756050, -0.385014, -22.766054, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'wildfiresprite_134' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -58.142700, -16.056576, -170.844162, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -93.148460, -13.947739, -170.307663, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -89.576111, -14.467867, -140.796417, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -99.919853, -14.516395, -141.793182, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -84.228043, -14.572890, -152.611633, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -86.228798, -1.742130, -50.460953, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -127.735497, 1.344494, -138.473465, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 65.404961, 4.148643, -262.911652, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -26.433735, 0.029302, -159.958862, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -64.087242, -1.054137, -104.986603, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Amaljaalancer_739' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -271.650208, 14.867290, 104.792099, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -244.418045, 8.960932, 196.856201, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -17.239441, 3.551795, -44.301022, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -158.980392, 7.004421, 30.758135, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -207.376999, 7.622232, 46.231140, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 58.417614, 5.007117, -297.900543, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 55.832760, 2.914429, -254.505203, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -72.335579, -1.704363, -70.573563, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -101.589996, -1.294506, 54.013149, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -118.673996, 6.331677, -100.276588, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -144.289246, 6.701437, -37.104916, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -159.094299, 6.971589, 5.938132, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Amaljaapugilist_740' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -95.912399, -1.627557, -59.626724, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 52.658810, 2.883911, -257.434998, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -134.576065, 10.083600, -74.354652, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -46.145729, -1.087839, 11.518380, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 25.857368, 3.227112, 15.065477, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Amaljaascavenger_741' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -145.388474, 10.364731, -66.997131, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -55.421150, -1.457429, 12.315417, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 12.554953, 1.917071, 11.004889, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Amaljaathaumaturge_742' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -15.834267, 3.632653, -37.418789, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -117.742378, 6.413233, -91.360420, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -234.055893, 8.728711, 200.963898, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -279.293884, 15.419995, 113.310310, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -105.390503, -1.053115, 46.289669, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -44.702461, -1.374928, -149.206711, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -57.989525, 0.089759, -62.506634, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -155.946030, 6.346056, -42.631248, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 81.735237, 4.376378, -275.076965, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 23.313454, 4.177588, -279.141144, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -200.893539, 7.614229, 33.332115, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -103.883812, 13.508634, 78.084023, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'wildfiresprite_134' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -143.013733, -0.592308, 41.740612, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -90.948830, -1.911550, -18.411327, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -91.118629, -1.746160, -10.671707, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -281.587555, 9.706877, 206.937103, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -114.293388, 5.826110, 248.873886, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -114.291634, 5.968055, 250.556946, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -44.407642, -1.249332, 6.089018, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'infernalbeacon_2452' ) , 46, 4720 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -43.839230, 7.949890, 350.362305, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 102.342300, 15.152160, 25.375731, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 108.016403, 9.690581, 194.451294, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -24.155090, 7.522644, 120.195297, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -114.458000, 7.766785, 222.339096, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'irontortoise_358' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -27.680191, 41.579773, 238.646957, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -263.038116, 7.429049, 165.419800, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 42.810207, 35.419151, 163.705551, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -271.364502, 9.304556, 215.790024, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -41.180153, 9.005600, 125.016129, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -133.812363, 13.239532, 86.309166, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'wildfiresprite_134' ) , 47, 2464 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -100.073685, 12.298316, 75.412491, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -18.168711, 4.685289, 35.507931, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -14.296327, 5.906263, 41.927876, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -47.543144, 12.888443, 192.945587, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -103.729973, 29.195835, 122.962425, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Amaljaalancer_739' ) , 47, 2464 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 24.765381, 2.935364, -0.717224, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -140.215103, 18.539671, 118.211700, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Amaljaapugilist_740' ) , 47, 2464 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 133.199997, 8.107705, 377.782074, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -50.098549, 8.290431, 358.887665, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -120.110596, 8.312845, 225.041367, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -40.874367, 12.161098, 177.435791, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -27.475019, 7.854693, 126.699791, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -110.631783, 12.370812, 71.109428, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Amaljaaarcher_741' ) , 47, 2464 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -39.757469, 8.053680, 353.966003, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 126.793884, 8.501403, 330.349365, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -40.202156, 7.328951, 46.249523, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -102.193817, 29.555590, 125.733536, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -28.614960, 7.846071, 118.196198, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -109.675301, 7.278503, 224.872192, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'wildfiresprite_134' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 112.000244, 14.317109, 136.725510, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -88.686241, 45.827126, 181.504791, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -127.043915, 37.286160, 186.639313, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 26.434013, 38.643044, 210.884857, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -183.493774, 40.027107, 153.948532, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -88.211464, 45.827122, 207.091202, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -172.059128, 40.027111, 140.885635, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 225.193863, 8.391061, 88.093117, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 119.167091, 9.983710, -10.440239, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 294.303162, 8.730277, -22.490503, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 252.749008, 8.027106, -34.523930, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 291.456970, 8.180751, -27.886890, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Zaharakbattledrake_190' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 439.034088, 18.243265, -87.551544, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 409.083038, 12.749393, -100.036491, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 516.161255, 9.640808, -123.212944, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 510.886963, 9.023446, -136.208267, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Zanraklancer_739' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 124.528801, 14.027109, 143.175400, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -61.905880, 45.302959, 212.664902, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -93.827759, 45.827126, 199.145401, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 164.005997, 8.290737, -31.478350, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -88.853271, 43.381351, 152.910599, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Zanrakpugilist_740' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -23.016876, 39.417065, 203.709488, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -95.628304, 45.792240, 195.269699, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 114.879784, 16.027109, 14.440109, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 207.267319, 8.271753, 105.897232, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 76.596291, 26.120790, 210.481308, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Zaharakarcher_741' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 231.505280, 9.562332, 80.051132, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 73.678680, 10.340173, 15.870884, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Zanrakthaumaturge_742' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -46.072525, 44.210785, 221.914124, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -78.839142, 45.827122, 192.293228, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 103.105103, 15.030030, 20.462339, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 113.082199, 13.908605, 154.763260, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 345.326508, 8.950879, -44.180370, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'wildfiresprite_134' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 136.070587, 8.500033, 196.277740, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 145.806656, 14.325973, 242.050598, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 160.029892, 14.027109, 233.203278, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 128.394547, 9.821754, 312.606354, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Ifritsbeacon_2453' ) , 49, 5346 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 557.138977, 7.599622, -162.231705, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 554.650085, 7.583679, -67.246582, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 291.672913, 8.000000, -42.948238, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 349.712006, 9.286700, -45.325851, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 413.717804, 17.929260, -60.318909, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Zaharakfortune-teller_2457' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 449.282867, 18.623535, -90.035805, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 553.487549, 7.816592, -88.991714, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 445.805450, 17.459652, -108.979927, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 186.678925, 8.791388, 122.226891, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 311.563324, 8.075365, -35.431042, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Zaharaklancer_739' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 549.767212, 8.101091, -67.267418, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 569.926575, 7.679561, -77.731194, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 445.548096, 16.930063, -115.800697, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 287.709015, 8.027107, -40.641960, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 313.771210, 8.027107, -31.998230, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Zaharakpugilist_740' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 534.650330, 7.666656, -75.784973, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 359.487671, 10.546420, -39.838196, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 484.977386, 7.614197, -157.701996, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Zaharakarcher_741' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 551.979187, 7.748689, -87.737953, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 417.063385, 17.715700, -63.623531, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 481.528900, 7.614197, -157.915604, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 146, ( SELECT id FROM bnpctemplate WHERE name = 'Zaharakthaumaturge_742' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 552.483398, 7.688183, -164.965302, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 405.248047, 13.053968, -130.411453, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 112.391602, 9.231154, 192.303696, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 533.592712, 7.583679, -79.881042, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 635.665466, 7.823730, -67.334938, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 147, ( SELECT id FROM bnpctemplate WHERE name = 'earthsprite_131' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 272.346649, 26.259094, 14.642432, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 232.858307, 25.632786, 14.955478, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -136.924042, 74.971878, -202.032852, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -187.285172, 82.665749, -246.584930, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -150.597565, 81.648216, -329.199585, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -94.501595, 86.456268, -349.405518, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -34.358799, 78.512024, -196.636612, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -50.571785, 77.054176, -182.964096, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -120.578163, 69.538994, -169.659973, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -173.078644, 67.190193, -118.325851, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 10.842507, 25.616442, 164.051804, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 89.771095, 17.647955, 202.804016, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 149.738251, 22.061142, 219.128433, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 124.077728, 27.914995, 62.406277, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 192.330444, 35.835247, 19.689339, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 4.857788, 32.042034, 95.480743, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -63.526546, 77.684761, -227.584824, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -263.795624, 65.244659, -92.804619, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -44.372234, 4.636005, 328.819397, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 154.605530, 37.865871, -24.933550, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 160.656250, 38.166508, -15.688833, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 22.651194, 13.451909, 241.516846, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -197.692810, 75.537476, -182.811188, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 108.377419, 23.088291, 136.286377, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 26.977472, 8.868483, 301.567749, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -271.277985, 83.600578, -178.720932, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -264.468658, 81.996193, -172.338501, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -264.935974, 84.649086, -274.661774, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 147, ( SELECT id FROM bnpctemplate WHERE name = 'basilisk_173' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 150.453583, 27.128872, 54.885288, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 99.284470, 31.440422, 48.775787, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 25.711401, 31.254837, 91.673286, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -22.262447, 24.348066, 171.001144, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -2.365470, 23.606548, 180.301910, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 81.601257, 19.542013, 131.429626, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 84.008354, 27.618736, 82.069031, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 31.510628, 11.202947, 271.445587, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 55.694408, 16.873295, 265.157410, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -25.266243, 11.833083, 253.714188, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 147, ( SELECT id FROM bnpctemplate WHERE name = 'ahriman_183' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 199.150482, 39.068298, -32.129677, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 208.474136, 43.766556, -66.055115, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 174.022675, 35.356552, -49.180737, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 143.205338, 37.562992, -3.528185, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 122.927391, 37.525364, -0.135278, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 133.141998, 32.739376, 18.655071, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 147, ( SELECT id FROM bnpctemplate WHERE name = 'quartzdoblyn_188' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 97.320732, 17.268885, 246.863098, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 93.086929, 16.506996, 212.374573, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 115.842575, 22.799400, 258.606964, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 105.609512, 20.479364, 256.873932, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 116.140289, 21.188807, 199.365036, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 70.411377, 16.311975, 193.273621, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 94.223076, 16.391766, 238.424759, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 91.124290, 15.835924, 215.355652, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 147, ( SELECT id FROM bnpctemplate WHERE name = 'magitekvanguard_200' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -280.370941, 85.128975, -342.669586, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -212.039352, 82.803452, -311.552490, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -200.529449, 74.561211, -161.044113, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -207.655823, 79.736610, -226.101517, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -271.676758, 86.081673, -249.953674, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -249.982803, 84.872787, -296.114166, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -216.829193, 78.923370, -217.777039, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -268.001892, 85.625580, -209.143982, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 147, ( SELECT id FROM bnpctemplate WHERE name = 'grenade_327' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 239.578445, 26.181999, 86.762772, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 228.653030, 26.069843, 89.225342, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 219.075180, 25.109739, 68.360191, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 235.116760, 25.510574, 66.628998, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 181.621033, 24.552204, 104.644302, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 211.352570, 25.641911, 98.068253, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 184.394241, 23.285707, 81.178917, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 147, ( SELECT id FROM bnpctemplate WHERE name = '3rdCohorthoplomachus_55' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -92.361855, 75.995209, -237.000000, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -239.171371, 81.210640, -181.057037, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -232.581039, 74.035225, -137.754211, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 147, ( SELECT id FROM bnpctemplate WHERE name = '3rdCohortlaquearius_61' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -244.431381, 83.468681, -321.822327, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -141.470108, 79.503258, -285.622284, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -225.353302, 84.852760, -271.862854, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 147, ( SELECT id FROM bnpctemplate WHERE name = '3rdCohorteques_62' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -226.793793, 81.195198, -184.122299, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -176.621918, 74.364586, -179.232422, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -149.339554, 77.724770, -226.318283, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 147, ( SELECT id FROM bnpctemplate WHERE name = '3rdCohortsecutor_63' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -139.277405, 79.074280, -311.302856, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -182.730972, 83.621918, -273.177856, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -224.933304, 84.489143, -253.589706, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 147, ( SELECT id FROM bnpctemplate WHERE name = '3rdCohortsignifer_64' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -185.029236, 83.130669, -345.158630, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -152.762573, 79.673561, -293.347260, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -123.546707, 78.508194, -256.979431, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -226.367599, 84.489143, -253.589706, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -178.376755, 75.401794, -195.596054, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -226.989059, 81.125122, -187.777740, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'diremite_10' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -21.628685, 1.061885, -137.422470, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -121.822311, 10.889467, -171.708679, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -128.000000, 13.577934, -164.798004, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -175.173904, 3.043425, -102.049179, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -111.489006, 6.341215, -143.777435, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -35.803215, -4.827935, -88.829384, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -60.013268, 0.083621, -166.178970, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -66.153580, 1.041577, -164.378342, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -82.199898, 1.694072, -142.144104, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -76.462738, 1.296831, -145.068008, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -77.473900, 1.008707, -137.105881, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -61.553284, -2.327822, -119.974693, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'roselet_22' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 92.963821, -27.435154, 270.669739, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 103.274307, -24.632656, 295.424225, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 95.803177, -25.286867, 283.650604, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 53.837082, -22.388355, 293.875549, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 71.492561, -22.994869, 282.575226, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 112.401665, -26.877176, 251.655502, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 130.955597, -28.829510, 290.412109, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 55.501083, -23.877287, 268.858612, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 53.453354, -24.698858, 262.820648, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 28.990419, -23.865816, 230.163635, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 38.474773, -18.248474, 194.654251, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 41.179913, -26.373119, 259.201996, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 38.401993, -24.890810, 241.436737, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 90.396263, -24.856871, 241.098450, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 83.639015, -26.263350, 272.387512, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 84.997978, -20.864256, 215.338074, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 72.956024, -10.983517, 156.957138, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 84.185547, -19.389683, 206.446136, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 88.626221, -10.944998, 168.910522, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 45.582161, -12.419448, 163.349792, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 46.162750, -17.224142, 189.141357, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 66.079430, -18.299120, 187.545395, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 90.989685, -11.588077, 173.469421, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 110.889450, -8.618326, 160.544571, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 105.350967, -7.611373, 153.676712, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'hornetswarm_57' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -167.230057, 1.903774, -13.731684, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -178.179077, 5.516150, -119.062088, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -199.247559, 2.972281, -21.075798, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -23.393768, 1.128686, -138.798370, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 98.301628, -24.018532, 292.677338, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 102.405472, -20.056805, 219.437836, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -207.007538, 1.498474, -65.815094, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 88.702942, -24.807083, 242.654404, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 38.844570, -23.761169, 234.167419, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -58.791592, 0.482847, -163.756653, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -115.049255, 8.475297, -152.844223, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -95.679504, 2.066510, -117.595428, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -96.907829, 1.960494, -118.052917, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 91.777473, -15.205773, 190.824478, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -160.223724, 17.572083, -68.077675, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 79.820824, -13.008604, 173.216446, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -169.354004, 26.867769, -85.326767, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -170.288040, 27.260298, -85.899101, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -18.400000, -1.692394, -105.400002, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -54.026630, -4.655549, -93.328072, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 48.249790, -14.996393, 177.209091, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 82.102264, -12.208728, 170.790237, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'Qiqirnscrambler_771' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -212.568405, 1.504992, -84.178993, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -213.856293, 1.439267, -83.871033, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -222.971802, 0.685278, -66.537102, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -200.471252, 3.402261, -106.832718, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -205.325211, 2.934023, -97.279800, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -216.316330, 1.852328, -92.422066, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -214.172699, 1.359615, -82.278023, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -193.905304, 2.329746, -41.069290, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -195.513901, 2.810355, -40.186169, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -200.485855, 2.525317, -62.684227, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -189.165512, 2.934123, -78.306992, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'arborbuzzard_12' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 366.871674, -32.401142, 412.022308, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 223.340912, -28.733643, 423.597931, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 214.529922, -32.015060, 388.627380, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 298.119202, -32.812939, 410.921906, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 342.283875, -31.398991, 408.073364, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 363.956757, -32.091961, 436.908508, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 377.352844, -31.827904, 447.103149, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 384.155212, -31.663025, 436.299469, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 236.948853, -30.222733, 402.539429, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'treeslug_39' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 137.673355, -22.947695, 454.014984, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 135.439377, -22.593443, 450.299408, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 122.868286, -20.297173, 455.159607, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 198.445663, -25.744005, 437.670288, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 200.035538, -31.805525, 414.145264, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 177.062286, -21.793236, 465.750458, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 172.907990, -25.828238, 457.407288, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 170.063431, -27.721090, 443.054413, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 151.210205, -24.042336, 407.719543, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 161.037720, -23.966667, 501.846741, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 140.785156, -20.947470, 517.044128, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 146.812714, -22.009941, 517.973572, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 173.288422, -30.252390, 392.219788, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 193.999023, -32.778576, 370.144958, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 166.260681, -29.262089, 390.371765, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 172.326401, -29.031742, 397.002136, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 173.665894, -30.627438, 391.092224, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 207.766571, -28.642542, 424.349548, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 217.412415, -27.950277, 422.768738, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 218.525162, -31.581652, 395.687103, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 195.270355, -32.527424, 371.755768, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 146.349457, -28.371782, 358.761475, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 181.636566, -32.096828, 366.900238, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 139.986450, -27.078384, 338.739105, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 164.859375, -31.857883, 331.353821, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 164.710297, -31.769693, 354.468109, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 275.231232, -31.009758, 392.433319, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 274.985840, -31.339169, 390.300018, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 308.988922, -32.292389, 395.732330, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 298.894775, -32.433437, 409.564178, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 340.958191, -30.812187, 440.105194, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 335.146240, -31.570524, 412.483978, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 331.070190, -31.518383, 404.851624, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'hornetswarm_57' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 178.322464, -22.760355, 462.363007, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 152.464340, -25.277473, 446.155548, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 132.154541, -20.902292, 489.347412, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 130.838974, -19.703629, 415.125610, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 167.600006, -28.092390, 398.534088, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 183.339462, -32.190460, 368.880737, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 210.940552, -31.227783, 401.603241, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 254.642197, -29.904444, 409.563843, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 153.153229, -30.626743, 344.506226, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'diremite_10' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -78.338577, -27.788364, 377.030365, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 3.695499, -28.946325, 393.566162, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -65.314896, -31.808357, 347.798553, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -131.726898, -29.710154, 336.497589, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -138.996429, -24.364408, 264.629181, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -69.169128, -31.637348, 346.756592, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -21.657040, -24.550268, 266.611420, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -13.899203, -23.649124, 262.723785, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -9.308218, -27.439459, 351.381256, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 14.200935, -26.319284, 294.082031, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -108.991608, -30.299643, 271.951141, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -26.358397, -27.830235, 281.243225, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -49.000000, -35.892399, 313.799988, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -0.713101, -27.106274, 326.286743, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -10.412036, -28.364920, 333.574677, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -173.735062, -26.539701, 298.739655, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -172.555740, -27.375446, 287.336456, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -56.487461, -27.324949, 295.789703, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'treantsapling_1446' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -24.644939, 1.910532, -222.656082, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 335.029297, -0.733251, -346.565125, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 288.999542, -0.676019, -278.587769, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 166.277710, 4.292109, -167.523819, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 49.695900, 9.628961, -246.828232, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'firefly_306' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -114.765442, -39.467369, 298.124542, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -103.033188, -39.877441, 322.611816, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -93.810493, -39.894100, 301.496857, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -86.546356, -39.752750, 325.814392, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'hornetswarm_57' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -61.879131, -31.773855, 350.113678, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -43.183121, -30.871151, 365.910309, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -103.683823, -30.205681, 271.887878, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 11.840358, -30.212530, 276.275146, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 1.602265, -27.095432, 316.985504, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -21.404165, -30.012411, 285.749634, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -123.467873, -24.859665, 358.070404, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -164.976135, -27.615164, 297.350220, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -145.515106, -28.940987, 308.539520, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'magickedbones_20' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -119.995438, -38.550632, 310.434265, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -98.390495, -39.841999, 296.969635, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -118.191437, -38.825581, 314.576813, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -107.986366, -39.247913, 302.945679, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -88.858032, -39.903397, 319.021149, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -89.556740, -39.984810, 303.427277, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -86.904602, -39.529846, 286.260223, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -94.953033, -39.893120, 312.189362, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'roselet_22' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -54.687691, -31.346540, 422.569794, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -81.372658, -35.789463, 468.108215, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -62.727562, -35.406391, 450.055908, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -45.928879, -33.671478, 431.249451, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -76.665840, -35.810150, 462.182556, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 2.396050, -33.291988, 435.106445, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -37.264236, -30.635447, 410.295898, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -48.578239, -36.469425, 468.561157, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'hornetswarm_57' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -84.835999, -35.663269, 468.651733, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -61.334869, -32.817913, 434.129944, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -27.977884, -32.469051, 410.050476, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -8.920985, -33.477440, 431.857513, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'treeslug_39' ) , 14, 293 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -206.910126, 4.808809, 6.238858, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -293.075775, 21.450588, 167.214005, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -333.803802, 21.822042, 164.594513, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -257.753510, 14.285810, 57.554123, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -243.057785, 13.020657, 51.510540, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -241.487534, 14.996897, 59.638355, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -251.611023, 8.764174, 14.704113, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -298.098724, 21.497131, 165.442032, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -268.336273, 20.383064, 91.554504, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -334.946686, 21.881182, 166.610153, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -352.745850, 21.307608, 196.555359, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -294.487976, 21.102627, 125.369781, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -291.525635, 20.444477, 130.491730, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -301.484161, 21.516384, 135.435883, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'hornetswarm_57' ) , 14, 293 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -264.065857, 17.431211, 56.067650, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -288.414795, 21.546160, 202.315430, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -331.383759, 21.253107, 208.568344, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -327.148743, 21.376703, 208.266205, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -338.915009, 21.307611, 156.285309, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -241.669235, 8.185644, 3.426115, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'treantsapling_1446' ) , 17, 369 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 397.469940, 18.444693, 82.340118, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 271.518402, -2.576491, 59.584904, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'groundsquirrel_37' ) , 1, 44 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 66.167007, 15.307610, -259.953857, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 67.144295, 15.124450, -259.230743, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 86.491623, 17.928190, -266.097076, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 104.258797, 15.556482, -265.650421, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 115.743187, 16.881918, -260.347870, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 120.310646, 18.418665, -250.166595, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 116.352554, 17.825777, -247.641937, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 1, 44 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 114.757286, 16.642553, -259.313324, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 77.254471, 11.407258, -243.113861, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 86.954445, 15.044180, -259.695038, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 101.793892, 14.264322, -256.205750, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 115.593689, 17.858650, -243.403168, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 117.021400, 25.101040, -311.604492, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'strikingdummy_901' ) , 1, 44 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 95.628906, -2.029270, -42.382439, 0, 2280260 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 126.418900, -6.971872, -84.529358, 0, 4295664 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 126.695297, -6.948534, -90.459633, 0, 4295663 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 137.910706, -6.438695, -96.608414, 0, 4295662 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 132.951797, -6.332520, -100.114502, 0, 4295661 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 127.641701, -6.332520, -100.389198, 0, 4295658 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 104.146896, -1.968804, -48.332958, 0, 2280263 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 101.467598, -2.005454, -46.176739, 0, 2280262 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 98.693558, -2.029731, -43.942860, 0, 2280261 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'lightningspark_2267' ) , 29, 783 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -286.146332, 59.530861, -122.253304, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -295.260284, 62.401405, -173.847031, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -300.941650, 59.946960, -127.583969, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'toadstool_48' ) , 29, 783 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -292.206238, 61.086544, -110.185509, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -292.247803, 67.603218, -219.369263, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -297.000000, 68.907608, -227.800003, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -242.329651, 68.054695, -181.488235, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -241.623581, 69.088776, -183.513229, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -289.361572, 60.892815, -169.598358, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -304.102295, 62.585384, -169.120514, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -302.212830, 61.045906, -159.708511, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'groundsquirrel_37' ) , 2, 51 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -2.528153, 5.176176, -235.953568, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -11.479017, 4.058876, -233.589691, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -18.314774, 1.404344, -200.577591, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 7.282665, 5.194685, -250.797653, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 11.726212, 3.730412, -142.597839, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -1.575045, 2.095117, -195.439224, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 53.175835, 4.496076, -187.542358, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 62.709656, 4.596783, -180.847031, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 53.182411, 4.455481, -171.789734, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 48.764153, 8.261503, -235.314056, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 10.642900, 3.209663, -174.285065, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -1.151902, 1.660734, -188.397446, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 72.863739, 5.607924, -211.782242, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 56.545700, 4.935702, -212.107346, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 40.578846, 7.413813, -227.456131, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 41.994431, 6.967479, -224.553848, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 50.408363, 6.947949, -225.869202, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 2, 51 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -13.620067, 3.505695, -232.457352, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -11.901383, 3.809819, -222.309692, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 0.215290, 4.685366, -248.414154, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 12.126127, 5.354530, -251.916016, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 17.018568, 3.559257, -142.131882, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 2.843504, 2.669379, -146.886734, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 6.296951, 2.111675, -187.778305, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 37.561131, 4.788309, -179.359787, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 37.901348, 3.998760, -188.162079, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 48.618702, 6.037545, -220.384094, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'lightningsprite_135' ) , 30, 821 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -271.880280, 62.611732, -53.752232, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'broodziz_178' ) , 30, 821 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -208.293823, 52.758022, -45.333527, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -261.914154, 62.657578, -43.638744, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -216.433990, 57.628166, -75.207260, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -217.328003, 58.226143, -65.274490, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -276.473053, 61.177063, -83.806122, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -302.544525, 62.065811, -102.909180, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -296.109558, 62.439728, -47.456741, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -309.692657, 62.788967, -44.174625, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -275.649811, 61.133385, -80.512054, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -263.113770, 62.712627, -44.141258, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -305.905365, 62.793114, -45.590145, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'lightningsprite_135' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -418.251160, 61.672665, -133.374435, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -397.066376, 57.516376, -84.005844, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -421.167786, 54.518047, 71.123154, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -405.385101, 53.060257, 38.368351, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'floatingeye_182' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -538.111877, 65.672928, 44.564358, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -513.384155, 65.483177, 40.096611, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -525.788696, 65.579468, 62.222652, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -461.700409, 64.726295, 73.442909, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -500.955963, 65.522057, 93.421356, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -523.628479, 65.585747, 104.671616, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -534.147278, 65.528175, 103.231544, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'halitostroper_2193' ) , 31, 8208 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -317.819763, 57.696182, -8.929182, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -305.340637, 59.271221, -14.566124, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'stroper_304' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -429.851074, 49.648529, 38.221916, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -443.478394, 50.433273, 39.598923, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -432.981415, 49.750061, -4.351254, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -381.120361, 52.293827, 54.740486, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -395.664764, 51.307610, 70.650505, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -398.118134, 49.507610, 10.714074, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'lindwurm_53' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -458.150574, 62.857433, -110.070641, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -349.154510, 62.766556, -148.890518, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -353.189789, 62.034351, -146.958237, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -360.482025, 62.270634, -84.152245, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -364.383331, 61.784962, -88.643425, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -430.475494, 60.711987, -150.932205, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -435.276550, 61.817631, -143.543671, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -405.433929, 60.715908, -118.554680, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -460.987854, 63.258846, -109.206444, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -417.604492, 60.832336, -96.873138, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'lightningsprite_135' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -381.971161, 64.893814, -231.869965, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -344.491089, 66.967545, -229.602722, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'revenant_305' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -507.166077, 40.730812, -55.123989, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -512.589783, 40.451389, -57.263180, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -521.051331, 41.095329, -64.560547, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -504.136841, 42.000988, -79.365364, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -517.490295, 40.473141, -80.252365, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -516.832581, 40.340240, -79.248672, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -482.618500, 46.192268, -63.448048, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -483.666351, 46.634438, -65.671326, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'toadstool_48' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -349.420074, 66.982285, -253.600815, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -355.007874, 65.781898, -252.972595, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -399.194092, 64.243942, -219.335800, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -390.065125, 66.106239, -245.332535, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -364.309692, 67.191872, -230.971756, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -347.182648, 66.323082, -216.547180, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -347.029022, 67.257912, -223.775009, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -348.727081, 66.979897, -219.891495, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'spriggan_100' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -481.528931, 73.831612, -316.010773, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -484.184418, 59.057884, -214.198959, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'spriggan_101' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -452.424774, 56.082920, -204.369934, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -487.150085, 67.084915, -264.065277, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -486.103607, 58.589809, -218.526840, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -449.544220, 55.706600, -205.484741, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -450.707855, 55.081936, -200.056580, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -453.394989, 63.400047, -237.669342, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'lightningsprite_135' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -311.619995, 63.842651, 59.931488, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -363.378754, 57.600697, 64.623650, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'lindwurm_53' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -448.624268, 58.943466, -21.592375, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -454.034515, 61.003143, -25.180174, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -420.449615, 60.864471, -39.857586, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -422.445862, 65.107483, -54.479034, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -417.758667, 64.429436, -55.815784, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'deathgaze_58' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -208.058502, 58.330593, 54.437634, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -188.994675, 77.723534, 40.851051, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -238.918060, 59.876083, 38.685356, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -220.992752, 68.536743, 9.121392, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -194.403503, 76.980164, 37.403389, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -288.271057, 62.208015, 21.751917, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -257.616211, 54.147041, 35.823227, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'spriggan_98' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -504.119598, 73.229721, -287.511475, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -459.161133, 64.497185, -263.253479, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'spriggan_99' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -471.336487, 76.728569, -315.519531, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -506.240906, 73.924149, -292.194061, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -475.716370, 71.613297, -301.749329, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -486.700165, 66.754646, -261.870972, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'spriggan_100' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -505.629547, 57.854435, -255.961960, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -533.410522, 44.839771, -230.782425, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -553.736572, 47.516403, -246.737274, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'spriggan_101' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -570.061707, 50.518024, -221.209656, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'lightningsprite_135' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -484.362457, 68.261650, -278.199463, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -525.565186, 49.125813, -241.042847, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -572.891113, 52.771267, -212.991180, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -504.273041, 73.515327, -290.644348, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -233.293365, 63.694317, 27.566612, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -191.261719, 74.748039, 20.972414, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -468.008850, 58.857979, -211.494324, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'spriggan_98' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -563.650818, 49.536648, -206.461700, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -552.559143, 52.042721, -199.673050, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -549.064087, 51.594975, -199.783020, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -508.603546, 53.689476, -227.801895, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'spriggan_99' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -546.693542, 47.480297, -244.264114, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -530.769409, 49.600502, -248.386780, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'forestfunguar_47' ) , 3, 59 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 140.736008, 0.556020, -116.883057, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 138.233536, 0.170292, -146.627121, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 160.308609, -0.206951, -111.697632, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 160.917053, -0.473681, -116.542183, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 196.927078, -2.465995, -156.309906, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 141.487976, 2.054899, -159.595490, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 166.564407, 0.015139, -143.008926, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 161.146866, 0.496262, -143.743286, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 175.732224, -0.806292, -143.377182, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 134.156067, 5.573397, -184.313446, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 131.653671, 5.380612, -184.893066, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 144.125809, 3.159899, -161.654007, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 87.716003, 4.182068, -188.699982, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 105.706215, 5.804169, -199.727386, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 127.145210, 3.926286, -179.552734, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 3, 59 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 180.242340, -3.015833, -91.115181, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 168.161575, 1.272134, -157.713287, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 166.125992, -0.926730, -133.980331, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 128.712326, 5.598165, -187.152130, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 130.363525, 1.752334, -169.338562, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 91.499687, 3.491999, -190.844223, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 111.885643, 0.926015, -165.263443, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 143.926758, 1.974709, -159.078049, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 144.163559, 1.340955, -121.404167, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'spriggan_100' ) , 43, 2046 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -578.904724, 11.431134, -133.284775, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -563.888000, 20.098658, -186.063736, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -578.919861, 21.708845, -217.575699, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -531.328369, 25.160585, -257.297577, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'spriggan_101' ) , 43, 2046 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -615.543762, 22.639528, -192.264648, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -538.517761, 19.883238, -193.815613, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -597.619446, 21.408043, -226.737762, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -514.655701, 22.295750, -222.432373, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -558.318115, 25.191368, -259.209198, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'cratergolem_30' ) , 43, 2046 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -520.319946, 23.071487, -231.693390, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -494.949768, 22.547203, -245.225250, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -572.461975, 11.442620, -134.661057, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'spriggan_98' ) , 43, 2046 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -572.304932, 11.340007, -132.510910, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -485.387878, 18.743610, -230.645233, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -524.742371, 19.634649, -192.416138, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -586.259216, 22.336105, -242.424484, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -555.724304, 29.067717, -230.939896, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'spriggan_99' ) , 43, 2046 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -570.673767, 11.352617, -131.598907, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -525.354004, 19.994576, -195.493134, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -581.916077, 22.630146, -241.140320, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -524.657593, 25.309645, -249.380753, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'forestfunguar_47' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 305.662292, -1.021191, -348.412140, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 306.269989, 0.940447, -253.961487, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 330.576050, -0.158596, -295.815887, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 301.096985, -0.928347, -304.392242, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 298.200928, -0.873611, -312.043793, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 258.980072, 2.263419, -243.335648, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 261.958679, 2.672313, -226.650192, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 259.825317, 2.130591, -244.423141, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 321.987244, -0.631505, -285.484436, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 321.167175, -1.046319, -291.732452, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 176.575195, -2.241875, -107.708168, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 246.724380, -1.479862, -188.387253, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 272.038422, 1.471552, -312.112305, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 225.100677, -7.262755, -133.689789, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 223.060532, -6.936258, -135.638458, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 196.831360, 1.392886, -178.362076, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 209.008728, -2.032586, -173.396881, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 204.855988, -1.690521, -171.252060, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 230.372772, -3.769577, -183.646286, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 235.460724, -1.069127, -190.718079, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 344.416809, 0.223279, -325.853546, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 327.380035, 1.760138, -247.215637, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 328.354675, 0.987279, -254.909210, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 341.329468, 1.977545, -264.194916, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 279.216858, -0.885993, -257.717224, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 259.705139, 2.424769, -228.256317, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 240.308380, -1.928065, -187.499252, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 325.309998, -0.882787, -312.222015, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 320.135193, -1.087055, -317.080627, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 267.962891, -0.034693, -327.069885, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 274.053864, -0.434454, -328.816528, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 272.200531, -0.468665, -334.166656, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 283.538818, 0.446356, -297.760315, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 223.475006, -6.609851, -123.111938, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 219.005142, -5.646709, -158.370895, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 207.131866, -2.193239, -170.202881, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'chigoe_43' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 334.233459, 0.613522, -193.467270, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 344.869965, 0.157746, -180.838699, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 323.540527, -0.883288, -190.566910, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 305.287018, -2.830923, -187.875610, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 299.026642, -5.584953, -121.246628, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 302.262604, -3.291201, -189.874756, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 311.229858, -2.119687, -187.766403, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 288.000000, -3.819348, -171.631302, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 316.181305, -1.143342, -171.203598, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 341.916412, -0.292610, -174.434128, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 293.591125, -6.942686, -125.807846, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 286.251404, -6.163513, -149.044464, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 286.440704, -6.361675, -146.645264, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 357.149689, -1.040577, -180.583679, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 331.357513, -2.953406, -151.840576, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 328.247589, -3.172609, -147.523209, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 208.181061, -9.296268, -10.411785, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 270.837921, -8.639899, -115.911400, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 217.505585, -7.490836, -59.856461, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 218.384094, -7.438202, -63.378551, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 226.123581, -7.626600, -63.967369, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 205.062592, -6.544302, -75.893188, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 206.329437, -7.267363, -66.431221, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 193.415039, -8.669317, -26.152889, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 210.701904, -8.972980, -40.749123, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 181.295898, -6.202855, -58.265945, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'watersprite_59' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 286.673309, -5.574018, -190.999634, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 273.888153, -8.053074, -144.305984, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 215.948837, -8.447237, -48.509205, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 222.143921, -9.264481, -46.063717, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'blackeft_160' ) , 6, 108 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 258.783234, -11.349408, -190.315155, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 248.254761, -11.593641, -144.884491, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 250.194702, -11.504831, -164.250656, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 256.812103, -11.628697, -175.497269, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 236.730453, -11.526602, -19.194292, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 254.781387, -11.182795, -110.800591, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 202.800522, -11.692389, 28.832262, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 215.850540, -11.457581, 8.588143, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 212.071182, -11.588571, 18.438723, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 252.415298, -10.526624, -73.310196, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 258.769623, -11.271407, -72.741806, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 254.808487, -11.631793, -58.362598, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'microchu_32' ) , 6, 108 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 333.817780, -2.380129, -1.972529, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 358.095245, -2.255435, -148.021194, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 294.154236, -4.761759, -78.371590, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 313.348480, -5.043727, -80.032097, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 307.713867, -5.243200, -74.953217, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 353.547821, -1.672768, -130.556580, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 365.028564, 1.556683, -124.524635, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 317.173218, -4.932594, -105.698776, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 339.207642, -5.050605, -78.434830, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 334.936157, -3.077143, -26.366526, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 348.769073, -1.921324, -28.791388, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 342.838043, -4.039585, -40.977337, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 367.789856, 0.049862, -38.110950, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 372.431000, 1.609074, -28.299686, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'watersprite_59' ) , 6, 108 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 249.344086, -7.991405, 27.426712, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 202.603287, -10.902637, 17.734653, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 264.662781, -10.729365, -183.365585, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 254.697693, -11.655851, -158.948883, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 262.364929, -10.738122, -89.782700, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 260.276611, -11.155910, -93.329063, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 262.232025, -10.836307, -61.489841, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 234.431534, -11.692390, -2.064034, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'bogyarzon_159' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -48.094658, -3.492393, -178.066116, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -52.943729, -3.492393, -181.722839, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -60.539597, -2.121591, -208.572952, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -69.649757, -3.445135, -201.444565, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 50.935490, -11.403753, -39.089687, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 14.346420, -11.393628, -75.021034, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 22.525948, -11.521127, -69.671989, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 8.444212, -11.053284, -108.971825, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 116.723526, -10.465998, 122.086159, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 191.877533, -11.692391, 51.169125, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 192.367874, -11.530526, 76.312683, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 193.008987, -11.407657, 93.455399, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 175.390198, -11.625326, 107.052254, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 165.482605, -11.208490, 121.841263, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 144.394287, -11.692389, 124.722542, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 133.194092, -11.422572, 141.006027, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'chigoe_43' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 314.238403, -5.082119, 18.039581, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 315.641663, -5.223628, 15.458561, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 345.640594, 6.891025, 89.819016, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 336.659546, 3.151285, 72.228638, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 358.733612, 5.763306, 57.338543, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 341.029602, 3.690393, 68.391296, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 310.729889, 3.829218, 100.381714, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 330.691650, 3.409940, 87.259094, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 307.999603, 1.906760, 90.915855, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 347.746765, 0.794945, 29.754431, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 354.453644, 4.086077, 51.007965, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 344.666199, 3.260879, 53.432526, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 341.608826, -0.222734, 24.127121, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 283.493439, -4.696930, 47.932442, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 303.253021, -1.585612, 62.708767, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 281.861755, -6.629392, 21.513515, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 289.251923, -4.726089, 47.201977, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 367.964264, 8.079945, 59.077457, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 371.590607, 6.378487, 48.575005, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'watersprite_59' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -41.532207, -3.492393, -183.480911, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -52.362671, -2.521288, -207.506180, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 181.824173, -11.118093, 103.376045, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 188.943970, -11.692391, 62.494408, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 98.912674, -11.588365, 103.349068, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 99.814499, -11.556159, 113.313568, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -4.143238, -2.632284, -137.923370, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -3.013982, -10.964988, -123.532799, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -5.810508, -3.181231, -139.965515, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 136.137161, -11.692389, 129.102509, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'hoglet_14' ) , 8, 143 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 440.445648, 33.240917, 99.734444, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 430.364319, 32.685429, 123.358475, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 433.976593, 31.638565, 101.751160, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 411.182404, 26.315029, 122.887962, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 378.267151, 12.657194, 81.281189, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 385.368744, 14.819519, 84.489403, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 393.840454, 19.738405, 102.376328, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 413.952423, 20.693201, 64.327431, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 417.549347, 23.964783, 79.423454, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 419.181335, 27.737553, 108.166237, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'microchu_32' ) , 8, 143 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 414.438812, 6.148210, -73.119606, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 413.778259, 5.580954, -65.780167, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 385.008606, 3.723548, -97.523209, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 390.684723, 4.562220, -89.027565, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 414.253967, 6.728226, -106.147934, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 400.643768, 5.380632, -105.250557, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 410.817352, 5.846823, -112.569466, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 385.626099, 0.400426, -69.956879, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 381.060638, 2.475254, -86.477562, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 401.691956, 3.534089, -45.266487, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 420.634033, 6.517999, -39.367981, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 425.196686, 8.362243, -43.533318, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 417.931519, 5.548330, -39.705776, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'syrphidswarm_41' ) , 8, 143 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 211.989883, 23.507608, 225.120621, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 311.461945, 7.953541, 129.505371, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 239.435150, 24.180822, 178.418503, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 228.454086, 23.537071, 169.221191, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 229.960220, 23.696301, 215.005569, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 210.855469, 23.507610, 229.394638, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 321.611633, 8.892811, 129.881866, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 323.082733, 9.456532, 132.123871, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 286.168640, 18.555271, 164.277100, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 285.550354, 19.352026, 171.034729, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 275.680481, 24.507610, 196.747406, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 275.008026, 24.245691, 187.869003, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'anole_142' ) , 9, 160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 505.611786, 43.417732, -30.073311, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 478.921173, 24.250208, -121.875801, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 482.156555, 31.361853, -49.103958, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 489.050354, 32.369301, -45.255116, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 491.917145, 31.897884, -54.863464, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 502.874817, 42.243210, -46.672058, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 517.604980, 45.097282, -40.586594, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 437.769592, 9.962354, -109.898323, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 456.074799, 15.413954, -86.382790, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 451.414307, 31.739744, -12.684105, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 484.050018, 24.845512, -89.707993, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 479.578583, 23.557650, -91.003860, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 461.006226, 26.053926, -34.465263, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 453.758850, 27.872454, -29.958651, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 460.244629, 26.670668, -32.016369, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 447.806885, 29.902573, -14.827885, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 480.732666, 41.373207, -11.362085, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 485.393951, 41.960804, -10.944053, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 503.731201, 29.441204, -89.311058, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'tricksterimp_21' ) , 9, 160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 235.169693, 23.507610, 156.064682, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 228.639709, 23.507610, 230.940445, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 226.474167, 23.507610, 224.669327, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 228.472366, 23.630144, 171.304016, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 205.893356, 23.655724, 170.137970, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 319.777130, 14.101140, 159.498215, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 289.344971, 18.107611, 160.978500, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 290.868835, 16.759907, 165.955276, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 286.551727, 21.573780, 185.827164, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 284.842560, 22.419706, 190.588272, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 232.547607, 23.688934, 214.163193, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 209.818222, 23.747705, 211.078262, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 207.371765, 25.061598, 203.609802, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 231.607925, 23.709152, 218.891388, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'chigoe_43' ) , 9, 160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 90.883591, -5.191360, 10.396137, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 188.019302, -8.842469, -3.215608, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 161.552780, -7.888278, -13.179175, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 155.912720, -7.345370, -22.551830, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 128.703705, -5.300603, 8.121663, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 121.117569, -4.432164, 19.477554, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 125.060272, -7.281980, 57.795414, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 125.850037, -7.302916, 55.745506, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 99.641930, -6.955222, 45.195335, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 99.045570, -7.312560, 48.311047, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 148, ( SELECT id FROM bnpctemplate WHERE name = 'watersprite_59' ) , 9, 160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 83.748947, -6.458734, 18.077217, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 85.885735, -5.979955, 7.387532, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 180.750793, -7.612096, 2.741805, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 104.039116, -7.263025, 73.501709, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 103.993553, -7.988765, 77.247459, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'treeslug_39' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -455.887421, 12.486808, 267.419342, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -417.313110, 9.347687, 294.530731, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -421.296143, 9.868149, 292.592163, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -386.929840, 5.419418, 281.922516, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -411.347839, 4.169642, 269.100983, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -428.222504, 8.455313, 277.710846, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -427.102386, 7.476604, 274.712799, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -454.833466, 3.241852, 238.591034, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -457.034821, 5.039994, 241.860733, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -471.434967, 8.722139, 243.265854, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'hornetswarm_57' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -423.794769, 12.970410, 311.081909, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -468.345398, 9.158700, 247.387299, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -456.520599, 13.089064, 269.231171, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -410.628204, 5.588542, 276.812653, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -432.557709, 6.999351, 267.703400, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'northernvulture_12' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -479.414825, 8.379493, 104.014137, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -473.033112, 6.058814, 104.083206, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -486.743439, 8.622768, 63.309109, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -515.687927, 12.383446, 117.593300, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -502.318115, 9.481767, 101.175140, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -502.774139, 10.105593, 109.241531, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'hornetswarm_57' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -467.105347, 3.910781, 124.273293, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -507.143951, 10.503958, 107.664307, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -501.351135, 11.019590, 122.884933, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'goblinhunter_769' ) , 11, 217 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -401.218414, 11.367920, 318.654388, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -398.236786, 11.123780, 318.544708, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -389.459137, 12.356929, 323.339172, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -388.532471, 9.014496, 309.416382, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -399.718811, 10.832540, 315.967102, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -407.562225, 11.363725, 314.531250, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -390.941528, 9.100619, 308.374817, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -409.809326, 12.212138, 316.929230, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'treeslug_39' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -402.707397, -0.033791, 185.347153, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -406.744110, 1.123732, 244.710190, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -433.212494, 1.686168, 237.426041, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -427.717407, 1.600861, 233.611084, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -440.226105, 2.026883, 209.294586, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -435.446381, 2.809651, 186.282867, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -398.353180, -0.033791, 190.932587, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -449.913849, 0.779894, 183.709442, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'hornetswarm_57' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -382.668365, 0.218106, 182.710632, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -433.769592, 2.103829, 213.454010, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'mandragora_118' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -366.920837, 0.080455, 191.902405, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -362.939056, 0.630107, 209.708176, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -368.031128, 0.746524, 202.731445, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -375.642792, 0.790439, 204.174179, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -360.816528, 0.494692, 211.857025, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -357.870178, 0.365697, 195.724472, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -358.758759, 0.481367, 199.431046, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -376.068481, 0.740044, 203.421402, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'northernvulture_12' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -382.923248, 1.608193, 236.432175, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -386.954956, 0.196421, 226.548492, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -356.099731, 4.632757, 289.609406, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -344.005432, 3.507107, 291.465424, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -363.413116, 0.407165, 233.731842, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -348.805267, -0.839401, 243.402267, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -339.275330, 1.245934, 193.657410, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -378.583191, 6.792902, 296.742981, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -354.447144, 8.960446, 315.910950, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -353.744934, 2.187344, 274.222839, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'hornetswarm_57' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -345.120789, -0.041097, 265.634186, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -365.316376, 0.782450, 207.218765, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -365.801392, 0.455116, 234.998322, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -371.460876, 4.556480, 282.798248, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'wildhoglet_14' ) , 14, 293 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -393.467865, 1.044611, 109.297333, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -382.996674, 0.995502, 134.795792, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -435.436859, 0.923809, 92.855949, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -415.372681, 0.183877, 90.199524, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -409.974609, 0.423914, 92.952286, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -432.187683, 0.447537, 164.606186, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -411.781799, 0.289565, 149.618027, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -421.675385, 0.752986, 146.215408, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'treantsapling_1446' ) , 14, 293 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -405.233002, 0.754129, 98.793472, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -417.321930, 0.422892, 76.540977, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -396.755646, -0.094973, 151.673172, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -392.007904, -0.131214, 205.565994, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -420.397522, 0.658672, 195.552017, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'hornetswarm_57' ) , 14, 293 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -430.882538, 1.894843, 126.107140, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -416.782501, 0.318148, 70.307693, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -392.617950, 0.993306, 73.597610, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -398.553101, 0.360399, 76.964264, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'boringweevil_36' ) , 15, 319 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -207.374222, -5.438763, 204.847519, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -230.403473, -4.693077, 206.132629, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -257.662598, -3.458369, 229.030350, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -322.824005, 9.970474, 337.774475, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -329.515717, 6.919007, 314.133087, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -320.484253, 8.865358, 334.483887, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'lemur_6' ) , 15, 319 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -242.734543, -5.304779, 227.649811, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -256.366089, -2.918437, 217.821426, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -266.582123, -2.942757, 239.966599, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -230.559570, -4.117649, 201.455032, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -184.851715, -6.825181, 235.009308, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -194.494217, -7.153209, 219.000412, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -198.602768, -7.619131, 222.627182, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -322.644287, 8.732259, 329.832855, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -322.095062, 8.377511, 328.377502, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -331.820251, 4.540683, 302.573456, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'boringweevil_36' ) , 16, 344 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -135.463516, 4.871188, 372.047577, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -92.471230, -7.367242, 293.672241, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -122.186081, 2.004307, 352.013977, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -108.953781, -7.885828, 274.979919, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -122.201218, -6.425428, 292.356506, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'faeriefunguar_47' ) , 16, 344 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -93.392921, 3.184630, 367.220245, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -97.524597, 3.438208, 365.629639, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -97.396141, 2.395185, 353.704163, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -116.414330, 2.320663, 354.238251, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -113.590958, 1.890718, 351.185547, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -134.570511, -0.194040, 342.094971, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -126.456886, 2.853508, 359.138153, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -133.911316, 6.278300, 379.355133, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'giantgnat_7' ) , 16, 344 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -95.400002, -7.033791, 288.399994, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -124.581276, -5.112325, 295.251678, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -120.516579, -7.783601, 273.336761, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -126.193726, -7.633670, 268.721283, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -128.839355, -7.592839, 224.921127, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -130.287415, -7.256685, 225.909195, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -102.080116, -7.811160, 256.203705, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -118.305946, -4.462152, 314.378143, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'boringweevil_36' ) , 17, 369 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -23.313906, -4.682285, 312.787292, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -63.659065, -3.490743, 321.341370, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -45.713486, -7.754845, 223.295532, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -70.230179, -3.234549, 193.488495, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 9.342591, -3.237420, 327.080200, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 6.872982, -3.165742, 326.748993, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'lemur_6' ) , 17, 369 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -26.035702, -4.767752, 312.529449, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -30.297110, -4.583733, 314.218353, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -65.482742, -2.631300, 331.812897, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -43.056221, -3.823496, 319.087402, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 7.947664, -3.868430, 321.562408, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -4.859877, -5.359243, 311.907837, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'wolfpoacher_311' ) , 18, 394 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -96.997169, 10.884758, 426.835480, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -91.318466, 10.895230, 429.915894, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -91.149544, 13.501781, 438.499268, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'boringweevil_36' ) , 18, 394 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -6.696811, 1.290513, 359.111053, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -88.296814, 7.626923, 411.195465, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -80.756256, 7.583344, 410.807220, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -58.391167, 5.935596, 400.399902, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'lemur_6' ) , 18, 394 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -72.817787, 3.833124, 384.154022, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 0.994213, 1.363226, 361.208496, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 1.351199, 0.184506, 352.100647, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -2.099859, 3.197721, 375.074097, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -20.532963, 7.846949, 415.337463, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -65.859764, 11.775428, 434.647247, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -55.687801, 12.539723, 435.213531, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -33.363071, 16.042053, 446.722992, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -48.688046, 11.844405, 430.661652, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -35.706413, 8.137104, 415.945129, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'raptorpoacher_79' ) , 18, 394 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -78.791931, 12.234617, 436.258484, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -87.327423, 11.154300, 431.082611, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -91.226921, 11.092580, 430.953491, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'boarpoacher_81' ) , 18, 394 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -88.426071, 11.490000, 427.695099, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -90.402939, 11.068160, 430.739899, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -88.120903, 11.001710, 430.441711, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'wildboar_15' ) , 20, 445 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -133.290405, -2.522352, 180.034119, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -152.955994, 2.466712, 141.711304, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -155.176926, 3.655318, 132.521912, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -138.439423, -2.484959, 180.230255, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -176.168304, -0.566886, 165.117950, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'zizgorlin_179' ) , 20, 445 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -37.227814, -6.357570, 210.827576, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -27.451801, -3.352395, 190.537979, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -41.900387, -3.583145, 191.661072, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -50.686134, -3.766137, 194.143646, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -80.735298, -5.255075, 200.762543, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -43.261932, -9.309211, 242.242645, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -32.650261, -8.127075, 248.769272, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -31.852196, -8.027632, 260.574310, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'blackbat_38' ) , 20, 445 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -190.958405, -0.786216, 171.466858, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -186.421555, 2.518240, 135.971420, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -131.043411, 1.244557, 152.653885, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -184.067062, 2.501975, 134.803284, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -183.550034, -0.752436, 167.339630, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -139.095657, -1.241835, 171.248993, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'wildboar_15' ) , 21, 483 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -298.118805, 9.308059, 67.338341, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -234.405670, 3.494077, 115.140778, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -237.918427, 3.564765, 115.928490, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -230.485580, 12.166210, 8.909656, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -278.724213, 6.770812, 92.955093, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -343.070251, 6.940239, 62.691952, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -218.526215, 5.216444, 91.052475, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'diseasedtreant_24' ) , 21, 483 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -304.363037, 7.658040, 104.534546, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -260.921722, 8.768896, 63.367764, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -196.948120, 7.526089, 86.330658, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -217.976257, 3.356658, 120.139114, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -192.086044, 16.326868, 41.738968, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -233.639069, 12.004830, 33.291042, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'overgrownivy_33' ) , 21, 483 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 105.213776, 10.346369, 461.102173, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 80.706291, 7.972787, 415.884521, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 113.131592, 10.130627, 431.990173, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 120.403450, 11.504984, 422.540558, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 113.328835, 9.747307, 406.118805, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 104.769447, 8.886319, 414.455048, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 94.803703, 8.107851, 387.779327, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 76.123749, 6.744253, 377.898834, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'boringweevil_36' ) , 21, 483 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 0.344737, 11.269548, 437.186554, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 0.152875, 15.946892, 479.210999, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 118.589287, 11.197457, 437.451935, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 79.004768, 8.005452, 429.337830, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 101.182610, 8.490121, 388.689697, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 42.433895, 7.966209, 460.915283, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 65.198090, 7.966208, 477.874023, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'blackbat_38' ) , 21, 483 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -198.651169, 13.475699, 51.538628, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -202.273331, 4.869504, 108.442253, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -295.134308, 6.697902, 117.836380, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -247.941162, 7.582508, 67.966515, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -291.926086, 8.872799, 65.128197, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -333.175903, 7.726088, 57.489082, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -245.986237, 4.800822, 96.938255, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -284.457275, 9.635449, 60.444023, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'gallgnat_7' ) , 21, 483 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -5.117415, 17.361170, 471.176636, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 4.065050, 15.200567, 467.878784, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 22.299868, 10.303681, 476.664856, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 42.394852, 7.651558, 435.780273, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 68.139137, 7.966210, 443.395905, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 64.190559, 7.966209, 474.223755, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 39.330688, 7.984480, 462.396210, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 39.260143, 8.056946, 471.725311, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'blackbat_38' ) , 23, 558 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -226.316620, 12.166209, 7.029383, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'swollendjigga_2264' ) , 24, 595 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -287.661713, 12.173899, -13.079095, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -306.011902, 12.950163, -35.349613, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -274.767273, 13.154112, -46.112896, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'glowfly_306' ) , 24, 595 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -307.289612, 12.320527, -18.939009, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -278.020416, 12.229430, -24.224037, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -315.455475, 12.239582, -26.276901, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -315.707550, 12.355980, -32.810833, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -271.405853, 13.071445, -44.931942, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -284.202179, 12.724946, -40.315479, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'blackbat_38' ) , 24, 595 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -183.694534, 33.374176, -66.269150, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -191.000000, 29.566210, -46.399990, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -196.009537, 45.856525, -103.578896, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -191.614243, 46.027973, -104.067123, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'jumpingdjigga_44' ) , 24, 595 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -284.364197, 12.220203, -25.153299, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -254.438919, 12.146344, -6.150392, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -256.544586, 13.309358, -36.023285, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -283.021637, 12.213216, -26.218313, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -280.368347, 13.628804, -54.146996, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 40, 1732 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 255.808304, -0.399872, 160.039291, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 214.515198, -3.371162, 65.189941, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 216.518890, 0.499672, 112.504745, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'moltedziz_178' ) , 40, 1732 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 295.438110, -0.380055, 169.735107, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 284.820587, 1.091271, 177.787399, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 243.808670, -2.542850, 88.986847, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 250.743744, 1.110016, 156.579666, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 275.682495, -0.309679, 136.297836, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 193.124893, 3.382972, 118.541496, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 201.823013, 0.306530, 106.592438, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 241.259705, -1.394508, 98.333000, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'ochu_33' ) , 40, 1732 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 195.178375, 7.237118, 154.441269, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 232.032440, 5.652274, 176.304977, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 235.619843, 6.053995, 186.309082, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 41, 1837 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 236.338348, -4.690456, -60.831661, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 309.656952, -6.400949, 14.339506, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 213.948975, -3.032565, -14.112598, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'old-growthtreant_24' ) , 41, 1837 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 240.804825, -4.660694, -28.829727, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 217.379074, -4.339086, -54.010689, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 305.503906, -5.170451, 50.267490, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 301.796539, -4.890404, 32.480923, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 203.072113, -3.429554, -40.686047, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 340.769958, -3.454570, -17.592953, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 269.421631, -6.212573, 10.187524, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'banestool_2660' ) , 41, 3674 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 295.063599, 0.717163, 180.926102, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 221.648804, -2.880372, -13.690810, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 280.378998, -4.542100, 48.923759, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 207.189499, -4.405000, -55.771381, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 101.728302, 6.775696, -29.255630, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -5.661133, 19.302610, -20.096189, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 198.657104, 2.212463, 118.242104, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 243.762802, -2.334717, 93.644531, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'ochu_33' ) , 41, 1837 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 295.538422, -5.045496, 41.769234, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 282.264008, -3.673266, 44.287617, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 220.310242, -3.462224, -22.396955, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 231.629227, -3.280379, -19.900665, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 42, 1941 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 363.974243, -2.887925, -56.235977, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 413.336243, -11.481641, -0.884091, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 366.430389, -2.526030, -25.869102, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 332.290894, -2.968380, -50.829773, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = '3rdCohorthoplomachus_55' ) , 42, 1941 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 379.248779, -2.187914, -33.517601, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 381.093994, -2.365173, -37.277828, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = '3rdCohortlaquearius_61' ) , 42, 1941 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 378.578766, -2.293990, -36.923931, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 376.622070, -2.240838, -34.085915, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = '3rdCohorteques_62' ) , 42, 1941 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 381.979004, -2.206444, -36.209721, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 379.934296, -2.304138, -35.904541, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'sylvanscreech_762' ) , 42, 1941 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 357.156189, -2.829856, -35.286289, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 350.270203, -2.804400, -50.397419, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'sylvansigh_763' ) , 42, 1941 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 365.566498, -3.629025, -6.971761, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 333.737762, -3.547725, -42.101601, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'sylvansnarl_764' ) , 42, 1941 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 349.049408, -2.477600, -51.221401, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 331.685913, -4.324158, -38.521492, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 350.148193, -2.774287, -52.136921, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 43, 2046 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 185.560837, -2.947893, 17.901039, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 91.212128, 10.260871, -48.757732, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 60.217491, 14.309670, 10.004061, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -6.921770, 19.764318, 10.419274, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -9.830970, 20.224039, -11.514130, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'morbol_140' ) , 43, 2046 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 125.006157, 5.136684, -53.258545, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 73.426720, 11.513833, -41.213436, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 82.224243, 9.863551, -28.773863, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 118.833115, 6.371977, -15.300014, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 110.059456, 5.949201, -31.147589, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 103.282326, 8.250611, -40.328613, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 80.356750, 11.135279, -49.756580, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 118.673149, 4.441387, 13.576529, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'sylvanscreech_762' ) , 43, 2046 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 114.453812, 6.773195, -41.293217, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 68.558739, 11.184820, -24.826481, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -10.318174, 19.011681, -17.723881, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 177.744751, 0.001228, 56.070038, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 153.277939, 0.420585, 9.064156, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -8.649436, 19.552452, 11.866985, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'sylvansigh_763' ) , 43, 2046 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -19.740028, 18.165810, 11.084339, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 80.094597, 10.766210, 14.206050, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 69.687866, 11.001710, -24.643370, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 112.970978, 7.404476, -43.495312, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 176.019806, -4.055645, -3.018583, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 176.512604, -3.915480, -4.205355, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'sylvansnarl_764' ) , 43, 2046 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 76.874420, 10.427279, -14.849191, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 111.406097, 6.393494, -42.557430, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -5.424891, 19.709511, -18.332621, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 179.500153, 0.140394, 59.934616, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 549.345825, -11.944624, -60.394230, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 523.235046, -11.973587, -34.292690, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 566.073303, -11.876583, -6.693420, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 620.758362, -12.233695, -9.795013, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 622.515808, -12.723608, -8.344092, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'greaterbanestool_2464' ) , 44, 4300 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 514.976685, -20.248779, -360.982697, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 370.778900, -34.470150, -460.959808, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 405.020111, -28.000311, -500.633209, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 286.335602, -19.760500, -293.202087, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 349.873993, -15.610050, -260.578400, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'ochu_33' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 518.060913, -11.507825, -28.309788, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 592.367126, -10.995948, -10.463862, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 535.712402, -11.581553, -2.638214, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 537.505981, -10.906045, -10.730215, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 527.081604, -11.812749, -1.723952, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 504.697418, -11.390347, 4.060000, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 452.585449, -9.946992, -3.511348, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = '3rdCohorthoplomachus_55' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 565.056824, -11.978380, -48.966251, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 553.607788, -11.865685, -42.090031, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = '3rdCohortsecutor_63' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 547.437866, -11.796315, -53.949894, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 565.927612, -10.904299, -38.429867, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = '3rdCohortsignifer_64' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 566.063782, -11.947860, -47.776039, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 546.187500, -11.671138, -51.996540, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'sylpheedscreech_762' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 442.687622, -24.430859, -393.840729, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 335.927399, -28.671749, -421.042206, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 284.544312, -19.337677, -291.495911, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 503.450684, -17.857704, -312.259247, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 289.337585, -13.750115, -127.448120, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 498.771515, -17.898861, -313.954407, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'sylpheedsigh_763' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 335.683105, -27.939548, -419.913086, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 404.097198, -27.509384, -401.386688, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 370.754761, -18.033953, -234.773087, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 451.322998, -15.246734, -279.865692, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 368.856201, -20.248779, -184.771500, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'sylpheedsnarl_764' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 350.148865, -28.176918, -409.363678, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 391.203613, -17.155939, -375.108276, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 528.219849, -22.011179, -321.611725, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 445.841675, -18.563538, -236.658844, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 368.581512, -18.749878, -183.856003, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'dreamtoad_27' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 290.415436, -12.391830, -179.044495, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 330.337982, -17.668869, -183.933563, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 357.199585, -18.961945, -146.889938, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 298.018311, -12.787296, -72.325378, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 258.534088, -10.978604, -156.903625, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 197.315231, -5.857587, -142.369720, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'Sylphlandscondor_403' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 317.799347, -18.650612, -288.697815, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 327.709320, -17.470163, -227.041885, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 290.617798, -19.213781, -288.552979, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 387.554779, -19.151974, -210.418594, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 370.373199, -17.340836, -242.390213, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 342.413788, -16.079439, -256.821625, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'sylpheedscreech_762' ) , 47, 2464 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 553.652527, -23.961533, -379.476715, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 451.562500, -28.073183, -445.575043, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 425.724609, -28.355101, -485.747284, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 344.566345, -28.150576, -487.523773, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 384.859497, -27.500000, -514.937012, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 384.935638, -33.306114, -414.179993, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 565.405212, -22.088120, -350.810913, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 545.774963, -23.782000, -351.293945, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'sylpheedsigh_763' ) , 47, 2464 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 573.484985, -24.123560, -374.310089, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 552.422424, -23.945164, -379.629211, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 559.856079, -22.433788, -343.965973, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 370.887909, -34.493279, -462.935608, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 403.162109, -27.877609, -499.533905, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 427.173248, -28.064762, -459.411316, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 416.496094, -33.657745, -448.400146, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 204.374161, -5.732884, -187.956207, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'sylpheedsnarl_764' ) , 47, 2464 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 383.576294, -27.500000, -515.033020, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 358.322601, -28.245850, -509.974213, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 351.631042, -27.861708, -480.602386, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 362.799988, -25.833790, -441.799988, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 558.639648, -22.985334, -359.636078, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 514.823975, -20.085262, -358.783813, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 514.602966, -19.777376, -364.233215, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 351.494507, -15.011683, -259.491211, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'milkrootsapling_23' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 138.524750, -23.276850, -307.526855, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 119.791916, -26.184340, -353.525116, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 130.491379, -24.814341, -342.972198, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 119.375221, -25.278620, -331.507416, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 86.997467, -26.257889, -338.692383, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 92.907768, -26.247259, -320.799042, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 89.045837, -26.097254, -336.655029, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'Sylphlandssentinel_24' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -54.459675, -34.254768, -532.822449, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 181.770569, -25.483585, -569.645874, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -8.228651, -34.887226, -551.017639, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 147.286713, -23.202356, -476.972015, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 173.270340, -25.584213, -514.757324, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 134.224808, -23.545368, -547.487549, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'giantbanestool_2465' ) , 48, 5138 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 126.848099, -22.110350, -563.561523, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 137.078705, -29.800461, -246.062698, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 252.338394, -24.643370, -435.141510, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 138.658707, -23.403219, -470.115204, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 119.127197, -25.162230, -324.086395, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 137.078705, -29.800461, -246.062698, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'milkrootcluster_33' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 77.780670, -29.990423, -170.677429, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 110.108101, -30.261238, -144.284683, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 117.198395, -29.109890, -225.331924, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 142.678635, -28.978273, -235.778793, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 135.996796, -28.522976, -238.348526, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 130.830551, -28.599304, -244.962921, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 129.991104, -29.535959, -245.124496, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 146.903900, -29.527519, -215.189804, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 155.825104, -29.775539, -226.307693, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'sylphbonnet_48' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 187.979324, -22.720304, -381.577209, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 213.174011, -18.745571, -392.958954, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 214.454498, -20.545761, -407.026154, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 251.690536, -23.420307, -395.253998, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 254.071930, -24.020927, -428.343262, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 215.776001, -20.802799, -409.690094, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'violetscreech_762' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -30.431604, -33.940910, -540.510803, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 166.460602, -26.388874, -543.541626, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 139.198593, -23.411840, -467.790009, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 193.408096, -31.479370, -219.684097, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 116.324303, -25.430050, -324.881592, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 118.427490, -26.410093, -348.913696, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'violetsigh_763' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 165.575607, -26.373127, -542.717712, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 129.072906, -21.293886, -564.551880, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -28.157801, -33.836670, -547.717590, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 139.559601, -28.504568, -244.522903, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 121.879395, -21.909185, -298.471649, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 131.007233, -24.860823, -390.669006, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 139.559601, -29.771700, -244.522903, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 152, ( SELECT id FROM bnpctemplate WHERE name = 'violetsnarl_764' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 112.708099, -30.033794, -194.688599, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -35.631920, -34.027218, -537.097107, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 156.908401, -24.429689, -455.588593, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 249.626694, -24.511021, -435.444397, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 140.849045, -29.072056, -229.451965, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 251.759842, -23.218893, -520.547546, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 247.595703, -23.001791, -517.169067, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 20, 445 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -339.998535, 23.961269, -175.759720, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -350.331879, 25.542410, -181.089752, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -304.310303, 27.098581, -214.619125, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'Qiqirnbeater_170' ) , 20, 445 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -272.839386, 22.280479, -182.574203, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -271.384399, 22.233410, -181.710205, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -271.431000, 22.514244, -174.250992, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -283.217041, 24.600134, -193.606689, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -302.441498, 24.263420, -202.146301, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -302.877686, 24.122616, -193.354202, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -301.991302, 24.106640, -200.335693, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -285.009125, 23.856024, -174.677628, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'antelopedoe_3' ) , 20, 445 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -337.956482, 22.175058, -153.469391, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -338.000000, 24.518162, -189.248978, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -319.583313, 18.778667, -161.815079, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -327.956665, 20.464605, -162.702560, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -313.099243, 26.821878, -213.617279, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -325.743011, 27.615030, -217.699127, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 21, 483 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -263.144196, 12.497387, -73.679169, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -151.359406, 9.193031, -15.103757, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -145.702393, 6.826308, -14.807010, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'kedtrap_23' ) , 21, 483 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -235.642303, 8.798358, -31.935034, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -288.742950, 16.382404, -82.098030, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -263.259521, 13.158815, -64.892563, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -262.274414, 12.685486, -68.640160, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -128.393265, 7.879173, -22.627447, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'smallmouthorobon_302' ) , 21, 483 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -201.091446, 8.518772, -137.883514, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -230.373962, 10.161859, -146.978043, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -310.472321, 12.006616, -133.953217, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -212.241516, 10.840481, -145.082977, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -120.159470, 2.315055, -78.294449, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -105.927368, 3.538450, -31.930330, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -101.917862, 2.761866, -31.859909, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -103.454697, 2.960680, -29.782326, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 22, 520 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -116.920013, 8.714793, -141.970215, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -0.734713, 7.845801, -36.666557, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 17.080889, 5.137837, 27.342144, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -59.971439, 6.558482, -74.529564, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -70.018822, 5.850356, -118.907303, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 61.575909, 3.369393, -49.028721, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -105.528076, 5.568587, -73.931503, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -144.289993, 11.501799, -124.215195, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'kedtrap_23' ) , 22, 520 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -54.315075, 8.921567, -99.021149, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 25.819855, 6.326989, 44.009064, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -2.539149, 7.379492, -28.258354, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -55.551861, 4.054628, -41.583065, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 14.746156, 7.186642, -18.634499, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -87.688354, 4.786760, -72.478333, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -79.957710, 3.881001, -32.707451, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'overgrownoffering_33' ) , 22, 520 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -79.230965, 4.670376, -127.963348, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -133.534027, 8.569367, -100.193596, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -108.215134, 7.029538, -104.630051, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -155.396072, 11.329749, -128.563370, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -149.877792, 11.588495, -142.436279, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -166.240311, 8.811557, -125.742409, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -134.342651, 13.600004, -130.390839, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 23, 558 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -148.998657, 5.561626, 103.608658, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -211.812256, 11.620298, 108.617004, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -188.015335, 8.882719, 25.322458, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'barkeft_161' ) , 23, 558 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -66.694794, 0.336653, 60.103729, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -95.647194, 0.713887, 57.697540, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -85.018768, 0.153294, 49.993504, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -86.666939, 1.681570, 75.730415, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -78.266876, 0.153294, 57.522301, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -177.544586, 1.286469, 149.097244, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -139.520218, 1.005446, 157.936890, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -184.718124, 0.350221, 138.745026, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'scarredantelope_2187' ) , 23, 3348 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -174.244156, 4.778137, 126.029503, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -155.079483, 3.497354, 135.965607, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'antelopedoe_3' ) , 23, 558 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -201.401672, 11.347859, 83.060669, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -131.492935, 6.005808, 111.025520, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -115.956894, 6.264873, 115.746399, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -127.487129, 5.960038, 94.432495, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -175.591110, 7.169066, 109.261993, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -172.313049, 6.482693, 114.588982, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -207.723877, 9.861254, -1.076116, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -215.633331, 9.897048, 2.690895, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -177.466873, 4.313876, 127.650650, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -159.495163, 6.690948, 10.598223, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -175.118713, 11.264847, 45.588669, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -162.054047, 7.983317, 58.252594, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -211.463242, 11.920287, 71.830231, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -216.272858, 12.567184, 74.408363, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'windsprite_133' ) , 24, 595 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -279.122101, 19.684469, 50.829895, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -264.889343, 15.258645, 88.634491, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'kedtrap_23' ) , 24, 595 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -246.637527, 16.940334, 14.146435, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -272.483093, 17.064312, 61.392807, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -253.087723, 16.186489, 77.457962, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'riveryarzon_159' ) , 25, 633 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 42.654480, 4.771154, 68.480888, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 37.418583, 4.850471, 66.245697, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 151.799942, 5.470443, 15.121700, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 148.015976, 4.863391, 20.451998, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 138.063446, 6.226398, 24.339624, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 99.402435, 4.986527, 53.635834, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 105.463493, 4.513731, 55.831722, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 70.401016, 5.220296, 66.620415, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'antelopestag_4' ) , 25, 633 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 26.760260, 7.429297, -102.325920, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 29.770376, 7.310660, -102.062416, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 52.766159, 9.806877, -77.800613, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 14.622614, 5.915463, -73.400307, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -5.107980, 7.057783, -86.141953, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 8.579900, 6.589401, -69.594353, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 110.219887, 11.931175, -72.196236, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 108.712753, 8.865553, -59.357475, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 104.315796, 7.736876, -54.132778, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'watersprite_59' ) , 25, 633 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 129.367828, 4.474969, 47.881115, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 44.185539, 4.904713, 66.192078, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'antelopestag_4' ) , 26, 671 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 297.862427, 13.592612, -155.693970, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 287.571930, 9.431927, -185.042603, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 279.424500, 9.527298, -175.577805, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 291.220764, 10.562439, -166.739624, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 246.566940, 10.518194, -174.818481, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 253.725586, 9.205351, -173.770233, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 248.399246, 14.557305, -149.267365, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 242.780304, 17.568481, -142.051392, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'Redbellylookout_84' ) , 26, 671 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 73.622810, 7.818439, -111.865150, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'Redbellylarcener_86' ) , 26, 671 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 74.906487, 7.766785, -112.382797, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 82.031654, 8.382126, -109.312462, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'Redbellysharpeye_87' ) , 26, 671 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 68.253563, 7.766795, -107.438797, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 81.363419, 8.723187, -89.751022, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 74.579697, 7.831109, -105.370468, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'watersprite_59' ) , 27, 708 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 160.358231, 16.762192, -143.526764, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 161.254044, 16.992121, -138.768112, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'Redbellylookout_84' ) , 27, 708 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 132.082748, 21.531290, -108.673607, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 138.308212, 19.124540, -148.603928, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 124.376198, 19.407740, -146.837601, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 71.000183, 18.234480, -159.014297, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 170.907196, 17.193430, -151.395401, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 123.185997, 20.035912, -97.032173, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'Redbellylarcener_86' ) , 27, 708 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 124.414299, 19.130779, -145.398300, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 71.760773, 18.225830, -160.113007, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 175.574188, 19.568178, -147.790741, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 121.843201, 19.657021, -96.971130, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'Redbellysharpeye_87' ) , 27, 708 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 95.022751, 17.685242, -160.638855, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 171.717804, 17.307770, -150.139297, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'antelopestag_4' ) , 28, 746 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 340.831696, 7.691807, -46.406120, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 265.506958, 4.411418, 11.037241, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 265.280396, 3.800973, 15.152361, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 287.214294, 4.019607, 47.951607, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 324.534271, 5.418306, -43.638466, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'goblinthug_52' ) , 28, 746 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 320.515686, 2.215992, -18.509239, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 318.658691, 2.315050, -15.389510, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 320.698792, 2.227228, -15.091220, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 292.225494, 0.411926, 13.809330, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 318.018890, 1.331932, 12.307590, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 288.588348, 0.879824, 15.756058, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 334.147186, 2.709898, -14.054202, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 313.945190, 0.409452, 8.234367, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 317.199188, 0.290855, 13.417520, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 304.396423, 2.924789, -21.686890, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'watersprite_59' ) , 28, 746 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 302.342682, 0.037199, 3.295926, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 303.703857, 0.268654, 0.926814, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 291.633820, 0.409673, -7.136538, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'Coeurlclawcutter_311' ) , 29, 783 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 435.940704, -0.871704, 5.487583, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 363.704803, 2.251096, -6.478794, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 443.449249, 1.206185, -27.191357, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 435.723999, -1.106398, 3.907724, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 387.075500, -0.808707, 21.408360, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 399.968506, 4.262952, -41.852612, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 365.959564, 1.495418, 11.476063, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'Coeurlclawpoacher_79' ) , 29, 783 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 376.814392, 5.572972, -33.204460, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 400.476288, 4.415656, -40.787842, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 443.225128, 1.132449, -23.629194, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 436.506531, -0.968450, 4.484751, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 356.771088, 2.792354, 1.937849, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'Coeurlclawhunter_81' ) , 29, 783 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 356.160797, 2.597828, 2.700800, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 387.472290, -0.696626, 20.340231, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 385.971649, 5.061934, -31.659348, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 403.385895, -0.553056, 17.377296, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 441.388062, 0.497021, -19.399742, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'midlandcondor_13' ) , 30, 821 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -237.865509, 1.809588, 263.583954, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -284.996582, 1.426737, 342.653564, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -141.560959, 6.272810, 198.275650, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -181.334198, 0.393388, 252.029144, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -127.512657, 1.324417, 289.104156, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -113.304680, 1.687379, 294.816193, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -229.560150, 0.475182, 307.199982, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -179.978348, 0.719709, 329.209045, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -237.583450, 1.661793, 261.490448, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -165.843338, 4.089278, 183.776520, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'hoverflyswarm_41' ) , 30, 821 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -205.589493, 1.154449, 324.982727, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -192.167038, 0.415485, 278.080688, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -149.696136, 1.398886, 282.261627, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -277.375153, 2.374717, 345.585815, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -244.443726, 0.593220, 305.520172, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -167.993988, 4.160473, 212.311966, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -160.840790, 2.666260, 213.122116, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -142.619110, 0.431141, 245.956497, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -165.678986, 3.625934, 215.356796, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -143.034546, 0.423322, 251.276260, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -169.994171, 4.454423, 211.479813, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'bigmouthorobon_302' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -139.280334, 0.258331, 457.113464, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -138.969055, 0.362278, 478.022034, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -179.666992, 0.332963, 444.138184, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -185.408615, 0.266403, 449.922852, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -191.103333, 0.300919, 474.658325, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -170.171661, 0.748118, 457.431763, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -202.472046, 0.153294, 470.119843, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -182.465149, 0.692689, 486.804260, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'adamantoise_34' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -288.738220, 0.430243, 400.522858, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -302.715607, 1.946162, 410.582825, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -291.772858, 0.900326, 472.309082, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -310.777985, 0.162769, 445.172241, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -207.096771, 1.071835, 441.479340, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -254.266296, 0.153294, 448.889465, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'hoverflyswarm_41' ) , 31, 912 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -244.150986, 1.656634, 491.590485, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -298.354309, 0.177688, 420.871155, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -295.614014, 1.017294, 475.941895, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -222.174683, 0.245277, 422.346466, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -272.775970, 0.262740, 458.944794, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'midlandcondor_13' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -257.503571, 8.312009, 599.378967, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -255.101288, 6.837176, 577.566589, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -254.734238, 6.599647, 575.416992, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -267.333344, 7.674835, 627.477600, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -220.020691, 4.445139, 553.418213, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -281.407837, 8.195292, 559.585327, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -279.116119, 7.772100, 543.292297, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -269.916077, 6.598433, 542.015564, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'hoverflyswarm_41' ) , 32, 1003 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -244.238327, 6.714292, 643.844238, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -304.976715, 11.406525, 607.278809, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -248.356644, 4.147506, 536.301086, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -258.996460, 6.352378, 575.726501, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -282.968506, 7.203197, 586.438416, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -265.090637, 7.714521, 615.028564, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -295.765808, 9.084420, 649.488220, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'revenant_305' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -359.571838, 2.618863, 452.217041, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -361.619415, 1.547869, 459.698456, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -359.894470, 1.704200, 450.634918, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -341.039917, -0.246708, 434.567810, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -332.396973, -0.072292, 433.112183, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -348.931854, 0.644351, 449.011383, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -338.630157, 0.015721, 464.793152, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -339.323822, 0.100279, 458.544617, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'adamantoise_34' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -102.853882, 0.919991, 444.065735, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -86.147224, 0.684962, 422.009094, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -72.019958, 0.586246, 433.157928, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -122.896088, 0.230155, 396.459869, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -124.711922, 0.153294, 329.033081, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -104.857994, 0.277952, 336.546631, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'hoverflyswarm_41' ) , 33, 1094 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -105.483780, 1.028373, 386.442139, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -101.539383, 1.108556, 387.542206, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -95.773643, 0.350429, 456.111206, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -156.503342, 0.293183, 436.030182, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -118.389481, 0.153294, 330.804016, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -70.834503, 0.876224, 383.165375, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'stroper_304' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -38.923328, 0.463687, 396.443451, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -23.523119, 0.153294, 321.834167, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -6.093653, 0.153294, 340.524994, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -83.193642, 1.056305, 374.900818, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -55.078377, 1.117311, 334.602478, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -47.895683, 0.550648, 323.515076, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -24.164146, 0.197421, 368.848450, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -13.203939, 0.567452, 376.808319, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'hoverflyswarm_41' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -66.229385, 0.470740, 347.624969, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -14.964665, 0.945460, 342.394318, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -25.739456, 0.237568, 388.307068, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -39.707355, 1.465754, 331.610229, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -34.489265, 0.189519, 381.213776, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'lesserkalong_130' ) , 35, 1277 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 215.964661, 11.353290, 46.488895, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 206.642715, 11.650244, 11.869540, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 206.804718, 12.405178, 33.941341, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'deepvoiddeathmouse_143' ) , 35, 1277 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 181.444275, 12.926345, 14.271735, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 192.581512, 14.598205, 15.761089, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 183.358261, 13.567279, 15.541267, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 221.324707, 7.175955, 20.020166, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 217.467056, 10.574434, 45.225460, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 242.834488, 6.335375, 43.592045, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 203.914536, 12.972029, 15.819272, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 226.604614, 5.173750, 26.640421, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'lesserkalong_130' ) , 36, 1368 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 116.147835, 19.753290, 83.307610, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 117.994148, 19.753290, 82.153656, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 117.343025, 18.452957, 103.391800, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 193.098480, 15.507181, 58.926193, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 195.282440, 14.762327, 55.081429, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 188.596497, 16.780977, 31.200932, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 157.266510, 18.092510, 71.019943, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'treant_24' ) , 36, 1368 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 103.540764, 20.548759, 119.398781, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 66.088455, 25.621527, 138.486755, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 149.536133, 17.720877, 59.170906, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'lesserkalong_130' ) , 37, 1459 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 50.383949, 13.003560, 277.658752, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 58.525326, 13.447519, 277.748291, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 71.324982, 23.011427, 206.204132, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 50.850285, 19.619558, 226.488358, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 54.387905, 25.835718, 146.029312, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 48.327812, 26.435793, 147.477768, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'deepvoiddeathmouse_143' ) , 37, 1459 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 71.424385, 21.123337, 216.775421, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 71.876198, 22.852333, 171.219681, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 49.650352, 7.656987, 295.602875, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 44.400002, 24.153290, 243.600006, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 31.889751, 5.897223, 298.823547, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 87.834991, 23.290342, 169.415237, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'lesserkalong_130' ) , 38, 1550 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 51.378372, 26.235823, 125.493034, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 36.875820, 24.711195, 123.689690, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'treant_24' ) , 38, 1550 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 57.082722, 20.187195, 249.869583, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 43.372524, 25.252363, 127.906715, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'will-o-the-wisp_45' ) , 38, 1550 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 145.565353, 32.581528, 168.852661, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 123.972107, 25.520151, 174.161850, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 133.863083, 28.355707, 166.732483, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 132.316284, 27.648630, 166.942749, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 83.835373, 24.025297, 199.365784, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 87.490097, 23.521835, 197.232773, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 68.696983, 22.855371, 173.167511, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 94.423866, 23.661100, 143.255524, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'lesserkalong_130' ) , 39, 1641 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 13.807843, 22.458664, 189.305191, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 16.401884, 21.692461, 191.166870, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 32.774662, 21.492319, 202.744736, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'treant_24' ) , 39, 1641 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 52.120174, 20.668344, 208.371841, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 26.181091, 21.849955, 199.178192, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'lesserkalong_130' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 412.104797, 3.900063, 154.302032, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 411.833557, 3.604383, 142.915298, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 460.735657, 1.445295, 166.065445, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 452.854462, 0.989017, 162.816437, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 387.026337, -0.833541, 95.128105, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 370.488892, -4.516891, 68.496490, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 363.930603, -3.548059, 68.991745, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 377.577789, -3.551390, 80.920975, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 381.041290, -2.115168, 93.648079, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'wildhog_16' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 477.625641, 1.147643, 151.936920, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 501.000000, 1.950299, 161.404984, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 394.773895, 0.077442, 121.162926, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 375.394470, -2.688785, 139.208099, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 361.742157, 1.509500, 137.437698, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 395.710022, 4.599590, 167.296249, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 409.906097, 4.414481, 157.988266, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 436.129211, 0.903567, 186.491592, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 455.975189, 4.169324, 200.137070, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 456.792572, 4.737974, 204.952255, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'lesserkalong_130' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 559.713684, 22.255341, 104.042580, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 495.646942, 5.945332, 181.850464, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 540.102844, 9.753292, 200.415726, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 517.246887, 6.984753, 210.894669, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 499.554596, 3.523035, 168.700134, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'wildhog_16' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 551.871521, 10.267349, 214.872589, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 546.916443, 10.735801, 209.083191, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 480.241638, 3.555407, 199.448532, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 508.732544, 5.603448, 205.690750, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 530.580383, 8.312509, 200.672546, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'lesserkalong_130' ) , 47, 2464 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 525.956177, 17.985266, 110.420319, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 525.131958, 18.214191, 104.757202, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 575.822510, 21.953291, 118.040573, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 599.400024, 24.353291, 128.800003, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 599.400024, 24.353291, 128.800003, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 541.415405, 15.709756, 157.183395, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'ked_8' ) , 47, 2464 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 574.674805, 21.953291, 111.696815, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 557.271729, 22.332457, 97.832085, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 558.068970, 22.096968, 129.368500, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 539.387390, 12.721354, 168.084351, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 538.911011, 22.129368, 119.979897, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 517.600159, 14.353291, 135.087219, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 507.100128, 15.949841, 120.654549, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 153, ( SELECT id FROM bnpctemplate WHERE name = 'watersprite_59' ) , 50, 2778 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 586.509155, 23.155062, 111.219131, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 611.512207, 21.985785, 96.698593, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 633.610718, 22.217564, 99.797424, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 632.563721, 22.092108, 124.318573, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 635.942017, 22.404177, 85.635574, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 603.639404, 22.310717, 71.003387, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 647.492737, 22.129053, 73.999176, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 624.314209, 22.050442, 62.299835, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 633.144775, 22.013826, 59.762001, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 606.284058, 22.073412, 93.031006, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'treantsapling_1446' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 448.665466, -2.200934, 262.911133, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 271.635590, -15.716443, 274.543427, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 172.110153, -40.847401, 347.687714, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'treantsapling_1446' ) , 17, 369 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 236.167938, -6.404164, 2.828103, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 336.211639, -4.972036, 12.597113, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'groundsquirrel_37' ) , 1, 44 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 466.498260, -1.990633, 262.837921, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 473.635254, -2.672412, 246.595718, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 473.629547, -2.648290, 247.889191, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 451.569977, -2.540266, 243.568817, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 387.588837, 1.475319, 193.655991, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 444.209747, -2.776396, 243.174316, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 450.206207, -2.514635, 246.747650, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 446.799835, -2.325333, 233.298325, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 422.207428, -1.125567, 191.561249, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 420.803101, -1.791042, 182.474380, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 425.838867, -1.461022, 182.552948, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 423.526489, -1.366936, 197.251129, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 469.178772, -2.718938, 228.180115, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 467.314667, -2.628238, 226.910995, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 433.069733, -1.816541, 204.064377, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 454.380188, -1.495000, 207.570404, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 1, 44 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 470.807434, -2.737030, 246.605667, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 446.166962, -2.406608, 234.586411, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 430.348267, -2.492271, 231.167053, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 422.384033, -2.013290, 175.614014, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 419.733093, -1.667910, 199.294754, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 403.377777, -2.590864, 213.449280, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 429.065033, -3.747003, 225.531647, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'banemite_11' ) , 25, 633 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 185.912659, -24.880915, 156.759918, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 178.496719, -24.434551, 156.867386, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 184.668167, -24.089746, 152.115814, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 162.592911, -24.463045, 162.217819, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 164.049011, -25.865692, 192.238968, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 204.626984, -24.704874, 150.106445, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 211.716644, -22.523417, 138.316956, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 227.972916, -21.987413, 137.596893, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 58.466400, -37.683338, 289.859741, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 140.015686, -27.354259, 234.190048, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 110.728439, -28.119913, 255.499268, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 93.679016, -27.463057, 289.750458, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 84.896217, -28.451370, 271.261688, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 92.316597, -27.504709, 286.103729, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 89.444923, -27.917391, 274.949432, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 89.347572, -27.136339, 290.448090, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'balloon_17' ) , 25, 633 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 22.622007, -48.433090, 472.207275, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -29.867552, -54.317608, 499.576294, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -46.327930, -48.491528, 425.025574, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -11.874866, -51.833035, 443.467346, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -19.572247, -53.577740, 463.399109, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'Shroudhare_40' ) , 25, 633 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -29.300205, -54.893799, 489.894562, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -31.052341, -54.178596, 498.509583, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -34.594063, -54.453823, 499.514801, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -11.723125, -50.672173, 432.295502, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -13.697838, -52.895653, 462.987579, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -24.290831, -52.467823, 454.741791, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -23.674862, -45.836910, 409.326996, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -7.948016, -49.692017, 433.942200, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -36.635914, -47.720341, 413.658478, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -44.466206, -48.621002, 424.178284, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -16.307989, -45.839123, 407.179993, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -12.643781, -51.854145, 442.083740, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'yarzonscavenger_42' ) , 26, 671 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -41.787991, -53.044216, 483.659943, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -43.171856, -53.595791, 492.240692, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 27.466835, -51.397850, 484.754456, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 29.757238, -48.534210, 470.075470, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -9.200162, -51.846092, 454.941376, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 8.400006, -46.724556, 468.927277, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 1.955398, -49.731941, 481.876434, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 4.182874, -47.649422, 474.596558, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'banemite_11' ) , 27, 708 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -173.176575, -40.401649, 200.219742, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -161.953308, -39.631363, 195.292511, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -191.790665, -54.555080, 295.732208, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -257.475861, -23.696390, 240.480194, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -249.760986, -23.059324, 194.181839, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -251.057816, -26.977282, 245.576523, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -146.303177, -44.421459, 245.826752, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -270.144073, -15.826331, 256.003937, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'Ixalideftalon_113' ) , 27, 708 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 50.547020, -40.461750, 336.659790, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 68.443611, -40.187721, 343.554413, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 85.557281, -40.634819, 351.460999, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'Ixalilightwing_114' ) , 27, 708 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 53.208130, -40.756901, 339.009613, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 90.043427, -40.634819, 352.315491, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 52.970268, -40.324650, 335.009186, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'Ixalistraightbeak_115' ) , 27, 708 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 53.996368, -37.848003, 316.020142, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 67.346886, -38.478844, 331.501251, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 76.498779, -42.087479, 359.175293, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'balloon_17' ) , 27, 708 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -151.490173, -45.443272, 247.351105, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -190.326904, -45.301071, 222.349167, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -263.387939, -21.661444, 237.094513, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -172.694855, -51.607178, 280.057373, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -228.426102, -35.028866, 228.584045, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'balloon_17' ) , 28, 746 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -296.376434, -78.809013, 483.165039, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -262.589325, -78.299629, 491.105377, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -296.151093, -54.899208, 303.533600, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -276.049957, -51.606628, 333.685059, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -213.111145, -61.471825, 356.017334, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -257.709900, -73.005264, 416.052246, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -185.606995, -58.959106, 346.852814, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -212.624725, -62.889030, 361.490326, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -89.248711, -51.219498, 361.012451, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -114.428009, -54.317028, 365.407928, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -92.357559, -51.000797, 356.140869, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'ziz_179' ) , 28, 746 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -200.652588, -30.550320, 338.611633, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -282.132965, -50.188366, 341.681946, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -229.699600, -27.425776, 280.634857, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -234.079391, -26.757635, 285.141663, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -267.674103, -52.614944, 285.788452, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -276.048401, -52.566494, 328.066833, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -257.190704, -57.575130, 299.926117, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -306.153229, -53.807686, 306.962952, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'pumicegolem_2265' ) , 28, 746 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -295.432526, -78.740044, 470.949005, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -269.516510, -78.026421, 492.304718, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -302.792938, -78.296501, 465.506165, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'claygolem_30' ) , 28, 746 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -250.327560, -70.956749, 402.699554, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -171.643738, -57.722458, 347.983002, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -176.593933, -57.668221, 345.014984, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -86.386276, -50.524769, 358.671356, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -106.452179, -52.205696, 387.757629, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -173.453705, -58.488270, 346.267395, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -180.289703, -58.090000, 341.292908, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'Shroudhare_40' ) , 28, 746 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -190.493042, -31.036869, 325.691101, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -189.197678, -31.006178, 323.945740, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -214.105881, -30.180990, 340.733215, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -244.308945, -30.956570, 353.143829, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -227.122025, -26.816416, 298.291229, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -234.784653, -26.288601, 293.661499, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -195.949265, -32.566513, 261.830780, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -238.620636, -26.640406, 274.734528, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -213.070114, -30.006771, 342.551880, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -210.013580, -30.952934, 325.869690, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -204.534821, -31.032219, 300.300812, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -213.426086, -29.440090, 279.167450, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'Qiqirnbeater_170' ) , 29, 783 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 8.855011, -46.612072, 437.906494, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 15.568058, -44.707146, 431.092987, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 10.489580, -47.098289, 439.071106, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 25.131210, -45.159229, 446.378540, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 19.420906, -46.250164, 448.252747, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 23.118601, -45.096272, 440.785797, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 21.243629, -45.595200, 442.469513, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 21.488041, -45.079990, 439.112488, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'brightballoon_2266' ) , 29, 783 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -195.002945, -32.368084, 260.770813, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -219.063568, -30.960922, 326.969147, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -189.969803, -33.172054, 284.736725, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -191.850067, -31.384821, 255.642868, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -195.056107, -32.913761, 285.816711, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'groundsquirrel_37' ) , 2, 51 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 447.252991, -1.133227, 283.642944, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 446.113220, -1.652738, 280.493011, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 429.806244, -2.593102, 266.749725, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 439.325073, -2.317467, 270.251251, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 419.629272, -3.765873, 285.507080, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 412.551422, -3.871356, 264.624512, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 419.433685, -3.556587, 278.281403, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 412.095367, -4.338430, 277.659760, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 422.342133, -2.985626, 253.651703, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 418.535187, -3.143682, 252.115112, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 327.889343, -4.782137, 264.528961, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 322.194092, -5.218106, 261.613312, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 388.566620, -8.158063, 268.401703, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 404.968994, -5.545228, 231.950211, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 345.143799, -11.551130, 289.967102, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 347.812195, -6.402293, 271.350494, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 345.143799, -11.551130, 289.967102, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 346.657288, -9.506935, 281.873444, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 345.143799, -11.551130, 289.967102, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 2, 51 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 334.295380, 1.559244, 248.142197, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 327.631714, -4.010738, 260.342712, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 414.316010, -3.583593, 262.810577, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 410.876282, -4.452013, 276.185852, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 382.681732, -8.432541, 277.547180, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 418.173218, -3.293894, 249.385651, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 340.617279, -6.897844, 273.022186, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 347.469727, -8.200389, 278.105164, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 346.218903, -6.677882, 272.394409, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'lesserkalong_130' ) , 37, 1459 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 132.753906, -25.511141, 163.060287, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 132.133606, -26.408529, 166.705200, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 131.894653, -25.269260, 200.512894, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 78.940872, -28.934441, 208.233734, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 71.422707, -22.723551, 185.438736, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 69.119209, -16.379000, 168.621429, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 69.744812, -15.274917, 164.976410, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 65.037338, -13.450945, 148.275909, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 48.934341, -16.896721, 161.463257, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 35.622391, -7.815698, 104.536781, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 50.786797, -8.167059, 76.579941, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'dryad_25' ) , 37, 1459 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 102.412933, -24.345034, 192.686157, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 141.908051, -26.410290, 171.575668, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 94.438576, -29.624483, 211.011658, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 76.001991, -14.035642, 155.960617, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 57.288971, -10.297372, 113.346924, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 30.191046, -8.592063, 118.745567, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 28.141094, -7.084166, 77.074669, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 35.860352, -6.413082, 41.667854, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 64.185486, -24.238043, 199.828568, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 3, 59 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 230.735458, -26.772020, 320.790375, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 213.539886, -26.633743, 303.428406, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 217.283188, -25.869627, 298.408691, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 184.814682, -37.222305, 353.131866, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 184.987259, -33.715103, 320.927551, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 141.319626, -30.425896, 305.215118, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 163.521210, -36.696163, 324.640381, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 158.916260, -37.939236, 334.073822, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 240.833328, -22.622082, 271.424866, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 283.288177, -14.406299, 287.548828, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 291.657196, -14.234612, 302.773743, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 249.339157, -20.893364, 290.633484, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 171.440933, -40.917686, 358.430176, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 240.198959, -24.034119, 354.113892, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 210.695526, -29.321188, 350.429810, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 212.259140, -29.018997, 349.704865, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 207.271866, -29.748947, 330.747437, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 347.893127, -10.285907, 293.813110, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 335.174713, -12.708176, 285.193939, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 342.632935, -11.581760, 288.675995, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 324.574585, -14.779820, 286.915314, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'miteling_9' ) , 3, 59 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 237.291565, -23.197979, 269.435547, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 185.029037, -37.389481, 355.266876, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 181.175369, -31.967815, 315.198364, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 226.633224, -23.063074, 284.389648, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 228.552444, -27.238516, 314.645477, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 232.579910, -25.898275, 321.918701, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 244.884079, -23.205677, 330.465271, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 227.220688, -27.784750, 319.593292, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 213.494827, -25.105030, 363.779541, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 145.772263, -44.041264, 351.680634, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 149.511124, -43.340069, 352.387207, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 149.405930, -30.123154, 303.305237, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 140.286865, -30.785473, 307.067078, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 156.966461, -37.185364, 328.469696, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 160.130188, -36.486309, 326.404510, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 162.473511, -35.556599, 320.550293, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 238.909348, -24.698296, 331.941223, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 278.434174, -14.587594, 289.130707, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 261.186127, -18.106544, 288.284119, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 241.505722, -22.529137, 276.124420, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 246.306305, -21.307178, 271.658142, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 178.535553, -38.710983, 338.270416, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 235.758255, -23.231339, 363.418488, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 238.578552, -24.080196, 358.981171, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 219.408096, -27.501806, 345.341858, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 219.802246, -27.676291, 347.098175, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 223.229309, -27.714701, 348.696625, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 201.429779, -31.631750, 321.272980, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 211.163803, -29.946514, 323.622284, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 188.207123, -31.841236, 313.772858, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'plasmoid_46' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 105.225159, -23.942316, 166.073776, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 108.391098, -22.163919, 167.257355, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 89.381638, -20.774815, 174.667084, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 101.271164, -24.112495, 168.091171, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 97.523018, -21.735163, 163.319031, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 117.585274, -21.834829, 159.166519, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 115.904129, -23.784775, 170.714294, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 116.328766, -22.997301, 164.047501, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'lesserkalong_130' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 44.680470, -13.102538, 4.013079, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 17.143629, -13.135910, -22.856504, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'watchwolf_141' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -3.538161, -11.162991, -35.996574, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'lesserkalong_130' ) , 47, 2464 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 145.461090, 7.787442, -57.104992, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 160.140762, 4.836817, -43.951157, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 91.194160, 8.967226, -80.741615, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 80.404259, 7.633532, -67.409668, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 68.206978, 7.122354, -59.072567, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 108.879822, 7.656955, -62.495335, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'dullahan_29' ) , 47, 2464 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 68.288193, 7.157057, -61.151047, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 57.115753, 6.856338, -42.083694, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 99.521080, 9.112247, -78.552879, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 112.674759, 7.148055, -49.267574, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 147.844162, 8.066178, -57.291794, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 117.681259, 6.972931, -54.158928, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 162.204865, 6.354493, -46.073467, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'Ixaliboldwing_748' ) , 47, 2464 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -10.940770, -10.678302, -42.618488, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'lesserkalong_130' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 45.625496, 12.332692, -118.408035, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 31.821644, 1.210524, -86.718002, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 19.421066, 0.366041, -86.321480, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 35.674282, -11.942129, -36.255299, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 48.766075, 0.299008, -68.441666, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 66.674690, 7.223571, -88.340393, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'dullahan_29' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 33.061352, 12.334880, -105.240578, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 19.884760, 0.464223, -89.395393, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 57.709709, 11.459209, -103.606270, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 37.075310, -11.887449, -35.989616, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 42.841457, -1.706976, -60.704121, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 43.341743, -0.750899, -67.891327, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'littleladybug_49' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 194.137573, -26.974409, 275.352936, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 167.103256, -27.438736, 286.867950, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 194.028107, -27.207596, 296.509918, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 223.346161, -24.117504, 279.295380, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 274.153259, -21.281086, 250.462509, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 287.680206, -23.168442, 243.457596, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 274.683807, -24.599781, 221.898926, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 226.253677, -26.092764, 239.847168, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 299.349182, -16.611303, 271.861664, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 263.544037, -25.846861, 223.461990, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'miteling_9' ) , 4, 68 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 195.126404, -26.921535, 276.677002, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 200.490738, -26.464230, 274.733337, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 194.243866, -27.227835, 267.902893, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 177.079681, -26.944832, 283.535614, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 176.085419, -27.219917, 298.892120, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 227.690567, -26.362230, 245.871719, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 260.432861, -26.523909, 218.407486, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 243.169891, -24.552147, 239.221329, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 268.781799, -25.008877, 222.487000, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 294.845154, -18.269661, 266.795868, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 267.982117, -20.729939, 252.164108, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 268.194183, -20.141367, 255.055237, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 261.184357, -22.827213, 241.041580, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 246.067993, -24.250166, 237.872192, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 240.862701, -24.275229, 246.622284, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 174.283417, -27.032242, 287.576385, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 179.522949, -26.777786, 285.146118, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 238.272568, -27.520794, 215.741821, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'midgeswarm_136' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 275.189758, -12.868624, 100.704025, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 271.360626, -26.968781, 185.538086, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 312.628174, -16.895617, 183.257721, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 305.034882, -21.262154, 208.316574, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 305.064789, -9.643892, 108.035904, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'opo-opo_5' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 280.376892, -14.285279, 105.059807, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 268.426300, -22.026617, 133.031036, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 273.102295, -20.351688, 128.443893, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 287.340240, -19.640957, 130.213440, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 274.101501, -19.604639, 125.548752, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 298.394806, -12.321908, 111.223999, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 296.395508, -11.255126, 103.385796, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 278.195313, -13.551058, 101.571877, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 300.381256, -10.213514, 104.409752, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 306.081268, -8.325886, 100.122780, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 302.840179, -9.001265, 98.750832, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 295.829926, -21.998280, 156.688248, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 313.051971, -16.751501, 186.831741, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 314.141785, -16.515368, 189.837143, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 315.708252, -16.368145, 185.316299, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 314.287842, -16.650148, 182.584259, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 324.668884, -13.791954, 189.410110, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 280.864380, -25.781574, 195.038147, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 279.260620, -25.938435, 194.503143, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 286.272491, -25.422060, 193.397995, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 296.675842, -23.874384, 197.434509, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 296.478149, -23.025946, 217.304291, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 299.746368, -20.736233, 226.406097, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'Ixalidulltalon_743' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 242.276093, -27.425688, 216.980225, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 247.882797, -28.305531, 212.390305, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 215.472595, -27.237400, 253.040298, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 223.315704, -26.199789, 217.486801, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'Ixalilostwing_744' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 212.019608, -27.601471, 252.518906, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 254.751434, -27.202776, 218.911407, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 218.411407, -26.477131, 218.507996, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 217.780106, -26.509901, 235.012878, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'Ixalislowbeak_745' ) , 5, 91 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 213.643143, -26.785412, 257.419373, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 248.345520, -28.825550, 208.801743, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 221.789795, -25.833570, 222.369705, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 225.918106, -25.949650, 221.336227, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'midgeswarm_136' ) , 6, 108 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 279.881683, -9.934970, 6.032243, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 245.939240, -5.297892, -11.190616, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 334.304810, -5.284276, 23.217363, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 338.406403, -4.752516, 25.828402, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 283.494171, -10.962522, 41.169361, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 279.717285, -11.727630, 46.247868, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 333.981537, -4.772184, -0.927610, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 313.017242, -7.395024, -17.937799, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 285.104889, -5.832767, -50.042629, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'microchu_32' ) , 6, 108 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 362.156891, -4.258562, 24.300558, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 362.104675, -3.651026, 20.606325, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 348.904602, -4.668022, 22.093134, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 268.728882, -8.891088, 1.352348, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 312.794434, -6.841514, 25.821131, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 313.655823, -6.808291, 27.758856, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 337.597931, -4.859971, 26.210247, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 268.391113, -11.875398, 35.485832, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 307.490143, -7.067228, -28.227337, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 308.678528, -8.308248, 7.854243, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 273.820374, -5.376875, -52.429478, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 268.653290, -7.225593, -25.937996, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 279.690002, -7.400007, -24.719303, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 324.261353, -6.393096, -19.690958, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 310.733002, -7.671255, -6.475940, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 316.388153, -7.460956, -4.543352, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 272.734772, -6.439068, -37.198612, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'midgeswarm_136' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 410.148712, -5.821678, 55.142704, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 409.242554, -2.460924, 96.917351, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 369.279205, -5.647965, 87.080414, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 363.204468, -7.150238, 53.035225, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 380.815582, -7.075089, 72.106461, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'opo-opo_5' ) , 7, 126 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 395.945129, -5.443278, 70.268852, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 390.000732, -4.458478, 93.691376, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 390.025452, -4.543618, 92.892342, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 375.969696, -6.292360, 85.775238, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 370.086823, -7.312320, 79.230186, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 407.753571, -5.403399, 64.277611, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 383.155792, -7.008792, 67.004433, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 402.024139, -6.549650, 58.815468, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 406.443207, -5.919146, 61.461578, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 426.452484, -1.982082, 72.134438, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 418.978058, -3.921031, 81.660141, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 420.252106, -3.888254, 82.093483, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 408.884491, -5.827724, 62.036102, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 375.084778, -5.777528, 87.915588, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'midgeswarm_136' ) , 8, 143 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 220.407944, -10.353599, 70.452797, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 231.921249, -8.747519, 35.056480, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 207.536041, -5.182043, 22.215717, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 243.712677, -6.880908, 11.979882, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 218.502960, -4.188119, -3.029413, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'microchu_32' ) , 8, 143 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 231.353577, -11.764830, 65.806046, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 223.132217, -10.299309, 71.811539, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 219.395447, -9.517127, 57.155708, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 240.977493, -10.807569, 44.424423, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 218.043274, -5.788846, 18.506189, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 255.650284, -8.706514, -0.022583, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 253.681152, -8.692828, 16.207722, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 262.784332, -13.499894, 49.831326, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 251.587021, -13.410770, 51.637657, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 239.286682, -10.883812, 45.472836, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 218.003647, -5.833176, 19.700842, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'midgeswarm_136' ) , 9, 160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 354.580963, -0.268882, 186.486176, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 326.526215, -7.833990, 133.685562, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 314.787628, -9.793298, 142.268997, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 379.200378, 1.767053, 178.913879, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 333.916931, -4.548035, 174.693787, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 154, ( SELECT id FROM bnpctemplate WHERE name = 'opo-opo_5' ) , 9, 160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 315.136444, -11.663385, 158.180984, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 313.904663, -12.598672, 160.887939, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 320.649933, -10.416337, 148.953766, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 320.352509, -8.363276, 128.012970, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 318.683868, -8.737525, 124.636429, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 313.547729, -9.409240, 139.119247, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 307.959412, -9.929617, 143.559265, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 352.410126, -0.772906, 185.705154, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 334.744812, -6.814229, 152.445847, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 337.138733, -3.983467, 176.923523, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 340.482574, -4.009658, 171.799622, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 331.428375, -5.428444, 168.828629, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 340.971313, -4.227253, 169.005402, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'strikingdummy_901' ) , 1, 44 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -417.529114, 210.788193, -217.341202, 0, 4297229 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -413.101990, 210.788193, -212.035004, 0, 4297228 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -423.044800, 210.788193, -221.963104, 0, 4297227 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'Ixaliwildtalon_113' ) , 30, 821 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 462.373901, 232.907944, 320.440399, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 527.430542, 235.129349, 299.619202, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'Ixaliboundwing_114' ) , 30, 821 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 550.987366, 235.557602, 305.626678, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'Ixalistillbeak_115' ) , 30, 821 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 539.909912, 235.309296, 290.943695, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'Ixalifearcaller_116' ) , 30, 821 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 487.834229, 234.244415, 314.059570, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 543.114685, 235.512100, 292.484009, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'icesprite_132' ) , 35, 1277 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 32.675182, 262.243927, 260.232086, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 27.980587, 261.239624, 262.676849, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 96.706360, 252.546127, 270.619171, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 267.626709, 226.623337, 282.349426, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 172.757309, 232.334015, 265.771576, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 7.422953, 219.023529, 380.480438, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 8.235529, 201.353760, 511.747192, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 397.417969, 226.328033, 348.034332, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 51.642254, 215.898407, 392.493439, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 60.428696, 240.480194, 331.733063, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'ornerykarakul_719' ) , 35, 1277 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 333.934814, 222.467636, 368.052826, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 355.558685, 224.981644, 305.282196, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 416.578278, 226.736359, 369.277924, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 425.202606, 228.738434, 368.267975, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 430.079041, 219.884720, 411.252930, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 418.378723, 217.996384, 480.745941, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 413.173645, 221.322296, 486.631409, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 422.828857, 219.964218, 494.625366, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'highlandgoobbue_720' ) , 35, 1277 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -27.337889, 204.083527, 481.728180, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 86.406487, 222.600800, 424.827240, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 265.031250, 295.277771, -92.892166, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 184.552795, 243.828537, 219.756653, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 394.383698, 224.221405, 384.603394, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 337.264343, 263.193237, 106.898193, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 167.036819, 277.778595, -51.413517, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 85.938614, 243.863098, 305.131165, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'snowwolfpup_731' ) , 35, 1277 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 21.140892, 217.098801, 386.722900, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 10.422348, 225.236618, 358.403290, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 111.286888, 240.089966, 295.171844, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 32.826191, 236.510483, 325.665497, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 8.497777, 223.819183, 362.026550, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 81.038208, 241.038330, 317.950500, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 67.866928, 242.492111, 318.612549, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 63.308071, 255.671127, 278.395935, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'icesprite_132' ) , 36, 1368 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 244.120773, 261.435303, 64.688011, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 344.651184, 232.753128, 257.829376, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 279.190216, 241.675568, 204.771988, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 192.785095, 284.457336, -80.264252, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 155.914124, 276.436127, 37.077682, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 191.357620, 257.041443, 98.856407, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 352.820740, 233.921524, 257.255676, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 231.725494, 276.700195, -44.714828, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'feralcroc_395' ) , 36, 1368 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 331.776001, 257.563812, 131.133133, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 187.243958, 272.071594, 3.242833, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 169.305725, 273.809784, -16.184427, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 289.569305, 269.505249, 41.685802, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 284.735657, 269.848877, 39.934162, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 202.333237, 253.556686, 154.028442, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 278.221436, 253.156296, 149.374634, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 334.500031, 248.613968, 183.827179, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 244.965820, 270.033539, 24.639282, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'ornerykarakul_719' ) , 36, 1368 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 161.077118, 293.443634, -100.608215, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 163.742310, 292.220795, -95.033646, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 138.663742, 298.850220, -101.741051, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 136.697479, 283.077942, -64.548347, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 250.711288, 295.505829, -112.946159, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 290.448822, 303.699463, -89.337227, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 262.557434, 290.234772, -65.879425, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 254.999634, 288.523743, -69.195091, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 268.611969, 284.518951, -40.511913, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'Ixaliwildtalon_113' ) , 37, 1459 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 523.590454, 308.895416, -302.179138, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'Ixaliboundwing_114' ) , 37, 1459 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 551.476196, 322.326385, -309.006409, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'Ixalistillbeak_115' ) , 37, 1459 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 571.863403, 319.795624, -286.131836, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'Ixalifearcaller_116' ) , 37, 1459 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 573.244080, 322.398438, -297.404999, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'icesprite_132' ) , 37, 1459 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 501.863922, 310.903809, -359.707367, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 497.545898, 342.264648, -432.923187, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 501.668488, 302.950745, -245.239563, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 456.784210, 306.902496, -291.494446, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 457.702637, 305.071930, -283.787415, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 342.435303, 311.762787, -402.972076, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 348.522461, 309.895996, -273.534973, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 403.915497, 317.553528, -275.776611, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 374.394775, 306.431519, -335.859192, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 429.043823, 342.352600, -440.901703, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 419.003113, 337.297546, -430.941254, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'ornerykarakul_719' ) , 37, 1459 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 330.063110, 319.769409, -435.677277, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 321.135712, 304.701965, -390.678925, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 361.960236, 314.709045, -395.052277, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 351.444702, 311.778992, -393.652740, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 358.909149, 313.785156, -393.582886, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 354.200500, 317.416473, -418.741974, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 317.226868, 308.090424, -422.265442, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 310.441010, 307.720062, -421.552490, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'snowwolfpup_731' ) , 37, 1459 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 349.637390, 305.191010, -318.671204, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 353.547150, 304.886627, -359.124786, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 320.805023, 302.852142, -335.988068, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 364.291779, 317.988403, -259.718689, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 496.114319, 306.809387, -351.640198, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 476.277863, 327.806549, -402.334106, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 417.920593, 305.559021, -330.903748, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 407.109772, 306.594147, -328.104889, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 391.842133, 321.335327, -400.393188, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'icesprite_132' ) , 38, 1550 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 483.496948, 353.598755, -660.127014, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 414.934998, 348.769745, -690.399841, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 432.581970, 365.652283, -539.851257, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 163.989243, 351.061829, -497.558807, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 120.827675, 352.960876, -335.466034, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 177.932404, 338.506897, -388.890137, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 217.700165, 330.215057, -469.465027, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 281.035400, 316.082275, -434.763702, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'vodoriga_388' ) , 38, 1550 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 477.233459, 248.456039, -301.901123, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 489.248993, 272.186829, -299.472046, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 297.325378, 235.924286, -367.618164, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 291.228394, 236.937057, -328.558411, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 286.114685, 236.966843, -323.344513, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 395.822144, 248.019958, -317.530151, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 461.727325, 251.037781, -313.176300, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 470.054596, 249.105988, -254.382004, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'downyaevis_398' ) , 38, 1550 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 126.487556, 376.121887, -671.352844, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 93.013039, 375.263519, -645.913879, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 356.829590, 356.530273, -597.487610, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 217.582626, 360.936371, -584.412598, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 284.727081, 358.679688, -563.639282, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 257.246979, 357.043854, -545.990479, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 188.361755, 357.848938, -557.438049, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'will-o-the-wyke_45' ) , 38, 1550 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 574.856079, 282.880585, -312.462463, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 596.691467, 283.445496, -318.131195, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 586.072815, 282.785126, -291.502167, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 579.877991, 282.822540, -289.927277, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 685.924988, 297.168396, -326.455322, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 664.990967, 304.447815, -361.201050, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 686.013306, 296.904388, -324.822754, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 615.642090, 324.731323, -401.451813, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'redhornogre_646' ) , 38, 1550 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 177.891388, 338.693512, -468.232574, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 147.749207, 345.410767, -377.571594, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 257.777740, 343.245758, -494.076447, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 140.401611, 349.196381, -384.930573, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 413.313812, 354.795105, -501.312134, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 394.342346, 355.266541, -550.298950, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 536.989502, 349.073608, -733.111877, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 536.123291, 349.601379, -742.544189, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 471.058807, 350.520935, -666.132568, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 293.890808, 329.915039, -479.212799, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 210.662964, 328.559235, -434.019531, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'ornerykarakul_719' ) , 38, 1550 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 112.232140, 358.878540, -386.829315, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 115.496727, 357.692322, -386.438385, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 89.897560, 362.264557, -351.091675, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 116.924232, 354.119171, -336.382996, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 109.250580, 357.766388, -313.639587, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 124.310959, 354.106415, -322.231506, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'icesprite_132' ) , 39, 1641 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 283.641235, 361.592621, -630.683777, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -183.260040, 288.416382, -116.605751, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -319.716125, 256.205994, -159.261459, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -348.268188, 250.355408, -111.134613, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -247.207886, 265.060791, -51.396294, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 209.536453, 359.522522, -664.916626, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 209.212524, 360.501038, -662.594360, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -249.119202, 273.183746, -134.746048, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -137.833359, 299.344238, -235.870209, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -312.231445, 249.022888, 1.153427, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 136.111832, 374.046265, -662.706482, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -148.682159, 292.171021, -186.524170, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 301.538483, 344.430023, -518.165283, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -287.541992, 260.109833, -74.893539, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 321.476105, 359.471161, -580.288391, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 203.941452, 363.966309, -601.148560, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 62.606953, 292.382080, -154.577194, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 60.591560, 293.348297, -151.981262, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 117.070923, 288.130554, -211.987061, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -13.957865, 301.576355, -217.987778, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -101.098221, 298.641144, -162.133240, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'chinchilla_143' ) , 39, 1641 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -338.448822, 257.999054, -64.597092, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -421.544250, 240.946960, -109.992783, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -249.636810, 269.241638, -76.809296, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -260.228760, 263.985626, -66.514519, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -317.043427, 256.464569, -95.888741, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -317.572906, 255.662796, -39.230091, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -361.936523, 235.387253, -155.539169, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -358.447052, 236.547913, -156.106735, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'taurus_390' ) , 39, 1641 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 597.126526, 283.091064, -301.764801, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 580.354492, 282.934967, -316.991028, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 564.278137, 283.636169, -305.855103, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 564.092957, 341.698669, -474.057831, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 622.602783, 326.449280, -433.020996, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 624.230103, 322.619415, -390.682251, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 685.921326, 308.378113, -365.840240, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 672.854187, 294.435577, -323.289490, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'bateleur_403' ) , 39, 1641 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -214.537369, 285.058136, -51.887932, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -208.732971, 281.588623, -189.199890, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -167.044022, 291.228638, -192.297134, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -160.296509, 292.627899, -206.289688, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -108.635422, 301.706238, -131.203369, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -116.525169, 298.186615, -207.090408, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -205.599884, 283.138947, -114.945099, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -286.452789, 263.121155, -158.605179, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'ornerykarakul_719' ) , 39, 1641 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 41.077877, 311.425934, -247.276367, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 61.930019, 300.807098, -251.190903, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 51.212017, 310.219818, -246.159897, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -6.415130, 306.340942, -235.757263, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -6.801912, 307.684052, -241.512924, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -14.607471, 311.920868, -253.942581, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 6.942463, 311.798889, -241.633972, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'snowstormgoobbue_720' ) , 39, 1641 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -58.090225, 304.650146, -269.546906, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 1.727779, 310.386993, -146.170181, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 135.432892, 290.764099, -260.286163, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 107.526894, 289.521606, -167.856461, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -84.918716, 299.561249, -170.980911, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 65.169930, 289.178619, -213.938828, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'icesprite_132' ) , 40, 1732 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -932.232056, 260.700409, 13.243055, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -760.924622, 240.981644, -149.837891, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -791.523743, 244.254044, -174.689102, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -917.944519, 242.888000, 8.132694, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -494.742676, 230.150757, -114.903236, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -538.739807, 216.045654, -163.807373, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -748.742249, 227.517410, -72.684448, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -676.740356, 224.383682, -22.062744, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -534.677307, 226.352600, -114.963631, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -633.802795, 220.563080, -339.355347, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -800.357666, 226.632675, 14.909669, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -895.005005, 249.046478, -40.031979, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -648.438660, 207.811646, -459.020935, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -650.523438, 208.620941, -455.252930, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -583.442871, 206.928787, -389.181885, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -532.666870, 208.075012, -362.664764, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -523.076111, 189.762070, -425.516510, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -864.494629, 228.501312, 26.624344, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'dragonfly_387' ) , 40, 1732 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -582.278198, 187.282700, -480.284821, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -586.403625, 202.628387, -435.213135, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -653.713379, 212.211060, -435.108093, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -647.798279, 203.470001, -492.463654, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -554.290039, 207.443954, -356.293518, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -601.049805, 209.605377, -355.993683, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -611.803040, 216.217697, -320.388275, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -623.946838, 211.976929, -374.316193, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -621.242126, 210.416702, -384.797211, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'baritinecroc_394' ) , 40, 1732 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -940.144531, 269.559204, 2.527544, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -954.024597, 276.568115, -34.718700, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -853.541382, 225.962921, 24.486401, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -869.951660, 230.457199, 32.773064, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -862.816162, 225.524933, -6.974652, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -905.373230, 246.453918, -23.341742, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -909.778992, 249.901306, 30.506165, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'hippocerf_644' ) , 40, 1732 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -496.393890, 238.520020, -96.179955, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -474.079224, 229.449173, -120.211693, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -572.424377, 232.884766, -73.640396, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -576.600830, 226.681702, -121.808464, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -656.337708, 228.134872, -49.158978, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -479.014038, 226.141785, -126.932625, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'icesprite_132' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -521.321716, 241.742615, 304.694336, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -438.502258, 245.378830, 362.363251, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -521.129639, 237.639862, 377.629944, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -247.876587, 226.944244, 415.705139, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -488.658112, 281.952911, 192.861679, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'biast_191' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -346.654175, 238.691528, 379.766724, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -268.473511, 226.994873, 431.678070, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -183.928284, 225.964691, 401.942719, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -228.511353, 225.166077, 416.642273, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -521.041626, 277.192566, 200.590500, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -533.846863, 240.435715, 331.611420, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -473.987610, 235.608490, 408.959839, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -374.834717, 238.336014, 384.787689, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -129.661850, 216.175781, 439.570831, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -459.892975, 286.018707, 200.298111, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'icesprite_132' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -381.941254, 250.282166, 219.689529, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -228.601151, 229.119217, 551.400146, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -254.580215, 224.526016, 580.460144, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -294.009705, 224.929611, 484.647614, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -286.526459, 221.623627, 666.361023, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -276.835693, 222.989426, 672.876587, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -275.791443, 266.764587, 319.525909, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -343.622070, 235.947632, 522.651184, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -418.900726, 233.858917, 460.887024, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -386.902863, 233.421722, 318.439728, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'giantlogger_721' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -355.793671, 274.167511, 254.849136, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -397.784851, 302.525299, 194.169983, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -281.325714, 260.007813, 335.151642, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'giantlugger_722' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -321.803925, 261.993500, 221.584076, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -461.849884, 269.465942, 264.433899, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -359.411255, 249.556107, 286.982635, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'giantreader_723' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -286.297577, 294.229828, 251.342789, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -434.946106, 242.632126, 321.032135, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -396.299713, 241.817520, 281.009369, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'snowwolf_731' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -254.415115, 224.746628, 521.873291, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -245.559784, 225.466248, 518.322998, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -282.823853, 225.213470, 505.043060, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -250.933273, 225.385696, 620.836182, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -208.730225, 230.714523, 560.231995, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -304.840820, 226.886047, 557.799316, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -394.650421, 238.065781, 500.630859, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -502.610840, 243.067947, 446.797302, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -485.722290, 243.436295, 460.457214, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'icesprite_132' ) , 47, 2464 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -97.443146, 214.020966, 427.092865, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -155.898071, 220.965652, 419.068939, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -750.190308, 238.779251, 347.429779, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -149.026291, 216.953171, 485.981720, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -648.104248, 245.191254, 287.448395, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -606.855408, 245.267609, 336.895752, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'mudpuppy_139' ) , 47, 2464 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -197.867996, 216.785187, 481.169098, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -455.683380, 231.560623, 437.461548, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -531.918274, 235.566162, 411.499817, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -554.590393, 235.996048, 405.631104, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -564.853638, 236.390228, 400.694336, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -115.737076, 206.017502, 470.519318, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -172.735596, 214.930786, 468.575043, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -262.903687, 222.085876, 466.213501, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -250.799042, 221.465118, 463.720001, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -327.117706, 223.533340, 445.259796, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'biast_191' ) , 47, 2464 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -741.786377, 254.826660, 426.798737, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -765.416138, 255.040924, 420.440338, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -708.307983, 237.748093, 303.138733, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -633.960266, 244.929291, 301.204254, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'Natalanwatchwolf_141' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 562.530151, 292.167267, -34.908226, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 581.815613, 289.534271, -42.670319, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 556.419250, 298.132813, 79.147224, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 569.233582, 287.274078, 119.093300, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 633.218445, 287.026581, 113.530289, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 584.607239, 289.360779, -25.323557, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 573.773254, 292.712769, -48.949265, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 685.565430, 291.606934, 7.757469, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 637.367432, 288.047028, 36.666451, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 509.971863, 303.722931, -226.720856, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 498.967010, 308.593506, -166.805054, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 625.524048, 299.783325, -68.708473, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'plasmoid_46' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -702.152222, 253.974960, 503.020538, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -683.154785, 254.341812, 511.382050, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -699.516235, 253.836029, 503.724915, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -685.516724, 254.095825, 502.853241, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -685.696594, 254.173538, 505.888885, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -701.182556, 253.821014, 513.815186, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -709.671448, 253.998901, 504.171509, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -677.383545, 255.094315, 503.066376, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'Natalanwindtalon_747' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 715.067993, 285.913544, 80.239952, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 614.591492, 284.566467, 166.820251, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 508.591888, 303.629822, -205.656296, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 524.144287, 302.339417, -192.503647, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 598.261047, 302.639069, -100.183243, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 654.409180, 286.791412, 37.999821, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 673.790527, 287.057343, 53.708977, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'Natalanboldwing_748' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 558.831116, 300.338257, 59.949520, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 602.427917, 290.742889, -0.884406, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 565.585571, 287.575226, 154.665298, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 601.759216, 287.601593, 127.919098, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 644.013306, 286.571625, 153.338135, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 642.707703, 286.198944, 132.877899, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 657.228088, 286.375885, 36.471931, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 664.371399, 287.443909, 73.074158, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 527.275391, 303.059296, -162.340805, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 561.266296, 304.677582, -150.888657, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 586.301575, 302.701202, -115.328102, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 669.497986, 301.708099, -29.924919, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 695.052246, 302.461975, -23.839048, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 654.442383, 298.421295, -12.551030, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'Natalanswiftbeak_749' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 562.561707, 291.382629, 100.538834, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 639.859619, 286.264282, 135.124603, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 493.164307, 305.100525, -192.907608, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 647.972717, 303.846649, -37.018333, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 652.776672, 287.208984, 33.839008, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 634.897278, 290.719818, 14.747633, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'Natalanfogcaller_750' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 714.614868, 286.017487, 46.294025, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 636.997986, 287.129730, 80.415337, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 588.080933, 286.175751, 174.857452, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 637.342224, 302.667908, -45.614498, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 655.671082, 286.824310, 34.141949, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 557.441101, 302.674225, -161.035263, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 511.356689, 303.173004, -206.740097, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 155, ( SELECT id FROM bnpctemplate WHERE name = 'strikingdummy_901' ) , 50, 2778 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -397.251587, 210.788193, -228.848999, 0, 4128000 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -397.352997, 210.788193, -233.666794, 0, 4128001 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -397.424805, 210.788193, -238.255402, 0, 4128002 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'lightningsprite_135' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -303.977417, -15.218186, -490.103729, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -322.071564, -0.865495, -562.286316, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -210.086899, 11.080338, -668.859192, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -377.894623, -12.810008, -506.370056, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -389.254028, -7.327843, -534.378357, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -156.642319, -1.296353, -604.819458, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -58.082581, 17.343775, -622.541870, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -89.384499, 1.025701, -620.517517, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'mudpuppy_139' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -414.466278, -2.299449, -554.721924, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -468.623657, -9.292061, -532.347168, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -417.403351, -7.714817, -518.341797, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -347.994385, -6.070023, -525.759460, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -349.574188, -1.550561, -555.300659, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -354.515076, -3.770710, -545.892029, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -362.881805, -15.856041, -487.389801, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -397.741791, -13.393529, -502.261108, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'morbol_140' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -425.434082, -16.636753, -382.689301, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -398.317932, -16.800800, -357.317383, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -407.361694, -16.135292, -458.337372, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -379.322754, -16.686203, -430.928680, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -390.696289, -16.800800, -348.696930, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -307.399323, -15.731747, -459.248505, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -339.796875, -16.800800, -428.212036, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -373.678680, -16.644474, -390.722046, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -369.143799, -16.898170, -389.766815, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -379.615662, -16.783527, -442.480804, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -402.383331, -16.246403, -464.413513, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -336.279297, -16.898170, -437.756195, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -390.139587, -16.898170, -350.704712, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'nix_27' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -211.080307, -2.061596, -575.033264, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -266.214294, -5.661924, -528.554749, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -276.728821, -8.547830, -516.347168, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -203.604965, 1.486738, -614.791443, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -101.258408, 1.885065, -589.908875, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -103.753494, -0.186328, -642.914734, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -168.383759, 5.595187, -668.745728, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -298.382477, -3.840054, -550.335754, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'lightningsprite_135' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -277.081451, -8.401209, -333.098236, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -311.176056, -14.900937, -329.974304, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -187.461533, 34.567116, -196.483429, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -220.454086, -1.075741, -277.235016, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -230.481354, 16.903595, -230.803070, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 217.857697, 20.051857, -613.301819, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 155.166733, 14.903937, -596.540161, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 200.360336, 1.702518, -558.626465, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'plasmoid_46' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -125.951447, 46.293331, -183.339401, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -127.948570, 46.135983, -197.778687, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -133.199997, 46.999210, -192.000000, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -147.452286, 41.806793, -207.880341, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -149.847839, 42.019035, -204.254242, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -140.908890, 44.697800, -177.646912, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -142.000122, 45.628403, -185.724472, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -149.445313, 43.131622, -191.942474, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'daringharrier_724' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -212.115707, -1.383170, -289.682190, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -235.959198, 22.114910, -212.031006, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -232.202393, -4.186285, -305.458282, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'ragingharrier_725' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -222.330734, 5.693151, -256.171509, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -234.943207, 21.774599, -213.092300, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -211.255753, -2.567472, -287.138916, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'hexingharrier_726' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -254.444763, 0.609506, -306.494873, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -234.301407, 21.966511, -211.462402, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -205.091690, 24.674786, -218.570084, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'lakecobra_777' ) , 45, 2255 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 151.085205, -24.951323, -444.920013, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 162.175613, -27.296377, -429.861755, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 301.139099, -26.399227, -410.203247, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 299.270691, -26.405828, -424.736298, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 269.932007, -23.239962, -411.525269, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 211.870865, -22.955191, -428.916260, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 211.342316, -22.170155, -424.667023, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 175.096100, -22.865566, -448.000000, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'lightningsprite_135' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 571.826111, -1.247581, -620.876892, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 315.973877, 25.939857, -723.536804, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 298.110565, 15.631147, -651.689087, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 344.112427, -7.751473, -453.540222, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 599.081482, 8.961553, -520.174011, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 500.870300, 2.629945, -502.870697, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 334.465027, 4.794425, -695.558777, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 389.196014, -4.580150, -692.656921, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 413.702881, -15.597694, -357.496338, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 512.644226, -7.784236, -371.760681, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 557.332642, -7.243786, -656.809448, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = '5thCohorthoplomachus_55' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -564.584839, -2.800797, -447.071655, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -435.611115, -13.809805, -424.957581, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -463.960449, -3.640198, -249.241516, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -449.625519, -10.531788, -470.876099, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -477.003510, -4.286805, -464.371582, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -526.574768, -2.782185, -289.250641, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = '5thCohortlaquearius_61' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -455.031860, -10.454103, -450.860992, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -634.989868, -3.396238, -368.281830, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -467.266113, -4.013132, -504.465118, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -542.341980, -3.303576, -329.811554, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -469.077148, -4.000793, -270.326691, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -469.328918, -5.155939, -481.366150, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = '5thCohorteques_62' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -592.797729, -2.945007, -432.211792, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -556.469055, -3.625808, -377.691071, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -635.341492, -2.933044, -396.278687, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -558.028809, -3.625569, -364.324585, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -446.294891, -4.000447, -219.651199, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -431.758209, -2.150372, -301.421326, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -471.824188, -6.144047, -433.737701, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -437.867004, -2.581742, -273.708099, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -489.250092, -3.708008, -282.124115, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -455.741211, -7.188580, -484.428192, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -547.105408, -1.683239, -295.466248, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -484.855499, -6.027344, -447.898102, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = '5thCohortsecutor_63' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -570.931946, -2.800797, -422.089050, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -432.760742, -2.817041, -250.651367, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -559.921387, -2.420147, -321.828735, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -475.929382, -6.208005, -449.370270, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = '5thCohortsignifer_64' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -603.380615, -3.187741, -369.410156, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -457.842072, -9.880449, -441.958862, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -488.413544, -3.617040, -242.025909, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -528.182495, -3.558550, -323.583954, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'hippogryph_645' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 354.464050, 21.693750, -744.866760, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 349.609161, 21.531591, -724.361389, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 366.142975, 22.337353, -740.846924, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 363.010376, -1.049481, -694.392578, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 590.226440, 9.515460, -477.894226, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 612.316223, 8.462365, -483.598358, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 276.356079, 32.676960, -655.391785, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 273.214020, 32.395222, -656.625366, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 291.417358, 35.715866, -687.826294, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 299.777557, 22.516516, -688.528137, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 562.304382, 15.582561, -521.899414, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 574.521240, 12.066303, -511.422089, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 559.422668, -4.863536, -645.617676, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'gigasshramana_727' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 522.897888, 1.771607, -455.119629, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 310.518005, -5.701499, -517.838379, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 364.422760, -13.057137, -435.660309, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 451.150757, -17.230291, -352.315399, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'gigasbonze_728' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 279.805145, -0.918655, -567.701660, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 515.534363, -8.709470, -383.690826, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 352.770721, -4.834165, -463.461273, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 390.073608, -17.039326, -345.910248, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'gigassozu_729' ) , 46, 2360 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 309.407532, 6.247953, -563.733398, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 414.196625, -19.310278, -323.635834, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 478.351776, -12.445999, -384.714325, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 354.744110, -18.259932, -403.526672, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = '5thCohortvanguard_201' ) , 47, 2464 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -541.108704, -3.727405, -407.826080, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -521.522400, -2.254568, -303.751251, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -494.048157, -3.460580, -253.807129, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -547.127563, -1.781404, -313.316772, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'lightningsprite_135' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 482.730743, 5.504715, -839.886292, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 412.780487, -8.775566, -743.389526, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 485.918427, 5.110899, -835.108887, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 501.562164, -2.013402, -778.711731, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 483.106079, 2.104050, -808.396851, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 471.033020, 4.563618, -821.620300, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 554.380798, -8.677252, -751.789124, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'hapalit_647' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 447.502747, -4.764102, -756.637573, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 460.339722, -4.278372, -766.111023, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 488.087097, 3.214123, -808.898315, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 498.235565, -4.729586, -758.059570, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 481.842224, -0.429031, -793.454590, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 468.914795, 1.483291, -800.138794, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 550.074097, -9.258121, -735.288452, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'lightningsprite_135' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 585.855835, -1.307962, -325.354187, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 598.141785, -3.206517, -307.053680, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 156, ( SELECT id FROM bnpctemplate WHERE name = 'gigasbhikkhu_730' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 572.126831, -1.349033, -328.266052, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 582.488342, -2.319668, -269.724945, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 582.958374, -2.881041, -278.033966, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 157, ( SELECT id FROM bnpctemplate WHERE name = 'lightningsprite_135' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -53.968075, 40.626629, 577.494324, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -54.772152, 40.937740, 569.377563, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -27.903179, 55.617722, 511.196289, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 157, ( SELECT id FROM bnpctemplate WHERE name = 'wildjackal_138' ) , 10, 192 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -89.379288, 57.873600, 491.677826, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -80.299843, 60.484467, 498.957672, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -79.367607, 57.337360, 534.587830, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -81.123886, 55.629345, 540.495178, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -15.353406, 60.152943, 476.861328, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -72.753616, 61.324738, 494.654724, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -26.776743, 43.582298, 560.247437, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -50.769970, 40.481682, 588.929504, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -52.828140, 40.217793, 600.331543, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -49.674686, 40.202091, 599.041870, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -57.956455, 55.197498, 509.726349, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 157, ( SELECT id FROM bnpctemplate WHERE name = 'wildjackal_138' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 82.880508, 50.351704, 638.699036, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 68.658043, 46.920773, 632.664490, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 45.426044, 37.137592, 655.502625, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 81.656174, 49.286789, 644.880005, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 157, ( SELECT id FROM bnpctemplate WHERE name = 'Morabymole_205' ) , 12, 243 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -0.340401, 42.041264, 627.708862, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 2.056473, 42.693142, 626.235168, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 157, ( SELECT id FROM bnpctemplate WHERE name = 'lightningsprite_135' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -124.439224, 10.043127, 653.849670, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -128.738632, 8.098146, 662.301453, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -74.418259, 3.002367, 802.470886, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 157, ( SELECT id FROM bnpctemplate WHERE name = 'megalocrab_326' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -175.758530, 0.192970, 740.565857, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -129.824707, 0.392452, 755.607910, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -126.430168, 0.436597, 759.001587, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -90.773346, 8.807611, 680.411194, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -73.412216, 2.084321, 760.770325, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -119.570595, 3.740158, 701.817200, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -81.683006, 3.098206, 798.504700, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -210.956909, 0.192970, 664.005737, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -222.488434, 0.192970, 683.450134, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -214.674591, 0.192970, 689.205322, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 157, ( SELECT id FROM bnpctemplate WHERE name = 'Qiqirneggdigger_771' ) , 13, 268 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -144.570282, 4.538429, 667.944885, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -149.620605, 3.272589, 669.616089, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -161.990494, 1.669328, 666.421692, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -160.952896, 1.569027, 667.861206, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -147.976685, 7.211773, 648.754333, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -150.745529, 1.891097, 679.430908, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -140.959915, 1.381874, 717.960083, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -149.139404, 0.759766, 712.362000, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -148.567505, 0.750069, 714.199524, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 157, ( SELECT id FROM bnpctemplate WHERE name = 'blackbat_1037' ) , 15, 905 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 263.554291, 46.455059, -196.807800, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 267.421997, 45.726028, -206.636902, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 302.008209, 47.155479, -168.970596, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 310.276093, 46.441952, -163.621597, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 329.482605, 44.452869, -210.422897, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 324.378510, 43.693790, -222.837906, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 157, ( SELECT id FROM bnpctemplate WHERE name = 'caveaurelia_1038' ) , 15, 905 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 271.453613, 45.504711, -200.075607, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 157, ( SELECT id FROM bnpctemplate WHERE name = 'foper_7439' ) , 60, 40160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 9.523642, 53.720516, -217.046158, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 157, ( SELECT id FROM bnpctemplate WHERE name = 'spinner_7442' ) , 60, 40160 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 223.210526, 44.843811, -339.998749, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'lightningsprite_135' ) , 30, 821 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -347.022949, 63.415745, -132.623322, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -363.580231, 61.701744, -119.534874, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'pteroc_65' ) , 30, 821 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -321.147461, 53.798512, -96.408524, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -356.290527, 55.899475, -93.841743, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -350.635498, 61.158661, -113.309608, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -321.038055, 60.512489, -128.648529, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -338.725647, 64.298172, -159.727295, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -342.011993, 64.446968, -151.891815, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -317.847687, 60.286209, -129.301788, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'coeurl_117' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -372.536163, 60.228157, -363.899536, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -365.234192, 66.724480, -308.385559, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -287.023132, 70.205620, -267.194946, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -372.261658, 61.095764, -353.771515, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'highlandcondor_13' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -307.386047, 62.096004, -152.895493, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -306.423218, 63.397869, -178.398529, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -245.583557, 63.578472, -257.752502, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -248.809372, 63.337116, -186.825409, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -251.319809, 63.656792, -187.358612, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -212.960373, 67.387367, -246.228317, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -211.895126, 66.848137, -239.105133, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -240.211884, 64.022240, -259.751068, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -234.424393, 64.164063, -246.631607, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'lightningsprite_135' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -333.732941, 63.304878, -336.673401, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -289.034119, 55.491577, -263.069733, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -376.422943, 51.427441, -299.779205, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -327.283844, 64.145172, -189.731018, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -306.285767, 64.291924, -311.835114, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -150.499939, 81.828575, -315.151672, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -169.926010, 78.807106, -262.991974, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -267.575317, 63.455273, -224.136703, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -353.888123, 55.083958, -237.148224, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -389.761566, 51.191982, -345.163788, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'velociraptor_2' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -5.637678, 68.019386, -214.942612, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 18.129543, 72.171211, -191.453796, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -60.828506, 64.944656, -305.988861, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -118.311058, 76.875130, -291.439056, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -127.317406, 82.112389, -324.723633, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -163.437668, 79.264267, -259.714844, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -49.723907, 64.490059, -312.842926, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -135.645721, 81.998657, -319.504242, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -195.109604, 72.460823, -276.784637, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -47.599892, 63.600052, -266.309052, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'youngcoeurl_2269' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -303.078644, 68.361717, -297.737000, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -255.468460, 64.502861, -317.427307, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -270.888275, 64.940819, -327.112701, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'basaltgolem_30' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -316.771637, 57.003483, -220.300491, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -401.999390, 46.804279, -311.378540, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -332.464172, 51.144405, -290.102753, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -294.348907, 54.569733, -291.431671, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -350.620331, 51.565670, -270.637085, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -398.674957, 47.831573, -269.691711, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -383.325775, 48.834301, -323.202789, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'plasmoid_46' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 189.388718, 59.104839, -144.598907, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 171.776352, 59.953094, -155.035141, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 193.229309, 61.578178, -161.597870, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 196.296432, 62.011551, -161.851669, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 185.743362, 60.286526, -151.398743, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 179.391495, 59.890179, -150.509918, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 187.047287, 61.563484, -157.218918, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 180.942902, 60.362854, -152.891006, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'ringtail_6' ) , 34, 1185 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -279.334503, 16.132767, -523.819031, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -288.485809, 14.193029, -530.573853, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -340.413513, 23.094437, -512.351563, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -290.487518, 32.696712, -443.029236, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -307.256683, 33.256664, -455.805420, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -311.870270, 33.398094, -442.865112, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -306.853668, 33.476841, -436.960175, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -319.967285, 33.982246, -444.763367, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'grenade_327' ) , 41, 1837 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 34.178150, 48.461147, -375.468994, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 48.402393, 48.614826, -361.302643, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 85.007576, 50.536095, -367.253632, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 60.110020, 48.649105, -380.978607, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 59.447346, 48.807461, -384.867065, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 22.966957, 49.832260, -333.084229, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 3.685125, 48.743439, -305.409912, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -1.144092, 49.648441, -345.438019, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -4.262372, 50.090794, -343.667755, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'koboldroundsman_755' ) , 41, 1837 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 61.200817, 58.297600, -320.988129, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 73.301140, 58.355816, -305.826813, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 79.789307, 68.458755, -250.385300, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 74.143547, 48.569462, -406.118896, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 21.590952, 48.626740, -362.158569, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -0.504146, 48.801586, -321.607025, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'koboldquarryman_756' ) , 41, 1837 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 74.303841, 66.912476, -268.914001, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 20.563553, 48.247536, -374.127106, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -4.635334, 49.549675, -325.262787, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 71.335938, 48.508419, -408.346710, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 46.616211, 48.294800, -346.456085, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'koboldbedesman_757' ) , 41, 1837 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 67.995995, 48.774105, -365.531311, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -12.964981, 48.964130, -302.668335, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 71.241028, 48.451752, -394.935760, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 63.253155, 66.446419, -240.525650, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 43.717041, 48.416870, -344.197815, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'koboldpriest_758' ) , 41, 1837 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -23.857216, 52.665462, -346.535431, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 48.208912, 48.597782, -396.997925, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'bombincubator_2833' ) , 44, 4300 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 50.868221, 55.176491, -509.842285, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 61.290409, 55.318249, -509.565887, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 47.109711, 56.992210, -500.873199, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 51.481640, 55.599010, -491.209015, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'grenade_327' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 54.790012, 57.022041, -478.156219, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 57.793903, 55.909130, -503.626740, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 87.317947, 56.098694, -455.490509, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'koboldroundsman_755' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 76.014214, 57.355419, -507.396759, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 47.135010, 57.608570, -498.527496, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'koboldquarryman_756' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 53.829788, 55.176491, -510.031586, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 61.299801, 55.422451, -506.939392, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'koboldbedesman_757' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 53.985661, 56.038452, -492.126312, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 74.608871, 56.647209, -461.278381, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'koboldpriest_758' ) , 44, 2150 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 93.031929, 55.670906, -468.065399, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'syntheticdoblyn_189' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 21.296045, 26.766218, -802.790588, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 85.382042, 24.643120, -715.722839, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 57.210907, 24.870911, -629.589111, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 20.565119, 25.070910, -604.010437, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 21.997051, 21.634665, -771.928223, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'prototypebombincubator_2834' ) , 48, 5138 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 285.487915, 22.096889, -798.198914, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 282.380005, 22.062380, -807.590027, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 280.820007, 21.850000, -818.599976, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'UGhamaroroundsman_755' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -16.255825, 24.526670, -668.165039, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 51.050919, 24.376001, -578.706970, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 117.540199, 24.505325, -605.890015, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 81.046318, 24.956133, -820.638611, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 118.760902, 23.636169, -718.165894, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'UGhamaroquarryman_756' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 32.591251, 21.779306, -777.160645, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 32.349167, 24.317146, -625.427795, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 112.994026, 24.862309, -750.547607, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 74.762131, 25.395679, -678.056274, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 86.037354, 24.478621, -699.376709, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 49.350254, 24.708147, -672.372375, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'UGhamarobedesman_757' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 18.922966, 23.835314, -654.793762, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 54.950035, 26.048126, -722.882874, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 81.243698, 41.016026, -572.265015, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 27.764549, 21.624363, -783.434021, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'UGhamaropriest_758' ) , 48, 2569 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 117.893402, 23.059460, -785.317871, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 11.273822, 21.806263, -787.121216, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 12.355561, 24.670910, -604.740784, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 30.990971, 22.995300, -758.266602, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'syntheticdoblyn_189' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 207.942566, 24.711630, -741.470154, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 210.292221, 24.223930, -682.746277, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 208.449982, 23.665993, -691.032471, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 174.247070, 25.206915, -681.070374, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'UGhamarogolem_2838' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 256.240662, 22.044020, -822.947449, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 245.408157, 25.718151, -839.164795, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 308.813751, 23.907391, -727.725708, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 286.454437, 21.719885, -708.429260, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 282.155731, 25.110956, -735.153992, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'eliteroundsman_755' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 281.156311, 21.832199, -815.852112, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 175.829697, 23.483580, -792.629883, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 177.686096, 23.920490, -654.072205, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'elitequarryman_756' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 222.628784, 24.395672, -658.221313, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 283.243195, 22.311359, -796.170898, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 169.315552, 23.784765, -718.427002, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 153.011917, 25.991085, -749.276184, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'elitebedesman_757' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 172.444901, 24.988903, -784.642334, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 279.447388, 21.881470, -807.844788, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 158.525894, 22.116327, -698.329224, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 180, ( SELECT id FROM bnpctemplate WHERE name = 'elitepriest_758' ) , 49, 2673 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 253.727448, 22.013004, -797.213379, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 155.508408, 21.852791, -697.356995, 0, 0 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 132.211716, 24.414703, -655.873413, 0, 0 ); INSERT IGNORE INTO `spawngroup` ( `territoryTypeId`, `bNpcTemplateId`, `level`, `maxHp` ) VALUES ( 250, ( SELECT id FROM bnpctemplate WHERE name = 'strikingdummy_8016' ) , 1, 10000 ); -SET @last_id_spawngroup = LAST_INSERT_ID(); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 96.160080, 2.359415, -4.634595, 0, 6483953 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 104.112198, 2.334595, -4.719133, 0, 6483956 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 95.987587, 2.359415, -24.583460, 0, 6483949 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 103.990997, 2.360248, -24.776320, 0, 6483952 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 5.759247, 25.616760, -51.532589, 0, 4833611 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, 3.004736, 25.616760, -51.484291, 0, 4833609 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -3.924433, 25.616760, -51.544392, 0, 4833612 ); INSERT INTO `spawnpoint` ( `spawngroupid`, `x`, `y`, `z`, `r`, `gimmickId` ) VALUES ( @last_id_spawngroup, -5.181253, 25.616760, -41.729118, 0, 4833610 ); - -INSERT INTO `zonepositions` (`id`, `target_zone_id`, `pos_x`, `pos_y`, `pos_z`, `pos_o`, `radius`) VALUES -(6426420, 341, -83.034309, 20.799601, 84.731194, -0.872665, 2), -(6426421, 341, -787.899719, 20.402380, -786.736694, 0.872665, 2), -(6472443, 341, -91.735023, 19.211380, 76.868660, 0.698132, 2), -(6472444, 341, -780.357117, 19.153521, -795.817993, -0.785398, 2), -(6486045, 341, -90.000000, 19.369860, 77.000000, 0.785398, 2), -(6486053, 341, -780.000000, 19.313829, -793.500000, -0.872665, 2), -(4508781, 341, -45.563839, -3.999999, -121.815697, 0.279253, 2), -(4508782, 341, -52.463890, 4.000000, -88.498520, -0.610865, 2), -(4508783, 341, -71.971611, 6.000000, -73.975594, -0.883486, 2), -(4508784, 341, -89.064163, -4.000001, -138.395203, 0.593412, 2), -(4508785, 341, -105.035400, 12.000000, -73.523247, -0.974592, 2), -(4508786, 341, -49.417358, 0.000000, -49.095791, 0.785398, 2), -(4508787, 341, -86.574272, 7.999998, -43.214970, 1.082104, 2), -(4508788, 341, -100.271301, 10.000000, -19.320890, -1.343904, 2), -(4508789, 341, -154.896698, 12.000000, -53.422211, 1.134464, 2), -(4508790, 341, -146.379501, 15.000000, -10.159580, 0.174533, 2), -(4508791, 341, -142.336502, 15.000000, 10.318060, -1.308474, 2), -(4508792, 341, -132.544601, 15.000000, 32.574211, 1.308997, 2), -(4508793, 341, -89.681824, 11.618000, 32.778912, 1.331686, 2), -(4508794, 341, -28.000000, -20.000000, 4.100000, -0.000000, 2), -(4508795, 341, -0.865813, -16.020000, -28.539671, -0.785398, 2), -(4508796, 341, 78.714111, -16.000000, -29.442640, -0.523599, 2), -(4508797, 341, 63.000000, -20.000000, -14.150000, 0.000000, 2), -(4508798, 341, 59.063648, -24.000000, 25.315100, 1.047197, 2), -(4508799, 341, 26.238340, -24.000000, 48.174099, 1.047197, 2), -(4508800, 341, -4.000001, -24.000000, 65.900002, -0.000000, 2), -(4508801, 341, 81.484222, -26.000000, -76.858932, 0.785398, 2), -(4508802, 341, 107.063698, -14.000000, -21.382250, -0.349066, 2), -(4508803, 341, 118.677399, -18.000000, -48.080952, 1.221731, 2), -(4508804, 341, 148.500000, -26.000000, -18.000000, 0.000000, 2), -(4508805, 341, 142.051407, -28.000000, 0.005974, -1.570451, 2), -(4508806, 341, 134.001404, -28.000000, 36.004551, -1.570451, 2), -(4508807, 341, 126.000000, -36.000000, 58.000000, -0.000000, 2), -(4508808, 341, 89.759102, -36.000000, 77.101471, 0.523599, 2), -(4508809, 341, 169.901398, -44.000000, 27.504660, 1.570451, 2), -(4508810, 341, 166.000000, -40.000000, 47.999760, 1.570451, 2), -(5362502, 341, -582.184326, -3.999999, -749.563782, -1.291544, 2), -(5362503, 341, -615.501526, 4.000000, -756.463928, 0.959931, 2), -(5362504, 341, -630.024414, 6.000000, -775.971619, 0.687311, 2), -(5362505, 341, -565.604797, -4.000001, -793.064087, -0.977384, 2), -(5362506, 341, -630.476685, 12.000000, -809.035400, 0.596204, 2), -(5362507, 341, -654.904175, 0.000000, -753.417419, 0.785398, 2), -(5362508, 341, -660.784973, 7.999998, -790.574280, -0.488692, 2), -(5362509, 341, -684.679077, 10.000000, -804.271301, 0.226892, 2), -(5362510, 341, -650.577820, 12.000000, -858.896729, -0.436333, 2), -(5362511, 341, -693.840393, 15.000000, -850.379517, 1.396263, 2), -(5362512, 341, -714.318115, 15.000000, -846.336487, -0.262322, 2), -(5362513, 341, -736.574219, 15.000000, -836.544617, 0.261799, 2), -(5362514, 341, -736.778870, 11.618000, -793.681824, 0.239110, 2), -(5362515, 341, -708.099976, -20.000000, -732.000000, -1.570796, 2), -(5362516, 341, -675.460327, -16.020000, -704.865784, 0.785398, 2), -(5362517, 341, -674.557373, -16.000000, -625.285889, 1.047198, 2), -(5362518, 341, -689.849976, -20.000000, -641.000000, -1.570796, 2), -(5362519, 341, -729.315125, -24.000000, -644.936279, -0.523599, 2), -(5362520, 341, -752.174072, -24.000000, -677.761719, -0.523599, 2), -(5362521, 341, -769.900024, -24.000000, -708.000000, -1.570796, 2), -(5362522, 341, -627.141113, -26.000000, -622.515686, -0.785398, 2), -(5362523, 341, -682.617676, -14.000000, -596.936279, 1.221730, 2), -(5362524, 341, -655.919128, -18.000000, -585.322571, 0.349066, 2), -(5362525, 341, -686.000000, -26.000000, -555.500000, 1.570796, 2), -(5362526, 341, -704.005981, -28.000000, -561.948608, -0.000345, 2), -(5362527, 341, -740.004578, -28.000000, -569.998596, -0.000345, 2), -(5362528, 341, -762.000000, -36.000000, -578.000000, -1.570796, 2), -(5362529, 341, -781.101501, -36.000000, -614.240906, 1.047197, 2), -(5362530, 341, -731.504578, -44.000000, -534.098572, -0.000345, 2), -(5362531, 341, -751.999817, -40.000000, -538.000000, -0.000345, 2), -(4573499, 341, -6.276616, -8.000000, -128.066406, 0.456648, 2), -(4573636, 341, 121.412300, -32.000000, -77.154907, -0.355168, 2), -(4573640, 341, -105.066002, 8.570148, -50.345261, 1.305369, 2), -(4573647, 341, -4.031663, -23.225870, 12.528770, 0.440844, 2), -(4573656, 341, 142.727798, -36.001362, 54.812340, -1.291368, 2), -(4656726, 341, 21.318190, -11.076670, -191.085999, -0.525983, 2), -(4656730, 341, 159.425797, -30.000050, -33.288040, 1.517797, 2), -(5362858, 341, -575.933594, -8.000000, -710.276611, -1.114149, 2), -(5362859, 341, -626.845093, -32.000000, -582.587708, 1.215628, 2), -(5362861, 341, -653.654724, 8.570148, -809.065979, 0.265428, 2), -(5362863, 341, -716.357117, -23.225510, -707.325073, 1.129952, 2), -(5362865, 341, -758.812378, -36.001362, -561.272217, -0.279428, 2), -(5362867, 341, -512.914001, -11.076670, -682.681824, 1.044813, 2), -(5362869, 341, -670.711975, -30.000050, -544.574219, -0.053000, 2), -(4508811, 341, -35.551319, -3.999999, -115.960602, -0.279253, 2), -(4508812, 341, -64.516434, 4.000000, -91.776009, 0.610865, 2), -(4508813, 341, -84.524330, 6.000000, -73.911072, 0.883486, 2), -(4508814, 341, -85.686089, -4.000000, -126.233902, -0.593412, 2), -(4508815, 341, -126.152100, 12.000000, -81.406563, -0.596204, 2), -(4508816, 341, -44.160191, 0.000000, -60.009800, -0.785398, 2), -(4508817, 341, -74.958252, 8.000000, -46.108650, -1.082104, 2), -(4508818, 341, -111.719803, 10.000000, -21.963980, 1.343904, 2), -(4508819, 341, -142.885300, 12.000000, -56.624130, -1.134464, 2), -(4508820, 341, -152.684601, 15.000000, -20.575899, -0.174533, 2), -(4508821, 341, -152.795502, 15.000000, 17.268070, 1.308474, 2), -(4508822, 341, -122.030403, 15.000000, 25.615841, -1.308997, 2), -(4508823, 341, -68.858261, 11.618000, 24.887930, 0.239110, 2), -(4508824, 341, -27.988440, -20.000000, 13.316250, -0.000000, 2), -(4508825, 341, -13.533370, -16.020000, -29.870750, 0.785398, 2), -(4508826, 341, 67.194427, -16.000000, -33.441761, 0.523599, 2), -(4508827, 341, 71.013023, -20.000000, -4.480289, -0.000000, 2), -(4508828, 341, 71.087311, -24.000000, 22.995291, -1.047197, 2), -(4508829, 341, 38.588402, -24.000000, 50.685612, -1.047197, 2), -(4508830, 341, 4.001664, -24.000000, 75.257133, -0.000000, 2), -(4508831, 341, 93.513580, -26.000000, -76.195053, -0.785398, 2), -(4508832, 341, 103.829002, -14.000000, -30.215120, 0.349066, 2), -(4508833, 341, 124.619698, -18.000000, -58.779469, -1.221731, 2), -(4508834, 341, 140.520798, -26.000000, -27.272129, -0.000000, 2), -(4508835, 341, 130.010605, -28.000000, 4.002161, 1.570451, 2), -(4508836, 341, 124.776497, -28.000000, 43.978149, 1.570451, 2), -(4508837, 341, 134.011505, -36.000000, 67.311531, -0.000000, 2), -(4508838, 341, 89.707153, -33.680000, 61.217461, -0.523599, 2), -(4508839, 341, 179.171402, -44.000000, 19.494190, -1.570451, 2), -(4508840, 341, 187.977707, -40.000000, 46.702259, -0.000000, 2), -(5362712, 341, -588.039429, -3.999999, -739.551270, 1.291544, 2), -(5362713, 341, -612.223999, 4.000000, -768.516418, -0.959931, 2), -(5362714, 341, -630.088928, 6.000000, -788.524414, -0.687311, 2), -(5362715, 341, -577.766113, -4.000000, -789.686096, 0.977384, 2), -(5362716, 341, -622.593384, 12.000000, -830.152100, -0.974592, 2), -(5362717, 341, -643.990173, 0.000000, -748.160217, -0.785398, 2), -(5362718, 341, -657.891418, 8.000000, -778.958313, 0.488692, 2), -(5362719, 341, -682.036011, 10.000000, -815.719788, -0.226892, 2), -(5362720, 341, -647.375916, 12.000000, -846.885315, 0.436332, 2), -(5362721, 341, -683.424072, 15.000000, -856.684570, -1.396263, 2), -(5362722, 341, -721.268127, 15.000000, -856.795471, 0.262323, 2), -(5362723, 341, -729.615784, 15.000000, -826.030396, -0.261799, 2), -(5362724, 341, -728.887878, 11.618000, -772.858276, -1.331686, 2), -(5362725, 341, -717.316223, -20.000000, -731.988525, 1.570796, 2), -(5362726, 341, -674.129272, -16.020000, -717.533386, -0.785398, 2), -(5362727, 341, -670.558228, -16.000000, -636.805481, -1.047198, 2), -(5362728, 341, -699.519714, -20.000000, -632.987000, 1.570796, 2), -(5362729, 341, -726.995300, -24.000000, -632.912720, 0.523599, 2), -(5362730, 341, -754.685608, -24.000000, -665.411621, 0.523599, 2), -(5362731, 341, -779.257080, -24.000000, -699.998413, 1.570796, 2), -(5362732, 341, -627.804871, -26.000000, -610.486511, 0.785398, 2), -(5362733, 341, -673.784912, -14.000000, -600.171021, -1.221730, 2), -(5362734, 341, -645.220520, -18.000000, -579.380310, -0.349066, 2), -(5362735, 341, -676.727905, -26.000000, -563.479187, -1.570796, 2), -(5362736, 341, -708.002197, -28.000000, -573.989380, -0.000345, 2), -(5362737, 341, -747.978088, -28.000000, -579.223511, -0.000345, 2), -(5362738, 341, -771.311523, -36.000000, -569.988525, 1.570796, 2), -(5362739, 341, -765.217529, -33.680000, -614.292786, -1.047197, 2), -(5362740, 341, -723.494202, -44.000000, -524.828613, -0.000345, 2), -(5362741, 341, -750.702271, -40.000000, -516.022278, 1.570796, 2), -(4389297, 341, -1.201022, -11.076660, -192.566803, -0.104265, 2), -(4575567, 341, -1.201022, -11.076660, -192.566803, -0.104265, 2), -(4656744, 341, 31.760811, -10.919540, -215.353897, -0.664720, 2), -(5341062, 341, 2.117471, -11.076660, -195.650604, -0.104265, 2), -(6067004, 341, -512.404785, -11.076660, -705.365173, -1.560290, 2), -(6067010, 341, -512.404785, -11.076700, -705.365173, -1.560290, 2), -(6067011, 341, -492.748688, -11.076660, -675.166687, -0.897283, 2), -(6425449, 340, 247.550293, 55.066280, -114.412102, -1.570451, 2), -(6425471, 340, -589.352600, 55.066280, -455.193115, -0.000000, 2), -(6472421, 340, 237.434402, 53.703800, -116.935997, 1.570451, 2), -(6472422, 340, -587.382080, 53.709671, -466.402710, -0.000000, 2), -(6486042, 340, 239.000000, 53.723721, -114.500000, 1.570796, 2), -(6486043, 340, -589.500000, 53.686298, -465.500000, -0.000000, 2), -(4573435, 340, 38.651691, 65.959061, -113.381104, 0.033108, 2), -(4573443, 340, -87.185501, 31.288960, -54.186581, 0.015329, 2), -(4573451, 340, -13.450120, 39.512871, -40.490162, 0.979598, 2), -(4573456, 340, 102.623901, 6.483140, 86.547073, 1.328404, 2), -(4573473, 340, -63.150330, 5.886682, 107.648201, 0.243516, 2), -(4660260, 340, 95.039886, 33.862801, -21.348499, 1.547979, 2), -(4660263, 340, 5.335551, 2.610901, 188.079803, -0.870592, 2), -(5364262, 340, -590.618896, 65.959061, -665.348328, 1.537689, 2), -(5364264, 340, -649.813416, 31.288960, -791.185486, 1.555468, 2), -(5364266, 340, -663.509827, 39.512871, -717.450073, 0.591199, 2), -(5364268, 340, -790.547119, 6.483140, -601.376099, -0.242392, 2), -(5364270, 340, -811.648193, 5.886682, -767.150330, 1.327280, 2), -(5364272, 340, -682.651489, 33.862801, -608.960083, 0.022817, 2), -(5364274, 340, -892.079773, 2.610901, -698.664429, -0.700204, 2), -(4508905, 340, 137.500702, 46.000000, -78.372757, -1.570451, 2), -(4508906, 340, 74.500000, 51.000000, -95.098320, -0.000000, 2), -(4508907, 340, 121.226303, 58.500000, -173.456100, -0.698132, 2), -(4508908, 340, 43.320240, 54.500000, -75.938789, 1.308997, 2), -(4508909, 340, 71.500000, 34.501808, -23.979990, -0.000000, 2), -(4508910, 340, 130.799393, 23.500000, -3.689235, -1.134464, 2), -(4508911, 340, 112.170303, 9.625000, 56.740681, -0.087266, 2), -(4508912, 340, 85.848534, 8.750000, 69.722527, 0.785398, 2), -(4508913, 340, 120.030403, 8.000000, 91.001717, -1.570451, 2), -(4508914, 340, 77.819702, 7.750000, 98.964989, 1.221731, 2), -(4508915, 340, 52.000000, 5.000000, 138.506195, -0.000000, 2), -(4508916, 340, 68.866379, 25.000000, 26.501680, 1.570451, 2), -(4508917, 340, 33.484001, 34.000000, 15.603780, 1.308997, 2), -(4508918, 340, 37.055130, 19.500000, 47.401741, 1.570451, 2), -(4508919, 340, 16.780310, 9.000000, 85.501640, 1.570451, 2), -(4508920, 340, -87.899460, 7.761172, 102.886803, 0.698132, 2), -(4508921, 340, -36.318291, 10.000000, 79.161430, -0.785398, 2), -(4508922, 340, -26.001350, 21.000000, 48.401730, 1.570451, 2), -(4508923, 340, -78.670067, 21.500000, 50.968700, 1.221731, 2), -(4508924, 340, -13.405700, 33.000000, -2.998306, -1.570451, 2), -(4508925, 340, -58.000000, 30.500000, 3.457494, -0.000000, 2), -(4508926, 340, -32.147449, 41.500000, -32.498329, 1.570451, 2), -(4508927, 340, -70.369568, 32.000000, -39.398319, -1.570451, 2), -(4508928, 340, -40.654240, 47.000000, -61.498329, 1.570451, 2), -(4508929, 340, -9.101346, 46.500000, -76.898247, -1.570451, 2), -(4508930, 340, -25.911039, 56.500000, -111.516701, -0.174533, 2), -(4508931, 340, -107.738602, 31.500000, -38.322269, 1.308997, 2), -(4508932, 340, -129.331100, 27.500000, -120.572304, 0.488692, 2), -(4508933, 340, -104.734398, 34.500000, -148.227203, 0.733038, 2), -(4508934, 340, -50.500000, 56.000000, -143.453903, -0.000000, 2), -(5364176, 340, -625.627319, 46.000000, -566.499329, -0.000345, 2), -(5364177, 340, -608.901672, 51.000000, -629.500000, -1.570796, 2), -(5364178, 340, -530.543884, 58.500000, -582.773682, 0.872665, 2), -(5364179, 340, -628.061218, 54.500000, -660.679688, -0.261799, 2), -(5364180, 340, -680.020020, 34.501808, -632.500000, -1.570796, 2), -(5364181, 340, -700.310791, 23.500000, -573.200623, 0.436332, 2), -(5364182, 340, -760.740723, 9.625000, -591.829712, -1.483530, 2), -(5364183, 340, -773.722473, 8.750000, -618.151489, -0.785398, 2), -(5364184, 340, -795.001709, 8.000000, -583.969604, -0.000345, 2), -(5364185, 340, -802.965027, 7.750000, -626.180298, -0.349066, 2), -(5364186, 340, -842.506226, 5.000000, -652.000000, -1.570796, 2), -(5364187, 340, -730.501709, 25.000000, -635.133606, -0.000345, 2), -(5364188, 340, -719.603821, 34.000000, -670.515991, 0.261799, 2), -(5364189, 340, -751.401672, 19.500000, -666.944885, -0.000345, 2), -(5364190, 340, -789.501587, 9.000000, -687.219727, -0.000345, 2), -(5364191, 340, -806.886780, 7.761172, -791.899475, -0.872665, 2), -(5364192, 340, -783.161377, 10.000000, -740.318298, -0.785398, 2), -(5364193, 340, -752.401672, 21.000000, -730.001282, -0.000345, 2), -(5364194, 340, -754.968689, 21.500000, -782.669983, -0.349066, 2), -(5364195, 340, -701.001709, 33.000000, -717.405701, -0.000345, 2), -(5364196, 340, -707.457520, 30.500000, -762.000000, -1.570796, 2), -(5364197, 340, -671.501587, 41.500000, -736.147522, -0.000345, 2), -(5364198, 340, -664.601685, 32.000000, -774.369629, -0.000345, 2), -(5364199, 340, -642.501587, 47.000000, -744.654175, -0.000345, 2), -(5364200, 340, -627.101685, 46.500000, -713.101318, -0.000345, 2), -(5364201, 340, -592.483276, 56.500000, -729.911011, 1.396263, 2), -(5364202, 340, -665.677673, 31.500000, -811.738586, -0.261799, 2), -(5364203, 340, -583.427673, 27.500000, -833.331116, 1.082104, 2), -(5364204, 340, -555.772827, 34.500000, -808.734375, -0.837758, 2), -(5364205, 340, -560.546082, 56.000000, -754.500000, -1.570796, 2), -(4508875, 340, 126.599998, 46.000000, -78.369202, 1.570451, 2), -(4508876, 340, 78.500000, 51.000000, -86.699997, -0.000000, 2), -(4508877, 340, 106.034103, 58.500000, -158.424500, 0.872664, 2), -(4508878, 340, 52.346809, 54.500000, -77.557709, -1.308997, 2), -(4508879, 340, 71.500000, 34.500000, -13.300000, 0.000000, 2), -(4508880, 340, 123.424500, 23.499990, 15.822050, 0.436332, 2), -(4508881, 340, 115.366997, 9.625000, 64.950531, 0.087267, 2), -(4508882, 340, 94.333809, 8.750000, 72.833809, -0.785398, 2), -(4508883, 340, 111.699997, 8.000000, 95.004517, 1.570451, 2), -(4508884, 340, 86.903954, 7.749992, 98.014664, -1.221731, 2), -(4508885, 340, 52.000000, 5.000000, 148.899994, 0.000000, 2), -(4508886, 340, 77.300003, 25.000000, 22.504459, -1.570451, 2), -(4508887, 340, 40.496819, 34.000000, 9.583588, -1.308997, 2), -(4508888, 340, 44.599998, 19.500000, 43.504280, -1.570451, 2), -(4508889, 340, 25.100000, 9.000000, 81.504318, -1.570451, 2), -(4508890, 340, -81.008331, 7.750000, 111.099403, -0.698132, 2), -(4508891, 340, -39.263100, 10.000000, 87.763100, 0.785398, 2), -(4508892, 340, -17.900000, 21.000000, 44.504520, -1.570451, 2), -(4508893, 340, -69.971931, 21.500000, 49.877861, -1.221731, 2), -(4508894, 340, -21.700001, 33.000000, 1.004351, 1.570451, 2), -(4508895, 340, -58.000000, 30.500000, 14.200000, 0.000000, 2), -(4508896, 340, -24.200001, 41.500000, -36.495579, -1.570451, 2), -(4508897, 340, -78.500000, 32.000000, -35.495930, 1.570451, 2), -(4508898, 340, -32.400002, 47.000000, -65.495537, -1.570451, 2), -(4508899, 340, -17.000000, 46.500000, -72.995583, 1.570451, 2), -(4508900, 340, -31.222700, 56.500000, -118.605499, 0.174533, 2), -(4508901, 340, -97.289482, 31.500000, -35.522430, -1.308997, 2), -(4508902, 340, -111.645103, 27.500000, -104.630501, -1.082104, 2), -(4508903, 340, -95.565247, 34.500000, -144.021698, -0.733038, 2), -(4508904, 340, -50.500000, 56.000000, -132.699997, 0.000000, 2), -(5364207, 340, -625.630798, 46.000000, -577.400024, -0.000345, 2), -(5364208, 340, -617.299988, 51.000000, -625.500000, 1.570796, 2), -(5364209, 340, -545.575500, 58.500000, -597.965881, 0.698132, 2), -(5364210, 340, -626.442322, 54.500000, -651.653198, 0.261799, 2), -(5364211, 340, -690.700012, 34.500000, -632.500000, 1.570796, 2), -(5364212, 340, -719.822083, 23.499990, -580.575500, 1.134464, 2), -(5364213, 340, -768.950623, 9.625000, -588.632996, 1.483529, 2), -(5364214, 340, -776.833801, 8.750000, -609.666199, 0.785398, 2), -(5364215, 340, -799.004517, 8.000000, -592.299988, -0.000345, 2), -(5364216, 340, -802.014587, 7.749992, -617.096130, 0.349066, 2), -(5364217, 340, -852.900024, 5.000000, -652.000000, 1.570796, 2), -(5364218, 340, -726.504517, 25.000000, -626.700012, -0.000345, 2), -(5364219, 340, -713.583618, 34.000000, -663.503174, -0.261799, 2), -(5364220, 340, -747.504272, 19.500000, -659.400024, -0.000345, 2), -(5364221, 340, -785.504272, 9.000000, -678.900024, -0.000345, 2), -(5364222, 340, -815.099426, 7.750000, -785.008423, 0.872665, 2), -(5364223, 340, -791.763123, 10.000000, -743.263123, 0.785398, 2), -(5364224, 340, -748.504517, 21.000000, -721.900024, -0.000345, 2), -(5364225, 340, -753.877930, 21.500000, -773.971924, 0.349066, 2), -(5364226, 340, -705.004272, 33.000000, -725.700012, -0.000345, 2), -(5364227, 340, -718.200012, 30.500000, -762.000000, 1.570796, 2), -(5364228, 340, -667.504395, 41.500000, -728.200012, -0.000345, 2), -(5364229, 340, -668.504089, 32.000000, -782.500000, -0.000345, 2), -(5364230, 340, -638.504517, 47.000000, -736.400024, -0.000345, 2), -(5364231, 340, -631.004395, 46.500000, -721.000000, -0.000345, 2), -(5364232, 340, -585.394470, 56.500000, -735.222717, -1.396263, 2), -(5364233, 340, -668.477478, 31.500000, -801.289490, 0.261800, 2), -(5364234, 340, -599.369507, 27.500000, -815.645081, 0.488692, 2), -(5364235, 340, -559.978271, 34.500000, -799.565186, 0.837758, 2), -(5364236, 340, -571.299988, 56.000000, -754.500000, 1.570796, 2), -(4549235, 340, 10.395360, 2.610901, 204.643005, -0.493734, 2), -(4575566, 340, 6.831019, 2.610898, 198.020203, -0.493734, 2), -(5341063, 340, 8.760915, 2.610901, 201.606903, -0.493734, 2), -(6066289, 340, -909.598389, 2.610901, -692.749023, 1.047197, 2), -(6066290, 340, -903.075378, 2.610900, -696.505127, 1.047197, 2), -(6080119, 340, -909.598389, 2.610900, -692.749023, 1.047198, 2), -(6425800, 339, -164.123199, 31.500000, -48.560421, 1.570451, 2), -(6425806, 339, -655.484680, 31.500000, -868.697876, -0.000000, 2), -(6472423, 339, -147.559402, 29.813499, -50.412251, -1.570451, 2), -(6472426, 339, -653.505127, 29.813820, -851.304626, 0.000000, 2), -(6486032, 339, -148.927200, 30.000000, -48.500000, -1.570451, 2), -(6486040, 339, -655.500000, 29.805830, -853.000000, -0.000000, 2), -(4573387, 339, -5.933023, 48.997021, -113.895798, -0.396200, 2), -(4573396, 339, -103.722702, 32.711620, -86.794724, -0.844870, 2), -(4573404, 339, 90.593086, 42.003971, -98.758362, -0.391649, 2), -(4573408, 339, 11.323760, 6.002163, 12.858340, -1.501634, 2), -(4573416, 339, 147.489105, 24.000000, 39.697220, -0.282057, 2), -(4656718, 339, -56.184849, 10.001680, 38.387039, -1.549551, 2), -(4656721, 339, 84.664108, 18.000719, -14.902570, 0.563254, 2), -(5347562, 339, -590.104187, 48.997021, -709.932983, 1.174597, 2), -(5347565, 339, -617.205322, 32.711620, -807.722717, -0.725926, 2), -(5347567, 339, -605.241577, 42.003971, -613.406921, -1.179148, 2), -(5347569, 339, -716.858276, 6.002163, -692.676270, -0.069162, 2), -(5347571, 339, -743.697205, 24.000000, -556.510925, -1.288739, 2), -(5347573, 339, -742.387024, 10.001680, -760.184875, -0.021245, 2), -(5347575, 339, -689.097412, 18.000719, -619.335876, -1.007542, 2), -(4508941, 339, -65.424881, 39.998051, -107.841797, 1.565305, 2), -(4508942, 339, -134.557098, 36.000000, -90.605423, 0.801251, 2), -(4508943, 339, -91.945137, 31.999969, -64.895714, -0.000000, 2), -(4508944, 339, -85.458023, 18.009279, -12.285390, 1.523620, 2), -(4508945, 339, -135.352600, 19.999990, 20.838390, 1.072166, 2), -(4508946, 339, -40.674141, 14.000000, 0.333257, -0.843812, 2), -(4508947, 339, -39.905159, 24.000000, -49.638691, -0.030711, 2), -(4508948, 339, -16.774460, 35.998581, -95.909409, -1.557586, 2), -(4508949, 339, 35.883942, 37.999969, -95.160332, -0.029718, 2), -(4508950, 339, 59.976589, 41.999969, -119.253799, 0.018769, 2), -(4508951, 339, 0.098513, 25.028660, -51.204102, 0.015476, 2), -(4508952, 339, 44.012119, 25.999969, -55.177738, 0.000000, 2), -(4508953, 339, 59.862610, 17.999969, -27.131399, 0.000000, 2), -(4508954, 339, 88.182381, 29.000000, -58.622688, 0.774095, 2), -(4508955, 339, 138.555603, 46.000000, -94.621742, -0.834274, 2), -(4508956, 339, 131.151398, 27.999941, -38.031841, -1.570451, 2), -(4508957, 339, 107.058899, 21.999969, -23.935530, -1.570451, 2), -(4508958, 339, 68.089363, 17.041040, 8.918078, 0.033567, 2), -(4508959, 339, 36.567120, 7.999969, 27.255859, -0.370350, 2), -(4508960, 339, 60.115170, 5.999969, 38.275139, -0.518169, 2), -(4508961, 339, 81.832153, 5.021983, 53.202370, -0.704891, 2), -(4508962, 339, 116.041702, 17.999969, 60.880291, 0.022872, 2), -(4508963, 339, 107.992104, 17.999969, 32.845169, 0.010382, 2), -(4508964, 339, 145.951599, 21.999969, -1.138689, -0.025053, 2), -(4508965, 339, 158.001404, 32.061440, 28.910810, 0.004127, 2), -(4508966, 339, 163.189499, 27.999969, 52.010799, -1.557740, 2), -(4508967, 339, 182.012100, 35.999969, -1.151924, -0.009814, 2), -(4508968, 339, 191.990906, 39.999969, 28.910919, -0.004301, 2), -(4508969, 339, 189.521606, 38.025990, 64.009750, -1.562075, 2), -(4508970, 339, 136.800995, 20.000000, 94.372902, -0.520615, 2), -(5347427, 339, -596.158203, 39.998051, -769.424927, 0.005492, 2), -(5347428, 339, -613.394592, 36.000000, -838.557129, -0.769546, 2), -(5347429, 339, -639.104187, 31.999969, -795.945129, 1.570796, 2), -(5347430, 339, -691.714600, 18.009279, -789.458008, 0.047176, 2), -(5347431, 339, -724.838379, 19.999990, -839.352600, 0.498630, 2), -(5347432, 339, -704.333313, 14.000000, -744.674072, -0.726984, 2), -(5347433, 339, -654.361328, 24.000000, -743.905212, -1.540086, 2), -(5347434, 339, -608.090576, 35.998581, -720.774475, -0.013211, 2), -(5347435, 339, -608.839722, 37.999969, -668.116028, -1.541078, 2), -(5347436, 339, -584.746216, 41.999969, -644.023376, -1.552027, 2), -(5347437, 339, -652.795898, 25.028660, -703.901489, -1.555321, 2), -(5347438, 339, -648.822327, 25.999969, -659.987915, -1.570796, 2), -(5347439, 339, -676.868591, 17.999969, -644.137390, -1.570796, 2), -(5347440, 339, -645.377319, 29.000000, -615.817627, -0.796701, 2), -(5347441, 339, -609.378296, 46.000000, -565.444397, -0.736522, 2), -(5347442, 339, -665.968079, 27.999941, -572.848572, -0.000345, 2), -(5347443, 339, -680.064514, 21.999969, -596.941101, -0.000345, 2), -(5347444, 339, -712.918091, 17.041040, -635.910583, -1.537229, 2), -(5347445, 339, -731.255920, 7.999969, -667.432922, -1.200446, 2), -(5347446, 339, -742.275085, 5.999969, -643.884827, -1.052627, 2), -(5347447, 339, -757.202393, 5.021983, -622.167786, -0.865905, 2), -(5347448, 339, -764.880310, 17.999969, -587.958313, -1.547924, 2), -(5347449, 339, -736.845215, 17.999969, -596.007874, -1.560414, 2), -(5347450, 339, -702.861328, 21.999969, -558.048401, -1.545743, 2), -(5347451, 339, -732.910828, 32.061440, -545.998596, -1.566669, 2), -(5347452, 339, -756.010803, 27.999969, -540.810486, -0.013057, 2), -(5347453, 339, -702.848083, 35.999969, -521.987915, -1.560982, 2), -(5347454, 339, -732.910889, 39.999969, -512.009094, -1.566495, 2), -(5347455, 339, -768.009827, 38.025990, -514.478394, 0.008721, 2), -(5347456, 339, -798.372925, 20.000000, -567.198975, 1.050182, 2), -(4387629, 339, -54.396290, 39.998051, -107.902000, -1.565326, 2), -(4387630, 339, -122.884499, 33.693161, -78.979187, -0.790629, 2), -(4387842, 339, -96.145149, 30.735161, -77.417511, -0.000000, 2), -(4387845, 339, -73.570801, 18.000731, -16.150270, -1.564004, 2), -(4387848, 339, -122.538002, 18.000050, 13.440370, -1.072166, 2), -(4387851, 339, -49.674641, 13.119320, 9.569615, 0.752506, 2), -(4387853, 339, -39.942581, 23.991600, -38.327770, -0.033610, 2), -(4387856, 339, -25.341869, 35.998581, -87.990540, 1.569214, 2), -(4387858, 339, 54.014809, 37.998249, -95.929893, -1.562027, 2), -(4387859, 339, 68.022972, 39.998230, -106.200996, -0.018769, 2), -(4387861, 339, 17.437071, 25.028660, -51.982239, -1.567576, 2), -(4387862, 339, 48.112122, 25.000000, -44.254162, -0.038703, 2), -(4387864, 339, 68.000053, 17.999969, -18.401770, -0.000000, 2), -(4387869, 339, 101.567596, 28.766081, -56.110199, -0.762453, 2), -(4387874, 339, 126.824898, 43.997570, -82.908821, 0.761298, 2), -(4387878, 339, 122.601097, 27.999941, -38.005989, 1.570451, 2), -(4387881, 339, 98.622566, 21.992540, -23.988871, 1.570451, 2), -(4387883, 339, 87.321037, 16.001209, 4.115562, -1.538942, 2), -(4387885, 339, 36.019070, 6.002164, 40.210690, 0.313481, 2), -(4387887, 339, 57.196480, 4.064701, 51.149220, 0.512306, 2), -(4387888, 339, 76.525887, 3.051320, 65.515732, 0.720167, 2), -(4387889, 339, 134.000305, 18.000620, 60.012939, -1.550282, 2), -(4387894, 339, 125.632698, 17.775419, 31.987591, -1.531172, 2), -(4387896, 339, 150.049698, 22.052071, 7.723455, -0.009819, 2), -(4387897, 339, 175.617294, 31.999010, 27.972969, -1.570451, 2), -(4387898, 339, 154.375305, 27.999510, 56.006031, 1.560211, 2), -(4387899, 339, 185.954895, 35.998531, 7.667098, -0.023306, 2), -(4387900, 339, 199.952301, 39.998051, 37.434719, -0.026348, 2), -(4387901, 339, 178.546494, 37.998260, 72.027817, 1.543734, 2), -(4387902, 339, 129.113098, 18.000719, 80.988968, 0.550029, 2), -(5347391, 339, -596.098022, 39.998051, -758.396301, -0.005470, 2), -(5347392, 339, -625.020813, 33.693161, -826.884521, 0.780168, 2), -(5347393, 339, -626.582520, 30.735161, -800.145081, -1.570796, 2), -(5347394, 339, -687.849670, 18.000731, -777.570801, -0.006792, 2), -(5347395, 339, -717.440430, 18.000050, -826.538025, -0.498630, 2), -(5347396, 339, -713.569580, 13.119320, -753.674622, 0.818290, 2), -(5347397, 339, -665.672180, 23.991600, -743.942627, 1.537186, 2), -(5347398, 339, -616.009521, 35.998581, -729.341919, -0.001582, 2), -(5347399, 339, -608.070129, 37.998249, -649.985229, -0.008769, 2), -(5347400, 339, -597.799011, 39.998230, -635.977112, 1.552027, 2), -(5347401, 339, -652.017822, 25.028660, -686.562927, -0.003220, 2), -(5347402, 339, -659.745789, 25.000000, -655.887878, 1.532093, 2), -(5347403, 339, -685.598206, 17.999969, -635.999878, 1.570796, 2), -(5347404, 339, -647.889771, 28.766081, -602.432373, 0.808343, 2), -(5347405, 339, -621.091187, 43.997570, -577.175110, 0.809498, 2), -(5347406, 339, -665.994019, 27.999941, -581.398926, -0.000345, 2), -(5347407, 339, -680.011108, 21.992540, -605.377380, -0.000345, 2), -(5347408, 339, -708.115479, 16.001209, -616.679016, -0.031854, 2), -(5347409, 339, -744.210693, 6.002164, -667.981018, 1.257316, 2), -(5347410, 339, -755.149170, 4.064701, -646.803528, 1.058490, 2), -(5347411, 339, -769.515686, 3.051320, -627.474121, 0.850630, 2), -(5347412, 339, -764.012878, 18.000620, -569.999695, -0.020514, 2), -(5347413, 339, -735.987610, 17.775419, -578.367310, -0.039624, 2), -(5347414, 339, -711.723389, 22.052071, -553.950317, 1.560978, 2), -(5347415, 339, -731.973022, 31.999010, -528.382690, -0.000345, 2), -(5347416, 339, -760.005981, 27.999510, -549.624695, -0.010586, 2), -(5347417, 339, -711.667114, 35.998531, -518.045105, 1.547490, 2), -(5347418, 339, -741.434814, 39.998051, -504.047699, 1.544449, 2), -(5347419, 339, -776.027771, 37.998260, -525.453491, -0.027062, 2), -(5347420, 339, -784.989014, 18.000719, -574.886902, -1.020767, 2), -(4323020, 339, -9.994401, 50.259640, -139.755798, -0.000000, 2), -(4575564, 339, -9.994401, 50.259640, -139.755798, -0.000000, 2), -(4664433, 339, -64.066368, 2.066447, 93.609650, -0.000000, 2), -(5341058, 339, -9.994401, 50.259640, -132.959305, -0.000000, 2), -(6066198, 339, -563.954529, 50.259640, -713.824829, -1.570451, 2), -(6066224, 339, -563.954529, 50.259602, -713.824829, -1.570451, 2), -(6066227, 339, -797.868408, 2.066417, -768.024170, 1.570451, 2), -(6793761, 641, -11.758620, 28.049999, -21.141680, -0.523599, 2), -(6793801, 641, -17.093290, 25.049999, -11.487110, 0.523599, 2), -(6793815, 641, -682.960999, 27.999990, -715.832581, -1.045231, 2), -(6793819, 641, -692.599792, 25.000000, -721.183228, 1.045231, 2), -(6794232, 641, -96.560707, 2.020000, 126.183998, 0.558505, 2), -(6794239, 641, -105.579399, 29.999990, -117.917297, -1.210056, 2), -(6794241, 641, -97.684174, 16.020000, -35.046799, 1.548546, 2), -(6794243, 641, -18.670549, 25.000010, -12.901820, 1.548548, 2), -(6794245, 641, 100.374901, 30.070000, 25.044720, -0.985377, 2), -(6794247, 641, -144.357605, 9.999987, 2.560443, -1.423511, 2), -(6794249, 641, -6.596466, 10.020000, 99.490349, 1.548548, 2), -(6794251, 641, 63.619129, 10.020000, 114.196899, 1.548546, 2), -(6794262, 641, -706.418396, 10.069990, -849.174805, -0.213645, 2), -(6794264, 641, -586.429382, 30.000000, -809.274170, -0.404319, 2), -(6794268, 641, -830.277222, 2.019989, -800.427002, 1.011919, 2), -(6794272, 641, -668.292114, 16.020000, -802.052002, -0.000000, 2), -(6794275, 641, -803.380371, 10.020000, -707.669006, -0.000000, 2), -(6794277, 641, -690.551514, 25.000000, -724.463379, -0.000000, 2), -(6794279, 641, -818.088501, 10.020000, -638.651611, -0.000000, 2), -(6794281, 641, -728.622986, 30.030069, -604.051575, -0.599232, 2), -(6790670, 641, -27.971821, 2.020000, 117.651299, 1.308997, 2), -(6790671, 641, -22.956900, 14.520000, 80.082443, 1.361357, 2), -(6790672, 641, 8.094055, 6.020000, 130.802094, 1.117011, 2), -(6790673, 641, 12.849070, 20.020000, 76.790543, 0.523599, 2), -(6790674, 641, 34.102871, 20.020000, 65.283188, -0.523599, 2), -(6790675, 641, 40.865688, 10.020000, 104.297997, -0.000000, 2), -(6790676, 641, 50.123631, 10.020000, 134.669601, 0.000000, 2), -(6790677, 641, 110.750900, 11.600000, 125.714104, -0.785398, 2), -(6790678, 641, 96.696854, 16.020000, 93.248688, 0.959931, 2), -(6790679, 641, 116.939499, 22.020000, 63.294861, -0.785398, 2), -(6790680, 641, 82.194153, 22.020000, 46.308922, -1.047198, 2), -(6790681, 641, 52.322208, 26.020000, 24.709940, -0.418879, 2), -(6790682, 641, 65.386688, 31.590000, -13.086970, -0.488692, 2), -(6790683, 641, 98.665154, 30.020000, 6.762455, -0.785398, 2), -(6790684, 641, 127.001602, 34.020000, 27.942101, -0.785398, 2), -(6790686, 641, 129.447998, 40.020000, -23.473499, -0.785398, 2), -(6790687, 641, -107.392502, 2.019999, 67.930977, -1.047197, 2), -(6790688, 641, -88.783440, 14.520000, 32.516819, -0.785398, 2), -(6790689, 641, -130.889603, 2.020000, 54.081459, 0.785398, 2), -(6790690, 641, -113.495300, 10.020000, 11.714890, -0.959931, 2), -(6790691, 641, -161.529800, 6.020000, 15.791850, -0.261799, 2), -(6790692, 641, -170.995300, 6.020000, -6.141406, -0.000000, 2), -(6790693, 641, -144.348404, 16.020000, -50.939850, 0.785398, 2), -(6790694, 641, -118.693604, 17.510000, -30.069670, 0.785398, 2), -(6790695, 641, -82.111816, 14.020000, -19.863991, -1.047198, 2), -(6790696, 641, -103.322899, 16.020000, -55.232811, -0.785398, 2), -(6790697, 641, -62.981430, 20.020000, -50.040298, -0.000000, 2), -(6790698, 641, -75.054077, 25.020000, -111.231003, -0.000000, 2), -(6790699, 641, -121.963303, 26.620001, -94.666023, -1.134464, 2), -(6790700, 641, -152.563293, 30.020000, -115.589600, 0.785398, 2), -(6790754, 641, -588.439819, 30.020000, -856.504822, -0.785398, 2), -(6790744, 641, -715.379211, 10.020000, -817.104614, -0.610865, 2), -(6790745, 641, -720.572876, 6.020001, -865.242126, 1.308997, 2), -(6790746, 641, -697.695984, 6.019999, -875.101807, -1.541859, 2), -(6790747, 641, -653.556213, 16.020000, -848.883911, 0.785398, 2), -(6790748, 641, -673.896790, 17.510000, -822.830627, 0.785398, 2), -(6790749, 641, -684.104614, 14.020000, -786.090881, 0.523599, 2), -(6790750, 641, -648.431580, 16.020000, -807.169800, -0.785398, 2), -(6790751, 641, -653.673401, 20.020000, -766.981384, -1.570451, 2), -(6790752, 641, -592.919373, 25.020000, -779.082397, -1.570451, 2), -(6790753, 641, -609.418884, 26.620001, -825.933105, -0.436332, 2), -(6790726, 641, -784.033386, 14.520000, -727.604370, -0.261799, 2), -(6790743, 641, -758.075073, 2.020000, -834.850891, -0.785398, 2), -(6790742, 641, -736.781189, 14.520000, -792.477295, 0.785398, 2), -(6790741, 641, -772.095520, 2.020002, -811.132385, 0.523599, 2), -(6790740, 641, -680.442627, 40.020000, -574.461914, -0.785398, 2), -(6790739, 641, -731.773804, 34.020000, -577.044495, 0.785398, 2), -(6790738, 641, -710.486816, 30.020000, -605.104797, -0.785398, 2), -(6790737, 641, -691.451782, 31.590000, -638.884888, -1.099557, 2), -(6790736, 641, -728.454102, 26.020000, -651.542114, -1.134464, 2), -(6790735, 641, -749.744080, 22.020000, -620.959473, -0.523599, 2), -(6790734, 641, -767.817383, 22.020000, -586.439575, 0.785398, 2), -(6790733, 641, -797.685425, 16.020000, -607.895508, 0.610865, 2), -(6790732, 641, -829.984375, 11.600000, -592.978210, 0.785398, 2), -(6790731, 641, -838.324097, 10.020000, -653.971008, 1.570451, 2), -(6790730, 641, -807.898315, 10.020000, -663.086121, -1.570451, 2), -(6790729, 641, -769.078674, 20.020000, -669.804871, -1.047197, 2), -(6790728, 641, -781.051575, 20.020000, -691.266724, 1.047197, 2), -(6790727, 641, -834.468811, 6.020000, -696.531921, -0.418879, 2), -(6790725, 641, -821.487671, 2.020000, -732.413513, -0.226893, 2), -(6791358, 641, -16.520210, 2.060000, 120.901604, -1.324126, 2), -(6791359, 641, -13.482080, 14.102520, 78.894096, -1.320978, 2), -(6791360, 641, 17.895729, 6.059998, 131.201401, -1.084020, 2), -(6791361, 641, 14.144350, 20.000000, 66.636543, -0.493925, 2), -(6791362, 641, 32.921890, 20.000000, 75.266251, 0.484113, 2), -(6791363, 641, 45.179451, 10.020000, 113.421097, -0.000000, 2), -(6791364, 641, 50.177521, 10.020000, 117.473602, 0.000000, 2), -(6791365, 641, 99.734711, 10.020000, 114.782501, 0.797859, 2), -(6791366, 641, 101.584503, 16.070000, 84.945152, -1.006882, 2), -(6791367, 641, 107.975403, 22.000000, 60.034500, 0.812434, 2), -(6791368, 641, 76.787857, 22.000000, 54.120010, 1.012735, 2), -(6791369, 641, 52.110870, 26.000000, 34.886822, 0.384919, 2), -(6791370, 641, 58.183788, 30.020000, 0.764280, 0.475893, 2), -(6791371, 641, 95.104446, 30.000000, 16.011181, 0.750036, 2), -(6791372, 641, 118.116402, 34.000000, 19.155050, 0.813951, 2), -(6791373, 641, 117.025597, 40.020000, -11.084880, 0.777782, 2), -(6791374, 641, -117.230103, 1.999999, 66.915070, 1.187368, 2), -(6791375, 641, -99.091690, 14.000000, 28.314190, 0.860008, 2), -(6791376, 641, -121.815903, 1.999988, 62.897888, -0.837464, 2), -(6791377, 641, -120.354500, 10.000000, 21.490459, 0.948713, 2), -(6791378, 641, -167.846893, 6.000000, 7.949383, 0.282263, 2), -(6791379, 641, -166.858200, 6.049999, 3.201252, 0.017754, 2), -(6791380, 641, -140.808701, 16.070000, -59.957230, -0.868032, 2), -(6791381, 641, -108.039902, 16.020000, -40.917110, -0.833898, 2), -(6791382, 641, -92.281548, 14.000000, -21.083309, 1.068863, 2), -(6791383, 641, -107.126099, 16.020000, -45.757679, 0.731770, 2), -(6791384, 641, -58.743690, 20.020000, -40.752991, -0.000000, 2), -(6791385, 641, -74.866074, 25.069981, -98.721611, 0.000000, 2), -(6791386, 641, -131.531204, 25.070000, -85.906303, 1.099375, 2), -(6791387, 641, -140.491196, 30.070000, -103.339897, -0.820122, 2), -(6791423, 641, -824.691589, 2.060000, -720.464111, 0.252924, 2), -(6791424, 641, -782.962585, 14.000000, -716.109009, 0.261799, 2), -(6791425, 641, -834.961304, 6.059998, -686.167908, 0.406839, 2), -(6791426, 641, -770.738708, 20.000000, -689.941528, -1.060374, 2), -(6791427, 641, -779.316223, 20.000000, -670.950073, 1.120677, 2), -(6791428, 641, -817.107178, 10.020000, -658.996277, 1.568754, 2), -(6791429, 641, -821.919373, 10.070000, -653.780823, -1.560577, 2), -(6791430, 641, -819.146912, 10.020000, -603.781311, -0.806422, 2), -(6791431, 641, -788.865417, 16.070000, -602.472778, -0.620165, 2), -(6791432, 641, -764.023376, 22.000000, -596.103210, -0.772447, 2), -(6791433, 641, -758.088379, 22.000000, -627.166992, 0.531067, 2), -(6791434, 641, -738.837280, 26.000000, -651.965393, 1.136686, 2), -(6791435, 641, -704.517212, 30.020000, -646.027588, 1.088929, 2), -(6791436, 641, -720.079529, 30.000000, -608.980591, 0.829399, 2), -(6791437, 641, -723.084229, 34.000000, -585.800720, -0.833591, 2), -(6791438, 641, -692.442078, 40.070000, -586.446106, 0.735144, 2), -(6791439, 641, -770.972473, 1.999999, -821.235474, -0.502044, 2), -(6791440, 641, -732.227417, 14.000000, -803.100525, -0.754293, 2), -(6791441, 641, -766.842773, 1.999990, -826.237976, 0.785080, 2), -(6791442, 641, -724.120422, 10.000000, -822.504578, 0.650296, 2), -(6791443, 641, -712.302612, 6.000000, -871.555176, -1.350629, 2), -(6791444, 641, -707.106628, 6.012829, -870.977173, 1.570451, 2), -(6791445, 641, -643.994629, 16.064920, -844.978271, -0.758775, 2), -(6791446, 641, -662.993225, 16.020000, -812.122681, -0.782288, 2), -(6791447, 641, -682.907104, 14.000000, -796.226318, -0.551188, 2), -(6791448, 641, -658.052673, 16.020000, -810.883118, 0.850858, 2), -(6791449, 641, -662.996277, 20.020000, -762.877075, 1.570451, 2), -(6791450, 641, -605.064514, 25.070000, -778.699097, 1.570451, 2), -(6791451, 641, -618.141479, 25.070000, -835.449524, 0.482173, 2), -(6791452, 641, -600.473877, 30.070000, -844.469788, 0.753605, 2), -(6663537, 641, -116.838898, 2.020000, 151.014404, 0.537591, 2), -(6663572, 641, -116.838898, 2.020000, 151.014404, 0.537591, 2), -(7450786, 641, -100.084702, 2.020000, 123.888199, 0.537591, 2), -(6663582, 641, -855.014404, 2.020000, -820.838928, 1.033205, 2), -(6663583, 641, -855.014404, 2.020000, -820.838928, 1.033205, 2); diff --git a/sql/schema/schema.sql b/sql/schema/schema.sql index 0017310c..aca5718b 100644 --- a/sql/schema/schema.sql +++ b/sql/schema/schema.sql @@ -9,36 +9,6 @@ CREATE TABLE `accounts` ( UNIQUE KEY `accountname` (`account_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -CREATE TABLE `bnpctemplate` ( - `Id` int(11) NOT NULL AUTO_INCREMENT, - `Name` varchar(32) NOT NULL, - `bNPCBaseId` int(10) DEFAULT NULL, - `bNPCNameId` int(10) NOT NULL, - `mainWeaponModel` bigint(20) DEFAULT NULL, - `secWeaponModel` bigint(20) DEFAULT NULL, - `aggressionMode` int(3) DEFAULT NULL, - `enemyType` int(3) DEFAULT NULL, - `pose` int(3) DEFAULT NULL, - `modelChara` int(5) DEFAULT NULL, - `displayFlags` int(10) DEFAULT NULL, - `Look` binary(26) DEFAULT NULL, - `Models` binary(40) DEFAULT NULL, - PRIMARY KEY (`Id`), - KEY `templatename` (`name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - -CREATE TABLE `spawnpoint` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `spawnGroupId` int(11) NOT NULL, - `x` float NOT NULL, - `y` float NOT NULL, - `z` float NOT NULL, - `r` float NOT NULL, - `gimmickId` int(11) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `spawngroupidx` (`spawnGroupId`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; - CREATE TABLE `charainfo` ( `AccountId` int(11) NOT NULL, `CharacterId` int(20) NOT NULL, @@ -540,15 +510,6 @@ CREATE TABLE `houseiteminventory` ( INDEX `landIdent` (`LandIdent`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -CREATE TABLE `spawngroup` ( - `id` int(10) NOT NULL AUTO_INCREMENT, - `territoryTypeId` int(5) NOT NULL, - `bNpcTemplateId` int(10) NOT NULL, - `level` int(3) NOT NULL, - `maxHp` int(10) NOT NULL, - PRIMARY KEY(`id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; - CREATE TABLE `uniqueiddata` ( `NextId` int(20) NOT NULL AUTO_INCREMENT, `IdName` varchar(16) DEFAULT 'NOT SET', diff --git a/src/api/CMakeLists.txt b/src/api/CMakeLists.txt index 1b9ca308..3a0a7e92 100644 --- a/src/api/CMakeLists.txt +++ b/src/api/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required( VERSION 2.6 ) +cmake_minimum_required(VERSION 3.0) cmake_policy( SET CMP0015 NEW ) project( Sapphire ) diff --git a/src/api/PlayerMinimal.cpp b/src/api/PlayerMinimal.cpp index 2bda842b..92487416 100644 --- a/src/api/PlayerMinimal.cpp +++ b/src/api/PlayerMinimal.cpp @@ -1,13 +1,13 @@ #include "PlayerMinimal.h" #include -#include +#include #include #include -extern Sapphire::Data::ExdDataGenerated g_exdDataGen; +extern Sapphire::Data::ExdData g_exdData; namespace Sapphire::Api { @@ -15,7 +15,7 @@ using namespace Common; // player constructor PlayerMinimal::PlayerMinimal() : - m_id( 0 ) + m_characterId( 0 ) { @@ -23,18 +23,19 @@ PlayerMinimal::PlayerMinimal() : // load player from the db // TODO change void CPlayer::load to bool, we want to know if something went wrong -void PlayerMinimal::load( uint32_t charId ) +void PlayerMinimal::load( uint64_t charId ) { auto stmt = g_charaDb.getPreparedStatement( Db::ZoneDbStatements::CHARA_SEL_MINIMAL ); - stmt->setUInt( 1, charId ); + stmt->setUInt64( 1, charId ); auto res = g_charaDb.query( stmt ); if( !res->next() ) return; - m_id = charId; + m_characterId = charId; + m_id = res->getUInt64( "EntityId" ); memset( m_name, 0, 32 ); @@ -58,14 +59,13 @@ void PlayerMinimal::load( uint32_t charId ) setBirthDay( res->getUInt8( "BirthDay" ), res->getUInt8( "BirthMonth" ) ); m_guardianDeity = res->getUInt8( "GuardianDeity" ); m_class = res->getUInt8( "Class" ); - m_contentId = res->getUInt64( "ContentId" ); m_territoryTypeId = res->getUInt16( "TerritoryType" ); res.reset(); // SELECT ClassIdx, Exp, Lvl auto stmtClass = g_charaDb.getPreparedStatement( Db::ZoneDbStatements::CHARA_CLASS_SEL ); - stmtClass->setInt( 1, m_id ); + stmtClass->setUInt64( 1, m_characterId ); auto resClass = g_charaDb.query( stmtClass ); @@ -122,7 +122,7 @@ std::string PlayerMinimal::getInfoJson() c.push_back( std::to_string( getZoneId() ) ); // ContentFinderCondition - c.push_back( "0" ); + //c.push_back( "0" ); // look map auto lookArray = nlohmann::json(); @@ -167,7 +167,7 @@ std::string PlayerMinimal::getInfoJson() // LoginStatus c.push_back( "0" ); // IsOutTerritory - c.push_back( "0" ); + //c.push_back( "0" ); payload["classname"] = "ClientSelectData"; @@ -178,7 +178,7 @@ std::string PlayerMinimal::getInfoJson() uint8_t PlayerMinimal::getClassLevel() { - uint8_t classJobIndex = g_exdDataGen.get< Sapphire::Data::ClassJob >( static_cast< uint8_t >( m_class ) )->expArrayIndex; + uint8_t classJobIndex = g_exdData.getRow< Component::Excel::ClassJob >( m_class )->data().WorkIndex; return static_cast< uint8_t >( m_classMap[ classJobIndex ] ); } @@ -257,16 +257,17 @@ void PlayerMinimal::saveAsNew() break; } - // "(AccountId, CharacterId, ContentId, Name, Hp, Mp, " + // "(AccountId, CharacterId, EntityId, Name, Hp, Mp, " // "Customize, Voice, IsNewGame, TerritoryType, PosX, PosY, PosZ, PosR, ModelEquip, " // "IsNewAdventurer, GuardianDeity, Birthday, BirthMonth, Class, Status, FirstClass, " // "HomePoint, StartTown, Discovery, HowTo, QuestCompleteFlags, Unlocks, QuestTracking, " // "Aetheryte, GMRank, UPDATE_DATE ) auto stmt = g_charaDb.getPreparedStatement( Db::ZoneDbStatements::CHARA_INS ); - stmt->setInt( 1, m_accountId ); - stmt->setInt( 2, m_id ); - stmt->setInt64( 3, m_contentId ); + stmt->set( 1, m_accountId ); + stmt->set( 2, m_characterId ); + stmt->set( 3, m_id ); + stmt->setString( 4, std::string( m_name ) ); stmt->setInt( 5, 100 ); stmt->setInt( 6, 100 ); @@ -301,14 +302,14 @@ void PlayerMinimal::saveAsNew() // CharacterId, ClassIdx, Exp, Lvl auto stmtClass = g_charaDb.getPreparedStatement( Db::ZoneDbStatements::CHARA_CLASS_INS ); - stmtClass->setInt( 1, m_id ); - stmtClass->setInt( 2, g_exdDataGen.get< Sapphire::Data::ClassJob >( m_class )->expArrayIndex ); + stmtClass->setUInt64( 1, m_characterId ); + stmtClass->setInt( 2, g_exdData.getRow< Component::Excel::ClassJob >( m_class )->data().WorkIndex ); stmtClass->setInt( 3, 0 ); stmtClass->setInt( 4, 1 ); g_charaDb.directExecute( stmtClass ); auto stmtSearchInfo = g_charaDb.getPreparedStatement( Db::ZoneDbStatements::CHARA_SEARCHINFO_INS ); - stmtSearchInfo->setInt( 1, m_id ); + stmtSearchInfo->setUInt64( 1, m_characterId ); g_charaDb.directExecute( stmtSearchInfo ); ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// @@ -338,21 +339,21 @@ void PlayerMinimal::saveAsNew() createInvDbContainer( InventoryType::Crystal ); auto stmtMonsterNote = g_charaDb.getPreparedStatement( Db::ZoneDbStatements::CHARA_MONSTERNOTE_INS ); - stmtMonsterNote->setInt( 1, m_id ); + stmtMonsterNote->setUInt64( 1, m_characterId ); for( uint8_t i = 1; i <= 12; ++i ) stmtMonsterNote->setBinary( i + 1, monsterNote ); g_charaDb.directExecute( stmtMonsterNote ); /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /// SETUP EQUIPMENT / STARTING GEAR - auto classJobInfo = g_exdDataGen.get< Sapphire::Data::ClassJob >( m_class ); - uint32_t weaponId = classJobInfo->itemStartingWeapon; + auto classJobInfo = g_exdData.getRow< Component::Excel::ClassJob >( m_class ); + uint32_t weaponId = classJobInfo->data().InitWeapon[0]; uint64_t uniqueId = getNextUId64(); uint8_t race = customize[ CharaLook::Race ]; uint8_t gender = customize[ CharaLook::Gender ]; - auto raceInfo = g_exdDataGen.get< Sapphire::Data::Race >( race ); + auto raceInfo = g_exdData.getRow< Component::Excel::Race >( race ); uint32_t body; uint32_t hands; @@ -363,20 +364,10 @@ void PlayerMinimal::saveAsNew() uint64_t legsUid = getNextUId64(); uint64_t feetUid = getNextUId64(); - if( gender == 0 ) - { - body = raceInfo->rSEMBody; - hands = raceInfo->rSEMHands; - legs = raceInfo->rSEMLegs; - feet = raceInfo->rSEMFeet; - } - else - { - body = raceInfo->rSEFBody; - hands = raceInfo->rSEFHands; - legs = raceInfo->rSEFLegs; - feet = raceInfo->rSEFFeet; - } + body = raceInfo->data().Body[ gender ]; + hands = raceInfo->data().Hand[ gender ]; + legs = raceInfo->data().Leg[ gender ]; + feet = raceInfo->data().Foot[ gender ]; insertDbGlobalItem( weaponId, uniqueId ); insertDbGlobalItem( body, bodyUid ); @@ -384,18 +375,6 @@ void PlayerMinimal::saveAsNew() insertDbGlobalItem( legs, legsUid ); insertDbGlobalItem( feet, feetUid ); - // Universal accessories - - uint64_t neckUid = getNextUId64(); - uint64_t earUid = getNextUId64(); - uint64_t wristUid = getNextUId64(); - uint64_t ringUid = getNextUId64(); - - - insertDbGlobalItem( 15130, neckUid ); - insertDbGlobalItem( 15131, earUid ); - insertDbGlobalItem( 15132, wristUid ); - insertDbGlobalItem( 15133, ringUid ); g_charaDb.execute( "INSERT INTO charaitemgearset (storageId, CharacterId, " "container_" + std::to_string( GearSetSlot::MainHand ) + ", " @@ -409,23 +388,23 @@ void PlayerMinimal::saveAsNew() "container_" + std::to_string( GearSetSlot::Ring1 ) + ", UPDATE_DATE ) " "VALUES ( " + std::to_string( InventoryType::GearSet0 ) + ", " + - std::to_string( m_id ) + ", " + + std::to_string( m_characterId ) + ", " + std::to_string( uniqueId ) + ", " + std::to_string( bodyUid ) + ", " + std::to_string( handsUid ) + ", " + std::to_string( legsUid ) + ", " + std::to_string( feetUid ) + ", " + - std::to_string( neckUid ) + ", " + - std::to_string( earUid ) + ", " + - std::to_string( wristUid ) + ", " + - std::to_string( ringUid ) + ", NOW());" ); + std::to_string( 0 ) + ", " + + std::to_string( 0 ) + ", " + + std::to_string( 0 ) + ", " + + std::to_string( 0 ) + ", NOW());" ); } void PlayerMinimal::insertDbGlobalItem( uint32_t itemId, uint64_t uniqueId ) const { auto stmtItemGlobal = g_charaDb.getPreparedStatement( Db::CHARA_ITEMGLOBAL_INS ); - stmtItemGlobal->setInt( 1, m_id ); + stmtItemGlobal->setUInt64( 1, m_characterId ); stmtItemGlobal->setInt64( 2, uniqueId ); stmtItemGlobal->setInt( 3, itemId ); stmtItemGlobal->setInt( 4, 1 ); // stack of 1 @@ -435,7 +414,7 @@ void PlayerMinimal::insertDbGlobalItem( uint32_t itemId, uint64_t uniqueId ) con void PlayerMinimal::createInvDbContainer( uint16_t slot ) const { auto stmtCreateInv = g_charaDb.getPreparedStatement( Db::CHARA_ITEMINV_INS ); - stmtCreateInv->setInt( 1, m_id ); + stmtCreateInv->setUInt64( 1, m_characterId ); stmtCreateInv->setInt( 2, slot ); g_charaDb.directExecute( stmtCreateInv ); } diff --git a/src/api/PlayerMinimal.h b/src/api/PlayerMinimal.h index a5e41b7b..923059bb 100644 --- a/src/api/PlayerMinimal.h +++ b/src/api/PlayerMinimal.h @@ -1,10 +1,9 @@ -#ifndef _PLAYERMINIMAL_H -#define _PLAYERMINIMAL_H +#pragma once #include -#include +#include #include -#include +#include // c string functions namespace Sapphire::Api { @@ -20,7 +19,7 @@ namespace Sapphire::Api void write(); // load player from db, by id - void load( uint32_t charId ); + void load( uint64_t charId ); void saveAsNew(); @@ -28,7 +27,6 @@ namespace Sapphire::Api uint8_t getClassLevel(); - // return the id of the actor uint32_t getId() const { return m_id; @@ -39,14 +37,14 @@ namespace Sapphire::Api m_id = id; } - void setContentId( uint64_t id ) + void setCharacterId( uint64_t id ) { - m_contentId = id; + m_characterId = id; } - uint64_t getContentId() const + uint64_t getCharacterId() const { - return m_contentId; + return m_characterId; } @@ -168,7 +166,7 @@ namespace Sapphire::Api private: uint32_t m_accountId; uint32_t m_id; - uint64_t m_contentId; + uint64_t m_characterId; uint8_t m_guardianDeity; uint8_t m_birthMonth; @@ -199,4 +197,3 @@ namespace Sapphire::Api }; } -#endif diff --git a/src/api/SapphireApi.cpp b/src/api/SapphireApi.cpp index e31e37c1..21006093 100644 --- a/src/api/SapphireApi.cpp +++ b/src/api/SapphireApi.cpp @@ -28,27 +28,29 @@ bool SapphireApi::login( const std::string& username, const std::string& pass, s // session id string generation srand( ( uint32_t ) time( NULL ) + 42 ); - uint8_t sid[58]; - for( int32_t i = 0; i < 56; i += 4 ) + std::string sessionId; + for( int32_t i = 0; i < 64 / 4; ++i ) { short number = 0x1111 + rand() % 0xFFFF; - sprintf( ( char* ) sid + i, "%04hx", number ); + char part[5]; + sprintf( part, "%04hx", number ); + + if( i == 15 ) + { + part[2] = 0; + part[3] = 0; + } + sessionId += std::string( part ); } // create session for the new sessionid and store to sessionlist auto pSession = std::make_shared< Session >(); pSession->setAccountId( accountId ); - pSession->setSessionId( sid ); + pSession->setSessionId( sessionId.c_str() ); - std::stringstream ss; - - for( size_t i = 0; i < 56; i++ ) - { - ss << std::hex << sid[ i ]; - } - m_sessionMap[ ss.str() ] = pSession; - sId = ss.str(); + m_sessionMap[ sessionId ] = pSession; + sId = sessionId; return true; @@ -60,7 +62,7 @@ bool SapphireApi::insertSession( const uint32_t accountId, std::string& sId ) // create session for the new sessionid and store to sessionlist auto pSession = std::make_shared< Session >(); pSession->setAccountId( accountId ); - pSession->setSessionId( ( uint8_t* ) sId.c_str() ); + pSession->setSessionId( sId.c_str() ); m_sessionMap[ sId ] = pSession; @@ -105,8 +107,8 @@ int SapphireApi::createCharacter( const uint32_t accountId, const std::string& n Api::PlayerMinimal newPlayer; newPlayer.setAccountId( accountId ); - newPlayer.setId( getNextCharId() ); - newPlayer.setContentId( getNextContentId() ); + newPlayer.setId( getNextEntityId() ); + newPlayer.setCharacterId( getNextCharaId() ); newPlayer.setName( name.c_str() ); auto json = nlohmann::json::parse( infoJson ); @@ -186,21 +188,19 @@ void SapphireApi::deleteCharacter( std::string name, const uint32_t accountId ) } } - int32_t id = deletePlayer.getId(); + int32_t id = deletePlayer.getCharacterId(); - g_charaDb.execute( "DELETE FROM charainfo WHERE CharacterId LIKE '" + std::to_string( id ) + "';" ); - g_charaDb.execute( "DELETE FROM characlass WHERE CharacterId LIKE '" + std::to_string( id ) + "';" ); - g_charaDb.execute( "DELETE FROM charaglobalitem WHERE CharacterId LIKE '" + std::to_string( id ) + "';" ); - g_charaDb.execute( "DELETE FROM charainfoblacklist WHERE CharacterId LIKE '" + std::to_string( id ) + "';" ); - g_charaDb.execute( "DELETE FROM charainfolinkshell WHERE CharacterId LIKE '" + std::to_string( id ) + "';" ); - g_charaDb.execute( "DELETE FROM charainfosearch WHERE CharacterId LIKE '" + std::to_string( id ) + "';" ); - g_charaDb.execute( "DELETE FROM charaitemcrystal WHERE CharacterId LIKE '" + std::to_string( id ) + "';" ); - g_charaDb.execute( "DELETE FROM charaitemcurrency WHERE CharacterId LIKE '" + std::to_string( id ) + "';" ); - g_charaDb.execute( "DELETE FROM charaiteminventory WHERE CharacterId LIKE '" + std::to_string( id ) + "';" ); - g_charaDb.execute( "DELETE FROM charaitemgearset WHERE CharacterId LIKE '" + std::to_string( id ) + "';" ); - g_charaDb.execute( "DELETE FROM charamonsternote WHERE CharacterId LIKE '" + std::to_string( id ) + "';" ); - g_charaDb.execute( "DELETE FROM charaquest WHERE CharacterId LIKE '" + std::to_string( id ) + "';" ); - g_charaDb.execute( "DELETE FROM charastatus WHERE CharacterId LIKE '" + std::to_string( id ) + "';" ); + g_charaDb.execute( "DELETE FROM charainfo WHERE CharacterId = " + std::to_string( id ) + ";" ); + g_charaDb.execute( "DELETE FROM characlass WHERE CharacterId = " + std::to_string( id ) + ";" ); + g_charaDb.execute( "DELETE FROM charaglobalitem WHERE CharacterId = " + std::to_string( id ) + ";" ); + g_charaDb.execute( "DELETE FROM charainfoblacklist WHERE CharacterId = " + std::to_string( id ) + ";" ); + g_charaDb.execute( "DELETE FROM charainfofriendlist WHERE CharacterId = " + std::to_string( id ) + ";" ); + g_charaDb.execute( "DELETE FROM charainfolinkshell WHERE CharacterId = " + std::to_string( id ) + ";" ); + g_charaDb.execute( "DELETE FROM charainfosearch WHERE CharacterId = " + std::to_string( id ) + ";" ); + g_charaDb.execute( "DELETE FROM charaitemcrystal WHERE CharacterId = " + std::to_string( id ) + ";" ); + g_charaDb.execute( "DELETE FROM charaiteminventory WHERE CharacterId = " + std::to_string( id ) + ";" ); + g_charaDb.execute( "DELETE FROM charaitemgearset WHERE CharacterId = " + std::to_string( id ) + ";" ); + g_charaDb.execute( "DELETE FROM charaquest WHERE CharacterId = " + std::to_string( id ) + ";" ); } std::vector< PlayerMinimal > SapphireApi::getCharList( uint32_t accountId ) @@ -209,13 +209,13 @@ std::vector< PlayerMinimal > SapphireApi::getCharList( uint32_t accountId ) std::vector< Api::PlayerMinimal > charList; auto pQR = g_charaDb.query( - "SELECT CharacterId, ContentId FROM charainfo WHERE AccountId = " + std::to_string( accountId ) + ";" ); + "SELECT CharacterId FROM charainfo WHERE AccountId = " + std::to_string( accountId ) + ";" ); while( pQR->next() ) { Api::PlayerMinimal player; - uint32_t charId = pQR->getUInt( 1 ); + auto charId = pQR->getUInt64( 1 ); player.load( charId ); @@ -238,11 +238,11 @@ bool SapphireApi::checkNameTaken( std::string name ) return true; } -uint32_t SapphireApi::getNextCharId() +uint32_t SapphireApi::getNextEntityId() { uint32_t charId = 0; - auto pQR = g_charaDb.query( "SELECT MAX(CharacterId) FROM charainfo" ); + auto pQR = g_charaDb.query( "SELECT MAX(EntityId) FROM charainfo" ); if( !pQR->next() ) return 0x00200001; @@ -254,11 +254,11 @@ uint32_t SapphireApi::getNextCharId() return charId; } -uint64_t SapphireApi::getNextContentId() +uint64_t SapphireApi::getNextCharaId() { uint64_t contentId = 0; - auto pQR = g_charaDb.query( "SELECT MAX(ContentId) FROM charainfo" ); + auto pQR = g_charaDb.query( "SELECT MAX(CharacterId) FROM charainfo" ); if( !pQR->next() ) return 0x0040000001000001; diff --git a/src/api/SapphireApi.h b/src/api/SapphireApi.h index c11b3c89..c270176b 100644 --- a/src/api/SapphireApi.h +++ b/src/api/SapphireApi.h @@ -1,5 +1,4 @@ -#ifndef _SAPPHIREAPI_H_ -#define _SAPPHIREAPI_H_ +#pragma once #include #include @@ -34,9 +33,9 @@ namespace Sapphire::Api bool checkNameTaken( std::string name ); - uint32_t getNextCharId(); + uint32_t getNextEntityId(); - uint64_t getNextContentId(); + uint64_t getNextCharaId(); int32_t checkSession( const std::string& sId ); @@ -46,5 +45,3 @@ namespace Sapphire::Api }; } - -#endif diff --git a/src/api/Session.cpp b/src/api/Session.cpp index c5030b2f..e7bec21a 100644 --- a/src/api/Session.cpp +++ b/src/api/Session.cpp @@ -17,9 +17,9 @@ uint32_t Session::getIp() const return m_ip; } -void Session::setSessionId( uint8_t* sessionId ) +void Session::setSessionId( const char* sessionId ) { - memcpy( m_sessionId, sessionId, 56 ); + memcpy( m_sessionId, sessionId, sizeof( m_sessionId ) ); } void Session::setIp( uint32_t ip ) diff --git a/src/api/Session.h b/src/api/Session.h index 7bb0d71b..25fcfa7c 100644 --- a/src/api/Session.h +++ b/src/api/Session.h @@ -1,5 +1,4 @@ -#ifndef _SESSION_H_ -#define _SESSION_H_ +#pragma once #include #include @@ -14,7 +13,7 @@ namespace Sapphire::Api private: uint32_t m_ip; uint32_t m_accountId; - uint8_t m_sessionId[56]; + char m_sessionId[ 64 ]; public: std::string newCharName; @@ -25,7 +24,7 @@ namespace Sapphire::Api uint32_t getIp() const; - void setSessionId( uint8_t* sessionId ); + void setSessionId( const char* sessionId ); void setIp( uint32_t ip ); @@ -35,6 +34,4 @@ namespace Sapphire::Api }; -} - -#endif \ No newline at end of file +} \ No newline at end of file diff --git a/src/api/client_http.hpp b/src/api/client_http.hpp index 5c4f4578..755f2ab9 100644 --- a/src/api/client_http.hpp +++ b/src/api/client_http.hpp @@ -1,5 +1,4 @@ -#ifndef CLIENT_HTTP_HPP -#define CLIENT_HTTP_HPP +#pragma once #include @@ -398,4 +397,3 @@ namespace SimpleWeb }; } -#endif /* CLIENT_HTTP_HPP */ diff --git a/src/api/main.cpp b/src/api/main.cpp index edced26a..3623a20c 100644 --- a/src/api/main.cpp +++ b/src/api/main.cpp @@ -10,7 +10,7 @@ #include #include -#include +#include #include #include @@ -22,23 +22,31 @@ //Added for the default_resource example #include #include -#include + #include #include -#include - #include "SapphireApi.h" #include -[[maybe_unused]] Sapphire::Common::Util::CrashHandler crashHandler; + +// fucking filesystem +#if _MSC_VER >= 1925 +#include +namespace fs = std::filesystem; +#else +#include +namespace fs = std::experimental::filesystem; +#endif + + +Sapphire::Common::Util::CrashHandler crashHandler; Sapphire::Db::DbWorkerPool< Sapphire::Db::ZoneDbConnection > g_charaDb; -Sapphire::Data::ExdDataGenerated g_exdDataGen; +Sapphire::Data::ExdData g_exdData; Sapphire::Api::SapphireApi g_sapphireAPI; -namespace fs = std::filesystem; using namespace std; using namespace Sapphire; @@ -121,7 +129,7 @@ bool loadSettings( int32_t argc, char* argv[] ) Logger::info( "Setting up generated EXD data" ); auto dataPath = m_config.global.general.dataPath; - if( !g_exdDataGen.init( dataPath ) ) + if( !g_exdData.init( dataPath ) ) { Logger::fatal( "Error setting up generated EXD data. Make sure that DataPath is set correctly in global.ini" ); Logger::fatal( "DataPath: {0}", dataPath ); @@ -213,10 +221,12 @@ std::string buildHttpResponse( uint16_t rCode, const std::string& content = "", void getZoneName( shared_ptr< HttpServer::Response > response, shared_ptr< HttpServer::Request > request ) { string number = request->path_match[ 1 ]; - auto info = g_exdDataGen.get< Sapphire::Data::TerritoryType >( atoi( number.c_str() ) ); + auto info = g_exdData.getRow< Component::Excel::TerritoryType >( atoi( number.c_str() ) ); std::string responseStr = "Not found!"; if( info ) - responseStr = info->name + ", " + info->bg; + { + responseStr = info->getString( info->data().Name ) + ", " + info->getString( info->data().LVB ); + } *response << buildHttpResponse( 200, responseStr ); } @@ -461,7 +471,7 @@ void checkSession( shared_ptr< HttpServer::Response > response, shared_ptr< Http { std::string json_string = nlohmann::json( { { "result", result } - } ).dump() + } ).dump(1) ; *response << buildHttpResponse( 200, json_string, JSON ); } @@ -498,7 +508,7 @@ void getNextCharId( shared_ptr< HttpServer::Response > response, shared_ptr< Htt } else { - std::string json_string = "{\"result\":\"" + std::to_string( g_sapphireAPI.getNextCharId() ) + "\"}"; + std::string json_string = "{\"result\":\"" + std::to_string( g_sapphireAPI.getNextEntityId() ) + "\"}"; *response << buildHttpResponse( 200, json_string, JSON ); } } @@ -529,7 +539,7 @@ void getNextContentId( shared_ptr< HttpServer::Response > response, shared_ptr< } else { - std::string json_string = "{\"result\":\"" + std::to_string( g_sapphireAPI.getNextContentId() ) + "\"}"; + std::string json_string = "{\"result\":\"" + std::to_string( g_sapphireAPI.getNextCharaId() ) + "\"}"; *response << buildHttpResponse( 200, json_string, JSON ); } } @@ -572,15 +582,15 @@ void getCharacterList( shared_ptr< HttpServer::Response > response, shared_ptr< { json["charArray"].push_back( { { "name", std::string( entry.getName() ) }, - { "charId", std::to_string( entry.getId() ) }, - { "contentId", std::to_string( entry.getContentId() ) }, + { "entityId", std::to_string( entry.getId() ) }, + { "contentId", std::to_string( entry.getCharacterId() ) }, { "infoJson", std::string( entry.getInfoJson() ) } } ); } json["result"] = "success"; - *response << buildHttpResponse( 200, json.dump(), JSON ); + *response << buildHttpResponse( 200, json.dump(1), JSON ); } } else @@ -670,9 +680,8 @@ void defaultGet( shared_ptr< HttpServer::Response > response, shared_ptr< HttpSe print_request_info( request ); try { - auto web_root_path = fs::current_path() / "web"; - auto path = web_root_path / request->path; - + auto web_root_path = fs::canonical( "web" ); + auto path = fs::canonical( "web" + request->path ); //Check if path is within web_root_path if( distance( web_root_path.begin(), web_root_path.end() ) > distance( path.begin(), path.end() ) || !std::equal( web_root_path.begin(), web_root_path.end(), path.begin() ) ) @@ -718,19 +727,19 @@ int main( int argc, char* argv[] ) Logger::setLogLevel( m_config.global.general.logLevel ); - server.resource[ "^ZoneName/([0-9]+)$" ][ "GET" ] = &getZoneName; - server.resource[ "^sapphire-api/lobby/createAccount" ][ "POST" ] = &createAccount; - server.resource[ "^sapphire-api/lobby/login" ][ "POST" ] = &login; - server.resource[ "^sapphire-api/lobby/deleteCharacter" ][ "POST" ] = &deleteCharacter; - server.resource[ "^sapphire-api/lobby/createCharacter" ][ "POST" ] = &createCharacter; - server.resource[ "^sapphire-api/lobby/insertSession" ][ "POST" ] = &insertSession; - server.resource[ "^sapphire-api/lobby/checkNameTaken" ][ "POST" ] = &checkNameTaken; - server.resource[ "^sapphire-api/lobby/checkSession" ][ "POST" ] = &checkSession; - server.resource[ "^sapphire-api/lobby/getNextCharId" ][ "POST" ] = &getNextCharId; - server.resource[ "^sapphire-api/lobby/getNextContentId" ][ "POST" ] = &getNextContentId; - server.resource[ "^sapphire-api/lobby/getCharacterList" ][ "POST" ] = &getCharacterList; - server.resource[ "^(frontier-api/ffxivsupport/view/get_init)(.*)" ][ "GET" ] = &get_init; - server.resource[ "^(frontier-api/ffxivsupport/information/get_headline_all)(.*)" ][ "GET" ] = &get_headline_all; + server.resource[ "^/ZoneName/([0-9]+)$" ][ "GET" ] = &getZoneName; + server.resource[ "^/sapphire-api/lobby/createAccount" ][ "POST" ] = &createAccount; + server.resource[ "^/sapphire-api/lobby/login" ][ "POST" ] = &login; + server.resource[ "^/sapphire-api/lobby/deleteCharacter" ][ "POST" ] = &deleteCharacter; + server.resource[ "^/sapphire-api/lobby/createCharacter" ][ "POST" ] = &createCharacter; + server.resource[ "^/sapphire-api/lobby/insertSession" ][ "POST" ] = &insertSession; + server.resource[ "^/sapphire-api/lobby/checkNameTaken" ][ "POST" ] = &checkNameTaken; + server.resource[ "^/sapphire-api/lobby/checkSession" ][ "POST" ] = &checkSession; + server.resource[ "^/sapphire-api/lobby/getNextEntityId" ][ "POST" ] = &getNextCharId; + server.resource[ "^/sapphire-api/lobby/getNextCharaId" ][ "POST" ] = &getNextContentId; + server.resource[ "^/sapphire-api/lobby/getCharacterList" ][ "POST" ] = &getCharacterList; + server.resource[ "^(/frontier-api/ffxivsupport/view/get_init)(.*)" ][ "GET" ] = &get_init; + server.resource[ "^(/frontier-api/ffxivsupport/information/get_headline_all)(.*)" ][ "GET" ] = &get_headline_all; server.default_resource[ "GET" ] = &defaultGet; diff --git a/src/api/server_http.hpp b/src/api/server_http.hpp index b9166c57..a1bada78 100644 --- a/src/api/server_http.hpp +++ b/src/api/server_http.hpp @@ -1,5 +1,4 @@ -#ifndef SERVER_HTTP_HPP -#define SERVER_HTTP_HPP +#pragma once #include @@ -304,7 +303,7 @@ namespace SimpleWeb { size_t path_end; if((path_end=line.find(' ', method_end+1))!=std::string::npos) { request->method=line.substr(0, method_end); - request->path=line.substr(method_end+2, path_end-method_end-2); + request->path=line.substr(method_end+1, path_end-method_end-1); size_t protocol_end; if((protocol_end=line.find('/', path_end+1))!=std::string::npos) { @@ -451,4 +450,3 @@ namespace SimpleWeb { } }; } -#endif /* SERVER_HTTP_HPP */ diff --git a/src/common/Common.h b/src/common/Common.h index 8f9c258b..9a47b41e 100644 --- a/src/common/Common.h +++ b/src/common/Common.h @@ -1,12 +1,11 @@ -#ifndef _COMMON_H -#define _COMMON_H +#pragma once #include #include +#include #include "CommonGen.h" #include "Vector3.h" -#include "Network/PacketDef/Ipcs.h" // +--------------------------------------------------------------------------- // The following enumerations are structures to require their type be included. @@ -26,10 +25,20 @@ namespace Sapphire::Common const uint8_t CURRENT_EXPANSION_ID = 3; const uint8_t CLASSJOB_TOTAL = 38; - const uint8_t CLASSJOB_SLOTS = 30; + const uint8_t CLASSJOB_SLOTS = 20; const uint8_t TOWN_COUNT = 6; + /// Version value used in lobby encryption + const uint16_t FFXIV_ENC_VERSION = 3000; + + /// Default service ID name + const std::string SERVICE_ACCOUNT_DEFAULT_NAME = "FINAL FANTASY XIV"; + + /// Lobby char list settings + const uint16_t MAX_CREATE_CHARACTER = 8; + const uint16_t MAX_CHARACTER_LIST = 8; + /*! * @brief The maximum length (in ms) of a combo before it is canceled/voided. * @@ -50,13 +59,151 @@ namespace Sapphire::Common uint8_t plot; }; - enum InventoryOperation : uint16_t + enum INSTANCE_CONTENT_VOTE_TYPE : uint32_t { - Discard = Network::Packets::ClientZoneIpcType::InventoryModifyHandler + 7, - Move = Network::Packets::ClientZoneIpcType::InventoryModifyHandler + 8, - Swap = Network::Packets::ClientZoneIpcType::InventoryModifyHandler + 9, - Split = Network::Packets::ClientZoneIpcType::InventoryModifyHandler + 10, - Merge = Network::Packets::ClientZoneIpcType::InventoryModifyHandler + 12 + INSTANCE_CONTENT_VOTE_TYPE_KICK = 0x0, + INSTANCE_CONTENT_VOTE_TYPE_GIVEUP = 0x1, + INSTANCE_CONTENT_VOTE_TYPE_TREASURE = 0x2, + INSTANCE_CONTENT_VOTE_TYPE_MAX = 0x3, + }; + + enum ITEM_OPERATION_TYPE : uint8_t + { + ITEM_OPERATION_TYPE_NONE = 0x0, + ITEM_OPERATION_TYPE_CREATESTORAGE = 0x1, + ITEM_OPERATION_TYPE_DELETESTORAGE = 0x2, + ITEM_OPERATION_TYPE_COMPACTSTORAGE = 0x3, + ITEM_OPERATION_TYPE_RESYNCSTORAGE = 0x4, + ITEM_OPERATION_TYPE_CREATEITEM = 0x5, + ITEM_OPERATION_TYPE_UPDATEITEM = 0x6, + ITEM_OPERATION_TYPE_DELETEITEM = 0x7, + ITEM_OPERATION_TYPE_MOVEITEM = 0x8, + ITEM_OPERATION_TYPE_SWAPITEM = 0x9, + ITEM_OPERATION_TYPE_SPLITITEM = 0xA, + ITEM_OPERATION_TYPE_SPLITTOMERGE = 0xB, + ITEM_OPERATION_TYPE_MERGEITEM = 0xC, + ITEM_OPERATION_TYPE_REPAIRITEM = 0xD, + ITEM_OPERATION_TYPE_NPC_REPAIRITEM = 0xE, + ITEM_OPERATION_TYPE_REPAIRMANNEQUIN = 0xF, + ITEM_OPERATION_TYPE_NPC_REPAIRMANNEQUIN = 0x10, + ITEM_OPERATION_TYPE_REPAIRINVENTORY = 0x11, + ITEM_OPERATION_TYPE_NPC_REPAIRINVENTORY = 0x12, + ITEM_OPERATION_TYPE_EQUIPMANNEQUIN = 0x13, + ITEM_OPERATION_TYPE_BRINGOUTLEGACYITEM = 0x14, + ITEM_OPERATION_TYPE_GIVETORETAINER = 0x15, + ITEM_OPERATION_TYPE_TAKEFROMRETAINER = 0x16, + ITEM_OPERATION_TYPE_SETRETAINERGIL = 0x17, + ITEM_OPERATION_TYPE_TRADECOMMAND = 0x18, + ITEM_OPERATION_TYPE_MOVETRADE = 0x19, + ITEM_OPERATION_TYPE_SETGILTRADE = 0x1A, + ITEM_OPERATION_TYPE_SETTRADESTACK = 0x1B, + ITEM_OPERATION_TYPE_UPDATEPARTNERBOX = 0x1C, + ITEM_OPERATION_TYPE_CREATEMATERIA = 0x1D, + ITEM_OPERATION_TYPE_ATTACHMATERIA = 0x1E, + ITEM_OPERATION_TYPE_REMOVEMATERIA = 0x1F, + ITEM_OPERATION_TYPE_ASKATTACHMATERIA = 0x20, + ITEM_OPERATION_TYPE_DEBUG_ADDITEM = 0x21, + ITEM_OPERATION_TYPE_DEBUG_SETITEM = 0x22, + ITEM_OPERATION_TYPE_DEBUG_SETSTACK = 0x23, + ITEM_OPERATION_TYPE_DEBUG_SETREFINE = 0x24, + ITEM_OPERATION_TYPE_DEBUG_SETDURABILITY = 0x25, + ITEM_OPERATION_TYPE_ALIASITEM = 0x26, + ITEM_OPERATION_TYPE_UNALIASITEM = 0x27, + ITEM_OPERATION_TYPE_MOVEALIAS = 0x28, + ITEM_OPERATION_TYPE_SWAPALIAS = 0x29, + ITEM_OPERATION_TYPE_TAKEFROMFCCHEST = 0x2A, + ITEM_OPERATION_TYPE_FATEREWARD = 0x2B, + ITEM_OPERATION_TYPE_QUESTREWARD = 0x2C, + ITEM_OPERATION_TYPE_LEVEREWARD = 0x2D, + ITEM_OPERATION_TYPE_SPECIALSHOPTRADE = 0x2E, + ITEM_OPERATION_TYPE_CRAFTLEVETRADE = 0x2F, + ITEM_OPERATION_TYPE_QUESTTRADE = 0x30, + ITEM_OPERATION_TYPE_GATHERING = 0x31, + ITEM_OPERATION_TYPE_CRAFT = 0x32, + ITEM_OPERATION_TYPE_FISHING = 0x33, + ITEM_OPERATION_TYPE_GCSUPPLY = 0x34, + ITEM_OPERATION_TYPE_CABINET_TAKE = 0x35, + ITEM_OPERATION_TYPE_CABINET_GIVE = 0x36, + ITEM_OPERATION_TYPE_SHOPBUYBACK = 0x37, + ITEM_OPERATION_TYPE_TELEPO = 0x38, + ITEM_OPERATION_TYPE_VENTURE_START = 0x39, + ITEM_OPERATION_TYPE_VENTURE_END = 0x3A, + ITEM_OPERATION_TYPE_GARDENING_HARVEST = 0x3B, + ITEM_OPERATION_TYPE_SALVAGE_RESULT = 0x3C, + ITEM_OPERATION_TYPE_TREASURE_PUBLIC = 0x3D, + ITEM_OPERATION_TYPE_TREASURE_GUILD_LEAD = 0x3E, + ITEM_OPERATION_TYPE_TREASURE_RAID = 0x3F, + ITEM_OPERATION_TYPE_TREASURE_MONSTER = 0x40, + ITEM_OPERATION_TYPE_TREASURE_HUNT = 0x41, + ITEM_OPERATION_TYPE_TREASURE_DEBUG_DROP_TABLE = 0x42, + ITEM_OPERATION_TYPE_TREASURE_DEBUG_DROP_PACK = 0x43, + ITEM_OPERATION_TYPE_TREASURE_DEBUG_DROP_TREASURE = 0x44, + ITEM_OPERATION_TYPE_TREASURE_DEBUG_DROP_PACK_TREASURE = 0x45, + ITEM_OPERATION_TYPE_RANDOM_ITEM = 0x46, + ITEM_OPERATION_TYPE_SPECIALSHOPBUYITEM = 0x47, + ITEM_OPERATION_TYPE_EPICWEAPON020TRADE = 0x48, + ITEM_OPERATION_TYPE_EPICWEAPON030TREASUREMAP = 0x49, + ITEM_OPERATION_TYPE_MATERIA_SLOT = 0x4A, + ITEM_OPERATION_TYPE_ACHIEVEMENT_REWARD = 0x4B, + ITEM_OPERATION_TYPE_NUM = 0x4C, + }; + + enum ITEM_OPERATION_ERROR_TYPE : uint8_t + { + ITEM_OPERATION_ERROR_TYPE_NONE = 0x0, + ITEM_OPERATION_ERROR_TYPE_TERRITORYNOTFOUND = 0x1, + ITEM_OPERATION_ERROR_TYPE_ACTORNOTFOUND = 0x2, + ITEM_OPERATION_ERROR_TYPE_STORAGENOTFOUND = 0x3, + ITEM_OPERATION_ERROR_TYPE_ITEMNOTFOUND = 0x4, + ITEM_OPERATION_ERROR_TYPE_COMPACTIONFAILED = 0x5, + ITEM_OPERATION_ERROR_TYPE_LOADINGDATA = 0x6, + ITEM_OPERATION_ERROR_TYPE_INVALIDSTACK = 0x7, + ITEM_OPERATION_ERROR_TYPE_INVALIDGIL = 0x8, + ITEM_OPERATION_ERROR_TYPE_CREATEFAILED = 0x9, + ITEM_OPERATION_ERROR_TYPE_MOVEFAILED = 0xA, + ITEM_OPERATION_ERROR_TYPE_SWAPFAILED = 0xB, + ITEM_OPERATION_ERROR_TYPE_MERGEFAILED = 0xC, + ITEM_OPERATION_ERROR_TYPE_SPLITFAILED = 0xD, + ITEM_OPERATION_ERROR_TYPE_DISCARDFAILED = 0xE, + ITEM_OPERATION_ERROR_TYPE_EQUIPFAILED = 0xF, + ITEM_OPERATION_ERROR_TYPE_NO_WEAPON = 0x10, + ITEM_OPERATION_ERROR_TYPE_NO_UNDERSHIRT = 0x11, + ITEM_OPERATION_ERROR_TYPE_NO_UNDERGARMENT = 0x12, + ITEM_OPERATION_ERROR_TYPE_TRADELOCK = 0x13, + ITEM_OPERATION_ERROR_TYPE_TRADEFAILED = 0x14, + ITEM_OPERATION_ERROR_TYPE_SUCCESSMOVETRADE = 0x15, + ITEM_OPERATION_ERROR_TYPE_PARTNERBUSY = 0x16, + ITEM_OPERATION_ERROR_TYPE_TRADECANCELED = 0x17, + ITEM_OPERATION_ERROR_TYPE_STORAGEFULL = 0x18, + ITEM_OPERATION_ERROR_TYPE_GILFULL = 0x19, + ITEM_OPERATION_ERROR_TYPE_CRYSTALFULL = 0x1A, + ITEM_OPERATION_ERROR_TYPE_UNIQUEITEM = 0x1B, + ITEM_OPERATION_ERROR_TYPE_EXTYPE = 0x1C, + ITEM_OPERATION_ERROR_TYPE_NEED_DURABILITY = 0x1D, + ITEM_OPERATION_ERROR_TYPE_HAS_VANITY = 0x1E, + ITEM_OPERATION_ERROR_TYPE_NOTMATERIALIZABLE = 0x1F, + ITEM_OPERATION_ERROR_TYPE_MELDFAILED = 0x20, + ITEM_OPERATION_ERROR_TYPE_INVALIDFONDNESS = 0x21, + ITEM_OPERATION_ERROR_TYPE_REPAIRFAILED = 0x22, + ITEM_OPERATION_ERROR_TYPE_NEED_REPAIR_KIT_I = 0x23, + ITEM_OPERATION_ERROR_TYPE_NEED_REPAIR_KIT_II = 0x24, + ITEM_OPERATION_ERROR_TYPE_NEED_REPAIR_KIT_III = 0x25, + ITEM_OPERATION_ERROR_TYPE_NEED_REPAIR_KIT_IV = 0x26, + ITEM_OPERATION_ERROR_TYPE_NEED_REPAIR_KIT_V = 0x27, + ITEM_OPERATION_ERROR_TYPE_OPERATIONTOOMUCH = 0x28, + ITEM_OPERATION_ERROR_TYPE_ADDICTION_LEVEL_1 = 0x29, + ITEM_OPERATION_ERROR_TYPE_ADDICTION_LEVEL_2 = 0x2A, + ITEM_OPERATION_ERROR_TYPE_NUM = 0x2B, + }; + + enum GmRank : uint8_t + { + GM_RANK_1 = 1, + GM_RANK_EVENT_JUNIOR = 3, + GM_RANK_EVENT_SENIOR = 4, + GM_RANK_SUPPORT = 5, + GM_RANK_SENIOR = 7, + GM_RANK_DEBUG = 90 }; enum ClientLanguage : uint8_t @@ -67,9 +214,18 @@ namespace Sapphire::Common French = 8 }; - enum TellFlags : uint8_t + enum ChatFromType : uint8_t { - GmTellMsg = 0x4, + GmTellMsg = 0x1, + }; + + enum ChatChannelType : uint16_t + { + CWLinkshellChat = 0x0, + PartyChat = 0x1, + LinkshellChat = 0x2, + FreeCompanyChat = 0x3, + NoviceNetworkChat = 0x4 }; enum BNpcType : uint8_t @@ -78,6 +234,60 @@ namespace Sapphire::Common Enemy = 4, }; + enum ACTOR_KIND : int32_t + { + ACTOR_KIND_PC = 0x0, + ACTOR_KIND_NPC = 0x1, + ACTOR_KIND_RETAINER = 0x2, + ACTOR_KIND_BATTLE = 0x3, + ACTOR_KIND_BATTLE_FRIEND = 0x4, + ACTOR_KIND_OBJECT = 0x5, + ACTOR_KIND_TREASURE = 0x6, + ACTOR_KIND_GATHERING = 0x7, + ACTOR_KIND_MAX = 0x8, + }; + + enum OBJECT_TYPE : int32_t + { + OBJECT_TYPE_CAMERA = 0x0, + OBJECT_TYPE_CAMERA_MAYA = 0x1, + OBJECT_TYPE_LIGHT = 0x2, + OBJECT_TYPE_PLAYER = 0x3, + OBJECT_TYPE_WEAPON = 0x4, + OBJECT_TYPE_MONSTER = 0x5, + OBJECT_TYPE_TERRAIN = 0x6, + OBJECT_TYPE_BG_OBJECT = 0x7, + OBJECT_TYPE_ENV_LOCATION = 0x8, + OBJECT_TYPE_ENV_SPACE = 0x9, + OBJECT_TYPE_VFX_OBJECT = 0xA, + OBJECT_TYPE_COUNT_MAX = 0xB, + }; + + enum WARP_TYPE : uint8_t + { + WARP_TYPE_NON = 0x0, + WARP_TYPE_NORMAL = 0x1, + WARP_TYPE_NORMAL_POS = 0x2, + WARP_TYPE_EXIT_RANGE = 0x3, + WARP_TYPE_TELEPO = 0x4, + WARP_TYPE_REISE = 0x5, + WARP_TYPE_ = 0x6, + WARP_TYPE_DESION = 0x7, + WARP_TYPE_HOME_POINT = 0x8, + WARP_TYPE_RENTAL_CHOCOBO = 0x9, + WARP_TYPE_CHOCOBO_TAXI = 0xA, + WARP_TYPE_INSTANCE_CONTENT = 0xB, + WARP_TYPE_REJECT = 0xC, + WARP_TYPE_CONTENT_END_RETURN = 0xD, + WARP_TYPE_TOWN_TRANSLATE = 0xE, + WARP_TYPE_GM = 0xF, + WARP_TYPE_LOGIN = 0x10, + WARP_TYPE_LAYER_SET = 0x11, + WARP_TYPE_EMOTE = 0x12, + WARP_TYPE_HOUSING_TELEPO = 0x13, + WARP_TYPE_DEBUG = 0x14, + }; + enum ObjKind : uint8_t { None = 0x00, @@ -160,29 +370,44 @@ namespace Sapphire::Common ModelRing2 = 9 }; - enum class EquipSlotCategory : uint8_t + enum EquipSlotCategory : uint8_t { - MainHand = 1, - OffHand = 2, - Head = 3, - Body = 4, - Hands = 5, - Waist = 6, - Legs = 7, - Feet = 8, - Ears = 9, - Neck = 10, - Wrist = 11, - Ring = 12, - MainTwoHandedWeapon = 13, - //MainOrOffHand = 14, // unused - BodyDisallowHead = 15, - BodyDisallowHandsLegsFeet = 16, - SoulCrystal = 17, - LegsDisallowFeet = 18, - BodyDisallowAll = 19, - BodyDisallowHands = 20, - BodyDisallowLegsFeet = 21, + Unequippable = 0, + + // main slots + + CharaMainHand = 1, + CharaOffHand = 2, + CharaHead = 3, + CharaBody = 4, + CharaHands = 5, + CharaWaist = 6, + CharaLegs = 7, + CharaFeet = 8, + CharaEars = 9, + CharaNeck = 10, + CharaWrist = 11, + CharaRing = 12, + CharaSoulCrystal = 17, + + // specials + + /*! Cannot equip gear to offhand slot */ + MainTwoHandedWeapon = 13, + /*! Can be equipped in either main or offhand slot */ + MainOrOffHand = 14, // unused + /*! Cannot equip gear to head */ + BodyDisallowHead = 15, + /*! Cannot equip gear to hands, legs and feet slots */ + BodyDisallowHandsLegsFeet = 16, + /*! Cannot equip gear to feet slot */ + LegsDisallowFeet = 18, + /*! Cannot equp gear to head, hands, legs, feet slots */ + BodyDisallowAll = 19, + /*! Cannot equip gear to hands slot */ + BodyDisallowHands = 20, + /*! Cannot equip gear to legs & feet slots */ + BodyDisallowLegsFeet = 21, }; enum InventoryType : uint16_t @@ -198,12 +423,10 @@ namespace Sapphire::Common Currency = 2000, Crystal = 2001, //UNKNOWN_0 = 2003, - KeyItem = 2004, + KeyItem = 2004, HandIn = 2005, DamagedGear = 2007, //UNKNOWN_1 = 2008, - // Temporary inventory that is used for the "trade" window - TradeInventory = 2009, ArmoryOff = 3200, ArmoryHead = 3201, @@ -212,19 +435,13 @@ namespace Sapphire::Common ArmoryWaist = 3204, ArmoryLegs = 3205, ArmoryFeet = 3206, - ArmoryEar = 3207, - ArmoryNeck = 3208, + ArmoryNeck = 3207, + ArmoryEar = 3208, ArmoryWrist = 3209, ArmoryRing = 3300, ArmorySoulCrystal = 3400, ArmoryMain = 3500, - - SaddleBag0 = 4000, - SaddleBag1 = 4001, - // These are the ones you get when paying for premium companion app - PremiumSaddleBag0 = 4100, - PremiumSaddleBag1 = 4101, RetainerBag0 = 10000, RetainerBag1 = 10001, @@ -395,12 +612,12 @@ namespace Sapphire::Common * Structural representation of the packet sent by the server * Send the entire StatusEffect list */ - struct StatusEffect + struct StatusWork { - uint16_t effect_id; - uint16_t param; - float duration; - uint32_t sourceActorId; + uint16_t Id; + int16_t SystemParam; + float Time; + uint32_t Source; }; enum CharaLook : uint8_t @@ -456,9 +673,9 @@ namespace Sapphire::Common Run = 60, }; - struct QuestActive + struct QuestData { - QuestActive() + QuestData() { c.questId = 0; c.sequence = 0; @@ -469,26 +686,31 @@ namespace Sapphire::Common c.UI8D = 0; c.UI8E = 0; c.UI8F = 0; - c.padding = 0; - c.padding1 = 0; } - - union { + /*! + * default SE struct + */ + struct + { + uint16_t questId; + uint8_t sequence; + uint8_t flags; + uint8_t vars[6]; + } packed; + struct { uint16_t questId; uint8_t sequence; uint8_t flags; - uint8_t padding; uint8_t BitFlag48; uint8_t BitFlag40; uint8_t BitFlag32; uint8_t BitFlag24; uint8_t BitFlag16; uint8_t BitFlag8; - uint8_t padding1; } a; struct @@ -496,7 +718,6 @@ namespace Sapphire::Common uint16_t questId; uint8_t sequence; uint8_t flags; - uint8_t padding; uint8_t UI8AL : 4; uint8_t UI8AH : 4; uint8_t UI8BL : 4; @@ -509,7 +730,6 @@ namespace Sapphire::Common uint8_t UI8EH : 4; uint8_t UI8FL : 4; uint8_t UI8FH : 4; - uint8_t padding1; } b; struct @@ -517,14 +737,12 @@ namespace Sapphire::Common uint16_t questId; uint8_t sequence; uint8_t flags; - uint8_t padding; uint8_t UI8A; uint8_t UI8B; uint8_t UI8C; uint8_t UI8D; uint8_t UI8E; uint8_t UI8F; - uint8_t padding1; } c; //struct @@ -550,30 +768,6 @@ namespace Sapphire::Common }; - enum FieldMarkerStatus : uint32_t - { - A = 0x1, - B = 0x2, - C = 0x4, - D = 0x8, - One = 0x10, - Two = 0x20, - Three = 0x40, - Four = 0x80 - }; - // TODO: consolidate these two into one since FieldMarkerStatus == 1 << FieldMarkerId? - enum class FieldMarkerId : uint8_t - { - A, - B, - C, - D, - One, - Two, - Three, - Four - }; - enum struct ActionAspect : uint8_t { None = 0, // Doesn't imply unaspected @@ -591,27 +785,19 @@ namespace Sapphire::Common None = 0, // ? MagicPoints = 3, TacticsPoints = 5, - StatusEffect = 10, - WARGauge = 22, - DRKGauge = 25, - // AetherflowStack = 30, - // Status = 32, - SAMKenki = 39, - SAMSen = 40, - PLDGauge = 41, - GNBAmmo = 55, - WHMBloodLily = 56, - WHMLily = 57, - SAMMeditation = 63, - // RDMGaugeBoth = 74, - //// RDMGaugeBlack = 75, // not right? - // DRGGauge3Eyes = 76, +// WARGauge = 22, +// DRKGauge = 25, +// AetherflowStack = 30, +// Status = 32, +// PLDGauge = 41, +// RDMGaugeBoth = 74, +//// RDMGaugeBlack = 75, // not right? +// DRGGauge3Eyes = 76, }; - enum class AttackType : int8_t + enum class ActionType : int8_t { - //WeaponOverride = -1, // Needs more investigation (takes the damage type of the equipped weapon)? - Physical = -1, // seems to be the case + WeaponOverride = -1, // Needs more investigation (takes the damage type of the equipped weapon)? Unknown_0 = 0, Slashing = 1, Piercing = 2, @@ -625,43 +811,70 @@ namespace Sapphire::Common enum ActionEffectType : uint8_t { - Nothing = 0, - Miss = 1, - FullResist = 2, - Damage = 3, - Heal = 4, - BlockedDamage = 5, - ParriedDamage = 6, - Invulnerable = 7, - NoEffectText = 8, - Unknown_0 = 9, - MpLoss = 10, - MpGain = 11, - TpLoss = 12, - TpGain = 13, - GpGain = 14, - ApplyStatusEffectTarget = 15, - ApplyStatusEffectSource = 16, // effect entry on target but buff applies to source, like storm's eye - StatusNoEffect = 20, // shifted one up from 5.18 - /*! - * @brief Tells the client that it should show combo indicators on actions. - * - * @param flags Required to be 128, doesn't show combo rings on hotbars otherwise - * @param value The actionid that starts/continues the combo. eg, 3617 will start a spinning slash and/or syphon strike combo - */ - StartActionCombo = 27, // shifted one up from 5.18 - ComboSucceed = 28, // shifted one up from 5.18, on retail this is not seen anymore, still working though. - Knockback = 33, - Mount = 40, // shifted one down from 5.18 - VFX = 59, // links to VFX sheet + CALC_RESULT_TYPE_NONE = 0x0, + CALC_RESULT_TYPE_MISS = 0x1, + CALC_RESULT_TYPE_RESIST = 0x2, + CALC_RESULT_TYPE_DAMAGE_HP = 0x3, + CALC_RESULT_TYPE_RECOVER_HP = 0x4, + CALC_RESULT_TYPE_CRITICAL_DAMAGE_HP = 0x5, + CALC_RESULT_TYPE_CRITICAL_RECOVER_HP = 0x6, + CALC_RESULT_TYPE_GUARD = 0x7, + CALC_RESULT_TYPE_PARRY = 0x8, + CALC_RESULT_TYPE_INVALID = 0x9, + CALC_RESULT_TYPE_UNEFFECTIVE = 0xA, + CALC_RESULT_TYPE_NEGLECT = 0xB, + CALC_RESULT_TYPE_DAMAGE_MP = 0xC, + CALC_RESULT_TYPE_RECOVER_MP = 0xD, + CALC_RESULT_TYPE_DAMAGE_TP = 0xE, + CALC_RESULT_TYPE_RECOVER_TP = 0xF, + CALC_RESULT_TYPE_RECOVER_GP = 0x10, + CALC_RESULT_TYPE_SET_STATUS = 0x11, + CALC_RESULT_TYPE_SET_STATUS_ME = 0x12, + CALC_RESULT_TYPE_RESET_STATUS = 0x13, + CALC_RESULT_TYPE_RESET_STATUS_ME = 0x14, + CALC_RESULT_TYPE_RESET_BAD_STATUS = 0x15, + CALC_RESULT_TYPE_UNEFFECTIVE_STATUS = 0x16, + CALC_RESULT_TYPE_HALF_GOOD_STATUS = 0x17, + CALC_RESULT_TYPE_HATE_DIRECT = 0x18, + CALC_RESULT_TYPE_HATE_INDIRECTION = 0x19, + CALC_RESULT_TYPE_HATE_TOP = 0x1A, + CALC_RESULT_TYPE_HATE_ADD = 0x1B, + CALC_RESULT_TYPE_HATE_MULT = 0x1C, + CALC_RESULT_TYPE_COMBO = 0x1D, + CALC_RESULT_TYPE_COMBO_HIT = 0x1E, + CALC_RESULT_TYPE_COUNTER = 0x1F, + CALC_RESULT_TYPE_DESTRUCT = 0x20, + CALC_RESULT_TYPE_PARALYSIS = 0x21, + CALC_RESULT_TYPE_KNOCK_BACK = 0x22, + CALC_RESULT_TYPE_DRAW_UP_CHAIRS = 0x23, + CALC_RESULT_TYPE_SUCKED = 0x24, + CALC_RESULT_TYPE_CT_DRAW_UP_CHAIRS = 0x25, + CALC_RESULT_TYPE_LIVE_CALLBACK = 0x26, + CALC_RESULT_TYPE_MOUNT = 0x27, + CALC_RESULT_ARCHER_DOT = 0x28, + CALC_RESULT_MASTER_DOT = 0x29, + CALC_RESULT_BLESSINGS_OF_GODDESS = 0x2A, + CALC_RESULT_BAD_BREATH = 0x2B, + CALC_RESULT_REVIVAL = 0x2C, + CALC_RESULT_PET = 0x2D, + CALC_RESULT_TYPE_BLOW = 0x2E, + CALC_RESULT_TYPE_STATUS_RESIST = 0x2F, + CALC_RESULT_TYPE_CLEAR_PHYSICAL = 0x30, + CALC_RESULT_BNPC_STATE = 0x31, + CALC_RESULT_TYPE_VFX = 0x32, + CALC_RESULT_TYPE_HARD_CODE = 0x33, + CALC_RESULT_CALC_ID = 0x34, + CALC_RESULT_TYPE_CLEAR_PVP_POINT = 0x35, + CALC_RESULT_TYPE_CHECK_BARRIER = 0x36, + CALC_RESULT_TYPE_REFLEC = 0x37, }; enum class ActionHitSeverityType : uint8_t { NormalDamage = 0, - NormalHeal = 0, + CritHeal = 0, CritDamage = 1, - CritHeal = 1, + NormalHeal = 1, DirectHitDamage = 2, CritDirectHitDamage = 3 }; @@ -670,7 +883,6 @@ namespace Sapphire::Common { None = 0, Absorbed = 0x04, - ExtendedValue = 0x40, EffectOnSource = 0x80, Reflected = 0xA0, }; @@ -688,20 +900,33 @@ namespace Sapphire::Common ShowItemName = 2, }; - struct EffectEntry + struct CalcResultParam { - Common::ActionEffectType effectType; - uint8_t param0; - uint8_t param1; - /*! - * @brief Shows an additional percentage in the battle log - * - * Has no effect on what is shown and stored in value - */ - uint8_t param2; - uint8_t extendedValueHighestByte; - uint8_t flags; - int16_t value; + uint8_t Type; + uint8_t Arg0; + uint8_t Arg1; + uint8_t Arg2; + int16_t Value; + uint8_t Flag; + uint8_t Padding; + }; + + struct CalcResult + { + CalcResultParam CalcResultCt[4]; + CalcResultParam CalcResultTg[4]; + }; + + struct IntegrityStatus + { + uint8_t Slot; + uint8_t __padding1; + uint16_t Id; + int16_t SystemParam; + uint8_t __padding2; + uint8_t __padding3; + float Time; + uint32_t Source; }; enum class ActionCollisionType : uint8_t @@ -746,6 +971,55 @@ namespace Sapphire::Common InvincibilityIgnoreDamage, }; + enum InviteType : int32_t + { + NONE_2 = 0x0, + PCPARTY = 0x1, + FRIENDLIST = 0x2, + AUTOPARTY = 0x3, + FCCREATE = 0x4, + FREECOMPANY = 0x5, + FCJOINREQUEST = 0x6, + PARTYCANCEL = 0x7, + MAX_1 = 0xFF, + }; + + enum LinkshellHierarchy : int32_t + { + NONE_1 = 0x0, + MASTER = 0x1, + LEADER = 0x2, + MEMBER = 0x3, + INVITE = 0x4, + MAX_0 = 0x7, + }; + + + enum GroupEntryStatus : uint8_t + { + Invalid = 0, + Added = 0x10, + SentRequest = 0x20, + ReceivedRequest = 0x30 + }; + + /* 61719 */ + enum InviteReplyType : int32_t + { + DENY = 0x0, + ACCEPT = 0x1, + CANCEL = 0x2, + }; + + enum InviteUpdateType : uint8_t + { + NEW_INVITE = 0x01, + INVITE_CANCEL = 0x02, + JOINED_PARTY = 0x03, + ACCEPT_INVITE = 0x04, + REJECT_INVITE = 0x05, + }; + enum PlayerStateFlag : uint8_t { HideUILockChar = 0, // as the name suggests, hides the ui and logs the char... @@ -755,10 +1029,9 @@ namespace Sapphire::Common InNpcEvent1 = 10, // Sent together with InNpcEvent, when waiting for input? just a guess... - BetweenAreas = 24, - BoundByDuty = 28, - Performing = 40, - WatchingCutscene = 50, // this is actually just a dummy, this id is different + BoundByDuty = 22, + BetweenAreas = 33, + WatchingCutscene = 46, // this is actually just a dummy, this id is different }; @@ -923,20 +1196,10 @@ namespace Sapphire::Common InteriorLight_Mansion }; - enum HouseTagSlot - { - MainTag, - SubTag1, - SubTag2 - }; - enum LandFlagsSlot { FreeCompany, - Private, - Apartment, - SharedHouse1, - SharedHouse2 + Private }; enum class LandType : uint8_t @@ -946,13 +1209,99 @@ namespace Sapphire::Common Private = 2, }; - enum LandFlags : uint32_t + enum BuildingMenu : uint32_t { - EstateBuilt = 0x1, - HasAetheryte = 0x2, - UNKNOWN_1 = 0x4, - UNKNOWN_2 = 0x8, - UNKNOWN_3 = 0x10, + BUILDING_MENU_BUY_DEED = 0x0, + BUILDING_MENU_BUILD = 0x1, + BUILDING_MENU_DESTROY = 0x2, + BUILDING_MENU_MAX = 0x3, + }; + + enum HousingProfileStatus : uint32_t + { + HOUSING_PROFILE_STATUS_SOLD = 0x1, + HOUSING_PROFILE_STATUS_WELCOME = 0x2, + HOUSING_PROFILE_STATUS_HAS_GREETING = 0x4, + HOUSING_PROFILE_STATUS_HAS_HOUSE = 0x8, + }; + + enum HOUSING_LAND_STATUS : uint8_t + { + HOUSING_LAND_STATUS_NOINIT = 0x0, + HOUSING_LAND_STATUS_NONE = 0x1, + HOUSING_LAND_STATUS_BUYLAND = 0x2, + HOUSING_LAND_STATUS_BUILDHOUSE = 0x3, + }; + + enum HOUSING_SAVE_FLAG : uint8_t + { + HOUSING_SAVE_FLAG_NONE = 0x0, + HOUSING_SAVE_FLAG_LAND = 0x1, + HOUSING_SAVE_FLAG_HOUSE = 0x2, + HOUSING_SAVE_FLAG_BUDDYSTABLE = 0x4, + HOUSING_SAVE_FLAG_LAND_HOUSE = 0x3, + }; + + enum HOUSING_AETHERYTE_BITFLAG : uint8_t + { + HOUSING_AETHERYTE_BITFLAG_NONE = 0x0, + HOUSING_AETHERYTE_BITFLAG_PRIVATEAETHERYTE = 0x1, + HOUSING_AETHERYTE_BITFLAG_BUDDYSTABLE = 0x2, + }; + + enum HOUSING_ACCESSLOCK : uint8_t + { + HOUSING_ACCESSLOCK_NONE = 0x0, + HOUSING_ACCESSLOCK_LOCK = 0x1, + HOUSING_ACCESSLOCK_FORCEREMOVE = 0x2, + HOUSING_ACCESSLOCK_AUTOREMOVE = 0x3, + HOUSING_ACCESSLOCK_NUM = 0x4, + }; + + enum HOUSING_AUTOREMOVEDLAND_STATUS : uint8_t + { + HOUSING_AUTOREMOVELAND_STATUS_NONE = 0x0, + HOUSING_AUTOREMOVELAND_STATUS_FORCE = 0x1, + HOUSING_AUTOREMOVELAND_STATUS_AUTO = 0x2, + }; + + enum HOUSING_ENTERLIMIT : uint8_t + { + HOUSING_ENTERLIMIT_S = 0x40, + HOUSING_ENTERLIMIT_M = 0x60, + HOUSING_ENTERLIMIT_L = 0x80, + }; + + enum HOUSING_PRICEDOWN : uint16_t + { + HOUSING_PRICEDOWN_FINAL = 0x1FF, + HOUSING_PRICEDOWN_RESET = 0x200, + HOUSING_PRICEDOWN_UPDATETIME = 0x201, + }; + + enum HOUSING_PERSONALROOM : uint16_t + { + HOUSING_PERSONALROOM_INITIALPRICE = 0x2710, + }; + + enum HOUSING_TEMP_BUFFER_ITEMS : uint8_t + { + HOUSING_TEMP_BUFFER_ITEMS_MAX = 0xA, + }; + + enum LandFlags : uint8_t + { + CHARA_HOUSING_LAND_DATA_FLAG_HOUSE = 0x1, + CHARA_HOUSING_LAND_DATA_FLAG_AETHERYTE = 0x2, + }; + + enum HouseSize : uint8_t + { + HOUSE_SIZE_S = 0x0, + HOUSE_SIZE_M = 0x1, + HOUSE_SIZE_L = 0x2, + HOUSE_SIZE_ALL = 0xFE, + INVALID_HOUSE_SIZE = 0xFF, }; struct LandIdent @@ -963,26 +1312,65 @@ namespace Sapphire::Common int16_t worldId; //06 }; - struct LandFlagSet + struct House { - LandIdent landIdent; - uint32_t landFlags; //08 - uint32_t unkown1; //12 + uint8_t size; + uint8_t status; + uint8_t flags; + uint8_t __padding1; + uint64_t fcCrestId; + uint8_t patternIds[8]; + uint8_t colors[8]; }; - struct HousingObject + struct Furniture { - uint32_t itemId; - uint32_t padding; // was itemrotation + unknown/pad, looks unused now - float rotation; - Common::FFXIVARR_POSITION3 pos; + uint16_t patternId; + uint8_t color; + uint8_t status; + uint16_t dir; + uint16_t pos[3]; }; - enum HouseSize : uint8_t + struct CharaLandData { - Cottage, - House, - Mansion + LandIdent landId; + uint8_t flags; + }; + + struct SimpleProfile + { + uint32_t price; + uint8_t status; + uint8_t fcTag[7]; + }; + + struct HousingLayout + { + uint8_t storageIndex; + uint8_t __padding1; + uint16_t dir; + uint16_t pos[3]; + }; + + struct HousingPersonalRoomProfileData + { + uint64_t OnlineStatus; + uint16_t TerritoryType; + uint8_t Welcome; + char OwnerName[32]; + char HouseCommentSimple[49]; + }; + + struct HouseBuddyStableData + { + uint32_t LastTrainingTime; + uint8_t Rank; + uint8_t __padding1; + uint16_t HouseBuddyRoomId; + uint8_t SkillLines[3]; + char OwnerName[32]; + char BuddyName[21]; }; enum HouseStatus : uint8_t @@ -1014,6 +1402,29 @@ namespace Sapphire::Common uint16_t cost; }; + enum EventSceneError : uint8_t + { + EVENT_SCENE_SUCCESS = 0x0, + EVENT_SCENE_ERROR_LUA_ERRRUN = 0x2, + EVENT_SCENE_ERROR_LUA_ERRSYNTAX = 0x3, + EVENT_SCENE_ERROR_LUA_ERRMEM = 0x4, + EVENT_SCENE_ERROR_LUA_ERRERR = 0x5, + EVENT_SCENE_ERROR_USER_CANCEL = 0x32, + EVENT_SCENE_ERROR_SERVER_ABORT = 0x33, + EVENT_SCENE_ERROR_RELOAD = 0x34, + EVENT_SCENE_ERROR_LUA_THREAD_BUSY = 0x35, + EVENT_SCENE_ERROR_TARGET_CHANGED = 0x36, + EVENT_SCENE_ERROR_CLIENT_ABORT = 0x37, + EVENT_SCENE_ERROR_TARGET_LOST = 0x38, + EVENT_SCENE_ERROR_BEFORE_PLAY = 0x39, + EVENT_SCENE_ERROR_BIND_CHARACTER = 0x3A, + EVENT_SCENE_ERROR_TARGET_MOVE = 0x3B, + EVENT_SCENE_ERROR_SCRIPT_NOT_READY = 0x3C, + EVENT_SCENE_ERROR_TARGET_WARP = 0x3D, + EVENT_SCENE_ERROR_BIND_OBJECT = 0x3E, + EVENT_SCENE_ERROR_MAX = 0xFF, + }; + enum LevelTableEntry : uint8_t { MAIN, @@ -1045,209 +1456,66 @@ namespace Sapphire::Common Gatherer }; - enum class AstCardType : uint8_t - { - None = 0, - Balance = 1, - Bole = 2, - Arrow = 3, - Spear = 4, - Ewer = 5, - Spire = 6, - Lord = 0x70, - Lady = 0x80, - }; + using PlayerStateFlagList = std::vector< PlayerStateFlag >; - enum class AstSealType : uint8_t - { - None = 0, - Sun = 1, - Moon = 2, - Celestrial = 3, - }; - enum class DrgState : uint8_t - { - None = 0, - BloodOfTheDragon = 1, - LifeOfTheDragon = 2, - }; +struct BNPCInstanceObject +{ + uint16_t territoryType; + std::string bnpcName; + uint32_t instanceId; + uint32_t nameOffset; + float x; + float y; + float z; + float rotation; + uint32_t BaseId; + uint32_t PopWeather; + uint8_t PopTimeStart; + uint8_t PopTimeEnd; + uint32_t MoveAI; + uint8_t WanderingRange; + uint8_t Route; + uint16_t EventGroup; + uint32_t NameId; + uint32_t DropItem; + float SenseRangeRate; + uint16_t Level; + uint8_t ActiveType; + uint8_t PopInterval; + uint8_t PopRate; + uint8_t PopEvent; + uint8_t LinkGroup; + uint8_t LinkFamily; + uint8_t LinkRange; + uint8_t LinkCountLimit; + int8_t NonpopInitZone; + int8_t InvalidRepop; + int8_t LinkParent; + int8_t LinkOverride; + int8_t LinkReply; + int8_t Nonpop; + float HorizontalPopRange; + float VerticalPopRange; + int32_t BNpcBaseData; + uint8_t RepopId; + uint8_t BNPCRankId; + uint16_t TerritoryRange; + uint32_t BoundInstanceID; + uint32_t FateLayoutLabelId; + uint32_t NormalAI; + uint32_t ServerPathId; + uint32_t EquipmentID; + uint32_t CustomizeID; +}; - enum class SamSen : uint8_t - { - None = 0, - Setsu = 1, - Getsu = 2, - Ka = 4, - }; +/* + * CellId is used to identify a cell in the cell container of a zone + */ +struct CellId +{ + uint32_t x{ 0 }; + uint32_t y{ 0 }; +}; - enum class SchDismissedFairy : uint8_t - { - None = 0, - Eos = 6, - Selene = 7, - }; - - enum class SmnPet : uint8_t - { - None = 0, - Ifrit = 3, - Titan = 4, - Garuda = 5, - }; - - enum class SmnPetGlam : uint8_t - { - None = 0, - Emerald = 1, - Topaz = 2, - Ruby = 3, - }; - - enum class BrdSong : uint8_t - { - Mage = 5, - Army = 0x0A, - Wanderer = 0x0F, - }; - - union JobGauge - { - struct - { - uint8_t gauge_data[15]; - } _raw; - - struct - { - uint32_t unused; - AstCardType card; - AstSealType seals[3]; - } ast; - struct - { - uint16_t timeUntilNextPolyglot; - uint16_t elementTimer; - uint8_t elementStance; - uint8_t umbralhearts; - uint8_t polyglotStacks; - uint8_t enochainState; - } blm; - struct - { - uint16_t songTimer; - uint8_t songStacks; - uint8_t unused; - BrdSong song; - } brd; - struct - { - uint8_t feathers; - uint8_t esprit; - uint8_t stepOrder[4]; - uint8_t completeSteps; - } dnc; - struct - { - uint16_t dragonTimer; - DrgState dragonState; - uint8_t eyes; - } drg; - struct - { - uint8_t blood; - uint8_t unused; - uint16_t darksideTimer; - uint8_t darkArts; - uint8_t unused2; - uint16_t shadowTimer; - } drk; - struct - { - uint8_t ammo; - uint8_t unused; - uint16_t maxTimerDuration; - uint8_t ammoComboStep; - } gnb; - struct - { - uint16_t overheatTimer; - uint16_t robotTimer; - uint8_t heat; - uint8_t battery; - uint8_t lastRobotBatteryPower; - uint8_t activeTimerFlag; - } mch; - struct - { - uint8_t greasedLightningTimer; - uint8_t unused; - uint8_t greasedLightningStacks; - uint8_t chakra; - uint8_t greasedLightningTimerFreezed; - } mnk; - struct - { - uint32_t hutonTimer; - uint8_t tenChiJinMudrasUsed; - uint8_t ninki; - uint8_t hutonManualCasts; - } nin; - struct - { - uint8_t oathGauge; - } pld; - struct - { - uint8_t whiteGauge; - uint8_t blackGauge; - } rdm; - struct - { - uint16_t unused; - uint8_t unused2; - uint8_t kenki; - uint8_t meditationStacks; - SamSen sen; - } sam; - struct - { - uint16_t unused; - uint8_t aetherflowStacks; - uint8_t fairyGauge; - uint16_t seraphTimer; - SchDismissedFairy dismissedFairy; - } sch; - struct - { - uint16_t timer; - SmnPet returnSummon; - SmnPetGlam petGlam; - uint8_t stacks; - } smn; - - struct - { - uint8_t beastGauge; - } war; - struct - { - uint16_t unused; - uint16_t lilyTimer; - uint8_t lilies; - uint8_t bloodLilies; - } whm; - }; - - enum class LootMessageType : uint8_t - { - GetItem1 = 1, // p1: actorId, p4: itemId (HQ: itemId + 1,000,000 lol), p5: amount - GetItem2 = 3, // p1: actorId, p2: itemId, p3: amount, seems like same thing as GetItem1 but different param position. - FailedToGetLootNoFreeInventorySlot = 5, // p1: actorId - LootRolled = 7, // p1: actorId, p2: itemId, p3: amount - GetGil = 9, // p1: gil - EmptyCoffer = 11, // seems like no param - }; } - -#endif diff --git a/src/common/CommonGen.h b/src/common/CommonGen.h index 98ad9d71..69a1063f 100644 --- a/src/common/CommonGen.h +++ b/src/common/CommonGen.h @@ -4,801 +4,722 @@ #include /* This file has been automatically generated. -Changes will be lost upon regeneration. -To change the content edit tools/exd_common_gen */ + Changes will be lost upon regeneration. + To change the content edit tools/exd_common_gen */ namespace Sapphire::Common { - /////////////////////////////////////////////////////////// - //ActionCategory.exd - enum class ActionCategory : uint8_t - { - None = 0, - Autoattack = 1, - Spell = 2, - Weaponskill = 3, - Ability = 4, - Item = 5, - DoLAbility = 6, - DoHAbility = 7, - Event = 8, - LimitBreak = 9, - System = 10, - Artillery = 11, - Mount = 12, - Special = 13, - ItemManipulation = 14, - AdrenalineRush = 15, - //1 = 16, - }; +/////////////////////////////////////////////////////////// +//ActionCategory.exd +enum class ActionCategory : uint8_t +{ + None = 0, + Autoattack = 1, + Spell = 2, + Weaponskill = 3, + Ability = 4, + Item = 5, + DoLAbility = 6, + DoHAbility = 7, + Event = 8, + LimitBreak = 9, + System = 10, + Artillery = 11, + Mount = 12, + Glamour = 13, + ItemManipulation = 14, + AdrenalineRush = 15, +}; - /////////////////////////////////////////////////////////// - //BaseParam.exd - enum class BaseParam : uint8_t - { - None = 0, - Strength = 1, - Dexterity = 2, - Vitality = 3, - Intelligence = 4, - Mind = 5, - Piety = 6, - HP = 7, - MP = 8, - TP = 9, - GP = 10, - CP = 11, - PhysicalDamage = 12, - MagicDamage = 13, - Delay = 14, - AdditionalEffect = 15, - AttackSpeed = 16, - BlockRate = 17, - BlockStrength = 18, - Tenacity = 19, - AttackPower = 20, - Defense = 21, - DirectHitRate = 22, - Evasion = 23, - MagicDefense = 24, - CriticalHitPower = 25, - CriticalHitResilience = 26, - CriticalHit = 27, - CriticalHitEvasion = 28, - SlashingResistance = 29, - PiercingResistance = 30, - BluntResistance = 31, - ProjectileResistance = 32, - AttackMagicPotency = 33, - HealingMagicPotency = 34, - EnhancementMagicPotency = 35, - ElementalBonus = 36, - FireResistance = 37, - IceResistance = 38, - WindResistance = 39, - EarthResistance = 40, - LightningResistance = 41, - WaterResistance = 42, - MagicResistance = 43, - Determination = 44, - SkillSpeed = 45, - SpellSpeed = 46, - Haste = 47, - Morale = 48, - Enmity = 49, - EnmityReduction = 50, - DesynthesisSkillGain = 51, - EXPBonus = 52, - Regen = 53, - Refresh = 54, - MainAttribute = 55, - SecondaryAttribute = 56, - SlowResistance = 57, - PetrificationResistance = 58, - ParalysisResistance = 59, - SilenceResistance = 60, - BlindResistance = 61, - PoisonResistance = 62, - StunResistance = 63, - SleepResistance = 64, - BindResistance = 65, - HeavyResistance = 66, - DoomResistance = 67, - ReducedDurabilityLoss = 68, - IncreasedSpiritbondGain = 69, - Craftsmanship = 70, - Control = 71, - Gathering = 72, - Perception = 73, - }; +/////////////////////////////////////////////////////////// +//BaseParam.exd +enum class BaseParam : uint8_t +{ + None = 0, + Strength = 1, + Dexterity = 2, + Vitality = 3, + Intelligence = 4, + Mind = 5, + Piety = 6, + HP = 7, + MP = 8, + TP = 9, + GP = 10, + CP = 11, + PhysicalDamage = 12, + MagicDamage = 13, + Delay = 14, + AdditionalEffect = 15, + AttackSpeed = 16, + BlockRate = 17, + BlockStrength = 18, + Parry = 19, + AttackPower = 20, + Defense = 21, + Accuracy = 22, + Evasion = 23, + MagicDefense = 24, + CriticalHitPower = 25, + CriticalHitResilience = 26, + CriticalHit = 27, + CriticalHitEvasion = 28, + SlashingResistance = 29, + PiercingResistance = 30, + BluntResistance = 31, + ProjectileResistance = 32, + AttackMagicPotency = 33, + HealingMagicPotency = 34, + EnhancementMagicPotency = 35, + ElementalBonus = 36, + FireResistance = 37, + IceResistance = 38, + WindResistance = 39, + EarthResistance = 40, + LightningResistance = 41, + WaterResistance = 42, + MagicResistance = 43, + Determination = 44, + SkillSpeed = 45, + SpellSpeed = 46, + Haste = 47, + Morale = 48, + Enmity = 49, + EnmityReduction = 50, + CarefulDesynthesis = 51, + EXPBonus = 52, + Regen = 53, + Refresh = 54, + MainAttribute = 55, + SecondaryAttribute = 56, + SlowResistance = 57, + PetrificationResistance = 58, + ParalysisResistance = 59, + SilenceResistance = 60, + BlindResistance = 61, + PoisonResistance = 62, + StunResistance = 63, + SleepResistance = 64, + BindResistance = 65, + HeavyResistance = 66, + DoomResistance = 67, + ReducedDurabilityLoss = 68, + IncreasedSpiritbondGain = 69, + Craftsmanship = 70, + Control = 71, + Gathering = 72, + Perception = 73, +}; - /////////////////////////////////////////////////////////// - //BeastReputationRank.exd - enum class BeastReputationRank : uint8_t - { - None = 0, - Neutral = 1, - Recognized = 2, - Friendly = 3, - Trusted = 4, - Respected = 5, - Honored = 6, - Sworn = 7, - Allied = 8, - }; - /////////////////////////////////////////////////////////// - //BeastTribe.exd - enum class BeastTribe : uint8_t - { - /* = 0, - 1 = 1, - 2 = 2, - 3 = 3, - 4 = 4, - 5 = 5, - 6 = 6, - 7 = 7, - 8 = 8, - 9 = 9, - 10 = 10, - 11 = 11, - 12 = 12, - 13 = 13, - 14 = 14,*/ - }; +/////////////////////////////////////////////////////////// +//BeastReputationRank.exd +enum class BeastReputationRank : uint8_t +{ + None = 0, + Neutral = 1, + Recognized = 2, + Friendly = 3, + Trusted = 4, + Respected = 5, + Honored = 6, + Sworn = 7, + Allied = 8, +}; - /////////////////////////////////////////////////////////// - //ClassJob.exd - enum class ClassJob : uint8_t - { - Adventurer = 0, - Gladiator = 1, - Pugilist = 2, - Marauder = 3, - Lancer = 4, - Archer = 5, - Conjurer = 6, - Thaumaturge = 7, - Carpenter = 8, - Blacksmith = 9, - Armorer = 10, - Goldsmith = 11, - Leatherworker = 12, - Weaver = 13, - Alchemist = 14, - Culinarian = 15, - Miner = 16, - Botanist = 17, - Fisher = 18, - Paladin = 19, - Monk = 20, - Warrior = 21, - Dragoon = 22, - Bard = 23, - Whitemage = 24, - Blackmage = 25, - Arcanist = 26, - Summoner = 27, - Scholar = 28, - Rogue = 29, - Ninja = 30, - Machinist = 31, - Darkknight = 32, - Astrologian = 33, - Samurai = 34, - Redmage = 35, - Bluemage = 36, - Gunbreaker = 37, - Dancer = 38, - // = 39, - //1 = 40, - }; +/////////////////////////////////////////////////////////// +//BeastTribe.exd +enum class BeastTribe : uint8_t +{ +}; - /////////////////////////////////////////////////////////// - //ContentType.exd - enum class ContentType : uint8_t - { - None = 0, - DutyRoulette = 1, - Dungeons = 2, - Guildhests = 3, - Trials = 4, - Raids = 5, - PvP = 6, - QuestBattles = 7, - FATEs = 8, - TreasureHunt = 9, - Levequests = 10, - GrandCompany = 11, - Companions = 12, - BeastTribeQuests = 13, - OverallCompletion = 14, - PlayerCommendation = 15, - DisciplesoftheLand = 16, - DisciplesoftheHand = 17, - RetainerVentures = 18, - GoldSaucer = 19, - //1 = 20, - DeepDungeons = 21, - //2 = 22, - //3 = 23, - WondrousTails = 24, - CustomDeliveries = 25, - Eureka = 26, - //4 = 27, - UltimateRaids = 28, - //5 = 29, - }; +/////////////////////////////////////////////////////////// +//ClassJob.exd +enum class ClassJob : uint8_t +{ + Adventurer = 0, + Gladiator = 1, + Pugilist = 2, + Marauder = 3, + Lancer = 4, + Archer = 5, + Conjurer = 6, + Thaumaturge = 7, + Carpenter = 8, + Blacksmith = 9, + Armorer = 10, + Goldsmith = 11, + Leatherworker = 12, + Weaver = 13, + Alchemist = 14, + Culinarian = 15, + Miner = 16, + Botanist = 17, + Fisher = 18, + Paladin = 19, + Monk = 20, + Warrior = 21, + Dragoon = 22, + Bard = 23, + Whitemage = 24, + Blackmage = 25, + Arcanist = 26, + Summoner = 27, + Scholar = 28, + Rogue = 29, + Ninja = 30, + Machinist = 31, + Darkknight = 32, + Astrologian = 33, + Samurai = 34, + Redmage = 35, + Bluemage = 36, + Gunbreaker = 37, + Dancer = 38, +}; - /////////////////////////////////////////////////////////// - //EmoteCategory.exd - enum class EmoteCategory : uint8_t - { - None = 0, - General = 1, - Special = 2, - Expressions = 3, - //1 = 4, - }; +/////////////////////////////////////////////////////////// +//ContentType.exd +enum class ContentType : uint8_t +{ + None = 0, + DutyRoulette = 1, + Dungeons = 2, + Guildhests = 3, + Trials = 4, + Raids = 5, + PvP = 6, + QuestBattles = 7, + FATEs = 8, + TreasureHunt = 9, + Levequests = 10, + GrandCompany = 11, + Companions = 12, + BeastTribeQuests = 13, + OverallCompletion = 14, + PlayerCommendation = 15, + DisciplesoftheLand = 16, + DisciplesoftheHand = 17, + RetainerVentures = 18, + GoldSaucer = 19, + DeepDungeons = 21, + WondrousTails = 24, + CustomDeliveries = 25, + Eureka = 26, +}; - /////////////////////////////////////////////////////////// - //ExVersion.exd - enum class ExVersion : uint8_t - { - ARealmReborn = 0, - Heavensward = 1, - Stormblood = 2, - Shadowbringers = 3, - }; +/////////////////////////////////////////////////////////// +//EmoteCategory.exd +enum class EmoteCategory : uint8_t +{ + None = 0, + General = 1, + Special = 2, + Expressions = 3, +}; - /////////////////////////////////////////////////////////// - //GrandCompany.exd - enum class GrandCompany : uint8_t - { - None = 0, - Maelstrom = 1, - OrderoftheTwinAdder = 2, - ImmortalFlames = 3, - }; +/////////////////////////////////////////////////////////// +//ExVersion.exd +enum class ExVersion : uint8_t +{ + ARealmReborn = 0, + Heavensward = 1, + Stormblood = 2, + Shadowbringers = 3, +}; - /////////////////////////////////////////////////////////// - //GuardianDeity.exd - enum class GuardianDeity : uint8_t - { - None = 0, - HalonetheFury = 1, - MenphinatheLover = 2, - ThaliaktheScholar = 3, - NymeiatheSpinner = 4, - LlymlaentheNavigator = 5, - OschontheWanderer = 6, - ByregottheBuilder = 7, - RhalgrtheDestroyer = 8, - AzeymatheWarden = 9, - NaldthaltheTraders = 10, - NophicatheMatron = 11, - AlthyktheKeeper = 12, - }; +/////////////////////////////////////////////////////////// +//GrandCompany.exd +enum class GrandCompany : uint8_t +{ + None = 0, + Maelstrom = 1, + OrderoftheTwinAdder = 2, + ImmortalFlames = 3, +}; - /////////////////////////////////////////////////////////// - //ItemUICategory.exd - enum class ItemUICategory : uint8_t - { - None = 0, - PugilistsArm = 1, - GladiatorsArm = 2, - MaraudersArm = 3, - ArchersArm = 4, - LancersArm = 5, - OnehandedThaumaturgesArm = 6, - TwohandedThaumaturgesArm = 7, - OnehandedConjurersArm = 8, - TwohandedConjurersArm = 9, - ArcanistsGrimoire = 10, - Shield = 11, - CarpentersPrimaryTool = 12, - CarpentersSecondaryTool = 13, - BlacksmithsPrimaryTool = 14, - BlacksmithsSecondaryTool = 15, - ArmorersPrimaryTool = 16, - ArmorersSecondaryTool = 17, - GoldsmithsPrimaryTool = 18, - GoldsmithsSecondaryTool = 19, - LeatherworkersPrimaryTool = 20, - LeatherworkersSecondaryTool = 21, - WeaversPrimaryTool = 22, - WeaversSecondaryTool = 23, - AlchemistsPrimaryTool = 24, - AlchemistsSecondaryTool = 25, - CulinariansPrimaryTool = 26, - CulinariansSecondaryTool = 27, - MinersPrimaryTool = 28, - MinersSecondaryTool = 29, - BotanistsPrimaryTool = 30, - BotanistsSecondaryTool = 31, - FishersPrimaryTool = 32, - FishingTackle = 33, - Head = 34, - Body = 35, - Legs = 36, - Hands = 37, - Feet = 38, - Waist = 39, - Necklace = 40, - Earrings = 41, - Bracelets = 42, - Ring = 43, - Medicine = 44, - Ingredient = 45, - Meal = 46, - Seafood = 47, - Stone = 48, - Metal = 49, - Lumber = 50, - Cloth = 51, - Leather = 52, - Bone = 53, - Reagent = 54, - Dye = 55, - Part = 56, - Furnishing = 57, - Materia = 58, - Crystal = 59, - Catalyst = 60, - Miscellany = 61, - SoulCrystal = 62, - Other = 63, - ConstructionPermit = 64, - Roof = 65, - ExteriorWall = 66, - Window = 67, - Door = 68, - RoofDecoration = 69, - ExteriorWallDecoration = 70, - Placard = 71, - Fence = 72, - InteriorWall = 73, - Flooring = 74, - CeilingLight = 75, - OutdoorFurnishing = 76, - Table = 77, - Tabletop = 78, - Wallmounted = 79, - Rug = 80, - Minion = 81, - Gardening = 82, - Demimateria = 83, - RoguesArm = 84, - SeasonalMiscellany = 85, - TripleTriadCard = 86, - DarkKnightsArm = 87, - MachinistsArm = 88, - AstrologiansArm = 89, - AirshipHull = 90, - AirshipRigging = 91, - AirshipAftcastle = 92, - AirshipForecastle = 93, - OrchestrionRoll = 94, - Painting = 95, - SamuraisArm = 96, - RedMagesArm = 97, - ScholarsArm = 98, - FishersSecondaryTool = 99, - Currency = 100, - SubmersibleHull = 101, - SubmersibleStern = 102, - SubmersibleBow = 103, - SubmersibleBridge = 104, - BlueMagesArm = 105, - GunbreakersArm = 106, - DancersArm = 107, - }; +/////////////////////////////////////////////////////////// +//GuardianDeity.exd +enum class GuardianDeity : uint8_t +{ + None = 0, + HalonetheFury = 1, + MenphinatheLover = 2, + ThaliaktheScholar = 3, + NymeiatheSpinner = 4, + LlymlaentheNavigator = 5, + OschontheWanderer = 6, + ByregottheBuilder = 7, + RhalgrtheDestroyer = 8, + AzeymatheWarden = 9, + NaldthaltheTraders = 10, + NophicatheMatron = 11, + AlthyktheKeeper = 12, +}; - /////////////////////////////////////////////////////////// - //ItemSearchCategory.exd - enum class ItemSearchCategory : uint8_t - { - None = 0, - PrimaryArms = 1, - PrimaryTools = 2, - PrimaryTools1 = 3, - Armor = 4, - Accessories = 5, - Medicines = 6, - Materials = 7, - Other = 8, - PugilistsArms = 9, - GladiatorsArms = 10, - MaraudersArms = 11, - ArchersArms = 12, - LancersArms = 13, - ThaumaturgesArms = 14, - ConjurersArms = 15, - ArcanistsArms = 16, - Shields = 17, - DancersArms = 18, - CarpentersTools = 19, - BlacksmithsTools = 20, - ArmorersTools = 21, - GoldsmithsTools = 22, - LeatherworkersTools = 23, - WeaversTools = 24, - AlchemistsTools = 25, - CulinariansTools = 26, - MinersTools = 27, - BotanistsTools = 28, - FishersTools = 29, - FishingTackle = 30, - Head = 31, - Undershirts = 32, - Body = 33, - Undergarments = 34, - Legs = 35, - Hands = 36, - Feet = 37, - Waist = 38, - Necklaces = 39, - Earrings = 40, - Bracelets = 41, - Rings = 42, - Medicine = 43, - Ingredients = 44, - Meals = 45, - Seafood = 46, - Stone = 47, - Metal = 48, - Lumber = 49, - Cloth = 50, - Leather = 51, - Bone = 52, - Reagents = 53, - Dyes = 54, - WeaponParts = 55, - Furnishings = 56, - Materia = 57, - Crystals = 58, - Catalysts = 59, - Miscellany = 60, - SoulCrystals = 61, - Arrows = 62, - QuestItems = 63, - Other1 = 64, - ExteriorFixtures = 65, - InteriorFixtures = 66, - OutdoorFurnishings = 67, - ChairsandBeds = 68, - Tables = 69, - Tabletop = 70, - Wallmounted = 71, - Rugs = 72, - RoguesArms = 73, - SeasonalMiscellany = 74, - Minions = 75, - DarkKnightsArms = 76, - MachinistsArms = 77, - AstrologiansArms = 78, - AirshipSubmersibleComponents = 79, - OrchestrionComponents = 80, - GardeningItems = 81, - Paintings = 82, - SamuraisArms = 83, - RedMagesArms = 84, - ScholarsArms = 85, - GunbreakersArms = 86, - DancersArms1 = 87, - /*1 = 88, - 2 = 89, - 3 = 90, - 4 = 91, - 5 = 92, - 6 = 93, - 7 = 94, - 8 = 95, - 9 = 96, - 10 = 97, - 11 = 98, - 12 = 99, - 13 = 100,*/ - }; +/////////////////////////////////////////////////////////// +//ItemUICategory.exd +enum class ItemUICategory : uint8_t +{ + None = 0, + PugilistsArm = 1, + GladiatorsArm = 2, + MaraudersArm = 3, + ArchersArm = 4, + LancersArm = 5, + OnehandedThaumaturgesArm = 6, + TwohandedThaumaturgesArm = 7, + OnehandedConjurersArm = 8, + TwohandedConjurersArm = 9, + ArcanistsGrimoire = 10, + Shield = 11, + CarpentersPrimaryTool = 12, + CarpentersSecondaryTool = 13, + BlacksmithsPrimaryTool = 14, + BlacksmithsSecondaryTool = 15, + ArmorersPrimaryTool = 16, + ArmorersSecondaryTool = 17, + GoldsmithsPrimaryTool = 18, + GoldsmithsSecondaryTool = 19, + LeatherworkersPrimaryTool = 20, + LeatherworkersSecondaryTool = 21, + WeaversPrimaryTool = 22, + WeaversSecondaryTool = 23, + AlchemistsPrimaryTool = 24, + AlchemistsSecondaryTool = 25, + CulinariansPrimaryTool = 26, + CulinariansSecondaryTool = 27, + MinersPrimaryTool = 28, + MinersSecondaryTool = 29, + BotanistsPrimaryTool = 30, + BotanistsSecondaryTool = 31, + FishersPrimaryTool = 32, + FishingTackle = 33, + Head = 34, + Body = 35, + Legs = 36, + Hands = 37, + Feet = 38, + Waist = 39, + Necklace = 40, + Earrings = 41, + Bracelets = 42, + Ring = 43, + Medicine = 44, + Ingredient = 45, + Meal = 46, + Seafood = 47, + Stone = 48, + Metal = 49, + Lumber = 50, + Cloth = 51, + Leather = 52, + Bone = 53, + Reagent = 54, + Dye = 55, + Part = 56, + Furnishing = 57, + Materia = 58, + Crystal = 59, + Catalyst = 60, + Miscellany = 61, + SoulCrystal = 62, + Other = 63, + ConstructionPermit = 64, + Roof = 65, + ExteriorWall = 66, + Window = 67, + Door = 68, + RoofDecoration = 69, + ExteriorWallDecoration = 70, + Placard = 71, + Fence = 72, + InteriorWall = 73, + Flooring = 74, + CeilingLight = 75, + OutdoorFurnishing = 76, + Table = 77, + Tabletop = 78, + Wallmounted = 79, + Rug = 80, + Minion = 81, + Gardening = 82, + Demimateria = 83, + RoguesArm = 84, + SeasonalMiscellany = 85, + TripleTriadCard = 86, + DarkKnightsArm = 87, + MachinistsArm = 88, + AstrologiansArm = 89, + AirshipHull = 90, + AirshipRigging = 91, + AirshipAftcastle = 92, + AirshipForecastle = 93, + OrchestrionRoll = 94, + Painting = 95, + SamuraisArm = 96, + RedMagesArm = 97, + ScholarsArm = 98, + FishersSecondaryTool = 99, + Currency = 100, + SubmersibleHull = 101, + SubmersibleStern = 102, + SubmersibleBow = 103, + SubmersibleBridge = 104, + BlueMagesArm = 105, + GunbreakersArm = 106, + DancersArm = 107, +}; - /////////////////////////////////////////////////////////// - //OnlineStatus.exd - enum class OnlineStatus : uint8_t - { - Producer = 1, - GameMaster = 2, - GameMaster1 = 3, - GameMaster2 = 4, - Disconnected = 5, - WaitingforFriendListApproval = 6, - WaitingforLinkshellApproval = 7, - WaitingforFreeCompanyApproval = 8, - NotFound = 9, - Offline = 10, - Mentor = 11, - Busy = 12, - PvP = 13, - PlayingTripleTriad = 14, - ViewingCutscene = 15, - UsingaChocoboPorter = 16, - AwayfromKeyboard = 17, - CameraMode = 18, - LookingforRepairs = 19, - LookingtoRepair = 20, - LookingtoMeldMateria = 21, - Roleplaying = 22, - LookingforParty = 23, - SwordforHire = 24, - WaitingforDutyFinder = 25, - RecruitingPartyMembers = 26, - Mentor1 = 27, - PvEMentor = 28, - TradeMentor = 29, - PvPMentor = 30, - Returner = 31, - NewAdventurer = 32, - AllianceLeader = 33, - AlliancePartyLeader = 34, - AlliancePartyMember = 35, - PartyLeader = 36, - PartyMember = 37, - PartyLeaderCrossworld = 38, - PartyMemberCrossworld = 39, - AnotherWorld = 40, - SharingDuty = 41, - SimilarDuty = 42, - InDuty = 43, - TrialAdventurer = 44, - FreeCompany = 45, - GrandCompany = 46, - Online = 47, - }; +/////////////////////////////////////////////////////////// +//ItemSearchCategory.exd +enum class ItemSearchCategory : uint8_t +{ + None = 0, + PrimaryArms = 1, + PrimaryTools = 2, + PrimaryTools1 = 3, + Armor = 4, + Accessories = 5, + Medicines = 6, + Materials = 7, + Other = 8, + PugilistsArms = 9, + GladiatorsArms = 10, + MaraudersArms = 11, + ArchersArms = 12, + LancersArms = 13, + ThaumaturgesArms = 14, + ConjurersArms = 15, + ArcanistsArms = 16, + Shields = 17, + DancersArms = 18, + CarpentersTools = 19, + BlacksmithsTools = 20, + ArmorersTools = 21, + GoldsmithsTools = 22, + LeatherworkersTools = 23, + WeaversTools = 24, + AlchemistsTools = 25, + CulinariansTools = 26, + MinersTools = 27, + BotanistsTools = 28, + FishersTools = 29, + FishingTackle = 30, + Head = 31, + Undershirts = 32, + Body = 33, + Undergarments = 34, + Legs = 35, + Hands = 36, + Feet = 37, + Waist = 38, + Necklaces = 39, + Earrings = 40, + Bracelets = 41, + Rings = 42, + Medicine = 43, + Ingredients = 44, + Meals = 45, + Seafood = 46, + Stone = 47, + Metal = 48, + Lumber = 49, + Cloth = 50, + Leather = 51, + Bone = 52, + Reagents = 53, + Dyes = 54, + WeaponParts = 55, + Furnishings = 56, + Materia = 57, + Crystals = 58, + Catalysts = 59, + Miscellany = 60, + SoulCrystals = 61, + Arrows = 62, + QuestItems = 63, + Other1 = 64, + ExteriorFixtures = 65, + InteriorFixtures = 66, + OutdoorFurnishings = 67, + ChairsandBeds = 68, + Tables = 69, + Tabletop = 70, + Wallmounted = 71, + Rugs = 72, + RoguesArms = 73, + SeasonalMiscellany = 74, + Minions = 75, + DarkKnightsArms = 76, + MachinistsArms = 77, + AstrologiansArms = 78, + AirshipSubmersibleComponents = 79, + OrchestrionComponents = 80, + GardeningItems = 81, + Paintings = 82, + SamuraisArms = 83, + RedMagesArms = 84, + ScholarsArms = 85, + GunbreakersArms = 86, + ThrowingWeapons = 87, +}; - /////////////////////////////////////////////////////////// - //Race.exd - enum class Race : uint8_t - { - None = 0, - Hyur = 1, - Elezen = 2, - Lalafell = 3, - Miqote = 4, - Roegadyn = 5, - AuRa = 6, - Hrothgar = 7, - Viera = 8, - }; +/////////////////////////////////////////////////////////// +//OnlineStatus.exd +enum class OnlineStatus : uint8_t +{ + Producer = 1, + GameMaster = 2, + GameMaster1 = 3, + GameMaster2 = 4, + Disconnected = 5, + WaitingforFriendListApproval = 6, + WaitingforLinkshellApproval = 7, + WaitingforFreeCompanyApproval = 8, + NotFound = 9, + Offline = 10, + Busy = 11, + PvP = 12, + ViewingCutscene = 13, + UsingaChocoboPorter = 14, + AwayfromKeyboard = 15, + LookingforRepairs = 16, + LookingtoRepair = 17, + LookingtoMeldMateria = 18, + LookingforParty = 19, + //Missing = 20 + WaitingforDutyFinder = 21, + RecruitingPartyMembers = 22, + AllianceLeader = 23, + AlliancePartyLeader = 24, + AlliancePartyMember = 25, + PartyLeader = 26, + PartyMember = 27, + AnotherWorld = 28, + SharingDuty = 29, + SimilarDuty = 30, + InDuty = 31, + TrialAdventurer = 32, + NewAdventurer = 33, + FreeCompany = 34, + GrandCompany = 35, + Online = 36, +}; - /////////////////////////////////////////////////////////// - //Tribe.exd - enum class Tribe : uint8_t - { - None = 0, - Midlander = 1, - Highlander = 2, - Wildwood = 3, - Duskwight = 4, - Plainsfolk = 5, - Dunesfolk = 6, - SeekeroftheSun = 7, - KeeperoftheMoon = 8, - SeaWolf = 9, - Hellsguard = 10, - Raen = 11, - Xaela = 12, - Helions = 13, - TheLost = 14, - Rava = 15, - Veena = 16, - }; +/////////////////////////////////////////////////////////// +//Race.exd +enum class Race : uint8_t +{ + None = 0, + Hyur = 1, + Elezen = 2, + Lalafell = 3, + Miqote = 4, + Roegadyn = 5, + AuRa = 6, + Hrothgar = 7, + Viera = 8, +}; - /////////////////////////////////////////////////////////// - //Town.exd - enum class Town : uint8_t - { - Nowheresville = 0, - LimsaLominsa = 1, - Gridania = 2, - Uldah = 3, - Ishgard = 4, - // = 5, - //1 = 6, - Kugane = 7, - //2 = 8, - //3 = 9, - Crystarium = 10, - //4 = 11, - }; +/////////////////////////////////////////////////////////// +//Tribe.exd +enum class Tribe : uint8_t +{ + None = 0, + Midlander = 1, + Highlander = 2, + Wildwood = 3, + Duskwight = 4, + Plainsfolk = 5, + Dunesfolk = 6, + SeekeroftheSun = 7, + KeeperoftheMoon = 8, + SeaWolf = 9, + Hellsguard = 10, + Raen = 11, + Xaela = 12, + Helions = 13, + TheLost = 14, + Rava = 15, + Veena = 16, +}; - /////////////////////////////////////////////////////////// - //Weather.exd - enum class Weather : uint8_t - { - None = 0, - ClearSkies = 1, - FairSkies = 2, - Clouds = 3, - Fog = 4, - Wind = 5, - Gales = 6, - Rain = 7, - Showers = 8, - Thunder = 9, - Thunderstorms = 10, - DustStorms = 11, - Sandstorms = 12, - HotSpells = 13, - HeatWaves = 14, - Snow = 15, - Blizzards = 16, - Gloom = 17, - Auroras = 18, - Darkness = 19, - Tension = 20, - Clouds1 = 21, - StormClouds = 22, - RoughSeas = 23, - RoughSeas1 = 24, - Louring = 25, - HeatWaves1 = 26, - Gloom1 = 27, - Gales1 = 28, - Eruptions = 29, - FairSkies1 = 30, - FairSkies2 = 31, - FairSkies3 = 32, - FairSkies4 = 33, - FairSkies5 = 34, - Irradiance = 35, - CoreRadiation = 36, - CoreRadiation1 = 37, - CoreRadiation2 = 38, - CoreRadiation3 = 39, - ShelfClouds = 40, - ShelfClouds1 = 41, - ShelfClouds2 = 42, - ShelfClouds3 = 43, - Oppression = 44, - Oppression1 = 45, - Oppression2 = 46, - Oppression3 = 47, - Oppression4 = 48, - UmbralWind = 49, - UmbralStatic = 50, - Smoke = 51, - FairSkies6 = 52, - RoyalLevin = 53, - Hyperelectricity = 54, - RoyalLevin1 = 55, - Oppression5 = 56, - Thunder1 = 57, - Thunder2 = 58, - CutScene = 59, - Multiplicity = 60, - Multiplicity1 = 61, - Rain1 = 62, - FairSkies7 = 63, - Rain2 = 64, - FairSkies8 = 65, - Dragonstorms = 66, - Dragonstorms1 = 67, - Subterrain = 68, - Concordance = 69, - Concordance1 = 70, - BeyondTime = 71, - BeyondTime1 = 72, - BeyondTime2 = 73, - DemonicInfinity = 74, - DemonicInfinity1 = 75, - DemonicInfinity2 = 76, - DimensionalDisruption = 77, - DimensionalDisruption1 = 78, - DimensionalDisruption2 = 79, - Revelstorms = 80, - Revelstorms1 = 81, - EternalBliss = 82, - EternalBliss1 = 83, - Wyrmstorms = 84, - Wyrmstorms1 = 85, - Revelstorms2 = 86, - Quicklevin = 87, - Thunder3 = 88, - DimensionalDisruption3 = 89, - FairSkies9 = 90, - ClearSkies1 = 91, - WhiteCyclones = 92, - WhiteCyclones1 = 93, - WhiteCyclones2 = 94, - Ultimania = 95, - WhiteCyclones3 = 96, - Moonlight = 97, - Moonlight1 = 98, - Moonlight2 = 99, - Moonlight3 = 100, - RedMoon = 101, - Scarlet = 102, - Scarlet1 = 103, - Scarlet2 = 104, - FairSkies10 = 105, - FairSkies11 = 106, - FairSkies12 = 107, - FairSkies13 = 108, - Flames = 109, - Tsunamis = 110, - Cyclones = 111, - Geostorms = 112, - TrueBlue = 113, - TrueBlue1 = 114, - TrueBlue2 = 115, - UmbralTurbulence = 116, - TrueBlue3 = 117, - EverlastingLight = 118, - Gales2 = 119, - Termination = 120, - Termination1 = 121, - Dreams = 122, - Dreams1 = 123, - Dreams2 = 124, - Brilliance = 125, - Brilliance1 = 126, - Termination2 = 127, - Termination3 = 128, - EverlastingLight1 = 129, - Eruptions1 = 130, - Termination4 = 131, - FairSkies14 = 132, - UmbralFlare = 133, - UmbralDuststorm = 134, - UmbralLevin = 135, - UmbralTempest = 136, - Starshower = 137, - Delirium = 138, - Clouds2 = 139, - Clouds3 = 140, - Irradiance1 = 141, - Irradiance2 = 142, - StormClouds1 = 143, - Firestorm = 144, - SpectralCurrent = 145, - //1 = 146, - Climactic = 147, - //2 = 148, - //3 = 149, - //4 = 150, - //5 = 151, - //6 = 152, - //7 = 153, - }; +/////////////////////////////////////////////////////////// +//Town.exd +enum class Town : uint8_t +{ + Nowheresville = 0, + LimsaLominsa = 1, + Gridania = 2, + Uldah = 3, + Ishgard = 4, + Kugane = 7, + TheCrystarium = 10, +}; + +/////////////////////////////////////////////////////////// +//Weather.exd +enum class Weather : uint8_t +{ + None = 0, + ClearSkies = 1, + FairSkies = 2, + Clouds = 3, + Fog = 4, + Wind = 5, + Gales = 6, + Rain = 7, + Showers = 8, + Thunder = 9, + Thunderstorms = 10, + DustStorms = 11, + Sandstorms = 12, + HotSpells = 13, + HeatWaves = 14, + Snow = 15, + Blizzards = 16, + Gloom = 17, + Auroras = 18, + Darkness = 19, + Tension = 20, + Clouds1 = 21, + StormClouds = 22, + RoughSeas = 23, + RoughSeas1 = 24, + Louring = 25, + HeatWaves1 = 26, + Gloom1 = 27, + Gales1 = 28, + Eruptions = 29, + FairSkies1 = 30, + FairSkies2 = 31, + FairSkies3 = 32, + FairSkies4 = 33, + FairSkies5 = 34, + Irradiance = 35, + CoreRadiation = 36, + CoreRadiation1 = 37, + CoreRadiation2 = 38, + CoreRadiation3 = 39, + ShelfClouds = 40, + ShelfClouds1 = 41, + ShelfClouds2 = 42, + ShelfClouds3 = 43, + Oppression = 44, + Oppression1 = 45, + Oppression2 = 46, + Oppression3 = 47, + Oppression4 = 48, + UmbralWind = 49, + UmbralStatic = 50, + Smoke = 51, + FairSkies6 = 52, + RoyalLevin = 53, + Hyperelectricity = 54, + RoyalLevin1 = 55, + Oppression5 = 56, + Thunder1 = 57, + Thunder2 = 58, + CutScene = 59, + Multiplicity = 60, + Multiplicity1 = 61, + Rain1 = 62, + FairSkies7 = 63, + Rain2 = 64, + FairSkies8 = 65, + Dragonstorms = 66, + Dragonstorms1 = 67, + Subterrain = 68, + Concordance = 69, + Concordance1 = 70, + BeyondTime = 71, + BeyondTime1 = 72, + BeyondTime2 = 73, + DemonicInfinity = 74, + DemonicInfinity1 = 75, + DemonicInfinity2 = 76, + DimensionalDisruption = 77, + DimensionalDisruption1 = 78, + DimensionalDisruption2 = 79, + Revelstorms = 80, + Revelstorms1 = 81, + EternalBliss = 82, + EternalBliss1 = 83, + Wyrmstorms = 84, + Wyrmstorms1 = 85, + Revelstorms2 = 86, + Quicklevin = 87, + Thunder3 = 88, + DimensionalDisruption3 = 89, + FairSkies9 = 90, + ClearSkies1 = 91, + WhiteCyclones = 92, + WhiteCyclones1 = 93, + WhiteCyclones2 = 94, + Ultimania = 95, + WhiteCyclones3 = 96, + Moonlight = 97, + Moonlight1 = 98, + Moonlight2 = 99, + Moonlight3 = 100, + FairSkies10 = 101, + Scarlet = 102, + Scarlet1 = 103, + Scarlet2 = 104, + FairSkies11 = 105, + FairSkies12 = 106, + FairSkies13 = 107, + FairSkies14 = 108, + Flames = 109, + Tsunamis = 110, + Cyclones = 111, + Geostorms = 112, + TrueBlue = 113, + TrueBlue1 = 114, + TrueBlue2 = 115, + UmbralTurbulence = 116, + TrueBlue3 = 117, + EverlastingLight = 118, + Gales2 = 119, + Termination = 120, + Termination1 = 121, + Dreams = 122, + Dreams1 = 123, + Dreams2 = 124, + Brilliance = 125, + Brilliance1 = 126, + Termination2 = 127, + Termination3 = 128, + EverlastingLight1 = 129, + Termination4 = 131, +}; + +/////////////////////////////////////////////////////////// +//HousingAppeal.exd +enum class HousingAppeal : uint8_t +{ + None = 0, + Emporium = 1, + Boutique = 2, + DesignerHome = 3, + MessageBook = 4, + Tavern = 5, + Eatery = 6, + ImmersiveExperience = 7, + Cafe = 8, + Aquarium = 9, + Sanctum = 10, + Venue = 11, + Florist = 12, + Library = 14, + PhotoStudio = 15, + HauntedHouse = 16, + Atelier = 17, + Bathhouse = 18, + Garden = 19, + FarEastern = 20, +}; - /////////////////////////////////////////////////////////// - //HousingAppeal.exd - enum class HousingAppeal : uint8_t - { - None = 0, - Emporium = 1, - Boutique = 2, - DesignerHome = 3, - MessageBook = 4, - Tavern = 5, - Eatery = 6, - ImmersiveExperience = 7, - Cafe = 8, - Aquarium = 9, - Sanctum = 10, - Venue = 11, - Florist = 12, - // = 13, - Library = 14, - PhotoStudio = 15, - HauntedHouse = 16, - Atelier = 17, - Bathhouse = 18, - Garden = 19, - FarEastern = 20, - VisitorsWelcome = 21, - Bakery = 22, - UnderRenovation = 23, - ConcertHall = 24, - }; } -#endif \ No newline at end of file +#endif + diff --git a/src/common/Config/ConfigDef.h b/src/common/Config/ConfigDef.h index de149074..0dc54de7 100644 --- a/src/common/Config/ConfigDef.h +++ b/src/common/Config/ConfigDef.h @@ -1,5 +1,4 @@ -#ifndef SAPPHIRE_CONFIGDEF_H -#define SAPPHIRE_CONFIGDEF_H +#pragma once #include @@ -92,5 +91,3 @@ namespace Sapphire::Common::Config } network; }; } - -#endif //SAPPHIRE_CONFIGDEF_H diff --git a/src/common/Config/ConfigMgr.cpp b/src/common/Config/ConfigMgr.cpp index e581a37c..de3b7855 100644 --- a/src/common/Config/ConfigMgr.cpp +++ b/src/common/Config/ConfigMgr.cpp @@ -1,8 +1,14 @@ #include "ConfigMgr.h" #include -#include +#include +#if _MSC_VER >= 1925 +#include namespace fs = std::filesystem; +#else +#include +namespace fs = std::experimental::filesystem; +#endif using namespace Sapphire; using namespace Sapphire::Common; diff --git a/src/common/Config/ConfigMgr.h b/src/common/Config/ConfigMgr.h index b78da899..776a4268 100644 --- a/src/common/Config/ConfigMgr.h +++ b/src/common/Config/ConfigMgr.h @@ -1,5 +1,4 @@ -#ifndef SAPPHIRE_CONFIGMGR_H -#define SAPPHIRE_CONFIGMGR_H +#pragma once #include #include @@ -25,23 +24,23 @@ namespace Sapphire::Common T getValue( const std::string& section, const std::string& name, T defaultValue = T() ) { if constexpr ( std::is_same_v< T, uint32_t > ) - return m_pInih->GetInteger( section, name, defaultValue ); + return m_pInih->GetInteger( section, name, static_cast< long >( defaultValue ) ); else if constexpr ( std::is_same_v< T, int32_t > ) - return m_pInih->GetInteger( section, name, defaultValue ); + return m_pInih->GetInteger( section, name, static_cast< long >( defaultValue ) ); else if constexpr ( std::is_same_v< T, uint16_t > ) - return m_pInih->GetInteger( section, name, defaultValue ); + return static_cast< T >( m_pInih->GetInteger( section, name, static_cast< long >( defaultValue ) ) ); else if constexpr ( std::is_same_v< T, int16_t > ) - return m_pInih->GetInteger( section, name, defaultValue ); + return static_cast< T >( m_pInih->GetInteger( section, name, static_cast< long >( defaultValue ) ) ); else if constexpr ( std::is_same_v< T, uint8_t > ) - return m_pInih->GetInteger( section, name, defaultValue ); + return static_cast< T >( m_pInih->GetInteger( section, name, static_cast< long >( defaultValue ) ) ); else if constexpr ( std::is_same_v< T, int8_t > ) - return m_pInih->GetInteger( section, name, defaultValue ); + return static_cast< T >( m_pInih->GetInteger( section, name, static_cast< long >( defaultValue ) ) ); else if constexpr ( std::is_same_v< T, long > ) - return m_pInih->GetInteger( section, name, defaultValue ); + return static_cast< T >( m_pInih->GetInteger( section, name, static_cast< long >( defaultValue ) ) ); else if constexpr ( std::is_same_v< T, double > ) return m_pInih->GetReal( section, name, defaultValue ); else if constexpr ( std::is_same_v< T, float > ) - return m_pInih->GetReal( section, name, defaultValue ); + return static_cast< T >( m_pInih->GetReal( section, name, static_cast< double >( defaultValue ) ) ); else if constexpr ( std::is_same_v< T, std::string > ) return m_pInih->Get( section, name, defaultValue ); else if constexpr ( std::is_same_v< T, bool > ) @@ -66,6 +65,4 @@ namespace Sapphire::Common const std::string m_configFolderRoot = "./config/"; const std::string m_configDefaultSuffix = ".default"; }; -} - -#endif //SAPPHIRE_CONFIGMGR_H +} \ No newline at end of file diff --git a/src/common/Crypt/base64.cpp b/src/common/Crypt/base64.cpp index 7d513c47..04203a88 100644 --- a/src/common/Crypt/base64.cpp +++ b/src/common/Crypt/base64.cpp @@ -89,7 +89,7 @@ std::string Sapphire::Common::Util::base64Encode( uint8_t const* bytes_to_encode std::string Sapphire::Common::Util::base64Decode( std::string const& encoded_string ) { - int32_t in_len = encoded_string.size(); + auto in_len = static_cast< int32_t >( encoded_string.size() ); int32_t i = 0; int32_t j = 0; int32_t in_ = 0; diff --git a/src/common/Crypt/base64.h b/src/common/Crypt/base64.h index 9b5d9eff..a627067e 100644 --- a/src/common/Crypt/base64.h +++ b/src/common/Crypt/base64.h @@ -1,3 +1,5 @@ +#pragma once + #include namespace Sapphire::Common::Util diff --git a/src/common/Crypt/blowfish.h b/src/common/Crypt/blowfish.h index 3623a1ee..4f564c4b 100644 --- a/src/common/Crypt/blowfish.h +++ b/src/common/Crypt/blowfish.h @@ -1,5 +1,5 @@ -#ifndef _BLOWFISH_H -#define _BLOWFISH_H +#pragma once + // blowfish.h interface file for blowfish.cpp // _THE BLOWFISH ENCRYPTION ALGORITHM_ // by Bruce Schneier @@ -80,5 +80,4 @@ union aword { uint32_t byte2:8; } w; }; -#endif #endif \ No newline at end of file diff --git a/src/common/Crypt/md5.h b/src/common/Crypt/md5.h index f27dd5a9..6e223bcb 100644 --- a/src/common/Crypt/md5.h +++ b/src/common/Crypt/md5.h @@ -1,5 +1,4 @@ -#ifndef _MD52_H -#define _MD52_H +#pragma once #include @@ -45,6 +44,3 @@ namespace Sapphire::Common::Util } - - -#endif /* md5.h */ diff --git a/src/common/Database/DatabaseDef.h b/src/common/Database/DatabaseDef.h index 02b9d906..ded329b5 100644 --- a/src/common/Database/DatabaseDef.h +++ b/src/common/Database/DatabaseDef.h @@ -1,5 +1,4 @@ -#ifndef _DATABASEDEF_H -#define _DATABASEDEF_H +#pragma once #include #include "Database/DbLoader.h" @@ -9,4 +8,3 @@ extern Sapphire::Db::DbWorkerPool< Sapphire::Db::ZoneDbConnection > g_charaDb; -#endif diff --git a/src/common/Database/DbCommon.h b/src/common/Database/DbCommon.h index d702ce72..5a0f456e 100644 --- a/src/common/Database/DbCommon.h +++ b/src/common/Database/DbCommon.h @@ -1,5 +1,4 @@ -#ifndef SAPPHIRE_DBCOMMON_H -#define SAPPHIRE_DBCOMMON_H +#pragma once #include @@ -17,4 +16,3 @@ namespace Sapphire::Db }; } -#endif //SAPPHIRE_DBCOMMON_H diff --git a/src/common/Database/DbConnection.h b/src/common/Database/DbConnection.h index fc84b74f..2e074f77 100644 --- a/src/common/Database/DbConnection.h +++ b/src/common/Database/DbConnection.h @@ -1,5 +1,4 @@ -#ifndef _SAPPHIRE_DBCONNECTION_H -#define _SAPPHIRE_DBCONNECTION_H +#pragma once #include #include @@ -106,4 +105,3 @@ namespace Sapphire::Db } -#endif diff --git a/src/common/Database/DbLoader.h b/src/common/Database/DbLoader.h index d37cb964..bfc7ac60 100644 --- a/src/common/Database/DbLoader.h +++ b/src/common/Database/DbLoader.h @@ -1,5 +1,4 @@ -#ifndef SAPPHIRE_DBLOADER_H -#define SAPPHIRE_DBLOADER_H +#pragma once #include #include @@ -47,4 +46,3 @@ namespace Sapphire::Db }; } -#endif //SAPPHIRE_DBLOADER_H diff --git a/src/common/Database/DbWorker.h b/src/common/Database/DbWorker.h index 655ef13f..206dbcc1 100644 --- a/src/common/Database/DbWorker.h +++ b/src/common/Database/DbWorker.h @@ -1,5 +1,4 @@ -#ifndef SAPPHIRE_DBWORKER_H -#define SAPPHIRE_DBWORKER_H +#pragma once #include #include @@ -34,4 +33,3 @@ namespace Sapphire::Db }; } -#endif //SAPPHIRE_DBWORKER_H diff --git a/src/common/Database/DbWorkerPool.cpp b/src/common/Database/DbWorkerPool.cpp index 09a24bfb..5a1b5e31 100644 --- a/src/common/Database/DbWorkerPool.cpp +++ b/src/common/Database/DbWorkerPool.cpp @@ -185,13 +185,13 @@ uint32_t Sapphire::Db::DbWorkerPool< T >::openConnections( InternalIndex type, u } template< class T > -unsigned long Sapphire::Db::DbWorkerPool< T >::escapeString( char* to, const char* from, unsigned long length ) +unsigned long Sapphire::Db::DbWorkerPool< T >::escapeString( char* to, const char* from, size_t length ) { if( !to || !from || !length ) return 0; return mysql_real_escape_string( - m_connections[ IDX_SYNCH ].front()->getConnection()->getRawCon(), to, from, length ); + m_connections[ IDX_SYNCH ].front()->getConnection()->getRawCon(), to, from, static_cast< unsigned long >( length ) ); } template< class T > diff --git a/src/common/Database/DbWorkerPool.h b/src/common/Database/DbWorkerPool.h index bbc02e46..a761db4d 100644 --- a/src/common/Database/DbWorkerPool.h +++ b/src/common/Database/DbWorkerPool.h @@ -1,5 +1,4 @@ -#ifndef SAPPHIRE_DBWORKERPOOL_H -#define SAPPHIRE_DBWORKERPOOL_H +#pragma once #include #include @@ -75,7 +74,7 @@ namespace Sapphire::Db private: uint32_t openConnections( InternalIndex type, uint8_t numConnections ); - unsigned long escapeString( char* to, const char* from, unsigned long length ); + unsigned long escapeString( char* to, const char* from, size_t length ); void enqueue( std::shared_ptr< Operation > op ); @@ -92,4 +91,3 @@ namespace Sapphire::Db } -#endif //SAPPHIRE_DBWORKERPOOL_H diff --git a/src/common/Database/Operation.h b/src/common/Database/Operation.h index e2a74586..8f8db797 100644 --- a/src/common/Database/Operation.h +++ b/src/common/Database/Operation.h @@ -1,5 +1,4 @@ -#ifndef SAPPHIRE_OPERATION_H -#define SAPPHIRE_OPERATION_H +#pragma once namespace Mysql { @@ -46,4 +45,3 @@ namespace Sapphire::Db }; } -#endif //SAPPHIRE_OPERATION_H diff --git a/src/common/Database/PreparedStatement.cpp b/src/common/Database/PreparedStatement.cpp index c01c2a0d..a8572cda 100644 --- a/src/common/Database/PreparedStatement.cpp +++ b/src/common/Database/PreparedStatement.cpp @@ -155,3 +155,45 @@ void Sapphire::Db::PreparedStatement::setMysqlPS( std::shared_ptr< Mysql::Prepar { m_stmt = pStmt; } + +template<> +void Sapphire::Db::PreparedStatement::set( uint8_t index, bool value ) +{ + setBool( index, value ); +} + +template<> +void Sapphire::Db::PreparedStatement::set( uint8_t index, uint32_t value ) +{ + setUInt( index, value ); +} + +template<> +void Sapphire::Db::PreparedStatement::set( uint8_t index, uint64_t value ) +{ + setUInt64( index, value ); +} + +template<> +void Sapphire::Db::PreparedStatement::set( uint8_t index, int32_t value ) +{ + setInt( index, value ); +} + +template<> +void Sapphire::Db::PreparedStatement::set( uint8_t index, int64_t value ) +{ + setInt64( index, value ); +} + +template<> +void Sapphire::Db::PreparedStatement::set( uint8_t index, const std::string& value ) +{ + setString( index, value ); +} + +template<> +void Sapphire::Db::PreparedStatement::set( uint8_t index, const std::vector< uint8_t >& value ) +{ + setBinary( index, value ); +} \ No newline at end of file diff --git a/src/common/Database/PreparedStatement.h b/src/common/Database/PreparedStatement.h index d62c9b9c..259e0db0 100644 --- a/src/common/Database/PreparedStatement.h +++ b/src/common/Database/PreparedStatement.h @@ -1,5 +1,4 @@ -#ifndef SAPPHIRE_PREPAREDSTATEMENT_H -#define SAPPHIRE_PREPAREDSTATEMENT_H +#pragma once #include #include @@ -51,6 +50,9 @@ namespace Sapphire::Db ~PreparedStatement(); + template< typename T > + void set( uint8_t index, T value ); + void setBool( uint8_t index, bool value ); void setUInt( uint8_t index, uint32_t value ); @@ -85,6 +87,3 @@ namespace Sapphire::Db PreparedStatement& operator=( PreparedStatement const& right ) = delete; }; } - - -#endif //SAPPHIRE_PREPAREDSTATEMENT_H diff --git a/src/common/Database/StatementTask.h b/src/common/Database/StatementTask.h index 79d56673..b09bb425 100644 --- a/src/common/Database/StatementTask.h +++ b/src/common/Database/StatementTask.h @@ -1,5 +1,4 @@ -#ifndef SAPPHIRE_STATEMENTTASK_H -#define SAPPHIRE_STATEMENTTASK_H +#pragma once #include #include "Operation.h" @@ -39,7 +38,4 @@ namespace Sapphire::Db bool m_hasResult; }; -} - - -#endif //SAPPHIRE_STATEMENTTASK_H +} \ No newline at end of file diff --git a/src/common/Database/ZoneDbConnection.cpp b/src/common/Database/ZoneDbConnection.cpp index a6ecb50c..982c59c8 100644 --- a/src/common/Database/ZoneDbConnection.cpp +++ b/src/common/Database/ZoneDbConnection.cpp @@ -23,7 +23,7 @@ void Sapphire::Db::ZoneDbConnection::doPrepareStatements() /// CHARA prepareStatement( CHARA_SEL, - "SELECT ContentId, Name, Hp, Mp, Tp, Gp, Mode, Mount, InvincibleGM, Voice, " + "SELECT EntityId, Name, Hp, Mp, Tp, Gp, Mode, Mount, InvincibleGM, Voice, " "Customize, ModelMainWeapon, ModelSubWeapon, ModelSystemWeapon, " "ModelEquip, EmoteModeType, FirstLoginTime, Language, IsNewGame, " "IsNewAdventurer, TerritoryType, TerritoryId, PosX, PosY, PosZ, PosR, " @@ -55,12 +55,12 @@ void Sapphire::Db::ZoneDbConnection::doPrepareStatements() prepareStatement( CHARA_SEL_MINIMAL, "SELECT Name, Customize, ModelMainWeapon, ModelSubWeapon, ModelEquip, TerritoryType, GuardianDeity, " - "Class, ContentId, BirthDay, BirthMonth, EquipDisplayFlags " + "Class, EntityId, BirthDay, BirthMonth, EquipDisplayFlags " "FROM charainfo WHERE CharacterId = ?;", CONNECTION_SYNC ); prepareStatement( CHARA_INS, - "INSERT INTO charainfo (AccountId, CharacterId, ContentId, Name, Hp, Mp, " + "INSERT INTO charainfo (AccountId, CharacterId, EntityId, Name, Hp, Mp, " "Customize, Voice, IsNewGame, TerritoryType, PosX, PosY, PosZ, PosR, ModelEquip, " "IsNewAdventurer, GuardianDeity, Birthday, BirthMonth, Class, Status, FirstClass, " "HomePoint, StartTown, Discovery, HowTo, QuestCompleteFlags, Unlocks, QuestTracking, " @@ -220,24 +220,39 @@ void Sapphire::Db::ZoneDbConnection::doPrepareStatements() "WHERE CharacterId = ?;", CONNECTION_SYNC ); - /// ZONE QUERIES - prepareStatement( ZONE_SEL_BNPCTEMPLATES, - "SELECT Id, Name, bNPCBaseId, bNPCNameId, mainWeaponModel, " - "secWeaponModel, aggressionMode, enemyType, pose, " - "modelChara, displayFlags, Look, Models " - "FROM bnpctemplate WHERE 1;", - CONNECTION_BOTH ); + /// CHARA FRIENDLIST + prepareStatement( CHARA_FRIENDLIST_INS, + "INSERT INTO charainfofriendlist ( CharacterId, CharacterIdList, InviteDataList, UPDATE_DATE ) " + " VALUES ( ?, ?, ?, NOW() );", + CONNECTION_SYNC ); - prepareStatement( ZONE_SEL_SPAWNGROUPS, - "SELECT id, bNpcTemplateId, level, maxHp " - "FROM spawngroup " - "WHERE territoryTypeId = ?", - CONNECTION_BOTH ); - - prepareStatement( ZONE_SEL_SPAWNPOINTS, - "SELECT id, x, y, z, r, gimmickId " - "FROM spawnpoint " - "WHERE spawnGroupId = ?", + prepareStatement( CHARA_FRIENDLIST_UP, "UPDATE charainfofriendlist " + " SET CharacterIdList = ?," + " InviteDataList = ?" + " WHERE CharacterId = ?;", + CONNECTION_ASYNC ); + + prepareStatement( CHARA_FRIENDLIST_SEL, "SELECT CharacterIdList, InviteDataList FROM charainfofriendlist " + "WHERE CharacterId = ?;", + CONNECTION_SYNC ); + + /// CHARA LINKSHELL + prepareStatement( CHARA_LINKSHELL_INS, + "INSERT INTO infolinkshell ( LinkshellId, MasterCharacterId, CharacterIdList, " + "LinkshellName, LeaderIdList, InviteIdList, UPDATE_DATE ) " + " VALUES ( ?, ?, ?, ?, ?, ?, NOW() );", + CONNECTION_SYNC ); + + /// ZONE QUERIES + prepareStatement( ZONE_SEL_BNPCS_BY_TERI, + "SELECT bnpcgroup.territoryTypeId, bnpc.TerritoryName, bnpc.name, bnpc.instanceId, bnpc.x, bnpc.y, bnpc.z, bnpc.BaseId, bnpc.PopWeather, " + "bnpc.PopTimeStart, bnpc.PopTimeEnd, bnpc.MoveAI, bnpc.WanderingRange, bnpc.Route, bnpc.EventGroup, bnpc.NameId, bnpc.DropItem, " + "bnpc.SenseRangeRate, bnpc.Level, bnpc.ActiveType, bnpc.PopInterval, bnpc.PopRate, bnpc.PopEvent, bnpc.LinkGroup, bnpc.LinkFamily, bnpc.LinkRange," + "bnpc.LinkCountLimit, bnpc.NonpopInitZone, bnpc.InvalidRepop, bnpc.LinkParent, bnpc.LinkOverride, bnpc.LinkReply, bnpc.HorizontalPopRange, " + "bnpc.VerticalPopRange, bnpc.BNpcBaseData, bnpc.RepopId, bnpc.BNPCRankId, bnpc.TerritoryRange, bnpc.BoundInstanceID, bnpc.FateLayoutLabelId," + "bnpc.NormalAI, bnpc.ServerPathId, bnpc.EquipmentID, bnpc.CustomizeID, bnpc.rotation " + "FROM battlenpc as bnpc LEFT JOIN battlenpcgroupmapping AS bnpcgroup " + "ON bnpc.groupid = bnpcgroup.layergroupid where bnpcgroup.territorytypeid = ?;", CONNECTION_BOTH ); prepareStatement( CHARA_ITEMGLOBAL_UP, diff --git a/src/common/Database/ZoneDbConnection.h b/src/common/Database/ZoneDbConnection.h index 8c74bf19..361a1840 100644 --- a/src/common/Database/ZoneDbConnection.h +++ b/src/common/Database/ZoneDbConnection.h @@ -1,5 +1,4 @@ -#ifndef SAPPHIRE_CHARACONNECTION_H -#define SAPPHIRE_CHARACONNECTION_H +#pragma once #include "DbConnection.h" @@ -81,9 +80,14 @@ namespace Sapphire::Db CHARA_MONSTERNOTE_UP, CHARA_MONSTERNOTE_SEL, - ZONE_SEL_BNPCTEMPLATES, - ZONE_SEL_SPAWNGROUPS, - ZONE_SEL_SPAWNPOINTS, + CHARA_FRIENDLIST_INS, + CHARA_FRIENDLIST_UP, + CHARA_FRIENDLIST_SEL, + + CHARA_LINKSHELL_INS, + + ZONE_SEL_BNPCS, + ZONE_SEL_BNPCS_BY_TERI, LAND_INS, LAND_SEL, @@ -121,5 +125,3 @@ namespace Sapphire::Db }; } - -#endif //SAPPHIRE_CHARACONNECTION_H diff --git a/src/common/Exd/ExdData.cpp b/src/common/Exd/ExdData.cpp new file mode 100644 index 00000000..9e090e4c --- /dev/null +++ b/src/common/Exd/ExdData.cpp @@ -0,0 +1,23 @@ +#include "ExdData.h" + +using namespace Sapphire; + +bool Data::ExdData::init( const std::string& path ) +{ + m_data = std::make_shared< xiv::dat::GameData >( path ); + + if( !m_data ) + { + return false; + } + + m_exd_data = std::make_shared< xiv::exd::ExdData >( *m_data ); + + if( !m_exd_data ) + { + return false; + } + + return true; +} + diff --git a/src/common/Exd/ExdData.h b/src/common/Exd/ExdData.h new file mode 100644 index 00000000..d8d3b6f6 --- /dev/null +++ b/src/common/Exd/ExdData.h @@ -0,0 +1,141 @@ +#pragma once + +#include +#include +#include +#include +#include + +#include + +#if !_WIN32 +# include +#endif + +#include +#include +#include +#include +#include + +#include + +namespace Sapphire::Data +{ + + class ExdData + { + public: + bool init( const std::string& path ); + + template< typename T > + std::shared_ptr< Component::Excel::ExcelStruct< T > > getRow( uint32_t row, uint32_t subrow = 0 ) + { + xiv::exd::Exd sheet; + auto needle = m_sheets.find( typeid( T ) ); + if( needle == m_sheets.end() ) + { + auto sheetName = getSheetName< T >(); + + // load sheet + auto& cat = m_exd_data->get_category( sheetName ); + m_sheets[ typeid( T ) ] = sheet = static_cast< xiv::exd::Exd >( cat.get_data( xiv::exd::Language::en ) ); + } + else + { + sheet = needle->second; + } + + try + { + return sheet.get_row< T >( row ); + } + catch( const std::runtime_error& ex ) + { + Logger::error( "Error fetching row from sheet {}: {}", getSheetName< T >(), ex.what() ); + + return nullptr; + } + catch( const std::out_of_range& ) + { + return nullptr; + } + } + + template< typename T > + std::vector< uint32_t > getIdList() + { + xiv::exd::Exd sheet; + auto needle = m_sheets.find( typeid( T ) ); + if( needle == m_sheets.end() ) + { + auto sheetName = getSheetName< T >(); + + // load sheet + auto& cat = m_exd_data->get_category( sheetName ); + m_sheets[ typeid( T ) ] = sheet = static_cast< xiv::exd::Exd >( cat.get_data( xiv::exd::Language::en ) ); + } + else + { + sheet = needle->second; + } + + auto rows = sheet.get_rows(); + std::vector< uint32_t > ids; + + for( const auto& row : rows ) + { + ids.push_back( row.first ); + } + + return ids; + } + + std::shared_ptr< xiv::dat::GameData > getGameData() + { + return m_data; + } + + private: + template< typename T > + std::string getSheetName() + { + auto origName = std::string( typeid( T ).name() ); +#if _WIN32 + auto pos = origName.find_last_of(':'); + if (pos != std::string::npos) + { + return origName.substr(pos + 1); + } + + return "[something fucking died]"; +#else + + int status = -4; + + auto res = abi::__cxa_demangle( origName.c_str(), NULL, NULL, &status ); + + auto name = ( status == 0 ) ? res : origName; + + std::string demangledName( name ); + + auto pos = demangledName.find_last_of( ':' ); + if( pos != std::string::npos ) + { + demangledName = demangledName.substr( pos + 1 ); + } + + free( res ); + + return demangledName; +#endif + } + + std::unordered_map< std::type_index, xiv::exd::Exd > m_sheets; + + std::shared_ptr< xiv::dat::GameData > m_data; + std::shared_ptr< xiv::exd::ExdData > m_exd_data; + }; + +} + diff --git a/src/common/Exd/ExdDataGenerated.cpp b/src/common/Exd/ExdDataGenerated.cpp deleted file mode 100644 index 201cc540..00000000 --- a/src/common/Exd/ExdDataGenerated.cpp +++ /dev/null @@ -1,13721 +0,0 @@ -#include "ExdDataGenerated.h" -#include - -Sapphire::Data::Achievement::Achievement( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AchievementDat.get_row( row_id ); - achievementCategory = exdData->getField< uint8_t >( row, 0 ); - name = exdData->getField< std::string >( row, 1 ); - description = exdData->getField< std::string >( row, 2 ); - achievementTarget = exdData->getField< uint8_t >( row, 3 ); - points = exdData->getField< uint8_t >( row, 5 ); - title = exdData->getField< uint16_t >( row, 6 ); - item = exdData->getField< uint32_t >( row, 7 ); - icon = exdData->getField< uint16_t >( row, 11 ); - type = exdData->getField< uint8_t >( row, 13 ); - key = exdData->getField< int32_t >( row, 14 ); - data.push_back( exdData->getField< int32_t >( row, 15 ) ); - data.push_back( exdData->getField< int32_t >( row, 16 ) ); - data.push_back( exdData->getField< int32_t >( row, 17 ) ); - data.push_back( exdData->getField< int32_t >( row, 18 ) ); - data.push_back( exdData->getField< int32_t >( row, 19 ) ); - data.push_back( exdData->getField< int32_t >( row, 20 ) ); - data.push_back( exdData->getField< int32_t >( row, 21 ) ); - data.push_back( exdData->getField< int32_t >( row, 22 ) ); - order = exdData->getField< uint16_t >( row, 23 ); - achievementHideCondition = exdData->getField< uint8_t >( row, 25 ); -} - -Sapphire::Data::AchievementCategory::AchievementCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AchievementCategoryDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - achievementKind = exdData->getField< uint8_t >( row, 1 ); - showComplete = exdData->getField< bool >( row, 2 ); - hideCategory = exdData->getField< bool >( row, 3 ); - order = exdData->getField< uint8_t >( row, 4 ); -} - -Sapphire::Data::AchievementHideCondition::AchievementHideCondition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AchievementHideConditionDat.get_row( row_id ); - hideAchievement = exdData->getField< bool >( row, 0 ); - hideName = exdData->getField< bool >( row, 1 ); - hideConditions = exdData->getField< bool >( row, 2 ); -} - -Sapphire::Data::AchievementKind::AchievementKind( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AchievementKindDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - order = exdData->getField< uint8_t >( row, 1 ); -} - -Sapphire::Data::AchievementTarget::AchievementTarget( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AchievementTargetDat.get_row( row_id ); - type = exdData->getField< uint8_t >( row, 0 ); - value = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::Action::Action( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ActionDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - icon = exdData->getField< uint16_t >( row, 2 ); - actionCategory = exdData->getField< uint8_t >( row, 3 ); - animationStart = exdData->getField< uint8_t >( row, 5 ); - vFX = exdData->getField< uint8_t >( row, 6 ); - animationEnd = exdData->getField< int16_t >( row, 7 ); - actionTimelineHit = exdData->getField< uint16_t >( row, 8 ); - classJob = exdData->getField< int8_t >( row, 10 ); - behaviourType = exdData->getField< uint8_t >( row, 11 ); - classJobLevel = exdData->getField< uint8_t >( row, 12 ); - isRoleAction = exdData->getField< bool >( row, 13 ); - range = exdData->getField< int8_t >( row, 14 ); - canTargetSelf = exdData->getField< bool >( row, 15 ); - canTargetParty = exdData->getField< bool >( row, 16 ); - canTargetFriendly = exdData->getField< bool >( row, 17 ); - canTargetHostile = exdData->getField< bool >( row, 18 ); - targetArea = exdData->getField< bool >( row, 21 ); - canTargetDead = exdData->getField< bool >( row, 25 ); - castType = exdData->getField< uint8_t >( row, 27 ); - effectRange = exdData->getField< uint8_t >( row, 28 ); - xAxisModifier = exdData->getField< uint8_t >( row, 29 ); - primaryCostType = exdData->getField< uint8_t >( row, 31 ); - primaryCostValue = exdData->getField< uint16_t >( row, 32 ); - secondaryCostType = exdData->getField< uint8_t >( row, 33 ); - secondaryCostValue = exdData->getField< uint16_t >( row, 34 ); - actionCombo = exdData->getField< uint16_t >( row, 35 ); - preservesCombo = exdData->getField< bool >( row, 36 ); - cast100ms = exdData->getField< uint16_t >( row, 37 ); - recast100ms = exdData->getField< uint16_t >( row, 38 ); - cooldownGroup = exdData->getField< uint8_t >( row, 39 ); - additionalCooldownGroup = exdData->getField< uint8_t >( row, 40 ); - maxCharges = exdData->getField< uint8_t >( row, 41 ); - attackType = exdData->getField< int8_t >( row, 42 ); - aspect = exdData->getField< uint8_t >( row, 43 ); - actionProcStatus = exdData->getField< uint8_t >( row, 44 ); - statusGainSelf = exdData->getField< uint16_t >( row, 46 ); - unlockLink = exdData->getField< uint32_t >( row, 47 ); - classJobCategory = exdData->getField< uint8_t >( row, 48 ); - affectsPosition = exdData->getField< bool >( row, 51 ); - omen = exdData->getField< uint16_t >( row, 52 ); - isPvP = exdData->getField< bool >( row, 53 ); - isPlayerAction = exdData->getField< bool >( row, 65 ); -} - -Sapphire::Data::ActionCastTimeline::ActionCastTimeline( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ActionCastTimelineDat.get_row( row_id ); - name = exdData->getField< uint16_t >( row, 0 ); - vFX = exdData->getField< uint16_t >( row, 1 ); -} - -Sapphire::Data::ActionCastVFX::ActionCastVFX( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ActionCastVFXDat.get_row( row_id ); - vFX = exdData->getField< uint16_t >( row, 0 ); -} - -Sapphire::Data::ActionCategory::ActionCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ActionCategoryDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::ActionComboRoute::ActionComboRoute( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ActionComboRouteDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - action.push_back( exdData->getField< uint16_t >( row, 2 ) ); - action.push_back( exdData->getField< uint16_t >( row, 3 ) ); - action.push_back( exdData->getField< uint16_t >( row, 4 ) ); - action.push_back( exdData->getField< uint16_t >( row, 5 ) ); -} - -Sapphire::Data::ActionIndirection::ActionIndirection( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ActionIndirectionDat.get_row( row_id ); - name = exdData->getField< int32_t >( row, 0 ); - classJob = exdData->getField< int8_t >( row, 1 ); - previousComboAction = exdData->getField< int32_t >( row, 2 ); -} - -Sapphire::Data::ActionParam::ActionParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ActionParamDat.get_row( row_id ); - name = exdData->getField< int16_t >( row, 0 ); -} - -Sapphire::Data::ActionProcStatus::ActionProcStatus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ActionProcStatusDat.get_row( row_id ); - status = exdData->getField< uint16_t >( row, 0 ); -} - -Sapphire::Data::ActionTimeline::ActionTimeline( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ActionTimelineDat.get_row( row_id ); - type = exdData->getField< uint8_t >( row, 0 ); - priority = exdData->getField< uint8_t >( row, 1 ); - pause = exdData->getField< bool >( row, 2 ); - stance = exdData->getField< uint8_t >( row, 3 ); - slot = exdData->getField< uint8_t >( row, 4 ); - lookAtMode = exdData->getField< uint8_t >( row, 5 ); - key = exdData->getField< std::string >( row, 6 ); - actionTimelineIDMode = exdData->getField< uint8_t >( row, 7 ); - weaponTimeline = exdData->getField< uint8_t >( row, 8 ); - loadType = exdData->getField< uint8_t >( row, 9 ); - startAttach = exdData->getField< uint8_t >( row, 10 ); - residentPap = exdData->getField< uint8_t >( row, 11 ); - resident = exdData->getField< bool >( row, 12 ); - killUpper = exdData->getField< uint16_t >( row, 13 ); - isMotionCanceledByMoving = exdData->getField< bool >( row, 14 ); - isLoop = exdData->getField< uint8_t >( row, 16 ); -} - -Sapphire::Data::ActionTimelineMove::ActionTimelineMove( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ActionTimelineMoveDat.get_row( row_id ); -} - -Sapphire::Data::ActionTimelineReplace::ActionTimelineReplace( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ActionTimelineReplaceDat.get_row( row_id ); - old = exdData->getField< uint16_t >( row, 0 ); - _new = exdData->getField< uint16_t >( row, 1 ); -} - -Sapphire::Data::ActionTransient::ActionTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ActionTransientDat.get_row( row_id ); - description = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::ActivityFeedButtons::ActivityFeedButtons( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ActivityFeedButtonsDat.get_row( row_id ); - bannerURL = exdData->getField< std::string >( row, 1 ); - description = exdData->getField< std::string >( row, 2 ); - language = exdData->getField< std::string >( row, 3 ); - pictureURL = exdData->getField< std::string >( row, 4 ); -} - -Sapphire::Data::ActivityFeedCaptions::ActivityFeedCaptions( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ActivityFeedCaptionsDat.get_row( row_id ); - jA = exdData->getField< std::string >( row, 0 ); - eN = exdData->getField< std::string >( row, 1 ); - dE = exdData->getField< std::string >( row, 2 ); - fR = exdData->getField< std::string >( row, 3 ); -} - -Sapphire::Data::ActivityFeedGroupCaptions::ActivityFeedGroupCaptions( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ActivityFeedGroupCaptionsDat.get_row( row_id ); - jA = exdData->getField< std::string >( row, 0 ); - eN = exdData->getField< std::string >( row, 1 ); - dE = exdData->getField< std::string >( row, 2 ); - fR = exdData->getField< std::string >( row, 3 ); -} - -Sapphire::Data::ActivityFeedImages::ActivityFeedImages( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ActivityFeedImagesDat.get_row( row_id ); - expansionImage = exdData->getField< std::string >( row, 0 ); - activityFeedJA = exdData->getField< std::string >( row, 1 ); - activityFeedEN = exdData->getField< std::string >( row, 2 ); - activityFeedDE = exdData->getField< std::string >( row, 3 ); - activityFeedFR = exdData->getField< std::string >( row, 4 ); -} - -Sapphire::Data::Addon::Addon( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AddonDat.get_row( row_id ); - text = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::Adventure::Adventure( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AdventureDat.get_row( row_id ); - level = exdData->getField< int32_t >( row, 0 ); - minLevel = exdData->getField< int32_t >( row, 1 ); - maxLevel = exdData->getField< uint8_t >( row, 2 ); - emote = exdData->getField< uint16_t >( row, 3 ); - minTime = exdData->getField< uint16_t >( row, 4 ); - maxTime = exdData->getField< uint16_t >( row, 5 ); - placeName = exdData->getField< int32_t >( row, 6 ); - iconList = exdData->getField< int32_t >( row, 7 ); - iconDiscovered = exdData->getField< int32_t >( row, 8 ); - name = exdData->getField< std::string >( row, 9 ); - impression = exdData->getField< std::string >( row, 10 ); - description = exdData->getField< std::string >( row, 11 ); - iconUndiscovered = exdData->getField< int32_t >( row, 12 ); - isInitial = exdData->getField< bool >( row, 13 ); -} - -Sapphire::Data::AdventureExPhase::AdventureExPhase( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AdventureExPhaseDat.get_row( row_id ); - quest = exdData->getField< uint32_t >( row, 0 ); - adventureBegin = exdData->getField< uint32_t >( row, 1 ); - adventureEnd = exdData->getField< uint32_t >( row, 2 ); -} - -Sapphire::Data::AetherCurrent::AetherCurrent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AetherCurrentDat.get_row( row_id ); - quest = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::AetherCurrentCompFlgSet::AetherCurrentCompFlgSet( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AetherCurrentCompFlgSetDat.get_row( row_id ); - territory = exdData->getField< int32_t >( row, 0 ); - aetherCurrent.push_back( exdData->getField< int32_t >( row, 2 ) ); - aetherCurrent.push_back( exdData->getField< int32_t >( row, 3 ) ); - aetherCurrent.push_back( exdData->getField< int32_t >( row, 4 ) ); - aetherCurrent.push_back( exdData->getField< int32_t >( row, 5 ) ); - aetherCurrent.push_back( exdData->getField< int32_t >( row, 6 ) ); - aetherCurrent.push_back( exdData->getField< int32_t >( row, 7 ) ); - aetherCurrent.push_back( exdData->getField< int32_t >( row, 8 ) ); - aetherCurrent.push_back( exdData->getField< int32_t >( row, 9 ) ); - aetherCurrent.push_back( exdData->getField< int32_t >( row, 10 ) ); - aetherCurrent.push_back( exdData->getField< int32_t >( row, 11 ) ); - aetherCurrent.push_back( exdData->getField< int32_t >( row, 12 ) ); - aetherCurrent.push_back( exdData->getField< int32_t >( row, 13 ) ); - aetherCurrent.push_back( exdData->getField< int32_t >( row, 14 ) ); - aetherCurrent.push_back( exdData->getField< int32_t >( row, 15 ) ); - aetherCurrent.push_back( exdData->getField< int32_t >( row, 16 ) ); -} - -Sapphire::Data::AetherialWheel::AetherialWheel( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AetherialWheelDat.get_row( row_id ); - itemUnprimed = exdData->getField< int32_t >( row, 0 ); - itemPrimed = exdData->getField< int32_t >( row, 1 ); - grade = exdData->getField< uint8_t >( row, 2 ); - hoursRequired = exdData->getField< uint8_t >( row, 3 ); -} - -Sapphire::Data::Aetheryte::Aetheryte( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AetheryteDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); - placeName = exdData->getField< uint16_t >( row, 8 ); - aethernetName = exdData->getField< uint16_t >( row, 9 ); - territory = exdData->getField< uint16_t >( row, 10 ); - level.push_back( exdData->getField< uint32_t >( row, 11 ) ); - level.push_back( exdData->getField< uint32_t >( row, 12 ) ); - level.push_back( exdData->getField< uint32_t >( row, 13 ) ); - level.push_back( exdData->getField< uint32_t >( row, 14 ) ); - isAetheryte = exdData->getField< bool >( row, 15 ); - aethernetGroup = exdData->getField< uint8_t >( row, 17 ); - invisible = exdData->getField< bool >( row, 18 ); - requiredQuest = exdData->getField< uint32_t >( row, 19 ); - map = exdData->getField< uint16_t >( row, 20 ); - aetherstreamX = exdData->getField< int16_t >( row, 21 ); - aetherstreamY = exdData->getField< int16_t >( row, 22 ); -} - -Sapphire::Data::AetheryteSystemDefine::AetheryteSystemDefine( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AetheryteSystemDefineDat.get_row( row_id ); - text = exdData->getField< std::string >( row, 0 ); - defineValue = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::AirshipExplorationLevel::AirshipExplorationLevel( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AirshipExplorationLevelDat.get_row( row_id ); - capacity = exdData->getField< uint16_t >( row, 0 ); - expToNext = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::AirshipExplorationLog::AirshipExplorationLog( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AirshipExplorationLogDat.get_row( row_id ); - text = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::AirshipExplorationParamType::AirshipExplorationParamType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AirshipExplorationParamTypeDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::AirshipExplorationPart::AirshipExplorationPart( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AirshipExplorationPartDat.get_row( row_id ); - slot = exdData->getField< uint8_t >( row, 0 ); - rank = exdData->getField< uint8_t >( row, 1 ); - components = exdData->getField< uint8_t >( row, 2 ); - surveillance = exdData->getField< int16_t >( row, 3 ); - retrieval = exdData->getField< int16_t >( row, 4 ); - speed = exdData->getField< int16_t >( row, 5 ); - range = exdData->getField< int16_t >( row, 6 ); - favor = exdData->getField< int16_t >( row, 7 ); - _class = exdData->getField< uint16_t >( row, 8 ); - repairMaterials = exdData->getField< uint8_t >( row, 9 ); -} - -Sapphire::Data::AirshipExplorationPoint::AirshipExplorationPoint( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AirshipExplorationPointDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - nameShort = exdData->getField< std::string >( row, 1 ); - requiredLevel = exdData->getField< uint8_t >( row, 5 ); - requiredFuel = exdData->getField< uint16_t >( row, 6 ); - durationmin = exdData->getField< uint16_t >( row, 7 ); - requiredSurveillance = exdData->getField< uint8_t >( row, 10 ); - expReward = exdData->getField< uint32_t >( row, 13 ); -} - -Sapphire::Data::AnimationLOD::AnimationLOD( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AnimationLODDat.get_row( row_id ); - cameraDistance = exdData->getField< float >( row, 0 ); - sampleInterval = exdData->getField< float >( row, 1 ); - boneLOD = exdData->getField< int8_t >( row, 2 ); - animationEnable.push_back( exdData->getField< bool >( row, 3 ) ); - animationEnable.push_back( exdData->getField< bool >( row, 4 ) ); - animationEnable.push_back( exdData->getField< bool >( row, 5 ) ); - animationEnable.push_back( exdData->getField< bool >( row, 6 ) ); - animationEnable.push_back( exdData->getField< bool >( row, 7 ) ); - animationEnable.push_back( exdData->getField< bool >( row, 8 ) ); - animationEnable.push_back( exdData->getField< bool >( row, 9 ) ); - animationEnable.push_back( exdData->getField< bool >( row, 10 ) ); -} - -Sapphire::Data::AnimaWeapon5::AnimaWeapon5( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AnimaWeapon5Dat.get_row( row_id ); - item = exdData->getField< int32_t >( row, 0 ); - secondaryStatTotal = exdData->getField< uint8_t >( row, 2 ); - parameter.push_back( exdData->getField< uint8_t >( row, 3 ) ); - parameter.push_back( exdData->getField< uint8_t >( row, 4 ) ); - parameter.push_back( exdData->getField< uint8_t >( row, 5 ) ); - parameter.push_back( exdData->getField< uint8_t >( row, 6 ) ); - parameter.push_back( exdData->getField< uint8_t >( row, 7 ) ); -} - -Sapphire::Data::AnimaWeapon5Param::AnimaWeapon5Param( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AnimaWeapon5ParamDat.get_row( row_id ); - baseParam = exdData->getField< uint8_t >( row, 0 ); - name = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::AnimaWeapon5PatternGroup::AnimaWeapon5PatternGroup( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AnimaWeapon5PatternGroupDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::AnimaWeapon5SpiritTalk::AnimaWeapon5SpiritTalk( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AnimaWeapon5SpiritTalkDat.get_row( row_id, subRow ); - dialogue = exdData->getField< int32_t >( row, 0 ); -} - -Sapphire::Data::AnimaWeapon5SpiritTalkParam::AnimaWeapon5SpiritTalkParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AnimaWeapon5SpiritTalkParamDat.get_row( row_id ); - prologue = exdData->getField< std::string >( row, 0 ); - epilogue = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::AnimaWeapon5TradeItem::AnimaWeapon5TradeItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AnimaWeapon5TradeItemDat.get_row( row_id ); - crystalSand = exdData->getField< uint32_t >( row, 1 ); - qty = exdData->getField< uint8_t >( row, 2 ); - category = exdData->getField< uint8_t >( row, 27 ); -} - -Sapphire::Data::AnimaWeaponFUITalk::AnimaWeaponFUITalk( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AnimaWeaponFUITalkDat.get_row( row_id, subRow ); - dialogue = exdData->getField< int32_t >( row, 0 ); -} - -Sapphire::Data::AnimaWeaponFUITalkParam::AnimaWeaponFUITalkParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AnimaWeaponFUITalkParamDat.get_row( row_id ); - prologue = exdData->getField< std::string >( row, 0 ); - epilogue = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::AnimaWeaponIcon::AnimaWeaponIcon( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AnimaWeaponIconDat.get_row( row_id ); - hyperconductive = exdData->getField< int32_t >( row, 0 ); - reborn = exdData->getField< int32_t >( row, 1 ); - sharpened = exdData->getField< int32_t >( row, 2 ); - zodiac = exdData->getField< int32_t >( row, 3 ); - zodiacLux = exdData->getField< int32_t >( row, 4 ); -} - -Sapphire::Data::AnimaWeaponItem::AnimaWeaponItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AnimaWeaponItemDat.get_row( row_id ); - item.push_back( exdData->getField< uint32_t >( row, 0 ) ); - item.push_back( exdData->getField< uint32_t >( row, 1 ) ); - item.push_back( exdData->getField< uint32_t >( row, 2 ) ); - item.push_back( exdData->getField< uint32_t >( row, 3 ) ); - item.push_back( exdData->getField< uint32_t >( row, 4 ) ); - item.push_back( exdData->getField< uint32_t >( row, 5 ) ); - item.push_back( exdData->getField< uint32_t >( row, 6 ) ); - item.push_back( exdData->getField< uint32_t >( row, 7 ) ); - item.push_back( exdData->getField< uint32_t >( row, 8 ) ); - item.push_back( exdData->getField< uint32_t >( row, 9 ) ); - item.push_back( exdData->getField< uint32_t >( row, 10 ) ); - item.push_back( exdData->getField< uint32_t >( row, 11 ) ); - item.push_back( exdData->getField< uint32_t >( row, 12 ) ); - item.push_back( exdData->getField< uint32_t >( row, 13 ) ); -} - -Sapphire::Data::AozAction::AozAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AozActionDat.get_row( row_id ); - action = exdData->getField< uint32_t >( row, 0 ); - rank = exdData->getField< uint8_t >( row, 1 ); -} - -Sapphire::Data::AozActionTransient::AozActionTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AozActionTransientDat.get_row( row_id ); - number = exdData->getField< uint8_t >( row, 0 ); - icon = exdData->getField< uint32_t >( row, 1 ); - stats = exdData->getField< std::string >( row, 2 ); - description = exdData->getField< std::string >( row, 3 ); - locationKey = exdData->getField< uint8_t >( row, 4 ); - location = exdData->getField< uint16_t >( row, 5 ); - requiredForQuest = exdData->getField< uint32_t >( row, 6 ); - previousQuest = exdData->getField< uint32_t >( row, 7 ); - targetsEnemy = exdData->getField< bool >( row, 8 ); - targetsSelfOrAlly = exdData->getField< bool >( row, 9 ); - causeSlow = exdData->getField< bool >( row, 10 ); - causePetrify = exdData->getField< bool >( row, 11 ); - causeParalysis = exdData->getField< bool >( row, 12 ); - causeInterrupt = exdData->getField< bool >( row, 13 ); - causeBlind = exdData->getField< bool >( row, 14 ); - causeStun = exdData->getField< bool >( row, 15 ); - causeSleep = exdData->getField< bool >( row, 16 ); - causeBind = exdData->getField< bool >( row, 17 ); - causeHeavy = exdData->getField< bool >( row, 18 ); - causeDeath = exdData->getField< bool >( row, 19 ); -} - -Sapphire::Data::AOZArrangement::AOZArrangement( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AOZArrangementDat.get_row( row_id, subRow ); - aOZContentBriefingBNpc = exdData->getField< uint16_t >( row, 0 ); - position = exdData->getField< uint16_t >( row, 1 ); -} - -Sapphire::Data::AOZBoss::AOZBoss( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AOZBossDat.get_row( row_id ); - boss = exdData->getField< uint16_t >( row, 0 ); - position = exdData->getField< uint16_t >( row, 1 ); -} - -Sapphire::Data::AOZContent::AOZContent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AOZContentDat.get_row( row_id ); - standardFinishTime = exdData->getField< uint16_t >( row, 0 ); - idealFinishTime = exdData->getField< uint16_t >( row, 1 ); - act1FightType = exdData->getField< uint8_t >( row, 2 ); - act1 = exdData->getField< uint16_t >( row, 3 ); - arenaType1 = exdData->getField< uint8_t >( row, 4 ); - act2FightType = exdData->getField< uint8_t >( row, 5 ); - act2 = exdData->getField< uint16_t >( row, 6 ); - arenaType2 = exdData->getField< uint8_t >( row, 7 ); - act3FightType = exdData->getField< uint8_t >( row, 8 ); - act3 = exdData->getField< uint16_t >( row, 9 ); - arenaType3 = exdData->getField< uint8_t >( row, 10 ); - contentEntry = exdData->getField< uint32_t >( row, 11 ); - order = exdData->getField< uint8_t >( row, 12 ); - gilReward = exdData->getField< uint16_t >( row, 13 ); - alliedSealsReward = exdData->getField< uint16_t >( row, 14 ); - tomestonesReward = exdData->getField< uint16_t >( row, 15 ); -} - -Sapphire::Data::AOZContentBriefingBNpc::AOZContentBriefingBNpc( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AOZContentBriefingBNpcDat.get_row( row_id ); - bNpcName = exdData->getField< uint32_t >( row, 0 ); - targetSmall = exdData->getField< uint32_t >( row, 1 ); - targetLarge = exdData->getField< uint32_t >( row, 2 ); - hideStats = exdData->getField< bool >( row, 3 ); - endurance = exdData->getField< uint8_t >( row, 4 ); - fire = exdData->getField< uint8_t >( row, 5 ); - ice = exdData->getField< uint8_t >( row, 6 ); - wind = exdData->getField< uint8_t >( row, 7 ); - earth = exdData->getField< uint8_t >( row, 8 ); - thunder = exdData->getField< uint8_t >( row, 9 ); - water = exdData->getField< uint8_t >( row, 10 ); - slashing = exdData->getField< uint8_t >( row, 11 ); - piercing = exdData->getField< uint8_t >( row, 12 ); - blunt = exdData->getField< uint8_t >( row, 13 ); - magic = exdData->getField< uint8_t >( row, 14 ); - slowVuln = exdData->getField< bool >( row, 15 ); - petrificationVuln = exdData->getField< bool >( row, 16 ); - paralysisVuln = exdData->getField< bool >( row, 17 ); - interruptionVuln = exdData->getField< bool >( row, 18 ); - blindVuln = exdData->getField< bool >( row, 19 ); - stunVuln = exdData->getField< bool >( row, 20 ); - sleepVuln = exdData->getField< bool >( row, 21 ); - bindVuln = exdData->getField< bool >( row, 22 ); - heavyVuln = exdData->getField< bool >( row, 23 ); - flatOrDeathVuln = exdData->getField< bool >( row, 24 ); -} - -Sapphire::Data::AOZReport::AOZReport( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AOZReportDat.get_row( row_id ); - reward = exdData->getField< uint8_t >( row, 1 ); - order = exdData->getField< int8_t >( row, 2 ); -} - -Sapphire::Data::AOZScore::AOZScore( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AOZScoreDat.get_row( row_id ); - isHidden = exdData->getField< bool >( row, 0 ); - score = exdData->getField< int32_t >( row, 1 ); - name = exdData->getField< std::string >( row, 2 ); - description = exdData->getField< std::string >( row, 3 ); -} - -Sapphire::Data::AquariumFish::AquariumFish( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AquariumFishDat.get_row( row_id ); - aquariumWater = exdData->getField< uint8_t >( row, 0 ); - size = exdData->getField< uint8_t >( row, 1 ); - item = exdData->getField< uint32_t >( row, 2 ); -} - -Sapphire::Data::AquariumWater::AquariumWater( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AquariumWaterDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::ArrayEventHandler::ArrayEventHandler( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ArrayEventHandlerDat.get_row( row_id ); - data.push_back( exdData->getField< uint32_t >( row, 0 ) ); - data.push_back( exdData->getField< uint32_t >( row, 1 ) ); - data.push_back( exdData->getField< uint32_t >( row, 2 ) ); - data.push_back( exdData->getField< uint32_t >( row, 3 ) ); - data.push_back( exdData->getField< uint32_t >( row, 4 ) ); - data.push_back( exdData->getField< uint32_t >( row, 5 ) ); - data.push_back( exdData->getField< uint32_t >( row, 6 ) ); - data.push_back( exdData->getField< uint32_t >( row, 7 ) ); - data.push_back( exdData->getField< uint32_t >( row, 8 ) ); - data.push_back( exdData->getField< uint32_t >( row, 9 ) ); - data.push_back( exdData->getField< uint32_t >( row, 10 ) ); - data.push_back( exdData->getField< uint32_t >( row, 11 ) ); - data.push_back( exdData->getField< uint32_t >( row, 12 ) ); - data.push_back( exdData->getField< uint32_t >( row, 13 ) ); - data.push_back( exdData->getField< uint32_t >( row, 14 ) ); - data.push_back( exdData->getField< uint32_t >( row, 15 ) ); -} - -Sapphire::Data::AttackType::AttackType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_AttackTypeDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::BacklightColor::BacklightColor( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BacklightColorDat.get_row( row_id ); - color = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::Ballista::Ballista( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BallistaDat.get_row( row_id ); - bNPC = exdData->getField< uint16_t >( row, 0 ); - near = exdData->getField< int8_t >( row, 1 ); - far = exdData->getField< int8_t >( row, 2 ); - angle = exdData->getField< uint16_t >( row, 3 ); - bullet = exdData->getField< uint8_t >( row, 4 ); - action0 = exdData->getField< uint16_t >( row, 7 ); - action1 = exdData->getField< uint16_t >( row, 8 ); - action2 = exdData->getField< uint16_t >( row, 9 ); - action3 = exdData->getField< uint16_t >( row, 10 ); -} - -Sapphire::Data::Balloon::Balloon( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BalloonDat.get_row( row_id ); - slowly = exdData->getField< bool >( row, 0 ); - dialogue = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::BaseParam::BaseParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BaseParamDat.get_row( row_id ); - packetIndex = exdData->getField< int8_t >( row, 0 ); - name = exdData->getField< std::string >( row, 1 ); - description = exdData->getField< std::string >( row, 2 ); - orderPriority = exdData->getField< uint8_t >( row, 3 ); - oneHWpn = exdData->getField< uint8_t >( row, 4 ); - oH = exdData->getField< uint8_t >( row, 5 ); - head = exdData->getField< uint8_t >( row, 6 ); - chest = exdData->getField< uint8_t >( row, 7 ); - hands = exdData->getField< uint8_t >( row, 8 ); - waist = exdData->getField< uint8_t >( row, 9 ); - legs = exdData->getField< uint8_t >( row, 10 ); - feet = exdData->getField< uint8_t >( row, 11 ); - earring = exdData->getField< uint8_t >( row, 12 ); - necklace = exdData->getField< uint8_t >( row, 13 ); - bracelet = exdData->getField< uint8_t >( row, 14 ); - ring = exdData->getField< uint8_t >( row, 15 ); - twoHWpn = exdData->getField< uint8_t >( row, 16 ); - underArmor = exdData->getField< uint8_t >( row, 17 ); - chestHead = exdData->getField< uint8_t >( row, 18 ); - chestHeadLegsFeet = exdData->getField< uint8_t >( row, 19 ); - legsFeet = exdData->getField< uint8_t >( row, 21 ); - headChestHandsLegsFeet = exdData->getField< uint8_t >( row, 22 ); - chestLegsGloves = exdData->getField< uint8_t >( row, 23 ); - chestLegsFeet = exdData->getField< uint8_t >( row, 24 ); - meldParam.push_back( exdData->getField< uint8_t >( row, 25 ) ); - meldParam.push_back( exdData->getField< uint8_t >( row, 26 ) ); - meldParam.push_back( exdData->getField< uint8_t >( row, 27 ) ); - meldParam.push_back( exdData->getField< uint8_t >( row, 28 ) ); - meldParam.push_back( exdData->getField< uint8_t >( row, 29 ) ); - meldParam.push_back( exdData->getField< uint8_t >( row, 30 ) ); - meldParam.push_back( exdData->getField< uint8_t >( row, 31 ) ); - meldParam.push_back( exdData->getField< uint8_t >( row, 32 ) ); - meldParam.push_back( exdData->getField< uint8_t >( row, 33 ) ); - meldParam.push_back( exdData->getField< uint8_t >( row, 34 ) ); - meldParam.push_back( exdData->getField< uint8_t >( row, 35 ) ); - meldParam.push_back( exdData->getField< uint8_t >( row, 36 ) ); - meldParam.push_back( exdData->getField< uint8_t >( row, 37 ) ); -} - -Sapphire::Data::BattleLeve::BattleLeve( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BattleLeveDat.get_row( row_id ); - time.push_back( exdData->getField< uint16_t >( row, 0 ) ); - time.push_back( exdData->getField< uint16_t >( row, 1 ) ); - time.push_back( exdData->getField< uint16_t >( row, 2 ) ); - time.push_back( exdData->getField< uint16_t >( row, 3 ) ); - time.push_back( exdData->getField< uint16_t >( row, 4 ) ); - time.push_back( exdData->getField< uint16_t >( row, 5 ) ); - time.push_back( exdData->getField< uint16_t >( row, 6 ) ); - time.push_back( exdData->getField< uint16_t >( row, 7 ) ); - baseID.push_back( exdData->getField< int32_t >( row, 8 ) ); - baseID.push_back( exdData->getField< int32_t >( row, 9 ) ); - baseID.push_back( exdData->getField< int32_t >( row, 10 ) ); - baseID.push_back( exdData->getField< int32_t >( row, 11 ) ); - baseID.push_back( exdData->getField< int32_t >( row, 12 ) ); - baseID.push_back( exdData->getField< int32_t >( row, 13 ) ); - baseID.push_back( exdData->getField< int32_t >( row, 14 ) ); - baseID.push_back( exdData->getField< int32_t >( row, 15 ) ); - enemyLevel.push_back( exdData->getField< uint16_t >( row, 16 ) ); - enemyLevel.push_back( exdData->getField< uint16_t >( row, 17 ) ); - enemyLevel.push_back( exdData->getField< uint16_t >( row, 18 ) ); - enemyLevel.push_back( exdData->getField< uint16_t >( row, 19 ) ); - enemyLevel.push_back( exdData->getField< uint16_t >( row, 20 ) ); - enemyLevel.push_back( exdData->getField< uint16_t >( row, 21 ) ); - enemyLevel.push_back( exdData->getField< uint16_t >( row, 22 ) ); - enemyLevel.push_back( exdData->getField< uint16_t >( row, 23 ) ); - bNpcName.push_back( exdData->getField< uint32_t >( row, 24 ) ); - bNpcName.push_back( exdData->getField< uint32_t >( row, 25 ) ); - bNpcName.push_back( exdData->getField< uint32_t >( row, 26 ) ); - bNpcName.push_back( exdData->getField< uint32_t >( row, 27 ) ); - bNpcName.push_back( exdData->getField< uint32_t >( row, 28 ) ); - bNpcName.push_back( exdData->getField< uint32_t >( row, 29 ) ); - bNpcName.push_back( exdData->getField< uint32_t >( row, 30 ) ); - bNpcName.push_back( exdData->getField< uint32_t >( row, 31 ) ); - itemsInvolved.push_back( exdData->getField< int32_t >( row, 32 ) ); - itemsInvolved.push_back( exdData->getField< int32_t >( row, 33 ) ); - itemsInvolved.push_back( exdData->getField< int32_t >( row, 34 ) ); - itemsInvolved.push_back( exdData->getField< int32_t >( row, 35 ) ); - itemsInvolved.push_back( exdData->getField< int32_t >( row, 36 ) ); - itemsInvolved.push_back( exdData->getField< int32_t >( row, 37 ) ); - itemsInvolved.push_back( exdData->getField< int32_t >( row, 38 ) ); - itemsInvolved.push_back( exdData->getField< int32_t >( row, 39 ) ); - itemsInvolvedQty.push_back( exdData->getField< uint8_t >( row, 40 ) ); - itemsInvolvedQty.push_back( exdData->getField< uint8_t >( row, 41 ) ); - itemsInvolvedQty.push_back( exdData->getField< uint8_t >( row, 42 ) ); - itemsInvolvedQty.push_back( exdData->getField< uint8_t >( row, 43 ) ); - itemsInvolvedQty.push_back( exdData->getField< uint8_t >( row, 44 ) ); - itemsInvolvedQty.push_back( exdData->getField< uint8_t >( row, 45 ) ); - itemsInvolvedQty.push_back( exdData->getField< uint8_t >( row, 46 ) ); - itemsInvolvedQty.push_back( exdData->getField< uint8_t >( row, 47 ) ); - itemDropRate.push_back( exdData->getField< uint8_t >( row, 48 ) ); - itemDropRate.push_back( exdData->getField< uint8_t >( row, 49 ) ); - itemDropRate.push_back( exdData->getField< uint8_t >( row, 50 ) ); - itemDropRate.push_back( exdData->getField< uint8_t >( row, 51 ) ); - itemDropRate.push_back( exdData->getField< uint8_t >( row, 52 ) ); - itemDropRate.push_back( exdData->getField< uint8_t >( row, 53 ) ); - itemDropRate.push_back( exdData->getField< uint8_t >( row, 54 ) ); - itemDropRate.push_back( exdData->getField< uint8_t >( row, 55 ) ); - toDoNumberInvolved.push_back( exdData->getField< uint32_t >( row, 56 ) ); - toDoNumberInvolved.push_back( exdData->getField< uint32_t >( row, 57 ) ); - toDoNumberInvolved.push_back( exdData->getField< uint32_t >( row, 58 ) ); - toDoNumberInvolved.push_back( exdData->getField< uint32_t >( row, 59 ) ); - toDoNumberInvolved.push_back( exdData->getField< uint32_t >( row, 60 ) ); - toDoNumberInvolved.push_back( exdData->getField< uint32_t >( row, 61 ) ); - toDoNumberInvolved.push_back( exdData->getField< uint32_t >( row, 62 ) ); - toDoNumberInvolved.push_back( exdData->getField< uint32_t >( row, 63 ) ); - toDoSequence.push_back( exdData->getField< uint8_t >( row, 168 ) ); - toDoSequence.push_back( exdData->getField< uint8_t >( row, 169 ) ); - toDoSequence.push_back( exdData->getField< uint8_t >( row, 170 ) ); - toDoSequence.push_back( exdData->getField< uint8_t >( row, 171 ) ); - toDoSequence.push_back( exdData->getField< uint8_t >( row, 172 ) ); - toDoSequence.push_back( exdData->getField< uint8_t >( row, 173 ) ); - toDoSequence.push_back( exdData->getField< uint8_t >( row, 174 ) ); - toDoSequence.push_back( exdData->getField< uint8_t >( row, 175 ) ); - rule = exdData->getField< int32_t >( row, 176 ); - varient = exdData->getField< uint8_t >( row, 177 ); - objective0 = exdData->getField< uint16_t >( row, 178 ); - objective1 = exdData->getField< uint16_t >( row, 179 ); - objective2 = exdData->getField< uint16_t >( row, 180 ); - help0 = exdData->getField< uint16_t >( row, 181 ); - help1 = exdData->getField< uint16_t >( row, 182 ); -} - -Sapphire::Data::BattleLeveRule::BattleLeveRule( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BattleLeveRuleDat.get_row( row_id ); - rule = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::BeastRankBonus::BeastRankBonus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BeastRankBonusDat.get_row( row_id ); - neutral = exdData->getField< uint16_t >( row, 0 ); - recognized = exdData->getField< uint16_t >( row, 1 ); - friendly = exdData->getField< uint16_t >( row, 2 ); - trusted = exdData->getField< uint16_t >( row, 3 ); - respected = exdData->getField< uint16_t >( row, 4 ); - honored = exdData->getField< uint16_t >( row, 5 ); - sworn = exdData->getField< uint16_t >( row, 6 ); - alliedBloodsworn = exdData->getField< uint16_t >( row, 7 ); - item = exdData->getField< uint32_t >( row, 8 ); - itemQuantity.push_back( exdData->getField< uint8_t >( row, 9 ) ); - itemQuantity.push_back( exdData->getField< uint8_t >( row, 10 ) ); - itemQuantity.push_back( exdData->getField< uint8_t >( row, 11 ) ); - itemQuantity.push_back( exdData->getField< uint8_t >( row, 12 ) ); - itemQuantity.push_back( exdData->getField< uint8_t >( row, 13 ) ); - itemQuantity.push_back( exdData->getField< uint8_t >( row, 14 ) ); - itemQuantity.push_back( exdData->getField< uint8_t >( row, 15 ) ); - itemQuantity.push_back( exdData->getField< uint8_t >( row, 16 ) ); -} - -Sapphire::Data::BeastReputationRank::BeastReputationRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BeastReputationRankDat.get_row( row_id ); - requiredReputation = exdData->getField< uint16_t >( row, 0 ); - name = exdData->getField< std::string >( row, 1 ); - alliedNames = exdData->getField< std::string >( row, 2 ); - color = exdData->getField< uint32_t >( row, 3 ); -} - -Sapphire::Data::BeastTribe::BeastTribe( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BeastTribeDat.get_row( row_id ); - minLevel = exdData->getField< uint8_t >( row, 1 ); - beastRankBonus = exdData->getField< uint8_t >( row, 2 ); - iconReputation = exdData->getField< uint32_t >( row, 3 ); - icon = exdData->getField< uint32_t >( row, 4 ); - maxRank = exdData->getField< uint8_t >( row, 5 ); - expansion = exdData->getField< uint8_t >( row, 6 ); - currencyItem = exdData->getField< uint32_t >( row, 7 ); - displayOrder = exdData->getField< uint8_t >( row, 8 ); - name = exdData->getField< std::string >( row, 9 ); - adjective = exdData->getField< int8_t >( row, 10 ); - plural = exdData->getField< std::string >( row, 11 ); - possessivePronoun = exdData->getField< int8_t >( row, 12 ); - startsWithVowel = exdData->getField< int8_t >( row, 13 ); - pronoun = exdData->getField< int8_t >( row, 14 ); - article = exdData->getField< int8_t >( row, 15 ); - dEF = exdData->getField< int8_t >( row, 16 ); - nameRelation = exdData->getField< std::string >( row, 17 ); -} - -Sapphire::Data::Behavior::Behavior( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BehaviorDat.get_row( row_id, subRow ); - condition0Target = exdData->getField< uint8_t >( row, 2 ); - condition0Type = exdData->getField< uint8_t >( row, 3 ); - balloon = exdData->getField< int32_t >( row, 4 ); - condition1Target = exdData->getField< uint8_t >( row, 9 ); - condition1Type = exdData->getField< uint8_t >( row, 10 ); - contentArgument0 = exdData->getField< uint32_t >( row, 11 ); - contentArgument1 = exdData->getField< uint8_t >( row, 12 ); -} - -Sapphire::Data::BehaviorPath::BehaviorPath( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BehaviorPathDat.get_row( row_id ); - isTurnTransition = exdData->getField< bool >( row, 0 ); - isFadeOut = exdData->getField< bool >( row, 1 ); - isFadeIn = exdData->getField< bool >( row, 2 ); - isWalking = exdData->getField< bool >( row, 3 ); - speed = exdData->getField< float >( row, 5 ); -} - -Sapphire::Data::BenchmarkOverrideEquipment::BenchmarkOverrideEquipment( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BenchmarkOverrideEquipmentDat.get_row( row_id ); - modelMainHand = exdData->getField< uint64_t >( row, 4 ); - dyeMainHand = exdData->getField< uint8_t >( row, 5 ); - modelOffHand = exdData->getField< uint64_t >( row, 6 ); - dyeOffHand = exdData->getField< uint8_t >( row, 7 ); - modelHead = exdData->getField< uint32_t >( row, 10 ); - dyeHead = exdData->getField< uint8_t >( row, 11 ); - modelBody = exdData->getField< uint32_t >( row, 12 ); - dyeBody = exdData->getField< uint8_t >( row, 13 ); - modelHands = exdData->getField< uint32_t >( row, 14 ); - dyeHands = exdData->getField< uint8_t >( row, 15 ); - modelLegs = exdData->getField< uint32_t >( row, 16 ); - dyeLegs = exdData->getField< uint8_t >( row, 17 ); - modelFeet = exdData->getField< uint32_t >( row, 18 ); - dyeFeet = exdData->getField< uint8_t >( row, 19 ); - modelEars = exdData->getField< uint32_t >( row, 20 ); - dyeEars = exdData->getField< uint8_t >( row, 21 ); - modelNeck = exdData->getField< uint32_t >( row, 22 ); - dyeNeck = exdData->getField< uint8_t >( row, 23 ); - modelWrists = exdData->getField< uint32_t >( row, 24 ); - dyeWrists = exdData->getField< uint8_t >( row, 25 ); - modelLeftRing = exdData->getField< uint32_t >( row, 26 ); - dyeLeftRing = exdData->getField< uint8_t >( row, 27 ); - modelRightRing = exdData->getField< uint32_t >( row, 28 ); - dyeRightRing = exdData->getField< uint8_t >( row, 29 ); -} - -Sapphire::Data::BGM::BGM( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BGMDat.get_row( row_id ); - file = exdData->getField< std::string >( row, 0 ); - priority = exdData->getField< uint8_t >( row, 1 ); - disableRestartTimeOut = exdData->getField< bool >( row, 2 ); - disableRestart = exdData->getField< bool >( row, 3 ); - passEnd = exdData->getField< bool >( row, 4 ); - disableRestartResetTime = exdData->getField< float >( row, 5 ); - specialMode = exdData->getField< uint8_t >( row, 6 ); -} - -Sapphire::Data::BGMFade::BGMFade( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BGMFadeDat.get_row( row_id ); - sceneOut = exdData->getField< int32_t >( row, 0 ); - sceneIn = exdData->getField< int32_t >( row, 1 ); - bGMFadeType = exdData->getField< int32_t >( row, 2 ); -} - -Sapphire::Data::BGMFadeType::BGMFadeType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BGMFadeTypeDat.get_row( row_id ); - fadeOutTime = exdData->getField< float >( row, 0 ); - fadeInTime = exdData->getField< float >( row, 1 ); - fadeInStartTime = exdData->getField< float >( row, 2 ); - resumeFadeInTime = exdData->getField< float >( row, 3 ); -} - -Sapphire::Data::BGMScene::BGMScene( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BGMSceneDat.get_row( row_id ); - enableDisableRestart = exdData->getField< bool >( row, 0 ); - resume = exdData->getField< bool >( row, 1 ); - enablePassEnd = exdData->getField< bool >( row, 2 ); - forceAutoReset = exdData->getField< bool >( row, 3 ); - ignoreBattle = exdData->getField< bool >( row, 4 ); -} - -Sapphire::Data::BGMSituation::BGMSituation( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BGMSituationDat.get_row( row_id ); - daytimeID = exdData->getField< uint16_t >( row, 0 ); - nightID = exdData->getField< uint16_t >( row, 1 ); - battleID = exdData->getField< uint16_t >( row, 2 ); - daybreakID = exdData->getField< uint16_t >( row, 3 ); - twilightID = exdData->getField< uint16_t >( row, 4 ); -} - -Sapphire::Data::BGMSwitch::BGMSwitch( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BGMSwitchDat.get_row( row_id, subRow ); - bGMSystemDefine = exdData->getField< uint8_t >( row, 0 ); - quest = exdData->getField< uint32_t >( row, 1 ); - bGM = exdData->getField< uint16_t >( row, 3 ); -} - -Sapphire::Data::BGMSystemDefine::BGMSystemDefine( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BGMSystemDefineDat.get_row( row_id ); - define = exdData->getField< float >( row, 0 ); -} - -Sapphire::Data::BNpcAnnounceIcon::BNpcAnnounceIcon( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BNpcAnnounceIconDat.get_row( row_id ); - icon = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::BNpcBase::BNpcBase( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BNpcBaseDat.get_row( row_id ); - behavior = exdData->getField< uint16_t >( row, 0 ); - battalion = exdData->getField< uint8_t >( row, 1 ); - linkRace = exdData->getField< uint8_t >( row, 2 ); - rank = exdData->getField< uint8_t >( row, 3 ); - scale = exdData->getField< float >( row, 4 ); - modelChara = exdData->getField< uint16_t >( row, 5 ); - bNpcCustomize = exdData->getField< uint16_t >( row, 6 ); - npcEquip = exdData->getField< uint16_t >( row, 7 ); - special = exdData->getField< uint16_t >( row, 8 ); - sEPack = exdData->getField< uint8_t >( row, 9 ); - arrayEventHandler = exdData->getField< int32_t >( row, 11 ); - bNpcParts = exdData->getField< uint8_t >( row, 12 ); - isTargetLine = exdData->getField< bool >( row, 14 ); - isDisplayLevel = exdData->getField< bool >( row, 15 ); -} - -Sapphire::Data::BNpcCustomize::BNpcCustomize( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BNpcCustomizeDat.get_row( row_id ); - race = exdData->getField< uint8_t >( row, 0 ); - gender = exdData->getField< uint8_t >( row, 1 ); - bodyType = exdData->getField< uint8_t >( row, 2 ); - height = exdData->getField< uint8_t >( row, 3 ); - tribe = exdData->getField< uint8_t >( row, 4 ); - face = exdData->getField< uint8_t >( row, 5 ); - hairStyle = exdData->getField< uint8_t >( row, 6 ); - hairHighlight = exdData->getField< uint8_t >( row, 7 ); - skinColor = exdData->getField< uint8_t >( row, 8 ); - eyeHeterochromia = exdData->getField< uint8_t >( row, 9 ); - hairColor = exdData->getField< uint8_t >( row, 10 ); - hairHighlightColor = exdData->getField< uint8_t >( row, 11 ); - facialFeature = exdData->getField< uint8_t >( row, 12 ); - facialFeatureColor = exdData->getField< uint8_t >( row, 13 ); - eyebrows = exdData->getField< uint8_t >( row, 14 ); - eyeColor = exdData->getField< uint8_t >( row, 15 ); - eyeShape = exdData->getField< uint8_t >( row, 16 ); - nose = exdData->getField< uint8_t >( row, 17 ); - jaw = exdData->getField< uint8_t >( row, 18 ); - mouth = exdData->getField< uint8_t >( row, 19 ); - lipColor = exdData->getField< uint8_t >( row, 20 ); - bustOrTone1 = exdData->getField< uint8_t >( row, 21 ); - extraFeature1 = exdData->getField< uint8_t >( row, 22 ); - extraFeature2OrBust = exdData->getField< uint8_t >( row, 23 ); - facePaint = exdData->getField< uint8_t >( row, 24 ); - facePaintColor = exdData->getField< uint8_t >( row, 25 ); -} - -Sapphire::Data::BNpcName::BNpcName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BNpcNameDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); -} - -Sapphire::Data::BNpcParts::BNpcParts( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BNpcPartsDat.get_row( row_id ); - bNpcBase1 = exdData->getField< uint16_t >( row, 0 ); - partSlot1 = exdData->getField< uint8_t >( row, 1 ); - x1 = exdData->getField< float >( row, 6 ); - y1 = exdData->getField< float >( row, 7 ); - z1 = exdData->getField< float >( row, 8 ); - scale1 = exdData->getField< float >( row, 10 ); - bNpcBase2 = exdData->getField< uint16_t >( row, 11 ); - partSlot2 = exdData->getField< uint8_t >( row, 12 ); - x2 = exdData->getField< float >( row, 17 ); - y2 = exdData->getField< float >( row, 18 ); - z2 = exdData->getField< float >( row, 19 ); - scale2 = exdData->getField< float >( row, 21 ); - bNpcBase3 = exdData->getField< uint16_t >( row, 22 ); - partSlot3 = exdData->getField< uint8_t >( row, 23 ); - x3 = exdData->getField< float >( row, 28 ); - y3 = exdData->getField< float >( row, 29 ); - z3 = exdData->getField< float >( row, 30 ); - scale3 = exdData->getField< int16_t >( row, 31 ); - bNpcBase4 = exdData->getField< uint16_t >( row, 33 ); - partSlot4 = exdData->getField< uint8_t >( row, 34 ); - x4 = exdData->getField< float >( row, 39 ); - y4 = exdData->getField< float >( row, 40 ); - z4 = exdData->getField< float >( row, 41 ); - scale4 = exdData->getField< float >( row, 43 ); - bNpcBase5 = exdData->getField< uint16_t >( row, 44 ); - partSlot5 = exdData->getField< uint8_t >( row, 45 ); - x5 = exdData->getField< float >( row, 50 ); - y5 = exdData->getField< float >( row, 51 ); - z5 = exdData->getField< float >( row, 52 ); - scale5 = exdData->getField< float >( row, 54 ); -} - -Sapphire::Data::BNpcState::BNpcState( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BNpcStateDat.get_row( row_id ); - slot = exdData->getField< uint8_t >( row, 0 ); - overRay = exdData->getField< int8_t >( row, 1 ); - idle = exdData->getField< uint16_t >( row, 4 ); - attribute0 = exdData->getField< uint8_t >( row, 5 ); - attributeFlag0 = exdData->getField< bool >( row, 6 ); - attribute1 = exdData->getField< uint8_t >( row, 7 ); - attributeFlag1 = exdData->getField< bool >( row, 8 ); - attribute2 = exdData->getField< uint8_t >( row, 9 ); - attributeFlag2 = exdData->getField< bool >( row, 10 ); - scale = exdData->getField< float >( row, 11 ); - loopTimeline = exdData->getField< int32_t >( row, 13 ); -} - -Sapphire::Data::Buddy::Buddy( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BuddyDat.get_row( row_id ); - base = exdData->getField< uint8_t >( row, 0 ); - questRequirement2 = exdData->getField< int32_t >( row, 1 ); - questRequirement1 = exdData->getField< int32_t >( row, 2 ); - baseEquip = exdData->getField< int32_t >( row, 3 ); - soundEffect4 = exdData->getField< std::string >( row, 4 ); - soundEffect3 = exdData->getField< std::string >( row, 5 ); - soundEffect2 = exdData->getField< std::string >( row, 6 ); - soundEffect1 = exdData->getField< std::string >( row, 7 ); -} - -Sapphire::Data::BuddyAction::BuddyAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BuddyActionDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - description = exdData->getField< std::string >( row, 1 ); - icon = exdData->getField< int32_t >( row, 2 ); - iconStatus = exdData->getField< int32_t >( row, 3 ); - reward = exdData->getField< uint16_t >( row, 4 ); - sort = exdData->getField< uint8_t >( row, 5 ); -} - -Sapphire::Data::BuddyEquip::BuddyEquip( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BuddyEquipDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); - name = exdData->getField< std::string >( row, 8 ); - modelTop = exdData->getField< int32_t >( row, 9 ); - modelBody = exdData->getField< int32_t >( row, 10 ); - modelLegs = exdData->getField< int32_t >( row, 11 ); - grandCompany = exdData->getField< uint8_t >( row, 12 ); - iconHead = exdData->getField< uint16_t >( row, 13 ); - iconBody = exdData->getField< uint16_t >( row, 14 ); - iconLegs = exdData->getField< uint16_t >( row, 15 ); - order = exdData->getField< uint8_t >( row, 16 ); -} - -Sapphire::Data::BuddyItem::BuddyItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BuddyItemDat.get_row( row_id ); - item = exdData->getField< uint16_t >( row, 0 ); - useField = exdData->getField< bool >( row, 1 ); - useTraining = exdData->getField< bool >( row, 2 ); - status = exdData->getField< uint8_t >( row, 4 ); -} - -Sapphire::Data::BuddyRank::BuddyRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BuddyRankDat.get_row( row_id ); - expRequired = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::BuddySkill::BuddySkill( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_BuddySkillDat.get_row( row_id ); - buddyLevel = exdData->getField< uint8_t >( row, 0 ); - isActive = exdData->getField< bool >( row, 1 ); - defender = exdData->getField< uint16_t >( row, 2 ); - attacker = exdData->getField< uint16_t >( row, 3 ); - healer = exdData->getField< uint16_t >( row, 4 ); -} - -Sapphire::Data::Cabinet::Cabinet( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CabinetDat.get_row( row_id ); - item = exdData->getField< int32_t >( row, 0 ); - order = exdData->getField< uint16_t >( row, 1 ); - category = exdData->getField< uint8_t >( row, 2 ); -} - -Sapphire::Data::CabinetCategory::CabinetCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CabinetCategoryDat.get_row( row_id ); - menuOrder = exdData->getField< uint8_t >( row, 0 ); - icon = exdData->getField< int32_t >( row, 1 ); - category = exdData->getField< int32_t >( row, 2 ); -} - -Sapphire::Data::Calendar::Calendar( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CalendarDat.get_row( row_id ); - month.push_back( exdData->getField< uint8_t >( row, 0 ) ); - month.push_back( exdData->getField< uint8_t >( row, 1 ) ); - month.push_back( exdData->getField< uint8_t >( row, 2 ) ); - month.push_back( exdData->getField< uint8_t >( row, 3 ) ); - month.push_back( exdData->getField< uint8_t >( row, 4 ) ); - month.push_back( exdData->getField< uint8_t >( row, 5 ) ); - month.push_back( exdData->getField< uint8_t >( row, 6 ) ); - month.push_back( exdData->getField< uint8_t >( row, 7 ) ); - month.push_back( exdData->getField< uint8_t >( row, 8 ) ); - month.push_back( exdData->getField< uint8_t >( row, 9 ) ); - month.push_back( exdData->getField< uint8_t >( row, 10 ) ); - month.push_back( exdData->getField< uint8_t >( row, 11 ) ); - month.push_back( exdData->getField< uint8_t >( row, 12 ) ); - month.push_back( exdData->getField< uint8_t >( row, 13 ) ); - month.push_back( exdData->getField< uint8_t >( row, 14 ) ); - month.push_back( exdData->getField< uint8_t >( row, 15 ) ); - month.push_back( exdData->getField< uint8_t >( row, 16 ) ); - month.push_back( exdData->getField< uint8_t >( row, 17 ) ); - month.push_back( exdData->getField< uint8_t >( row, 18 ) ); - month.push_back( exdData->getField< uint8_t >( row, 19 ) ); - month.push_back( exdData->getField< uint8_t >( row, 20 ) ); - month.push_back( exdData->getField< uint8_t >( row, 21 ) ); - month.push_back( exdData->getField< uint8_t >( row, 22 ) ); - month.push_back( exdData->getField< uint8_t >( row, 23 ) ); - month.push_back( exdData->getField< uint8_t >( row, 24 ) ); - month.push_back( exdData->getField< uint8_t >( row, 25 ) ); - month.push_back( exdData->getField< uint8_t >( row, 26 ) ); - month.push_back( exdData->getField< uint8_t >( row, 27 ) ); - month.push_back( exdData->getField< uint8_t >( row, 28 ) ); - month.push_back( exdData->getField< uint8_t >( row, 29 ) ); - month.push_back( exdData->getField< uint8_t >( row, 30 ) ); - month.push_back( exdData->getField< uint8_t >( row, 31 ) ); - day.push_back( exdData->getField< uint8_t >( row, 32 ) ); - day.push_back( exdData->getField< uint8_t >( row, 33 ) ); - day.push_back( exdData->getField< uint8_t >( row, 34 ) ); - day.push_back( exdData->getField< uint8_t >( row, 35 ) ); - day.push_back( exdData->getField< uint8_t >( row, 36 ) ); - day.push_back( exdData->getField< uint8_t >( row, 37 ) ); - day.push_back( exdData->getField< uint8_t >( row, 38 ) ); - day.push_back( exdData->getField< uint8_t >( row, 39 ) ); - day.push_back( exdData->getField< uint8_t >( row, 40 ) ); - day.push_back( exdData->getField< uint8_t >( row, 41 ) ); - day.push_back( exdData->getField< uint8_t >( row, 42 ) ); - day.push_back( exdData->getField< uint8_t >( row, 43 ) ); - day.push_back( exdData->getField< uint8_t >( row, 44 ) ); - day.push_back( exdData->getField< uint8_t >( row, 45 ) ); - day.push_back( exdData->getField< uint8_t >( row, 46 ) ); - day.push_back( exdData->getField< uint8_t >( row, 47 ) ); - day.push_back( exdData->getField< uint8_t >( row, 48 ) ); - day.push_back( exdData->getField< uint8_t >( row, 49 ) ); - day.push_back( exdData->getField< uint8_t >( row, 50 ) ); - day.push_back( exdData->getField< uint8_t >( row, 51 ) ); - day.push_back( exdData->getField< uint8_t >( row, 52 ) ); - day.push_back( exdData->getField< uint8_t >( row, 53 ) ); - day.push_back( exdData->getField< uint8_t >( row, 54 ) ); - day.push_back( exdData->getField< uint8_t >( row, 55 ) ); - day.push_back( exdData->getField< uint8_t >( row, 56 ) ); - day.push_back( exdData->getField< uint8_t >( row, 57 ) ); - day.push_back( exdData->getField< uint8_t >( row, 58 ) ); - day.push_back( exdData->getField< uint8_t >( row, 59 ) ); - day.push_back( exdData->getField< uint8_t >( row, 60 ) ); - day.push_back( exdData->getField< uint8_t >( row, 61 ) ); - day.push_back( exdData->getField< uint8_t >( row, 62 ) ); - day.push_back( exdData->getField< uint8_t >( row, 63 ) ); -} - -Sapphire::Data::Carry::Carry( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CarryDat.get_row( row_id ); - model = exdData->getField< uint64_t >( row, 0 ); - timeline = exdData->getField< uint8_t >( row, 1 ); -} - -Sapphire::Data::Channeling::Channeling( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ChannelingDat.get_row( row_id ); - file = exdData->getField< std::string >( row, 0 ); - widthScale = exdData->getField< uint8_t >( row, 1 ); -} - -Sapphire::Data::CharaMakeClassEquip::CharaMakeClassEquip( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CharaMakeClassEquipDat.get_row( row_id ); - helmet = exdData->getField< uint64_t >( row, 0 ); - top = exdData->getField< uint64_t >( row, 1 ); - glove = exdData->getField< uint64_t >( row, 2 ); - down = exdData->getField< uint64_t >( row, 3 ); - shoes = exdData->getField< uint64_t >( row, 4 ); - weapon = exdData->getField< uint64_t >( row, 5 ); - subWeapon = exdData->getField< uint64_t >( row, 6 ); - _class = exdData->getField< int32_t >( row, 7 ); -} - -Sapphire::Data::CharaMakeCustomize::CharaMakeCustomize( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CharaMakeCustomizeDat.get_row( row_id ); - featureID = exdData->getField< uint8_t >( row, 0 ); - icon = exdData->getField< uint32_t >( row, 1 ); - data = exdData->getField< uint16_t >( row, 2 ); - isPurchasable = exdData->getField< bool >( row, 3 ); - hint = exdData->getField< uint32_t >( row, 4 ); - hintItem = exdData->getField< uint32_t >( row, 5 ); -} - -Sapphire::Data::CharaMakeName::CharaMakeName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CharaMakeNameDat.get_row( row_id ); - hyurMidlanderMale = exdData->getField< std::string >( row, 0 ); - hyurMidlanderFemale = exdData->getField< std::string >( row, 1 ); - hyurMidlanderLastName = exdData->getField< std::string >( row, 2 ); - hyurHighlanderMale = exdData->getField< std::string >( row, 3 ); - hyurHighlanderFemale = exdData->getField< std::string >( row, 4 ); - hyurHighlanderLastName = exdData->getField< std::string >( row, 5 ); - elezenMale = exdData->getField< std::string >( row, 6 ); - elezenFemale = exdData->getField< std::string >( row, 7 ); - elezenWildwoodLastName = exdData->getField< std::string >( row, 8 ); - elezenDuskwightLastName = exdData->getField< std::string >( row, 9 ); - miqoteSunMale = exdData->getField< std::string >( row, 10 ); - miqoteSunFemale = exdData->getField< std::string >( row, 11 ); - miqoteSunMaleLastName = exdData->getField< std::string >( row, 12 ); - miqoteSunFemaleLastName = exdData->getField< std::string >( row, 13 ); - miqoteMoonMale = exdData->getField< std::string >( row, 14 ); - miqoteMoonFemale = exdData->getField< std::string >( row, 15 ); - miqoteMoonLastname = exdData->getField< std::string >( row, 16 ); - lalafellPlainsfolkFirstNameStart = exdData->getField< std::string >( row, 17 ); - lalafellPlainsfolkLastNameStart = exdData->getField< std::string >( row, 18 ); - lalafellPlainsfolkEndOfNames = exdData->getField< std::string >( row, 19 ); - lalafellDunesfolkMale = exdData->getField< std::string >( row, 20 ); - lalafellDunesfolkMaleLastName = exdData->getField< std::string >( row, 21 ); - lalafellDunesfolkFemale = exdData->getField< std::string >( row, 22 ); - lalafellDunesfolkFemaleLastName = exdData->getField< std::string >( row, 23 ); - roegadynSeaWolfMale = exdData->getField< std::string >( row, 24 ); - roegadynSeaWolfMaleLastName = exdData->getField< std::string >( row, 25 ); - roegadynSeaWolfFemale = exdData->getField< std::string >( row, 26 ); - roegadynSeaWolfFemaleLastName = exdData->getField< std::string >( row, 27 ); - roegadynHellsguardFirstName = exdData->getField< std::string >( row, 28 ); - roegadynHellsguardMaleLastName = exdData->getField< std::string >( row, 29 ); - roegadynHellsguardFemaleLastName = exdData->getField< std::string >( row, 30 ); - auRaRaenMale = exdData->getField< std::string >( row, 31 ); - auRaRaenFemale = exdData->getField< std::string >( row, 32 ); - auRaRaenLastName = exdData->getField< std::string >( row, 33 ); - auRaXaelaMale = exdData->getField< std::string >( row, 34 ); - auRaXaelaFemale = exdData->getField< std::string >( row, 35 ); - auRaXaelaLastName = exdData->getField< std::string >( row, 36 ); - hrothgarHellionsFirstName = exdData->getField< std::string >( row, 37 ); - hrothgarHellionsLastName = exdData->getField< std::string >( row, 38 ); - hrothgarLostFirstName = exdData->getField< std::string >( row, 39 ); - hrothgarLostLastName = exdData->getField< std::string >( row, 40 ); - vieraFirstName = exdData->getField< std::string >( row, 41 ); - vieraRavaLastName = exdData->getField< std::string >( row, 42 ); - vieraVeenaLastName = exdData->getField< std::string >( row, 43 ); -} - -Sapphire::Data::CharaMakeType::CharaMakeType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CharaMakeTypeDat.get_row( row_id ); - race = exdData->getField< int32_t >( row, 0 ); - tribe = exdData->getField< int32_t >( row, 1 ); - gender = exdData->getField< int8_t >( row, 2 ); - menu.push_back( exdData->getField< uint32_t >( row, 3 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 4 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 5 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 6 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 7 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 8 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 9 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 10 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 11 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 12 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 13 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 14 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 15 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 16 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 17 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 18 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 19 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 20 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 21 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 22 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 23 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 24 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 25 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 26 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 27 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 28 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 29 ) ); - menu.push_back( exdData->getField< uint32_t >( row, 30 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 31 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 32 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 33 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 34 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 35 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 36 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 37 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 38 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 39 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 40 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 41 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 42 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 43 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 44 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 45 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 46 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 47 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 48 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 49 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 50 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 51 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 52 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 53 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 54 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 55 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 56 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 57 ) ); - initVal.push_back( exdData->getField< uint8_t >( row, 58 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 59 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 60 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 61 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 62 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 63 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 64 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 65 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 66 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 67 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 68 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 69 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 70 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 71 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 72 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 73 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 74 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 75 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 76 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 77 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 78 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 79 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 80 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 81 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 82 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 83 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 84 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 85 ) ); - subMenuType.push_back( exdData->getField< uint8_t >( row, 86 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 87 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 88 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 89 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 90 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 91 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 92 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 93 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 94 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 95 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 96 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 97 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 98 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 99 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 100 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 101 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 102 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 103 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 104 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 105 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 106 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 107 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 108 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 109 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 110 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 111 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 112 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 113 ) ); - subMenuNum.push_back( exdData->getField< uint8_t >( row, 114 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 115 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 116 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 117 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 118 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 119 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 120 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 121 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 122 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 123 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 124 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 125 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 126 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 127 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 128 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 129 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 130 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 131 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 132 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 133 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 134 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 135 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 136 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 137 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 138 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 139 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 140 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 141 ) ); - lookAt.push_back( exdData->getField< uint8_t >( row, 142 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 143 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 144 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 145 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 146 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 147 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 148 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 149 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 150 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 151 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 152 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 153 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 154 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 155 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 156 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 157 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 158 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 159 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 160 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 161 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 162 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 163 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 164 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 165 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 166 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 167 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 168 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 169 ) ); - subMenuMask.push_back( exdData->getField< uint32_t >( row, 170 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 171 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 172 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 173 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 174 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 175 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 176 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 177 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 178 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 179 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 180 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 181 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 182 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 183 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 184 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 185 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 186 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 187 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 188 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 189 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 190 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 191 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 192 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 193 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 194 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 195 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 196 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 197 ) ); - customize.push_back( exdData->getField< uint32_t >( row, 198 ) ); - voiceStruct.push_back( exdData->getField< uint8_t >( row, 3279 ) ); - voiceStruct.push_back( exdData->getField< uint8_t >( row, 3280 ) ); - voiceStruct.push_back( exdData->getField< uint8_t >( row, 3281 ) ); - voiceStruct.push_back( exdData->getField< uint8_t >( row, 3282 ) ); - voiceStruct.push_back( exdData->getField< uint8_t >( row, 3283 ) ); - voiceStruct.push_back( exdData->getField< uint8_t >( row, 3284 ) ); - voiceStruct.push_back( exdData->getField< uint8_t >( row, 3285 ) ); - voiceStruct.push_back( exdData->getField< uint8_t >( row, 3286 ) ); - voiceStruct.push_back( exdData->getField< uint8_t >( row, 3287 ) ); - voiceStruct.push_back( exdData->getField< uint8_t >( row, 3288 ) ); - voiceStruct.push_back( exdData->getField< uint8_t >( row, 3289 ) ); - voiceStruct.push_back( exdData->getField< uint8_t >( row, 3290 ) ); -} - -Sapphire::Data::ChocoboRace::ChocoboRace( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ChocoboRaceDat.get_row( row_id ); - chocoboRaceRank = exdData->getField< uint8_t >( row, 0 ); - chocoboRaceTerritory = exdData->getField< uint8_t >( row, 1 ); -} - -Sapphire::Data::ChocoboRaceAbility::ChocoboRaceAbility( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ChocoboRaceAbilityDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - description = exdData->getField< std::string >( row, 1 ); - icon = exdData->getField< uint32_t >( row, 2 ); - chocoboRaceAbilityType = exdData->getField< int8_t >( row, 3 ); - value = exdData->getField< uint8_t >( row, 4 ); -} - -Sapphire::Data::ChocoboRaceAbilityType::ChocoboRaceAbilityType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ChocoboRaceAbilityTypeDat.get_row( row_id ); - isActive = exdData->getField< bool >( row, 0 ); -} - -Sapphire::Data::ChocoboRaceItem::ChocoboRaceItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ChocoboRaceItemDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - description = exdData->getField< std::string >( row, 1 ); - icon = exdData->getField< uint32_t >( row, 2 ); -} - -Sapphire::Data::ChocoboRaceRank::ChocoboRaceRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ChocoboRaceRankDat.get_row( row_id ); - ratingMin = exdData->getField< uint16_t >( row, 0 ); - ratingMax = exdData->getField< uint16_t >( row, 1 ); - name = exdData->getField< uint16_t >( row, 2 ); - fee = exdData->getField< uint16_t >( row, 3 ); - icon = exdData->getField< int32_t >( row, 4 ); -} - -Sapphire::Data::ChocoboRaceStatus::ChocoboRaceStatus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ChocoboRaceStatusDat.get_row( row_id ); - status = exdData->getField< int32_t >( row, 0 ); -} - -Sapphire::Data::ChocoboRaceTerritory::ChocoboRaceTerritory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ChocoboRaceTerritoryDat.get_row( row_id ); - name = exdData->getField< uint16_t >( row, 0 ); - icon = exdData->getField< int32_t >( row, 1 ); -} - -Sapphire::Data::ChocoboRaceTutorial::ChocoboRaceTutorial( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ChocoboRaceTutorialDat.get_row( row_id ); - npcYell.push_back( exdData->getField< int32_t >( row, 0 ) ); - npcYell.push_back( exdData->getField< int32_t >( row, 1 ) ); - npcYell.push_back( exdData->getField< int32_t >( row, 2 ) ); - npcYell.push_back( exdData->getField< int32_t >( row, 3 ) ); - npcYell.push_back( exdData->getField< int32_t >( row, 4 ) ); - npcYell.push_back( exdData->getField< int32_t >( row, 5 ) ); - npcYell.push_back( exdData->getField< int32_t >( row, 6 ) ); - npcYell.push_back( exdData->getField< int32_t >( row, 7 ) ); -} - -Sapphire::Data::ChocoboRaceWeather::ChocoboRaceWeather( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ChocoboRaceWeatherDat.get_row( row_id ); - weatherType1 = exdData->getField< int32_t >( row, 0 ); - weatherType2 = exdData->getField< int32_t >( row, 1 ); -} - -Sapphire::Data::ChocoboTaxi::ChocoboTaxi( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ChocoboTaxiDat.get_row( row_id ); - location = exdData->getField< uint32_t >( row, 0 ); - fare = exdData->getField< uint8_t >( row, 1 ); - timeRequired = exdData->getField< uint16_t >( row, 2 ); -} - -Sapphire::Data::ChocoboTaxiStand::ChocoboTaxiStand( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ChocoboTaxiStandDat.get_row( row_id ); - targetLocations.push_back( exdData->getField< uint16_t >( row, 0 ) ); - targetLocations.push_back( exdData->getField< uint16_t >( row, 1 ) ); - targetLocations.push_back( exdData->getField< uint16_t >( row, 2 ) ); - targetLocations.push_back( exdData->getField< uint16_t >( row, 3 ) ); - targetLocations.push_back( exdData->getField< uint16_t >( row, 4 ) ); - targetLocations.push_back( exdData->getField< uint16_t >( row, 5 ) ); - targetLocations.push_back( exdData->getField< uint16_t >( row, 6 ) ); - targetLocations.push_back( exdData->getField< uint16_t >( row, 7 ) ); - placeName = exdData->getField< std::string >( row, 8 ); -} - -Sapphire::Data::CircleActivity::CircleActivity( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CircleActivityDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - icon = exdData->getField< int32_t >( row, 1 ); - order = exdData->getField< uint16_t >( row, 2 ); -} - -Sapphire::Data::ClassJob::ClassJob( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ClassJobDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - abbreviation = exdData->getField< std::string >( row, 1 ); - classJobCategory = exdData->getField< uint8_t >( row, 3 ); - expArrayIndex = exdData->getField< int8_t >( row, 4 ); - battleClassIndex = exdData->getField< int8_t >( row, 5 ); - jobIndex = exdData->getField< uint8_t >( row, 7 ); - dohDolJobIndex = exdData->getField< int8_t >( row, 8 ); - modifierHitPoints = exdData->getField< uint16_t >( row, 9 ); - modifierManaPoints = exdData->getField< uint16_t >( row, 10 ); - modifierStrength = exdData->getField< uint16_t >( row, 11 ); - modifierVitality = exdData->getField< uint16_t >( row, 12 ); - modifierDexterity = exdData->getField< uint16_t >( row, 13 ); - modifierIntelligence = exdData->getField< uint16_t >( row, 14 ); - modifierMind = exdData->getField< uint16_t >( row, 15 ); - modifierPiety = exdData->getField< uint16_t >( row, 16 ); - pvPActionSortRow = exdData->getField< uint8_t >( row, 24 ); - classJobParent = exdData->getField< uint8_t >( row, 26 ); - nameEnglish = exdData->getField< std::string >( row, 27 ); - itemStartingWeapon = exdData->getField< int32_t >( row, 28 ); - role = exdData->getField< uint8_t >( row, 30 ); - startingTown = exdData->getField< uint8_t >( row, 31 ); - monsterNote = exdData->getField< int8_t >( row, 32 ); - primaryStat = exdData->getField< uint8_t >( row, 33 ); - limitBreak1 = exdData->getField< uint16_t >( row, 34 ); - limitBreak2 = exdData->getField< uint16_t >( row, 35 ); - limitBreak3 = exdData->getField< uint16_t >( row, 36 ); - uIPriority = exdData->getField< uint8_t >( row, 37 ); - itemSoulCrystal = exdData->getField< uint32_t >( row, 38 ); - unlockQuest = exdData->getField< uint32_t >( row, 39 ); - relicQuest = exdData->getField< uint32_t >( row, 40 ); - prerequisite = exdData->getField< uint32_t >( row, 41 ); - startingLevel = exdData->getField< uint8_t >( row, 42 ); - partyBonus = exdData->getField< uint8_t >( row, 43 ); - isLimitedJob = exdData->getField< bool >( row, 44 ); - canQueueForDuty = exdData->getField< bool >( row, 45 ); -} - -Sapphire::Data::ClassJobCategory::ClassJobCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ClassJobCategoryDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - aDV = exdData->getField< bool >( row, 1 ); - gLA = exdData->getField< bool >( row, 2 ); - pGL = exdData->getField< bool >( row, 3 ); - mRD = exdData->getField< bool >( row, 4 ); - lNC = exdData->getField< bool >( row, 5 ); - aRC = exdData->getField< bool >( row, 6 ); - cNJ = exdData->getField< bool >( row, 7 ); - tHM = exdData->getField< bool >( row, 8 ); - cRP = exdData->getField< bool >( row, 9 ); - bSM = exdData->getField< bool >( row, 10 ); - aRM = exdData->getField< bool >( row, 11 ); - gSM = exdData->getField< bool >( row, 12 ); - lTW = exdData->getField< bool >( row, 13 ); - wVR = exdData->getField< bool >( row, 14 ); - aLC = exdData->getField< bool >( row, 15 ); - cUL = exdData->getField< bool >( row, 16 ); - mIN = exdData->getField< bool >( row, 17 ); - bTN = exdData->getField< bool >( row, 18 ); - fSH = exdData->getField< bool >( row, 19 ); - pLD = exdData->getField< bool >( row, 20 ); - mNK = exdData->getField< bool >( row, 21 ); - wAR = exdData->getField< bool >( row, 22 ); - dRG = exdData->getField< bool >( row, 23 ); - bRD = exdData->getField< bool >( row, 24 ); - wHM = exdData->getField< bool >( row, 25 ); - bLM = exdData->getField< bool >( row, 26 ); - aCN = exdData->getField< bool >( row, 27 ); - sMN = exdData->getField< bool >( row, 28 ); - sCH = exdData->getField< bool >( row, 29 ); - rOG = exdData->getField< bool >( row, 30 ); - nIN = exdData->getField< bool >( row, 31 ); - mCH = exdData->getField< bool >( row, 32 ); - dRK = exdData->getField< bool >( row, 33 ); - aST = exdData->getField< bool >( row, 34 ); - sAM = exdData->getField< bool >( row, 35 ); - rDM = exdData->getField< bool >( row, 36 ); - bLU = exdData->getField< bool >( row, 37 ); - gNB = exdData->getField< bool >( row, 38 ); - dNC = exdData->getField< bool >( row, 39 ); -} - -Sapphire::Data::CollectablesShop::CollectablesShop( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CollectablesShopDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - quest = exdData->getField< uint32_t >( row, 1 ); - rewardType = exdData->getField< uint8_t >( row, 2 ); - shopItems.push_back( exdData->getField< uint16_t >( row, 3 ) ); - shopItems.push_back( exdData->getField< uint16_t >( row, 4 ) ); - shopItems.push_back( exdData->getField< uint16_t >( row, 5 ) ); - shopItems.push_back( exdData->getField< uint16_t >( row, 6 ) ); - shopItems.push_back( exdData->getField< uint16_t >( row, 7 ) ); - shopItems.push_back( exdData->getField< uint16_t >( row, 8 ) ); - shopItems.push_back( exdData->getField< uint16_t >( row, 9 ) ); - shopItems.push_back( exdData->getField< uint16_t >( row, 10 ) ); - shopItems.push_back( exdData->getField< uint16_t >( row, 11 ) ); - shopItems.push_back( exdData->getField< uint16_t >( row, 12 ) ); - shopItems.push_back( exdData->getField< uint16_t >( row, 13 ) ); -} - -Sapphire::Data::CollectablesShopItem::CollectablesShopItem( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CollectablesShopItemDat.get_row( row_id, subRow ); - item = exdData->getField< uint32_t >( row, 0 ); - collectablesShopItemGroup = exdData->getField< uint8_t >( row, 1 ); - levelMin = exdData->getField< uint16_t >( row, 2 ); - levelMax = exdData->getField< uint16_t >( row, 3 ); - stars = exdData->getField< uint8_t >( row, 4 ); - key = exdData->getField< uint8_t >( row, 5 ); - collectablesShopRefine = exdData->getField< uint16_t >( row, 6 ); - collectablesShopRewardScrip = exdData->getField< uint16_t >( row, 7 ); -} - -Sapphire::Data::CollectablesShopItemGroup::CollectablesShopItemGroup( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CollectablesShopItemGroupDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::CollectablesShopRefine::CollectablesShopRefine( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CollectablesShopRefineDat.get_row( row_id ); - lowCollectability = exdData->getField< uint16_t >( row, 0 ); - midCollectability = exdData->getField< uint16_t >( row, 1 ); - highCollectability = exdData->getField< uint16_t >( row, 2 ); -} - -Sapphire::Data::CollectablesShopRewardItem::CollectablesShopRewardItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CollectablesShopRewardItemDat.get_row( row_id ); - item = exdData->getField< uint32_t >( row, 0 ); - rewardLow = exdData->getField< uint8_t >( row, 2 ); - rewardMid = exdData->getField< uint8_t >( row, 3 ); - rewardHigh = exdData->getField< uint8_t >( row, 4 ); -} - -Sapphire::Data::CollectablesShopRewardScrip::CollectablesShopRewardScrip( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CollectablesShopRewardScripDat.get_row( row_id ); - currency = exdData->getField< uint16_t >( row, 0 ); - lowReward = exdData->getField< uint16_t >( row, 1 ); - midReward = exdData->getField< uint16_t >( row, 2 ); - highReward = exdData->getField< uint16_t >( row, 3 ); - expRatioLow = exdData->getField< uint16_t >( row, 4 ); - expRatioMid = exdData->getField< uint16_t >( row, 5 ); - expRatioHigh = exdData->getField< uint16_t >( row, 6 ); -} - -Sapphire::Data::Companion::Companion( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CompanionDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); - model = exdData->getField< uint16_t >( row, 8 ); - scale = exdData->getField< uint8_t >( row, 9 ); - inactiveIdle0 = exdData->getField< uint8_t >( row, 10 ); - inactiveIdle1 = exdData->getField< uint8_t >( row, 11 ); - inactiveBattle = exdData->getField< uint8_t >( row, 12 ); - inactiveWandering = exdData->getField< uint8_t >( row, 13 ); - behavior = exdData->getField< uint8_t >( row, 14 ); - special = exdData->getField< uint8_t >( row, 15 ); - wanderingWait = exdData->getField< uint8_t >( row, 16 ); - priority = exdData->getField< uint16_t >( row, 17 ); - roulette = exdData->getField< bool >( row, 18 ); - battle = exdData->getField< bool >( row, 20 ); - lookAt = exdData->getField< bool >( row, 21 ); - poke = exdData->getField< bool >( row, 22 ); - enemy = exdData->getField< uint16_t >( row, 23 ); - stroke = exdData->getField< bool >( row, 24 ); - clapping = exdData->getField< bool >( row, 25 ); - icon = exdData->getField< uint16_t >( row, 26 ); - order = exdData->getField< uint16_t >( row, 27 ); - cost = exdData->getField< uint8_t >( row, 30 ); - hP = exdData->getField< uint16_t >( row, 31 ); - skillAngle = exdData->getField< uint16_t >( row, 33 ); - skillCost = exdData->getField< uint8_t >( row, 34 ); - minionRace = exdData->getField< uint8_t >( row, 37 ); -} - -Sapphire::Data::CompanionMove::CompanionMove( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CompanionMoveDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::CompanionTransient::CompanionTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CompanionTransientDat.get_row( row_id ); - description = exdData->getField< std::string >( row, 0 ); - descriptionEnhanced = exdData->getField< std::string >( row, 1 ); - tooltip = exdData->getField< std::string >( row, 2 ); - specialActionName = exdData->getField< std::string >( row, 3 ); - specialActionDescription = exdData->getField< std::string >( row, 4 ); - attack = exdData->getField< uint8_t >( row, 5 ); - defense = exdData->getField< uint8_t >( row, 6 ); - speed = exdData->getField< uint8_t >( row, 7 ); - hasAreaAttack = exdData->getField< bool >( row, 8 ); - strengthGate = exdData->getField< bool >( row, 9 ); - strengthEye = exdData->getField< bool >( row, 10 ); - strengthShield = exdData->getField< bool >( row, 11 ); - strengthArcana = exdData->getField< bool >( row, 12 ); - minionSkillType = exdData->getField< uint8_t >( row, 13 ); -} - -Sapphire::Data::CompanyAction::CompanyAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CompanyActionDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - description = exdData->getField< std::string >( row, 1 ); - icon = exdData->getField< int32_t >( row, 2 ); - fCRank = exdData->getField< uint8_t >( row, 3 ); - cost = exdData->getField< uint32_t >( row, 4 ); - order = exdData->getField< uint8_t >( row, 5 ); - purchasable = exdData->getField< bool >( row, 6 ); -} - -Sapphire::Data::CompanyCraftDraft::CompanyCraftDraft( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CompanyCraftDraftDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - companyCraftDraftCategory = exdData->getField< uint8_t >( row, 1 ); - order = exdData->getField< uint32_t >( row, 8 ); -} - -Sapphire::Data::CompanyCraftDraftCategory::CompanyCraftDraftCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CompanyCraftDraftCategoryDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::CompanyCraftManufactoryState::CompanyCraftManufactoryState( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CompanyCraftManufactoryStateDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::CompanyCraftPart::CompanyCraftPart( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CompanyCraftPartDat.get_row( row_id ); - companyCraftType = exdData->getField< uint8_t >( row, 1 ); - companyCraftProcess.push_back( exdData->getField< uint16_t >( row, 2 ) ); - companyCraftProcess.push_back( exdData->getField< uint16_t >( row, 3 ) ); - companyCraftProcess.push_back( exdData->getField< uint16_t >( row, 4 ) ); -} - -Sapphire::Data::CompanyCraftProcess::CompanyCraftProcess( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CompanyCraftProcessDat.get_row( row_id ); -} - -Sapphire::Data::CompanyCraftSequence::CompanyCraftSequence( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CompanyCraftSequenceDat.get_row( row_id ); - resultItem = exdData->getField< int32_t >( row, 0 ); - category = exdData->getField< int32_t >( row, 1 ); - companyCraftDraftCategory = exdData->getField< int32_t >( row, 2 ); - companyCraftType = exdData->getField< int32_t >( row, 3 ); - companyCraftDraft = exdData->getField< int32_t >( row, 4 ); - companyCraftPart.push_back( exdData->getField< uint16_t >( row, 5 ) ); - companyCraftPart.push_back( exdData->getField< uint16_t >( row, 6 ) ); - companyCraftPart.push_back( exdData->getField< uint16_t >( row, 7 ) ); - companyCraftPart.push_back( exdData->getField< uint16_t >( row, 8 ) ); - companyCraftPart.push_back( exdData->getField< uint16_t >( row, 9 ) ); - companyCraftPart.push_back( exdData->getField< uint16_t >( row, 10 ) ); - companyCraftPart.push_back( exdData->getField< uint16_t >( row, 11 ) ); - companyCraftPart.push_back( exdData->getField< uint16_t >( row, 12 ) ); - order = exdData->getField< uint32_t >( row, 13 ); -} - -Sapphire::Data::CompanyCraftSupplyItem::CompanyCraftSupplyItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CompanyCraftSupplyItemDat.get_row( row_id ); - item = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::CompanyCraftType::CompanyCraftType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CompanyCraftTypeDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::CompanyLeve::CompanyLeve( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CompanyLeveDat.get_row( row_id ); - routePointTime.push_back( exdData->getField< uint16_t >( row, 0 ) ); - routePointTime.push_back( exdData->getField< uint16_t >( row, 1 ) ); - routePointTime.push_back( exdData->getField< uint16_t >( row, 2 ) ); - routePointTime.push_back( exdData->getField< uint16_t >( row, 3 ) ); - routePointTime.push_back( exdData->getField< uint16_t >( row, 4 ) ); - routePointTime.push_back( exdData->getField< uint16_t >( row, 5 ) ); - routePointTime.push_back( exdData->getField< uint16_t >( row, 6 ) ); - routePointTime.push_back( exdData->getField< uint16_t >( row, 7 ) ); - baseID.push_back( exdData->getField< int32_t >( row, 8 ) ); - baseID.push_back( exdData->getField< int32_t >( row, 9 ) ); - baseID.push_back( exdData->getField< int32_t >( row, 10 ) ); - baseID.push_back( exdData->getField< int32_t >( row, 11 ) ); - baseID.push_back( exdData->getField< int32_t >( row, 12 ) ); - baseID.push_back( exdData->getField< int32_t >( row, 13 ) ); - baseID.push_back( exdData->getField< int32_t >( row, 14 ) ); - baseID.push_back( exdData->getField< int32_t >( row, 15 ) ); - enemyLevel.push_back( exdData->getField< uint16_t >( row, 16 ) ); - enemyLevel.push_back( exdData->getField< uint16_t >( row, 17 ) ); - enemyLevel.push_back( exdData->getField< uint16_t >( row, 18 ) ); - enemyLevel.push_back( exdData->getField< uint16_t >( row, 19 ) ); - enemyLevel.push_back( exdData->getField< uint16_t >( row, 20 ) ); - enemyLevel.push_back( exdData->getField< uint16_t >( row, 21 ) ); - enemyLevel.push_back( exdData->getField< uint16_t >( row, 22 ) ); - enemyLevel.push_back( exdData->getField< uint16_t >( row, 23 ) ); - bNpcName.push_back( exdData->getField< uint32_t >( row, 24 ) ); - bNpcName.push_back( exdData->getField< uint32_t >( row, 25 ) ); - bNpcName.push_back( exdData->getField< uint32_t >( row, 26 ) ); - bNpcName.push_back( exdData->getField< uint32_t >( row, 27 ) ); - bNpcName.push_back( exdData->getField< uint32_t >( row, 28 ) ); - bNpcName.push_back( exdData->getField< uint32_t >( row, 29 ) ); - bNpcName.push_back( exdData->getField< uint32_t >( row, 30 ) ); - bNpcName.push_back( exdData->getField< uint32_t >( row, 31 ) ); - itemsInvolved.push_back( exdData->getField< int32_t >( row, 32 ) ); - itemsInvolved.push_back( exdData->getField< int32_t >( row, 33 ) ); - itemsInvolved.push_back( exdData->getField< int32_t >( row, 34 ) ); - itemsInvolved.push_back( exdData->getField< int32_t >( row, 35 ) ); - itemsInvolved.push_back( exdData->getField< int32_t >( row, 36 ) ); - itemsInvolved.push_back( exdData->getField< int32_t >( row, 37 ) ); - itemsInvolved.push_back( exdData->getField< int32_t >( row, 38 ) ); - itemsInvolved.push_back( exdData->getField< int32_t >( row, 39 ) ); - itemsInvolvedQty.push_back( exdData->getField< uint8_t >( row, 40 ) ); - itemsInvolvedQty.push_back( exdData->getField< uint8_t >( row, 41 ) ); - itemsInvolvedQty.push_back( exdData->getField< uint8_t >( row, 42 ) ); - itemsInvolvedQty.push_back( exdData->getField< uint8_t >( row, 43 ) ); - itemsInvolvedQty.push_back( exdData->getField< uint8_t >( row, 44 ) ); - itemsInvolvedQty.push_back( exdData->getField< uint8_t >( row, 45 ) ); - itemsInvolvedQty.push_back( exdData->getField< uint8_t >( row, 46 ) ); - itemsInvolvedQty.push_back( exdData->getField< uint8_t >( row, 47 ) ); - itemDropRate.push_back( exdData->getField< uint8_t >( row, 48 ) ); - itemDropRate.push_back( exdData->getField< uint8_t >( row, 49 ) ); - itemDropRate.push_back( exdData->getField< uint8_t >( row, 50 ) ); - itemDropRate.push_back( exdData->getField< uint8_t >( row, 51 ) ); - itemDropRate.push_back( exdData->getField< uint8_t >( row, 52 ) ); - itemDropRate.push_back( exdData->getField< uint8_t >( row, 53 ) ); - itemDropRate.push_back( exdData->getField< uint8_t >( row, 54 ) ); - itemDropRate.push_back( exdData->getField< uint8_t >( row, 55 ) ); - toDoSequence.push_back( exdData->getField< uint8_t >( row, 168 ) ); - toDoSequence.push_back( exdData->getField< uint8_t >( row, 169 ) ); - toDoSequence.push_back( exdData->getField< uint8_t >( row, 170 ) ); - toDoSequence.push_back( exdData->getField< uint8_t >( row, 171 ) ); - toDoSequence.push_back( exdData->getField< uint8_t >( row, 172 ) ); - toDoSequence.push_back( exdData->getField< uint8_t >( row, 173 ) ); - toDoSequence.push_back( exdData->getField< uint8_t >( row, 174 ) ); - toDoSequence.push_back( exdData->getField< uint8_t >( row, 175 ) ); - rule = exdData->getField< int32_t >( row, 176 ); - ruleParam = exdData->getField< uint8_t >( row, 177 ); -} - -Sapphire::Data::CompanyLeveRule::CompanyLeveRule( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CompanyLeveRuleDat.get_row( row_id ); - type = exdData->getField< std::string >( row, 0 ); - objective = exdData->getField< uint16_t >( row, 1 ); - help = exdData->getField< uint16_t >( row, 2 ); -} - -Sapphire::Data::CompleteJournal::CompleteJournal( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CompleteJournalDat.get_row( row_id ); - requiredLevel = exdData->getField< uint16_t >( row, 1 ); - icon = exdData->getField< int32_t >( row, 3 ); - name = exdData->getField< std::string >( row, 5 ); - cutscene.push_back( exdData->getField< int32_t >( row, 6 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 7 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 8 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 9 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 10 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 11 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 12 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 13 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 14 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 15 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 16 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 17 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 18 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 19 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 20 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 21 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 22 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 23 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 24 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 25 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 26 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 27 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 28 ) ); - cutscene.push_back( exdData->getField< int32_t >( row, 29 ) ); -} - -Sapphire::Data::CompleteJournalCategory::CompleteJournalCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CompleteJournalCategoryDat.get_row( row_id ); - firstQuest = exdData->getField< uint32_t >( row, 0 ); - lastQuest = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::Completion::Completion( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CompletionDat.get_row( row_id ); - group = exdData->getField< uint16_t >( row, 0 ); - key = exdData->getField< uint16_t >( row, 1 ); - lookupTable = exdData->getField< std::string >( row, 2 ); - text = exdData->getField< std::string >( row, 3 ); - groupTitle = exdData->getField< std::string >( row, 4 ); -} - -Sapphire::Data::Condition::Condition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ConditionDat.get_row( row_id ); - logMessage = exdData->getField< uint32_t >( row, 2 ); -} - -Sapphire::Data::ConfigKey::ConfigKey( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ConfigKeyDat.get_row( row_id ); - label = exdData->getField< std::string >( row, 0 ); - param = exdData->getField< uint8_t >( row, 1 ); - platform = exdData->getField< uint8_t >( row, 2 ); - required = exdData->getField< bool >( row, 3 ); - category = exdData->getField< uint8_t >( row, 4 ); - text = exdData->getField< std::string >( row, 7 ); -} - -Sapphire::Data::ContentCloseCycle::ContentCloseCycle( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentCloseCycleDat.get_row( row_id ); - unixtime = exdData->getField< uint32_t >( row, 0 ); - timeSeconds = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::ContentExAction::ContentExAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentExActionDat.get_row( row_id ); - name = exdData->getField< uint32_t >( row, 0 ); - charges = exdData->getField< uint8_t >( row, 2 ); -} - -Sapphire::Data::ContentFinderCondition::ContentFinderCondition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentFinderConditionDat.get_row( row_id ); - shortCode = exdData->getField< std::string >( row, 0 ); - territoryType = exdData->getField< uint16_t >( row, 1 ); - contentLinkType = exdData->getField< uint8_t >( row, 2 ); - content = exdData->getField< uint16_t >( row, 3 ); - pvP = exdData->getField< bool >( row, 4 ); - acceptClassJobCategory = exdData->getField< uint8_t >( row, 8 ); - contentMemberType = exdData->getField< uint8_t >( row, 9 ); - unlockQuest = exdData->getField< uint32_t >( row, 13 ); - classJobLevelRequired = exdData->getField< uint8_t >( row, 15 ); - classJobLevelSync = exdData->getField< uint8_t >( row, 16 ); - itemLevelRequired = exdData->getField< uint16_t >( row, 17 ); - itemLevelSync = exdData->getField< uint16_t >( row, 18 ); - allowUndersized = exdData->getField< bool >( row, 20 ); - allowReplacement = exdData->getField< bool >( row, 21 ); - allowExplorerMode = exdData->getField< bool >( row, 23 ); - highEndDuty = exdData->getField< bool >( row, 28 ); - dutyRecorderAllowed = exdData->getField< bool >( row, 32 ); - name = exdData->getField< std::string >( row, 37 ); - nameShort = exdData->getField< std::string >( row, 38 ); - contentType = exdData->getField< uint8_t >( row, 39 ); - transientKey = exdData->getField< uint8_t >( row, 40 ); - transient = exdData->getField< uint32_t >( row, 41 ); - sortKey = exdData->getField< uint16_t >( row, 42 ); - image = exdData->getField< uint32_t >( row, 43 ); - icon = exdData->getField< uint32_t >( row, 44 ); - level506070Roulette = exdData->getField< bool >( row, 46 ); - levelingRoulette = exdData->getField< bool >( row, 47 ); - mSQRoulette = exdData->getField< bool >( row, 48 ); - guildHestRoulette = exdData->getField< bool >( row, 49 ); - expertRoulette = exdData->getField< bool >( row, 50 ); - trialRoulette = exdData->getField< bool >( row, 51 ); - dailyFrontlineChallenge = exdData->getField< bool >( row, 52 ); - level80Roulette = exdData->getField< bool >( row, 53 ); - mentorRoulette = exdData->getField< bool >( row, 54 ); - allianceRoulette = exdData->getField< bool >( row, 60 ); - feastTeamRoulette = exdData->getField< bool >( row, 61 ); - normalRaidRoulette = exdData->getField< bool >( row, 62 ); -} - -Sapphire::Data::ContentFinderConditionTransient::ContentFinderConditionTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentFinderConditionTransientDat.get_row( row_id ); - description = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::ContentGauge::ContentGauge( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentGaugeDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - color = exdData->getField< uint8_t >( row, 1 ); - textString = exdData->getField< std::string >( row, 3 ); -} - -Sapphire::Data::ContentGaugeColor::ContentGaugeColor( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentGaugeColorDat.get_row( row_id ); - androidColor1 = exdData->getField< uint32_t >( row, 0 ); - androidColor2 = exdData->getField< uint32_t >( row, 1 ); - androidColor3 = exdData->getField< uint32_t >( row, 2 ); -} - -Sapphire::Data::ContentMemberType::ContentMemberType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentMemberTypeDat.get_row( row_id ); - tanksPerParty = exdData->getField< uint8_t >( row, 10 ); - healersPerParty = exdData->getField< uint8_t >( row, 11 ); - meleesPerParty = exdData->getField< uint8_t >( row, 12 ); - rangedPerParty = exdData->getField< uint8_t >( row, 13 ); -} - -Sapphire::Data::ContentNpcTalk::ContentNpcTalk( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentNpcTalkDat.get_row( row_id ); - type = exdData->getField< int32_t >( row, 0 ); - contentTalk.push_back( exdData->getField< uint32_t >( row, 1 ) ); - contentTalk.push_back( exdData->getField< uint32_t >( row, 2 ) ); - contentTalk.push_back( exdData->getField< uint32_t >( row, 3 ) ); - contentTalk.push_back( exdData->getField< uint32_t >( row, 4 ) ); - contentTalk.push_back( exdData->getField< uint32_t >( row, 5 ) ); - contentTalk.push_back( exdData->getField< uint32_t >( row, 6 ) ); - contentTalk.push_back( exdData->getField< uint32_t >( row, 7 ) ); - contentTalk.push_back( exdData->getField< uint32_t >( row, 8 ) ); -} - -Sapphire::Data::ContentRandomSelect::ContentRandomSelect( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentRandomSelectDat.get_row( row_id, subRow ); - name = exdData->getField< uint16_t >( row, 0 ); -} - -Sapphire::Data::ContentRoulette::ContentRoulette( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentRouletteDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - category = exdData->getField< std::string >( row, 1 ); - description = exdData->getField< std::string >( row, 3 ); - dutyType = exdData->getField< std::string >( row, 4 ); - isInDutyFinder = exdData->getField< bool >( row, 8 ); - openRule = exdData->getField< uint8_t >( row, 9 ); - requiredLevel = exdData->getField< uint8_t >( row, 11 ); - itemLevelRequired = exdData->getField< uint16_t >( row, 13 ); - icon = exdData->getField< uint32_t >( row, 15 ); - contentRouletteRoleBonus = exdData->getField< uint8_t >( row, 16 ); - rewardTomeA = exdData->getField< uint16_t >( row, 17 ); - rewardTomeB = exdData->getField< uint16_t >( row, 18 ); - rewardTomeC = exdData->getField< uint16_t >( row, 19 ); - sortKey = exdData->getField< uint8_t >( row, 22 ); - contentMemberType = exdData->getField< uint8_t >( row, 24 ); - requireAllDuties = exdData->getField< bool >( row, 34 ); - contentRouletteOpenRule = exdData->getField< uint8_t >( row, 36 ); - instanceContent = exdData->getField< uint16_t >( row, 37 ); -} - -Sapphire::Data::ContentRouletteOpenRule::ContentRouletteOpenRule( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentRouletteOpenRuleDat.get_row( row_id ); - type = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::ContentRouletteRoleBonus::ContentRouletteRoleBonus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentRouletteRoleBonusDat.get_row( row_id ); - itemRewardType = exdData->getField< uint32_t >( row, 6 ); - rewardAmount = exdData->getField< uint8_t >( row, 7 ); -} - -Sapphire::Data::ContentsNote::ContentsNote( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentsNoteDat.get_row( row_id ); - contentType = exdData->getField< uint8_t >( row, 0 ); - icon = exdData->getField< int32_t >( row, 1 ); - menuOrder = exdData->getField< uint8_t >( row, 2 ); - requiredAmount = exdData->getField< int32_t >( row, 3 ); - reward0 = exdData->getField< uint8_t >( row, 4 ); - expMultiplier = exdData->getField< int32_t >( row, 5 ); - reward1 = exdData->getField< uint8_t >( row, 6 ); - gilRward = exdData->getField< int32_t >( row, 7 ); - levelUnlock = exdData->getField< uint16_t >( row, 8 ); - howTo = exdData->getField< uint16_t >( row, 9 ); - reqUnlock = exdData->getField< uint32_t >( row, 10 ); - name = exdData->getField< std::string >( row, 11 ); - description = exdData->getField< std::string >( row, 12 ); - expCap = exdData->getField< int32_t >( row, 13 ); -} - -Sapphire::Data::ContentsTutorial::ContentsTutorial( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentsTutorialDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - description = exdData->getField< std::string >( row, 1 ); - page.push_back( exdData->getField< int32_t >( row, 2 ) ); - page.push_back( exdData->getField< int32_t >( row, 3 ) ); - page.push_back( exdData->getField< int32_t >( row, 4 ) ); - page.push_back( exdData->getField< int32_t >( row, 5 ) ); - page.push_back( exdData->getField< int32_t >( row, 6 ) ); - page.push_back( exdData->getField< int32_t >( row, 7 ) ); - page.push_back( exdData->getField< int32_t >( row, 8 ) ); - page.push_back( exdData->getField< int32_t >( row, 9 ) ); -} - -Sapphire::Data::ContentsTutorialPage::ContentsTutorialPage( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentsTutorialPageDat.get_row( row_id ); - image = exdData->getField< int32_t >( row, 0 ); - description = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::ContentTalk::ContentTalk( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentTalkDat.get_row( row_id ); - contentTalkParam = exdData->getField< uint8_t >( row, 0 ); - text = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::ContentTalkParam::ContentTalkParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentTalkParamDat.get_row( row_id ); - param = exdData->getField< bool >( row, 0 ); - testAction = exdData->getField< uint32_t >( row, 2 ); -} - -Sapphire::Data::ContentType::ContentType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ContentTypeDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - icon = exdData->getField< uint32_t >( row, 1 ); - iconDutyFinder = exdData->getField< uint32_t >( row, 2 ); -} - -Sapphire::Data::CraftAction::CraftAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CraftActionDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - description = exdData->getField< std::string >( row, 1 ); - animationStart = exdData->getField< uint16_t >( row, 2 ); - animationEnd = exdData->getField< uint16_t >( row, 3 ); - icon = exdData->getField< uint16_t >( row, 4 ); - classJob = exdData->getField< int8_t >( row, 5 ); - classJobCategory = exdData->getField< uint8_t >( row, 6 ); - classJobLevel = exdData->getField< uint8_t >( row, 7 ); - questRequirement = exdData->getField< uint32_t >( row, 8 ); - specialist = exdData->getField< bool >( row, 9 ); - cost = exdData->getField< uint8_t >( row, 11 ); - cRP = exdData->getField< int32_t >( row, 12 ); - bSM = exdData->getField< int32_t >( row, 13 ); - aRM = exdData->getField< int32_t >( row, 14 ); - gSM = exdData->getField< int32_t >( row, 15 ); - lTW = exdData->getField< int32_t >( row, 16 ); - wVR = exdData->getField< int32_t >( row, 17 ); - aLC = exdData->getField< int32_t >( row, 18 ); - cUL = exdData->getField< int32_t >( row, 19 ); -} - -Sapphire::Data::CraftLeve::CraftLeve( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CraftLeveDat.get_row( row_id ); - leve = exdData->getField< int32_t >( row, 0 ); - craftLeveTalk = exdData->getField< int32_t >( row, 1 ); - repeats = exdData->getField< uint8_t >( row, 2 ); -} - -Sapphire::Data::CraftLevelDifference::CraftLevelDifference( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CraftLevelDifferenceDat.get_row( row_id ); - difference = exdData->getField< int16_t >( row, 0 ); - progressFactor = exdData->getField< int16_t >( row, 1 ); - qualityFactor = exdData->getField< int16_t >( row, 2 ); -} - -Sapphire::Data::CraftLeveTalk::CraftLeveTalk( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CraftLeveTalkDat.get_row( row_id ); - talk.push_back( exdData->getField< std::string >( row, 36 ) ); - talk.push_back( exdData->getField< std::string >( row, 37 ) ); - talk.push_back( exdData->getField< std::string >( row, 38 ) ); - talk.push_back( exdData->getField< std::string >( row, 39 ) ); - talk.push_back( exdData->getField< std::string >( row, 40 ) ); - talk.push_back( exdData->getField< std::string >( row, 41 ) ); -} - -Sapphire::Data::CraftType::CraftType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CraftTypeDat.get_row( row_id ); - mainPhysical = exdData->getField< uint8_t >( row, 0 ); - subPhysical = exdData->getField< uint8_t >( row, 1 ); - name = exdData->getField< std::string >( row, 2 ); -} - -Sapphire::Data::Credit::Credit( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CreditDat.get_row( row_id, subRow ); - roles1 = exdData->getField< uint16_t >( row, 1 ); - japaneseCast1 = exdData->getField< uint16_t >( row, 2 ); - englishCast1 = exdData->getField< uint16_t >( row, 3 ); - frenchCast1 = exdData->getField< uint16_t >( row, 4 ); - germanCast1 = exdData->getField< uint16_t >( row, 5 ); - roles2 = exdData->getField< uint16_t >( row, 6 ); - japaneseCast2 = exdData->getField< uint16_t >( row, 7 ); - englishCast2 = exdData->getField< uint16_t >( row, 8 ); - frenchCast2 = exdData->getField< uint16_t >( row, 9 ); - germanCast2 = exdData->getField< uint16_t >( row, 10 ); -} - -Sapphire::Data::CreditBackImage::CreditBackImage( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CreditBackImageDat.get_row( row_id, subRow ); - backImage = exdData->getField< uint32_t >( row, 5 ); -} - -Sapphire::Data::CreditCast::CreditCast( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CreditCastDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::CreditList::CreditList( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CreditListDat.get_row( row_id, subRow ); - scale = exdData->getField< uint16_t >( row, 0 ); - icon = exdData->getField< uint32_t >( row, 1 ); - font = exdData->getField< uint32_t >( row, 2 ); - cast = exdData->getField< uint32_t >( row, 5 ); -} - -Sapphire::Data::CreditListText::CreditListText( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CreditListTextDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::CustomTalk::CustomTalk( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CustomTalkDat.get_row( row_id ); - iconActor = exdData->getField< uint32_t >( row, 0 ); - iconMap = exdData->getField< uint32_t >( row, 1 ); - name = exdData->getField< std::string >( row, 2 ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 3 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 4 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 5 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 6 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 7 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 8 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 9 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 10 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 11 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 12 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 13 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 14 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 15 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 16 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 17 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 18 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 19 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 20 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 21 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 22 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 23 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 24 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 25 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 26 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 27 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 28 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 29 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 30 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 31 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 32 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 33 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 34 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 35 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 36 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 37 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 38 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 39 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 40 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 41 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 42 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 43 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 44 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 45 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 46 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 47 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 48 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 49 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 50 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 51 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 52 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 53 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 54 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 55 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 56 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 57 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 58 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 59 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 60 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 61 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 62 ) ); - mainOption = exdData->getField< std::string >( row, 64 ); - subOption = exdData->getField< std::string >( row, 65 ); - specialLinks = exdData->getField< uint32_t >( row, 75 ); -} - -Sapphire::Data::CustomTalkNestHandlers::CustomTalkNestHandlers( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CustomTalkNestHandlersDat.get_row( row_id, subRow ); - nestHandler = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::Cutscene::Cutscene( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CutsceneDat.get_row( row_id ); - path = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::CutSceneIncompQuest::CutSceneIncompQuest( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CutSceneIncompQuestDat.get_row( row_id, subRow ); - quest = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::CutsceneMotion::CutsceneMotion( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CutsceneMotionDat.get_row( row_id ); - wALK_LOOP_SPEED = exdData->getField< float >( row, 0 ); - rUN_LOOP_SPEED = exdData->getField< float >( row, 1 ); - sLOWWALK_LOOP_SPEED = exdData->getField< float >( row, 2 ); - sLOWRUN_LOOP_SPEED = exdData->getField< float >( row, 3 ); - bATTLEWALK_LOOP_SPEED = exdData->getField< float >( row, 4 ); - bATTLERUN_LOOP_SPEED = exdData->getField< float >( row, 5 ); - dASH_LOOP_SPEED = exdData->getField< float >( row, 6 ); - tURN_CW90_FRAME = exdData->getField< uint8_t >( row, 7 ); - tURN_CCW90_FRAME = exdData->getField< uint8_t >( row, 8 ); - tURN_CW180_FRAME = exdData->getField< uint8_t >( row, 9 ); - tURN_CCW180_FRAME = exdData->getField< uint8_t >( row, 10 ); -} - -Sapphire::Data::CutsceneWorkIndex::CutsceneWorkIndex( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CutsceneWorkIndexDat.get_row( row_id ); - workIndex = exdData->getField< uint16_t >( row, 0 ); -} - -Sapphire::Data::CutScreenImage::CutScreenImage( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CutScreenImageDat.get_row( row_id ); - type = exdData->getField< int16_t >( row, 0 ); - image = exdData->getField< int32_t >( row, 1 ); -} - -Sapphire::Data::CycleTime::CycleTime( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_CycleTimeDat.get_row( row_id ); - firstCycle = exdData->getField< uint32_t >( row, 0 ); - cycle = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::DailySupplyItem::DailySupplyItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DailySupplyItemDat.get_row( row_id ); -} - -Sapphire::Data::DawnContent::DawnContent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DawnContentDat.get_row( row_id ); - content = exdData->getField< uint32_t >( row, 0 ); - exp = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::DawnGrowMember::DawnGrowMember( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DawnGrowMemberDat.get_row( row_id ); - member = exdData->getField< uint32_t >( row, 0 ); - imageName = exdData->getField< uint32_t >( row, 1 ); - bigImageOld = exdData->getField< uint32_t >( row, 2 ); - bigImageNew = exdData->getField< uint32_t >( row, 3 ); - smallImageOld = exdData->getField< uint32_t >( row, 4 ); - smallImageNew = exdData->getField< uint32_t >( row, 5 ); - _class = exdData->getField< uint8_t >( row, 6 ); -} - -Sapphire::Data::DawnMemberUIParam::DawnMemberUIParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DawnMemberUIParamDat.get_row( row_id ); - classSingular = exdData->getField< std::string >( row, 0 ); - voiceLine = exdData->getField< uint32_t >( row, 1 ); - classPlural = exdData->getField< std::string >( row, 2 ); -} - -Sapphire::Data::DawnQuestAnnounce::DawnQuestAnnounce( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DawnQuestAnnounceDat.get_row( row_id ); - quest = exdData->getField< uint32_t >( row, 0 ); - content = exdData->getField< uint8_t >( row, 1 ); - eNPC.push_back( exdData->getField< uint32_t >( row, 2 ) ); - eNPC.push_back( exdData->getField< uint32_t >( row, 3 ) ); - eNPC.push_back( exdData->getField< uint32_t >( row, 4 ) ); - eNPC.push_back( exdData->getField< uint32_t >( row, 5 ) ); - eNPC.push_back( exdData->getField< uint32_t >( row, 6 ) ); - eNPC.push_back( exdData->getField< uint32_t >( row, 7 ) ); -} - -Sapphire::Data::DawnQuestMember::DawnQuestMember( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DawnQuestMemberDat.get_row( row_id ); - member = exdData->getField< uint32_t >( row, 0 ); - imageName = exdData->getField< uint32_t >( row, 1 ); - bigImageOld = exdData->getField< uint32_t >( row, 2 ); - bigImageNew = exdData->getField< uint32_t >( row, 3 ); - _class = exdData->getField< uint8_t >( row, 4 ); -} - -Sapphire::Data::DeepDungeon::DeepDungeon( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DeepDungeonDat.get_row( row_id ); - aetherpoolArm = exdData->getField< uint8_t >( row, 0 ); - aetherpoolArmor = exdData->getField< uint8_t >( row, 1 ); - pomanderSlot.push_back( exdData->getField< uint8_t >( row, 2 ) ); - pomanderSlot.push_back( exdData->getField< uint8_t >( row, 3 ) ); - pomanderSlot.push_back( exdData->getField< uint8_t >( row, 4 ) ); - pomanderSlot.push_back( exdData->getField< uint8_t >( row, 5 ) ); - pomanderSlot.push_back( exdData->getField< uint8_t >( row, 6 ) ); - pomanderSlot.push_back( exdData->getField< uint8_t >( row, 7 ) ); - pomanderSlot.push_back( exdData->getField< uint8_t >( row, 8 ) ); - pomanderSlot.push_back( exdData->getField< uint8_t >( row, 9 ) ); - pomanderSlot.push_back( exdData->getField< uint8_t >( row, 10 ) ); - pomanderSlot.push_back( exdData->getField< uint8_t >( row, 11 ) ); - pomanderSlot.push_back( exdData->getField< uint8_t >( row, 12 ) ); - pomanderSlot.push_back( exdData->getField< uint8_t >( row, 13 ) ); - pomanderSlot.push_back( exdData->getField< uint8_t >( row, 14 ) ); - pomanderSlot.push_back( exdData->getField< uint8_t >( row, 15 ) ); - pomanderSlot.push_back( exdData->getField< uint8_t >( row, 16 ) ); - pomanderSlot.push_back( exdData->getField< uint8_t >( row, 17 ) ); - magiciteSlot.push_back( exdData->getField< uint8_t >( row, 18 ) ); - magiciteSlot.push_back( exdData->getField< uint8_t >( row, 19 ) ); - magiciteSlot.push_back( exdData->getField< uint8_t >( row, 20 ) ); - magiciteSlot.push_back( exdData->getField< uint8_t >( row, 21 ) ); - name = exdData->getField< std::string >( row, 22 ); - contentFinderConditionStart = exdData->getField< uint16_t >( row, 23 ); -} - -Sapphire::Data::DeepDungeonBan::DeepDungeonBan( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DeepDungeonBanDat.get_row( row_id ); - screenImage = exdData->getField< uint16_t >( row, 0 ); - logMessage = exdData->getField< uint16_t >( row, 1 ); - name = exdData->getField< uint16_t >( row, 2 ); -} - -Sapphire::Data::DeepDungeonDanger::DeepDungeonDanger( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DeepDungeonDangerDat.get_row( row_id ); - screenImage = exdData->getField< uint16_t >( row, 0 ); - logMessage = exdData->getField< uint16_t >( row, 1 ); - name = exdData->getField< uint16_t >( row, 2 ); -} - -Sapphire::Data::DeepDungeonEquipment::DeepDungeonEquipment( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DeepDungeonEquipmentDat.get_row( row_id ); - icon = exdData->getField< uint32_t >( row, 0 ); - singular = exdData->getField< std::string >( row, 1 ); - adjective = exdData->getField< int8_t >( row, 2 ); - plural = exdData->getField< std::string >( row, 3 ); - possessivePronoun = exdData->getField< int8_t >( row, 4 ); - startsWithVowel = exdData->getField< int8_t >( row, 5 ); - pronoun = exdData->getField< int8_t >( row, 7 ); - article = exdData->getField< int8_t >( row, 8 ); - name = exdData->getField< std::string >( row, 9 ); - description = exdData->getField< std::string >( row, 10 ); -} - -Sapphire::Data::DeepDungeonFloorEffectUI::DeepDungeonFloorEffectUI( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DeepDungeonFloorEffectUIDat.get_row( row_id ); - icon = exdData->getField< uint32_t >( row, 0 ); - name = exdData->getField< std::string >( row, 1 ); - description = exdData->getField< std::string >( row, 2 ); -} - -Sapphire::Data::DeepDungeonItem::DeepDungeonItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DeepDungeonItemDat.get_row( row_id ); - icon = exdData->getField< uint32_t >( row, 0 ); - singular = exdData->getField< std::string >( row, 1 ); - adjective = exdData->getField< int8_t >( row, 2 ); - plural = exdData->getField< std::string >( row, 3 ); - possessivePronoun = exdData->getField< int8_t >( row, 4 ); - startsWithVowel = exdData->getField< int8_t >( row, 5 ); - pronoun = exdData->getField< int8_t >( row, 7 ); - article = exdData->getField< int8_t >( row, 8 ); - name = exdData->getField< std::string >( row, 9 ); - tooltip = exdData->getField< std::string >( row, 10 ); - action = exdData->getField< uint32_t >( row, 11 ); -} - -Sapphire::Data::DeepDungeonLayer::DeepDungeonLayer( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DeepDungeonLayerDat.get_row( row_id ); - deepDungeon = exdData->getField< uint8_t >( row, 0 ); - floorSet = exdData->getField< uint8_t >( row, 1 ); - roomA = exdData->getField< uint16_t >( row, 2 ); - roomB = exdData->getField< uint16_t >( row, 3 ); - roomC = exdData->getField< uint16_t >( row, 4 ); - wepMinLv = exdData->getField< uint8_t >( row, 5 ); - armourMinLv = exdData->getField< uint8_t >( row, 6 ); -} - -Sapphire::Data::DeepDungeonMagicStone::DeepDungeonMagicStone( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DeepDungeonMagicStoneDat.get_row( row_id ); - icon = exdData->getField< uint32_t >( row, 0 ); - singular = exdData->getField< std::string >( row, 1 ); - adjective = exdData->getField< int8_t >( row, 2 ); - plural = exdData->getField< std::string >( row, 3 ); - possessivePronoun = exdData->getField< int8_t >( row, 4 ); - startsWithVowel = exdData->getField< int8_t >( row, 5 ); - pronoun = exdData->getField< int8_t >( row, 7 ); - article = exdData->getField< int8_t >( row, 8 ); - name = exdData->getField< std::string >( row, 9 ); - tooltip = exdData->getField< std::string >( row, 10 ); -} - -Sapphire::Data::DeepDungeonMap5X::DeepDungeonMap5X( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DeepDungeonMap5XDat.get_row( row_id, subRow ); - deepDungeonRoom.push_back( exdData->getField< uint16_t >( row, 0 ) ); - deepDungeonRoom.push_back( exdData->getField< uint16_t >( row, 1 ) ); - deepDungeonRoom.push_back( exdData->getField< uint16_t >( row, 2 ) ); - deepDungeonRoom.push_back( exdData->getField< uint16_t >( row, 3 ) ); - deepDungeonRoom.push_back( exdData->getField< uint16_t >( row, 4 ) ); -} - -Sapphire::Data::DeepDungeonRoom::DeepDungeonRoom( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DeepDungeonRoomDat.get_row( row_id ); - level.push_back( exdData->getField< uint32_t >( row, 0 ) ); - level.push_back( exdData->getField< uint32_t >( row, 1 ) ); - level.push_back( exdData->getField< uint32_t >( row, 2 ) ); - level.push_back( exdData->getField< uint32_t >( row, 3 ) ); - level.push_back( exdData->getField< uint32_t >( row, 4 ) ); -} - -Sapphire::Data::DeepDungeonStatus::DeepDungeonStatus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DeepDungeonStatusDat.get_row( row_id ); - screenImage = exdData->getField< uint16_t >( row, 0 ); - logMessage = exdData->getField< uint16_t >( row, 1 ); - name = exdData->getField< uint16_t >( row, 2 ); -} - -Sapphire::Data::DefaultTalk::DefaultTalk( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DefaultTalkDat.get_row( row_id ); - actionTimelinePose.push_back( exdData->getField< uint16_t >( row, 5 ) ); - actionTimelinePose.push_back( exdData->getField< uint16_t >( row, 6 ) ); - actionTimelinePose.push_back( exdData->getField< uint16_t >( row, 7 ) ); - text.push_back( exdData->getField< std::string >( row, 20 ) ); - text.push_back( exdData->getField< std::string >( row, 21 ) ); - text.push_back( exdData->getField< std::string >( row, 22 ) ); -} - -Sapphire::Data::DefaultTalkLipSyncType::DefaultTalkLipSyncType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DefaultTalkLipSyncTypeDat.get_row( row_id ); - actionTimeline = exdData->getField< int32_t >( row, 0 ); -} - -Sapphire::Data::DeliveryQuest::DeliveryQuest( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DeliveryQuestDat.get_row( row_id ); - quest = exdData->getField< int32_t >( row, 0 ); -} - -Sapphire::Data::Description::Description( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DescriptionDat.get_row( row_id ); - quest = exdData->getField< uint32_t >( row, 0 ); - textLong = exdData->getField< std::string >( row, 1 ); - textShort = exdData->getField< std::string >( row, 2 ); - textCommentary = exdData->getField< std::string >( row, 3 ); - section = exdData->getField< uint32_t >( row, 5 ); -} - -Sapphire::Data::DescriptionPage::DescriptionPage( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DescriptionPageDat.get_row( row_id, subRow ); - quest = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::DescriptionSection::DescriptionSection( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DescriptionSectionDat.get_row( row_id, subRow ); - string = exdData->getField< uint16_t >( row, 0 ); - page = exdData->getField< uint16_t >( row, 1 ); -} - -Sapphire::Data::DescriptionString::DescriptionString( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DescriptionStringDat.get_row( row_id ); - text = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::DisposalShop::DisposalShop( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DisposalShopDat.get_row( row_id ); - shopName = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::DisposalShopFilterType::DisposalShopFilterType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DisposalShopFilterTypeDat.get_row( row_id ); - category = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::DisposalShopItem::DisposalShopItem( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DisposalShopItemDat.get_row( row_id, subRow ); - itemDisposed = exdData->getField< int32_t >( row, 0 ); - itemReceived = exdData->getField< int32_t >( row, 2 ); - quantityReceived = exdData->getField< uint32_t >( row, 4 ); -} - -Sapphire::Data::DpsChallenge::DpsChallenge( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DpsChallengeDat.get_row( row_id ); - playerLevel = exdData->getField< uint16_t >( row, 0 ); - placeName = exdData->getField< uint16_t >( row, 1 ); - icon = exdData->getField< uint32_t >( row, 2 ); - order = exdData->getField< uint16_t >( row, 3 ); - name = exdData->getField< std::string >( row, 4 ); - description = exdData->getField< std::string >( row, 5 ); -} - -Sapphire::Data::DpsChallengeOfficer::DpsChallengeOfficer( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DpsChallengeOfficerDat.get_row( row_id ); - unlockQuest = exdData->getField< uint32_t >( row, 0 ); - challengeName.push_back( exdData->getField< uint16_t >( row, 1 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 2 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 3 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 4 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 5 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 6 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 7 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 8 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 9 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 10 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 11 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 12 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 13 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 14 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 15 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 16 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 17 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 18 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 19 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 20 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 21 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 22 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 23 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 24 ) ); - challengeName.push_back( exdData->getField< uint16_t >( row, 25 ) ); -} - -Sapphire::Data::DpsChallengeTransient::DpsChallengeTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DpsChallengeTransientDat.get_row( row_id ); - instanceContent = exdData->getField< uint16_t >( row, 0 ); -} - -Sapphire::Data::DynamicEvent::DynamicEvent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DynamicEventDat.get_row( row_id ); - eventType = exdData->getField< uint8_t >( row, 0 ); - enemyType = exdData->getField< uint8_t >( row, 1 ); - lGBEventObject = exdData->getField< uint32_t >( row, 4 ); - lGBMapRange = exdData->getField< uint32_t >( row, 5 ); - quest = exdData->getField< uint32_t >( row, 6 ); - singleBattle = exdData->getField< uint8_t >( row, 8 ); - announce = exdData->getField< uint32_t >( row, 9 ); - name = exdData->getField< std::string >( row, 10 ); - description = exdData->getField< std::string >( row, 11 ); -} - -Sapphire::Data::DynamicEventEnemyType::DynamicEventEnemyType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DynamicEventEnemyTypeDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::DynamicEventSingleBattle::DynamicEventSingleBattle( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DynamicEventSingleBattleDat.get_row( row_id ); - bNpcName = exdData->getField< int32_t >( row, 0 ); - icon = exdData->getField< uint32_t >( row, 1 ); - text = exdData->getField< std::string >( row, 2 ); -} - -Sapphire::Data::DynamicEventType::DynamicEventType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_DynamicEventTypeDat.get_row( row_id ); - iconObjective0 = exdData->getField< uint32_t >( row, 0 ); - iconObjective1 = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::EmjAddon::EmjAddon( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EmjAddonDat.get_row( row_id ); - text = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::EmjDani::EmjDani( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EmjDaniDat.get_row( row_id ); - icon = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::Emote::Emote( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EmoteDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - actionTimeline.push_back( exdData->getField< uint16_t >( row, 1 ) ); - actionTimeline.push_back( exdData->getField< uint16_t >( row, 2 ) ); - actionTimeline.push_back( exdData->getField< uint16_t >( row, 3 ) ); - actionTimeline.push_back( exdData->getField< uint16_t >( row, 4 ) ); - actionTimeline.push_back( exdData->getField< uint16_t >( row, 5 ) ); - actionTimeline.push_back( exdData->getField< uint16_t >( row, 6 ) ); - actionTimeline.push_back( exdData->getField< uint16_t >( row, 7 ) ); - emoteCategory = exdData->getField< uint8_t >( row, 11 ); - emoteMode = exdData->getField< uint8_t >( row, 12 ); - hasCancelEmote = exdData->getField< bool >( row, 15 ); - drawsWeapon = exdData->getField< bool >( row, 16 ); - order = exdData->getField< uint16_t >( row, 17 ); - textCommand = exdData->getField< int32_t >( row, 18 ); - icon = exdData->getField< uint16_t >( row, 19 ); - logMessageTargeted = exdData->getField< uint16_t >( row, 20 ); - logMessageUntargeted = exdData->getField< uint16_t >( row, 21 ); - unlockLink = exdData->getField< uint32_t >( row, 22 ); -} - -Sapphire::Data::EmoteCategory::EmoteCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EmoteCategoryDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::EmoteMode::EmoteMode( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EmoteModeDat.get_row( row_id ); - startEmote = exdData->getField< uint16_t >( row, 0 ); - endEmote = exdData->getField< uint16_t >( row, 1 ); - move = exdData->getField< bool >( row, 2 ); - camera = exdData->getField< bool >( row, 3 ); - endOnRotate = exdData->getField< bool >( row, 4 ); - endOnEmote = exdData->getField< bool >( row, 5 ); - conditionMode = exdData->getField< uint8_t >( row, 6 ); -} - -Sapphire::Data::ENpcBase::ENpcBase( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ENpcBaseDat.get_row( row_id ); - eventHandler = exdData->getField< uint16_t >( row, 0 ); - important = exdData->getField< bool >( row, 1 ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 2 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 3 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 4 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 5 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 6 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 7 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 8 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 9 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 10 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 11 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 12 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 13 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 14 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 15 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 16 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 17 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 18 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 19 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 20 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 21 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 22 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 23 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 24 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 25 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 26 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 27 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 28 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 29 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 30 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 31 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 32 ) ); - eNpcData.push_back( exdData->getField< uint32_t >( row, 33 ) ); - scale = exdData->getField< float >( row, 34 ); - modelChara = exdData->getField< uint16_t >( row, 35 ); - race = exdData->getField< uint8_t >( row, 36 ); - gender = exdData->getField< uint8_t >( row, 37 ); - bodyType = exdData->getField< uint8_t >( row, 38 ); - height = exdData->getField< uint8_t >( row, 39 ); - tribe = exdData->getField< uint8_t >( row, 40 ); - face = exdData->getField< uint8_t >( row, 41 ); - hairStyle = exdData->getField< uint8_t >( row, 42 ); - hairHighlight = exdData->getField< uint8_t >( row, 43 ); - skinColor = exdData->getField< uint8_t >( row, 44 ); - eyeHeterochromia = exdData->getField< uint8_t >( row, 45 ); - hairColor = exdData->getField< uint8_t >( row, 46 ); - hairHighlightColor = exdData->getField< uint8_t >( row, 47 ); - facialFeature = exdData->getField< uint8_t >( row, 48 ); - facialFeatureColor = exdData->getField< uint8_t >( row, 49 ); - eyebrows = exdData->getField< uint8_t >( row, 50 ); - eyeColor = exdData->getField< uint8_t >( row, 51 ); - eyeShape = exdData->getField< uint8_t >( row, 52 ); - nose = exdData->getField< uint8_t >( row, 53 ); - jaw = exdData->getField< uint8_t >( row, 54 ); - mouth = exdData->getField< uint8_t >( row, 55 ); - lipColor = exdData->getField< uint8_t >( row, 56 ); - bustOrTone1 = exdData->getField< uint8_t >( row, 57 ); - extraFeature1 = exdData->getField< uint8_t >( row, 58 ); - extraFeature2OrBust = exdData->getField< uint8_t >( row, 59 ); - facePaint = exdData->getField< uint8_t >( row, 60 ); - facePaintColor = exdData->getField< uint8_t >( row, 61 ); - npcEquip = exdData->getField< uint16_t >( row, 63 ); - behavior = exdData->getField< uint16_t >( row, 64 ); - modelMainHand = exdData->getField< uint64_t >( row, 65 ); - dyeMainHand = exdData->getField< uint8_t >( row, 66 ); - modelOffHand = exdData->getField< uint64_t >( row, 67 ); - dyeOffHand = exdData->getField< uint8_t >( row, 68 ); - modelHead = exdData->getField< uint32_t >( row, 69 ); - dyeHead = exdData->getField< uint8_t >( row, 70 ); - visor = exdData->getField< bool >( row, 71 ); - modelBody = exdData->getField< uint32_t >( row, 72 ); - dyeBody = exdData->getField< uint8_t >( row, 73 ); - modelHands = exdData->getField< uint32_t >( row, 74 ); - dyeHands = exdData->getField< uint8_t >( row, 75 ); - modelLegs = exdData->getField< uint32_t >( row, 76 ); - dyeLegs = exdData->getField< uint8_t >( row, 77 ); - modelFeet = exdData->getField< uint32_t >( row, 78 ); - dyeFeet = exdData->getField< uint8_t >( row, 79 ); - modelEars = exdData->getField< uint32_t >( row, 80 ); - dyeEars = exdData->getField< uint8_t >( row, 81 ); - modelNeck = exdData->getField< uint32_t >( row, 82 ); - dyeNeck = exdData->getField< uint8_t >( row, 83 ); - modelWrists = exdData->getField< uint32_t >( row, 84 ); - dyeWrists = exdData->getField< uint8_t >( row, 85 ); - modelLeftRing = exdData->getField< uint32_t >( row, 86 ); - dyeLeftRing = exdData->getField< uint8_t >( row, 87 ); - modelRightRing = exdData->getField< uint32_t >( row, 88 ); - dyeRightRing = exdData->getField< uint8_t >( row, 89 ); - invisibility = exdData->getField< uint8_t >( row, 90 ); - balloon = exdData->getField< uint16_t >( row, 91 ); - notRewriteHeight = exdData->getField< bool >( row, 92 ); - defaultBalloon = exdData->getField< uint8_t >( row, 93 ); -} - -Sapphire::Data::ENpcDressUp::ENpcDressUp( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ENpcDressUpDat.get_row( row_id ); - eNpcDressUpDress = exdData->getField< uint8_t >( row, 1 ); -} - -Sapphire::Data::ENpcDressUpDress::ENpcDressUpDress( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ENpcDressUpDressDat.get_row( row_id, subRow ); - eNpc = exdData->getField< uint32_t >( row, 7 ); - behavior = exdData->getField< uint16_t >( row, 9 ); - modelMainHand = exdData->getField< uint64_t >( row, 37 ); - dyeMainHand = exdData->getField< uint8_t >( row, 38 ); - modelOffHand = exdData->getField< uint64_t >( row, 39 ); - dyeOffHand = exdData->getField< uint8_t >( row, 40 ); - modelHead = exdData->getField< uint32_t >( row, 41 ); - dyeHead = exdData->getField< uint8_t >( row, 42 ); - modelBody = exdData->getField< uint32_t >( row, 43 ); - dyeBody = exdData->getField< uint8_t >( row, 44 ); - modelHands = exdData->getField< uint32_t >( row, 45 ); - dyeHands = exdData->getField< uint8_t >( row, 46 ); - modelLegs = exdData->getField< uint32_t >( row, 47 ); - dyeLegs = exdData->getField< uint8_t >( row, 48 ); - modelFeet = exdData->getField< uint32_t >( row, 49 ); - dyeFeet = exdData->getField< uint8_t >( row, 50 ); -} - -Sapphire::Data::ENpcResident::ENpcResident( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ENpcResidentDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); - title = exdData->getField< std::string >( row, 8 ); - map = exdData->getField< uint8_t >( row, 9 ); -} - -Sapphire::Data::EObj::EObj( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EObjDat.get_row( row_id ); - popType = exdData->getField< uint8_t >( row, 8 ); - data = exdData->getField< uint32_t >( row, 9 ); - invisibility = exdData->getField< uint8_t >( row, 10 ); - sgbPath = exdData->getField< uint16_t >( row, 11 ); - eyeCollision = exdData->getField< bool >( row, 12 ); - directorControl = exdData->getField< bool >( row, 13 ); - target = exdData->getField< bool >( row, 14 ); - eventHighAddition = exdData->getField< uint8_t >( row, 15 ); - addedIn53 = exdData->getField< bool >( row, 18 ); -} - -Sapphire::Data::EObjName::EObjName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EObjNameDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); -} - -Sapphire::Data::EquipRaceCategory::EquipRaceCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EquipRaceCategoryDat.get_row( row_id ); - hyur = exdData->getField< bool >( row, 0 ); - elezen = exdData->getField< bool >( row, 1 ); - lalafell = exdData->getField< bool >( row, 2 ); - miqote = exdData->getField< bool >( row, 3 ); - roegadyn = exdData->getField< bool >( row, 4 ); - auRa = exdData->getField< bool >( row, 5 ); - male = exdData->getField< bool >( row, 8 ); - female = exdData->getField< bool >( row, 9 ); -} - -Sapphire::Data::EquipSlotCategory::EquipSlotCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EquipSlotCategoryDat.get_row( row_id ); - mainHand = exdData->getField< int8_t >( row, 0 ); - offHand = exdData->getField< int8_t >( row, 1 ); - head = exdData->getField< int8_t >( row, 2 ); - body = exdData->getField< int8_t >( row, 3 ); - gloves = exdData->getField< int8_t >( row, 4 ); - waist = exdData->getField< int8_t >( row, 5 ); - legs = exdData->getField< int8_t >( row, 6 ); - feet = exdData->getField< int8_t >( row, 7 ); - ears = exdData->getField< int8_t >( row, 8 ); - neck = exdData->getField< int8_t >( row, 9 ); - wrists = exdData->getField< int8_t >( row, 10 ); - fingerL = exdData->getField< int8_t >( row, 11 ); - fingerR = exdData->getField< int8_t >( row, 12 ); - soulCrystal = exdData->getField< int8_t >( row, 13 ); -} - -Sapphire::Data::EurekaAetherItem::EurekaAetherItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EurekaAetherItemDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); - name = exdData->getField< std::string >( row, 8 ); -} - -Sapphire::Data::EurekaAethernet::EurekaAethernet( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EurekaAethernetDat.get_row( row_id ); - location = exdData->getField< uint16_t >( row, 0 ); -} - -Sapphire::Data::EurekaGrowData::EurekaGrowData( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EurekaGrowDataDat.get_row( row_id ); - baseResistance = exdData->getField< uint16_t >( row, 0 ); -} - -Sapphire::Data::EurekaLogosMixerProbability::EurekaLogosMixerProbability( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EurekaLogosMixerProbabilityDat.get_row( row_id ); - probability = exdData->getField< uint8_t >( row, 0 ); -} - -Sapphire::Data::EurekaMagiaAction::EurekaMagiaAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EurekaMagiaActionDat.get_row( row_id ); - action = exdData->getField< uint32_t >( row, 0 ); - maxUses = exdData->getField< uint8_t >( row, 1 ); -} - -Sapphire::Data::EurekaMagiciteItem::EurekaMagiciteItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EurekaMagiciteItemDat.get_row( row_id ); - eurekaMagiciteItemType = exdData->getField< uint8_t >( row, 0 ); - classJobCategory = exdData->getField< uint8_t >( row, 1 ); - item = exdData->getField< uint32_t >( row, 2 ); -} - -Sapphire::Data::EurekaMagiciteItemType::EurekaMagiciteItemType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EurekaMagiciteItemTypeDat.get_row( row_id ); - type = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::EurekaSphereElementAdjust::EurekaSphereElementAdjust( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EurekaSphereElementAdjustDat.get_row( row_id ); - powerModifier = exdData->getField< uint16_t >( row, 0 ); -} - -Sapphire::Data::EventAction::EventAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EventActionDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - icon = exdData->getField< uint16_t >( row, 1 ); - castTime = exdData->getField< uint8_t >( row, 2 ); - animation.push_back( exdData->getField< uint16_t >( row, 3 ) ); - animation.push_back( exdData->getField< uint16_t >( row, 4 ) ); - animation.push_back( exdData->getField< uint16_t >( row, 5 ) ); -} - -Sapphire::Data::EventCustomIconType::EventCustomIconType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EventCustomIconTypeDat.get_row( row_id ); - announceQuest.push_back( exdData->getField< uint32_t >( row, 0 ) ); - announceQuest.push_back( exdData->getField< uint32_t >( row, 1 ) ); - announceQuest.push_back( exdData->getField< uint32_t >( row, 2 ) ); - announceQuest.push_back( exdData->getField< uint32_t >( row, 3 ) ); - announceQuest.push_back( exdData->getField< uint32_t >( row, 4 ) ); - announceQuest.push_back( exdData->getField< uint32_t >( row, 5 ) ); - announceQuest.push_back( exdData->getField< uint32_t >( row, 6 ) ); - announceQuest.push_back( exdData->getField< uint32_t >( row, 7 ) ); - announceQuest.push_back( exdData->getField< uint32_t >( row, 8 ) ); - announceQuest.push_back( exdData->getField< uint32_t >( row, 9 ) ); - announceQuestLocked.push_back( exdData->getField< uint32_t >( row, 10 ) ); - announceQuestLocked.push_back( exdData->getField< uint32_t >( row, 11 ) ); - announceQuestLocked.push_back( exdData->getField< uint32_t >( row, 12 ) ); - announceQuestLocked.push_back( exdData->getField< uint32_t >( row, 13 ) ); - announceQuestLocked.push_back( exdData->getField< uint32_t >( row, 14 ) ); - announceQuestLocked.push_back( exdData->getField< uint32_t >( row, 15 ) ); - announceQuestLocked.push_back( exdData->getField< uint32_t >( row, 16 ) ); - announceQuestLocked.push_back( exdData->getField< uint32_t >( row, 17 ) ); - announceQuestLocked.push_back( exdData->getField< uint32_t >( row, 18 ) ); - announceQuestLocked.push_back( exdData->getField< uint32_t >( row, 19 ) ); - mapAnnounceQuest0.push_back( exdData->getField< uint32_t >( row, 20 ) ); - mapAnnounceQuest0.push_back( exdData->getField< uint32_t >( row, 21 ) ); - mapAnnounceQuest0.push_back( exdData->getField< uint32_t >( row, 22 ) ); - mapAnnounceQuest0.push_back( exdData->getField< uint32_t >( row, 23 ) ); - mapAnnounceQuest0.push_back( exdData->getField< uint32_t >( row, 24 ) ); - mapAnnounceQuest0.push_back( exdData->getField< uint32_t >( row, 25 ) ); - mapAnnounceQuest0.push_back( exdData->getField< uint32_t >( row, 26 ) ); - mapAnnounceQuest0.push_back( exdData->getField< uint32_t >( row, 27 ) ); - mapAnnounceQuest0.push_back( exdData->getField< uint32_t >( row, 28 ) ); - mapAnnounceQuest0.push_back( exdData->getField< uint32_t >( row, 29 ) ); - mapAnnounceQuestLocked.push_back( exdData->getField< uint32_t >( row, 30 ) ); - mapAnnounceQuestLocked.push_back( exdData->getField< uint32_t >( row, 31 ) ); - mapAnnounceQuestLocked.push_back( exdData->getField< uint32_t >( row, 32 ) ); - mapAnnounceQuestLocked.push_back( exdData->getField< uint32_t >( row, 33 ) ); - mapAnnounceQuestLocked.push_back( exdData->getField< uint32_t >( row, 34 ) ); - mapAnnounceQuestLocked.push_back( exdData->getField< uint32_t >( row, 35 ) ); - mapAnnounceQuestLocked.push_back( exdData->getField< uint32_t >( row, 36 ) ); - mapAnnounceQuestLocked.push_back( exdData->getField< uint32_t >( row, 37 ) ); - mapAnnounceQuestLocked.push_back( exdData->getField< uint32_t >( row, 38 ) ); - mapAnnounceQuestLocked.push_back( exdData->getField< uint32_t >( row, 39 ) ); - mapAnnounceQuest1.push_back( exdData->getField< uint32_t >( row, 40 ) ); - mapAnnounceQuest1.push_back( exdData->getField< uint32_t >( row, 41 ) ); - mapAnnounceQuest1.push_back( exdData->getField< uint32_t >( row, 42 ) ); - mapAnnounceQuest1.push_back( exdData->getField< uint32_t >( row, 43 ) ); - mapAnnounceQuest1.push_back( exdData->getField< uint32_t >( row, 44 ) ); - mapAnnounceQuest1.push_back( exdData->getField< uint32_t >( row, 45 ) ); - mapAnnounceQuest1.push_back( exdData->getField< uint32_t >( row, 46 ) ); - mapAnnounceQuest1.push_back( exdData->getField< uint32_t >( row, 47 ) ); - mapAnnounceQuest1.push_back( exdData->getField< uint32_t >( row, 48 ) ); - mapAnnounceQuest1.push_back( exdData->getField< uint32_t >( row, 49 ) ); -} - -Sapphire::Data::EventIconPriority::EventIconPriority( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EventIconPriorityDat.get_row( row_id ); - icon.push_back( exdData->getField< uint32_t >( row, 0 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 1 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 2 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 3 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 4 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 5 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 6 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 7 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 8 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 9 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 10 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 11 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 12 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 13 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 14 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 15 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 16 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 17 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 18 ) ); -} - -Sapphire::Data::EventIconType::EventIconType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EventIconTypeDat.get_row( row_id ); - npcIconAvailable = exdData->getField< uint32_t >( row, 0 ); - mapIconAvailable = exdData->getField< uint32_t >( row, 1 ); - npcIconInvalid = exdData->getField< uint32_t >( row, 2 ); - mapIconInvalid = exdData->getField< uint32_t >( row, 3 ); - iconRange = exdData->getField< uint8_t >( row, 4 ); -} - -Sapphire::Data::EventItem::EventItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EventItemDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); - name = exdData->getField< std::string >( row, 9 ); - icon = exdData->getField< uint16_t >( row, 10 ); - action = exdData->getField< uint16_t >( row, 11 ); - stackSize = exdData->getField< uint8_t >( row, 12 ); - quest = exdData->getField< uint32_t >( row, 14 ); - castTime = exdData->getField< uint8_t >( row, 15 ); - castTimeline = exdData->getField< uint8_t >( row, 16 ); - timeline = exdData->getField< uint8_t >( row, 17 ); -} - -Sapphire::Data::EventItemCastTimeline::EventItemCastTimeline( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EventItemCastTimelineDat.get_row( row_id ); - actionTimeline = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::EventItemHelp::EventItemHelp( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EventItemHelpDat.get_row( row_id ); - description = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::EventItemTimeline::EventItemTimeline( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EventItemTimelineDat.get_row( row_id ); - actionTimeline = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::EventSystemDefine::EventSystemDefine( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_EventSystemDefineDat.get_row( row_id ); - text = exdData->getField< std::string >( row, 0 ); - defineValue = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::ExportedGatheringPoint::ExportedGatheringPoint( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ExportedGatheringPointDat.get_row( row_id ); - x = exdData->getField< float >( row, 0 ); - y = exdData->getField< float >( row, 1 ); - radius = exdData->getField< uint8_t >( row, 2 ); -} - -Sapphire::Data::ExportedSG::ExportedSG( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ExportedSGDat.get_row( row_id ); - sgbPath = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::ExVersion::ExVersion( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ExVersionDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - acceptJingle = exdData->getField< uint16_t >( row, 1 ); - completeJingle = exdData->getField< uint16_t >( row, 2 ); -} - -Sapphire::Data::Fate::Fate( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FateDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - description = exdData->getField< std::string >( row, 1 ); - objective = exdData->getField< std::string >( row, 2 ); - statusText.push_back( exdData->getField< std::string >( row, 3 ) ); - statusText.push_back( exdData->getField< std::string >( row, 4 ) ); - statusText.push_back( exdData->getField< std::string >( row, 5 ) ); - eurekaFate = exdData->getField< uint8_t >( row, 6 ); - rule = exdData->getField< uint8_t >( row, 7 ); - fateRuleEx = exdData->getField< uint16_t >( row, 8 ); - location = exdData->getField< uint32_t >( row, 9 ); - classJobLevel = exdData->getField< uint8_t >( row, 10 ); - classJobLevelMax = exdData->getField< uint8_t >( row, 11 ); - eventItem = exdData->getField< uint32_t >( row, 12 ); - typeToDoValue.push_back( exdData->getField< uint8_t >( row, 13 ) ); - typeToDoValue.push_back( exdData->getField< uint8_t >( row, 14 ) ); - typeToDoValue.push_back( exdData->getField< uint8_t >( row, 15 ) ); - iconObjective = exdData->getField< uint32_t >( row, 16 ); - iconMap = exdData->getField< uint32_t >( row, 17 ); - iconInactiveMap = exdData->getField< uint32_t >( row, 18 ); - music = exdData->getField< int32_t >( row, 19 ); - lGBGuardNPCLocation = exdData->getField< uint32_t >( row, 20 ); - screenImageAccept = exdData->getField< uint16_t >( row, 21 ); - screenImageComplete = exdData->getField< uint16_t >( row, 22 ); - screenImageFailed = exdData->getField< uint16_t >( row, 23 ); - requiredQuest = exdData->getField< uint32_t >( row, 25 ); - specialFate = exdData->getField< bool >( row, 26 ); - givenStatus = exdData->getField< uint16_t >( row, 28 ); - adventEvent = exdData->getField< bool >( row, 30 ); - moonFaireEvent = exdData->getField< bool >( row, 31 ); - fATEChain = exdData->getField< uint32_t >( row, 33 ); - arrayIndex = exdData->getField< uint32_t >( row, 36 ); - reqEventItem = exdData->getField< uint32_t >( row, 38 ); - turnInEventItem = exdData->getField< uint32_t >( row, 39 ); - objectiveIcon.push_back( exdData->getField< uint16_t >( row, 43 ) ); - objectiveIcon.push_back( exdData->getField< uint16_t >( row, 44 ) ); - objectiveIcon.push_back( exdData->getField< uint16_t >( row, 45 ) ); - objectiveIcon.push_back( exdData->getField< uint16_t >( row, 46 ) ); - objectiveIcon.push_back( exdData->getField< uint16_t >( row, 47 ) ); - objectiveIcon.push_back( exdData->getField< uint16_t >( row, 48 ) ); - objectiveIcon.push_back( exdData->getField< uint16_t >( row, 49 ) ); - objectiveIcon.push_back( exdData->getField< uint16_t >( row, 50 ) ); -} - -Sapphire::Data::FateEvent::FateEvent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FateEventDat.get_row( row_id ); - turn.push_back( exdData->getField< uint8_t >( row, 0 ) ); - turn.push_back( exdData->getField< uint8_t >( row, 1 ) ); - turn.push_back( exdData->getField< uint8_t >( row, 2 ) ); - turn.push_back( exdData->getField< uint8_t >( row, 3 ) ); - turn.push_back( exdData->getField< uint8_t >( row, 4 ) ); - turn.push_back( exdData->getField< uint8_t >( row, 5 ) ); - turn.push_back( exdData->getField< uint8_t >( row, 6 ) ); - turn.push_back( exdData->getField< uint8_t >( row, 7 ) ); - gesture.push_back( exdData->getField< uint32_t >( row, 8 ) ); - gesture.push_back( exdData->getField< uint32_t >( row, 9 ) ); - gesture.push_back( exdData->getField< uint32_t >( row, 10 ) ); - gesture.push_back( exdData->getField< uint32_t >( row, 11 ) ); - gesture.push_back( exdData->getField< uint32_t >( row, 12 ) ); - gesture.push_back( exdData->getField< uint32_t >( row, 13 ) ); - gesture.push_back( exdData->getField< uint32_t >( row, 14 ) ); - gesture.push_back( exdData->getField< uint32_t >( row, 15 ) ); - lipSync.push_back( exdData->getField< int32_t >( row, 16 ) ); - lipSync.push_back( exdData->getField< int32_t >( row, 17 ) ); - lipSync.push_back( exdData->getField< int32_t >( row, 18 ) ); - lipSync.push_back( exdData->getField< int32_t >( row, 19 ) ); - lipSync.push_back( exdData->getField< int32_t >( row, 20 ) ); - lipSync.push_back( exdData->getField< int32_t >( row, 21 ) ); - lipSync.push_back( exdData->getField< int32_t >( row, 22 ) ); - lipSync.push_back( exdData->getField< int32_t >( row, 23 ) ); - facial.push_back( exdData->getField< int32_t >( row, 24 ) ); - facial.push_back( exdData->getField< int32_t >( row, 25 ) ); - facial.push_back( exdData->getField< int32_t >( row, 26 ) ); - facial.push_back( exdData->getField< int32_t >( row, 27 ) ); - facial.push_back( exdData->getField< int32_t >( row, 28 ) ); - facial.push_back( exdData->getField< int32_t >( row, 29 ) ); - facial.push_back( exdData->getField< int32_t >( row, 30 ) ); - facial.push_back( exdData->getField< int32_t >( row, 31 ) ); - shape.push_back( exdData->getField< int32_t >( row, 32 ) ); - shape.push_back( exdData->getField< int32_t >( row, 33 ) ); - shape.push_back( exdData->getField< int32_t >( row, 34 ) ); - shape.push_back( exdData->getField< int32_t >( row, 35 ) ); - shape.push_back( exdData->getField< int32_t >( row, 36 ) ); - shape.push_back( exdData->getField< int32_t >( row, 37 ) ); - shape.push_back( exdData->getField< int32_t >( row, 38 ) ); - shape.push_back( exdData->getField< int32_t >( row, 39 ) ); - isAutoShake.push_back( exdData->getField< bool >( row, 40 ) ); - isAutoShake.push_back( exdData->getField< bool >( row, 41 ) ); - isAutoShake.push_back( exdData->getField< bool >( row, 42 ) ); - isAutoShake.push_back( exdData->getField< bool >( row, 43 ) ); - isAutoShake.push_back( exdData->getField< bool >( row, 44 ) ); - isAutoShake.push_back( exdData->getField< bool >( row, 45 ) ); - isAutoShake.push_back( exdData->getField< bool >( row, 46 ) ); - isAutoShake.push_back( exdData->getField< bool >( row, 47 ) ); - widgetType.push_back( exdData->getField< uint8_t >( row, 48 ) ); - widgetType.push_back( exdData->getField< uint8_t >( row, 49 ) ); - widgetType.push_back( exdData->getField< uint8_t >( row, 50 ) ); - widgetType.push_back( exdData->getField< uint8_t >( row, 51 ) ); - widgetType.push_back( exdData->getField< uint8_t >( row, 52 ) ); - widgetType.push_back( exdData->getField< uint8_t >( row, 53 ) ); - widgetType.push_back( exdData->getField< uint8_t >( row, 54 ) ); - widgetType.push_back( exdData->getField< uint8_t >( row, 55 ) ); - text.push_back( exdData->getField< std::string >( row, 56 ) ); - text.push_back( exdData->getField< std::string >( row, 57 ) ); - text.push_back( exdData->getField< std::string >( row, 58 ) ); - text.push_back( exdData->getField< std::string >( row, 59 ) ); - text.push_back( exdData->getField< std::string >( row, 60 ) ); - text.push_back( exdData->getField< std::string >( row, 61 ) ); - text.push_back( exdData->getField< std::string >( row, 62 ) ); - text.push_back( exdData->getField< std::string >( row, 63 ) ); -} - -Sapphire::Data::FateMode::FateMode( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FateModeDat.get_row( row_id ); - motivationIcon = exdData->getField< uint32_t >( row, 1 ); - motivationMapMarker = exdData->getField< uint32_t >( row, 2 ); - objectiveIcon = exdData->getField< uint32_t >( row, 3 ); - objectiveMapMarker = exdData->getField< uint32_t >( row, 4 ); -} - -Sapphire::Data::FateProgressUI::FateProgressUI( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FateProgressUIDat.get_row( row_id ); - location = exdData->getField< int32_t >( row, 0 ); - achievement = exdData->getField< int32_t >( row, 1 ); - reqFatesToRank2 = exdData->getField< uint8_t >( row, 2 ); - reqFatesToRank3 = exdData->getField< uint8_t >( row, 3 ); - displayOrder = exdData->getField< uint8_t >( row, 4 ); -} - -Sapphire::Data::FateTokenType::FateTokenType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FateTokenTypeDat.get_row( row_id ); - currency = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::FCActivity::FCActivity( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FCActivityDat.get_row( row_id ); - text = exdData->getField< std::string >( row, 0 ); - selfKind = exdData->getField< uint8_t >( row, 1 ); - targetKind = exdData->getField< uint8_t >( row, 2 ); - numParam = exdData->getField< uint8_t >( row, 3 ); - fCActivityCategory = exdData->getField< uint8_t >( row, 4 ); - iconType = exdData->getField< int8_t >( row, 5 ); -} - -Sapphire::Data::FCActivityCategory::FCActivityCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FCActivityCategoryDat.get_row( row_id ); - priority = exdData->getField< uint8_t >( row, 0 ); - name = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::FCAuthority::FCAuthority( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FCAuthorityDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - fCAuthorityCategory = exdData->getField< int32_t >( row, 1 ); -} - -Sapphire::Data::FCAuthorityCategory::FCAuthorityCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FCAuthorityCategoryDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::FCChestName::FCChestName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FCChestNameDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::FCCrestSymbol::FCCrestSymbol( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FCCrestSymbolDat.get_row( row_id ); - colorNum = exdData->getField< uint8_t >( row, 0 ); - fCRight = exdData->getField< uint8_t >( row, 1 ); -} - -Sapphire::Data::FccShop::FccShop( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FccShopDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::FCHierarchy::FCHierarchy( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FCHierarchyDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::FCProfile::FCProfile( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FCProfileDat.get_row( row_id ); - priority = exdData->getField< uint8_t >( row, 0 ); - name = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::FCRank::FCRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FCRankDat.get_row( row_id ); - nextPoint = exdData->getField< uint32_t >( row, 0 ); - currentPoint = exdData->getField< uint32_t >( row, 1 ); - rights = exdData->getField< uint16_t >( row, 2 ); - fCActionActiveNum = exdData->getField< uint8_t >( row, 5 ); - fCActionStockNum = exdData->getField< uint8_t >( row, 6 ); -} - -Sapphire::Data::FCReputation::FCReputation( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FCReputationDat.get_row( row_id ); - pointsToNext = exdData->getField< uint32_t >( row, 0 ); - requiredPoints = exdData->getField< uint32_t >( row, 1 ); - discountRate = exdData->getField< uint8_t >( row, 2 ); - color = exdData->getField< uint32_t >( row, 3 ); - name = exdData->getField< std::string >( row, 4 ); -} - -Sapphire::Data::FCRights::FCRights( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FCRightsDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - description = exdData->getField< std::string >( row, 1 ); - icon = exdData->getField< uint16_t >( row, 2 ); - fCRank = exdData->getField< uint8_t >( row, 3 ); -} - -Sapphire::Data::Festival::Festival( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FestivalDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::FieldMarker::FieldMarker( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FieldMarkerDat.get_row( row_id ); - vFX = exdData->getField< int32_t >( row, 0 ); - uiIcon = exdData->getField< uint16_t >( row, 1 ); - mapIcon = exdData->getField< uint16_t >( row, 2 ); - name = exdData->getField< std::string >( row, 3 ); -} - -Sapphire::Data::FishingRecordType::FishingRecordType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FishingRecordTypeDat.get_row( row_id ); - addon = exdData->getField< int32_t >( row, 0 ); - rankBRequirement = exdData->getField< uint16_t >( row, 1 ); - rankARequirement = exdData->getField< uint16_t >( row, 2 ); - rankAARequirement = exdData->getField< uint16_t >( row, 3 ); - rankAAARequirement = exdData->getField< uint16_t >( row, 4 ); -} - -Sapphire::Data::FishingRecordTypeTransient::FishingRecordTypeTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FishingRecordTypeTransientDat.get_row( row_id ); - image = exdData->getField< int32_t >( row, 0 ); -} - -Sapphire::Data::FishingSpot::FishingSpot( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FishingSpotDat.get_row( row_id ); - gatheringLevel = exdData->getField< uint8_t >( row, 0 ); - bigFishOnReach = exdData->getField< std::string >( row, 1 ); - bigFishOnEnd = exdData->getField< std::string >( row, 2 ); - fishingSpotCategory = exdData->getField< uint8_t >( row, 3 ); - rare = exdData->getField< bool >( row, 4 ); - territoryType = exdData->getField< uint16_t >( row, 5 ); - placeNameMain = exdData->getField< uint16_t >( row, 6 ); - placeNameSub = exdData->getField< uint16_t >( row, 7 ); - x = exdData->getField< int16_t >( row, 8 ); - z = exdData->getField< int16_t >( row, 9 ); - radius = exdData->getField< uint16_t >( row, 10 ); - item.push_back( exdData->getField< int32_t >( row, 12 ) ); - item.push_back( exdData->getField< int32_t >( row, 13 ) ); - item.push_back( exdData->getField< int32_t >( row, 14 ) ); - item.push_back( exdData->getField< int32_t >( row, 15 ) ); - item.push_back( exdData->getField< int32_t >( row, 16 ) ); - item.push_back( exdData->getField< int32_t >( row, 17 ) ); - item.push_back( exdData->getField< int32_t >( row, 18 ) ); - item.push_back( exdData->getField< int32_t >( row, 19 ) ); - item.push_back( exdData->getField< int32_t >( row, 20 ) ); - item.push_back( exdData->getField< int32_t >( row, 21 ) ); - placeName = exdData->getField< uint16_t >( row, 22 ); - order = exdData->getField< uint8_t >( row, 23 ); -} - -Sapphire::Data::FishParameter::FishParameter( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FishParameterDat.get_row( row_id ); - text = exdData->getField< std::string >( row, 0 ); - item = exdData->getField< int32_t >( row, 1 ); - gatheringItemLevel = exdData->getField< uint16_t >( row, 2 ); - isHidden = exdData->getField< bool >( row, 4 ); - fishingRecordType = exdData->getField< uint8_t >( row, 6 ); - territoryType = exdData->getField< int32_t >( row, 7 ); - gatheringSubCategory = exdData->getField< uint16_t >( row, 8 ); - isInLog = exdData->getField< bool >( row, 9 ); - timeRestricted = exdData->getField< bool >( row, 10 ); - weatherRestricted = exdData->getField< bool >( row, 11 ); -} - -Sapphire::Data::Frontline03::Frontline03( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_Frontline03Dat.get_row( row_id ); - emptyIcon.push_back( exdData->getField< uint32_t >( row, 9 ) ); - emptyIcon.push_back( exdData->getField< uint32_t >( row, 10 ) ); - emptyIcon.push_back( exdData->getField< uint32_t >( row, 11 ) ); - maelstromIcon.push_back( exdData->getField< uint32_t >( row, 12 ) ); - maelstromIcon.push_back( exdData->getField< uint32_t >( row, 13 ) ); - maelstromIcon.push_back( exdData->getField< uint32_t >( row, 14 ) ); - twinAdderIcon.push_back( exdData->getField< uint32_t >( row, 15 ) ); - twinAdderIcon.push_back( exdData->getField< uint32_t >( row, 16 ) ); - twinAdderIcon.push_back( exdData->getField< uint32_t >( row, 17 ) ); - immortalFlamesIcon.push_back( exdData->getField< uint32_t >( row, 18 ) ); - immortalFlamesIcon.push_back( exdData->getField< uint32_t >( row, 19 ) ); - immortalFlamesIcon.push_back( exdData->getField< uint32_t >( row, 20 ) ); -} - -Sapphire::Data::Frontline04::Frontline04( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_Frontline04Dat.get_row( row_id ); - level1 = exdData->getField< int32_t >( row, 0 ); - level2 = exdData->getField< int32_t >( row, 1 ); - level3 = exdData->getField< int32_t >( row, 2 ); -} - -Sapphire::Data::FurnitureCatalogCategory::FurnitureCatalogCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FurnitureCatalogCategoryDat.get_row( row_id ); - category = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::FurnitureCatalogItemList::FurnitureCatalogItemList( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_FurnitureCatalogItemListDat.get_row( row_id ); - category = exdData->getField< uint16_t >( row, 0 ); - item = exdData->getField< int32_t >( row, 1 ); - patch = exdData->getField< uint16_t >( row, 2 ); -} - -Sapphire::Data::GardeningSeed::GardeningSeed( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GardeningSeedDat.get_row( row_id ); - item = exdData->getField< uint32_t >( row, 0 ); - modelID = exdData->getField< uint16_t >( row, 1 ); - icon = exdData->getField< uint32_t >( row, 2 ); - sE = exdData->getField< bool >( row, 3 ); -} - -Sapphire::Data::GatheringCondition::GatheringCondition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringConditionDat.get_row( row_id ); - text = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::GatheringExp::GatheringExp( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringExpDat.get_row( row_id ); - exp = exdData->getField< int32_t >( row, 0 ); -} - -Sapphire::Data::GatheringItem::GatheringItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringItemDat.get_row( row_id ); - item = exdData->getField< int32_t >( row, 0 ); - gatheringItemLevel = exdData->getField< uint16_t >( row, 1 ); - isHidden = exdData->getField< bool >( row, 4 ); -} - -Sapphire::Data::GatheringItemLevelConvertTable::GatheringItemLevelConvertTable( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringItemLevelConvertTableDat.get_row( row_id ); - gatheringItemLevel = exdData->getField< uint8_t >( row, 0 ); - stars = exdData->getField< uint8_t >( row, 1 ); -} - -Sapphire::Data::GatheringItemPoint::GatheringItemPoint( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringItemPointDat.get_row( row_id, subRow ); - gatheringPoint = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::GatheringLeve::GatheringLeve( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringLeveDat.get_row( row_id ); - route.push_back( exdData->getField< int32_t >( row, 0 ) ); - route.push_back( exdData->getField< int32_t >( row, 1 ) ); - route.push_back( exdData->getField< int32_t >( row, 2 ) ); - route.push_back( exdData->getField< int32_t >( row, 3 ) ); - requiredItem0 = exdData->getField< int32_t >( row, 4 ); - requiredItemQty0 = exdData->getField< uint8_t >( row, 5 ); - requiredItem1 = exdData->getField< int32_t >( row, 6 ); - requiredItemQty1 = exdData->getField< uint8_t >( row, 7 ); - requiredItem2 = exdData->getField< int32_t >( row, 8 ); - requiredItemQty2 = exdData->getField< uint8_t >( row, 9 ); - requiredItem3 = exdData->getField< int32_t >( row, 10 ); - requiredItemQty3 = exdData->getField< uint8_t >( row, 11 ); - itemNumber = exdData->getField< uint8_t >( row, 12 ); - rule = exdData->getField< int32_t >( row, 13 ); - varient = exdData->getField< uint8_t >( row, 14 ); - objective0 = exdData->getField< uint16_t >( row, 15 ); - objective1 = exdData->getField< uint16_t >( row, 16 ); - bNpcEntry = exdData->getField< int32_t >( row, 17 ); - useSecondaryTool = exdData->getField< bool >( row, 18 ); -} - -Sapphire::Data::GatheringLeveRoute::GatheringLeveRoute( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringLeveRouteDat.get_row( row_id ); -} - -Sapphire::Data::GatheringLeveRule::GatheringLeveRule( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringLeveRuleDat.get_row( row_id ); - rule = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::GatheringNotebookList::GatheringNotebookList( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringNotebookListDat.get_row( row_id ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 1 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 2 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 3 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 4 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 5 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 6 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 7 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 8 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 9 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 10 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 11 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 12 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 13 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 14 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 15 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 16 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 17 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 18 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 19 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 20 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 21 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 22 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 23 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 24 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 25 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 26 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 27 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 28 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 29 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 30 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 31 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 32 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 33 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 34 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 35 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 36 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 37 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 38 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 39 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 40 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 41 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 42 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 43 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 44 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 45 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 46 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 47 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 48 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 49 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 50 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 51 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 52 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 53 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 54 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 55 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 56 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 57 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 58 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 59 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 60 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 61 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 62 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 63 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 64 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 65 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 66 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 67 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 68 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 69 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 70 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 71 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 72 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 73 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 74 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 75 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 76 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 77 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 78 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 79 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 80 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 81 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 82 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 83 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 84 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 85 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 86 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 87 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 88 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 89 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 90 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 91 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 92 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 93 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 94 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 95 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 96 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 97 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 98 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 99 ) ); - gatheringItem.push_back( exdData->getField< int32_t >( row, 100 ) ); -} - -Sapphire::Data::GatheringPoint::GatheringPoint( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringPointDat.get_row( row_id ); - type = exdData->getField< uint8_t >( row, 0 ); - gatheringPointBase = exdData->getField< int32_t >( row, 1 ); - count = exdData->getField< uint8_t >( row, 2 ); - gatheringPointBonus.push_back( exdData->getField< uint16_t >( row, 3 ) ); - gatheringPointBonus.push_back( exdData->getField< uint16_t >( row, 4 ) ); - territoryType = exdData->getField< uint16_t >( row, 5 ); - placeName = exdData->getField< uint16_t >( row, 6 ); - gatheringSubCategory = exdData->getField< uint16_t >( row, 7 ); -} - -Sapphire::Data::GatheringPointBase::GatheringPointBase( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringPointBaseDat.get_row( row_id ); - gatheringType = exdData->getField< int32_t >( row, 0 ); - gatheringLevel = exdData->getField< uint8_t >( row, 1 ); - item.push_back( exdData->getField< int32_t >( row, 2 ) ); - item.push_back( exdData->getField< int32_t >( row, 3 ) ); - item.push_back( exdData->getField< int32_t >( row, 4 ) ); - item.push_back( exdData->getField< int32_t >( row, 5 ) ); - item.push_back( exdData->getField< int32_t >( row, 6 ) ); - item.push_back( exdData->getField< int32_t >( row, 7 ) ); - item.push_back( exdData->getField< int32_t >( row, 8 ) ); - item.push_back( exdData->getField< int32_t >( row, 9 ) ); - isLimited = exdData->getField< bool >( row, 10 ); -} - -Sapphire::Data::GatheringPointBonus::GatheringPointBonus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringPointBonusDat.get_row( row_id ); - condition = exdData->getField< uint8_t >( row, 0 ); - conditionValue = exdData->getField< uint32_t >( row, 1 ); - bonusType = exdData->getField< uint8_t >( row, 3 ); - bonusValue = exdData->getField< uint16_t >( row, 4 ); -} - -Sapphire::Data::GatheringPointBonusType::GatheringPointBonusType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringPointBonusTypeDat.get_row( row_id ); - text = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::GatheringPointName::GatheringPointName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringPointNameDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); -} - -Sapphire::Data::GatheringPointTransient::GatheringPointTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringPointTransientDat.get_row( row_id ); - ephemeralStartTime = exdData->getField< uint16_t >( row, 0 ); - ephemeralEndTime = exdData->getField< uint16_t >( row, 1 ); - gatheringRarePopTimeTable = exdData->getField< int32_t >( row, 2 ); -} - -Sapphire::Data::GatheringRarePopTimeTable::GatheringRarePopTimeTable( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringRarePopTimeTableDat.get_row( row_id ); -} - -Sapphire::Data::GatheringSubCategory::GatheringSubCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringSubCategoryDat.get_row( row_id ); - gatheringType = exdData->getField< uint8_t >( row, 0 ); - classJob = exdData->getField< uint8_t >( row, 1 ); - division = exdData->getField< uint16_t >( row, 3 ); - item = exdData->getField< int32_t >( row, 4 ); - folkloreBook = exdData->getField< std::string >( row, 5 ); -} - -Sapphire::Data::GatheringType::GatheringType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GatheringTypeDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - iconMain = exdData->getField< int32_t >( row, 1 ); - iconOff = exdData->getField< int32_t >( row, 2 ); -} - -Sapphire::Data::GcArmyCaptureTactics::GcArmyCaptureTactics( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GcArmyCaptureTacticsDat.get_row( row_id ); - name = exdData->getField< int32_t >( row, 0 ); - hP = exdData->getField< uint8_t >( row, 1 ); - damageDealt = exdData->getField< uint8_t >( row, 2 ); - damageReceived = exdData->getField< uint8_t >( row, 3 ); - tactic = exdData->getField< uint32_t >( row, 4 ); - icon = exdData->getField< uint32_t >( row, 5 ); -} - -Sapphire::Data::GcArmyEquipPreset::GcArmyEquipPreset( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GcArmyEquipPresetDat.get_row( row_id ); - mainHand = exdData->getField< int32_t >( row, 0 ); - offHand = exdData->getField< int32_t >( row, 1 ); - head = exdData->getField< int32_t >( row, 2 ); - body = exdData->getField< int32_t >( row, 3 ); - gloves = exdData->getField< int32_t >( row, 4 ); - legs = exdData->getField< int32_t >( row, 5 ); - feet = exdData->getField< int32_t >( row, 6 ); -} - -Sapphire::Data::GcArmyExpedition::GcArmyExpedition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GcArmyExpeditionDat.get_row( row_id ); - requiredFlag = exdData->getField< uint8_t >( row, 0 ); - unlockFlag = exdData->getField< uint8_t >( row, 1 ); - requiredLevel = exdData->getField< uint8_t >( row, 2 ); - requiredSeals = exdData->getField< uint16_t >( row, 3 ); - rewardExperience = exdData->getField< uint32_t >( row, 4 ); - percentBase = exdData->getField< uint8_t >( row, 5 ); - gcArmyExpeditionType = exdData->getField< uint8_t >( row, 7 ); - name = exdData->getField< std::string >( row, 8 ); - description = exdData->getField< std::string >( row, 9 ); -} - -Sapphire::Data::GcArmyExpeditionMemberBonus::GcArmyExpeditionMemberBonus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GcArmyExpeditionMemberBonusDat.get_row( row_id ); - race = exdData->getField< uint8_t >( row, 0 ); - classJob = exdData->getField< uint8_t >( row, 1 ); -} - -Sapphire::Data::GcArmyExpeditionType::GcArmyExpeditionType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GcArmyExpeditionTypeDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::GcArmyMemberGrow::GcArmyMemberGrow( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GcArmyMemberGrowDat.get_row( row_id ); - classJob = exdData->getField< uint8_t >( row, 0 ); - classBook = exdData->getField< int32_t >( row, 1 ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 2 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 3 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 4 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 5 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 6 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 7 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 8 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 9 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 10 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 11 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 12 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 13 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 14 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 15 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 16 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 17 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 18 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 19 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 20 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 21 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 22 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 23 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 24 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 25 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 26 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 27 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 28 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 29 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 30 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 31 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 32 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 33 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 34 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 35 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 36 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 37 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 38 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 39 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 40 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 41 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 42 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 43 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 44 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 45 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 46 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 47 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 48 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 49 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 50 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 51 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 52 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 53 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 54 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 55 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 56 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 57 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 58 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 59 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 60 ) ); - equipPreset.push_back( exdData->getField< uint16_t >( row, 61 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 63 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 64 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 65 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 66 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 67 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 68 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 69 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 70 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 71 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 72 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 73 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 74 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 75 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 76 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 77 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 78 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 79 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 80 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 81 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 82 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 83 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 84 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 85 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 86 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 87 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 88 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 89 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 90 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 91 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 92 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 93 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 94 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 95 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 96 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 97 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 98 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 99 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 100 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 101 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 102 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 103 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 104 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 105 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 106 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 107 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 108 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 109 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 110 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 111 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 112 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 113 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 114 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 115 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 116 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 117 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 118 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 119 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 120 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 121 ) ); - physical.push_back( exdData->getField< uint8_t >( row, 122 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 124 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 125 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 126 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 127 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 128 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 129 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 130 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 131 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 132 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 133 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 134 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 135 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 136 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 137 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 138 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 139 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 140 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 141 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 142 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 143 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 144 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 145 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 146 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 147 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 148 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 149 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 150 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 151 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 152 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 153 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 154 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 155 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 156 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 157 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 158 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 159 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 160 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 161 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 162 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 163 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 164 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 165 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 166 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 167 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 168 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 169 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 170 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 171 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 172 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 173 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 174 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 175 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 176 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 177 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 178 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 179 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 180 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 181 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 182 ) ); - mental.push_back( exdData->getField< uint8_t >( row, 183 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 185 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 186 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 187 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 188 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 189 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 190 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 191 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 192 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 193 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 194 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 195 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 196 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 197 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 198 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 199 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 200 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 201 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 202 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 203 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 204 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 205 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 206 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 207 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 208 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 209 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 210 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 211 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 212 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 213 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 214 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 215 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 216 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 217 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 218 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 219 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 220 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 221 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 222 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 223 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 224 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 225 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 226 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 227 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 228 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 229 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 230 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 231 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 232 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 233 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 234 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 235 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 236 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 237 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 238 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 239 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 240 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 241 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 242 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 243 ) ); - tactical.push_back( exdData->getField< uint8_t >( row, 244 ) ); -} - -Sapphire::Data::GcArmyTraining::GcArmyTraining( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GcArmyTrainingDat.get_row( row_id ); - physicalBonus = exdData->getField< int8_t >( row, 0 ); - mentalBonus = exdData->getField< int8_t >( row, 1 ); - tacticalBonus = exdData->getField< int8_t >( row, 2 ); - experience = exdData->getField< uint32_t >( row, 3 ); - name = exdData->getField< std::string >( row, 4 ); - description = exdData->getField< std::string >( row, 5 ); -} - -Sapphire::Data::GCRankGridaniaFemaleText::GCRankGridaniaFemaleText( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GCRankGridaniaFemaleTextDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); - nameRank = exdData->getField< std::string >( row, 8 ); -} - -Sapphire::Data::GCRankGridaniaMaleText::GCRankGridaniaMaleText( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GCRankGridaniaMaleTextDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); - nameRank = exdData->getField< std::string >( row, 8 ); -} - -Sapphire::Data::GCRankLimsaFemaleText::GCRankLimsaFemaleText( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GCRankLimsaFemaleTextDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); - nameRank = exdData->getField< std::string >( row, 8 ); -} - -Sapphire::Data::GCRankLimsaMaleText::GCRankLimsaMaleText( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GCRankLimsaMaleTextDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); - nameRank = exdData->getField< std::string >( row, 8 ); -} - -Sapphire::Data::GCRankUldahFemaleText::GCRankUldahFemaleText( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GCRankUldahFemaleTextDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); - nameRank = exdData->getField< std::string >( row, 8 ); -} - -Sapphire::Data::GCRankUldahMaleText::GCRankUldahMaleText( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GCRankUldahMaleTextDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); - nameRank = exdData->getField< std::string >( row, 8 ); -} - -Sapphire::Data::GCScripShopCategory::GCScripShopCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GCScripShopCategoryDat.get_row( row_id ); - grandCompany = exdData->getField< int8_t >( row, 0 ); - tier = exdData->getField< int8_t >( row, 1 ); - subCategory = exdData->getField< int8_t >( row, 2 ); -} - -Sapphire::Data::GCScripShopItem::GCScripShopItem( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GCScripShopItemDat.get_row( row_id, subRow ); - item = exdData->getField< int32_t >( row, 0 ); - requiredGrandCompanyRank = exdData->getField< int32_t >( row, 1 ); - costGCSeals = exdData->getField< uint32_t >( row, 2 ); - sortKey = exdData->getField< uint8_t >( row, 3 ); -} - -Sapphire::Data::GCShop::GCShop( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GCShopDat.get_row( row_id ); - grandCompany = exdData->getField< int8_t >( row, 0 ); -} - -Sapphire::Data::GCShopItemCategory::GCShopItemCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GCShopItemCategoryDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::GCSupplyDuty::GCSupplyDuty( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GCSupplyDutyDat.get_row( row_id ); -} - -Sapphire::Data::GCSupplyDutyReward::GCSupplyDutyReward( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GCSupplyDutyRewardDat.get_row( row_id ); - experienceSupply = exdData->getField< uint32_t >( row, 0 ); - experienceProvisioning = exdData->getField< uint32_t >( row, 1 ); - sealsExpertDelivery = exdData->getField< uint32_t >( row, 2 ); - sealsSupply = exdData->getField< uint32_t >( row, 3 ); - sealsProvisioning = exdData->getField< uint32_t >( row, 4 ); -} - -Sapphire::Data::GeneralAction::GeneralAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GeneralActionDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - description = exdData->getField< std::string >( row, 1 ); - action = exdData->getField< uint16_t >( row, 3 ); - unlockLink = exdData->getField< uint16_t >( row, 4 ); - recast = exdData->getField< uint8_t >( row, 5 ); - uIPriority = exdData->getField< uint8_t >( row, 6 ); - icon = exdData->getField< int32_t >( row, 7 ); -} - -Sapphire::Data::GFATE::GFATE( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GFATEDat.get_row( row_id ); - icon.push_back( exdData->getField< uint32_t >( row, 22 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 23 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 24 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 25 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 26 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 27 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 28 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 29 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 30 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 31 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 32 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 33 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 34 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 35 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 36 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 37 ) ); -} - -Sapphire::Data::GFateClimbing2::GFateClimbing2( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GFateClimbing2Dat.get_row( row_id ); - contentEntry = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::GFateClimbing2Content::GFateClimbing2Content( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GFateClimbing2ContentDat.get_row( row_id ); - publicContentTextData = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::GFateClimbing2TotemType::GFateClimbing2TotemType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GFateClimbing2TotemTypeDat.get_row( row_id ); - publicContentTextData = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::GFateRideShooting::GFateRideShooting( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GFateRideShootingDat.get_row( row_id ); - contentEntry = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::GilShop::GilShop( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GilShopDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - icon = exdData->getField< uint32_t >( row, 1 ); - quest = exdData->getField< uint32_t >( row, 2 ); - acceptTalk = exdData->getField< int32_t >( row, 3 ); - failTalk = exdData->getField< int32_t >( row, 4 ); -} - -Sapphire::Data::GilShopItem::GilShopItem( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GilShopItemDat.get_row( row_id, subRow ); - item = exdData->getField< int32_t >( row, 0 ); - questRequired.push_back( exdData->getField< int32_t >( row, 3 ) ); - questRequired.push_back( exdData->getField< int32_t >( row, 4 ) ); - achievementRequired = exdData->getField< int32_t >( row, 5 ); - stateRequired = exdData->getField< uint16_t >( row, 7 ); - patch = exdData->getField< uint16_t >( row, 8 ); -} - -Sapphire::Data::GimmickAccessor::GimmickAccessor( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GimmickAccessorDat.get_row( row_id ); - param0 = exdData->getField< int32_t >( row, 0 ); - param1 = exdData->getField< uint32_t >( row, 1 ); - param2 = exdData->getField< uint32_t >( row, 2 ); - type = exdData->getField< uint32_t >( row, 3 ); -} - -Sapphire::Data::GimmickJump::GimmickJump( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GimmickJumpDat.get_row( row_id ); - fallDamage = exdData->getField< uint16_t >( row, 0 ); - height = exdData->getField< int8_t >( row, 1 ); - loopMotion = exdData->getField< uint32_t >( row, 2 ); - endMotion = exdData->getField< uint32_t >( row, 3 ); - startClient = exdData->getField< bool >( row, 4 ); -} - -Sapphire::Data::GimmickRect::GimmickRect( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GimmickRectDat.get_row( row_id ); - layoutID = exdData->getField< uint32_t >( row, 0 ); - triggerIn = exdData->getField< uint8_t >( row, 1 ); - param0 = exdData->getField< uint32_t >( row, 2 ); - triggerOut = exdData->getField< uint8_t >( row, 6 ); - param1 = exdData->getField< uint32_t >( row, 7 ); -} - -Sapphire::Data::GoldSaucerArcadeMachine::GoldSaucerArcadeMachine( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GoldSaucerArcadeMachineDat.get_row( row_id ); - failImage = exdData->getField< uint32_t >( row, 6 ); - poor = exdData->getField< uint32_t >( row, 35 ); - good = exdData->getField< uint32_t >( row, 36 ); - great = exdData->getField< uint32_t >( row, 37 ); - excellent = exdData->getField< uint32_t >( row, 38 ); -} - -Sapphire::Data::GoldSaucerTextData::GoldSaucerTextData( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GoldSaucerTextDataDat.get_row( row_id ); - text = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::GrandCompany::GrandCompany( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GrandCompanyDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::GrandCompanyRank::GrandCompanyRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GrandCompanyRankDat.get_row( row_id ); - tier = exdData->getField< uint8_t >( row, 0 ); - order = exdData->getField< uint8_t >( row, 1 ); - maxSeals = exdData->getField< uint32_t >( row, 2 ); - requiredSeals = exdData->getField< uint32_t >( row, 3 ); - iconMaelstrom = exdData->getField< int32_t >( row, 4 ); - iconSerpents = exdData->getField< int32_t >( row, 5 ); - iconFlames = exdData->getField< int32_t >( row, 6 ); - questMaelstrom = exdData->getField< int32_t >( row, 7 ); - questSerpents = exdData->getField< int32_t >( row, 8 ); - questFlames = exdData->getField< int32_t >( row, 9 ); -} - -Sapphire::Data::GroupPoseFrame::GroupPoseFrame( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GroupPoseFrameDat.get_row( row_id ); - image = exdData->getField< int32_t >( row, 1 ); - gridText = exdData->getField< std::string >( row, 2 ); - text = exdData->getField< std::string >( row, 7 ); -} - -Sapphire::Data::GroupPoseStamp::GroupPoseStamp( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GroupPoseStampDat.get_row( row_id ); - stampIcon = exdData->getField< int32_t >( row, 0 ); - category = exdData->getField< int32_t >( row, 2 ); - name = exdData->getField< std::string >( row, 8 ); -} - -Sapphire::Data::GroupPoseStampCategory::GroupPoseStampCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GroupPoseStampCategoryDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::GuardianDeity::GuardianDeity( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GuardianDeityDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - description = exdData->getField< std::string >( row, 1 ); - icon = exdData->getField< uint16_t >( row, 2 ); -} - -Sapphire::Data::Guide::Guide( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GuideDat.get_row( row_id ); - guideTitle = exdData->getField< uint16_t >( row, 0 ); - guidePage = exdData->getField< uint16_t >( row, 1 ); -} - -Sapphire::Data::GuidePage::GuidePage( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GuidePageDat.get_row( row_id, subRow ); - key = exdData->getField< uint8_t >( row, 0 ); - output = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::GuidePageString::GuidePageString( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GuidePageStringDat.get_row( row_id ); - string = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::GuideTitle::GuideTitle( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GuideTitleDat.get_row( row_id ); - title = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::GuildleveAssignment::GuildleveAssignment( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GuildleveAssignmentDat.get_row( row_id ); - type = exdData->getField< std::string >( row, 0 ); - typeId = exdData->getField< uint8_t >( row, 1 ); - assignmentTalk = exdData->getField< uint32_t >( row, 2 ); - quest.push_back( exdData->getField< uint32_t >( row, 3 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 4 ) ); - grandCompanyRank = exdData->getField< uint8_t >( row, 10 ); -} - -Sapphire::Data::GuildleveAssignmentCategory::GuildleveAssignmentCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GuildleveAssignmentCategoryDat.get_row( row_id ); - category.push_back( exdData->getField< int32_t >( row, 0 ) ); - category.push_back( exdData->getField< int32_t >( row, 1 ) ); - category.push_back( exdData->getField< int32_t >( row, 2 ) ); - category.push_back( exdData->getField< int32_t >( row, 3 ) ); - category.push_back( exdData->getField< int32_t >( row, 4 ) ); - category.push_back( exdData->getField< int32_t >( row, 5 ) ); - category.push_back( exdData->getField< int32_t >( row, 6 ) ); - category.push_back( exdData->getField< int32_t >( row, 7 ) ); -} - -Sapphire::Data::GuildleveAssignmentTalk::GuildleveAssignmentTalk( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GuildleveAssignmentTalkDat.get_row( row_id ); - talk.push_back( exdData->getField< std::string >( row, 30 ) ); - talk.push_back( exdData->getField< std::string >( row, 31 ) ); - talk.push_back( exdData->getField< std::string >( row, 32 ) ); - talk.push_back( exdData->getField< std::string >( row, 33 ) ); - talk.push_back( exdData->getField< std::string >( row, 34 ) ); - talk.push_back( exdData->getField< std::string >( row, 35 ) ); - talk.push_back( exdData->getField< std::string >( row, 36 ) ); - talk.push_back( exdData->getField< std::string >( row, 37 ) ); -} - -Sapphire::Data::GuildOrder::GuildOrder( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GuildOrderDat.get_row( row_id ); - eNpcName = exdData->getField< uint32_t >( row, 0 ); - objective = exdData->getField< std::string >( row, 1 ); - description1 = exdData->getField< std::string >( row, 2 ); - description2 = exdData->getField< std::string >( row, 3 ); - description3 = exdData->getField< std::string >( row, 4 ); - completionBonusExp = exdData->getField< uint32_t >( row, 5 ); - rewardExp = exdData->getField< uint32_t >( row, 6 ); - completionBonusGil = exdData->getField< uint32_t >( row, 7 ); - rewardGil = exdData->getField< uint32_t >( row, 8 ); -} - -Sapphire::Data::GuildOrderGuide::GuildOrderGuide( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GuildOrderGuideDat.get_row( row_id ); -} - -Sapphire::Data::GuildOrderOfficer::GuildOrderOfficer( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_GuildOrderOfficerDat.get_row( row_id ); -} - -Sapphire::Data::HairMakeType::HairMakeType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HairMakeTypeDat.get_row( row_id ); - race = exdData->getField< int32_t >( row, 0 ); - tribe = exdData->getField< int32_t >( row, 1 ); - gender = exdData->getField< int8_t >( row, 2 ); -} - -Sapphire::Data::HouseRetainerPose::HouseRetainerPose( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HouseRetainerPoseDat.get_row( row_id ); - actionTimeline = exdData->getField< uint16_t >( row, 0 ); -} - -Sapphire::Data::HousingAethernet::HousingAethernet( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HousingAethernetDat.get_row( row_id ); - level = exdData->getField< uint32_t >( row, 0 ); - territoryType = exdData->getField< uint16_t >( row, 1 ); - placeName = exdData->getField< uint16_t >( row, 2 ); - order = exdData->getField< uint8_t >( row, 3 ); -} - -Sapphire::Data::HousingAppeal::HousingAppeal( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HousingAppealDat.get_row( row_id ); - tag = exdData->getField< std::string >( row, 0 ); - icon = exdData->getField< uint32_t >( row, 1 ); - order = exdData->getField< uint8_t >( row, 2 ); -} - -Sapphire::Data::HousingEmploymentNpcList::HousingEmploymentNpcList( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HousingEmploymentNpcListDat.get_row( row_id, subRow ); - race = exdData->getField< uint8_t >( row, 0 ); - eNpcBase.push_back( exdData->getField< uint32_t >( row, 1 ) ); - eNpcBase.push_back( exdData->getField< uint32_t >( row, 2 ) ); -} - -Sapphire::Data::HousingEmploymentNpcRace::HousingEmploymentNpcRace( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HousingEmploymentNpcRaceDat.get_row( row_id ); - race = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::HousingExterior::HousingExterior( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HousingExteriorDat.get_row( row_id ); - placeName = exdData->getField< uint16_t >( row, 2 ); - housingSize = exdData->getField< uint8_t >( row, 3 ); - model = exdData->getField< std::string >( row, 4 ); -} - -Sapphire::Data::HousingFurniture::HousingFurniture( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HousingFurnitureDat.get_row( row_id ); - modelKey = exdData->getField< uint16_t >( row, 0 ); - housingItemCategory = exdData->getField< uint8_t >( row, 1 ); - usageType = exdData->getField< uint8_t >( row, 2 ); - usageParameter = exdData->getField< uint32_t >( row, 3 ); - aquariumTier = exdData->getField< uint8_t >( row, 5 ); - customTalk = exdData->getField< uint32_t >( row, 6 ); - item = exdData->getField< uint32_t >( row, 7 ); - destroyOnRemoval = exdData->getField< bool >( row, 8 ); - tooltip = exdData->getField< bool >( row, 9 ); -} - -Sapphire::Data::HousingLandSet::HousingLandSet( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HousingLandSetDat.get_row( row_id ); - plotSize.push_back( exdData->getField< uint8_t >( row, 0 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 1 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 2 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 3 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 4 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 5 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 6 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 7 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 8 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 9 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 10 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 11 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 12 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 13 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 14 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 15 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 16 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 17 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 18 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 19 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 20 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 21 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 22 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 23 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 24 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 25 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 26 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 27 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 28 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 29 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 30 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 31 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 32 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 33 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 34 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 35 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 36 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 37 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 38 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 39 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 40 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 41 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 42 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 43 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 44 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 45 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 46 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 47 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 48 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 49 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 50 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 51 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 52 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 53 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 54 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 55 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 56 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 57 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 58 ) ); - plotSize.push_back( exdData->getField< uint8_t >( row, 59 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 60 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 61 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 62 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 63 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 64 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 65 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 66 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 67 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 68 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 69 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 70 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 71 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 72 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 73 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 74 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 75 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 76 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 77 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 78 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 79 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 80 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 81 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 82 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 83 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 84 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 85 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 86 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 87 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 88 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 89 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 90 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 91 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 92 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 93 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 94 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 95 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 96 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 97 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 98 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 99 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 100 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 101 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 102 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 103 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 104 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 105 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 106 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 107 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 108 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 109 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 110 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 111 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 112 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 113 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 114 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 115 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 116 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 117 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 118 ) ); - minPrice.push_back( exdData->getField< uint32_t >( row, 119 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 240 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 241 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 242 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 243 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 244 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 245 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 246 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 247 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 248 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 249 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 250 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 251 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 252 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 253 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 254 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 255 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 256 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 257 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 258 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 259 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 260 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 261 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 262 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 263 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 264 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 265 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 266 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 267 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 268 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 269 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 270 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 271 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 272 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 273 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 274 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 275 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 276 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 277 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 278 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 279 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 280 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 281 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 282 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 283 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 284 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 285 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 286 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 287 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 288 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 289 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 290 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 291 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 292 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 293 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 294 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 295 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 296 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 297 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 298 ) ); - initialPrice.push_back( exdData->getField< uint32_t >( row, 299 ) ); -} - -Sapphire::Data::HousingMapMarkerInfo::HousingMapMarkerInfo( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HousingMapMarkerInfoDat.get_row( row_id, subRow ); - x = exdData->getField< float >( row, 0 ); - y = exdData->getField< float >( row, 1 ); - z = exdData->getField< float >( row, 2 ); - map = exdData->getField< uint16_t >( row, 4 ); -} - -Sapphire::Data::HousingMerchantPose::HousingMerchantPose( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HousingMerchantPoseDat.get_row( row_id ); - actionTimeline = exdData->getField< uint16_t >( row, 0 ); - pose = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::HousingPlacement::HousingPlacement( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HousingPlacementDat.get_row( row_id ); - text = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::HousingPreset::HousingPreset( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HousingPresetDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); - placeName = exdData->getField< uint16_t >( row, 8 ); - housingSize = exdData->getField< uint8_t >( row, 9 ); - exteriorRoof = exdData->getField< int32_t >( row, 10 ); - exteriorWall = exdData->getField< int32_t >( row, 11 ); - exteriorWindow = exdData->getField< int32_t >( row, 12 ); - exteriorDoor = exdData->getField< int32_t >( row, 13 ); - interiorWall = exdData->getField< int32_t >( row, 14 ); - interiorFlooring = exdData->getField< int32_t >( row, 15 ); - interiorLighting = exdData->getField< int32_t >( row, 16 ); - otherFloorWall = exdData->getField< int32_t >( row, 17 ); - otherFloorFlooring = exdData->getField< int32_t >( row, 18 ); - otherFloorLighting = exdData->getField< int32_t >( row, 19 ); - basementWall = exdData->getField< int32_t >( row, 20 ); - basementFlooring = exdData->getField< int32_t >( row, 21 ); - basementLighting = exdData->getField< int32_t >( row, 22 ); - mansionLighting = exdData->getField< int32_t >( row, 23 ); -} - -Sapphire::Data::HousingUnitedExterior::HousingUnitedExterior( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HousingUnitedExteriorDat.get_row( row_id ); - item.push_back( exdData->getField< uint32_t >( row, 1 ) ); - item.push_back( exdData->getField< uint32_t >( row, 2 ) ); - item.push_back( exdData->getField< uint32_t >( row, 3 ) ); - item.push_back( exdData->getField< uint32_t >( row, 4 ) ); - item.push_back( exdData->getField< uint32_t >( row, 5 ) ); - item.push_back( exdData->getField< uint32_t >( row, 6 ) ); - item.push_back( exdData->getField< uint32_t >( row, 7 ) ); - item.push_back( exdData->getField< uint32_t >( row, 8 ) ); -} - -Sapphire::Data::HousingYardObject::HousingYardObject( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HousingYardObjectDat.get_row( row_id ); - modelKey = exdData->getField< uint8_t >( row, 0 ); - housingItemCategory = exdData->getField< uint8_t >( row, 1 ); - usageType = exdData->getField< uint8_t >( row, 2 ); - usageParameter = exdData->getField< uint32_t >( row, 3 ); - customTalk = exdData->getField< uint32_t >( row, 5 ); - item = exdData->getField< uint32_t >( row, 6 ); - destroyOnRemoval = exdData->getField< bool >( row, 7 ); -} - -Sapphire::Data::HowTo::HowTo( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HowToDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - announce = exdData->getField< bool >( row, 1 ); - howToPagePC.push_back( exdData->getField< int16_t >( row, 2 ) ); - howToPagePC.push_back( exdData->getField< int16_t >( row, 3 ) ); - howToPagePC.push_back( exdData->getField< int16_t >( row, 4 ) ); - howToPagePC.push_back( exdData->getField< int16_t >( row, 5 ) ); - howToPagePC.push_back( exdData->getField< int16_t >( row, 6 ) ); - howToPageController.push_back( exdData->getField< int16_t >( row, 7 ) ); - howToPageController.push_back( exdData->getField< int16_t >( row, 8 ) ); - howToPageController.push_back( exdData->getField< int16_t >( row, 9 ) ); - howToPageController.push_back( exdData->getField< int16_t >( row, 10 ) ); - howToPageController.push_back( exdData->getField< int16_t >( row, 11 ) ); - category = exdData->getField< int8_t >( row, 12 ); - sort = exdData->getField< uint8_t >( row, 13 ); -} - -Sapphire::Data::HowToCategory::HowToCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HowToCategoryDat.get_row( row_id ); - category = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::HowToPage::HowToPage( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HowToPageDat.get_row( row_id ); - type = exdData->getField< uint8_t >( row, 0 ); - iconType = exdData->getField< uint8_t >( row, 1 ); - image = exdData->getField< int32_t >( row, 2 ); - textType = exdData->getField< uint8_t >( row, 3 ); - text.push_back( exdData->getField< std::string >( row, 4 ) ); - text.push_back( exdData->getField< std::string >( row, 5 ) ); - text.push_back( exdData->getField< std::string >( row, 6 ) ); -} - -Sapphire::Data::HugeCraftworksNpc::HugeCraftworksNpc( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HugeCraftworksNpcDat.get_row( row_id ); - eNpcResident = exdData->getField< uint32_t >( row, 0 ); - classJobCategory = exdData->getField< uint16_t >( row, 1 ); - itemRequested.push_back( exdData->getField< uint32_t >( row, 3 ) ); - itemRequested.push_back( exdData->getField< uint32_t >( row, 4 ) ); - itemRequested.push_back( exdData->getField< uint32_t >( row, 5 ) ); - itemRequested.push_back( exdData->getField< uint32_t >( row, 6 ) ); - qtyRequested.push_back( exdData->getField< uint8_t >( row, 9 ) ); - qtyRequested.push_back( exdData->getField< uint8_t >( row, 10 ) ); - qtyRequested.push_back( exdData->getField< uint8_t >( row, 11 ) ); - qtyRequested.push_back( exdData->getField< uint8_t >( row, 12 ) ); - itemReward.push_back( exdData->getField< uint32_t >( row, 52 ) ); - itemReward.push_back( exdData->getField< uint32_t >( row, 53 ) ); - itemReward.push_back( exdData->getField< uint32_t >( row, 54 ) ); - itemReward.push_back( exdData->getField< uint32_t >( row, 55 ) ); - qtyItemReward.push_back( exdData->getField< uint8_t >( row, 64 ) ); - qtyItemReward.push_back( exdData->getField< uint8_t >( row, 65 ) ); - qtyItemReward.push_back( exdData->getField< uint8_t >( row, 66 ) ); - qtyItemReward.push_back( exdData->getField< uint8_t >( row, 67 ) ); - itemUnkown.push_back( exdData->getField< uint32_t >( row, 70 ) ); - itemUnkown.push_back( exdData->getField< uint32_t >( row, 71 ) ); - itemUnkown.push_back( exdData->getField< uint32_t >( row, 72 ) ); - itemUnkown.push_back( exdData->getField< uint32_t >( row, 73 ) ); - qtyItemUnkown.push_back( exdData->getField< uint8_t >( row, 82 ) ); - qtyItemUnkown.push_back( exdData->getField< uint8_t >( row, 83 ) ); - qtyItemUnkown.push_back( exdData->getField< uint8_t >( row, 84 ) ); - qtyItemUnkown.push_back( exdData->getField< uint8_t >( row, 85 ) ); - transient = exdData->getField< std::string >( row, 86 ); -} - -Sapphire::Data::HugeCraftworksRank::HugeCraftworksRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HugeCraftworksRankDat.get_row( row_id ); - crafterLevel = exdData->getField< uint8_t >( row, 0 ); - expRewardPerItem = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::HWDAnnounce::HWDAnnounce( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HWDAnnounceDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - eNPC = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::HWDCrafterSupply::HWDCrafterSupply( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HWDCrafterSupplyDat.get_row( row_id ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 0 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 1 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 2 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 3 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 4 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 5 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 6 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 7 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 8 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 9 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 10 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 11 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 12 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 13 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 14 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 15 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 16 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 17 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 18 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 19 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 20 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 21 ) ); - itemTradeIn.push_back( exdData->getField< uint32_t >( row, 22 ) ); - level.push_back( exdData->getField< uint8_t >( row, 23 ) ); - level.push_back( exdData->getField< uint8_t >( row, 24 ) ); - level.push_back( exdData->getField< uint8_t >( row, 25 ) ); - level.push_back( exdData->getField< uint8_t >( row, 26 ) ); - level.push_back( exdData->getField< uint8_t >( row, 27 ) ); - level.push_back( exdData->getField< uint8_t >( row, 28 ) ); - level.push_back( exdData->getField< uint8_t >( row, 29 ) ); - level.push_back( exdData->getField< uint8_t >( row, 30 ) ); - level.push_back( exdData->getField< uint8_t >( row, 31 ) ); - level.push_back( exdData->getField< uint8_t >( row, 32 ) ); - level.push_back( exdData->getField< uint8_t >( row, 33 ) ); - level.push_back( exdData->getField< uint8_t >( row, 34 ) ); - level.push_back( exdData->getField< uint8_t >( row, 35 ) ); - level.push_back( exdData->getField< uint8_t >( row, 36 ) ); - level.push_back( exdData->getField< uint8_t >( row, 37 ) ); - level.push_back( exdData->getField< uint8_t >( row, 38 ) ); - level.push_back( exdData->getField< uint8_t >( row, 39 ) ); - level.push_back( exdData->getField< uint8_t >( row, 40 ) ); - level.push_back( exdData->getField< uint8_t >( row, 41 ) ); - level.push_back( exdData->getField< uint8_t >( row, 42 ) ); - level.push_back( exdData->getField< uint8_t >( row, 43 ) ); - level.push_back( exdData->getField< uint8_t >( row, 44 ) ); - level.push_back( exdData->getField< uint8_t >( row, 45 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 46 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 47 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 48 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 49 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 50 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 51 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 52 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 53 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 54 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 55 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 56 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 57 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 58 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 59 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 60 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 61 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 62 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 63 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 64 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 65 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 66 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 67 ) ); - levelMax.push_back( exdData->getField< uint8_t >( row, 68 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 92 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 93 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 94 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 95 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 96 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 97 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 98 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 99 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 100 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 101 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 102 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 103 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 104 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 105 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 106 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 107 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 108 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 109 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 110 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 111 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 112 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 113 ) ); - baseCollectableRating.push_back( exdData->getField< uint16_t >( row, 114 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 115 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 116 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 117 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 118 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 119 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 120 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 121 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 122 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 123 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 124 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 125 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 126 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 127 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 128 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 129 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 130 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 131 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 132 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 133 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 134 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 135 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 136 ) ); - midCollectableRating.push_back( exdData->getField< uint16_t >( row, 137 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 138 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 139 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 140 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 141 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 142 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 143 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 144 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 145 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 146 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 147 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 148 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 149 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 150 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 151 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 152 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 153 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 154 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 155 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 156 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 157 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 158 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 159 ) ); - highCollectableRating.push_back( exdData->getField< uint16_t >( row, 160 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 161 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 162 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 163 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 164 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 165 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 166 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 167 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 168 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 169 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 170 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 171 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 172 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 173 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 174 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 175 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 176 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 177 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 178 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 179 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 180 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 181 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 182 ) ); - baseCollectableReward.push_back( exdData->getField< uint16_t >( row, 183 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 184 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 185 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 186 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 187 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 188 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 189 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 190 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 191 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 192 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 193 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 194 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 195 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 196 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 197 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 198 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 199 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 200 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 201 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 202 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 203 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 204 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 205 ) ); - midCollectableReward.push_back( exdData->getField< uint16_t >( row, 206 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 207 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 208 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 209 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 210 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 211 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 212 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 213 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 214 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 215 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 216 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 217 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 218 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 219 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 220 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 221 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 222 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 223 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 224 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 225 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 226 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 227 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 228 ) ); - highCollectableReward.push_back( exdData->getField< uint16_t >( row, 229 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 230 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 231 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 232 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 233 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 234 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 235 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 236 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 237 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 238 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 239 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 240 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 241 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 242 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 243 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 244 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 245 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 246 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 247 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 248 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 249 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 250 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 251 ) ); - baseCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 252 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 253 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 254 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 255 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 256 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 257 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 258 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 259 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 260 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 261 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 262 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 263 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 264 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 265 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 266 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 267 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 268 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 269 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 270 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 271 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 272 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 273 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 274 ) ); - midCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 275 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 276 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 277 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 278 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 279 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 280 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 281 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 282 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 283 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 284 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 285 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 286 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 287 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 288 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 289 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 290 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 291 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 292 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 293 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 294 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 295 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 296 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 297 ) ); - highCollectableRewardPostPhase.push_back( exdData->getField< uint16_t >( row, 298 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 299 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 300 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 301 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 302 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 303 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 304 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 305 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 306 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 307 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 308 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 309 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 310 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 311 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 312 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 313 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 314 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 315 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 316 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 317 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 318 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 319 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 320 ) ); - termName.push_back( exdData->getField< uint8_t >( row, 321 ) ); -} - -Sapphire::Data::HWDCrafterSupplyReward::HWDCrafterSupplyReward( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HWDCrafterSupplyRewardDat.get_row( row_id ); - scriptRewardAmount = exdData->getField< uint16_t >( row, 0 ); - expReward = exdData->getField< uint32_t >( row, 1 ); - Points = exdData->getField< uint16_t >( row, 2 ); -} - -Sapphire::Data::HWDCrafterSupplyTerm::HWDCrafterSupplyTerm( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HWDCrafterSupplyTermDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::HWDDevLayerControl::HWDDevLayerControl( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HWDDevLayerControlDat.get_row( row_id ); -} - -Sapphire::Data::HWDDevLevelUI::HWDDevLevelUI( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HWDDevLevelUIDat.get_row( row_id ); -} - -Sapphire::Data::HWDDevLively::HWDDevLively( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HWDDevLivelyDat.get_row( row_id, subRow ); - eNPC = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::HWDDevProgress::HWDDevProgress( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HWDDevProgressDat.get_row( row_id ); - canGoNext = exdData->getField< bool >( row, 0 ); -} - -Sapphire::Data::HWDGathereInspectTerm::HWDGathereInspectTerm( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HWDGathereInspectTermDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::HWDGathererInspection::HWDGathererInspection( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HWDGathererInspectionDat.get_row( row_id ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 0 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 1 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 2 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 3 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 4 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 5 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 6 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 7 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 8 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 9 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 10 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 11 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 12 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 13 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 14 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 15 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 16 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 17 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 18 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 19 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 20 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 21 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 22 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 23 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 24 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 25 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 26 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 27 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 28 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 29 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 30 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 31 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 32 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 33 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 34 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 35 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 36 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 37 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 38 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 39 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 40 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 41 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 42 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 43 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 44 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 45 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 46 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 47 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 48 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 49 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 50 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 51 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 52 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 53 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 54 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 55 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 56 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 57 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 58 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 59 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 60 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 61 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 62 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 63 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 64 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 65 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 66 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 67 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 68 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 69 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 70 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 71 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 72 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 73 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 74 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 75 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 76 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 77 ) ); - itemRequired.push_back( exdData->getField< uint32_t >( row, 78 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 79 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 80 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 81 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 82 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 83 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 84 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 85 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 86 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 87 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 88 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 89 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 90 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 91 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 92 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 93 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 94 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 95 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 96 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 97 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 98 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 99 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 100 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 101 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 102 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 103 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 104 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 105 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 106 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 107 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 108 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 109 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 110 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 111 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 112 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 113 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 114 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 115 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 116 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 117 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 118 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 119 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 120 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 121 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 122 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 123 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 124 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 125 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 126 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 127 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 128 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 129 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 130 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 131 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 132 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 133 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 134 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 135 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 136 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 137 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 138 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 139 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 140 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 141 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 142 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 143 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 144 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 145 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 146 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 147 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 148 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 149 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 150 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 151 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 152 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 153 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 154 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 155 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 156 ) ); - fishParameter.push_back( exdData->getField< uint32_t >( row, 157 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 158 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 159 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 160 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 161 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 162 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 163 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 164 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 165 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 166 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 167 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 168 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 169 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 170 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 171 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 172 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 173 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 174 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 175 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 176 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 177 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 178 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 179 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 180 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 181 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 182 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 183 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 184 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 185 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 186 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 187 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 188 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 189 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 190 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 191 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 192 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 193 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 194 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 195 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 196 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 197 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 198 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 199 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 200 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 201 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 202 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 203 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 204 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 205 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 206 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 207 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 208 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 209 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 210 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 211 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 212 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 213 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 214 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 215 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 216 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 217 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 218 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 219 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 220 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 221 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 222 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 223 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 224 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 225 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 226 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 227 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 228 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 229 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 230 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 231 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 232 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 233 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 234 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 235 ) ); - amountRequired.push_back( exdData->getField< uint8_t >( row, 236 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 237 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 238 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 239 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 240 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 241 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 242 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 243 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 244 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 245 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 246 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 247 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 248 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 249 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 250 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 251 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 252 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 253 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 254 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 255 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 256 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 257 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 258 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 259 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 260 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 261 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 262 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 263 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 264 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 265 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 266 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 267 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 268 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 269 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 270 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 271 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 272 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 273 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 274 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 275 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 276 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 277 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 278 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 279 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 280 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 281 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 282 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 283 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 284 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 285 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 286 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 287 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 288 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 289 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 290 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 291 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 292 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 293 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 294 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 295 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 296 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 297 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 298 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 299 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 300 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 301 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 302 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 303 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 304 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 305 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 306 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 307 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 308 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 309 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 310 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 311 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 312 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 313 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 314 ) ); - itemReceived.push_back( exdData->getField< uint32_t >( row, 315 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 316 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 317 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 318 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 319 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 320 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 321 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 322 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 323 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 324 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 325 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 326 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 327 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 328 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 329 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 330 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 331 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 332 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 333 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 334 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 335 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 336 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 337 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 338 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 339 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 340 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 341 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 342 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 343 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 344 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 345 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 346 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 347 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 348 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 349 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 350 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 351 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 352 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 353 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 354 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 355 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 356 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 357 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 358 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 359 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 360 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 361 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 362 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 363 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 364 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 365 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 366 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 367 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 368 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 369 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 370 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 371 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 372 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 373 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 374 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 375 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 376 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 377 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 378 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 379 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 380 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 381 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 382 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 383 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 384 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 385 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 386 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 387 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 388 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 389 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 390 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 391 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 392 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 393 ) ); - reward1.push_back( exdData->getField< uint16_t >( row, 394 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 395 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 396 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 397 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 398 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 399 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 400 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 401 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 402 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 403 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 404 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 405 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 406 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 407 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 408 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 409 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 410 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 411 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 412 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 413 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 414 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 415 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 416 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 417 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 418 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 419 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 420 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 421 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 422 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 423 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 424 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 425 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 426 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 427 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 428 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 429 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 430 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 431 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 432 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 433 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 434 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 435 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 436 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 437 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 438 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 439 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 440 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 441 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 442 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 443 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 444 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 445 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 446 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 447 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 448 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 449 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 450 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 451 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 452 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 453 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 454 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 455 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 456 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 457 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 458 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 459 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 460 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 461 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 462 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 463 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 464 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 465 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 466 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 467 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 468 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 469 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 470 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 471 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 472 ) ); - reward2.push_back( exdData->getField< uint16_t >( row, 473 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 474 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 475 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 476 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 477 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 478 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 479 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 480 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 481 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 482 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 483 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 484 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 485 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 486 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 487 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 488 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 489 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 490 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 491 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 492 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 493 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 494 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 495 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 496 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 497 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 498 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 499 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 500 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 501 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 502 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 503 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 504 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 505 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 506 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 507 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 508 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 509 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 510 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 511 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 512 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 513 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 514 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 515 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 516 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 517 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 518 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 519 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 520 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 521 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 522 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 523 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 524 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 525 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 526 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 527 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 528 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 529 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 530 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 531 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 532 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 533 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 534 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 535 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 536 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 537 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 538 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 539 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 540 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 541 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 542 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 543 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 544 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 545 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 546 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 547 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 548 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 549 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 550 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 551 ) ); - phase.push_back( exdData->getField< uint8_t >( row, 552 ) ); -} - -Sapphire::Data::HWDGathererInspectionReward::HWDGathererInspectionReward( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HWDGathererInspectionRewardDat.get_row( row_id ); - scrips = exdData->getField< uint16_t >( row, 0 ); - points = exdData->getField< uint16_t >( row, 1 ); -} - -Sapphire::Data::HWDInfoBoardArticle::HWDInfoBoardArticle( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HWDInfoBoardArticleDat.get_row( row_id ); - type = exdData->getField< uint8_t >( row, 0 ); - text = exdData->getField< std::string >( row, 4 ); -} - -Sapphire::Data::HWDInfoBoardArticleTransient::HWDInfoBoardArticleTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HWDInfoBoardArticleTransientDat.get_row( row_id ); - image = exdData->getField< uint32_t >( row, 0 ); - text = exdData->getField< std::string >( row, 1 ); - npcName = exdData->getField< std::string >( row, 2 ); -} - -Sapphire::Data::HWDInfoBoardArticleType::HWDInfoBoardArticleType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HWDInfoBoardArticleTypeDat.get_row( row_id ); - type = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::HWDLevelChangeDeception::HWDLevelChangeDeception( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HWDLevelChangeDeceptionDat.get_row( row_id ); - image = exdData->getField< int32_t >( row, 0 ); -} - -Sapphire::Data::HWDSharedGroup::HWDSharedGroup( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HWDSharedGroupDat.get_row( row_id, subRow ); - lGB = exdData->getField< uint32_t >( row, 0 ); - param = exdData->getField< uint8_t >( row, 1 ); -} - -Sapphire::Data::HWDSharedGroupControlParam::HWDSharedGroupControlParam( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_HWDSharedGroupControlParamDat.get_row( row_id, subRow ); - paramValue = exdData->getField< uint8_t >( row, 1 ); -} - -Sapphire::Data::IKDContentBonus::IKDContentBonus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_IKDContentBonusDat.get_row( row_id ); - objective = exdData->getField< std::string >( row, 0 ); - requirement = exdData->getField< std::string >( row, 1 ); - image = exdData->getField< uint32_t >( row, 3 ); - order = exdData->getField< uint8_t >( row, 4 ); -} - -Sapphire::Data::IKDFishParam::IKDFishParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_IKDFishParamDat.get_row( row_id ); - fish = exdData->getField< uint32_t >( row, 0 ); - iKDContentBonus = exdData->getField< uint8_t >( row, 1 ); -} - -Sapphire::Data::IKDRoute::IKDRoute( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_IKDRouteDat.get_row( row_id ); - image = exdData->getField< uint32_t >( row, 6 ); - territoryType = exdData->getField< uint32_t >( row, 7 ); - name = exdData->getField< std::string >( row, 8 ); -} - -Sapphire::Data::IKDRouteTable::IKDRouteTable( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_IKDRouteTableDat.get_row( row_id ); - route = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::IKDSpot::IKDSpot( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_IKDSpotDat.get_row( row_id ); - spotMain = exdData->getField< uint32_t >( row, 0 ); - spotSub = exdData->getField< uint32_t >( row, 1 ); - placeName = exdData->getField< uint32_t >( row, 2 ); -} - -Sapphire::Data::InclusionShop::InclusionShop( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_InclusionShopDat.get_row( row_id ); - category.push_back( exdData->getField< uint16_t >( row, 2 ) ); - category.push_back( exdData->getField< uint16_t >( row, 3 ) ); - category.push_back( exdData->getField< uint16_t >( row, 4 ) ); - category.push_back( exdData->getField< uint16_t >( row, 5 ) ); - category.push_back( exdData->getField< uint16_t >( row, 6 ) ); - category.push_back( exdData->getField< uint16_t >( row, 7 ) ); - category.push_back( exdData->getField< uint16_t >( row, 8 ) ); - category.push_back( exdData->getField< uint16_t >( row, 9 ) ); - category.push_back( exdData->getField< uint16_t >( row, 10 ) ); - category.push_back( exdData->getField< uint16_t >( row, 11 ) ); - category.push_back( exdData->getField< uint16_t >( row, 12 ) ); - category.push_back( exdData->getField< uint16_t >( row, 13 ) ); - category.push_back( exdData->getField< uint16_t >( row, 14 ) ); - category.push_back( exdData->getField< uint16_t >( row, 15 ) ); - category.push_back( exdData->getField< uint16_t >( row, 16 ) ); - category.push_back( exdData->getField< uint16_t >( row, 17 ) ); - category.push_back( exdData->getField< uint16_t >( row, 18 ) ); - category.push_back( exdData->getField< uint16_t >( row, 19 ) ); - category.push_back( exdData->getField< uint16_t >( row, 20 ) ); - category.push_back( exdData->getField< uint16_t >( row, 21 ) ); - category.push_back( exdData->getField< uint16_t >( row, 22 ) ); - category.push_back( exdData->getField< uint16_t >( row, 23 ) ); - category.push_back( exdData->getField< uint16_t >( row, 24 ) ); - category.push_back( exdData->getField< uint16_t >( row, 25 ) ); - category.push_back( exdData->getField< uint16_t >( row, 26 ) ); - category.push_back( exdData->getField< uint16_t >( row, 27 ) ); - category.push_back( exdData->getField< uint16_t >( row, 28 ) ); - category.push_back( exdData->getField< uint16_t >( row, 29 ) ); - category.push_back( exdData->getField< uint16_t >( row, 30 ) ); - category.push_back( exdData->getField< uint16_t >( row, 31 ) ); -} - -Sapphire::Data::InclusionShopCategory::InclusionShopCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_InclusionShopCategoryDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - classJobCategory = exdData->getField< uint8_t >( row, 1 ); - inclusionShopSeries = exdData->getField< uint16_t >( row, 2 ); -} - -Sapphire::Data::InclusionShopSeries::InclusionShopSeries( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_InclusionShopSeriesDat.get_row( row_id, subRow ); - specialShop = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::IndividualWeather::IndividualWeather( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_IndividualWeatherDat.get_row( row_id ); - weather.push_back( exdData->getField< uint8_t >( row, 0 ) ); - weather.push_back( exdData->getField< uint8_t >( row, 1 ) ); - weather.push_back( exdData->getField< uint8_t >( row, 2 ) ); - weather.push_back( exdData->getField< uint8_t >( row, 3 ) ); - weather.push_back( exdData->getField< uint8_t >( row, 4 ) ); - weather.push_back( exdData->getField< uint8_t >( row, 5 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 15 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 16 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 17 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 18 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 19 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 20 ) ); -} - -Sapphire::Data::InstanceContent::InstanceContent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_InstanceContentDat.get_row( row_id ); - instanceContentType = exdData->getField< uint8_t >( row, 0 ); - weekRestriction = exdData->getField< uint8_t >( row, 1 ); - timeLimitmin = exdData->getField< uint16_t >( row, 2 ); - bGM = exdData->getField< uint16_t >( row, 4 ); - winBGM = exdData->getField< uint16_t >( row, 5 ); - cutscene = exdData->getField< uint32_t >( row, 6 ); - lGBEventRange = exdData->getField< uint32_t >( row, 7 ); - order = exdData->getField< uint16_t >( row, 8 ); - colosseum = exdData->getField< uint8_t >( row, 9 ); - instanceContentTextDataBossStart = exdData->getField< uint32_t >( row, 11 ); - instanceContentTextDataBossEnd = exdData->getField< uint32_t >( row, 12 ); - bNpcBaseBoss = exdData->getField< uint32_t >( row, 13 ); - instanceContentTextDataObjectiveStart = exdData->getField< uint32_t >( row, 14 ); - instanceContentTextDataObjectiveEnd = exdData->getField< uint32_t >( row, 15 ); - sortKey = exdData->getField< uint16_t >( row, 16 ); - instanceClearExp = exdData->getField< uint32_t >( row, 17 ); - newPlayerBonusA = exdData->getField< uint16_t >( row, 19 ); - finalBossCurrencyC = exdData->getField< uint16_t >( row, 20 ); - finalBossCurrencyA = exdData->getField< uint32_t >( row, 22 ); - finalBossCurrencyB = exdData->getField< uint16_t >( row, 23 ); - newPlayerBonusB = exdData->getField< uint16_t >( row, 24 ); - instanceClearGil = exdData->getField< uint32_t >( row, 46 ); - instanceContentRewardItem = exdData->getField< uint32_t >( row, 47 ); - finalBossExp = exdData->getField< uint8_t >( row, 49 ); - instanceContentBuff = exdData->getField< uint32_t >( row, 50 ); - reqInstance = exdData->getField< int32_t >( row, 51 ); - partyCondition = exdData->getField< int16_t >( row, 53 ); -} - -Sapphire::Data::InstanceContentBuff::InstanceContentBuff( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_InstanceContentBuffDat.get_row( row_id ); - echoStart = exdData->getField< uint16_t >( row, 0 ); - echoDeath = exdData->getField< uint16_t >( row, 1 ); -} - -Sapphire::Data::InstanceContentCSBonus::InstanceContentCSBonus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_InstanceContentCSBonusDat.get_row( row_id ); - instance = exdData->getField< uint16_t >( row, 0 ); - item = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::InstanceContentGuide::InstanceContentGuide( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_InstanceContentGuideDat.get_row( row_id ); - instance = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::InstanceContentTextData::InstanceContentTextData( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_InstanceContentTextDataDat.get_row( row_id ); - text = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::Item::Item( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ItemDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); - description = exdData->getField< std::string >( row, 8 ); - name = exdData->getField< std::string >( row, 9 ); - icon = exdData->getField< uint16_t >( row, 10 ); - levelItem = exdData->getField< uint16_t >( row, 11 ); - rarity = exdData->getField< uint8_t >( row, 12 ); - filterGroup = exdData->getField< uint8_t >( row, 13 ); - additionalData = exdData->getField< uint32_t >( row, 14 ); - itemUICategory = exdData->getField< uint8_t >( row, 15 ); - itemSearchCategory = exdData->getField< uint8_t >( row, 16 ); - equipSlotCategory = exdData->getField< uint8_t >( row, 17 ); - itemSortCategory = exdData->getField< uint8_t >( row, 18 ); - stackSize = exdData->getField< uint32_t >( row, 20 ); - isUnique = exdData->getField< bool >( row, 21 ); - isUntradable = exdData->getField< bool >( row, 22 ); - isIndisposable = exdData->getField< bool >( row, 23 ); - lot = exdData->getField< bool >( row, 24 ); - priceMid = exdData->getField< uint32_t >( row, 25 ); - priceLow = exdData->getField< uint32_t >( row, 26 ); - canBeHq = exdData->getField< bool >( row, 27 ); - isDyeable = exdData->getField< bool >( row, 28 ); - isCrestWorthy = exdData->getField< bool >( row, 29 ); - itemAction = exdData->getField< uint16_t >( row, 30 ); - cooldowns = exdData->getField< uint16_t >( row, 32 ); - classJobRepair = exdData->getField< uint8_t >( row, 33 ); - itemRepair = exdData->getField< int32_t >( row, 34 ); - itemGlamour = exdData->getField< int32_t >( row, 35 ); - desynth = exdData->getField< uint16_t >( row, 36 ); - isCollectable = exdData->getField< bool >( row, 37 ); - alwaysCollectable = exdData->getField< bool >( row, 38 ); - aetherialReduce = exdData->getField< uint16_t >( row, 39 ); - levelEquip = exdData->getField< uint8_t >( row, 40 ); - equipRestriction = exdData->getField< uint8_t >( row, 42 ); - classJobCategory = exdData->getField< uint8_t >( row, 43 ); - grandCompany = exdData->getField< uint8_t >( row, 44 ); - itemSeries = exdData->getField< uint8_t >( row, 45 ); - baseParamModifier = exdData->getField< uint8_t >( row, 46 ); - modelMain = exdData->getField< uint64_t >( row, 47 ); - modelSub = exdData->getField< uint64_t >( row, 48 ); - classJobUse = exdData->getField< uint8_t >( row, 49 ); - damagePhys = exdData->getField< uint16_t >( row, 51 ); - damageMag = exdData->getField< uint16_t >( row, 52 ); - delayms = exdData->getField< uint16_t >( row, 53 ); - blockRate = exdData->getField< uint16_t >( row, 55 ); - block = exdData->getField< uint16_t >( row, 56 ); - defensePhys = exdData->getField< uint16_t >( row, 57 ); - defenseMag = exdData->getField< uint16_t >( row, 58 ); - itemSpecialBonus = exdData->getField< uint8_t >( row, 71 ); - itemSpecialBonusParam = exdData->getField< uint8_t >( row, 72 ); - materializeType = exdData->getField< uint8_t >( row, 85 ); - materiaSlotCount = exdData->getField< uint8_t >( row, 86 ); - isAdvancedMeldingPermitted = exdData->getField< bool >( row, 87 ); - isPvP = exdData->getField< bool >( row, 88 ); - subStatCategory = exdData->getField< uint8_t >( row, 89 ); - isGlamourous = exdData->getField< bool >( row, 90 ); - for( int i = 0; i < 6; ++i ) - { - param[i].baseparam = exdData->getField< uint8_t >( row, 59 + i * 2 ); - param[i].value = exdData->getField< int16_t >( row, 60 + i * 2 ); - } -} - -Sapphire::Data::ItemAction::ItemAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ItemActionDat.get_row( row_id ); - condLv = exdData->getField< uint8_t >( row, 0 ); - condBattle = exdData->getField< bool >( row, 1 ); - condPVP = exdData->getField< bool >( row, 2 ); - condPVPOnly = exdData->getField< bool >( row, 3 ); - type = exdData->getField< uint16_t >( row, 4 ); - data.push_back( exdData->getField< uint16_t >( row, 5 ) ); - data.push_back( exdData->getField< uint16_t >( row, 6 ) ); - data.push_back( exdData->getField< uint16_t >( row, 7 ) ); - data.push_back( exdData->getField< uint16_t >( row, 8 ) ); - data.push_back( exdData->getField< uint16_t >( row, 9 ) ); - data.push_back( exdData->getField< uint16_t >( row, 10 ) ); - data.push_back( exdData->getField< uint16_t >( row, 11 ) ); - data.push_back( exdData->getField< uint16_t >( row, 12 ) ); - data.push_back( exdData->getField< uint16_t >( row, 13 ) ); - dataHQ.push_back( exdData->getField< uint16_t >( row, 14 ) ); - dataHQ.push_back( exdData->getField< uint16_t >( row, 15 ) ); - dataHQ.push_back( exdData->getField< uint16_t >( row, 16 ) ); - dataHQ.push_back( exdData->getField< uint16_t >( row, 17 ) ); - dataHQ.push_back( exdData->getField< uint16_t >( row, 18 ) ); - dataHQ.push_back( exdData->getField< uint16_t >( row, 19 ) ); - dataHQ.push_back( exdData->getField< uint16_t >( row, 20 ) ); - dataHQ.push_back( exdData->getField< uint16_t >( row, 21 ) ); - dataHQ.push_back( exdData->getField< uint16_t >( row, 22 ) ); -} - -Sapphire::Data::ItemActionTelepo::ItemActionTelepo( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ItemActionTelepoDat.get_row( row_id ); - requirement = exdData->getField< uint32_t >( row, 0 ); - denyMessage = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::ItemBarterCheck::ItemBarterCheck( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ItemBarterCheckDat.get_row( row_id, subRow ); - category = exdData->getField< uint16_t >( row, 0 ); - question = exdData->getField< uint32_t >( row, 1 ); - confirm = exdData->getField< uint32_t >( row, 2 ); -} - -Sapphire::Data::ItemFood::ItemFood( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ItemFoodDat.get_row( row_id ); - eXPBonus = exdData->getField< uint8_t >( row, 0 ); -} - -Sapphire::Data::ItemLevel::ItemLevel( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ItemLevelDat.get_row( row_id ); - strength = exdData->getField< uint16_t >( row, 0 ); - dexterity = exdData->getField< uint16_t >( row, 1 ); - vitality = exdData->getField< uint16_t >( row, 2 ); - intelligence = exdData->getField< uint16_t >( row, 3 ); - mind = exdData->getField< uint16_t >( row, 4 ); - piety = exdData->getField< uint16_t >( row, 5 ); - hP = exdData->getField< uint16_t >( row, 6 ); - mP = exdData->getField< uint16_t >( row, 7 ); - tP = exdData->getField< uint16_t >( row, 8 ); - gP = exdData->getField< uint16_t >( row, 9 ); - cP = exdData->getField< uint16_t >( row, 10 ); - physicalDamage = exdData->getField< uint16_t >( row, 11 ); - magicalDamage = exdData->getField< uint16_t >( row, 12 ); - delay = exdData->getField< uint16_t >( row, 13 ); - additionalEffect = exdData->getField< uint16_t >( row, 14 ); - attackSpeed = exdData->getField< uint16_t >( row, 15 ); - blockRate = exdData->getField< uint16_t >( row, 16 ); - blockStrength = exdData->getField< uint16_t >( row, 17 ); - tenacity = exdData->getField< uint16_t >( row, 18 ); - attackPower = exdData->getField< uint16_t >( row, 19 ); - defense = exdData->getField< uint16_t >( row, 20 ); - directHitRate = exdData->getField< uint16_t >( row, 21 ); - evasion = exdData->getField< uint16_t >( row, 22 ); - magicDefense = exdData->getField< uint16_t >( row, 23 ); - criticalHitPower = exdData->getField< uint16_t >( row, 24 ); - criticalHitResilience = exdData->getField< uint16_t >( row, 25 ); - criticalHit = exdData->getField< uint16_t >( row, 26 ); - criticalHitEvasion = exdData->getField< uint16_t >( row, 27 ); - slashingResistance = exdData->getField< uint16_t >( row, 28 ); - piercingResistance = exdData->getField< uint16_t >( row, 29 ); - bluntResistance = exdData->getField< uint16_t >( row, 30 ); - projectileResistance = exdData->getField< uint16_t >( row, 31 ); - attackMagicPotency = exdData->getField< uint16_t >( row, 32 ); - healingMagicPotency = exdData->getField< uint16_t >( row, 33 ); - enhancementMagicPotency = exdData->getField< uint16_t >( row, 34 ); - enfeeblingMagicPotency = exdData->getField< uint16_t >( row, 35 ); - fireResistance = exdData->getField< uint16_t >( row, 36 ); - iceResistance = exdData->getField< uint16_t >( row, 37 ); - windResistance = exdData->getField< uint16_t >( row, 38 ); - earthResistance = exdData->getField< uint16_t >( row, 39 ); - lightningResistance = exdData->getField< uint16_t >( row, 40 ); - waterResistance = exdData->getField< uint16_t >( row, 41 ); - magicResistance = exdData->getField< uint16_t >( row, 42 ); - determination = exdData->getField< uint16_t >( row, 43 ); - skillSpeed = exdData->getField< uint16_t >( row, 44 ); - spellSpeed = exdData->getField< uint16_t >( row, 45 ); - haste = exdData->getField< uint16_t >( row, 46 ); - morale = exdData->getField< uint16_t >( row, 47 ); - enmity = exdData->getField< uint16_t >( row, 48 ); - enmityReduction = exdData->getField< uint16_t >( row, 49 ); - carefulDesynthesis = exdData->getField< uint16_t >( row, 50 ); - eXPBonus = exdData->getField< uint16_t >( row, 51 ); - regen = exdData->getField< uint16_t >( row, 52 ); - refresh = exdData->getField< uint16_t >( row, 53 ); - movementSpeed = exdData->getField< uint16_t >( row, 54 ); - spikes = exdData->getField< uint16_t >( row, 55 ); - slowResistance = exdData->getField< uint16_t >( row, 56 ); - petrificationResistance = exdData->getField< uint16_t >( row, 57 ); - paralysisResistance = exdData->getField< uint16_t >( row, 58 ); - silenceResistance = exdData->getField< uint16_t >( row, 59 ); - blindResistance = exdData->getField< uint16_t >( row, 60 ); - poisonResistance = exdData->getField< uint16_t >( row, 61 ); - stunResistance = exdData->getField< uint16_t >( row, 62 ); - sleepResistance = exdData->getField< uint16_t >( row, 63 ); - bindResistance = exdData->getField< uint16_t >( row, 64 ); - heavyResistance = exdData->getField< uint16_t >( row, 65 ); - doomResistance = exdData->getField< uint16_t >( row, 66 ); - reducedDurabilityLoss = exdData->getField< uint16_t >( row, 67 ); - increasedSpiritbondGain = exdData->getField< uint16_t >( row, 68 ); - craftsmanship = exdData->getField< uint16_t >( row, 69 ); - control = exdData->getField< uint16_t >( row, 70 ); - gathering = exdData->getField< uint16_t >( row, 71 ); - perception = exdData->getField< uint16_t >( row, 72 ); -} - -Sapphire::Data::ItemSearchCategory::ItemSearchCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ItemSearchCategoryDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - icon = exdData->getField< int32_t >( row, 1 ); - category = exdData->getField< uint8_t >( row, 2 ); - order = exdData->getField< uint8_t >( row, 3 ); - classJob = exdData->getField< int8_t >( row, 4 ); -} - -Sapphire::Data::ItemSeries::ItemSeries( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ItemSeriesDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::ItemSortCategory::ItemSortCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ItemSortCategoryDat.get_row( row_id ); - param = exdData->getField< uint8_t >( row, 0 ); -} - -Sapphire::Data::ItemSpecialBonus::ItemSpecialBonus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ItemSpecialBonusDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::ItemUICategory::ItemUICategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ItemUICategoryDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - icon = exdData->getField< int32_t >( row, 1 ); - orderMinor = exdData->getField< uint8_t >( row, 2 ); - orderMajor = exdData->getField< uint8_t >( row, 3 ); -} - -Sapphire::Data::Jingle::Jingle( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_JingleDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::JobHudManual::JobHudManual( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_JobHudManualDat.get_row( row_id ); - action = exdData->getField< uint32_t >( row, 2 ); - guide = exdData->getField< uint16_t >( row, 5 ); -} - -Sapphire::Data::JobHudManualPriority::JobHudManualPriority( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_JobHudManualPriorityDat.get_row( row_id ); - jobHudManual.push_back( exdData->getField< uint8_t >( row, 0 ) ); - jobHudManual.push_back( exdData->getField< uint8_t >( row, 1 ) ); - jobHudManual.push_back( exdData->getField< uint8_t >( row, 2 ) ); -} - -Sapphire::Data::JournalCategory::JournalCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_JournalCategoryDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - separateType = exdData->getField< uint8_t >( row, 1 ); - dataType = exdData->getField< uint8_t >( row, 2 ); - journalSection = exdData->getField< uint8_t >( row, 3 ); -} - -Sapphire::Data::JournalGenre::JournalGenre( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_JournalGenreDat.get_row( row_id ); - icon = exdData->getField< int32_t >( row, 0 ); - journalCategory = exdData->getField< uint8_t >( row, 1 ); - name = exdData->getField< std::string >( row, 3 ); -} - -Sapphire::Data::JournalSection::JournalSection( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_JournalSectionDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::Knockback::Knockback( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_KnockbackDat.get_row( row_id ); - distance = exdData->getField< uint8_t >( row, 0 ); - speed = exdData->getField< uint8_t >( row, 1 ); - motion = exdData->getField< bool >( row, 2 ); - nearDistance = exdData->getField< uint8_t >( row, 3 ); - direction = exdData->getField< uint8_t >( row, 4 ); - directionArg = exdData->getField< uint8_t >( row, 5 ); - cancelMove = exdData->getField< bool >( row, 6 ); -} - -Sapphire::Data::LegacyQuest::LegacyQuest( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_LegacyQuestDat.get_row( row_id ); - legacyQuestID = exdData->getField< uint16_t >( row, 0 ); - text = exdData->getField< std::string >( row, 1 ); - string = exdData->getField< std::string >( row, 2 ); - sortKey = exdData->getField< uint16_t >( row, 3 ); - genre = exdData->getField< uint8_t >( row, 4 ); -} - -Sapphire::Data::Leve::Leve( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_LeveDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - description = exdData->getField< std::string >( row, 1 ); - leveClient = exdData->getField< int32_t >( row, 2 ); - leveAssignmentType = exdData->getField< uint8_t >( row, 3 ); - town = exdData->getField< int32_t >( row, 5 ); - classJobLevel = exdData->getField< uint16_t >( row, 6 ); - timeLimit = exdData->getField< uint8_t >( row, 7 ); - allowanceCost = exdData->getField< uint8_t >( row, 8 ); - evaluation = exdData->getField< int32_t >( row, 9 ); - placeNameStart = exdData->getField< int32_t >( row, 10 ); - placeNameIssued = exdData->getField< int32_t >( row, 11 ); - classJobCategory = exdData->getField< uint8_t >( row, 13 ); - journalGenre = exdData->getField< int32_t >( row, 14 ); - placeNameStartZone = exdData->getField< int32_t >( row, 16 ); - iconCityState = exdData->getField< int32_t >( row, 17 ); - dataId = exdData->getField< int32_t >( row, 18 ); - canCancel = exdData->getField< bool >( row, 19 ); - maxDifficulty = exdData->getField< uint8_t >( row, 20 ); - expFactor = exdData->getField< float >( row, 21 ); - expReward = exdData->getField< uint32_t >( row, 22 ); - gilReward = exdData->getField< uint32_t >( row, 23 ); - leveRewardItem = exdData->getField< uint16_t >( row, 24 ); - leveVfx = exdData->getField< uint8_t >( row, 25 ); - leveVfxFrame = exdData->getField< uint8_t >( row, 26 ); - levelLevemete = exdData->getField< uint32_t >( row, 27 ); - iconIssuer = exdData->getField< int32_t >( row, 28 ); - lockedLeve = exdData->getField< bool >( row, 29 ); - levelStart = exdData->getField< uint32_t >( row, 30 ); - bGM = exdData->getField< uint16_t >( row, 31 ); -} - -Sapphire::Data::LeveAssignmentType::LeveAssignmentType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_LeveAssignmentTypeDat.get_row( row_id ); - isFaction = exdData->getField< bool >( row, 0 ); - icon = exdData->getField< int32_t >( row, 1 ); - name = exdData->getField< std::string >( row, 2 ); -} - -Sapphire::Data::LeveClient::LeveClient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_LeveClientDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::Level::Level( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_LevelDat.get_row( row_id ); - x = exdData->getField< float >( row, 0 ); - y = exdData->getField< float >( row, 1 ); - z = exdData->getField< float >( row, 2 ); - yaw = exdData->getField< float >( row, 3 ); - radius = exdData->getField< float >( row, 4 ); - type = exdData->getField< uint8_t >( row, 5 ); - object = exdData->getField< uint32_t >( row, 6 ); - map = exdData->getField< uint16_t >( row, 7 ); - eventId = exdData->getField< uint32_t >( row, 8 ); - territory = exdData->getField< uint16_t >( row, 9 ); -} - -Sapphire::Data::LeveRewardItem::LeveRewardItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_LeveRewardItemDat.get_row( row_id ); -} - -Sapphire::Data::LeveRewardItemGroup::LeveRewardItemGroup( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_LeveRewardItemGroupDat.get_row( row_id ); -} - -Sapphire::Data::LeveString::LeveString( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_LeveStringDat.get_row( row_id ); - objective = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::LeveVfx::LeveVfx( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_LeveVfxDat.get_row( row_id ); - effect = exdData->getField< std::string >( row, 0 ); - icon = exdData->getField< int32_t >( row, 1 ); -} - -Sapphire::Data::Lobby::Lobby( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_LobbyDat.get_row( row_id ); - tYPE = exdData->getField< uint32_t >( row, 0 ); - pARAM = exdData->getField< uint32_t >( row, 1 ); - lINK = exdData->getField< uint32_t >( row, 2 ); - text = exdData->getField< std::string >( row, 3 ); -} - -Sapphire::Data::LogFilter::LogFilter( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_LogFilterDat.get_row( row_id ); - logKind = exdData->getField< uint8_t >( row, 0 ); - caster = exdData->getField< uint16_t >( row, 1 ); - target = exdData->getField< uint16_t >( row, 2 ); - category = exdData->getField< uint8_t >( row, 3 ); - displayOrder = exdData->getField< uint8_t >( row, 4 ); - preset = exdData->getField< uint8_t >( row, 5 ); - name = exdData->getField< std::string >( row, 6 ); - example = exdData->getField< std::string >( row, 7 ); -} - -Sapphire::Data::LogKind::LogKind( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_LogKindDat.get_row( row_id ); - format = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::LogMessage::LogMessage( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_LogMessageDat.get_row( row_id ); - logKind = exdData->getField< uint16_t >( row, 0 ); - text = exdData->getField< std::string >( row, 4 ); -} - -Sapphire::Data::LotteryExchangeShop::LotteryExchangeShop( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_LotteryExchangeShopDat.get_row( row_id ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 1 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 2 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 3 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 4 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 5 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 6 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 7 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 8 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 9 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 10 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 11 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 12 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 13 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 14 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 15 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 16 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 17 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 18 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 19 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 20 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 21 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 22 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 23 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 24 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 25 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 26 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 27 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 28 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 29 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 30 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 31 ) ); - itemAccepted.push_back( exdData->getField< int32_t >( row, 32 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 33 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 34 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 35 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 36 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 37 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 38 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 39 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 40 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 41 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 42 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 43 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 44 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 45 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 46 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 47 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 48 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 49 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 50 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 51 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 52 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 53 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 54 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 55 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 56 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 57 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 58 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 59 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 60 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 61 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 62 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 63 ) ); - amountAccepted.push_back( exdData->getField< uint32_t >( row, 64 ) ); - lua = exdData->getField< std::string >( row, 129 ); - logMessage.push_back( exdData->getField< uint32_t >( row, 130 ) ); - logMessage.push_back( exdData->getField< uint32_t >( row, 131 ) ); - logMessage.push_back( exdData->getField< uint32_t >( row, 132 ) ); -} - -Sapphire::Data::MacroIcon::MacroIcon( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MacroIconDat.get_row( row_id ); - icon = exdData->getField< int32_t >( row, 0 ); -} - -Sapphire::Data::MacroIconRedirectOld::MacroIconRedirectOld( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MacroIconRedirectOldDat.get_row( row_id ); - iconOld = exdData->getField< uint32_t >( row, 0 ); - iconNew = exdData->getField< int32_t >( row, 1 ); -} - -Sapphire::Data::MainCommand::MainCommand( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MainCommandDat.get_row( row_id ); - icon = exdData->getField< int32_t >( row, 0 ); - category = exdData->getField< uint8_t >( row, 1 ); - mainCommandCategory = exdData->getField< uint8_t >( row, 2 ); - sortID = exdData->getField< int8_t >( row, 3 ); - name = exdData->getField< std::string >( row, 4 ); - description = exdData->getField< std::string >( row, 5 ); -} - -Sapphire::Data::MainCommandCategory::MainCommandCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MainCommandCategoryDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::ManeuversArmor::ManeuversArmor( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ManeuversArmorDat.get_row( row_id ); - bNpcBase.push_back( exdData->getField< uint32_t >( row, 1 ) ); - bNpcBase.push_back( exdData->getField< uint32_t >( row, 2 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 5 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 6 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 7 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 8 ) ); - icon.push_back( exdData->getField< uint32_t >( row, 9 ) ); -} - -Sapphire::Data::Map::Map( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MapDat.get_row( row_id ); - mapCondition = exdData->getField< uint8_t >( row, 0 ); - priorityCategoryUI = exdData->getField< uint8_t >( row, 1 ); - priorityUI = exdData->getField< uint8_t >( row, 2 ); - mapIndex = exdData->getField< int8_t >( row, 3 ); - hierarchy = exdData->getField< uint8_t >( row, 4 ); - mapMarkerRange = exdData->getField< uint16_t >( row, 5 ); - id = exdData->getField< std::string >( row, 6 ); - sizeFactor = exdData->getField< uint16_t >( row, 7 ); - offsetX = exdData->getField< int16_t >( row, 8 ); - offsetY = exdData->getField< int16_t >( row, 9 ); - placeNameRegion = exdData->getField< uint16_t >( row, 10 ); - placeName = exdData->getField< uint16_t >( row, 11 ); - placeNameSub = exdData->getField< uint16_t >( row, 12 ); - discoveryIndex = exdData->getField< int16_t >( row, 13 ); - discoveryFlag = exdData->getField< uint32_t >( row, 14 ); - territoryType = exdData->getField< uint16_t >( row, 15 ); - discoveryArrayByte = exdData->getField< bool >( row, 16 ); - isEvent = exdData->getField< bool >( row, 17 ); -} - -Sapphire::Data::MapCondition::MapCondition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MapConditionDat.get_row( row_id ); - quest = exdData->getField< uint16_t >( row, 0 ); -} - -Sapphire::Data::MapMarker::MapMarker( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MapMarkerDat.get_row( row_id, subRow ); - x = exdData->getField< int16_t >( row, 0 ); - y = exdData->getField< int16_t >( row, 1 ); - icon = exdData->getField< uint16_t >( row, 2 ); - placeNameSubtext = exdData->getField< uint16_t >( row, 3 ); - subtextOrientation = exdData->getField< uint8_t >( row, 4 ); - mapMarkerRegion = exdData->getField< uint8_t >( row, 5 ); - type = exdData->getField< uint8_t >( row, 6 ); - dataType = exdData->getField< uint8_t >( row, 7 ); - dataKey = exdData->getField< uint16_t >( row, 8 ); -} - -Sapphire::Data::MapMarkerRegion::MapMarkerRegion( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MapMarkerRegionDat.get_row( row_id ); - x = exdData->getField< int16_t >( row, 1 ); -} - -Sapphire::Data::MapSymbol::MapSymbol( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MapSymbolDat.get_row( row_id ); - icon = exdData->getField< int32_t >( row, 0 ); - placeName = exdData->getField< int32_t >( row, 1 ); - displayNavi = exdData->getField< bool >( row, 2 ); -} - -Sapphire::Data::Marker::Marker( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MarkerDat.get_row( row_id ); - icon = exdData->getField< int32_t >( row, 0 ); - name = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::Materia::Materia( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MateriaDat.get_row( row_id ); - item.push_back( exdData->getField< int32_t >( row, 0 ) ); - item.push_back( exdData->getField< int32_t >( row, 1 ) ); - item.push_back( exdData->getField< int32_t >( row, 2 ) ); - item.push_back( exdData->getField< int32_t >( row, 3 ) ); - item.push_back( exdData->getField< int32_t >( row, 4 ) ); - item.push_back( exdData->getField< int32_t >( row, 5 ) ); - item.push_back( exdData->getField< int32_t >( row, 6 ) ); - item.push_back( exdData->getField< int32_t >( row, 7 ) ); - item.push_back( exdData->getField< int32_t >( row, 8 ) ); - item.push_back( exdData->getField< int32_t >( row, 9 ) ); - baseParam = exdData->getField< uint8_t >( row, 10 ); - value.push_back( exdData->getField< int16_t >( row, 11 ) ); - value.push_back( exdData->getField< int16_t >( row, 12 ) ); - value.push_back( exdData->getField< int16_t >( row, 13 ) ); - value.push_back( exdData->getField< int16_t >( row, 14 ) ); - value.push_back( exdData->getField< int16_t >( row, 15 ) ); - value.push_back( exdData->getField< int16_t >( row, 16 ) ); - value.push_back( exdData->getField< int16_t >( row, 17 ) ); - value.push_back( exdData->getField< int16_t >( row, 18 ) ); - value.push_back( exdData->getField< int16_t >( row, 19 ) ); - value.push_back( exdData->getField< int16_t >( row, 20 ) ); -} - -Sapphire::Data::MateriaJoinRate::MateriaJoinRate( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MateriaJoinRateDat.get_row( row_id ); - NQOvermeldSlot.push_back( exdData->getField< float >( row, 0 ) ); - NQOvermeldSlot.push_back( exdData->getField< float >( row, 1 ) ); - NQOvermeldSlot.push_back( exdData->getField< float >( row, 2 ) ); - NQOvermeldSlot.push_back( exdData->getField< float >( row, 3 ) ); - HQOvermeldSlot.push_back( exdData->getField< float >( row, 4 ) ); - HQOvermeldSlot.push_back( exdData->getField< float >( row, 5 ) ); - HQOvermeldSlot.push_back( exdData->getField< float >( row, 6 ) ); - HQOvermeldSlot.push_back( exdData->getField< float >( row, 7 ) ); -} - -Sapphire::Data::MateriaJoinRateGatherCraft::MateriaJoinRateGatherCraft( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MateriaJoinRateGatherCraftDat.get_row( row_id ); - NQOvermeldSlot.push_back( exdData->getField< float >( row, 0 ) ); - NQOvermeldSlot.push_back( exdData->getField< float >( row, 1 ) ); - NQOvermeldSlot.push_back( exdData->getField< float >( row, 2 ) ); - NQOvermeldSlot.push_back( exdData->getField< float >( row, 3 ) ); - HQOvermeldSlot.push_back( exdData->getField< float >( row, 4 ) ); - HQOvermeldSlot.push_back( exdData->getField< float >( row, 5 ) ); - HQOvermeldSlot.push_back( exdData->getField< float >( row, 6 ) ); - HQOvermeldSlot.push_back( exdData->getField< float >( row, 7 ) ); -} - -Sapphire::Data::MateriaTomestoneRate::MateriaTomestoneRate( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MateriaTomestoneRateDat.get_row( row_id ); - rate = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::MiniGameRA::MiniGameRA( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MiniGameRADat.get_row( row_id ); - icon = exdData->getField< int32_t >( row, 1 ); - image = exdData->getField< int32_t >( row, 2 ); - bGM = exdData->getField< int32_t >( row, 3 ); -} - -Sapphire::Data::MinionRace::MinionRace( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MinionRaceDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::MinionRules::MinionRules( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MinionRulesDat.get_row( row_id ); - rule = exdData->getField< std::string >( row, 0 ); - description = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::MinionSkillType::MinionSkillType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MinionSkillTypeDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::MobHuntOrder::MobHuntOrder( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MobHuntOrderDat.get_row( row_id, subRow ); - target = exdData->getField< uint16_t >( row, 0 ); - neededKills = exdData->getField< uint8_t >( row, 1 ); - type = exdData->getField< uint8_t >( row, 2 ); - rank = exdData->getField< uint8_t >( row, 3 ); - mobHuntReward = exdData->getField< uint8_t >( row, 4 ); -} - -Sapphire::Data::MobHuntOrderType::MobHuntOrderType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MobHuntOrderTypeDat.get_row( row_id ); - type = exdData->getField< uint8_t >( row, 0 ); - quest = exdData->getField< uint32_t >( row, 1 ); - eventItem = exdData->getField< uint32_t >( row, 2 ); - orderStart = exdData->getField< uint16_t >( row, 3 ); - orderAmount = exdData->getField< uint8_t >( row, 4 ); -} - -Sapphire::Data::MobHuntReward::MobHuntReward( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MobHuntRewardDat.get_row( row_id ); - expReward = exdData->getField< uint32_t >( row, 0 ); - gilReward = exdData->getField< uint16_t >( row, 1 ); - expansion = exdData->getField< uint8_t >( row, 2 ); - currencyReward = exdData->getField< uint16_t >( row, 3 ); -} - -Sapphire::Data::MobHuntRewardCap::MobHuntRewardCap( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MobHuntRewardCapDat.get_row( row_id ); - expCap = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::MobHuntTarget::MobHuntTarget( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MobHuntTargetDat.get_row( row_id ); - name = exdData->getField< uint16_t >( row, 0 ); - fATE = exdData->getField< uint16_t >( row, 1 ); - icon = exdData->getField< uint32_t >( row, 2 ); - territoryType = exdData->getField< uint16_t >( row, 3 ); - placeName = exdData->getField< uint16_t >( row, 4 ); -} - -Sapphire::Data::ModelChara::ModelChara( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ModelCharaDat.get_row( row_id ); - type = exdData->getField< uint8_t >( row, 0 ); - model = exdData->getField< uint16_t >( row, 1 ); - base = exdData->getField< uint8_t >( row, 2 ); - variant = exdData->getField< uint8_t >( row, 3 ); - sEPack = exdData->getField< uint16_t >( row, 4 ); - papVariation = exdData->getField< bool >( row, 7 ); -} - -Sapphire::Data::ModelSkeleton::ModelSkeleton( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ModelSkeletonDat.get_row( row_id ); - radius = exdData->getField< float >( row, 0 ); - height = exdData->getField< float >( row, 1 ); - vFXScale = exdData->getField< float >( row, 2 ); - floatHeight = exdData->getField< float >( row, 11 ); - floatDown = exdData->getField< float >( row, 12 ); - floatUp = exdData->getField< uint16_t >( row, 13 ); - motionBlendType = exdData->getField< bool >( row, 15 ); - loopFlySE = exdData->getField< uint8_t >( row, 16 ); -} - -Sapphire::Data::ModelState::ModelState( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ModelStateDat.get_row( row_id ); - start = exdData->getField< uint16_t >( row, 1 ); -} - -Sapphire::Data::MonsterNote::MonsterNote( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MonsterNoteDat.get_row( row_id ); - monsterNoteTarget.push_back( exdData->getField< uint16_t >( row, 0 ) ); - monsterNoteTarget.push_back( exdData->getField< uint16_t >( row, 1 ) ); - monsterNoteTarget.push_back( exdData->getField< uint16_t >( row, 2 ) ); - monsterNoteTarget.push_back( exdData->getField< uint16_t >( row, 3 ) ); - count.push_back( exdData->getField< uint8_t >( row, 4 ) ); - count.push_back( exdData->getField< uint8_t >( row, 5 ) ); - count.push_back( exdData->getField< uint8_t >( row, 6 ) ); - count.push_back( exdData->getField< uint8_t >( row, 7 ) ); - reward = exdData->getField< uint32_t >( row, 8 ); - name = exdData->getField< std::string >( row, 9 ); -} - -Sapphire::Data::MonsterNoteTarget::MonsterNoteTarget( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MonsterNoteTargetDat.get_row( row_id ); - bNpcName = exdData->getField< uint16_t >( row, 0 ); - icon = exdData->getField< int32_t >( row, 1 ); - town = exdData->getField< uint8_t >( row, 2 ); -} - -Sapphire::Data::MotionTimeline::MotionTimeline( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MotionTimelineDat.get_row( row_id ); - filename = exdData->getField< std::string >( row, 0 ); - blendGroup = exdData->getField< uint8_t >( row, 1 ); - isLoop = exdData->getField< bool >( row, 2 ); - isBlinkEnable = exdData->getField< bool >( row, 3 ); - isLipEnable = exdData->getField< bool >( row, 4 ); -} - -Sapphire::Data::MotionTimelineBlendTable::MotionTimelineBlendTable( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MotionTimelineBlendTableDat.get_row( row_id ); - destBlendGroup = exdData->getField< uint8_t >( row, 0 ); - srcBlendGroup = exdData->getField< uint8_t >( row, 1 ); - blendFrame_PC = exdData->getField< uint8_t >( row, 2 ); - blendFram_TypeA = exdData->getField< uint8_t >( row, 3 ); - blendFram_TypeB = exdData->getField< uint8_t >( row, 4 ); - blendFram_TypeC = exdData->getField< uint8_t >( row, 5 ); -} - -Sapphire::Data::Mount::Mount( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MountDat.get_row( row_id ); - singular = exdData->getField< std::string >( row, 0 ); - adjective = exdData->getField< int8_t >( row, 1 ); - plural = exdData->getField< std::string >( row, 2 ); - possessivePronoun = exdData->getField< int8_t >( row, 3 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - pronoun = exdData->getField< int8_t >( row, 6 ); - article = exdData->getField< int8_t >( row, 7 ); - modelChara = exdData->getField< int32_t >( row, 8 ); - flyingCondition = exdData->getField< uint8_t >( row, 10 ); - isFlying = exdData->getField< uint8_t >( row, 14 ); - mountCustomize = exdData->getField< uint8_t >( row, 16 ); - rideBGM = exdData->getField< uint16_t >( row, 17 ); - exitMoveDist = exdData->getField< uint8_t >( row, 21 ); - exitMoveSpeed = exdData->getField< uint8_t >( row, 22 ); - isEmote = exdData->getField< bool >( row, 24 ); - equipHead = exdData->getField< int32_t >( row, 25 ); - equipBody = exdData->getField< int32_t >( row, 26 ); - equipLeg = exdData->getField< int32_t >( row, 27 ); - equipFoot = exdData->getField< int32_t >( row, 28 ); - order = exdData->getField< int16_t >( row, 29 ); - icon = exdData->getField< uint16_t >( row, 30 ); - uIPriority = exdData->getField< uint8_t >( row, 31 ); - radiusRate = exdData->getField< uint8_t >( row, 32 ); - baseMotionSpeed_Run = exdData->getField< uint8_t >( row, 33 ); - baseMotionSpeed_Walk = exdData->getField< uint8_t >( row, 34 ); - extraSeats = exdData->getField< uint8_t >( row, 36 ); - mountAction = exdData->getField< uint16_t >( row, 37 ); - isAirborne = exdData->getField< bool >( row, 38 ); - exHotbarEnableConfig = exdData->getField< bool >( row, 39 ); - useEP = exdData->getField< bool >( row, 40 ); - isImmobile = exdData->getField< bool >( row, 42 ); -} - -Sapphire::Data::MountAction::MountAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MountActionDat.get_row( row_id ); - action.push_back( exdData->getField< uint16_t >( row, 0 ) ); - action.push_back( exdData->getField< uint16_t >( row, 1 ) ); - action.push_back( exdData->getField< uint16_t >( row, 2 ) ); - action.push_back( exdData->getField< uint16_t >( row, 3 ) ); - action.push_back( exdData->getField< uint16_t >( row, 4 ) ); - action.push_back( exdData->getField< uint16_t >( row, 5 ) ); -} - -Sapphire::Data::MountCustomize::MountCustomize( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MountCustomizeDat.get_row( row_id ); - hyurMaleScale = exdData->getField< uint16_t >( row, 1 ); - hyurFemaleScale = exdData->getField< uint16_t >( row, 2 ); - elezenMaleScale = exdData->getField< uint16_t >( row, 3 ); - elezenFemaleScale = exdData->getField< uint16_t >( row, 4 ); - lalaMaleScale = exdData->getField< uint16_t >( row, 5 ); - lalaFemaleScale = exdData->getField< uint16_t >( row, 6 ); - miqoMaleScale = exdData->getField< uint16_t >( row, 7 ); - miqoFemaleScale = exdData->getField< uint16_t >( row, 8 ); - roeMaleScale = exdData->getField< uint16_t >( row, 9 ); - roeFemaleScale = exdData->getField< uint16_t >( row, 10 ); - auRaMaleScale = exdData->getField< uint16_t >( row, 11 ); - auRaFemaleScale = exdData->getField< uint16_t >( row, 12 ); - hrothgarMaleScale = exdData->getField< uint16_t >( row, 13 ); - hrothgarFemaleScale = exdData->getField< uint16_t >( row, 14 ); - vieraMaleScale = exdData->getField< uint16_t >( row, 15 ); - vieraFemaleScale = exdData->getField< uint16_t >( row, 16 ); - hyurMaleCameraHeight = exdData->getField< uint8_t >( row, 17 ); - hyurFemaleCameraHeight = exdData->getField< uint8_t >( row, 18 ); - elezenMaleCameraHeight = exdData->getField< uint8_t >( row, 19 ); - elezenFemaleCameraHeight = exdData->getField< uint8_t >( row, 20 ); - lalaMaleCameraHeight = exdData->getField< uint8_t >( row, 21 ); - lalaFemaleCameraHeight = exdData->getField< uint8_t >( row, 22 ); - miqoMaleCameraHeight = exdData->getField< uint8_t >( row, 23 ); - miqoFemaleCameraHeight = exdData->getField< uint8_t >( row, 24 ); - roeMaleCameraHeight = exdData->getField< uint8_t >( row, 25 ); - roeFemaleCameraHeight = exdData->getField< uint8_t >( row, 26 ); - auRaMaleCameraHeight = exdData->getField< uint8_t >( row, 27 ); - auRaFemaleCameraHeight = exdData->getField< uint8_t >( row, 28 ); - hrothgarMaleCameraHeight = exdData->getField< uint8_t >( row, 29 ); - hrothgarRoeFemaleCameraHeight = exdData->getField< uint8_t >( row, 30 ); - vieraMaleCameraHeight = exdData->getField< uint8_t >( row, 31 ); - vieraFemaleCameraHeight = exdData->getField< uint8_t >( row, 32 ); -} - -Sapphire::Data::MountFlyingCondition::MountFlyingCondition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MountFlyingConditionDat.get_row( row_id ); - quest = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::MountSpeed::MountSpeed( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MountSpeedDat.get_row( row_id ); - quest = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::MountTransient::MountTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MountTransientDat.get_row( row_id ); - description = exdData->getField< std::string >( row, 0 ); - descriptionEnhanced = exdData->getField< std::string >( row, 1 ); - tooltip = exdData->getField< std::string >( row, 2 ); -} - -Sapphire::Data::MoveTimeline::MoveTimeline( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MoveTimelineDat.get_row( row_id ); - idle = exdData->getField< uint16_t >( row, 0 ); - moveForward = exdData->getField< uint16_t >( row, 1 ); - moveBack = exdData->getField< uint16_t >( row, 2 ); - moveLeft = exdData->getField< uint16_t >( row, 3 ); - moveRight = exdData->getField< uint16_t >( row, 4 ); - moveUp = exdData->getField< uint16_t >( row, 5 ); - moveDown = exdData->getField< uint16_t >( row, 6 ); - moveTurnLeft = exdData->getField< uint16_t >( row, 7 ); - moveTurnRight = exdData->getField< uint16_t >( row, 8 ); - extra = exdData->getField< uint16_t >( row, 9 ); -} - -Sapphire::Data::MoveVfx::MoveVfx( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MoveVfxDat.get_row( row_id ); - vFXNormal = exdData->getField< uint16_t >( row, 0 ); - vFXWalking = exdData->getField< uint16_t >( row, 1 ); -} - -Sapphire::Data::MovieStaffList::MovieStaffList( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MovieStaffListDat.get_row( row_id ); - image = exdData->getField< uint32_t >( row, 0 ); - startTime = exdData->getField< float >( row, 1 ); - endTime = exdData->getField< float >( row, 2 ); -} - -Sapphire::Data::MovieSubtitle::MovieSubtitle( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MovieSubtitleDat.get_row( row_id ); - startTime = exdData->getField< float >( row, 0 ); - endTime = exdData->getField< float >( row, 1 ); -} - -Sapphire::Data::MovieSubtitle500::MovieSubtitle500( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MovieSubtitle500Dat.get_row( row_id ); - startTime = exdData->getField< float >( row, 0 ); - endTime = exdData->getField< float >( row, 1 ); -} - -Sapphire::Data::MovieSubtitleVoyage::MovieSubtitleVoyage( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MovieSubtitleVoyageDat.get_row( row_id ); - startTime = exdData->getField< float >( row, 0 ); - endTime = exdData->getField< float >( row, 1 ); -} - -Sapphire::Data::MYCTemporaryItem::MYCTemporaryItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MYCTemporaryItemDat.get_row( row_id ); - category = exdData->getField< uint8_t >( row, 0 ); - type = exdData->getField< uint8_t >( row, 1 ); - action = exdData->getField< uint32_t >( row, 2 ); - max = exdData->getField< uint8_t >( row, 3 ); - weight = exdData->getField< uint8_t >( row, 4 ); - order = exdData->getField< uint8_t >( row, 5 ); -} - -Sapphire::Data::MYCTemporaryItemUICategory::MYCTemporaryItemUICategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MYCTemporaryItemUICategoryDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::MYCWarResultNotebook::MYCWarResultNotebook( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_MYCWarResultNotebookDat.get_row( row_id ); - number = exdData->getField< uint8_t >( row, 0 ); - link = exdData->getField< uint8_t >( row, 2 ); - quest = exdData->getField< int32_t >( row, 3 ); - icon = exdData->getField< int32_t >( row, 5 ); - image = exdData->getField< int32_t >( row, 6 ); - rarity = exdData->getField< uint8_t >( row, 7 ); - nameJP = exdData->getField< std::string >( row, 8 ); - name = exdData->getField< std::string >( row, 9 ); - description = exdData->getField< std::string >( row, 10 ); -} - -Sapphire::Data::NotebookDivision::NotebookDivision( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_NotebookDivisionDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - notebookDivisionCategory = exdData->getField< uint8_t >( row, 1 ); - craftOpeningLevel = exdData->getField< uint8_t >( row, 2 ); - gatheringOpeningLevel = exdData->getField< uint8_t >( row, 3 ); - questUnlock = exdData->getField< uint32_t >( row, 4 ); - cRPCraft = exdData->getField< bool >( row, 7 ); - bSMCraft = exdData->getField< bool >( row, 8 ); - aRMCraft = exdData->getField< bool >( row, 9 ); - gSMCraft = exdData->getField< bool >( row, 10 ); - lTWCraft = exdData->getField< bool >( row, 11 ); - wVRCraft = exdData->getField< bool >( row, 12 ); - aLCCraft = exdData->getField< bool >( row, 13 ); - cULCraft = exdData->getField< bool >( row, 14 ); -} - -Sapphire::Data::NotebookDivisionCategory::NotebookDivisionCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_NotebookDivisionCategoryDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - index = exdData->getField< uint8_t >( row, 1 ); -} - -Sapphire::Data::NotoriousMonster::NotoriousMonster( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_NotoriousMonsterDat.get_row( row_id ); - bNpcBase = exdData->getField< int32_t >( row, 0 ); - rank = exdData->getField< uint8_t >( row, 1 ); - bNpcName = exdData->getField< uint32_t >( row, 2 ); -} - -Sapphire::Data::NpcEquip::NpcEquip( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_NpcEquipDat.get_row( row_id ); - modelMainHand = exdData->getField< uint64_t >( row, 0 ); - dyeMainHand = exdData->getField< uint8_t >( row, 1 ); - modelOffHand = exdData->getField< uint64_t >( row, 2 ); - dyeOffHand = exdData->getField< uint8_t >( row, 3 ); - modelHead = exdData->getField< uint32_t >( row, 4 ); - dyeHead = exdData->getField< uint8_t >( row, 5 ); - visor = exdData->getField< bool >( row, 6 ); - modelBody = exdData->getField< uint32_t >( row, 7 ); - dyeBody = exdData->getField< uint8_t >( row, 8 ); - modelHands = exdData->getField< uint32_t >( row, 9 ); - dyeHands = exdData->getField< uint8_t >( row, 10 ); - modelLegs = exdData->getField< uint32_t >( row, 11 ); - dyeLegs = exdData->getField< uint8_t >( row, 12 ); - modelFeet = exdData->getField< uint32_t >( row, 13 ); - dyeFeet = exdData->getField< uint8_t >( row, 14 ); - modelEars = exdData->getField< uint32_t >( row, 15 ); - dyeEars = exdData->getField< uint8_t >( row, 16 ); - modelNeck = exdData->getField< uint32_t >( row, 17 ); - dyeNeck = exdData->getField< uint8_t >( row, 18 ); - modelWrists = exdData->getField< uint32_t >( row, 19 ); - dyeWrists = exdData->getField< uint8_t >( row, 20 ); - modelLeftRing = exdData->getField< uint32_t >( row, 21 ); - dyeLeftRing = exdData->getField< uint8_t >( row, 22 ); - modelRightRing = exdData->getField< uint32_t >( row, 23 ); - dyeRightRing = exdData->getField< uint8_t >( row, 24 ); -} - -Sapphire::Data::NpcYell::NpcYell( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_NpcYellDat.get_row( row_id ); - outputType = exdData->getField< uint8_t >( row, 5 ); - balloonTime = exdData->getField< float >( row, 6 ); - isBalloonSlow = exdData->getField< bool >( row, 7 ); - battleTalkTime = exdData->getField< bool >( row, 8 ); - text = exdData->getField< std::string >( row, 10 ); -} - -Sapphire::Data::Omen::Omen( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_OmenDat.get_row( row_id ); - path = exdData->getField< std::string >( row, 0 ); - pathAlly = exdData->getField< std::string >( row, 1 ); - type = exdData->getField< uint8_t >( row, 2 ); - restrictYScale = exdData->getField< bool >( row, 3 ); - largeScale = exdData->getField< bool >( row, 4 ); -} - -Sapphire::Data::OnlineStatus::OnlineStatus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_OnlineStatusDat.get_row( row_id ); - list = exdData->getField< bool >( row, 0 ); - priority = exdData->getField< uint8_t >( row, 2 ); - name = exdData->getField< std::string >( row, 3 ); - icon = exdData->getField< uint32_t >( row, 4 ); -} - -Sapphire::Data::OpenContent::OpenContent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_OpenContentDat.get_row( row_id ); - content.push_back( exdData->getField< uint16_t >( row, 0 ) ); - content.push_back( exdData->getField< uint16_t >( row, 1 ) ); - content.push_back( exdData->getField< uint16_t >( row, 2 ) ); - content.push_back( exdData->getField< uint16_t >( row, 3 ) ); - content.push_back( exdData->getField< uint16_t >( row, 4 ) ); - content.push_back( exdData->getField< uint16_t >( row, 5 ) ); - content.push_back( exdData->getField< uint16_t >( row, 6 ) ); - content.push_back( exdData->getField< uint16_t >( row, 7 ) ); - content.push_back( exdData->getField< uint16_t >( row, 8 ) ); - content.push_back( exdData->getField< uint16_t >( row, 9 ) ); - content.push_back( exdData->getField< uint16_t >( row, 10 ) ); - content.push_back( exdData->getField< uint16_t >( row, 11 ) ); - content.push_back( exdData->getField< uint16_t >( row, 12 ) ); - content.push_back( exdData->getField< uint16_t >( row, 13 ) ); - content.push_back( exdData->getField< uint16_t >( row, 14 ) ); - content.push_back( exdData->getField< uint16_t >( row, 15 ) ); - candidateName.push_back( exdData->getField< uint32_t >( row, 16 ) ); - candidateName.push_back( exdData->getField< uint32_t >( row, 17 ) ); - candidateName.push_back( exdData->getField< uint32_t >( row, 18 ) ); - candidateName.push_back( exdData->getField< uint32_t >( row, 19 ) ); - candidateName.push_back( exdData->getField< uint32_t >( row, 20 ) ); - candidateName.push_back( exdData->getField< uint32_t >( row, 21 ) ); - candidateName.push_back( exdData->getField< uint32_t >( row, 22 ) ); - candidateName.push_back( exdData->getField< uint32_t >( row, 23 ) ); - candidateName.push_back( exdData->getField< uint32_t >( row, 24 ) ); - candidateName.push_back( exdData->getField< uint32_t >( row, 25 ) ); - candidateName.push_back( exdData->getField< uint32_t >( row, 26 ) ); - candidateName.push_back( exdData->getField< uint32_t >( row, 27 ) ); - candidateName.push_back( exdData->getField< uint32_t >( row, 28 ) ); - candidateName.push_back( exdData->getField< uint32_t >( row, 29 ) ); - candidateName.push_back( exdData->getField< uint32_t >( row, 30 ) ); - candidateName.push_back( exdData->getField< uint32_t >( row, 31 ) ); -} - -Sapphire::Data::OpenContentCandidateName::OpenContentCandidateName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_OpenContentCandidateNameDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::Opening::Opening( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_OpeningDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - quest = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::Orchestrion::Orchestrion( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_OrchestrionDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - description = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::OrchestrionCategory::OrchestrionCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_OrchestrionCategoryDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - hideOrder = exdData->getField< uint8_t >( row, 1 ); - icon = exdData->getField< uint32_t >( row, 2 ); - order = exdData->getField< uint8_t >( row, 3 ); -} - -Sapphire::Data::OrchestrionPath::OrchestrionPath( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_OrchestrionPathDat.get_row( row_id ); - file = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::OrchestrionUiparam::OrchestrionUiparam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_OrchestrionUiparamDat.get_row( row_id ); - orchestrionCategory = exdData->getField< uint8_t >( row, 0 ); - order = exdData->getField< uint16_t >( row, 1 ); -} - -Sapphire::Data::Ornament::Ornament( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_OrnamentDat.get_row( row_id ); - model = exdData->getField< uint16_t >( row, 0 ); - order = exdData->getField< int16_t >( row, 4 ); - icon = exdData->getField< uint16_t >( row, 5 ); - transient = exdData->getField< uint16_t >( row, 6 ); - singular = exdData->getField< std::string >( row, 7 ); - adjective = exdData->getField< int8_t >( row, 8 ); - plural = exdData->getField< std::string >( row, 9 ); - possessivePronoun = exdData->getField< int8_t >( row, 10 ); - startsWithVowel = exdData->getField< int8_t >( row, 11 ); - pronoun = exdData->getField< int8_t >( row, 13 ); - article = exdData->getField< int8_t >( row, 14 ); -} - -Sapphire::Data::ParamGrow::ParamGrow( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ParamGrowDat.get_row( row_id ); - expToNext = exdData->getField< int32_t >( row, 0 ); - additionalActions = exdData->getField< uint8_t >( row, 1 ); - applyAction = exdData->getField< uint8_t >( row, 2 ); - scaledQuestXP = exdData->getField< uint16_t >( row, 3 ); - mpModifier = exdData->getField< int32_t >( row, 4 ); - baseSpeed = exdData->getField< int32_t >( row, 5 ); - levelModifier = exdData->getField< int32_t >( row, 6 ); - questExpModifier = exdData->getField< uint8_t >( row, 7 ); - hpModifier = exdData->getField< uint16_t >( row, 8 ); - huntingLogExpReward = exdData->getField< int32_t >( row, 9 ); - monsterNoteSeals = exdData->getField< int32_t >( row, 10 ); - itemLevelSync = exdData->getField< uint16_t >( row, 11 ); - properDungeon = exdData->getField< uint16_t >( row, 12 ); - properGuildOrder = exdData->getField< uint16_t >( row, 13 ); - craftingLevel = exdData->getField< uint16_t >( row, 14 ); -} - -Sapphire::Data::PartyContent::PartyContent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PartyContentDat.get_row( row_id ); - key = exdData->getField< uint8_t >( row, 0 ); - timeLimit = exdData->getField< uint16_t >( row, 1 ); - name = exdData->getField< bool >( row, 2 ); - textDataStart = exdData->getField< uint32_t >( row, 3 ); - textDataEnd = exdData->getField< uint32_t >( row, 4 ); - lGBEventObject0.push_back( exdData->getField< uint32_t >( row, 5 ) ); - lGBEventObject0.push_back( exdData->getField< uint32_t >( row, 6 ) ); - lGBEventObject0.push_back( exdData->getField< uint32_t >( row, 7 ) ); - lGBEventObject0.push_back( exdData->getField< uint32_t >( row, 8 ) ); - lGBEventObject0.push_back( exdData->getField< uint32_t >( row, 9 ) ); - lGBEventObject0.push_back( exdData->getField< uint32_t >( row, 10 ) ); - lGBEventObject0.push_back( exdData->getField< uint32_t >( row, 11 ) ); - lGBEventObject0.push_back( exdData->getField< uint32_t >( row, 12 ) ); - lGBEventObject0.push_back( exdData->getField< uint32_t >( row, 13 ) ); - lGBEventRange.push_back( exdData->getField< uint32_t >( row, 14 ) ); - lGBEventRange.push_back( exdData->getField< uint32_t >( row, 15 ) ); - lGBEventRange.push_back( exdData->getField< uint32_t >( row, 16 ) ); - lGBEventRange.push_back( exdData->getField< uint32_t >( row, 17 ) ); - lGBEventRange.push_back( exdData->getField< uint32_t >( row, 18 ) ); - lGBEventRange.push_back( exdData->getField< uint32_t >( row, 19 ) ); - lGBEventRange.push_back( exdData->getField< uint32_t >( row, 20 ) ); - lGBEventRange.push_back( exdData->getField< uint32_t >( row, 21 ) ); - lGBEventRange.push_back( exdData->getField< uint32_t >( row, 22 ) ); - lGBEventObject1.push_back( exdData->getField< uint32_t >( row, 23 ) ); - lGBEventObject1.push_back( exdData->getField< uint32_t >( row, 24 ) ); - lGBEventObject1.push_back( exdData->getField< uint32_t >( row, 25 ) ); - lGBEventObject1.push_back( exdData->getField< uint32_t >( row, 26 ) ); - lGBEventObject1.push_back( exdData->getField< uint32_t >( row, 27 ) ); - lGBEventObject1.push_back( exdData->getField< uint32_t >( row, 28 ) ); - lGBEventObject1.push_back( exdData->getField< uint32_t >( row, 29 ) ); - lGBEventObject1.push_back( exdData->getField< uint32_t >( row, 30 ) ); - lGBEventObject1.push_back( exdData->getField< uint32_t >( row, 31 ) ); - contentFinderCondition = exdData->getField< uint16_t >( row, 33 ); - image = exdData->getField< uint32_t >( row, 34 ); -} - -Sapphire::Data::PartyContentCutscene::PartyContentCutscene( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PartyContentCutsceneDat.get_row( row_id ); - cutscene = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::PartyContentTextData::PartyContentTextData( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PartyContentTextDataDat.get_row( row_id ); - data = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::PatchMark::PatchMark( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PatchMarkDat.get_row( row_id ); - category = exdData->getField< int8_t >( row, 0 ); - subCategoryType = exdData->getField< uint8_t >( row, 1 ); - subCategory = exdData->getField< uint16_t >( row, 2 ); - markID = exdData->getField< uint32_t >( row, 5 ); - version = exdData->getField< uint8_t >( row, 6 ); -} - -Sapphire::Data::Perform::Perform( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PerformDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - modelKey = exdData->getField< uint64_t >( row, 2 ); - animationStart = exdData->getField< uint16_t >( row, 3 ); - animationEnd = exdData->getField< uint16_t >( row, 4 ); - animationIdle = exdData->getField< uint16_t >( row, 5 ); - animationPlay01 = exdData->getField< uint16_t >( row, 6 ); - animationPlay02 = exdData->getField< uint16_t >( row, 7 ); - stopAnimation = exdData->getField< int32_t >( row, 8 ); - instrument = exdData->getField< std::string >( row, 9 ); - order = exdData->getField< int32_t >( row, 10 ); - transient = exdData->getField< uint8_t >( row, 11 ); -} - -Sapphire::Data::PerformGroup::PerformGroup( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PerformGroupDat.get_row( row_id ); - perform.push_back( exdData->getField< uint8_t >( row, 0 ) ); - perform.push_back( exdData->getField< uint8_t >( row, 1 ) ); - perform.push_back( exdData->getField< uint8_t >( row, 2 ) ); - perform.push_back( exdData->getField< uint8_t >( row, 3 ) ); - perform.push_back( exdData->getField< uint8_t >( row, 4 ) ); -} - -Sapphire::Data::PerformTransient::PerformTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PerformTransientDat.get_row( row_id ); - text = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::Pet::Pet( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PetDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::PetAction::PetAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PetActionDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - description = exdData->getField< std::string >( row, 1 ); - icon = exdData->getField< int32_t >( row, 2 ); - action = exdData->getField< uint16_t >( row, 3 ); - pet = exdData->getField< uint8_t >( row, 4 ); - masterOrder = exdData->getField< bool >( row, 5 ); - disableOrder = exdData->getField< bool >( row, 6 ); -} - -Sapphire::Data::PetMirage::PetMirage( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PetMirageDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 2 ); -} - -Sapphire::Data::PhysicsGroup::PhysicsGroup( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PhysicsGroupDat.get_row( row_id ); - simulationTime.push_back( exdData->getField< float >( row, 0 ) ); - simulationTime.push_back( exdData->getField< float >( row, 1 ) ); - simulationTime.push_back( exdData->getField< float >( row, 2 ) ); - simulationTime.push_back( exdData->getField< float >( row, 3 ) ); - simulationTime.push_back( exdData->getField< float >( row, 4 ) ); - simulationTime.push_back( exdData->getField< float >( row, 5 ) ); - pS3SimulationTime.push_back( exdData->getField< float >( row, 6 ) ); - pS3SimulationTime.push_back( exdData->getField< float >( row, 7 ) ); - pS3SimulationTime.push_back( exdData->getField< float >( row, 8 ) ); - pS3SimulationTime.push_back( exdData->getField< float >( row, 9 ) ); - pS3SimulationTime.push_back( exdData->getField< float >( row, 10 ) ); - pS3SimulationTime.push_back( exdData->getField< float >( row, 11 ) ); - resetByLookAt = exdData->getField< bool >( row, 12 ); - rootFollowingGame = exdData->getField< float >( row, 13 ); - rootFollowingCutScene = exdData->getField< float >( row, 14 ); - configSwitch.push_back( exdData->getField< int8_t >( row, 15 ) ); - configSwitch.push_back( exdData->getField< int8_t >( row, 16 ) ); - configSwitch.push_back( exdData->getField< int8_t >( row, 17 ) ); - forceAttractByPhysicsOff = exdData->getField< bool >( row, 18 ); -} - -Sapphire::Data::PhysicsWind::PhysicsWind( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PhysicsWindDat.get_row( row_id ); - threshold = exdData->getField< float >( row, 0 ); - amplitude = exdData->getField< float >( row, 1 ); - amplitudeFrequency = exdData->getField< float >( row, 2 ); - powerMin = exdData->getField< float >( row, 3 ); - powerMax = exdData->getField< float >( row, 4 ); - powerFrequency = exdData->getField< float >( row, 5 ); -} - -Sapphire::Data::Picture::Picture( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PictureDat.get_row( row_id ); - item = exdData->getField< int32_t >( row, 0 ); - image = exdData->getField< int32_t >( row, 1 ); -} - -Sapphire::Data::PlaceName::PlaceName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PlaceNameDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - nameNoArticle = exdData->getField< std::string >( row, 2 ); -} - -Sapphire::Data::PlantPotFlowerSeed::PlantPotFlowerSeed( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PlantPotFlowerSeedDat.get_row( row_id ); - seedIcon.push_back( exdData->getField< uint32_t >( row, 0 ) ); - seedIcon.push_back( exdData->getField< uint32_t >( row, 1 ) ); - seedIcon.push_back( exdData->getField< uint32_t >( row, 2 ) ); - seedIcon.push_back( exdData->getField< uint32_t >( row, 3 ) ); - seedIcon.push_back( exdData->getField< uint32_t >( row, 4 ) ); - seedIcon.push_back( exdData->getField< uint32_t >( row, 5 ) ); - seedIcon.push_back( exdData->getField< uint32_t >( row, 6 ) ); - seedIcon.push_back( exdData->getField< uint32_t >( row, 7 ) ); - seedIcon.push_back( exdData->getField< uint32_t >( row, 8 ) ); -} - -Sapphire::Data::PreHandler::PreHandler( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PreHandlerDat.get_row( row_id ); - image = exdData->getField< uint32_t >( row, 1 ); - target = exdData->getField< uint32_t >( row, 2 ); - unlockQuest = exdData->getField< uint32_t >( row, 3 ); - acceptMessage = exdData->getField< uint32_t >( row, 4 ); - denyMessage = exdData->getField< uint32_t >( row, 5 ); -} - -Sapphire::Data::PresetCamera::PresetCamera( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PresetCameraDat.get_row( row_id ); - eID = exdData->getField< uint16_t >( row, 0 ); - posX = exdData->getField< float >( row, 1 ); - posY = exdData->getField< float >( row, 2 ); - posZ = exdData->getField< float >( row, 3 ); - elezen = exdData->getField< float >( row, 4 ); - lalafell = exdData->getField< float >( row, 5 ); - miqote = exdData->getField< float >( row, 6 ); - roe = exdData->getField< float >( row, 7 ); - hrothgar = exdData->getField< float >( row, 8 ); - viera = exdData->getField< float >( row, 9 ); - hyur_F = exdData->getField< float >( row, 10 ); - elezen_F = exdData->getField< float >( row, 11 ); - lalafell_F = exdData->getField< float >( row, 12 ); - miqote_F = exdData->getField< float >( row, 13 ); - roe_F = exdData->getField< float >( row, 14 ); - hrothgar_F = exdData->getField< float >( row, 15 ); - viera_F = exdData->getField< float >( row, 16 ); -} - -Sapphire::Data::PresetCameraAdjust::PresetCameraAdjust( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PresetCameraAdjustDat.get_row( row_id ); - hyur_M = exdData->getField< float >( row, 0 ); - hyur_F = exdData->getField< float >( row, 1 ); - elezen_M = exdData->getField< float >( row, 2 ); - elezen_F = exdData->getField< float >( row, 3 ); - lalafell_M = exdData->getField< float >( row, 4 ); - lalafell_F = exdData->getField< float >( row, 5 ); - miqote_M = exdData->getField< float >( row, 6 ); - miqote_F = exdData->getField< float >( row, 7 ); - roe_M = exdData->getField< float >( row, 8 ); - roe_F = exdData->getField< float >( row, 9 ); - hrothgar_M = exdData->getField< float >( row, 10 ); - hrothgar_F = exdData->getField< float >( row, 11 ); - viera_M = exdData->getField< float >( row, 12 ); - viera_F = exdData->getField< float >( row, 13 ); -} - -Sapphire::Data::PublicContent::PublicContent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PublicContentDat.get_row( row_id ); - type = exdData->getField< uint8_t >( row, 0 ); - timeLimit = exdData->getField< uint16_t >( row, 1 ); - mapIcon = exdData->getField< uint32_t >( row, 2 ); - name = exdData->getField< std::string >( row, 3 ); - textDataStart = exdData->getField< uint32_t >( row, 4 ); - textDataEnd = exdData->getField< uint32_t >( row, 5 ); - startCutscene = exdData->getField< uint32_t >( row, 6 ); - lGBEventRange = exdData->getField< uint32_t >( row, 7 ); - lGBPopRange = exdData->getField< uint32_t >( row, 8 ); - contentFinderCondition = exdData->getField< uint16_t >( row, 9 ); - additionalData = exdData->getField< uint16_t >( row, 10 ); - endCutscene = exdData->getField< uint32_t >( row, 16 ); -} - -Sapphire::Data::PublicContentCutscene::PublicContentCutscene( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PublicContentCutsceneDat.get_row( row_id ); - cutscene = exdData->getField< uint32_t >( row, 0 ); - cutscene2 = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::PublicContentTextData::PublicContentTextData( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PublicContentTextDataDat.get_row( row_id ); - textData = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::PvPAction::PvPAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PvPActionDat.get_row( row_id ); - action = exdData->getField< uint16_t >( row, 0 ); - grandCompany.push_back( exdData->getField< bool >( row, 5 ) ); - grandCompany.push_back( exdData->getField< bool >( row, 6 ) ); - grandCompany.push_back( exdData->getField< bool >( row, 7 ) ); -} - -Sapphire::Data::PvPActionSort::PvPActionSort( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PvPActionSortDat.get_row( row_id, subRow ); - actionType = exdData->getField< uint8_t >( row, 0 ); - action = exdData->getField< uint16_t >( row, 1 ); -} - -Sapphire::Data::PvPRank::PvPRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PvPRankDat.get_row( row_id ); - expRequired = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::PvPSelectTrait::PvPSelectTrait( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PvPSelectTraitDat.get_row( row_id ); - effect = exdData->getField< std::string >( row, 0 ); - icon = exdData->getField< uint32_t >( row, 1 ); - value = exdData->getField< int16_t >( row, 2 ); -} - -Sapphire::Data::PvPTrait::PvPTrait( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_PvPTraitDat.get_row( row_id ); - trait1 = exdData->getField< uint16_t >( row, 0 ); - trait2 = exdData->getField< uint16_t >( row, 1 ); - trait3 = exdData->getField< uint16_t >( row, 2 ); -} - -Sapphire::Data::Quest::Quest( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuestDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - id = exdData->getField< std::string >( row, 1 ); - expansion = exdData->getField< uint8_t >( row, 2 ); - classJobCategory0 = exdData->getField< uint8_t >( row, 3 ); - classJobLevel0 = exdData->getField< uint16_t >( row, 4 ); - questLevelOffset = exdData->getField< uint8_t >( row, 5 ); - classJobCategory1 = exdData->getField< uint8_t >( row, 6 ); - classJobLevel1 = exdData->getField< uint16_t >( row, 7 ); - previousQuestJoin = exdData->getField< uint8_t >( row, 8 ); - previousQuest.push_back( exdData->getField< uint32_t >( row, 9 ) ); - previousQuest0Sequence = exdData->getField< uint8_t >( row, 10 ); - previousQuest.push_back( exdData->getField< uint32_t >( row, 11 ) ); - previousQuest.push_back( exdData->getField< uint32_t >( row, 12 ) ); - questLockJoin = exdData->getField< uint8_t >( row, 13 ); - questLock.push_back( exdData->getField< uint32_t >( row, 14 ) ); - questLock.push_back( exdData->getField< uint32_t >( row, 15 ) ); - header = exdData->getField< uint16_t >( row, 16 ); - startTown = exdData->getField< uint8_t >( row, 17 ); - classJobUnlockFlag = exdData->getField< uint8_t >( row, 18 ); - classJobUnlock = exdData->getField< uint8_t >( row, 19 ); - grandCompany = exdData->getField< uint8_t >( row, 20 ); - grandCompanyRank = exdData->getField< uint8_t >( row, 21 ); - instanceContentJoin = exdData->getField< uint8_t >( row, 22 ); - instanceContent.push_back( exdData->getField< uint32_t >( row, 23 ) ); - instanceContent.push_back( exdData->getField< uint32_t >( row, 24 ) ); - instanceContent.push_back( exdData->getField< uint32_t >( row, 25 ) ); - festival = exdData->getField< uint8_t >( row, 26 ); - festivalBegin = exdData->getField< uint8_t >( row, 27 ); - festivalEnd = exdData->getField< uint8_t >( row, 28 ); - bellStart = exdData->getField< uint16_t >( row, 29 ); - bellEnd = exdData->getField< uint16_t >( row, 30 ); - beastTribe = exdData->getField< uint8_t >( row, 31 ); - beastReputationRank = exdData->getField< uint8_t >( row, 32 ); - beastReputationValue = exdData->getField< uint16_t >( row, 33 ); - satisfactionNpc = exdData->getField< uint8_t >( row, 34 ); - satisfactionLevel = exdData->getField< uint8_t >( row, 35 ); - mountRequired = exdData->getField< int32_t >( row, 36 ); - isHouseRequired = exdData->getField< bool >( row, 37 ); - deliveryQuest = exdData->getField< uint8_t >( row, 38 ); - issuerStart = exdData->getField< uint32_t >( row, 39 ); - issuerLocation = exdData->getField< uint32_t >( row, 40 ); - clientBehavior = exdData->getField< uint16_t >( row, 41 ); - targetEnd = exdData->getField< uint32_t >( row, 42 ); - isRepeatable = exdData->getField< bool >( row, 43 ); - repeatIntervalType = exdData->getField< uint8_t >( row, 44 ); - questRepeatFlag = exdData->getField< uint8_t >( row, 45 ); - canCancel = exdData->getField< bool >( row, 46 ); - type = exdData->getField< uint8_t >( row, 47 ); - questClassJobSupply = exdData->getField< uint16_t >( row, 48 ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 49 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 50 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 51 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 52 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 53 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 54 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 55 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 56 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 57 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 58 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 59 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 60 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 61 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 62 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 63 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 64 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 65 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 66 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 67 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 68 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 69 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 70 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 71 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 72 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 73 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 74 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 75 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 76 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 77 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 78 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 79 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 80 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 81 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 82 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 83 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 84 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 85 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 86 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 87 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 88 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 89 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 90 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 91 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 92 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 93 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 94 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 95 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 96 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 97 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 98 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 99 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 100 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 101 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 102 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 103 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 104 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 105 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 106 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 107 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 108 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 109 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 110 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 111 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 112 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 113 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 114 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 115 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 116 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 117 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 118 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 119 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 120 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 121 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 122 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 123 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 124 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 125 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 126 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 127 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 128 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 129 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 130 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 131 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 132 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 133 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 134 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 135 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 136 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 137 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 138 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 139 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 140 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 141 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 142 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 143 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 144 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 145 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 146 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 147 ) ); - scriptArg.push_back( exdData->getField< uint32_t >( row, 148 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 149 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 150 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 151 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 152 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 153 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 154 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 155 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 156 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 157 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 158 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 159 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 160 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 161 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 162 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 163 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 164 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 165 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 166 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 167 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 168 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 169 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 170 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 171 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 172 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 173 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 174 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 175 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 176 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 177 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 178 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 179 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 180 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 181 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 182 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 183 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 184 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 185 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 186 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 187 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 188 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 189 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 190 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 191 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 192 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 193 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 194 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 195 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 196 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 197 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 198 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 199 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 200 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 201 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 202 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 203 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 204 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 205 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 206 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 207 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 208 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 209 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 210 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 211 ) ); - actorSpawnSeq.push_back( exdData->getField< uint8_t >( row, 212 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 213 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 214 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 215 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 216 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 217 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 218 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 219 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 220 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 221 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 222 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 223 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 224 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 225 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 226 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 227 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 228 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 229 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 230 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 231 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 232 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 233 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 234 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 235 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 236 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 237 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 238 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 239 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 240 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 241 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 242 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 243 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 244 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 245 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 246 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 247 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 248 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 249 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 250 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 251 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 252 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 253 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 254 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 255 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 256 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 257 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 258 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 259 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 260 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 261 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 262 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 263 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 264 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 265 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 266 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 267 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 268 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 269 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 270 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 271 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 272 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 273 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 274 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 275 ) ); - actorDespawnSeq.push_back( exdData->getField< uint8_t >( row, 276 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 277 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 278 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 279 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 280 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 281 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 282 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 283 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 284 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 285 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 286 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 287 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 288 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 289 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 290 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 291 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 292 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 293 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 294 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 295 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 296 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 297 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 298 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 299 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 300 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 301 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 302 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 303 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 304 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 305 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 306 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 307 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 308 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 309 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 310 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 311 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 312 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 313 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 314 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 315 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 316 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 317 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 318 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 319 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 320 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 321 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 322 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 323 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 324 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 325 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 326 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 327 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 328 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 329 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 330 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 331 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 332 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 333 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 334 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 335 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 336 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 337 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 338 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 339 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 340 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 341 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 342 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 343 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 344 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 345 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 346 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 347 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 348 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 349 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 350 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 351 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 352 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 353 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 354 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 355 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 356 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 357 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 358 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 359 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 360 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 361 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 362 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 363 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 364 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 365 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 366 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 367 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 368 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 369 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 370 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 371 ) ); - questUInt8A.push_back( exdData->getField< uint8_t >( row, 372 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 373 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 374 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 375 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 376 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 377 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 378 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 379 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 380 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 381 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 382 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 383 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 384 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 385 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 386 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 387 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 388 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 389 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 390 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 391 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 392 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 393 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 394 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 395 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 396 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 397 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 398 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 399 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 400 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 401 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 402 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 403 ) ); - questUInt8B.push_back( exdData->getField< uint8_t >( row, 404 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 405 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 406 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 407 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 408 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 409 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 410 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 411 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 412 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 413 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 414 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 415 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 416 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 417 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 418 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 419 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 420 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 421 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 422 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 423 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 424 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 425 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 426 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 427 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 428 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 429 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 430 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 431 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 432 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 433 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 434 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 435 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 436 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 437 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 438 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 439 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 440 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 441 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 442 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 443 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 444 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 445 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 446 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 447 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 448 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 449 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 450 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 451 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 452 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 453 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 454 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 455 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 456 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 457 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 458 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 459 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 460 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 461 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 462 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 463 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 464 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 465 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 466 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 467 ) ); - conditionType.push_back( exdData->getField< uint8_t >( row, 468 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 469 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 470 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 471 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 472 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 473 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 474 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 475 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 476 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 477 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 478 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 479 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 480 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 481 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 482 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 483 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 484 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 485 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 486 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 487 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 488 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 489 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 490 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 491 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 492 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 493 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 494 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 495 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 496 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 497 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 498 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 499 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 500 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 501 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 502 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 503 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 504 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 505 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 506 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 507 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 508 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 509 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 510 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 511 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 512 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 513 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 514 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 515 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 516 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 517 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 518 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 519 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 520 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 521 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 522 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 523 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 524 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 525 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 526 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 527 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 528 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 529 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 530 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 531 ) ); - conditionValue.push_back( exdData->getField< uint32_t >( row, 532 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 533 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 534 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 535 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 536 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 537 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 538 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 539 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 540 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 541 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 542 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 543 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 544 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 545 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 546 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 547 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 548 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 549 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 550 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 551 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 552 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 553 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 554 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 555 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 556 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 557 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 558 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 559 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 560 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 561 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 562 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 563 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 564 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 565 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 566 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 567 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 568 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 569 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 570 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 571 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 572 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 573 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 574 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 575 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 576 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 577 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 578 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 579 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 580 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 581 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 582 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 583 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 584 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 585 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 586 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 587 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 588 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 589 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 590 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 591 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 592 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 593 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 594 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 595 ) ); - conditionOperator.push_back( exdData->getField< uint8_t >( row, 596 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 597 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 598 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 599 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 600 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 601 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 602 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 603 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 604 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 605 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 606 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 607 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 608 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 609 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 610 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 611 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 612 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 613 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 614 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 615 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 616 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 617 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 618 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 619 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 620 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 621 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 622 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 623 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 624 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 625 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 626 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 627 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 628 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 629 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 630 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 631 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 632 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 633 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 634 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 635 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 636 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 637 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 638 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 639 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 640 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 641 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 642 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 643 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 644 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 645 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 646 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 647 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 648 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 649 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 650 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 651 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 652 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 653 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 654 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 655 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 656 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 657 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 658 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 659 ) ); - behavior.push_back( exdData->getField< uint16_t >( row, 660 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 661 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 662 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 663 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 664 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 665 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 666 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 667 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 668 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 669 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 670 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 671 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 672 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 673 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 674 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 675 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 676 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 677 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 678 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 679 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 680 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 681 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 682 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 683 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 684 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 685 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 686 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 687 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 688 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 689 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 690 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 691 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 692 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 693 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 694 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 695 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 696 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 697 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 698 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 699 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 700 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 701 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 702 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 703 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 704 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 705 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 706 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 707 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 708 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 709 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 710 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 711 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 712 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 713 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 714 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 715 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 716 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 717 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 718 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 719 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 720 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 721 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 722 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 723 ) ); - visibleBool.push_back( exdData->getField< bool >( row, 724 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 725 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 726 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 727 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 728 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 729 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 730 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 731 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 732 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 733 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 734 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 735 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 736 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 737 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 738 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 739 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 740 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 741 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 742 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 743 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 744 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 745 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 746 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 747 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 748 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 749 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 750 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 751 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 752 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 753 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 754 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 755 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 756 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 757 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 758 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 759 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 760 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 761 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 762 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 763 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 764 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 765 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 766 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 767 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 768 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 769 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 770 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 771 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 772 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 773 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 774 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 775 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 776 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 777 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 778 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 779 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 780 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 781 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 782 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 783 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 784 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 785 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 786 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 787 ) ); - conditionBool.push_back( exdData->getField< bool >( row, 788 ) ); - itemBool.push_back( exdData->getField< bool >( row, 789 ) ); - itemBool.push_back( exdData->getField< bool >( row, 790 ) ); - itemBool.push_back( exdData->getField< bool >( row, 791 ) ); - itemBool.push_back( exdData->getField< bool >( row, 792 ) ); - itemBool.push_back( exdData->getField< bool >( row, 793 ) ); - itemBool.push_back( exdData->getField< bool >( row, 794 ) ); - itemBool.push_back( exdData->getField< bool >( row, 795 ) ); - itemBool.push_back( exdData->getField< bool >( row, 796 ) ); - itemBool.push_back( exdData->getField< bool >( row, 797 ) ); - itemBool.push_back( exdData->getField< bool >( row, 798 ) ); - itemBool.push_back( exdData->getField< bool >( row, 799 ) ); - itemBool.push_back( exdData->getField< bool >( row, 800 ) ); - itemBool.push_back( exdData->getField< bool >( row, 801 ) ); - itemBool.push_back( exdData->getField< bool >( row, 802 ) ); - itemBool.push_back( exdData->getField< bool >( row, 803 ) ); - itemBool.push_back( exdData->getField< bool >( row, 804 ) ); - itemBool.push_back( exdData->getField< bool >( row, 805 ) ); - itemBool.push_back( exdData->getField< bool >( row, 806 ) ); - itemBool.push_back( exdData->getField< bool >( row, 807 ) ); - itemBool.push_back( exdData->getField< bool >( row, 808 ) ); - itemBool.push_back( exdData->getField< bool >( row, 809 ) ); - itemBool.push_back( exdData->getField< bool >( row, 810 ) ); - itemBool.push_back( exdData->getField< bool >( row, 811 ) ); - itemBool.push_back( exdData->getField< bool >( row, 812 ) ); - itemBool.push_back( exdData->getField< bool >( row, 813 ) ); - itemBool.push_back( exdData->getField< bool >( row, 814 ) ); - itemBool.push_back( exdData->getField< bool >( row, 815 ) ); - itemBool.push_back( exdData->getField< bool >( row, 816 ) ); - itemBool.push_back( exdData->getField< bool >( row, 817 ) ); - itemBool.push_back( exdData->getField< bool >( row, 818 ) ); - itemBool.push_back( exdData->getField< bool >( row, 819 ) ); - itemBool.push_back( exdData->getField< bool >( row, 820 ) ); - itemBool.push_back( exdData->getField< bool >( row, 821 ) ); - itemBool.push_back( exdData->getField< bool >( row, 822 ) ); - itemBool.push_back( exdData->getField< bool >( row, 823 ) ); - itemBool.push_back( exdData->getField< bool >( row, 824 ) ); - itemBool.push_back( exdData->getField< bool >( row, 825 ) ); - itemBool.push_back( exdData->getField< bool >( row, 826 ) ); - itemBool.push_back( exdData->getField< bool >( row, 827 ) ); - itemBool.push_back( exdData->getField< bool >( row, 828 ) ); - itemBool.push_back( exdData->getField< bool >( row, 829 ) ); - itemBool.push_back( exdData->getField< bool >( row, 830 ) ); - itemBool.push_back( exdData->getField< bool >( row, 831 ) ); - itemBool.push_back( exdData->getField< bool >( row, 832 ) ); - itemBool.push_back( exdData->getField< bool >( row, 833 ) ); - itemBool.push_back( exdData->getField< bool >( row, 834 ) ); - itemBool.push_back( exdData->getField< bool >( row, 835 ) ); - itemBool.push_back( exdData->getField< bool >( row, 836 ) ); - itemBool.push_back( exdData->getField< bool >( row, 837 ) ); - itemBool.push_back( exdData->getField< bool >( row, 838 ) ); - itemBool.push_back( exdData->getField< bool >( row, 839 ) ); - itemBool.push_back( exdData->getField< bool >( row, 840 ) ); - itemBool.push_back( exdData->getField< bool >( row, 841 ) ); - itemBool.push_back( exdData->getField< bool >( row, 842 ) ); - itemBool.push_back( exdData->getField< bool >( row, 843 ) ); - itemBool.push_back( exdData->getField< bool >( row, 844 ) ); - itemBool.push_back( exdData->getField< bool >( row, 845 ) ); - itemBool.push_back( exdData->getField< bool >( row, 846 ) ); - itemBool.push_back( exdData->getField< bool >( row, 847 ) ); - itemBool.push_back( exdData->getField< bool >( row, 848 ) ); - itemBool.push_back( exdData->getField< bool >( row, 849 ) ); - itemBool.push_back( exdData->getField< bool >( row, 850 ) ); - itemBool.push_back( exdData->getField< bool >( row, 851 ) ); - itemBool.push_back( exdData->getField< bool >( row, 852 ) ); - announceBool.push_back( exdData->getField< bool >( row, 853 ) ); - announceBool.push_back( exdData->getField< bool >( row, 854 ) ); - announceBool.push_back( exdData->getField< bool >( row, 855 ) ); - announceBool.push_back( exdData->getField< bool >( row, 856 ) ); - announceBool.push_back( exdData->getField< bool >( row, 857 ) ); - announceBool.push_back( exdData->getField< bool >( row, 858 ) ); - announceBool.push_back( exdData->getField< bool >( row, 859 ) ); - announceBool.push_back( exdData->getField< bool >( row, 860 ) ); - announceBool.push_back( exdData->getField< bool >( row, 861 ) ); - announceBool.push_back( exdData->getField< bool >( row, 862 ) ); - announceBool.push_back( exdData->getField< bool >( row, 863 ) ); - announceBool.push_back( exdData->getField< bool >( row, 864 ) ); - announceBool.push_back( exdData->getField< bool >( row, 865 ) ); - announceBool.push_back( exdData->getField< bool >( row, 866 ) ); - announceBool.push_back( exdData->getField< bool >( row, 867 ) ); - announceBool.push_back( exdData->getField< bool >( row, 868 ) ); - announceBool.push_back( exdData->getField< bool >( row, 869 ) ); - announceBool.push_back( exdData->getField< bool >( row, 870 ) ); - announceBool.push_back( exdData->getField< bool >( row, 871 ) ); - announceBool.push_back( exdData->getField< bool >( row, 872 ) ); - announceBool.push_back( exdData->getField< bool >( row, 873 ) ); - announceBool.push_back( exdData->getField< bool >( row, 874 ) ); - announceBool.push_back( exdData->getField< bool >( row, 875 ) ); - announceBool.push_back( exdData->getField< bool >( row, 876 ) ); - announceBool.push_back( exdData->getField< bool >( row, 877 ) ); - announceBool.push_back( exdData->getField< bool >( row, 878 ) ); - announceBool.push_back( exdData->getField< bool >( row, 879 ) ); - announceBool.push_back( exdData->getField< bool >( row, 880 ) ); - announceBool.push_back( exdData->getField< bool >( row, 881 ) ); - announceBool.push_back( exdData->getField< bool >( row, 882 ) ); - announceBool.push_back( exdData->getField< bool >( row, 883 ) ); - announceBool.push_back( exdData->getField< bool >( row, 884 ) ); - announceBool.push_back( exdData->getField< bool >( row, 885 ) ); - announceBool.push_back( exdData->getField< bool >( row, 886 ) ); - announceBool.push_back( exdData->getField< bool >( row, 887 ) ); - announceBool.push_back( exdData->getField< bool >( row, 888 ) ); - announceBool.push_back( exdData->getField< bool >( row, 889 ) ); - announceBool.push_back( exdData->getField< bool >( row, 890 ) ); - announceBool.push_back( exdData->getField< bool >( row, 891 ) ); - announceBool.push_back( exdData->getField< bool >( row, 892 ) ); - announceBool.push_back( exdData->getField< bool >( row, 893 ) ); - announceBool.push_back( exdData->getField< bool >( row, 894 ) ); - announceBool.push_back( exdData->getField< bool >( row, 895 ) ); - announceBool.push_back( exdData->getField< bool >( row, 896 ) ); - announceBool.push_back( exdData->getField< bool >( row, 897 ) ); - announceBool.push_back( exdData->getField< bool >( row, 898 ) ); - announceBool.push_back( exdData->getField< bool >( row, 899 ) ); - announceBool.push_back( exdData->getField< bool >( row, 900 ) ); - announceBool.push_back( exdData->getField< bool >( row, 901 ) ); - announceBool.push_back( exdData->getField< bool >( row, 902 ) ); - announceBool.push_back( exdData->getField< bool >( row, 903 ) ); - announceBool.push_back( exdData->getField< bool >( row, 904 ) ); - announceBool.push_back( exdData->getField< bool >( row, 905 ) ); - announceBool.push_back( exdData->getField< bool >( row, 906 ) ); - announceBool.push_back( exdData->getField< bool >( row, 907 ) ); - announceBool.push_back( exdData->getField< bool >( row, 908 ) ); - announceBool.push_back( exdData->getField< bool >( row, 909 ) ); - announceBool.push_back( exdData->getField< bool >( row, 910 ) ); - announceBool.push_back( exdData->getField< bool >( row, 911 ) ); - announceBool.push_back( exdData->getField< bool >( row, 912 ) ); - announceBool.push_back( exdData->getField< bool >( row, 913 ) ); - announceBool.push_back( exdData->getField< bool >( row, 914 ) ); - announceBool.push_back( exdData->getField< bool >( row, 915 ) ); - announceBool.push_back( exdData->getField< bool >( row, 916 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 917 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 918 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 919 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 920 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 921 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 922 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 923 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 924 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 925 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 926 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 927 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 928 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 929 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 930 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 931 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 932 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 933 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 934 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 935 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 936 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 937 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 938 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 939 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 940 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 941 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 942 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 943 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 944 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 945 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 946 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 947 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 948 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 949 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 950 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 951 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 952 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 953 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 954 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 955 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 956 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 957 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 958 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 959 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 960 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 961 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 962 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 963 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 964 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 965 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 966 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 967 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 968 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 969 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 970 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 971 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 972 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 973 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 974 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 975 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 976 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 977 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 978 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 979 ) ); - behaviorBool.push_back( exdData->getField< bool >( row, 980 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 981 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 982 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 983 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 984 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 985 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 986 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 987 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 988 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 989 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 990 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 991 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 992 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 993 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 994 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 995 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 996 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 997 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 998 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 999 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1000 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1001 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1002 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1003 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1004 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1005 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1006 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1007 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1008 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1009 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1010 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1011 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1012 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1013 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1014 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1015 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1016 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1017 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1018 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1019 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1020 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1021 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1022 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1023 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1024 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1025 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1026 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1027 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1028 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1029 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1030 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1031 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1032 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1033 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1034 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1035 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1036 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1037 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1038 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1039 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1040 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1041 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1042 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1043 ) ); - acceptBool.push_back( exdData->getField< bool >( row, 1044 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1045 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1046 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1047 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1048 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1049 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1050 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1051 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1052 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1053 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1054 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1055 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1056 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1057 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1058 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1059 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1060 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1061 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1062 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1063 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1064 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1065 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1066 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1067 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1068 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1069 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1070 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1071 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1072 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1073 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1074 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1075 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1076 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1077 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1078 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1079 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1080 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1081 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1082 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1083 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1084 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1085 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1086 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1087 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1088 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1089 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1090 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1091 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1092 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1093 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1094 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1095 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1096 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1097 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1098 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1099 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1100 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1101 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1102 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1103 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1104 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1105 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1106 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1107 ) ); - qualifiedBool.push_back( exdData->getField< bool >( row, 1108 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1109 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1110 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1111 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1112 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1113 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1114 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1115 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1116 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1117 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1118 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1119 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1120 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1121 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1122 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1123 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1124 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1125 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1126 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1127 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1128 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1129 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1130 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1131 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1132 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1133 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1134 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1135 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1136 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1137 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1138 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1139 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1140 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1141 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1142 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1143 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1144 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1145 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1146 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1147 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1148 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1149 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1150 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1151 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1152 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1153 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1154 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1155 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1156 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1157 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1158 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1159 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1160 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1161 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1162 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1163 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1164 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1165 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1166 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1167 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1168 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1169 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1170 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1171 ) ); - canTargetBool.push_back( exdData->getField< bool >( row, 1172 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1173 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1174 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1175 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1176 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1177 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1178 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1179 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1180 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1181 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1182 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1183 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1184 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1185 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1186 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1187 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1188 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1189 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1190 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1191 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1192 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1193 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1194 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1195 ) ); - toDoCompleteSeq.push_back( exdData->getField< uint8_t >( row, 1196 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1197 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1198 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1199 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1200 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1201 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1202 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1203 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1204 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1205 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1206 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1207 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1208 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1209 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1210 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1211 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1212 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1213 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1214 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1215 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1216 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1217 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1218 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1219 ) ); - toDoQty.push_back( exdData->getField< uint8_t >( row, 1220 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1221 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1222 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1223 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1224 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1225 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1226 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1227 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1228 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1229 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1230 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1231 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1232 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1233 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1234 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1235 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1236 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1237 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1238 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1239 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1240 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1241 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1242 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1243 ) ); - toDoMainLocation.push_back( exdData->getField< uint32_t >( row, 1244 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1413 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1414 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1415 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1416 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1417 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1418 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1419 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1420 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1421 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1422 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1423 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1424 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1425 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1426 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1427 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1428 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1429 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1430 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1431 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1432 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1433 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1434 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1435 ) ); - countableNum.push_back( exdData->getField< uint8_t >( row, 1436 ) ); - levelMax = exdData->getField< uint8_t >( row, 1437 ); - classJobRequired = exdData->getField< uint8_t >( row, 1438 ); - expFactor = exdData->getField< uint16_t >( row, 1440 ); - gilReward = exdData->getField< uint32_t >( row, 1441 ); - gCSeals = exdData->getField< uint32_t >( row, 1443 ); - itemCatalyst.push_back( exdData->getField< uint8_t >( row, 1444 ) ); - itemCatalyst.push_back( exdData->getField< uint8_t >( row, 1445 ) ); - itemCatalyst.push_back( exdData->getField< uint8_t >( row, 1446 ) ); - itemCountCatalyst.push_back( exdData->getField< uint8_t >( row, 1447 ) ); - itemCountCatalyst.push_back( exdData->getField< uint8_t >( row, 1448 ) ); - itemCountCatalyst.push_back( exdData->getField< uint8_t >( row, 1449 ) ); - itemRewardType = exdData->getField< uint8_t >( row, 1450 ); - itemReward0.push_back( exdData->getField< uint32_t >( row, 1451 ) ); - itemReward0.push_back( exdData->getField< uint32_t >( row, 1452 ) ); - itemReward0.push_back( exdData->getField< uint32_t >( row, 1453 ) ); - itemReward0.push_back( exdData->getField< uint32_t >( row, 1454 ) ); - itemReward0.push_back( exdData->getField< uint32_t >( row, 1455 ) ); - itemReward0.push_back( exdData->getField< uint32_t >( row, 1456 ) ); - itemReward0.push_back( exdData->getField< uint32_t >( row, 1457 ) ); - itemCountReward0.push_back( exdData->getField< uint8_t >( row, 1458 ) ); - itemCountReward0.push_back( exdData->getField< uint8_t >( row, 1459 ) ); - itemCountReward0.push_back( exdData->getField< uint8_t >( row, 1460 ) ); - itemCountReward0.push_back( exdData->getField< uint8_t >( row, 1461 ) ); - itemCountReward0.push_back( exdData->getField< uint8_t >( row, 1462 ) ); - itemCountReward0.push_back( exdData->getField< uint8_t >( row, 1463 ) ); - stainReward0.push_back( exdData->getField< uint8_t >( row, 1465 ) ); - stainReward0.push_back( exdData->getField< uint8_t >( row, 1466 ) ); - stainReward0.push_back( exdData->getField< uint8_t >( row, 1467 ) ); - stainReward0.push_back( exdData->getField< uint8_t >( row, 1468 ) ); - stainReward0.push_back( exdData->getField< uint8_t >( row, 1469 ) ); - stainReward0.push_back( exdData->getField< uint8_t >( row, 1470 ) ); - itemReward1.push_back( exdData->getField< uint32_t >( row, 1472 ) ); - itemReward1.push_back( exdData->getField< uint32_t >( row, 1473 ) ); - itemReward1.push_back( exdData->getField< uint32_t >( row, 1474 ) ); - itemReward1.push_back( exdData->getField< uint32_t >( row, 1475 ) ); - itemReward1.push_back( exdData->getField< uint32_t >( row, 1476 ) ); - itemCountReward1.push_back( exdData->getField< uint8_t >( row, 1477 ) ); - itemCountReward1.push_back( exdData->getField< uint8_t >( row, 1478 ) ); - itemCountReward1.push_back( exdData->getField< uint8_t >( row, 1479 ) ); - itemCountReward1.push_back( exdData->getField< uint8_t >( row, 1480 ) ); - itemCountReward1.push_back( exdData->getField< uint8_t >( row, 1481 ) ); - isHQReward1.push_back( exdData->getField< bool >( row, 1482 ) ); - isHQReward1.push_back( exdData->getField< bool >( row, 1483 ) ); - isHQReward1.push_back( exdData->getField< bool >( row, 1484 ) ); - isHQReward1.push_back( exdData->getField< bool >( row, 1485 ) ); - isHQReward1.push_back( exdData->getField< bool >( row, 1486 ) ); - stainReward1.push_back( exdData->getField< uint8_t >( row, 1487 ) ); - stainReward1.push_back( exdData->getField< uint8_t >( row, 1488 ) ); - stainReward1.push_back( exdData->getField< uint8_t >( row, 1489 ) ); - stainReward1.push_back( exdData->getField< uint8_t >( row, 1490 ) ); - stainReward1.push_back( exdData->getField< uint8_t >( row, 1491 ) ); - emoteReward = exdData->getField< uint8_t >( row, 1492 ); - actionReward = exdData->getField< uint16_t >( row, 1493 ); - generalActionReward.push_back( exdData->getField< uint8_t >( row, 1494 ) ); - generalActionReward.push_back( exdData->getField< uint8_t >( row, 1495 ) ); - systemReward0 = exdData->getField< uint16_t >( row, 1496 ); - otherReward = exdData->getField< uint8_t >( row, 1497 ); - systemReward1 = exdData->getField< uint16_t >( row, 1498 ); - gCTypeReward = exdData->getField< uint16_t >( row, 1499 ); - instanceContentUnlock = exdData->getField< uint32_t >( row, 1500 ); - tomestoneReward = exdData->getField< uint8_t >( row, 1502 ); - tomestoneCountReward = exdData->getField< uint8_t >( row, 1503 ); - reputationReward = exdData->getField< uint8_t >( row, 1504 ); - placeName = exdData->getField< uint16_t >( row, 1505 ); - journalGenre = exdData->getField< uint8_t >( row, 1506 ); - icon = exdData->getField< uint32_t >( row, 1508 ); - iconSpecial = exdData->getField< uint32_t >( row, 1509 ); - introduction = exdData->getField< bool >( row, 1510 ); - hideOfferIcon = exdData->getField< bool >( row, 1511 ); - eventIconType = exdData->getField< uint8_t >( row, 1512 ); - sortKey = exdData->getField< uint16_t >( row, 1514 ); -} - -Sapphire::Data::QuestAcceptAdditionCondition::QuestAcceptAdditionCondition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuestAcceptAdditionConditionDat.get_row( row_id ); - requirement0 = exdData->getField< uint32_t >( row, 0 ); - requirement1 = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::QuestBattle::QuestBattle( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuestBattleDat.get_row( row_id ); - quest = exdData->getField< int32_t >( row, 0 ); - questBattleScene = exdData->getField< uint8_t >( row, 1 ); - timeLimit = exdData->getField< uint16_t >( row, 2 ); - levelSync = exdData->getField< uint16_t >( row, 3 ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 4 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 5 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 6 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 7 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 8 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 9 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 10 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 11 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 12 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 13 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 14 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 15 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 16 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 17 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 18 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 19 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 20 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 21 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 22 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 23 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 24 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 25 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 26 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 27 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 28 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 29 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 30 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 31 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 32 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 33 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 34 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 35 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 36 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 37 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 38 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 39 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 40 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 41 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 42 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 43 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 44 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 45 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 46 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 47 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 48 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 49 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 50 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 51 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 52 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 53 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 54 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 55 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 56 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 57 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 58 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 59 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 60 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 61 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 62 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 63 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 64 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 65 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 66 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 67 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 68 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 69 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 70 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 71 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 72 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 73 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 74 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 75 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 76 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 77 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 78 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 79 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 80 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 81 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 82 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 83 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 84 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 85 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 86 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 87 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 88 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 89 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 90 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 91 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 92 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 93 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 94 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 95 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 96 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 97 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 98 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 99 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 100 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 101 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 102 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 103 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 104 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 105 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 106 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 107 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 108 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 109 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 110 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 111 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 112 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 113 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 114 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 115 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 116 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 117 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 118 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 119 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 120 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 121 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 122 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 123 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 124 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 125 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 126 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 127 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 128 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 129 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 130 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 131 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 132 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 133 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 134 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 135 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 136 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 137 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 138 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 139 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 140 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 141 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 142 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 143 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 144 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 145 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 146 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 147 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 148 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 149 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 150 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 151 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 152 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 153 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 154 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 155 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 156 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 157 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 158 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 159 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 160 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 161 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 162 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 163 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 164 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 165 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 166 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 167 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 168 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 169 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 170 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 171 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 172 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 173 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 174 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 175 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 176 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 177 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 178 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 179 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 180 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 181 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 182 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 183 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 184 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 185 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 186 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 187 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 188 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 189 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 190 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 191 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 192 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 193 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 194 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 195 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 196 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 197 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 198 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 199 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 200 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 201 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 202 ) ); - scriptInstruction.push_back( exdData->getField< std::string >( row, 203 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 204 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 205 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 206 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 207 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 208 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 209 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 210 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 211 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 212 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 213 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 214 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 215 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 216 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 217 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 218 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 219 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 220 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 221 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 222 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 223 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 224 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 225 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 226 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 227 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 228 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 229 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 230 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 231 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 232 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 233 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 234 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 235 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 236 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 237 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 238 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 239 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 240 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 241 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 242 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 243 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 244 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 245 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 246 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 247 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 248 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 249 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 250 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 251 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 252 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 253 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 254 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 255 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 256 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 257 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 258 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 259 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 260 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 261 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 262 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 263 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 264 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 265 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 266 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 267 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 268 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 269 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 270 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 271 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 272 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 273 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 274 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 275 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 276 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 277 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 278 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 279 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 280 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 281 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 282 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 283 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 284 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 285 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 286 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 287 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 288 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 289 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 290 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 291 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 292 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 293 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 294 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 295 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 296 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 297 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 298 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 299 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 300 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 301 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 302 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 303 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 304 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 305 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 306 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 307 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 308 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 309 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 310 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 311 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 312 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 313 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 314 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 315 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 316 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 317 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 318 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 319 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 320 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 321 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 322 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 323 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 324 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 325 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 326 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 327 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 328 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 329 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 330 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 331 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 332 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 333 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 334 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 335 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 336 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 337 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 338 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 339 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 340 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 341 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 342 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 343 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 344 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 345 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 346 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 347 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 348 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 349 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 350 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 351 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 352 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 353 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 354 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 355 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 356 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 357 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 358 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 359 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 360 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 361 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 362 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 363 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 364 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 365 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 366 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 367 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 368 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 369 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 370 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 371 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 372 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 373 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 374 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 375 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 376 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 377 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 378 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 379 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 380 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 381 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 382 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 383 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 384 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 385 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 386 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 387 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 388 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 389 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 390 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 391 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 392 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 393 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 394 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 395 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 396 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 397 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 398 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 399 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 400 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 401 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 402 ) ); - scriptValue.push_back( exdData->getField< uint32_t >( row, 403 ) ); -} - -Sapphire::Data::QuestChapter::QuestChapter( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuestChapterDat.get_row( row_id ); - quest = exdData->getField< uint32_t >( row, 0 ); - redo = exdData->getField< uint16_t >( row, 1 ); -} - -Sapphire::Data::QuestClassJobReward::QuestClassJobReward( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuestClassJobRewardDat.get_row( row_id, subRow ); - classJobCategory = exdData->getField< uint8_t >( row, 0 ); - rewardItem.push_back( exdData->getField< uint32_t >( row, 1 ) ); - rewardItem.push_back( exdData->getField< uint32_t >( row, 2 ) ); - rewardItem.push_back( exdData->getField< uint32_t >( row, 3 ) ); - rewardItem.push_back( exdData->getField< uint32_t >( row, 4 ) ); - rewardAmount.push_back( exdData->getField< uint8_t >( row, 5 ) ); - rewardAmount.push_back( exdData->getField< uint8_t >( row, 6 ) ); - rewardAmount.push_back( exdData->getField< uint8_t >( row, 7 ) ); - rewardAmount.push_back( exdData->getField< uint8_t >( row, 8 ) ); - requiredItem.push_back( exdData->getField< uint32_t >( row, 9 ) ); - requiredItem.push_back( exdData->getField< uint32_t >( row, 10 ) ); - requiredItem.push_back( exdData->getField< uint32_t >( row, 11 ) ); - requiredItem.push_back( exdData->getField< uint32_t >( row, 12 ) ); - requiredAmount.push_back( exdData->getField< uint8_t >( row, 13 ) ); - requiredAmount.push_back( exdData->getField< uint8_t >( row, 14 ) ); - requiredAmount.push_back( exdData->getField< uint8_t >( row, 15 ) ); - requiredAmount.push_back( exdData->getField< uint8_t >( row, 16 ) ); -} - -Sapphire::Data::QuestClassJobSupply::QuestClassJobSupply( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuestClassJobSupplyDat.get_row( row_id, subRow ); - classJobCategory = exdData->getField< uint8_t >( row, 0 ); - eNpcResident = exdData->getField< uint32_t >( row, 2 ); - item = exdData->getField< uint32_t >( row, 3 ); - amountRequired = exdData->getField< uint8_t >( row, 4 ); - itemHQ = exdData->getField< bool >( row, 5 ); -} - -Sapphire::Data::QuestDerivedClass::QuestDerivedClass( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuestDerivedClassDat.get_row( row_id ); - classJob = exdData->getField< uint8_t >( row, 0 ); -} - -Sapphire::Data::QuestEffect::QuestEffect( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuestEffectDat.get_row( row_id ); -} - -Sapphire::Data::QuestEffectDefine::QuestEffectDefine( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuestEffectDefineDat.get_row( row_id, subRow ); - effect = exdData->getField< uint16_t >( row, 0 ); -} - -Sapphire::Data::QuestRedo::QuestRedo( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuestRedoDat.get_row( row_id ); - finalQuest = exdData->getField< uint32_t >( row, 0 ); - chapter = exdData->getField< uint16_t >( row, 2 ); - quest.push_back( exdData->getField< uint32_t >( row, 3 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 4 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 5 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 6 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 7 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 8 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 9 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 10 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 11 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 12 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 13 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 14 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 15 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 16 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 17 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 18 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 19 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 20 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 21 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 22 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 23 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 24 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 25 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 26 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 27 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 28 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 29 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 30 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 31 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 32 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 33 ) ); - quest.push_back( exdData->getField< uint32_t >( row, 34 ) ); -} - -Sapphire::Data::QuestRedoChapterUI::QuestRedoChapterUI( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuestRedoChapterUIDat.get_row( row_id ); - quest = exdData->getField< uint32_t >( row, 0 ); - uITab = exdData->getField< uint8_t >( row, 1 ); - category = exdData->getField< uint8_t >( row, 2 ); - questRedoUISmall = exdData->getField< uint32_t >( row, 4 ); - questRedoUILarge = exdData->getField< uint32_t >( row, 5 ); - questRedoUIWide = exdData->getField< uint32_t >( row, 6 ); - chapterName = exdData->getField< std::string >( row, 7 ); - chapterPart = exdData->getField< std::string >( row, 8 ); - transient = exdData->getField< std::string >( row, 9 ); -} - -Sapphire::Data::QuestRedoChapterUICategory::QuestRedoChapterUICategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuestRedoChapterUICategoryDat.get_row( row_id ); - expac = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::QuestRedoChapterUITab::QuestRedoChapterUITab( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuestRedoChapterUITabDat.get_row( row_id ); - icon1 = exdData->getField< uint32_t >( row, 1 ); - icon2 = exdData->getField< uint32_t >( row, 2 ); - text = exdData->getField< std::string >( row, 3 ); -} - -Sapphire::Data::QuestRedoIncompChapter::QuestRedoIncompChapter( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuestRedoIncompChapterDat.get_row( row_id, subRow ); - chapter = exdData->getField< uint16_t >( row, 0 ); -} - -Sapphire::Data::QuestRepeatFlag::QuestRepeatFlag( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuestRepeatFlagDat.get_row( row_id ); - quest = exdData->getField< uint32_t >( row, 0 ); -} - -Sapphire::Data::QuestRewardOther::QuestRewardOther( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuestRewardOtherDat.get_row( row_id ); - icon = exdData->getField< uint32_t >( row, 0 ); - name = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::QuickChat::QuickChat( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuickChatDat.get_row( row_id ); - nameAction = exdData->getField< std::string >( row, 0 ); - icon = exdData->getField< int32_t >( row, 1 ); - addon = exdData->getField< int32_t >( row, 2 ); - quickChatTransient = exdData->getField< int8_t >( row, 3 ); -} - -Sapphire::Data::QuickChatTransient::QuickChatTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_QuickChatTransientDat.get_row( row_id ); - textOutput = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::Race::Race( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RaceDat.get_row( row_id ); - masculine = exdData->getField< std::string >( row, 0 ); - feminine = exdData->getField< std::string >( row, 1 ); - rSEMBody = exdData->getField< int32_t >( row, 2 ); - rSEMHands = exdData->getField< int32_t >( row, 3 ); - rSEMLegs = exdData->getField< int32_t >( row, 4 ); - rSEMFeet = exdData->getField< int32_t >( row, 5 ); - rSEFBody = exdData->getField< int32_t >( row, 6 ); - rSEFHands = exdData->getField< int32_t >( row, 7 ); - rSEFLegs = exdData->getField< int32_t >( row, 8 ); - rSEFFeet = exdData->getField< int32_t >( row, 9 ); - exPac = exdData->getField< uint8_t >( row, 11 ); -} - -Sapphire::Data::RacingChocoboItem::RacingChocoboItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RacingChocoboItemDat.get_row( row_id ); - item = exdData->getField< int32_t >( row, 0 ); - category = exdData->getField< uint8_t >( row, 1 ); - param.push_back( exdData->getField< uint8_t >( row, 2 ) ); - param.push_back( exdData->getField< uint8_t >( row, 3 ) ); -} - -Sapphire::Data::RacingChocoboName::RacingChocoboName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RacingChocoboNameDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::RacingChocoboNameCategory::RacingChocoboNameCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RacingChocoboNameCategoryDat.get_row( row_id ); - sortKey = exdData->getField< uint8_t >( row, 0 ); - name = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::RacingChocoboNameInfo::RacingChocoboNameInfo( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RacingChocoboNameInfoDat.get_row( row_id ); - racingChocoboNameCategory = exdData->getField< uint8_t >( row, 0 ); - name.push_back( exdData->getField< uint16_t >( row, 5 ) ); - name.push_back( exdData->getField< uint16_t >( row, 6 ) ); - name.push_back( exdData->getField< uint16_t >( row, 7 ) ); -} - -Sapphire::Data::RacingChocoboParam::RacingChocoboParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RacingChocoboParamDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::RecastNavimesh::RecastNavimesh( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RecastNavimeshDat.get_row( row_id ); - tileSize = exdData->getField< float >( row, 1 ); - cellSize = exdData->getField< float >( row, 2 ); - cellHeight = exdData->getField< float >( row, 3 ); - agentHeight = exdData->getField< float >( row, 4 ); - agentRadius = exdData->getField< float >( row, 5 ); - agentMaxClimb = exdData->getField< float >( row, 6 ); - agentMaxSlope = exdData->getField< float >( row, 7 ); - regionMinSize = exdData->getField< float >( row, 9 ); - regionMergedSize = exdData->getField< float >( row, 10 ); - maxEdgeLength = exdData->getField< float >( row, 12 ); - maxEdgeError = exdData->getField< float >( row, 13 ); - vertsPerPoly = exdData->getField< float >( row, 14 ); - detailMeshSampleDistance = exdData->getField< float >( row, 15 ); - detailMeshMaxSampleError = exdData->getField< float >( row, 16 ); -} - -Sapphire::Data::Recipe::Recipe( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RecipeDat.get_row( row_id ); - number = exdData->getField< int32_t >( row, 0 ); - craftType = exdData->getField< int32_t >( row, 1 ); - recipeLevelTable = exdData->getField< uint16_t >( row, 2 ); - itemResult = exdData->getField< int32_t >( row, 3 ); - amountResult = exdData->getField< uint8_t >( row, 4 ); - isSecondary = exdData->getField< bool >( row, 26 ); - materialQualityFactor = exdData->getField< uint8_t >( row, 27 ); - difficultyFactor = exdData->getField< uint16_t >( row, 28 ); - qualityFactor = exdData->getField< uint16_t >( row, 29 ); - durabilityFactor = exdData->getField< uint16_t >( row, 30 ); - requiredCraftsmanship = exdData->getField< uint16_t >( row, 32 ); - requiredControl = exdData->getField< uint16_t >( row, 33 ); - quickSynthCraftsmanship = exdData->getField< uint16_t >( row, 34 ); - quickSynthControl = exdData->getField< uint16_t >( row, 35 ); - secretRecipeBook = exdData->getField< uint16_t >( row, 36 ); - canQuickSynth = exdData->getField< bool >( row, 38 ); - canHq = exdData->getField< bool >( row, 39 ); - expRewarded = exdData->getField< bool >( row, 40 ); - statusRequired = exdData->getField< int32_t >( row, 41 ); - itemRequired = exdData->getField< int32_t >( row, 42 ); - isSpecializationRequired = exdData->getField< bool >( row, 43 ); - isExpert = exdData->getField< bool >( row, 44 ); - patchNumber = exdData->getField< uint16_t >( row, 45 ); -} - -Sapphire::Data::RecipeLevelTable::RecipeLevelTable( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RecipeLevelTableDat.get_row( row_id ); - classJobLevel = exdData->getField< uint8_t >( row, 0 ); - stars = exdData->getField< uint8_t >( row, 1 ); - suggestedCraftsmanship = exdData->getField< uint16_t >( row, 2 ); - suggestedControl = exdData->getField< uint16_t >( row, 3 ); - difficulty = exdData->getField< uint16_t >( row, 4 ); - quality = exdData->getField< uint32_t >( row, 5 ); - durability = exdData->getField< uint16_t >( row, 6 ); - conditionsFlag = exdData->getField< uint16_t >( row, 7 ); -} - -Sapphire::Data::RecipeLookup::RecipeLookup( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RecipeLookupDat.get_row( row_id ); - cRP = exdData->getField< uint16_t >( row, 0 ); - bSM = exdData->getField< uint16_t >( row, 1 ); - aRM = exdData->getField< uint16_t >( row, 2 ); - gSM = exdData->getField< uint16_t >( row, 3 ); - lTW = exdData->getField< uint16_t >( row, 4 ); - wVR = exdData->getField< uint16_t >( row, 5 ); - aLC = exdData->getField< uint16_t >( row, 6 ); - cUL = exdData->getField< uint16_t >( row, 7 ); -} - -Sapphire::Data::RecipeNotebookList::RecipeNotebookList( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RecipeNotebookListDat.get_row( row_id ); - count = exdData->getField< uint8_t >( row, 0 ); - recipe.push_back( exdData->getField< int32_t >( row, 1 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 2 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 3 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 4 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 5 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 6 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 7 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 8 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 9 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 10 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 11 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 12 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 13 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 14 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 15 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 16 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 17 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 18 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 19 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 20 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 21 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 22 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 23 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 24 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 25 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 26 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 27 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 28 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 29 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 30 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 31 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 32 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 33 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 34 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 35 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 36 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 37 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 38 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 39 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 40 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 41 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 42 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 43 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 44 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 45 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 46 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 47 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 48 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 49 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 50 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 51 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 52 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 53 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 54 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 55 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 56 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 57 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 58 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 59 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 60 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 61 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 62 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 63 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 64 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 65 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 66 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 67 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 68 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 69 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 70 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 71 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 72 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 73 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 74 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 75 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 76 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 77 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 78 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 79 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 80 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 81 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 82 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 83 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 84 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 85 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 86 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 87 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 88 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 89 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 90 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 91 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 92 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 93 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 94 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 95 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 96 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 97 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 98 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 99 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 100 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 101 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 102 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 103 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 104 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 105 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 106 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 107 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 108 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 109 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 110 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 111 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 112 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 113 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 114 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 115 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 116 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 117 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 118 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 119 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 120 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 121 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 122 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 123 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 124 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 125 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 126 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 127 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 128 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 129 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 130 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 131 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 132 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 133 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 134 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 135 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 136 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 137 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 138 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 139 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 140 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 141 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 142 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 143 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 144 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 145 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 146 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 147 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 148 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 149 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 150 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 151 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 152 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 153 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 154 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 155 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 156 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 157 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 158 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 159 ) ); - recipe.push_back( exdData->getField< int32_t >( row, 160 ) ); -} - -Sapphire::Data::RecommendContents::RecommendContents( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RecommendContentsDat.get_row( row_id ); - level = exdData->getField< int32_t >( row, 0 ); - classJob = exdData->getField< uint8_t >( row, 1 ); - minLevel = exdData->getField< uint8_t >( row, 2 ); - maxLevel = exdData->getField< uint8_t >( row, 3 ); -} - -Sapphire::Data::Relic::Relic( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RelicDat.get_row( row_id ); - itemAtma = exdData->getField< uint32_t >( row, 0 ); - itemAnimus = exdData->getField< uint32_t >( row, 1 ); - icon = exdData->getField< int32_t >( row, 2 ); - materia0 = exdData->getField< uint16_t >( row, 3 ); - noteMain0 = exdData->getField< uint8_t >( row, 4 ); - noteSub0 = exdData->getField< uint8_t >( row, 5 ); - noteSelection10 = exdData->getField< uint8_t >( row, 6 ); - materia1 = exdData->getField< uint16_t >( row, 7 ); - noteMain1 = exdData->getField< uint8_t >( row, 8 ); - noteSub1 = exdData->getField< uint8_t >( row, 9 ); - noteSelection1 = exdData->getField< uint8_t >( row, 10 ); - materia2 = exdData->getField< uint16_t >( row, 11 ); - noteMain2 = exdData->getField< uint8_t >( row, 12 ); - noteSub2 = exdData->getField< uint8_t >( row, 13 ); - materia3 = exdData->getField< uint16_t >( row, 14 ); - noteSelection3 = exdData->getField< uint8_t >( row, 15 ); -} - -Sapphire::Data::Relic3::Relic3( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_Relic3Dat.get_row( row_id ); - itemAnimus = exdData->getField< uint32_t >( row, 0 ); - itemScroll = exdData->getField< uint32_t >( row, 1 ); - materiaLimit = exdData->getField< uint8_t >( row, 2 ); - itemNovus = exdData->getField< uint32_t >( row, 3 ); - icon = exdData->getField< int32_t >( row, 4 ); -} - -Sapphire::Data::RelicItem::RelicItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RelicItemDat.get_row( row_id ); - gladiatorItem = exdData->getField< uint32_t >( row, 1 ); - pugilistItem = exdData->getField< uint32_t >( row, 2 ); - marauderItem = exdData->getField< uint32_t >( row, 3 ); - lancerItem = exdData->getField< uint32_t >( row, 4 ); - archerItem = exdData->getField< uint32_t >( row, 5 ); - conjurerItem = exdData->getField< uint32_t >( row, 6 ); - thaumaturgeItem = exdData->getField< uint32_t >( row, 7 ); - arcanistSMNItem = exdData->getField< uint32_t >( row, 8 ); - arcanistSCHItem = exdData->getField< uint32_t >( row, 9 ); - shieldItem = exdData->getField< uint32_t >( row, 10 ); - rogueItem = exdData->getField< uint32_t >( row, 11 ); -} - -Sapphire::Data::RelicNote::RelicNote( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RelicNoteDat.get_row( row_id ); - eventItem = exdData->getField< uint32_t >( row, 0 ); - monsterNoteTargetNM.push_back( exdData->getField< uint16_t >( row, 21 ) ); - monsterNoteTargetNM.push_back( exdData->getField< uint16_t >( row, 22 ) ); - monsterNoteTargetNM.push_back( exdData->getField< uint16_t >( row, 23 ) ); - leve.push_back( exdData->getField< uint16_t >( row, 31 ) ); - leve.push_back( exdData->getField< uint16_t >( row, 32 ) ); - leve.push_back( exdData->getField< uint16_t >( row, 33 ) ); -} - -Sapphire::Data::RelicNoteCategory::RelicNoteCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RelicNoteCategoryDat.get_row( row_id ); - text = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::Resident::Resident( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ResidentDat.get_row( row_id, subRow ); - model = exdData->getField< uint64_t >( row, 1 ); - npcYell = exdData->getField< int32_t >( row, 2 ); - residentMotionType = exdData->getField< uint8_t >( row, 4 ); -} - -Sapphire::Data::ResistanceWeaponAdjust::ResistanceWeaponAdjust( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ResistanceWeaponAdjustDat.get_row( row_id ); - maxTotalStats = exdData->getField< uint16_t >( row, 0 ); - maxEachStat = exdData->getField< uint16_t >( row, 1 ); - baseParam.push_back( exdData->getField< uint8_t >( row, 2 ) ); - baseParam.push_back( exdData->getField< uint8_t >( row, 3 ) ); - baseParam.push_back( exdData->getField< uint8_t >( row, 4 ) ); - baseParam.push_back( exdData->getField< uint8_t >( row, 5 ) ); - image = exdData->getField< uint32_t >( row, 6 ); -} - -Sapphire::Data::RetainerFortuneRewardRange::RetainerFortuneRewardRange( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RetainerFortuneRewardRangeDat.get_row( row_id ); - percentOfLevel = exdData->getField< uint16_t >( row, 0 ); -} - -Sapphire::Data::RetainerTask::RetainerTask( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RetainerTaskDat.get_row( row_id ); - isRandom = exdData->getField< bool >( row, 0 ); - classJobCategory = exdData->getField< uint8_t >( row, 1 ); - retainerLevel = exdData->getField< uint8_t >( row, 2 ); - retainerTaskParameter = exdData->getField< uint16_t >( row, 4 ); - ventureCost = exdData->getField< uint16_t >( row, 5 ); - maxTimemin = exdData->getField< uint16_t >( row, 6 ); - experience = exdData->getField< int32_t >( row, 7 ); - requiredItemLevel = exdData->getField< uint16_t >( row, 8 ); - conditionParam0 = exdData->getField< uint8_t >( row, 9 ); - conditionParam1 = exdData->getField< uint8_t >( row, 10 ); - requiredGathering = exdData->getField< uint16_t >( row, 11 ); - task = exdData->getField< uint16_t >( row, 13 ); -} - -Sapphire::Data::RetainerTaskLvRange::RetainerTaskLvRange( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RetainerTaskLvRangeDat.get_row( row_id ); - min = exdData->getField< uint8_t >( row, 0 ); - max = exdData->getField< uint8_t >( row, 1 ); -} - -Sapphire::Data::RetainerTaskNormal::RetainerTaskNormal( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RetainerTaskNormalDat.get_row( row_id ); - item = exdData->getField< int32_t >( row, 0 ); - quantity0 = exdData->getField< uint8_t >( row, 1 ); - quantity1 = exdData->getField< uint8_t >( row, 2 ); - quantity2 = exdData->getField< uint8_t >( row, 3 ); - gatheringLog = exdData->getField< int16_t >( row, 4 ); - fishingLog = exdData->getField< int16_t >( row, 5 ); -} - -Sapphire::Data::RetainerTaskParameter::RetainerTaskParameter( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RetainerTaskParameterDat.get_row( row_id ); - itemLevelDoW.push_back( exdData->getField< int16_t >( row, 0 ) ); - itemLevelDoW.push_back( exdData->getField< int16_t >( row, 1 ) ); - gatheringDoL.push_back( exdData->getField< int16_t >( row, 2 ) ); - gatheringDoL.push_back( exdData->getField< int16_t >( row, 3 ) ); - gatheringFSH.push_back( exdData->getField< int16_t >( row, 4 ) ); - gatheringFSH.push_back( exdData->getField< int16_t >( row, 5 ) ); -} - -Sapphire::Data::RetainerTaskRandom::RetainerTaskRandom( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RetainerTaskRandomDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - requirement = exdData->getField< int16_t >( row, 1 ); -} - -Sapphire::Data::RideShooting::RideShooting( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RideShootingDat.get_row( row_id ); - gFateRideShooting = exdData->getField< uint16_t >( row, 0 ); - startText = exdData->getField< uint16_t >( row, 5 ); - popRange.push_back( exdData->getField< uint32_t >( row, 14 ) ); - popRange.push_back( exdData->getField< uint32_t >( row, 15 ) ); - popRange.push_back( exdData->getField< uint32_t >( row, 16 ) ); - popRange.push_back( exdData->getField< uint32_t >( row, 17 ) ); - popRange.push_back( exdData->getField< uint32_t >( row, 18 ) ); - popRange.push_back( exdData->getField< uint32_t >( row, 19 ) ); - popRange.push_back( exdData->getField< uint32_t >( row, 20 ) ); - popRange.push_back( exdData->getField< uint32_t >( row, 21 ) ); - eNpc.push_back( exdData->getField< uint32_t >( row, 22 ) ); - eNpc.push_back( exdData->getField< uint32_t >( row, 23 ) ); - eNpc.push_back( exdData->getField< uint32_t >( row, 24 ) ); - eNpc.push_back( exdData->getField< uint32_t >( row, 25 ) ); - eNpc.push_back( exdData->getField< uint32_t >( row, 26 ) ); - eNpc.push_back( exdData->getField< uint32_t >( row, 27 ) ); - eNpc.push_back( exdData->getField< uint32_t >( row, 28 ) ); - eNpc.push_back( exdData->getField< uint32_t >( row, 29 ) ); - eNpcScale.push_back( exdData->getField< uint8_t >( row, 30 ) ); - eNpcScale.push_back( exdData->getField< uint8_t >( row, 31 ) ); - eNpcScale.push_back( exdData->getField< uint8_t >( row, 32 ) ); - eNpcScale.push_back( exdData->getField< uint8_t >( row, 33 ) ); - eNpcScale.push_back( exdData->getField< uint8_t >( row, 34 ) ); - eNpcScale.push_back( exdData->getField< uint8_t >( row, 35 ) ); - eNpcScale.push_back( exdData->getField< uint8_t >( row, 36 ) ); - eNpcScale.push_back( exdData->getField< uint8_t >( row, 37 ) ); -} - -Sapphire::Data::RideShootingTargetType::RideShootingTargetType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RideShootingTargetTypeDat.get_row( row_id ); - eObj = exdData->getField< uint32_t >( row, 0 ); - score = exdData->getField< int16_t >( row, 1 ); -} - -Sapphire::Data::RideShootingTextData::RideShootingTextData( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RideShootingTextDataDat.get_row( row_id ); - string = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::RPParameter::RPParameter( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_RPParameterDat.get_row( row_id ); - bNpcName = exdData->getField< uint16_t >( row, 0 ); - classJob = exdData->getField< uint8_t >( row, 1 ); -} - -Sapphire::Data::SatisfactionArbitration::SatisfactionArbitration( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SatisfactionArbitrationDat.get_row( row_id, subRow ); - quest = exdData->getField< uint32_t >( row, 2 ); -} - -Sapphire::Data::SatisfactionNpc::SatisfactionNpc( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SatisfactionNpcDat.get_row( row_id ); - npc = exdData->getField< int32_t >( row, 0 ); - questRequired = exdData->getField< int32_t >( row, 1 ); - levelUnlock = exdData->getField< uint8_t >( row, 2 ); - deliveriesPerWeek = exdData->getField< uint8_t >( row, 3 ); - supplyIndex.push_back( exdData->getField< int32_t >( row, 4 ) ); - supplyIndex.push_back( exdData->getField< int32_t >( row, 5 ) ); - supplyIndex.push_back( exdData->getField< int32_t >( row, 6 ) ); - supplyIndex.push_back( exdData->getField< int32_t >( row, 7 ) ); - supplyIndex.push_back( exdData->getField< int32_t >( row, 8 ) ); - supplyIndex.push_back( exdData->getField< int32_t >( row, 9 ) ); - satisfactionRequired.push_back( exdData->getField< uint16_t >( row, 10 ) ); - satisfactionRequired.push_back( exdData->getField< uint16_t >( row, 11 ) ); - satisfactionRequired.push_back( exdData->getField< uint16_t >( row, 12 ) ); - satisfactionRequired.push_back( exdData->getField< uint16_t >( row, 13 ) ); - satisfactionRequired.push_back( exdData->getField< uint16_t >( row, 14 ) ); - satisfactionRequired.push_back( exdData->getField< uint16_t >( row, 15 ) ); - icon = exdData->getField< int32_t >( row, 70 ); -} - -Sapphire::Data::SatisfactionSupply::SatisfactionSupply( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SatisfactionSupplyDat.get_row( row_id, subRow ); - slot = exdData->getField< uint8_t >( row, 0 ); - probability = exdData->getField< uint8_t >( row, 1 ); - item = exdData->getField< int32_t >( row, 2 ); - collectabilityLow = exdData->getField< uint16_t >( row, 3 ); - collectabilityMid = exdData->getField< uint16_t >( row, 4 ); - collectabilityHigh = exdData->getField< uint16_t >( row, 5 ); - reward = exdData->getField< uint16_t >( row, 6 ); -} - -Sapphire::Data::SatisfactionSupplyReward::SatisfactionSupplyReward( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SatisfactionSupplyRewardDat.get_row( row_id ); - satisfactionLow = exdData->getField< uint16_t >( row, 10 ); - satisfactionMid = exdData->getField< uint16_t >( row, 11 ); - satisfactionHigh = exdData->getField< uint16_t >( row, 12 ); - gilLow = exdData->getField< uint16_t >( row, 13 ); - gilMid = exdData->getField< uint16_t >( row, 14 ); - gilHigh = exdData->getField< uint16_t >( row, 15 ); -} - -Sapphire::Data::ScenarioTree::ScenarioTree( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ScenarioTreeDat.get_row( row_id ); - type = exdData->getField< uint8_t >( row, 0 ); - image = exdData->getField< uint16_t >( row, 1 ); -} - -Sapphire::Data::ScenarioTreeTips::ScenarioTreeTips( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ScenarioTreeTipsDat.get_row( row_id ); - tips1 = exdData->getField< uint32_t >( row, 1 ); - tips2 = exdData->getField< uint32_t >( row, 3 ); -} - -Sapphire::Data::ScenarioTreeTipsClassQuest::ScenarioTreeTipsClassQuest( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ScenarioTreeTipsClassQuestDat.get_row( row_id, subRow ); - quest = exdData->getField< uint32_t >( row, 0 ); - requiredLevel = exdData->getField< uint16_t >( row, 1 ); - requiredExpansion = exdData->getField< uint8_t >( row, 2 ); - requiredQuest = exdData->getField< uint32_t >( row, 3 ); -} - -Sapphire::Data::ScenarioType::ScenarioType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ScenarioTypeDat.get_row( row_id ); - type = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::ScreenImage::ScreenImage( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ScreenImageDat.get_row( row_id ); - image = exdData->getField< uint32_t >( row, 0 ); - jingle = exdData->getField< int16_t >( row, 1 ); - type = exdData->getField< int8_t >( row, 2 ); - lang = exdData->getField< bool >( row, 3 ); -} - -Sapphire::Data::SecretRecipeBook::SecretRecipeBook( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SecretRecipeBookDat.get_row( row_id ); - item = exdData->getField< int32_t >( row, 0 ); - name = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::SkyIsland2Mission::SkyIsland2Mission( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SkyIsland2MissionDat.get_row( row_id ); - item1 = exdData->getField< uint32_t >( row, 0 ); - item2 = exdData->getField< uint32_t >( row, 1 ); - placeName = exdData->getField< uint16_t >( row, 2 ); - objective1 = exdData->getField< uint16_t >( row, 4 ); - popRange0 = exdData->getField< uint32_t >( row, 5 ); - requiredAmount1 = exdData->getField< uint8_t >( row, 6 ); - objective2 = exdData->getField< uint16_t >( row, 9 ); - popRange1 = exdData->getField< uint32_t >( row, 10 ); - requiredAmount2 = exdData->getField< uint8_t >( row, 11 ); - objective3 = exdData->getField< uint16_t >( row, 14 ); - popRange2 = exdData->getField< uint32_t >( row, 15 ); - image = exdData->getField< uint32_t >( row, 20 ); -} - -Sapphire::Data::SkyIsland2MissionDetail::SkyIsland2MissionDetail( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SkyIsland2MissionDetailDat.get_row( row_id ); - type = exdData->getField< uint8_t >( row, 0 ); - range = exdData->getField< uint8_t >( row, 2 ); - eObj = exdData->getField< uint32_t >( row, 4 ); - objective = exdData->getField< std::string >( row, 7 ); -} - -Sapphire::Data::SkyIsland2MissionType::SkyIsland2MissionType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SkyIsland2MissionTypeDat.get_row( row_id ); - type = exdData->getField< bool >( row, 0 ); -} - -Sapphire::Data::SkyIsland2RangeType::SkyIsland2RangeType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SkyIsland2RangeTypeDat.get_row( row_id ); - type = exdData->getField< uint8_t >( row, 0 ); -} - -Sapphire::Data::SnipeTalk::SnipeTalk( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SnipeTalkDat.get_row( row_id ); - name = exdData->getField< uint16_t >( row, 2 ); - text = exdData->getField< std::string >( row, 3 ); -} - -Sapphire::Data::SnipeTalkName::SnipeTalkName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SnipeTalkNameDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::SpearfishingItem::SpearfishingItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SpearfishingItemDat.get_row( row_id ); - description = exdData->getField< std::string >( row, 0 ); - item = exdData->getField< int32_t >( row, 1 ); - gatheringItemLevel = exdData->getField< uint16_t >( row, 2 ); - fishingRecordType = exdData->getField< uint8_t >( row, 3 ); - territoryType = exdData->getField< uint16_t >( row, 4 ); - isVisible = exdData->getField< bool >( row, 5 ); -} - -Sapphire::Data::SpearfishingNotebook::SpearfishingNotebook( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SpearfishingNotebookDat.get_row( row_id ); - gatheringLevel = exdData->getField< uint8_t >( row, 0 ); - isShadowNode = exdData->getField< bool >( row, 1 ); - territoryType = exdData->getField< int32_t >( row, 2 ); - x = exdData->getField< int16_t >( row, 3 ); - y = exdData->getField< int16_t >( row, 4 ); - radius = exdData->getField< uint16_t >( row, 5 ); - placeName = exdData->getField< uint16_t >( row, 7 ); - gatheringPointBase = exdData->getField< uint16_t >( row, 9 ); -} - -Sapphire::Data::SpearfishingRecordPage::SpearfishingRecordPage( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SpearfishingRecordPageDat.get_row( row_id ); - placeName = exdData->getField< int32_t >( row, 3 ); - image = exdData->getField< int32_t >( row, 4 ); -} - -Sapphire::Data::SpecialShop::SpecialShop( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SpecialShopDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - questItem.push_back( exdData->getField< int32_t >( row, 1201 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1202 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1203 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1204 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1205 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1206 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1207 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1208 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1209 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1210 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1211 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1212 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1213 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1214 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1215 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1216 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1217 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1218 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1219 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1220 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1221 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1222 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1223 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1224 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1225 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1226 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1227 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1228 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1229 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1230 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1231 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1232 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1233 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1234 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1235 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1236 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1237 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1238 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1239 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1240 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1241 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1242 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1243 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1244 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1245 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1246 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1247 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1248 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1249 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1250 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1251 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1252 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1253 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1254 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1255 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1256 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1257 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1258 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1259 ) ); - questItem.push_back( exdData->getField< int32_t >( row, 1260 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1321 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1322 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1323 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1324 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1325 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1326 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1327 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1328 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1329 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1330 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1331 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1332 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1333 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1334 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1335 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1336 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1337 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1338 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1339 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1340 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1341 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1342 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1343 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1344 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1345 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1346 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1347 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1348 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1349 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1350 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1351 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1352 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1353 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1354 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1355 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1356 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1357 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1358 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1359 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1360 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1361 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1362 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1363 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1364 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1365 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1366 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1367 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1368 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1369 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1370 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1371 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1372 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1373 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1374 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1375 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1376 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1377 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1378 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1379 ) ); - achievementUnlock.push_back( exdData->getField< int32_t >( row, 1380 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1441 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1442 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1443 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1444 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1445 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1446 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1447 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1448 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1449 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1450 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1451 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1452 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1453 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1454 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1455 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1456 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1457 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1458 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1459 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1460 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1461 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1462 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1463 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1464 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1465 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1466 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1467 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1468 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1469 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1470 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1471 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1472 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1473 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1474 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1475 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1476 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1477 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1478 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1479 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1480 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1481 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1482 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1483 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1484 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1485 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1486 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1487 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1488 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1489 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1490 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1491 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1492 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1493 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1494 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1495 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1496 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1497 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1498 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1499 ) ); - patchNumber.push_back( exdData->getField< uint16_t >( row, 1500 ) ); - useCurrencyType = exdData->getField< uint8_t >( row, 1501 ); - questUnlock = exdData->getField< uint32_t >( row, 1502 ); - completeText = exdData->getField< int32_t >( row, 1503 ); - notCompleteText = exdData->getField< int32_t >( row, 1504 ); -} - -Sapphire::Data::SpecialShopItemCategory::SpecialShopItemCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SpecialShopItemCategoryDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::Stain::Stain( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_StainDat.get_row( row_id ); - color = exdData->getField< uint32_t >( row, 0 ); - shade = exdData->getField< uint8_t >( row, 1 ); - subOrder = exdData->getField< uint8_t >( row, 2 ); - name = exdData->getField< std::string >( row, 3 ); -} - -Sapphire::Data::StainTransient::StainTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_StainTransientDat.get_row( row_id ); - item1 = exdData->getField< uint32_t >( row, 0 ); - item2 = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::StanceChange::StanceChange( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_StanceChangeDat.get_row( row_id ); - action.push_back( exdData->getField< uint16_t >( row, 1 ) ); - action.push_back( exdData->getField< uint16_t >( row, 2 ) ); -} - -Sapphire::Data::Status::Status( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_StatusDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - description = exdData->getField< std::string >( row, 1 ); - icon = exdData->getField< uint16_t >( row, 2 ); - maxStacks = exdData->getField< uint8_t >( row, 3 ); - category = exdData->getField< uint8_t >( row, 5 ); - hitEffect = exdData->getField< uint8_t >( row, 6 ); - vFX = exdData->getField< uint16_t >( row, 7 ); - lockMovement = exdData->getField< bool >( row, 8 ); - lockActions = exdData->getField< bool >( row, 10 ); - lockControl = exdData->getField< bool >( row, 11 ); - transfiguration = exdData->getField< bool >( row, 12 ); - canDispel = exdData->getField< bool >( row, 14 ); - inflictedByActor = exdData->getField< bool >( row, 15 ); - isPermanent = exdData->getField< bool >( row, 16 ); - partyListPriority = exdData->getField< uint8_t >( row, 17 ); - log = exdData->getField< uint16_t >( row, 24 ); - isFcBuff = exdData->getField< bool >( row, 25 ); - invisibility = exdData->getField< bool >( row, 26 ); -} - -Sapphire::Data::StatusHitEffect::StatusHitEffect( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_StatusHitEffectDat.get_row( row_id ); - location = exdData->getField< uint16_t >( row, 0 ); -} - -Sapphire::Data::StatusLoopVFX::StatusLoopVFX( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_StatusLoopVFXDat.get_row( row_id ); - vFX = exdData->getField< uint16_t >( row, 0 ); - vFX2 = exdData->getField< uint16_t >( row, 2 ); - vFX3 = exdData->getField< uint16_t >( row, 4 ); -} - -Sapphire::Data::Story::Story( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_StoryDat.get_row( row_id ); - script = exdData->getField< std::string >( row, 0 ); - instruction.push_back( exdData->getField< std::string >( row, 1 ) ); - instruction.push_back( exdData->getField< std::string >( row, 2 ) ); - instruction.push_back( exdData->getField< std::string >( row, 3 ) ); - instruction.push_back( exdData->getField< std::string >( row, 4 ) ); - instruction.push_back( exdData->getField< std::string >( row, 5 ) ); - instruction.push_back( exdData->getField< std::string >( row, 6 ) ); - instruction.push_back( exdData->getField< std::string >( row, 7 ) ); - instruction.push_back( exdData->getField< std::string >( row, 8 ) ); - instruction.push_back( exdData->getField< std::string >( row, 9 ) ); - instruction.push_back( exdData->getField< std::string >( row, 10 ) ); - instruction.push_back( exdData->getField< std::string >( row, 11 ) ); - instruction.push_back( exdData->getField< std::string >( row, 12 ) ); - instruction.push_back( exdData->getField< std::string >( row, 13 ) ); - instruction.push_back( exdData->getField< std::string >( row, 14 ) ); - instruction.push_back( exdData->getField< std::string >( row, 15 ) ); - instruction.push_back( exdData->getField< std::string >( row, 16 ) ); - instruction.push_back( exdData->getField< std::string >( row, 17 ) ); - instruction.push_back( exdData->getField< std::string >( row, 18 ) ); - instruction.push_back( exdData->getField< std::string >( row, 19 ) ); - instruction.push_back( exdData->getField< std::string >( row, 20 ) ); - instruction.push_back( exdData->getField< std::string >( row, 21 ) ); - instruction.push_back( exdData->getField< std::string >( row, 22 ) ); - instruction.push_back( exdData->getField< std::string >( row, 23 ) ); - instruction.push_back( exdData->getField< std::string >( row, 24 ) ); - instruction.push_back( exdData->getField< std::string >( row, 25 ) ); - instruction.push_back( exdData->getField< std::string >( row, 26 ) ); - instruction.push_back( exdData->getField< std::string >( row, 27 ) ); - instruction.push_back( exdData->getField< std::string >( row, 28 ) ); - instruction.push_back( exdData->getField< std::string >( row, 29 ) ); - instruction.push_back( exdData->getField< std::string >( row, 30 ) ); - instruction.push_back( exdData->getField< std::string >( row, 31 ) ); - instruction.push_back( exdData->getField< std::string >( row, 32 ) ); - instruction.push_back( exdData->getField< std::string >( row, 33 ) ); - instruction.push_back( exdData->getField< std::string >( row, 34 ) ); - instruction.push_back( exdData->getField< std::string >( row, 35 ) ); - instruction.push_back( exdData->getField< std::string >( row, 36 ) ); - instruction.push_back( exdData->getField< std::string >( row, 37 ) ); - instruction.push_back( exdData->getField< std::string >( row, 38 ) ); - instruction.push_back( exdData->getField< std::string >( row, 39 ) ); - instruction.push_back( exdData->getField< std::string >( row, 40 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 41 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 42 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 43 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 44 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 45 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 46 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 47 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 48 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 49 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 50 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 51 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 52 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 53 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 54 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 55 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 56 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 57 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 58 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 59 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 60 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 61 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 62 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 63 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 64 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 65 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 66 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 67 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 68 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 69 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 70 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 71 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 72 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 73 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 74 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 75 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 76 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 77 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 78 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 79 ) ); - argument.push_back( exdData->getField< uint32_t >( row, 80 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 81 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 82 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 83 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 84 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 85 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 86 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 87 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 88 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 89 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 90 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 91 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 92 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 93 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 94 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 95 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 96 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 97 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 98 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 99 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 100 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 101 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 102 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 103 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 104 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 105 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 106 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 107 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 108 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 109 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 110 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 111 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 112 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 113 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 114 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 115 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 116 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 117 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 118 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 119 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 120 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 121 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 122 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 123 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 124 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 125 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 126 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 127 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 128 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 129 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 130 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 131 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 132 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 133 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 134 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 135 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 136 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 137 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 138 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 139 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 140 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 141 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 142 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 143 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 144 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 145 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 146 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 147 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 148 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 149 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 150 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 151 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 152 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 153 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 154 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 155 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 156 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 157 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 158 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 159 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 160 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 161 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 162 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 163 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 164 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 165 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 166 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 167 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 168 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 169 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 170 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 171 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 172 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 173 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 174 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 175 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 176 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 177 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 178 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 179 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 180 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 181 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 182 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 183 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 184 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 185 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 186 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 187 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 188 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 189 ) ); - sequence.push_back( exdData->getField< uint16_t >( row, 190 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 191 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 192 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 193 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 194 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 195 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 196 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 197 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 198 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 199 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 200 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 201 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 202 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 203 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 204 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 205 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 206 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 207 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 208 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 209 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 210 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 211 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 212 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 213 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 214 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 215 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 216 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 217 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 218 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 219 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 220 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 221 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 222 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 223 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 224 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 225 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 226 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 227 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 228 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 229 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 230 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 231 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 232 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 233 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 234 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 235 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 236 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 237 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 238 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 239 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 240 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 241 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 242 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 243 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 244 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 245 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 246 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 247 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 248 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 249 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 250 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 251 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 252 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 253 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 254 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 255 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 256 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 257 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 258 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 259 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 260 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 261 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 262 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 263 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 264 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 265 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 266 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 267 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 268 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 269 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 270 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 271 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 272 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 273 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 274 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 275 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 276 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 277 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 278 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 279 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 280 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 281 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 282 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 283 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 284 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 285 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 286 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 287 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 288 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 289 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 290 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 291 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 292 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 293 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 294 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 295 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 296 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 297 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 298 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 299 ) ); - completedQuestOperator.push_back( exdData->getField< uint8_t >( row, 300 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 301 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 302 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 303 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 304 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 305 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 306 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 307 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 308 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 309 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 310 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 311 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 312 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 313 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 314 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 315 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 316 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 317 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 318 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 319 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 320 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 321 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 322 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 323 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 324 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 325 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 326 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 327 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 328 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 329 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 330 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 331 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 332 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 333 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 334 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 335 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 336 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 337 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 338 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 339 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 340 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 341 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 342 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 343 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 344 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 345 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 346 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 347 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 348 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 349 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 350 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 351 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 352 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 353 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 354 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 355 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 356 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 357 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 358 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 359 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 360 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 361 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 362 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 363 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 364 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 365 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 366 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 367 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 368 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 369 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 370 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 371 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 372 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 373 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 374 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 375 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 376 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 377 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 378 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 379 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 380 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 381 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 382 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 383 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 384 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 385 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 386 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 387 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 388 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 389 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 390 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 391 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 392 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 393 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 394 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 395 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 396 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 397 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 398 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 399 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 400 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 401 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 402 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 403 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 404 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 405 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 406 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 407 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 408 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 409 ) ); - completedQuest0.push_back( exdData->getField< uint32_t >( row, 410 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 411 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 412 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 413 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 414 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 415 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 416 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 417 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 418 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 419 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 420 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 421 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 422 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 423 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 424 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 425 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 426 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 427 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 428 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 429 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 430 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 431 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 432 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 433 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 434 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 435 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 436 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 437 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 438 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 439 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 440 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 441 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 442 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 443 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 444 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 445 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 446 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 447 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 448 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 449 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 450 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 451 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 452 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 453 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 454 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 455 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 456 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 457 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 458 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 459 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 460 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 461 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 462 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 463 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 464 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 465 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 466 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 467 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 468 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 469 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 470 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 471 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 472 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 473 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 474 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 475 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 476 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 477 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 478 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 479 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 480 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 481 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 482 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 483 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 484 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 485 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 486 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 487 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 488 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 489 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 490 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 491 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 492 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 493 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 494 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 495 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 496 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 497 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 498 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 499 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 500 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 501 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 502 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 503 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 504 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 505 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 506 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 507 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 508 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 509 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 510 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 511 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 512 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 513 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 514 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 515 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 516 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 517 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 518 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 519 ) ); - completedQuest1.push_back( exdData->getField< uint32_t >( row, 520 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 521 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 522 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 523 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 524 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 525 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 526 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 527 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 528 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 529 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 530 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 531 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 532 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 533 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 534 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 535 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 536 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 537 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 538 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 539 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 540 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 541 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 542 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 543 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 544 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 545 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 546 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 547 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 548 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 549 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 550 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 551 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 552 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 553 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 554 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 555 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 556 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 557 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 558 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 559 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 560 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 561 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 562 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 563 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 564 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 565 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 566 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 567 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 568 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 569 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 570 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 571 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 572 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 573 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 574 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 575 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 576 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 577 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 578 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 579 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 580 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 581 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 582 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 583 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 584 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 585 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 586 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 587 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 588 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 589 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 590 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 591 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 592 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 593 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 594 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 595 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 596 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 597 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 598 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 599 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 600 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 601 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 602 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 603 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 604 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 605 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 606 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 607 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 608 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 609 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 610 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 611 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 612 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 613 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 614 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 615 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 616 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 617 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 618 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 619 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 620 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 621 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 622 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 623 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 624 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 625 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 626 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 627 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 628 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 629 ) ); - completedQuest2.push_back( exdData->getField< uint32_t >( row, 630 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 631 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 632 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 633 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 634 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 635 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 636 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 637 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 638 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 639 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 640 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 641 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 642 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 643 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 644 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 645 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 646 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 647 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 648 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 649 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 650 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 651 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 652 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 653 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 654 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 655 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 656 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 657 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 658 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 659 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 660 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 661 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 662 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 663 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 664 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 665 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 666 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 667 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 668 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 669 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 670 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 671 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 672 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 673 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 674 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 675 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 676 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 677 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 678 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 679 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 680 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 681 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 682 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 683 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 684 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 685 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 686 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 687 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 688 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 689 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 690 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 691 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 692 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 693 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 694 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 695 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 696 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 697 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 698 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 699 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 700 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 701 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 702 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 703 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 704 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 705 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 706 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 707 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 708 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 709 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 710 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 711 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 712 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 713 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 714 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 715 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 716 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 717 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 718 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 719 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 720 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 721 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 722 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 723 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 724 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 725 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 726 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 727 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 728 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 729 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 730 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 731 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 732 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 733 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 734 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 735 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 736 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 737 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 738 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 739 ) ); - acceptedQuestOperator.push_back( exdData->getField< uint8_t >( row, 740 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 741 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 742 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 743 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 744 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 745 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 746 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 747 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 748 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 749 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 750 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 751 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 752 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 753 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 754 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 755 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 756 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 757 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 758 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 759 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 760 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 761 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 762 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 763 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 764 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 765 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 766 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 767 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 768 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 769 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 770 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 771 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 772 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 773 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 774 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 775 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 776 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 777 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 778 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 779 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 780 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 781 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 782 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 783 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 784 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 785 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 786 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 787 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 788 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 789 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 790 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 791 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 792 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 793 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 794 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 795 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 796 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 797 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 798 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 799 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 800 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 801 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 802 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 803 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 804 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 805 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 806 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 807 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 808 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 809 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 810 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 811 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 812 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 813 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 814 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 815 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 816 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 817 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 818 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 819 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 820 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 821 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 822 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 823 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 824 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 825 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 826 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 827 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 828 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 829 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 830 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 831 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 832 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 833 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 834 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 835 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 836 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 837 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 838 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 839 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 840 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 841 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 842 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 843 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 844 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 845 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 846 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 847 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 848 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 849 ) ); - acceptedQuest0.push_back( exdData->getField< uint32_t >( row, 850 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 851 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 852 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 853 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 854 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 855 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 856 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 857 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 858 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 859 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 860 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 861 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 862 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 863 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 864 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 865 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 866 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 867 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 868 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 869 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 870 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 871 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 872 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 873 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 874 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 875 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 876 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 877 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 878 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 879 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 880 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 881 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 882 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 883 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 884 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 885 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 886 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 887 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 888 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 889 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 890 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 891 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 892 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 893 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 894 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 895 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 896 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 897 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 898 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 899 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 900 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 901 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 902 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 903 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 904 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 905 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 906 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 907 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 908 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 909 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 910 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 911 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 912 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 913 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 914 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 915 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 916 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 917 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 918 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 919 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 920 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 921 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 922 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 923 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 924 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 925 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 926 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 927 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 928 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 929 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 930 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 931 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 932 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 933 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 934 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 935 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 936 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 937 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 938 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 939 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 940 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 941 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 942 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 943 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 944 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 945 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 946 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 947 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 948 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 949 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 950 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 951 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 952 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 953 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 954 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 955 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 956 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 957 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 958 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 959 ) ); - acceptedQuestSequence0.push_back( exdData->getField< uint8_t >( row, 960 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 961 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 962 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 963 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 964 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 965 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 966 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 967 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 968 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 969 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 970 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 971 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 972 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 973 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 974 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 975 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 976 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 977 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 978 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 979 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 980 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 981 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 982 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 983 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 984 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 985 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 986 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 987 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 988 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 989 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 990 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 991 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 992 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 993 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 994 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 995 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 996 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 997 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 998 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 999 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1000 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1001 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1002 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1003 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1004 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1005 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1006 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1007 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1008 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1009 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1010 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1011 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1012 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1013 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1014 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1015 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1016 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1017 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1018 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1019 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1020 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1021 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1022 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1023 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1024 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1025 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1026 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1027 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1028 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1029 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1030 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1031 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1032 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1033 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1034 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1035 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1036 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1037 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1038 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1039 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1040 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1041 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1042 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1043 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1044 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1045 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1046 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1047 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1048 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1049 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1050 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1051 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1052 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1053 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1054 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1055 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1056 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1057 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1058 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1059 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1060 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1061 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1062 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1063 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1064 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1065 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1066 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1067 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1068 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1069 ) ); - acceptedQuest1.push_back( exdData->getField< uint32_t >( row, 1070 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1071 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1072 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1073 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1074 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1075 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1076 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1077 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1078 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1079 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1080 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1081 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1082 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1083 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1084 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1085 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1086 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1087 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1088 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1089 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1090 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1091 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1092 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1093 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1094 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1095 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1096 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1097 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1098 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1099 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1100 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1101 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1102 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1103 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1104 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1105 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1106 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1107 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1108 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1109 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1110 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1111 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1112 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1113 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1114 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1115 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1116 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1117 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1118 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1119 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1120 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1121 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1122 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1123 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1124 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1125 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1126 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1127 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1128 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1129 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1130 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1131 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1132 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1133 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1134 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1135 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1136 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1137 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1138 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1139 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1140 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1141 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1142 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1143 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1144 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1145 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1146 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1147 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1148 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1149 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1150 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1151 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1152 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1153 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1154 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1155 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1156 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1157 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1158 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1159 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1160 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1161 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1162 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1163 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1164 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1165 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1166 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1167 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1168 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1169 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1170 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1171 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1172 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1173 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1174 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1175 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1176 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1177 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1178 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1179 ) ); - acceptedQuestSequence1.push_back( exdData->getField< uint8_t >( row, 1180 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1181 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1182 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1183 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1184 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1185 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1186 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1187 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1188 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1189 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1190 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1191 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1192 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1193 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1194 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1195 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1196 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1197 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1198 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1199 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1200 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1201 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1202 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1203 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1204 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1205 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1206 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1207 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1208 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1209 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1210 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1211 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1212 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1213 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1214 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1215 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1216 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1217 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1218 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1219 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1220 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1221 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1222 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1223 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1224 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1225 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1226 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1227 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1228 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1229 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1230 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1231 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1232 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1233 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1234 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1235 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1236 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1237 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1238 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1239 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1240 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1241 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1242 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1243 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1244 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1245 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1246 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1247 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1248 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1249 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1250 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1251 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1252 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1253 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1254 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1255 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1256 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1257 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1258 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1259 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1260 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1261 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1262 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1263 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1264 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1265 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1266 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1267 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1268 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1269 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1270 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1271 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1272 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1273 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1274 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1275 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1276 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1277 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1278 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1279 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1280 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1281 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1282 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1283 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1284 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1285 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1286 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1287 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1288 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1289 ) ); - acceptedQuest2.push_back( exdData->getField< uint32_t >( row, 1290 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1291 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1292 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1293 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1294 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1295 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1296 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1297 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1298 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1299 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1300 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1301 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1302 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1303 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1304 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1305 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1306 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1307 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1308 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1309 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1310 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1311 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1312 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1313 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1314 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1315 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1316 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1317 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1318 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1319 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1320 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1321 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1322 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1323 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1324 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1325 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1326 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1327 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1328 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1329 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1330 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1331 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1332 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1333 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1334 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1335 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1336 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1337 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1338 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1339 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1340 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1341 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1342 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1343 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1344 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1345 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1346 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1347 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1348 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1349 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1350 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1351 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1352 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1353 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1354 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1355 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1356 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1357 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1358 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1359 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1360 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1361 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1362 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1363 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1364 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1365 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1366 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1367 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1368 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1369 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1370 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1371 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1372 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1373 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1374 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1375 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1376 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1377 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1378 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1379 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1380 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1381 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1382 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1383 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1384 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1385 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1386 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1387 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1388 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1389 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1390 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1391 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1392 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1393 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1394 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1395 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1396 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1397 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1398 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1399 ) ); - acceptedQuestSequence2.push_back( exdData->getField< uint8_t >( row, 1400 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1401 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1402 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1403 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1404 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1405 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1406 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1407 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1408 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1409 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1410 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1411 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1412 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1413 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1414 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1415 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1416 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1417 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1418 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1419 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1420 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1421 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1422 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1423 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1424 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1425 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1426 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1427 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1428 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1429 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1430 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1431 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1432 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1433 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1434 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1435 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1436 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1437 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1438 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1439 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1440 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1441 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1442 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1443 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1444 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1445 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1446 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1447 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1448 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1449 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1450 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1451 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1452 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1453 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1454 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1455 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1456 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1457 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1458 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1459 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1460 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1461 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1462 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1463 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1464 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1465 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1466 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1467 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1468 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1469 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1470 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1471 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1472 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1473 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1474 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1475 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1476 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1477 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1478 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1479 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1480 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1481 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1482 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1483 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1484 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1485 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1486 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1487 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1488 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1489 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1490 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1491 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1492 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1493 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1494 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1495 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1496 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1497 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1498 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1499 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1500 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1501 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1502 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1503 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1504 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1505 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1506 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1507 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1508 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1509 ) ); - layerSet0.push_back( exdData->getField< uint32_t >( row, 1510 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1511 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1512 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1513 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1514 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1515 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1516 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1517 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1518 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1519 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1520 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1521 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1522 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1523 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1524 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1525 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1526 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1527 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1528 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1529 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1530 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1531 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1532 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1533 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1534 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1535 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1536 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1537 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1538 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1539 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1540 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1541 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1542 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1543 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1544 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1545 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1546 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1547 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1548 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1549 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1550 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1551 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1552 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1553 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1554 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1555 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1556 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1557 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1558 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1559 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1560 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1561 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1562 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1563 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1564 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1565 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1566 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1567 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1568 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1569 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1570 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1571 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1572 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1573 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1574 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1575 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1576 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1577 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1578 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1579 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1580 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1581 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1582 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1583 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1584 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1585 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1586 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1587 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1588 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1589 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1590 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1591 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1592 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1593 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1594 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1595 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1596 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1597 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1598 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1599 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1600 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1601 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1602 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1603 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1604 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1605 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1606 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1607 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1608 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1609 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1610 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1611 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1612 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1613 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1614 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1615 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1616 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1617 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1618 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1619 ) ); - layerSet1.push_back( exdData->getField< uint32_t >( row, 1620 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1621 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1622 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1623 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1624 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1625 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1626 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1627 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1628 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1629 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1630 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1631 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1632 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1633 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1634 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1635 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1636 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1637 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1638 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1639 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1640 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1641 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1642 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1643 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1644 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1645 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1646 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1647 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1648 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1649 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1650 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1651 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1652 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1653 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1654 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1655 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1656 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1657 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1658 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1659 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1660 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1661 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1662 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1663 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1664 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1665 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1666 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1667 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1668 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1669 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1670 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1671 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1672 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1673 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1674 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1675 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1676 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1677 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1678 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1679 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1680 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1681 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1682 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1683 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1684 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1685 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1686 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1687 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1688 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1689 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1690 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1691 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1692 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1693 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1694 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1695 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1696 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1697 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1698 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1699 ) ); - sequenceBegin.push_back( exdData->getField< uint16_t >( row, 1700 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1701 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1702 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1703 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1704 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1705 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1706 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1707 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1708 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1709 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1710 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1711 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1712 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1713 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1714 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1715 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1716 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1717 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1718 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1719 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1720 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1721 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1722 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1723 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1724 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1725 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1726 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1727 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1728 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1729 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1730 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1731 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1732 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1733 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1734 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1735 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1736 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1737 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1738 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1739 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1740 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1741 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1742 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1743 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1744 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1745 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1746 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1747 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1748 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1749 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1750 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1751 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1752 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1753 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1754 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1755 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1756 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1757 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1758 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1759 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1760 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1761 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1762 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1763 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1764 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1765 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1766 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1767 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1768 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1769 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1770 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1771 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1772 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1773 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1774 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1775 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1776 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1777 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1778 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1779 ) ); - sequenceEnd.push_back( exdData->getField< uint16_t >( row, 1780 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1781 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1782 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1783 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1784 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1785 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1786 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1787 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1788 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1789 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1790 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1791 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1792 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1793 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1794 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1795 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1796 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1797 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1798 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1799 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1800 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1801 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1802 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1803 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1804 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1805 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1806 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1807 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1808 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1809 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1810 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1811 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1812 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1813 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1814 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1815 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1816 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1817 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1818 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1819 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1820 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1821 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1822 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1823 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1824 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1825 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1826 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1827 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1828 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1829 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1830 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1831 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1832 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1833 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1834 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1835 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1836 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1837 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1838 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1839 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1840 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1841 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1842 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1843 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1844 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1845 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1846 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1847 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1848 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1849 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1850 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1851 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1852 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1853 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1854 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1855 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1856 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1857 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1858 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1859 ) ); - listener.push_back( exdData->getField< uint32_t >( row, 1860 ) ); - layerSetTerritoryType0 = exdData->getField< uint16_t >( row, 1861 ); - layerSetTerritoryType1 = exdData->getField< uint16_t >( row, 1862 ); -} - -Sapphire::Data::SubmarineExploration::SubmarineExploration( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SubmarineExplorationDat.get_row( row_id ); - destination = exdData->getField< std::string >( row, 0 ); - location = exdData->getField< std::string >( row, 1 ); - map = exdData->getField< uint8_t >( row, 5 ); - stars = exdData->getField< uint8_t >( row, 7 ); - rankReq = exdData->getField< uint8_t >( row, 8 ); - ceruleumTankReq = exdData->getField< uint8_t >( row, 9 ); - durationmin = exdData->getField< uint16_t >( row, 10 ); - distanceForSurvey = exdData->getField< uint8_t >( row, 11 ); - expReward = exdData->getField< uint32_t >( row, 12 ); -} - -Sapphire::Data::SubmarineMap::SubmarineMap( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SubmarineMapDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - image = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::SubmarinePart::SubmarinePart( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SubmarinePartDat.get_row( row_id ); - slot = exdData->getField< uint8_t >( row, 0 ); - rank = exdData->getField< uint8_t >( row, 1 ); - components = exdData->getField< uint8_t >( row, 2 ); - surveillance = exdData->getField< int16_t >( row, 3 ); - retrieval = exdData->getField< int16_t >( row, 4 ); - speed = exdData->getField< int16_t >( row, 5 ); - range = exdData->getField< int16_t >( row, 6 ); - favor = exdData->getField< int16_t >( row, 7 ); - _class = exdData->getField< uint16_t >( row, 8 ); - repairMaterials = exdData->getField< uint8_t >( row, 9 ); -} - -Sapphire::Data::SubmarineRank::SubmarineRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SubmarineRankDat.get_row( row_id ); - capacity = exdData->getField< uint16_t >( row, 0 ); - expToNext = exdData->getField< uint32_t >( row, 1 ); - surveillanceBonus = exdData->getField< uint8_t >( row, 2 ); - retrievalBonus = exdData->getField< uint8_t >( row, 3 ); - speedBonus = exdData->getField< uint8_t >( row, 4 ); - rangeBonus = exdData->getField< uint8_t >( row, 5 ); - favorBonus = exdData->getField< uint8_t >( row, 6 ); -} - -Sapphire::Data::SwitchTalk::SwitchTalk( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SwitchTalkDat.get_row( row_id ); -} - -Sapphire::Data::SwitchTalkVariation::SwitchTalkVariation( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_SwitchTalkVariationDat.get_row( row_id, subRow ); - quest0 = exdData->getField< uint32_t >( row, 0 ); - quest1 = exdData->getField< uint32_t >( row, 1 ); - defaultTalk = exdData->getField< uint32_t >( row, 3 ); -} - -Sapphire::Data::TerritoryType::TerritoryType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TerritoryTypeDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - bg = exdData->getField< std::string >( row, 1 ); - battalionMode = exdData->getField< uint8_t >( row, 2 ); - placeNameRegion = exdData->getField< uint16_t >( row, 3 ); - placeNameZone = exdData->getField< uint16_t >( row, 4 ); - placeName = exdData->getField< uint16_t >( row, 5 ); - map = exdData->getField< uint16_t >( row, 6 ); - loadingImage = exdData->getField< uint8_t >( row, 7 ); - exclusiveType = exdData->getField< uint8_t >( row, 8 ); - territoryIntendedUse = exdData->getField< uint8_t >( row, 9 ); - contentFinderCondition = exdData->getField< uint16_t >( row, 10 ); - weatherRate = exdData->getField< uint8_t >( row, 12 ); - pCSearch = exdData->getField< bool >( row, 15 ); - stealth = exdData->getField< bool >( row, 16 ); - mount = exdData->getField< bool >( row, 17 ); - bGM = exdData->getField< uint16_t >( row, 19 ); - placeNameRegionIcon = exdData->getField< int32_t >( row, 20 ); - placeNameIcon = exdData->getField< int32_t >( row, 21 ); - arrayEventHandler = exdData->getField< uint32_t >( row, 22 ); - questBattle = exdData->getField< uint16_t >( row, 23 ); - aetheryte = exdData->getField< int32_t >( row, 24 ); - fixedTime = exdData->getField< int32_t >( row, 25 ); - resident = exdData->getField< uint16_t >( row, 26 ); - achievementIndex = exdData->getField< int8_t >( row, 27 ); - isPvpZone = exdData->getField< bool >( row, 28 ); - exVersion = exdData->getField< uint8_t >( row, 29 ); - mountSpeed = exdData->getField< uint8_t >( row, 33 ); -} - -Sapphire::Data::TerritoryTypeTransient::TerritoryTypeTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TerritoryTypeTransientDat.get_row( row_id ); - offsetZ = exdData->getField< int16_t >( row, 0 ); -} - -Sapphire::Data::TextCommand::TextCommand( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TextCommandDat.get_row( row_id ); - command = exdData->getField< std::string >( row, 5 ); - shortCommand = exdData->getField< std::string >( row, 6 ); - description = exdData->getField< std::string >( row, 7 ); - alias = exdData->getField< std::string >( row, 8 ); - shortAlias = exdData->getField< std::string >( row, 9 ); - param = exdData->getField< uint16_t >( row, 10 ); -} - -Sapphire::Data::TextCommandParam::TextCommandParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TextCommandParamDat.get_row( row_id ); - param = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::Title::Title( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TitleDat.get_row( row_id ); - masculine = exdData->getField< std::string >( row, 0 ); - feminine = exdData->getField< std::string >( row, 1 ); - isPrefix = exdData->getField< bool >( row, 2 ); - order = exdData->getField< uint16_t >( row, 3 ); -} - -Sapphire::Data::Tomestones::Tomestones( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TomestonesDat.get_row( row_id ); - weeklyLimit = exdData->getField< uint16_t >( row, 0 ); -} - -Sapphire::Data::TomestonesItem::TomestonesItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TomestonesItemDat.get_row( row_id ); - item = exdData->getField< int32_t >( row, 0 ); - tomestones = exdData->getField< int32_t >( row, 2 ); -} - -Sapphire::Data::TopicSelect::TopicSelect( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TopicSelectDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::Town::Town( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TownDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - icon = exdData->getField< int32_t >( row, 1 ); -} - -Sapphire::Data::Trait::Trait( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TraitDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - icon = exdData->getField< int32_t >( row, 1 ); - classJob = exdData->getField< uint8_t >( row, 2 ); - level = exdData->getField< uint8_t >( row, 3 ); - quest = exdData->getField< uint32_t >( row, 4 ); - value = exdData->getField< int16_t >( row, 5 ); - classJobCategory = exdData->getField< uint8_t >( row, 6 ); -} - -Sapphire::Data::TraitRecast::TraitRecast( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TraitRecastDat.get_row( row_id ); - trait = exdData->getField< uint16_t >( row, 0 ); - action = exdData->getField< uint16_t >( row, 1 ); - timeds = exdData->getField< uint16_t >( row, 2 ); -} - -Sapphire::Data::TraitTransient::TraitTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TraitTransientDat.get_row( row_id ); - description = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::Transformation::Transformation( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TransformationDat.get_row( row_id ); - model = exdData->getField< int16_t >( row, 1 ); - bNpcName = exdData->getField< uint16_t >( row, 2 ); - bNpcCustomize = exdData->getField< int32_t >( row, 3 ); - npcEquip = exdData->getField< int32_t >( row, 4 ); - exHotbarEnableConfig = exdData->getField< bool >( row, 5 ); - action0 = exdData->getField< uint16_t >( row, 6 ); - action1 = exdData->getField< uint16_t >( row, 8 ); - action2 = exdData->getField< uint16_t >( row, 10 ); - action3 = exdData->getField< uint16_t >( row, 12 ); - action4 = exdData->getField< uint16_t >( row, 14 ); - action5 = exdData->getField< uint16_t >( row, 16 ); - rPParameter = exdData->getField< uint16_t >( row, 18 ); - removeAction = exdData->getField< uint16_t >( row, 19 ); - speed = exdData->getField< float >( row, 23 ); - scale = exdData->getField< float >( row, 24 ); - isPvP = exdData->getField< bool >( row, 25 ); - isEvent = exdData->getField< bool >( row, 26 ); - playerCamera = exdData->getField< bool >( row, 27 ); - startVFX = exdData->getField< uint16_t >( row, 30 ); - endVFX = exdData->getField< uint16_t >( row, 31 ); - action6 = exdData->getField< uint32_t >( row, 32 ); - action7 = exdData->getField< uint16_t >( row, 35 ); -} - -Sapphire::Data::Treasure::Treasure( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TreasureDat.get_row( row_id ); - item = exdData->getField< uint32_t >( row, 8 ); -} - -Sapphire::Data::TreasureHuntRank::TreasureHuntRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TreasureHuntRankDat.get_row( row_id ); - icon = exdData->getField< uint32_t >( row, 1 ); - itemName = exdData->getField< int32_t >( row, 2 ); - keyItemName = exdData->getField< int32_t >( row, 3 ); - instanceMap = exdData->getField< int32_t >( row, 4 ); - maxPartySize = exdData->getField< uint8_t >( row, 5 ); - treasureHuntTexture = exdData->getField< uint8_t >( row, 6 ); -} - -Sapphire::Data::TreasureModel::TreasureModel( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TreasureModelDat.get_row( row_id ); - path = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::TreasureSpot::TreasureSpot( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TreasureSpotDat.get_row( row_id, subRow ); - location = exdData->getField< int32_t >( row, 0 ); - mapOffsetX = exdData->getField< float >( row, 1 ); - mapOffsetY = exdData->getField< float >( row, 2 ); -} - -Sapphire::Data::Tribe::Tribe( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TribeDat.get_row( row_id ); - masculine = exdData->getField< std::string >( row, 0 ); - feminine = exdData->getField< std::string >( row, 1 ); - hp = exdData->getField< int8_t >( row, 2 ); - mp = exdData->getField< int8_t >( row, 3 ); - sTR = exdData->getField< int8_t >( row, 4 ); - vIT = exdData->getField< int8_t >( row, 5 ); - dEX = exdData->getField< int8_t >( row, 6 ); - iNT = exdData->getField< int8_t >( row, 7 ); - mND = exdData->getField< int8_t >( row, 8 ); - pIE = exdData->getField< int8_t >( row, 9 ); -} - -Sapphire::Data::TripleTriad::TripleTriad( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TripleTriadDat.get_row( row_id ); - tripleTriadCardFixed.push_back( exdData->getField< uint16_t >( row, 0 ) ); - tripleTriadCardFixed.push_back( exdData->getField< uint16_t >( row, 1 ) ); - tripleTriadCardFixed.push_back( exdData->getField< uint16_t >( row, 2 ) ); - tripleTriadCardFixed.push_back( exdData->getField< uint16_t >( row, 3 ) ); - tripleTriadCardFixed.push_back( exdData->getField< uint16_t >( row, 4 ) ); - tripleTriadCardVariable.push_back( exdData->getField< uint16_t >( row, 5 ) ); - tripleTriadCardVariable.push_back( exdData->getField< uint16_t >( row, 6 ) ); - tripleTriadCardVariable.push_back( exdData->getField< uint16_t >( row, 7 ) ); - tripleTriadCardVariable.push_back( exdData->getField< uint16_t >( row, 8 ) ); - tripleTriadCardVariable.push_back( exdData->getField< uint16_t >( row, 9 ) ); - tripleTriadRule.push_back( exdData->getField< uint8_t >( row, 10 ) ); - tripleTriadRule.push_back( exdData->getField< uint8_t >( row, 11 ) ); - usesRegionalRules = exdData->getField< bool >( row, 12 ); - fee = exdData->getField< uint16_t >( row, 13 ); - previousQuestJoin = exdData->getField< uint8_t >( row, 14 ); - previousQuest.push_back( exdData->getField< uint32_t >( row, 15 ) ); - previousQuest.push_back( exdData->getField< uint32_t >( row, 16 ) ); - previousQuest.push_back( exdData->getField< uint32_t >( row, 17 ) ); - startTime = exdData->getField< uint16_t >( row, 18 ); - endTime = exdData->getField< uint16_t >( row, 19 ); - defaultTalkChallenge = exdData->getField< uint32_t >( row, 20 ); - defaultTalkUnavailable = exdData->getField< uint32_t >( row, 21 ); - defaultTalkNPCWin = exdData->getField< uint32_t >( row, 22 ); - defaultTalkDraw = exdData->getField< uint32_t >( row, 23 ); - defaultTalkPCWin = exdData->getField< uint32_t >( row, 24 ); - itemPossibleReward.push_back( exdData->getField< uint32_t >( row, 26 ) ); - itemPossibleReward.push_back( exdData->getField< uint32_t >( row, 27 ) ); - itemPossibleReward.push_back( exdData->getField< uint32_t >( row, 28 ) ); - itemPossibleReward.push_back( exdData->getField< uint32_t >( row, 29 ) ); -} - -Sapphire::Data::TripleTriadCard::TripleTriadCard( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TripleTriadCardDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - startsWithVowel = exdData->getField< int8_t >( row, 4 ); - description = exdData->getField< std::string >( row, 8 ); -} - -Sapphire::Data::TripleTriadCardRarity::TripleTriadCardRarity( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TripleTriadCardRarityDat.get_row( row_id ); - stars = exdData->getField< uint8_t >( row, 0 ); -} - -Sapphire::Data::TripleTriadCardResident::TripleTriadCardResident( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TripleTriadCardResidentDat.get_row( row_id ); - top = exdData->getField< uint8_t >( row, 1 ); - bottom = exdData->getField< uint8_t >( row, 2 ); - left = exdData->getField< uint8_t >( row, 3 ); - right = exdData->getField< uint8_t >( row, 4 ); - tripleTriadCardRarity = exdData->getField< uint8_t >( row, 5 ); - tripleTriadCardType = exdData->getField< uint8_t >( row, 6 ); - saleValue = exdData->getField< uint16_t >( row, 7 ); - sortKey = exdData->getField< uint8_t >( row, 8 ); - order = exdData->getField< uint16_t >( row, 9 ); - uIPriority = exdData->getField< uint8_t >( row, 10 ); - acquisitionType = exdData->getField< uint8_t >( row, 12 ); - acquisition = exdData->getField< uint32_t >( row, 13 ); - location = exdData->getField< uint32_t >( row, 14 ); - quest = exdData->getField< uint32_t >( row, 15 ); -} - -Sapphire::Data::TripleTriadCardType::TripleTriadCardType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TripleTriadCardTypeDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::TripleTriadCompetition::TripleTriadCompetition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TripleTriadCompetitionDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::TripleTriadResident::TripleTriadResident( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TripleTriadResidentDat.get_row( row_id ); - order = exdData->getField< uint16_t >( row, 0 ); -} - -Sapphire::Data::TripleTriadRule::TripleTriadRule( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TripleTriadRuleDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - description = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::Tutorial::Tutorial( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TutorialDat.get_row( row_id ); - exp = exdData->getField< uint32_t >( row, 4 ); - gil = exdData->getField< uint32_t >( row, 5 ); - rewardTank = exdData->getField< uint32_t >( row, 6 ); - rewardMelee = exdData->getField< uint32_t >( row, 7 ); - rewardRanged = exdData->getField< uint32_t >( row, 8 ); - objective = exdData->getField< uint32_t >( row, 9 ); -} - -Sapphire::Data::TutorialDPS::TutorialDPS( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TutorialDPSDat.get_row( row_id ); - objective = exdData->getField< uint8_t >( row, 0 ); -} - -Sapphire::Data::TutorialHealer::TutorialHealer( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TutorialHealerDat.get_row( row_id ); - objective = exdData->getField< uint8_t >( row, 0 ); -} - -Sapphire::Data::TutorialTank::TutorialTank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_TutorialTankDat.get_row( row_id ); - objective = exdData->getField< uint8_t >( row, 0 ); -} - -Sapphire::Data::UDS_Event::UDS_Event( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_UDS_EventDat.get_row( row_id ); - text = exdData->getField< std::string >( row, 0 ); - type = exdData->getField< std::string >( row, 1 ); - property.push_back( exdData->getField< int32_t >( row, 2 ) ); - property.push_back( exdData->getField< int32_t >( row, 3 ) ); - property.push_back( exdData->getField< int32_t >( row, 4 ) ); - property.push_back( exdData->getField< int32_t >( row, 5 ) ); - property.push_back( exdData->getField< int32_t >( row, 6 ) ); - property.push_back( exdData->getField< int32_t >( row, 7 ) ); - property.push_back( exdData->getField< int32_t >( row, 8 ) ); - property.push_back( exdData->getField< int32_t >( row, 9 ) ); - property.push_back( exdData->getField< int32_t >( row, 10 ) ); - property.push_back( exdData->getField< int32_t >( row, 11 ) ); - property.push_back( exdData->getField< int32_t >( row, 12 ) ); - property.push_back( exdData->getField< int32_t >( row, 13 ) ); - property.push_back( exdData->getField< int32_t >( row, 14 ) ); - property.push_back( exdData->getField< int32_t >( row, 15 ) ); - property.push_back( exdData->getField< int32_t >( row, 16 ) ); - property.push_back( exdData->getField< int32_t >( row, 17 ) ); - property.push_back( exdData->getField< int32_t >( row, 18 ) ); - property.push_back( exdData->getField< int32_t >( row, 19 ) ); - property.push_back( exdData->getField< int32_t >( row, 20 ) ); - property.push_back( exdData->getField< int32_t >( row, 21 ) ); - property.push_back( exdData->getField< int32_t >( row, 22 ) ); - property.push_back( exdData->getField< int32_t >( row, 23 ) ); - property.push_back( exdData->getField< int32_t >( row, 24 ) ); - property.push_back( exdData->getField< int32_t >( row, 25 ) ); - property.push_back( exdData->getField< int32_t >( row, 26 ) ); - property.push_back( exdData->getField< int32_t >( row, 27 ) ); - property.push_back( exdData->getField< int32_t >( row, 28 ) ); - property.push_back( exdData->getField< int32_t >( row, 29 ) ); - property.push_back( exdData->getField< int32_t >( row, 30 ) ); - property.push_back( exdData->getField< int32_t >( row, 31 ) ); - property.push_back( exdData->getField< int32_t >( row, 32 ) ); - property.push_back( exdData->getField< int32_t >( row, 33 ) ); -} - -Sapphire::Data::UDS_Property::UDS_Property( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_UDS_PropertyDat.get_row( row_id ); - text = exdData->getField< std::string >( row, 0 ); - type = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::UIColor::UIColor( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_UIColorDat.get_row( row_id ); - uIForeground = exdData->getField< uint32_t >( row, 0 ); - uIGlow = exdData->getField< uint32_t >( row, 1 ); -} - -Sapphire::Data::VaseFlower::VaseFlower( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_VaseFlowerDat.get_row( row_id ); - item = exdData->getField< uint32_t >( row, 3 ); -} - -Sapphire::Data::VFX::VFX( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_VFXDat.get_row( row_id ); - location = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::Warp::Warp( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_WarpDat.get_row( row_id ); - popRange = exdData->getField< uint32_t >( row, 0 ); - territoryType = exdData->getField< uint16_t >( row, 1 ); - conditionSuccessEvent = exdData->getField< uint32_t >( row, 2 ); - conditionFailEvent = exdData->getField< uint32_t >( row, 3 ); - confirmEvent = exdData->getField< uint32_t >( row, 4 ); - warpCondition = exdData->getField< uint16_t >( row, 5 ); - warpLogic = exdData->getField< uint16_t >( row, 6 ); - startCutscene = exdData->getField< uint16_t >( row, 7 ); - endCutscene = exdData->getField< uint16_t >( row, 8 ); - canSkipCutscene = exdData->getField< bool >( row, 9 ); - name = exdData->getField< std::string >( row, 10 ); - question = exdData->getField< std::string >( row, 11 ); -} - -Sapphire::Data::WarpCondition::WarpCondition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_WarpConditionDat.get_row( row_id ); - gil = exdData->getField< uint16_t >( row, 0 ); - completeParam = exdData->getField< uint8_t >( row, 1 ); - requiredQuest1 = exdData->getField< uint32_t >( row, 2 ); - requiredQuest2 = exdData->getField< uint32_t >( row, 3 ); - dRequiredQuest3 = exdData->getField< uint32_t >( row, 4 ); - requiredQuest4 = exdData->getField< uint32_t >( row, 5 ); - questReward = exdData->getField< uint16_t >( row, 6 ); - classLevel = exdData->getField< uint16_t >( row, 7 ); -} - -Sapphire::Data::WarpLogic::WarpLogic( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_WarpLogicDat.get_row( row_id ); - warpName = exdData->getField< std::string >( row, 1 ); - canSkipCutscene = exdData->getField< bool >( row, 2 ); - function.push_back( exdData->getField< std::string >( row, 3 ) ); - function.push_back( exdData->getField< std::string >( row, 4 ) ); - function.push_back( exdData->getField< std::string >( row, 5 ) ); - function.push_back( exdData->getField< std::string >( row, 6 ) ); - function.push_back( exdData->getField< std::string >( row, 7 ) ); - function.push_back( exdData->getField< std::string >( row, 8 ) ); - function.push_back( exdData->getField< std::string >( row, 9 ) ); - function.push_back( exdData->getField< std::string >( row, 10 ) ); - function.push_back( exdData->getField< std::string >( row, 11 ) ); - function.push_back( exdData->getField< std::string >( row, 12 ) ); - question = exdData->getField< std::string >( row, 23 ); - responseYes = exdData->getField< std::string >( row, 24 ); - responseNo = exdData->getField< std::string >( row, 25 ); -} - -Sapphire::Data::WeaponTimeline::WeaponTimeline( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_WeaponTimelineDat.get_row( row_id ); - file = exdData->getField< std::string >( row, 0 ); - nextWeaponTimeline = exdData->getField< int16_t >( row, 1 ); -} - -Sapphire::Data::Weather::Weather( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_WeatherDat.get_row( row_id ); - icon = exdData->getField< int32_t >( row, 0 ); - name = exdData->getField< std::string >( row, 1 ); - description = exdData->getField< std::string >( row, 2 ); -} - -Sapphire::Data::WeatherGroup::WeatherGroup( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_WeatherGroupDat.get_row( row_id, subRow ); - weatherRate = exdData->getField< int32_t >( row, 1 ); -} - -Sapphire::Data::WeatherRate::WeatherRate( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_WeatherRateDat.get_row( row_id ); -} - -Sapphire::Data::WeatherReportReplace::WeatherReportReplace( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_WeatherReportReplaceDat.get_row( row_id ); - placeNameSub = exdData->getField< uint16_t >( row, 0 ); - placeNameParent = exdData->getField< uint16_t >( row, 1 ); -} - -Sapphire::Data::WebGuidance::WebGuidance( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_WebGuidanceDat.get_row( row_id ); - image = exdData->getField< int32_t >( row, 0 ); - url = exdData->getField< uint8_t >( row, 1 ); - name = exdData->getField< std::string >( row, 2 ); - description = exdData->getField< std::string >( row, 4 ); -} - -Sapphire::Data::WebURL::WebURL( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_WebURLDat.get_row( row_id ); - uRL = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::WeddingBGM::WeddingBGM( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_WeddingBGMDat.get_row( row_id ); - song = exdData->getField< uint16_t >( row, 0 ); - songName = exdData->getField< std::string >( row, 1 ); -} - -Sapphire::Data::WeeklyBingoOrderData::WeeklyBingoOrderData( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_WeeklyBingoOrderDataDat.get_row( row_id ); - type = exdData->getField< uint32_t >( row, 0 ); - data = exdData->getField< uint32_t >( row, 1 ); - text = exdData->getField< uint8_t >( row, 3 ); - icon = exdData->getField< uint32_t >( row, 4 ); -} - -Sapphire::Data::WeeklyBingoRewardData::WeeklyBingoRewardData( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_WeeklyBingoRewardDataDat.get_row( row_id ); - rewardItem2 = exdData->getField< uint32_t >( row, 10 ); - rewardHQ2 = exdData->getField< bool >( row, 11 ); - rewardQuantity2 = exdData->getField< uint16_t >( row, 12 ); -} - -Sapphire::Data::WeeklyBingoText::WeeklyBingoText( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_WeeklyBingoTextDat.get_row( row_id ); - description = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::WeeklyLotBonus::WeeklyLotBonus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_WeeklyLotBonusDat.get_row( row_id ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 0 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 1 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 2 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 3 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 4 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 5 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 6 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 7 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 8 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 9 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 10 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 11 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 12 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 13 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 14 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 15 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 16 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 17 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 18 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 19 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 20 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 21 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 22 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 23 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 24 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 25 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 26 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 27 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 28 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 29 ) ); - weeklyLotBonusThreshold.push_back( exdData->getField< uint8_t >( row, 30 ) ); -} - -Sapphire::Data::World::World( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_WorldDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - userType = exdData->getField< uint8_t >( row, 1 ); - dataCenter = exdData->getField< uint8_t >( row, 2 ); - isPublic = exdData->getField< bool >( row, 3 ); -} - -Sapphire::Data::WorldDCGroupType::WorldDCGroupType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_WorldDCGroupTypeDat.get_row( row_id ); - name = exdData->getField< std::string >( row, 0 ); - region = exdData->getField< uint8_t >( row, 1 ); -} - -Sapphire::Data::YardCatalogCategory::YardCatalogCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_YardCatalogCategoryDat.get_row( row_id ); - category = exdData->getField< std::string >( row, 0 ); -} - -Sapphire::Data::YardCatalogItemList::YardCatalogItemList( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_YardCatalogItemListDat.get_row( row_id ); - category = exdData->getField< uint16_t >( row, 0 ); - item = exdData->getField< int32_t >( row, 1 ); - patch = exdData->getField< uint16_t >( row, 2 ); -} - -Sapphire::Data::YKW::YKW( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_YKWDat.get_row( row_id ); - item = exdData->getField< uint32_t >( row, 1 ); - location.push_back( exdData->getField< uint16_t >( row, 2 ) ); - location.push_back( exdData->getField< uint16_t >( row, 3 ) ); - location.push_back( exdData->getField< uint16_t >( row, 4 ) ); - location.push_back( exdData->getField< uint16_t >( row, 5 ) ); - location.push_back( exdData->getField< uint16_t >( row, 6 ) ); - location.push_back( exdData->getField< uint16_t >( row, 7 ) ); -} - -Sapphire::Data::ZoneSharedGroup::ZoneSharedGroup( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ) -{ - auto row = exdData->m_ZoneSharedGroupDat.get_row( row_id, subRow ); - quest1 = exdData->getField< uint32_t >( row, 2 ); - quest2 = exdData->getField< uint32_t >( row, 6 ); - quest3 = exdData->getField< uint32_t >( row, 10 ); - quest4 = exdData->getField< uint32_t >( row, 14 ); - quest5 = exdData->getField< uint32_t >( row, 18 ); - quest6 = exdData->getField< uint32_t >( row, 22 ); -} - - -Sapphire::Data::ExdDataGenerated::ExdDataGenerated() -{ -} - -Sapphire::Data::ExdDataGenerated::~ExdDataGenerated() -{ -} - -xiv::exd::Exd Sapphire::Data::ExdDataGenerated::setupDatAccess( const std::string& name, xiv::exd::Language lang ) -{ - auto& cat = m_exd_data->get_category( name ); - return static_cast< xiv::exd::Exd >( cat.get_data_ln( lang ) ); -}; - - -void Sapphire::Data::ExdDataGenerated::loadIdList( xiv::exd::Exd& data, std::set< uint32_t >& outIdList ) -{ - auto pDataRows = data.get_rows(); - - for( auto row : pDataRows ) - { - uint32_t id = row.first.rowId; - outIdList.insert( id ); - } -} - -bool Sapphire::Data::ExdDataGenerated::init( const std::string& path ) -{ - try - { - m_data = std::make_shared< xiv::dat::GameData >( path ); - m_exd_data = std::make_shared< xiv::exd::ExdData >( *m_data ); - - m_AchievementDat = setupDatAccess( "Achievement", xiv::exd::Language::en ); - m_AchievementCategoryDat = setupDatAccess( "AchievementCategory", xiv::exd::Language::en ); - m_AchievementHideConditionDat = setupDatAccess( "AchievementHideCondition", xiv::exd::Language::none ); - m_AchievementKindDat = setupDatAccess( "AchievementKind", xiv::exd::Language::en ); - m_AchievementTargetDat = setupDatAccess( "AchievementTarget", xiv::exd::Language::none ); - m_ActionDat = setupDatAccess( "Action", xiv::exd::Language::en ); - m_ActionCastTimelineDat = setupDatAccess( "ActionCastTimeline", xiv::exd::Language::none ); - m_ActionCastVFXDat = setupDatAccess( "ActionCastVFX", xiv::exd::Language::none ); - m_ActionCategoryDat = setupDatAccess( "ActionCategory", xiv::exd::Language::en ); - m_ActionComboRouteDat = setupDatAccess( "ActionComboRoute", xiv::exd::Language::en ); - m_ActionIndirectionDat = setupDatAccess( "ActionIndirection", xiv::exd::Language::none ); - m_ActionParamDat = setupDatAccess( "ActionParam", xiv::exd::Language::none ); - m_ActionProcStatusDat = setupDatAccess( "ActionProcStatus", xiv::exd::Language::none ); - m_ActionTimelineDat = setupDatAccess( "ActionTimeline", xiv::exd::Language::none ); - m_ActionTimelineMoveDat = setupDatAccess( "ActionTimelineMove", xiv::exd::Language::none ); - m_ActionTimelineReplaceDat = setupDatAccess( "ActionTimelineReplace", xiv::exd::Language::none ); - m_ActionTransientDat = setupDatAccess( "ActionTransient", xiv::exd::Language::en ); - m_ActivityFeedButtonsDat = setupDatAccess( "ActivityFeedButtons", xiv::exd::Language::none ); - m_ActivityFeedCaptionsDat = setupDatAccess( "ActivityFeedCaptions", xiv::exd::Language::none ); - m_ActivityFeedGroupCaptionsDat = setupDatAccess( "ActivityFeedGroupCaptions", xiv::exd::Language::none ); - m_ActivityFeedImagesDat = setupDatAccess( "ActivityFeedImages", xiv::exd::Language::none ); - m_AddonDat = setupDatAccess( "Addon", xiv::exd::Language::en ); - m_AdventureDat = setupDatAccess( "Adventure", xiv::exd::Language::en ); - m_AdventureExPhaseDat = setupDatAccess( "AdventureExPhase", xiv::exd::Language::none ); - m_AetherCurrentDat = setupDatAccess( "AetherCurrent", xiv::exd::Language::none ); - m_AetherCurrentCompFlgSetDat = setupDatAccess( "AetherCurrentCompFlgSet", xiv::exd::Language::none ); - m_AetherialWheelDat = setupDatAccess( "AetherialWheel", xiv::exd::Language::none ); - m_AetheryteDat = setupDatAccess( "Aetheryte", xiv::exd::Language::en ); - m_AetheryteSystemDefineDat = setupDatAccess( "AetheryteSystemDefine", xiv::exd::Language::none ); - m_AirshipExplorationLevelDat = setupDatAccess( "AirshipExplorationLevel", xiv::exd::Language::none ); - m_AirshipExplorationLogDat = setupDatAccess( "AirshipExplorationLog", xiv::exd::Language::en ); - m_AirshipExplorationParamTypeDat = setupDatAccess( "AirshipExplorationParamType", xiv::exd::Language::en ); - m_AirshipExplorationPartDat = setupDatAccess( "AirshipExplorationPart", xiv::exd::Language::none ); - m_AirshipExplorationPointDat = setupDatAccess( "AirshipExplorationPoint", xiv::exd::Language::en ); - m_AnimationLODDat = setupDatAccess( "AnimationLOD", xiv::exd::Language::none ); - m_AnimaWeapon5Dat = setupDatAccess( "AnimaWeapon5", xiv::exd::Language::none ); - m_AnimaWeapon5ParamDat = setupDatAccess( "AnimaWeapon5Param", xiv::exd::Language::en ); - m_AnimaWeapon5PatternGroupDat = setupDatAccess( "AnimaWeapon5PatternGroup", xiv::exd::Language::en ); - m_AnimaWeapon5SpiritTalkDat = setupDatAccess( "AnimaWeapon5SpiritTalk", xiv::exd::Language::none ); - m_AnimaWeapon5SpiritTalkParamDat = setupDatAccess( "AnimaWeapon5SpiritTalkParam", xiv::exd::Language::en ); - m_AnimaWeapon5TradeItemDat = setupDatAccess( "AnimaWeapon5TradeItem", xiv::exd::Language::none ); - m_AnimaWeaponFUITalkDat = setupDatAccess( "AnimaWeaponFUITalk", xiv::exd::Language::none ); - m_AnimaWeaponFUITalkParamDat = setupDatAccess( "AnimaWeaponFUITalkParam", xiv::exd::Language::en ); - m_AnimaWeaponIconDat = setupDatAccess( "AnimaWeaponIcon", xiv::exd::Language::none ); - m_AnimaWeaponItemDat = setupDatAccess( "AnimaWeaponItem", xiv::exd::Language::none ); - m_AozActionDat = setupDatAccess( "AozAction", xiv::exd::Language::none ); - m_AozActionTransientDat = setupDatAccess( "AozActionTransient", xiv::exd::Language::en ); - m_AOZArrangementDat = setupDatAccess( "AOZArrangement", xiv::exd::Language::none ); - m_AOZBossDat = setupDatAccess( "AOZBoss", xiv::exd::Language::none ); - m_AOZContentDat = setupDatAccess( "AOZContent", xiv::exd::Language::none ); - m_AOZContentBriefingBNpcDat = setupDatAccess( "AOZContentBriefingBNpc", xiv::exd::Language::none ); - m_AOZReportDat = setupDatAccess( "AOZReport", xiv::exd::Language::none ); - m_AOZScoreDat = setupDatAccess( "AOZScore", xiv::exd::Language::en ); - m_AquariumFishDat = setupDatAccess( "AquariumFish", xiv::exd::Language::none ); - m_AquariumWaterDat = setupDatAccess( "AquariumWater", xiv::exd::Language::en ); - m_ArrayEventHandlerDat = setupDatAccess( "ArrayEventHandler", xiv::exd::Language::none ); - m_AttackTypeDat = setupDatAccess( "AttackType", xiv::exd::Language::en ); - m_BacklightColorDat = setupDatAccess( "BacklightColor", xiv::exd::Language::none ); - m_BallistaDat = setupDatAccess( "Ballista", xiv::exd::Language::none ); - m_BalloonDat = setupDatAccess( "Balloon", xiv::exd::Language::en ); - m_BaseParamDat = setupDatAccess( "BaseParam", xiv::exd::Language::en ); - m_BattleLeveDat = setupDatAccess( "BattleLeve", xiv::exd::Language::none ); - m_BattleLeveRuleDat = setupDatAccess( "BattleLeveRule", xiv::exd::Language::none ); - m_BeastRankBonusDat = setupDatAccess( "BeastRankBonus", xiv::exd::Language::none ); - m_BeastReputationRankDat = setupDatAccess( "BeastReputationRank", xiv::exd::Language::en ); - m_BeastTribeDat = setupDatAccess( "BeastTribe", xiv::exd::Language::en ); - m_BehaviorDat = setupDatAccess( "Behavior", xiv::exd::Language::none ); - m_BehaviorPathDat = setupDatAccess( "BehaviorPath", xiv::exd::Language::none ); - m_BenchmarkOverrideEquipmentDat = setupDatAccess( "BenchmarkOverrideEquipment", xiv::exd::Language::none ); - m_BGMDat = setupDatAccess( "BGM", xiv::exd::Language::none ); - m_BGMFadeDat = setupDatAccess( "BGMFade", xiv::exd::Language::none ); - m_BGMFadeTypeDat = setupDatAccess( "BGMFadeType", xiv::exd::Language::none ); - m_BGMSceneDat = setupDatAccess( "BGMScene", xiv::exd::Language::none ); - m_BGMSituationDat = setupDatAccess( "BGMSituation", xiv::exd::Language::none ); - m_BGMSwitchDat = setupDatAccess( "BGMSwitch", xiv::exd::Language::none ); - m_BGMSystemDefineDat = setupDatAccess( "BGMSystemDefine", xiv::exd::Language::none ); - m_BNpcAnnounceIconDat = setupDatAccess( "BNpcAnnounceIcon", xiv::exd::Language::none ); - m_BNpcBaseDat = setupDatAccess( "BNpcBase", xiv::exd::Language::none ); - m_BNpcCustomizeDat = setupDatAccess( "BNpcCustomize", xiv::exd::Language::none ); - m_BNpcNameDat = setupDatAccess( "BNpcName", xiv::exd::Language::en ); - m_BNpcPartsDat = setupDatAccess( "BNpcParts", xiv::exd::Language::none ); - m_BNpcStateDat = setupDatAccess( "BNpcState", xiv::exd::Language::none ); - m_BuddyDat = setupDatAccess( "Buddy", xiv::exd::Language::none ); - m_BuddyActionDat = setupDatAccess( "BuddyAction", xiv::exd::Language::en ); - m_BuddyEquipDat = setupDatAccess( "BuddyEquip", xiv::exd::Language::en ); - m_BuddyItemDat = setupDatAccess( "BuddyItem", xiv::exd::Language::none ); - m_BuddyRankDat = setupDatAccess( "BuddyRank", xiv::exd::Language::none ); - m_BuddySkillDat = setupDatAccess( "BuddySkill", xiv::exd::Language::none ); - m_CabinetDat = setupDatAccess( "Cabinet", xiv::exd::Language::none ); - m_CabinetCategoryDat = setupDatAccess( "CabinetCategory", xiv::exd::Language::none ); - m_CalendarDat = setupDatAccess( "Calendar", xiv::exd::Language::none ); - m_CarryDat = setupDatAccess( "Carry", xiv::exd::Language::none ); - m_ChannelingDat = setupDatAccess( "Channeling", xiv::exd::Language::none ); - m_CharaMakeClassEquipDat = setupDatAccess( "CharaMakeClassEquip", xiv::exd::Language::none ); - m_CharaMakeCustomizeDat = setupDatAccess( "CharaMakeCustomize", xiv::exd::Language::none ); - m_CharaMakeNameDat = setupDatAccess( "CharaMakeName", xiv::exd::Language::en ); - m_CharaMakeTypeDat = setupDatAccess( "CharaMakeType", xiv::exd::Language::en ); - m_ChocoboRaceDat = setupDatAccess( "ChocoboRace", xiv::exd::Language::none ); - m_ChocoboRaceAbilityDat = setupDatAccess( "ChocoboRaceAbility", xiv::exd::Language::en ); - m_ChocoboRaceAbilityTypeDat = setupDatAccess( "ChocoboRaceAbilityType", xiv::exd::Language::none ); - m_ChocoboRaceItemDat = setupDatAccess( "ChocoboRaceItem", xiv::exd::Language::en ); - m_ChocoboRaceRankDat = setupDatAccess( "ChocoboRaceRank", xiv::exd::Language::none ); - m_ChocoboRaceStatusDat = setupDatAccess( "ChocoboRaceStatus", xiv::exd::Language::none ); - m_ChocoboRaceTerritoryDat = setupDatAccess( "ChocoboRaceTerritory", xiv::exd::Language::none ); - m_ChocoboRaceTutorialDat = setupDatAccess( "ChocoboRaceTutorial", xiv::exd::Language::none ); - m_ChocoboRaceWeatherDat = setupDatAccess( "ChocoboRaceWeather", xiv::exd::Language::none ); - m_ChocoboTaxiDat = setupDatAccess( "ChocoboTaxi", xiv::exd::Language::none ); - m_ChocoboTaxiStandDat = setupDatAccess( "ChocoboTaxiStand", xiv::exd::Language::en ); - m_CircleActivityDat = setupDatAccess( "CircleActivity", xiv::exd::Language::en ); - m_ClassJobDat = setupDatAccess( "ClassJob", xiv::exd::Language::en ); - m_ClassJobCategoryDat = setupDatAccess( "ClassJobCategory", xiv::exd::Language::en ); - m_CollectablesShopDat = setupDatAccess( "CollectablesShop", xiv::exd::Language::en ); - m_CollectablesShopItemDat = setupDatAccess( "CollectablesShopItem", xiv::exd::Language::none ); - m_CollectablesShopItemGroupDat = setupDatAccess( "CollectablesShopItemGroup", xiv::exd::Language::en ); - m_CollectablesShopRefineDat = setupDatAccess( "CollectablesShopRefine", xiv::exd::Language::none ); - m_CollectablesShopRewardItemDat = setupDatAccess( "CollectablesShopRewardItem", xiv::exd::Language::none ); - m_CollectablesShopRewardScripDat = setupDatAccess( "CollectablesShopRewardScrip", xiv::exd::Language::none ); - m_CompanionDat = setupDatAccess( "Companion", xiv::exd::Language::en ); - m_CompanionMoveDat = setupDatAccess( "CompanionMove", xiv::exd::Language::en ); - m_CompanionTransientDat = setupDatAccess( "CompanionTransient", xiv::exd::Language::en ); - m_CompanyActionDat = setupDatAccess( "CompanyAction", xiv::exd::Language::en ); - m_CompanyCraftDraftDat = setupDatAccess( "CompanyCraftDraft", xiv::exd::Language::en ); - m_CompanyCraftDraftCategoryDat = setupDatAccess( "CompanyCraftDraftCategory", xiv::exd::Language::en ); - m_CompanyCraftManufactoryStateDat = setupDatAccess( "CompanyCraftManufactoryState", xiv::exd::Language::en ); - m_CompanyCraftPartDat = setupDatAccess( "CompanyCraftPart", xiv::exd::Language::none ); - m_CompanyCraftProcessDat = setupDatAccess( "CompanyCraftProcess", xiv::exd::Language::none ); - m_CompanyCraftSequenceDat = setupDatAccess( "CompanyCraftSequence", xiv::exd::Language::none ); - m_CompanyCraftSupplyItemDat = setupDatAccess( "CompanyCraftSupplyItem", xiv::exd::Language::none ); - m_CompanyCraftTypeDat = setupDatAccess( "CompanyCraftType", xiv::exd::Language::en ); - m_CompanyLeveDat = setupDatAccess( "CompanyLeve", xiv::exd::Language::none ); - m_CompanyLeveRuleDat = setupDatAccess( "CompanyLeveRule", xiv::exd::Language::none ); - m_CompleteJournalDat = setupDatAccess( "CompleteJournal", xiv::exd::Language::en ); - m_CompleteJournalCategoryDat = setupDatAccess( "CompleteJournalCategory", xiv::exd::Language::none ); - m_CompletionDat = setupDatAccess( "Completion", xiv::exd::Language::en ); - m_ConditionDat = setupDatAccess( "Condition", xiv::exd::Language::none ); - m_ConfigKeyDat = setupDatAccess( "ConfigKey", xiv::exd::Language::en ); - m_ContentCloseCycleDat = setupDatAccess( "ContentCloseCycle", xiv::exd::Language::none ); - m_ContentExActionDat = setupDatAccess( "ContentExAction", xiv::exd::Language::none ); - m_ContentFinderConditionDat = setupDatAccess( "ContentFinderCondition", xiv::exd::Language::en ); - m_ContentFinderConditionTransientDat = setupDatAccess( "ContentFinderConditionTransient", xiv::exd::Language::en ); - m_ContentGaugeDat = setupDatAccess( "ContentGauge", xiv::exd::Language::en ); - m_ContentGaugeColorDat = setupDatAccess( "ContentGaugeColor", xiv::exd::Language::none ); - m_ContentMemberTypeDat = setupDatAccess( "ContentMemberType", xiv::exd::Language::none ); - m_ContentNpcTalkDat = setupDatAccess( "ContentNpcTalk", xiv::exd::Language::none ); - m_ContentRandomSelectDat = setupDatAccess( "ContentRandomSelect", xiv::exd::Language::none ); - m_ContentRouletteDat = setupDatAccess( "ContentRoulette", xiv::exd::Language::en ); - m_ContentRouletteOpenRuleDat = setupDatAccess( "ContentRouletteOpenRule", xiv::exd::Language::none ); - m_ContentRouletteRoleBonusDat = setupDatAccess( "ContentRouletteRoleBonus", xiv::exd::Language::none ); - m_ContentsNoteDat = setupDatAccess( "ContentsNote", xiv::exd::Language::en ); - m_ContentsTutorialDat = setupDatAccess( "ContentsTutorial", xiv::exd::Language::en ); - m_ContentsTutorialPageDat = setupDatAccess( "ContentsTutorialPage", xiv::exd::Language::en ); - m_ContentTalkDat = setupDatAccess( "ContentTalk", xiv::exd::Language::en ); - m_ContentTalkParamDat = setupDatAccess( "ContentTalkParam", xiv::exd::Language::none ); - m_ContentTypeDat = setupDatAccess( "ContentType", xiv::exd::Language::en ); - m_CraftActionDat = setupDatAccess( "CraftAction", xiv::exd::Language::en ); - m_CraftLeveDat = setupDatAccess( "CraftLeve", xiv::exd::Language::none ); - m_CraftLevelDifferenceDat = setupDatAccess( "CraftLevelDifference", xiv::exd::Language::none ); - m_CraftLeveTalkDat = setupDatAccess( "CraftLeveTalk", xiv::exd::Language::en ); - m_CraftTypeDat = setupDatAccess( "CraftType", xiv::exd::Language::en ); - m_CreditDat = setupDatAccess( "Credit", xiv::exd::Language::none ); - m_CreditBackImageDat = setupDatAccess( "CreditBackImage", xiv::exd::Language::none ); - m_CreditCastDat = setupDatAccess( "CreditCast", xiv::exd::Language::en ); - m_CreditListDat = setupDatAccess( "CreditList", xiv::exd::Language::none ); - m_CreditListTextDat = setupDatAccess( "CreditListText", xiv::exd::Language::en ); - m_CustomTalkDat = setupDatAccess( "CustomTalk", xiv::exd::Language::en ); - m_CustomTalkNestHandlersDat = setupDatAccess( "CustomTalkNestHandlers", xiv::exd::Language::none ); - m_CutsceneDat = setupDatAccess( "Cutscene", xiv::exd::Language::none ); - m_CutSceneIncompQuestDat = setupDatAccess( "CutSceneIncompQuest", xiv::exd::Language::none ); - m_CutsceneMotionDat = setupDatAccess( "CutsceneMotion", xiv::exd::Language::none ); - m_CutsceneWorkIndexDat = setupDatAccess( "CutsceneWorkIndex", xiv::exd::Language::none ); - m_CutScreenImageDat = setupDatAccess( "CutScreenImage", xiv::exd::Language::none ); - m_CycleTimeDat = setupDatAccess( "CycleTime", xiv::exd::Language::none ); - m_DailySupplyItemDat = setupDatAccess( "DailySupplyItem", xiv::exd::Language::none ); - m_DawnContentDat = setupDatAccess( "DawnContent", xiv::exd::Language::none ); - m_DawnGrowMemberDat = setupDatAccess( "DawnGrowMember", xiv::exd::Language::none ); - m_DawnMemberUIParamDat = setupDatAccess( "DawnMemberUIParam", xiv::exd::Language::en ); - m_DawnQuestAnnounceDat = setupDatAccess( "DawnQuestAnnounce", xiv::exd::Language::none ); - m_DawnQuestMemberDat = setupDatAccess( "DawnQuestMember", xiv::exd::Language::none ); - m_DeepDungeonDat = setupDatAccess( "DeepDungeon", xiv::exd::Language::en ); - m_DeepDungeonBanDat = setupDatAccess( "DeepDungeonBan", xiv::exd::Language::none ); - m_DeepDungeonDangerDat = setupDatAccess( "DeepDungeonDanger", xiv::exd::Language::none ); - m_DeepDungeonEquipmentDat = setupDatAccess( "DeepDungeonEquipment", xiv::exd::Language::en ); - m_DeepDungeonFloorEffectUIDat = setupDatAccess( "DeepDungeonFloorEffectUI", xiv::exd::Language::en ); - m_DeepDungeonItemDat = setupDatAccess( "DeepDungeonItem", xiv::exd::Language::en ); - m_DeepDungeonLayerDat = setupDatAccess( "DeepDungeonLayer", xiv::exd::Language::none ); - m_DeepDungeonMagicStoneDat = setupDatAccess( "DeepDungeonMagicStone", xiv::exd::Language::en ); - m_DeepDungeonMap5XDat = setupDatAccess( "DeepDungeonMap5X", xiv::exd::Language::none ); - m_DeepDungeonRoomDat = setupDatAccess( "DeepDungeonRoom", xiv::exd::Language::none ); - m_DeepDungeonStatusDat = setupDatAccess( "DeepDungeonStatus", xiv::exd::Language::none ); - m_DefaultTalkDat = setupDatAccess( "DefaultTalk", xiv::exd::Language::en ); - m_DefaultTalkLipSyncTypeDat = setupDatAccess( "DefaultTalkLipSyncType", xiv::exd::Language::none ); - m_DeliveryQuestDat = setupDatAccess( "DeliveryQuest", xiv::exd::Language::none ); - m_DescriptionDat = setupDatAccess( "Description", xiv::exd::Language::en ); - m_DescriptionPageDat = setupDatAccess( "DescriptionPage", xiv::exd::Language::none ); - m_DescriptionSectionDat = setupDatAccess( "DescriptionSection", xiv::exd::Language::none ); - m_DescriptionStringDat = setupDatAccess( "DescriptionString", xiv::exd::Language::en ); - m_DisposalShopDat = setupDatAccess( "DisposalShop", xiv::exd::Language::en ); - m_DisposalShopFilterTypeDat = setupDatAccess( "DisposalShopFilterType", xiv::exd::Language::en ); - m_DisposalShopItemDat = setupDatAccess( "DisposalShopItem", xiv::exd::Language::none ); - m_DpsChallengeDat = setupDatAccess( "DpsChallenge", xiv::exd::Language::en ); - m_DpsChallengeOfficerDat = setupDatAccess( "DpsChallengeOfficer", xiv::exd::Language::none ); - m_DpsChallengeTransientDat = setupDatAccess( "DpsChallengeTransient", xiv::exd::Language::none ); - m_DynamicEventDat = setupDatAccess( "DynamicEvent", xiv::exd::Language::en ); - m_DynamicEventEnemyTypeDat = setupDatAccess( "DynamicEventEnemyType", xiv::exd::Language::en ); - m_DynamicEventSingleBattleDat = setupDatAccess( "DynamicEventSingleBattle", xiv::exd::Language::en ); - m_DynamicEventTypeDat = setupDatAccess( "DynamicEventType", xiv::exd::Language::none ); - m_EmjAddonDat = setupDatAccess( "EmjAddon", xiv::exd::Language::en ); - m_EmjDaniDat = setupDatAccess( "EmjDani", xiv::exd::Language::none ); - m_EmoteDat = setupDatAccess( "Emote", xiv::exd::Language::en ); - m_EmoteCategoryDat = setupDatAccess( "EmoteCategory", xiv::exd::Language::en ); - m_EmoteModeDat = setupDatAccess( "EmoteMode", xiv::exd::Language::none ); - m_ENpcBaseDat = setupDatAccess( "ENpcBase", xiv::exd::Language::none ); - m_ENpcDressUpDat = setupDatAccess( "ENpcDressUp", xiv::exd::Language::none ); - m_ENpcDressUpDressDat = setupDatAccess( "ENpcDressUpDress", xiv::exd::Language::none ); - m_ENpcResidentDat = setupDatAccess( "ENpcResident", xiv::exd::Language::en ); - m_EObjDat = setupDatAccess( "EObj", xiv::exd::Language::none ); - m_EObjNameDat = setupDatAccess( "EObjName", xiv::exd::Language::en ); - m_EquipRaceCategoryDat = setupDatAccess( "EquipRaceCategory", xiv::exd::Language::none ); - m_EquipSlotCategoryDat = setupDatAccess( "EquipSlotCategory", xiv::exd::Language::none ); - m_EurekaAetherItemDat = setupDatAccess( "EurekaAetherItem", xiv::exd::Language::en ); - m_EurekaAethernetDat = setupDatAccess( "EurekaAethernet", xiv::exd::Language::none ); - m_EurekaGrowDataDat = setupDatAccess( "EurekaGrowData", xiv::exd::Language::none ); - m_EurekaLogosMixerProbabilityDat = setupDatAccess( "EurekaLogosMixerProbability", xiv::exd::Language::none ); - m_EurekaMagiaActionDat = setupDatAccess( "EurekaMagiaAction", xiv::exd::Language::none ); - m_EurekaMagiciteItemDat = setupDatAccess( "EurekaMagiciteItem", xiv::exd::Language::none ); - m_EurekaMagiciteItemTypeDat = setupDatAccess( "EurekaMagiciteItemType", xiv::exd::Language::en ); - m_EurekaSphereElementAdjustDat = setupDatAccess( "EurekaSphereElementAdjust", xiv::exd::Language::none ); - m_EventActionDat = setupDatAccess( "EventAction", xiv::exd::Language::en ); - m_EventCustomIconTypeDat = setupDatAccess( "EventCustomIconType", xiv::exd::Language::none ); - m_EventIconPriorityDat = setupDatAccess( "EventIconPriority", xiv::exd::Language::none ); - m_EventIconTypeDat = setupDatAccess( "EventIconType", xiv::exd::Language::none ); - m_EventItemDat = setupDatAccess( "EventItem", xiv::exd::Language::en ); - m_EventItemCastTimelineDat = setupDatAccess( "EventItemCastTimeline", xiv::exd::Language::none ); - m_EventItemHelpDat = setupDatAccess( "EventItemHelp", xiv::exd::Language::en ); - m_EventItemTimelineDat = setupDatAccess( "EventItemTimeline", xiv::exd::Language::none ); - m_EventSystemDefineDat = setupDatAccess( "EventSystemDefine", xiv::exd::Language::none ); - m_ExportedGatheringPointDat = setupDatAccess( "ExportedGatheringPoint", xiv::exd::Language::none ); - m_ExportedSGDat = setupDatAccess( "ExportedSG", xiv::exd::Language::none ); - m_ExVersionDat = setupDatAccess( "ExVersion", xiv::exd::Language::en ); - m_FateDat = setupDatAccess( "Fate", xiv::exd::Language::en ); - m_FateEventDat = setupDatAccess( "FateEvent", xiv::exd::Language::en ); - m_FateModeDat = setupDatAccess( "FateMode", xiv::exd::Language::none ); - m_FateProgressUIDat = setupDatAccess( "FateProgressUI", xiv::exd::Language::none ); - m_FateTokenTypeDat = setupDatAccess( "FateTokenType", xiv::exd::Language::none ); - m_FCActivityDat = setupDatAccess( "FCActivity", xiv::exd::Language::en ); - m_FCActivityCategoryDat = setupDatAccess( "FCActivityCategory", xiv::exd::Language::en ); - m_FCAuthorityDat = setupDatAccess( "FCAuthority", xiv::exd::Language::en ); - m_FCAuthorityCategoryDat = setupDatAccess( "FCAuthorityCategory", xiv::exd::Language::en ); - m_FCChestNameDat = setupDatAccess( "FCChestName", xiv::exd::Language::en ); - m_FCCrestSymbolDat = setupDatAccess( "FCCrestSymbol", xiv::exd::Language::none ); - m_FccShopDat = setupDatAccess( "FccShop", xiv::exd::Language::en ); - m_FCHierarchyDat = setupDatAccess( "FCHierarchy", xiv::exd::Language::en ); - m_FCProfileDat = setupDatAccess( "FCProfile", xiv::exd::Language::en ); - m_FCRankDat = setupDatAccess( "FCRank", xiv::exd::Language::none ); - m_FCReputationDat = setupDatAccess( "FCReputation", xiv::exd::Language::en ); - m_FCRightsDat = setupDatAccess( "FCRights", xiv::exd::Language::en ); - m_FestivalDat = setupDatAccess( "Festival", xiv::exd::Language::none ); - m_FieldMarkerDat = setupDatAccess( "FieldMarker", xiv::exd::Language::en ); - m_FishingRecordTypeDat = setupDatAccess( "FishingRecordType", xiv::exd::Language::none ); - m_FishingRecordTypeTransientDat = setupDatAccess( "FishingRecordTypeTransient", xiv::exd::Language::none ); - m_FishingSpotDat = setupDatAccess( "FishingSpot", xiv::exd::Language::en ); - m_FishParameterDat = setupDatAccess( "FishParameter", xiv::exd::Language::en ); - m_Frontline03Dat = setupDatAccess( "Frontline03", xiv::exd::Language::none ); - m_Frontline04Dat = setupDatAccess( "Frontline04", xiv::exd::Language::none ); - m_FurnitureCatalogCategoryDat = setupDatAccess( "FurnitureCatalogCategory", xiv::exd::Language::en ); - m_FurnitureCatalogItemListDat = setupDatAccess( "FurnitureCatalogItemList", xiv::exd::Language::none ); - m_GardeningSeedDat = setupDatAccess( "GardeningSeed", xiv::exd::Language::none ); - m_GatheringConditionDat = setupDatAccess( "GatheringCondition", xiv::exd::Language::en ); - m_GatheringExpDat = setupDatAccess( "GatheringExp", xiv::exd::Language::none ); - m_GatheringItemDat = setupDatAccess( "GatheringItem", xiv::exd::Language::none ); - m_GatheringItemLevelConvertTableDat = setupDatAccess( "GatheringItemLevelConvertTable", xiv::exd::Language::none ); - m_GatheringItemPointDat = setupDatAccess( "GatheringItemPoint", xiv::exd::Language::none ); - m_GatheringLeveDat = setupDatAccess( "GatheringLeve", xiv::exd::Language::none ); - m_GatheringLeveRouteDat = setupDatAccess( "GatheringLeveRoute", xiv::exd::Language::none ); - m_GatheringLeveRuleDat = setupDatAccess( "GatheringLeveRule", xiv::exd::Language::none ); - m_GatheringNotebookListDat = setupDatAccess( "GatheringNotebookList", xiv::exd::Language::none ); - m_GatheringPointDat = setupDatAccess( "GatheringPoint", xiv::exd::Language::none ); - m_GatheringPointBaseDat = setupDatAccess( "GatheringPointBase", xiv::exd::Language::none ); - m_GatheringPointBonusDat = setupDatAccess( "GatheringPointBonus", xiv::exd::Language::none ); - m_GatheringPointBonusTypeDat = setupDatAccess( "GatheringPointBonusType", xiv::exd::Language::en ); - m_GatheringPointNameDat = setupDatAccess( "GatheringPointName", xiv::exd::Language::en ); - m_GatheringPointTransientDat = setupDatAccess( "GatheringPointTransient", xiv::exd::Language::none ); - m_GatheringRarePopTimeTableDat = setupDatAccess( "GatheringRarePopTimeTable", xiv::exd::Language::none ); - m_GatheringSubCategoryDat = setupDatAccess( "GatheringSubCategory", xiv::exd::Language::en ); - m_GatheringTypeDat = setupDatAccess( "GatheringType", xiv::exd::Language::en ); - m_GcArmyCaptureTacticsDat = setupDatAccess( "GcArmyCaptureTactics", xiv::exd::Language::none ); - m_GcArmyEquipPresetDat = setupDatAccess( "GcArmyEquipPreset", xiv::exd::Language::none ); - m_GcArmyExpeditionDat = setupDatAccess( "GcArmyExpedition", xiv::exd::Language::en ); - m_GcArmyExpeditionMemberBonusDat = setupDatAccess( "GcArmyExpeditionMemberBonus", xiv::exd::Language::none ); - m_GcArmyExpeditionTypeDat = setupDatAccess( "GcArmyExpeditionType", xiv::exd::Language::en ); - m_GcArmyMemberGrowDat = setupDatAccess( "GcArmyMemberGrow", xiv::exd::Language::none ); - m_GcArmyTrainingDat = setupDatAccess( "GcArmyTraining", xiv::exd::Language::en ); - m_GCRankGridaniaFemaleTextDat = setupDatAccess( "GCRankGridaniaFemaleText", xiv::exd::Language::en ); - m_GCRankGridaniaMaleTextDat = setupDatAccess( "GCRankGridaniaMaleText", xiv::exd::Language::en ); - m_GCRankLimsaFemaleTextDat = setupDatAccess( "GCRankLimsaFemaleText", xiv::exd::Language::en ); - m_GCRankLimsaMaleTextDat = setupDatAccess( "GCRankLimsaMaleText", xiv::exd::Language::en ); - m_GCRankUldahFemaleTextDat = setupDatAccess( "GCRankUldahFemaleText", xiv::exd::Language::en ); - m_GCRankUldahMaleTextDat = setupDatAccess( "GCRankUldahMaleText", xiv::exd::Language::en ); - m_GCScripShopCategoryDat = setupDatAccess( "GCScripShopCategory", xiv::exd::Language::none ); - m_GCScripShopItemDat = setupDatAccess( "GCScripShopItem", xiv::exd::Language::none ); - m_GCShopDat = setupDatAccess( "GCShop", xiv::exd::Language::none ); - m_GCShopItemCategoryDat = setupDatAccess( "GCShopItemCategory", xiv::exd::Language::en ); - m_GCSupplyDutyDat = setupDatAccess( "GCSupplyDuty", xiv::exd::Language::none ); - m_GCSupplyDutyRewardDat = setupDatAccess( "GCSupplyDutyReward", xiv::exd::Language::none ); - m_GeneralActionDat = setupDatAccess( "GeneralAction", xiv::exd::Language::en ); - m_GFATEDat = setupDatAccess( "GFATE", xiv::exd::Language::none ); - m_GFateClimbing2Dat = setupDatAccess( "GFateClimbing2", xiv::exd::Language::none ); - m_GFateClimbing2ContentDat = setupDatAccess( "GFateClimbing2Content", xiv::exd::Language::none ); - m_GFateClimbing2TotemTypeDat = setupDatAccess( "GFateClimbing2TotemType", xiv::exd::Language::none ); - m_GFateRideShootingDat = setupDatAccess( "GFateRideShooting", xiv::exd::Language::none ); - m_GilShopDat = setupDatAccess( "GilShop", xiv::exd::Language::en ); - m_GilShopItemDat = setupDatAccess( "GilShopItem", xiv::exd::Language::none ); - m_GimmickAccessorDat = setupDatAccess( "GimmickAccessor", xiv::exd::Language::none ); - m_GimmickJumpDat = setupDatAccess( "GimmickJump", xiv::exd::Language::none ); - m_GimmickRectDat = setupDatAccess( "GimmickRect", xiv::exd::Language::none ); - m_GoldSaucerArcadeMachineDat = setupDatAccess( "GoldSaucerArcadeMachine", xiv::exd::Language::en ); - m_GoldSaucerTextDataDat = setupDatAccess( "GoldSaucerTextData", xiv::exd::Language::en ); - m_GrandCompanyDat = setupDatAccess( "GrandCompany", xiv::exd::Language::en ); - m_GrandCompanyRankDat = setupDatAccess( "GrandCompanyRank", xiv::exd::Language::none ); - m_GroupPoseFrameDat = setupDatAccess( "GroupPoseFrame", xiv::exd::Language::en ); - m_GroupPoseStampDat = setupDatAccess( "GroupPoseStamp", xiv::exd::Language::en ); - m_GroupPoseStampCategoryDat = setupDatAccess( "GroupPoseStampCategory", xiv::exd::Language::en ); - m_GuardianDeityDat = setupDatAccess( "GuardianDeity", xiv::exd::Language::en ); - m_GuideDat = setupDatAccess( "Guide", xiv::exd::Language::none ); - m_GuidePageDat = setupDatAccess( "GuidePage", xiv::exd::Language::none ); - m_GuidePageStringDat = setupDatAccess( "GuidePageString", xiv::exd::Language::en ); - m_GuideTitleDat = setupDatAccess( "GuideTitle", xiv::exd::Language::en ); - m_GuildleveAssignmentDat = setupDatAccess( "GuildleveAssignment", xiv::exd::Language::en ); - m_GuildleveAssignmentCategoryDat = setupDatAccess( "GuildleveAssignmentCategory", xiv::exd::Language::none ); - m_GuildleveAssignmentTalkDat = setupDatAccess( "GuildleveAssignmentTalk", xiv::exd::Language::en ); - m_GuildOrderDat = setupDatAccess( "GuildOrder", xiv::exd::Language::en ); - m_GuildOrderGuideDat = setupDatAccess( "GuildOrderGuide", xiv::exd::Language::none ); - m_GuildOrderOfficerDat = setupDatAccess( "GuildOrderOfficer", xiv::exd::Language::none ); - m_HairMakeTypeDat = setupDatAccess( "HairMakeType", xiv::exd::Language::none ); - m_HouseRetainerPoseDat = setupDatAccess( "HouseRetainerPose", xiv::exd::Language::none ); - m_HousingAethernetDat = setupDatAccess( "HousingAethernet", xiv::exd::Language::none ); - m_HousingAppealDat = setupDatAccess( "HousingAppeal", xiv::exd::Language::en ); - m_HousingEmploymentNpcListDat = setupDatAccess( "HousingEmploymentNpcList", xiv::exd::Language::none ); - m_HousingEmploymentNpcRaceDat = setupDatAccess( "HousingEmploymentNpcRace", xiv::exd::Language::en ); - m_HousingExteriorDat = setupDatAccess( "HousingExterior", xiv::exd::Language::none ); - m_HousingFurnitureDat = setupDatAccess( "HousingFurniture", xiv::exd::Language::none ); - m_HousingLandSetDat = setupDatAccess( "HousingLandSet", xiv::exd::Language::none ); - m_HousingMapMarkerInfoDat = setupDatAccess( "HousingMapMarkerInfo", xiv::exd::Language::none ); - m_HousingMerchantPoseDat = setupDatAccess( "HousingMerchantPose", xiv::exd::Language::en ); - m_HousingPlacementDat = setupDatAccess( "HousingPlacement", xiv::exd::Language::en ); - m_HousingPresetDat = setupDatAccess( "HousingPreset", xiv::exd::Language::en ); - m_HousingUnitedExteriorDat = setupDatAccess( "HousingUnitedExterior", xiv::exd::Language::none ); - m_HousingYardObjectDat = setupDatAccess( "HousingYardObject", xiv::exd::Language::none ); - m_HowToDat = setupDatAccess( "HowTo", xiv::exd::Language::en ); - m_HowToCategoryDat = setupDatAccess( "HowToCategory", xiv::exd::Language::en ); - m_HowToPageDat = setupDatAccess( "HowToPage", xiv::exd::Language::en ); - m_HugeCraftworksNpcDat = setupDatAccess( "HugeCraftworksNpc", xiv::exd::Language::en ); - m_HugeCraftworksRankDat = setupDatAccess( "HugeCraftworksRank", xiv::exd::Language::none ); - m_HWDAnnounceDat = setupDatAccess( "HWDAnnounce", xiv::exd::Language::en ); - m_HWDCrafterSupplyDat = setupDatAccess( "HWDCrafterSupply", xiv::exd::Language::none ); - m_HWDCrafterSupplyRewardDat = setupDatAccess( "HWDCrafterSupplyReward", xiv::exd::Language::none ); - m_HWDCrafterSupplyTermDat = setupDatAccess( "HWDCrafterSupplyTerm", xiv::exd::Language::en ); - m_HWDDevLayerControlDat = setupDatAccess( "HWDDevLayerControl", xiv::exd::Language::none ); - m_HWDDevLevelUIDat = setupDatAccess( "HWDDevLevelUI", xiv::exd::Language::none ); - m_HWDDevLivelyDat = setupDatAccess( "HWDDevLively", xiv::exd::Language::none ); - m_HWDDevProgressDat = setupDatAccess( "HWDDevProgress", xiv::exd::Language::none ); - m_HWDGathereInspectTermDat = setupDatAccess( "HWDGathereInspectTerm", xiv::exd::Language::en ); - m_HWDGathererInspectionDat = setupDatAccess( "HWDGathererInspection", xiv::exd::Language::none ); - m_HWDGathererInspectionRewardDat = setupDatAccess( "HWDGathererInspectionReward", xiv::exd::Language::none ); - m_HWDInfoBoardArticleDat = setupDatAccess( "HWDInfoBoardArticle", xiv::exd::Language::en ); - m_HWDInfoBoardArticleTransientDat = setupDatAccess( "HWDInfoBoardArticleTransient", xiv::exd::Language::en ); - m_HWDInfoBoardArticleTypeDat = setupDatAccess( "HWDInfoBoardArticleType", xiv::exd::Language::en ); - m_HWDLevelChangeDeceptionDat = setupDatAccess( "HWDLevelChangeDeception", xiv::exd::Language::none ); - m_HWDSharedGroupDat = setupDatAccess( "HWDSharedGroup", xiv::exd::Language::none ); - m_HWDSharedGroupControlParamDat = setupDatAccess( "HWDSharedGroupControlParam", xiv::exd::Language::none ); - m_IKDContentBonusDat = setupDatAccess( "IKDContentBonus", xiv::exd::Language::en ); - m_IKDFishParamDat = setupDatAccess( "IKDFishParam", xiv::exd::Language::none ); - m_IKDRouteDat = setupDatAccess( "IKDRoute", xiv::exd::Language::en ); - m_IKDRouteTableDat = setupDatAccess( "IKDRouteTable", xiv::exd::Language::none ); - m_IKDSpotDat = setupDatAccess( "IKDSpot", xiv::exd::Language::none ); - m_InclusionShopDat = setupDatAccess( "InclusionShop", xiv::exd::Language::en ); - m_InclusionShopCategoryDat = setupDatAccess( "InclusionShopCategory", xiv::exd::Language::en ); - m_InclusionShopSeriesDat = setupDatAccess( "InclusionShopSeries", xiv::exd::Language::none ); - m_IndividualWeatherDat = setupDatAccess( "IndividualWeather", xiv::exd::Language::none ); - m_InstanceContentDat = setupDatAccess( "InstanceContent", xiv::exd::Language::none ); - m_InstanceContentBuffDat = setupDatAccess( "InstanceContentBuff", xiv::exd::Language::none ); - m_InstanceContentCSBonusDat = setupDatAccess( "InstanceContentCSBonus", xiv::exd::Language::none ); - m_InstanceContentGuideDat = setupDatAccess( "InstanceContentGuide", xiv::exd::Language::none ); - m_InstanceContentTextDataDat = setupDatAccess( "InstanceContentTextData", xiv::exd::Language::en ); - m_ItemDat = setupDatAccess( "Item", xiv::exd::Language::en ); - m_ItemActionDat = setupDatAccess( "ItemAction", xiv::exd::Language::none ); - m_ItemActionTelepoDat = setupDatAccess( "ItemActionTelepo", xiv::exd::Language::none ); - m_ItemBarterCheckDat = setupDatAccess( "ItemBarterCheck", xiv::exd::Language::none ); - m_ItemFoodDat = setupDatAccess( "ItemFood", xiv::exd::Language::none ); - m_ItemLevelDat = setupDatAccess( "ItemLevel", xiv::exd::Language::none ); - m_ItemSearchCategoryDat = setupDatAccess( "ItemSearchCategory", xiv::exd::Language::en ); - m_ItemSeriesDat = setupDatAccess( "ItemSeries", xiv::exd::Language::en ); - m_ItemSortCategoryDat = setupDatAccess( "ItemSortCategory", xiv::exd::Language::none ); - m_ItemSpecialBonusDat = setupDatAccess( "ItemSpecialBonus", xiv::exd::Language::en ); - m_ItemUICategoryDat = setupDatAccess( "ItemUICategory", xiv::exd::Language::en ); - m_JingleDat = setupDatAccess( "Jingle", xiv::exd::Language::none ); - m_JobHudManualDat = setupDatAccess( "JobHudManual", xiv::exd::Language::none ); - m_JobHudManualPriorityDat = setupDatAccess( "JobHudManualPriority", xiv::exd::Language::none ); - m_JournalCategoryDat = setupDatAccess( "JournalCategory", xiv::exd::Language::en ); - m_JournalGenreDat = setupDatAccess( "JournalGenre", xiv::exd::Language::en ); - m_JournalSectionDat = setupDatAccess( "JournalSection", xiv::exd::Language::en ); - m_KnockbackDat = setupDatAccess( "Knockback", xiv::exd::Language::none ); - m_LegacyQuestDat = setupDatAccess( "LegacyQuest", xiv::exd::Language::en ); - m_LeveDat = setupDatAccess( "Leve", xiv::exd::Language::en ); - m_LeveAssignmentTypeDat = setupDatAccess( "LeveAssignmentType", xiv::exd::Language::en ); - m_LeveClientDat = setupDatAccess( "LeveClient", xiv::exd::Language::en ); - m_LevelDat = setupDatAccess( "Level", xiv::exd::Language::none ); - m_LeveRewardItemDat = setupDatAccess( "LeveRewardItem", xiv::exd::Language::none ); - m_LeveRewardItemGroupDat = setupDatAccess( "LeveRewardItemGroup", xiv::exd::Language::none ); - m_LeveStringDat = setupDatAccess( "LeveString", xiv::exd::Language::en ); - m_LeveVfxDat = setupDatAccess( "LeveVfx", xiv::exd::Language::none ); - m_LobbyDat = setupDatAccess( "Lobby", xiv::exd::Language::en ); - m_LogFilterDat = setupDatAccess( "LogFilter", xiv::exd::Language::en ); - m_LogKindDat = setupDatAccess( "LogKind", xiv::exd::Language::en ); - m_LogMessageDat = setupDatAccess( "LogMessage", xiv::exd::Language::en ); - m_LotteryExchangeShopDat = setupDatAccess( "LotteryExchangeShop", xiv::exd::Language::en ); - m_MacroIconDat = setupDatAccess( "MacroIcon", xiv::exd::Language::none ); - m_MacroIconRedirectOldDat = setupDatAccess( "MacroIconRedirectOld", xiv::exd::Language::none ); - m_MainCommandDat = setupDatAccess( "MainCommand", xiv::exd::Language::en ); - m_MainCommandCategoryDat = setupDatAccess( "MainCommandCategory", xiv::exd::Language::en ); - m_ManeuversArmorDat = setupDatAccess( "ManeuversArmor", xiv::exd::Language::en ); - m_MapDat = setupDatAccess( "Map", xiv::exd::Language::none ); - m_MapConditionDat = setupDatAccess( "MapCondition", xiv::exd::Language::none ); - m_MapMarkerDat = setupDatAccess( "MapMarker", xiv::exd::Language::none ); - m_MapMarkerRegionDat = setupDatAccess( "MapMarkerRegion", xiv::exd::Language::none ); - m_MapSymbolDat = setupDatAccess( "MapSymbol", xiv::exd::Language::none ); - m_MarkerDat = setupDatAccess( "Marker", xiv::exd::Language::en ); - m_MateriaDat = setupDatAccess( "Materia", xiv::exd::Language::none ); - m_MateriaJoinRateDat = setupDatAccess( "MateriaJoinRate", xiv::exd::Language::none ); - m_MateriaJoinRateGatherCraftDat = setupDatAccess( "MateriaJoinRateGatherCraft", xiv::exd::Language::none ); - m_MateriaTomestoneRateDat = setupDatAccess( "MateriaTomestoneRate", xiv::exd::Language::none ); - m_MiniGameRADat = setupDatAccess( "MiniGameRA", xiv::exd::Language::none ); - m_MinionRaceDat = setupDatAccess( "MinionRace", xiv::exd::Language::en ); - m_MinionRulesDat = setupDatAccess( "MinionRules", xiv::exd::Language::en ); - m_MinionSkillTypeDat = setupDatAccess( "MinionSkillType", xiv::exd::Language::en ); - m_MobHuntOrderDat = setupDatAccess( "MobHuntOrder", xiv::exd::Language::none ); - m_MobHuntOrderTypeDat = setupDatAccess( "MobHuntOrderType", xiv::exd::Language::none ); - m_MobHuntRewardDat = setupDatAccess( "MobHuntReward", xiv::exd::Language::none ); - m_MobHuntRewardCapDat = setupDatAccess( "MobHuntRewardCap", xiv::exd::Language::none ); - m_MobHuntTargetDat = setupDatAccess( "MobHuntTarget", xiv::exd::Language::none ); - m_ModelCharaDat = setupDatAccess( "ModelChara", xiv::exd::Language::none ); - m_ModelSkeletonDat = setupDatAccess( "ModelSkeleton", xiv::exd::Language::none ); - m_ModelStateDat = setupDatAccess( "ModelState", xiv::exd::Language::none ); - m_MonsterNoteDat = setupDatAccess( "MonsterNote", xiv::exd::Language::en ); - m_MonsterNoteTargetDat = setupDatAccess( "MonsterNoteTarget", xiv::exd::Language::none ); - m_MotionTimelineDat = setupDatAccess( "MotionTimeline", xiv::exd::Language::none ); - m_MotionTimelineBlendTableDat = setupDatAccess( "MotionTimelineBlendTable", xiv::exd::Language::none ); - m_MountDat = setupDatAccess( "Mount", xiv::exd::Language::en ); - m_MountActionDat = setupDatAccess( "MountAction", xiv::exd::Language::none ); - m_MountCustomizeDat = setupDatAccess( "MountCustomize", xiv::exd::Language::none ); - m_MountFlyingConditionDat = setupDatAccess( "MountFlyingCondition", xiv::exd::Language::none ); - m_MountSpeedDat = setupDatAccess( "MountSpeed", xiv::exd::Language::none ); - m_MountTransientDat = setupDatAccess( "MountTransient", xiv::exd::Language::en ); - m_MoveTimelineDat = setupDatAccess( "MoveTimeline", xiv::exd::Language::none ); - m_MoveVfxDat = setupDatAccess( "MoveVfx", xiv::exd::Language::none ); - m_MovieStaffListDat = setupDatAccess( "MovieStaffList", xiv::exd::Language::none ); - m_MovieSubtitleDat = setupDatAccess( "MovieSubtitle", xiv::exd::Language::en ); - m_MovieSubtitle500Dat = setupDatAccess( "MovieSubtitle500", xiv::exd::Language::en ); - m_MovieSubtitleVoyageDat = setupDatAccess( "MovieSubtitleVoyage", xiv::exd::Language::en ); - m_MYCTemporaryItemDat = setupDatAccess( "MYCTemporaryItem", xiv::exd::Language::none ); - m_MYCTemporaryItemUICategoryDat = setupDatAccess( "MYCTemporaryItemUICategory", xiv::exd::Language::en ); - m_MYCWarResultNotebookDat = setupDatAccess( "MYCWarResultNotebook", xiv::exd::Language::en ); - m_NotebookDivisionDat = setupDatAccess( "NotebookDivision", xiv::exd::Language::en ); - m_NotebookDivisionCategoryDat = setupDatAccess( "NotebookDivisionCategory", xiv::exd::Language::en ); - m_NotoriousMonsterDat = setupDatAccess( "NotoriousMonster", xiv::exd::Language::none ); - m_NpcEquipDat = setupDatAccess( "NpcEquip", xiv::exd::Language::none ); - m_NpcYellDat = setupDatAccess( "NpcYell", xiv::exd::Language::en ); - m_OmenDat = setupDatAccess( "Omen", xiv::exd::Language::none ); - m_OnlineStatusDat = setupDatAccess( "OnlineStatus", xiv::exd::Language::en ); - m_OpenContentDat = setupDatAccess( "OpenContent", xiv::exd::Language::none ); - m_OpenContentCandidateNameDat = setupDatAccess( "OpenContentCandidateName", xiv::exd::Language::en ); - m_OpeningDat = setupDatAccess( "Opening", xiv::exd::Language::none ); - m_OrchestrionDat = setupDatAccess( "Orchestrion", xiv::exd::Language::en ); - m_OrchestrionCategoryDat = setupDatAccess( "OrchestrionCategory", xiv::exd::Language::en ); - m_OrchestrionPathDat = setupDatAccess( "OrchestrionPath", xiv::exd::Language::none ); - m_OrchestrionUiparamDat = setupDatAccess( "OrchestrionUiparam", xiv::exd::Language::none ); - m_OrnamentDat = setupDatAccess( "Ornament", xiv::exd::Language::en ); - m_ParamGrowDat = setupDatAccess( "ParamGrow", xiv::exd::Language::none ); - m_PartyContentDat = setupDatAccess( "PartyContent", xiv::exd::Language::none ); - m_PartyContentCutsceneDat = setupDatAccess( "PartyContentCutscene", xiv::exd::Language::none ); - m_PartyContentTextDataDat = setupDatAccess( "PartyContentTextData", xiv::exd::Language::en ); - m_PatchMarkDat = setupDatAccess( "PatchMark", xiv::exd::Language::none ); - m_PerformDat = setupDatAccess( "Perform", xiv::exd::Language::en ); - m_PerformGroupDat = setupDatAccess( "PerformGroup", xiv::exd::Language::none ); - m_PerformTransientDat = setupDatAccess( "PerformTransient", xiv::exd::Language::en ); - m_PetDat = setupDatAccess( "Pet", xiv::exd::Language::en ); - m_PetActionDat = setupDatAccess( "PetAction", xiv::exd::Language::en ); - m_PetMirageDat = setupDatAccess( "PetMirage", xiv::exd::Language::en ); - m_PhysicsGroupDat = setupDatAccess( "PhysicsGroup", xiv::exd::Language::none ); - m_PhysicsWindDat = setupDatAccess( "PhysicsWind", xiv::exd::Language::none ); - m_PictureDat = setupDatAccess( "Picture", xiv::exd::Language::none ); - m_PlaceNameDat = setupDatAccess( "PlaceName", xiv::exd::Language::en ); - m_PlantPotFlowerSeedDat = setupDatAccess( "PlantPotFlowerSeed", xiv::exd::Language::none ); - m_PreHandlerDat = setupDatAccess( "PreHandler", xiv::exd::Language::en ); - m_PresetCameraDat = setupDatAccess( "PresetCamera", xiv::exd::Language::none ); - m_PresetCameraAdjustDat = setupDatAccess( "PresetCameraAdjust", xiv::exd::Language::none ); - m_PublicContentDat = setupDatAccess( "PublicContent", xiv::exd::Language::en ); - m_PublicContentCutsceneDat = setupDatAccess( "PublicContentCutscene", xiv::exd::Language::none ); - m_PublicContentTextDataDat = setupDatAccess( "PublicContentTextData", xiv::exd::Language::en ); - m_PvPActionDat = setupDatAccess( "PvPAction", xiv::exd::Language::none ); - m_PvPActionSortDat = setupDatAccess( "PvPActionSort", xiv::exd::Language::none ); - m_PvPRankDat = setupDatAccess( "PvPRank", xiv::exd::Language::none ); - m_PvPSelectTraitDat = setupDatAccess( "PvPSelectTrait", xiv::exd::Language::en ); - m_PvPTraitDat = setupDatAccess( "PvPTrait", xiv::exd::Language::none ); - m_QuestDat = setupDatAccess( "Quest", xiv::exd::Language::en ); - m_QuestAcceptAdditionConditionDat = setupDatAccess( "QuestAcceptAdditionCondition", xiv::exd::Language::none ); - m_QuestBattleDat = setupDatAccess( "QuestBattle", xiv::exd::Language::none ); - m_QuestChapterDat = setupDatAccess( "QuestChapter", xiv::exd::Language::none ); - m_QuestClassJobRewardDat = setupDatAccess( "QuestClassJobReward", xiv::exd::Language::none ); - m_QuestClassJobSupplyDat = setupDatAccess( "QuestClassJobSupply", xiv::exd::Language::none ); - m_QuestDerivedClassDat = setupDatAccess( "QuestDerivedClass", xiv::exd::Language::none ); - m_QuestEffectDat = setupDatAccess( "QuestEffect", xiv::exd::Language::none ); - m_QuestEffectDefineDat = setupDatAccess( "QuestEffectDefine", xiv::exd::Language::none ); - m_QuestRedoDat = setupDatAccess( "QuestRedo", xiv::exd::Language::none ); - m_QuestRedoChapterUIDat = setupDatAccess( "QuestRedoChapterUI", xiv::exd::Language::en ); - m_QuestRedoChapterUICategoryDat = setupDatAccess( "QuestRedoChapterUICategory", xiv::exd::Language::en ); - m_QuestRedoChapterUITabDat = setupDatAccess( "QuestRedoChapterUITab", xiv::exd::Language::en ); - m_QuestRedoIncompChapterDat = setupDatAccess( "QuestRedoIncompChapter", xiv::exd::Language::none ); - m_QuestRepeatFlagDat = setupDatAccess( "QuestRepeatFlag", xiv::exd::Language::none ); - m_QuestRewardOtherDat = setupDatAccess( "QuestRewardOther", xiv::exd::Language::en ); - m_QuickChatDat = setupDatAccess( "QuickChat", xiv::exd::Language::en ); - m_QuickChatTransientDat = setupDatAccess( "QuickChatTransient", xiv::exd::Language::en ); - m_RaceDat = setupDatAccess( "Race", xiv::exd::Language::en ); - m_RacingChocoboItemDat = setupDatAccess( "RacingChocoboItem", xiv::exd::Language::none ); - m_RacingChocoboNameDat = setupDatAccess( "RacingChocoboName", xiv::exd::Language::en ); - m_RacingChocoboNameCategoryDat = setupDatAccess( "RacingChocoboNameCategory", xiv::exd::Language::en ); - m_RacingChocoboNameInfoDat = setupDatAccess( "RacingChocoboNameInfo", xiv::exd::Language::none ); - m_RacingChocoboParamDat = setupDatAccess( "RacingChocoboParam", xiv::exd::Language::en ); - m_RecastNavimeshDat = setupDatAccess( "RecastNavimesh", xiv::exd::Language::none ); - m_RecipeDat = setupDatAccess( "Recipe", xiv::exd::Language::none ); - m_RecipeLevelTableDat = setupDatAccess( "RecipeLevelTable", xiv::exd::Language::none ); - m_RecipeLookupDat = setupDatAccess( "RecipeLookup", xiv::exd::Language::none ); - m_RecipeNotebookListDat = setupDatAccess( "RecipeNotebookList", xiv::exd::Language::none ); - m_RecommendContentsDat = setupDatAccess( "RecommendContents", xiv::exd::Language::none ); - m_RelicDat = setupDatAccess( "Relic", xiv::exd::Language::none ); - m_Relic3Dat = setupDatAccess( "Relic3", xiv::exd::Language::none ); - m_RelicItemDat = setupDatAccess( "RelicItem", xiv::exd::Language::none ); - m_RelicNoteDat = setupDatAccess( "RelicNote", xiv::exd::Language::none ); - m_RelicNoteCategoryDat = setupDatAccess( "RelicNoteCategory", xiv::exd::Language::en ); - m_ResidentDat = setupDatAccess( "Resident", xiv::exd::Language::none ); - m_ResistanceWeaponAdjustDat = setupDatAccess( "ResistanceWeaponAdjust", xiv::exd::Language::none ); - m_RetainerFortuneRewardRangeDat = setupDatAccess( "RetainerFortuneRewardRange", xiv::exd::Language::none ); - m_RetainerTaskDat = setupDatAccess( "RetainerTask", xiv::exd::Language::none ); - m_RetainerTaskLvRangeDat = setupDatAccess( "RetainerTaskLvRange", xiv::exd::Language::none ); - m_RetainerTaskNormalDat = setupDatAccess( "RetainerTaskNormal", xiv::exd::Language::none ); - m_RetainerTaskParameterDat = setupDatAccess( "RetainerTaskParameter", xiv::exd::Language::none ); - m_RetainerTaskRandomDat = setupDatAccess( "RetainerTaskRandom", xiv::exd::Language::en ); - m_RideShootingDat = setupDatAccess( "RideShooting", xiv::exd::Language::none ); - m_RideShootingTargetTypeDat = setupDatAccess( "RideShootingTargetType", xiv::exd::Language::none ); - m_RideShootingTextDataDat = setupDatAccess( "RideShootingTextData", xiv::exd::Language::en ); - m_RPParameterDat = setupDatAccess( "RPParameter", xiv::exd::Language::none ); - m_SatisfactionArbitrationDat = setupDatAccess( "SatisfactionArbitration", xiv::exd::Language::none ); - m_SatisfactionNpcDat = setupDatAccess( "SatisfactionNpc", xiv::exd::Language::none ); - m_SatisfactionSupplyDat = setupDatAccess( "SatisfactionSupply", xiv::exd::Language::none ); - m_SatisfactionSupplyRewardDat = setupDatAccess( "SatisfactionSupplyReward", xiv::exd::Language::none ); - m_ScenarioTreeDat = setupDatAccess( "ScenarioTree", xiv::exd::Language::none ); - m_ScenarioTreeTipsDat = setupDatAccess( "ScenarioTreeTips", xiv::exd::Language::none ); - m_ScenarioTreeTipsClassQuestDat = setupDatAccess( "ScenarioTreeTipsClassQuest", xiv::exd::Language::none ); - m_ScenarioTypeDat = setupDatAccess( "ScenarioType", xiv::exd::Language::en ); - m_ScreenImageDat = setupDatAccess( "ScreenImage", xiv::exd::Language::none ); - m_SecretRecipeBookDat = setupDatAccess( "SecretRecipeBook", xiv::exd::Language::en ); - m_SkyIsland2MissionDat = setupDatAccess( "SkyIsland2Mission", xiv::exd::Language::en ); - m_SkyIsland2MissionDetailDat = setupDatAccess( "SkyIsland2MissionDetail", xiv::exd::Language::en ); - m_SkyIsland2MissionTypeDat = setupDatAccess( "SkyIsland2MissionType", xiv::exd::Language::none ); - m_SkyIsland2RangeTypeDat = setupDatAccess( "SkyIsland2RangeType", xiv::exd::Language::none ); - m_SnipeTalkDat = setupDatAccess( "SnipeTalk", xiv::exd::Language::en ); - m_SnipeTalkNameDat = setupDatAccess( "SnipeTalkName", xiv::exd::Language::en ); - m_SpearfishingItemDat = setupDatAccess( "SpearfishingItem", xiv::exd::Language::en ); - m_SpearfishingNotebookDat = setupDatAccess( "SpearfishingNotebook", xiv::exd::Language::none ); - m_SpearfishingRecordPageDat = setupDatAccess( "SpearfishingRecordPage", xiv::exd::Language::none ); - m_SpecialShopDat = setupDatAccess( "SpecialShop", xiv::exd::Language::en ); - m_SpecialShopItemCategoryDat = setupDatAccess( "SpecialShopItemCategory", xiv::exd::Language::en ); - m_StainDat = setupDatAccess( "Stain", xiv::exd::Language::en ); - m_StainTransientDat = setupDatAccess( "StainTransient", xiv::exd::Language::none ); - m_StanceChangeDat = setupDatAccess( "StanceChange", xiv::exd::Language::none ); - m_StatusDat = setupDatAccess( "Status", xiv::exd::Language::en ); - m_StatusHitEffectDat = setupDatAccess( "StatusHitEffect", xiv::exd::Language::none ); - m_StatusLoopVFXDat = setupDatAccess( "StatusLoopVFX", xiv::exd::Language::none ); - m_StoryDat = setupDatAccess( "Story", xiv::exd::Language::none ); - m_SubmarineExplorationDat = setupDatAccess( "SubmarineExploration", xiv::exd::Language::en ); - m_SubmarineMapDat = setupDatAccess( "SubmarineMap", xiv::exd::Language::en ); - m_SubmarinePartDat = setupDatAccess( "SubmarinePart", xiv::exd::Language::none ); - m_SubmarineRankDat = setupDatAccess( "SubmarineRank", xiv::exd::Language::none ); - m_SwitchTalkDat = setupDatAccess( "SwitchTalk", xiv::exd::Language::none ); - m_SwitchTalkVariationDat = setupDatAccess( "SwitchTalkVariation", xiv::exd::Language::none ); - m_TerritoryTypeDat = setupDatAccess( "TerritoryType", xiv::exd::Language::none ); - m_TerritoryTypeTransientDat = setupDatAccess( "TerritoryTypeTransient", xiv::exd::Language::none ); - m_TextCommandDat = setupDatAccess( "TextCommand", xiv::exd::Language::en ); - m_TextCommandParamDat = setupDatAccess( "TextCommandParam", xiv::exd::Language::en ); - m_TitleDat = setupDatAccess( "Title", xiv::exd::Language::en ); - m_TomestonesDat = setupDatAccess( "Tomestones", xiv::exd::Language::none ); - m_TomestonesItemDat = setupDatAccess( "TomestonesItem", xiv::exd::Language::none ); - m_TopicSelectDat = setupDatAccess( "TopicSelect", xiv::exd::Language::en ); - m_TownDat = setupDatAccess( "Town", xiv::exd::Language::en ); - m_TraitDat = setupDatAccess( "Trait", xiv::exd::Language::en ); - m_TraitRecastDat = setupDatAccess( "TraitRecast", xiv::exd::Language::none ); - m_TraitTransientDat = setupDatAccess( "TraitTransient", xiv::exd::Language::en ); - m_TransformationDat = setupDatAccess( "Transformation", xiv::exd::Language::none ); - m_TreasureDat = setupDatAccess( "Treasure", xiv::exd::Language::en ); - m_TreasureHuntRankDat = setupDatAccess( "TreasureHuntRank", xiv::exd::Language::none ); - m_TreasureModelDat = setupDatAccess( "TreasureModel", xiv::exd::Language::none ); - m_TreasureSpotDat = setupDatAccess( "TreasureSpot", xiv::exd::Language::none ); - m_TribeDat = setupDatAccess( "Tribe", xiv::exd::Language::en ); - m_TripleTriadDat = setupDatAccess( "TripleTriad", xiv::exd::Language::none ); - m_TripleTriadCardDat = setupDatAccess( "TripleTriadCard", xiv::exd::Language::en ); - m_TripleTriadCardRarityDat = setupDatAccess( "TripleTriadCardRarity", xiv::exd::Language::none ); - m_TripleTriadCardResidentDat = setupDatAccess( "TripleTriadCardResident", xiv::exd::Language::none ); - m_TripleTriadCardTypeDat = setupDatAccess( "TripleTriadCardType", xiv::exd::Language::en ); - m_TripleTriadCompetitionDat = setupDatAccess( "TripleTriadCompetition", xiv::exd::Language::en ); - m_TripleTriadResidentDat = setupDatAccess( "TripleTriadResident", xiv::exd::Language::none ); - m_TripleTriadRuleDat = setupDatAccess( "TripleTriadRule", xiv::exd::Language::en ); - m_TutorialDat = setupDatAccess( "Tutorial", xiv::exd::Language::none ); - m_TutorialDPSDat = setupDatAccess( "TutorialDPS", xiv::exd::Language::none ); - m_TutorialHealerDat = setupDatAccess( "TutorialHealer", xiv::exd::Language::none ); - m_TutorialTankDat = setupDatAccess( "TutorialTank", xiv::exd::Language::none ); - m_UDS_EventDat = setupDatAccess( "UDS_Event", xiv::exd::Language::none ); - m_UDS_PropertyDat = setupDatAccess( "UDS_Property", xiv::exd::Language::none ); - m_UIColorDat = setupDatAccess( "UIColor", xiv::exd::Language::none ); - m_VaseFlowerDat = setupDatAccess( "VaseFlower", xiv::exd::Language::none ); - m_VFXDat = setupDatAccess( "VFX", xiv::exd::Language::none ); - m_WarpDat = setupDatAccess( "Warp", xiv::exd::Language::en ); - m_WarpConditionDat = setupDatAccess( "WarpCondition", xiv::exd::Language::none ); - m_WarpLogicDat = setupDatAccess( "WarpLogic", xiv::exd::Language::en ); - m_WeaponTimelineDat = setupDatAccess( "WeaponTimeline", xiv::exd::Language::none ); - m_WeatherDat = setupDatAccess( "Weather", xiv::exd::Language::en ); - m_WeatherGroupDat = setupDatAccess( "WeatherGroup", xiv::exd::Language::none ); - m_WeatherRateDat = setupDatAccess( "WeatherRate", xiv::exd::Language::none ); - m_WeatherReportReplaceDat = setupDatAccess( "WeatherReportReplace", xiv::exd::Language::none ); - m_WebGuidanceDat = setupDatAccess( "WebGuidance", xiv::exd::Language::en ); - m_WebURLDat = setupDatAccess( "WebURL", xiv::exd::Language::en ); - m_WeddingBGMDat = setupDatAccess( "WeddingBGM", xiv::exd::Language::en ); - m_WeeklyBingoOrderDataDat = setupDatAccess( "WeeklyBingoOrderData", xiv::exd::Language::none ); - m_WeeklyBingoRewardDataDat = setupDatAccess( "WeeklyBingoRewardData", xiv::exd::Language::none ); - m_WeeklyBingoTextDat = setupDatAccess( "WeeklyBingoText", xiv::exd::Language::en ); - m_WeeklyLotBonusDat = setupDatAccess( "WeeklyLotBonus", xiv::exd::Language::none ); - m_WorldDat = setupDatAccess( "World", xiv::exd::Language::none ); - m_WorldDCGroupTypeDat = setupDatAccess( "WorldDCGroupType", xiv::exd::Language::none ); - m_YardCatalogCategoryDat = setupDatAccess( "YardCatalogCategory", xiv::exd::Language::en ); - m_YardCatalogItemListDat = setupDatAccess( "YardCatalogItemList", xiv::exd::Language::none ); - m_YKWDat = setupDatAccess( "YKW", xiv::exd::Language::en ); - m_ZoneSharedGroupDat = setupDatAccess( "ZoneSharedGroup", xiv::exd::Language::none ); - - } - catch( std::runtime_error ) - { - return false; - } - - return true; -} - -/////////////////////////////////////////////////////////////// -// DIRECT GETTERS - - - - diff --git a/src/common/Exd/ExdDataGenerated.h b/src/common/Exd/ExdDataGenerated.h deleted file mode 100644 index 7f890fdd..00000000 --- a/src/common/Exd/ExdDataGenerated.h +++ /dev/null @@ -1,13673 +0,0 @@ -#ifndef GENERATED_EXDDATA_H -#define GENERATED_EXDDATA_H - -/* This file has been automatically generated. - Changes will be lost upon regeneration. - To change the content edit tools/exd_struct_gen */ - -#include -#include -#include -#include -#include -#include -#include - -#if _WIN32 -#undef near -#undef far -#endif - -namespace Sapphire::Data { - -class ExdDataGenerated; - -struct Achievement; -struct AchievementCategory; -struct AchievementHideCondition; -struct AchievementKind; -struct AchievementTarget; -struct Action; -struct ActionCastTimeline; -struct ActionCastVFX; -struct ActionCategory; -struct ActionComboRoute; -struct ActionIndirection; -struct ActionParam; -struct ActionProcStatus; -struct ActionTimeline; -struct ActionTimelineMove; -struct ActionTimelineReplace; -struct ActionTransient; -struct ActivityFeedButtons; -struct ActivityFeedCaptions; -struct ActivityFeedGroupCaptions; -struct ActivityFeedImages; -struct Addon; -struct Adventure; -struct AdventureExPhase; -struct AetherCurrent; -struct AetherCurrentCompFlgSet; -struct AetherialWheel; -struct Aetheryte; -struct AetheryteSystemDefine; -struct AirshipExplorationLevel; -struct AirshipExplorationLog; -struct AirshipExplorationParamType; -struct AirshipExplorationPart; -struct AirshipExplorationPoint; -struct AnimationLOD; -struct AnimaWeapon5; -struct AnimaWeapon5Param; -struct AnimaWeapon5PatternGroup; -struct AnimaWeapon5SpiritTalk; -struct AnimaWeapon5SpiritTalkParam; -struct AnimaWeapon5TradeItem; -struct AnimaWeaponFUITalk; -struct AnimaWeaponFUITalkParam; -struct AnimaWeaponIcon; -struct AnimaWeaponItem; -struct AozAction; -struct AozActionTransient; -struct AOZArrangement; -struct AOZBoss; -struct AOZContent; -struct AOZContentBriefingBNpc; -struct AOZReport; -struct AOZScore; -struct AquariumFish; -struct AquariumWater; -struct ArrayEventHandler; -struct AttackType; -struct BacklightColor; -struct Ballista; -struct Balloon; -struct BaseParam; -struct BattleLeve; -struct BattleLeveRule; -struct BeastRankBonus; -struct BeastReputationRank; -struct BeastTribe; -struct Behavior; -struct BehaviorPath; -struct BenchmarkOverrideEquipment; -struct BGM; -struct BGMFade; -struct BGMFadeType; -struct BGMScene; -struct BGMSituation; -struct BGMSwitch; -struct BGMSystemDefine; -struct BNpcAnnounceIcon; -struct BNpcBase; -struct BNpcCustomize; -struct BNpcName; -struct BNpcParts; -struct BNpcState; -struct Buddy; -struct BuddyAction; -struct BuddyEquip; -struct BuddyItem; -struct BuddyRank; -struct BuddySkill; -struct Cabinet; -struct CabinetCategory; -struct Calendar; -struct Carry; -struct Channeling; -struct CharaMakeClassEquip; -struct CharaMakeCustomize; -struct CharaMakeName; -struct CharaMakeType; -struct ChocoboRace; -struct ChocoboRaceAbility; -struct ChocoboRaceAbilityType; -struct ChocoboRaceItem; -struct ChocoboRaceRank; -struct ChocoboRaceStatus; -struct ChocoboRaceTerritory; -struct ChocoboRaceTutorial; -struct ChocoboRaceWeather; -struct ChocoboTaxi; -struct ChocoboTaxiStand; -struct CircleActivity; -struct ClassJob; -struct ClassJobCategory; -struct CollectablesShop; -struct CollectablesShopItem; -struct CollectablesShopItemGroup; -struct CollectablesShopRefine; -struct CollectablesShopRewardItem; -struct CollectablesShopRewardScrip; -struct Companion; -struct CompanionMove; -struct CompanionTransient; -struct CompanyAction; -struct CompanyCraftDraft; -struct CompanyCraftDraftCategory; -struct CompanyCraftManufactoryState; -struct CompanyCraftPart; -struct CompanyCraftProcess; -struct CompanyCraftSequence; -struct CompanyCraftSupplyItem; -struct CompanyCraftType; -struct CompanyLeve; -struct CompanyLeveRule; -struct CompleteJournal; -struct CompleteJournalCategory; -struct Completion; -struct Condition; -struct ConfigKey; -struct ContentCloseCycle; -struct ContentExAction; -struct ContentFinderCondition; -struct ContentFinderConditionTransient; -struct ContentGauge; -struct ContentGaugeColor; -struct ContentMemberType; -struct ContentNpcTalk; -struct ContentRandomSelect; -struct ContentRoulette; -struct ContentRouletteOpenRule; -struct ContentRouletteRoleBonus; -struct ContentsNote; -struct ContentsTutorial; -struct ContentsTutorialPage; -struct ContentTalk; -struct ContentTalkParam; -struct ContentType; -struct CraftAction; -struct CraftLeve; -struct CraftLevelDifference; -struct CraftLeveTalk; -struct CraftType; -struct Credit; -struct CreditBackImage; -struct CreditCast; -struct CreditList; -struct CreditListText; -struct CustomTalk; -struct CustomTalkNestHandlers; -struct Cutscene; -struct CutSceneIncompQuest; -struct CutsceneMotion; -struct CutsceneWorkIndex; -struct CutScreenImage; -struct CycleTime; -struct DailySupplyItem; -struct DawnContent; -struct DawnGrowMember; -struct DawnMemberUIParam; -struct DawnQuestAnnounce; -struct DawnQuestMember; -struct DeepDungeon; -struct DeepDungeonBan; -struct DeepDungeonDanger; -struct DeepDungeonEquipment; -struct DeepDungeonFloorEffectUI; -struct DeepDungeonItem; -struct DeepDungeonLayer; -struct DeepDungeonMagicStone; -struct DeepDungeonMap5X; -struct DeepDungeonRoom; -struct DeepDungeonStatus; -struct DefaultTalk; -struct DefaultTalkLipSyncType; -struct DeliveryQuest; -struct Description; -struct DescriptionPage; -struct DescriptionSection; -struct DescriptionString; -struct DisposalShop; -struct DisposalShopFilterType; -struct DisposalShopItem; -struct DpsChallenge; -struct DpsChallengeOfficer; -struct DpsChallengeTransient; -struct DynamicEvent; -struct DynamicEventEnemyType; -struct DynamicEventSingleBattle; -struct DynamicEventType; -struct EmjAddon; -struct EmjDani; -struct Emote; -struct EmoteCategory; -struct EmoteMode; -struct ENpcBase; -struct ENpcDressUp; -struct ENpcDressUpDress; -struct ENpcResident; -struct EObj; -struct EObjName; -struct EquipRaceCategory; -struct EquipSlotCategory; -struct EurekaAetherItem; -struct EurekaAethernet; -struct EurekaGrowData; -struct EurekaLogosMixerProbability; -struct EurekaMagiaAction; -struct EurekaMagiciteItem; -struct EurekaMagiciteItemType; -struct EurekaSphereElementAdjust; -struct EventAction; -struct EventCustomIconType; -struct EventIconPriority; -struct EventIconType; -struct EventItem; -struct EventItemCastTimeline; -struct EventItemHelp; -struct EventItemTimeline; -struct EventSystemDefine; -struct ExportedGatheringPoint; -struct ExportedSG; -struct ExVersion; -struct Fate; -struct FateEvent; -struct FateMode; -struct FateProgressUI; -struct FateTokenType; -struct FCActivity; -struct FCActivityCategory; -struct FCAuthority; -struct FCAuthorityCategory; -struct FCChestName; -struct FCCrestSymbol; -struct FccShop; -struct FCHierarchy; -struct FCProfile; -struct FCRank; -struct FCReputation; -struct FCRights; -struct Festival; -struct FieldMarker; -struct FishingRecordType; -struct FishingRecordTypeTransient; -struct FishingSpot; -struct FishParameter; -struct Frontline03; -struct Frontline04; -struct FurnitureCatalogCategory; -struct FurnitureCatalogItemList; -struct GardeningSeed; -struct GatheringCondition; -struct GatheringExp; -struct GatheringItem; -struct GatheringItemLevelConvertTable; -struct GatheringItemPoint; -struct GatheringLeve; -struct GatheringLeveRoute; -struct GatheringLeveRule; -struct GatheringNotebookList; -struct GatheringPoint; -struct GatheringPointBase; -struct GatheringPointBonus; -struct GatheringPointBonusType; -struct GatheringPointName; -struct GatheringPointTransient; -struct GatheringRarePopTimeTable; -struct GatheringSubCategory; -struct GatheringType; -struct GcArmyCaptureTactics; -struct GcArmyEquipPreset; -struct GcArmyExpedition; -struct GcArmyExpeditionMemberBonus; -struct GcArmyExpeditionType; -struct GcArmyMemberGrow; -struct GcArmyTraining; -struct GCRankGridaniaFemaleText; -struct GCRankGridaniaMaleText; -struct GCRankLimsaFemaleText; -struct GCRankLimsaMaleText; -struct GCRankUldahFemaleText; -struct GCRankUldahMaleText; -struct GCScripShopCategory; -struct GCScripShopItem; -struct GCShop; -struct GCShopItemCategory; -struct GCSupplyDuty; -struct GCSupplyDutyReward; -struct GeneralAction; -struct GFATE; -struct GFateClimbing2; -struct GFateClimbing2Content; -struct GFateClimbing2TotemType; -struct GFateRideShooting; -struct GilShop; -struct GilShopItem; -struct GimmickAccessor; -struct GimmickJump; -struct GimmickRect; -struct GoldSaucerArcadeMachine; -struct GoldSaucerTextData; -struct GrandCompany; -struct GrandCompanyRank; -struct GroupPoseFrame; -struct GroupPoseStamp; -struct GroupPoseStampCategory; -struct GuardianDeity; -struct Guide; -struct GuidePage; -struct GuidePageString; -struct GuideTitle; -struct GuildleveAssignment; -struct GuildleveAssignmentCategory; -struct GuildleveAssignmentTalk; -struct GuildOrder; -struct GuildOrderGuide; -struct GuildOrderOfficer; -struct HairMakeType; -struct HouseRetainerPose; -struct HousingAethernet; -struct HousingAppeal; -struct HousingEmploymentNpcList; -struct HousingEmploymentNpcRace; -struct HousingExterior; -struct HousingFurniture; -struct HousingLandSet; -struct HousingMapMarkerInfo; -struct HousingMerchantPose; -struct HousingPlacement; -struct HousingPreset; -struct HousingUnitedExterior; -struct HousingYardObject; -struct HowTo; -struct HowToCategory; -struct HowToPage; -struct HugeCraftworksNpc; -struct HugeCraftworksRank; -struct HWDAnnounce; -struct HWDCrafterSupply; -struct HWDCrafterSupplyReward; -struct HWDCrafterSupplyTerm; -struct HWDDevLayerControl; -struct HWDDevLevelUI; -struct HWDDevLively; -struct HWDDevProgress; -struct HWDGathereInspectTerm; -struct HWDGathererInspection; -struct HWDGathererInspectionReward; -struct HWDInfoBoardArticle; -struct HWDInfoBoardArticleTransient; -struct HWDInfoBoardArticleType; -struct HWDLevelChangeDeception; -struct HWDSharedGroup; -struct HWDSharedGroupControlParam; -struct IKDContentBonus; -struct IKDFishParam; -struct IKDRoute; -struct IKDRouteTable; -struct IKDSpot; -struct InclusionShop; -struct InclusionShopCategory; -struct InclusionShopSeries; -struct IndividualWeather; -struct InstanceContent; -struct InstanceContentBuff; -struct InstanceContentCSBonus; -struct InstanceContentGuide; -struct InstanceContentTextData; -struct Item; -struct ItemAction; -struct ItemActionTelepo; -struct ItemBarterCheck; -struct ItemFood; -struct ItemLevel; -struct ItemSearchCategory; -struct ItemSeries; -struct ItemSortCategory; -struct ItemSpecialBonus; -struct ItemUICategory; -struct Jingle; -struct JobHudManual; -struct JobHudManualPriority; -struct JournalCategory; -struct JournalGenre; -struct JournalSection; -struct Knockback; -struct LegacyQuest; -struct Leve; -struct LeveAssignmentType; -struct LeveClient; -struct Level; -struct LeveRewardItem; -struct LeveRewardItemGroup; -struct LeveString; -struct LeveVfx; -struct Lobby; -struct LogFilter; -struct LogKind; -struct LogMessage; -struct LotteryExchangeShop; -struct MacroIcon; -struct MacroIconRedirectOld; -struct MainCommand; -struct MainCommandCategory; -struct ManeuversArmor; -struct Map; -struct MapCondition; -struct MapMarker; -struct MapMarkerRegion; -struct MapSymbol; -struct Marker; -struct Materia; -struct MateriaJoinRate; -struct MateriaJoinRateGatherCraft; -struct MateriaTomestoneRate; -struct MiniGameRA; -struct MinionRace; -struct MinionRules; -struct MinionSkillType; -struct MobHuntOrder; -struct MobHuntOrderType; -struct MobHuntReward; -struct MobHuntRewardCap; -struct MobHuntTarget; -struct ModelChara; -struct ModelSkeleton; -struct ModelState; -struct MonsterNote; -struct MonsterNoteTarget; -struct MotionTimeline; -struct MotionTimelineBlendTable; -struct Mount; -struct MountAction; -struct MountCustomize; -struct MountFlyingCondition; -struct MountSpeed; -struct MountTransient; -struct MoveTimeline; -struct MoveVfx; -struct MovieStaffList; -struct MovieSubtitle; -struct MovieSubtitle500; -struct MovieSubtitleVoyage; -struct MYCTemporaryItem; -struct MYCTemporaryItemUICategory; -struct MYCWarResultNotebook; -struct NotebookDivision; -struct NotebookDivisionCategory; -struct NotoriousMonster; -struct NpcEquip; -struct NpcYell; -struct Omen; -struct OnlineStatus; -struct OpenContent; -struct OpenContentCandidateName; -struct Opening; -struct Orchestrion; -struct OrchestrionCategory; -struct OrchestrionPath; -struct OrchestrionUiparam; -struct Ornament; -struct ParamGrow; -struct PartyContent; -struct PartyContentCutscene; -struct PartyContentTextData; -struct PatchMark; -struct Perform; -struct PerformGroup; -struct PerformTransient; -struct Pet; -struct PetAction; -struct PetMirage; -struct PhysicsGroup; -struct PhysicsWind; -struct Picture; -struct PlaceName; -struct PlantPotFlowerSeed; -struct PreHandler; -struct PresetCamera; -struct PresetCameraAdjust; -struct PublicContent; -struct PublicContentCutscene; -struct PublicContentTextData; -struct PvPAction; -struct PvPActionSort; -struct PvPRank; -struct PvPSelectTrait; -struct PvPTrait; -struct Quest; -struct QuestAcceptAdditionCondition; -struct QuestBattle; -struct QuestChapter; -struct QuestClassJobReward; -struct QuestClassJobSupply; -struct QuestDerivedClass; -struct QuestEffect; -struct QuestEffectDefine; -struct QuestRedo; -struct QuestRedoChapterUI; -struct QuestRedoChapterUICategory; -struct QuestRedoChapterUITab; -struct QuestRedoIncompChapter; -struct QuestRepeatFlag; -struct QuestRewardOther; -struct QuickChat; -struct QuickChatTransient; -struct Race; -struct RacingChocoboItem; -struct RacingChocoboName; -struct RacingChocoboNameCategory; -struct RacingChocoboNameInfo; -struct RacingChocoboParam; -struct RecastNavimesh; -struct Recipe; -struct RecipeLevelTable; -struct RecipeLookup; -struct RecipeNotebookList; -struct RecommendContents; -struct Relic; -struct Relic3; -struct RelicItem; -struct RelicNote; -struct RelicNoteCategory; -struct Resident; -struct ResistanceWeaponAdjust; -struct RetainerFortuneRewardRange; -struct RetainerTask; -struct RetainerTaskLvRange; -struct RetainerTaskNormal; -struct RetainerTaskParameter; -struct RetainerTaskRandom; -struct RideShooting; -struct RideShootingTargetType; -struct RideShootingTextData; -struct RPParameter; -struct SatisfactionArbitration; -struct SatisfactionNpc; -struct SatisfactionSupply; -struct SatisfactionSupplyReward; -struct ScenarioTree; -struct ScenarioTreeTips; -struct ScenarioTreeTipsClassQuest; -struct ScenarioType; -struct ScreenImage; -struct SecretRecipeBook; -struct SkyIsland2Mission; -struct SkyIsland2MissionDetail; -struct SkyIsland2MissionType; -struct SkyIsland2RangeType; -struct SnipeTalk; -struct SnipeTalkName; -struct SpearfishingItem; -struct SpearfishingNotebook; -struct SpearfishingRecordPage; -struct SpecialShop; -struct SpecialShopItemCategory; -struct Stain; -struct StainTransient; -struct StanceChange; -struct Status; -struct StatusHitEffect; -struct StatusLoopVFX; -struct Story; -struct SubmarineExploration; -struct SubmarineMap; -struct SubmarinePart; -struct SubmarineRank; -struct SwitchTalk; -struct SwitchTalkVariation; -struct TerritoryType; -struct TerritoryTypeTransient; -struct TextCommand; -struct TextCommandParam; -struct Title; -struct Tomestones; -struct TomestonesItem; -struct TopicSelect; -struct Town; -struct Trait; -struct TraitRecast; -struct TraitTransient; -struct Transformation; -struct Treasure; -struct TreasureHuntRank; -struct TreasureModel; -struct TreasureSpot; -struct Tribe; -struct TripleTriad; -struct TripleTriadCard; -struct TripleTriadCardRarity; -struct TripleTriadCardResident; -struct TripleTriadCardType; -struct TripleTriadCompetition; -struct TripleTriadResident; -struct TripleTriadRule; -struct Tutorial; -struct TutorialDPS; -struct TutorialHealer; -struct TutorialTank; -struct UDS_Event; -struct UDS_Property; -struct UIColor; -struct VaseFlower; -struct VFX; -struct Warp; -struct WarpCondition; -struct WarpLogic; -struct WeaponTimeline; -struct Weather; -struct WeatherGroup; -struct WeatherRate; -struct WeatherReportReplace; -struct WebGuidance; -struct WebURL; -struct WeddingBGM; -struct WeeklyBingoOrderData; -struct WeeklyBingoRewardData; -struct WeeklyBingoText; -struct WeeklyLotBonus; -struct World; -struct WorldDCGroupType; -struct YardCatalogCategory; -struct YardCatalogItemList; -struct YKW; -struct ZoneSharedGroup; - - -struct Achievement -{ - uint8_t achievementCategory; - std::string name; - std::string description; - uint8_t achievementTarget; - uint8_t points; - uint16_t title; - uint32_t item; - uint16_t icon; - uint8_t type; - int32_t key; - std::vector< int32_t > data; - uint16_t order; - uint8_t achievementHideCondition; - - Achievement( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AchievementCategory -{ - std::string name; - uint8_t achievementKind; - bool showComplete; - bool hideCategory; - uint8_t order; - - AchievementCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AchievementHideCondition -{ - bool hideAchievement; - bool hideName; - bool hideConditions; - - AchievementHideCondition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AchievementKind -{ - std::string name; - uint8_t order; - - AchievementKind( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AchievementTarget -{ - uint8_t type; - uint32_t value; - - AchievementTarget( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Action -{ - std::string name; - uint16_t icon; - uint8_t actionCategory; - uint8_t animationStart; - uint8_t vFX; - int16_t animationEnd; - uint16_t actionTimelineHit; - int8_t classJob; - uint8_t behaviourType; - uint8_t classJobLevel; - bool isRoleAction; - int8_t range; - bool canTargetSelf; - bool canTargetParty; - bool canTargetFriendly; - bool canTargetHostile; - bool targetArea; - bool canTargetDead; - uint8_t castType; - uint8_t effectRange; - uint8_t xAxisModifier; - uint8_t primaryCostType; - uint16_t primaryCostValue; - uint8_t secondaryCostType; - uint16_t secondaryCostValue; - uint16_t actionCombo; - bool preservesCombo; - uint16_t cast100ms; - uint16_t recast100ms; - uint8_t cooldownGroup; - uint8_t additionalCooldownGroup; - uint8_t maxCharges; - int8_t attackType; - uint8_t aspect; - uint8_t actionProcStatus; - uint16_t statusGainSelf; - uint32_t unlockLink; - uint8_t classJobCategory; - bool affectsPosition; - uint16_t omen; - bool isPvP; - bool isPlayerAction; - - Action( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ActionCastTimeline -{ - uint16_t name; - uint16_t vFX; - - ActionCastTimeline( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ActionCastVFX -{ - uint16_t vFX; - - ActionCastVFX( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ActionCategory -{ - std::string name; - - ActionCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ActionComboRoute -{ - std::string name; - std::vector< uint16_t > action; - - ActionComboRoute( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ActionIndirection -{ - int32_t name; - int8_t classJob; - int32_t previousComboAction; - - ActionIndirection( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ActionParam -{ - int16_t name; - - ActionParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ActionProcStatus -{ - uint16_t status; - - ActionProcStatus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ActionTimeline -{ - uint8_t type; - uint8_t priority; - bool pause; - uint8_t stance; - uint8_t slot; - uint8_t lookAtMode; - std::string key; - uint8_t actionTimelineIDMode; - uint8_t weaponTimeline; - uint8_t loadType; - uint8_t startAttach; - uint8_t residentPap; - bool resident; - uint16_t killUpper; - bool isMotionCanceledByMoving; - uint8_t isLoop; - - ActionTimeline( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ActionTimelineMove -{ - - ActionTimelineMove( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ActionTimelineReplace -{ - uint16_t old; - uint16_t _new; - - ActionTimelineReplace( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ActionTransient -{ - std::string description; - - ActionTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ActivityFeedButtons -{ - std::string bannerURL; - std::string description; - std::string language; - std::string pictureURL; - - ActivityFeedButtons( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ActivityFeedCaptions -{ - std::string jA; - std::string eN; - std::string dE; - std::string fR; - - ActivityFeedCaptions( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ActivityFeedGroupCaptions -{ - std::string jA; - std::string eN; - std::string dE; - std::string fR; - - ActivityFeedGroupCaptions( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ActivityFeedImages -{ - std::string expansionImage; - std::string activityFeedJA; - std::string activityFeedEN; - std::string activityFeedDE; - std::string activityFeedFR; - - ActivityFeedImages( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Addon -{ - std::string text; - - Addon( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Adventure -{ - int32_t level; - int32_t minLevel; - uint8_t maxLevel; - uint16_t emote; - uint16_t minTime; - uint16_t maxTime; - int32_t placeName; - int32_t iconList; - int32_t iconDiscovered; - std::string name; - std::string impression; - std::string description; - int32_t iconUndiscovered; - bool isInitial; - - Adventure( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AdventureExPhase -{ - uint32_t quest; - uint32_t adventureBegin; - uint32_t adventureEnd; - - AdventureExPhase( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AetherCurrent -{ - uint32_t quest; - - AetherCurrent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AetherCurrentCompFlgSet -{ - int32_t territory; - std::vector< int32_t > aetherCurrent; - - AetherCurrentCompFlgSet( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AetherialWheel -{ - int32_t itemUnprimed; - int32_t itemPrimed; - uint8_t grade; - uint8_t hoursRequired; - - AetherialWheel( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Aetheryte -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - uint16_t placeName; - uint16_t aethernetName; - uint16_t territory; - std::vector< uint32_t > level; - bool isAetheryte; - uint8_t aethernetGroup; - bool invisible; - uint32_t requiredQuest; - uint16_t map; - int16_t aetherstreamX; - int16_t aetherstreamY; - - Aetheryte( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AetheryteSystemDefine -{ - std::string text; - uint32_t defineValue; - - AetheryteSystemDefine( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AirshipExplorationLevel -{ - uint16_t capacity; - uint32_t expToNext; - - AirshipExplorationLevel( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AirshipExplorationLog -{ - std::string text; - - AirshipExplorationLog( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AirshipExplorationParamType -{ - std::string name; - - AirshipExplorationParamType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AirshipExplorationPart -{ - uint8_t slot; - uint8_t rank; - uint8_t components; - int16_t surveillance; - int16_t retrieval; - int16_t speed; - int16_t range; - int16_t favor; - uint16_t _class; - uint8_t repairMaterials; - - AirshipExplorationPart( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AirshipExplorationPoint -{ - std::string name; - std::string nameShort; - uint8_t requiredLevel; - uint16_t requiredFuel; - uint16_t durationmin; - uint8_t requiredSurveillance; - uint32_t expReward; - - AirshipExplorationPoint( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AnimationLOD -{ - float cameraDistance; - float sampleInterval; - int8_t boneLOD; - std::vector< bool > animationEnable; - - AnimationLOD( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AnimaWeapon5 -{ - int32_t item; - uint8_t secondaryStatTotal; - std::vector< uint8_t > parameter; - - AnimaWeapon5( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AnimaWeapon5Param -{ - uint8_t baseParam; - std::string name; - - AnimaWeapon5Param( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AnimaWeapon5PatternGroup -{ - std::string name; - - AnimaWeapon5PatternGroup( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AnimaWeapon5SpiritTalk -{ - int32_t dialogue; - - AnimaWeapon5SpiritTalk( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AnimaWeapon5SpiritTalkParam -{ - std::string prologue; - std::string epilogue; - - AnimaWeapon5SpiritTalkParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AnimaWeapon5TradeItem -{ - uint32_t crystalSand; - uint8_t qty; - uint8_t category; - - AnimaWeapon5TradeItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AnimaWeaponFUITalk -{ - int32_t dialogue; - - AnimaWeaponFUITalk( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AnimaWeaponFUITalkParam -{ - std::string prologue; - std::string epilogue; - - AnimaWeaponFUITalkParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AnimaWeaponIcon -{ - int32_t hyperconductive; - int32_t reborn; - int32_t sharpened; - int32_t zodiac; - int32_t zodiacLux; - - AnimaWeaponIcon( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AnimaWeaponItem -{ - std::vector< uint32_t > item; - - AnimaWeaponItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AozAction -{ - uint32_t action; - uint8_t rank; - - AozAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AozActionTransient -{ - uint8_t number; - uint32_t icon; - std::string stats; - std::string description; - uint8_t locationKey; - uint16_t location; - uint32_t requiredForQuest; - uint32_t previousQuest; - bool targetsEnemy; - bool targetsSelfOrAlly; - bool causeSlow; - bool causePetrify; - bool causeParalysis; - bool causeInterrupt; - bool causeBlind; - bool causeStun; - bool causeSleep; - bool causeBind; - bool causeHeavy; - bool causeDeath; - - AozActionTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AOZArrangement -{ - uint16_t aOZContentBriefingBNpc; - uint16_t position; - - AOZArrangement( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AOZBoss -{ - uint16_t boss; - uint16_t position; - - AOZBoss( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AOZContent -{ - uint16_t standardFinishTime; - uint16_t idealFinishTime; - uint8_t act1FightType; - uint16_t act1; - uint8_t arenaType1; - uint8_t act2FightType; - uint16_t act2; - uint8_t arenaType2; - uint8_t act3FightType; - uint16_t act3; - uint8_t arenaType3; - uint32_t contentEntry; - uint8_t order; - uint16_t gilReward; - uint16_t alliedSealsReward; - uint16_t tomestonesReward; - - AOZContent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AOZContentBriefingBNpc -{ - uint32_t bNpcName; - uint32_t targetSmall; - uint32_t targetLarge; - bool hideStats; - uint8_t endurance; - uint8_t fire; - uint8_t ice; - uint8_t wind; - uint8_t earth; - uint8_t thunder; - uint8_t water; - uint8_t slashing; - uint8_t piercing; - uint8_t blunt; - uint8_t magic; - bool slowVuln; - bool petrificationVuln; - bool paralysisVuln; - bool interruptionVuln; - bool blindVuln; - bool stunVuln; - bool sleepVuln; - bool bindVuln; - bool heavyVuln; - bool flatOrDeathVuln; - - AOZContentBriefingBNpc( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AOZReport -{ - uint8_t reward; - int8_t order; - - AOZReport( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AOZScore -{ - bool isHidden; - int32_t score; - std::string name; - std::string description; - - AOZScore( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AquariumFish -{ - uint8_t aquariumWater; - uint8_t size; - uint32_t item; - - AquariumFish( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AquariumWater -{ - std::string name; - - AquariumWater( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ArrayEventHandler -{ - std::vector< uint32_t > data; - - ArrayEventHandler( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct AttackType -{ - std::string name; - - AttackType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BacklightColor -{ - uint32_t color; - - BacklightColor( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Ballista -{ - uint16_t bNPC; - int8_t near; - int8_t far; - uint16_t angle; - uint8_t bullet; - uint16_t action0; - uint16_t action1; - uint16_t action2; - uint16_t action3; - - Ballista( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Balloon -{ - bool slowly; - std::string dialogue; - - Balloon( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BaseParam -{ - int8_t packetIndex; - std::string name; - std::string description; - uint8_t orderPriority; - uint8_t oneHWpn; - uint8_t oH; - uint8_t head; - uint8_t chest; - uint8_t hands; - uint8_t waist; - uint8_t legs; - uint8_t feet; - uint8_t earring; - uint8_t necklace; - uint8_t bracelet; - uint8_t ring; - uint8_t twoHWpn; - uint8_t underArmor; - uint8_t chestHead; - uint8_t chestHeadLegsFeet; - uint8_t legsFeet; - uint8_t headChestHandsLegsFeet; - uint8_t chestLegsGloves; - uint8_t chestLegsFeet; - std::vector< uint8_t > meldParam; - - BaseParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BattleLeve -{ - std::vector< uint16_t > time; - std::vector< int32_t > baseID; - std::vector< uint16_t > enemyLevel; - std::vector< uint32_t > bNpcName; - std::vector< int32_t > itemsInvolved; - std::vector< uint8_t > itemsInvolvedQty; - std::vector< uint8_t > itemDropRate; - std::vector< uint32_t > toDoNumberInvolved; - std::vector< uint8_t > toDoSequence; - int32_t rule; - uint8_t varient; - uint16_t objective0; - uint16_t objective1; - uint16_t objective2; - uint16_t help0; - uint16_t help1; - - BattleLeve( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BattleLeveRule -{ - std::string rule; - - BattleLeveRule( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BeastRankBonus -{ - uint16_t neutral; - uint16_t recognized; - uint16_t friendly; - uint16_t trusted; - uint16_t respected; - uint16_t honored; - uint16_t sworn; - uint16_t alliedBloodsworn; - uint32_t item; - std::vector< uint8_t > itemQuantity; - - BeastRankBonus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BeastReputationRank -{ - uint16_t requiredReputation; - std::string name; - std::string alliedNames; - uint32_t color; - - BeastReputationRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BeastTribe -{ - uint8_t minLevel; - uint8_t beastRankBonus; - uint32_t iconReputation; - uint32_t icon; - uint8_t maxRank; - uint8_t expansion; - uint32_t currencyItem; - uint8_t displayOrder; - std::string name; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - int8_t dEF; - std::string nameRelation; - - BeastTribe( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Behavior -{ - uint8_t condition0Target; - uint8_t condition0Type; - int32_t balloon; - uint8_t condition1Target; - uint8_t condition1Type; - uint32_t contentArgument0; - uint8_t contentArgument1; - - Behavior( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BehaviorPath -{ - bool isTurnTransition; - bool isFadeOut; - bool isFadeIn; - bool isWalking; - float speed; - - BehaviorPath( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BenchmarkOverrideEquipment -{ - uint64_t modelMainHand; - uint8_t dyeMainHand; - uint64_t modelOffHand; - uint8_t dyeOffHand; - uint32_t modelHead; - uint8_t dyeHead; - uint32_t modelBody; - uint8_t dyeBody; - uint32_t modelHands; - uint8_t dyeHands; - uint32_t modelLegs; - uint8_t dyeLegs; - uint32_t modelFeet; - uint8_t dyeFeet; - uint32_t modelEars; - uint8_t dyeEars; - uint32_t modelNeck; - uint8_t dyeNeck; - uint32_t modelWrists; - uint8_t dyeWrists; - uint32_t modelLeftRing; - uint8_t dyeLeftRing; - uint32_t modelRightRing; - uint8_t dyeRightRing; - - BenchmarkOverrideEquipment( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BGM -{ - std::string file; - uint8_t priority; - bool disableRestartTimeOut; - bool disableRestart; - bool passEnd; - float disableRestartResetTime; - uint8_t specialMode; - - BGM( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BGMFade -{ - int32_t sceneOut; - int32_t sceneIn; - int32_t bGMFadeType; - - BGMFade( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BGMFadeType -{ - float fadeOutTime; - float fadeInTime; - float fadeInStartTime; - float resumeFadeInTime; - - BGMFadeType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BGMScene -{ - bool enableDisableRestart; - bool resume; - bool enablePassEnd; - bool forceAutoReset; - bool ignoreBattle; - - BGMScene( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BGMSituation -{ - uint16_t daytimeID; - uint16_t nightID; - uint16_t battleID; - uint16_t daybreakID; - uint16_t twilightID; - - BGMSituation( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BGMSwitch -{ - uint8_t bGMSystemDefine; - uint32_t quest; - uint16_t bGM; - - BGMSwitch( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BGMSystemDefine -{ - float define; - - BGMSystemDefine( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BNpcAnnounceIcon -{ - uint32_t icon; - - BNpcAnnounceIcon( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BNpcBase -{ - uint16_t behavior; - uint8_t battalion; - uint8_t linkRace; - uint8_t rank; - float scale; - uint16_t modelChara; - uint16_t bNpcCustomize; - uint16_t npcEquip; - uint16_t special; - uint8_t sEPack; - int32_t arrayEventHandler; - uint8_t bNpcParts; - bool isTargetLine; - bool isDisplayLevel; - - BNpcBase( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BNpcCustomize -{ - uint8_t race; - uint8_t gender; - uint8_t bodyType; - uint8_t height; - uint8_t tribe; - uint8_t face; - uint8_t hairStyle; - uint8_t hairHighlight; - uint8_t skinColor; - uint8_t eyeHeterochromia; - uint8_t hairColor; - uint8_t hairHighlightColor; - uint8_t facialFeature; - uint8_t facialFeatureColor; - uint8_t eyebrows; - uint8_t eyeColor; - uint8_t eyeShape; - uint8_t nose; - uint8_t jaw; - uint8_t mouth; - uint8_t lipColor; - uint8_t bustOrTone1; - uint8_t extraFeature1; - uint8_t extraFeature2OrBust; - uint8_t facePaint; - uint8_t facePaintColor; - - BNpcCustomize( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BNpcName -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - - BNpcName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BNpcParts -{ - uint16_t bNpcBase1; - uint8_t partSlot1; - float x1; - float y1; - float z1; - float scale1; - uint16_t bNpcBase2; - uint8_t partSlot2; - float x2; - float y2; - float z2; - float scale2; - uint16_t bNpcBase3; - uint8_t partSlot3; - float x3; - float y3; - float z3; - int16_t scale3; - uint16_t bNpcBase4; - uint8_t partSlot4; - float x4; - float y4; - float z4; - float scale4; - uint16_t bNpcBase5; - uint8_t partSlot5; - float x5; - float y5; - float z5; - float scale5; - - BNpcParts( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BNpcState -{ - uint8_t slot; - int8_t overRay; - uint16_t idle; - uint8_t attribute0; - bool attributeFlag0; - uint8_t attribute1; - bool attributeFlag1; - uint8_t attribute2; - bool attributeFlag2; - float scale; - int32_t loopTimeline; - - BNpcState( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Buddy -{ - uint8_t base; - int32_t questRequirement2; - int32_t questRequirement1; - int32_t baseEquip; - std::string soundEffect4; - std::string soundEffect3; - std::string soundEffect2; - std::string soundEffect1; - - Buddy( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BuddyAction -{ - std::string name; - std::string description; - int32_t icon; - int32_t iconStatus; - uint16_t reward; - uint8_t sort; - - BuddyAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BuddyEquip -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - std::string name; - int32_t modelTop; - int32_t modelBody; - int32_t modelLegs; - uint8_t grandCompany; - uint16_t iconHead; - uint16_t iconBody; - uint16_t iconLegs; - uint8_t order; - - BuddyEquip( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BuddyItem -{ - uint16_t item; - bool useField; - bool useTraining; - uint8_t status; - - BuddyItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BuddyRank -{ - uint32_t expRequired; - - BuddyRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct BuddySkill -{ - uint8_t buddyLevel; - bool isActive; - uint16_t defender; - uint16_t attacker; - uint16_t healer; - - BuddySkill( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Cabinet -{ - int32_t item; - uint16_t order; - uint8_t category; - - Cabinet( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CabinetCategory -{ - uint8_t menuOrder; - int32_t icon; - int32_t category; - - CabinetCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Calendar -{ - std::vector< uint8_t > month; - std::vector< uint8_t > day; - - Calendar( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Carry -{ - uint64_t model; - uint8_t timeline; - - Carry( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Channeling -{ - std::string file; - uint8_t widthScale; - - Channeling( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CharaMakeClassEquip -{ - uint64_t helmet; - uint64_t top; - uint64_t glove; - uint64_t down; - uint64_t shoes; - uint64_t weapon; - uint64_t subWeapon; - int32_t _class; - - CharaMakeClassEquip( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CharaMakeCustomize -{ - uint8_t featureID; - uint32_t icon; - uint16_t data; - bool isPurchasable; - uint32_t hint; - uint32_t hintItem; - - CharaMakeCustomize( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CharaMakeName -{ - std::string hyurMidlanderMale; - std::string hyurMidlanderFemale; - std::string hyurMidlanderLastName; - std::string hyurHighlanderMale; - std::string hyurHighlanderFemale; - std::string hyurHighlanderLastName; - std::string elezenMale; - std::string elezenFemale; - std::string elezenWildwoodLastName; - std::string elezenDuskwightLastName; - std::string miqoteSunMale; - std::string miqoteSunFemale; - std::string miqoteSunMaleLastName; - std::string miqoteSunFemaleLastName; - std::string miqoteMoonMale; - std::string miqoteMoonFemale; - std::string miqoteMoonLastname; - std::string lalafellPlainsfolkFirstNameStart; - std::string lalafellPlainsfolkLastNameStart; - std::string lalafellPlainsfolkEndOfNames; - std::string lalafellDunesfolkMale; - std::string lalafellDunesfolkMaleLastName; - std::string lalafellDunesfolkFemale; - std::string lalafellDunesfolkFemaleLastName; - std::string roegadynSeaWolfMale; - std::string roegadynSeaWolfMaleLastName; - std::string roegadynSeaWolfFemale; - std::string roegadynSeaWolfFemaleLastName; - std::string roegadynHellsguardFirstName; - std::string roegadynHellsguardMaleLastName; - std::string roegadynHellsguardFemaleLastName; - std::string auRaRaenMale; - std::string auRaRaenFemale; - std::string auRaRaenLastName; - std::string auRaXaelaMale; - std::string auRaXaelaFemale; - std::string auRaXaelaLastName; - std::string hrothgarHellionsFirstName; - std::string hrothgarHellionsLastName; - std::string hrothgarLostFirstName; - std::string hrothgarLostLastName; - std::string vieraFirstName; - std::string vieraRavaLastName; - std::string vieraVeenaLastName; - - CharaMakeName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CharaMakeType -{ - int32_t race; - int32_t tribe; - int8_t gender; - std::vector< uint32_t > menu; - std::vector< uint8_t > initVal; - std::vector< uint8_t > subMenuType; - std::vector< uint8_t > subMenuNum; - std::vector< uint8_t > lookAt; - std::vector< uint32_t > subMenuMask; - std::vector< uint32_t > customize; - std::vector< uint8_t > voiceStruct; - - CharaMakeType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ChocoboRace -{ - uint8_t chocoboRaceRank; - uint8_t chocoboRaceTerritory; - - ChocoboRace( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ChocoboRaceAbility -{ - std::string name; - std::string description; - uint32_t icon; - int8_t chocoboRaceAbilityType; - uint8_t value; - - ChocoboRaceAbility( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ChocoboRaceAbilityType -{ - bool isActive; - - ChocoboRaceAbilityType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ChocoboRaceItem -{ - std::string name; - std::string description; - uint32_t icon; - - ChocoboRaceItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ChocoboRaceRank -{ - uint16_t ratingMin; - uint16_t ratingMax; - uint16_t name; - uint16_t fee; - int32_t icon; - - ChocoboRaceRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ChocoboRaceStatus -{ - int32_t status; - - ChocoboRaceStatus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ChocoboRaceTerritory -{ - uint16_t name; - int32_t icon; - - ChocoboRaceTerritory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ChocoboRaceTutorial -{ - std::vector< int32_t > npcYell; - - ChocoboRaceTutorial( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ChocoboRaceWeather -{ - int32_t weatherType1; - int32_t weatherType2; - - ChocoboRaceWeather( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ChocoboTaxi -{ - uint32_t location; - uint8_t fare; - uint16_t timeRequired; - - ChocoboTaxi( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ChocoboTaxiStand -{ - std::vector< uint16_t > targetLocations; - std::string placeName; - - ChocoboTaxiStand( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CircleActivity -{ - std::string name; - int32_t icon; - uint16_t order; - - CircleActivity( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ClassJob -{ - std::string name; - std::string abbreviation; - uint8_t classJobCategory; - int8_t expArrayIndex; - int8_t battleClassIndex; - uint8_t jobIndex; - int8_t dohDolJobIndex; - uint16_t modifierHitPoints; - uint16_t modifierManaPoints; - uint16_t modifierStrength; - uint16_t modifierVitality; - uint16_t modifierDexterity; - uint16_t modifierIntelligence; - uint16_t modifierMind; - uint16_t modifierPiety; - uint8_t pvPActionSortRow; - uint8_t classJobParent; - std::string nameEnglish; - int32_t itemStartingWeapon; - uint8_t role; - uint8_t startingTown; - int8_t monsterNote; - uint8_t primaryStat; - uint16_t limitBreak1; - uint16_t limitBreak2; - uint16_t limitBreak3; - uint8_t uIPriority; - uint32_t itemSoulCrystal; - uint32_t unlockQuest; - uint32_t relicQuest; - uint32_t prerequisite; - uint8_t startingLevel; - uint8_t partyBonus; - bool isLimitedJob; - bool canQueueForDuty; - - ClassJob( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ClassJobCategory -{ - std::string name; - bool aDV; - bool gLA; - bool pGL; - bool mRD; - bool lNC; - bool aRC; - bool cNJ; - bool tHM; - bool cRP; - bool bSM; - bool aRM; - bool gSM; - bool lTW; - bool wVR; - bool aLC; - bool cUL; - bool mIN; - bool bTN; - bool fSH; - bool pLD; - bool mNK; - bool wAR; - bool dRG; - bool bRD; - bool wHM; - bool bLM; - bool aCN; - bool sMN; - bool sCH; - bool rOG; - bool nIN; - bool mCH; - bool dRK; - bool aST; - bool sAM; - bool rDM; - bool bLU; - bool gNB; - bool dNC; - - ClassJobCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CollectablesShop -{ - std::string name; - uint32_t quest; - uint8_t rewardType; - std::vector< uint16_t > shopItems; - - CollectablesShop( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CollectablesShopItem -{ - uint32_t item; - uint8_t collectablesShopItemGroup; - uint16_t levelMin; - uint16_t levelMax; - uint8_t stars; - uint8_t key; - uint16_t collectablesShopRefine; - uint16_t collectablesShopRewardScrip; - - CollectablesShopItem( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CollectablesShopItemGroup -{ - std::string name; - - CollectablesShopItemGroup( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CollectablesShopRefine -{ - uint16_t lowCollectability; - uint16_t midCollectability; - uint16_t highCollectability; - - CollectablesShopRefine( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CollectablesShopRewardItem -{ - uint32_t item; - uint8_t rewardLow; - uint8_t rewardMid; - uint8_t rewardHigh; - - CollectablesShopRewardItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CollectablesShopRewardScrip -{ - uint16_t currency; - uint16_t lowReward; - uint16_t midReward; - uint16_t highReward; - uint16_t expRatioLow; - uint16_t expRatioMid; - uint16_t expRatioHigh; - - CollectablesShopRewardScrip( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Companion -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - uint16_t model; - uint8_t scale; - uint8_t inactiveIdle0; - uint8_t inactiveIdle1; - uint8_t inactiveBattle; - uint8_t inactiveWandering; - uint8_t behavior; - uint8_t special; - uint8_t wanderingWait; - uint16_t priority; - bool roulette; - bool battle; - bool lookAt; - bool poke; - uint16_t enemy; - bool stroke; - bool clapping; - uint16_t icon; - uint16_t order; - uint8_t cost; - uint16_t hP; - uint16_t skillAngle; - uint8_t skillCost; - uint8_t minionRace; - - Companion( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CompanionMove -{ - std::string name; - - CompanionMove( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CompanionTransient -{ - std::string description; - std::string descriptionEnhanced; - std::string tooltip; - std::string specialActionName; - std::string specialActionDescription; - uint8_t attack; - uint8_t defense; - uint8_t speed; - bool hasAreaAttack; - bool strengthGate; - bool strengthEye; - bool strengthShield; - bool strengthArcana; - uint8_t minionSkillType; - - CompanionTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CompanyAction -{ - std::string name; - std::string description; - int32_t icon; - uint8_t fCRank; - uint32_t cost; - uint8_t order; - bool purchasable; - - CompanyAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CompanyCraftDraft -{ - std::string name; - uint8_t companyCraftDraftCategory; - uint32_t order; - - CompanyCraftDraft( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CompanyCraftDraftCategory -{ - std::string name; - - CompanyCraftDraftCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CompanyCraftManufactoryState -{ - std::string name; - - CompanyCraftManufactoryState( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CompanyCraftPart -{ - uint8_t companyCraftType; - std::vector< uint16_t > companyCraftProcess; - - CompanyCraftPart( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CompanyCraftProcess -{ - - CompanyCraftProcess( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CompanyCraftSequence -{ - int32_t resultItem; - int32_t category; - int32_t companyCraftDraftCategory; - int32_t companyCraftType; - int32_t companyCraftDraft; - std::vector< uint16_t > companyCraftPart; - uint32_t order; - - CompanyCraftSequence( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CompanyCraftSupplyItem -{ - uint32_t item; - - CompanyCraftSupplyItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CompanyCraftType -{ - std::string name; - - CompanyCraftType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CompanyLeve -{ - std::vector< uint16_t > routePointTime; - std::vector< int32_t > baseID; - std::vector< uint16_t > enemyLevel; - std::vector< uint32_t > bNpcName; - std::vector< int32_t > itemsInvolved; - std::vector< uint8_t > itemsInvolvedQty; - std::vector< uint8_t > itemDropRate; - std::vector< uint8_t > toDoSequence; - int32_t rule; - uint8_t ruleParam; - - CompanyLeve( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CompanyLeveRule -{ - std::string type; - uint16_t objective; - uint16_t help; - - CompanyLeveRule( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CompleteJournal -{ - uint16_t requiredLevel; - int32_t icon; - std::string name; - std::vector< int32_t > cutscene; - - CompleteJournal( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CompleteJournalCategory -{ - uint32_t firstQuest; - uint32_t lastQuest; - - CompleteJournalCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Completion -{ - uint16_t group; - uint16_t key; - std::string lookupTable; - std::string text; - std::string groupTitle; - - Completion( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Condition -{ - uint32_t logMessage; - - Condition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ConfigKey -{ - std::string label; - uint8_t param; - uint8_t platform; - bool required; - uint8_t category; - std::string text; - - ConfigKey( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentCloseCycle -{ - uint32_t unixtime; - uint32_t timeSeconds; - - ContentCloseCycle( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentExAction -{ - uint32_t name; - uint8_t charges; - - ContentExAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentFinderCondition -{ - std::string shortCode; - uint16_t territoryType; - uint8_t contentLinkType; - uint16_t content; - bool pvP; - uint8_t acceptClassJobCategory; - uint8_t contentMemberType; - uint32_t unlockQuest; - uint8_t classJobLevelRequired; - uint8_t classJobLevelSync; - uint16_t itemLevelRequired; - uint16_t itemLevelSync; - bool allowUndersized; - bool allowReplacement; - bool allowExplorerMode; - bool highEndDuty; - bool dutyRecorderAllowed; - std::string name; - std::string nameShort; - uint8_t contentType; - uint8_t transientKey; - uint32_t transient; - uint16_t sortKey; - uint32_t image; - uint32_t icon; - bool level506070Roulette; - bool levelingRoulette; - bool mSQRoulette; - bool guildHestRoulette; - bool expertRoulette; - bool trialRoulette; - bool dailyFrontlineChallenge; - bool level80Roulette; - bool mentorRoulette; - bool allianceRoulette; - bool feastTeamRoulette; - bool normalRaidRoulette; - - ContentFinderCondition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentFinderConditionTransient -{ - std::string description; - - ContentFinderConditionTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentGauge -{ - std::string name; - uint8_t color; - std::string textString; - - ContentGauge( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentGaugeColor -{ - uint32_t androidColor1; - uint32_t androidColor2; - uint32_t androidColor3; - - ContentGaugeColor( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentMemberType -{ - uint8_t tanksPerParty; - uint8_t healersPerParty; - uint8_t meleesPerParty; - uint8_t rangedPerParty; - - ContentMemberType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentNpcTalk -{ - int32_t type; - std::vector< uint32_t > contentTalk; - - ContentNpcTalk( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentRandomSelect -{ - uint16_t name; - - ContentRandomSelect( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentRoulette -{ - std::string name; - std::string category; - std::string description; - std::string dutyType; - bool isInDutyFinder; - uint8_t openRule; - uint8_t requiredLevel; - uint16_t itemLevelRequired; - uint32_t icon; - uint8_t contentRouletteRoleBonus; - uint16_t rewardTomeA; - uint16_t rewardTomeB; - uint16_t rewardTomeC; - uint8_t sortKey; - uint8_t contentMemberType; - bool requireAllDuties; - uint8_t contentRouletteOpenRule; - uint16_t instanceContent; - - ContentRoulette( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentRouletteOpenRule -{ - uint32_t type; - - ContentRouletteOpenRule( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentRouletteRoleBonus -{ - uint32_t itemRewardType; - uint8_t rewardAmount; - - ContentRouletteRoleBonus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentsNote -{ - uint8_t contentType; - int32_t icon; - uint8_t menuOrder; - int32_t requiredAmount; - uint8_t reward0; - int32_t expMultiplier; - uint8_t reward1; - int32_t gilRward; - uint16_t levelUnlock; - uint16_t howTo; - uint32_t reqUnlock; - std::string name; - std::string description; - int32_t expCap; - - ContentsNote( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentsTutorial -{ - std::string name; - std::string description; - std::vector< int32_t > page; - - ContentsTutorial( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentsTutorialPage -{ - int32_t image; - std::string description; - - ContentsTutorialPage( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentTalk -{ - uint8_t contentTalkParam; - std::string text; - - ContentTalk( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentTalkParam -{ - bool param; - uint32_t testAction; - - ContentTalkParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ContentType -{ - std::string name; - uint32_t icon; - uint32_t iconDutyFinder; - - ContentType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CraftAction -{ - std::string name; - std::string description; - uint16_t animationStart; - uint16_t animationEnd; - uint16_t icon; - int8_t classJob; - uint8_t classJobCategory; - uint8_t classJobLevel; - uint32_t questRequirement; - bool specialist; - uint8_t cost; - int32_t cRP; - int32_t bSM; - int32_t aRM; - int32_t gSM; - int32_t lTW; - int32_t wVR; - int32_t aLC; - int32_t cUL; - - CraftAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CraftLeve -{ - int32_t leve; - int32_t craftLeveTalk; - uint8_t repeats; - - CraftLeve( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CraftLevelDifference -{ - int16_t difference; - int16_t progressFactor; - int16_t qualityFactor; - - CraftLevelDifference( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CraftLeveTalk -{ - std::vector< std::string > talk; - - CraftLeveTalk( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CraftType -{ - uint8_t mainPhysical; - uint8_t subPhysical; - std::string name; - - CraftType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Credit -{ - uint16_t roles1; - uint16_t japaneseCast1; - uint16_t englishCast1; - uint16_t frenchCast1; - uint16_t germanCast1; - uint16_t roles2; - uint16_t japaneseCast2; - uint16_t englishCast2; - uint16_t frenchCast2; - uint16_t germanCast2; - - Credit( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CreditBackImage -{ - uint32_t backImage; - - CreditBackImage( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CreditCast -{ - std::string name; - - CreditCast( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CreditList -{ - uint16_t scale; - uint32_t icon; - uint32_t font; - uint32_t cast; - - CreditList( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CreditListText -{ - std::string name; - - CreditListText( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CustomTalk -{ - uint32_t iconActor; - uint32_t iconMap; - std::string name; - std::vector< std::string > scriptInstruction; - std::vector< uint32_t > scriptArg; - std::string mainOption; - std::string subOption; - uint32_t specialLinks; - - CustomTalk( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CustomTalkNestHandlers -{ - uint32_t nestHandler; - - CustomTalkNestHandlers( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Cutscene -{ - std::string path; - - Cutscene( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CutSceneIncompQuest -{ - uint32_t quest; - - CutSceneIncompQuest( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CutsceneMotion -{ - float wALK_LOOP_SPEED; - float rUN_LOOP_SPEED; - float sLOWWALK_LOOP_SPEED; - float sLOWRUN_LOOP_SPEED; - float bATTLEWALK_LOOP_SPEED; - float bATTLERUN_LOOP_SPEED; - float dASH_LOOP_SPEED; - uint8_t tURN_CW90_FRAME; - uint8_t tURN_CCW90_FRAME; - uint8_t tURN_CW180_FRAME; - uint8_t tURN_CCW180_FRAME; - - CutsceneMotion( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CutsceneWorkIndex -{ - uint16_t workIndex; - - CutsceneWorkIndex( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CutScreenImage -{ - int16_t type; - int32_t image; - - CutScreenImage( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct CycleTime -{ - uint32_t firstCycle; - uint32_t cycle; - - CycleTime( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DailySupplyItem -{ - - DailySupplyItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DawnContent -{ - uint32_t content; - uint32_t exp; - - DawnContent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DawnGrowMember -{ - uint32_t member; - uint32_t imageName; - uint32_t bigImageOld; - uint32_t bigImageNew; - uint32_t smallImageOld; - uint32_t smallImageNew; - uint8_t _class; - - DawnGrowMember( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DawnMemberUIParam -{ - std::string classSingular; - uint32_t voiceLine; - std::string classPlural; - - DawnMemberUIParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DawnQuestAnnounce -{ - uint32_t quest; - uint8_t content; - std::vector< uint32_t > eNPC; - - DawnQuestAnnounce( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DawnQuestMember -{ - uint32_t member; - uint32_t imageName; - uint32_t bigImageOld; - uint32_t bigImageNew; - uint8_t _class; - - DawnQuestMember( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DeepDungeon -{ - uint8_t aetherpoolArm; - uint8_t aetherpoolArmor; - std::vector< uint8_t > pomanderSlot; - std::vector< uint8_t > magiciteSlot; - std::string name; - uint16_t contentFinderConditionStart; - - DeepDungeon( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DeepDungeonBan -{ - uint16_t screenImage; - uint16_t logMessage; - uint16_t name; - - DeepDungeonBan( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DeepDungeonDanger -{ - uint16_t screenImage; - uint16_t logMessage; - uint16_t name; - - DeepDungeonDanger( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DeepDungeonEquipment -{ - uint32_t icon; - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - std::string name; - std::string description; - - DeepDungeonEquipment( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DeepDungeonFloorEffectUI -{ - uint32_t icon; - std::string name; - std::string description; - - DeepDungeonFloorEffectUI( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DeepDungeonItem -{ - uint32_t icon; - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - std::string name; - std::string tooltip; - uint32_t action; - - DeepDungeonItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DeepDungeonLayer -{ - uint8_t deepDungeon; - uint8_t floorSet; - uint16_t roomA; - uint16_t roomB; - uint16_t roomC; - uint8_t wepMinLv; - uint8_t armourMinLv; - - DeepDungeonLayer( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DeepDungeonMagicStone -{ - uint32_t icon; - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - std::string name; - std::string tooltip; - - DeepDungeonMagicStone( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DeepDungeonMap5X -{ - std::vector< uint16_t > deepDungeonRoom; - - DeepDungeonMap5X( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DeepDungeonRoom -{ - std::vector< uint32_t > level; - - DeepDungeonRoom( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DeepDungeonStatus -{ - uint16_t screenImage; - uint16_t logMessage; - uint16_t name; - - DeepDungeonStatus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DefaultTalk -{ - std::vector< uint16_t > actionTimelinePose; - std::vector< std::string > text; - - DefaultTalk( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DefaultTalkLipSyncType -{ - int32_t actionTimeline; - - DefaultTalkLipSyncType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DeliveryQuest -{ - int32_t quest; - - DeliveryQuest( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Description -{ - uint32_t quest; - std::string textLong; - std::string textShort; - std::string textCommentary; - uint32_t section; - - Description( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DescriptionPage -{ - uint32_t quest; - - DescriptionPage( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DescriptionSection -{ - uint16_t string; - uint16_t page; - - DescriptionSection( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DescriptionString -{ - std::string text; - - DescriptionString( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DisposalShop -{ - std::string shopName; - - DisposalShop( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DisposalShopFilterType -{ - std::string category; - - DisposalShopFilterType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DisposalShopItem -{ - int32_t itemDisposed; - int32_t itemReceived; - uint32_t quantityReceived; - - DisposalShopItem( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DpsChallenge -{ - uint16_t playerLevel; - uint16_t placeName; - uint32_t icon; - uint16_t order; - std::string name; - std::string description; - - DpsChallenge( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DpsChallengeOfficer -{ - uint32_t unlockQuest; - std::vector< uint16_t > challengeName; - - DpsChallengeOfficer( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DpsChallengeTransient -{ - uint16_t instanceContent; - - DpsChallengeTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DynamicEvent -{ - uint8_t eventType; - uint8_t enemyType; - uint32_t lGBEventObject; - uint32_t lGBMapRange; - uint32_t quest; - uint8_t singleBattle; - uint32_t announce; - std::string name; - std::string description; - - DynamicEvent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DynamicEventEnemyType -{ - std::string name; - - DynamicEventEnemyType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DynamicEventSingleBattle -{ - int32_t bNpcName; - uint32_t icon; - std::string text; - - DynamicEventSingleBattle( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct DynamicEventType -{ - uint32_t iconObjective0; - uint32_t iconObjective1; - - DynamicEventType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EmjAddon -{ - std::string text; - - EmjAddon( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EmjDani -{ - uint32_t icon; - - EmjDani( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Emote -{ - std::string name; - std::vector< uint16_t > actionTimeline; - uint8_t emoteCategory; - uint8_t emoteMode; - bool hasCancelEmote; - bool drawsWeapon; - uint16_t order; - int32_t textCommand; - uint16_t icon; - uint16_t logMessageTargeted; - uint16_t logMessageUntargeted; - uint32_t unlockLink; - - Emote( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EmoteCategory -{ - std::string name; - - EmoteCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EmoteMode -{ - uint16_t startEmote; - uint16_t endEmote; - bool move; - bool camera; - bool endOnRotate; - bool endOnEmote; - uint8_t conditionMode; - - EmoteMode( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ENpcBase -{ - uint16_t eventHandler; - bool important; - std::vector< uint32_t > eNpcData; - float scale; - uint16_t modelChara; - uint8_t race; - uint8_t gender; - uint8_t bodyType; - uint8_t height; - uint8_t tribe; - uint8_t face; - uint8_t hairStyle; - uint8_t hairHighlight; - uint8_t skinColor; - uint8_t eyeHeterochromia; - uint8_t hairColor; - uint8_t hairHighlightColor; - uint8_t facialFeature; - uint8_t facialFeatureColor; - uint8_t eyebrows; - uint8_t eyeColor; - uint8_t eyeShape; - uint8_t nose; - uint8_t jaw; - uint8_t mouth; - uint8_t lipColor; - uint8_t bustOrTone1; - uint8_t extraFeature1; - uint8_t extraFeature2OrBust; - uint8_t facePaint; - uint8_t facePaintColor; - uint16_t npcEquip; - uint16_t behavior; - uint64_t modelMainHand; - uint8_t dyeMainHand; - uint64_t modelOffHand; - uint8_t dyeOffHand; - uint32_t modelHead; - uint8_t dyeHead; - bool visor; - uint32_t modelBody; - uint8_t dyeBody; - uint32_t modelHands; - uint8_t dyeHands; - uint32_t modelLegs; - uint8_t dyeLegs; - uint32_t modelFeet; - uint8_t dyeFeet; - uint32_t modelEars; - uint8_t dyeEars; - uint32_t modelNeck; - uint8_t dyeNeck; - uint32_t modelWrists; - uint8_t dyeWrists; - uint32_t modelLeftRing; - uint8_t dyeLeftRing; - uint32_t modelRightRing; - uint8_t dyeRightRing; - uint8_t invisibility; - uint16_t balloon; - bool notRewriteHeight; - uint8_t defaultBalloon; - - ENpcBase( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ENpcDressUp -{ - uint8_t eNpcDressUpDress; - - ENpcDressUp( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ENpcDressUpDress -{ - uint32_t eNpc; - uint16_t behavior; - uint64_t modelMainHand; - uint8_t dyeMainHand; - uint64_t modelOffHand; - uint8_t dyeOffHand; - uint32_t modelHead; - uint8_t dyeHead; - uint32_t modelBody; - uint8_t dyeBody; - uint32_t modelHands; - uint8_t dyeHands; - uint32_t modelLegs; - uint8_t dyeLegs; - uint32_t modelFeet; - uint8_t dyeFeet; - - ENpcDressUpDress( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ENpcResident -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - std::string title; - uint8_t map; - - ENpcResident( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EObj -{ - uint8_t popType; - uint32_t data; - uint8_t invisibility; - uint16_t sgbPath; - bool eyeCollision; - bool directorControl; - bool target; - uint8_t eventHighAddition; - bool addedIn53; - - EObj( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EObjName -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - - EObjName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EquipRaceCategory -{ - bool hyur; - bool elezen; - bool lalafell; - bool miqote; - bool roegadyn; - bool auRa; - bool male; - bool female; - - EquipRaceCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EquipSlotCategory -{ - int8_t mainHand; - int8_t offHand; - int8_t head; - int8_t body; - int8_t gloves; - int8_t waist; - int8_t legs; - int8_t feet; - int8_t ears; - int8_t neck; - int8_t wrists; - int8_t fingerL; - int8_t fingerR; - int8_t soulCrystal; - - EquipSlotCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EurekaAetherItem -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - std::string name; - - EurekaAetherItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EurekaAethernet -{ - uint16_t location; - - EurekaAethernet( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EurekaGrowData -{ - uint16_t baseResistance; - - EurekaGrowData( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EurekaLogosMixerProbability -{ - uint8_t probability; - - EurekaLogosMixerProbability( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EurekaMagiaAction -{ - uint32_t action; - uint8_t maxUses; - - EurekaMagiaAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EurekaMagiciteItem -{ - uint8_t eurekaMagiciteItemType; - uint8_t classJobCategory; - uint32_t item; - - EurekaMagiciteItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EurekaMagiciteItemType -{ - std::string type; - - EurekaMagiciteItemType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EurekaSphereElementAdjust -{ - uint16_t powerModifier; - - EurekaSphereElementAdjust( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EventAction -{ - std::string name; - uint16_t icon; - uint8_t castTime; - std::vector< uint16_t > animation; - - EventAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EventCustomIconType -{ - std::vector< uint32_t > announceQuest; - std::vector< uint32_t > announceQuestLocked; - std::vector< uint32_t > mapAnnounceQuest0; - std::vector< uint32_t > mapAnnounceQuestLocked; - std::vector< uint32_t > mapAnnounceQuest1; - - EventCustomIconType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EventIconPriority -{ - std::vector< uint32_t > icon; - - EventIconPriority( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EventIconType -{ - uint32_t npcIconAvailable; - uint32_t mapIconAvailable; - uint32_t npcIconInvalid; - uint32_t mapIconInvalid; - uint8_t iconRange; - - EventIconType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EventItem -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - std::string name; - uint16_t icon; - uint16_t action; - uint8_t stackSize; - uint32_t quest; - uint8_t castTime; - uint8_t castTimeline; - uint8_t timeline; - - EventItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EventItemCastTimeline -{ - uint32_t actionTimeline; - - EventItemCastTimeline( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EventItemHelp -{ - std::string description; - - EventItemHelp( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EventItemTimeline -{ - uint32_t actionTimeline; - - EventItemTimeline( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct EventSystemDefine -{ - std::string text; - uint32_t defineValue; - - EventSystemDefine( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ExportedGatheringPoint -{ - float x; - float y; - uint8_t radius; - - ExportedGatheringPoint( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ExportedSG -{ - std::string sgbPath; - - ExportedSG( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ExVersion -{ - std::string name; - uint16_t acceptJingle; - uint16_t completeJingle; - - ExVersion( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Fate -{ - std::string name; - std::string description; - std::string objective; - std::vector< std::string > statusText; - uint8_t eurekaFate; - uint8_t rule; - uint16_t fateRuleEx; - uint32_t location; - uint8_t classJobLevel; - uint8_t classJobLevelMax; - uint32_t eventItem; - std::vector< uint8_t > typeToDoValue; - uint32_t iconObjective; - uint32_t iconMap; - uint32_t iconInactiveMap; - int32_t music; - uint32_t lGBGuardNPCLocation; - uint16_t screenImageAccept; - uint16_t screenImageComplete; - uint16_t screenImageFailed; - uint32_t requiredQuest; - bool specialFate; - uint16_t givenStatus; - bool adventEvent; - bool moonFaireEvent; - uint32_t fATEChain; - uint32_t arrayIndex; - uint32_t reqEventItem; - uint32_t turnInEventItem; - std::vector< uint16_t > objectiveIcon; - - Fate( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FateEvent -{ - std::vector< uint8_t > turn; - std::vector< uint32_t > gesture; - std::vector< int32_t > lipSync; - std::vector< int32_t > facial; - std::vector< int32_t > shape; - std::vector< bool > isAutoShake; - std::vector< uint8_t > widgetType; - std::vector< std::string > text; - - FateEvent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FateMode -{ - uint32_t motivationIcon; - uint32_t motivationMapMarker; - uint32_t objectiveIcon; - uint32_t objectiveMapMarker; - - FateMode( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FateProgressUI -{ - int32_t location; - int32_t achievement; - uint8_t reqFatesToRank2; - uint8_t reqFatesToRank3; - uint8_t displayOrder; - - FateProgressUI( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FateTokenType -{ - uint32_t currency; - - FateTokenType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FCActivity -{ - std::string text; - uint8_t selfKind; - uint8_t targetKind; - uint8_t numParam; - uint8_t fCActivityCategory; - int8_t iconType; - - FCActivity( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FCActivityCategory -{ - uint8_t priority; - std::string name; - - FCActivityCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FCAuthority -{ - std::string name; - int32_t fCAuthorityCategory; - - FCAuthority( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FCAuthorityCategory -{ - std::string name; - - FCAuthorityCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FCChestName -{ - std::string name; - - FCChestName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FCCrestSymbol -{ - uint8_t colorNum; - uint8_t fCRight; - - FCCrestSymbol( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FccShop -{ - std::string name; - - FccShop( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FCHierarchy -{ - std::string name; - - FCHierarchy( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FCProfile -{ - uint8_t priority; - std::string name; - - FCProfile( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FCRank -{ - uint32_t nextPoint; - uint32_t currentPoint; - uint16_t rights; - uint8_t fCActionActiveNum; - uint8_t fCActionStockNum; - - FCRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FCReputation -{ - uint32_t pointsToNext; - uint32_t requiredPoints; - uint8_t discountRate; - uint32_t color; - std::string name; - - FCReputation( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FCRights -{ - std::string name; - std::string description; - uint16_t icon; - uint8_t fCRank; - - FCRights( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Festival -{ - std::string name; - - Festival( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FieldMarker -{ - int32_t vFX; - uint16_t uiIcon; - uint16_t mapIcon; - std::string name; - - FieldMarker( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FishingRecordType -{ - int32_t addon; - uint16_t rankBRequirement; - uint16_t rankARequirement; - uint16_t rankAARequirement; - uint16_t rankAAARequirement; - - FishingRecordType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FishingRecordTypeTransient -{ - int32_t image; - - FishingRecordTypeTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FishingSpot -{ - uint8_t gatheringLevel; - std::string bigFishOnReach; - std::string bigFishOnEnd; - uint8_t fishingSpotCategory; - bool rare; - uint16_t territoryType; - uint16_t placeNameMain; - uint16_t placeNameSub; - int16_t x; - int16_t z; - uint16_t radius; - std::vector< int32_t > item; - uint16_t placeName; - uint8_t order; - - FishingSpot( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FishParameter -{ - std::string text; - int32_t item; - uint16_t gatheringItemLevel; - bool isHidden; - uint8_t fishingRecordType; - int32_t territoryType; - uint16_t gatheringSubCategory; - bool isInLog; - bool timeRestricted; - bool weatherRestricted; - - FishParameter( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Frontline03 -{ - std::vector< uint32_t > emptyIcon; - std::vector< uint32_t > maelstromIcon; - std::vector< uint32_t > twinAdderIcon; - std::vector< uint32_t > immortalFlamesIcon; - - Frontline03( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Frontline04 -{ - int32_t level1; - int32_t level2; - int32_t level3; - - Frontline04( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FurnitureCatalogCategory -{ - std::string category; - - FurnitureCatalogCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct FurnitureCatalogItemList -{ - uint16_t category; - int32_t item; - uint16_t patch; - - FurnitureCatalogItemList( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GardeningSeed -{ - uint32_t item; - uint16_t modelID; - uint32_t icon; - bool sE; - - GardeningSeed( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringCondition -{ - std::string text; - - GatheringCondition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringExp -{ - int32_t exp; - - GatheringExp( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringItem -{ - int32_t item; - uint16_t gatheringItemLevel; - bool isHidden; - - GatheringItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringItemLevelConvertTable -{ - uint8_t gatheringItemLevel; - uint8_t stars; - - GatheringItemLevelConvertTable( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringItemPoint -{ - uint32_t gatheringPoint; - - GatheringItemPoint( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringLeve -{ - std::vector< int32_t > route; - int32_t requiredItem0; - uint8_t requiredItemQty0; - int32_t requiredItem1; - uint8_t requiredItemQty1; - int32_t requiredItem2; - uint8_t requiredItemQty2; - int32_t requiredItem3; - uint8_t requiredItemQty3; - uint8_t itemNumber; - int32_t rule; - uint8_t varient; - uint16_t objective0; - uint16_t objective1; - int32_t bNpcEntry; - bool useSecondaryTool; - - GatheringLeve( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringLeveRoute -{ - - GatheringLeveRoute( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringLeveRule -{ - std::string rule; - - GatheringLeveRule( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringNotebookList -{ - std::vector< int32_t > gatheringItem; - - GatheringNotebookList( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringPoint -{ - uint8_t type; - int32_t gatheringPointBase; - uint8_t count; - std::vector< uint16_t > gatheringPointBonus; - uint16_t territoryType; - uint16_t placeName; - uint16_t gatheringSubCategory; - - GatheringPoint( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringPointBase -{ - int32_t gatheringType; - uint8_t gatheringLevel; - std::vector< int32_t > item; - bool isLimited; - - GatheringPointBase( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringPointBonus -{ - uint8_t condition; - uint32_t conditionValue; - uint8_t bonusType; - uint16_t bonusValue; - - GatheringPointBonus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringPointBonusType -{ - std::string text; - - GatheringPointBonusType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringPointName -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - - GatheringPointName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringPointTransient -{ - uint16_t ephemeralStartTime; - uint16_t ephemeralEndTime; - int32_t gatheringRarePopTimeTable; - - GatheringPointTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringRarePopTimeTable -{ - - GatheringRarePopTimeTable( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringSubCategory -{ - uint8_t gatheringType; - uint8_t classJob; - uint16_t division; - int32_t item; - std::string folkloreBook; - - GatheringSubCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GatheringType -{ - std::string name; - int32_t iconMain; - int32_t iconOff; - - GatheringType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GcArmyCaptureTactics -{ - int32_t name; - uint8_t hP; - uint8_t damageDealt; - uint8_t damageReceived; - uint32_t tactic; - uint32_t icon; - - GcArmyCaptureTactics( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GcArmyEquipPreset -{ - int32_t mainHand; - int32_t offHand; - int32_t head; - int32_t body; - int32_t gloves; - int32_t legs; - int32_t feet; - - GcArmyEquipPreset( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GcArmyExpedition -{ - uint8_t requiredFlag; - uint8_t unlockFlag; - uint8_t requiredLevel; - uint16_t requiredSeals; - uint32_t rewardExperience; - uint8_t percentBase; - uint8_t gcArmyExpeditionType; - std::string name; - std::string description; - - GcArmyExpedition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GcArmyExpeditionMemberBonus -{ - uint8_t race; - uint8_t classJob; - - GcArmyExpeditionMemberBonus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GcArmyExpeditionType -{ - std::string name; - - GcArmyExpeditionType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GcArmyMemberGrow -{ - uint8_t classJob; - int32_t classBook; - std::vector< uint16_t > equipPreset; - std::vector< uint8_t > physical; - std::vector< uint8_t > mental; - std::vector< uint8_t > tactical; - - GcArmyMemberGrow( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GcArmyTraining -{ - int8_t physicalBonus; - int8_t mentalBonus; - int8_t tacticalBonus; - uint32_t experience; - std::string name; - std::string description; - - GcArmyTraining( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GCRankGridaniaFemaleText -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - std::string nameRank; - - GCRankGridaniaFemaleText( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GCRankGridaniaMaleText -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - std::string nameRank; - - GCRankGridaniaMaleText( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GCRankLimsaFemaleText -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - std::string nameRank; - - GCRankLimsaFemaleText( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GCRankLimsaMaleText -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - std::string nameRank; - - GCRankLimsaMaleText( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GCRankUldahFemaleText -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - std::string nameRank; - - GCRankUldahFemaleText( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GCRankUldahMaleText -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - std::string nameRank; - - GCRankUldahMaleText( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GCScripShopCategory -{ - int8_t grandCompany; - int8_t tier; - int8_t subCategory; - - GCScripShopCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GCScripShopItem -{ - int32_t item; - int32_t requiredGrandCompanyRank; - uint32_t costGCSeals; - uint8_t sortKey; - - GCScripShopItem( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GCShop -{ - int8_t grandCompany; - - GCShop( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GCShopItemCategory -{ - std::string name; - - GCShopItemCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GCSupplyDuty -{ - - GCSupplyDuty( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GCSupplyDutyReward -{ - uint32_t experienceSupply; - uint32_t experienceProvisioning; - uint32_t sealsExpertDelivery; - uint32_t sealsSupply; - uint32_t sealsProvisioning; - - GCSupplyDutyReward( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GeneralAction -{ - std::string name; - std::string description; - uint16_t action; - uint16_t unlockLink; - uint8_t recast; - uint8_t uIPriority; - int32_t icon; - - GeneralAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GFATE -{ - std::vector< uint32_t > icon; - - GFATE( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GFateClimbing2 -{ - uint32_t contentEntry; - - GFateClimbing2( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GFateClimbing2Content -{ - uint32_t publicContentTextData; - - GFateClimbing2Content( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GFateClimbing2TotemType -{ - uint32_t publicContentTextData; - - GFateClimbing2TotemType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GFateRideShooting -{ - uint32_t contentEntry; - - GFateRideShooting( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GilShop -{ - std::string name; - uint32_t icon; - uint32_t quest; - int32_t acceptTalk; - int32_t failTalk; - - GilShop( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GilShopItem -{ - int32_t item; - std::vector< int32_t > questRequired; - int32_t achievementRequired; - uint16_t stateRequired; - uint16_t patch; - - GilShopItem( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GimmickAccessor -{ - int32_t param0; - uint32_t param1; - uint32_t param2; - uint32_t type; - - GimmickAccessor( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GimmickJump -{ - uint16_t fallDamage; - int8_t height; - uint32_t loopMotion; - uint32_t endMotion; - bool startClient; - - GimmickJump( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GimmickRect -{ - uint32_t layoutID; - uint8_t triggerIn; - uint32_t param0; - uint8_t triggerOut; - uint32_t param1; - - GimmickRect( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GoldSaucerArcadeMachine -{ - uint32_t failImage; - uint32_t poor; - uint32_t good; - uint32_t great; - uint32_t excellent; - - GoldSaucerArcadeMachine( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GoldSaucerTextData -{ - std::string text; - - GoldSaucerTextData( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GrandCompany -{ - std::string name; - - GrandCompany( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GrandCompanyRank -{ - uint8_t tier; - uint8_t order; - uint32_t maxSeals; - uint32_t requiredSeals; - int32_t iconMaelstrom; - int32_t iconSerpents; - int32_t iconFlames; - int32_t questMaelstrom; - int32_t questSerpents; - int32_t questFlames; - - GrandCompanyRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GroupPoseFrame -{ - int32_t image; - std::string gridText; - std::string text; - - GroupPoseFrame( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GroupPoseStamp -{ - int32_t stampIcon; - int32_t category; - std::string name; - - GroupPoseStamp( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GroupPoseStampCategory -{ - std::string name; - - GroupPoseStampCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GuardianDeity -{ - std::string name; - std::string description; - uint16_t icon; - - GuardianDeity( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Guide -{ - uint16_t guideTitle; - uint16_t guidePage; - - Guide( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GuidePage -{ - uint8_t key; - uint32_t output; - - GuidePage( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GuidePageString -{ - std::string string; - - GuidePageString( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GuideTitle -{ - std::string title; - - GuideTitle( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GuildleveAssignment -{ - std::string type; - uint8_t typeId; - uint32_t assignmentTalk; - std::vector< uint32_t > quest; - uint8_t grandCompanyRank; - - GuildleveAssignment( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GuildleveAssignmentCategory -{ - std::vector< int32_t > category; - - GuildleveAssignmentCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GuildleveAssignmentTalk -{ - std::vector< std::string > talk; - - GuildleveAssignmentTalk( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GuildOrder -{ - uint32_t eNpcName; - std::string objective; - std::string description1; - std::string description2; - std::string description3; - uint32_t completionBonusExp; - uint32_t rewardExp; - uint32_t completionBonusGil; - uint32_t rewardGil; - - GuildOrder( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GuildOrderGuide -{ - - GuildOrderGuide( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct GuildOrderOfficer -{ - - GuildOrderOfficer( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HairMakeType -{ - int32_t race; - int32_t tribe; - int8_t gender; - - HairMakeType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HouseRetainerPose -{ - uint16_t actionTimeline; - - HouseRetainerPose( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HousingAethernet -{ - uint32_t level; - uint16_t territoryType; - uint16_t placeName; - uint8_t order; - - HousingAethernet( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HousingAppeal -{ - std::string tag; - uint32_t icon; - uint8_t order; - - HousingAppeal( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HousingEmploymentNpcList -{ - uint8_t race; - std::vector< uint32_t > eNpcBase; - - HousingEmploymentNpcList( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HousingEmploymentNpcRace -{ - std::string race; - - HousingEmploymentNpcRace( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HousingExterior -{ - uint16_t placeName; - uint8_t housingSize; - std::string model; - - HousingExterior( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HousingFurniture -{ - uint16_t modelKey; - uint8_t housingItemCategory; - uint8_t usageType; - uint32_t usageParameter; - uint8_t aquariumTier; - uint32_t customTalk; - uint32_t item; - bool destroyOnRemoval; - bool tooltip; - - HousingFurniture( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HousingLandSet -{ - std::vector< uint8_t > plotSize; - std::vector< uint32_t > minPrice; - std::vector< uint32_t > initialPrice; - - HousingLandSet( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HousingMapMarkerInfo -{ - float x; - float y; - float z; - uint16_t map; - - HousingMapMarkerInfo( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HousingMerchantPose -{ - uint16_t actionTimeline; - std::string pose; - - HousingMerchantPose( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HousingPlacement -{ - std::string text; - - HousingPlacement( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HousingPreset -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - uint16_t placeName; - uint8_t housingSize; - int32_t exteriorRoof; - int32_t exteriorWall; - int32_t exteriorWindow; - int32_t exteriorDoor; - int32_t interiorWall; - int32_t interiorFlooring; - int32_t interiorLighting; - int32_t otherFloorWall; - int32_t otherFloorFlooring; - int32_t otherFloorLighting; - int32_t basementWall; - int32_t basementFlooring; - int32_t basementLighting; - int32_t mansionLighting; - - HousingPreset( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HousingUnitedExterior -{ - std::vector< uint32_t > item; - - HousingUnitedExterior( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HousingYardObject -{ - uint8_t modelKey; - uint8_t housingItemCategory; - uint8_t usageType; - uint32_t usageParameter; - uint32_t customTalk; - uint32_t item; - bool destroyOnRemoval; - - HousingYardObject( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HowTo -{ - std::string name; - bool announce; - std::vector< int16_t > howToPagePC; - std::vector< int16_t > howToPageController; - int8_t category; - uint8_t sort; - - HowTo( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HowToCategory -{ - std::string category; - - HowToCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HowToPage -{ - uint8_t type; - uint8_t iconType; - int32_t image; - uint8_t textType; - std::vector< std::string > text; - - HowToPage( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HugeCraftworksNpc -{ - uint32_t eNpcResident; - uint16_t classJobCategory; - std::vector< uint32_t > itemRequested; - std::vector< uint8_t > qtyRequested; - std::vector< uint32_t > itemReward; - std::vector< uint8_t > qtyItemReward; - std::vector< uint32_t > itemUnkown; - std::vector< uint8_t > qtyItemUnkown; - std::string transient; - - HugeCraftworksNpc( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HugeCraftworksRank -{ - uint8_t crafterLevel; - uint32_t expRewardPerItem; - - HugeCraftworksRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HWDAnnounce -{ - std::string name; - uint32_t eNPC; - - HWDAnnounce( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HWDCrafterSupply -{ - std::vector< uint32_t > itemTradeIn; - std::vector< uint8_t > level; - std::vector< uint8_t > levelMax; - std::vector< uint16_t > baseCollectableRating; - std::vector< uint16_t > midCollectableRating; - std::vector< uint16_t > highCollectableRating; - std::vector< uint16_t > baseCollectableReward; - std::vector< uint16_t > midCollectableReward; - std::vector< uint16_t > highCollectableReward; - std::vector< uint16_t > baseCollectableRewardPostPhase; - std::vector< uint16_t > midCollectableRewardPostPhase; - std::vector< uint16_t > highCollectableRewardPostPhase; - std::vector< uint8_t > termName; - - HWDCrafterSupply( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HWDCrafterSupplyReward -{ - uint16_t scriptRewardAmount; - uint32_t expReward; - uint16_t Points; - - HWDCrafterSupplyReward( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HWDCrafterSupplyTerm -{ - std::string name; - - HWDCrafterSupplyTerm( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HWDDevLayerControl -{ - - HWDDevLayerControl( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HWDDevLevelUI -{ - - HWDDevLevelUI( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HWDDevLively -{ - uint32_t eNPC; - - HWDDevLively( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HWDDevProgress -{ - bool canGoNext; - - HWDDevProgress( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HWDGathereInspectTerm -{ - std::string name; - - HWDGathereInspectTerm( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HWDGathererInspection -{ - std::vector< uint32_t > itemRequired; - std::vector< uint32_t > fishParameter; - std::vector< uint8_t > amountRequired; - std::vector< uint32_t > itemReceived; - std::vector< uint16_t > reward1; - std::vector< uint16_t > reward2; - std::vector< uint8_t > phase; - - HWDGathererInspection( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HWDGathererInspectionReward -{ - uint16_t scrips; - uint16_t points; - - HWDGathererInspectionReward( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HWDInfoBoardArticle -{ - uint8_t type; - std::string text; - - HWDInfoBoardArticle( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HWDInfoBoardArticleTransient -{ - uint32_t image; - std::string text; - std::string npcName; - - HWDInfoBoardArticleTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HWDInfoBoardArticleType -{ - std::string type; - - HWDInfoBoardArticleType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HWDLevelChangeDeception -{ - int32_t image; - - HWDLevelChangeDeception( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HWDSharedGroup -{ - uint32_t lGB; - uint8_t param; - - HWDSharedGroup( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct HWDSharedGroupControlParam -{ - uint8_t paramValue; - - HWDSharedGroupControlParam( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct IKDContentBonus -{ - std::string objective; - std::string requirement; - uint32_t image; - uint8_t order; - - IKDContentBonus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct IKDFishParam -{ - uint32_t fish; - uint8_t iKDContentBonus; - - IKDFishParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct IKDRoute -{ - uint32_t image; - uint32_t territoryType; - std::string name; - - IKDRoute( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct IKDRouteTable -{ - uint32_t route; - - IKDRouteTable( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct IKDSpot -{ - uint32_t spotMain; - uint32_t spotSub; - uint32_t placeName; - - IKDSpot( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct InclusionShop -{ - std::vector< uint16_t > category; - - InclusionShop( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct InclusionShopCategory -{ - std::string name; - uint8_t classJobCategory; - uint16_t inclusionShopSeries; - - InclusionShopCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct InclusionShopSeries -{ - uint32_t specialShop; - - InclusionShopSeries( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct IndividualWeather -{ - std::vector< uint8_t > weather; - std::vector< uint32_t > quest; - - IndividualWeather( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct InstanceContent -{ - uint8_t instanceContentType; - uint8_t weekRestriction; - uint16_t timeLimitmin; - uint16_t bGM; - uint16_t winBGM; - uint32_t cutscene; - uint32_t lGBEventRange; - uint16_t order; - uint8_t colosseum; - uint32_t instanceContentTextDataBossStart; - uint32_t instanceContentTextDataBossEnd; - uint32_t bNpcBaseBoss; - uint32_t instanceContentTextDataObjectiveStart; - uint32_t instanceContentTextDataObjectiveEnd; - uint16_t sortKey; - uint32_t instanceClearExp; - uint16_t newPlayerBonusA; - uint16_t finalBossCurrencyC; - uint32_t finalBossCurrencyA; - uint16_t finalBossCurrencyB; - uint16_t newPlayerBonusB; - uint32_t instanceClearGil; - uint32_t instanceContentRewardItem; - uint8_t finalBossExp; - uint32_t instanceContentBuff; - int32_t reqInstance; - int16_t partyCondition; - - InstanceContent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct InstanceContentBuff -{ - uint16_t echoStart; - uint16_t echoDeath; - - InstanceContentBuff( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct InstanceContentCSBonus -{ - uint16_t instance; - uint32_t item; - - InstanceContentCSBonus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct InstanceContentGuide -{ - uint32_t instance; - - InstanceContentGuide( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct InstanceContentTextData -{ - std::string text; - - InstanceContentTextData( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Item -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - std::string description; - std::string name; - uint16_t icon; - uint16_t levelItem; - uint8_t rarity; - uint8_t filterGroup; - uint32_t additionalData; - uint8_t itemUICategory; - uint8_t itemSearchCategory; - uint8_t equipSlotCategory; - uint8_t itemSortCategory; - uint32_t stackSize; - bool isUnique; - bool isUntradable; - bool isIndisposable; - bool lot; - uint32_t priceMid; - uint32_t priceLow; - bool canBeHq; - bool isDyeable; - bool isCrestWorthy; - uint16_t itemAction; - uint16_t cooldowns; - uint8_t classJobRepair; - int32_t itemRepair; - int32_t itemGlamour; - uint16_t desynth; - bool isCollectable; - bool alwaysCollectable; - uint16_t aetherialReduce; - uint8_t levelEquip; - uint8_t equipRestriction; - uint8_t classJobCategory; - uint8_t grandCompany; - uint8_t itemSeries; - uint8_t baseParamModifier; - uint64_t modelMain; - uint64_t modelSub; - uint8_t classJobUse; - uint16_t damagePhys; - uint16_t damageMag; - uint16_t delayms; - uint16_t blockRate; - uint16_t block; - uint16_t defensePhys; - uint16_t defenseMag; - uint8_t itemSpecialBonus; - uint8_t itemSpecialBonusParam; - uint8_t materializeType; - uint8_t materiaSlotCount; - bool isAdvancedMeldingPermitted; - bool isPvP; - uint8_t subStatCategory; - bool isGlamourous; - - struct - { - uint8_t baseparam; - int16_t value; - } param[6]; - - Item( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ItemAction -{ - uint8_t condLv; - bool condBattle; - bool condPVP; - bool condPVPOnly; - uint16_t type; - std::vector< uint16_t > data; - std::vector< uint16_t > dataHQ; - - ItemAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ItemActionTelepo -{ - uint32_t requirement; - uint32_t denyMessage; - - ItemActionTelepo( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ItemBarterCheck -{ - uint16_t category; - uint32_t question; - uint32_t confirm; - - ItemBarterCheck( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ItemFood -{ - uint8_t eXPBonus; - - ItemFood( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ItemLevel -{ - uint16_t strength; - uint16_t dexterity; - uint16_t vitality; - uint16_t intelligence; - uint16_t mind; - uint16_t piety; - uint16_t hP; - uint16_t mP; - uint16_t tP; - uint16_t gP; - uint16_t cP; - uint16_t physicalDamage; - uint16_t magicalDamage; - uint16_t delay; - uint16_t additionalEffect; - uint16_t attackSpeed; - uint16_t blockRate; - uint16_t blockStrength; - uint16_t tenacity; - uint16_t attackPower; - uint16_t defense; - uint16_t directHitRate; - uint16_t evasion; - uint16_t magicDefense; - uint16_t criticalHitPower; - uint16_t criticalHitResilience; - uint16_t criticalHit; - uint16_t criticalHitEvasion; - uint16_t slashingResistance; - uint16_t piercingResistance; - uint16_t bluntResistance; - uint16_t projectileResistance; - uint16_t attackMagicPotency; - uint16_t healingMagicPotency; - uint16_t enhancementMagicPotency; - uint16_t enfeeblingMagicPotency; - uint16_t fireResistance; - uint16_t iceResistance; - uint16_t windResistance; - uint16_t earthResistance; - uint16_t lightningResistance; - uint16_t waterResistance; - uint16_t magicResistance; - uint16_t determination; - uint16_t skillSpeed; - uint16_t spellSpeed; - uint16_t haste; - uint16_t morale; - uint16_t enmity; - uint16_t enmityReduction; - uint16_t carefulDesynthesis; - uint16_t eXPBonus; - uint16_t regen; - uint16_t refresh; - uint16_t movementSpeed; - uint16_t spikes; - uint16_t slowResistance; - uint16_t petrificationResistance; - uint16_t paralysisResistance; - uint16_t silenceResistance; - uint16_t blindResistance; - uint16_t poisonResistance; - uint16_t stunResistance; - uint16_t sleepResistance; - uint16_t bindResistance; - uint16_t heavyResistance; - uint16_t doomResistance; - uint16_t reducedDurabilityLoss; - uint16_t increasedSpiritbondGain; - uint16_t craftsmanship; - uint16_t control; - uint16_t gathering; - uint16_t perception; - - ItemLevel( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ItemSearchCategory -{ - std::string name; - int32_t icon; - uint8_t category; - uint8_t order; - int8_t classJob; - - ItemSearchCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ItemSeries -{ - std::string name; - - ItemSeries( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ItemSortCategory -{ - uint8_t param; - - ItemSortCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ItemSpecialBonus -{ - std::string name; - - ItemSpecialBonus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ItemUICategory -{ - std::string name; - int32_t icon; - uint8_t orderMinor; - uint8_t orderMajor; - - ItemUICategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Jingle -{ - std::string name; - - Jingle( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct JobHudManual -{ - uint32_t action; - uint16_t guide; - - JobHudManual( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct JobHudManualPriority -{ - std::vector< uint8_t > jobHudManual; - - JobHudManualPriority( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct JournalCategory -{ - std::string name; - uint8_t separateType; - uint8_t dataType; - uint8_t journalSection; - - JournalCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct JournalGenre -{ - int32_t icon; - uint8_t journalCategory; - std::string name; - - JournalGenre( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct JournalSection -{ - std::string name; - - JournalSection( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Knockback -{ - uint8_t distance; - uint8_t speed; - bool motion; - uint8_t nearDistance; - uint8_t direction; - uint8_t directionArg; - bool cancelMove; - - Knockback( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct LegacyQuest -{ - uint16_t legacyQuestID; - std::string text; - std::string string; - uint16_t sortKey; - uint8_t genre; - - LegacyQuest( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Leve -{ - std::string name; - std::string description; - int32_t leveClient; - uint8_t leveAssignmentType; - int32_t town; - uint16_t classJobLevel; - uint8_t timeLimit; - uint8_t allowanceCost; - int32_t evaluation; - int32_t placeNameStart; - int32_t placeNameIssued; - uint8_t classJobCategory; - int32_t journalGenre; - int32_t placeNameStartZone; - int32_t iconCityState; - int32_t dataId; - bool canCancel; - uint8_t maxDifficulty; - float expFactor; - uint32_t expReward; - uint32_t gilReward; - uint16_t leveRewardItem; - uint8_t leveVfx; - uint8_t leveVfxFrame; - uint32_t levelLevemete; - int32_t iconIssuer; - bool lockedLeve; - uint32_t levelStart; - uint16_t bGM; - - Leve( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct LeveAssignmentType -{ - bool isFaction; - int32_t icon; - std::string name; - - LeveAssignmentType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct LeveClient -{ - std::string name; - - LeveClient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Level -{ - float x; - float y; - float z; - float yaw; - float radius; - uint8_t type; - uint32_t object; - uint16_t map; - uint32_t eventId; - uint16_t territory; - - Level( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct LeveRewardItem -{ - - LeveRewardItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct LeveRewardItemGroup -{ - - LeveRewardItemGroup( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct LeveString -{ - std::string objective; - - LeveString( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct LeveVfx -{ - std::string effect; - int32_t icon; - - LeveVfx( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Lobby -{ - uint32_t tYPE; - uint32_t pARAM; - uint32_t lINK; - std::string text; - - Lobby( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct LogFilter -{ - uint8_t logKind; - uint16_t caster; - uint16_t target; - uint8_t category; - uint8_t displayOrder; - uint8_t preset; - std::string name; - std::string example; - - LogFilter( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct LogKind -{ - std::string format; - - LogKind( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct LogMessage -{ - uint16_t logKind; - std::string text; - - LogMessage( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct LotteryExchangeShop -{ - std::vector< int32_t > itemAccepted; - std::vector< uint32_t > amountAccepted; - std::string lua; - std::vector< uint32_t > logMessage; - - LotteryExchangeShop( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MacroIcon -{ - int32_t icon; - - MacroIcon( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MacroIconRedirectOld -{ - uint32_t iconOld; - int32_t iconNew; - - MacroIconRedirectOld( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MainCommand -{ - int32_t icon; - uint8_t category; - uint8_t mainCommandCategory; - int8_t sortID; - std::string name; - std::string description; - - MainCommand( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MainCommandCategory -{ - std::string name; - - MainCommandCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ManeuversArmor -{ - std::vector< uint32_t > bNpcBase; - std::vector< uint32_t > icon; - - ManeuversArmor( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Map -{ - uint8_t mapCondition; - uint8_t priorityCategoryUI; - uint8_t priorityUI; - int8_t mapIndex; - uint8_t hierarchy; - uint16_t mapMarkerRange; - std::string id; - uint16_t sizeFactor; - int16_t offsetX; - int16_t offsetY; - uint16_t placeNameRegion; - uint16_t placeName; - uint16_t placeNameSub; - int16_t discoveryIndex; - uint32_t discoveryFlag; - uint16_t territoryType; - bool discoveryArrayByte; - bool isEvent; - - Map( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MapCondition -{ - uint16_t quest; - - MapCondition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MapMarker -{ - int16_t x; - int16_t y; - uint16_t icon; - uint16_t placeNameSubtext; - uint8_t subtextOrientation; - uint8_t mapMarkerRegion; - uint8_t type; - uint8_t dataType; - uint16_t dataKey; - - MapMarker( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MapMarkerRegion -{ - int16_t x; - - MapMarkerRegion( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MapSymbol -{ - int32_t icon; - int32_t placeName; - bool displayNavi; - - MapSymbol( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Marker -{ - int32_t icon; - std::string name; - - Marker( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Materia -{ - std::vector< int32_t > item; - uint8_t baseParam; - std::vector< int16_t > value; - - Materia( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MateriaJoinRate -{ - std::vector< float > NQOvermeldSlot; - std::vector< float > HQOvermeldSlot; - - MateriaJoinRate( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MateriaJoinRateGatherCraft -{ - std::vector< float > NQOvermeldSlot; - std::vector< float > HQOvermeldSlot; - - MateriaJoinRateGatherCraft( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MateriaTomestoneRate -{ - uint32_t rate; - - MateriaTomestoneRate( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MiniGameRA -{ - int32_t icon; - int32_t image; - int32_t bGM; - - MiniGameRA( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MinionRace -{ - std::string name; - - MinionRace( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MinionRules -{ - std::string rule; - std::string description; - - MinionRules( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MinionSkillType -{ - std::string name; - - MinionSkillType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MobHuntOrder -{ - uint16_t target; - uint8_t neededKills; - uint8_t type; - uint8_t rank; - uint8_t mobHuntReward; - - MobHuntOrder( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MobHuntOrderType -{ - uint8_t type; - uint32_t quest; - uint32_t eventItem; - uint16_t orderStart; - uint8_t orderAmount; - - MobHuntOrderType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MobHuntReward -{ - uint32_t expReward; - uint16_t gilReward; - uint8_t expansion; - uint16_t currencyReward; - - MobHuntReward( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MobHuntRewardCap -{ - uint32_t expCap; - - MobHuntRewardCap( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MobHuntTarget -{ - uint16_t name; - uint16_t fATE; - uint32_t icon; - uint16_t territoryType; - uint16_t placeName; - - MobHuntTarget( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ModelChara -{ - uint8_t type; - uint16_t model; - uint8_t base; - uint8_t variant; - uint16_t sEPack; - bool papVariation; - - ModelChara( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ModelSkeleton -{ - float radius; - float height; - float vFXScale; - float floatHeight; - float floatDown; - uint16_t floatUp; - bool motionBlendType; - uint8_t loopFlySE; - - ModelSkeleton( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ModelState -{ - uint16_t start; - - ModelState( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MonsterNote -{ - std::vector< uint16_t > monsterNoteTarget; - std::vector< uint8_t > count; - uint32_t reward; - std::string name; - - MonsterNote( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MonsterNoteTarget -{ - uint16_t bNpcName; - int32_t icon; - uint8_t town; - - MonsterNoteTarget( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MotionTimeline -{ - std::string filename; - uint8_t blendGroup; - bool isLoop; - bool isBlinkEnable; - bool isLipEnable; - - MotionTimeline( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MotionTimelineBlendTable -{ - uint8_t destBlendGroup; - uint8_t srcBlendGroup; - uint8_t blendFrame_PC; - uint8_t blendFram_TypeA; - uint8_t blendFram_TypeB; - uint8_t blendFram_TypeC; - - MotionTimelineBlendTable( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Mount -{ - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - int32_t modelChara; - uint8_t flyingCondition; - uint8_t isFlying; - uint8_t mountCustomize; - uint16_t rideBGM; - uint8_t exitMoveDist; - uint8_t exitMoveSpeed; - bool isEmote; - int32_t equipHead; - int32_t equipBody; - int32_t equipLeg; - int32_t equipFoot; - int16_t order; - uint16_t icon; - uint8_t uIPriority; - uint8_t radiusRate; - uint8_t baseMotionSpeed_Run; - uint8_t baseMotionSpeed_Walk; - uint8_t extraSeats; - uint16_t mountAction; - bool isAirborne; - bool exHotbarEnableConfig; - bool useEP; - bool isImmobile; - - Mount( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MountAction -{ - std::vector< uint16_t > action; - - MountAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MountCustomize -{ - uint16_t hyurMaleScale; - uint16_t hyurFemaleScale; - uint16_t elezenMaleScale; - uint16_t elezenFemaleScale; - uint16_t lalaMaleScale; - uint16_t lalaFemaleScale; - uint16_t miqoMaleScale; - uint16_t miqoFemaleScale; - uint16_t roeMaleScale; - uint16_t roeFemaleScale; - uint16_t auRaMaleScale; - uint16_t auRaFemaleScale; - uint16_t hrothgarMaleScale; - uint16_t hrothgarFemaleScale; - uint16_t vieraMaleScale; - uint16_t vieraFemaleScale; - uint8_t hyurMaleCameraHeight; - uint8_t hyurFemaleCameraHeight; - uint8_t elezenMaleCameraHeight; - uint8_t elezenFemaleCameraHeight; - uint8_t lalaMaleCameraHeight; - uint8_t lalaFemaleCameraHeight; - uint8_t miqoMaleCameraHeight; - uint8_t miqoFemaleCameraHeight; - uint8_t roeMaleCameraHeight; - uint8_t roeFemaleCameraHeight; - uint8_t auRaMaleCameraHeight; - uint8_t auRaFemaleCameraHeight; - uint8_t hrothgarMaleCameraHeight; - uint8_t hrothgarRoeFemaleCameraHeight; - uint8_t vieraMaleCameraHeight; - uint8_t vieraFemaleCameraHeight; - - MountCustomize( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MountFlyingCondition -{ - uint32_t quest; - - MountFlyingCondition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MountSpeed -{ - uint32_t quest; - - MountSpeed( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MountTransient -{ - std::string description; - std::string descriptionEnhanced; - std::string tooltip; - - MountTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MoveTimeline -{ - uint16_t idle; - uint16_t moveForward; - uint16_t moveBack; - uint16_t moveLeft; - uint16_t moveRight; - uint16_t moveUp; - uint16_t moveDown; - uint16_t moveTurnLeft; - uint16_t moveTurnRight; - uint16_t extra; - - MoveTimeline( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MoveVfx -{ - uint16_t vFXNormal; - uint16_t vFXWalking; - - MoveVfx( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MovieStaffList -{ - uint32_t image; - float startTime; - float endTime; - - MovieStaffList( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MovieSubtitle -{ - float startTime; - float endTime; - - MovieSubtitle( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MovieSubtitle500 -{ - float startTime; - float endTime; - - MovieSubtitle500( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MovieSubtitleVoyage -{ - float startTime; - float endTime; - - MovieSubtitleVoyage( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MYCTemporaryItem -{ - uint8_t category; - uint8_t type; - uint32_t action; - uint8_t max; - uint8_t weight; - uint8_t order; - - MYCTemporaryItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MYCTemporaryItemUICategory -{ - std::string name; - - MYCTemporaryItemUICategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct MYCWarResultNotebook -{ - uint8_t number; - uint8_t link; - int32_t quest; - int32_t icon; - int32_t image; - uint8_t rarity; - std::string nameJP; - std::string name; - std::string description; - - MYCWarResultNotebook( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct NotebookDivision -{ - std::string name; - uint8_t notebookDivisionCategory; - uint8_t craftOpeningLevel; - uint8_t gatheringOpeningLevel; - uint32_t questUnlock; - bool cRPCraft; - bool bSMCraft; - bool aRMCraft; - bool gSMCraft; - bool lTWCraft; - bool wVRCraft; - bool aLCCraft; - bool cULCraft; - - NotebookDivision( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct NotebookDivisionCategory -{ - std::string name; - uint8_t index; - - NotebookDivisionCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct NotoriousMonster -{ - int32_t bNpcBase; - uint8_t rank; - uint32_t bNpcName; - - NotoriousMonster( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct NpcEquip -{ - uint64_t modelMainHand; - uint8_t dyeMainHand; - uint64_t modelOffHand; - uint8_t dyeOffHand; - uint32_t modelHead; - uint8_t dyeHead; - bool visor; - uint32_t modelBody; - uint8_t dyeBody; - uint32_t modelHands; - uint8_t dyeHands; - uint32_t modelLegs; - uint8_t dyeLegs; - uint32_t modelFeet; - uint8_t dyeFeet; - uint32_t modelEars; - uint8_t dyeEars; - uint32_t modelNeck; - uint8_t dyeNeck; - uint32_t modelWrists; - uint8_t dyeWrists; - uint32_t modelLeftRing; - uint8_t dyeLeftRing; - uint32_t modelRightRing; - uint8_t dyeRightRing; - - NpcEquip( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct NpcYell -{ - uint8_t outputType; - float balloonTime; - bool isBalloonSlow; - bool battleTalkTime; - std::string text; - - NpcYell( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Omen -{ - std::string path; - std::string pathAlly; - uint8_t type; - bool restrictYScale; - bool largeScale; - - Omen( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct OnlineStatus -{ - bool list; - uint8_t priority; - std::string name; - uint32_t icon; - - OnlineStatus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct OpenContent -{ - std::vector< uint16_t > content; - std::vector< uint32_t > candidateName; - - OpenContent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct OpenContentCandidateName -{ - std::string name; - - OpenContentCandidateName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Opening -{ - std::string name; - uint32_t quest; - - Opening( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Orchestrion -{ - std::string name; - std::string description; - - Orchestrion( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct OrchestrionCategory -{ - std::string name; - uint8_t hideOrder; - uint32_t icon; - uint8_t order; - - OrchestrionCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct OrchestrionPath -{ - std::string file; - - OrchestrionPath( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct OrchestrionUiparam -{ - uint8_t orchestrionCategory; - uint16_t order; - - OrchestrionUiparam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Ornament -{ - uint16_t model; - int16_t order; - uint16_t icon; - uint16_t transient; - std::string singular; - int8_t adjective; - std::string plural; - int8_t possessivePronoun; - int8_t startsWithVowel; - int8_t pronoun; - int8_t article; - - Ornament( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ParamGrow -{ - int32_t expToNext; - uint8_t additionalActions; - uint8_t applyAction; - uint16_t scaledQuestXP; - int32_t mpModifier; - int32_t baseSpeed; - int32_t levelModifier; - uint8_t questExpModifier; - uint16_t hpModifier; - int32_t huntingLogExpReward; - int32_t monsterNoteSeals; - uint16_t itemLevelSync; - uint16_t properDungeon; - uint16_t properGuildOrder; - uint16_t craftingLevel; - - ParamGrow( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PartyContent -{ - uint8_t key; - uint16_t timeLimit; - bool name; - uint32_t textDataStart; - uint32_t textDataEnd; - std::vector< uint32_t > lGBEventObject0; - std::vector< uint32_t > lGBEventRange; - std::vector< uint32_t > lGBEventObject1; - uint16_t contentFinderCondition; - uint32_t image; - - PartyContent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PartyContentCutscene -{ - uint32_t cutscene; - - PartyContentCutscene( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PartyContentTextData -{ - std::string data; - - PartyContentTextData( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PatchMark -{ - int8_t category; - uint8_t subCategoryType; - uint16_t subCategory; - uint32_t markID; - uint8_t version; - - PatchMark( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Perform -{ - std::string name; - uint64_t modelKey; - uint16_t animationStart; - uint16_t animationEnd; - uint16_t animationIdle; - uint16_t animationPlay01; - uint16_t animationPlay02; - int32_t stopAnimation; - std::string instrument; - int32_t order; - uint8_t transient; - - Perform( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PerformGroup -{ - std::vector< uint8_t > perform; - - PerformGroup( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PerformTransient -{ - std::string text; - - PerformTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Pet -{ - std::string name; - - Pet( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PetAction -{ - std::string name; - std::string description; - int32_t icon; - uint16_t action; - uint8_t pet; - bool masterOrder; - bool disableOrder; - - PetAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PetMirage -{ - std::string name; - - PetMirage( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PhysicsGroup -{ - std::vector< float > simulationTime; - std::vector< float > pS3SimulationTime; - bool resetByLookAt; - float rootFollowingGame; - float rootFollowingCutScene; - std::vector< int8_t > configSwitch; - bool forceAttractByPhysicsOff; - - PhysicsGroup( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PhysicsWind -{ - float threshold; - float amplitude; - float amplitudeFrequency; - float powerMin; - float powerMax; - float powerFrequency; - - PhysicsWind( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Picture -{ - int32_t item; - int32_t image; - - Picture( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PlaceName -{ - std::string name; - std::string nameNoArticle; - - PlaceName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PlantPotFlowerSeed -{ - std::vector< uint32_t > seedIcon; - - PlantPotFlowerSeed( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PreHandler -{ - uint32_t image; - uint32_t target; - uint32_t unlockQuest; - uint32_t acceptMessage; - uint32_t denyMessage; - - PreHandler( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PresetCamera -{ - uint16_t eID; - float posX; - float posY; - float posZ; - float elezen; - float lalafell; - float miqote; - float roe; - float hrothgar; - float viera; - float hyur_F; - float elezen_F; - float lalafell_F; - float miqote_F; - float roe_F; - float hrothgar_F; - float viera_F; - - PresetCamera( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PresetCameraAdjust -{ - float hyur_M; - float hyur_F; - float elezen_M; - float elezen_F; - float lalafell_M; - float lalafell_F; - float miqote_M; - float miqote_F; - float roe_M; - float roe_F; - float hrothgar_M; - float hrothgar_F; - float viera_M; - float viera_F; - - PresetCameraAdjust( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PublicContent -{ - uint8_t type; - uint16_t timeLimit; - uint32_t mapIcon; - std::string name; - uint32_t textDataStart; - uint32_t textDataEnd; - uint32_t startCutscene; - uint32_t lGBEventRange; - uint32_t lGBPopRange; - uint16_t contentFinderCondition; - uint16_t additionalData; - uint32_t endCutscene; - - PublicContent( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PublicContentCutscene -{ - uint32_t cutscene; - uint32_t cutscene2; - - PublicContentCutscene( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PublicContentTextData -{ - std::string textData; - - PublicContentTextData( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PvPAction -{ - uint16_t action; - std::vector< bool > grandCompany; - - PvPAction( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PvPActionSort -{ - uint8_t actionType; - uint16_t action; - - PvPActionSort( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PvPRank -{ - uint32_t expRequired; - - PvPRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PvPSelectTrait -{ - std::string effect; - uint32_t icon; - int16_t value; - - PvPSelectTrait( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct PvPTrait -{ - uint16_t trait1; - uint16_t trait2; - uint16_t trait3; - - PvPTrait( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Quest -{ - std::string name; - std::string id; - uint8_t expansion; - uint8_t classJobCategory0; - uint16_t classJobLevel0; - uint8_t questLevelOffset; - uint8_t classJobCategory1; - uint16_t classJobLevel1; - uint8_t previousQuestJoin; - std::vector< uint32_t > previousQuest; - uint8_t previousQuest0Sequence; - uint8_t questLockJoin; - std::vector< uint32_t > questLock; - uint16_t header; - uint8_t startTown; - uint8_t classJobUnlockFlag; - uint8_t classJobUnlock; - uint8_t grandCompany; - uint8_t grandCompanyRank; - uint8_t instanceContentJoin; - std::vector< uint32_t > instanceContent; - uint8_t festival; - uint8_t festivalBegin; - uint8_t festivalEnd; - uint16_t bellStart; - uint16_t bellEnd; - uint8_t beastTribe; - uint8_t beastReputationRank; - uint16_t beastReputationValue; - uint8_t satisfactionNpc; - uint8_t satisfactionLevel; - int32_t mountRequired; - bool isHouseRequired; - uint8_t deliveryQuest; - uint32_t issuerStart; - uint32_t issuerLocation; - uint16_t clientBehavior; - uint32_t targetEnd; - bool isRepeatable; - uint8_t repeatIntervalType; - uint8_t questRepeatFlag; - bool canCancel; - uint8_t type; - uint16_t questClassJobSupply; - std::vector< std::string > scriptInstruction; - std::vector< uint32_t > scriptArg; - std::vector< uint8_t > actorSpawnSeq; - std::vector< uint8_t > actorDespawnSeq; - std::vector< uint32_t > listener; - std::vector< uint8_t > questUInt8A; - std::vector< uint8_t > questUInt8B; - std::vector< uint8_t > conditionType; - std::vector< uint32_t > conditionValue; - std::vector< uint8_t > conditionOperator; - std::vector< uint16_t > behavior; - std::vector< bool > visibleBool; - std::vector< bool > conditionBool; - std::vector< bool > itemBool; - std::vector< bool > announceBool; - std::vector< bool > behaviorBool; - std::vector< bool > acceptBool; - std::vector< bool > qualifiedBool; - std::vector< bool > canTargetBool; - std::vector< uint8_t > toDoCompleteSeq; - std::vector< uint8_t > toDoQty; - std::vector< uint32_t > toDoMainLocation; - std::vector< uint8_t > countableNum; - uint8_t levelMax; - uint8_t classJobRequired; - uint16_t expFactor; - uint32_t gilReward; - uint32_t gCSeals; - std::vector< uint8_t > itemCatalyst; - std::vector< uint8_t > itemCountCatalyst; - uint8_t itemRewardType; - std::vector< uint32_t > itemReward0; - std::vector< uint8_t > itemCountReward0; - std::vector< uint8_t > stainReward0; - std::vector< uint32_t > itemReward1; - std::vector< uint8_t > itemCountReward1; - std::vector< bool > isHQReward1; - std::vector< uint8_t > stainReward1; - uint8_t emoteReward; - uint16_t actionReward; - std::vector< uint8_t > generalActionReward; - uint16_t systemReward0; - uint8_t otherReward; - uint16_t systemReward1; - uint16_t gCTypeReward; - uint32_t instanceContentUnlock; - uint8_t tomestoneReward; - uint8_t tomestoneCountReward; - uint8_t reputationReward; - uint16_t placeName; - uint8_t journalGenre; - uint32_t icon; - uint32_t iconSpecial; - bool introduction; - bool hideOfferIcon; - uint8_t eventIconType; - uint16_t sortKey; - - Quest( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct QuestAcceptAdditionCondition -{ - uint32_t requirement0; - uint32_t requirement1; - - QuestAcceptAdditionCondition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct QuestBattle -{ - int32_t quest; - uint8_t questBattleScene; - uint16_t timeLimit; - uint16_t levelSync; - std::vector< std::string > scriptInstruction; - std::vector< uint32_t > scriptValue; - - QuestBattle( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct QuestChapter -{ - uint32_t quest; - uint16_t redo; - - QuestChapter( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct QuestClassJobReward -{ - uint8_t classJobCategory; - std::vector< uint32_t > rewardItem; - std::vector< uint8_t > rewardAmount; - std::vector< uint32_t > requiredItem; - std::vector< uint8_t > requiredAmount; - - QuestClassJobReward( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct QuestClassJobSupply -{ - uint8_t classJobCategory; - uint32_t eNpcResident; - uint32_t item; - uint8_t amountRequired; - bool itemHQ; - - QuestClassJobSupply( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct QuestDerivedClass -{ - uint8_t classJob; - - QuestDerivedClass( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct QuestEffect -{ - - QuestEffect( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct QuestEffectDefine -{ - uint16_t effect; - - QuestEffectDefine( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct QuestRedo -{ - uint32_t finalQuest; - uint16_t chapter; - std::vector< uint32_t > quest; - - QuestRedo( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct QuestRedoChapterUI -{ - uint32_t quest; - uint8_t uITab; - uint8_t category; - uint32_t questRedoUISmall; - uint32_t questRedoUILarge; - uint32_t questRedoUIWide; - std::string chapterName; - std::string chapterPart; - std::string transient; - - QuestRedoChapterUI( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct QuestRedoChapterUICategory -{ - std::string expac; - - QuestRedoChapterUICategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct QuestRedoChapterUITab -{ - uint32_t icon1; - uint32_t icon2; - std::string text; - - QuestRedoChapterUITab( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct QuestRedoIncompChapter -{ - uint16_t chapter; - - QuestRedoIncompChapter( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct QuestRepeatFlag -{ - uint32_t quest; - - QuestRepeatFlag( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct QuestRewardOther -{ - uint32_t icon; - std::string name; - - QuestRewardOther( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct QuickChat -{ - std::string nameAction; - int32_t icon; - int32_t addon; - int8_t quickChatTransient; - - QuickChat( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct QuickChatTransient -{ - std::string textOutput; - - QuickChatTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Race -{ - std::string masculine; - std::string feminine; - int32_t rSEMBody; - int32_t rSEMHands; - int32_t rSEMLegs; - int32_t rSEMFeet; - int32_t rSEFBody; - int32_t rSEFHands; - int32_t rSEFLegs; - int32_t rSEFFeet; - uint8_t exPac; - - Race( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RacingChocoboItem -{ - int32_t item; - uint8_t category; - std::vector< uint8_t > param; - - RacingChocoboItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RacingChocoboName -{ - std::string name; - - RacingChocoboName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RacingChocoboNameCategory -{ - uint8_t sortKey; - std::string name; - - RacingChocoboNameCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RacingChocoboNameInfo -{ - uint8_t racingChocoboNameCategory; - std::vector< uint16_t > name; - - RacingChocoboNameInfo( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RacingChocoboParam -{ - std::string name; - - RacingChocoboParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RecastNavimesh -{ - float tileSize; - float cellSize; - float cellHeight; - float agentHeight; - float agentRadius; - float agentMaxClimb; - float agentMaxSlope; - float regionMinSize; - float regionMergedSize; - float maxEdgeLength; - float maxEdgeError; - float vertsPerPoly; - float detailMeshSampleDistance; - float detailMeshMaxSampleError; - - RecastNavimesh( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Recipe -{ - int32_t number; - int32_t craftType; - uint16_t recipeLevelTable; - int32_t itemResult; - uint8_t amountResult; - bool isSecondary; - uint8_t materialQualityFactor; - uint16_t difficultyFactor; - uint16_t qualityFactor; - uint16_t durabilityFactor; - uint16_t requiredCraftsmanship; - uint16_t requiredControl; - uint16_t quickSynthCraftsmanship; - uint16_t quickSynthControl; - uint16_t secretRecipeBook; - bool canQuickSynth; - bool canHq; - bool expRewarded; - int32_t statusRequired; - int32_t itemRequired; - bool isSpecializationRequired; - bool isExpert; - uint16_t patchNumber; - - Recipe( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RecipeLevelTable -{ - uint8_t classJobLevel; - uint8_t stars; - uint16_t suggestedCraftsmanship; - uint16_t suggestedControl; - uint16_t difficulty; - uint32_t quality; - uint16_t durability; - uint16_t conditionsFlag; - - RecipeLevelTable( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RecipeLookup -{ - uint16_t cRP; - uint16_t bSM; - uint16_t aRM; - uint16_t gSM; - uint16_t lTW; - uint16_t wVR; - uint16_t aLC; - uint16_t cUL; - - RecipeLookup( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RecipeNotebookList -{ - uint8_t count; - std::vector< int32_t > recipe; - - RecipeNotebookList( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RecommendContents -{ - int32_t level; - uint8_t classJob; - uint8_t minLevel; - uint8_t maxLevel; - - RecommendContents( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Relic -{ - uint32_t itemAtma; - uint32_t itemAnimus; - int32_t icon; - uint16_t materia0; - uint8_t noteMain0; - uint8_t noteSub0; - uint8_t noteSelection10; - uint16_t materia1; - uint8_t noteMain1; - uint8_t noteSub1; - uint8_t noteSelection1; - uint16_t materia2; - uint8_t noteMain2; - uint8_t noteSub2; - uint16_t materia3; - uint8_t noteSelection3; - - Relic( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Relic3 -{ - uint32_t itemAnimus; - uint32_t itemScroll; - uint8_t materiaLimit; - uint32_t itemNovus; - int32_t icon; - - Relic3( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RelicItem -{ - uint32_t gladiatorItem; - uint32_t pugilistItem; - uint32_t marauderItem; - uint32_t lancerItem; - uint32_t archerItem; - uint32_t conjurerItem; - uint32_t thaumaturgeItem; - uint32_t arcanistSMNItem; - uint32_t arcanistSCHItem; - uint32_t shieldItem; - uint32_t rogueItem; - - RelicItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RelicNote -{ - uint32_t eventItem; - std::vector< uint16_t > monsterNoteTargetNM; - std::vector< uint16_t > leve; - - RelicNote( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RelicNoteCategory -{ - std::string text; - - RelicNoteCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Resident -{ - uint64_t model; - int32_t npcYell; - uint8_t residentMotionType; - - Resident( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ResistanceWeaponAdjust -{ - uint16_t maxTotalStats; - uint16_t maxEachStat; - std::vector< uint8_t > baseParam; - uint32_t image; - - ResistanceWeaponAdjust( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RetainerFortuneRewardRange -{ - uint16_t percentOfLevel; - - RetainerFortuneRewardRange( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RetainerTask -{ - bool isRandom; - uint8_t classJobCategory; - uint8_t retainerLevel; - uint16_t retainerTaskParameter; - uint16_t ventureCost; - uint16_t maxTimemin; - int32_t experience; - uint16_t requiredItemLevel; - uint8_t conditionParam0; - uint8_t conditionParam1; - uint16_t requiredGathering; - uint16_t task; - - RetainerTask( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RetainerTaskLvRange -{ - uint8_t min; - uint8_t max; - - RetainerTaskLvRange( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RetainerTaskNormal -{ - int32_t item; - uint8_t quantity0; - uint8_t quantity1; - uint8_t quantity2; - int16_t gatheringLog; - int16_t fishingLog; - - RetainerTaskNormal( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RetainerTaskParameter -{ - std::vector< int16_t > itemLevelDoW; - std::vector< int16_t > gatheringDoL; - std::vector< int16_t > gatheringFSH; - - RetainerTaskParameter( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RetainerTaskRandom -{ - std::string name; - int16_t requirement; - - RetainerTaskRandom( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RideShooting -{ - uint16_t gFateRideShooting; - uint16_t startText; - std::vector< uint32_t > popRange; - std::vector< uint32_t > eNpc; - std::vector< uint8_t > eNpcScale; - - RideShooting( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RideShootingTargetType -{ - uint32_t eObj; - int16_t score; - - RideShootingTargetType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RideShootingTextData -{ - std::string string; - - RideShootingTextData( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct RPParameter -{ - uint16_t bNpcName; - uint8_t classJob; - - RPParameter( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SatisfactionArbitration -{ - uint32_t quest; - - SatisfactionArbitration( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SatisfactionNpc -{ - int32_t npc; - int32_t questRequired; - uint8_t levelUnlock; - uint8_t deliveriesPerWeek; - std::vector< int32_t > supplyIndex; - std::vector< uint16_t > satisfactionRequired; - int32_t icon; - - SatisfactionNpc( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SatisfactionSupply -{ - uint8_t slot; - uint8_t probability; - int32_t item; - uint16_t collectabilityLow; - uint16_t collectabilityMid; - uint16_t collectabilityHigh; - uint16_t reward; - - SatisfactionSupply( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SatisfactionSupplyReward -{ - uint16_t satisfactionLow; - uint16_t satisfactionMid; - uint16_t satisfactionHigh; - uint16_t gilLow; - uint16_t gilMid; - uint16_t gilHigh; - - SatisfactionSupplyReward( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ScenarioTree -{ - uint8_t type; - uint16_t image; - - ScenarioTree( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ScenarioTreeTips -{ - uint32_t tips1; - uint32_t tips2; - - ScenarioTreeTips( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ScenarioTreeTipsClassQuest -{ - uint32_t quest; - uint16_t requiredLevel; - uint8_t requiredExpansion; - uint32_t requiredQuest; - - ScenarioTreeTipsClassQuest( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ScenarioType -{ - std::string type; - - ScenarioType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ScreenImage -{ - uint32_t image; - int16_t jingle; - int8_t type; - bool lang; - - ScreenImage( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SecretRecipeBook -{ - int32_t item; - std::string name; - - SecretRecipeBook( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SkyIsland2Mission -{ - uint32_t item1; - uint32_t item2; - uint16_t placeName; - uint16_t objective1; - uint32_t popRange0; - uint8_t requiredAmount1; - uint16_t objective2; - uint32_t popRange1; - uint8_t requiredAmount2; - uint16_t objective3; - uint32_t popRange2; - uint32_t image; - - SkyIsland2Mission( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SkyIsland2MissionDetail -{ - uint8_t type; - uint8_t range; - uint32_t eObj; - std::string objective; - - SkyIsland2MissionDetail( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SkyIsland2MissionType -{ - bool type; - - SkyIsland2MissionType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SkyIsland2RangeType -{ - uint8_t type; - - SkyIsland2RangeType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SnipeTalk -{ - uint16_t name; - std::string text; - - SnipeTalk( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SnipeTalkName -{ - std::string name; - - SnipeTalkName( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SpearfishingItem -{ - std::string description; - int32_t item; - uint16_t gatheringItemLevel; - uint8_t fishingRecordType; - uint16_t territoryType; - bool isVisible; - - SpearfishingItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SpearfishingNotebook -{ - uint8_t gatheringLevel; - bool isShadowNode; - int32_t territoryType; - int16_t x; - int16_t y; - uint16_t radius; - uint16_t placeName; - uint16_t gatheringPointBase; - - SpearfishingNotebook( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SpearfishingRecordPage -{ - int32_t placeName; - int32_t image; - - SpearfishingRecordPage( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SpecialShop -{ - std::string name; - std::vector< int32_t > questItem; - std::vector< int32_t > achievementUnlock; - std::vector< uint16_t > patchNumber; - uint8_t useCurrencyType; - uint32_t questUnlock; - int32_t completeText; - int32_t notCompleteText; - - SpecialShop( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SpecialShopItemCategory -{ - std::string name; - - SpecialShopItemCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Stain -{ - uint32_t color; - uint8_t shade; - uint8_t subOrder; - std::string name; - - Stain( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct StainTransient -{ - uint32_t item1; - uint32_t item2; - - StainTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct StanceChange -{ - std::vector< uint16_t > action; - - StanceChange( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Status -{ - std::string name; - std::string description; - uint16_t icon; - uint8_t maxStacks; - uint8_t category; - uint8_t hitEffect; - uint16_t vFX; - bool lockMovement; - bool lockActions; - bool lockControl; - bool transfiguration; - bool canDispel; - bool inflictedByActor; - bool isPermanent; - uint8_t partyListPriority; - uint16_t log; - bool isFcBuff; - bool invisibility; - - Status( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct StatusHitEffect -{ - uint16_t location; - - StatusHitEffect( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct StatusLoopVFX -{ - uint16_t vFX; - uint16_t vFX2; - uint16_t vFX3; - - StatusLoopVFX( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Story -{ - std::string script; - std::vector< std::string > instruction; - std::vector< uint32_t > argument; - std::vector< uint16_t > sequence; - std::vector< uint8_t > completedQuestOperator; - std::vector< uint32_t > completedQuest0; - std::vector< uint32_t > completedQuest1; - std::vector< uint32_t > completedQuest2; - std::vector< uint8_t > acceptedQuestOperator; - std::vector< uint32_t > acceptedQuest0; - std::vector< uint8_t > acceptedQuestSequence0; - std::vector< uint32_t > acceptedQuest1; - std::vector< uint8_t > acceptedQuestSequence1; - std::vector< uint32_t > acceptedQuest2; - std::vector< uint8_t > acceptedQuestSequence2; - std::vector< uint32_t > layerSet0; - std::vector< uint32_t > layerSet1; - std::vector< uint16_t > sequenceBegin; - std::vector< uint16_t > sequenceEnd; - std::vector< uint32_t > listener; - uint16_t layerSetTerritoryType0; - uint16_t layerSetTerritoryType1; - - Story( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SubmarineExploration -{ - std::string destination; - std::string location; - uint8_t map; - uint8_t stars; - uint8_t rankReq; - uint8_t ceruleumTankReq; - uint16_t durationmin; - uint8_t distanceForSurvey; - uint32_t expReward; - - SubmarineExploration( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SubmarineMap -{ - std::string name; - uint32_t image; - - SubmarineMap( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SubmarinePart -{ - uint8_t slot; - uint8_t rank; - uint8_t components; - int16_t surveillance; - int16_t retrieval; - int16_t speed; - int16_t range; - int16_t favor; - uint16_t _class; - uint8_t repairMaterials; - - SubmarinePart( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SubmarineRank -{ - uint16_t capacity; - uint32_t expToNext; - uint8_t surveillanceBonus; - uint8_t retrievalBonus; - uint8_t speedBonus; - uint8_t rangeBonus; - uint8_t favorBonus; - - SubmarineRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SwitchTalk -{ - - SwitchTalk( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct SwitchTalkVariation -{ - uint32_t quest0; - uint32_t quest1; - uint32_t defaultTalk; - - SwitchTalkVariation( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TerritoryType -{ - std::string name; - std::string bg; - uint8_t battalionMode; - uint16_t placeNameRegion; - uint16_t placeNameZone; - uint16_t placeName; - uint16_t map; - uint8_t loadingImage; - uint8_t exclusiveType; - uint8_t territoryIntendedUse; - uint16_t contentFinderCondition; - uint8_t weatherRate; - bool pCSearch; - bool stealth; - bool mount; - uint16_t bGM; - int32_t placeNameRegionIcon; - int32_t placeNameIcon; - uint32_t arrayEventHandler; - uint16_t questBattle; - int32_t aetheryte; - int32_t fixedTime; - uint16_t resident; - int8_t achievementIndex; - bool isPvpZone; - uint8_t exVersion; - uint8_t mountSpeed; - - TerritoryType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TerritoryTypeTransient -{ - int16_t offsetZ; - - TerritoryTypeTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TextCommand -{ - std::string command; - std::string shortCommand; - std::string description; - std::string alias; - std::string shortAlias; - uint16_t param; - - TextCommand( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TextCommandParam -{ - std::string param; - - TextCommandParam( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Title -{ - std::string masculine; - std::string feminine; - bool isPrefix; - uint16_t order; - - Title( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Tomestones -{ - uint16_t weeklyLimit; - - Tomestones( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TomestonesItem -{ - int32_t item; - int32_t tomestones; - - TomestonesItem( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TopicSelect -{ - std::string name; - - TopicSelect( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Town -{ - std::string name; - int32_t icon; - - Town( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Trait -{ - std::string name; - int32_t icon; - uint8_t classJob; - uint8_t level; - uint32_t quest; - int16_t value; - uint8_t classJobCategory; - - Trait( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TraitRecast -{ - uint16_t trait; - uint16_t action; - uint16_t timeds; - - TraitRecast( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TraitTransient -{ - std::string description; - - TraitTransient( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Transformation -{ - int16_t model; - uint16_t bNpcName; - int32_t bNpcCustomize; - int32_t npcEquip; - bool exHotbarEnableConfig; - uint16_t action0; - uint16_t action1; - uint16_t action2; - uint16_t action3; - uint16_t action4; - uint16_t action5; - uint16_t rPParameter; - uint16_t removeAction; - float speed; - float scale; - bool isPvP; - bool isEvent; - bool playerCamera; - uint16_t startVFX; - uint16_t endVFX; - uint32_t action6; - uint16_t action7; - - Transformation( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Treasure -{ - uint32_t item; - - Treasure( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TreasureHuntRank -{ - uint32_t icon; - int32_t itemName; - int32_t keyItemName; - int32_t instanceMap; - uint8_t maxPartySize; - uint8_t treasureHuntTexture; - - TreasureHuntRank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TreasureModel -{ - std::string path; - - TreasureModel( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TreasureSpot -{ - int32_t location; - float mapOffsetX; - float mapOffsetY; - - TreasureSpot( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Tribe -{ - std::string masculine; - std::string feminine; - int8_t hp; - int8_t mp; - int8_t sTR; - int8_t vIT; - int8_t dEX; - int8_t iNT; - int8_t mND; - int8_t pIE; - - Tribe( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TripleTriad -{ - std::vector< uint16_t > tripleTriadCardFixed; - std::vector< uint16_t > tripleTriadCardVariable; - std::vector< uint8_t > tripleTriadRule; - bool usesRegionalRules; - uint16_t fee; - uint8_t previousQuestJoin; - std::vector< uint32_t > previousQuest; - uint16_t startTime; - uint16_t endTime; - uint32_t defaultTalkChallenge; - uint32_t defaultTalkUnavailable; - uint32_t defaultTalkNPCWin; - uint32_t defaultTalkDraw; - uint32_t defaultTalkPCWin; - std::vector< uint32_t > itemPossibleReward; - - TripleTriad( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TripleTriadCard -{ - std::string name; - int8_t startsWithVowel; - std::string description; - - TripleTriadCard( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TripleTriadCardRarity -{ - uint8_t stars; - - TripleTriadCardRarity( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TripleTriadCardResident -{ - uint8_t top; - uint8_t bottom; - uint8_t left; - uint8_t right; - uint8_t tripleTriadCardRarity; - uint8_t tripleTriadCardType; - uint16_t saleValue; - uint8_t sortKey; - uint16_t order; - uint8_t uIPriority; - uint8_t acquisitionType; - uint32_t acquisition; - uint32_t location; - uint32_t quest; - - TripleTriadCardResident( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TripleTriadCardType -{ - std::string name; - - TripleTriadCardType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TripleTriadCompetition -{ - std::string name; - - TripleTriadCompetition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TripleTriadResident -{ - uint16_t order; - - TripleTriadResident( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TripleTriadRule -{ - std::string name; - std::string description; - - TripleTriadRule( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Tutorial -{ - uint32_t exp; - uint32_t gil; - uint32_t rewardTank; - uint32_t rewardMelee; - uint32_t rewardRanged; - uint32_t objective; - - Tutorial( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TutorialDPS -{ - uint8_t objective; - - TutorialDPS( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TutorialHealer -{ - uint8_t objective; - - TutorialHealer( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct TutorialTank -{ - uint8_t objective; - - TutorialTank( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct UDS_Event -{ - std::string text; - std::string type; - std::vector< int32_t > property; - - UDS_Event( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct UDS_Property -{ - std::string text; - std::string type; - - UDS_Property( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct UIColor -{ - uint32_t uIForeground; - uint32_t uIGlow; - - UIColor( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct VaseFlower -{ - uint32_t item; - - VaseFlower( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct VFX -{ - std::string location; - - VFX( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Warp -{ - uint32_t popRange; - uint16_t territoryType; - uint32_t conditionSuccessEvent; - uint32_t conditionFailEvent; - uint32_t confirmEvent; - uint16_t warpCondition; - uint16_t warpLogic; - uint16_t startCutscene; - uint16_t endCutscene; - bool canSkipCutscene; - std::string name; - std::string question; - - Warp( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct WarpCondition -{ - uint16_t gil; - uint8_t completeParam; - uint32_t requiredQuest1; - uint32_t requiredQuest2; - uint32_t dRequiredQuest3; - uint32_t requiredQuest4; - uint16_t questReward; - uint16_t classLevel; - - WarpCondition( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct WarpLogic -{ - std::string warpName; - bool canSkipCutscene; - std::vector< std::string > function; - std::string question; - std::string responseYes; - std::string responseNo; - - WarpLogic( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct WeaponTimeline -{ - std::string file; - int16_t nextWeaponTimeline; - - WeaponTimeline( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct Weather -{ - int32_t icon; - std::string name; - std::string description; - - Weather( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct WeatherGroup -{ - int32_t weatherRate; - - WeatherGroup( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct WeatherRate -{ - - WeatherRate( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct WeatherReportReplace -{ - uint16_t placeNameSub; - uint16_t placeNameParent; - - WeatherReportReplace( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct WebGuidance -{ - int32_t image; - uint8_t url; - std::string name; - std::string description; - - WebGuidance( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct WebURL -{ - std::string uRL; - - WebURL( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct WeddingBGM -{ - uint16_t song; - std::string songName; - - WeddingBGM( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct WeeklyBingoOrderData -{ - uint32_t type; - uint32_t data; - uint8_t text; - uint32_t icon; - - WeeklyBingoOrderData( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct WeeklyBingoRewardData -{ - uint32_t rewardItem2; - bool rewardHQ2; - uint16_t rewardQuantity2; - - WeeklyBingoRewardData( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct WeeklyBingoText -{ - std::string description; - - WeeklyBingoText( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct WeeklyLotBonus -{ - std::vector< uint8_t > weeklyLotBonusThreshold; - - WeeklyLotBonus( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct World -{ - std::string name; - uint8_t userType; - uint8_t dataCenter; - bool isPublic; - - World( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct WorldDCGroupType -{ - std::string name; - uint8_t region; - - WorldDCGroupType( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct YardCatalogCategory -{ - std::string category; - - YardCatalogCategory( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct YardCatalogItemList -{ - uint16_t category; - int32_t item; - uint16_t patch; - - YardCatalogItemList( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct YKW -{ - uint32_t item; - std::vector< uint16_t > location; - - YKW( uint32_t row_id, Sapphire::Data::ExdDataGenerated* exdData ); -}; - -struct ZoneSharedGroup -{ - uint32_t quest1; - uint32_t quest2; - uint32_t quest3; - uint32_t quest4; - uint32_t quest5; - uint32_t quest6; - - ZoneSharedGroup( uint32_t row_id, uint32_t subRow, Sapphire::Data::ExdDataGenerated* exdData ); -}; - - - - class ExdDataGenerated - { - public: - ExdDataGenerated(); - ~ExdDataGenerated(); - - bool init( const std::string& path ); - - xiv::exd::Exd setupDatAccess( const std::string& name, xiv::exd::Language lang ); - - template< class T > - T getField( std::vector< xiv::exd::Field >& fields, uint32_t index ) - { - return std::get< T >( fields.at( index ) ); - } - - void loadIdList( xiv::exd::Exd& data, std::set< uint32_t >& outIdList ); - - std::shared_ptr< xiv::dat::GameData > m_data; - std::shared_ptr< xiv::exd::ExdData > m_exd_data; - - std::shared_ptr< xiv::dat::GameData > getGameData() - { - return m_data; - } - - template< class T > - std::shared_ptr< T > get( uint32_t id ) - { - try - { - auto info = std::make_shared< T >( id, this ); - return info; - } - catch( ... ) - { - return nullptr; - } - return nullptr; - } - - template< class T > - std::shared_ptr< T > get( uint32_t id, uint32_t slotId ) - { - try - { - auto info = std::make_shared< T >( id, slotId, this ); - return info; - } - catch( ... ) - { - return nullptr; - } - return nullptr; - } - - xiv::exd::Exd m_AchievementDat; - xiv::exd::Exd m_AchievementCategoryDat; - xiv::exd::Exd m_AchievementHideConditionDat; - xiv::exd::Exd m_AchievementKindDat; - xiv::exd::Exd m_AchievementTargetDat; - xiv::exd::Exd m_ActionDat; - xiv::exd::Exd m_ActionCastTimelineDat; - xiv::exd::Exd m_ActionCastVFXDat; - xiv::exd::Exd m_ActionCategoryDat; - xiv::exd::Exd m_ActionComboRouteDat; - xiv::exd::Exd m_ActionIndirectionDat; - xiv::exd::Exd m_ActionParamDat; - xiv::exd::Exd m_ActionProcStatusDat; - xiv::exd::Exd m_ActionTimelineDat; - xiv::exd::Exd m_ActionTimelineMoveDat; - xiv::exd::Exd m_ActionTimelineReplaceDat; - xiv::exd::Exd m_ActionTransientDat; - xiv::exd::Exd m_ActivityFeedButtonsDat; - xiv::exd::Exd m_ActivityFeedCaptionsDat; - xiv::exd::Exd m_ActivityFeedGroupCaptionsDat; - xiv::exd::Exd m_ActivityFeedImagesDat; - xiv::exd::Exd m_AddonDat; - xiv::exd::Exd m_AdventureDat; - xiv::exd::Exd m_AdventureExPhaseDat; - xiv::exd::Exd m_AetherCurrentDat; - xiv::exd::Exd m_AetherCurrentCompFlgSetDat; - xiv::exd::Exd m_AetherialWheelDat; - xiv::exd::Exd m_AetheryteDat; - xiv::exd::Exd m_AetheryteSystemDefineDat; - xiv::exd::Exd m_AirshipExplorationLevelDat; - xiv::exd::Exd m_AirshipExplorationLogDat; - xiv::exd::Exd m_AirshipExplorationParamTypeDat; - xiv::exd::Exd m_AirshipExplorationPartDat; - xiv::exd::Exd m_AirshipExplorationPointDat; - xiv::exd::Exd m_AnimationLODDat; - xiv::exd::Exd m_AnimaWeapon5Dat; - xiv::exd::Exd m_AnimaWeapon5ParamDat; - xiv::exd::Exd m_AnimaWeapon5PatternGroupDat; - xiv::exd::Exd m_AnimaWeapon5SpiritTalkDat; - xiv::exd::Exd m_AnimaWeapon5SpiritTalkParamDat; - xiv::exd::Exd m_AnimaWeapon5TradeItemDat; - xiv::exd::Exd m_AnimaWeaponFUITalkDat; - xiv::exd::Exd m_AnimaWeaponFUITalkParamDat; - xiv::exd::Exd m_AnimaWeaponIconDat; - xiv::exd::Exd m_AnimaWeaponItemDat; - xiv::exd::Exd m_AozActionDat; - xiv::exd::Exd m_AozActionTransientDat; - xiv::exd::Exd m_AOZArrangementDat; - xiv::exd::Exd m_AOZBossDat; - xiv::exd::Exd m_AOZContentDat; - xiv::exd::Exd m_AOZContentBriefingBNpcDat; - xiv::exd::Exd m_AOZReportDat; - xiv::exd::Exd m_AOZScoreDat; - xiv::exd::Exd m_AquariumFishDat; - xiv::exd::Exd m_AquariumWaterDat; - xiv::exd::Exd m_ArrayEventHandlerDat; - xiv::exd::Exd m_AttackTypeDat; - xiv::exd::Exd m_BacklightColorDat; - xiv::exd::Exd m_BallistaDat; - xiv::exd::Exd m_BalloonDat; - xiv::exd::Exd m_BaseParamDat; - xiv::exd::Exd m_BattleLeveDat; - xiv::exd::Exd m_BattleLeveRuleDat; - xiv::exd::Exd m_BeastRankBonusDat; - xiv::exd::Exd m_BeastReputationRankDat; - xiv::exd::Exd m_BeastTribeDat; - xiv::exd::Exd m_BehaviorDat; - xiv::exd::Exd m_BehaviorPathDat; - xiv::exd::Exd m_BenchmarkOverrideEquipmentDat; - xiv::exd::Exd m_BGMDat; - xiv::exd::Exd m_BGMFadeDat; - xiv::exd::Exd m_BGMFadeTypeDat; - xiv::exd::Exd m_BGMSceneDat; - xiv::exd::Exd m_BGMSituationDat; - xiv::exd::Exd m_BGMSwitchDat; - xiv::exd::Exd m_BGMSystemDefineDat; - xiv::exd::Exd m_BNpcAnnounceIconDat; - xiv::exd::Exd m_BNpcBaseDat; - xiv::exd::Exd m_BNpcCustomizeDat; - xiv::exd::Exd m_BNpcNameDat; - xiv::exd::Exd m_BNpcPartsDat; - xiv::exd::Exd m_BNpcStateDat; - xiv::exd::Exd m_BuddyDat; - xiv::exd::Exd m_BuddyActionDat; - xiv::exd::Exd m_BuddyEquipDat; - xiv::exd::Exd m_BuddyItemDat; - xiv::exd::Exd m_BuddyRankDat; - xiv::exd::Exd m_BuddySkillDat; - xiv::exd::Exd m_CabinetDat; - xiv::exd::Exd m_CabinetCategoryDat; - xiv::exd::Exd m_CalendarDat; - xiv::exd::Exd m_CarryDat; - xiv::exd::Exd m_ChannelingDat; - xiv::exd::Exd m_CharaMakeClassEquipDat; - xiv::exd::Exd m_CharaMakeCustomizeDat; - xiv::exd::Exd m_CharaMakeNameDat; - xiv::exd::Exd m_CharaMakeTypeDat; - xiv::exd::Exd m_ChocoboRaceDat; - xiv::exd::Exd m_ChocoboRaceAbilityDat; - xiv::exd::Exd m_ChocoboRaceAbilityTypeDat; - xiv::exd::Exd m_ChocoboRaceItemDat; - xiv::exd::Exd m_ChocoboRaceRankDat; - xiv::exd::Exd m_ChocoboRaceStatusDat; - xiv::exd::Exd m_ChocoboRaceTerritoryDat; - xiv::exd::Exd m_ChocoboRaceTutorialDat; - xiv::exd::Exd m_ChocoboRaceWeatherDat; - xiv::exd::Exd m_ChocoboTaxiDat; - xiv::exd::Exd m_ChocoboTaxiStandDat; - xiv::exd::Exd m_CircleActivityDat; - xiv::exd::Exd m_ClassJobDat; - xiv::exd::Exd m_ClassJobCategoryDat; - xiv::exd::Exd m_CollectablesShopDat; - xiv::exd::Exd m_CollectablesShopItemDat; - xiv::exd::Exd m_CollectablesShopItemGroupDat; - xiv::exd::Exd m_CollectablesShopRefineDat; - xiv::exd::Exd m_CollectablesShopRewardItemDat; - xiv::exd::Exd m_CollectablesShopRewardScripDat; - xiv::exd::Exd m_CompanionDat; - xiv::exd::Exd m_CompanionMoveDat; - xiv::exd::Exd m_CompanionTransientDat; - xiv::exd::Exd m_CompanyActionDat; - xiv::exd::Exd m_CompanyCraftDraftDat; - xiv::exd::Exd m_CompanyCraftDraftCategoryDat; - xiv::exd::Exd m_CompanyCraftManufactoryStateDat; - xiv::exd::Exd m_CompanyCraftPartDat; - xiv::exd::Exd m_CompanyCraftProcessDat; - xiv::exd::Exd m_CompanyCraftSequenceDat; - xiv::exd::Exd m_CompanyCraftSupplyItemDat; - xiv::exd::Exd m_CompanyCraftTypeDat; - xiv::exd::Exd m_CompanyLeveDat; - xiv::exd::Exd m_CompanyLeveRuleDat; - xiv::exd::Exd m_CompleteJournalDat; - xiv::exd::Exd m_CompleteJournalCategoryDat; - xiv::exd::Exd m_CompletionDat; - xiv::exd::Exd m_ConditionDat; - xiv::exd::Exd m_ConfigKeyDat; - xiv::exd::Exd m_ContentCloseCycleDat; - xiv::exd::Exd m_ContentExActionDat; - xiv::exd::Exd m_ContentFinderConditionDat; - xiv::exd::Exd m_ContentFinderConditionTransientDat; - xiv::exd::Exd m_ContentGaugeDat; - xiv::exd::Exd m_ContentGaugeColorDat; - xiv::exd::Exd m_ContentMemberTypeDat; - xiv::exd::Exd m_ContentNpcTalkDat; - xiv::exd::Exd m_ContentRandomSelectDat; - xiv::exd::Exd m_ContentRouletteDat; - xiv::exd::Exd m_ContentRouletteOpenRuleDat; - xiv::exd::Exd m_ContentRouletteRoleBonusDat; - xiv::exd::Exd m_ContentsNoteDat; - xiv::exd::Exd m_ContentsTutorialDat; - xiv::exd::Exd m_ContentsTutorialPageDat; - xiv::exd::Exd m_ContentTalkDat; - xiv::exd::Exd m_ContentTalkParamDat; - xiv::exd::Exd m_ContentTypeDat; - xiv::exd::Exd m_CraftActionDat; - xiv::exd::Exd m_CraftLeveDat; - xiv::exd::Exd m_CraftLevelDifferenceDat; - xiv::exd::Exd m_CraftLeveTalkDat; - xiv::exd::Exd m_CraftTypeDat; - xiv::exd::Exd m_CreditDat; - xiv::exd::Exd m_CreditBackImageDat; - xiv::exd::Exd m_CreditCastDat; - xiv::exd::Exd m_CreditListDat; - xiv::exd::Exd m_CreditListTextDat; - xiv::exd::Exd m_CustomTalkDat; - xiv::exd::Exd m_CustomTalkNestHandlersDat; - xiv::exd::Exd m_CutsceneDat; - xiv::exd::Exd m_CutSceneIncompQuestDat; - xiv::exd::Exd m_CutsceneMotionDat; - xiv::exd::Exd m_CutsceneWorkIndexDat; - xiv::exd::Exd m_CutScreenImageDat; - xiv::exd::Exd m_CycleTimeDat; - xiv::exd::Exd m_DailySupplyItemDat; - xiv::exd::Exd m_DawnContentDat; - xiv::exd::Exd m_DawnGrowMemberDat; - xiv::exd::Exd m_DawnMemberUIParamDat; - xiv::exd::Exd m_DawnQuestAnnounceDat; - xiv::exd::Exd m_DawnQuestMemberDat; - xiv::exd::Exd m_DeepDungeonDat; - xiv::exd::Exd m_DeepDungeonBanDat; - xiv::exd::Exd m_DeepDungeonDangerDat; - xiv::exd::Exd m_DeepDungeonEquipmentDat; - xiv::exd::Exd m_DeepDungeonFloorEffectUIDat; - xiv::exd::Exd m_DeepDungeonItemDat; - xiv::exd::Exd m_DeepDungeonLayerDat; - xiv::exd::Exd m_DeepDungeonMagicStoneDat; - xiv::exd::Exd m_DeepDungeonMap5XDat; - xiv::exd::Exd m_DeepDungeonRoomDat; - xiv::exd::Exd m_DeepDungeonStatusDat; - xiv::exd::Exd m_DefaultTalkDat; - xiv::exd::Exd m_DefaultTalkLipSyncTypeDat; - xiv::exd::Exd m_DeliveryQuestDat; - xiv::exd::Exd m_DescriptionDat; - xiv::exd::Exd m_DescriptionPageDat; - xiv::exd::Exd m_DescriptionSectionDat; - xiv::exd::Exd m_DescriptionStringDat; - xiv::exd::Exd m_DisposalShopDat; - xiv::exd::Exd m_DisposalShopFilterTypeDat; - xiv::exd::Exd m_DisposalShopItemDat; - xiv::exd::Exd m_DpsChallengeDat; - xiv::exd::Exd m_DpsChallengeOfficerDat; - xiv::exd::Exd m_DpsChallengeTransientDat; - xiv::exd::Exd m_DynamicEventDat; - xiv::exd::Exd m_DynamicEventEnemyTypeDat; - xiv::exd::Exd m_DynamicEventSingleBattleDat; - xiv::exd::Exd m_DynamicEventTypeDat; - xiv::exd::Exd m_EmjAddonDat; - xiv::exd::Exd m_EmjDaniDat; - xiv::exd::Exd m_EmoteDat; - xiv::exd::Exd m_EmoteCategoryDat; - xiv::exd::Exd m_EmoteModeDat; - xiv::exd::Exd m_ENpcBaseDat; - xiv::exd::Exd m_ENpcDressUpDat; - xiv::exd::Exd m_ENpcDressUpDressDat; - xiv::exd::Exd m_ENpcResidentDat; - xiv::exd::Exd m_EObjDat; - xiv::exd::Exd m_EObjNameDat; - xiv::exd::Exd m_EquipRaceCategoryDat; - xiv::exd::Exd m_EquipSlotCategoryDat; - xiv::exd::Exd m_EurekaAetherItemDat; - xiv::exd::Exd m_EurekaAethernetDat; - xiv::exd::Exd m_EurekaGrowDataDat; - xiv::exd::Exd m_EurekaLogosMixerProbabilityDat; - xiv::exd::Exd m_EurekaMagiaActionDat; - xiv::exd::Exd m_EurekaMagiciteItemDat; - xiv::exd::Exd m_EurekaMagiciteItemTypeDat; - xiv::exd::Exd m_EurekaSphereElementAdjustDat; - xiv::exd::Exd m_EventActionDat; - xiv::exd::Exd m_EventCustomIconTypeDat; - xiv::exd::Exd m_EventIconPriorityDat; - xiv::exd::Exd m_EventIconTypeDat; - xiv::exd::Exd m_EventItemDat; - xiv::exd::Exd m_EventItemCastTimelineDat; - xiv::exd::Exd m_EventItemHelpDat; - xiv::exd::Exd m_EventItemTimelineDat; - xiv::exd::Exd m_EventSystemDefineDat; - xiv::exd::Exd m_ExportedGatheringPointDat; - xiv::exd::Exd m_ExportedSGDat; - xiv::exd::Exd m_ExVersionDat; - xiv::exd::Exd m_FateDat; - xiv::exd::Exd m_FateEventDat; - xiv::exd::Exd m_FateModeDat; - xiv::exd::Exd m_FateProgressUIDat; - xiv::exd::Exd m_FateTokenTypeDat; - xiv::exd::Exd m_FCActivityDat; - xiv::exd::Exd m_FCActivityCategoryDat; - xiv::exd::Exd m_FCAuthorityDat; - xiv::exd::Exd m_FCAuthorityCategoryDat; - xiv::exd::Exd m_FCChestNameDat; - xiv::exd::Exd m_FCCrestSymbolDat; - xiv::exd::Exd m_FccShopDat; - xiv::exd::Exd m_FCHierarchyDat; - xiv::exd::Exd m_FCProfileDat; - xiv::exd::Exd m_FCRankDat; - xiv::exd::Exd m_FCReputationDat; - xiv::exd::Exd m_FCRightsDat; - xiv::exd::Exd m_FestivalDat; - xiv::exd::Exd m_FieldMarkerDat; - xiv::exd::Exd m_FishingRecordTypeDat; - xiv::exd::Exd m_FishingRecordTypeTransientDat; - xiv::exd::Exd m_FishingSpotDat; - xiv::exd::Exd m_FishParameterDat; - xiv::exd::Exd m_Frontline03Dat; - xiv::exd::Exd m_Frontline04Dat; - xiv::exd::Exd m_FurnitureCatalogCategoryDat; - xiv::exd::Exd m_FurnitureCatalogItemListDat; - xiv::exd::Exd m_GardeningSeedDat; - xiv::exd::Exd m_GatheringConditionDat; - xiv::exd::Exd m_GatheringExpDat; - xiv::exd::Exd m_GatheringItemDat; - xiv::exd::Exd m_GatheringItemLevelConvertTableDat; - xiv::exd::Exd m_GatheringItemPointDat; - xiv::exd::Exd m_GatheringLeveDat; - xiv::exd::Exd m_GatheringLeveRouteDat; - xiv::exd::Exd m_GatheringLeveRuleDat; - xiv::exd::Exd m_GatheringNotebookListDat; - xiv::exd::Exd m_GatheringPointDat; - xiv::exd::Exd m_GatheringPointBaseDat; - xiv::exd::Exd m_GatheringPointBonusDat; - xiv::exd::Exd m_GatheringPointBonusTypeDat; - xiv::exd::Exd m_GatheringPointNameDat; - xiv::exd::Exd m_GatheringPointTransientDat; - xiv::exd::Exd m_GatheringRarePopTimeTableDat; - xiv::exd::Exd m_GatheringSubCategoryDat; - xiv::exd::Exd m_GatheringTypeDat; - xiv::exd::Exd m_GcArmyCaptureTacticsDat; - xiv::exd::Exd m_GcArmyEquipPresetDat; - xiv::exd::Exd m_GcArmyExpeditionDat; - xiv::exd::Exd m_GcArmyExpeditionMemberBonusDat; - xiv::exd::Exd m_GcArmyExpeditionTypeDat; - xiv::exd::Exd m_GcArmyMemberGrowDat; - xiv::exd::Exd m_GcArmyTrainingDat; - xiv::exd::Exd m_GCRankGridaniaFemaleTextDat; - xiv::exd::Exd m_GCRankGridaniaMaleTextDat; - xiv::exd::Exd m_GCRankLimsaFemaleTextDat; - xiv::exd::Exd m_GCRankLimsaMaleTextDat; - xiv::exd::Exd m_GCRankUldahFemaleTextDat; - xiv::exd::Exd m_GCRankUldahMaleTextDat; - xiv::exd::Exd m_GCScripShopCategoryDat; - xiv::exd::Exd m_GCScripShopItemDat; - xiv::exd::Exd m_GCShopDat; - xiv::exd::Exd m_GCShopItemCategoryDat; - xiv::exd::Exd m_GCSupplyDutyDat; - xiv::exd::Exd m_GCSupplyDutyRewardDat; - xiv::exd::Exd m_GeneralActionDat; - xiv::exd::Exd m_GFATEDat; - xiv::exd::Exd m_GFateClimbing2Dat; - xiv::exd::Exd m_GFateClimbing2ContentDat; - xiv::exd::Exd m_GFateClimbing2TotemTypeDat; - xiv::exd::Exd m_GFateRideShootingDat; - xiv::exd::Exd m_GilShopDat; - xiv::exd::Exd m_GilShopItemDat; - xiv::exd::Exd m_GimmickAccessorDat; - xiv::exd::Exd m_GimmickJumpDat; - xiv::exd::Exd m_GimmickRectDat; - xiv::exd::Exd m_GoldSaucerArcadeMachineDat; - xiv::exd::Exd m_GoldSaucerTextDataDat; - xiv::exd::Exd m_GrandCompanyDat; - xiv::exd::Exd m_GrandCompanyRankDat; - xiv::exd::Exd m_GroupPoseFrameDat; - xiv::exd::Exd m_GroupPoseStampDat; - xiv::exd::Exd m_GroupPoseStampCategoryDat; - xiv::exd::Exd m_GuardianDeityDat; - xiv::exd::Exd m_GuideDat; - xiv::exd::Exd m_GuidePageDat; - xiv::exd::Exd m_GuidePageStringDat; - xiv::exd::Exd m_GuideTitleDat; - xiv::exd::Exd m_GuildleveAssignmentDat; - xiv::exd::Exd m_GuildleveAssignmentCategoryDat; - xiv::exd::Exd m_GuildleveAssignmentTalkDat; - xiv::exd::Exd m_GuildOrderDat; - xiv::exd::Exd m_GuildOrderGuideDat; - xiv::exd::Exd m_GuildOrderOfficerDat; - xiv::exd::Exd m_HairMakeTypeDat; - xiv::exd::Exd m_HouseRetainerPoseDat; - xiv::exd::Exd m_HousingAethernetDat; - xiv::exd::Exd m_HousingAppealDat; - xiv::exd::Exd m_HousingEmploymentNpcListDat; - xiv::exd::Exd m_HousingEmploymentNpcRaceDat; - xiv::exd::Exd m_HousingExteriorDat; - xiv::exd::Exd m_HousingFurnitureDat; - xiv::exd::Exd m_HousingLandSetDat; - xiv::exd::Exd m_HousingMapMarkerInfoDat; - xiv::exd::Exd m_HousingMerchantPoseDat; - xiv::exd::Exd m_HousingPlacementDat; - xiv::exd::Exd m_HousingPresetDat; - xiv::exd::Exd m_HousingUnitedExteriorDat; - xiv::exd::Exd m_HousingYardObjectDat; - xiv::exd::Exd m_HowToDat; - xiv::exd::Exd m_HowToCategoryDat; - xiv::exd::Exd m_HowToPageDat; - xiv::exd::Exd m_HugeCraftworksNpcDat; - xiv::exd::Exd m_HugeCraftworksRankDat; - xiv::exd::Exd m_HWDAnnounceDat; - xiv::exd::Exd m_HWDCrafterSupplyDat; - xiv::exd::Exd m_HWDCrafterSupplyRewardDat; - xiv::exd::Exd m_HWDCrafterSupplyTermDat; - xiv::exd::Exd m_HWDDevLayerControlDat; - xiv::exd::Exd m_HWDDevLevelUIDat; - xiv::exd::Exd m_HWDDevLivelyDat; - xiv::exd::Exd m_HWDDevProgressDat; - xiv::exd::Exd m_HWDGathereInspectTermDat; - xiv::exd::Exd m_HWDGathererInspectionDat; - xiv::exd::Exd m_HWDGathererInspectionRewardDat; - xiv::exd::Exd m_HWDInfoBoardArticleDat; - xiv::exd::Exd m_HWDInfoBoardArticleTransientDat; - xiv::exd::Exd m_HWDInfoBoardArticleTypeDat; - xiv::exd::Exd m_HWDLevelChangeDeceptionDat; - xiv::exd::Exd m_HWDSharedGroupDat; - xiv::exd::Exd m_HWDSharedGroupControlParamDat; - xiv::exd::Exd m_IKDContentBonusDat; - xiv::exd::Exd m_IKDFishParamDat; - xiv::exd::Exd m_IKDRouteDat; - xiv::exd::Exd m_IKDRouteTableDat; - xiv::exd::Exd m_IKDSpotDat; - xiv::exd::Exd m_InclusionShopDat; - xiv::exd::Exd m_InclusionShopCategoryDat; - xiv::exd::Exd m_InclusionShopSeriesDat; - xiv::exd::Exd m_IndividualWeatherDat; - xiv::exd::Exd m_InstanceContentDat; - xiv::exd::Exd m_InstanceContentBuffDat; - xiv::exd::Exd m_InstanceContentCSBonusDat; - xiv::exd::Exd m_InstanceContentGuideDat; - xiv::exd::Exd m_InstanceContentTextDataDat; - xiv::exd::Exd m_ItemDat; - xiv::exd::Exd m_ItemActionDat; - xiv::exd::Exd m_ItemActionTelepoDat; - xiv::exd::Exd m_ItemBarterCheckDat; - xiv::exd::Exd m_ItemFoodDat; - xiv::exd::Exd m_ItemLevelDat; - xiv::exd::Exd m_ItemSearchCategoryDat; - xiv::exd::Exd m_ItemSeriesDat; - xiv::exd::Exd m_ItemSortCategoryDat; - xiv::exd::Exd m_ItemSpecialBonusDat; - xiv::exd::Exd m_ItemUICategoryDat; - xiv::exd::Exd m_JingleDat; - xiv::exd::Exd m_JobHudManualDat; - xiv::exd::Exd m_JobHudManualPriorityDat; - xiv::exd::Exd m_JournalCategoryDat; - xiv::exd::Exd m_JournalGenreDat; - xiv::exd::Exd m_JournalSectionDat; - xiv::exd::Exd m_KnockbackDat; - xiv::exd::Exd m_LegacyQuestDat; - xiv::exd::Exd m_LeveDat; - xiv::exd::Exd m_LeveAssignmentTypeDat; - xiv::exd::Exd m_LeveClientDat; - xiv::exd::Exd m_LevelDat; - xiv::exd::Exd m_LeveRewardItemDat; - xiv::exd::Exd m_LeveRewardItemGroupDat; - xiv::exd::Exd m_LeveStringDat; - xiv::exd::Exd m_LeveVfxDat; - xiv::exd::Exd m_LobbyDat; - xiv::exd::Exd m_LogFilterDat; - xiv::exd::Exd m_LogKindDat; - xiv::exd::Exd m_LogMessageDat; - xiv::exd::Exd m_LotteryExchangeShopDat; - xiv::exd::Exd m_MacroIconDat; - xiv::exd::Exd m_MacroIconRedirectOldDat; - xiv::exd::Exd m_MainCommandDat; - xiv::exd::Exd m_MainCommandCategoryDat; - xiv::exd::Exd m_ManeuversArmorDat; - xiv::exd::Exd m_MapDat; - xiv::exd::Exd m_MapConditionDat; - xiv::exd::Exd m_MapMarkerDat; - xiv::exd::Exd m_MapMarkerRegionDat; - xiv::exd::Exd m_MapSymbolDat; - xiv::exd::Exd m_MarkerDat; - xiv::exd::Exd m_MateriaDat; - xiv::exd::Exd m_MateriaJoinRateDat; - xiv::exd::Exd m_MateriaJoinRateGatherCraftDat; - xiv::exd::Exd m_MateriaTomestoneRateDat; - xiv::exd::Exd m_MiniGameRADat; - xiv::exd::Exd m_MinionRaceDat; - xiv::exd::Exd m_MinionRulesDat; - xiv::exd::Exd m_MinionSkillTypeDat; - xiv::exd::Exd m_MobHuntOrderDat; - xiv::exd::Exd m_MobHuntOrderTypeDat; - xiv::exd::Exd m_MobHuntRewardDat; - xiv::exd::Exd m_MobHuntRewardCapDat; - xiv::exd::Exd m_MobHuntTargetDat; - xiv::exd::Exd m_ModelCharaDat; - xiv::exd::Exd m_ModelSkeletonDat; - xiv::exd::Exd m_ModelStateDat; - xiv::exd::Exd m_MonsterNoteDat; - xiv::exd::Exd m_MonsterNoteTargetDat; - xiv::exd::Exd m_MotionTimelineDat; - xiv::exd::Exd m_MotionTimelineBlendTableDat; - xiv::exd::Exd m_MountDat; - xiv::exd::Exd m_MountActionDat; - xiv::exd::Exd m_MountCustomizeDat; - xiv::exd::Exd m_MountFlyingConditionDat; - xiv::exd::Exd m_MountSpeedDat; - xiv::exd::Exd m_MountTransientDat; - xiv::exd::Exd m_MoveTimelineDat; - xiv::exd::Exd m_MoveVfxDat; - xiv::exd::Exd m_MovieStaffListDat; - xiv::exd::Exd m_MovieSubtitleDat; - xiv::exd::Exd m_MovieSubtitle500Dat; - xiv::exd::Exd m_MovieSubtitleVoyageDat; - xiv::exd::Exd m_MYCTemporaryItemDat; - xiv::exd::Exd m_MYCTemporaryItemUICategoryDat; - xiv::exd::Exd m_MYCWarResultNotebookDat; - xiv::exd::Exd m_NotebookDivisionDat; - xiv::exd::Exd m_NotebookDivisionCategoryDat; - xiv::exd::Exd m_NotoriousMonsterDat; - xiv::exd::Exd m_NpcEquipDat; - xiv::exd::Exd m_NpcYellDat; - xiv::exd::Exd m_OmenDat; - xiv::exd::Exd m_OnlineStatusDat; - xiv::exd::Exd m_OpenContentDat; - xiv::exd::Exd m_OpenContentCandidateNameDat; - xiv::exd::Exd m_OpeningDat; - xiv::exd::Exd m_OrchestrionDat; - xiv::exd::Exd m_OrchestrionCategoryDat; - xiv::exd::Exd m_OrchestrionPathDat; - xiv::exd::Exd m_OrchestrionUiparamDat; - xiv::exd::Exd m_OrnamentDat; - xiv::exd::Exd m_ParamGrowDat; - xiv::exd::Exd m_PartyContentDat; - xiv::exd::Exd m_PartyContentCutsceneDat; - xiv::exd::Exd m_PartyContentTextDataDat; - xiv::exd::Exd m_PatchMarkDat; - xiv::exd::Exd m_PerformDat; - xiv::exd::Exd m_PerformGroupDat; - xiv::exd::Exd m_PerformTransientDat; - xiv::exd::Exd m_PetDat; - xiv::exd::Exd m_PetActionDat; - xiv::exd::Exd m_PetMirageDat; - xiv::exd::Exd m_PhysicsGroupDat; - xiv::exd::Exd m_PhysicsWindDat; - xiv::exd::Exd m_PictureDat; - xiv::exd::Exd m_PlaceNameDat; - xiv::exd::Exd m_PlantPotFlowerSeedDat; - xiv::exd::Exd m_PreHandlerDat; - xiv::exd::Exd m_PresetCameraDat; - xiv::exd::Exd m_PresetCameraAdjustDat; - xiv::exd::Exd m_PublicContentDat; - xiv::exd::Exd m_PublicContentCutsceneDat; - xiv::exd::Exd m_PublicContentTextDataDat; - xiv::exd::Exd m_PvPActionDat; - xiv::exd::Exd m_PvPActionSortDat; - xiv::exd::Exd m_PvPRankDat; - xiv::exd::Exd m_PvPSelectTraitDat; - xiv::exd::Exd m_PvPTraitDat; - xiv::exd::Exd m_QuestDat; - xiv::exd::Exd m_QuestAcceptAdditionConditionDat; - xiv::exd::Exd m_QuestBattleDat; - xiv::exd::Exd m_QuestChapterDat; - xiv::exd::Exd m_QuestClassJobRewardDat; - xiv::exd::Exd m_QuestClassJobSupplyDat; - xiv::exd::Exd m_QuestDerivedClassDat; - xiv::exd::Exd m_QuestEffectDat; - xiv::exd::Exd m_QuestEffectDefineDat; - xiv::exd::Exd m_QuestRedoDat; - xiv::exd::Exd m_QuestRedoChapterUIDat; - xiv::exd::Exd m_QuestRedoChapterUICategoryDat; - xiv::exd::Exd m_QuestRedoChapterUITabDat; - xiv::exd::Exd m_QuestRedoIncompChapterDat; - xiv::exd::Exd m_QuestRepeatFlagDat; - xiv::exd::Exd m_QuestRewardOtherDat; - xiv::exd::Exd m_QuickChatDat; - xiv::exd::Exd m_QuickChatTransientDat; - xiv::exd::Exd m_RaceDat; - xiv::exd::Exd m_RacingChocoboItemDat; - xiv::exd::Exd m_RacingChocoboNameDat; - xiv::exd::Exd m_RacingChocoboNameCategoryDat; - xiv::exd::Exd m_RacingChocoboNameInfoDat; - xiv::exd::Exd m_RacingChocoboParamDat; - xiv::exd::Exd m_RecastNavimeshDat; - xiv::exd::Exd m_RecipeDat; - xiv::exd::Exd m_RecipeLevelTableDat; - xiv::exd::Exd m_RecipeLookupDat; - xiv::exd::Exd m_RecipeNotebookListDat; - xiv::exd::Exd m_RecommendContentsDat; - xiv::exd::Exd m_RelicDat; - xiv::exd::Exd m_Relic3Dat; - xiv::exd::Exd m_RelicItemDat; - xiv::exd::Exd m_RelicNoteDat; - xiv::exd::Exd m_RelicNoteCategoryDat; - xiv::exd::Exd m_ResidentDat; - xiv::exd::Exd m_ResistanceWeaponAdjustDat; - xiv::exd::Exd m_RetainerFortuneRewardRangeDat; - xiv::exd::Exd m_RetainerTaskDat; - xiv::exd::Exd m_RetainerTaskLvRangeDat; - xiv::exd::Exd m_RetainerTaskNormalDat; - xiv::exd::Exd m_RetainerTaskParameterDat; - xiv::exd::Exd m_RetainerTaskRandomDat; - xiv::exd::Exd m_RideShootingDat; - xiv::exd::Exd m_RideShootingTargetTypeDat; - xiv::exd::Exd m_RideShootingTextDataDat; - xiv::exd::Exd m_RPParameterDat; - xiv::exd::Exd m_SatisfactionArbitrationDat; - xiv::exd::Exd m_SatisfactionNpcDat; - xiv::exd::Exd m_SatisfactionSupplyDat; - xiv::exd::Exd m_SatisfactionSupplyRewardDat; - xiv::exd::Exd m_ScenarioTreeDat; - xiv::exd::Exd m_ScenarioTreeTipsDat; - xiv::exd::Exd m_ScenarioTreeTipsClassQuestDat; - xiv::exd::Exd m_ScenarioTypeDat; - xiv::exd::Exd m_ScreenImageDat; - xiv::exd::Exd m_SecretRecipeBookDat; - xiv::exd::Exd m_SkyIsland2MissionDat; - xiv::exd::Exd m_SkyIsland2MissionDetailDat; - xiv::exd::Exd m_SkyIsland2MissionTypeDat; - xiv::exd::Exd m_SkyIsland2RangeTypeDat; - xiv::exd::Exd m_SnipeTalkDat; - xiv::exd::Exd m_SnipeTalkNameDat; - xiv::exd::Exd m_SpearfishingItemDat; - xiv::exd::Exd m_SpearfishingNotebookDat; - xiv::exd::Exd m_SpearfishingRecordPageDat; - xiv::exd::Exd m_SpecialShopDat; - xiv::exd::Exd m_SpecialShopItemCategoryDat; - xiv::exd::Exd m_StainDat; - xiv::exd::Exd m_StainTransientDat; - xiv::exd::Exd m_StanceChangeDat; - xiv::exd::Exd m_StatusDat; - xiv::exd::Exd m_StatusHitEffectDat; - xiv::exd::Exd m_StatusLoopVFXDat; - xiv::exd::Exd m_StoryDat; - xiv::exd::Exd m_SubmarineExplorationDat; - xiv::exd::Exd m_SubmarineMapDat; - xiv::exd::Exd m_SubmarinePartDat; - xiv::exd::Exd m_SubmarineRankDat; - xiv::exd::Exd m_SwitchTalkDat; - xiv::exd::Exd m_SwitchTalkVariationDat; - xiv::exd::Exd m_TerritoryTypeDat; - xiv::exd::Exd m_TerritoryTypeTransientDat; - xiv::exd::Exd m_TextCommandDat; - xiv::exd::Exd m_TextCommandParamDat; - xiv::exd::Exd m_TitleDat; - xiv::exd::Exd m_TomestonesDat; - xiv::exd::Exd m_TomestonesItemDat; - xiv::exd::Exd m_TopicSelectDat; - xiv::exd::Exd m_TownDat; - xiv::exd::Exd m_TraitDat; - xiv::exd::Exd m_TraitRecastDat; - xiv::exd::Exd m_TraitTransientDat; - xiv::exd::Exd m_TransformationDat; - xiv::exd::Exd m_TreasureDat; - xiv::exd::Exd m_TreasureHuntRankDat; - xiv::exd::Exd m_TreasureModelDat; - xiv::exd::Exd m_TreasureSpotDat; - xiv::exd::Exd m_TribeDat; - xiv::exd::Exd m_TripleTriadDat; - xiv::exd::Exd m_TripleTriadCardDat; - xiv::exd::Exd m_TripleTriadCardRarityDat; - xiv::exd::Exd m_TripleTriadCardResidentDat; - xiv::exd::Exd m_TripleTriadCardTypeDat; - xiv::exd::Exd m_TripleTriadCompetitionDat; - xiv::exd::Exd m_TripleTriadResidentDat; - xiv::exd::Exd m_TripleTriadRuleDat; - xiv::exd::Exd m_TutorialDat; - xiv::exd::Exd m_TutorialDPSDat; - xiv::exd::Exd m_TutorialHealerDat; - xiv::exd::Exd m_TutorialTankDat; - xiv::exd::Exd m_UDS_EventDat; - xiv::exd::Exd m_UDS_PropertyDat; - xiv::exd::Exd m_UIColorDat; - xiv::exd::Exd m_VaseFlowerDat; - xiv::exd::Exd m_VFXDat; - xiv::exd::Exd m_WarpDat; - xiv::exd::Exd m_WarpConditionDat; - xiv::exd::Exd m_WarpLogicDat; - xiv::exd::Exd m_WeaponTimelineDat; - xiv::exd::Exd m_WeatherDat; - xiv::exd::Exd m_WeatherGroupDat; - xiv::exd::Exd m_WeatherRateDat; - xiv::exd::Exd m_WeatherReportReplaceDat; - xiv::exd::Exd m_WebGuidanceDat; - xiv::exd::Exd m_WebURLDat; - xiv::exd::Exd m_WeddingBGMDat; - xiv::exd::Exd m_WeeklyBingoOrderDataDat; - xiv::exd::Exd m_WeeklyBingoRewardDataDat; - xiv::exd::Exd m_WeeklyBingoTextDat; - xiv::exd::Exd m_WeeklyLotBonusDat; - xiv::exd::Exd m_WorldDat; - xiv::exd::Exd m_WorldDCGroupTypeDat; - xiv::exd::Exd m_YardCatalogCategoryDat; - xiv::exd::Exd m_YardCatalogItemListDat; - xiv::exd::Exd m_YKWDat; - xiv::exd::Exd m_ZoneSharedGroupDat; - - - using AchievementPtr = std::shared_ptr< Achievement >; - using AchievementCategoryPtr = std::shared_ptr< AchievementCategory >; - using AchievementHideConditionPtr = std::shared_ptr< AchievementHideCondition >; - using AchievementKindPtr = std::shared_ptr< AchievementKind >; - using AchievementTargetPtr = std::shared_ptr< AchievementTarget >; - using ActionPtr = std::shared_ptr< Action >; - using ActionCastTimelinePtr = std::shared_ptr< ActionCastTimeline >; - using ActionCastVFXPtr = std::shared_ptr< ActionCastVFX >; - using ActionCategoryPtr = std::shared_ptr< ActionCategory >; - using ActionComboRoutePtr = std::shared_ptr< ActionComboRoute >; - using ActionIndirectionPtr = std::shared_ptr< ActionIndirection >; - using ActionParamPtr = std::shared_ptr< ActionParam >; - using ActionProcStatusPtr = std::shared_ptr< ActionProcStatus >; - using ActionTimelinePtr = std::shared_ptr< ActionTimeline >; - using ActionTimelineMovePtr = std::shared_ptr< ActionTimelineMove >; - using ActionTimelineReplacePtr = std::shared_ptr< ActionTimelineReplace >; - using ActionTransientPtr = std::shared_ptr< ActionTransient >; - using ActivityFeedButtonsPtr = std::shared_ptr< ActivityFeedButtons >; - using ActivityFeedCaptionsPtr = std::shared_ptr< ActivityFeedCaptions >; - using ActivityFeedGroupCaptionsPtr = std::shared_ptr< ActivityFeedGroupCaptions >; - using ActivityFeedImagesPtr = std::shared_ptr< ActivityFeedImages >; - using AddonPtr = std::shared_ptr< Addon >; - using AdventurePtr = std::shared_ptr< Adventure >; - using AdventureExPhasePtr = std::shared_ptr< AdventureExPhase >; - using AetherCurrentPtr = std::shared_ptr< AetherCurrent >; - using AetherCurrentCompFlgSetPtr = std::shared_ptr< AetherCurrentCompFlgSet >; - using AetherialWheelPtr = std::shared_ptr< AetherialWheel >; - using AetherytePtr = std::shared_ptr< Aetheryte >; - using AetheryteSystemDefinePtr = std::shared_ptr< AetheryteSystemDefine >; - using AirshipExplorationLevelPtr = std::shared_ptr< AirshipExplorationLevel >; - using AirshipExplorationLogPtr = std::shared_ptr< AirshipExplorationLog >; - using AirshipExplorationParamTypePtr = std::shared_ptr< AirshipExplorationParamType >; - using AirshipExplorationPartPtr = std::shared_ptr< AirshipExplorationPart >; - using AirshipExplorationPointPtr = std::shared_ptr< AirshipExplorationPoint >; - using AnimationLODPtr = std::shared_ptr< AnimationLOD >; - using AnimaWeapon5Ptr = std::shared_ptr< AnimaWeapon5 >; - using AnimaWeapon5ParamPtr = std::shared_ptr< AnimaWeapon5Param >; - using AnimaWeapon5PatternGroupPtr = std::shared_ptr< AnimaWeapon5PatternGroup >; - using AnimaWeapon5SpiritTalkPtr = std::shared_ptr< AnimaWeapon5SpiritTalk >; - using AnimaWeapon5SpiritTalkParamPtr = std::shared_ptr< AnimaWeapon5SpiritTalkParam >; - using AnimaWeapon5TradeItemPtr = std::shared_ptr< AnimaWeapon5TradeItem >; - using AnimaWeaponFUITalkPtr = std::shared_ptr< AnimaWeaponFUITalk >; - using AnimaWeaponFUITalkParamPtr = std::shared_ptr< AnimaWeaponFUITalkParam >; - using AnimaWeaponIconPtr = std::shared_ptr< AnimaWeaponIcon >; - using AnimaWeaponItemPtr = std::shared_ptr< AnimaWeaponItem >; - using AozActionPtr = std::shared_ptr< AozAction >; - using AozActionTransientPtr = std::shared_ptr< AozActionTransient >; - using AOZArrangementPtr = std::shared_ptr< AOZArrangement >; - using AOZBossPtr = std::shared_ptr< AOZBoss >; - using AOZContentPtr = std::shared_ptr< AOZContent >; - using AOZContentBriefingBNpcPtr = std::shared_ptr< AOZContentBriefingBNpc >; - using AOZReportPtr = std::shared_ptr< AOZReport >; - using AOZScorePtr = std::shared_ptr< AOZScore >; - using AquariumFishPtr = std::shared_ptr< AquariumFish >; - using AquariumWaterPtr = std::shared_ptr< AquariumWater >; - using ArrayEventHandlerPtr = std::shared_ptr< ArrayEventHandler >; - using AttackTypePtr = std::shared_ptr< AttackType >; - using BacklightColorPtr = std::shared_ptr< BacklightColor >; - using BallistaPtr = std::shared_ptr< Ballista >; - using BalloonPtr = std::shared_ptr< Balloon >; - using BaseParamPtr = std::shared_ptr< BaseParam >; - using BattleLevePtr = std::shared_ptr< BattleLeve >; - using BattleLeveRulePtr = std::shared_ptr< BattleLeveRule >; - using BeastRankBonusPtr = std::shared_ptr< BeastRankBonus >; - using BeastReputationRankPtr = std::shared_ptr< BeastReputationRank >; - using BeastTribePtr = std::shared_ptr< BeastTribe >; - using BehaviorPtr = std::shared_ptr< Behavior >; - using BehaviorPathPtr = std::shared_ptr< BehaviorPath >; - using BenchmarkOverrideEquipmentPtr = std::shared_ptr< BenchmarkOverrideEquipment >; - using BGMPtr = std::shared_ptr< BGM >; - using BGMFadePtr = std::shared_ptr< BGMFade >; - using BGMFadeTypePtr = std::shared_ptr< BGMFadeType >; - using BGMScenePtr = std::shared_ptr< BGMScene >; - using BGMSituationPtr = std::shared_ptr< BGMSituation >; - using BGMSwitchPtr = std::shared_ptr< BGMSwitch >; - using BGMSystemDefinePtr = std::shared_ptr< BGMSystemDefine >; - using BNpcAnnounceIconPtr = std::shared_ptr< BNpcAnnounceIcon >; - using BNpcBasePtr = std::shared_ptr< BNpcBase >; - using BNpcCustomizePtr = std::shared_ptr< BNpcCustomize >; - using BNpcNamePtr = std::shared_ptr< BNpcName >; - using BNpcPartsPtr = std::shared_ptr< BNpcParts >; - using BNpcStatePtr = std::shared_ptr< BNpcState >; - using BuddyPtr = std::shared_ptr< Buddy >; - using BuddyActionPtr = std::shared_ptr< BuddyAction >; - using BuddyEquipPtr = std::shared_ptr< BuddyEquip >; - using BuddyItemPtr = std::shared_ptr< BuddyItem >; - using BuddyRankPtr = std::shared_ptr< BuddyRank >; - using BuddySkillPtr = std::shared_ptr< BuddySkill >; - using CabinetPtr = std::shared_ptr< Cabinet >; - using CabinetCategoryPtr = std::shared_ptr< CabinetCategory >; - using CalendarPtr = std::shared_ptr< Calendar >; - using CarryPtr = std::shared_ptr< Carry >; - using ChannelingPtr = std::shared_ptr< Channeling >; - using CharaMakeClassEquipPtr = std::shared_ptr< CharaMakeClassEquip >; - using CharaMakeCustomizePtr = std::shared_ptr< CharaMakeCustomize >; - using CharaMakeNamePtr = std::shared_ptr< CharaMakeName >; - using CharaMakeTypePtr = std::shared_ptr< CharaMakeType >; - using ChocoboRacePtr = std::shared_ptr< ChocoboRace >; - using ChocoboRaceAbilityPtr = std::shared_ptr< ChocoboRaceAbility >; - using ChocoboRaceAbilityTypePtr = std::shared_ptr< ChocoboRaceAbilityType >; - using ChocoboRaceItemPtr = std::shared_ptr< ChocoboRaceItem >; - using ChocoboRaceRankPtr = std::shared_ptr< ChocoboRaceRank >; - using ChocoboRaceStatusPtr = std::shared_ptr< ChocoboRaceStatus >; - using ChocoboRaceTerritoryPtr = std::shared_ptr< ChocoboRaceTerritory >; - using ChocoboRaceTutorialPtr = std::shared_ptr< ChocoboRaceTutorial >; - using ChocoboRaceWeatherPtr = std::shared_ptr< ChocoboRaceWeather >; - using ChocoboTaxiPtr = std::shared_ptr< ChocoboTaxi >; - using ChocoboTaxiStandPtr = std::shared_ptr< ChocoboTaxiStand >; - using CircleActivityPtr = std::shared_ptr< CircleActivity >; - using ClassJobPtr = std::shared_ptr< ClassJob >; - using ClassJobCategoryPtr = std::shared_ptr< ClassJobCategory >; - using CollectablesShopPtr = std::shared_ptr< CollectablesShop >; - using CollectablesShopItemPtr = std::shared_ptr< CollectablesShopItem >; - using CollectablesShopItemGroupPtr = std::shared_ptr< CollectablesShopItemGroup >; - using CollectablesShopRefinePtr = std::shared_ptr< CollectablesShopRefine >; - using CollectablesShopRewardItemPtr = std::shared_ptr< CollectablesShopRewardItem >; - using CollectablesShopRewardScripPtr = std::shared_ptr< CollectablesShopRewardScrip >; - using CompanionPtr = std::shared_ptr< Companion >; - using CompanionMovePtr = std::shared_ptr< CompanionMove >; - using CompanionTransientPtr = std::shared_ptr< CompanionTransient >; - using CompanyActionPtr = std::shared_ptr< CompanyAction >; - using CompanyCraftDraftPtr = std::shared_ptr< CompanyCraftDraft >; - using CompanyCraftDraftCategoryPtr = std::shared_ptr< CompanyCraftDraftCategory >; - using CompanyCraftManufactoryStatePtr = std::shared_ptr< CompanyCraftManufactoryState >; - using CompanyCraftPartPtr = std::shared_ptr< CompanyCraftPart >; - using CompanyCraftProcessPtr = std::shared_ptr< CompanyCraftProcess >; - using CompanyCraftSequencePtr = std::shared_ptr< CompanyCraftSequence >; - using CompanyCraftSupplyItemPtr = std::shared_ptr< CompanyCraftSupplyItem >; - using CompanyCraftTypePtr = std::shared_ptr< CompanyCraftType >; - using CompanyLevePtr = std::shared_ptr< CompanyLeve >; - using CompanyLeveRulePtr = std::shared_ptr< CompanyLeveRule >; - using CompleteJournalPtr = std::shared_ptr< CompleteJournal >; - using CompleteJournalCategoryPtr = std::shared_ptr< CompleteJournalCategory >; - using CompletionPtr = std::shared_ptr< Completion >; - using ConditionPtr = std::shared_ptr< Condition >; - using ConfigKeyPtr = std::shared_ptr< ConfigKey >; - using ContentCloseCyclePtr = std::shared_ptr< ContentCloseCycle >; - using ContentExActionPtr = std::shared_ptr< ContentExAction >; - using ContentFinderConditionPtr = std::shared_ptr< ContentFinderCondition >; - using ContentFinderConditionTransientPtr = std::shared_ptr< ContentFinderConditionTransient >; - using ContentGaugePtr = std::shared_ptr< ContentGauge >; - using ContentGaugeColorPtr = std::shared_ptr< ContentGaugeColor >; - using ContentMemberTypePtr = std::shared_ptr< ContentMemberType >; - using ContentNpcTalkPtr = std::shared_ptr< ContentNpcTalk >; - using ContentRandomSelectPtr = std::shared_ptr< ContentRandomSelect >; - using ContentRoulettePtr = std::shared_ptr< ContentRoulette >; - using ContentRouletteOpenRulePtr = std::shared_ptr< ContentRouletteOpenRule >; - using ContentRouletteRoleBonusPtr = std::shared_ptr< ContentRouletteRoleBonus >; - using ContentsNotePtr = std::shared_ptr< ContentsNote >; - using ContentsTutorialPtr = std::shared_ptr< ContentsTutorial >; - using ContentsTutorialPagePtr = std::shared_ptr< ContentsTutorialPage >; - using ContentTalkPtr = std::shared_ptr< ContentTalk >; - using ContentTalkParamPtr = std::shared_ptr< ContentTalkParam >; - using ContentTypePtr = std::shared_ptr< ContentType >; - using CraftActionPtr = std::shared_ptr< CraftAction >; - using CraftLevePtr = std::shared_ptr< CraftLeve >; - using CraftLevelDifferencePtr = std::shared_ptr< CraftLevelDifference >; - using CraftLeveTalkPtr = std::shared_ptr< CraftLeveTalk >; - using CraftTypePtr = std::shared_ptr< CraftType >; - using CreditPtr = std::shared_ptr< Credit >; - using CreditBackImagePtr = std::shared_ptr< CreditBackImage >; - using CreditCastPtr = std::shared_ptr< CreditCast >; - using CreditListPtr = std::shared_ptr< CreditList >; - using CreditListTextPtr = std::shared_ptr< CreditListText >; - using CustomTalkPtr = std::shared_ptr< CustomTalk >; - using CustomTalkNestHandlersPtr = std::shared_ptr< CustomTalkNestHandlers >; - using CutscenePtr = std::shared_ptr< Cutscene >; - using CutSceneIncompQuestPtr = std::shared_ptr< CutSceneIncompQuest >; - using CutsceneMotionPtr = std::shared_ptr< CutsceneMotion >; - using CutsceneWorkIndexPtr = std::shared_ptr< CutsceneWorkIndex >; - using CutScreenImagePtr = std::shared_ptr< CutScreenImage >; - using CycleTimePtr = std::shared_ptr< CycleTime >; - using DailySupplyItemPtr = std::shared_ptr< DailySupplyItem >; - using DawnContentPtr = std::shared_ptr< DawnContent >; - using DawnGrowMemberPtr = std::shared_ptr< DawnGrowMember >; - using DawnMemberUIParamPtr = std::shared_ptr< DawnMemberUIParam >; - using DawnQuestAnnouncePtr = std::shared_ptr< DawnQuestAnnounce >; - using DawnQuestMemberPtr = std::shared_ptr< DawnQuestMember >; - using DeepDungeonPtr = std::shared_ptr< DeepDungeon >; - using DeepDungeonBanPtr = std::shared_ptr< DeepDungeonBan >; - using DeepDungeonDangerPtr = std::shared_ptr< DeepDungeonDanger >; - using DeepDungeonEquipmentPtr = std::shared_ptr< DeepDungeonEquipment >; - using DeepDungeonFloorEffectUIPtr = std::shared_ptr< DeepDungeonFloorEffectUI >; - using DeepDungeonItemPtr = std::shared_ptr< DeepDungeonItem >; - using DeepDungeonLayerPtr = std::shared_ptr< DeepDungeonLayer >; - using DeepDungeonMagicStonePtr = std::shared_ptr< DeepDungeonMagicStone >; - using DeepDungeonMap5XPtr = std::shared_ptr< DeepDungeonMap5X >; - using DeepDungeonRoomPtr = std::shared_ptr< DeepDungeonRoom >; - using DeepDungeonStatusPtr = std::shared_ptr< DeepDungeonStatus >; - using DefaultTalkPtr = std::shared_ptr< DefaultTalk >; - using DefaultTalkLipSyncTypePtr = std::shared_ptr< DefaultTalkLipSyncType >; - using DeliveryQuestPtr = std::shared_ptr< DeliveryQuest >; - using DescriptionPtr = std::shared_ptr< Description >; - using DescriptionPagePtr = std::shared_ptr< DescriptionPage >; - using DescriptionSectionPtr = std::shared_ptr< DescriptionSection >; - using DescriptionStringPtr = std::shared_ptr< DescriptionString >; - using DisposalShopPtr = std::shared_ptr< DisposalShop >; - using DisposalShopFilterTypePtr = std::shared_ptr< DisposalShopFilterType >; - using DisposalShopItemPtr = std::shared_ptr< DisposalShopItem >; - using DpsChallengePtr = std::shared_ptr< DpsChallenge >; - using DpsChallengeOfficerPtr = std::shared_ptr< DpsChallengeOfficer >; - using DpsChallengeTransientPtr = std::shared_ptr< DpsChallengeTransient >; - using DynamicEventPtr = std::shared_ptr< DynamicEvent >; - using DynamicEventEnemyTypePtr = std::shared_ptr< DynamicEventEnemyType >; - using DynamicEventSingleBattlePtr = std::shared_ptr< DynamicEventSingleBattle >; - using DynamicEventTypePtr = std::shared_ptr< DynamicEventType >; - using EmjAddonPtr = std::shared_ptr< EmjAddon >; - using EmjDaniPtr = std::shared_ptr< EmjDani >; - using EmotePtr = std::shared_ptr< Emote >; - using EmoteCategoryPtr = std::shared_ptr< EmoteCategory >; - using EmoteModePtr = std::shared_ptr< EmoteMode >; - using ENpcBasePtr = std::shared_ptr< ENpcBase >; - using ENpcDressUpPtr = std::shared_ptr< ENpcDressUp >; - using ENpcDressUpDressPtr = std::shared_ptr< ENpcDressUpDress >; - using ENpcResidentPtr = std::shared_ptr< ENpcResident >; - using EObjPtr = std::shared_ptr< EObj >; - using EObjNamePtr = std::shared_ptr< EObjName >; - using EquipRaceCategoryPtr = std::shared_ptr< EquipRaceCategory >; - using EquipSlotCategoryPtr = std::shared_ptr< EquipSlotCategory >; - using EurekaAetherItemPtr = std::shared_ptr< EurekaAetherItem >; - using EurekaAethernetPtr = std::shared_ptr< EurekaAethernet >; - using EurekaGrowDataPtr = std::shared_ptr< EurekaGrowData >; - using EurekaLogosMixerProbabilityPtr = std::shared_ptr< EurekaLogosMixerProbability >; - using EurekaMagiaActionPtr = std::shared_ptr< EurekaMagiaAction >; - using EurekaMagiciteItemPtr = std::shared_ptr< EurekaMagiciteItem >; - using EurekaMagiciteItemTypePtr = std::shared_ptr< EurekaMagiciteItemType >; - using EurekaSphereElementAdjustPtr = std::shared_ptr< EurekaSphereElementAdjust >; - using EventActionPtr = std::shared_ptr< EventAction >; - using EventCustomIconTypePtr = std::shared_ptr< EventCustomIconType >; - using EventIconPriorityPtr = std::shared_ptr< EventIconPriority >; - using EventIconTypePtr = std::shared_ptr< EventIconType >; - using EventItemPtr = std::shared_ptr< EventItem >; - using EventItemCastTimelinePtr = std::shared_ptr< EventItemCastTimeline >; - using EventItemHelpPtr = std::shared_ptr< EventItemHelp >; - using EventItemTimelinePtr = std::shared_ptr< EventItemTimeline >; - using EventSystemDefinePtr = std::shared_ptr< EventSystemDefine >; - using ExportedGatheringPointPtr = std::shared_ptr< ExportedGatheringPoint >; - using ExportedSGPtr = std::shared_ptr< ExportedSG >; - using ExVersionPtr = std::shared_ptr< ExVersion >; - using FatePtr = std::shared_ptr< Fate >; - using FateEventPtr = std::shared_ptr< FateEvent >; - using FateModePtr = std::shared_ptr< FateMode >; - using FateProgressUIPtr = std::shared_ptr< FateProgressUI >; - using FateTokenTypePtr = std::shared_ptr< FateTokenType >; - using FCActivityPtr = std::shared_ptr< FCActivity >; - using FCActivityCategoryPtr = std::shared_ptr< FCActivityCategory >; - using FCAuthorityPtr = std::shared_ptr< FCAuthority >; - using FCAuthorityCategoryPtr = std::shared_ptr< FCAuthorityCategory >; - using FCChestNamePtr = std::shared_ptr< FCChestName >; - using FCCrestSymbolPtr = std::shared_ptr< FCCrestSymbol >; - using FccShopPtr = std::shared_ptr< FccShop >; - using FCHierarchyPtr = std::shared_ptr< FCHierarchy >; - using FCProfilePtr = std::shared_ptr< FCProfile >; - using FCRankPtr = std::shared_ptr< FCRank >; - using FCReputationPtr = std::shared_ptr< FCReputation >; - using FCRightsPtr = std::shared_ptr< FCRights >; - using FestivalPtr = std::shared_ptr< Festival >; - using FieldMarkerPtr = std::shared_ptr< FieldMarker >; - using FishingRecordTypePtr = std::shared_ptr< FishingRecordType >; - using FishingRecordTypeTransientPtr = std::shared_ptr< FishingRecordTypeTransient >; - using FishingSpotPtr = std::shared_ptr< FishingSpot >; - using FishParameterPtr = std::shared_ptr< FishParameter >; - using Frontline03Ptr = std::shared_ptr< Frontline03 >; - using Frontline04Ptr = std::shared_ptr< Frontline04 >; - using FurnitureCatalogCategoryPtr = std::shared_ptr< FurnitureCatalogCategory >; - using FurnitureCatalogItemListPtr = std::shared_ptr< FurnitureCatalogItemList >; - using GardeningSeedPtr = std::shared_ptr< GardeningSeed >; - using GatheringConditionPtr = std::shared_ptr< GatheringCondition >; - using GatheringExpPtr = std::shared_ptr< GatheringExp >; - using GatheringItemPtr = std::shared_ptr< GatheringItem >; - using GatheringItemLevelConvertTablePtr = std::shared_ptr< GatheringItemLevelConvertTable >; - using GatheringItemPointPtr = std::shared_ptr< GatheringItemPoint >; - using GatheringLevePtr = std::shared_ptr< GatheringLeve >; - using GatheringLeveRoutePtr = std::shared_ptr< GatheringLeveRoute >; - using GatheringLeveRulePtr = std::shared_ptr< GatheringLeveRule >; - using GatheringNotebookListPtr = std::shared_ptr< GatheringNotebookList >; - using GatheringPointPtr = std::shared_ptr< GatheringPoint >; - using GatheringPointBasePtr = std::shared_ptr< GatheringPointBase >; - using GatheringPointBonusPtr = std::shared_ptr< GatheringPointBonus >; - using GatheringPointBonusTypePtr = std::shared_ptr< GatheringPointBonusType >; - using GatheringPointNamePtr = std::shared_ptr< GatheringPointName >; - using GatheringPointTransientPtr = std::shared_ptr< GatheringPointTransient >; - using GatheringRarePopTimeTablePtr = std::shared_ptr< GatheringRarePopTimeTable >; - using GatheringSubCategoryPtr = std::shared_ptr< GatheringSubCategory >; - using GatheringTypePtr = std::shared_ptr< GatheringType >; - using GcArmyCaptureTacticsPtr = std::shared_ptr< GcArmyCaptureTactics >; - using GcArmyEquipPresetPtr = std::shared_ptr< GcArmyEquipPreset >; - using GcArmyExpeditionPtr = std::shared_ptr< GcArmyExpedition >; - using GcArmyExpeditionMemberBonusPtr = std::shared_ptr< GcArmyExpeditionMemberBonus >; - using GcArmyExpeditionTypePtr = std::shared_ptr< GcArmyExpeditionType >; - using GcArmyMemberGrowPtr = std::shared_ptr< GcArmyMemberGrow >; - using GcArmyTrainingPtr = std::shared_ptr< GcArmyTraining >; - using GCRankGridaniaFemaleTextPtr = std::shared_ptr< GCRankGridaniaFemaleText >; - using GCRankGridaniaMaleTextPtr = std::shared_ptr< GCRankGridaniaMaleText >; - using GCRankLimsaFemaleTextPtr = std::shared_ptr< GCRankLimsaFemaleText >; - using GCRankLimsaMaleTextPtr = std::shared_ptr< GCRankLimsaMaleText >; - using GCRankUldahFemaleTextPtr = std::shared_ptr< GCRankUldahFemaleText >; - using GCRankUldahMaleTextPtr = std::shared_ptr< GCRankUldahMaleText >; - using GCScripShopCategoryPtr = std::shared_ptr< GCScripShopCategory >; - using GCScripShopItemPtr = std::shared_ptr< GCScripShopItem >; - using GCShopPtr = std::shared_ptr< GCShop >; - using GCShopItemCategoryPtr = std::shared_ptr< GCShopItemCategory >; - using GCSupplyDutyPtr = std::shared_ptr< GCSupplyDuty >; - using GCSupplyDutyRewardPtr = std::shared_ptr< GCSupplyDutyReward >; - using GeneralActionPtr = std::shared_ptr< GeneralAction >; - using GFATEPtr = std::shared_ptr< GFATE >; - using GFateClimbing2Ptr = std::shared_ptr< GFateClimbing2 >; - using GFateClimbing2ContentPtr = std::shared_ptr< GFateClimbing2Content >; - using GFateClimbing2TotemTypePtr = std::shared_ptr< GFateClimbing2TotemType >; - using GFateRideShootingPtr = std::shared_ptr< GFateRideShooting >; - using GilShopPtr = std::shared_ptr< GilShop >; - using GilShopItemPtr = std::shared_ptr< GilShopItem >; - using GimmickAccessorPtr = std::shared_ptr< GimmickAccessor >; - using GimmickJumpPtr = std::shared_ptr< GimmickJump >; - using GimmickRectPtr = std::shared_ptr< GimmickRect >; - using GoldSaucerArcadeMachinePtr = std::shared_ptr< GoldSaucerArcadeMachine >; - using GoldSaucerTextDataPtr = std::shared_ptr< GoldSaucerTextData >; - using GrandCompanyPtr = std::shared_ptr< GrandCompany >; - using GrandCompanyRankPtr = std::shared_ptr< GrandCompanyRank >; - using GroupPoseFramePtr = std::shared_ptr< GroupPoseFrame >; - using GroupPoseStampPtr = std::shared_ptr< GroupPoseStamp >; - using GroupPoseStampCategoryPtr = std::shared_ptr< GroupPoseStampCategory >; - using GuardianDeityPtr = std::shared_ptr< GuardianDeity >; - using GuidePtr = std::shared_ptr< Guide >; - using GuidePagePtr = std::shared_ptr< GuidePage >; - using GuidePageStringPtr = std::shared_ptr< GuidePageString >; - using GuideTitlePtr = std::shared_ptr< GuideTitle >; - using GuildleveAssignmentPtr = std::shared_ptr< GuildleveAssignment >; - using GuildleveAssignmentCategoryPtr = std::shared_ptr< GuildleveAssignmentCategory >; - using GuildleveAssignmentTalkPtr = std::shared_ptr< GuildleveAssignmentTalk >; - using GuildOrderPtr = std::shared_ptr< GuildOrder >; - using GuildOrderGuidePtr = std::shared_ptr< GuildOrderGuide >; - using GuildOrderOfficerPtr = std::shared_ptr< GuildOrderOfficer >; - using HairMakeTypePtr = std::shared_ptr< HairMakeType >; - using HouseRetainerPosePtr = std::shared_ptr< HouseRetainerPose >; - using HousingAethernetPtr = std::shared_ptr< HousingAethernet >; - using HousingAppealPtr = std::shared_ptr< HousingAppeal >; - using HousingEmploymentNpcListPtr = std::shared_ptr< HousingEmploymentNpcList >; - using HousingEmploymentNpcRacePtr = std::shared_ptr< HousingEmploymentNpcRace >; - using HousingExteriorPtr = std::shared_ptr< HousingExterior >; - using HousingFurniturePtr = std::shared_ptr< HousingFurniture >; - using HousingLandSetPtr = std::shared_ptr< HousingLandSet >; - using HousingMapMarkerInfoPtr = std::shared_ptr< HousingMapMarkerInfo >; - using HousingMerchantPosePtr = std::shared_ptr< HousingMerchantPose >; - using HousingPlacementPtr = std::shared_ptr< HousingPlacement >; - using HousingPresetPtr = std::shared_ptr< HousingPreset >; - using HousingUnitedExteriorPtr = std::shared_ptr< HousingUnitedExterior >; - using HousingYardObjectPtr = std::shared_ptr< HousingYardObject >; - using HowToPtr = std::shared_ptr< HowTo >; - using HowToCategoryPtr = std::shared_ptr< HowToCategory >; - using HowToPagePtr = std::shared_ptr< HowToPage >; - using HugeCraftworksNpcPtr = std::shared_ptr< HugeCraftworksNpc >; - using HugeCraftworksRankPtr = std::shared_ptr< HugeCraftworksRank >; - using HWDAnnouncePtr = std::shared_ptr< HWDAnnounce >; - using HWDCrafterSupplyPtr = std::shared_ptr< HWDCrafterSupply >; - using HWDCrafterSupplyRewardPtr = std::shared_ptr< HWDCrafterSupplyReward >; - using HWDCrafterSupplyTermPtr = std::shared_ptr< HWDCrafterSupplyTerm >; - using HWDDevLayerControlPtr = std::shared_ptr< HWDDevLayerControl >; - using HWDDevLevelUIPtr = std::shared_ptr< HWDDevLevelUI >; - using HWDDevLivelyPtr = std::shared_ptr< HWDDevLively >; - using HWDDevProgressPtr = std::shared_ptr< HWDDevProgress >; - using HWDGathereInspectTermPtr = std::shared_ptr< HWDGathereInspectTerm >; - using HWDGathererInspectionPtr = std::shared_ptr< HWDGathererInspection >; - using HWDGathererInspectionRewardPtr = std::shared_ptr< HWDGathererInspectionReward >; - using HWDInfoBoardArticlePtr = std::shared_ptr< HWDInfoBoardArticle >; - using HWDInfoBoardArticleTransientPtr = std::shared_ptr< HWDInfoBoardArticleTransient >; - using HWDInfoBoardArticleTypePtr = std::shared_ptr< HWDInfoBoardArticleType >; - using HWDLevelChangeDeceptionPtr = std::shared_ptr< HWDLevelChangeDeception >; - using HWDSharedGroupPtr = std::shared_ptr< HWDSharedGroup >; - using HWDSharedGroupControlParamPtr = std::shared_ptr< HWDSharedGroupControlParam >; - using IKDContentBonusPtr = std::shared_ptr< IKDContentBonus >; - using IKDFishParamPtr = std::shared_ptr< IKDFishParam >; - using IKDRoutePtr = std::shared_ptr< IKDRoute >; - using IKDRouteTablePtr = std::shared_ptr< IKDRouteTable >; - using IKDSpotPtr = std::shared_ptr< IKDSpot >; - using InclusionShopPtr = std::shared_ptr< InclusionShop >; - using InclusionShopCategoryPtr = std::shared_ptr< InclusionShopCategory >; - using InclusionShopSeriesPtr = std::shared_ptr< InclusionShopSeries >; - using IndividualWeatherPtr = std::shared_ptr< IndividualWeather >; - using InstanceContentPtr = std::shared_ptr< InstanceContent >; - using InstanceContentBuffPtr = std::shared_ptr< InstanceContentBuff >; - using InstanceContentCSBonusPtr = std::shared_ptr< InstanceContentCSBonus >; - using InstanceContentGuidePtr = std::shared_ptr< InstanceContentGuide >; - using InstanceContentTextDataPtr = std::shared_ptr< InstanceContentTextData >; - using ItemPtr = std::shared_ptr< Item >; - using ItemActionPtr = std::shared_ptr< ItemAction >; - using ItemActionTelepoPtr = std::shared_ptr< ItemActionTelepo >; - using ItemBarterCheckPtr = std::shared_ptr< ItemBarterCheck >; - using ItemFoodPtr = std::shared_ptr< ItemFood >; - using ItemLevelPtr = std::shared_ptr< ItemLevel >; - using ItemSearchCategoryPtr = std::shared_ptr< ItemSearchCategory >; - using ItemSeriesPtr = std::shared_ptr< ItemSeries >; - using ItemSortCategoryPtr = std::shared_ptr< ItemSortCategory >; - using ItemSpecialBonusPtr = std::shared_ptr< ItemSpecialBonus >; - using ItemUICategoryPtr = std::shared_ptr< ItemUICategory >; - using JinglePtr = std::shared_ptr< Jingle >; - using JobHudManualPtr = std::shared_ptr< JobHudManual >; - using JobHudManualPriorityPtr = std::shared_ptr< JobHudManualPriority >; - using JournalCategoryPtr = std::shared_ptr< JournalCategory >; - using JournalGenrePtr = std::shared_ptr< JournalGenre >; - using JournalSectionPtr = std::shared_ptr< JournalSection >; - using KnockbackPtr = std::shared_ptr< Knockback >; - using LegacyQuestPtr = std::shared_ptr< LegacyQuest >; - using LevePtr = std::shared_ptr< Leve >; - using LeveAssignmentTypePtr = std::shared_ptr< LeveAssignmentType >; - using LeveClientPtr = std::shared_ptr< LeveClient >; - using LevelPtr = std::shared_ptr< Level >; - using LeveRewardItemPtr = std::shared_ptr< LeveRewardItem >; - using LeveRewardItemGroupPtr = std::shared_ptr< LeveRewardItemGroup >; - using LeveStringPtr = std::shared_ptr< LeveString >; - using LeveVfxPtr = std::shared_ptr< LeveVfx >; - using LobbyPtr = std::shared_ptr< Lobby >; - using LogFilterPtr = std::shared_ptr< LogFilter >; - using LogKindPtr = std::shared_ptr< LogKind >; - using LogMessagePtr = std::shared_ptr< LogMessage >; - using LotteryExchangeShopPtr = std::shared_ptr< LotteryExchangeShop >; - using MacroIconPtr = std::shared_ptr< MacroIcon >; - using MacroIconRedirectOldPtr = std::shared_ptr< MacroIconRedirectOld >; - using MainCommandPtr = std::shared_ptr< MainCommand >; - using MainCommandCategoryPtr = std::shared_ptr< MainCommandCategory >; - using ManeuversArmorPtr = std::shared_ptr< ManeuversArmor >; - using MapPtr = std::shared_ptr< Map >; - using MapConditionPtr = std::shared_ptr< MapCondition >; - using MapMarkerPtr = std::shared_ptr< MapMarker >; - using MapMarkerRegionPtr = std::shared_ptr< MapMarkerRegion >; - using MapSymbolPtr = std::shared_ptr< MapSymbol >; - using MarkerPtr = std::shared_ptr< Marker >; - using MateriaPtr = std::shared_ptr< Materia >; - using MateriaJoinRatePtr = std::shared_ptr< MateriaJoinRate >; - using MateriaJoinRateGatherCraftPtr = std::shared_ptr< MateriaJoinRateGatherCraft >; - using MateriaTomestoneRatePtr = std::shared_ptr< MateriaTomestoneRate >; - using MiniGameRAPtr = std::shared_ptr< MiniGameRA >; - using MinionRacePtr = std::shared_ptr< MinionRace >; - using MinionRulesPtr = std::shared_ptr< MinionRules >; - using MinionSkillTypePtr = std::shared_ptr< MinionSkillType >; - using MobHuntOrderPtr = std::shared_ptr< MobHuntOrder >; - using MobHuntOrderTypePtr = std::shared_ptr< MobHuntOrderType >; - using MobHuntRewardPtr = std::shared_ptr< MobHuntReward >; - using MobHuntRewardCapPtr = std::shared_ptr< MobHuntRewardCap >; - using MobHuntTargetPtr = std::shared_ptr< MobHuntTarget >; - using ModelCharaPtr = std::shared_ptr< ModelChara >; - using ModelSkeletonPtr = std::shared_ptr< ModelSkeleton >; - using ModelStatePtr = std::shared_ptr< ModelState >; - using MonsterNotePtr = std::shared_ptr< MonsterNote >; - using MonsterNoteTargetPtr = std::shared_ptr< MonsterNoteTarget >; - using MotionTimelinePtr = std::shared_ptr< MotionTimeline >; - using MotionTimelineBlendTablePtr = std::shared_ptr< MotionTimelineBlendTable >; - using MountPtr = std::shared_ptr< Mount >; - using MountActionPtr = std::shared_ptr< MountAction >; - using MountCustomizePtr = std::shared_ptr< MountCustomize >; - using MountFlyingConditionPtr = std::shared_ptr< MountFlyingCondition >; - using MountSpeedPtr = std::shared_ptr< MountSpeed >; - using MountTransientPtr = std::shared_ptr< MountTransient >; - using MoveTimelinePtr = std::shared_ptr< MoveTimeline >; - using MoveVfxPtr = std::shared_ptr< MoveVfx >; - using MovieStaffListPtr = std::shared_ptr< MovieStaffList >; - using MovieSubtitlePtr = std::shared_ptr< MovieSubtitle >; - using MovieSubtitle500Ptr = std::shared_ptr< MovieSubtitle500 >; - using MovieSubtitleVoyagePtr = std::shared_ptr< MovieSubtitleVoyage >; - using MYCTemporaryItemPtr = std::shared_ptr< MYCTemporaryItem >; - using MYCTemporaryItemUICategoryPtr = std::shared_ptr< MYCTemporaryItemUICategory >; - using MYCWarResultNotebookPtr = std::shared_ptr< MYCWarResultNotebook >; - using NotebookDivisionPtr = std::shared_ptr< NotebookDivision >; - using NotebookDivisionCategoryPtr = std::shared_ptr< NotebookDivisionCategory >; - using NotoriousMonsterPtr = std::shared_ptr< NotoriousMonster >; - using NpcEquipPtr = std::shared_ptr< NpcEquip >; - using NpcYellPtr = std::shared_ptr< NpcYell >; - using OmenPtr = std::shared_ptr< Omen >; - using OnlineStatusPtr = std::shared_ptr< OnlineStatus >; - using OpenContentPtr = std::shared_ptr< OpenContent >; - using OpenContentCandidateNamePtr = std::shared_ptr< OpenContentCandidateName >; - using OpeningPtr = std::shared_ptr< Opening >; - using OrchestrionPtr = std::shared_ptr< Orchestrion >; - using OrchestrionCategoryPtr = std::shared_ptr< OrchestrionCategory >; - using OrchestrionPathPtr = std::shared_ptr< OrchestrionPath >; - using OrchestrionUiparamPtr = std::shared_ptr< OrchestrionUiparam >; - using OrnamentPtr = std::shared_ptr< Ornament >; - using ParamGrowPtr = std::shared_ptr< ParamGrow >; - using PartyContentPtr = std::shared_ptr< PartyContent >; - using PartyContentCutscenePtr = std::shared_ptr< PartyContentCutscene >; - using PartyContentTextDataPtr = std::shared_ptr< PartyContentTextData >; - using PatchMarkPtr = std::shared_ptr< PatchMark >; - using PerformPtr = std::shared_ptr< Perform >; - using PerformGroupPtr = std::shared_ptr< PerformGroup >; - using PerformTransientPtr = std::shared_ptr< PerformTransient >; - using PetPtr = std::shared_ptr< Pet >; - using PetActionPtr = std::shared_ptr< PetAction >; - using PetMiragePtr = std::shared_ptr< PetMirage >; - using PhysicsGroupPtr = std::shared_ptr< PhysicsGroup >; - using PhysicsWindPtr = std::shared_ptr< PhysicsWind >; - using PicturePtr = std::shared_ptr< Picture >; - using PlaceNamePtr = std::shared_ptr< PlaceName >; - using PlantPotFlowerSeedPtr = std::shared_ptr< PlantPotFlowerSeed >; - using PreHandlerPtr = std::shared_ptr< PreHandler >; - using PresetCameraPtr = std::shared_ptr< PresetCamera >; - using PresetCameraAdjustPtr = std::shared_ptr< PresetCameraAdjust >; - using PublicContentPtr = std::shared_ptr< PublicContent >; - using PublicContentCutscenePtr = std::shared_ptr< PublicContentCutscene >; - using PublicContentTextDataPtr = std::shared_ptr< PublicContentTextData >; - using PvPActionPtr = std::shared_ptr< PvPAction >; - using PvPActionSortPtr = std::shared_ptr< PvPActionSort >; - using PvPRankPtr = std::shared_ptr< PvPRank >; - using PvPSelectTraitPtr = std::shared_ptr< PvPSelectTrait >; - using PvPTraitPtr = std::shared_ptr< PvPTrait >; - using QuestPtr = std::shared_ptr< Quest >; - using QuestAcceptAdditionConditionPtr = std::shared_ptr< QuestAcceptAdditionCondition >; - using QuestBattlePtr = std::shared_ptr< QuestBattle >; - using QuestChapterPtr = std::shared_ptr< QuestChapter >; - using QuestClassJobRewardPtr = std::shared_ptr< QuestClassJobReward >; - using QuestClassJobSupplyPtr = std::shared_ptr< QuestClassJobSupply >; - using QuestDerivedClassPtr = std::shared_ptr< QuestDerivedClass >; - using QuestEffectPtr = std::shared_ptr< QuestEffect >; - using QuestEffectDefinePtr = std::shared_ptr< QuestEffectDefine >; - using QuestRedoPtr = std::shared_ptr< QuestRedo >; - using QuestRedoChapterUIPtr = std::shared_ptr< QuestRedoChapterUI >; - using QuestRedoChapterUICategoryPtr = std::shared_ptr< QuestRedoChapterUICategory >; - using QuestRedoChapterUITabPtr = std::shared_ptr< QuestRedoChapterUITab >; - using QuestRedoIncompChapterPtr = std::shared_ptr< QuestRedoIncompChapter >; - using QuestRepeatFlagPtr = std::shared_ptr< QuestRepeatFlag >; - using QuestRewardOtherPtr = std::shared_ptr< QuestRewardOther >; - using QuickChatPtr = std::shared_ptr< QuickChat >; - using QuickChatTransientPtr = std::shared_ptr< QuickChatTransient >; - using RacePtr = std::shared_ptr< Race >; - using RacingChocoboItemPtr = std::shared_ptr< RacingChocoboItem >; - using RacingChocoboNamePtr = std::shared_ptr< RacingChocoboName >; - using RacingChocoboNameCategoryPtr = std::shared_ptr< RacingChocoboNameCategory >; - using RacingChocoboNameInfoPtr = std::shared_ptr< RacingChocoboNameInfo >; - using RacingChocoboParamPtr = std::shared_ptr< RacingChocoboParam >; - using RecastNavimeshPtr = std::shared_ptr< RecastNavimesh >; - using RecipePtr = std::shared_ptr< Recipe >; - using RecipeLevelTablePtr = std::shared_ptr< RecipeLevelTable >; - using RecipeLookupPtr = std::shared_ptr< RecipeLookup >; - using RecipeNotebookListPtr = std::shared_ptr< RecipeNotebookList >; - using RecommendContentsPtr = std::shared_ptr< RecommendContents >; - using RelicPtr = std::shared_ptr< Relic >; - using Relic3Ptr = std::shared_ptr< Relic3 >; - using RelicItemPtr = std::shared_ptr< RelicItem >; - using RelicNotePtr = std::shared_ptr< RelicNote >; - using RelicNoteCategoryPtr = std::shared_ptr< RelicNoteCategory >; - using ResidentPtr = std::shared_ptr< Resident >; - using ResistanceWeaponAdjustPtr = std::shared_ptr< ResistanceWeaponAdjust >; - using RetainerFortuneRewardRangePtr = std::shared_ptr< RetainerFortuneRewardRange >; - using RetainerTaskPtr = std::shared_ptr< RetainerTask >; - using RetainerTaskLvRangePtr = std::shared_ptr< RetainerTaskLvRange >; - using RetainerTaskNormalPtr = std::shared_ptr< RetainerTaskNormal >; - using RetainerTaskParameterPtr = std::shared_ptr< RetainerTaskParameter >; - using RetainerTaskRandomPtr = std::shared_ptr< RetainerTaskRandom >; - using RideShootingPtr = std::shared_ptr< RideShooting >; - using RideShootingTargetTypePtr = std::shared_ptr< RideShootingTargetType >; - using RideShootingTextDataPtr = std::shared_ptr< RideShootingTextData >; - using RPParameterPtr = std::shared_ptr< RPParameter >; - using SatisfactionArbitrationPtr = std::shared_ptr< SatisfactionArbitration >; - using SatisfactionNpcPtr = std::shared_ptr< SatisfactionNpc >; - using SatisfactionSupplyPtr = std::shared_ptr< SatisfactionSupply >; - using SatisfactionSupplyRewardPtr = std::shared_ptr< SatisfactionSupplyReward >; - using ScenarioTreePtr = std::shared_ptr< ScenarioTree >; - using ScenarioTreeTipsPtr = std::shared_ptr< ScenarioTreeTips >; - using ScenarioTreeTipsClassQuestPtr = std::shared_ptr< ScenarioTreeTipsClassQuest >; - using ScenarioTypePtr = std::shared_ptr< ScenarioType >; - using ScreenImagePtr = std::shared_ptr< ScreenImage >; - using SecretRecipeBookPtr = std::shared_ptr< SecretRecipeBook >; - using SkyIsland2MissionPtr = std::shared_ptr< SkyIsland2Mission >; - using SkyIsland2MissionDetailPtr = std::shared_ptr< SkyIsland2MissionDetail >; - using SkyIsland2MissionTypePtr = std::shared_ptr< SkyIsland2MissionType >; - using SkyIsland2RangeTypePtr = std::shared_ptr< SkyIsland2RangeType >; - using SnipeTalkPtr = std::shared_ptr< SnipeTalk >; - using SnipeTalkNamePtr = std::shared_ptr< SnipeTalkName >; - using SpearfishingItemPtr = std::shared_ptr< SpearfishingItem >; - using SpearfishingNotebookPtr = std::shared_ptr< SpearfishingNotebook >; - using SpearfishingRecordPagePtr = std::shared_ptr< SpearfishingRecordPage >; - using SpecialShopPtr = std::shared_ptr< SpecialShop >; - using SpecialShopItemCategoryPtr = std::shared_ptr< SpecialShopItemCategory >; - using StainPtr = std::shared_ptr< Stain >; - using StainTransientPtr = std::shared_ptr< StainTransient >; - using StanceChangePtr = std::shared_ptr< StanceChange >; - using StatusPtr = std::shared_ptr< Status >; - using StatusHitEffectPtr = std::shared_ptr< StatusHitEffect >; - using StatusLoopVFXPtr = std::shared_ptr< StatusLoopVFX >; - using StoryPtr = std::shared_ptr< Story >; - using SubmarineExplorationPtr = std::shared_ptr< SubmarineExploration >; - using SubmarineMapPtr = std::shared_ptr< SubmarineMap >; - using SubmarinePartPtr = std::shared_ptr< SubmarinePart >; - using SubmarineRankPtr = std::shared_ptr< SubmarineRank >; - using SwitchTalkPtr = std::shared_ptr< SwitchTalk >; - using SwitchTalkVariationPtr = std::shared_ptr< SwitchTalkVariation >; - using TerritoryTypePtr = std::shared_ptr< TerritoryType >; - using TerritoryTypeTransientPtr = std::shared_ptr< TerritoryTypeTransient >; - using TextCommandPtr = std::shared_ptr< TextCommand >; - using TextCommandParamPtr = std::shared_ptr< TextCommandParam >; - using TitlePtr = std::shared_ptr< Title >; - using TomestonesPtr = std::shared_ptr< Tomestones >; - using TomestonesItemPtr = std::shared_ptr< TomestonesItem >; - using TopicSelectPtr = std::shared_ptr< TopicSelect >; - using TownPtr = std::shared_ptr< Town >; - using TraitPtr = std::shared_ptr< Trait >; - using TraitRecastPtr = std::shared_ptr< TraitRecast >; - using TraitTransientPtr = std::shared_ptr< TraitTransient >; - using TransformationPtr = std::shared_ptr< Transformation >; - using TreasurePtr = std::shared_ptr< Treasure >; - using TreasureHuntRankPtr = std::shared_ptr< TreasureHuntRank >; - using TreasureModelPtr = std::shared_ptr< TreasureModel >; - using TreasureSpotPtr = std::shared_ptr< TreasureSpot >; - using TribePtr = std::shared_ptr< Tribe >; - using TripleTriadPtr = std::shared_ptr< TripleTriad >; - using TripleTriadCardPtr = std::shared_ptr< TripleTriadCard >; - using TripleTriadCardRarityPtr = std::shared_ptr< TripleTriadCardRarity >; - using TripleTriadCardResidentPtr = std::shared_ptr< TripleTriadCardResident >; - using TripleTriadCardTypePtr = std::shared_ptr< TripleTriadCardType >; - using TripleTriadCompetitionPtr = std::shared_ptr< TripleTriadCompetition >; - using TripleTriadResidentPtr = std::shared_ptr< TripleTriadResident >; - using TripleTriadRulePtr = std::shared_ptr< TripleTriadRule >; - using TutorialPtr = std::shared_ptr< Tutorial >; - using TutorialDPSPtr = std::shared_ptr< TutorialDPS >; - using TutorialHealerPtr = std::shared_ptr< TutorialHealer >; - using TutorialTankPtr = std::shared_ptr< TutorialTank >; - using UDS_EventPtr = std::shared_ptr< UDS_Event >; - using UDS_PropertyPtr = std::shared_ptr< UDS_Property >; - using UIColorPtr = std::shared_ptr< UIColor >; - using VaseFlowerPtr = std::shared_ptr< VaseFlower >; - using VFXPtr = std::shared_ptr< VFX >; - using WarpPtr = std::shared_ptr< Warp >; - using WarpConditionPtr = std::shared_ptr< WarpCondition >; - using WarpLogicPtr = std::shared_ptr< WarpLogic >; - using WeaponTimelinePtr = std::shared_ptr< WeaponTimeline >; - using WeatherPtr = std::shared_ptr< Weather >; - using WeatherGroupPtr = std::shared_ptr< WeatherGroup >; - using WeatherRatePtr = std::shared_ptr< WeatherRate >; - using WeatherReportReplacePtr = std::shared_ptr< WeatherReportReplace >; - using WebGuidancePtr = std::shared_ptr< WebGuidance >; - using WebURLPtr = std::shared_ptr< WebURL >; - using WeddingBGMPtr = std::shared_ptr< WeddingBGM >; - using WeeklyBingoOrderDataPtr = std::shared_ptr< WeeklyBingoOrderData >; - using WeeklyBingoRewardDataPtr = std::shared_ptr< WeeklyBingoRewardData >; - using WeeklyBingoTextPtr = std::shared_ptr< WeeklyBingoText >; - using WeeklyLotBonusPtr = std::shared_ptr< WeeklyLotBonus >; - using WorldPtr = std::shared_ptr< World >; - using WorldDCGroupTypePtr = std::shared_ptr< WorldDCGroupType >; - using YardCatalogCategoryPtr = std::shared_ptr< YardCatalogCategory >; - using YardCatalogItemListPtr = std::shared_ptr< YardCatalogItemList >; - using YKWPtr = std::shared_ptr< YKW >; - using ZoneSharedGroupPtr = std::shared_ptr< ZoneSharedGroup >; - - - std::set< uint32_t > m_AchievementIdList; - std::set< uint32_t > m_AchievementCategoryIdList; - std::set< uint32_t > m_AchievementHideConditionIdList; - std::set< uint32_t > m_AchievementKindIdList; - std::set< uint32_t > m_AchievementTargetIdList; - std::set< uint32_t > m_ActionIdList; - std::set< uint32_t > m_ActionCastTimelineIdList; - std::set< uint32_t > m_ActionCastVFXIdList; - std::set< uint32_t > m_ActionCategoryIdList; - std::set< uint32_t > m_ActionComboRouteIdList; - std::set< uint32_t > m_ActionIndirectionIdList; - std::set< uint32_t > m_ActionParamIdList; - std::set< uint32_t > m_ActionProcStatusIdList; - std::set< uint32_t > m_ActionTimelineIdList; - std::set< uint32_t > m_ActionTimelineMoveIdList; - std::set< uint32_t > m_ActionTimelineReplaceIdList; - std::set< uint32_t > m_ActionTransientIdList; - std::set< uint32_t > m_ActivityFeedButtonsIdList; - std::set< uint32_t > m_ActivityFeedCaptionsIdList; - std::set< uint32_t > m_ActivityFeedGroupCaptionsIdList; - std::set< uint32_t > m_ActivityFeedImagesIdList; - std::set< uint32_t > m_AddonIdList; - std::set< uint32_t > m_AdventureIdList; - std::set< uint32_t > m_AdventureExPhaseIdList; - std::set< uint32_t > m_AetherCurrentIdList; - std::set< uint32_t > m_AetherCurrentCompFlgSetIdList; - std::set< uint32_t > m_AetherialWheelIdList; - std::set< uint32_t > m_AetheryteIdList; - std::set< uint32_t > m_AetheryteSystemDefineIdList; - std::set< uint32_t > m_AirshipExplorationLevelIdList; - std::set< uint32_t > m_AirshipExplorationLogIdList; - std::set< uint32_t > m_AirshipExplorationParamTypeIdList; - std::set< uint32_t > m_AirshipExplorationPartIdList; - std::set< uint32_t > m_AirshipExplorationPointIdList; - std::set< uint32_t > m_AnimationLODIdList; - std::set< uint32_t > m_AnimaWeapon5IdList; - std::set< uint32_t > m_AnimaWeapon5ParamIdList; - std::set< uint32_t > m_AnimaWeapon5PatternGroupIdList; - std::set< uint32_t > m_AnimaWeapon5SpiritTalkIdList; - std::set< uint32_t > m_AnimaWeapon5SpiritTalkParamIdList; - std::set< uint32_t > m_AnimaWeapon5TradeItemIdList; - std::set< uint32_t > m_AnimaWeaponFUITalkIdList; - std::set< uint32_t > m_AnimaWeaponFUITalkParamIdList; - std::set< uint32_t > m_AnimaWeaponIconIdList; - std::set< uint32_t > m_AnimaWeaponItemIdList; - std::set< uint32_t > m_AozActionIdList; - std::set< uint32_t > m_AozActionTransientIdList; - std::set< uint32_t > m_AOZArrangementIdList; - std::set< uint32_t > m_AOZBossIdList; - std::set< uint32_t > m_AOZContentIdList; - std::set< uint32_t > m_AOZContentBriefingBNpcIdList; - std::set< uint32_t > m_AOZReportIdList; - std::set< uint32_t > m_AOZScoreIdList; - std::set< uint32_t > m_AquariumFishIdList; - std::set< uint32_t > m_AquariumWaterIdList; - std::set< uint32_t > m_ArrayEventHandlerIdList; - std::set< uint32_t > m_AttackTypeIdList; - std::set< uint32_t > m_BacklightColorIdList; - std::set< uint32_t > m_BallistaIdList; - std::set< uint32_t > m_BalloonIdList; - std::set< uint32_t > m_BaseParamIdList; - std::set< uint32_t > m_BattleLeveIdList; - std::set< uint32_t > m_BattleLeveRuleIdList; - std::set< uint32_t > m_BeastRankBonusIdList; - std::set< uint32_t > m_BeastReputationRankIdList; - std::set< uint32_t > m_BeastTribeIdList; - std::set< uint32_t > m_BehaviorIdList; - std::set< uint32_t > m_BehaviorPathIdList; - std::set< uint32_t > m_BenchmarkOverrideEquipmentIdList; - std::set< uint32_t > m_BGMIdList; - std::set< uint32_t > m_BGMFadeIdList; - std::set< uint32_t > m_BGMFadeTypeIdList; - std::set< uint32_t > m_BGMSceneIdList; - std::set< uint32_t > m_BGMSituationIdList; - std::set< uint32_t > m_BGMSwitchIdList; - std::set< uint32_t > m_BGMSystemDefineIdList; - std::set< uint32_t > m_BNpcAnnounceIconIdList; - std::set< uint32_t > m_BNpcBaseIdList; - std::set< uint32_t > m_BNpcCustomizeIdList; - std::set< uint32_t > m_BNpcNameIdList; - std::set< uint32_t > m_BNpcPartsIdList; - std::set< uint32_t > m_BNpcStateIdList; - std::set< uint32_t > m_BuddyIdList; - std::set< uint32_t > m_BuddyActionIdList; - std::set< uint32_t > m_BuddyEquipIdList; - std::set< uint32_t > m_BuddyItemIdList; - std::set< uint32_t > m_BuddyRankIdList; - std::set< uint32_t > m_BuddySkillIdList; - std::set< uint32_t > m_CabinetIdList; - std::set< uint32_t > m_CabinetCategoryIdList; - std::set< uint32_t > m_CalendarIdList; - std::set< uint32_t > m_CarryIdList; - std::set< uint32_t > m_ChannelingIdList; - std::set< uint32_t > m_CharaMakeClassEquipIdList; - std::set< uint32_t > m_CharaMakeCustomizeIdList; - std::set< uint32_t > m_CharaMakeNameIdList; - std::set< uint32_t > m_CharaMakeTypeIdList; - std::set< uint32_t > m_ChocoboRaceIdList; - std::set< uint32_t > m_ChocoboRaceAbilityIdList; - std::set< uint32_t > m_ChocoboRaceAbilityTypeIdList; - std::set< uint32_t > m_ChocoboRaceItemIdList; - std::set< uint32_t > m_ChocoboRaceRankIdList; - std::set< uint32_t > m_ChocoboRaceStatusIdList; - std::set< uint32_t > m_ChocoboRaceTerritoryIdList; - std::set< uint32_t > m_ChocoboRaceTutorialIdList; - std::set< uint32_t > m_ChocoboRaceWeatherIdList; - std::set< uint32_t > m_ChocoboTaxiIdList; - std::set< uint32_t > m_ChocoboTaxiStandIdList; - std::set< uint32_t > m_CircleActivityIdList; - std::set< uint32_t > m_ClassJobIdList; - std::set< uint32_t > m_ClassJobCategoryIdList; - std::set< uint32_t > m_CollectablesShopIdList; - std::set< uint32_t > m_CollectablesShopItemIdList; - std::set< uint32_t > m_CollectablesShopItemGroupIdList; - std::set< uint32_t > m_CollectablesShopRefineIdList; - std::set< uint32_t > m_CollectablesShopRewardItemIdList; - std::set< uint32_t > m_CollectablesShopRewardScripIdList; - std::set< uint32_t > m_CompanionIdList; - std::set< uint32_t > m_CompanionMoveIdList; - std::set< uint32_t > m_CompanionTransientIdList; - std::set< uint32_t > m_CompanyActionIdList; - std::set< uint32_t > m_CompanyCraftDraftIdList; - std::set< uint32_t > m_CompanyCraftDraftCategoryIdList; - std::set< uint32_t > m_CompanyCraftManufactoryStateIdList; - std::set< uint32_t > m_CompanyCraftPartIdList; - std::set< uint32_t > m_CompanyCraftProcessIdList; - std::set< uint32_t > m_CompanyCraftSequenceIdList; - std::set< uint32_t > m_CompanyCraftSupplyItemIdList; - std::set< uint32_t > m_CompanyCraftTypeIdList; - std::set< uint32_t > m_CompanyLeveIdList; - std::set< uint32_t > m_CompanyLeveRuleIdList; - std::set< uint32_t > m_CompleteJournalIdList; - std::set< uint32_t > m_CompleteJournalCategoryIdList; - std::set< uint32_t > m_CompletionIdList; - std::set< uint32_t > m_ConditionIdList; - std::set< uint32_t > m_ConfigKeyIdList; - std::set< uint32_t > m_ContentCloseCycleIdList; - std::set< uint32_t > m_ContentExActionIdList; - std::set< uint32_t > m_ContentFinderConditionIdList; - std::set< uint32_t > m_ContentFinderConditionTransientIdList; - std::set< uint32_t > m_ContentGaugeIdList; - std::set< uint32_t > m_ContentGaugeColorIdList; - std::set< uint32_t > m_ContentMemberTypeIdList; - std::set< uint32_t > m_ContentNpcTalkIdList; - std::set< uint32_t > m_ContentRandomSelectIdList; - std::set< uint32_t > m_ContentRouletteIdList; - std::set< uint32_t > m_ContentRouletteOpenRuleIdList; - std::set< uint32_t > m_ContentRouletteRoleBonusIdList; - std::set< uint32_t > m_ContentsNoteIdList; - std::set< uint32_t > m_ContentsTutorialIdList; - std::set< uint32_t > m_ContentsTutorialPageIdList; - std::set< uint32_t > m_ContentTalkIdList; - std::set< uint32_t > m_ContentTalkParamIdList; - std::set< uint32_t > m_ContentTypeIdList; - std::set< uint32_t > m_CraftActionIdList; - std::set< uint32_t > m_CraftLeveIdList; - std::set< uint32_t > m_CraftLevelDifferenceIdList; - std::set< uint32_t > m_CraftLeveTalkIdList; - std::set< uint32_t > m_CraftTypeIdList; - std::set< uint32_t > m_CreditIdList; - std::set< uint32_t > m_CreditBackImageIdList; - std::set< uint32_t > m_CreditCastIdList; - std::set< uint32_t > m_CreditListIdList; - std::set< uint32_t > m_CreditListTextIdList; - std::set< uint32_t > m_CustomTalkIdList; - std::set< uint32_t > m_CustomTalkNestHandlersIdList; - std::set< uint32_t > m_CutsceneIdList; - std::set< uint32_t > m_CutSceneIncompQuestIdList; - std::set< uint32_t > m_CutsceneMotionIdList; - std::set< uint32_t > m_CutsceneWorkIndexIdList; - std::set< uint32_t > m_CutScreenImageIdList; - std::set< uint32_t > m_CycleTimeIdList; - std::set< uint32_t > m_DailySupplyItemIdList; - std::set< uint32_t > m_DawnContentIdList; - std::set< uint32_t > m_DawnGrowMemberIdList; - std::set< uint32_t > m_DawnMemberUIParamIdList; - std::set< uint32_t > m_DawnQuestAnnounceIdList; - std::set< uint32_t > m_DawnQuestMemberIdList; - std::set< uint32_t > m_DeepDungeonIdList; - std::set< uint32_t > m_DeepDungeonBanIdList; - std::set< uint32_t > m_DeepDungeonDangerIdList; - std::set< uint32_t > m_DeepDungeonEquipmentIdList; - std::set< uint32_t > m_DeepDungeonFloorEffectUIIdList; - std::set< uint32_t > m_DeepDungeonItemIdList; - std::set< uint32_t > m_DeepDungeonLayerIdList; - std::set< uint32_t > m_DeepDungeonMagicStoneIdList; - std::set< uint32_t > m_DeepDungeonMap5XIdList; - std::set< uint32_t > m_DeepDungeonRoomIdList; - std::set< uint32_t > m_DeepDungeonStatusIdList; - std::set< uint32_t > m_DefaultTalkIdList; - std::set< uint32_t > m_DefaultTalkLipSyncTypeIdList; - std::set< uint32_t > m_DeliveryQuestIdList; - std::set< uint32_t > m_DescriptionIdList; - std::set< uint32_t > m_DescriptionPageIdList; - std::set< uint32_t > m_DescriptionSectionIdList; - std::set< uint32_t > m_DescriptionStringIdList; - std::set< uint32_t > m_DisposalShopIdList; - std::set< uint32_t > m_DisposalShopFilterTypeIdList; - std::set< uint32_t > m_DisposalShopItemIdList; - std::set< uint32_t > m_DpsChallengeIdList; - std::set< uint32_t > m_DpsChallengeOfficerIdList; - std::set< uint32_t > m_DpsChallengeTransientIdList; - std::set< uint32_t > m_DynamicEventIdList; - std::set< uint32_t > m_DynamicEventEnemyTypeIdList; - std::set< uint32_t > m_DynamicEventSingleBattleIdList; - std::set< uint32_t > m_DynamicEventTypeIdList; - std::set< uint32_t > m_EmjAddonIdList; - std::set< uint32_t > m_EmjDaniIdList; - std::set< uint32_t > m_EmoteIdList; - std::set< uint32_t > m_EmoteCategoryIdList; - std::set< uint32_t > m_EmoteModeIdList; - std::set< uint32_t > m_ENpcBaseIdList; - std::set< uint32_t > m_ENpcDressUpIdList; - std::set< uint32_t > m_ENpcDressUpDressIdList; - std::set< uint32_t > m_ENpcResidentIdList; - std::set< uint32_t > m_EObjIdList; - std::set< uint32_t > m_EObjNameIdList; - std::set< uint32_t > m_EquipRaceCategoryIdList; - std::set< uint32_t > m_EquipSlotCategoryIdList; - std::set< uint32_t > m_EurekaAetherItemIdList; - std::set< uint32_t > m_EurekaAethernetIdList; - std::set< uint32_t > m_EurekaGrowDataIdList; - std::set< uint32_t > m_EurekaLogosMixerProbabilityIdList; - std::set< uint32_t > m_EurekaMagiaActionIdList; - std::set< uint32_t > m_EurekaMagiciteItemIdList; - std::set< uint32_t > m_EurekaMagiciteItemTypeIdList; - std::set< uint32_t > m_EurekaSphereElementAdjustIdList; - std::set< uint32_t > m_EventActionIdList; - std::set< uint32_t > m_EventCustomIconTypeIdList; - std::set< uint32_t > m_EventIconPriorityIdList; - std::set< uint32_t > m_EventIconTypeIdList; - std::set< uint32_t > m_EventItemIdList; - std::set< uint32_t > m_EventItemCastTimelineIdList; - std::set< uint32_t > m_EventItemHelpIdList; - std::set< uint32_t > m_EventItemTimelineIdList; - std::set< uint32_t > m_EventSystemDefineIdList; - std::set< uint32_t > m_ExportedGatheringPointIdList; - std::set< uint32_t > m_ExportedSGIdList; - std::set< uint32_t > m_ExVersionIdList; - std::set< uint32_t > m_FateIdList; - std::set< uint32_t > m_FateEventIdList; - std::set< uint32_t > m_FateModeIdList; - std::set< uint32_t > m_FateProgressUIIdList; - std::set< uint32_t > m_FateTokenTypeIdList; - std::set< uint32_t > m_FCActivityIdList; - std::set< uint32_t > m_FCActivityCategoryIdList; - std::set< uint32_t > m_FCAuthorityIdList; - std::set< uint32_t > m_FCAuthorityCategoryIdList; - std::set< uint32_t > m_FCChestNameIdList; - std::set< uint32_t > m_FCCrestSymbolIdList; - std::set< uint32_t > m_FccShopIdList; - std::set< uint32_t > m_FCHierarchyIdList; - std::set< uint32_t > m_FCProfileIdList; - std::set< uint32_t > m_FCRankIdList; - std::set< uint32_t > m_FCReputationIdList; - std::set< uint32_t > m_FCRightsIdList; - std::set< uint32_t > m_FestivalIdList; - std::set< uint32_t > m_FieldMarkerIdList; - std::set< uint32_t > m_FishingRecordTypeIdList; - std::set< uint32_t > m_FishingRecordTypeTransientIdList; - std::set< uint32_t > m_FishingSpotIdList; - std::set< uint32_t > m_FishParameterIdList; - std::set< uint32_t > m_Frontline03IdList; - std::set< uint32_t > m_Frontline04IdList; - std::set< uint32_t > m_FurnitureCatalogCategoryIdList; - std::set< uint32_t > m_FurnitureCatalogItemListIdList; - std::set< uint32_t > m_GardeningSeedIdList; - std::set< uint32_t > m_GatheringConditionIdList; - std::set< uint32_t > m_GatheringExpIdList; - std::set< uint32_t > m_GatheringItemIdList; - std::set< uint32_t > m_GatheringItemLevelConvertTableIdList; - std::set< uint32_t > m_GatheringItemPointIdList; - std::set< uint32_t > m_GatheringLeveIdList; - std::set< uint32_t > m_GatheringLeveRouteIdList; - std::set< uint32_t > m_GatheringLeveRuleIdList; - std::set< uint32_t > m_GatheringNotebookListIdList; - std::set< uint32_t > m_GatheringPointIdList; - std::set< uint32_t > m_GatheringPointBaseIdList; - std::set< uint32_t > m_GatheringPointBonusIdList; - std::set< uint32_t > m_GatheringPointBonusTypeIdList; - std::set< uint32_t > m_GatheringPointNameIdList; - std::set< uint32_t > m_GatheringPointTransientIdList; - std::set< uint32_t > m_GatheringRarePopTimeTableIdList; - std::set< uint32_t > m_GatheringSubCategoryIdList; - std::set< uint32_t > m_GatheringTypeIdList; - std::set< uint32_t > m_GcArmyCaptureTacticsIdList; - std::set< uint32_t > m_GcArmyEquipPresetIdList; - std::set< uint32_t > m_GcArmyExpeditionIdList; - std::set< uint32_t > m_GcArmyExpeditionMemberBonusIdList; - std::set< uint32_t > m_GcArmyExpeditionTypeIdList; - std::set< uint32_t > m_GcArmyMemberGrowIdList; - std::set< uint32_t > m_GcArmyTrainingIdList; - std::set< uint32_t > m_GCRankGridaniaFemaleTextIdList; - std::set< uint32_t > m_GCRankGridaniaMaleTextIdList; - std::set< uint32_t > m_GCRankLimsaFemaleTextIdList; - std::set< uint32_t > m_GCRankLimsaMaleTextIdList; - std::set< uint32_t > m_GCRankUldahFemaleTextIdList; - std::set< uint32_t > m_GCRankUldahMaleTextIdList; - std::set< uint32_t > m_GCScripShopCategoryIdList; - std::set< uint32_t > m_GCScripShopItemIdList; - std::set< uint32_t > m_GCShopIdList; - std::set< uint32_t > m_GCShopItemCategoryIdList; - std::set< uint32_t > m_GCSupplyDutyIdList; - std::set< uint32_t > m_GCSupplyDutyRewardIdList; - std::set< uint32_t > m_GeneralActionIdList; - std::set< uint32_t > m_GFATEIdList; - std::set< uint32_t > m_GFateClimbing2IdList; - std::set< uint32_t > m_GFateClimbing2ContentIdList; - std::set< uint32_t > m_GFateClimbing2TotemTypeIdList; - std::set< uint32_t > m_GFateRideShootingIdList; - std::set< uint32_t > m_GilShopIdList; - std::set< uint32_t > m_GilShopItemIdList; - std::set< uint32_t > m_GimmickAccessorIdList; - std::set< uint32_t > m_GimmickJumpIdList; - std::set< uint32_t > m_GimmickRectIdList; - std::set< uint32_t > m_GoldSaucerArcadeMachineIdList; - std::set< uint32_t > m_GoldSaucerTextDataIdList; - std::set< uint32_t > m_GrandCompanyIdList; - std::set< uint32_t > m_GrandCompanyRankIdList; - std::set< uint32_t > m_GroupPoseFrameIdList; - std::set< uint32_t > m_GroupPoseStampIdList; - std::set< uint32_t > m_GroupPoseStampCategoryIdList; - std::set< uint32_t > m_GuardianDeityIdList; - std::set< uint32_t > m_GuideIdList; - std::set< uint32_t > m_GuidePageIdList; - std::set< uint32_t > m_GuidePageStringIdList; - std::set< uint32_t > m_GuideTitleIdList; - std::set< uint32_t > m_GuildleveAssignmentIdList; - std::set< uint32_t > m_GuildleveAssignmentCategoryIdList; - std::set< uint32_t > m_GuildleveAssignmentTalkIdList; - std::set< uint32_t > m_GuildOrderIdList; - std::set< uint32_t > m_GuildOrderGuideIdList; - std::set< uint32_t > m_GuildOrderOfficerIdList; - std::set< uint32_t > m_HairMakeTypeIdList; - std::set< uint32_t > m_HouseRetainerPoseIdList; - std::set< uint32_t > m_HousingAethernetIdList; - std::set< uint32_t > m_HousingAppealIdList; - std::set< uint32_t > m_HousingEmploymentNpcListIdList; - std::set< uint32_t > m_HousingEmploymentNpcRaceIdList; - std::set< uint32_t > m_HousingExteriorIdList; - std::set< uint32_t > m_HousingFurnitureIdList; - std::set< uint32_t > m_HousingLandSetIdList; - std::set< uint32_t > m_HousingMapMarkerInfoIdList; - std::set< uint32_t > m_HousingMerchantPoseIdList; - std::set< uint32_t > m_HousingPlacementIdList; - std::set< uint32_t > m_HousingPresetIdList; - std::set< uint32_t > m_HousingUnitedExteriorIdList; - std::set< uint32_t > m_HousingYardObjectIdList; - std::set< uint32_t > m_HowToIdList; - std::set< uint32_t > m_HowToCategoryIdList; - std::set< uint32_t > m_HowToPageIdList; - std::set< uint32_t > m_HugeCraftworksNpcIdList; - std::set< uint32_t > m_HugeCraftworksRankIdList; - std::set< uint32_t > m_HWDAnnounceIdList; - std::set< uint32_t > m_HWDCrafterSupplyIdList; - std::set< uint32_t > m_HWDCrafterSupplyRewardIdList; - std::set< uint32_t > m_HWDCrafterSupplyTermIdList; - std::set< uint32_t > m_HWDDevLayerControlIdList; - std::set< uint32_t > m_HWDDevLevelUIIdList; - std::set< uint32_t > m_HWDDevLivelyIdList; - std::set< uint32_t > m_HWDDevProgressIdList; - std::set< uint32_t > m_HWDGathereInspectTermIdList; - std::set< uint32_t > m_HWDGathererInspectionIdList; - std::set< uint32_t > m_HWDGathererInspectionRewardIdList; - std::set< uint32_t > m_HWDInfoBoardArticleIdList; - std::set< uint32_t > m_HWDInfoBoardArticleTransientIdList; - std::set< uint32_t > m_HWDInfoBoardArticleTypeIdList; - std::set< uint32_t > m_HWDLevelChangeDeceptionIdList; - std::set< uint32_t > m_HWDSharedGroupIdList; - std::set< uint32_t > m_HWDSharedGroupControlParamIdList; - std::set< uint32_t > m_IKDContentBonusIdList; - std::set< uint32_t > m_IKDFishParamIdList; - std::set< uint32_t > m_IKDRouteIdList; - std::set< uint32_t > m_IKDRouteTableIdList; - std::set< uint32_t > m_IKDSpotIdList; - std::set< uint32_t > m_InclusionShopIdList; - std::set< uint32_t > m_InclusionShopCategoryIdList; - std::set< uint32_t > m_InclusionShopSeriesIdList; - std::set< uint32_t > m_IndividualWeatherIdList; - std::set< uint32_t > m_InstanceContentIdList; - std::set< uint32_t > m_InstanceContentBuffIdList; - std::set< uint32_t > m_InstanceContentCSBonusIdList; - std::set< uint32_t > m_InstanceContentGuideIdList; - std::set< uint32_t > m_InstanceContentTextDataIdList; - std::set< uint32_t > m_ItemIdList; - std::set< uint32_t > m_ItemActionIdList; - std::set< uint32_t > m_ItemActionTelepoIdList; - std::set< uint32_t > m_ItemBarterCheckIdList; - std::set< uint32_t > m_ItemFoodIdList; - std::set< uint32_t > m_ItemLevelIdList; - std::set< uint32_t > m_ItemSearchCategoryIdList; - std::set< uint32_t > m_ItemSeriesIdList; - std::set< uint32_t > m_ItemSortCategoryIdList; - std::set< uint32_t > m_ItemSpecialBonusIdList; - std::set< uint32_t > m_ItemUICategoryIdList; - std::set< uint32_t > m_JingleIdList; - std::set< uint32_t > m_JobHudManualIdList; - std::set< uint32_t > m_JobHudManualPriorityIdList; - std::set< uint32_t > m_JournalCategoryIdList; - std::set< uint32_t > m_JournalGenreIdList; - std::set< uint32_t > m_JournalSectionIdList; - std::set< uint32_t > m_KnockbackIdList; - std::set< uint32_t > m_LegacyQuestIdList; - std::set< uint32_t > m_LeveIdList; - std::set< uint32_t > m_LeveAssignmentTypeIdList; - std::set< uint32_t > m_LeveClientIdList; - std::set< uint32_t > m_LevelIdList; - std::set< uint32_t > m_LeveRewardItemIdList; - std::set< uint32_t > m_LeveRewardItemGroupIdList; - std::set< uint32_t > m_LeveStringIdList; - std::set< uint32_t > m_LeveVfxIdList; - std::set< uint32_t > m_LobbyIdList; - std::set< uint32_t > m_LogFilterIdList; - std::set< uint32_t > m_LogKindIdList; - std::set< uint32_t > m_LogMessageIdList; - std::set< uint32_t > m_LotteryExchangeShopIdList; - std::set< uint32_t > m_MacroIconIdList; - std::set< uint32_t > m_MacroIconRedirectOldIdList; - std::set< uint32_t > m_MainCommandIdList; - std::set< uint32_t > m_MainCommandCategoryIdList; - std::set< uint32_t > m_ManeuversArmorIdList; - std::set< uint32_t > m_MapIdList; - std::set< uint32_t > m_MapConditionIdList; - std::set< uint32_t > m_MapMarkerIdList; - std::set< uint32_t > m_MapMarkerRegionIdList; - std::set< uint32_t > m_MapSymbolIdList; - std::set< uint32_t > m_MarkerIdList; - std::set< uint32_t > m_MateriaIdList; - std::set< uint32_t > m_MateriaJoinRateIdList; - std::set< uint32_t > m_MateriaJoinRateGatherCraftIdList; - std::set< uint32_t > m_MateriaTomestoneRateIdList; - std::set< uint32_t > m_MiniGameRAIdList; - std::set< uint32_t > m_MinionRaceIdList; - std::set< uint32_t > m_MinionRulesIdList; - std::set< uint32_t > m_MinionSkillTypeIdList; - std::set< uint32_t > m_MobHuntOrderIdList; - std::set< uint32_t > m_MobHuntOrderTypeIdList; - std::set< uint32_t > m_MobHuntRewardIdList; - std::set< uint32_t > m_MobHuntRewardCapIdList; - std::set< uint32_t > m_MobHuntTargetIdList; - std::set< uint32_t > m_ModelCharaIdList; - std::set< uint32_t > m_ModelSkeletonIdList; - std::set< uint32_t > m_ModelStateIdList; - std::set< uint32_t > m_MonsterNoteIdList; - std::set< uint32_t > m_MonsterNoteTargetIdList; - std::set< uint32_t > m_MotionTimelineIdList; - std::set< uint32_t > m_MotionTimelineBlendTableIdList; - std::set< uint32_t > m_MountIdList; - std::set< uint32_t > m_MountActionIdList; - std::set< uint32_t > m_MountCustomizeIdList; - std::set< uint32_t > m_MountFlyingConditionIdList; - std::set< uint32_t > m_MountSpeedIdList; - std::set< uint32_t > m_MountTransientIdList; - std::set< uint32_t > m_MoveTimelineIdList; - std::set< uint32_t > m_MoveVfxIdList; - std::set< uint32_t > m_MovieStaffListIdList; - std::set< uint32_t > m_MovieSubtitleIdList; - std::set< uint32_t > m_MovieSubtitle500IdList; - std::set< uint32_t > m_MovieSubtitleVoyageIdList; - std::set< uint32_t > m_MYCTemporaryItemIdList; - std::set< uint32_t > m_MYCTemporaryItemUICategoryIdList; - std::set< uint32_t > m_MYCWarResultNotebookIdList; - std::set< uint32_t > m_NotebookDivisionIdList; - std::set< uint32_t > m_NotebookDivisionCategoryIdList; - std::set< uint32_t > m_NotoriousMonsterIdList; - std::set< uint32_t > m_NpcEquipIdList; - std::set< uint32_t > m_NpcYellIdList; - std::set< uint32_t > m_OmenIdList; - std::set< uint32_t > m_OnlineStatusIdList; - std::set< uint32_t > m_OpenContentIdList; - std::set< uint32_t > m_OpenContentCandidateNameIdList; - std::set< uint32_t > m_OpeningIdList; - std::set< uint32_t > m_OrchestrionIdList; - std::set< uint32_t > m_OrchestrionCategoryIdList; - std::set< uint32_t > m_OrchestrionPathIdList; - std::set< uint32_t > m_OrchestrionUiparamIdList; - std::set< uint32_t > m_OrnamentIdList; - std::set< uint32_t > m_ParamGrowIdList; - std::set< uint32_t > m_PartyContentIdList; - std::set< uint32_t > m_PartyContentCutsceneIdList; - std::set< uint32_t > m_PartyContentTextDataIdList; - std::set< uint32_t > m_PatchMarkIdList; - std::set< uint32_t > m_PerformIdList; - std::set< uint32_t > m_PerformGroupIdList; - std::set< uint32_t > m_PerformTransientIdList; - std::set< uint32_t > m_PetIdList; - std::set< uint32_t > m_PetActionIdList; - std::set< uint32_t > m_PetMirageIdList; - std::set< uint32_t > m_PhysicsGroupIdList; - std::set< uint32_t > m_PhysicsWindIdList; - std::set< uint32_t > m_PictureIdList; - std::set< uint32_t > m_PlaceNameIdList; - std::set< uint32_t > m_PlantPotFlowerSeedIdList; - std::set< uint32_t > m_PreHandlerIdList; - std::set< uint32_t > m_PresetCameraIdList; - std::set< uint32_t > m_PresetCameraAdjustIdList; - std::set< uint32_t > m_PublicContentIdList; - std::set< uint32_t > m_PublicContentCutsceneIdList; - std::set< uint32_t > m_PublicContentTextDataIdList; - std::set< uint32_t > m_PvPActionIdList; - std::set< uint32_t > m_PvPActionSortIdList; - std::set< uint32_t > m_PvPRankIdList; - std::set< uint32_t > m_PvPSelectTraitIdList; - std::set< uint32_t > m_PvPTraitIdList; - std::set< uint32_t > m_QuestIdList; - std::set< uint32_t > m_QuestAcceptAdditionConditionIdList; - std::set< uint32_t > m_QuestBattleIdList; - std::set< uint32_t > m_QuestChapterIdList; - std::set< uint32_t > m_QuestClassJobRewardIdList; - std::set< uint32_t > m_QuestClassJobSupplyIdList; - std::set< uint32_t > m_QuestDerivedClassIdList; - std::set< uint32_t > m_QuestEffectIdList; - std::set< uint32_t > m_QuestEffectDefineIdList; - std::set< uint32_t > m_QuestRedoIdList; - std::set< uint32_t > m_QuestRedoChapterUIIdList; - std::set< uint32_t > m_QuestRedoChapterUICategoryIdList; - std::set< uint32_t > m_QuestRedoChapterUITabIdList; - std::set< uint32_t > m_QuestRedoIncompChapterIdList; - std::set< uint32_t > m_QuestRepeatFlagIdList; - std::set< uint32_t > m_QuestRewardOtherIdList; - std::set< uint32_t > m_QuickChatIdList; - std::set< uint32_t > m_QuickChatTransientIdList; - std::set< uint32_t > m_RaceIdList; - std::set< uint32_t > m_RacingChocoboItemIdList; - std::set< uint32_t > m_RacingChocoboNameIdList; - std::set< uint32_t > m_RacingChocoboNameCategoryIdList; - std::set< uint32_t > m_RacingChocoboNameInfoIdList; - std::set< uint32_t > m_RacingChocoboParamIdList; - std::set< uint32_t > m_RecastNavimeshIdList; - std::set< uint32_t > m_RecipeIdList; - std::set< uint32_t > m_RecipeLevelTableIdList; - std::set< uint32_t > m_RecipeLookupIdList; - std::set< uint32_t > m_RecipeNotebookListIdList; - std::set< uint32_t > m_RecommendContentsIdList; - std::set< uint32_t > m_RelicIdList; - std::set< uint32_t > m_Relic3IdList; - std::set< uint32_t > m_RelicItemIdList; - std::set< uint32_t > m_RelicNoteIdList; - std::set< uint32_t > m_RelicNoteCategoryIdList; - std::set< uint32_t > m_ResidentIdList; - std::set< uint32_t > m_ResistanceWeaponAdjustIdList; - std::set< uint32_t > m_RetainerFortuneRewardRangeIdList; - std::set< uint32_t > m_RetainerTaskIdList; - std::set< uint32_t > m_RetainerTaskLvRangeIdList; - std::set< uint32_t > m_RetainerTaskNormalIdList; - std::set< uint32_t > m_RetainerTaskParameterIdList; - std::set< uint32_t > m_RetainerTaskRandomIdList; - std::set< uint32_t > m_RideShootingIdList; - std::set< uint32_t > m_RideShootingTargetTypeIdList; - std::set< uint32_t > m_RideShootingTextDataIdList; - std::set< uint32_t > m_RPParameterIdList; - std::set< uint32_t > m_SatisfactionArbitrationIdList; - std::set< uint32_t > m_SatisfactionNpcIdList; - std::set< uint32_t > m_SatisfactionSupplyIdList; - std::set< uint32_t > m_SatisfactionSupplyRewardIdList; - std::set< uint32_t > m_ScenarioTreeIdList; - std::set< uint32_t > m_ScenarioTreeTipsIdList; - std::set< uint32_t > m_ScenarioTreeTipsClassQuestIdList; - std::set< uint32_t > m_ScenarioTypeIdList; - std::set< uint32_t > m_ScreenImageIdList; - std::set< uint32_t > m_SecretRecipeBookIdList; - std::set< uint32_t > m_SkyIsland2MissionIdList; - std::set< uint32_t > m_SkyIsland2MissionDetailIdList; - std::set< uint32_t > m_SkyIsland2MissionTypeIdList; - std::set< uint32_t > m_SkyIsland2RangeTypeIdList; - std::set< uint32_t > m_SnipeTalkIdList; - std::set< uint32_t > m_SnipeTalkNameIdList; - std::set< uint32_t > m_SpearfishingItemIdList; - std::set< uint32_t > m_SpearfishingNotebookIdList; - std::set< uint32_t > m_SpearfishingRecordPageIdList; - std::set< uint32_t > m_SpecialShopIdList; - std::set< uint32_t > m_SpecialShopItemCategoryIdList; - std::set< uint32_t > m_StainIdList; - std::set< uint32_t > m_StainTransientIdList; - std::set< uint32_t > m_StanceChangeIdList; - std::set< uint32_t > m_StatusIdList; - std::set< uint32_t > m_StatusHitEffectIdList; - std::set< uint32_t > m_StatusLoopVFXIdList; - std::set< uint32_t > m_StoryIdList; - std::set< uint32_t > m_SubmarineExplorationIdList; - std::set< uint32_t > m_SubmarineMapIdList; - std::set< uint32_t > m_SubmarinePartIdList; - std::set< uint32_t > m_SubmarineRankIdList; - std::set< uint32_t > m_SwitchTalkIdList; - std::set< uint32_t > m_SwitchTalkVariationIdList; - std::set< uint32_t > m_TerritoryTypeIdList; - std::set< uint32_t > m_TerritoryTypeTransientIdList; - std::set< uint32_t > m_TextCommandIdList; - std::set< uint32_t > m_TextCommandParamIdList; - std::set< uint32_t > m_TitleIdList; - std::set< uint32_t > m_TomestonesIdList; - std::set< uint32_t > m_TomestonesItemIdList; - std::set< uint32_t > m_TopicSelectIdList; - std::set< uint32_t > m_TownIdList; - std::set< uint32_t > m_TraitIdList; - std::set< uint32_t > m_TraitRecastIdList; - std::set< uint32_t > m_TraitTransientIdList; - std::set< uint32_t > m_TransformationIdList; - std::set< uint32_t > m_TreasureIdList; - std::set< uint32_t > m_TreasureHuntRankIdList; - std::set< uint32_t > m_TreasureModelIdList; - std::set< uint32_t > m_TreasureSpotIdList; - std::set< uint32_t > m_TribeIdList; - std::set< uint32_t > m_TripleTriadIdList; - std::set< uint32_t > m_TripleTriadCardIdList; - std::set< uint32_t > m_TripleTriadCardRarityIdList; - std::set< uint32_t > m_TripleTriadCardResidentIdList; - std::set< uint32_t > m_TripleTriadCardTypeIdList; - std::set< uint32_t > m_TripleTriadCompetitionIdList; - std::set< uint32_t > m_TripleTriadResidentIdList; - std::set< uint32_t > m_TripleTriadRuleIdList; - std::set< uint32_t > m_TutorialIdList; - std::set< uint32_t > m_TutorialDPSIdList; - std::set< uint32_t > m_TutorialHealerIdList; - std::set< uint32_t > m_TutorialTankIdList; - std::set< uint32_t > m_UDS_EventIdList; - std::set< uint32_t > m_UDS_PropertyIdList; - std::set< uint32_t > m_UIColorIdList; - std::set< uint32_t > m_VaseFlowerIdList; - std::set< uint32_t > m_VFXIdList; - std::set< uint32_t > m_WarpIdList; - std::set< uint32_t > m_WarpConditionIdList; - std::set< uint32_t > m_WarpLogicIdList; - std::set< uint32_t > m_WeaponTimelineIdList; - std::set< uint32_t > m_WeatherIdList; - std::set< uint32_t > m_WeatherGroupIdList; - std::set< uint32_t > m_WeatherRateIdList; - std::set< uint32_t > m_WeatherReportReplaceIdList; - std::set< uint32_t > m_WebGuidanceIdList; - std::set< uint32_t > m_WebURLIdList; - std::set< uint32_t > m_WeddingBGMIdList; - std::set< uint32_t > m_WeeklyBingoOrderDataIdList; - std::set< uint32_t > m_WeeklyBingoRewardDataIdList; - std::set< uint32_t > m_WeeklyBingoTextIdList; - std::set< uint32_t > m_WeeklyLotBonusIdList; - std::set< uint32_t > m_WorldIdList; - std::set< uint32_t > m_WorldDCGroupTypeIdList; - std::set< uint32_t > m_YardCatalogCategoryIdList; - std::set< uint32_t > m_YardCatalogItemListIdList; - std::set< uint32_t > m_YKWIdList; - std::set< uint32_t > m_ZoneSharedGroupIdList; - - -const std::set< uint32_t >& getAchievementIdList() -{ - if( m_AchievementIdList.size() == 0 ) - loadIdList( m_AchievementDat, m_AchievementIdList ); - return m_AchievementIdList; -} -const std::set< uint32_t >& getAchievementCategoryIdList() -{ - if( m_AchievementCategoryIdList.size() == 0 ) - loadIdList( m_AchievementCategoryDat, m_AchievementCategoryIdList ); - return m_AchievementCategoryIdList; -} -const std::set< uint32_t >& getAchievementHideConditionIdList() -{ - if( m_AchievementHideConditionIdList.size() == 0 ) - loadIdList( m_AchievementHideConditionDat, m_AchievementHideConditionIdList ); - return m_AchievementHideConditionIdList; -} -const std::set< uint32_t >& getAchievementKindIdList() -{ - if( m_AchievementKindIdList.size() == 0 ) - loadIdList( m_AchievementKindDat, m_AchievementKindIdList ); - return m_AchievementKindIdList; -} -const std::set< uint32_t >& getAchievementTargetIdList() -{ - if( m_AchievementTargetIdList.size() == 0 ) - loadIdList( m_AchievementTargetDat, m_AchievementTargetIdList ); - return m_AchievementTargetIdList; -} -const std::set< uint32_t >& getActionIdList() -{ - if( m_ActionIdList.size() == 0 ) - loadIdList( m_ActionDat, m_ActionIdList ); - return m_ActionIdList; -} -const std::set< uint32_t >& getActionCastTimelineIdList() -{ - if( m_ActionCastTimelineIdList.size() == 0 ) - loadIdList( m_ActionCastTimelineDat, m_ActionCastTimelineIdList ); - return m_ActionCastTimelineIdList; -} -const std::set< uint32_t >& getActionCastVFXIdList() -{ - if( m_ActionCastVFXIdList.size() == 0 ) - loadIdList( m_ActionCastVFXDat, m_ActionCastVFXIdList ); - return m_ActionCastVFXIdList; -} -const std::set< uint32_t >& getActionCategoryIdList() -{ - if( m_ActionCategoryIdList.size() == 0 ) - loadIdList( m_ActionCategoryDat, m_ActionCategoryIdList ); - return m_ActionCategoryIdList; -} -const std::set< uint32_t >& getActionComboRouteIdList() -{ - if( m_ActionComboRouteIdList.size() == 0 ) - loadIdList( m_ActionComboRouteDat, m_ActionComboRouteIdList ); - return m_ActionComboRouteIdList; -} -const std::set< uint32_t >& getActionIndirectionIdList() -{ - if( m_ActionIndirectionIdList.size() == 0 ) - loadIdList( m_ActionIndirectionDat, m_ActionIndirectionIdList ); - return m_ActionIndirectionIdList; -} -const std::set< uint32_t >& getActionParamIdList() -{ - if( m_ActionParamIdList.size() == 0 ) - loadIdList( m_ActionParamDat, m_ActionParamIdList ); - return m_ActionParamIdList; -} -const std::set< uint32_t >& getActionProcStatusIdList() -{ - if( m_ActionProcStatusIdList.size() == 0 ) - loadIdList( m_ActionProcStatusDat, m_ActionProcStatusIdList ); - return m_ActionProcStatusIdList; -} -const std::set< uint32_t >& getActionTimelineIdList() -{ - if( m_ActionTimelineIdList.size() == 0 ) - loadIdList( m_ActionTimelineDat, m_ActionTimelineIdList ); - return m_ActionTimelineIdList; -} -const std::set< uint32_t >& getActionTimelineMoveIdList() -{ - if( m_ActionTimelineMoveIdList.size() == 0 ) - loadIdList( m_ActionTimelineMoveDat, m_ActionTimelineMoveIdList ); - return m_ActionTimelineMoveIdList; -} -const std::set< uint32_t >& getActionTimelineReplaceIdList() -{ - if( m_ActionTimelineReplaceIdList.size() == 0 ) - loadIdList( m_ActionTimelineReplaceDat, m_ActionTimelineReplaceIdList ); - return m_ActionTimelineReplaceIdList; -} -const std::set< uint32_t >& getActionTransientIdList() -{ - if( m_ActionTransientIdList.size() == 0 ) - loadIdList( m_ActionTransientDat, m_ActionTransientIdList ); - return m_ActionTransientIdList; -} -const std::set< uint32_t >& getActivityFeedButtonsIdList() -{ - if( m_ActivityFeedButtonsIdList.size() == 0 ) - loadIdList( m_ActivityFeedButtonsDat, m_ActivityFeedButtonsIdList ); - return m_ActivityFeedButtonsIdList; -} -const std::set< uint32_t >& getActivityFeedCaptionsIdList() -{ - if( m_ActivityFeedCaptionsIdList.size() == 0 ) - loadIdList( m_ActivityFeedCaptionsDat, m_ActivityFeedCaptionsIdList ); - return m_ActivityFeedCaptionsIdList; -} -const std::set< uint32_t >& getActivityFeedGroupCaptionsIdList() -{ - if( m_ActivityFeedGroupCaptionsIdList.size() == 0 ) - loadIdList( m_ActivityFeedGroupCaptionsDat, m_ActivityFeedGroupCaptionsIdList ); - return m_ActivityFeedGroupCaptionsIdList; -} -const std::set< uint32_t >& getActivityFeedImagesIdList() -{ - if( m_ActivityFeedImagesIdList.size() == 0 ) - loadIdList( m_ActivityFeedImagesDat, m_ActivityFeedImagesIdList ); - return m_ActivityFeedImagesIdList; -} -const std::set< uint32_t >& getAddonIdList() -{ - if( m_AddonIdList.size() == 0 ) - loadIdList( m_AddonDat, m_AddonIdList ); - return m_AddonIdList; -} -const std::set< uint32_t >& getAdventureIdList() -{ - if( m_AdventureIdList.size() == 0 ) - loadIdList( m_AdventureDat, m_AdventureIdList ); - return m_AdventureIdList; -} -const std::set< uint32_t >& getAdventureExPhaseIdList() -{ - if( m_AdventureExPhaseIdList.size() == 0 ) - loadIdList( m_AdventureExPhaseDat, m_AdventureExPhaseIdList ); - return m_AdventureExPhaseIdList; -} -const std::set< uint32_t >& getAetherCurrentIdList() -{ - if( m_AetherCurrentIdList.size() == 0 ) - loadIdList( m_AetherCurrentDat, m_AetherCurrentIdList ); - return m_AetherCurrentIdList; -} -const std::set< uint32_t >& getAetherCurrentCompFlgSetIdList() -{ - if( m_AetherCurrentCompFlgSetIdList.size() == 0 ) - loadIdList( m_AetherCurrentCompFlgSetDat, m_AetherCurrentCompFlgSetIdList ); - return m_AetherCurrentCompFlgSetIdList; -} -const std::set< uint32_t >& getAetherialWheelIdList() -{ - if( m_AetherialWheelIdList.size() == 0 ) - loadIdList( m_AetherialWheelDat, m_AetherialWheelIdList ); - return m_AetherialWheelIdList; -} -const std::set< uint32_t >& getAetheryteIdList() -{ - if( m_AetheryteIdList.size() == 0 ) - loadIdList( m_AetheryteDat, m_AetheryteIdList ); - return m_AetheryteIdList; -} -const std::set< uint32_t >& getAetheryteSystemDefineIdList() -{ - if( m_AetheryteSystemDefineIdList.size() == 0 ) - loadIdList( m_AetheryteSystemDefineDat, m_AetheryteSystemDefineIdList ); - return m_AetheryteSystemDefineIdList; -} -const std::set< uint32_t >& getAirshipExplorationLevelIdList() -{ - if( m_AirshipExplorationLevelIdList.size() == 0 ) - loadIdList( m_AirshipExplorationLevelDat, m_AirshipExplorationLevelIdList ); - return m_AirshipExplorationLevelIdList; -} -const std::set< uint32_t >& getAirshipExplorationLogIdList() -{ - if( m_AirshipExplorationLogIdList.size() == 0 ) - loadIdList( m_AirshipExplorationLogDat, m_AirshipExplorationLogIdList ); - return m_AirshipExplorationLogIdList; -} -const std::set< uint32_t >& getAirshipExplorationParamTypeIdList() -{ - if( m_AirshipExplorationParamTypeIdList.size() == 0 ) - loadIdList( m_AirshipExplorationParamTypeDat, m_AirshipExplorationParamTypeIdList ); - return m_AirshipExplorationParamTypeIdList; -} -const std::set< uint32_t >& getAirshipExplorationPartIdList() -{ - if( m_AirshipExplorationPartIdList.size() == 0 ) - loadIdList( m_AirshipExplorationPartDat, m_AirshipExplorationPartIdList ); - return m_AirshipExplorationPartIdList; -} -const std::set< uint32_t >& getAirshipExplorationPointIdList() -{ - if( m_AirshipExplorationPointIdList.size() == 0 ) - loadIdList( m_AirshipExplorationPointDat, m_AirshipExplorationPointIdList ); - return m_AirshipExplorationPointIdList; -} -const std::set< uint32_t >& getAnimationLODIdList() -{ - if( m_AnimationLODIdList.size() == 0 ) - loadIdList( m_AnimationLODDat, m_AnimationLODIdList ); - return m_AnimationLODIdList; -} -const std::set< uint32_t >& getAnimaWeapon5IdList() -{ - if( m_AnimaWeapon5IdList.size() == 0 ) - loadIdList( m_AnimaWeapon5Dat, m_AnimaWeapon5IdList ); - return m_AnimaWeapon5IdList; -} -const std::set< uint32_t >& getAnimaWeapon5ParamIdList() -{ - if( m_AnimaWeapon5ParamIdList.size() == 0 ) - loadIdList( m_AnimaWeapon5ParamDat, m_AnimaWeapon5ParamIdList ); - return m_AnimaWeapon5ParamIdList; -} -const std::set< uint32_t >& getAnimaWeapon5PatternGroupIdList() -{ - if( m_AnimaWeapon5PatternGroupIdList.size() == 0 ) - loadIdList( m_AnimaWeapon5PatternGroupDat, m_AnimaWeapon5PatternGroupIdList ); - return m_AnimaWeapon5PatternGroupIdList; -} -const std::set< uint32_t >& getAnimaWeapon5SpiritTalkIdList() -{ - if( m_AnimaWeapon5SpiritTalkIdList.size() == 0 ) - loadIdList( m_AnimaWeapon5SpiritTalkDat, m_AnimaWeapon5SpiritTalkIdList ); - return m_AnimaWeapon5SpiritTalkIdList; -} -const std::set< uint32_t >& getAnimaWeapon5SpiritTalkParamIdList() -{ - if( m_AnimaWeapon5SpiritTalkParamIdList.size() == 0 ) - loadIdList( m_AnimaWeapon5SpiritTalkParamDat, m_AnimaWeapon5SpiritTalkParamIdList ); - return m_AnimaWeapon5SpiritTalkParamIdList; -} -const std::set< uint32_t >& getAnimaWeapon5TradeItemIdList() -{ - if( m_AnimaWeapon5TradeItemIdList.size() == 0 ) - loadIdList( m_AnimaWeapon5TradeItemDat, m_AnimaWeapon5TradeItemIdList ); - return m_AnimaWeapon5TradeItemIdList; -} -const std::set< uint32_t >& getAnimaWeaponFUITalkIdList() -{ - if( m_AnimaWeaponFUITalkIdList.size() == 0 ) - loadIdList( m_AnimaWeaponFUITalkDat, m_AnimaWeaponFUITalkIdList ); - return m_AnimaWeaponFUITalkIdList; -} -const std::set< uint32_t >& getAnimaWeaponFUITalkParamIdList() -{ - if( m_AnimaWeaponFUITalkParamIdList.size() == 0 ) - loadIdList( m_AnimaWeaponFUITalkParamDat, m_AnimaWeaponFUITalkParamIdList ); - return m_AnimaWeaponFUITalkParamIdList; -} -const std::set< uint32_t >& getAnimaWeaponIconIdList() -{ - if( m_AnimaWeaponIconIdList.size() == 0 ) - loadIdList( m_AnimaWeaponIconDat, m_AnimaWeaponIconIdList ); - return m_AnimaWeaponIconIdList; -} -const std::set< uint32_t >& getAnimaWeaponItemIdList() -{ - if( m_AnimaWeaponItemIdList.size() == 0 ) - loadIdList( m_AnimaWeaponItemDat, m_AnimaWeaponItemIdList ); - return m_AnimaWeaponItemIdList; -} -const std::set< uint32_t >& getAozActionIdList() -{ - if( m_AozActionIdList.size() == 0 ) - loadIdList( m_AozActionDat, m_AozActionIdList ); - return m_AozActionIdList; -} -const std::set< uint32_t >& getAozActionTransientIdList() -{ - if( m_AozActionTransientIdList.size() == 0 ) - loadIdList( m_AozActionTransientDat, m_AozActionTransientIdList ); - return m_AozActionTransientIdList; -} -const std::set< uint32_t >& getAOZArrangementIdList() -{ - if( m_AOZArrangementIdList.size() == 0 ) - loadIdList( m_AOZArrangementDat, m_AOZArrangementIdList ); - return m_AOZArrangementIdList; -} -const std::set< uint32_t >& getAOZBossIdList() -{ - if( m_AOZBossIdList.size() == 0 ) - loadIdList( m_AOZBossDat, m_AOZBossIdList ); - return m_AOZBossIdList; -} -const std::set< uint32_t >& getAOZContentIdList() -{ - if( m_AOZContentIdList.size() == 0 ) - loadIdList( m_AOZContentDat, m_AOZContentIdList ); - return m_AOZContentIdList; -} -const std::set< uint32_t >& getAOZContentBriefingBNpcIdList() -{ - if( m_AOZContentBriefingBNpcIdList.size() == 0 ) - loadIdList( m_AOZContentBriefingBNpcDat, m_AOZContentBriefingBNpcIdList ); - return m_AOZContentBriefingBNpcIdList; -} -const std::set< uint32_t >& getAOZReportIdList() -{ - if( m_AOZReportIdList.size() == 0 ) - loadIdList( m_AOZReportDat, m_AOZReportIdList ); - return m_AOZReportIdList; -} -const std::set< uint32_t >& getAOZScoreIdList() -{ - if( m_AOZScoreIdList.size() == 0 ) - loadIdList( m_AOZScoreDat, m_AOZScoreIdList ); - return m_AOZScoreIdList; -} -const std::set< uint32_t >& getAquariumFishIdList() -{ - if( m_AquariumFishIdList.size() == 0 ) - loadIdList( m_AquariumFishDat, m_AquariumFishIdList ); - return m_AquariumFishIdList; -} -const std::set< uint32_t >& getAquariumWaterIdList() -{ - if( m_AquariumWaterIdList.size() == 0 ) - loadIdList( m_AquariumWaterDat, m_AquariumWaterIdList ); - return m_AquariumWaterIdList; -} -const std::set< uint32_t >& getArrayEventHandlerIdList() -{ - if( m_ArrayEventHandlerIdList.size() == 0 ) - loadIdList( m_ArrayEventHandlerDat, m_ArrayEventHandlerIdList ); - return m_ArrayEventHandlerIdList; -} -const std::set< uint32_t >& getAttackTypeIdList() -{ - if( m_AttackTypeIdList.size() == 0 ) - loadIdList( m_AttackTypeDat, m_AttackTypeIdList ); - return m_AttackTypeIdList; -} -const std::set< uint32_t >& getBacklightColorIdList() -{ - if( m_BacklightColorIdList.size() == 0 ) - loadIdList( m_BacklightColorDat, m_BacklightColorIdList ); - return m_BacklightColorIdList; -} -const std::set< uint32_t >& getBallistaIdList() -{ - if( m_BallistaIdList.size() == 0 ) - loadIdList( m_BallistaDat, m_BallistaIdList ); - return m_BallistaIdList; -} -const std::set< uint32_t >& getBalloonIdList() -{ - if( m_BalloonIdList.size() == 0 ) - loadIdList( m_BalloonDat, m_BalloonIdList ); - return m_BalloonIdList; -} -const std::set< uint32_t >& getBaseParamIdList() -{ - if( m_BaseParamIdList.size() == 0 ) - loadIdList( m_BaseParamDat, m_BaseParamIdList ); - return m_BaseParamIdList; -} -const std::set< uint32_t >& getBattleLeveIdList() -{ - if( m_BattleLeveIdList.size() == 0 ) - loadIdList( m_BattleLeveDat, m_BattleLeveIdList ); - return m_BattleLeveIdList; -} -const std::set< uint32_t >& getBattleLeveRuleIdList() -{ - if( m_BattleLeveRuleIdList.size() == 0 ) - loadIdList( m_BattleLeveRuleDat, m_BattleLeveRuleIdList ); - return m_BattleLeveRuleIdList; -} -const std::set< uint32_t >& getBeastRankBonusIdList() -{ - if( m_BeastRankBonusIdList.size() == 0 ) - loadIdList( m_BeastRankBonusDat, m_BeastRankBonusIdList ); - return m_BeastRankBonusIdList; -} -const std::set< uint32_t >& getBeastReputationRankIdList() -{ - if( m_BeastReputationRankIdList.size() == 0 ) - loadIdList( m_BeastReputationRankDat, m_BeastReputationRankIdList ); - return m_BeastReputationRankIdList; -} -const std::set< uint32_t >& getBeastTribeIdList() -{ - if( m_BeastTribeIdList.size() == 0 ) - loadIdList( m_BeastTribeDat, m_BeastTribeIdList ); - return m_BeastTribeIdList; -} -const std::set< uint32_t >& getBehaviorIdList() -{ - if( m_BehaviorIdList.size() == 0 ) - loadIdList( m_BehaviorDat, m_BehaviorIdList ); - return m_BehaviorIdList; -} -const std::set< uint32_t >& getBehaviorPathIdList() -{ - if( m_BehaviorPathIdList.size() == 0 ) - loadIdList( m_BehaviorPathDat, m_BehaviorPathIdList ); - return m_BehaviorPathIdList; -} -const std::set< uint32_t >& getBenchmarkOverrideEquipmentIdList() -{ - if( m_BenchmarkOverrideEquipmentIdList.size() == 0 ) - loadIdList( m_BenchmarkOverrideEquipmentDat, m_BenchmarkOverrideEquipmentIdList ); - return m_BenchmarkOverrideEquipmentIdList; -} -const std::set< uint32_t >& getBGMIdList() -{ - if( m_BGMIdList.size() == 0 ) - loadIdList( m_BGMDat, m_BGMIdList ); - return m_BGMIdList; -} -const std::set< uint32_t >& getBGMFadeIdList() -{ - if( m_BGMFadeIdList.size() == 0 ) - loadIdList( m_BGMFadeDat, m_BGMFadeIdList ); - return m_BGMFadeIdList; -} -const std::set< uint32_t >& getBGMFadeTypeIdList() -{ - if( m_BGMFadeTypeIdList.size() == 0 ) - loadIdList( m_BGMFadeTypeDat, m_BGMFadeTypeIdList ); - return m_BGMFadeTypeIdList; -} -const std::set< uint32_t >& getBGMSceneIdList() -{ - if( m_BGMSceneIdList.size() == 0 ) - loadIdList( m_BGMSceneDat, m_BGMSceneIdList ); - return m_BGMSceneIdList; -} -const std::set< uint32_t >& getBGMSituationIdList() -{ - if( m_BGMSituationIdList.size() == 0 ) - loadIdList( m_BGMSituationDat, m_BGMSituationIdList ); - return m_BGMSituationIdList; -} -const std::set< uint32_t >& getBGMSwitchIdList() -{ - if( m_BGMSwitchIdList.size() == 0 ) - loadIdList( m_BGMSwitchDat, m_BGMSwitchIdList ); - return m_BGMSwitchIdList; -} -const std::set< uint32_t >& getBGMSystemDefineIdList() -{ - if( m_BGMSystemDefineIdList.size() == 0 ) - loadIdList( m_BGMSystemDefineDat, m_BGMSystemDefineIdList ); - return m_BGMSystemDefineIdList; -} -const std::set< uint32_t >& getBNpcAnnounceIconIdList() -{ - if( m_BNpcAnnounceIconIdList.size() == 0 ) - loadIdList( m_BNpcAnnounceIconDat, m_BNpcAnnounceIconIdList ); - return m_BNpcAnnounceIconIdList; -} -const std::set< uint32_t >& getBNpcBaseIdList() -{ - if( m_BNpcBaseIdList.size() == 0 ) - loadIdList( m_BNpcBaseDat, m_BNpcBaseIdList ); - return m_BNpcBaseIdList; -} -const std::set< uint32_t >& getBNpcCustomizeIdList() -{ - if( m_BNpcCustomizeIdList.size() == 0 ) - loadIdList( m_BNpcCustomizeDat, m_BNpcCustomizeIdList ); - return m_BNpcCustomizeIdList; -} -const std::set< uint32_t >& getBNpcNameIdList() -{ - if( m_BNpcNameIdList.size() == 0 ) - loadIdList( m_BNpcNameDat, m_BNpcNameIdList ); - return m_BNpcNameIdList; -} -const std::set< uint32_t >& getBNpcPartsIdList() -{ - if( m_BNpcPartsIdList.size() == 0 ) - loadIdList( m_BNpcPartsDat, m_BNpcPartsIdList ); - return m_BNpcPartsIdList; -} -const std::set< uint32_t >& getBNpcStateIdList() -{ - if( m_BNpcStateIdList.size() == 0 ) - loadIdList( m_BNpcStateDat, m_BNpcStateIdList ); - return m_BNpcStateIdList; -} -const std::set< uint32_t >& getBuddyIdList() -{ - if( m_BuddyIdList.size() == 0 ) - loadIdList( m_BuddyDat, m_BuddyIdList ); - return m_BuddyIdList; -} -const std::set< uint32_t >& getBuddyActionIdList() -{ - if( m_BuddyActionIdList.size() == 0 ) - loadIdList( m_BuddyActionDat, m_BuddyActionIdList ); - return m_BuddyActionIdList; -} -const std::set< uint32_t >& getBuddyEquipIdList() -{ - if( m_BuddyEquipIdList.size() == 0 ) - loadIdList( m_BuddyEquipDat, m_BuddyEquipIdList ); - return m_BuddyEquipIdList; -} -const std::set< uint32_t >& getBuddyItemIdList() -{ - if( m_BuddyItemIdList.size() == 0 ) - loadIdList( m_BuddyItemDat, m_BuddyItemIdList ); - return m_BuddyItemIdList; -} -const std::set< uint32_t >& getBuddyRankIdList() -{ - if( m_BuddyRankIdList.size() == 0 ) - loadIdList( m_BuddyRankDat, m_BuddyRankIdList ); - return m_BuddyRankIdList; -} -const std::set< uint32_t >& getBuddySkillIdList() -{ - if( m_BuddySkillIdList.size() == 0 ) - loadIdList( m_BuddySkillDat, m_BuddySkillIdList ); - return m_BuddySkillIdList; -} -const std::set< uint32_t >& getCabinetIdList() -{ - if( m_CabinetIdList.size() == 0 ) - loadIdList( m_CabinetDat, m_CabinetIdList ); - return m_CabinetIdList; -} -const std::set< uint32_t >& getCabinetCategoryIdList() -{ - if( m_CabinetCategoryIdList.size() == 0 ) - loadIdList( m_CabinetCategoryDat, m_CabinetCategoryIdList ); - return m_CabinetCategoryIdList; -} -const std::set< uint32_t >& getCalendarIdList() -{ - if( m_CalendarIdList.size() == 0 ) - loadIdList( m_CalendarDat, m_CalendarIdList ); - return m_CalendarIdList; -} -const std::set< uint32_t >& getCarryIdList() -{ - if( m_CarryIdList.size() == 0 ) - loadIdList( m_CarryDat, m_CarryIdList ); - return m_CarryIdList; -} -const std::set< uint32_t >& getChannelingIdList() -{ - if( m_ChannelingIdList.size() == 0 ) - loadIdList( m_ChannelingDat, m_ChannelingIdList ); - return m_ChannelingIdList; -} -const std::set< uint32_t >& getCharaMakeClassEquipIdList() -{ - if( m_CharaMakeClassEquipIdList.size() == 0 ) - loadIdList( m_CharaMakeClassEquipDat, m_CharaMakeClassEquipIdList ); - return m_CharaMakeClassEquipIdList; -} -const std::set< uint32_t >& getCharaMakeCustomizeIdList() -{ - if( m_CharaMakeCustomizeIdList.size() == 0 ) - loadIdList( m_CharaMakeCustomizeDat, m_CharaMakeCustomizeIdList ); - return m_CharaMakeCustomizeIdList; -} -const std::set< uint32_t >& getCharaMakeNameIdList() -{ - if( m_CharaMakeNameIdList.size() == 0 ) - loadIdList( m_CharaMakeNameDat, m_CharaMakeNameIdList ); - return m_CharaMakeNameIdList; -} -const std::set< uint32_t >& getCharaMakeTypeIdList() -{ - if( m_CharaMakeTypeIdList.size() == 0 ) - loadIdList( m_CharaMakeTypeDat, m_CharaMakeTypeIdList ); - return m_CharaMakeTypeIdList; -} -const std::set< uint32_t >& getChocoboRaceIdList() -{ - if( m_ChocoboRaceIdList.size() == 0 ) - loadIdList( m_ChocoboRaceDat, m_ChocoboRaceIdList ); - return m_ChocoboRaceIdList; -} -const std::set< uint32_t >& getChocoboRaceAbilityIdList() -{ - if( m_ChocoboRaceAbilityIdList.size() == 0 ) - loadIdList( m_ChocoboRaceAbilityDat, m_ChocoboRaceAbilityIdList ); - return m_ChocoboRaceAbilityIdList; -} -const std::set< uint32_t >& getChocoboRaceAbilityTypeIdList() -{ - if( m_ChocoboRaceAbilityTypeIdList.size() == 0 ) - loadIdList( m_ChocoboRaceAbilityTypeDat, m_ChocoboRaceAbilityTypeIdList ); - return m_ChocoboRaceAbilityTypeIdList; -} -const std::set< uint32_t >& getChocoboRaceItemIdList() -{ - if( m_ChocoboRaceItemIdList.size() == 0 ) - loadIdList( m_ChocoboRaceItemDat, m_ChocoboRaceItemIdList ); - return m_ChocoboRaceItemIdList; -} -const std::set< uint32_t >& getChocoboRaceRankIdList() -{ - if( m_ChocoboRaceRankIdList.size() == 0 ) - loadIdList( m_ChocoboRaceRankDat, m_ChocoboRaceRankIdList ); - return m_ChocoboRaceRankIdList; -} -const std::set< uint32_t >& getChocoboRaceStatusIdList() -{ - if( m_ChocoboRaceStatusIdList.size() == 0 ) - loadIdList( m_ChocoboRaceStatusDat, m_ChocoboRaceStatusIdList ); - return m_ChocoboRaceStatusIdList; -} -const std::set< uint32_t >& getChocoboRaceTerritoryIdList() -{ - if( m_ChocoboRaceTerritoryIdList.size() == 0 ) - loadIdList( m_ChocoboRaceTerritoryDat, m_ChocoboRaceTerritoryIdList ); - return m_ChocoboRaceTerritoryIdList; -} -const std::set< uint32_t >& getChocoboRaceTutorialIdList() -{ - if( m_ChocoboRaceTutorialIdList.size() == 0 ) - loadIdList( m_ChocoboRaceTutorialDat, m_ChocoboRaceTutorialIdList ); - return m_ChocoboRaceTutorialIdList; -} -const std::set< uint32_t >& getChocoboRaceWeatherIdList() -{ - if( m_ChocoboRaceWeatherIdList.size() == 0 ) - loadIdList( m_ChocoboRaceWeatherDat, m_ChocoboRaceWeatherIdList ); - return m_ChocoboRaceWeatherIdList; -} -const std::set< uint32_t >& getChocoboTaxiIdList() -{ - if( m_ChocoboTaxiIdList.size() == 0 ) - loadIdList( m_ChocoboTaxiDat, m_ChocoboTaxiIdList ); - return m_ChocoboTaxiIdList; -} -const std::set< uint32_t >& getChocoboTaxiStandIdList() -{ - if( m_ChocoboTaxiStandIdList.size() == 0 ) - loadIdList( m_ChocoboTaxiStandDat, m_ChocoboTaxiStandIdList ); - return m_ChocoboTaxiStandIdList; -} -const std::set< uint32_t >& getCircleActivityIdList() -{ - if( m_CircleActivityIdList.size() == 0 ) - loadIdList( m_CircleActivityDat, m_CircleActivityIdList ); - return m_CircleActivityIdList; -} -const std::set< uint32_t >& getClassJobIdList() -{ - if( m_ClassJobIdList.size() == 0 ) - loadIdList( m_ClassJobDat, m_ClassJobIdList ); - return m_ClassJobIdList; -} -const std::set< uint32_t >& getClassJobCategoryIdList() -{ - if( m_ClassJobCategoryIdList.size() == 0 ) - loadIdList( m_ClassJobCategoryDat, m_ClassJobCategoryIdList ); - return m_ClassJobCategoryIdList; -} -const std::set< uint32_t >& getCollectablesShopIdList() -{ - if( m_CollectablesShopIdList.size() == 0 ) - loadIdList( m_CollectablesShopDat, m_CollectablesShopIdList ); - return m_CollectablesShopIdList; -} -const std::set< uint32_t >& getCollectablesShopItemIdList() -{ - if( m_CollectablesShopItemIdList.size() == 0 ) - loadIdList( m_CollectablesShopItemDat, m_CollectablesShopItemIdList ); - return m_CollectablesShopItemIdList; -} -const std::set< uint32_t >& getCollectablesShopItemGroupIdList() -{ - if( m_CollectablesShopItemGroupIdList.size() == 0 ) - loadIdList( m_CollectablesShopItemGroupDat, m_CollectablesShopItemGroupIdList ); - return m_CollectablesShopItemGroupIdList; -} -const std::set< uint32_t >& getCollectablesShopRefineIdList() -{ - if( m_CollectablesShopRefineIdList.size() == 0 ) - loadIdList( m_CollectablesShopRefineDat, m_CollectablesShopRefineIdList ); - return m_CollectablesShopRefineIdList; -} -const std::set< uint32_t >& getCollectablesShopRewardItemIdList() -{ - if( m_CollectablesShopRewardItemIdList.size() == 0 ) - loadIdList( m_CollectablesShopRewardItemDat, m_CollectablesShopRewardItemIdList ); - return m_CollectablesShopRewardItemIdList; -} -const std::set< uint32_t >& getCollectablesShopRewardScripIdList() -{ - if( m_CollectablesShopRewardScripIdList.size() == 0 ) - loadIdList( m_CollectablesShopRewardScripDat, m_CollectablesShopRewardScripIdList ); - return m_CollectablesShopRewardScripIdList; -} -const std::set< uint32_t >& getCompanionIdList() -{ - if( m_CompanionIdList.size() == 0 ) - loadIdList( m_CompanionDat, m_CompanionIdList ); - return m_CompanionIdList; -} -const std::set< uint32_t >& getCompanionMoveIdList() -{ - if( m_CompanionMoveIdList.size() == 0 ) - loadIdList( m_CompanionMoveDat, m_CompanionMoveIdList ); - return m_CompanionMoveIdList; -} -const std::set< uint32_t >& getCompanionTransientIdList() -{ - if( m_CompanionTransientIdList.size() == 0 ) - loadIdList( m_CompanionTransientDat, m_CompanionTransientIdList ); - return m_CompanionTransientIdList; -} -const std::set< uint32_t >& getCompanyActionIdList() -{ - if( m_CompanyActionIdList.size() == 0 ) - loadIdList( m_CompanyActionDat, m_CompanyActionIdList ); - return m_CompanyActionIdList; -} -const std::set< uint32_t >& getCompanyCraftDraftIdList() -{ - if( m_CompanyCraftDraftIdList.size() == 0 ) - loadIdList( m_CompanyCraftDraftDat, m_CompanyCraftDraftIdList ); - return m_CompanyCraftDraftIdList; -} -const std::set< uint32_t >& getCompanyCraftDraftCategoryIdList() -{ - if( m_CompanyCraftDraftCategoryIdList.size() == 0 ) - loadIdList( m_CompanyCraftDraftCategoryDat, m_CompanyCraftDraftCategoryIdList ); - return m_CompanyCraftDraftCategoryIdList; -} -const std::set< uint32_t >& getCompanyCraftManufactoryStateIdList() -{ - if( m_CompanyCraftManufactoryStateIdList.size() == 0 ) - loadIdList( m_CompanyCraftManufactoryStateDat, m_CompanyCraftManufactoryStateIdList ); - return m_CompanyCraftManufactoryStateIdList; -} -const std::set< uint32_t >& getCompanyCraftPartIdList() -{ - if( m_CompanyCraftPartIdList.size() == 0 ) - loadIdList( m_CompanyCraftPartDat, m_CompanyCraftPartIdList ); - return m_CompanyCraftPartIdList; -} -const std::set< uint32_t >& getCompanyCraftProcessIdList() -{ - if( m_CompanyCraftProcessIdList.size() == 0 ) - loadIdList( m_CompanyCraftProcessDat, m_CompanyCraftProcessIdList ); - return m_CompanyCraftProcessIdList; -} -const std::set< uint32_t >& getCompanyCraftSequenceIdList() -{ - if( m_CompanyCraftSequenceIdList.size() == 0 ) - loadIdList( m_CompanyCraftSequenceDat, m_CompanyCraftSequenceIdList ); - return m_CompanyCraftSequenceIdList; -} -const std::set< uint32_t >& getCompanyCraftSupplyItemIdList() -{ - if( m_CompanyCraftSupplyItemIdList.size() == 0 ) - loadIdList( m_CompanyCraftSupplyItemDat, m_CompanyCraftSupplyItemIdList ); - return m_CompanyCraftSupplyItemIdList; -} -const std::set< uint32_t >& getCompanyCraftTypeIdList() -{ - if( m_CompanyCraftTypeIdList.size() == 0 ) - loadIdList( m_CompanyCraftTypeDat, m_CompanyCraftTypeIdList ); - return m_CompanyCraftTypeIdList; -} -const std::set< uint32_t >& getCompanyLeveIdList() -{ - if( m_CompanyLeveIdList.size() == 0 ) - loadIdList( m_CompanyLeveDat, m_CompanyLeveIdList ); - return m_CompanyLeveIdList; -} -const std::set< uint32_t >& getCompanyLeveRuleIdList() -{ - if( m_CompanyLeveRuleIdList.size() == 0 ) - loadIdList( m_CompanyLeveRuleDat, m_CompanyLeveRuleIdList ); - return m_CompanyLeveRuleIdList; -} -const std::set< uint32_t >& getCompleteJournalIdList() -{ - if( m_CompleteJournalIdList.size() == 0 ) - loadIdList( m_CompleteJournalDat, m_CompleteJournalIdList ); - return m_CompleteJournalIdList; -} -const std::set< uint32_t >& getCompleteJournalCategoryIdList() -{ - if( m_CompleteJournalCategoryIdList.size() == 0 ) - loadIdList( m_CompleteJournalCategoryDat, m_CompleteJournalCategoryIdList ); - return m_CompleteJournalCategoryIdList; -} -const std::set< uint32_t >& getCompletionIdList() -{ - if( m_CompletionIdList.size() == 0 ) - loadIdList( m_CompletionDat, m_CompletionIdList ); - return m_CompletionIdList; -} -const std::set< uint32_t >& getConditionIdList() -{ - if( m_ConditionIdList.size() == 0 ) - loadIdList( m_ConditionDat, m_ConditionIdList ); - return m_ConditionIdList; -} -const std::set< uint32_t >& getConfigKeyIdList() -{ - if( m_ConfigKeyIdList.size() == 0 ) - loadIdList( m_ConfigKeyDat, m_ConfigKeyIdList ); - return m_ConfigKeyIdList; -} -const std::set< uint32_t >& getContentCloseCycleIdList() -{ - if( m_ContentCloseCycleIdList.size() == 0 ) - loadIdList( m_ContentCloseCycleDat, m_ContentCloseCycleIdList ); - return m_ContentCloseCycleIdList; -} -const std::set< uint32_t >& getContentExActionIdList() -{ - if( m_ContentExActionIdList.size() == 0 ) - loadIdList( m_ContentExActionDat, m_ContentExActionIdList ); - return m_ContentExActionIdList; -} -const std::set< uint32_t >& getContentFinderConditionIdList() -{ - if( m_ContentFinderConditionIdList.size() == 0 ) - loadIdList( m_ContentFinderConditionDat, m_ContentFinderConditionIdList ); - return m_ContentFinderConditionIdList; -} -const std::set< uint32_t >& getContentFinderConditionTransientIdList() -{ - if( m_ContentFinderConditionTransientIdList.size() == 0 ) - loadIdList( m_ContentFinderConditionTransientDat, m_ContentFinderConditionTransientIdList ); - return m_ContentFinderConditionTransientIdList; -} -const std::set< uint32_t >& getContentGaugeIdList() -{ - if( m_ContentGaugeIdList.size() == 0 ) - loadIdList( m_ContentGaugeDat, m_ContentGaugeIdList ); - return m_ContentGaugeIdList; -} -const std::set< uint32_t >& getContentGaugeColorIdList() -{ - if( m_ContentGaugeColorIdList.size() == 0 ) - loadIdList( m_ContentGaugeColorDat, m_ContentGaugeColorIdList ); - return m_ContentGaugeColorIdList; -} -const std::set< uint32_t >& getContentMemberTypeIdList() -{ - if( m_ContentMemberTypeIdList.size() == 0 ) - loadIdList( m_ContentMemberTypeDat, m_ContentMemberTypeIdList ); - return m_ContentMemberTypeIdList; -} -const std::set< uint32_t >& getContentNpcTalkIdList() -{ - if( m_ContentNpcTalkIdList.size() == 0 ) - loadIdList( m_ContentNpcTalkDat, m_ContentNpcTalkIdList ); - return m_ContentNpcTalkIdList; -} -const std::set< uint32_t >& getContentRandomSelectIdList() -{ - if( m_ContentRandomSelectIdList.size() == 0 ) - loadIdList( m_ContentRandomSelectDat, m_ContentRandomSelectIdList ); - return m_ContentRandomSelectIdList; -} -const std::set< uint32_t >& getContentRouletteIdList() -{ - if( m_ContentRouletteIdList.size() == 0 ) - loadIdList( m_ContentRouletteDat, m_ContentRouletteIdList ); - return m_ContentRouletteIdList; -} -const std::set< uint32_t >& getContentRouletteOpenRuleIdList() -{ - if( m_ContentRouletteOpenRuleIdList.size() == 0 ) - loadIdList( m_ContentRouletteOpenRuleDat, m_ContentRouletteOpenRuleIdList ); - return m_ContentRouletteOpenRuleIdList; -} -const std::set< uint32_t >& getContentRouletteRoleBonusIdList() -{ - if( m_ContentRouletteRoleBonusIdList.size() == 0 ) - loadIdList( m_ContentRouletteRoleBonusDat, m_ContentRouletteRoleBonusIdList ); - return m_ContentRouletteRoleBonusIdList; -} -const std::set< uint32_t >& getContentsNoteIdList() -{ - if( m_ContentsNoteIdList.size() == 0 ) - loadIdList( m_ContentsNoteDat, m_ContentsNoteIdList ); - return m_ContentsNoteIdList; -} -const std::set< uint32_t >& getContentsTutorialIdList() -{ - if( m_ContentsTutorialIdList.size() == 0 ) - loadIdList( m_ContentsTutorialDat, m_ContentsTutorialIdList ); - return m_ContentsTutorialIdList; -} -const std::set< uint32_t >& getContentsTutorialPageIdList() -{ - if( m_ContentsTutorialPageIdList.size() == 0 ) - loadIdList( m_ContentsTutorialPageDat, m_ContentsTutorialPageIdList ); - return m_ContentsTutorialPageIdList; -} -const std::set< uint32_t >& getContentTalkIdList() -{ - if( m_ContentTalkIdList.size() == 0 ) - loadIdList( m_ContentTalkDat, m_ContentTalkIdList ); - return m_ContentTalkIdList; -} -const std::set< uint32_t >& getContentTalkParamIdList() -{ - if( m_ContentTalkParamIdList.size() == 0 ) - loadIdList( m_ContentTalkParamDat, m_ContentTalkParamIdList ); - return m_ContentTalkParamIdList; -} -const std::set< uint32_t >& getContentTypeIdList() -{ - if( m_ContentTypeIdList.size() == 0 ) - loadIdList( m_ContentTypeDat, m_ContentTypeIdList ); - return m_ContentTypeIdList; -} -const std::set< uint32_t >& getCraftActionIdList() -{ - if( m_CraftActionIdList.size() == 0 ) - loadIdList( m_CraftActionDat, m_CraftActionIdList ); - return m_CraftActionIdList; -} -const std::set< uint32_t >& getCraftLeveIdList() -{ - if( m_CraftLeveIdList.size() == 0 ) - loadIdList( m_CraftLeveDat, m_CraftLeveIdList ); - return m_CraftLeveIdList; -} -const std::set< uint32_t >& getCraftLevelDifferenceIdList() -{ - if( m_CraftLevelDifferenceIdList.size() == 0 ) - loadIdList( m_CraftLevelDifferenceDat, m_CraftLevelDifferenceIdList ); - return m_CraftLevelDifferenceIdList; -} -const std::set< uint32_t >& getCraftLeveTalkIdList() -{ - if( m_CraftLeveTalkIdList.size() == 0 ) - loadIdList( m_CraftLeveTalkDat, m_CraftLeveTalkIdList ); - return m_CraftLeveTalkIdList; -} -const std::set< uint32_t >& getCraftTypeIdList() -{ - if( m_CraftTypeIdList.size() == 0 ) - loadIdList( m_CraftTypeDat, m_CraftTypeIdList ); - return m_CraftTypeIdList; -} -const std::set< uint32_t >& getCreditIdList() -{ - if( m_CreditIdList.size() == 0 ) - loadIdList( m_CreditDat, m_CreditIdList ); - return m_CreditIdList; -} -const std::set< uint32_t >& getCreditBackImageIdList() -{ - if( m_CreditBackImageIdList.size() == 0 ) - loadIdList( m_CreditBackImageDat, m_CreditBackImageIdList ); - return m_CreditBackImageIdList; -} -const std::set< uint32_t >& getCreditCastIdList() -{ - if( m_CreditCastIdList.size() == 0 ) - loadIdList( m_CreditCastDat, m_CreditCastIdList ); - return m_CreditCastIdList; -} -const std::set< uint32_t >& getCreditListIdList() -{ - if( m_CreditListIdList.size() == 0 ) - loadIdList( m_CreditListDat, m_CreditListIdList ); - return m_CreditListIdList; -} -const std::set< uint32_t >& getCreditListTextIdList() -{ - if( m_CreditListTextIdList.size() == 0 ) - loadIdList( m_CreditListTextDat, m_CreditListTextIdList ); - return m_CreditListTextIdList; -} -const std::set< uint32_t >& getCustomTalkIdList() -{ - if( m_CustomTalkIdList.size() == 0 ) - loadIdList( m_CustomTalkDat, m_CustomTalkIdList ); - return m_CustomTalkIdList; -} -const std::set< uint32_t >& getCustomTalkNestHandlersIdList() -{ - if( m_CustomTalkNestHandlersIdList.size() == 0 ) - loadIdList( m_CustomTalkNestHandlersDat, m_CustomTalkNestHandlersIdList ); - return m_CustomTalkNestHandlersIdList; -} -const std::set< uint32_t >& getCutsceneIdList() -{ - if( m_CutsceneIdList.size() == 0 ) - loadIdList( m_CutsceneDat, m_CutsceneIdList ); - return m_CutsceneIdList; -} -const std::set< uint32_t >& getCutSceneIncompQuestIdList() -{ - if( m_CutSceneIncompQuestIdList.size() == 0 ) - loadIdList( m_CutSceneIncompQuestDat, m_CutSceneIncompQuestIdList ); - return m_CutSceneIncompQuestIdList; -} -const std::set< uint32_t >& getCutsceneMotionIdList() -{ - if( m_CutsceneMotionIdList.size() == 0 ) - loadIdList( m_CutsceneMotionDat, m_CutsceneMotionIdList ); - return m_CutsceneMotionIdList; -} -const std::set< uint32_t >& getCutsceneWorkIndexIdList() -{ - if( m_CutsceneWorkIndexIdList.size() == 0 ) - loadIdList( m_CutsceneWorkIndexDat, m_CutsceneWorkIndexIdList ); - return m_CutsceneWorkIndexIdList; -} -const std::set< uint32_t >& getCutScreenImageIdList() -{ - if( m_CutScreenImageIdList.size() == 0 ) - loadIdList( m_CutScreenImageDat, m_CutScreenImageIdList ); - return m_CutScreenImageIdList; -} -const std::set< uint32_t >& getCycleTimeIdList() -{ - if( m_CycleTimeIdList.size() == 0 ) - loadIdList( m_CycleTimeDat, m_CycleTimeIdList ); - return m_CycleTimeIdList; -} -const std::set< uint32_t >& getDailySupplyItemIdList() -{ - if( m_DailySupplyItemIdList.size() == 0 ) - loadIdList( m_DailySupplyItemDat, m_DailySupplyItemIdList ); - return m_DailySupplyItemIdList; -} -const std::set< uint32_t >& getDawnContentIdList() -{ - if( m_DawnContentIdList.size() == 0 ) - loadIdList( m_DawnContentDat, m_DawnContentIdList ); - return m_DawnContentIdList; -} -const std::set< uint32_t >& getDawnGrowMemberIdList() -{ - if( m_DawnGrowMemberIdList.size() == 0 ) - loadIdList( m_DawnGrowMemberDat, m_DawnGrowMemberIdList ); - return m_DawnGrowMemberIdList; -} -const std::set< uint32_t >& getDawnMemberUIParamIdList() -{ - if( m_DawnMemberUIParamIdList.size() == 0 ) - loadIdList( m_DawnMemberUIParamDat, m_DawnMemberUIParamIdList ); - return m_DawnMemberUIParamIdList; -} -const std::set< uint32_t >& getDawnQuestAnnounceIdList() -{ - if( m_DawnQuestAnnounceIdList.size() == 0 ) - loadIdList( m_DawnQuestAnnounceDat, m_DawnQuestAnnounceIdList ); - return m_DawnQuestAnnounceIdList; -} -const std::set< uint32_t >& getDawnQuestMemberIdList() -{ - if( m_DawnQuestMemberIdList.size() == 0 ) - loadIdList( m_DawnQuestMemberDat, m_DawnQuestMemberIdList ); - return m_DawnQuestMemberIdList; -} -const std::set< uint32_t >& getDeepDungeonIdList() -{ - if( m_DeepDungeonIdList.size() == 0 ) - loadIdList( m_DeepDungeonDat, m_DeepDungeonIdList ); - return m_DeepDungeonIdList; -} -const std::set< uint32_t >& getDeepDungeonBanIdList() -{ - if( m_DeepDungeonBanIdList.size() == 0 ) - loadIdList( m_DeepDungeonBanDat, m_DeepDungeonBanIdList ); - return m_DeepDungeonBanIdList; -} -const std::set< uint32_t >& getDeepDungeonDangerIdList() -{ - if( m_DeepDungeonDangerIdList.size() == 0 ) - loadIdList( m_DeepDungeonDangerDat, m_DeepDungeonDangerIdList ); - return m_DeepDungeonDangerIdList; -} -const std::set< uint32_t >& getDeepDungeonEquipmentIdList() -{ - if( m_DeepDungeonEquipmentIdList.size() == 0 ) - loadIdList( m_DeepDungeonEquipmentDat, m_DeepDungeonEquipmentIdList ); - return m_DeepDungeonEquipmentIdList; -} -const std::set< uint32_t >& getDeepDungeonFloorEffectUIIdList() -{ - if( m_DeepDungeonFloorEffectUIIdList.size() == 0 ) - loadIdList( m_DeepDungeonFloorEffectUIDat, m_DeepDungeonFloorEffectUIIdList ); - return m_DeepDungeonFloorEffectUIIdList; -} -const std::set< uint32_t >& getDeepDungeonItemIdList() -{ - if( m_DeepDungeonItemIdList.size() == 0 ) - loadIdList( m_DeepDungeonItemDat, m_DeepDungeonItemIdList ); - return m_DeepDungeonItemIdList; -} -const std::set< uint32_t >& getDeepDungeonLayerIdList() -{ - if( m_DeepDungeonLayerIdList.size() == 0 ) - loadIdList( m_DeepDungeonLayerDat, m_DeepDungeonLayerIdList ); - return m_DeepDungeonLayerIdList; -} -const std::set< uint32_t >& getDeepDungeonMagicStoneIdList() -{ - if( m_DeepDungeonMagicStoneIdList.size() == 0 ) - loadIdList( m_DeepDungeonMagicStoneDat, m_DeepDungeonMagicStoneIdList ); - return m_DeepDungeonMagicStoneIdList; -} -const std::set< uint32_t >& getDeepDungeonMap5XIdList() -{ - if( m_DeepDungeonMap5XIdList.size() == 0 ) - loadIdList( m_DeepDungeonMap5XDat, m_DeepDungeonMap5XIdList ); - return m_DeepDungeonMap5XIdList; -} -const std::set< uint32_t >& getDeepDungeonRoomIdList() -{ - if( m_DeepDungeonRoomIdList.size() == 0 ) - loadIdList( m_DeepDungeonRoomDat, m_DeepDungeonRoomIdList ); - return m_DeepDungeonRoomIdList; -} -const std::set< uint32_t >& getDeepDungeonStatusIdList() -{ - if( m_DeepDungeonStatusIdList.size() == 0 ) - loadIdList( m_DeepDungeonStatusDat, m_DeepDungeonStatusIdList ); - return m_DeepDungeonStatusIdList; -} -const std::set< uint32_t >& getDefaultTalkIdList() -{ - if( m_DefaultTalkIdList.size() == 0 ) - loadIdList( m_DefaultTalkDat, m_DefaultTalkIdList ); - return m_DefaultTalkIdList; -} -const std::set< uint32_t >& getDefaultTalkLipSyncTypeIdList() -{ - if( m_DefaultTalkLipSyncTypeIdList.size() == 0 ) - loadIdList( m_DefaultTalkLipSyncTypeDat, m_DefaultTalkLipSyncTypeIdList ); - return m_DefaultTalkLipSyncTypeIdList; -} -const std::set< uint32_t >& getDeliveryQuestIdList() -{ - if( m_DeliveryQuestIdList.size() == 0 ) - loadIdList( m_DeliveryQuestDat, m_DeliveryQuestIdList ); - return m_DeliveryQuestIdList; -} -const std::set< uint32_t >& getDescriptionIdList() -{ - if( m_DescriptionIdList.size() == 0 ) - loadIdList( m_DescriptionDat, m_DescriptionIdList ); - return m_DescriptionIdList; -} -const std::set< uint32_t >& getDescriptionPageIdList() -{ - if( m_DescriptionPageIdList.size() == 0 ) - loadIdList( m_DescriptionPageDat, m_DescriptionPageIdList ); - return m_DescriptionPageIdList; -} -const std::set< uint32_t >& getDescriptionSectionIdList() -{ - if( m_DescriptionSectionIdList.size() == 0 ) - loadIdList( m_DescriptionSectionDat, m_DescriptionSectionIdList ); - return m_DescriptionSectionIdList; -} -const std::set< uint32_t >& getDescriptionStringIdList() -{ - if( m_DescriptionStringIdList.size() == 0 ) - loadIdList( m_DescriptionStringDat, m_DescriptionStringIdList ); - return m_DescriptionStringIdList; -} -const std::set< uint32_t >& getDisposalShopIdList() -{ - if( m_DisposalShopIdList.size() == 0 ) - loadIdList( m_DisposalShopDat, m_DisposalShopIdList ); - return m_DisposalShopIdList; -} -const std::set< uint32_t >& getDisposalShopFilterTypeIdList() -{ - if( m_DisposalShopFilterTypeIdList.size() == 0 ) - loadIdList( m_DisposalShopFilterTypeDat, m_DisposalShopFilterTypeIdList ); - return m_DisposalShopFilterTypeIdList; -} -const std::set< uint32_t >& getDisposalShopItemIdList() -{ - if( m_DisposalShopItemIdList.size() == 0 ) - loadIdList( m_DisposalShopItemDat, m_DisposalShopItemIdList ); - return m_DisposalShopItemIdList; -} -const std::set< uint32_t >& getDpsChallengeIdList() -{ - if( m_DpsChallengeIdList.size() == 0 ) - loadIdList( m_DpsChallengeDat, m_DpsChallengeIdList ); - return m_DpsChallengeIdList; -} -const std::set< uint32_t >& getDpsChallengeOfficerIdList() -{ - if( m_DpsChallengeOfficerIdList.size() == 0 ) - loadIdList( m_DpsChallengeOfficerDat, m_DpsChallengeOfficerIdList ); - return m_DpsChallengeOfficerIdList; -} -const std::set< uint32_t >& getDpsChallengeTransientIdList() -{ - if( m_DpsChallengeTransientIdList.size() == 0 ) - loadIdList( m_DpsChallengeTransientDat, m_DpsChallengeTransientIdList ); - return m_DpsChallengeTransientIdList; -} -const std::set< uint32_t >& getDynamicEventIdList() -{ - if( m_DynamicEventIdList.size() == 0 ) - loadIdList( m_DynamicEventDat, m_DynamicEventIdList ); - return m_DynamicEventIdList; -} -const std::set< uint32_t >& getDynamicEventEnemyTypeIdList() -{ - if( m_DynamicEventEnemyTypeIdList.size() == 0 ) - loadIdList( m_DynamicEventEnemyTypeDat, m_DynamicEventEnemyTypeIdList ); - return m_DynamicEventEnemyTypeIdList; -} -const std::set< uint32_t >& getDynamicEventSingleBattleIdList() -{ - if( m_DynamicEventSingleBattleIdList.size() == 0 ) - loadIdList( m_DynamicEventSingleBattleDat, m_DynamicEventSingleBattleIdList ); - return m_DynamicEventSingleBattleIdList; -} -const std::set< uint32_t >& getDynamicEventTypeIdList() -{ - if( m_DynamicEventTypeIdList.size() == 0 ) - loadIdList( m_DynamicEventTypeDat, m_DynamicEventTypeIdList ); - return m_DynamicEventTypeIdList; -} -const std::set< uint32_t >& getEmjAddonIdList() -{ - if( m_EmjAddonIdList.size() == 0 ) - loadIdList( m_EmjAddonDat, m_EmjAddonIdList ); - return m_EmjAddonIdList; -} -const std::set< uint32_t >& getEmjDaniIdList() -{ - if( m_EmjDaniIdList.size() == 0 ) - loadIdList( m_EmjDaniDat, m_EmjDaniIdList ); - return m_EmjDaniIdList; -} -const std::set< uint32_t >& getEmoteIdList() -{ - if( m_EmoteIdList.size() == 0 ) - loadIdList( m_EmoteDat, m_EmoteIdList ); - return m_EmoteIdList; -} -const std::set< uint32_t >& getEmoteCategoryIdList() -{ - if( m_EmoteCategoryIdList.size() == 0 ) - loadIdList( m_EmoteCategoryDat, m_EmoteCategoryIdList ); - return m_EmoteCategoryIdList; -} -const std::set< uint32_t >& getEmoteModeIdList() -{ - if( m_EmoteModeIdList.size() == 0 ) - loadIdList( m_EmoteModeDat, m_EmoteModeIdList ); - return m_EmoteModeIdList; -} -const std::set< uint32_t >& getENpcBaseIdList() -{ - if( m_ENpcBaseIdList.size() == 0 ) - loadIdList( m_ENpcBaseDat, m_ENpcBaseIdList ); - return m_ENpcBaseIdList; -} -const std::set< uint32_t >& getENpcDressUpIdList() -{ - if( m_ENpcDressUpIdList.size() == 0 ) - loadIdList( m_ENpcDressUpDat, m_ENpcDressUpIdList ); - return m_ENpcDressUpIdList; -} -const std::set< uint32_t >& getENpcDressUpDressIdList() -{ - if( m_ENpcDressUpDressIdList.size() == 0 ) - loadIdList( m_ENpcDressUpDressDat, m_ENpcDressUpDressIdList ); - return m_ENpcDressUpDressIdList; -} -const std::set< uint32_t >& getENpcResidentIdList() -{ - if( m_ENpcResidentIdList.size() == 0 ) - loadIdList( m_ENpcResidentDat, m_ENpcResidentIdList ); - return m_ENpcResidentIdList; -} -const std::set< uint32_t >& getEObjIdList() -{ - if( m_EObjIdList.size() == 0 ) - loadIdList( m_EObjDat, m_EObjIdList ); - return m_EObjIdList; -} -const std::set< uint32_t >& getEObjNameIdList() -{ - if( m_EObjNameIdList.size() == 0 ) - loadIdList( m_EObjNameDat, m_EObjNameIdList ); - return m_EObjNameIdList; -} -const std::set< uint32_t >& getEquipRaceCategoryIdList() -{ - if( m_EquipRaceCategoryIdList.size() == 0 ) - loadIdList( m_EquipRaceCategoryDat, m_EquipRaceCategoryIdList ); - return m_EquipRaceCategoryIdList; -} -const std::set< uint32_t >& getEquipSlotCategoryIdList() -{ - if( m_EquipSlotCategoryIdList.size() == 0 ) - loadIdList( m_EquipSlotCategoryDat, m_EquipSlotCategoryIdList ); - return m_EquipSlotCategoryIdList; -} -const std::set< uint32_t >& getEurekaAetherItemIdList() -{ - if( m_EurekaAetherItemIdList.size() == 0 ) - loadIdList( m_EurekaAetherItemDat, m_EurekaAetherItemIdList ); - return m_EurekaAetherItemIdList; -} -const std::set< uint32_t >& getEurekaAethernetIdList() -{ - if( m_EurekaAethernetIdList.size() == 0 ) - loadIdList( m_EurekaAethernetDat, m_EurekaAethernetIdList ); - return m_EurekaAethernetIdList; -} -const std::set< uint32_t >& getEurekaGrowDataIdList() -{ - if( m_EurekaGrowDataIdList.size() == 0 ) - loadIdList( m_EurekaGrowDataDat, m_EurekaGrowDataIdList ); - return m_EurekaGrowDataIdList; -} -const std::set< uint32_t >& getEurekaLogosMixerProbabilityIdList() -{ - if( m_EurekaLogosMixerProbabilityIdList.size() == 0 ) - loadIdList( m_EurekaLogosMixerProbabilityDat, m_EurekaLogosMixerProbabilityIdList ); - return m_EurekaLogosMixerProbabilityIdList; -} -const std::set< uint32_t >& getEurekaMagiaActionIdList() -{ - if( m_EurekaMagiaActionIdList.size() == 0 ) - loadIdList( m_EurekaMagiaActionDat, m_EurekaMagiaActionIdList ); - return m_EurekaMagiaActionIdList; -} -const std::set< uint32_t >& getEurekaMagiciteItemIdList() -{ - if( m_EurekaMagiciteItemIdList.size() == 0 ) - loadIdList( m_EurekaMagiciteItemDat, m_EurekaMagiciteItemIdList ); - return m_EurekaMagiciteItemIdList; -} -const std::set< uint32_t >& getEurekaMagiciteItemTypeIdList() -{ - if( m_EurekaMagiciteItemTypeIdList.size() == 0 ) - loadIdList( m_EurekaMagiciteItemTypeDat, m_EurekaMagiciteItemTypeIdList ); - return m_EurekaMagiciteItemTypeIdList; -} -const std::set< uint32_t >& getEurekaSphereElementAdjustIdList() -{ - if( m_EurekaSphereElementAdjustIdList.size() == 0 ) - loadIdList( m_EurekaSphereElementAdjustDat, m_EurekaSphereElementAdjustIdList ); - return m_EurekaSphereElementAdjustIdList; -} -const std::set< uint32_t >& getEventActionIdList() -{ - if( m_EventActionIdList.size() == 0 ) - loadIdList( m_EventActionDat, m_EventActionIdList ); - return m_EventActionIdList; -} -const std::set< uint32_t >& getEventCustomIconTypeIdList() -{ - if( m_EventCustomIconTypeIdList.size() == 0 ) - loadIdList( m_EventCustomIconTypeDat, m_EventCustomIconTypeIdList ); - return m_EventCustomIconTypeIdList; -} -const std::set< uint32_t >& getEventIconPriorityIdList() -{ - if( m_EventIconPriorityIdList.size() == 0 ) - loadIdList( m_EventIconPriorityDat, m_EventIconPriorityIdList ); - return m_EventIconPriorityIdList; -} -const std::set< uint32_t >& getEventIconTypeIdList() -{ - if( m_EventIconTypeIdList.size() == 0 ) - loadIdList( m_EventIconTypeDat, m_EventIconTypeIdList ); - return m_EventIconTypeIdList; -} -const std::set< uint32_t >& getEventItemIdList() -{ - if( m_EventItemIdList.size() == 0 ) - loadIdList( m_EventItemDat, m_EventItemIdList ); - return m_EventItemIdList; -} -const std::set< uint32_t >& getEventItemCastTimelineIdList() -{ - if( m_EventItemCastTimelineIdList.size() == 0 ) - loadIdList( m_EventItemCastTimelineDat, m_EventItemCastTimelineIdList ); - return m_EventItemCastTimelineIdList; -} -const std::set< uint32_t >& getEventItemHelpIdList() -{ - if( m_EventItemHelpIdList.size() == 0 ) - loadIdList( m_EventItemHelpDat, m_EventItemHelpIdList ); - return m_EventItemHelpIdList; -} -const std::set< uint32_t >& getEventItemTimelineIdList() -{ - if( m_EventItemTimelineIdList.size() == 0 ) - loadIdList( m_EventItemTimelineDat, m_EventItemTimelineIdList ); - return m_EventItemTimelineIdList; -} -const std::set< uint32_t >& getEventSystemDefineIdList() -{ - if( m_EventSystemDefineIdList.size() == 0 ) - loadIdList( m_EventSystemDefineDat, m_EventSystemDefineIdList ); - return m_EventSystemDefineIdList; -} -const std::set< uint32_t >& getExportedGatheringPointIdList() -{ - if( m_ExportedGatheringPointIdList.size() == 0 ) - loadIdList( m_ExportedGatheringPointDat, m_ExportedGatheringPointIdList ); - return m_ExportedGatheringPointIdList; -} -const std::set< uint32_t >& getExportedSGIdList() -{ - if( m_ExportedSGIdList.size() == 0 ) - loadIdList( m_ExportedSGDat, m_ExportedSGIdList ); - return m_ExportedSGIdList; -} -const std::set< uint32_t >& getExVersionIdList() -{ - if( m_ExVersionIdList.size() == 0 ) - loadIdList( m_ExVersionDat, m_ExVersionIdList ); - return m_ExVersionIdList; -} -const std::set< uint32_t >& getFateIdList() -{ - if( m_FateIdList.size() == 0 ) - loadIdList( m_FateDat, m_FateIdList ); - return m_FateIdList; -} -const std::set< uint32_t >& getFateEventIdList() -{ - if( m_FateEventIdList.size() == 0 ) - loadIdList( m_FateEventDat, m_FateEventIdList ); - return m_FateEventIdList; -} -const std::set< uint32_t >& getFateModeIdList() -{ - if( m_FateModeIdList.size() == 0 ) - loadIdList( m_FateModeDat, m_FateModeIdList ); - return m_FateModeIdList; -} -const std::set< uint32_t >& getFateProgressUIIdList() -{ - if( m_FateProgressUIIdList.size() == 0 ) - loadIdList( m_FateProgressUIDat, m_FateProgressUIIdList ); - return m_FateProgressUIIdList; -} -const std::set< uint32_t >& getFateTokenTypeIdList() -{ - if( m_FateTokenTypeIdList.size() == 0 ) - loadIdList( m_FateTokenTypeDat, m_FateTokenTypeIdList ); - return m_FateTokenTypeIdList; -} -const std::set< uint32_t >& getFCActivityIdList() -{ - if( m_FCActivityIdList.size() == 0 ) - loadIdList( m_FCActivityDat, m_FCActivityIdList ); - return m_FCActivityIdList; -} -const std::set< uint32_t >& getFCActivityCategoryIdList() -{ - if( m_FCActivityCategoryIdList.size() == 0 ) - loadIdList( m_FCActivityCategoryDat, m_FCActivityCategoryIdList ); - return m_FCActivityCategoryIdList; -} -const std::set< uint32_t >& getFCAuthorityIdList() -{ - if( m_FCAuthorityIdList.size() == 0 ) - loadIdList( m_FCAuthorityDat, m_FCAuthorityIdList ); - return m_FCAuthorityIdList; -} -const std::set< uint32_t >& getFCAuthorityCategoryIdList() -{ - if( m_FCAuthorityCategoryIdList.size() == 0 ) - loadIdList( m_FCAuthorityCategoryDat, m_FCAuthorityCategoryIdList ); - return m_FCAuthorityCategoryIdList; -} -const std::set< uint32_t >& getFCChestNameIdList() -{ - if( m_FCChestNameIdList.size() == 0 ) - loadIdList( m_FCChestNameDat, m_FCChestNameIdList ); - return m_FCChestNameIdList; -} -const std::set< uint32_t >& getFCCrestSymbolIdList() -{ - if( m_FCCrestSymbolIdList.size() == 0 ) - loadIdList( m_FCCrestSymbolDat, m_FCCrestSymbolIdList ); - return m_FCCrestSymbolIdList; -} -const std::set< uint32_t >& getFccShopIdList() -{ - if( m_FccShopIdList.size() == 0 ) - loadIdList( m_FccShopDat, m_FccShopIdList ); - return m_FccShopIdList; -} -const std::set< uint32_t >& getFCHierarchyIdList() -{ - if( m_FCHierarchyIdList.size() == 0 ) - loadIdList( m_FCHierarchyDat, m_FCHierarchyIdList ); - return m_FCHierarchyIdList; -} -const std::set< uint32_t >& getFCProfileIdList() -{ - if( m_FCProfileIdList.size() == 0 ) - loadIdList( m_FCProfileDat, m_FCProfileIdList ); - return m_FCProfileIdList; -} -const std::set< uint32_t >& getFCRankIdList() -{ - if( m_FCRankIdList.size() == 0 ) - loadIdList( m_FCRankDat, m_FCRankIdList ); - return m_FCRankIdList; -} -const std::set< uint32_t >& getFCReputationIdList() -{ - if( m_FCReputationIdList.size() == 0 ) - loadIdList( m_FCReputationDat, m_FCReputationIdList ); - return m_FCReputationIdList; -} -const std::set< uint32_t >& getFCRightsIdList() -{ - if( m_FCRightsIdList.size() == 0 ) - loadIdList( m_FCRightsDat, m_FCRightsIdList ); - return m_FCRightsIdList; -} -const std::set< uint32_t >& getFestivalIdList() -{ - if( m_FestivalIdList.size() == 0 ) - loadIdList( m_FestivalDat, m_FestivalIdList ); - return m_FestivalIdList; -} -const std::set< uint32_t >& getFieldMarkerIdList() -{ - if( m_FieldMarkerIdList.size() == 0 ) - loadIdList( m_FieldMarkerDat, m_FieldMarkerIdList ); - return m_FieldMarkerIdList; -} -const std::set< uint32_t >& getFishingRecordTypeIdList() -{ - if( m_FishingRecordTypeIdList.size() == 0 ) - loadIdList( m_FishingRecordTypeDat, m_FishingRecordTypeIdList ); - return m_FishingRecordTypeIdList; -} -const std::set< uint32_t >& getFishingRecordTypeTransientIdList() -{ - if( m_FishingRecordTypeTransientIdList.size() == 0 ) - loadIdList( m_FishingRecordTypeTransientDat, m_FishingRecordTypeTransientIdList ); - return m_FishingRecordTypeTransientIdList; -} -const std::set< uint32_t >& getFishingSpotIdList() -{ - if( m_FishingSpotIdList.size() == 0 ) - loadIdList( m_FishingSpotDat, m_FishingSpotIdList ); - return m_FishingSpotIdList; -} -const std::set< uint32_t >& getFishParameterIdList() -{ - if( m_FishParameterIdList.size() == 0 ) - loadIdList( m_FishParameterDat, m_FishParameterIdList ); - return m_FishParameterIdList; -} -const std::set< uint32_t >& getFrontline03IdList() -{ - if( m_Frontline03IdList.size() == 0 ) - loadIdList( m_Frontline03Dat, m_Frontline03IdList ); - return m_Frontline03IdList; -} -const std::set< uint32_t >& getFrontline04IdList() -{ - if( m_Frontline04IdList.size() == 0 ) - loadIdList( m_Frontline04Dat, m_Frontline04IdList ); - return m_Frontline04IdList; -} -const std::set< uint32_t >& getFurnitureCatalogCategoryIdList() -{ - if( m_FurnitureCatalogCategoryIdList.size() == 0 ) - loadIdList( m_FurnitureCatalogCategoryDat, m_FurnitureCatalogCategoryIdList ); - return m_FurnitureCatalogCategoryIdList; -} -const std::set< uint32_t >& getFurnitureCatalogItemListIdList() -{ - if( m_FurnitureCatalogItemListIdList.size() == 0 ) - loadIdList( m_FurnitureCatalogItemListDat, m_FurnitureCatalogItemListIdList ); - return m_FurnitureCatalogItemListIdList; -} -const std::set< uint32_t >& getGardeningSeedIdList() -{ - if( m_GardeningSeedIdList.size() == 0 ) - loadIdList( m_GardeningSeedDat, m_GardeningSeedIdList ); - return m_GardeningSeedIdList; -} -const std::set< uint32_t >& getGatheringConditionIdList() -{ - if( m_GatheringConditionIdList.size() == 0 ) - loadIdList( m_GatheringConditionDat, m_GatheringConditionIdList ); - return m_GatheringConditionIdList; -} -const std::set< uint32_t >& getGatheringExpIdList() -{ - if( m_GatheringExpIdList.size() == 0 ) - loadIdList( m_GatheringExpDat, m_GatheringExpIdList ); - return m_GatheringExpIdList; -} -const std::set< uint32_t >& getGatheringItemIdList() -{ - if( m_GatheringItemIdList.size() == 0 ) - loadIdList( m_GatheringItemDat, m_GatheringItemIdList ); - return m_GatheringItemIdList; -} -const std::set< uint32_t >& getGatheringItemLevelConvertTableIdList() -{ - if( m_GatheringItemLevelConvertTableIdList.size() == 0 ) - loadIdList( m_GatheringItemLevelConvertTableDat, m_GatheringItemLevelConvertTableIdList ); - return m_GatheringItemLevelConvertTableIdList; -} -const std::set< uint32_t >& getGatheringItemPointIdList() -{ - if( m_GatheringItemPointIdList.size() == 0 ) - loadIdList( m_GatheringItemPointDat, m_GatheringItemPointIdList ); - return m_GatheringItemPointIdList; -} -const std::set< uint32_t >& getGatheringLeveIdList() -{ - if( m_GatheringLeveIdList.size() == 0 ) - loadIdList( m_GatheringLeveDat, m_GatheringLeveIdList ); - return m_GatheringLeveIdList; -} -const std::set< uint32_t >& getGatheringLeveRouteIdList() -{ - if( m_GatheringLeveRouteIdList.size() == 0 ) - loadIdList( m_GatheringLeveRouteDat, m_GatheringLeveRouteIdList ); - return m_GatheringLeveRouteIdList; -} -const std::set< uint32_t >& getGatheringLeveRuleIdList() -{ - if( m_GatheringLeveRuleIdList.size() == 0 ) - loadIdList( m_GatheringLeveRuleDat, m_GatheringLeveRuleIdList ); - return m_GatheringLeveRuleIdList; -} -const std::set< uint32_t >& getGatheringNotebookListIdList() -{ - if( m_GatheringNotebookListIdList.size() == 0 ) - loadIdList( m_GatheringNotebookListDat, m_GatheringNotebookListIdList ); - return m_GatheringNotebookListIdList; -} -const std::set< uint32_t >& getGatheringPointIdList() -{ - if( m_GatheringPointIdList.size() == 0 ) - loadIdList( m_GatheringPointDat, m_GatheringPointIdList ); - return m_GatheringPointIdList; -} -const std::set< uint32_t >& getGatheringPointBaseIdList() -{ - if( m_GatheringPointBaseIdList.size() == 0 ) - loadIdList( m_GatheringPointBaseDat, m_GatheringPointBaseIdList ); - return m_GatheringPointBaseIdList; -} -const std::set< uint32_t >& getGatheringPointBonusIdList() -{ - if( m_GatheringPointBonusIdList.size() == 0 ) - loadIdList( m_GatheringPointBonusDat, m_GatheringPointBonusIdList ); - return m_GatheringPointBonusIdList; -} -const std::set< uint32_t >& getGatheringPointBonusTypeIdList() -{ - if( m_GatheringPointBonusTypeIdList.size() == 0 ) - loadIdList( m_GatheringPointBonusTypeDat, m_GatheringPointBonusTypeIdList ); - return m_GatheringPointBonusTypeIdList; -} -const std::set< uint32_t >& getGatheringPointNameIdList() -{ - if( m_GatheringPointNameIdList.size() == 0 ) - loadIdList( m_GatheringPointNameDat, m_GatheringPointNameIdList ); - return m_GatheringPointNameIdList; -} -const std::set< uint32_t >& getGatheringPointTransientIdList() -{ - if( m_GatheringPointTransientIdList.size() == 0 ) - loadIdList( m_GatheringPointTransientDat, m_GatheringPointTransientIdList ); - return m_GatheringPointTransientIdList; -} -const std::set< uint32_t >& getGatheringRarePopTimeTableIdList() -{ - if( m_GatheringRarePopTimeTableIdList.size() == 0 ) - loadIdList( m_GatheringRarePopTimeTableDat, m_GatheringRarePopTimeTableIdList ); - return m_GatheringRarePopTimeTableIdList; -} -const std::set< uint32_t >& getGatheringSubCategoryIdList() -{ - if( m_GatheringSubCategoryIdList.size() == 0 ) - loadIdList( m_GatheringSubCategoryDat, m_GatheringSubCategoryIdList ); - return m_GatheringSubCategoryIdList; -} -const std::set< uint32_t >& getGatheringTypeIdList() -{ - if( m_GatheringTypeIdList.size() == 0 ) - loadIdList( m_GatheringTypeDat, m_GatheringTypeIdList ); - return m_GatheringTypeIdList; -} -const std::set< uint32_t >& getGcArmyCaptureTacticsIdList() -{ - if( m_GcArmyCaptureTacticsIdList.size() == 0 ) - loadIdList( m_GcArmyCaptureTacticsDat, m_GcArmyCaptureTacticsIdList ); - return m_GcArmyCaptureTacticsIdList; -} -const std::set< uint32_t >& getGcArmyEquipPresetIdList() -{ - if( m_GcArmyEquipPresetIdList.size() == 0 ) - loadIdList( m_GcArmyEquipPresetDat, m_GcArmyEquipPresetIdList ); - return m_GcArmyEquipPresetIdList; -} -const std::set< uint32_t >& getGcArmyExpeditionIdList() -{ - if( m_GcArmyExpeditionIdList.size() == 0 ) - loadIdList( m_GcArmyExpeditionDat, m_GcArmyExpeditionIdList ); - return m_GcArmyExpeditionIdList; -} -const std::set< uint32_t >& getGcArmyExpeditionMemberBonusIdList() -{ - if( m_GcArmyExpeditionMemberBonusIdList.size() == 0 ) - loadIdList( m_GcArmyExpeditionMemberBonusDat, m_GcArmyExpeditionMemberBonusIdList ); - return m_GcArmyExpeditionMemberBonusIdList; -} -const std::set< uint32_t >& getGcArmyExpeditionTypeIdList() -{ - if( m_GcArmyExpeditionTypeIdList.size() == 0 ) - loadIdList( m_GcArmyExpeditionTypeDat, m_GcArmyExpeditionTypeIdList ); - return m_GcArmyExpeditionTypeIdList; -} -const std::set< uint32_t >& getGcArmyMemberGrowIdList() -{ - if( m_GcArmyMemberGrowIdList.size() == 0 ) - loadIdList( m_GcArmyMemberGrowDat, m_GcArmyMemberGrowIdList ); - return m_GcArmyMemberGrowIdList; -} -const std::set< uint32_t >& getGcArmyTrainingIdList() -{ - if( m_GcArmyTrainingIdList.size() == 0 ) - loadIdList( m_GcArmyTrainingDat, m_GcArmyTrainingIdList ); - return m_GcArmyTrainingIdList; -} -const std::set< uint32_t >& getGCRankGridaniaFemaleTextIdList() -{ - if( m_GCRankGridaniaFemaleTextIdList.size() == 0 ) - loadIdList( m_GCRankGridaniaFemaleTextDat, m_GCRankGridaniaFemaleTextIdList ); - return m_GCRankGridaniaFemaleTextIdList; -} -const std::set< uint32_t >& getGCRankGridaniaMaleTextIdList() -{ - if( m_GCRankGridaniaMaleTextIdList.size() == 0 ) - loadIdList( m_GCRankGridaniaMaleTextDat, m_GCRankGridaniaMaleTextIdList ); - return m_GCRankGridaniaMaleTextIdList; -} -const std::set< uint32_t >& getGCRankLimsaFemaleTextIdList() -{ - if( m_GCRankLimsaFemaleTextIdList.size() == 0 ) - loadIdList( m_GCRankLimsaFemaleTextDat, m_GCRankLimsaFemaleTextIdList ); - return m_GCRankLimsaFemaleTextIdList; -} -const std::set< uint32_t >& getGCRankLimsaMaleTextIdList() -{ - if( m_GCRankLimsaMaleTextIdList.size() == 0 ) - loadIdList( m_GCRankLimsaMaleTextDat, m_GCRankLimsaMaleTextIdList ); - return m_GCRankLimsaMaleTextIdList; -} -const std::set< uint32_t >& getGCRankUldahFemaleTextIdList() -{ - if( m_GCRankUldahFemaleTextIdList.size() == 0 ) - loadIdList( m_GCRankUldahFemaleTextDat, m_GCRankUldahFemaleTextIdList ); - return m_GCRankUldahFemaleTextIdList; -} -const std::set< uint32_t >& getGCRankUldahMaleTextIdList() -{ - if( m_GCRankUldahMaleTextIdList.size() == 0 ) - loadIdList( m_GCRankUldahMaleTextDat, m_GCRankUldahMaleTextIdList ); - return m_GCRankUldahMaleTextIdList; -} -const std::set< uint32_t >& getGCScripShopCategoryIdList() -{ - if( m_GCScripShopCategoryIdList.size() == 0 ) - loadIdList( m_GCScripShopCategoryDat, m_GCScripShopCategoryIdList ); - return m_GCScripShopCategoryIdList; -} -const std::set< uint32_t >& getGCScripShopItemIdList() -{ - if( m_GCScripShopItemIdList.size() == 0 ) - loadIdList( m_GCScripShopItemDat, m_GCScripShopItemIdList ); - return m_GCScripShopItemIdList; -} -const std::set< uint32_t >& getGCShopIdList() -{ - if( m_GCShopIdList.size() == 0 ) - loadIdList( m_GCShopDat, m_GCShopIdList ); - return m_GCShopIdList; -} -const std::set< uint32_t >& getGCShopItemCategoryIdList() -{ - if( m_GCShopItemCategoryIdList.size() == 0 ) - loadIdList( m_GCShopItemCategoryDat, m_GCShopItemCategoryIdList ); - return m_GCShopItemCategoryIdList; -} -const std::set< uint32_t >& getGCSupplyDutyIdList() -{ - if( m_GCSupplyDutyIdList.size() == 0 ) - loadIdList( m_GCSupplyDutyDat, m_GCSupplyDutyIdList ); - return m_GCSupplyDutyIdList; -} -const std::set< uint32_t >& getGCSupplyDutyRewardIdList() -{ - if( m_GCSupplyDutyRewardIdList.size() == 0 ) - loadIdList( m_GCSupplyDutyRewardDat, m_GCSupplyDutyRewardIdList ); - return m_GCSupplyDutyRewardIdList; -} -const std::set< uint32_t >& getGeneralActionIdList() -{ - if( m_GeneralActionIdList.size() == 0 ) - loadIdList( m_GeneralActionDat, m_GeneralActionIdList ); - return m_GeneralActionIdList; -} -const std::set< uint32_t >& getGFATEIdList() -{ - if( m_GFATEIdList.size() == 0 ) - loadIdList( m_GFATEDat, m_GFATEIdList ); - return m_GFATEIdList; -} -const std::set< uint32_t >& getGFateClimbing2IdList() -{ - if( m_GFateClimbing2IdList.size() == 0 ) - loadIdList( m_GFateClimbing2Dat, m_GFateClimbing2IdList ); - return m_GFateClimbing2IdList; -} -const std::set< uint32_t >& getGFateClimbing2ContentIdList() -{ - if( m_GFateClimbing2ContentIdList.size() == 0 ) - loadIdList( m_GFateClimbing2ContentDat, m_GFateClimbing2ContentIdList ); - return m_GFateClimbing2ContentIdList; -} -const std::set< uint32_t >& getGFateClimbing2TotemTypeIdList() -{ - if( m_GFateClimbing2TotemTypeIdList.size() == 0 ) - loadIdList( m_GFateClimbing2TotemTypeDat, m_GFateClimbing2TotemTypeIdList ); - return m_GFateClimbing2TotemTypeIdList; -} -const std::set< uint32_t >& getGFateRideShootingIdList() -{ - if( m_GFateRideShootingIdList.size() == 0 ) - loadIdList( m_GFateRideShootingDat, m_GFateRideShootingIdList ); - return m_GFateRideShootingIdList; -} -const std::set< uint32_t >& getGilShopIdList() -{ - if( m_GilShopIdList.size() == 0 ) - loadIdList( m_GilShopDat, m_GilShopIdList ); - return m_GilShopIdList; -} -const std::set< uint32_t >& getGilShopItemIdList() -{ - if( m_GilShopItemIdList.size() == 0 ) - loadIdList( m_GilShopItemDat, m_GilShopItemIdList ); - return m_GilShopItemIdList; -} -const std::set< uint32_t >& getGimmickAccessorIdList() -{ - if( m_GimmickAccessorIdList.size() == 0 ) - loadIdList( m_GimmickAccessorDat, m_GimmickAccessorIdList ); - return m_GimmickAccessorIdList; -} -const std::set< uint32_t >& getGimmickJumpIdList() -{ - if( m_GimmickJumpIdList.size() == 0 ) - loadIdList( m_GimmickJumpDat, m_GimmickJumpIdList ); - return m_GimmickJumpIdList; -} -const std::set< uint32_t >& getGimmickRectIdList() -{ - if( m_GimmickRectIdList.size() == 0 ) - loadIdList( m_GimmickRectDat, m_GimmickRectIdList ); - return m_GimmickRectIdList; -} -const std::set< uint32_t >& getGoldSaucerArcadeMachineIdList() -{ - if( m_GoldSaucerArcadeMachineIdList.size() == 0 ) - loadIdList( m_GoldSaucerArcadeMachineDat, m_GoldSaucerArcadeMachineIdList ); - return m_GoldSaucerArcadeMachineIdList; -} -const std::set< uint32_t >& getGoldSaucerTextDataIdList() -{ - if( m_GoldSaucerTextDataIdList.size() == 0 ) - loadIdList( m_GoldSaucerTextDataDat, m_GoldSaucerTextDataIdList ); - return m_GoldSaucerTextDataIdList; -} -const std::set< uint32_t >& getGrandCompanyIdList() -{ - if( m_GrandCompanyIdList.size() == 0 ) - loadIdList( m_GrandCompanyDat, m_GrandCompanyIdList ); - return m_GrandCompanyIdList; -} -const std::set< uint32_t >& getGrandCompanyRankIdList() -{ - if( m_GrandCompanyRankIdList.size() == 0 ) - loadIdList( m_GrandCompanyRankDat, m_GrandCompanyRankIdList ); - return m_GrandCompanyRankIdList; -} -const std::set< uint32_t >& getGroupPoseFrameIdList() -{ - if( m_GroupPoseFrameIdList.size() == 0 ) - loadIdList( m_GroupPoseFrameDat, m_GroupPoseFrameIdList ); - return m_GroupPoseFrameIdList; -} -const std::set< uint32_t >& getGroupPoseStampIdList() -{ - if( m_GroupPoseStampIdList.size() == 0 ) - loadIdList( m_GroupPoseStampDat, m_GroupPoseStampIdList ); - return m_GroupPoseStampIdList; -} -const std::set< uint32_t >& getGroupPoseStampCategoryIdList() -{ - if( m_GroupPoseStampCategoryIdList.size() == 0 ) - loadIdList( m_GroupPoseStampCategoryDat, m_GroupPoseStampCategoryIdList ); - return m_GroupPoseStampCategoryIdList; -} -const std::set< uint32_t >& getGuardianDeityIdList() -{ - if( m_GuardianDeityIdList.size() == 0 ) - loadIdList( m_GuardianDeityDat, m_GuardianDeityIdList ); - return m_GuardianDeityIdList; -} -const std::set< uint32_t >& getGuideIdList() -{ - if( m_GuideIdList.size() == 0 ) - loadIdList( m_GuideDat, m_GuideIdList ); - return m_GuideIdList; -} -const std::set< uint32_t >& getGuidePageIdList() -{ - if( m_GuidePageIdList.size() == 0 ) - loadIdList( m_GuidePageDat, m_GuidePageIdList ); - return m_GuidePageIdList; -} -const std::set< uint32_t >& getGuidePageStringIdList() -{ - if( m_GuidePageStringIdList.size() == 0 ) - loadIdList( m_GuidePageStringDat, m_GuidePageStringIdList ); - return m_GuidePageStringIdList; -} -const std::set< uint32_t >& getGuideTitleIdList() -{ - if( m_GuideTitleIdList.size() == 0 ) - loadIdList( m_GuideTitleDat, m_GuideTitleIdList ); - return m_GuideTitleIdList; -} -const std::set< uint32_t >& getGuildleveAssignmentIdList() -{ - if( m_GuildleveAssignmentIdList.size() == 0 ) - loadIdList( m_GuildleveAssignmentDat, m_GuildleveAssignmentIdList ); - return m_GuildleveAssignmentIdList; -} -const std::set< uint32_t >& getGuildleveAssignmentCategoryIdList() -{ - if( m_GuildleveAssignmentCategoryIdList.size() == 0 ) - loadIdList( m_GuildleveAssignmentCategoryDat, m_GuildleveAssignmentCategoryIdList ); - return m_GuildleveAssignmentCategoryIdList; -} -const std::set< uint32_t >& getGuildleveAssignmentTalkIdList() -{ - if( m_GuildleveAssignmentTalkIdList.size() == 0 ) - loadIdList( m_GuildleveAssignmentTalkDat, m_GuildleveAssignmentTalkIdList ); - return m_GuildleveAssignmentTalkIdList; -} -const std::set< uint32_t >& getGuildOrderIdList() -{ - if( m_GuildOrderIdList.size() == 0 ) - loadIdList( m_GuildOrderDat, m_GuildOrderIdList ); - return m_GuildOrderIdList; -} -const std::set< uint32_t >& getGuildOrderGuideIdList() -{ - if( m_GuildOrderGuideIdList.size() == 0 ) - loadIdList( m_GuildOrderGuideDat, m_GuildOrderGuideIdList ); - return m_GuildOrderGuideIdList; -} -const std::set< uint32_t >& getGuildOrderOfficerIdList() -{ - if( m_GuildOrderOfficerIdList.size() == 0 ) - loadIdList( m_GuildOrderOfficerDat, m_GuildOrderOfficerIdList ); - return m_GuildOrderOfficerIdList; -} -const std::set< uint32_t >& getHairMakeTypeIdList() -{ - if( m_HairMakeTypeIdList.size() == 0 ) - loadIdList( m_HairMakeTypeDat, m_HairMakeTypeIdList ); - return m_HairMakeTypeIdList; -} -const std::set< uint32_t >& getHouseRetainerPoseIdList() -{ - if( m_HouseRetainerPoseIdList.size() == 0 ) - loadIdList( m_HouseRetainerPoseDat, m_HouseRetainerPoseIdList ); - return m_HouseRetainerPoseIdList; -} -const std::set< uint32_t >& getHousingAethernetIdList() -{ - if( m_HousingAethernetIdList.size() == 0 ) - loadIdList( m_HousingAethernetDat, m_HousingAethernetIdList ); - return m_HousingAethernetIdList; -} -const std::set< uint32_t >& getHousingAppealIdList() -{ - if( m_HousingAppealIdList.size() == 0 ) - loadIdList( m_HousingAppealDat, m_HousingAppealIdList ); - return m_HousingAppealIdList; -} -const std::set< uint32_t >& getHousingEmploymentNpcListIdList() -{ - if( m_HousingEmploymentNpcListIdList.size() == 0 ) - loadIdList( m_HousingEmploymentNpcListDat, m_HousingEmploymentNpcListIdList ); - return m_HousingEmploymentNpcListIdList; -} -const std::set< uint32_t >& getHousingEmploymentNpcRaceIdList() -{ - if( m_HousingEmploymentNpcRaceIdList.size() == 0 ) - loadIdList( m_HousingEmploymentNpcRaceDat, m_HousingEmploymentNpcRaceIdList ); - return m_HousingEmploymentNpcRaceIdList; -} -const std::set< uint32_t >& getHousingExteriorIdList() -{ - if( m_HousingExteriorIdList.size() == 0 ) - loadIdList( m_HousingExteriorDat, m_HousingExteriorIdList ); - return m_HousingExteriorIdList; -} -const std::set< uint32_t >& getHousingFurnitureIdList() -{ - if( m_HousingFurnitureIdList.size() == 0 ) - loadIdList( m_HousingFurnitureDat, m_HousingFurnitureIdList ); - return m_HousingFurnitureIdList; -} -const std::set< uint32_t >& getHousingLandSetIdList() -{ - if( m_HousingLandSetIdList.size() == 0 ) - loadIdList( m_HousingLandSetDat, m_HousingLandSetIdList ); - return m_HousingLandSetIdList; -} -const std::set< uint32_t >& getHousingMapMarkerInfoIdList() -{ - if( m_HousingMapMarkerInfoIdList.size() == 0 ) - loadIdList( m_HousingMapMarkerInfoDat, m_HousingMapMarkerInfoIdList ); - return m_HousingMapMarkerInfoIdList; -} -const std::set< uint32_t >& getHousingMerchantPoseIdList() -{ - if( m_HousingMerchantPoseIdList.size() == 0 ) - loadIdList( m_HousingMerchantPoseDat, m_HousingMerchantPoseIdList ); - return m_HousingMerchantPoseIdList; -} -const std::set< uint32_t >& getHousingPlacementIdList() -{ - if( m_HousingPlacementIdList.size() == 0 ) - loadIdList( m_HousingPlacementDat, m_HousingPlacementIdList ); - return m_HousingPlacementIdList; -} -const std::set< uint32_t >& getHousingPresetIdList() -{ - if( m_HousingPresetIdList.size() == 0 ) - loadIdList( m_HousingPresetDat, m_HousingPresetIdList ); - return m_HousingPresetIdList; -} -const std::set< uint32_t >& getHousingUnitedExteriorIdList() -{ - if( m_HousingUnitedExteriorIdList.size() == 0 ) - loadIdList( m_HousingUnitedExteriorDat, m_HousingUnitedExteriorIdList ); - return m_HousingUnitedExteriorIdList; -} -const std::set< uint32_t >& getHousingYardObjectIdList() -{ - if( m_HousingYardObjectIdList.size() == 0 ) - loadIdList( m_HousingYardObjectDat, m_HousingYardObjectIdList ); - return m_HousingYardObjectIdList; -} -const std::set< uint32_t >& getHowToIdList() -{ - if( m_HowToIdList.size() == 0 ) - loadIdList( m_HowToDat, m_HowToIdList ); - return m_HowToIdList; -} -const std::set< uint32_t >& getHowToCategoryIdList() -{ - if( m_HowToCategoryIdList.size() == 0 ) - loadIdList( m_HowToCategoryDat, m_HowToCategoryIdList ); - return m_HowToCategoryIdList; -} -const std::set< uint32_t >& getHowToPageIdList() -{ - if( m_HowToPageIdList.size() == 0 ) - loadIdList( m_HowToPageDat, m_HowToPageIdList ); - return m_HowToPageIdList; -} -const std::set< uint32_t >& getHugeCraftworksNpcIdList() -{ - if( m_HugeCraftworksNpcIdList.size() == 0 ) - loadIdList( m_HugeCraftworksNpcDat, m_HugeCraftworksNpcIdList ); - return m_HugeCraftworksNpcIdList; -} -const std::set< uint32_t >& getHugeCraftworksRankIdList() -{ - if( m_HugeCraftworksRankIdList.size() == 0 ) - loadIdList( m_HugeCraftworksRankDat, m_HugeCraftworksRankIdList ); - return m_HugeCraftworksRankIdList; -} -const std::set< uint32_t >& getHWDAnnounceIdList() -{ - if( m_HWDAnnounceIdList.size() == 0 ) - loadIdList( m_HWDAnnounceDat, m_HWDAnnounceIdList ); - return m_HWDAnnounceIdList; -} -const std::set< uint32_t >& getHWDCrafterSupplyIdList() -{ - if( m_HWDCrafterSupplyIdList.size() == 0 ) - loadIdList( m_HWDCrafterSupplyDat, m_HWDCrafterSupplyIdList ); - return m_HWDCrafterSupplyIdList; -} -const std::set< uint32_t >& getHWDCrafterSupplyRewardIdList() -{ - if( m_HWDCrafterSupplyRewardIdList.size() == 0 ) - loadIdList( m_HWDCrafterSupplyRewardDat, m_HWDCrafterSupplyRewardIdList ); - return m_HWDCrafterSupplyRewardIdList; -} -const std::set< uint32_t >& getHWDCrafterSupplyTermIdList() -{ - if( m_HWDCrafterSupplyTermIdList.size() == 0 ) - loadIdList( m_HWDCrafterSupplyTermDat, m_HWDCrafterSupplyTermIdList ); - return m_HWDCrafterSupplyTermIdList; -} -const std::set< uint32_t >& getHWDDevLayerControlIdList() -{ - if( m_HWDDevLayerControlIdList.size() == 0 ) - loadIdList( m_HWDDevLayerControlDat, m_HWDDevLayerControlIdList ); - return m_HWDDevLayerControlIdList; -} -const std::set< uint32_t >& getHWDDevLevelUIIdList() -{ - if( m_HWDDevLevelUIIdList.size() == 0 ) - loadIdList( m_HWDDevLevelUIDat, m_HWDDevLevelUIIdList ); - return m_HWDDevLevelUIIdList; -} -const std::set< uint32_t >& getHWDDevLivelyIdList() -{ - if( m_HWDDevLivelyIdList.size() == 0 ) - loadIdList( m_HWDDevLivelyDat, m_HWDDevLivelyIdList ); - return m_HWDDevLivelyIdList; -} -const std::set< uint32_t >& getHWDDevProgressIdList() -{ - if( m_HWDDevProgressIdList.size() == 0 ) - loadIdList( m_HWDDevProgressDat, m_HWDDevProgressIdList ); - return m_HWDDevProgressIdList; -} -const std::set< uint32_t >& getHWDGathereInspectTermIdList() -{ - if( m_HWDGathereInspectTermIdList.size() == 0 ) - loadIdList( m_HWDGathereInspectTermDat, m_HWDGathereInspectTermIdList ); - return m_HWDGathereInspectTermIdList; -} -const std::set< uint32_t >& getHWDGathererInspectionIdList() -{ - if( m_HWDGathererInspectionIdList.size() == 0 ) - loadIdList( m_HWDGathererInspectionDat, m_HWDGathererInspectionIdList ); - return m_HWDGathererInspectionIdList; -} -const std::set< uint32_t >& getHWDGathererInspectionRewardIdList() -{ - if( m_HWDGathererInspectionRewardIdList.size() == 0 ) - loadIdList( m_HWDGathererInspectionRewardDat, m_HWDGathererInspectionRewardIdList ); - return m_HWDGathererInspectionRewardIdList; -} -const std::set< uint32_t >& getHWDInfoBoardArticleIdList() -{ - if( m_HWDInfoBoardArticleIdList.size() == 0 ) - loadIdList( m_HWDInfoBoardArticleDat, m_HWDInfoBoardArticleIdList ); - return m_HWDInfoBoardArticleIdList; -} -const std::set< uint32_t >& getHWDInfoBoardArticleTransientIdList() -{ - if( m_HWDInfoBoardArticleTransientIdList.size() == 0 ) - loadIdList( m_HWDInfoBoardArticleTransientDat, m_HWDInfoBoardArticleTransientIdList ); - return m_HWDInfoBoardArticleTransientIdList; -} -const std::set< uint32_t >& getHWDInfoBoardArticleTypeIdList() -{ - if( m_HWDInfoBoardArticleTypeIdList.size() == 0 ) - loadIdList( m_HWDInfoBoardArticleTypeDat, m_HWDInfoBoardArticleTypeIdList ); - return m_HWDInfoBoardArticleTypeIdList; -} -const std::set< uint32_t >& getHWDLevelChangeDeceptionIdList() -{ - if( m_HWDLevelChangeDeceptionIdList.size() == 0 ) - loadIdList( m_HWDLevelChangeDeceptionDat, m_HWDLevelChangeDeceptionIdList ); - return m_HWDLevelChangeDeceptionIdList; -} -const std::set< uint32_t >& getHWDSharedGroupIdList() -{ - if( m_HWDSharedGroupIdList.size() == 0 ) - loadIdList( m_HWDSharedGroupDat, m_HWDSharedGroupIdList ); - return m_HWDSharedGroupIdList; -} -const std::set< uint32_t >& getHWDSharedGroupControlParamIdList() -{ - if( m_HWDSharedGroupControlParamIdList.size() == 0 ) - loadIdList( m_HWDSharedGroupControlParamDat, m_HWDSharedGroupControlParamIdList ); - return m_HWDSharedGroupControlParamIdList; -} -const std::set< uint32_t >& getIKDContentBonusIdList() -{ - if( m_IKDContentBonusIdList.size() == 0 ) - loadIdList( m_IKDContentBonusDat, m_IKDContentBonusIdList ); - return m_IKDContentBonusIdList; -} -const std::set< uint32_t >& getIKDFishParamIdList() -{ - if( m_IKDFishParamIdList.size() == 0 ) - loadIdList( m_IKDFishParamDat, m_IKDFishParamIdList ); - return m_IKDFishParamIdList; -} -const std::set< uint32_t >& getIKDRouteIdList() -{ - if( m_IKDRouteIdList.size() == 0 ) - loadIdList( m_IKDRouteDat, m_IKDRouteIdList ); - return m_IKDRouteIdList; -} -const std::set< uint32_t >& getIKDRouteTableIdList() -{ - if( m_IKDRouteTableIdList.size() == 0 ) - loadIdList( m_IKDRouteTableDat, m_IKDRouteTableIdList ); - return m_IKDRouteTableIdList; -} -const std::set< uint32_t >& getIKDSpotIdList() -{ - if( m_IKDSpotIdList.size() == 0 ) - loadIdList( m_IKDSpotDat, m_IKDSpotIdList ); - return m_IKDSpotIdList; -} -const std::set< uint32_t >& getInclusionShopIdList() -{ - if( m_InclusionShopIdList.size() == 0 ) - loadIdList( m_InclusionShopDat, m_InclusionShopIdList ); - return m_InclusionShopIdList; -} -const std::set< uint32_t >& getInclusionShopCategoryIdList() -{ - if( m_InclusionShopCategoryIdList.size() == 0 ) - loadIdList( m_InclusionShopCategoryDat, m_InclusionShopCategoryIdList ); - return m_InclusionShopCategoryIdList; -} -const std::set< uint32_t >& getInclusionShopSeriesIdList() -{ - if( m_InclusionShopSeriesIdList.size() == 0 ) - loadIdList( m_InclusionShopSeriesDat, m_InclusionShopSeriesIdList ); - return m_InclusionShopSeriesIdList; -} -const std::set< uint32_t >& getIndividualWeatherIdList() -{ - if( m_IndividualWeatherIdList.size() == 0 ) - loadIdList( m_IndividualWeatherDat, m_IndividualWeatherIdList ); - return m_IndividualWeatherIdList; -} -const std::set< uint32_t >& getInstanceContentIdList() -{ - if( m_InstanceContentIdList.size() == 0 ) - loadIdList( m_InstanceContentDat, m_InstanceContentIdList ); - return m_InstanceContentIdList; -} -const std::set< uint32_t >& getInstanceContentBuffIdList() -{ - if( m_InstanceContentBuffIdList.size() == 0 ) - loadIdList( m_InstanceContentBuffDat, m_InstanceContentBuffIdList ); - return m_InstanceContentBuffIdList; -} -const std::set< uint32_t >& getInstanceContentCSBonusIdList() -{ - if( m_InstanceContentCSBonusIdList.size() == 0 ) - loadIdList( m_InstanceContentCSBonusDat, m_InstanceContentCSBonusIdList ); - return m_InstanceContentCSBonusIdList; -} -const std::set< uint32_t >& getInstanceContentGuideIdList() -{ - if( m_InstanceContentGuideIdList.size() == 0 ) - loadIdList( m_InstanceContentGuideDat, m_InstanceContentGuideIdList ); - return m_InstanceContentGuideIdList; -} -const std::set< uint32_t >& getInstanceContentTextDataIdList() -{ - if( m_InstanceContentTextDataIdList.size() == 0 ) - loadIdList( m_InstanceContentTextDataDat, m_InstanceContentTextDataIdList ); - return m_InstanceContentTextDataIdList; -} -const std::set< uint32_t >& getItemIdList() -{ - if( m_ItemIdList.size() == 0 ) - loadIdList( m_ItemDat, m_ItemIdList ); - return m_ItemIdList; -} -const std::set< uint32_t >& getItemActionIdList() -{ - if( m_ItemActionIdList.size() == 0 ) - loadIdList( m_ItemActionDat, m_ItemActionIdList ); - return m_ItemActionIdList; -} -const std::set< uint32_t >& getItemActionTelepoIdList() -{ - if( m_ItemActionTelepoIdList.size() == 0 ) - loadIdList( m_ItemActionTelepoDat, m_ItemActionTelepoIdList ); - return m_ItemActionTelepoIdList; -} -const std::set< uint32_t >& getItemBarterCheckIdList() -{ - if( m_ItemBarterCheckIdList.size() == 0 ) - loadIdList( m_ItemBarterCheckDat, m_ItemBarterCheckIdList ); - return m_ItemBarterCheckIdList; -} -const std::set< uint32_t >& getItemFoodIdList() -{ - if( m_ItemFoodIdList.size() == 0 ) - loadIdList( m_ItemFoodDat, m_ItemFoodIdList ); - return m_ItemFoodIdList; -} -const std::set< uint32_t >& getItemLevelIdList() -{ - if( m_ItemLevelIdList.size() == 0 ) - loadIdList( m_ItemLevelDat, m_ItemLevelIdList ); - return m_ItemLevelIdList; -} -const std::set< uint32_t >& getItemSearchCategoryIdList() -{ - if( m_ItemSearchCategoryIdList.size() == 0 ) - loadIdList( m_ItemSearchCategoryDat, m_ItemSearchCategoryIdList ); - return m_ItemSearchCategoryIdList; -} -const std::set< uint32_t >& getItemSeriesIdList() -{ - if( m_ItemSeriesIdList.size() == 0 ) - loadIdList( m_ItemSeriesDat, m_ItemSeriesIdList ); - return m_ItemSeriesIdList; -} -const std::set< uint32_t >& getItemSortCategoryIdList() -{ - if( m_ItemSortCategoryIdList.size() == 0 ) - loadIdList( m_ItemSortCategoryDat, m_ItemSortCategoryIdList ); - return m_ItemSortCategoryIdList; -} -const std::set< uint32_t >& getItemSpecialBonusIdList() -{ - if( m_ItemSpecialBonusIdList.size() == 0 ) - loadIdList( m_ItemSpecialBonusDat, m_ItemSpecialBonusIdList ); - return m_ItemSpecialBonusIdList; -} -const std::set< uint32_t >& getItemUICategoryIdList() -{ - if( m_ItemUICategoryIdList.size() == 0 ) - loadIdList( m_ItemUICategoryDat, m_ItemUICategoryIdList ); - return m_ItemUICategoryIdList; -} -const std::set< uint32_t >& getJingleIdList() -{ - if( m_JingleIdList.size() == 0 ) - loadIdList( m_JingleDat, m_JingleIdList ); - return m_JingleIdList; -} -const std::set< uint32_t >& getJobHudManualIdList() -{ - if( m_JobHudManualIdList.size() == 0 ) - loadIdList( m_JobHudManualDat, m_JobHudManualIdList ); - return m_JobHudManualIdList; -} -const std::set< uint32_t >& getJobHudManualPriorityIdList() -{ - if( m_JobHudManualPriorityIdList.size() == 0 ) - loadIdList( m_JobHudManualPriorityDat, m_JobHudManualPriorityIdList ); - return m_JobHudManualPriorityIdList; -} -const std::set< uint32_t >& getJournalCategoryIdList() -{ - if( m_JournalCategoryIdList.size() == 0 ) - loadIdList( m_JournalCategoryDat, m_JournalCategoryIdList ); - return m_JournalCategoryIdList; -} -const std::set< uint32_t >& getJournalGenreIdList() -{ - if( m_JournalGenreIdList.size() == 0 ) - loadIdList( m_JournalGenreDat, m_JournalGenreIdList ); - return m_JournalGenreIdList; -} -const std::set< uint32_t >& getJournalSectionIdList() -{ - if( m_JournalSectionIdList.size() == 0 ) - loadIdList( m_JournalSectionDat, m_JournalSectionIdList ); - return m_JournalSectionIdList; -} -const std::set< uint32_t >& getKnockbackIdList() -{ - if( m_KnockbackIdList.size() == 0 ) - loadIdList( m_KnockbackDat, m_KnockbackIdList ); - return m_KnockbackIdList; -} -const std::set< uint32_t >& getLegacyQuestIdList() -{ - if( m_LegacyQuestIdList.size() == 0 ) - loadIdList( m_LegacyQuestDat, m_LegacyQuestIdList ); - return m_LegacyQuestIdList; -} -const std::set< uint32_t >& getLeveIdList() -{ - if( m_LeveIdList.size() == 0 ) - loadIdList( m_LeveDat, m_LeveIdList ); - return m_LeveIdList; -} -const std::set< uint32_t >& getLeveAssignmentTypeIdList() -{ - if( m_LeveAssignmentTypeIdList.size() == 0 ) - loadIdList( m_LeveAssignmentTypeDat, m_LeveAssignmentTypeIdList ); - return m_LeveAssignmentTypeIdList; -} -const std::set< uint32_t >& getLeveClientIdList() -{ - if( m_LeveClientIdList.size() == 0 ) - loadIdList( m_LeveClientDat, m_LeveClientIdList ); - return m_LeveClientIdList; -} -const std::set< uint32_t >& getLevelIdList() -{ - if( m_LevelIdList.size() == 0 ) - loadIdList( m_LevelDat, m_LevelIdList ); - return m_LevelIdList; -} -const std::set< uint32_t >& getLeveRewardItemIdList() -{ - if( m_LeveRewardItemIdList.size() == 0 ) - loadIdList( m_LeveRewardItemDat, m_LeveRewardItemIdList ); - return m_LeveRewardItemIdList; -} -const std::set< uint32_t >& getLeveRewardItemGroupIdList() -{ - if( m_LeveRewardItemGroupIdList.size() == 0 ) - loadIdList( m_LeveRewardItemGroupDat, m_LeveRewardItemGroupIdList ); - return m_LeveRewardItemGroupIdList; -} -const std::set< uint32_t >& getLeveStringIdList() -{ - if( m_LeveStringIdList.size() == 0 ) - loadIdList( m_LeveStringDat, m_LeveStringIdList ); - return m_LeveStringIdList; -} -const std::set< uint32_t >& getLeveVfxIdList() -{ - if( m_LeveVfxIdList.size() == 0 ) - loadIdList( m_LeveVfxDat, m_LeveVfxIdList ); - return m_LeveVfxIdList; -} -const std::set< uint32_t >& getLobbyIdList() -{ - if( m_LobbyIdList.size() == 0 ) - loadIdList( m_LobbyDat, m_LobbyIdList ); - return m_LobbyIdList; -} -const std::set< uint32_t >& getLogFilterIdList() -{ - if( m_LogFilterIdList.size() == 0 ) - loadIdList( m_LogFilterDat, m_LogFilterIdList ); - return m_LogFilterIdList; -} -const std::set< uint32_t >& getLogKindIdList() -{ - if( m_LogKindIdList.size() == 0 ) - loadIdList( m_LogKindDat, m_LogKindIdList ); - return m_LogKindIdList; -} -const std::set< uint32_t >& getLogMessageIdList() -{ - if( m_LogMessageIdList.size() == 0 ) - loadIdList( m_LogMessageDat, m_LogMessageIdList ); - return m_LogMessageIdList; -} -const std::set< uint32_t >& getLotteryExchangeShopIdList() -{ - if( m_LotteryExchangeShopIdList.size() == 0 ) - loadIdList( m_LotteryExchangeShopDat, m_LotteryExchangeShopIdList ); - return m_LotteryExchangeShopIdList; -} -const std::set< uint32_t >& getMacroIconIdList() -{ - if( m_MacroIconIdList.size() == 0 ) - loadIdList( m_MacroIconDat, m_MacroIconIdList ); - return m_MacroIconIdList; -} -const std::set< uint32_t >& getMacroIconRedirectOldIdList() -{ - if( m_MacroIconRedirectOldIdList.size() == 0 ) - loadIdList( m_MacroIconRedirectOldDat, m_MacroIconRedirectOldIdList ); - return m_MacroIconRedirectOldIdList; -} -const std::set< uint32_t >& getMainCommandIdList() -{ - if( m_MainCommandIdList.size() == 0 ) - loadIdList( m_MainCommandDat, m_MainCommandIdList ); - return m_MainCommandIdList; -} -const std::set< uint32_t >& getMainCommandCategoryIdList() -{ - if( m_MainCommandCategoryIdList.size() == 0 ) - loadIdList( m_MainCommandCategoryDat, m_MainCommandCategoryIdList ); - return m_MainCommandCategoryIdList; -} -const std::set< uint32_t >& getManeuversArmorIdList() -{ - if( m_ManeuversArmorIdList.size() == 0 ) - loadIdList( m_ManeuversArmorDat, m_ManeuversArmorIdList ); - return m_ManeuversArmorIdList; -} -const std::set< uint32_t >& getMapIdList() -{ - if( m_MapIdList.size() == 0 ) - loadIdList( m_MapDat, m_MapIdList ); - return m_MapIdList; -} -const std::set< uint32_t >& getMapConditionIdList() -{ - if( m_MapConditionIdList.size() == 0 ) - loadIdList( m_MapConditionDat, m_MapConditionIdList ); - return m_MapConditionIdList; -} -const std::set< uint32_t >& getMapMarkerIdList() -{ - if( m_MapMarkerIdList.size() == 0 ) - loadIdList( m_MapMarkerDat, m_MapMarkerIdList ); - return m_MapMarkerIdList; -} -const std::set< uint32_t >& getMapMarkerRegionIdList() -{ - if( m_MapMarkerRegionIdList.size() == 0 ) - loadIdList( m_MapMarkerRegionDat, m_MapMarkerRegionIdList ); - return m_MapMarkerRegionIdList; -} -const std::set< uint32_t >& getMapSymbolIdList() -{ - if( m_MapSymbolIdList.size() == 0 ) - loadIdList( m_MapSymbolDat, m_MapSymbolIdList ); - return m_MapSymbolIdList; -} -const std::set< uint32_t >& getMarkerIdList() -{ - if( m_MarkerIdList.size() == 0 ) - loadIdList( m_MarkerDat, m_MarkerIdList ); - return m_MarkerIdList; -} -const std::set< uint32_t >& getMateriaIdList() -{ - if( m_MateriaIdList.size() == 0 ) - loadIdList( m_MateriaDat, m_MateriaIdList ); - return m_MateriaIdList; -} -const std::set< uint32_t >& getMateriaJoinRateIdList() -{ - if( m_MateriaJoinRateIdList.size() == 0 ) - loadIdList( m_MateriaJoinRateDat, m_MateriaJoinRateIdList ); - return m_MateriaJoinRateIdList; -} -const std::set< uint32_t >& getMateriaJoinRateGatherCraftIdList() -{ - if( m_MateriaJoinRateGatherCraftIdList.size() == 0 ) - loadIdList( m_MateriaJoinRateGatherCraftDat, m_MateriaJoinRateGatherCraftIdList ); - return m_MateriaJoinRateGatherCraftIdList; -} -const std::set< uint32_t >& getMateriaTomestoneRateIdList() -{ - if( m_MateriaTomestoneRateIdList.size() == 0 ) - loadIdList( m_MateriaTomestoneRateDat, m_MateriaTomestoneRateIdList ); - return m_MateriaTomestoneRateIdList; -} -const std::set< uint32_t >& getMiniGameRAIdList() -{ - if( m_MiniGameRAIdList.size() == 0 ) - loadIdList( m_MiniGameRADat, m_MiniGameRAIdList ); - return m_MiniGameRAIdList; -} -const std::set< uint32_t >& getMinionRaceIdList() -{ - if( m_MinionRaceIdList.size() == 0 ) - loadIdList( m_MinionRaceDat, m_MinionRaceIdList ); - return m_MinionRaceIdList; -} -const std::set< uint32_t >& getMinionRulesIdList() -{ - if( m_MinionRulesIdList.size() == 0 ) - loadIdList( m_MinionRulesDat, m_MinionRulesIdList ); - return m_MinionRulesIdList; -} -const std::set< uint32_t >& getMinionSkillTypeIdList() -{ - if( m_MinionSkillTypeIdList.size() == 0 ) - loadIdList( m_MinionSkillTypeDat, m_MinionSkillTypeIdList ); - return m_MinionSkillTypeIdList; -} -const std::set< uint32_t >& getMobHuntOrderIdList() -{ - if( m_MobHuntOrderIdList.size() == 0 ) - loadIdList( m_MobHuntOrderDat, m_MobHuntOrderIdList ); - return m_MobHuntOrderIdList; -} -const std::set< uint32_t >& getMobHuntOrderTypeIdList() -{ - if( m_MobHuntOrderTypeIdList.size() == 0 ) - loadIdList( m_MobHuntOrderTypeDat, m_MobHuntOrderTypeIdList ); - return m_MobHuntOrderTypeIdList; -} -const std::set< uint32_t >& getMobHuntRewardIdList() -{ - if( m_MobHuntRewardIdList.size() == 0 ) - loadIdList( m_MobHuntRewardDat, m_MobHuntRewardIdList ); - return m_MobHuntRewardIdList; -} -const std::set< uint32_t >& getMobHuntRewardCapIdList() -{ - if( m_MobHuntRewardCapIdList.size() == 0 ) - loadIdList( m_MobHuntRewardCapDat, m_MobHuntRewardCapIdList ); - return m_MobHuntRewardCapIdList; -} -const std::set< uint32_t >& getMobHuntTargetIdList() -{ - if( m_MobHuntTargetIdList.size() == 0 ) - loadIdList( m_MobHuntTargetDat, m_MobHuntTargetIdList ); - return m_MobHuntTargetIdList; -} -const std::set< uint32_t >& getModelCharaIdList() -{ - if( m_ModelCharaIdList.size() == 0 ) - loadIdList( m_ModelCharaDat, m_ModelCharaIdList ); - return m_ModelCharaIdList; -} -const std::set< uint32_t >& getModelSkeletonIdList() -{ - if( m_ModelSkeletonIdList.size() == 0 ) - loadIdList( m_ModelSkeletonDat, m_ModelSkeletonIdList ); - return m_ModelSkeletonIdList; -} -const std::set< uint32_t >& getModelStateIdList() -{ - if( m_ModelStateIdList.size() == 0 ) - loadIdList( m_ModelStateDat, m_ModelStateIdList ); - return m_ModelStateIdList; -} -const std::set< uint32_t >& getMonsterNoteIdList() -{ - if( m_MonsterNoteIdList.size() == 0 ) - loadIdList( m_MonsterNoteDat, m_MonsterNoteIdList ); - return m_MonsterNoteIdList; -} -const std::set< uint32_t >& getMonsterNoteTargetIdList() -{ - if( m_MonsterNoteTargetIdList.size() == 0 ) - loadIdList( m_MonsterNoteTargetDat, m_MonsterNoteTargetIdList ); - return m_MonsterNoteTargetIdList; -} -const std::set< uint32_t >& getMotionTimelineIdList() -{ - if( m_MotionTimelineIdList.size() == 0 ) - loadIdList( m_MotionTimelineDat, m_MotionTimelineIdList ); - return m_MotionTimelineIdList; -} -const std::set< uint32_t >& getMotionTimelineBlendTableIdList() -{ - if( m_MotionTimelineBlendTableIdList.size() == 0 ) - loadIdList( m_MotionTimelineBlendTableDat, m_MotionTimelineBlendTableIdList ); - return m_MotionTimelineBlendTableIdList; -} -const std::set< uint32_t >& getMountIdList() -{ - if( m_MountIdList.size() == 0 ) - loadIdList( m_MountDat, m_MountIdList ); - return m_MountIdList; -} -const std::set< uint32_t >& getMountActionIdList() -{ - if( m_MountActionIdList.size() == 0 ) - loadIdList( m_MountActionDat, m_MountActionIdList ); - return m_MountActionIdList; -} -const std::set< uint32_t >& getMountCustomizeIdList() -{ - if( m_MountCustomizeIdList.size() == 0 ) - loadIdList( m_MountCustomizeDat, m_MountCustomizeIdList ); - return m_MountCustomizeIdList; -} -const std::set< uint32_t >& getMountFlyingConditionIdList() -{ - if( m_MountFlyingConditionIdList.size() == 0 ) - loadIdList( m_MountFlyingConditionDat, m_MountFlyingConditionIdList ); - return m_MountFlyingConditionIdList; -} -const std::set< uint32_t >& getMountSpeedIdList() -{ - if( m_MountSpeedIdList.size() == 0 ) - loadIdList( m_MountSpeedDat, m_MountSpeedIdList ); - return m_MountSpeedIdList; -} -const std::set< uint32_t >& getMountTransientIdList() -{ - if( m_MountTransientIdList.size() == 0 ) - loadIdList( m_MountTransientDat, m_MountTransientIdList ); - return m_MountTransientIdList; -} -const std::set< uint32_t >& getMoveTimelineIdList() -{ - if( m_MoveTimelineIdList.size() == 0 ) - loadIdList( m_MoveTimelineDat, m_MoveTimelineIdList ); - return m_MoveTimelineIdList; -} -const std::set< uint32_t >& getMoveVfxIdList() -{ - if( m_MoveVfxIdList.size() == 0 ) - loadIdList( m_MoveVfxDat, m_MoveVfxIdList ); - return m_MoveVfxIdList; -} -const std::set< uint32_t >& getMovieStaffListIdList() -{ - if( m_MovieStaffListIdList.size() == 0 ) - loadIdList( m_MovieStaffListDat, m_MovieStaffListIdList ); - return m_MovieStaffListIdList; -} -const std::set< uint32_t >& getMovieSubtitleIdList() -{ - if( m_MovieSubtitleIdList.size() == 0 ) - loadIdList( m_MovieSubtitleDat, m_MovieSubtitleIdList ); - return m_MovieSubtitleIdList; -} -const std::set< uint32_t >& getMovieSubtitle500IdList() -{ - if( m_MovieSubtitle500IdList.size() == 0 ) - loadIdList( m_MovieSubtitle500Dat, m_MovieSubtitle500IdList ); - return m_MovieSubtitle500IdList; -} -const std::set< uint32_t >& getMovieSubtitleVoyageIdList() -{ - if( m_MovieSubtitleVoyageIdList.size() == 0 ) - loadIdList( m_MovieSubtitleVoyageDat, m_MovieSubtitleVoyageIdList ); - return m_MovieSubtitleVoyageIdList; -} -const std::set< uint32_t >& getMYCTemporaryItemIdList() -{ - if( m_MYCTemporaryItemIdList.size() == 0 ) - loadIdList( m_MYCTemporaryItemDat, m_MYCTemporaryItemIdList ); - return m_MYCTemporaryItemIdList; -} -const std::set< uint32_t >& getMYCTemporaryItemUICategoryIdList() -{ - if( m_MYCTemporaryItemUICategoryIdList.size() == 0 ) - loadIdList( m_MYCTemporaryItemUICategoryDat, m_MYCTemporaryItemUICategoryIdList ); - return m_MYCTemporaryItemUICategoryIdList; -} -const std::set< uint32_t >& getMYCWarResultNotebookIdList() -{ - if( m_MYCWarResultNotebookIdList.size() == 0 ) - loadIdList( m_MYCWarResultNotebookDat, m_MYCWarResultNotebookIdList ); - return m_MYCWarResultNotebookIdList; -} -const std::set< uint32_t >& getNotebookDivisionIdList() -{ - if( m_NotebookDivisionIdList.size() == 0 ) - loadIdList( m_NotebookDivisionDat, m_NotebookDivisionIdList ); - return m_NotebookDivisionIdList; -} -const std::set< uint32_t >& getNotebookDivisionCategoryIdList() -{ - if( m_NotebookDivisionCategoryIdList.size() == 0 ) - loadIdList( m_NotebookDivisionCategoryDat, m_NotebookDivisionCategoryIdList ); - return m_NotebookDivisionCategoryIdList; -} -const std::set< uint32_t >& getNotoriousMonsterIdList() -{ - if( m_NotoriousMonsterIdList.size() == 0 ) - loadIdList( m_NotoriousMonsterDat, m_NotoriousMonsterIdList ); - return m_NotoriousMonsterIdList; -} -const std::set< uint32_t >& getNpcEquipIdList() -{ - if( m_NpcEquipIdList.size() == 0 ) - loadIdList( m_NpcEquipDat, m_NpcEquipIdList ); - return m_NpcEquipIdList; -} -const std::set< uint32_t >& getNpcYellIdList() -{ - if( m_NpcYellIdList.size() == 0 ) - loadIdList( m_NpcYellDat, m_NpcYellIdList ); - return m_NpcYellIdList; -} -const std::set< uint32_t >& getOmenIdList() -{ - if( m_OmenIdList.size() == 0 ) - loadIdList( m_OmenDat, m_OmenIdList ); - return m_OmenIdList; -} -const std::set< uint32_t >& getOnlineStatusIdList() -{ - if( m_OnlineStatusIdList.size() == 0 ) - loadIdList( m_OnlineStatusDat, m_OnlineStatusIdList ); - return m_OnlineStatusIdList; -} -const std::set< uint32_t >& getOpenContentIdList() -{ - if( m_OpenContentIdList.size() == 0 ) - loadIdList( m_OpenContentDat, m_OpenContentIdList ); - return m_OpenContentIdList; -} -const std::set< uint32_t >& getOpenContentCandidateNameIdList() -{ - if( m_OpenContentCandidateNameIdList.size() == 0 ) - loadIdList( m_OpenContentCandidateNameDat, m_OpenContentCandidateNameIdList ); - return m_OpenContentCandidateNameIdList; -} -const std::set< uint32_t >& getOpeningIdList() -{ - if( m_OpeningIdList.size() == 0 ) - loadIdList( m_OpeningDat, m_OpeningIdList ); - return m_OpeningIdList; -} -const std::set< uint32_t >& getOrchestrionIdList() -{ - if( m_OrchestrionIdList.size() == 0 ) - loadIdList( m_OrchestrionDat, m_OrchestrionIdList ); - return m_OrchestrionIdList; -} -const std::set< uint32_t >& getOrchestrionCategoryIdList() -{ - if( m_OrchestrionCategoryIdList.size() == 0 ) - loadIdList( m_OrchestrionCategoryDat, m_OrchestrionCategoryIdList ); - return m_OrchestrionCategoryIdList; -} -const std::set< uint32_t >& getOrchestrionPathIdList() -{ - if( m_OrchestrionPathIdList.size() == 0 ) - loadIdList( m_OrchestrionPathDat, m_OrchestrionPathIdList ); - return m_OrchestrionPathIdList; -} -const std::set< uint32_t >& getOrchestrionUiparamIdList() -{ - if( m_OrchestrionUiparamIdList.size() == 0 ) - loadIdList( m_OrchestrionUiparamDat, m_OrchestrionUiparamIdList ); - return m_OrchestrionUiparamIdList; -} -const std::set< uint32_t >& getOrnamentIdList() -{ - if( m_OrnamentIdList.size() == 0 ) - loadIdList( m_OrnamentDat, m_OrnamentIdList ); - return m_OrnamentIdList; -} -const std::set< uint32_t >& getParamGrowIdList() -{ - if( m_ParamGrowIdList.size() == 0 ) - loadIdList( m_ParamGrowDat, m_ParamGrowIdList ); - return m_ParamGrowIdList; -} -const std::set< uint32_t >& getPartyContentIdList() -{ - if( m_PartyContentIdList.size() == 0 ) - loadIdList( m_PartyContentDat, m_PartyContentIdList ); - return m_PartyContentIdList; -} -const std::set< uint32_t >& getPartyContentCutsceneIdList() -{ - if( m_PartyContentCutsceneIdList.size() == 0 ) - loadIdList( m_PartyContentCutsceneDat, m_PartyContentCutsceneIdList ); - return m_PartyContentCutsceneIdList; -} -const std::set< uint32_t >& getPartyContentTextDataIdList() -{ - if( m_PartyContentTextDataIdList.size() == 0 ) - loadIdList( m_PartyContentTextDataDat, m_PartyContentTextDataIdList ); - return m_PartyContentTextDataIdList; -} -const std::set< uint32_t >& getPatchMarkIdList() -{ - if( m_PatchMarkIdList.size() == 0 ) - loadIdList( m_PatchMarkDat, m_PatchMarkIdList ); - return m_PatchMarkIdList; -} -const std::set< uint32_t >& getPerformIdList() -{ - if( m_PerformIdList.size() == 0 ) - loadIdList( m_PerformDat, m_PerformIdList ); - return m_PerformIdList; -} -const std::set< uint32_t >& getPerformGroupIdList() -{ - if( m_PerformGroupIdList.size() == 0 ) - loadIdList( m_PerformGroupDat, m_PerformGroupIdList ); - return m_PerformGroupIdList; -} -const std::set< uint32_t >& getPerformTransientIdList() -{ - if( m_PerformTransientIdList.size() == 0 ) - loadIdList( m_PerformTransientDat, m_PerformTransientIdList ); - return m_PerformTransientIdList; -} -const std::set< uint32_t >& getPetIdList() -{ - if( m_PetIdList.size() == 0 ) - loadIdList( m_PetDat, m_PetIdList ); - return m_PetIdList; -} -const std::set< uint32_t >& getPetActionIdList() -{ - if( m_PetActionIdList.size() == 0 ) - loadIdList( m_PetActionDat, m_PetActionIdList ); - return m_PetActionIdList; -} -const std::set< uint32_t >& getPetMirageIdList() -{ - if( m_PetMirageIdList.size() == 0 ) - loadIdList( m_PetMirageDat, m_PetMirageIdList ); - return m_PetMirageIdList; -} -const std::set< uint32_t >& getPhysicsGroupIdList() -{ - if( m_PhysicsGroupIdList.size() == 0 ) - loadIdList( m_PhysicsGroupDat, m_PhysicsGroupIdList ); - return m_PhysicsGroupIdList; -} -const std::set< uint32_t >& getPhysicsWindIdList() -{ - if( m_PhysicsWindIdList.size() == 0 ) - loadIdList( m_PhysicsWindDat, m_PhysicsWindIdList ); - return m_PhysicsWindIdList; -} -const std::set< uint32_t >& getPictureIdList() -{ - if( m_PictureIdList.size() == 0 ) - loadIdList( m_PictureDat, m_PictureIdList ); - return m_PictureIdList; -} -const std::set< uint32_t >& getPlaceNameIdList() -{ - if( m_PlaceNameIdList.size() == 0 ) - loadIdList( m_PlaceNameDat, m_PlaceNameIdList ); - return m_PlaceNameIdList; -} -const std::set< uint32_t >& getPlantPotFlowerSeedIdList() -{ - if( m_PlantPotFlowerSeedIdList.size() == 0 ) - loadIdList( m_PlantPotFlowerSeedDat, m_PlantPotFlowerSeedIdList ); - return m_PlantPotFlowerSeedIdList; -} -const std::set< uint32_t >& getPreHandlerIdList() -{ - if( m_PreHandlerIdList.size() == 0 ) - loadIdList( m_PreHandlerDat, m_PreHandlerIdList ); - return m_PreHandlerIdList; -} -const std::set< uint32_t >& getPresetCameraIdList() -{ - if( m_PresetCameraIdList.size() == 0 ) - loadIdList( m_PresetCameraDat, m_PresetCameraIdList ); - return m_PresetCameraIdList; -} -const std::set< uint32_t >& getPresetCameraAdjustIdList() -{ - if( m_PresetCameraAdjustIdList.size() == 0 ) - loadIdList( m_PresetCameraAdjustDat, m_PresetCameraAdjustIdList ); - return m_PresetCameraAdjustIdList; -} -const std::set< uint32_t >& getPublicContentIdList() -{ - if( m_PublicContentIdList.size() == 0 ) - loadIdList( m_PublicContentDat, m_PublicContentIdList ); - return m_PublicContentIdList; -} -const std::set< uint32_t >& getPublicContentCutsceneIdList() -{ - if( m_PublicContentCutsceneIdList.size() == 0 ) - loadIdList( m_PublicContentCutsceneDat, m_PublicContentCutsceneIdList ); - return m_PublicContentCutsceneIdList; -} -const std::set< uint32_t >& getPublicContentTextDataIdList() -{ - if( m_PublicContentTextDataIdList.size() == 0 ) - loadIdList( m_PublicContentTextDataDat, m_PublicContentTextDataIdList ); - return m_PublicContentTextDataIdList; -} -const std::set< uint32_t >& getPvPActionIdList() -{ - if( m_PvPActionIdList.size() == 0 ) - loadIdList( m_PvPActionDat, m_PvPActionIdList ); - return m_PvPActionIdList; -} -const std::set< uint32_t >& getPvPActionSortIdList() -{ - if( m_PvPActionSortIdList.size() == 0 ) - loadIdList( m_PvPActionSortDat, m_PvPActionSortIdList ); - return m_PvPActionSortIdList; -} -const std::set< uint32_t >& getPvPRankIdList() -{ - if( m_PvPRankIdList.size() == 0 ) - loadIdList( m_PvPRankDat, m_PvPRankIdList ); - return m_PvPRankIdList; -} -const std::set< uint32_t >& getPvPSelectTraitIdList() -{ - if( m_PvPSelectTraitIdList.size() == 0 ) - loadIdList( m_PvPSelectTraitDat, m_PvPSelectTraitIdList ); - return m_PvPSelectTraitIdList; -} -const std::set< uint32_t >& getPvPTraitIdList() -{ - if( m_PvPTraitIdList.size() == 0 ) - loadIdList( m_PvPTraitDat, m_PvPTraitIdList ); - return m_PvPTraitIdList; -} -const std::set< uint32_t >& getQuestIdList() -{ - if( m_QuestIdList.size() == 0 ) - loadIdList( m_QuestDat, m_QuestIdList ); - return m_QuestIdList; -} -const std::set< uint32_t >& getQuestAcceptAdditionConditionIdList() -{ - if( m_QuestAcceptAdditionConditionIdList.size() == 0 ) - loadIdList( m_QuestAcceptAdditionConditionDat, m_QuestAcceptAdditionConditionIdList ); - return m_QuestAcceptAdditionConditionIdList; -} -const std::set< uint32_t >& getQuestBattleIdList() -{ - if( m_QuestBattleIdList.size() == 0 ) - loadIdList( m_QuestBattleDat, m_QuestBattleIdList ); - return m_QuestBattleIdList; -} -const std::set< uint32_t >& getQuestChapterIdList() -{ - if( m_QuestChapterIdList.size() == 0 ) - loadIdList( m_QuestChapterDat, m_QuestChapterIdList ); - return m_QuestChapterIdList; -} -const std::set< uint32_t >& getQuestClassJobRewardIdList() -{ - if( m_QuestClassJobRewardIdList.size() == 0 ) - loadIdList( m_QuestClassJobRewardDat, m_QuestClassJobRewardIdList ); - return m_QuestClassJobRewardIdList; -} -const std::set< uint32_t >& getQuestClassJobSupplyIdList() -{ - if( m_QuestClassJobSupplyIdList.size() == 0 ) - loadIdList( m_QuestClassJobSupplyDat, m_QuestClassJobSupplyIdList ); - return m_QuestClassJobSupplyIdList; -} -const std::set< uint32_t >& getQuestDerivedClassIdList() -{ - if( m_QuestDerivedClassIdList.size() == 0 ) - loadIdList( m_QuestDerivedClassDat, m_QuestDerivedClassIdList ); - return m_QuestDerivedClassIdList; -} -const std::set< uint32_t >& getQuestEffectIdList() -{ - if( m_QuestEffectIdList.size() == 0 ) - loadIdList( m_QuestEffectDat, m_QuestEffectIdList ); - return m_QuestEffectIdList; -} -const std::set< uint32_t >& getQuestEffectDefineIdList() -{ - if( m_QuestEffectDefineIdList.size() == 0 ) - loadIdList( m_QuestEffectDefineDat, m_QuestEffectDefineIdList ); - return m_QuestEffectDefineIdList; -} -const std::set< uint32_t >& getQuestRedoIdList() -{ - if( m_QuestRedoIdList.size() == 0 ) - loadIdList( m_QuestRedoDat, m_QuestRedoIdList ); - return m_QuestRedoIdList; -} -const std::set< uint32_t >& getQuestRedoChapterUIIdList() -{ - if( m_QuestRedoChapterUIIdList.size() == 0 ) - loadIdList( m_QuestRedoChapterUIDat, m_QuestRedoChapterUIIdList ); - return m_QuestRedoChapterUIIdList; -} -const std::set< uint32_t >& getQuestRedoChapterUICategoryIdList() -{ - if( m_QuestRedoChapterUICategoryIdList.size() == 0 ) - loadIdList( m_QuestRedoChapterUICategoryDat, m_QuestRedoChapterUICategoryIdList ); - return m_QuestRedoChapterUICategoryIdList; -} -const std::set< uint32_t >& getQuestRedoChapterUITabIdList() -{ - if( m_QuestRedoChapterUITabIdList.size() == 0 ) - loadIdList( m_QuestRedoChapterUITabDat, m_QuestRedoChapterUITabIdList ); - return m_QuestRedoChapterUITabIdList; -} -const std::set< uint32_t >& getQuestRedoIncompChapterIdList() -{ - if( m_QuestRedoIncompChapterIdList.size() == 0 ) - loadIdList( m_QuestRedoIncompChapterDat, m_QuestRedoIncompChapterIdList ); - return m_QuestRedoIncompChapterIdList; -} -const std::set< uint32_t >& getQuestRepeatFlagIdList() -{ - if( m_QuestRepeatFlagIdList.size() == 0 ) - loadIdList( m_QuestRepeatFlagDat, m_QuestRepeatFlagIdList ); - return m_QuestRepeatFlagIdList; -} -const std::set< uint32_t >& getQuestRewardOtherIdList() -{ - if( m_QuestRewardOtherIdList.size() == 0 ) - loadIdList( m_QuestRewardOtherDat, m_QuestRewardOtherIdList ); - return m_QuestRewardOtherIdList; -} -const std::set< uint32_t >& getQuickChatIdList() -{ - if( m_QuickChatIdList.size() == 0 ) - loadIdList( m_QuickChatDat, m_QuickChatIdList ); - return m_QuickChatIdList; -} -const std::set< uint32_t >& getQuickChatTransientIdList() -{ - if( m_QuickChatTransientIdList.size() == 0 ) - loadIdList( m_QuickChatTransientDat, m_QuickChatTransientIdList ); - return m_QuickChatTransientIdList; -} -const std::set< uint32_t >& getRaceIdList() -{ - if( m_RaceIdList.size() == 0 ) - loadIdList( m_RaceDat, m_RaceIdList ); - return m_RaceIdList; -} -const std::set< uint32_t >& getRacingChocoboItemIdList() -{ - if( m_RacingChocoboItemIdList.size() == 0 ) - loadIdList( m_RacingChocoboItemDat, m_RacingChocoboItemIdList ); - return m_RacingChocoboItemIdList; -} -const std::set< uint32_t >& getRacingChocoboNameIdList() -{ - if( m_RacingChocoboNameIdList.size() == 0 ) - loadIdList( m_RacingChocoboNameDat, m_RacingChocoboNameIdList ); - return m_RacingChocoboNameIdList; -} -const std::set< uint32_t >& getRacingChocoboNameCategoryIdList() -{ - if( m_RacingChocoboNameCategoryIdList.size() == 0 ) - loadIdList( m_RacingChocoboNameCategoryDat, m_RacingChocoboNameCategoryIdList ); - return m_RacingChocoboNameCategoryIdList; -} -const std::set< uint32_t >& getRacingChocoboNameInfoIdList() -{ - if( m_RacingChocoboNameInfoIdList.size() == 0 ) - loadIdList( m_RacingChocoboNameInfoDat, m_RacingChocoboNameInfoIdList ); - return m_RacingChocoboNameInfoIdList; -} -const std::set< uint32_t >& getRacingChocoboParamIdList() -{ - if( m_RacingChocoboParamIdList.size() == 0 ) - loadIdList( m_RacingChocoboParamDat, m_RacingChocoboParamIdList ); - return m_RacingChocoboParamIdList; -} -const std::set< uint32_t >& getRecastNavimeshIdList() -{ - if( m_RecastNavimeshIdList.size() == 0 ) - loadIdList( m_RecastNavimeshDat, m_RecastNavimeshIdList ); - return m_RecastNavimeshIdList; -} -const std::set< uint32_t >& getRecipeIdList() -{ - if( m_RecipeIdList.size() == 0 ) - loadIdList( m_RecipeDat, m_RecipeIdList ); - return m_RecipeIdList; -} -const std::set< uint32_t >& getRecipeLevelTableIdList() -{ - if( m_RecipeLevelTableIdList.size() == 0 ) - loadIdList( m_RecipeLevelTableDat, m_RecipeLevelTableIdList ); - return m_RecipeLevelTableIdList; -} -const std::set< uint32_t >& getRecipeLookupIdList() -{ - if( m_RecipeLookupIdList.size() == 0 ) - loadIdList( m_RecipeLookupDat, m_RecipeLookupIdList ); - return m_RecipeLookupIdList; -} -const std::set< uint32_t >& getRecipeNotebookListIdList() -{ - if( m_RecipeNotebookListIdList.size() == 0 ) - loadIdList( m_RecipeNotebookListDat, m_RecipeNotebookListIdList ); - return m_RecipeNotebookListIdList; -} -const std::set< uint32_t >& getRecommendContentsIdList() -{ - if( m_RecommendContentsIdList.size() == 0 ) - loadIdList( m_RecommendContentsDat, m_RecommendContentsIdList ); - return m_RecommendContentsIdList; -} -const std::set< uint32_t >& getRelicIdList() -{ - if( m_RelicIdList.size() == 0 ) - loadIdList( m_RelicDat, m_RelicIdList ); - return m_RelicIdList; -} -const std::set< uint32_t >& getRelic3IdList() -{ - if( m_Relic3IdList.size() == 0 ) - loadIdList( m_Relic3Dat, m_Relic3IdList ); - return m_Relic3IdList; -} -const std::set< uint32_t >& getRelicItemIdList() -{ - if( m_RelicItemIdList.size() == 0 ) - loadIdList( m_RelicItemDat, m_RelicItemIdList ); - return m_RelicItemIdList; -} -const std::set< uint32_t >& getRelicNoteIdList() -{ - if( m_RelicNoteIdList.size() == 0 ) - loadIdList( m_RelicNoteDat, m_RelicNoteIdList ); - return m_RelicNoteIdList; -} -const std::set< uint32_t >& getRelicNoteCategoryIdList() -{ - if( m_RelicNoteCategoryIdList.size() == 0 ) - loadIdList( m_RelicNoteCategoryDat, m_RelicNoteCategoryIdList ); - return m_RelicNoteCategoryIdList; -} -const std::set< uint32_t >& getResidentIdList() -{ - if( m_ResidentIdList.size() == 0 ) - loadIdList( m_ResidentDat, m_ResidentIdList ); - return m_ResidentIdList; -} -const std::set< uint32_t >& getResistanceWeaponAdjustIdList() -{ - if( m_ResistanceWeaponAdjustIdList.size() == 0 ) - loadIdList( m_ResistanceWeaponAdjustDat, m_ResistanceWeaponAdjustIdList ); - return m_ResistanceWeaponAdjustIdList; -} -const std::set< uint32_t >& getRetainerFortuneRewardRangeIdList() -{ - if( m_RetainerFortuneRewardRangeIdList.size() == 0 ) - loadIdList( m_RetainerFortuneRewardRangeDat, m_RetainerFortuneRewardRangeIdList ); - return m_RetainerFortuneRewardRangeIdList; -} -const std::set< uint32_t >& getRetainerTaskIdList() -{ - if( m_RetainerTaskIdList.size() == 0 ) - loadIdList( m_RetainerTaskDat, m_RetainerTaskIdList ); - return m_RetainerTaskIdList; -} -const std::set< uint32_t >& getRetainerTaskLvRangeIdList() -{ - if( m_RetainerTaskLvRangeIdList.size() == 0 ) - loadIdList( m_RetainerTaskLvRangeDat, m_RetainerTaskLvRangeIdList ); - return m_RetainerTaskLvRangeIdList; -} -const std::set< uint32_t >& getRetainerTaskNormalIdList() -{ - if( m_RetainerTaskNormalIdList.size() == 0 ) - loadIdList( m_RetainerTaskNormalDat, m_RetainerTaskNormalIdList ); - return m_RetainerTaskNormalIdList; -} -const std::set< uint32_t >& getRetainerTaskParameterIdList() -{ - if( m_RetainerTaskParameterIdList.size() == 0 ) - loadIdList( m_RetainerTaskParameterDat, m_RetainerTaskParameterIdList ); - return m_RetainerTaskParameterIdList; -} -const std::set< uint32_t >& getRetainerTaskRandomIdList() -{ - if( m_RetainerTaskRandomIdList.size() == 0 ) - loadIdList( m_RetainerTaskRandomDat, m_RetainerTaskRandomIdList ); - return m_RetainerTaskRandomIdList; -} -const std::set< uint32_t >& getRideShootingIdList() -{ - if( m_RideShootingIdList.size() == 0 ) - loadIdList( m_RideShootingDat, m_RideShootingIdList ); - return m_RideShootingIdList; -} -const std::set< uint32_t >& getRideShootingTargetTypeIdList() -{ - if( m_RideShootingTargetTypeIdList.size() == 0 ) - loadIdList( m_RideShootingTargetTypeDat, m_RideShootingTargetTypeIdList ); - return m_RideShootingTargetTypeIdList; -} -const std::set< uint32_t >& getRideShootingTextDataIdList() -{ - if( m_RideShootingTextDataIdList.size() == 0 ) - loadIdList( m_RideShootingTextDataDat, m_RideShootingTextDataIdList ); - return m_RideShootingTextDataIdList; -} -const std::set< uint32_t >& getRPParameterIdList() -{ - if( m_RPParameterIdList.size() == 0 ) - loadIdList( m_RPParameterDat, m_RPParameterIdList ); - return m_RPParameterIdList; -} -const std::set< uint32_t >& getSatisfactionArbitrationIdList() -{ - if( m_SatisfactionArbitrationIdList.size() == 0 ) - loadIdList( m_SatisfactionArbitrationDat, m_SatisfactionArbitrationIdList ); - return m_SatisfactionArbitrationIdList; -} -const std::set< uint32_t >& getSatisfactionNpcIdList() -{ - if( m_SatisfactionNpcIdList.size() == 0 ) - loadIdList( m_SatisfactionNpcDat, m_SatisfactionNpcIdList ); - return m_SatisfactionNpcIdList; -} -const std::set< uint32_t >& getSatisfactionSupplyIdList() -{ - if( m_SatisfactionSupplyIdList.size() == 0 ) - loadIdList( m_SatisfactionSupplyDat, m_SatisfactionSupplyIdList ); - return m_SatisfactionSupplyIdList; -} -const std::set< uint32_t >& getSatisfactionSupplyRewardIdList() -{ - if( m_SatisfactionSupplyRewardIdList.size() == 0 ) - loadIdList( m_SatisfactionSupplyRewardDat, m_SatisfactionSupplyRewardIdList ); - return m_SatisfactionSupplyRewardIdList; -} -const std::set< uint32_t >& getScenarioTreeIdList() -{ - if( m_ScenarioTreeIdList.size() == 0 ) - loadIdList( m_ScenarioTreeDat, m_ScenarioTreeIdList ); - return m_ScenarioTreeIdList; -} -const std::set< uint32_t >& getScenarioTreeTipsIdList() -{ - if( m_ScenarioTreeTipsIdList.size() == 0 ) - loadIdList( m_ScenarioTreeTipsDat, m_ScenarioTreeTipsIdList ); - return m_ScenarioTreeTipsIdList; -} -const std::set< uint32_t >& getScenarioTreeTipsClassQuestIdList() -{ - if( m_ScenarioTreeTipsClassQuestIdList.size() == 0 ) - loadIdList( m_ScenarioTreeTipsClassQuestDat, m_ScenarioTreeTipsClassQuestIdList ); - return m_ScenarioTreeTipsClassQuestIdList; -} -const std::set< uint32_t >& getScenarioTypeIdList() -{ - if( m_ScenarioTypeIdList.size() == 0 ) - loadIdList( m_ScenarioTypeDat, m_ScenarioTypeIdList ); - return m_ScenarioTypeIdList; -} -const std::set< uint32_t >& getScreenImageIdList() -{ - if( m_ScreenImageIdList.size() == 0 ) - loadIdList( m_ScreenImageDat, m_ScreenImageIdList ); - return m_ScreenImageIdList; -} -const std::set< uint32_t >& getSecretRecipeBookIdList() -{ - if( m_SecretRecipeBookIdList.size() == 0 ) - loadIdList( m_SecretRecipeBookDat, m_SecretRecipeBookIdList ); - return m_SecretRecipeBookIdList; -} -const std::set< uint32_t >& getSkyIsland2MissionIdList() -{ - if( m_SkyIsland2MissionIdList.size() == 0 ) - loadIdList( m_SkyIsland2MissionDat, m_SkyIsland2MissionIdList ); - return m_SkyIsland2MissionIdList; -} -const std::set< uint32_t >& getSkyIsland2MissionDetailIdList() -{ - if( m_SkyIsland2MissionDetailIdList.size() == 0 ) - loadIdList( m_SkyIsland2MissionDetailDat, m_SkyIsland2MissionDetailIdList ); - return m_SkyIsland2MissionDetailIdList; -} -const std::set< uint32_t >& getSkyIsland2MissionTypeIdList() -{ - if( m_SkyIsland2MissionTypeIdList.size() == 0 ) - loadIdList( m_SkyIsland2MissionTypeDat, m_SkyIsland2MissionTypeIdList ); - return m_SkyIsland2MissionTypeIdList; -} -const std::set< uint32_t >& getSkyIsland2RangeTypeIdList() -{ - if( m_SkyIsland2RangeTypeIdList.size() == 0 ) - loadIdList( m_SkyIsland2RangeTypeDat, m_SkyIsland2RangeTypeIdList ); - return m_SkyIsland2RangeTypeIdList; -} -const std::set< uint32_t >& getSnipeTalkIdList() -{ - if( m_SnipeTalkIdList.size() == 0 ) - loadIdList( m_SnipeTalkDat, m_SnipeTalkIdList ); - return m_SnipeTalkIdList; -} -const std::set< uint32_t >& getSnipeTalkNameIdList() -{ - if( m_SnipeTalkNameIdList.size() == 0 ) - loadIdList( m_SnipeTalkNameDat, m_SnipeTalkNameIdList ); - return m_SnipeTalkNameIdList; -} -const std::set< uint32_t >& getSpearfishingItemIdList() -{ - if( m_SpearfishingItemIdList.size() == 0 ) - loadIdList( m_SpearfishingItemDat, m_SpearfishingItemIdList ); - return m_SpearfishingItemIdList; -} -const std::set< uint32_t >& getSpearfishingNotebookIdList() -{ - if( m_SpearfishingNotebookIdList.size() == 0 ) - loadIdList( m_SpearfishingNotebookDat, m_SpearfishingNotebookIdList ); - return m_SpearfishingNotebookIdList; -} -const std::set< uint32_t >& getSpearfishingRecordPageIdList() -{ - if( m_SpearfishingRecordPageIdList.size() == 0 ) - loadIdList( m_SpearfishingRecordPageDat, m_SpearfishingRecordPageIdList ); - return m_SpearfishingRecordPageIdList; -} -const std::set< uint32_t >& getSpecialShopIdList() -{ - if( m_SpecialShopIdList.size() == 0 ) - loadIdList( m_SpecialShopDat, m_SpecialShopIdList ); - return m_SpecialShopIdList; -} -const std::set< uint32_t >& getSpecialShopItemCategoryIdList() -{ - if( m_SpecialShopItemCategoryIdList.size() == 0 ) - loadIdList( m_SpecialShopItemCategoryDat, m_SpecialShopItemCategoryIdList ); - return m_SpecialShopItemCategoryIdList; -} -const std::set< uint32_t >& getStainIdList() -{ - if( m_StainIdList.size() == 0 ) - loadIdList( m_StainDat, m_StainIdList ); - return m_StainIdList; -} -const std::set< uint32_t >& getStainTransientIdList() -{ - if( m_StainTransientIdList.size() == 0 ) - loadIdList( m_StainTransientDat, m_StainTransientIdList ); - return m_StainTransientIdList; -} -const std::set< uint32_t >& getStanceChangeIdList() -{ - if( m_StanceChangeIdList.size() == 0 ) - loadIdList( m_StanceChangeDat, m_StanceChangeIdList ); - return m_StanceChangeIdList; -} -const std::set< uint32_t >& getStatusIdList() -{ - if( m_StatusIdList.size() == 0 ) - loadIdList( m_StatusDat, m_StatusIdList ); - return m_StatusIdList; -} -const std::set< uint32_t >& getStatusHitEffectIdList() -{ - if( m_StatusHitEffectIdList.size() == 0 ) - loadIdList( m_StatusHitEffectDat, m_StatusHitEffectIdList ); - return m_StatusHitEffectIdList; -} -const std::set< uint32_t >& getStatusLoopVFXIdList() -{ - if( m_StatusLoopVFXIdList.size() == 0 ) - loadIdList( m_StatusLoopVFXDat, m_StatusLoopVFXIdList ); - return m_StatusLoopVFXIdList; -} -const std::set< uint32_t >& getStoryIdList() -{ - if( m_StoryIdList.size() == 0 ) - loadIdList( m_StoryDat, m_StoryIdList ); - return m_StoryIdList; -} -const std::set< uint32_t >& getSubmarineExplorationIdList() -{ - if( m_SubmarineExplorationIdList.size() == 0 ) - loadIdList( m_SubmarineExplorationDat, m_SubmarineExplorationIdList ); - return m_SubmarineExplorationIdList; -} -const std::set< uint32_t >& getSubmarineMapIdList() -{ - if( m_SubmarineMapIdList.size() == 0 ) - loadIdList( m_SubmarineMapDat, m_SubmarineMapIdList ); - return m_SubmarineMapIdList; -} -const std::set< uint32_t >& getSubmarinePartIdList() -{ - if( m_SubmarinePartIdList.size() == 0 ) - loadIdList( m_SubmarinePartDat, m_SubmarinePartIdList ); - return m_SubmarinePartIdList; -} -const std::set< uint32_t >& getSubmarineRankIdList() -{ - if( m_SubmarineRankIdList.size() == 0 ) - loadIdList( m_SubmarineRankDat, m_SubmarineRankIdList ); - return m_SubmarineRankIdList; -} -const std::set< uint32_t >& getSwitchTalkIdList() -{ - if( m_SwitchTalkIdList.size() == 0 ) - loadIdList( m_SwitchTalkDat, m_SwitchTalkIdList ); - return m_SwitchTalkIdList; -} -const std::set< uint32_t >& getSwitchTalkVariationIdList() -{ - if( m_SwitchTalkVariationIdList.size() == 0 ) - loadIdList( m_SwitchTalkVariationDat, m_SwitchTalkVariationIdList ); - return m_SwitchTalkVariationIdList; -} -const std::set< uint32_t >& getTerritoryTypeIdList() -{ - if( m_TerritoryTypeIdList.size() == 0 ) - loadIdList( m_TerritoryTypeDat, m_TerritoryTypeIdList ); - return m_TerritoryTypeIdList; -} -const std::set< uint32_t >& getTerritoryTypeTransientIdList() -{ - if( m_TerritoryTypeTransientIdList.size() == 0 ) - loadIdList( m_TerritoryTypeTransientDat, m_TerritoryTypeTransientIdList ); - return m_TerritoryTypeTransientIdList; -} -const std::set< uint32_t >& getTextCommandIdList() -{ - if( m_TextCommandIdList.size() == 0 ) - loadIdList( m_TextCommandDat, m_TextCommandIdList ); - return m_TextCommandIdList; -} -const std::set< uint32_t >& getTextCommandParamIdList() -{ - if( m_TextCommandParamIdList.size() == 0 ) - loadIdList( m_TextCommandParamDat, m_TextCommandParamIdList ); - return m_TextCommandParamIdList; -} -const std::set< uint32_t >& getTitleIdList() -{ - if( m_TitleIdList.size() == 0 ) - loadIdList( m_TitleDat, m_TitleIdList ); - return m_TitleIdList; -} -const std::set< uint32_t >& getTomestonesIdList() -{ - if( m_TomestonesIdList.size() == 0 ) - loadIdList( m_TomestonesDat, m_TomestonesIdList ); - return m_TomestonesIdList; -} -const std::set< uint32_t >& getTomestonesItemIdList() -{ - if( m_TomestonesItemIdList.size() == 0 ) - loadIdList( m_TomestonesItemDat, m_TomestonesItemIdList ); - return m_TomestonesItemIdList; -} -const std::set< uint32_t >& getTopicSelectIdList() -{ - if( m_TopicSelectIdList.size() == 0 ) - loadIdList( m_TopicSelectDat, m_TopicSelectIdList ); - return m_TopicSelectIdList; -} -const std::set< uint32_t >& getTownIdList() -{ - if( m_TownIdList.size() == 0 ) - loadIdList( m_TownDat, m_TownIdList ); - return m_TownIdList; -} -const std::set< uint32_t >& getTraitIdList() -{ - if( m_TraitIdList.size() == 0 ) - loadIdList( m_TraitDat, m_TraitIdList ); - return m_TraitIdList; -} -const std::set< uint32_t >& getTraitRecastIdList() -{ - if( m_TraitRecastIdList.size() == 0 ) - loadIdList( m_TraitRecastDat, m_TraitRecastIdList ); - return m_TraitRecastIdList; -} -const std::set< uint32_t >& getTraitTransientIdList() -{ - if( m_TraitTransientIdList.size() == 0 ) - loadIdList( m_TraitTransientDat, m_TraitTransientIdList ); - return m_TraitTransientIdList; -} -const std::set< uint32_t >& getTransformationIdList() -{ - if( m_TransformationIdList.size() == 0 ) - loadIdList( m_TransformationDat, m_TransformationIdList ); - return m_TransformationIdList; -} -const std::set< uint32_t >& getTreasureIdList() -{ - if( m_TreasureIdList.size() == 0 ) - loadIdList( m_TreasureDat, m_TreasureIdList ); - return m_TreasureIdList; -} -const std::set< uint32_t >& getTreasureHuntRankIdList() -{ - if( m_TreasureHuntRankIdList.size() == 0 ) - loadIdList( m_TreasureHuntRankDat, m_TreasureHuntRankIdList ); - return m_TreasureHuntRankIdList; -} -const std::set< uint32_t >& getTreasureModelIdList() -{ - if( m_TreasureModelIdList.size() == 0 ) - loadIdList( m_TreasureModelDat, m_TreasureModelIdList ); - return m_TreasureModelIdList; -} -const std::set< uint32_t >& getTreasureSpotIdList() -{ - if( m_TreasureSpotIdList.size() == 0 ) - loadIdList( m_TreasureSpotDat, m_TreasureSpotIdList ); - return m_TreasureSpotIdList; -} -const std::set< uint32_t >& getTribeIdList() -{ - if( m_TribeIdList.size() == 0 ) - loadIdList( m_TribeDat, m_TribeIdList ); - return m_TribeIdList; -} -const std::set< uint32_t >& getTripleTriadIdList() -{ - if( m_TripleTriadIdList.size() == 0 ) - loadIdList( m_TripleTriadDat, m_TripleTriadIdList ); - return m_TripleTriadIdList; -} -const std::set< uint32_t >& getTripleTriadCardIdList() -{ - if( m_TripleTriadCardIdList.size() == 0 ) - loadIdList( m_TripleTriadCardDat, m_TripleTriadCardIdList ); - return m_TripleTriadCardIdList; -} -const std::set< uint32_t >& getTripleTriadCardRarityIdList() -{ - if( m_TripleTriadCardRarityIdList.size() == 0 ) - loadIdList( m_TripleTriadCardRarityDat, m_TripleTriadCardRarityIdList ); - return m_TripleTriadCardRarityIdList; -} -const std::set< uint32_t >& getTripleTriadCardResidentIdList() -{ - if( m_TripleTriadCardResidentIdList.size() == 0 ) - loadIdList( m_TripleTriadCardResidentDat, m_TripleTriadCardResidentIdList ); - return m_TripleTriadCardResidentIdList; -} -const std::set< uint32_t >& getTripleTriadCardTypeIdList() -{ - if( m_TripleTriadCardTypeIdList.size() == 0 ) - loadIdList( m_TripleTriadCardTypeDat, m_TripleTriadCardTypeIdList ); - return m_TripleTriadCardTypeIdList; -} -const std::set< uint32_t >& getTripleTriadCompetitionIdList() -{ - if( m_TripleTriadCompetitionIdList.size() == 0 ) - loadIdList( m_TripleTriadCompetitionDat, m_TripleTriadCompetitionIdList ); - return m_TripleTriadCompetitionIdList; -} -const std::set< uint32_t >& getTripleTriadResidentIdList() -{ - if( m_TripleTriadResidentIdList.size() == 0 ) - loadIdList( m_TripleTriadResidentDat, m_TripleTriadResidentIdList ); - return m_TripleTriadResidentIdList; -} -const std::set< uint32_t >& getTripleTriadRuleIdList() -{ - if( m_TripleTriadRuleIdList.size() == 0 ) - loadIdList( m_TripleTriadRuleDat, m_TripleTriadRuleIdList ); - return m_TripleTriadRuleIdList; -} -const std::set< uint32_t >& getTutorialIdList() -{ - if( m_TutorialIdList.size() == 0 ) - loadIdList( m_TutorialDat, m_TutorialIdList ); - return m_TutorialIdList; -} -const std::set< uint32_t >& getTutorialDPSIdList() -{ - if( m_TutorialDPSIdList.size() == 0 ) - loadIdList( m_TutorialDPSDat, m_TutorialDPSIdList ); - return m_TutorialDPSIdList; -} -const std::set< uint32_t >& getTutorialHealerIdList() -{ - if( m_TutorialHealerIdList.size() == 0 ) - loadIdList( m_TutorialHealerDat, m_TutorialHealerIdList ); - return m_TutorialHealerIdList; -} -const std::set< uint32_t >& getTutorialTankIdList() -{ - if( m_TutorialTankIdList.size() == 0 ) - loadIdList( m_TutorialTankDat, m_TutorialTankIdList ); - return m_TutorialTankIdList; -} -const std::set< uint32_t >& getUDS_EventIdList() -{ - if( m_UDS_EventIdList.size() == 0 ) - loadIdList( m_UDS_EventDat, m_UDS_EventIdList ); - return m_UDS_EventIdList; -} -const std::set< uint32_t >& getUDS_PropertyIdList() -{ - if( m_UDS_PropertyIdList.size() == 0 ) - loadIdList( m_UDS_PropertyDat, m_UDS_PropertyIdList ); - return m_UDS_PropertyIdList; -} -const std::set< uint32_t >& getUIColorIdList() -{ - if( m_UIColorIdList.size() == 0 ) - loadIdList( m_UIColorDat, m_UIColorIdList ); - return m_UIColorIdList; -} -const std::set< uint32_t >& getVaseFlowerIdList() -{ - if( m_VaseFlowerIdList.size() == 0 ) - loadIdList( m_VaseFlowerDat, m_VaseFlowerIdList ); - return m_VaseFlowerIdList; -} -const std::set< uint32_t >& getVFXIdList() -{ - if( m_VFXIdList.size() == 0 ) - loadIdList( m_VFXDat, m_VFXIdList ); - return m_VFXIdList; -} -const std::set< uint32_t >& getWarpIdList() -{ - if( m_WarpIdList.size() == 0 ) - loadIdList( m_WarpDat, m_WarpIdList ); - return m_WarpIdList; -} -const std::set< uint32_t >& getWarpConditionIdList() -{ - if( m_WarpConditionIdList.size() == 0 ) - loadIdList( m_WarpConditionDat, m_WarpConditionIdList ); - return m_WarpConditionIdList; -} -const std::set< uint32_t >& getWarpLogicIdList() -{ - if( m_WarpLogicIdList.size() == 0 ) - loadIdList( m_WarpLogicDat, m_WarpLogicIdList ); - return m_WarpLogicIdList; -} -const std::set< uint32_t >& getWeaponTimelineIdList() -{ - if( m_WeaponTimelineIdList.size() == 0 ) - loadIdList( m_WeaponTimelineDat, m_WeaponTimelineIdList ); - return m_WeaponTimelineIdList; -} -const std::set< uint32_t >& getWeatherIdList() -{ - if( m_WeatherIdList.size() == 0 ) - loadIdList( m_WeatherDat, m_WeatherIdList ); - return m_WeatherIdList; -} -const std::set< uint32_t >& getWeatherGroupIdList() -{ - if( m_WeatherGroupIdList.size() == 0 ) - loadIdList( m_WeatherGroupDat, m_WeatherGroupIdList ); - return m_WeatherGroupIdList; -} -const std::set< uint32_t >& getWeatherRateIdList() -{ - if( m_WeatherRateIdList.size() == 0 ) - loadIdList( m_WeatherRateDat, m_WeatherRateIdList ); - return m_WeatherRateIdList; -} -const std::set< uint32_t >& getWeatherReportReplaceIdList() -{ - if( m_WeatherReportReplaceIdList.size() == 0 ) - loadIdList( m_WeatherReportReplaceDat, m_WeatherReportReplaceIdList ); - return m_WeatherReportReplaceIdList; -} -const std::set< uint32_t >& getWebGuidanceIdList() -{ - if( m_WebGuidanceIdList.size() == 0 ) - loadIdList( m_WebGuidanceDat, m_WebGuidanceIdList ); - return m_WebGuidanceIdList; -} -const std::set< uint32_t >& getWebURLIdList() -{ - if( m_WebURLIdList.size() == 0 ) - loadIdList( m_WebURLDat, m_WebURLIdList ); - return m_WebURLIdList; -} -const std::set< uint32_t >& getWeddingBGMIdList() -{ - if( m_WeddingBGMIdList.size() == 0 ) - loadIdList( m_WeddingBGMDat, m_WeddingBGMIdList ); - return m_WeddingBGMIdList; -} -const std::set< uint32_t >& getWeeklyBingoOrderDataIdList() -{ - if( m_WeeklyBingoOrderDataIdList.size() == 0 ) - loadIdList( m_WeeklyBingoOrderDataDat, m_WeeklyBingoOrderDataIdList ); - return m_WeeklyBingoOrderDataIdList; -} -const std::set< uint32_t >& getWeeklyBingoRewardDataIdList() -{ - if( m_WeeklyBingoRewardDataIdList.size() == 0 ) - loadIdList( m_WeeklyBingoRewardDataDat, m_WeeklyBingoRewardDataIdList ); - return m_WeeklyBingoRewardDataIdList; -} -const std::set< uint32_t >& getWeeklyBingoTextIdList() -{ - if( m_WeeklyBingoTextIdList.size() == 0 ) - loadIdList( m_WeeklyBingoTextDat, m_WeeklyBingoTextIdList ); - return m_WeeklyBingoTextIdList; -} -const std::set< uint32_t >& getWeeklyLotBonusIdList() -{ - if( m_WeeklyLotBonusIdList.size() == 0 ) - loadIdList( m_WeeklyLotBonusDat, m_WeeklyLotBonusIdList ); - return m_WeeklyLotBonusIdList; -} -const std::set< uint32_t >& getWorldIdList() -{ - if( m_WorldIdList.size() == 0 ) - loadIdList( m_WorldDat, m_WorldIdList ); - return m_WorldIdList; -} -const std::set< uint32_t >& getWorldDCGroupTypeIdList() -{ - if( m_WorldDCGroupTypeIdList.size() == 0 ) - loadIdList( m_WorldDCGroupTypeDat, m_WorldDCGroupTypeIdList ); - return m_WorldDCGroupTypeIdList; -} -const std::set< uint32_t >& getYardCatalogCategoryIdList() -{ - if( m_YardCatalogCategoryIdList.size() == 0 ) - loadIdList( m_YardCatalogCategoryDat, m_YardCatalogCategoryIdList ); - return m_YardCatalogCategoryIdList; -} -const std::set< uint32_t >& getYardCatalogItemListIdList() -{ - if( m_YardCatalogItemListIdList.size() == 0 ) - loadIdList( m_YardCatalogItemListDat, m_YardCatalogItemListIdList ); - return m_YardCatalogItemListIdList; -} -const std::set< uint32_t >& getYKWIdList() -{ - if( m_YKWIdList.size() == 0 ) - loadIdList( m_YKWDat, m_YKWIdList ); - return m_YKWIdList; -} -const std::set< uint32_t >& getZoneSharedGroupIdList() -{ - if( m_ZoneSharedGroupIdList.size() == 0 ) - loadIdList( m_ZoneSharedGroupDat, m_ZoneSharedGroupIdList ); - return m_ZoneSharedGroupIdList; -} - - - }; - -} - -#endif - diff --git a/src/common/Forwards.h b/src/common/Forwards.h index 1fa810c9..8c893dc5 100644 --- a/src/common/Forwards.h +++ b/src/common/Forwards.h @@ -1,5 +1,4 @@ -#ifndef COMMON_FORWARDS_H -#define COMMON_FORWARDS_H +#pragma once #include @@ -31,6 +30,4 @@ namespace Sapphire::Network::Packets class FFXIVPacketBase; using GamePacketPtr = std::shared_ptr< GamePacket >; using FFXIVPacketBasePtr = std::shared_ptr< FFXIVPacketBase >; -} - -#endif +} \ No newline at end of file diff --git a/src/common/Framework.cpp b/src/common/Framework.cpp deleted file mode 100644 index 7243f69b..00000000 --- a/src/common/Framework.cpp +++ /dev/null @@ -1,2 +0,0 @@ -#include "Framework.h" -#include "Logging/Logger.h" diff --git a/src/common/Framework.h b/src/common/Framework.h deleted file mode 100644 index 5714bdb3..00000000 --- a/src/common/Framework.h +++ /dev/null @@ -1,37 +0,0 @@ -#ifndef _CORE_FRAMEWORK_H -#define _CORE_FRAMEWORK_H - -#include -#include -#include -#include -#include - -namespace Sapphire -{ - - class Framework - { - using TypenameToObject = std::map< std::type_index, std::shared_ptr< void > >; - TypenameToObject ObjectMap; - - public: - template< typename T > - std::shared_ptr< T > get() - { - auto iType = ObjectMap.find( typeid( T ) ); - assert( !( iType == ObjectMap.end() ) ); - return std::static_pointer_cast< T >( iType->second ); - } - - template< typename T > - void set( std::shared_ptr< T > value ) - { - assert( value ); // why would anyone store nullptrs.... - ObjectMap[ typeid( T ) ] = value; - } - }; - -} - -#endif // _CORE_FRAMEWORK_H diff --git a/src/common/Logging/Logger.cpp b/src/common/Logging/Logger.cpp index 4b37aba9..82867199 100644 --- a/src/common/Logging/Logger.cpp +++ b/src/common/Logging/Logger.cpp @@ -8,9 +8,14 @@ #include // #include -#include // or #include - +#if _MSC_VER >= 1925 +#include namespace fs = std::filesystem; +#else +#include +namespace fs = std::experimental::filesystem; +#endif + void Sapphire::Logger::init( const std::string& logPath ) { diff --git a/src/common/Logging/Logger.h b/src/common/Logging/Logger.h index ced4cf9e..3c216fc6 100644 --- a/src/common/Logging/Logger.h +++ b/src/common/Logging/Logger.h @@ -1,8 +1,6 @@ -#ifndef _LOGGER_H -#define _LOGGER_H +#pragma once #include - #include namespace Sapphire @@ -74,5 +72,3 @@ namespace Sapphire } - -#endif diff --git a/src/common/Network/Acceptor.h b/src/common/Network/Acceptor.h index faae123f..2dd5c621 100644 --- a/src/common/Network/Acceptor.h +++ b/src/common/Network/Acceptor.h @@ -1,5 +1,4 @@ -#ifndef ACCEPTOR_H_ -#define ACCEPTOR_H_ +#pragma once #include #include @@ -83,4 +82,3 @@ namespace Sapphire::Network }; } -#endif diff --git a/src/common/Network/CommonActorControl.h b/src/common/Network/CommonActorControl.h index c713148c..ee3b19f2 100644 --- a/src/common/Network/CommonActorControl.h +++ b/src/common/Network/CommonActorControl.h @@ -1,5 +1,4 @@ -#ifndef _COMMONACTORCONTROL_H -#define _COMMONACTORCONTROL_H +#pragma once #include #include @@ -23,7 +22,7 @@ namespace Sapphire::Network::ActorControl AutoAttack = 0x01, SetStatus = 0x02, CastStart = 0x03, - ToggleAggro = 0x04, + SetBattle = 0x04, /*! * param1 = ClassJob ID */ @@ -111,9 +110,7 @@ namespace Sapphire::Network::ActorControl ScreenFadeOut = 0xAA, - CeremonyDecoration = 0xB9, - - ZoneIn = 0xC8, + Appear = 0xC8, ZoneInDefaultPos = 0xC9, TeleportStart = 0xCB, @@ -215,22 +212,11 @@ namespace Sapphire::Network::ActorControl SetFavorite = 0x1FC, LearnTeleport = 0x1FD, - /*! - * param1 = event type bitmask - * 1 = Quest - * 2 = GuildLeveAssignment - * 4 = GuildOrderGuide - * 8 = TripleTriad - * 16 = CustomTalk - * 32 = PreHandler - */ - BeginMapUpdate = 0x1FF, - FinishMapUpdate = 0x200, - - //OpenRecommendationGuide = 0x200, + OpenRecommendationGuide = 0x200, ArmoryErrorMsg = 0x201, AchievementPopup = 0x203, + SetCutsceneFlag = 0x204, LogMsg = 0x205, // LogMessage? AchievementMsg = 0x206, @@ -263,7 +249,7 @@ namespace Sapphire::Network::ActorControl HuntingLogSectionFinish = 0x21F, HuntingLogRankFinish = 0x220, - SetMaxGearSets = 0x230, + SetMaxGearSets = 0x320, SetCharaGearParamUI = 0x260, ToggleWireframeRendering = 0x261, @@ -278,16 +264,16 @@ namespace Sapphire::Network::ActorControl ToggleOrchestrionUnlock = 0x396, - EventBattleDialog = 0x39D, + EventBattleDialog = 0x39C, /*! * param1 = mountSpeed - * Retail sends 12 for mount speed star 1 unlocked and 15 for mount speed star 2 unlocked + * Retail sends 12 for mount speed star 1 unlocked and 15 for setMount speed star 2 unlocked * This also has to be sent before mounting finishes for it to take effect */ - SetMountSpeed = 0x3A0, // updated 5.35 hotfix + SetMountSpeed = 0x39F, - Dismount = 0x3A2, // updated 5.35 hotfix + Dismount = 0x3A1, // updated 4.5 // Duty Recorder BeginReplayAck = 0x3A2, @@ -356,15 +342,14 @@ namespace Sapphire::Network::ActorControl EurekaStep = 0x73A, // alters the progress of the player on Eureka (is used for all the eureka zones) }; - enum ClientTriggerType + enum PacketCommand { - ToggleSheathe = 0x01, +/* ToggleSheathe = 0x01, ToggleAutoAttack = 0x02, ChangeTarget = 0x03, DismountReq = 0x65, SpawnCompanionReq = 0x66, - DespawnCompanionReq = 0x67, RemoveStatusEffect = 0x68, CastCancel = 0x69, @@ -378,7 +363,7 @@ namespace Sapphire::Network::ActorControl TitleList = 0x12F, UpdatedSeenHowTos = 0x133, - CutscenePlayed = 0x134, // param1 = cutscene id + SetCutscene = 0x134, AllotAttribute = 0x135, ClearFieldMarkers = 0x13A, @@ -395,12 +380,12 @@ namespace Sapphire::Network::ActorControl EmoteReq = 0x1F4, EmoteCancel = 0x1F6, PersistentEmoteCancel = 0x1F7, - /*! - * param2 = pose ID - * 0 = idle pose 0 (just standing) - * 1 = idle pose 1 - * 2-4 = idle poses 2-4 - */ + // + // * param2 = pose ID + // * 0 = idle pose 0 (just standing) + // * 1 = idle pose 1 + // * 2-4 = idle poses 2-4 + // PoseChange = 0x1F9, PoseReapply = 0x1FA, PoseCancel = 0x1FB, @@ -461,9 +446,174 @@ namespace Sapphire::Network::ActorControl OpenDuelUI = 0x898, // Open a duel ui DuelRequestResult = 0x899, // either accept/reject +*/ + DRAWN_SWORD = 0x1, + AUTO_ATTACK = 0x2, + TARGET_DECIDE = 0x3, + REQUEST_ACTION = 0x64, + CANCEL_MOUNT = 0x65, + COMPANION = 0x66, + COMPANION_CANCEL = 0x67, + REQUEST_STATUS_RESET = 0x68, + CANCEL_CAST = 0x69, + MOUNT_LINK = 0x6A, + UNMOUNT_LINK = 0x6B, + BALLISTA_ACCESS = 0x6C, + REVIVE = 0xC8, + FINISH_LOADING = 0xC9, + TELEPO_INQUIRY = 0xCA, + TELEPO_INVITATION_ANSWER = 0xCB, + TELEPO_CANCEL = 0xCC, + RAISE_CANCEL = 0xCD, + WARP_REPLY = 0xCE, + REQUEST_MODE = 0xCF, + PUBLIC_INSTANCE = 0xD0, + NEWBIE_TELEPO_INQUIRY = 0xD1, + INSPECT = 0x12C, + MARKING = 0x12D, + ACTIVE_TITLE = 0x12E, + TITLE_LIST = 0x12F, + BORROW_ACTION = 0x130, + RANDOM = 0x131, + NAME = 0x132, + SET_HOWTO = 0x133, + SET_CUTSCENE = 0x134, + PHYSICAL_BONUS = 0x135, + GROUND_MARKING = 0x136, + CONTENTS_NOTE_REQUEST = 0x137, + BAHAMUTGUIDE_AGREEMENT_CHECK_REPLY = 0x138, + SET_MARKET_PRICE = 0x190, + DEPOP_RETAINER = 0x191, + MARKET_EDIT_START = 0x192, + MARKET_EDIT_END = 0x193, + MONSTER_NOTE_RANK_NEW_FLAG = 0x194, + CHANGE_ITEM_COLOR = 0x195, + LOAD_LEGACY_ITEM = 0x196, + BRING_OUT_LEGACY_ITEM = 0x197, + FCCHEST_LOAD = 0x198, + FCCHEST_LOCK = 0x199, + FCCHEST_UNLOCK = 0x19A, + START_MATERIA_CRAFT = 0x19B, + PREPARE_MATERIA_CRAFT = 0x19C, + CANCEL_MATERIA_CRAFT = 0x19D, + ACCEPT_MATERIA_REQUEST = 0x19E, + CANCEL_ATTACH_MATERIA_REQUEST = 0x19F, + CHECK_FOR_MATERIA_REQUEST = 0x1A0, + EXCHANGE_INACTIVE_MATERIA = 0x1A1, + DECAL_ITEM = 0x1A2, + DECAL_MANNEQUIN = 0x1A3, + DECAL_STORAGE_GROUP = 0x1A4, + SELL_INACTIVE_MATERIA = 0x1A5, + MATERIA_REQUEST_CLASS_CHANGED = 0x1A6, + ITEM_RESYNC = 0x1A7, + FCCHEST_GIL_DEPOSIT = 0x1A8, + FCCHEST_GIL_TAKE = 0x1A9, + FCCHEST_LOAD_LOG = 0x1AA, + SET_VANITY_PATTERN = 0x1AB, + REQUEST_RETAINER_LIST = 0x1AC, + REMOVE_VANITY_PATTERN = 0x1AD, + CABINET_REQUEST = 0x1AE, + CABINET_STORAGE = 0x1AF, + CABINET_TAKEOUT = 0x1B0, + SALVAGE = 0x1B1, + REQUEST_SALVAGE_SUCCESS_RATE = 0x1B2, + MOBHUNT_RECEIPT_ORDER = 0x1B3, + MOBHUNT_BREAK_ORDER = 0x1B4, + EMOTE = 0x1F4, + EMOTE_WITH_WARP = 0x1F5, + EMOTE_CANCEL = 0x1F6, + EMOTE_MODE_CANCEL = 0x1F7, + EMOTE_MODE_CANCEL_WITH_WARP = 0x1F8, + POSE_EMOTE_CONFIG = 0x1F9, + POSE_EMOTE_WORK = 0x1FA, + POSE_EMOTE_CANCEL = 0x1FB, + JUMP_START = 0x258, + JUMP_LANDING = 0x259, + GIMMICK_JUMP_END = 0x25A, + START_CRAFT = 0x2BC, + FISHING = 0x2BD, + PACKET_COMMOND_TRACKING = 0x2BE, + PACKET_COMMOND_JOURNAL_CONFIG = 0x2BF, + GATHERING_NOTEBOOK_START = 0x2C0, + GATHERING_NOTEBOOK_DIVISION = 0x2C1, + GATHERING_NOTEBOOK_AREA = 0x2C2, + RECIPE_NOTEBOOK_START = 0x2C3, + RECIPE_NOTEBOOK_DIVISION = 0x2C4, + END_AUTO_CRAFT = 0x2C5, + CANCEL_QUEST = 0x320, + DIRECTOR_INIT_RETURN = 0x321, + CANCEL_GUILDLEVE = 0x322, + RETRY_GUILDLEVE = 0x323, + START_GUILDLEVE = 0x324, + RETIRE_GUILDLEVE = 0x325, + CHANGE_GUILDLEVE_DIFFICULTY = 0x326, + SYNC_DIRECTOR = 0x327, + EVENT_HANDLER = 0x328, + FATE_START = 0x329, + FATE_INIT_RETURN = 0x32A, + FATE_CREATE_CHARACTER_RETURN = 0x32B, + FATE_SYNC_CONTEXT_WORK = 0x32C, + FATE_LEVEL_SYNC = 0x32D, + FATE_INIT_CHARACTER_RETURN = 0x32E, + ACHIEVEMENT_REQUEST_RATE = 0x3E8, + ACHIEVEMENT_REQUEST = 0x3E9, + TROPHY_RECEPTION = 0x3EA, + TROPHY_ACQUISITION = 0x3EB, + HOUSING_LOCK_LAND_BY_BUILD = 0x44C, + HOUSING_LOCK_LAND_BY_EXTERIOR = 0x44D, + HOUSING_LOCK_LAND_BY_INTERIOR = 0x44E, + HOUSING_LOCK_LAND_BY_BREAK = 0x44F, + HOUSING_UNLOCK_HOUSE = 0x450, + HOUSING_AUCTION_INFO = 0x451, + HOUSING_GET_PROFILE = 0x452, + HOUSING_GET_PROFILE_LIST = 0x453, + HOUSING_RELEASE = 0x454, + HOUSING_BUILD = 0x455, + HOUSING_BREAK = 0x456, + HOUSING_LOAD_PARTS = 0x457, + HOUSING_LOAD_ROOM = 0x458, + HOUSING_LOAD_YARD = 0x459, + HOUSING_UNPLACE = 0x45A, + HOUSING_HOUSE_NAME = 0x45B, + HOUSING_GREETING = 0x45C, + HOUSING_GREETING_BY_ADDRESS = 0x45D, + HOUSING_WELCOME = 0x45E, + HOUSING_EDIT_WELCOME = 0x45F, + HOUSING_LOAD_FURNITURE = 0x460, + HOUSING_WARP_TO_SAFE = 0x461, + HOUSING_LAYOUTMODE = 0x462, + HOUSING_RELEASE_PERSONAL_ROOM = 0x463, + HOUSING_GET_PERSONAL_ROOM_PROFILE_LIST = 0x464, + HOUSING_GET_PERSONAL_ROOM_PROFILE = 0x465, + HOUSING_GET_BUDDY_STABLE_LIST = 0x466, + HOUSING_TRAIN_BUDDY = 0x467, + HOUSING_FEED_BUDDY = 0x468, + PVP_LEARN_ACTION = 0x4B0, + PVP_LEARN_ACTION_TRAIT = 0x4B1, + PVP_LEARN_TRAIT = 0x4B2, + PVP_ACTION = 0x4B3, + PVP_RESET_REWARD = 0x4B4, + DISCARD_TREASURE_MAP = 0x514, + TREASURE_HUNT_GET_MAP_TIME = 0x515, + SET_RETAINER_TASK = 0x578, + CANCEL_RETAINER_TASK = 0x579, + SET_VENTURE_TUTORIAL_FLAGS = 0x57A, + SET_RETAINER_FLAGS = 0x57B, + RELIC_NOTE_CLEAR = 0x5DC, + RELIC_GEM_ABSORB_MATERIA = 0x5DD, + REPAIR_ITEM = 0x640, + REPAIR_ITEM_NPC = 0x641, + REPAIR_STORAGE_GROUP = 0x642, + REPAIR_STORAGE_GROUP_NPC = 0x643, + REPAIR_MANNEQUIN = 0x644, + REPAIR_MANNEQUIN_NPC = 0x645, + BUDDY_ACTION = 0x6A4, + BUDDY_EQUIP = 0x6A5, + BUDDY_INCREASE_SKILL_LINE = 0x6A6, + PET_COMMAND = 0x708, + SCREEN_SHOT = 0x7D0, + MAX = 0x7D1, }; } - -#endif diff --git a/src/common/Network/CommonNetwork.h b/src/common/Network/CommonNetwork.h index 1a2bd4d6..ba15362d 100644 --- a/src/common/Network/CommonNetwork.h +++ b/src/common/Network/CommonNetwork.h @@ -1,9 +1,9 @@ -#ifndef _CORE_NETWORK_PACKETS_COMMON_H -#define _CORE_NETWORK_PACKETS_COMMON_H +#pragma once #include #include -#include "PacketDef/Ipcs.h" +#include "PacketDef/ServerIpcs.h" +#include "PacketDef/ClientIpcs.h" namespace Sapphire::Network::Packets { @@ -180,4 +180,3 @@ namespace Sapphire::Network::Packets } -#endif /*_CORE_NETWORK_PACKETS_COMMON_H*/ diff --git a/src/common/Network/Connection.cpp b/src/common/Network/Connection.cpp index a2e71f38..2a1a7085 100644 --- a/src/common/Network/Connection.cpp +++ b/src/common/Network/Connection.cpp @@ -43,19 +43,19 @@ void Network::Connection::startRecv( int32_t total_bytes ) m_recv_buffer.resize( total_bytes ); asio::async_read( m_socket, asio::buffer( m_recv_buffer ), - m_io_strand.wrap( std::bind( &Connection::handleRecv, - shared_from_this(), - std::placeholders::_1, - std::placeholders::_2 ) ) ); + m_io_strand.wrap( [ capture0 = shared_from_this() ]( auto && PH1, auto && PH2 ) + { + capture0->handleRecv( std::forward< decltype( PH1 ) > ( PH1 ), std::forward< decltype( PH2 ) > ( PH2 ) ); + } ) ); } else { m_recv_buffer.resize( m_receive_buffer_size ); m_socket.async_read_some( asio::buffer( m_recv_buffer ), - m_io_strand.wrap( std::bind( &Connection::handleRecv, - shared_from_this(), - std::placeholders::_1, - std::placeholders::_2 ) ) ); + m_io_strand.wrap( [ capture0 = shared_from_this() ]( auto && PH1, auto && PH2 ) + { + capture0->handleRecv( std::forward< decltype( PH1 ) > ( PH1 ), std::forward< decltype( PH2 ) >( PH2 ) ); + } ) ); } } @@ -107,7 +107,7 @@ void Network::Connection::handleSend( const asio::error_code& error, } } -void Network::Connection::handleRecv( const asio::error_code& error, int32_t actual_bytes ) +void Network::Connection::handleRecv( const asio::error_code& error, size_t actual_bytes ) { if( error || hasError() || m_hive->hasStopped() ) { diff --git a/src/common/Network/Connection.h b/src/common/Network/Connection.h index 91f86aea..e64ce649 100644 --- a/src/common/Network/Connection.h +++ b/src/common/Network/Connection.h @@ -1,6 +1,4 @@ -#ifndef CONNECTION_H_ -#define CONNECTION_H_ - +#pragma once //----------------------------------------------------------------------------- #include @@ -59,7 +57,7 @@ namespace Sapphire::Network void handleSend( const asio::error_code& error, std::list< std::vector< uint8_t > >::iterator itr ); - void handleRecv( const asio::error_code& error, int32_t actual_bytes ); + void handleRecv( const asio::error_code& error, size_t actual_bytes ); private: @@ -157,4 +155,3 @@ namespace Sapphire::Network } } -#endif diff --git a/src/common/Network/GamePacket.h b/src/common/Network/GamePacket.h index c1c06b76..28408eec 100644 --- a/src/common/Network/GamePacket.h +++ b/src/common/Network/GamePacket.h @@ -1,5 +1,4 @@ -#ifndef _GAMEPACKET_H -#define _GAMEPACKET_H +#pragma once #include #include @@ -12,7 +11,7 @@ #include #include "CommonNetwork.h" -#include "PacketDef/Ipcs.h" +#include "PacketDef/ServerIpcs.h" namespace Sapphire::Network::Packets { @@ -23,13 +22,13 @@ namespace Sapphire::Network::Packets class FFXIVIpcPacket; template< class T > - using ZoneChannelPacket = FFXIVIpcPacket< T, ServerZoneIpcType >; + using ZoneChannelPacket = FFXIVIpcPacket< T, WorldPackets::Server::ServerZoneIpcType >; template< class T > using ChatChannelPacket = FFXIVIpcPacket< T, ServerChatIpcType >; template< class T > - using LobbyChannelPacket = FFXIVIpcPacket< T, ServerLobbyIpcType >; + using LobbyChannelPacket = FFXIVIpcPacket< T, LobbyPackets::ServerLobbyIpcType >; template< class T, typename... Args > @@ -200,7 +199,7 @@ namespace Sapphire::Network::Packets memcpy( &m_data, &rawPacket.data[ 0 ] + ipcHdrSize, copySize ); memset( &m_ipcHdr, 0, ipcHdrSize ); - m_ipcHdr.type = static_cast< ServerZoneIpcType >( m_data._ServerIpcType ); + m_ipcHdr.type = static_cast< WorldPackets::Server::ServerZoneIpcType >( m_data._ServerIpcType ); } size_t getContentSize() override @@ -256,7 +255,7 @@ namespace Sapphire::Network::Packets memset( &m_data, 0, sizeof( T ) ); // The IPC type itself. - m_ipcHdr.type = static_cast< ServerZoneIpcType >( m_data._ServerIpcType ); + m_ipcHdr.type = static_cast< WorldPackets::Server::ServerZoneIpcType >( m_data._ServerIpcType ); m_ipcHdr.timestamp = Common::Util::getTimeSeconds(); m_segHdr.size = sizeof( T ) + sizeof( FFXIVARR_IPC_HEADER ) + sizeof( FFXIVARR_PACKET_SEGMENT_HEADER ); }; @@ -330,5 +329,3 @@ namespace Sapphire::Network::Packets }; } - -#endif \ No newline at end of file diff --git a/src/common/Network/GamePacketParser.h b/src/common/Network/GamePacketParser.h index c50b486a..4a063e3a 100644 --- a/src/common/Network/GamePacketParser.h +++ b/src/common/Network/GamePacketParser.h @@ -1,5 +1,4 @@ -#ifndef _GAMEPACKETPARSER_H -#define _GAMEPACKETPARSER_H +#pragma once #include "CommonNetwork.h" @@ -45,5 +44,3 @@ namespace Sapphire::Network::Packets bool checkSegmentHeader( const FFXIVARR_PACKET_SEGMENT_HEADER& header ); } - -#endif \ No newline at end of file diff --git a/src/common/Network/Hive.h b/src/common/Network/Hive.h index 8ac37328..b1f5d196 100644 --- a/src/common/Network/Hive.h +++ b/src/common/Network/Hive.h @@ -1,5 +1,4 @@ -#ifndef HIVE_H_ -#define HIVE_H_ +#pragma once #include #include @@ -51,4 +50,3 @@ namespace Sapphire::Network }; } -#endif diff --git a/src/common/Network/PacketContainer.h b/src/common/Network/PacketContainer.h index 80a35cf1..b27bece5 100644 --- a/src/common/Network/PacketContainer.h +++ b/src/common/Network/PacketContainer.h @@ -1,5 +1,4 @@ -#ifndef _PacketContainer_H_ -#define _PacketContainer_H_ +#pragma once #include @@ -34,6 +33,4 @@ namespace Sapphire::Network::Packets }; -} - -#endif +} \ No newline at end of file diff --git a/src/common/Network/PacketDef/Chat/ClientChatDef.h b/src/common/Network/PacketDef/Chat/ClientChatDef.h new file mode 100644 index 00000000..e69de29b diff --git a/src/common/Network/PacketDef/Chat/ServerChatDef.h b/src/common/Network/PacketDef/Chat/ServerChatDef.h index a91004b7..f274ee29 100644 --- a/src/common/Network/PacketDef/Chat/ServerChatDef.h +++ b/src/common/Network/PacketDef/Chat/ServerChatDef.h @@ -1,5 +1,4 @@ -#ifndef _CORE_NETWORK_PACKETS_CHAT_SERVER_IPC_H -#define _CORE_NETWORK_PACKETS_CHAT_SERVER_IPC_H +#pragma once #include #include @@ -11,56 +10,54 @@ namespace Sapphire::Network::Packets::Server * Structural representation of the packet sent by the server as response * to a tell request */ -struct FFXIVIpcTell : FFXIVIpcBasePacket< Tell > +struct FFXIVChatFrom : FFXIVIpcBasePacket< ChatFrom > { - uint64_t contentId; - uint16_t worldId; - uint8_t flags; - char receipientName[32]; - char msg[1029]; + uint64_t fromCharacterID; + uint8_t type; + char fromName[32]; //uint8_t + char message[1024]; //uint8_t +}; + +/** +* Structural representation of the packet sent by the server as +* message from a chat channel that the player is associated to +*/ +struct FFXIVChatToChannel : FFXIVIpcBasePacket< Chat > +{ + uint64_t channelID; + uint64_t speakerCharacterID; + uint32_t speakerEntityID; + uint8_t type; + char speakerName[32]; + char message[1024]; +}; + +struct FFXIVJoinChannelResult : FFXIVIpcBasePacket< JoinChannelResult > +{ + uint64_t channelID; + uint64_t characterID; + uint8_t result; +}; + +struct FFXIVRecvBusyStatus : FFXIVIpcBasePacket< RecvBusyStatus > +{ + char toName[32]; //uint8_t +}; + +struct FFXIVRecvFinderStatus : FFXIVIpcBasePacket< RecvFinderStatus > +{ + char toName[32]; //uint8_t }; /** * Structural representation of the packet sent by the server as response * to a failed tell because of unavailable target player */ -struct FFXIVIpcTellErrNotFound : FFXIVIpcBasePacket< TellErrNotFound > +struct FFXIVIpcTellNotFound : FFXIVIpcBasePacket< TellNotFound > { - char receipientName[32]; + char toName[32]; //uint8_t }; -struct FFXIVIpcFreeCompanyEvent : FFXIVIpcBasePacket< FreeCompanyEvent > -{ - uint16_t unknown; - uint16_t unknown1; - uint16_t unknown2; - uint16_t unknown3; - uint16_t unknown4; - char padding[6]; - uint8_t eventID; - /* - * 0x0F Login - * 0x10 Logout - */ - uint8_t padding1; - char padding2[6]; - uint16_t unknown5; - char parameter[46]; - /** - * eventID | parameter usage - * 0x0F FC name - * 0x10 FC name - */ - char parameter1[32]; - /** - * eventID | parameter1 usage - * 0x0F Character name - * 0x10 Character name - */ -}; } /* Sapphire::Common::Network::Packets::Server */ - - -#endif /*_CORE_NETWORK_PACKETS_CHAT_SERVER_IPC_H*/ diff --git a/src/common/Network/PacketDef/ClientIpcs.h b/src/common/Network/PacketDef/ClientIpcs.h new file mode 100644 index 00000000..f36fdd6e --- /dev/null +++ b/src/common/Network/PacketDef/ClientIpcs.h @@ -0,0 +1,274 @@ +#pragma once + +#include + +namespace Sapphire::Network::Packets +{ + namespace LobbyPackets + { + //////////////////////////////////////////////////////////////////////////////// + /// Lobby Connection IPC Codes + /** + * Client IPC Lobby Type Codes. + */ + + enum ClientLobbyIpcType : uint16_t + { + Sync = 0x0001, + Login = 0x0002, + ServiceLogin = 0x0003, + GameLogin = 0x0004, + LoginEx = 0x0005, + ShandaLogin = 0x0006, + + CharaMake = 0x000B, + CharaOperation = 0x000C, + CharaRename = 0x000D, + CharaDelete = 0x000E, + UpdateRetainerSlots = 0x000F, + + DebugNull = 0x1F4, + DebugLogin = 0x1F5, + DebugLogin2 = 0x1F6, + + }; + } + + namespace WorldPackets::Client + { + /** + * Client IPC Zone Type Codes. + */ + enum ClientZoneIpcType : uint16_t + { + Sync = 0x0065, + Login = 0x0066, + ChatHandler = 0x0067, + + SetLanguage = 0x0069, + Invite = 0xC9, + InviteReply = 0xCA, + GetCommonlist = 0x00CB, + GetCommonlistDetail = 0xCC, + SetProfile = 0x00CD, + GetProfile = 0x00CE, + GetSearchComment = 0xCF, + PartyRecruitAdd = 0xD0, + JoinChatChannel = 0xD1, + LeaveChatChannel = 0xD2, + PartyRecruitRemove = 0xD3, + PartyRecruitSearch = 0xD4, + GetRecruitSearchList = 0xD5, + GetRecruitDetail = 0xD6, + InviteReplyRecruitParty = 0xD7, + PartyRecruitEdit = 0xD8, + GetPurposeLevel = 0xD9, + AddRequestItem = 0xDA, + RemoveRequestItem = 0xDB, + PcPartyLeave = 0xDC, + PcPartyDisband = 0xDD, + PcPartyKick = 0xDE, + PcPartyChangeLeader = 0xDF, + GetRequestItem = 0xE0, + BlacklistAdd = 0xE1, + BlacklistRemove = 0xE2, + GetBlacklist = 0x00E3, + GetRequestItemList = 0xE4, + SendReadyCheck = 0xE5, + FriendlistRemove = 0xE6, + ReplyReadyCheck = 0xE7, + GetPartyRecruitCount = 0xE8, + FcAddJoinRequest = 0xE9, + FcRemoveJoinRequest = 0xEA, + PcSearch = 0xEB, + GetFcJoinRequestComment = 0xEC, + InviteCancel = 0xED, + LinkshellJoin = 0xF0, + LinkshellJoinOfficial = 0xF1, + LinkshellLeave = 0xF2, + LinkshellChangeMaster = 0xF4, + LinkshellKick = 0xF5, + GetLinkshellList = 0x00F6, + LinkshellAddLeader = 0xF7, + LinkshellRemoveLeader = 0xF8, + LinkshellDeclineLeader = 0xF9, + LetterSendMessage = 0xFA, + LetterRemoveMessage = 0xFB, + GetLetterMessage = 0xFC, + GetLetterMessageDetail = 0xFD, + LetterMoveAppendItem = 0xFF, + CheckGiftMail = 0x100, + ItemSearch = 0x104, + GetItemSearchList = 0x105, + GetRetainerList = 0x106, + BuyMarketRetainer = 0x107, + GetRetainerSalesHistory = 0x108, + CatalogSearch = 0x109, + FreeCompanyLeave = 0x10E, + FreeCompanyKick = 0x10F, + FcSetHierarchyName = 0x111, + FcSetAuthorityList = 0x112, + FcMoveHierarchyMember = 0x113, + FcAddHierarchy = 0x114, + FcRemoveHierarchy = 0x115, + FcSortHierarchy = 0x116, + GetFcStatus = 0x117, + FcForceDisband = 0x118, + GetFcInviteList = 0x119, + GetFcProfile = 0x11A, + GetFcHeader = 0x11B, + SetCompanyBoard = 0x11C, + GetCompanyBoard = 0x11D, + GetFcHierarchy = 0x11E, + FcChangeMaster = 0x11F, + GetFcActivityList = 0x120, + SetCompanyMotto = 0x121, + GetCompanyMotto = 0x122, + GetFcParams = 0x123, + SetCrestID = 0x124, + BuyFcAction = 0x125, + FcActionCommand = 0x126, + GetFcAction = 0x127, + SetFcMemo = 0x128, + GetFcMemo = 0x129, + InfoGMCommand = 0x12A, + DebugInfoCommand = 0x12B, + RequestSyncTag = 0x12C, + + ZoneJump = 0x0190, + Command = 0x191, + PhysicalBonus = 0x193, + NewDiscovery = 0x0194, + TargetPosCommand = 0x195, + ActionRequest = 0x196, + GMCommand = 0x197, + GMCommandName = 0x198, + SelectGroundActionRequest = 0x199, + Move = 0x019A, + GMCommandBuddyName = 0x19B, + GMCommandNameBuddyName = 0x19C, + RequestStorageItems = 0x1A4, + ExchangeAttachedInactiveMateria = 0x1A5, + RetainerCustomize = 0x1A6, + ClientItemOperation = 0x01AE, + GearSetEquip = 0x1AF, + HousingExteriorChange = 0x01B0, + HousingPlaceYardItem = 0x01B1, + HousingInteriorChange = 0x01B2, + TradeCommand = 0x1B3, + TreasureCheckCommand = 0x1B4, + SelectLootAction = 0x1B5, + OpenTreasureWithKey = 0x1B6, + + StartTalkEvent = 0x01C2, + StartEmoteEvent = 0x01C3, + StartWithinRangeEvent = 0x01C4, + StartOutsideRangeEvent = 0x01C5, + StartEnterTerritoryEvent = 0x01C6, + StartActionResultEvent = 0x01C7, + StartUIEvent = 0x01C8, + StartSayEvent = 0x01C9, + + ReturnEventSceneHeader = 0x01D6, + ReturnEventScene2 = 0x01D7, + ReturnEventScene4 = 0x01D8, + ReturnEventScene8 = 0x01D9, + ReturnEventScene16 = 0x01DA, + ReturnEventScene32 = 0x01DB, + ReturnEventScene64 = 0x01DC, + ReturnEventScene128 = 0x01DD, + ReturnEventScene255 = 0x01DE, + + YieldEventSceneHeader = 0x01DF, + YieldEventScene2 = 0x01E0, + YieldEventScene4 = 0x01E1, + YieldEventScene8 = 0x01E2, + YieldEventScene16 = 0x01E3, + YieldEventScene32 = 0x01E4, + YieldEventScene64 = 0x01E5, + YieldEventScene128 = 0x01E6, + YieldEventScene255 = 0x01E7, + + YieldEventSceneStringHeader = 0x1EA, + YieldEventSceneString8 = 0x1EB, + YieldEventSceneString16 = 0x1EC, + YieldEventSceneString32 = 0x1ED, + YieldEventSceneIntAndString = 0x1EE, + + DebugNull = 0x1F4, + DebugCommand = 0x1F5, + DebugBnpcControl = 0x1F6, + DebugMessage = 0x1F7, + FindContent = 0x1F9, + DebugFinishContent = 0x1FA, + + AcceptContent = 0x1FB, + CancelFindContent = 0x1FC, + Find5Contents = 0x1FD, + FindContentAsRandom = 0x1FE, + ChocoboTaxiPathEnd = 0x258, + ChocoboTaxiSetStep = 0x259, + ChocoboTaxiUnmount = 0x25A, + + Config = 0x0262, + StartLogoutCountdown = 0x263, + CancelLogoutCountdown = 0x264, + FateDebugCommand = 0x265, + ContentAction = 0x266, + RequestPenalties = 0x267, + Logout = 0x269, + + HousingHouseName = 0x026A, + HousingGreeting = 0x026B, + HousingChangeLayout = 0x026C, + VoteKickStart = 0x26D, + MVPRequest = 0x26E, + HousingChangeLayoutMulti = 0x026F, + + ConfusionApproachEnd = 0x276, + ConfusionTurnEnd = 0x277, + MovePvP = 0x278, + + ////////////////////////////////////// + + CFCommenceHandler = 0x0078, // updated 5.21 hotfix + + //CFRegisterDuty = 0x1118, // updated 5.21 hotfix + + MarketBoardRequestItemListingInfo = 0x1102, // updated 4.5 + MarketBoardRequestItemListings = 0x1103, // updated 4.5 + + ReqExamineFcInfo = 0x1113, // updated 4.1 + + }; + + } + //////////////////////////////////////////////////////////////////////////////// + /// Chat Connection IPC Codes + /** + * Client IPC Chat Type Codes. + */ + enum ClientChatIpcType : uint16_t + { + //Sync = 0x01, TODO: Fix this cuz name bullshit... + Login = 0x02, + + ChatTo = 0x64, + ChatToChannel = 0x65, // TODO: Fix this cuz name bullshit... -- old name: Chat + SendBusyStatus = 0x66, + GetChannelMemberList = 0x67, + GetChannelList = 0x68, + SendFinderStatus = 0x69, + ChatToCharacterID = 0x6A, + + JoinChannel = 0xC8, + LeaveChannel = 0xC9, + RenameChannel = 0xCA, + GmLogin = 0xCB, + GmLogout = 0xCc + //TellReq = 0x0064, + }; + + +} + diff --git a/src/common/Network/PacketDef/Ipcs.h b/src/common/Network/PacketDef/Ipcs.h deleted file mode 100644 index 0db60930..00000000 --- a/src/common/Network/PacketDef/Ipcs.h +++ /dev/null @@ -1,454 +0,0 @@ -#ifndef _CORE_NETWORK_PACKETS_IPCS_H -#define _CORE_NETWORK_PACKETS_IPCS_H - -#include - -namespace Sapphire::Network::Packets -{ - - //////////////////////////////////////////////////////////////////////////////// - /// Lobby Connection IPC Codes - /** - * Server IPC Lobby Type Codes. - */ - enum ServerLobbyIpcType : uint16_t - { - LobbyError = 0x0002, - LobbyServiceAccountList = 0x000C, - LobbyCharList = 0x000D, - LobbyCharCreate = 0x000E, - LobbyEnterWorld = 0x000F, - LobbyServerList = 0x0015, - LobbyRetainerList = 0x0017, - - }; - - /** - * Client IPC Lobby Type Codes. - */ - enum ClientLobbyIpcType : uint16_t - { - ReqCharList = 0x0003, - ReqEnterWorld = 0x0004, - ClientVersionInfo = 0x0005, - - ReqCharDelete = 0x000A, - ReqCharCreate = 0x000B, - }; - - //////////////////////////////////////////////////////////////////////////////// - /// Zone Connection IPC Codes - /** - * Server IPC Zone Type Codes. - */ - enum ServerZoneIpcType : uint16_t - { - Ping = 0x02A8, // updated 5.58 hotfix - Init = 0x013C, // updated 5.58 hotfix - - ActorFreeSpawn = 0x00B5, // updated 5.58 hotfix - InitZone = 0x0320, // updated 5.58 hotfix - - EffectResult = 0x0387, // updated 5.58 hotfix - ActorControl = 0x00B0, // updated 5.58 hotfix - ActorControlSelf = 0x02B6, // updated 5.58 hotfix - ActorControlTarget = 0x03C5, // updated 5.58 hotfix - - /*! - * @brief Used when resting - */ - UpdateHpMpTp = 0x01A7, // updated 5.58 hotfix - - /////////////////////////////////////////////////// - - ChatBanned = 0xF06B, - Playtime = 0x0179, // updated 5.58 hotfix - Logout = 0x0214, // updated 5.58 hotfix - CFNotify = 0x0327, // updated 5.58 hotfix - CFMemberStatus = 0x0079, - CFDutyInfo = 0x03AA, // updated 5.58 hotfix - CFPlayerInNeed = 0xF07F, - CFPreferredRole = 0x024B, // updated 5.58 hotfix - CFCancel = 0x01AC, // updated 5.58 hotfix - SocialRequestError = 0xF0AD, - - CFRegistered = 0x029F, // updated 5.58 hotfix - SocialRequestResponse = 0x0082, // updated 5.58 hotfix - SocialMessage = 0x03CB, // updated 5.58 hotfix - SocialMessage2 = 0x01D7, // updated 5.58 hotfix - CancelAllianceForming = 0xF0C6, // updated 4.2 - - LogMessage = 0x0118, // updated 5.58 hotfix - - Chat = 0x00FE, // updated 5.58 hotfix - PartyChat = 0x0065, - - WorldVisitList = 0xF0FE, // added 4.5 - - SocialList = 0x015F, // updated 5.58 hotfix - - ExamineSearchInfo = 0x0133, // updated 5.58 hotfix - UpdateSearchInfo = 0x03E5, // updated 5.58 hotfix - InitSearchInfo = 0x0321, // updated 5.58 hotfix - ExamineSearchComment = 0x03AD, // updated 5.58 hotfix - - ServerNoticeShort = 0x0333, // updated 5.58 hotfix - ServerNotice = 0x0171, // updated 5.58 hotfix - SetOnlineStatus = 0x037B, // updated 5.58 hotfix - - CountdownInitiate = 0x0111, // updated 5.58 hotfix - CountdownCancel = 0x0231, // updated 5.58 hotfix - - PlayerAddedToBlacklist = 0x024E, // updated 5.58 hotfix - PlayerRemovedFromBlacklist = 0x011D, // updated 5.58 hotfix - BlackList = 0x03C0, // updated 5.58 hotfix - - LinkshellList = 0x02E2, // updated 5.58 hotfix - - MailDeleteRequest = 0xF12B, // updated 5.0 - - // 12D - 137 - constant gap between 4.5x -> 5.0 - ReqMoogleMailList = 0xF138, // updated 5.0 - ReqMoogleMailLetter = 0xF139, // updated 5.0 - MailLetterNotification = 0x013A, // updated 5.0 - - MarketTaxRates = 0x01F8, // updated 5.35 hotfix - - MarketBoardSearchResult = 0x01F1, // updated 5.58 hotfix - MarketBoardItemListingCount = 0x0068, // updated 5.58 hotfix - MarketBoardItemListingHistory = 0x01BA, // updated 5.58 hotfix - MarketBoardItemListing = 0x0076, // updated 5.58 hotfix - - CharaFreeCompanyTag = 0x013B, // updated 4.5 - FreeCompanyBoardMsg = 0x03DB, // updated 5.58 hotfix - FreeCompanyInfo = 0x01F7, // updated 5.58 hotfix - ExamineFreeCompanyInfo = 0x0324, // updated 5.58 hotfix - - FreeCompanyUpdateShortMessage = 0xF157, // added 5.0 - - StatusEffectList = 0x0074, // updated 5.58 hotfix - EurekaStatusEffectList = 0x0167, // updated 5.18 - BossStatusEffectList = 0x0312, // added 5.1 - Effect = 0x03CA, // updated 5.58 hotfix - AoeEffect8 = 0x03C4, // updated 5.58 hotfix - AoeEffect16 = 0x00FA, // updated 5.58 hotfix - AoeEffect24 = 0x0339, // updated 5.58 hotfix - AoeEffect32 = 0x023C, // updated 5.58 hotfix - PersistantEffect = 0x025D, // updated 5.58 hotfix - - GCAffiliation = 0x0094, // updated 5.58 hotfix - - PlayerSpawn = 0x01D8, // updated 5.58 hotfix - NpcSpawn = 0x00D2, // updated 5.58 hotfix - NpcSpawn2 = 0x01CB, // ( Bigger statuseffectlist? ) updated 5.3 - ActorMove = 0x00F8, // updated 5.58 hotfix - - ActorSetPos = 0x0299, // updated 5.58 hotfix - - ActorCast = 0x015D, // updated 5.58 hotfix - SomeCustomiseChangePacketProbably = 0x00CD, // added 5.18 - - PartyList = 0x0349, // updated 5.58 hotfix - PartyMessage = 0x00A4, // updated 5.58 hotfix - HateRank = 0x0150, // updated 5.58 hotfix - HateList = 0x0243, // updated 5.58 hotfix - ObjectSpawn = 0x0125, // updated 5.58 hotfix - ObjectDespawn = 0x0148, // updated 5.58 hotfix - UpdateClassInfo = 0x0084, // updated 5.58 hotfix - SilentSetClassJob = 0xF18E, // updated 5.0 - seems to be the case, not sure if it's actually used for anything - PlayerSetup = 0x01D5, // updated 5.58 hotfix - PlayerStats = 0x0295, // updated 5.58 hotfix - ActorOwner = 0x0260, // updated 5.58 hotfix - PlayerStateFlags = 0x03BF, // updated 5.58 hotfix - PlayerClassInfo = 0x0131, // updated 5.58 hotfix - CharaVisualEffect = 0x0292, // updated 5.58 hotfix - - ModelEquip = 0x03A2, // updated 5.58 hotfix - Examine = 0x0365, // updated 5.58 hotfix - CharaNameReq = 0x01F0, // updated 5.58 hotfix - - // nb: see #565 on github - UpdateRetainerItemSalePrice = 0xF19F, // updated 5.0 - RetainerSaleHistory = 0x03CE, // updated 5.58 hotfix - RetainerInformation = 0x022F, // updated 5.58 hotfix - - SetLevelSync = 0x1186, // not updated for 4.4, not sure what it is anymore - - ItemInfo = 0x01CC, // updated 5.58 hotfix - ContainerInfo = 0x025C, // updated 5.58 hotfix - InventoryTransactionFinish = 0x0176, // updated 5.58 hotfix - InventoryTransaction = 0x027F, // updated 5.58 hotfix - CurrencyCrystalInfo = 0x0345, // updated 5.58 hotfix - - InventoryActionAck = 0x03B8, // updated 5.58 hotfix - UpdateInventorySlot = 0x02F7, // updated 5.58 hotfix - - HuntingLogEntry = 0x01D9, // updated 5.58 hotfix - - EventPlay = 0x016B, // updated 5.58 hotfix - EventPlay4 = 0x010A, // updated 5.58 hotfix - EventPlay8 = 0x0337, // updated 5.58 hotfix - EventPlay16 = 0x0269, // updated 5.58 hotfix - EventPlay32 = 0x023E, // updated 5.58 hotfix - EventPlay64 = 0x00DE, // updated 5.58 hotfix - EventPlay128 = 0x02D0, // updated 5.58 hotfix - EventPlay255 = 0x0362, // updated 5.58 hotfix - - EventContinue = 0x00B6, // updated 5.58 hotfix - - EventStart = 0x02DA, // updated 5.58 hotfix - EventFinish = 0x0235, // updated 5.58 hotfix - - EventLinkshell = 0x1169, - - QuestActiveList = 0x0097, // updated 5.58 hotfix - QuestUpdate = 0x01B2, // updated 5.58 hotfix - QuestCompleteList = 0x006D, // updated 5.58 hotfix - - QuestFinish = 0x021B, // updated 5.58 hotfix - MSQTrackerComplete = 0x0348, // updated 5.58 hotfix - MSQTrackerProgress = 0xF1CD, // updated 4.5 ? this actually looks like the two opcodes have been combined, see #474 - - QuestMessage = 0x0220, // updated 5.58 hotfix - - QuestTracker = 0x00D8, // updated 5.58 hotfix - - Mount = 0x01E1, // updated 5.58 hotfix - - DirectorVars = 0x0154, // updated 5.58 hotfix - SomeDirectorUnk1 = 0x0084, // updated 5.18 - SomeDirectorUnk2 = 0xF0C1, // updated 5.18 - SomeDirectorUnk4 = 0x03DD, // updated 5.58 hotfix - SomeDirectorUnk8 = 0x028A, // updated 5.18 - SomeDirectorUnk16 = 0x028C, // updated 5.18 - DirectorPopUp = 0x03DF, // updated 5.58 hotfix - DirectorPopUp4 = 0x019B, // updated 5.58 hotfix - DirectorPopUp8 = 0x0271, // updated 5.58 hotfix - - CFAvailableContents = 0xF1FD, // updated 4.2 - - WeatherChange = 0x0323, // updated 5.58 hotfix - PlayerTitleList = 0x014E, // updated 5.58 hotfix - Discovery = 0x01C2, // updated 5.58 hotfix - - EorzeaTimeOffset = 0x0070, // updated 5.58 hotfix - - EquipDisplayFlags = 0x02C6, // updated 5.58 hotfix - - MiniCactpotInit = 0x0286, // added 5.31 - ShopMessage = 0x0287, // updated 5.58 hotfix - LootMessage = 0x0383, // updated 5.58 hotfix - ResultDialog = 0x0273, // updated 5.58 hotfix - DesynthResult = 0x0238, // updated 5.58 hotfix - - /// Housing ////////////////////////////////////// - - LandSetInitialize = 0x0159, // updated 5.58 hotfix - LandUpdate = 0x0228, // updated 5.58 hotfix - YardObjectSpawn = 0x023D, // updated 5.58 hotfix - HousingIndoorInitialize = 0x0210, // updated 5.58 hotfix - LandPriceUpdate = 0x0300, // updated 5.58 hotfix - LandInfoSign = 0x03E7, // updated 5.58 hotfix - LandRename = 0x01BF, // updated 5.58 hotfix - HousingEstateGreeting = 0x0126, // updated 5.58 hotfix - HousingUpdateLandFlagsSlot = 0x0157, // updated 5.58 hotfix - HousingLandFlags = 0x03B1, // updated 5.58 hotfix - HousingShowEstateGuestAccess = 0x00CC, // updated 5.58 hotfix - - HousingObjectInitialize = 0x0112, // updated 5.58 hotfix - HousingInternalObjectSpawn = 0x02C8, // updated 5.58 hotfix - - HousingWardInfo = 0x012A, // updated 5.58 hotfix - HousingObjectMove = 0x0265, // updated 5.58 hotfix - - SharedEstateSettingsResponse = 0x030E, // updated 5.58 hotfix - - LandUpdateHouseName = 0x017C, // updated 5.58 hotfix - - LandSetMap = 0x02E5, // updated 5.58 hotfix - - CeremonySetActorAppearance = 0x02ED, // updated 5.58 hotfix - - ////////////////////////////////////////////////// - - DuelChallenge = 0x0277, // 4.2; this is responsible for opening the ui - PerformNote = 0x0127, // updated 5.58 hotfix - - PrepareZoning = 0x02AB, // updated 5.58 hotfix - ActorGauge = 0x01C1, // updated 5.58 hotfix - DutyGauge = 0x02E5, // updated 5.58 hotfix - - // daily quest info -> without them sent, login will take longer... - DailyQuests = 0x02D6, // updated 5.58 hotfix - DailyQuestRepeatFlags = 0x01AB, // updated 5.58 hotfix - - MapUpdate = 0x0394, // updated 5.58 hotfix - MapUpdate4 = 0x036F, // updated 5.58 hotfix - MapUpdate8 = 0x0311, // updated 5.58 hotfix - MapUpdate16 = 0x0108, // updated 5.58 hotfix - MapUpdate32 = 0x007A, // updated 5.58 hotfix - MapUpdate64 = 0x02A0, // updated 5.58 hotfix - MapUpdate128 = 0x0303, // updated 5.58 hotfix - - /// Doman Mahjong ////////////////////////////////////// - MahjongOpenGui = 0x02A4, // only available in mahjong instance - MahjongNextRound = 0x02BD, // initial hands(baipai), # of riichi(wat), winds, honba, score and stuff - MahjongPlayerAction = 0x02BE, // tsumo(as in drawing a tile) called chi/pon/kan/riichi - MahjongEndRoundTsumo = 0x02BF, // called tsumo - MahjongEndRoundRon = 0x2C0, // called ron or double ron (waiting for action must be flagged from discard packet to call) - MahjongTileDiscard = 0x02C1, // giri (discarding a tile.) chi(1)/pon(2)/kan(4)/ron(8) flags etc.. - MahjongPlayersInfo = 0xF2C2, // actor id, name, rating and stuff.. - // 2C3 and 2C4 are currently unknown - MahjongEndRoundDraw = 0x02C5, // self explanatory - MahjongEndGame = 0x02C6, // finished oorasu(all-last) round; shows a result screen. - - /// Airship & Submarine ////////////////////////////////////// - AirshipExplorationResult = 0x0203, // updated 5.58 hotfix - AirshipStatus = 0x030C, // updated 5.58 hotfix - AirshipStatusList = 0x02FE, // updated 5.58 hotfix - AirshipTimers = 0x0166, // updated 5.58 hotfix - SubmarineExplorationResult = 0x00AA, // updated 5.58 hotfix - SubmarineProgressionStatus = 0x0357, // updated 5.58 hotfix - SubmarineStatusList = 0x01EF, // updated 5.58 hotfix - SubmarineTimers = 0x0247, // updated 5.58 hotfix - }; - - /** - * Client IPC Zone Type Codes. - */ - enum ClientZoneIpcType : uint16_t - { - PingHandler = 0x0288, // updated 5.58 hotfix - InitHandler = 0x02EB, // updated 5.58 hotfix - - FinishLoadingHandler = 0x013C, // updated 5.58 hotfix - - CFCommenceHandler = 0x0381, // updated 5.58 hotfix - - CFCancelHandler = 0x02B2, // updated 5.58 hotfix - CFRegisterDuty = 0x01BD, // updated 5.58 hotfix - CFRegisterRoulette = 0x037A, // updated 5.58 hotfix - PlayTimeHandler = 0x02B7, // updated 5.58 hotfix - LogoutHandler = 0x00A0, // updated 5.58 hotfix - CancelLogout = 0x01AC, // updated 5.58 hotfix - CFDutyInfoHandler = 0xF078, // updated 4.2 - - SocialReqSendHandler = 0x00D7, // updated 5.58 hotfix - SocialResponseHandler = 0x023B, // updated 5.58 hotfix - CreateCrossWorldLS = 0x035D, // updated 5.58 hotfix - - ChatHandler = 0x03B0, // updated 5.58 hotfix - PartyChatHandler = 0x0065, - PartySetLeaderHandler = 0x036C, // updated 5.58 hotfix - LeavePartyHandler = 0x019D, // updated 5.58 hotfix - KickPartyMemberHandler = 0x0262, // updated 5.58 hotfix - DisbandPartyHandler = 0x0276, // updated 5.58 hotfix - - SocialListHandler = 0x01CA, // updated 5.58 hotfix - SetSearchInfoHandler = 0x01D4, // updated 5.58 hotfix - ReqSearchInfoHandler = 0x014F, // updated 5.58 hotfix - ReqExamineSearchCommentHandler = 0x00E7, // updated 5.0 - - ReqRemovePlayerFromBlacklist = 0x00B4, // updated 5.58 hotfix - BlackListHandler = 0x00F2, // updated 5.58 hotfix - PlayerSearchHandler = 0x037D, // updated 5.58 hotfix - - LinkshellListHandler = 0x03B6, // updated 5.58 hotfix - - MarketBoardRequestItemListingInfo = 0x00F4, // updated 5.58 hotfix - MarketBoardRequestItemListings = 0x0122, // updated 5.58 hotfix - MarketBoardSearch = 0x0082, // updated 5.58 hotfix - - ReqExamineFcInfo = 0x037B, // updated 5.58 hotfix - - FcInfoReqHandler = 0x03D4, // updated 5.58 hotfix - - FreeCompanyUpdateShortMessageHandler = 0x0123, // added 5.0 - - ReqMarketWishList = 0x00C3, // updated 5.58 hotfix - - ReqJoinNoviceNetwork = 0x0129, // updated 4.2 - - ReqCountdownInitiate = 0x02EC, // updated 5.58 hotfix - ReqCountdownCancel = 0x0068, // updated 5.58 hotfix - - ZoneLineHandler = 0x008D, // updated 5.58 hotfix - ClientTrigger = 0x03DB, // updated 5.58 hotfix - DiscoveryHandler = 0x038B, // updated 5.58 hotfix - - PlaceFieldMarkerPreset = 0x026D, // updated 5.58 hotfix - PlaceFieldMarker = 0x0371, // updated 5.58 hotfix - SkillHandler = 0x02DC, // updated 5.58 hotfix - GMCommand1 = 0x0272, // updated 5.58 hotfix - GMCommand2 = 0x00E9, // updated 5.58 hotfix - AoESkillHandler = 0x0152, // updated 5.58 hotfix - - UpdatePositionHandler = 0x01AF, // updated 5.58 hotfix - - InventoryModifyHandler = 0x029E, // updated 5.58 hotfix - - InventoryEquipRecommendedItems = 0x01C9, // updated 5.58 hotfix - - ReqPlaceHousingItem = 0x02D4, // updated 5.58 hotfix - BuildPresetHandler = 0x0223, // updated 5.58 hotfix - - TalkEventHandler = 0x0387, // updated 5.58 hotfix - EmoteEventHandler = 0x00B0, // updated 5.58 hotfix - WithinRangeEventHandler = 0x02B6, // updated 5.58 hotfix - OutOfRangeEventHandler = 0x03C5, // updated 5.58 hotfix - EnterTeriEventHandler = 0x01A7, // updated 5.58 hotfix - ShopEventHandler = 0x0384, // updated 5.58 hotfix - ReturnEventHandler = 0x00FA, // updated 5.58 hotfix - TradeReturnEventHandler = 0x0339, // updated 5.58 hotfix - TradeReturnEventHandler2 = 0x023C, // updated 5.58 hotfix - EventYield2Handler = 0x021D, // updated 5.58 hotfix - EventYield16Handler = 0x0207, // updated 5.58 hotfix - - LinkshellEventHandler = 0x016B, // updated 4.5 - LinkshellEventHandler1 = 0x016C, // updated 4.5 - - ReqEquipDisplayFlagsChange = 0x02A5, // updated 5.58 hotfix - - LandRenameHandler = 0x028E, // updated 5.58 hotfix - HousingUpdateHouseGreeting = 0x0343, // updated 5.58 hotfix - HousingUpdateObjectPosition = 0x012C, // updated 5.58 hotfix - HousingEditExterior = 0x027B, // updated 5.58 hotfix - HousingEditInterior = 0x02E3, // updated 5.58 hotfix - - SetSharedEstateSettings = 0x00D2, // updated 5.58 hotfix - - UpdatePositionInstance = 0x00F8, // updated 5.58 hotfix - - PerformNoteHandler = 0x0243, // updated 5.58 hotfix - - WorldInteractionHandler = 0x0274, // updated 5.58 hotfix - Dive = 0x0320, // updated 5.58 hotfix - }; - - //////////////////////////////////////////////////////////////////////////////// - /// Chat Connection IPC Codes - /** - * Server IPC Chat Type Codes. - */ - enum ServerChatIpcType : uint16_t - { - Tell = 0x0064, // updated for sb - PublicContentTell = 0x00FB, // added 4.5, this is used when receiving a /tell in PublicContent instances such as Eureka or Bozja - TellErrNotFound = 0x0066, - - FreeCompanyEvent = 0x012C, // added 5.0 - }; - - /** - * Client IPC Chat Type Codes. - */ - enum ClientChatIpcType : uint16_t - { - TellReq = 0x0064, - PublicContentTellReq = 0x0326, // updated 5.35 hotfix, this is used when sending a /tell in PublicContent instances such as Eureka or Bozja - }; - - -} - -#endif /*_CORE_NETWORK_PACKETS_IPCS_H*/ diff --git a/src/common/Network/PacketDef/Lobby/ClientLobbyDef.h b/src/common/Network/PacketDef/Lobby/ClientLobbyDef.h new file mode 100644 index 00000000..c861a232 --- /dev/null +++ b/src/common/Network/PacketDef/Lobby/ClientLobbyDef.h @@ -0,0 +1,176 @@ +#pragma once + +#include +#include + +namespace Sapphire::Network::Packets::LobbyPackets::Client +{ + +struct FFXIVIpcSync : FFXIVIpcBasePacket< Sync > +{ + uint32_t clientTimeValue; +}; + +struct FFXIVIpcLogin : FFXIVIpcBasePacket< Login > +{ + uint32_t requestNumber; + uint32_t clientTimeValue; + uint16_t clientLangCode; + uint16_t lobbyLoginMode; + uint16_t platformType; + uint16_t platformMode; + char sessionId[64]; + char version[128]; +}; + +struct FFXIVIpcServiceLogin : FFXIVIpcBasePacket< ServiceLogin > +{ + uint32_t requestNumber; + uint32_t clientTimeValue; + uint8_t accountIndex; + uint8_t loginParam1 : 4; + uint8_t protoVersion : 4; + uint16_t loginParam2; + uint64_t accountId; +}; + +struct FFXIVIpcGameLogin : FFXIVIpcBasePacket< GameLogin > +{ + uint32_t requestNumber; + uint32_t clientTimeValue; + uint64_t characterId; + uint64_t playerId; + uint8_t characterIndex; + uint8_t operation; + uint16_t worldId; +}; + +struct FFXIVIpcLoginEx : FFXIVIpcBasePacket< LoginEx > +{ + uint32_t requestNumber; + uint32_t clientTimeValue; + uint16_t clientLangCode; + uint16_t lobbyLoginMode; + uint16_t platformType; + uint16_t platformMode; + char sessionId[64]; + char version[128]; + char platformData[32]; +}; + +struct FFXIVIpcShandaLogin : FFXIVIpcBasePacket< ShandaLogin > +{ + uint32_t requestNumber; + uint32_t clientTimeValue; + uint16_t clientLangCode; + uint16_t lobbyLoginMode; + uint16_t platformType; + uint16_t platformMode; + char sessionId[384]; + char version[128]; + char platformData[32]; +}; + +enum CharacterOperation : uint8_t +{ + CHARAOPE_UNKNOWN = 0x0, + CHARAOPE_RESERVENAME = 0x1, + CHARAOPE_MAKECHARA = 0x2, + CHARAOPE_RENAMECHARA = 0x3, + CHARAOPE_DELETECHARA = 0x4, + CHARAOPE_MOVECHARA = 0x5, + CHARAOPE_RENAMERETAINER = 0x6, + CHARAOPE_REMAKECHARA = 0x7, +}; + +struct FFXIVIpcCharaMake : FFXIVIpcBasePacket< CharaMake > +{ + uint32_t requestNumber; + uint32_t clientTimeValue; + uint64_t characterId; + uint64_t playerId; + uint8_t characterIndex; + CharacterOperation operation; + uint16_t worldId; + char chracterName[32]; + char charaMakeData[400]; + uint64_t retainerId; + uint8_t retainerSlotId; + uint8_t param1; + uint16_t param2; +}; + +struct FFXIVIpcCharaOperation : FFXIVIpcBasePacket< CharaOperation > +{ + uint32_t requestNumber; + uint32_t clientTimeValue; + uint64_t characterId; + uint64_t playerId; + uint8_t characterIndex; + uint8_t operation; + uint16_t worldId; + char chracterName[32]; + uint64_t retainerId; + uint8_t retainerSlotId; + uint8_t param1; + uint16_t param2; +}; + +struct FFXIVIpcCharaRename : FFXIVIpcBasePacket< CharaRename > +{ + uint32_t requestNumber; + uint32_t clientTimeValue; + uint64_t characterId; + uint64_t playerId; + uint8_t characterIndex; + uint8_t operation; + uint16_t worldId; + char chracterName[32]; +}; + +struct FFXIVIpcCharaDelete : FFXIVIpcBasePacket< CharaDelete > +{ + uint32_t requestNumber; + uint32_t clientTimeValue; + uint64_t characterId; + uint8_t characterIndex; + uint8_t padding1; + uint16_t padding2; + char chracterName[32]; +}; + +struct FFXIVIpcCharaUpdateRetainerSlots : FFXIVIpcBasePacket< UpdateRetainerSlots > +{ + uint32_t requestNumber; + uint32_t clientTimeValue; + uint32_t param0; + uint8_t param1; + uint8_t padding1; + uint16_t padding2; + uint64_t characterIdArray[8]; + uint8_t flags[96]; +}; + +struct FFXIVIpcDebugNull : FFXIVIpcBasePacket< DebugNull > +{ + uint32_t dummyArgument; +}; + +struct FFXIVIpcDebugLogin : FFXIVIpcBasePacket< DebugLogin > +{ + uint32_t requestNumber; + uint32_t ticketNumber; + char ticketString[32]; +}; + +struct FFXIVIpcDebugLogin2 : FFXIVIpcBasePacket< DebugLogin2 > +{ + uint32_t requestNumber; + uint32_t ticketNumber; + char ticketString[32]; + char zoneLoginData[64]; + char zoneName[32]; +}; + +} + diff --git a/src/common/Network/PacketDef/Lobby/ServerLobbyDef.h b/src/common/Network/PacketDef/Lobby/ServerLobbyDef.h index 811a6e4f..44b25f82 100644 --- a/src/common/Network/PacketDef/Lobby/ServerLobbyDef.h +++ b/src/common/Network/PacketDef/Lobby/ServerLobbyDef.h @@ -1,72 +1,67 @@ -#ifndef _CORE_NETWORK_PACKETS_LOBBY_SERVER_IPC_H -#define _CORE_NETWORK_PACKETS_LOBBY_SERVER_IPC_H +#pragma once #include #include -namespace Sapphire::Network::Packets::Server { - -struct FFXIVIpcRetainerList : - FFXIVIpcBasePacket< LobbyRetainerList > +namespace Sapphire::Network::Packets::LobbyPackets::Server { - uint8_t padding[0x210]; + +struct FFXIVIpcSyncReply : FFXIVIpcBasePacket< SyncReply > +{ + uint32_t clientTimeValue; }; -/** -*/ -struct FFXIVIpcServiceIdInfo : - FFXIVIpcBasePacket< LobbyServiceAccountList > +struct AccountInfo { - uint64_t seq; - uint8_t padding; - uint8_t numServiceAccounts; - uint8_t u1; - uint8_t u2; - uint32_t padding1; - - struct - { - uint32_t id; - uint32_t unknown; - uint32_t index; - char name[0x44]; - } serviceAccount[8]; + uint64_t accountId; + uint8_t accountIndex; + uint8_t accParam1; + uint16_t accStauts; + char accountName[64]; }; - -struct FFXIVIpcServerList : - FFXIVIpcBasePacket< LobbyServerList > +struct FFXIVIpcLoginReply : FFXIVIpcBasePacket< LoginReply > { - uint64_t seq; - uint16_t final; - uint16_t offset; - uint32_t numServers; - uint32_t padding; - uint32_t padding1; - - struct - { - uint16_t id; - uint16_t index; - uint32_t flags; // 0x02 = World not accepting new characters - uint32_t padding1; - uint32_t icon; // 2 = bonus XP star - uint32_t padding2; - char name[0x40]; - } server[6]; + uint32_t requestNumber; + uint32_t clientTimeValue; + uint8_t endOfList : 1; + uint8_t accountListIndex : 7; + uint8_t activeAccountCount; + uint8_t regionCode; + uint8_t optionParam; + uint32_t optionArg; + AccountInfo accountArray[8]; }; -struct FFXIVIpcCharList : FFXIVIpcBasePacket< LobbyCharList > +struct CharacterInfo { - uint64_t seq; - uint8_t counter; // current packet count * 4, count * 4 +1 on last packet. - uint8_t numInPacket; // always 2?? - uint16_t padding; - uint8_t unknown1; - uint8_t unknown2; - uint8_t unknown3; - uint8_t unknown4; // 0x80 in case of last packet - uint32_t unknown5[7]; + uint64_t playerId; + uint64_t characterId; + uint8_t chrIndex; + uint8_t chrParam1; + uint16_t chrStatus; + uint32_t chrParam2; + uint16_t worldId; + char chrName[32]; + char worldSetName[32]; + char graphicData[1030]; +}; + +struct FFXIVIpcServiceLoginReply : FFXIVIpcBasePacket< ServiceLoginReply > +{ + uint32_t requestNumber; + uint32_t clientTimeValue; + uint8_t endOfList : 1; + uint8_t listIndex : 7; + uint8_t count; + uint16_t optionParam; + uint32_t optionArg; + uint64_t billParam1; + uint64_t billParam2; + /// + uint64_t billParam1_; + uint32_t billParam1__; +/// ADDED FOR 2.3 ---------- uint8_t unknown6; // 0x80 in case of last packet uint8_t veteranRank; uint8_t unknown7; @@ -74,80 +69,159 @@ struct FFXIVIpcCharList : FFXIVIpcBasePacket< LobbyCharList > uint32_t daysSubscribed; uint32_t remainingDays; uint32_t daysToNextRank; - uint16_t maxCharOnWorld; - uint16_t unknown8; - uint32_t entitledExpansion; - uint32_t padding2; - uint32_t padding3; - uint32_t padding4; +/// ------------------------ + uint16_t maxCreateCharacter; + uint16_t maxCharacterList; + uint64_t unknown8; + CharacterInfo chrArray[2]; +}; - struct CharaDetails +struct FFXIVIpcCharaMakeReply : FFXIVIpcBasePacket< CharaMakeReply > +{ + uint32_t requestNumber; + uint32_t clientTimeValue; + uint8_t endOfList : 1; + uint8_t listIndex : 7; + uint8_t count; + uint16_t optionParam; + uint32_t optionArg; + CharacterInfo chrArray[2]; +}; + +struct FFXIVIpcGameLoginReply : FFXIVIpcBasePacket< GameLoginReply > +{ + uint32_t requestNumber; + uint32_t clientTimeValue; + uint32_t ticketId; + uint64_t characterId; + uint8_t characterIndex; + uint8_t operation; + uint16_t worldId; + char ticketData[64]; + uint16_t flag; + uint16_t frontendPort; + char frontendHost[32]; + char worldSetName[32]; +}; + +struct FFXIVIpcUpdateRetainerSlotsReply : FFXIVIpcBasePacket< UpdateRetainerSlotsReply > +{ + uint32_t requestNumber; + uint32_t clientTimeValue; + uint16_t optionParam; + uint16_t padding; + uint32_t optionArg; + uint16_t contractedNum; + uint16_t activeCharacterNum; + uint16_t totalSlotNum; + uint16_t freeSlotNum; + uint16_t totalRetainerNum; + uint16_t activeRetainerNum; +}; + +struct worldInfo +{ + uint16_t worldId; + uint16_t worldIndex; + uint8_t worldParam1; + uint8_t __padding1; + uint8_t __padding2; + uint8_t __padding3; + uint32_t stat1; + uint32_t stat2; + uint32_t mode; + char worldSetName[32]; + char displayName[32]; +}; + +struct FFXIVIpcDistWorldInfo : FFXIVIpcBasePacket< DistWorldInfo > +{ + uint32_t requestNumber; + uint32_t clientTimeValue; + uint8_t endOfList : 1; + uint16_t listIndex; + uint16_t count; + uint16_t optionParam; + uint8_t __padding2; + uint8_t __padding3; + uint32_t optionArg; + worldInfo worldArray[6]; +}; + +struct FFXIVIpcXiCharacterInfo : FFXIVIpcBasePacket< XiCharacterInfo > +{ + uint32_t requestNumber; + uint32_t clientTimeValue; + uint8_t endOfList : 1; + uint8_t listIndex : 7; + uint8_t count; + uint16_t optionParam; + uint32_t optionArg; + + struct XiCharacterInfo { - uint32_t uniqueId; - uint32_t padding; - uint64_t contentId; - uint32_t index; - uint32_t padding2; - uint16_t serverId; - uint16_t serverId1; - uint8_t unknown[9]; - char nameChara[32]; - char nameServer[32]; - char nameServer1[32]; - char charDetailJson[1051]; - } charaDetails[2]; - + uint32_t ffxiId; + uint8_t chrIndex; + uint8_t worldParam1; + uint16_t status; + char charactername[32]; + } characterArray[12]; }; -struct FFXIVIpcEnterWorld : FFXIVIpcBasePacket< LobbyEnterWorld > +struct RetainerInfo { - uint64_t seq; - uint32_t charId; - uint32_t padding; - uint64_t contentId; - uint32_t padding2; - char sid[66]; - uint16_t port; - char host[48]; - uint64_t padding3; - uint64_t padding4; -}; - -struct FFXIVIpcCharCreate : FFXIVIpcBasePacket< LobbyCharCreate > -{ - uint64_t seq; - uint8_t unknown; - uint8_t unknown_2; - uint8_t type; - uint8_t padding; - uint32_t unknown_3; - uint32_t unknown_4; - uint32_t unknown_5; - uint64_t unknown_6; - uint64_t unknown_61; - uint64_t unknown_62; - uint64_t unknown_63; - uint64_t content_id; - uint16_t unknown_7; - uint16_t unknown_8; - uint32_t unknown_9; - uint16_t unknown_10; - uint8_t unknown_11[11]; + uint64_t retainerId; + uint64_t ownerId; + uint8_t slotID; + uint8_t param1; + uint16_t retainerStatus; + uint32_t param2; char name[32]; - char world[32]; - char world2[32]; - uint8_t unknown_12[0x953]; }; -struct FFXIVIpcLobbyError : FFXIVIpcBasePacket< LobbyError > +struct FFXIVIpcDistRetainerInfo : FFXIVIpcBasePacket< DistRetainerInfo > { - uint64_t seq; - uint32_t error_id; - uint32_t param; - uint16_t message_id; - char message[516]; + uint32_t requestNumber; + uint32_t clientTimeValue; + uint8_t endOfList : 1; + uint8_t listIndex : 7; + uint8_t count; + uint16_t optionParam; + uint32_t optionArg; + uint16_t contractedNum; + uint16_t activeCharacterNum; + uint16_t totalSlotNum; + uint16_t freeSlotNum; + uint16_t totalRetainerNum; + uint16_t activeRetainerNum; + RetainerInfo retainerArray[9]; +}; + +struct FFXIVIpcDebugNullRepl : FFXIVIpcBasePacket< DebugNullRepl > +{ + uint32_t dummyArgument; +}; + +struct FFXIVIpcDebugLoginRepl : FFXIVIpcBasePacket< DebugLoginRepl > +{ + uint32_t requestNumber; + uint32_t ticketNumber; + uint16_t flag; + uint16_t frontendPort; + char frontendHost[32]; + char worldSetName[32]; +}; + +struct FFXIVIpcNackReply : FFXIVIpcBasePacket< NackReply > +{ + uint32_t requestNumber; + uint32_t clientTimeValue; + int32_t errorCode; + int32_t errorStatus; + int16_t errorMessageNo; + int16_t messageSize; + uint8_t message[512]; }; } -#endif diff --git a/src/common/Network/PacketDef/ServerIpcs.h b/src/common/Network/PacketDef/ServerIpcs.h new file mode 100644 index 00000000..cffd73c1 --- /dev/null +++ b/src/common/Network/PacketDef/ServerIpcs.h @@ -0,0 +1,420 @@ +#pragma once + +#include + +namespace Sapphire::Network::Packets +{ + namespace LobbyPackets + { + //////////////////////////////////////////////////////////////////////////////// + /// Lobby Connection IPC Codes + /** + * Server IPC Lobby Type Codes. + */ + enum ServerLobbyIpcType : uint16_t + { + SyncReply = 0x0001, + NackReply = 0x0002, + LoginReply = 0x000C, + ServiceLoginReply = 0x000D, + CharaMakeReply = 0x000E, + GameLoginReply = 0x000F, + UpdateRetainerSlotsReply = 0x0010, + DistWorldInfo = 0x0015, + XiCharacterInfo = 0x0016, + DistRetainerInfo = 0x0017, + + DebugNullRepl = 0x1F4, + DebugLoginRepl = 0x1F5, + + }; + } + + namespace WorldPackets::Server + { + //////////////////////////////////////////////////////////////////////////////// + /// Zone Connection IPC Codes + /** + * Server IPC Zone Type Codes. + */ + enum ServerZoneIpcType : uint16_t + { + SyncReply = 0x0065, + LoginReply = 0x0066, + Chat = 0x0067, + RegionInfo = 0x0069, + + MoveTerritory = 0x006A, + SetPSNId = 0x0073, + SetBillingTime = 0x0075, + + InviteResult = 0x00C9, + InviteReplyResult = 0x00CA, + InviteUpdate = 0x00CB, + + GetCommonlistResult = 0x00CC, + GetCommonlistDetailResult = 0x00CD, + SetProfileResult = 0x00CE, + GetProfileResult = 0x00CF, + + GetSearchCommentResult = 0xD0, + GetCharacterNameResult = 0xD1, + ChatChannelResult = 0xD2, + SendSystemMessage = 0xD3, + SendLoginMessage = 0xD4, + UpdateOnlineStatus = 0xD5, + PartyRecruitResult = 0xD6, + GetRecruitSearchListResult = 0xD7, + GetRecruitDetailResult = 0xD8, + RequestItemResult = 0xD9, + AllianceReadyCheckResult = 0xDA, + GetFcJoinRequestCommentResult = 0xDB, + PcPartyResult = 0xDC, + PcPartyUpdate = 0xDD, + InviteCancelResult = 0xDE, + + BlacklistAddResult = 0x00E1, + BlacklistRemoveResult = 0x00E2, + GetBlacklistResult = 0x00E3, + + FriendlistRemoveResult = 0xE6, + PcSearchResult = 0xEB, + LinkshellResult = 0xF0, + GetLinkshellListResult = 0x00F1, + + LetterResult = 0x00FA, + GetLetterMessageResult = 0x00FB, + GetLetterMessageDetailResult = 0x00FC, + GetLetterStatusResult = 0x00FD, + + ItemSearchResult = 0x104, + GetItemSearchListResult = 0x105, + GetRetainerListResult = 0x106, + BuyMarketRetainerResult = 0x107, + MarketStorageUpdate = 0x108, + GetItemHistoryResult = 0x109, + GetRetainerSalesHistoryResult = 0x10A, + MarketRetainerUpdate = 0x10B, + CatalogSearchResult = 0x10C, + FreeCompanyResult = 0x10E, + GetFcStatusResult = 0x10F, + + GetFcInviteListResult = 0x110, + GetFcProfileResult = 0x111, + GetFcHeaderResult = 0x112, + GetCompanyBoardResult = 0x113, + GetFcHierarchyResult = 0x114, + GetFcActivityListResult = 0x115, + GetFcHierarchyLiteResult = 0x116, + GetCompanyMottoResult = 0x117, + GetFcParamsResult = 0x118, + GetFcActionResult = 0x119, + GetFcMemoResult = 0x11A, + InfoGMCommandResult = 0x122, + SyncTagHeader = 0x12C, + SyncTag32 = 0x12D, + SyncTag64 = 0x12E, + SyncTag128 = 0x12F, + SyncTag256 = 0x130, + SyncTag384 = 0x131, + SyncTag512 = 0x132, + SyncTag768 = 0x133, + SyncTag1024 = 0x134, + SyncTag1536 = 0x135, + SyncTag2048 = 0x136, + SyncTag3072 = 0x137, + + HudParam = 0x140, + ActionIntegrity = 0x141, + Order = 0x0142, + OrderMySelf = 0x0143, + OrderTarget = 0x0144, + Resting = 0x0145, + ActionResult1 = 0x0146, + ActionResult = 0x0147, + Status = 0x0148, + FreeCompany = 0x149, + RecastGroup = 0x14A, + UpdateAlliance = 0x14B, + PartyPos = 0x14C, + AlliancePos = 0x14D, + + Create = 0x0190, + Delete = 0x0191, + ActorMove = 0x0192, + Transfer = 0x193, + Warp = 0x0194, + RequestCast = 0x196, + UpdateParty = 0x199, + InitZone = 0x019A, + HateList = 0x019B, + HaterList = 0x019C, + CreateObject = 0x019D, + DeleteObject = 0x019E, + PlayerStatusUpdate = 0x019F, + PlayerStatus = 0x01A0, + BaseParam = 0x01A1, + FirstAttack = 0x01A2, + Condition = 0x01A3, + ChangeClass = 0x1A4, + Equip = 0x01A5, + Inspect = 0x01A6, + Name = 0x01A7, + AttachMateriaRequest = 0x1A9, + RetainerList = 0x1AA, + RetainerData = 0x1AB, + MarketPriceHeader = 0x1AC, + MarketPrice = 0x1AD, + ItemStorage = 0x01AE, + NormalItem = 0x01AF, + ItemSize = 0x01B0, + ItemOperationBatch = 0x01B1, + ItemOperation = 0x01B2, + GilItem = 0x01B3, + TradeCommand = 0x1B4, + ItemMessage = 0x1B5, + UpdateItem = 0x1B6, + AliasItem = 0x1B7, + OpenTreasure = 0x1B8, + LootRight = 0x1B9, + LootActionResult = 0x1BA, + GameLog = 0x1BB, + TreasureOpenRight = 0x1BC, + OpenTreasureKeyUi = 0x1BD, + LootItems = 0x1BE, + CreateTreasure = 0x1BF, + TreasureFadeOut = 0x1C0, + MonsterNoteCategory = 0x01C1, + EventPlayHeader = 0x1C2, + EventPlay2 = 0x1C3, + EventPlay4 = 0x1C4, + EventPlay8 = 0x1C5, + EventPlay16 = 0x1C6, + EventPlay32 = 0x1C7, + EventPlay64 = 0x1C8, + EventPlay128 = 0x1C9, + EventPlay255 = 0x1CA, + DebugActorData = 0x1CB, + PushEventState = 0x1CC, + PopEventState = 0x1CD, + UpdateEventSceneHeader = 0x1CE, + UpdateEventScene2 = 0x1CF, + UpdateEventScene4 = 0x1D0, + UpdateEventScene8 = 0x1D1, + UpdateEventScene16 = 0x1D2, + UpdateEventScene32 = 0x1D3, + UpdateEventScene64 = 0x1D4, + UpdateEventScene128 = 0x1D5, + UpdateEventScene255 = 0x1D6, + ResumeEventSceneHeader = 0x1D7, + ResumeEventScene2 = 0x1D8, + ResumeEventScene4 = 0x1D9, + ResumeEventScene8 = 0x1DA, + ResumeEventScene16 = 0x1DB, + ResumeEventScene32 = 0x1DC, + ResumeEventScene64 = 0x1DD, + ResumeEventScene128 = 0x1DE, + ResumeEventScene255 = 0x1DF, + Quests = 0x1E0, + Quest = 0x01E1, + QuestCompleteFlags = 0x01E2, + QuestCompleteFlag = 0x01E3, + Guildleves = 0x1E4, + Guildleve = 0x1E5, + LeveCompleteFlags = 0x1E6, + LeveCompleteFlag = 0x1E7, + NoticeHeader = 0x1E8, + Notice2 = 0x1E9, + Notice4 = 0x1EA, + Notice8 = 0x1EB, + Notice16 = 0x1EC, + Notice32 = 0x1ED, + Tracking = 0x1EE, + IsMarket = 0x1EF, + LegacyQuestCompleteFlags = 0x1F0, + ResumeEventSceneHeaderStr = 0x1F1, + ResumeEventSceneStr32 = 0x1F2, + LogText = 0x1F3, + DebugNull = 0x1F4, + DebugLog = 0x1F5, + BigData = 0x1F6, + DebugOrderHeader = 0x1F7, + DebugOrder2 = 0x1F8, + DebugOrder4 = 0x1F9, + DebugOrder8 = 0x1FA, + DebugOrder16 = 0x1FB, + DebugOrder32 = 0x1FC, + DebugActionRange = 0x1FD, + ResumeEventSceneHeaderNumStr = 0x1FE, + ResumeEventScene2Str = 0x1FF, + Mount = 0x0200, + ResumeEventScene4Str = 0x201, + Director = 0x226, + DownDebugPacket = 0x227, + EventLogMessageHeader = 0x258, + EventLogMessage2 = 0x259, + EventLogMessage4 = 0x25A, + EventLogMessage8 = 0x25B, + EventLogMessage16 = 0x25C, + EventLogMessage32 = 0x25D, + BattleTalkHeader = 0x262, + BattleTalk2 = 0x263, + BattleTalk4 = 0x264, + BattleTalk8 = 0x265, + EventReject = 0x26C, + MapMarker2 = 0x26D, + MapMarker4 = 0x26E, + MapMarker8 = 0x26F, + MapMarker16 = 0x270, + MapMarker32 = 0x271, + MapMarker64 = 0x272, + MapMarker128 = 0x273, + BalloonTalkHeader = 0x276, + BalloonTalk2 = 0x277, + BalloonTalk4 = 0x278, + BalloonTalk8 = 0x279, + + GameLoggerMessage = 0x289, + WeatherId = 0x28A, + TitleList = 0x28B, + DiscoveryReply = 0x28C, + TimeOffset = 0x28D, + ChocoboTaxiStart = 0x28E, + GMOrderHeader = 0x28F, + GMOrder2 = 0x290, + GMOrder4 = 0x291, + GMOrder8 = 0x292, + GMOrder16 = 0x293, + GMOrder32 = 0x294, + InspectQuests = 0x29E, + InspectGuildleves = 0x29F, + InspectReward = 0x2A0, + InspectBeastReputation = 0x2A1, + + Config = 0x2C6, + + NpcYell = 0x2D0, + SwapSystem = 0x2D1, + FatePcWork = 0x2D2, + LootResult = 0x2D3, + FateAccessCollectionEventObject = 0x2D4, + FateSyncLimitTime = 0x2D5, + EnableLogout = 0x02D6, + LogMessage = 0x2D7, + FateDebug = 0x2D8, + FateContextWork = 0x2D9, + FateActiveRange = 0x2DA, + UpdateFindContent = 0x2DB, + Cabinet = 0x2DC, + Achievement = 0x2DD, + NotifyFindContentStatus = 0x2DE, + ColosseumResult44 = 0x2DF, + ColosseumResult88 = 0x2E0, + ResponsePenalties = 0x2E1, + ContentClearFlags = 0x2E2, + ContentAttainFlags = 0x02E3, + UpdateContent = 0x2E4, + Text = 0x2E5, + SuccessFindContentAsMember5 = 0x2E6, + CancelLogoutCountdown = 0x2E7, + SetEventBehavior = 0x2E8, + BallistaStart = 0x2E9, + RetainerCustomizePreset = 0x2EA, + FateReward = 0x2EB, + + HouseList = 0x2EC, + House = 0x2ED, + YardObjectList = 0x2EE, + YardObject = 0x2F0, + Interior = 0x2F1, + HousingAuction = 0x2F2, + HousingProfile = 0x2F3, + HousingHouseName = 0x2F4, + HousingGreeting = 0x2F5, + CharaHousingLandData = 0x2F6, + CharaHousing = 0x2F7, + HousingWelcome = 0x2F8, + FurnitureListS = 0x2F9, + FurnitureListM = 0x2FA, + FurnitureListL = 0x2FB, + Furniture = 0x2FC, + VoteKickConfirm = 0x2FD, + HousingProfileList = 0x2FE, + HousingObjectTransform = 0x2FF, + HousingObjectColor = 0x300, + HousingObjectTransformMulti = 0x301, + ConfusionApproach = 0x302, + ConfusionTurn = 0x303, + ConfusionTurnCancel = 0x304, + ConfusionCancel = 0x305, + MIPMemberList = 0x306, + HousingGetPersonalRoomProfileListResult = 0x307, + HousingGetHouseBuddyStableListResult = 0x308, + HouseTrainBuddyData = 0x309, + + ContentBonus = 0x30C, + + FcChestLog = 0x316, + SalvageResult = 0x317, + + DailyQuests = 0x0320, + DailyQuest = 0x0321, + QuestRepeatFlags = 0x0322, + + HousingObjectTransformMultiResult = 0x32A, + HousingLogWithHouseName = 0x32B, + TreasureHuntReward = 0x32C, + HousingCombinedObjectStatus = 0x32D, + HouseBuddyModelData = 0x32E, + + Marker = 0x334, + GroundMarker = 0x335, + Frontline01Result = 0x336, + Frontline01BaseInfo = 0x337, + FinishContentMatchToClient = 0x338, + UnMountLink = 0x33E, + + /////////////////////////////////////////////////// +// CFNotify = 0x0241, // updated 5.21 + CFMemberStatus = 0x0079, + ExamineSearchInfo = 0x032B, // updated 5.21 hotfix + ExamineSearchComment = 0x0102, // updated 4.1 + MarketBoardItemListingCount = 0x030A, + MarketBoardItemListing = 0x023E, + ExamineFreeCompanyInfo = 0x013E, // updated 4.5 + FreeCompanyUpdateShortMessage = 0x0157, // added 5.0 + GCAffiliation = 0x016F, // updated 5.0 + NpcSpawn = 0x00B3, // updated 5.21 hotfix + InventoryActionAck = 0x01B2, // updated 5.21 hotfix + UpdateInventorySlot = 0x0213, // updated 5.21 hotfix + PrepareZoning = 0x00B6, // updated 5.21 hotfix + }; + } + + //////////////////////////////////////////////////////////////////////////////// + /// Chat Connection IPC Codes + /** + * Server IPC Chat Type Codes. + */ + enum ServerChatIpcType : uint16_t + { + //Sync = 0x01, TODO: Fix this cuz name bullshit... + LoginReply = 0x02, + + ChatFrom = 0x64, + Chat = 0x65, + TellNotFound = 0x66, + RecvBusyStatus = 0x67, + GetChannelMemberListResult = 0x68, + GetChannelListResult = 0x69, + RecvFinderStatus = 0x6A, + + JoinChannelResult = 0xC8, + LeaveChannelResult = 0xC9 + //FreeCompanyEvent = 0x012C, // not in 2.3 + }; + + + +} + diff --git a/src/common/Network/PacketDef/Zone/ClientZoneDef.h b/src/common/Network/PacketDef/Zone/ClientZoneDef.h index 5efe9771..b8ad1167 100644 --- a/src/common/Network/PacketDef/Zone/ClientZoneDef.h +++ b/src/common/Network/PacketDef/Zone/ClientZoneDef.h @@ -1,129 +1,289 @@ -#ifndef _CORE_NETWORK_PACKETS_ZONE_CLIENT_IPC_H -#define _CORE_NETWORK_PACKETS_ZONE_CLIENT_IPC_H +#pragma once #include #include -namespace Sapphire::Network::Packets::Client +namespace Sapphire::Network::Packets::WorldPackets::Client { -struct FFXIVIpcGmCommand1 : - FFXIVIpcBasePacket< GMCommand1 > +struct FFXIVIpcGmCommand : FFXIVIpcBasePacket< GMCommand > { - /* 0000 */ uint32_t commandId; - /* 0004 */ uint32_t param1; - /* 0008 */ uint32_t param2; - /* 000C */ uint32_t param3; - /* 0010 */ uint32_t param4; - /* 0014 */ uint32_t unknown1; - /* 0018 */ uint32_t target; + uint32_t Id; + uint32_t Arg0; + uint32_t Arg1; + uint32_t Arg2; + uint32_t Arg3; + uint64_t Target; }; -struct FFXIVIpcGmCommand2 : - FFXIVIpcBasePacket< GMCommand2 > +struct FFXIVIpcGmCommandName : FFXIVIpcBasePacket< GMCommandName > { - /* 0000 */ uint32_t commandId; - /* 0004 */ uint32_t param1; - /* 0008 */ uint32_t param2; - /* 000C */ uint32_t param3; - /* 0010 */ uint32_t param4; - /* 0014 */ uint16_t worldId; - /* 0016 */ char target[0x20]; - /* 0036 */ uint16_t unknown1; + uint32_t Id; + uint32_t Arg0; + uint32_t Arg1; + uint32_t Arg2; + uint32_t Arg3; + char Name[32]; }; -struct FFXIVIpcClientTrigger : - FFXIVIpcBasePacket< ClientTrigger > +struct FFXIVIpcClientTrigger : FFXIVIpcBasePacket< Command > { - /* 0000 */ uint16_t commandId; - /* 0002 */ uint8_t unk_2[2]; - /* 0004 */ uint32_t param11; - /* 0008 */ uint32_t param12; - /* 000C */ uint32_t param2; - /* 0010 */ uint32_t param4; // todo: really? - /* 0014 */ uint32_t param5; - /* 0018 */ uint64_t param3; + uint32_t Id; + uint32_t Arg0; + uint32_t Arg1; + uint32_t Arg2; + uint32_t Arg3; + uint64_t Target; }; -struct FFXIVIpcUpdatePosition : - FFXIVIpcBasePacket< UpdatePositionHandler > +struct FFXIVIpcUpdatePosition : FFXIVIpcBasePacket< Move > { - /* 0000 */ float rotation; - /* 0004 */ uint8_t animationType; - /* 0005 */ uint8_t animationState; - /* 0006 */ uint8_t clientAnimationType; - /* 0007 */ uint8_t headPosition; - /* 0008 */ Common::FFXIVARR_POSITION3 position; - /* 000C */ uint8_t unk[ 4 ]; // padding? + float dir; + float dirBeforeSlip; + uint8_t flag; + uint8_t flag2; + uint8_t flag_unshared; + uint8_t __padding1; + Common::FFXIVARR_POSITION3 pos; }; - struct FFXIVIpcUpdatePositionInstance : - FFXIVIpcBasePacket< UpdatePositionInstance > +struct FFXIVIpcUpdatePositionInstance : FFXIVIpcBasePacket< MovePvP > { - /* 0000 */ float rotation; - /* 0004 */ float interpolateRotation; - /* 0008 */ uint32_t flags; - /* 000C */ Common::FFXIVARR_POSITION3 position; - /* 0018 */ Common::FFXIVARR_POSITION3 interpolatePosition; - /* 0024 */ uint32_t unknown; + float dir; + float predictedDir; + float dirBeforeSlip; + uint8_t flag; + uint8_t flag2; + uint8_t flag_unshared; + uint8_t __padding1; + Common::FFXIVARR_POSITION3 pos; + Common::FFXIVARR_POSITION3 predictedPos; }; - -struct FFXIVIpcSkillHandler : - FFXIVIpcBasePacket< SkillHandler > +struct FFXIVIpcActionRequest : FFXIVIpcBasePacket< ActionRequest > { - /* 0000 */ uint8_t pad_0000; - /* 0001 */ uint8_t type; - /* 0002 */ uint8_t pad_0002[2]; - /* 0004 */ uint32_t actionId; - /* 0008 */ uint16_t sequence; - /* 000A */ uint8_t pad_000C[6]; - /* 0010 */ uint64_t targetId; - /* 0018 */ uint16_t itemSourceSlot; - /* 001A */ uint16_t itemSourceContainer; - /* 001C */ uint32_t unknown; + uint8_t ExecProc; + uint8_t ActionKind; + uint8_t __padding1; + uint8_t __padding2; + uint32_t ActionKey; + uint32_t RequestId; + uint16_t Dir; + uint16_t DirTarget; + uint64_t Target; + uint32_t Arg; }; -struct FFXIVIpcAoESkillHandler : - FFXIVIpcBasePacket< AoESkillHandler > +struct FFXIVIpcSelectGroundActionRequest : FFXIVIpcBasePacket< SelectGroundActionRequest > { - /* 0000 */ uint8_t pad_0000; - /* 0001 */ uint8_t type; - /* 0002 */ uint8_t pad_0002[2]; - /* 0004 */ uint32_t actionId; - /* 0008 */ uint16_t sequence; - /* 000A */ uint8_t pad_000C[6]; - /* 0010 */ Common::FFXIVARR_POSITION3 pos; - /* 001C */ uint32_t unknown; // could almost be rotation + 16 bits more padding? + uint8_t ExecProc; + uint8_t ActionKind; + uint8_t __padding1; + uint8_t __padding2; + uint32_t ActionKey; + uint32_t RequestId; + uint16_t Dir; + uint16_t DirTarget; + Common::FFXIVARR_POSITION3 Pos; }; -struct FFXIVIpcZoneLineHandler : - FFXIVIpcBasePacket< ZoneLineHandler > +struct FFXIVIpcZoneJump : FFXIVIpcBasePacket< ZoneJump > { - /* 0000 */ uint32_t zoneLineId; + uint32_t ExitBox; + float X; + float Y; + float Z; + int32_t LandSetIndex; }; -struct FFXIVIpcDiscoveryHandler : - FFXIVIpcBasePacket< DiscoveryHandler > +struct FFXIVIpcNewDiscovery : FFXIVIpcBasePacket< NewDiscovery > { - /* 0000 */ uint32_t positionRef; + uint32_t LayoutId; + float PositionX; + float PositionY; + float PositionZ; }; -struct FFXIVIpcEventHandlerReturn : - FFXIVIpcBasePacket< ReturnEventHandler > +template< uint32_t Size > +struct FFXIVIpcEventHandlerReturnN { - /* 0000 */ uint32_t eventId; - /* 0004 */ uint16_t scene; - /* 0006 */ uint16_t param1; - /* 0008 */ uint16_t param2; - /* 000A */ uint8_t pad_000A[2]; - /* 000C */ uint16_t param3; - /* 000E */ uint8_t pad_000E[2]; - /* 0010 */ uint16_t param4; + uint32_t handlerId; + uint16_t sceneId; + uint8_t errorCode; + uint8_t numOfResults; + uint32_t results[Size]; +}; + +struct FFXIVIpcReturnEventSceneHeader : FFXIVIpcBasePacket< ReturnEventSceneHeader >, FFXIVIpcEventHandlerReturnN< 1 > +{ +}; + +struct FFXIVIpcReturnEventScene2 : + FFXIVIpcBasePacket< ReturnEventScene2 >, + FFXIVIpcEventHandlerReturnN< 2 > +{ +// /* 0000 */ uint32_t eventId; +// /* 0004 */ uint16_t scene; +// /* 0006 */ uint16_t param1; +// /* 0008 */ uint16_t param2; +// /* 000A */ uint8_t pad_000A[2]; +// /* 000C */ uint16_t param3; +// /* 000E */ uint8_t pad_000E[2]; +// /* 0010 */ uint16_t param4; +}; + +struct FFXIVIpcReturnEventScene4 : + FFXIVIpcBasePacket< ReturnEventScene4 >, + FFXIVIpcEventHandlerReturnN< 4 > +{ +}; + +struct FFXIVIpcReturnEventScene8 : + FFXIVIpcBasePacket< ReturnEventScene8 >, + FFXIVIpcEventHandlerReturnN< 8 > +{ +}; + +struct FFXIVIpcReturnEventScene16 : + FFXIVIpcBasePacket< ReturnEventScene16 >, + FFXIVIpcEventHandlerReturnN< 16 > +{ +}; + +struct FFXIVIpcReturnEventScene32 : + FFXIVIpcBasePacket< ReturnEventScene32 >, + FFXIVIpcEventHandlerReturnN< 32 > +{ +}; + +struct FFXIVIpcReturnEventScene64 : + FFXIVIpcBasePacket< ReturnEventScene64 >, + FFXIVIpcEventHandlerReturnN< 64 > +{ +}; + +struct FFXIVIpcReturnEventScene128 : + FFXIVIpcBasePacket< ReturnEventScene128 >, + FFXIVIpcEventHandlerReturnN< 128 > +{ +}; + +struct FFXIVIpcReturnEventScene255 : + FFXIVIpcBasePacket< ReturnEventScene255 >, + FFXIVIpcEventHandlerReturnN< 255 > +{ +}; + +template< uint32_t Size > +struct FFXIVIpcYieldEventSceneN +{ + uint32_t handlerId; + uint16_t sceneId; + uint8_t yieldId; + uint8_t numOfResults; + uint32_t results[Size]; +}; + +struct FFXIVIpcYieldEventSceneHeader : + FFXIVIpcBasePacket< YieldEventSceneHeader >, + FFXIVIpcYieldEventSceneN< 1 > +{ +}; + +struct FFXIVIpcYieldEventScene2 : + FFXIVIpcBasePacket< YieldEventScene2 >, + FFXIVIpcYieldEventSceneN< 2 > +{ +}; + +struct FFXIVIpcYieldEventScene4 : + FFXIVIpcBasePacket< YieldEventScene4 >, + FFXIVIpcYieldEventSceneN< 4 > +{ +}; + +struct FFXIVIpcYieldEventScene8 : + FFXIVIpcBasePacket< YieldEventScene8 >, + FFXIVIpcYieldEventSceneN< 8 > +{ +}; + +struct FFXIVIpcYieldEventScene16 : + FFXIVIpcBasePacket< YieldEventScene16 >, + FFXIVIpcYieldEventSceneN< 16 > +{ +}; + +struct FFXIVIpcYieldEventScene32 : + FFXIVIpcBasePacket< YieldEventScene32 >, + FFXIVIpcYieldEventSceneN< 32 > +{ +}; + +struct FFXIVIpcYieldEventScene64 : + FFXIVIpcBasePacket< YieldEventScene64 >, + FFXIVIpcYieldEventSceneN< 64 > +{ +}; + +struct FFXIVIpcYieldEventScene128 : + FFXIVIpcBasePacket< YieldEventScene128 >, + FFXIVIpcYieldEventSceneN< 128 > +{ +}; + +struct FFXIVIpcYieldEventScene255 : + FFXIVIpcBasePacket< YieldEventScene255 >, + FFXIVIpcYieldEventSceneN< 255 > +{ +}; + +template< uint32_t Size > +struct YieldEventSceneStringN +{ + uint32_t handlerId; + uint16_t sceneId; + uint8_t yieldId; + char result[Size]; +}; + +struct FFXIVIpcYieldEventSceneStringHeader : + FFXIVIpcBasePacket< YieldEventSceneStringHeader >, + YieldEventSceneStringN< 1 > +{ +}; + +struct FFXIVIpcYieldEventSceneString8 : + FFXIVIpcBasePacket< YieldEventSceneString8 >, + YieldEventSceneStringN< 8 > +{ +}; + +struct YieldEventSceneString16 : + FFXIVIpcBasePacket< YieldEventSceneString16 >, + YieldEventSceneStringN< 16 > +{ +}; + +struct YieldEventSceneString32 : + FFXIVIpcBasePacket< YieldEventSceneString32 >, + YieldEventSceneStringN< 32 > +{ +}; + +struct FFXIVIpcYieldEventSceneIntAndString : + FFXIVIpcBasePacket< YieldEventSceneIntAndString > +{ + uint32_t handlerId; + uint16_t sceneId; + uint8_t yieldId; + uint8_t __padding1; + uint64_t integer; + char str[32]; }; struct FFXIVIpcEnterTerritoryHandler : - FFXIVIpcBasePacket< EnterTeriEventHandler > + FFXIVIpcBasePacket< StartEnterTerritoryEvent > { /* 0000 */ uint32_t eventId; /* 0004 */ uint16_t param1; @@ -131,7 +291,7 @@ struct FFXIVIpcEnterTerritoryHandler : }; struct FFXIVIpcEventHandlerOutsideRange : - FFXIVIpcBasePacket< OutOfRangeEventHandler > + FFXIVIpcBasePacket< StartOutsideRangeEvent > { /* 0000 */ uint32_t param1; /* 0004 */ uint32_t eventId; @@ -139,7 +299,7 @@ struct FFXIVIpcEventHandlerOutsideRange : }; struct FFXIVIpcEventHandlerWithinRange : - FFXIVIpcBasePacket< WithinRangeEventHandler > + FFXIVIpcBasePacket< StartWithinRangeEvent > { /* 0000 */ uint32_t param1; /* 0004 */ uint32_t eventId; @@ -147,7 +307,7 @@ struct FFXIVIpcEventHandlerWithinRange : }; struct FFXIVIpcEventHandlerEmote : - FFXIVIpcBasePacket< EmoteEventHandler > + FFXIVIpcBasePacket< StartEmoteEvent > { /* 0000 */ uint64_t actorId; /* 0008 */ uint32_t eventId; @@ -155,322 +315,300 @@ struct FFXIVIpcEventHandlerEmote : }; struct FFXIVIpcEventHandlerTalk : - FFXIVIpcBasePacket< TalkEventHandler > + FFXIVIpcBasePacket< StartTalkEvent > { /* 0000 */ uint64_t actorId; /* 0008 */ uint32_t eventId; }; -struct FFXIVIpcPingHandler : - FFXIVIpcBasePacket< PingHandler > +struct ZoneProtoUpClientPos { - /* 0000 */ uint32_t timestamp; // maybe lol.. + uint32_t originEntityId; + float pos[3]; + float dir; }; -struct FFXIVIpcSetSearchInfo : - FFXIVIpcBasePacket< SetSearchInfoHandler > +struct FFXIVIpcPingHandler : FFXIVIpcBasePacket< Sync > { - union - { - /* 0000 */ uint64_t status; - struct - { - /* 0000 */ uint32_t status1; - /* 0004 */ uint32_t status2; - }; - }; - - /* 0008 */ uint8_t pad_0008[9]; - /* 0011 */ Common::ClientLanguage language; - /* 0012 */ char searchComment[193]; + uint32_t clientTimeValue; + ZoneProtoUpClientPos position; }; -struct FFXIVIpcTellHandler : FFXIVIpcBasePacket< TellReq > +struct FFXIVIpcFindContent : FFXIVIpcBasePacket< FindContent > { - uint64_t contentId; - uint16_t worldId; - uint16_t u0A; - uint32_t u0C; - uint16_t worldId1; - uint8_t preName; - /* 0004 */ char targetPCName[32]; - /* 0024 */ char message[1029]; + uint16_t territoryType; + uint8_t acceptHalfway; + uint8_t language; }; -struct FFXIVIpcChatHandler : - FFXIVIpcBasePacket< ChatHandler > +struct FFXIVIpcFind5Contents : FFXIVIpcBasePacket< Find5Contents > { - /* 0000 */ uint8_t pad_0000[4]; - /* 0004 */ uint32_t sourceId; - /* 0008 */ uint8_t pad_0008[16]; - /* 0018 */ Common::ChatType chatType; - /* 001A */ char message[1012]; + uint8_t acceptHalfway; + uint8_t language; + uint16_t territoryTypes[5]; }; -struct FFXIVIpcPartyChatHandler : - FFXIVIpcBasePacket< ChatHandler > +struct FFXIVIpcAcceptContent : FFXIVIpcBasePacket< AcceptContent > { - uint64_t unknown; + uint8_t accept; + uint8_t padding1; + uint16_t territoryType; + uint64_t territoryId; +}; + +struct FFXIVIpcCancelFindContent : FFXIVIpcBasePacket< CancelFindContent > +{ + uint8_t cause; +}; + + struct FFXIVIpcFindContentAsRandom : FFXIVIpcBasePacket< FindContentAsRandom > +{ + uint8_t randomContentType; + uint8_t acceptHalfway; + uint8_t language; +}; + +struct FFXIVIpcRequestPenalties : FFXIVIpcBasePacket< RequestPenalties > +{ + uint8_t value; //TODO: Is this always 0? +}; + + +struct FFXIVIpcSetSearchInfo : FFXIVIpcBasePacket< SetProfile > +{ + uint64_t OnlineStatus; + uint64_t SelectClassID; + uint8_t CurrentSelectClassID; + uint8_t Region; + char SearchComment[193]; +}; + +struct FFXIVIpcChatTo : FFXIVIpcBasePacket< ChatTo > +{ + uint8_t type; + char toName[32]; char message[1024]; }; -struct FFXIVIpcShopEventHandler : - FFXIVIpcBasePacket< ShopEventHandler > +struct FFXIVIpcChatToChannel : FFXIVIpcBasePacket< ChatToChannel > +{ + uint64_t channelID; + char message[1024]; +}; + +struct FFXIVIpcChatHandler : FFXIVIpcBasePacket< ChatHandler > +{ + uint32_t clientTimeValue; + ZoneProtoUpClientPos position; + Common::ChatType chatType; + char message[1024]; +}; + +struct FFXIVIpcJoinChatChannel : FFXIVIpcBasePacket< JoinChatChannel > +{ + uint64_t ChannelID; +}; + +struct FFXIVIpcLinkshellJoin : FFXIVIpcBasePacket< LinkshellJoin > +{ + uint64_t LinkshellID; + char MemberCharacterName[32]; +}; + +struct FFXIVIpcShopEventHandler : FFXIVIpcBasePacket< StartUIEvent > { /* 0000 */ uint32_t eventId; /* 0004 */ uint32_t param; }; -struct FFXIVIpcLinkshellEventHandler : - FFXIVIpcBasePacket< LinkshellEventHandler > +struct FFXIVIpcClientInventoryItemOperation : FFXIVIpcBasePacket< ClientItemOperation > { - /* 0000 */ uint32_t eventId; - /* 0004 */ uint16_t scene; - /* 0006 */ uint8_t pad_0006[1]; - /* 0007 */ char lsName[21]; + uint32_t ContextId; + uint8_t OperationType; + uint8_t __padding1; + uint8_t __padding2; + uint8_t __padding3; + uint32_t SrcActorId; + uint32_t SrcStorageId; + int16_t SrcContainerIndex; + uint8_t __padding4; + uint8_t __padding5; + uint32_t SrcStack; + uint32_t SrcCatalogId; + uint32_t DstActorId; + uint32_t DstStorageId; + int16_t DstContainerIndex; + uint8_t __padding6; + uint8_t __padding7; + uint32_t DstStack; + uint32_t DstCatalogId; }; -struct FFXIVIpcInventoryModifyHandler : - FFXIVIpcBasePacket< InventoryModifyHandler > +struct FFXIVIpcHousingExteriorChange : FFXIVIpcBasePacket< HousingExteriorChange > { - /* 0000 */ uint32_t seq; - /* 0004 */ Common::InventoryOperation action; - /* 0006 */ uint8_t pad_0006[6]; - /* 000C */ uint16_t fromContainer; - /* 000E */ uint8_t pad_000E[2]; - /* 0010 */ uint8_t fromSlot; - /* 0011 */ uint8_t pad_0011[15]; - /* 0020 */ uint16_t toContainer; - /* 0022 */ uint8_t pad_0022[2]; - /* 0024 */ uint8_t toSlot; - /* 0025 */ uint8_t pad_0025[3]; - /* 0028 */ uint32_t splitCount; + Common::LandIdent landIdOrIndex; + uint8_t RemoveFlags; + uint8_t __padding1; + uint16_t StorageId[9]; + int16_t ContainerIndex[9]; }; -struct FFXIVIpcRenameLandHandler : - FFXIVIpcBasePacket< LandRenameHandler > +struct FFXIVIpcHousingPlaceYardItem : FFXIVIpcBasePacket< HousingPlaceYardItem > { - /* 0000 */ Common::LandIdent ident; - /* 0008 */ char houseName[20]; - /* 0028 */ uint32_t padding; + Common::LandIdent landIdOrIndex; + uint16_t StorageId; + int16_t ContainerIndex; + Common::FFXIVARR_POSITION3 Pos; + float Rotation; + uint32_t UserData; }; -struct FFXIVIpcHousingUpdateHouseGreeting : - FFXIVIpcBasePacket< HousingUpdateHouseGreeting > +struct FFXIVIpcHousingInteriorChange : FFXIVIpcBasePacket< HousingInteriorChange > { - /* 0000 */ Common::LandIdent ident; - /* 0008 */ char greeting[200]; + Common::LandIdent landIdOrIndex; + uint16_t StorageId[10]; + int16_t ContainerIndex[10]; }; -struct FFXIVIpcBuildPresetHandler : - FFXIVIpcBasePacket< BuildPresetHandler > -{ - /* 0000 */ uint32_t itemId; - /* 0004 */ uint8_t plotNum; - /* 0005 */ char stateString[27]; -}; - -struct FFXIVIpcSetSharedEstateSettings : - FFXIVIpcBasePacket< SetSharedEstateSettings > -{ - /* 0000 */ uint64_t char1ContentId; - /* 0008 */ uint64_t char2ContentId; - /* 0010 */ uint64_t char3ContentId; - /* 0018 */ uint8_t char1Permissions; - /* 0019 */ uint8_t padding1[0x7]; - /* 0020 */ uint8_t char2Permissions; - /* 0021 */ uint8_t padding2[0x7]; - /* 0028 */ uint8_t char3Permissions; - /* 0029 */ uint8_t padding3[0x7]; -}; - -struct FFXIVIpcMarketBoardRequestItemListings : - FFXIVIpcBasePacket< MarketBoardRequestItemListings > +struct FFXIVIpcMarketBoardRequestItemListings : FFXIVIpcBasePacket< MarketBoardRequestItemListings > { /* 0000 */ uint16_t padding1; /* 0002 */ uint16_t itemCatalogId; /* 0004 */ uint32_t padding2; }; -struct FFXIVIpcReqPlaceHousingItem : - FFXIVIpcBasePacket< ReqPlaceHousingItem > +struct FFXIVIpcHousingHouseName : FFXIVIpcBasePacket< HousingHouseName > { - /* 0000 */ uint16_t landId; // 0 when plot 0 or inside an estate - /* 0002 */ uint16_t unknown1; - /* 0004 */ uint32_t unknown2; - /* 0008 */ uint16_t sourceInvContainerId; - /* 000A */ uint16_t sourceInvSlotId; - - /* 000C */ Common::FFXIVARR_POSITION3 position; - /* 0018 */ float rotation; - - /* 001C */ uint32_t shouldPlaceItem; // 1 if placing an item, 0 if placing in store - /* 0020 */ uint32_t unknown4[2]; // always 0 it looks like + Common::LandIdent landId; + char houseName[20]; }; -struct FFXIVIpcHousingUpdateObjectPosition : - FFXIVIpcBasePacket< HousingUpdateObjectPosition > +struct FFXIVIpcHousingGreeting : FFXIVIpcBasePacket< HousingGreeting > { - /* 0000 */ Common::LandIdent ident; - /* 0008 */ uint16_t slot; - /* 000A */ uint16_t unk; - - /* 000C */ Common::FFXIVARR_POSITION3 pos; - /* 0018 */ float rotation; - - /* 001C */ uint32_t padding; + Common::LandIdent landId; + char greeting[193]; }; -struct FFXIVIpcMarketBoardSearch : - FFXIVIpcBasePacket< MarketBoardSearch > +struct FFXIVIpcHousingChangeLayout : FFXIVIpcBasePacket< HousingChangeLayout > { - /* 0000 */ uint32_t startIdx; - /* 0004 */ uint16_t requestId; - /* 0006 */ uint8_t itemSearchCategory; - /* 0007 */ uint8_t shouldCheckClassJobId; // wat? seems only 1 there at least... - /* 0008 */ uint8_t maxEquipLevel; - /* 0009 */ uint8_t classJobId; - /* 000A */ char searchStr[40]; - /* 0032 */ uint16_t unk4[43]; + Common::LandIdent landId; + uint8_t storageIndex; + uint8_t __padding1; + uint8_t __padding2; + uint8_t __padding3; + float posX; + float posY; + float posZ; + float rotY; }; -struct FFXIVIpcMarketBoardRequestItemListingInfo : - FFXIVIpcBasePacket< MarketBoardRequestItemListingInfo > +struct FFXIVIpcHousingChangeLayoutMulti : FFXIVIpcBasePacket< HousingChangeLayoutMulti > +{ + Common::LandIdent landId; + float posXs[10]; + float posYs[10]; + float posZs[10]; + float rotYs[10]; + uint8_t storageIndex[10]; +}; + +struct FFXIVIpcCatalogSearch : FFXIVIpcBasePacket< CatalogSearch > +{ + uint32_t NextIndex; + uint8_t RequestKey; + uint8_t Type; + uint8_t SearchCategory; + uint8_t MinLevel; + uint8_t MaxLevel; + uint8_t ClassJob; + char ItemName[121]; +}; + +struct FFXIVIpcMarketBoardRequestItemListingInfo : FFXIVIpcBasePacket< MarketBoardRequestItemListingInfo > { /* 0000 */ uint32_t catalogId; /* 0000 */ uint32_t requestId; }; -struct FFXIVIpcFreeCompanyUpdateShortMessageHandler : - FFXIVIpcBasePacket< FreeCompanyUpdateShortMessageHandler > +struct FFXIVIpcConfig : FFXIVIpcBasePacket< Config > { - char shortMessage[104]; - uint8_t padding; - uint8_t unknown; - uint32_t unknown1; - uint16_t unknown2; + uint16_t flag; }; -struct FFXIVIpcWorldInteractionHandler : - FFXIVIpcBasePacket< WorldInteractionHandler > +struct FFXIVIpcGetFcProfile : FFXIVIpcBasePacket< GetFcProfile > { - uint32_t action; - uint32_t param1; - uint32_t param2; - uint32_t param3; - uint32_t param4; - Common::FFXIVARR_POSITION3 position; + uint64_t TargetCharacterID; + uint32_t TargetEntityID; }; -struct FFXIVIpcSocialReqSendHandler : - FFXIVIpcBasePacket< SocialReqSendHandler > +struct FFXIVIpcGetBlacklist : FFXIVIpcBasePacket< GetBlacklist > { - uint64_t unknown; - uint8_t p1; - uint8_t p2; - uint8_t socialType; - char name[32]; - uint8_t padding[5]; + uint8_t NextIndex; + uint8_t RequestKey; }; -struct FFXIVIpcSocialResponseHandler : - FFXIVIpcBasePacket< SocialResponseHandler > +/* 60986 */ +struct FFXIVIpcInvite : FFXIVIpcBasePacket< Invite > { - uint64_t contentId; - uint8_t p1; - uint8_t p2; - uint8_t socialType; - uint8_t response; - uint32_t unknown; -}; - -struct FFXIVIpcPartySetLeaderHandler : - FFXIVIpcBasePacket< PartySetLeaderHandler > -{ - uint64_t contentId; - uint8_t p1; - uint8_t p2; - char name[32]; - uint8_t padding[6]; -}; - -struct FFXIVIpcLeavePartyHandler : - FFXIVIpcBasePacket< LeavePartyHandler > -{ - uint64_t empty; -}; - -struct FFXIVIpcKickPartyMemberHander : - FFXIVIpcBasePacket< KickPartyMemberHandler > -{ - uint64_t contentId; - uint8_t p1; - uint8_t p2; - char name[32]; - uint8_t padding[6]; -}; - -struct FFXIVIpcDisbandPartyHandler : - FFXIVIpcBasePacket< DisbandPartyHandler > -{ - uint64_t empty; + uint8_t AuthType; + char TargetName[32]; }; -struct FFXIVIpcDive : - FFXIVIpcBasePacket< Dive > +/* 60988 */ +struct FFXIVIpcInviteReply : FFXIVIpcBasePacket< InviteReply > { - float unknown; - Common::FFXIVARR_POSITION3 posTarget; - Common::FFXIVARR_POSITION3 posOriginal; - uint32_t padding; + uint64_t InviteCharacterID; + uint8_t AuthType; + uint8_t Answer; }; -struct FFXIVIpcHousingEditExterior : - FFXIVIpcBasePacket< HousingEditExterior > +struct FFXIVIpcGetCommonlist : FFXIVIpcBasePacket< GetCommonlist > { - uint16_t landId; - uint8_t unknown[6]; - uint8_t removeFlag; - uint8_t unknown2; - uint16_t container[9]; - uint16_t slot[9]; - uint16_t padding; + uint64_t CommunityID; + uint16_t NextIndex; + uint8_t ListType; + uint8_t RequestKey; + uint8_t RequestParam; }; -struct FFXIVIpcHousingEditInterior : - FFXIVIpcBasePacket< HousingEditInterior > +struct FFXIVIpcGetCommonlistDetail : FFXIVIpcBasePacket< GetCommonlistDetail > { - uint64_t unknown; - uint16_t container[10]; - uint16_t slot[10]; + uint64_t DetailCharacterID; + uint64_t CommunityID; + uint8_t ListType; }; -struct FFXIVIpcEventYieldHandler : - FFXIVIpcBasePacket< EventYield2Handler > +struct FFXIVIpcPcSearch : FFXIVIpcBasePacket< PcSearch > { - uint32_t eventId; - uint16_t scene; - uint16_t padding; - uint64_t unknown; + uint64_t ClassID; + uint16_t MinLevel; + uint16_t MaxLevel; + uint64_t GrandCompanyID; + uint64_t Region; + uint64_t OnlineStatus; + uint16_t AreaList[50]; + char CharacterName[32]; }; -struct FFXIVIpcEventYield16Handler : - FFXIVIpcBasePacket< EventYield16Handler > +struct FFXIVIpcPcPartyLeave : FFXIVIpcBasePacket< PcPartyLeave > { - uint32_t eventId; - uint16_t scene; - uint16_t padding; - uint32_t params[16]; + uint32_t Reserve; }; -struct FFXIVIpcCFCommenceHandler : - FFXIVIpcBasePacket< CFCommenceHandler > +struct FFXIVIpcPcPartyDisband : FFXIVIpcBasePacket< PcPartyDisband > { - uint8_t param; - uint8_t dummy[7]; + uint32_t Reserve; +}; + +struct FFXIVIpcPcPartyKick : FFXIVIpcBasePacket< PcPartyKick > +{ + char LeaveCharacterName[32]; +}; + +struct FFXIVIpcPcPartyChangeLeader : FFXIVIpcBasePacket< PcPartyChangeLeader > +{ + char NextLeaderCharacterName[32]; }; } - -#endif //_CORE_NETWORK_PACKETS_ZONE_CLIENT_IPC_H diff --git a/src/common/Network/PacketDef/Zone/ServerZoneDef.h b/src/common/Network/PacketDef/Zone/ServerZoneDef.h index 87ab1c3d..e5603ccd 100644 --- a/src/common/Network/PacketDef/Zone/ServerZoneDef.h +++ b/src/common/Network/PacketDef/Zone/ServerZoneDef.h @@ -4,20 +4,19 @@ * IMPORTANT NOTE: Do not use these for parsing IPC packets sent by the * client. See the Client namespace for those types! */ -#ifndef _CORE_NETWORK_PACKETS_ZONE_SERVER_IPC_H -#define _CORE_NETWORK_PACKETS_ZONE_SERVER_IPC_H +#pragma once #include #include -namespace Sapphire::Network::Packets::Server +namespace Sapphire::Network::Packets::WorldPackets::Server { /** * Structural representation of the packet sent by the server as response * to a ping packet */ - struct FFXIVIpcPing : FFXIVIpcBasePacket< Ping > + struct FFXIVIpcSync : FFXIVIpcBasePacket< SyncReply > { /* 0000 */ uint64_t timeInMilliseconds; /* 0008 */ uint8_t unknown_8[0x38]; @@ -27,11 +26,11 @@ namespace Sapphire::Network::Packets::Server * Structural representation of the packet sent by the server as response * to a ping packet */ - struct FFXIVIpcInit : FFXIVIpcBasePacket< Init > + struct FFXIVIpcLogin : FFXIVIpcBasePacket< LoginReply > { - uint64_t unknown; - uint32_t charId; - uint32_t unknown1; + uint32_t clientTimeValue; + uint32_t loginTicketId; + uint32_t playerActorId; }; /** @@ -40,62 +39,19 @@ namespace Sapphire::Network::Packets::Server */ struct FFXIVIpcChat : FFXIVIpcBasePacket< Chat > { - /* 0000 */ uint8_t padding[14]; //Maybe this is SubCode, or some kind of talker ID... - Common::ChatType chatType; - char name[32]; - char msg[1012]; - }; - - struct FFXIVIpcPartyChat : FFXIVIpcBasePacket< PartyChat > - { - uint64_t unknown; - uint64_t contentId; - uint32_t charaId; - uint8_t u1; - uint8_t u2; - uint8_t u3; - char name[32]; + uint16_t type; + uint8_t __padding1; + uint8_t __padding2; + uint32_t entityId; + uint64_t characterId; + uint32_t __unknown3; + char speakerName[32]; char message[1024]; - uint8_t padding; }; - struct FFXIVIpcChatBanned : FFXIVIpcBasePacket< ChatBanned > + struct FFXIVIpcEnableLogout : FFXIVIpcBasePacket< EnableLogout > { - uint8_t padding[4]; // I was not sure reinterpreting ZST is valid behavior in C++. - // client doesn't care about the data (zero sized) for this opcode anyway. - }; - - /** - * Structural representation of the packet sent by the server - * to show a list of worlds for world visit - */ - struct FFXIVIpcWorldVisitList : FFXIVIpcBasePacket< WorldVisitList > - { - struct worldEntry - { - uint16_t id; // this is the id of the world from lobby - uint16_t status; // 1 = available (this is what retail sends) | 2+ = unavailable (this will need to be checked with retail if it's exactly 2 or not since it does not actually lock the option) - } world[16]; - }; - - /** - * Structural representation of the packet sent by the server - * carrying chat messages - */ - struct FFXIVIpcLogout : FFXIVIpcBasePacket< Logout > - { - uint32_t flags1; - uint32_t flags2; - }; - - /** - * Structural representation of the packet sent by the server - * sent to show the play time - */ - struct FFXIVIpcPlayTime : FFXIVIpcBasePacket< Playtime > - { - uint32_t playTimeInMinutes; - uint32_t padding; + uint8_t content; }; @@ -105,34 +61,109 @@ namespace Sapphire::Network::Packets::Server */ struct PlayerEntry { - uint64_t contentId; - uint8_t bytes[12]; - uint16_t zoneId; - uint16_t zoneId1; - char bytes1[8]; - uint64_t onlineStatusMask; - uint8_t classJob; - uint8_t padding; - uint8_t level; - uint8_t padding1; - uint16_t padding2; - uint8_t one; - char name[0x20]; - char fcTag[9]; + uint64_t CharacterID; + uint64_t TerritoryID; + uint32_t HierarchyID; + uint16_t TerritoryType; + uint8_t GrandCompanyID; + uint8_t Region; + uint8_t SelectRegion; + uint8_t IsSearchComment; + uint8_t __padding1; + uint8_t __padding2; + uint64_t OnlineStatus; + uint8_t CurrentClassID; + uint8_t SelectClassID; + uint16_t CurrentLevel; + uint16_t SelectLevel; + uint8_t Identity; + char CharacterName[32]; + char FcTag[7]; }; - struct FFXIVIpcSocialList : FFXIVIpcBasePacket< SocialList > + struct FFXIVIpcGetCommonlistResult : FFXIVIpcBasePacket< GetCommonlistResult > { - uint32_t padding; - uint32_t padding1; - uint32_t padding2; - uint8_t type; - uint8_t sequence; - uint16_t padding3; + uint64_t CommunityID; + uint16_t NextIndex; + uint16_t Index; + uint8_t ListType; + uint8_t RequestKey; + uint8_t RequestParam; + uint8_t __padding1; PlayerEntry entries[10]; }; + struct FFXIVIpcGetCommonlistDetailResult : FFXIVIpcBasePacket< GetCommonlistDetailResult > + { + uint64_t DetailCharacterID; + uint64_t CommunityID; + uint64_t SelectClassID; + uint64_t CrestID; + uint8_t ListType; + char SearchComment[193]; + char FreeCompanyName[23]; + uint8_t GrandCompanyRank[3]; + struct ClassJobEntry + { + uint16_t id; + uint16_t level; + } ClassData[Common::CLASSJOB_TOTAL]; + }; + + struct FFXIVIpcPcSearchResult : FFXIVIpcBasePacket< PcSearchResult > + { + int16_t ResultCount; + }; + + struct FFXIVIpcInviteResult : FFXIVIpcBasePacket< InviteResult > + { + uint32_t Result; + uint8_t AuthType; + uint8_t Identity; + char TargetName[32]; + }; + + struct FFXIVIpcInviteReplyResult : FFXIVIpcBasePacket< InviteReplyResult > + { + uint32_t Result; + uint8_t AuthType; + uint8_t Answer; + uint8_t Identity; + char InviteCharacterName[32]; + }; + + struct FFXIVIpcInviteUpdate : FFXIVIpcBasePacket< InviteUpdate > + { + uint64_t InviteCharacterID; + uint32_t InviteTime; + uint8_t AuthType; + uint8_t InviteCount; + uint8_t Result; + uint8_t Identity; + char InviteName[32]; + }; + + struct FFXIVIpcGetFcStatusResult : FFXIVIpcBasePacket< GetFcStatusResult > + { + uint64_t FreeCompanyID; + uint64_t AuthorityList; + uint64_t ChannelID; + uint64_t CrestID; + uint64_t CharaFcState; + uint64_t CharaFcParam; + uint16_t Param; + uint8_t FcStatus; + uint8_t GrandCompanyID; + uint8_t HierarchyType; + uint8_t FcRank; + uint8_t IsCrest; + uint8_t IsDecal; + uint8_t IsFcAction; + uint8_t IsChestExt1; + uint8_t IsChestLock; + }; + struct FFXIVIpcExamineSearchInfo : FFXIVIpcBasePacket< ExamineSearchInfo > { uint32_t unknown; @@ -155,25 +186,23 @@ namespace Sapphire::Network::Packets::Server } levelEntries[Common::CLASSJOB_TOTAL]; }; - struct FFXIVIpcSetSearchInfo : FFXIVIpcBasePacket< UpdateSearchInfo > + struct FFXIVIpcSetProfileResult : FFXIVIpcBasePacket< SetProfileResult > { - uint64_t onlineStatusFlags; - uint64_t unknown; - uint32_t unknown1; - uint8_t padding; - uint8_t selectRegion; - char searchMessage[193]; - uint8_t padding2; + uint64_t OnlineStatus; + uint64_t SelectClassID; + uint32_t Result; + uint8_t CurrentSelectClassID; + uint8_t Region; + char SearchComment[193]; }; - struct FFXIVIpcInitSearchInfo : FFXIVIpcBasePacket< InitSearchInfo > + struct FFXIVIpcGetProfileResult : FFXIVIpcBasePacket< GetProfileResult > { - uint64_t onlineStatusFlags; - uint64_t unknown; - uint8_t unknown1; - uint8_t selectRegion; - char searchMessage[193]; - char padding[5]; + uint64_t OnlineStatus; + uint64_t SelectClassID; + uint8_t CurrentSelectClassID; + uint8_t Region; + char SearchComment[193]; }; struct FFXIVIpcExamineSearchComment : FFXIVIpcBasePacket< ExamineSearchComment > @@ -184,128 +213,152 @@ namespace Sapphire::Network::Packets::Server char searchComment[195]; char padding; }; - + /** * Structural representation of the packet sent by the server * to display a server notice message */ - struct FFXIVIpcServerNoticeShort : FFXIVIpcBasePacket< ServerNoticeShort > + struct FFXIVIpcSendSystemMessage : FFXIVIpcBasePacket< SendSystemMessage > { - // these are actually display flags - /* 0000 */ uint8_t padding; - // 0 = chat log - // 2 = nothing - // 4 = on screen message - // 5 = on screen message + chat log - char message[538]; - }; - - /** - * Structural representation of the packet sent by the server - * to display a server notice message - */ - struct FFXIVIpcServerNotice : FFXIVIpcBasePacket< ServerNotice > - { - // these are actually display flags - /* 0000 */ uint8_t padding; - // 0 = chat log - // 2 = nothing - // 4 = on screen message - // 5 = on screen message + chat log - char message[775]; + /*! + * 0 = chat log + * 2 = nothing + * 4 = on screen message + * 5 = on screen message + chat log + */ + uint8_t MessageParam; + char Message[769]; }; - struct FFXIVIpcSetOnlineStatus : FFXIVIpcBasePacket< SetOnlineStatus > + struct FFXIVIpcSendLoginMessage : FFXIVIpcBasePacket< SendLoginMessage > + { + /*! + * 0 = chat log + * 2 = nothing + * 4 = on screen message + * 5 = on screen message + chat log + */ + uint8_t MessageParam; + char Message[769]; + }; + + struct FFXIVIpcSetOnlineStatus : FFXIVIpcBasePacket< UpdateOnlineStatus > { uint64_t onlineStatusFlags; }; - struct FFXIVIpcBlackList : FFXIVIpcBasePacket< BlackList > + struct BlacklistCharacter { - struct BlEntry - { - uint64_t contentId; - char name[32]; - } entry[20]; - uint8_t padding; - uint8_t padding1; - uint16_t sequence; - uint32_t padding2; + uint64_t CharacterID; + char CharacterName[32]; }; - struct FFXIVIpcLogMessage : FFXIVIpcBasePacket< LogMessage > + struct FFXIVIpcBlacklistAddResult : FFXIVIpcBasePacket< BlacklistAddResult > { - uint32_t field_0; - uint32_t field_4; - uint32_t field_8; - uint32_t field_12; - uint32_t category; - uint32_t logMessage; - uint8_t field_24; - uint8_t field_25; - uint8_t field_26[32]; - uint32_t field_58; + BlacklistCharacter AddedCharacter; + uint32_t Result; + uint8_t Identity; }; - struct FFXIVIpcLinkshellList : FFXIVIpcBasePacket< LinkshellList > + struct FFXIVIpcBlacklistRemoveResult : FFXIVIpcBasePacket< BlacklistRemoveResult > { - struct LsEntry - { - uint64_t lsId; - uint64_t unknownId; - uint8_t unknown; - uint8_t rank; - uint16_t padding; - uint8_t lsName[20]; - uint8_t unk[16]; - } entry[8]; + BlacklistCharacter RemovedCharacter; + uint32_t Result; + uint8_t Identity; }; - /** - * Structural representation of the packet sent by the server - * to send a list of mail the player has - */ - struct FFXIVIpcReqMoogleMailList : FFXIVIpcBasePacket< ReqMoogleMailList > + struct FFXIVIpcGetBlacklistResult : FFXIVIpcBasePacket< GetBlacklistResult > { - struct letterEntry + BlacklistCharacter Blacklist[20]; + uint8_t NextIndex; + uint8_t Index; + uint8_t RequestKey; + }; + + struct FFXIVIpcGetLinkshellListResult : FFXIVIpcBasePacket< GetLinkshellListResult > + { + struct ZoneProtoDownLinkshell { - char unk[0x8]; - uint32_t timeStamp; // The time the mail was sent (this also seems to be used as a Id) - char unk1[0x30]; // This should be items, gil, etc for the letter - uint8_t read; // 0 = false | 1 = true - uint8_t type; // 0 = Friends | 1 = Rewards | 2 = GM - uint8_t unk2; - char senderName[0x20]; // The name of the sender - char summary[0x3C]; // The start of the full letter text - char padding2[0x5]; - } letter[5]; - char unk3[0x08]; + uint64_t LinkshellID; + uint64_t ChannelID; + uint32_t HierarchyID; + char LinkshellName[32]; + } LinkshellList[8]; + }; + + struct FFXIVIpcChatChannelResult : FFXIVIpcBasePacket< ChatChannelResult > + { + uint64_t ChannelID; + uint64_t CommunityID; + uint64_t TargetCharacterID; + uint32_t UpPacketNo; + uint32_t Result; + }; + + struct ZoneProtoDownLetterBoxAppendItemBase + { + uint32_t CatalogID; + uint32_t Stack; + }; + + struct ZoneProtoDownLetterBoxAppendItem + { + ZoneProtoDownLetterBoxAppendItemBase ItemList[5]; + ZoneProtoDownLetterBoxAppendItemBase Gil; + }; + + struct FFXIVIpcGetLetterMessageResult : + FFXIVIpcBasePacket< GetLetterMessageResult > + { + struct ZoneProtoDownLetterMessage + { + uint64_t SenderCharacterID; + uint32_t Date; + ZoneProtoDownLetterBoxAppendItem AppendItem; + uint8_t IsRead; + uint8_t Type; + uint8_t IsMessageEnd; + char SenderCharacterName[32]; + char Message[61]; + } LetterMessage[5]; + + uint8_t NextIndex; + uint8_t Index; + uint8_t RequestKey; + }; + + struct FFXIVIpcGetLetterMessageDetailResult : + FFXIVIpcBasePacket< GetLetterMessageDetailResult > + { + uint64_t SenderCharacterID; + uint32_t Date; + char Message[601]; + }; + + struct FFXIVIpcLetterResult : + FFXIVIpcBasePacket< LetterResult > + { + uint32_t UpPacketNo; + uint64_t SenderCharacterID; + uint32_t Date; + ZoneProtoDownLetterBoxAppendItem AppendItem; + uint32_t Result; }; /** * Structural representation of the packet sent by the server * to show the mail delivery notification */ - struct FFXIVIpcMailLetterNotification : FFXIVIpcBasePacket< MailLetterNotification > + struct FFXIVIpcGetLetterStatusResult : FFXIVIpcBasePacket< GetLetterStatusResult > { - uint32_t sendbackCount; // The amount of letters sent back since you ran out of room (moogle dialog changes based on this) - uint16_t friendLetters; // The amount of letters in the friends section of the letterbox - uint16_t unreadCount; // The amount of unreads in the letterbox (this is the number that shows up) - uint16_t rewardLetters; // The amount of letters in the rewards section of the letterbox - uint8_t isGmLetter; // Makes the letter notification flash red - uint8_t isSupportDesk; // After setting this to 1 we can no longer update mail notifications (more research needed on the support desk) - char unk2[0x4]; // This has probs something to do with the support desk (inquiry id?) - }; - - struct FFFXIVIpcMarketTaxRates : FFXIVIpcBasePacket< MarketTaxRates > - { - // Same handler as MiniCactpotInit - uint32_t type; - uint16_t category; - uint8_t unknown1; - uint8_t unknown2; - uint32_t taxRate[Common::TOWN_COUNT]; // In the order of Common::Town - uint64_t unknown3; + uint32_t NoreceiveCount; + uint16_t ItemCount; + uint8_t UnreadCount; + uint8_t TotalCount; + uint8_t GiftCount; + uint8_t GmCount; + uint8_t UnreadGmCount; + uint8_t SupportCount; }; struct FFFXIVIpcMarketBoardItemListingCount : FFXIVIpcBasePacket< MarketBoardItemListingCount > @@ -364,39 +417,38 @@ namespace Sapphire::Network::Packets::Server uint32_t padding10; }; - struct FFXIVIpcMarketBoardItemListingHistory : FFXIVIpcBasePacket< MarketBoardItemListingHistory > + struct ZoneProtoDownItemHistoryData { - uint32_t itemCatalogId; - uint32_t itemCatalogId2; - - struct MarketListing - { - uint32_t salePrice; - uint32_t purchaseTime; - uint32_t quantity; - uint8_t isHq; - uint8_t padding; - uint8_t onMannequin; - - char buyerName[33]; - - uint32_t itemCatalogId; - } listing[20]; + uint32_t CatalogID; + uint32_t SellPrice; + uint32_t BuyRealDate; + uint32_t Stack; + uint8_t SubQuality; + uint8_t MateriaCount; + char BuyCharacterName[32]; }; - struct FFXIVIpcMarketBoardSearchResult : FFXIVIpcBasePacket< MarketBoardSearchResult > + struct FFXIVIpcGetItemHistoryResult : FFXIVIpcBasePacket< GetItemHistoryResult > { - struct MarketBoardItem - { - uint32_t itemCatalogId; - uint16_t quantity; - uint16_t demand; - } items[20]; + uint32_t CatalogID; + ZoneProtoDownItemHistoryData ItemHistoryList[20]; + }; - uint32_t itemIndexEnd; - uint32_t padding1; - uint32_t itemIndexStart; - uint32_t requestId; + struct ZoneProtoDownCatalogSearchData + { + uint32_t CatalogID; + uint16_t StockCount; + uint16_t RequestItemCount; + }; + + struct FFXIVIpcCatalogSearchResult : FFXIVIpcBasePacket< CatalogSearchResult > + { + ZoneProtoDownCatalogSearchData CatalogList[20]; + uint32_t NextIndex; + uint32_t Result; + uint32_t Index; + uint8_t RequestKey; + uint8_t Type; }; struct FFXIVIpcExamineFreeCompanyInfo : FFXIVIpcBasePacket< ExamineFreeCompanyInfo > @@ -427,22 +479,6 @@ namespace Sapphire::Network::Packets::Server char shortMessage[104]; }; - struct FFXIVIpcStatusEffectList : FFXIVIpcBasePacket< StatusEffectList > - { - uint8_t classId; - uint8_t level1; - uint16_t level; - uint32_t current_hp; - uint32_t max_hp; - uint16_t current_mp; - uint16_t max_mp; - uint8_t shieldPercentage; - uint8_t unknown1; - uint16_t unknown2; - Common::StatusEffect effect[30]; - uint32_t padding; - }; - struct FFXIVGCAffiliation : FFXIVIpcBasePacket< GCAffiliation > { uint8_t gcId; @@ -453,37 +489,29 @@ namespace Sapphire::Network::Packets::Server * Structural representation of the packet sent by the server * add a status effect */ - struct FFXIVIpcEffectResult : FFXIVIpcBasePacket< EffectResult > + struct FFXIVIpcActionIntegrity : FFXIVIpcBasePacket< ActionIntegrity > { - uint32_t globalSequence; - uint32_t actor_id; - uint32_t current_hp; - uint32_t max_hp; - uint16_t current_mp; - uint8_t unknown1; - uint8_t classId; - uint8_t shieldPercentage; - uint8_t entryCount; - uint16_t unknown2; - - struct StatusEntry - { - uint8_t index; // which position do i display this - uint8_t unknown3; - uint16_t id; - uint16_t param; - uint16_t unknown4; // Sort this out (old right half of power/param property) - float duration; - uint32_t sourceActorId; - } statusEntries[4]; - + uint32_t ResultId; + uint32_t Target; + uint8_t ResultIndex; + uint8_t ClassJob; + uint8_t __padding1; + uint8_t __padding2; + uint32_t Hp; + uint16_t Mp; + uint16_t Tp; + uint32_t HpMax; + uint16_t MpMax; + uint8_t StatusCount; + uint8_t __padding3; + Common::IntegrityStatus Status[4]; }; /** * Structural representation of the packet sent by the server * to update certain player details / status */ - struct FFXIVIpcActorControl : FFXIVIpcBasePacket< ActorControl > + struct FFXIVIpcActorControl : FFXIVIpcBasePacket< Order > { /* 0000 */ uint16_t category; /* 0002 */ uint16_t padding; @@ -491,14 +519,13 @@ namespace Sapphire::Network::Packets::Server /* 0008 */ uint32_t param2; /* 000C */ uint32_t param3; /* 0010 */ uint32_t param4; - /* 0014 */ uint32_t padding1; }; /** * Structural representation of the packet sent by the server * to update certain player details / status */ - struct FFXIVIpcActorControlSelf : FFXIVIpcBasePacket< ActorControlSelf > + struct FFXIVIpcActorControlSelf : FFXIVIpcBasePacket< OrderMySelf > { /* 0000 */ uint16_t category; /* 0002 */ uint16_t padding; @@ -508,14 +535,13 @@ namespace Sapphire::Network::Packets::Server /* 0010 */ uint32_t param4; /* 0014 */ uint32_t param5; /* 0018 */ uint32_t param6; - /* 0018 */ uint32_t padding1; }; /** * Structural representation of the packet sent by the server * to update certain player details / status */ - struct FFXIVIpcActorControlTarget : FFXIVIpcBasePacket< ActorControlTarget > + struct FFXIVIpcActorControlTarget : FFXIVIpcBasePacket< OrderTarget > { /* 0000 */ uint16_t category; /* 0002 */ uint16_t padding; @@ -523,7 +549,6 @@ namespace Sapphire::Network::Packets::Server /* 0008 */ uint32_t param2; /* 000C */ uint32_t param3; /* 0010 */ uint32_t param4; - /* 0014 */ uint32_t padding1; /* 0018 */ uint64_t targetId; }; @@ -531,183 +556,161 @@ namespace Sapphire::Network::Packets::Server * Structural representation of the packet sent by the server * to update HP / MP / TP */ - struct FFXIVIpcUpdateHpMpTp : FFXIVIpcBasePacket< UpdateHpMpTp > + struct FFXIVIpcResting : FFXIVIpcBasePacket< Resting > { - /* 0000 */ uint32_t hp; - /* 0004 */ uint16_t mp; - /* 0006 */ uint16_t tp; - /* 0008 */ uint16_t gp; - /* 0010 */ uint16_t unknown_10; - /* 0012 */ uint32_t unknown_12; + /* 0000 */ uint32_t Hp; + /* 0004 */ uint16_t Mp; + /* 0006 */ uint16_t Tp; + /* 0008 */ uint16_t Gp; }; - struct FFXIVIpcEffect : FFXIVIpcBasePacket< Effect > + struct FFXIVIpcRecastGroup : FFXIVIpcBasePacket< RecastGroup > { - uint64_t animationTargetId; // who the animation targets - - uint32_t actionId; // what the casting player casts, shown in battle log/ui - /*! - * @brief Zone sequence for the effect. Used to link effects that are split across multiple packets as one - */ - uint32_t sequence; - - float animationLockTime; // maybe? doesn't seem to do anything - uint32_t someTargetId; // always 0x0E000000? - - /*! - * @brief The cast sequence from the originating player. Should only be sent to the source, 0 for every other player. - * - * This needs to match the sequence sent from the player in the action start packet otherwise you'll cancel the - * initial animation and start a new one once the packet arrives. - */ - uint16_t sourceSequence; - uint16_t rotation; - uint16_t actionAnimationId; // the animation that is played by the casting character - uint8_t variation; // variation in the animation - Common::ActionEffectDisplayType effectDisplayType; - - uint8_t unknown20; // is read by handler, runs code which gets the LODWORD of animationLockTime (wtf?) - uint8_t effectCount; // ignores effects if 0, otherwise parses all of them - uint16_t padding_21; - - uint16_t padding_22[3]; - - uint8_t effects[8*8]; - - uint16_t padding_6A[3]; - - uint32_t effectTargetId; // who the effect targets - uint32_t effectFlags; // nonzero = effects do nothing, no battle log, no ui text - only shows animations - - uint32_t padding_78; + float Recast[80]; + float RecastMax[80]; }; - template< int size > - struct FFXIVIpcAoeEffect + struct FFXIVIpcHudParam : FFXIVIpcBasePacket< HudParam > { - uint64_t animationTargetId; // who the animation targets - - uint32_t actionId; // what the casting player casts, shown in battle log/ui - uint32_t globalSequence; // seems to only increment on retail? - - float animationLockTime; // maybe? doesn't seem to do anything - uint32_t someTargetId; // always 00 00 00 E0, 0x0E000000 is the internal def for INVALID TARGET ID - - uint16_t sourceSequence; // if 0, always shows animation, otherwise hides it. counts up by 1 for each animation skipped on a caster - uint16_t rotation; - uint16_t actionAnimationId; // the animation that is played by the casting character - uint8_t variation; // variation in the animation - Common::ActionEffectDisplayType effectDisplayType; - - uint8_t unknown20; // is read by handler, runs code which gets the LODWORD of animationLockTime (wtf?) - uint8_t effectCount; // ignores effects if 0, otherwise parses all of them - uint16_t padding_21[3]; - uint16_t padding; - - struct - { - Common::EffectEntry entries[8]; - } effects[size]; - - uint16_t padding_6A[3]; - - uint64_t effectTargetId[size]; - uint16_t unkFlag[3]; // all 0x7FFF - uint16_t unk[3]; + uint8_t ClassJob; + uint8_t Lv; + uint8_t OrgLv; + uint8_t LvSync; + uint32_t Hp; + uint32_t HpMax; + uint16_t Mp; + uint16_t MpMax; + uint16_t Tp; + uint8_t __padding1; + uint8_t __padding2; + Common::StatusWork effect[30]; }; - struct FFXIVIpcAoeEffect8 : - FFXIVIpcBasePacket< AoeEffect8 >, FFXIVIpcAoeEffect< 8 > - { - }; - struct FFXIVIpcAoeEffect16 : - FFXIVIpcBasePacket< AoeEffect16 >, FFXIVIpcAoeEffect< 16 > - { - }; - struct FFXIVIpcAoeEffect24 : - FFXIVIpcBasePacket< AoeEffect24 >, FFXIVIpcAoeEffect< 24 > - { - }; - struct FFXIVIpcAoeEffect32 : - FFXIVIpcBasePacket< AoeEffect32 >, FFXIVIpcAoeEffect< 32 > + struct FFXIVIpcActionResult : FFXIVIpcBasePacket< ActionResult > { + uint64_t MainTarget; + uint16_t Action; + uint8_t ActionArg; + uint8_t ActionKind; + uint32_t ActionKey; + uint32_t RequestId; + uint32_t ResultId; + float LockTime; + uint16_t DirTarget; + uint8_t Flag; + uint8_t TargetCount; + uint32_t BallistaEntityId; + Common::CalcResult CalcResult[16]; + uint64_t Target[16]; + uint16_t TargetPos[3]; }; + struct FFXIVIpcActionResult1 : FFXIVIpcBasePacket< ActionResult1 > + { + uint64_t MainTarget; + uint16_t Action; + uint8_t ActionArg; + uint8_t ActionKind; + uint32_t ActionKey; + uint32_t RequestId; + uint32_t ResultId; + float LockTime; + uint8_t Flag; + uint8_t __padding1; + uint16_t DirTarget; + uint64_t Target; + uint32_t BallistaEntityId; + Common::CalcResult CalcResult[1]; + }; + + struct MountStruct + { + uint8_t Id; + uint8_t EquipmentHead; + uint8_t EquipmentBody; + uint8_t EquipmentLeg; + uint8_t Stain; + uint8_t __padding1; + uint8_t __padding2; + uint8_t __padding3; + float Time; + }; /** * Structural representation of the packet sent by the server * to spawn an actor */ - struct FFXIVIpcPlayerSpawn : FFXIVIpcBasePacket< PlayerSpawn > + struct FFXIVIpcPlayerSpawn : FFXIVIpcBasePacket< Create > { - uint16_t title; - uint16_t u1b; - uint16_t currentWorldId; - uint16_t homeWorldId; - - uint8_t gmRank; - uint8_t u3c; - uint8_t u4; - uint8_t onlineStatus; - - uint8_t pose; - uint8_t u5a; - uint8_t u5b; - uint8_t u5c; - - uint64_t targetId; - uint32_t u6; - uint32_t u7; - uint64_t mainWeaponModel; - uint64_t secWeaponModel; - uint64_t craftToolModel; - - uint32_t u14; - uint32_t u15; - uint32_t bNPCBase; - uint32_t bNPCName; - uint32_t u18; - uint32_t u19; - uint32_t directorId; - uint32_t ownerId; - uint32_t u22; - uint32_t hPMax; - uint32_t hPCurr; - uint32_t displayFlags; - uint16_t fateID; - uint16_t mPCurr; - uint16_t mPMax; - uint16_t unk; // == 0 - uint16_t modelChara; - uint16_t rotation; - uint16_t currentMount; - uint16_t activeMinion; - uint8_t spawnIndex; - uint8_t state; - uint8_t persistentEmote; - uint8_t modelType; - uint8_t subtype; - uint8_t voice; - uint16_t u25c; - uint8_t enemyType; - uint8_t level; - uint8_t classJob; - uint8_t u26d; - uint16_t u27a; - uint8_t mountHead; - uint8_t mountBody; - uint8_t mountFeet; - uint8_t mountColor; - uint8_t scale; - uint8_t elementData[6]; - uint8_t unknown5_5[3]; - Common::StatusEffect effect[30]; - Common::FFXIVARR_POSITION3 pos; - uint32_t models[10]; - char name[32]; - uint8_t look[26]; - char fcTag[6]; - uint32_t unk30[2]; + uint32_t LayoutId; + uint32_t NameId; + uint32_t NpcId; + uint32_t BindId; + uint32_t ContentId; + uint32_t OwnerId; + uint32_t TriggerId; + uint32_t ChannelingTarget; + uint64_t MainTarget; + uint16_t FATE; + uint16_t WorldId; + uint8_t GMRank; + uint8_t Index; + uint8_t Mode; + uint8_t ModeArgs; + uint8_t ActiveType; + uint8_t Rank; + uint8_t ObjKind; + uint8_t ObjType; + uint32_t ParentId; + uint8_t Voice; + uint8_t BuddyScale; + uint8_t CrestEnable; + uint8_t Channeling; + uint32_t Padding__; + uint64_t Crest; + uint64_t MainWeapon; + uint64_t SubWeapon; + uint64_t SystemWeapon; + uint16_t Dir; + uint16_t ModelCharaId; + uint16_t Title; + uint8_t Battalion; + uint8_t Companion; + uint8_t GrandCompany; + uint8_t GrandCompanyRank; + uint8_t Lv; + uint8_t ClassJob; + uint32_t Hp; + uint16_t Mp; + uint16_t Tp; + uint32_t HpMax; + uint16_t MpMax; + uint16_t NormalAI; + uint8_t OnlineStatus; + uint8_t PermissionInvisibility; + uint8_t FirstAttackType; + uint8_t __padding1; + uint64_t FirstAttackId; + uint8_t LinkReply; + uint8_t LinkCountLimit; + uint8_t LinkGroup; + uint8_t LinkRange; + uint8_t LinkFamily; + uint8_t LinkParent; + uint8_t PoseEmote; + uint8_t __padding2; + uint32_t Flag; + Common::StatusWork Status[30]; + MountStruct Mount; + uint8_t Name[32]; + uint8_t Customize[26]; + uint8_t __padding3; + uint8_t __padding4; + uint32_t Equipment[10]; + float Pos[3]; + uint8_t FreeCompanyTag[6]; + uint8_t PartsState[4]; + uint8_t State[3]; }; /** @@ -750,10 +753,9 @@ namespace Sapphire::Network::Packets::Server uint32_t displayFlags; uint16_t fateID; uint16_t mPCurr; - uint16_t unknown1; - uint16_t unknown2; + uint16_t unknown1; // 0 + uint16_t unknown2; // 0 or pretty big numbers > 30000 uint16_t modelChara; - uint16_t currentMount; uint16_t rotation; uint16_t activeMinion; uint8_t spawnIndex; @@ -768,14 +770,15 @@ namespace Sapphire::Network::Packets::Server uint8_t classJob; uint8_t u26d; uint16_t u27a; + uint8_t currentMount; uint8_t mountHead; uint8_t mountBody; uint8_t mountFeet; uint8_t mountColor; uint8_t scale; - uint8_t elemental[6]; - uint8_t unknown5_5[3]; - Common::StatusEffect effect[30]; + uint16_t elementalLevel; // Eureka + uint16_t element; // Eureka + Common::StatusWork effect[30]; Common::FFXIVARR_POSITION3 pos; uint32_t models[10]; char name[32]; @@ -786,14 +789,14 @@ namespace Sapphire::Network::Packets::Server uint8_t bNPCPartSlot; uint8_t unk32; uint16_t unk33; - uint32_t unk34[2]; + uint32_t unk34; }; /** * Structural representation of the packet sent by the server * to show player movement */ - struct FFXIVIpcActorFreeSpawn : FFXIVIpcBasePacket< ActorFreeSpawn > + struct FFXIVIpcActorFreeSpawn : FFXIVIpcBasePacket< Delete > { uint32_t spawnId; uint32_t actorId; @@ -805,33 +808,39 @@ namespace Sapphire::Network::Packets::Server */ struct FFXIVIpcActorMove : FFXIVIpcBasePacket< ActorMove > { - /* 0000 */ uint8_t headRotation; - /* 0001 */ uint8_t rotation; - /* 0002 */ uint8_t animationType; - /* 0003 */ uint8_t animationState; - /* 0004 */ uint8_t animationSpeed; - /* 0005 */ uint8_t unknownRotation; - /* 0006 */ uint16_t posX; - /* 0008 */ uint16_t posY; - /* 000a */ uint16_t posZ; - /* 000C */ uint32_t unknown_12; + uint8_t dir; + uint8_t dirBeforeSlip; + uint8_t flag; + uint8_t flag2; + uint8_t speed; + uint8_t __padding1; + uint16_t pos[3]; + }; + + struct FFXIVIpcTransfer : FFXIVIpcBasePacket< Transfer > + { + uint16_t dir; + uint8_t padding1; + uint8_t padding2; + float duration; + uint8_t flag; + uint8_t padding3; + uint16_t pos[3]; }; /** * Structural representation of the packet sent by the server * to set an actors position */ - struct FFXIVIpcActorSetPos : FFXIVIpcBasePacket< ActorSetPos > + struct FFXIVIpcWarp : FFXIVIpcBasePacket< Warp > { - uint16_t r16; - uint8_t waitForLoad; - uint8_t unknown1; - uint32_t unknown2; + uint16_t Dir; + uint8_t Type; + uint8_t TypeArg; + uint32_t LayerSet; float x; float y; float z; - uint32_t unknown3; - }; @@ -839,64 +848,57 @@ namespace Sapphire::Network::Packets::Server * Structural representation of the packet sent by the server * to start an actors casting */ - struct FFXIVIpcActorCast : FFXIVIpcBasePacket< ActorCast > + struct FFXIVIpcActorCast : FFXIVIpcBasePacket< RequestCast > { - uint16_t action_id; - Common::SkillType skillType; - uint8_t unknown; - uint32_t unknown_1; // action id or mount id - float cast_time; - uint32_t target_id; - uint16_t rotation; - uint16_t flag; // 1 = interruptible blinking cast bar - uint32_t unknown_2; - uint16_t posX; - uint16_t posY; - uint16_t posZ; - uint16_t unknown_3; + uint16_t Action; + uint8_t ActionKind; + uint8_t __padding1; + uint32_t ActionKey; + float CastTime; + uint32_t Target; + float Dir; + uint32_t BallistaEntityId; + uint16_t TargetPos[3]; + }; + + struct FFXIVIpcHaterList : FFXIVIpcBasePacket< HaterList > + { + uint8_t Count; + uint8_t __padding1; + uint8_t __padding2; + uint8_t __padding3; + + struct ZoneProtoDownHater + { + uint32_t Id; + uint8_t Rate; + } List[32]; }; struct FFXIVIpcHateList : FFXIVIpcBasePacket< HateList > { - uint32_t numEntries; - struct + uint8_t Count; + uint8_t __padding1; + uint8_t __padding2; + uint8_t __padding3; + + struct ZoneProtoDownHate { - uint32_t actorId; - uint8_t hatePercent; - uint8_t unknown; - uint16_t padding; - } entry[32]; - uint32_t padding; + uint32_t Id; + uint32_t Value; + } List[32]; + }; - struct FFXIVIpcHateRank : FFXIVIpcBasePacket< HateRank > - { - uint32_t numEntries; - struct - { - uint32_t actorId; - uint32_t hateAmount; - } entry[32]; - uint32_t padding; - }; - struct FFXIVIpcUpdateClassInfo : FFXIVIpcBasePacket< UpdateClassInfo > - { - uint8_t classId; - uint8_t level1; - uint16_t level; - uint32_t nextLevelIndex; - uint32_t currentExp; - uint32_t restedExp; - }; /** * Structural representation of the packet sent by the server * to send the titles available to the player */ - struct FFXIVIpcPlayerTitleList : FFXIVIpcBasePacket< PlayerTitleList > + struct FFXIVIpcTitleList : FFXIVIpcBasePacket< TitleList > { - uint8_t titleList[48]; + uint8_t TitleFlagsArray[32]; }; /** @@ -905,39 +907,22 @@ namespace Sapphire::Network::Packets::Server */ struct FFXIVIpcInitZone : FFXIVIpcBasePacket< InitZone > { - uint16_t serverId; - uint16_t zoneId; - uint16_t unknown1; - uint16_t contentfinderConditionId; - uint32_t unknown3; - uint32_t unknown4; - uint8_t weatherId; - uint8_t bitmask; - uint8_t bitmask1; - // bitmask1 findings - //0 = unknown ( 7B F8 69 ) - //1 = show playguide window ( 7B 69 ) - //2 = unknown ( 7B 69 ) - //4 = disables record ready check ( 7B DF DF F8 F0 E4 110 (all sorts of social packets) ) - //8 = hide server icon ( 7B 69 ) - //16 = enable flight ( 7B F8 69 ) - //32 = unknown ( 7B F8 69 ) - //64 = unknown ( 7B F8 69 ) - //128 = shows message "You are now in the instanced area XX A. - //Current instance can be confirmed at any time using the /instance text command." ( 7B F8 69 ) - - uint8_t unknown5; - uint32_t unknown7; - uint32_t unknown8; - uint32_t unknown9; - uint32_t unknown10; - uint32_t festivalId; - uint32_t unknown12[3]; - uint32_t additionalFestivalId; - uint32_t unknown13[3]; - Common::FFXIVARR_POSITION3 pos; - uint32_t unknown14[3]; - uint32_t unknown15; + uint16_t ZoneId; + uint16_t TerritoryType; + uint16_t TerritoryIndex; + uint8_t __padding1; + uint8_t __padding2; + uint32_t LayerSetId; + uint32_t LayoutId; + uint8_t WeatherId; + uint8_t Flag; + uint16_t FestivalEid0; + uint16_t FestivalPid0; + uint16_t FestivalEid1; + uint16_t FestivalPid1; + uint8_t __padding3; + uint8_t __padding4; + float Pos[3]; }; @@ -945,176 +930,114 @@ namespace Sapphire::Network::Packets::Server * Structural representation of the packet sent by the server to initialize * the client UI upon initial connection. */ - struct FFXIVIpcPlayerSetup : FFXIVIpcBasePacket< PlayerSetup > + struct FFXIVIpcPlayerStatus : FFXIVIpcBasePacket< PlayerStatus > { - // plain C types for a bit until the packet is actually fixed. - // makes conversion between different editors easier. - uint64_t contentId; - unsigned int unknown8; - unsigned int unknownC; - unsigned int charId; - unsigned int restedExp; - unsigned int companionCurrentExp; - unsigned int unknown1C; - unsigned int fishCaught; - unsigned int useBaitCatalogId; - unsigned int unknown28; - unsigned short unknownPvp2C; - unsigned short unknown3; - unsigned int pvpFrontlineOverallCampaigns; - unsigned int unknownTimestamp34; - unsigned int unknownTimestamp38; - unsigned int unknown3C; - unsigned int unknown40; - unsigned int unknown44; - float companionTimePassed; - unsigned int unknown4C; - unsigned short unknown50; - unsigned short unknownPvp52[4]; - unsigned short playerCommendations; - unsigned short unknown5C; - unsigned short unknown5E; - unsigned short pvpFrontlineWeeklyCampaigns; - unsigned short enhancedAnimaGlassProgress; - unsigned short unknown64[4]; - unsigned short pvpRivalWingsTotalMatches; - unsigned short pvpRivalWingsTotalVictories; - unsigned short pvpRivalWingsWeeklyMatches; - unsigned short pvpRivalWingsWeeklyVictories; - unsigned char maxLevel; - unsigned char expansion; - unsigned char unknown76; - unsigned char unknown77; - unsigned char very_unknown; - unsigned char race; - unsigned char tribe; - unsigned char gender; - unsigned char currentJob; - unsigned char currentClass; - unsigned char deity; - unsigned char namedayMonth; - unsigned char namedayDay; - unsigned char cityState; - unsigned char homepoint; - unsigned char unknown82; - unsigned char petHotBar; - unsigned char companionRank; - unsigned char companionStars; - unsigned char companionSp; - unsigned char companionUnk86; - unsigned char companionColor; - unsigned char companionFavoFeed; - unsigned char unknown89; - unsigned char unknown8A[4]; - unsigned char hasRelicBook; - unsigned char relicBookId; - unsigned char unknown90[4]; - unsigned char craftingMasterMask; - unsigned char unknown95[9]; - unsigned char unknown9F[2]; - unsigned char unknownA1[6]; - unsigned int exp[Common::CLASSJOB_SLOTS]; - unsigned int unknown108; - unsigned int pvpTotalExp; - unsigned int unknownPvp110; - unsigned int pvpExp; - unsigned int pvpFrontlineOverallRanks[3]; - unsigned short levels[Common::CLASSJOB_SLOTS]; - /* - unsigned short unknown15C[9]; - unsigned short u1; - unsigned short u2; - unsigned short unknown112[23]; - unsigned short fishingRecordsFish[26]; - unsigned short beastExp[11]; - unsigned short unknown1EA[5]; - unsigned short pvpFrontlineWeeklyRanks[3]; - unsigned short unknownMask1FA[4]; - unsigned char companionName[21]; - unsigned char companionDefRank; - unsigned char companionAttRank; - unsigned char companionHealRank; - unsigned char u19[8]; - unsigned char mountGuideMask[22]; - unsigned char u19_2; - */ - unsigned char unknown5_55a[178]; - unsigned char companionName[21]; - unsigned char companionDefRank; - unsigned char companionAttRank; - unsigned char companionHealRank; - unsigned char mountGuideMask[29]; - //== - char name[32]; - unsigned char unknownOword[16]; - unsigned char unknownOw; - unsigned char unlockBitmask[64]; - unsigned char aetheryte[21]; - unsigned char discovery[445]; - unsigned char howto[34]; - unsigned char minions[55]; - unsigned char chocoboTaxiMask[10]; - unsigned char watchedCutscenes[137]; - unsigned char companionBardingMask[11]; - unsigned char companionEquippedHead; - unsigned char companionEquippedBody; - unsigned char companionEquippedLegs; - /* - unsigned char unknown52A[4]; - unsigned char unknownMask52E[11]; - unsigned char fishingGuideMask[105]; - unsigned char fishingSpotVisited[31]; - unsigned char unknown59A[27]; - unsigned char unknown5A9[7]; - unsigned char beastRank[11]; - unsigned char unknownPvp5AB[11]; - unsigned char unknown5B9[5]; - */ - unsigned char unknown5_45b[236]; - //== - unsigned char pose; - /* - unsigned char unknown5B91; - unsigned char challengeLogComplete[9]; - unsigned char weaponPose; - unsigned char unknownMask673[10]; - unsigned char unknownMask5DD[28]; - unsigned char relicCompletion[12]; - unsigned char sightseeingMask[26]; - unsigned char huntingMarkMask[55]; - unsigned char tripleTriadCards[32]; - unsigned char u12[11]; - unsigned char u13; - unsigned char aetherCurrentMask[22]; - unsigned char u10[3]; - */ - unsigned char unknown5_55b[295]; - //== - unsigned char orchestrionMask[40]; // this field may already be extended, if it is, the beginning bytes are at the end of unknown5_55b - unsigned char hallOfNoviceCompletion[3]; - unsigned char animaCompletion[11]; - unsigned char unknown5_55c[35]; - unsigned char unlockedRaids[28]; - unsigned char unlockedDungeons[18]; - unsigned char unlockedGuildhests[10]; - /* - at least 8 bytes at most 10 bytes in unlockedTrials not confirmed, adjust unlockedPvp so they share a total of 15 bytes and sync with clearedTrials/clearedPvp. - */ - unsigned char unlockedTrials[9]; - unsigned char unlockedPvp[6]; - //== - unsigned char clearedRaids[28]; - unsigned char clearedDungeons[18]; - unsigned char clearedGuildhests[10]; - unsigned char clearedTrials[9]; - unsigned char clearedPvp[6]; - /* - unsigned short fishingRecordsFishWeight[26]; - unsigned int exploratoryMissionNextTimestamp; - unsigned char pvpLevel; - */ - unsigned char unknown5_55d[9]; - //== + uint64_t CharaId; + uint64_t Crest; + uint32_t EntityId; + uint32_t RestPoint; + uint16_t Expansion; + uint8_t Race; + uint8_t Tribe; + uint8_t Sex; + uint8_t ClassJob; + uint8_t FirstClass; + uint8_t GuardianDeity; + uint8_t BirthMonth; + uint8_t Birthday; + uint8_t GrandCompany; + uint8_t HomePoint; + uint8_t StartTown; + uint8_t Anima; + uint8_t Pet; + uint8_t BuddyRank; + uint8_t BuddyRankExceeded; + uint8_t BuddySkillPoint; + uint8_t BuddyCommand; + uint8_t BuddyStain; + uint8_t BuddyFavorite; + uint8_t LegacyCompleteFlag; + uint8_t GrandCompanyRank; + uint8_t __padding1; + float BuddyTimer; + uint32_t BuddyExp; + uint32_t GCSupplySeed; + uint32_t CatchCount; + uint32_t UseBaitCatalogId; + uint32_t PvPWeeklyPoint; + uint16_t PvPMatchCount; + uint16_t PvPWinCount; + uint16_t PvPWeeklyMatchCount; + uint16_t PvPWeeklyWinCount; + uint16_t MVPPoint; + uint16_t DailyQuestLastAcceptTime; + uint8_t DailyQuestSeed; + uint8_t TreasureObtainedFlag; + uint8_t RelicKey; + uint8_t RelicNoteKey; + uint8_t AdventureNotePhase; + uint8_t RetainerCount; + uint8_t Unknown4; + uint8_t __padding5; + uint32_t Frontline01MatchCount; + uint16_t Frontline01WeeklyMatchCount; + uint8_t Unknown1[3]; + uint8_t MobHuntWeeklyOrder; + uint8_t Name[32]; + uint8_t PSNId[17]; + uint16_t Lv[23]; + uint32_t Exp[23]; + uint8_t Reward[64]; + uint8_t Aetheryte[12]; + uint8_t FavoritePoint[3]; + uint8_t SuperFavoritePoint[1]; + uint8_t Discovery16[320]; + uint8_t Discovery32[80]; + uint8_t HowTo[32]; + uint8_t Companion[22]; + uint8_t ChocoboTaxiStand[8]; + uint8_t CutScene[86]; + float Position[3]; + uint8_t BuddyPossession[8]; + uint8_t BuddyEquip[3]; + uint8_t GCSupplyItemFlags[4]; + uint8_t GCSupplyClassLevel[11]; + char BuddyName[21]; + char BuddySkillLine[3]; + char MountList[7]; + uint8_t IsFishCatched[53]; + uint8_t IsSpotVisited[25]; + uint8_t __padding6; + uint16_t ListFishId[18]; + uint16_t ListFishSize[18]; + uint32_t PvPPoint[3]; + uint8_t PvPRank[3]; + uint8_t PvPSkillPoint[3]; + uint8_t __padding9; + uint8_t __padding10; + uint32_t PvPAction[10]; + uint8_t BeastReputationRank[5]; + uint8_t __padding11; + uint16_t BeastReputationValue[5]; + uint8_t RandomContentRewardCounter[7]; + uint16_t CycleTime[2]; + uint8_t PoseEmoteType[5]; + uint8_t __padding_; + uint8_t Unknown[5]; + uint8_t SystemFlag[2]; + uint8_t ContentsNoteComplete[5]; + uint8_t Unknown2[6]; + uint8_t GuildOrderClassClearFlags[28]; + uint8_t RelicNoteCount[10]; + uint8_t RelicNoteFlags[2]; + uint8_t AdventureNoteSpotClearFlags[16]; + uint32_t Frontline01RankCount[3]; + uint16_t Frontline01WeeklyRankCount[3]; + uint8_t MobHuntOrderState[3]; + uint8_t MobHuntKillsCount[29]; + uint8_t TripleTriadAcquireFlags[15]; + uint8_t SecretRecipeAcquireFlags[2]; + uint8_t padding[100]; }; @@ -1122,61 +1045,30 @@ namespace Sapphire::Network::Packets::Server * Structural representation of the packet sent by the server * to set a players stats */ - struct FFXIVIpcPlayerStats : FFXIVIpcBasePacket< PlayerStats > + struct FFXIVIpcBaseParam : FFXIVIpcBasePacket< BaseParam > { - // order comes from baseparam order column - uint32_t strength; - uint32_t dexterity; - uint32_t vitality; - uint32_t intelligence; - uint32_t mind; - uint32_t piety; - uint32_t hp; - uint32_t mp; - uint32_t tp; - uint32_t gp; - uint32_t cp; - uint32_t delay; - uint32_t tenacity; - uint32_t attackPower; - uint32_t defense; - uint32_t directHitRate; - uint32_t evasion; - uint32_t magicDefense; - uint32_t criticalHit; - uint32_t attackMagicPotency; - uint32_t healingMagicPotency; - uint32_t elementalBonus; - uint32_t determination; - uint32_t skillSpeed; - uint32_t spellSpeed; - uint32_t haste; - uint32_t craftsmanship; - uint32_t control; - uint32_t gathering; - uint32_t perception; - - // todo: what is here? - uint32_t unknown[26]; + uint32_t Param[50]; + uint32_t OriginalParam[6]; }; /** * Structural representation of the packet sent by the server * to set an actors current owner */ - struct FFXIVIpcActorOwner : FFXIVIpcBasePacket< ActorOwner > + struct FFXIVIpcFirstAttack : FFXIVIpcBasePacket< FirstAttack > { - uint8_t type; - uint8_t padding[7]; - uint32_t actorId; - uint32_t actorId2; + uint8_t Type; + uint8_t __padding1; + uint8_t __padding2; + uint8_t __padding3; + uint64_t Id; }; /** * Structural representation of the packet sent by the server * to set a players state */ - struct FFXIVIpcPlayerStateFlags : FFXIVIpcBasePacket< PlayerStateFlags > + struct FFXIVIpcPlayerStateFlags : FFXIVIpcBasePacket< Condition > { uint8_t flags[12]; uint32_t padding; @@ -1186,165 +1078,214 @@ namespace Sapphire::Network::Packets::Server * Structural representation of the packet sent by the server * containing current class information */ - struct FFXIVIpcPlayerClassInfo : FFXIVIpcBasePacket< PlayerClassInfo > + struct FFXIVIpcPlayerStatusUpdate : FFXIVIpcBasePacket< PlayerStatusUpdate > { - uint16_t classId; - uint8_t unknown; - uint8_t isSpecialist; - uint16_t syncedLevel; // Locks actions, equipment, prob more. Player's current level (synced). - uint16_t classLevel; // Locks roles, prob more. Player's actual unsynced level. - uint32_t roleActions[10]; + uint8_t ClassJob; + uint8_t __padding1; + uint16_t Lv; + uint16_t LvSync; + uint8_t __padding2; + uint8_t __padding3; + uint32_t Exp; + uint32_t RestPoint; + }; + + struct FFXIVIpcChangeClass : FFXIVIpcBasePacket< ChangeClass > + { + uint8_t ClassJob; + uint8_t Penalty; + uint8_t Login; + uint8_t __padding1; + uint16_t Lv; + uint8_t __padding2; + uint8_t __padding3; + uint32_t BorrowAction[10]; + uint8_t PhysicalBonus[6]; + }; + + struct FFXIVIpcStatus : FFXIVIpcBasePacket< Status > + { + Common::StatusWork effect[30]; }; /** * Structural representation of the packet sent by the server * to update a players appearance */ - struct FFXIVIpcModelEquip : FFXIVIpcBasePacket< ModelEquip > + struct FFXIVIpcEquip : FFXIVIpcBasePacket< Equip > { - /* 0000 */ uint64_t mainWeapon; - /* 0008 */ uint64_t offWeapon; - /* 0010 */ uint8_t unk1; - /* 0011 */ uint8_t classJobId; - /* 0012 */ uint8_t level; - /* 0013 */ uint8_t unk2; - /* 0014 */ uint32_t models[10]; - /* 003C */ uint32_t padding2; + uint64_t MainWeapon; + uint64_t SubWeapon; + uint8_t CrestEnable; + uint8_t __padding1; + uint16_t PatternInvalid; + uint32_t Equipment[10]; }; - struct FFXIVIpcExamine : FFXIVIpcBasePacket< Examine > - { - uint8_t unkFlag1; - uint8_t unkFlag2; - char classJob; - char level; - uint16_t padding; - uint16_t titleId; - char grandCompany; - char grandCompanyRank; +; - char unknown[6]; - uint32_t u6_fromPSpawn; - uint32_t u7_fromPSpawn; - char padding1[8]; - uint64_t mainWeaponModel; - uint64_t secWeaponModel; - uint8_t unknown2; - uint16_t worldId; - char unknown3[12]; - struct ItemData + struct ZoneProtoDownEquipWork + { + uint32_t CatalogId; + uint32_t Pattern; + uint64_t Signature; + uint8_t HQ; + uint8_t Stain; + + struct ZoneProtoDownMateriaWork { - uint32_t catalogId; - uint32_t appearanceCatalogId; - uint64_t crafterId; - uint8_t quality; - uint8_t stain; - uint8_t unknown[2]; - struct Materia - { - uint16_t materiaId; - uint16_t tier; - } materia[5]; - } entries[14]; - char name[32]; - char padding2; - char unk3[16]; - char look[26]; - char padding3[5]; - uint32_t models[10]; - char unknown4[200]; + uint16_t Type; + uint8_t Grade; + } Materia[5]; }; - struct FFXIVIpcCharaNameReq : FFXIVIpcBasePacket< CharaNameReq > + struct FFXIVIpcInspect : FFXIVIpcBasePacket< Inspect > + { + uint8_t ObjType; + uint8_t Sex; + uint8_t ClassJob; + uint8_t Lv; + uint8_t LvSync; + uint8_t __padding1; + uint16_t Title; + uint8_t GrandCompany; + uint8_t GrandCompanyRank; + uint8_t Flag; + uint8_t __padding2; + uint64_t Crest; + uint8_t CrestEnable; + uint8_t __padding3; + uint8_t __padding4; + uint8_t __padding5; + uint64_t MainWeaponModelId; + uint64_t SubWeaponModelId; + uint16_t PatternInvalid; + uint8_t Rank; + uint8_t __padding6; + uint32_t Exp; + uint8_t ItemLv; + uint8_t __padding7; + uint8_t __padding8; + uint8_t __padding9; + ZoneProtoDownEquipWork Equipment[14]; + char Name[32]; + uint8_t PSNId[17]; + uint8_t Customize[26]; + uint8_t __padding10; + uint8_t __padding11; + uint8_t __padding12; + uint32_t ModelId[10]; + uint8_t MasterName[32]; + uint8_t SkillLv[3]; + uint8_t __padding13; + uint32_t BaseParam[50]; + }; + + struct FFXIVIpcName : FFXIVIpcBasePacket< Name > { uint64_t contentId; char name[32]; }; - /** - * Structural representation of the packet sent by the server - * to update a players appearance - */ - struct FFXIVIpcItemInfo : FFXIVIpcBasePacket< ItemInfo > + struct ZoneProtoDownItemStorage { - uint32_t containerSequence; - uint32_t unknown; - uint16_t containerId; - uint16_t slot; - uint32_t quantity; - uint32_t catalogId; - uint32_t reservedFlag; - uint64_t signatureId; - uint8_t hqFlag; - uint8_t unknown2; - uint16_t condition; - uint16_t spiritBond; - uint16_t stain; - uint32_t glamourCatalogId; - uint16_t materia1; - uint16_t materia2; - uint16_t materia3; - uint16_t materia4; - uint16_t materia5; - uint8_t buffer1; - uint8_t buffer2; - uint8_t buffer3; - uint8_t buffer4; - uint8_t buffer5; - uint8_t padding; - uint32_t unknown10; - }; - - /** - * Structural representation of the packet sent by the server - * to update a players appearance - */ - struct FFXIVIpcContainerInfo : FFXIVIpcBasePacket< ContainerInfo > - { - uint32_t containerSequence; - uint32_t numItems; - uint32_t containerId; - uint32_t unknown; - }; - - /** - * Structural representation of the packet sent by the server - * to update a players appearance - */ - struct FFXIVIpcCurrencyCrystalInfo : FFXIVIpcBasePacket< CurrencyCrystalInfo > - { - uint32_t containerSequence; - uint16_t containerId; - uint16_t slot; - uint32_t quantity; - uint32_t unknown; - uint32_t catalogId; - uint32_t unknown1; - uint32_t unknown2; - uint32_t unknown3; - }; - - struct FFXIVIpcInventoryTransactionFinish : FFXIVIpcBasePacket< InventoryTransactionFinish > - { - uint32_t sequenceId; - uint32_t sequenceId1; - uint64_t padding; - }; - - struct FFXIVIpcInventoryTransaction : FFXIVIpcBasePacket< InventoryTransaction > - { - uint32_t sequence; - uint16_t type; - uint16_t padding1; - uint32_t ownerId; uint32_t storageId; - uint16_t slotId; - uint16_t padding2; - uint32_t stackSize; + uint16_t type; + int16_t index; + uint32_t containerSize; + }; + + struct ZoneProtoDownNormalItem + { + uint16_t storageId; + uint16_t containerIndex; + uint32_t stack; uint32_t catalogId; - uint32_t someActorId; - int32_t targetStorageId; - uint32_t padding3[3]; + uint64_t signatureId; + uint8_t flags; + uint8_t __padding1; + uint16_t durability; + uint16_t refine; + uint8_t stain; + uint8_t __padding2; + uint32_t pattern; + uint16_t materiaType[5]; + uint8_t materiaGrade[5]; + uint8_t buffer[5]; + }; + + struct ZoneProtoDownGilItem + { + uint16_t storageId; + uint16_t containerIndex; + uint32_t stack; + uint8_t subquarity; + uint8_t __padding1; + uint8_t __padding2; + uint8_t __padding3; + uint32_t catalogId; + uint16_t buffer[4]; + }; + + /** + * Structural representation of the packet sent by the server + * to update a players appearance + */ + struct FFXIVIpcNormalItem : FFXIVIpcBasePacket< NormalItem > + { + uint32_t contextId; + ZoneProtoDownNormalItem item; + }; + + struct FFXIVIpcItemSize : FFXIVIpcBasePacket< ItemSize > + { + uint32_t contextId; + int32_t size; + uint32_t storageId; + }; + + struct FFXIVIpcItemStorage : FFXIVIpcBasePacket< ItemStorage > + { + uint32_t contextId; + ZoneProtoDownItemStorage storage; + }; + + struct FFXIVIpcGilItem : FFXIVIpcBasePacket< GilItem > + { + uint32_t contextId; + ZoneProtoDownGilItem item; + }; + + struct FFXIVIpcItemOperationBatch : FFXIVIpcBasePacket< ItemOperationBatch > + { + uint32_t contextId; + uint32_t operationId; + uint8_t operationType; + uint8_t errorType; + uint8_t packetNum; + }; + + struct FFXIVIpcItemOperation : FFXIVIpcBasePacket< ItemOperation > + { + uint32_t contextId; + uint8_t operationType; + uint8_t __padding1; + uint8_t __padding2; + uint8_t __padding3; + uint32_t srcEntity; + uint32_t srcStorageId; + int16_t srcContainerIndex; + uint8_t __padding4; + uint8_t __padding5; + uint32_t srcStack; + uint32_t srcCatalogId; + uint32_t dstEntity; + uint32_t dstStorageId; + int16_t dstContainerIndex; + uint8_t __padding6; + uint8_t __padding7; + uint32_t dstStack; + uint32_t dstCatalogId; }; @@ -1395,78 +1336,104 @@ namespace Sapphire::Network::Packets::Server * Structural representation of the packet sent by the server * to start an event, not actually playing it, but registering */ - struct FFXIVIpcEventStart : FFXIVIpcBasePacket< EventStart > + struct FFXIVIpcEventStart : FFXIVIpcBasePacket< PushEventState > { - /* 0000 */ uint64_t actorId; - /* 0008 */ uint32_t eventId; - /* 000C */ uint8_t param1; - /* 000D */ uint8_t param2; - /* 000E */ uint16_t padding; - /* 0010 */ uint32_t param3; - /* 0014 */ uint32_t padding1; + uint64_t targetId; + uint32_t handlerId; + uint8_t event; + uint8_t flags; + uint8_t __padding1; + uint8_t __padding2; + uint32_t eventArg; }; /** * Structural representation of the packet sent by the server * to fill a huntin log entry */ - struct FFXIVIpcHuntingLogEntry : FFXIVIpcBasePacket< HuntingLogEntry > + struct FFXIVIpcMonsterNoteCategory : FFXIVIpcBasePacket< MonsterNoteCategory > { - int32_t u0; // -1 for all normal classes - uint8_t rank; // starting from 0 - uint8_t index; // classes and gcs - uint8_t entries[10][4]; - uint16_t pad; - uint64_t completeFlags; // 4 bit for each potential entry and the 5th bit for completion of the section - uint64_t pad1; - }; - - /** - * Structural representation of the packet sent by the server - * to play an event - */ - struct FFXIVIpcEventPlay : FFXIVIpcBasePacket< EventPlay > - { - uint64_t actorId; - uint32_t eventId; - uint16_t scene; - uint16_t padding; - uint32_t flags; - uint32_t param3; - uint8_t param4; - uint8_t padding1[3]; - uint32_t param5; - uint8_t unknown[8]; - }; - - struct FFXIVIpcEventPlay16 : FFXIVIpcBasePacket< EventPlay16 > - { - uint64_t actorId; - uint32_t eventId; - uint16_t scene; - uint16_t padding; - uint32_t flags; - uint32_t param3; - uint8_t paramSize; - uint8_t padding1[3]; - uint32_t param[16]; - uint32_t padding2; + uint32_t contextId; + uint8_t currentRank; + uint8_t categoryIndex; + uint8_t killCount[40]; + uint8_t __padding1; + uint8_t __padding2; + uint64_t completeFlags; + uint32_t isNewFlags; }; template< int ArgCount > - struct FFXIVIpcEventPlayN + struct FFXIVIpcPlayEventSceneN { uint64_t actorId; uint32_t eventId; uint16_t scene; uint16_t padding; uint32_t sceneFlags; - uint32_t unknown; - uint8_t paramSize; + uint8_t paramCount; uint8_t padding2[3]; uint32_t params[ArgCount]; }; + /** + * Structural representation of the packet sent by the server + * to play an event + */ + struct FFXIVIpcPlayEventSceneHeader : + FFXIVIpcBasePacket< EventPlayHeader >, + FFXIVIpcPlayEventSceneN< 1 > + { + }; + + struct FFXIVIpcPlayEventScene2 : + FFXIVIpcBasePacket< EventPlay2 >, + FFXIVIpcPlayEventSceneN< 2 > + { + }; + + struct FFXIVIpcPlayEventScene4 : + FFXIVIpcBasePacket< EventPlay4 >, + FFXIVIpcPlayEventSceneN< 4 > + { + }; + + struct FFXIVIpcPlayEventScene8 : + FFXIVIpcBasePacket< EventPlay8 >, + FFXIVIpcPlayEventSceneN< 8 > + { + }; + + struct FFXIVIpcPlayEventScene16 : + FFXIVIpcBasePacket< EventPlay16 >, + FFXIVIpcPlayEventSceneN< 16 > + { + }; + + struct FFXIVIpcPlayEventScene32 : + FFXIVIpcBasePacket< EventPlay32 >, + FFXIVIpcPlayEventSceneN< 32 > + { + }; + + struct FFXIVIpcPlayEventScene64 : + FFXIVIpcBasePacket< EventPlay64 >, + FFXIVIpcPlayEventSceneN< 64 > + { + }; + + struct FFXIVIpcPlayEventScene128: + FFXIVIpcBasePacket< EventPlay128 >, + FFXIVIpcPlayEventSceneN< 128 > + { + }; + + struct FFXIVIpcPlayEventScene255: + FFXIVIpcBasePacket< EventPlay255 >, + FFXIVIpcPlayEventSceneN< 255 > + { + }; + /** * Structural representation of the packet sent by the server * to play an event @@ -1490,19 +1457,19 @@ namespace Sapphire::Network::Packets::Server * Structural representation of the packet sent by the server * to finish an event */ - struct FFXIVIpcEventFinish : FFXIVIpcBasePacket< EventFinish > + struct FFXIVIpcEventFinish : FFXIVIpcBasePacket< PopEventState > { - /* 0000 */ uint32_t eventId; - /* 0004 */ uint8_t param1; - /* 0005 */ uint8_t param2; - /* 0006 */ uint16_t padding; - /* 0008 */ uint32_t param3; - /* 000C */ uint32_t padding1; + uint32_t handlerId; + uint8_t event; + uint8_t result; + uint8_t __padding1; + uint8_t __padding2; + uint32_t eventArg; }; struct FFXIVIpcEventPlay255 : FFXIVIpcBasePacket< EventPlay255 >, - FFXIVIpcEventPlayN< 255 > + FFXIVIpcPlayEventSceneN< 255 > { }; @@ -1511,7 +1478,7 @@ namespace Sapphire::Network::Packets::Server * Structural representation of the packet sent by the server * to respond to a linkshell creation event */ - struct FFXIVIpcEventLinkshell : FFXIVIpcBasePacket< EventLinkshell > + struct FFXIVIpcEventLinkshell : FFXIVIpcBasePacket< ResumeEventScene2 > { uint32_t eventId; uint8_t scene; @@ -1528,37 +1495,39 @@ namespace Sapphire::Network::Packets::Server * Structural representation of the packet sent by the server * to send the active quests */ - struct FFXIVIpcQuestActiveList : FFXIVIpcBasePacket< QuestActiveList > + struct FFXIVIpcQuests : FFXIVIpcBasePacket< Quests > { - Common::QuestActive activeQuests[30]; + Common::QuestData activeQuests[30]; }; /** * Structural representation of the packet sent by the server * to send update a quest slot */ - struct FFXIVIpcQuestUpdate : FFXIVIpcBasePacket< QuestUpdate > + struct FFXIVIpcQuest : FFXIVIpcBasePacket< Quest > { - uint16_t slot; - uint16_t padding; - Common::QuestActive questInfo; + uint8_t index; + uint8_t __padding1; + uint8_t __padding2; + uint8_t __padding3; + Common::QuestData questInfo; }; /** * Structural representation of the packet sent by the server * to send the completed quests mask */ - struct FFXIVIpcQuestCompleteList : FFXIVIpcBasePacket< QuestCompleteList > + struct FFXIVIpcQuestCompleteList : FFXIVIpcBasePacket< QuestCompleteFlags > { - uint8_t questCompleteMask[487]; - uint8_t unknownCompleteMask[73]; + uint8_t questCompleteMask[480]; + uint8_t unknownCompleteMask[80]; }; /** * Structural representation of the packet sent by the server * to finish a quest */ - struct FFXIVIpcQuestFinish : FFXIVIpcBasePacket< QuestFinish > + struct FFXIVIpcQuestFinish : FFXIVIpcBasePacket< QuestCompleteFlag > { uint16_t questId; uint8_t flag1; @@ -1566,24 +1535,61 @@ namespace Sapphire::Network::Packets::Server uint32_t padding; }; - /** - * Structural representation of the packet sent by the server - * to send a quest message - * type 0 default - * type 1 icon - * type 5 status - */ - struct FFXIVIpcQuestMessage : FFXIVIpcBasePacket< QuestMessage > + template< int Size > + struct FFXIVIpcNoticeN { - /* 0000 */ uint32_t questId; - /* 0000 */ uint8_t msgId; - /* 0000 */ uint8_t type; - /* 0000 */ uint16_t padding1; - /* 0000 */ uint32_t var1; - /* 0000 */ uint32_t var2; + uint32_t handlerId; + uint8_t noticeId; + uint8_t numOfArgs; + uint8_t __padding1; + uint8_t __padding2; + uint32_t args[Size]; }; - struct FFXIVIpcQuestTracker : FFXIVIpcBasePacket< QuestTracker > + struct FFXIVIpcNoticeHeader : + FFXIVIpcBasePacket< NoticeHeader >, + FFXIVIpcNoticeN< 1 > + { + }; + + /*! + * Structural representation of the packet sent by the server + * to send a quest message + * type 0 default + * type 1 icon + * type 5 status + */ + struct FFXIVIpcNotice2 : + FFXIVIpcBasePacket< Notice2 >, + FFXIVIpcNoticeN< 2 > + { + }; + + struct FFXIVIpcNotice4 : + FFXIVIpcBasePacket< Notice4 >, + FFXIVIpcNoticeN< 4 > + { + }; + + struct FFXIVIpcNotice8 : + FFXIVIpcBasePacket< Notice8 >, + FFXIVIpcNoticeN< 8 > + { + }; + + struct FFXIVIpcNotice16 : + FFXIVIpcBasePacket< Notice16 >, + FFXIVIpcNoticeN< 16 > + { + }; + + struct FFXIVIpcNotice32 : + FFXIVIpcBasePacket< Notice32 >, + FFXIVIpcNoticeN< 32 > + { + }; + + struct FFXIVIpcQuestTracker : FFXIVIpcBasePacket< Tracking > { struct TrackerEntry { @@ -1594,36 +1600,49 @@ namespace Sapphire::Network::Packets::Server }; - struct FFXIVIpcWeatherChange : FFXIVIpcBasePacket< WeatherChange > + struct FFXIVIpcWeatherId : FFXIVIpcBasePacket< WeatherId > { - uint32_t weatherId; - float delay; + uint8_t WeatherId; + uint8_t __padding1; + uint8_t __padding2; + uint8_t __padding3; + float TransitionTime; }; /** * Structural representation of the packet sent by the server - * to send a unveil a map + * to send a unviel a map */ - struct FFXIVIpcDiscovery : FFXIVIpcBasePacket< Discovery > + struct FFXIVIpcDiscoveryReply : FFXIVIpcBasePacket< DiscoveryReply > { /* 0000 */ uint32_t mapPartId; /* 0004 */ uint32_t mapId; }; /** - * UNKOWN TYPE + * */ - struct FFXIVARR_IPC_UNK322 : FFXIVIpcBasePacket< DailyQuestRepeatFlags > + struct FFXIVIpcQuestRepeatFlags : FFXIVIpcBasePacket< QuestRepeatFlags > { - /* 0000 */ uint8_t unk[8]; + uint8_t update; + uint8_t repeatFlagArray[1]; }; /** - * UNKOWN TYPE + * */ - struct FFXIVARR_IPC_UNK320 : FFXIVIpcBasePacket< DailyQuests > + struct DailyQuest { - /* 0000 */ uint8_t unk[0x38]; + uint16_t questId; + uint8_t flags; + }; + + struct FFXIVIpcDailyQuests : FFXIVIpcBasePacket< DailyQuests > + { + uint8_t update; + uint8_t __padding1; + uint8_t __padding2; + struct DailyQuest dailyQuestArray[6]; }; /** @@ -1650,17 +1669,32 @@ namespace Sapphire::Network::Packets::Server * * See https://gist.github.com/Minoost/c35843c4c8a7a931f31fdaac9bce64c2 */ - struct FFXIVIpcCFNotify : FFXIVIpcBasePacket< CFNotify > + struct FFXIVIpcUpdateContent : FFXIVIpcBasePacket< UpdateContent > { - uint32_t state1; // 3 = cancelled, 4 = duty ready - uint32_t state2; // if state1 == 3, state2 is cancelled reason + uint32_t territoryType; + uint32_t kind; + uint32_t value1; + uint32_t value2; + }; - uint32_t param1; // usually classJobId - uint32_t param2; // usually flag - uint32_t param3; // usually languages, sometimes join in progress timestamp + struct FFXIVIpcUpdateFindContent : FFXIVIpcBasePacket< UpdateFindContent > + { + uint32_t territoryType; + uint32_t kind; + uint32_t value1; + uint32_t value2; + uint32_t value3; + uint32_t value4; + }; - uint16_t param4; // usually roulette id - uint16_t contents[5]; + struct FFXIVIpcNotifyFindContentStatus : FFXIVIpcBasePacket< NotifyFindContentStatus > + { + uint32_t territoryType; + uint8_t status; + uint8_t tankRoleCount; + uint8_t dpsRoleCount; + uint8_t healerRoleCount; + uint8_t matchingTime; }; /** @@ -1670,38 +1704,36 @@ namespace Sapphire::Network::Packets::Server * Do note that this packet has to come early in login phase (around initui packet) * or it won't be applied until you reconnect */ - struct FFXIVIpcCFAvailableContents : FFXIVIpcBasePacket< CFAvailableContents > + struct FFXIVIpcContentAttainFlags : FFXIVIpcBasePacket< ContentAttainFlags > { - uint8_t contents[0x48]; + uint8_t raidAttainFlag[28]; + uint8_t dungeonAttainFlag[18]; + uint8_t guildOrderAttainFlag[10]; + uint8_t bossBattleAttainFlag[6]; + uint8_t colosseumAttainFlag[2]; }; /** * Structural representation of the packet sent by the server * to update adventure in needs in duty roulette */ - struct FFXIVIpcCFPlayerInNeed : FFXIVIpcBasePacket< CFPlayerInNeed > + struct FFXIVIpcContentBonus : FFXIVIpcBasePacket< ContentBonus > { // Ordered by roulette id - uint8_t inNeeds[0x10]; + uint8_t bonusRoles[8]; }; /** * Structural representation of the packet sent by the server * to update duty info in general */ - struct FFXIVIpcCFDutyInfo : FFXIVIpcBasePacket< CFDutyInfo > + struct FFXIVIpcResponsePenalties : FFXIVIpcBasePacket< ResponsePenalties > { - uint8_t penaltyTime; - uint8_t unknown[7]; + uint8_t penalties[2]; }; - struct FFXIVIpcCFRegisterDuty : FFXIVIpcBasePacket< CFRegisterDuty > - { - uint32_t unknown0; // 0x301 - uint8_t rouletteId; // if it's a daily roulette - uint8_t unknown1; // 0xDB - uint16_t contentId; - }; + + struct FFXIVIpcCFMemberStatus : FFXIVIpcBasePacket< CFMemberStatus > @@ -1717,632 +1749,405 @@ namespace Sapphire::Network::Packets::Server uint32_t unknown3; }; - struct FFXIVIpcEorzeaTimeOffset : FFXIVIpcBasePacket< EorzeaTimeOffset > - { - uint64_t timestamp; - }; - /** * Structural representation of the packet sent by the server * to set the gear show/hide status of a character */ - struct FFXIVIpcEquipDisplayFlags : FFXIVIpcBasePacket< EquipDisplayFlags > + struct FFXIVIpcConfig : FFXIVIpcBasePacket< Config > { - uint8_t bitmask; + uint16_t flag; }; - struct FFXIVIpcMiniCactPotInit : FFXIVIpcBasePacket< MiniCactpotInit > - { - /* - * Looks like this shares a handler with MarketTaxRates and a few - * other packets, so these first fields are most likely discriminators - * or other metadata for the handler itself. - */ - uint32_t type; - uint16_t category; - uint8_t unknown1; - uint8_t unknown2; - /* - * Always 18 for this packet, incidentally the number of payouts plus 1. - * Used similarly for MarketTaxRates => for (auto i = 0; i <= indexEnd; i++) {} - */ - uint8_t indexEnd; - uint8_t unknown3; - uint16_t padding1; - /* - * On clicking a number, the client sends a ClientTrigger (DirectorSync) with an unknown - * param2, param5; param1 session, param3 column, param4 row; zero param6, and the server - * replies with an ActorControlSelf (DirectorUpdate) with an unknown param2; param1 session, - * param3 column, param4 row, param5 digit; zero param6. After a line is selected, - * the server replies with 9 DirectorUpdate packets, in order (column, row), containing every - * number on the board (why tho). Finally, one last DirectorUpdate is sent with parameters - * param1 session, param3 payout index; unknown param2, param4; zero param5, param6. - */ - uint32_t column; // zero-based - uint32_t row; - uint32_t firstDigit; - uint32_t payouts[19]; // In in-game display order - uint32_t unknown4; - /* - * All of the below fields seem to be gibberish, and change completely between - * draws and characters. - */ - uint32_t unknown5; - uint32_t unknown6; - uint32_t unknown7; - uint32_t unknown8; - uint16_t unknown9; - uint16_t unknown10; - uint32_t unknown11; - uint64_t unknown12; - }; - - /** - * Structural representation of the packet sent by the server - * to place/remove field marker presets - */ - struct FFXIVIpcPlaceFieldMarkerPreset : FFXIVIpcBasePacket< PlaceFieldMarkerPreset > - { - /*! which fieldmarks to show */ - Common::FieldMarkerStatus status; - /*! A coordinates would be (float)Xints[0]/1000.0, (float)Yints[0]/1000.0, (float)Zints[0]/1000.0 */ - uint32_t Xints[8]; - uint32_t Yints[8]; - uint32_t Zints[8]; - }; - - /** - * Structural representation of the packet sent by the server - * to place/remove a field marker - */ - struct FFXIVIpcPlaceFieldMarker : FFXIVIpcBasePacket< PlaceFieldMarker > - { - Common::FieldMarkerId markerId; - uint8_t status; - uint8_t pad[2]; - uint32_t Xint; - uint32_t Yint; - uint32_t Zint; - }; +struct FFXIVIpcEorzeaTimeOffset : FFXIVIpcBasePacket< TimeOffset > +{ + uint64_t timestamp; +}; /** * Structural representation of the packet sent by the server - * to mount a player + * to setMount a player */ struct FFXIVIpcMount : FFXIVIpcBasePacket< Mount > { uint32_t id; - uint32_t padding[3]; }; /** * Structural representation of the packet sent by the server - * to mount a player + * to setMount a player */ - struct FFXIVIpcDirectorVars : FFXIVIpcBasePacket< DirectorVars > - { - /*! DirectorType | ContentId */ - uint32_t m_directorId; - /*! currect sequence */ - uint8_t m_sequence; - /*! current branch */ - uint8_t m_branch; - /*! raw storage for flags/vars */ - uint8_t m_unionData[10]; - /*! unknown */ - uint16_t u20; - uint16_t u22; - uint16_t u24; - uint16_t u28; - }; - - struct FFXIVIpcDirectorPopUp : FFXIVIpcBasePacket< DirectorPopUp > + struct FFXIVIpcDirectorVars : FFXIVIpcBasePacket< Director > { uint32_t directorId; - uint16_t pad1[2]; - uint64_t sourceActorId; - /*! - * 2 = green text in log - */ + uint8_t sequence; uint8_t flags; - uint8_t pad2[3]; - uint32_t bNPCName; - uint32_t textId; - uint32_t popupTimeMs; - uint32_t param[6]; + uint8_t vars[10]; }; - - struct FFXIVIpcActorGauge : FFXIVIpcBasePacket< ActorGauge > + struct FFXIVIpcHouseList : FFXIVIpcBasePacket< HouseList > { - uint8_t classJobId; - uint8_t data[15]; // depends on classJobId + Common::LandIdent LandSetId; + Common::House Houses[30]; }; - struct FFXIVIpcPerformNote : FFXIVIpcBasePacket< PerformNote > + struct FFXIVIpcHouse : FFXIVIpcBasePacket< House > { - uint8_t data[16]; + uint8_t Block; + uint8_t __padding1; + uint8_t __padding2; + uint8_t __padding3; + Common::House House; }; - struct FFXIVIpcHousingUpdateLandFlagsSlot : FFXIVIpcBasePacket< HousingUpdateLandFlagsSlot > + struct FFXIVIpcYardObjectList : FFXIVIpcBasePacket< YardObjectList > { - uint32_t type; - uint32_t unknown; - Common::LandFlagSet flagSet; + uint8_t PacketIndex; + uint8_t PacketEnd; + uint8_t PacketEnd1; + uint8_t PacketEnd2; + Common::Furniture YardObjects[400]; }; - struct FFXIVIpcHousingLandFlags : FFXIVIpcBasePacket< HousingLandFlags > + struct FFXIVIpcYardObject : FFXIVIpcBasePacket< YardObject > { - Common::LandFlagSet freeCompanyHouse; // 00 - uint64_t unkown1; - Common::LandFlagSet privateHouse; // 24 - uint64_t unkown2; - Common::LandFlagSet apartment; // 48 - uint64_t unkown3; - Common::LandFlagSet sharedHouse[2]; //72 - uint64_t unkown4; - Common::LandFlagSet unkownHouse; - uint64_t unkown5; + uint8_t PacketIndex; + uint8_t __padding1; + uint8_t __padding2; + uint8_t __padding3; + Common::Furniture YardObject; }; - //Structs - struct LandStruct + struct FFXIVIpcInterior : FFXIVIpcBasePacket< Interior > { - uint8_t plotSize; //0 - uint8_t houseState; // 2 - uint8_t flags; // bit1 -> hasPublicAccess; bit2 -> isPersonalHouse - uint8_t iconAddIcon; // 6 - uint32_t fcId; //8 - uint32_t fcIcon;// 12 - uint32_t fcIconColor; // 16 - uint16_t housePart[ 8 ]; // 34 - uint8_t houseColour[ 8 ]; // 36 + uint8_t Window; + uint8_t WindowColor; + uint8_t Door; + uint8_t DoorColor; + uint16_t Interior[10]; }; - struct FFXIVIpcLandUpdate : FFXIVIpcBasePacket< LandUpdate > + struct FFXIVIpcHousingAuction : FFXIVIpcBasePacket< HousingAuction > { - Common::LandIdent landIdent; - LandStruct land; + uint32_t Price; + uint32_t Timer; }; - struct FFXIVIpcLandPriceUpdate : FFXIVIpcBasePacket< LandPriceUpdate > + struct FFXIVIpcHousingProfile : FFXIVIpcBasePacket< HousingProfile > { - uint32_t price; - uint32_t timeLeft; + Common::LandIdent LandId; + uint64_t OwnerId; + uint32_t Like; + uint8_t Welcome; + uint8_t Size; + char Name[23]; + char Greeting[193]; + char OwnerName[31]; + char FCTag[7]; }; - struct FFXIVIpcLandInfoSign : FFXIVIpcBasePacket< LandInfoSign > + struct FFXIVIpcHousingHouseName : FFXIVIpcBasePacket< HousingHouseName > { - Common::LandIdent landIdent; - uint64_t ownerId; // ither contentId or fcId - uint32_t unknow1; - uint8_t houseIconAdd; - uint8_t houseSize; - uint8_t houseType; - char estateName[23]; - char estateGreeting[193]; - char ownerName[31]; - char fcTag[7]; - uint8_t tag[3]; + Common::LandIdent LandId; + char Name[23]; }; - struct FFXIVIpcLandRename : FFXIVIpcBasePacket< LandRename > + struct FFXIVIpcHousingGreeting : FFXIVIpcBasePacket< HousingGreeting > { - Common::LandIdent landIdent; - char houseName[20]; - uint32_t padding; + Common::LandIdent LandId; + uint8_t Greeting[193]; }; - struct FFXIVIpcLandUpdateHouseName : FFXIVIpcBasePacket< LandUpdateHouseName > + struct FFXIVIpcCharaHousingLandData : FFXIVIpcBasePacket< CharaHousingLandData > { - uint32_t unknown[3]; - char houseName[20]; - uint32_t unknown2[2]; + uint8_t IsFcOwner; + uint8_t Index; + uint8_t __padding1; + uint8_t __padding2; + Common::LandIdent LandId; + uint8_t Flags; }; - struct FFXIVIpcLandSetMap : FFXIVIpcBasePacket< LandSetMap > + struct FFXIVIpcCharaHousing : FFXIVIpcBasePacket< CharaHousing > { - uint8_t u1; - uint8_t subdivision; - uint8_t u3; - struct - { - uint8_t status; - uint8_t size; - uint8_t isPrivate; - } landInfo[ 30 ]; - uint8_t padding[ 3 ]; + Common::CharaLandData FcLands[1]; + uint8_t __padding1; + uint8_t __padding2; + uint8_t __padding3; + Common::CharaLandData CharaLands[1]; }; - struct FFXIVIpcLandSetInitialize : FFXIVIpcBasePacket< LandSetInitialize > + struct FFXIVIpcHousingWelcome : FFXIVIpcBasePacket< HousingWelcome > { - Common::LandIdent landIdent; - uint8_t unknown1; - uint8_t subInstance; // (default : 1/2) - uint8_t unknown3; - uint8_t unknown4; - uint8_t unknown5; - uint8_t unknown6; - uint8_t unknown7; - uint8_t unknown8; - LandStruct land[ 30 ]; + uint8_t Welcome; + uint8_t __padding1; + uint8_t __padding2; + uint8_t __padding3; + Common::LandIdent LandId; }; - struct FFXIVIpcYardObjectSpawn : FFXIVIpcBasePacket< YardObjectSpawn > + struct FFXIVIpcFurnitureListS : FFXIVIpcBasePacket< FurnitureListS > { - uint8_t landId; - uint8_t objectArray; - uint16_t unknown1; - Common::HousingObject object; + Common::LandIdent LandId; + Common::Furniture Furnitures[100]; }; - struct FFXIVIpcHousingObjectMove : FFXIVIpcBasePacket< HousingObjectMove > + struct FFXIVIpcFurnitureListM : FFXIVIpcBasePacket< FurnitureListM > { - uint16_t itemRotation; - uint8_t objectArray; - uint8_t landId; - Common::FFXIVARR_POSITION3 pos; - uint16_t unknown1; - uint16_t unknown2; - uint16_t unknown3; + Common::LandIdent LandId; + Common::Furniture Furnitures[150]; }; - struct FFXIVIpcHousingObjectInitialize : FFXIVIpcBasePacket< HousingObjectInitialize > + struct FFXIVIpcFurnitureListL : FFXIVIpcBasePacket< FurnitureListL > { - Common::LandIdent landIdent; - /*! - * when this is 2, actrl 0x400 will hide the additional quarters door - * if it's any other value, it will stay there regardless - */ - int8_t u1; //Outdoor -1 / Indoor 0 - probably indicator - uint8_t packetNum; - uint8_t packetTotal; - uint8_t u2; //Outdoor 0 / Indoor 100(?) - Common::HousingObject object[100]; - uint32_t unknown4; //unused + Common::LandIdent LandId; + Common::Furniture Furnitures[200]; }; - struct FFXIVIpcHousingInternalObjectSpawn : FFXIVIpcBasePacket< HousingInternalObjectSpawn > + struct FFXIVIpcFurniture : FFXIVIpcBasePacket< Furniture > { - uint16_t containerId; - uint8_t containerOffset; - uint8_t pad1; - - Common::HousingObject object; + uint16_t StorageId; + uint8_t ContainerIndex; + uint8_t __padding1; + Common::Furniture Furniture; }; - struct FFXIVIpcHousingIndoorInitialize : FFXIVIpcBasePacket< HousingIndoorInitialize > + struct FFXIVIpcHousingProfileList : FFXIVIpcBasePacket< HousingProfileList > { - uint16_t u1; - uint16_t u2; - uint16_t u3; - uint16_t u4; - uint32_t indoorItems[10]; + Common::LandIdent LandSetId; + Common::SimpleProfile ProfileList[30]; }; - - struct FFXIVIpcHousingWardInfo : FFXIVIpcBasePacket< HousingWardInfo > + struct FFXIVIpcHousingObjectTransform : FFXIVIpcBasePacket< HousingObjectTransform > { - Common::LandIdent landIdent; - - struct HouseInfoEntry - { - uint32_t housePrice; - uint8_t infoFlags; - Common::HousingAppeal houseAppeal[3]; - char estateOwnerName[32]; - } houseInfoEntry[60]; + uint16_t Dir; + uint8_t UserData1; + uint8_t UserData2; + uint8_t ContainerIndex; + uint8_t __padding1; + uint16_t Pos[3]; }; - struct FFXIVIpcHousingEstateGreeting : FFXIVIpcBasePacket< HousingEstateGreeting > + struct FFXIVIpcHousingObjectColor : FFXIVIpcBasePacket< HousingObjectColor > { - Common::LandIdent landIdent; - char message[200]; + uint8_t Color; + uint8_t __padding1; + uint16_t StorageId; + uint8_t ContainerIndex; + uint8_t UserData; }; - struct FFXIVIpcHousingShowEstateGuestAccess : FFXIVIpcBasePacket< HousingShowEstateGuestAccess > + struct FFXIVIpcHousingObjectTransformMulti : FFXIVIpcBasePacket< HousingObjectTransformMulti > { - uint32_t unknown[2]; - Common::LandIdent ident; + Common::LandIdent LandId; + Common::HousingLayout LayoutInfos[10]; }; - /** - * Structural representation of the packet sent by the server - * to show the current shared estate settings - */ - struct FFXIVIpcSharedEstateSettingsResponse : FFXIVIpcBasePacket< SharedEstateSettingsResponse > + struct FFXIVIpcHousingGetPersonalRoomProfileListResult : FFXIVIpcBasePacket< HousingGetPersonalRoomProfileListResult > { - struct playerEntry - { - uint64_t contentId; - uint8_t permissions; - char name[0x20]; - char padding[0x7]; - } entry[3]; + uint64_t CharacterID; + Common::LandIdent HouseLandID; + uint16_t TopRoomID; + uint8_t __padding1; + uint8_t __padding2; + Common::HousingPersonalRoomProfileData ProfileList[15]; }; - struct FFXIVIpcMSQTrackerProgress : FFXIVIpcBasePacket< MSQTrackerProgress > + struct FFXIVIpcHousingGetHouseBuddyStableListResult : FFXIVIpcBasePacket< HousingGetHouseBuddyStableListResult > { - uint32_t id; - uint32_t padding; + uint64_t CharacterID; + Common::LandIdent LandID; + uint8_t Page; + uint8_t IsMyBuddy; + uint8_t __padding1; + uint8_t __padding2; + Common::HouseBuddyStableData BuddyList[15]; }; - struct FFXIVIpcMSQTrackerComplete : FFXIVIpcBasePacket< MSQTrackerComplete > + struct FFXIVIpcHouseTrainBuddyData : FFXIVIpcBasePacket< HouseTrainBuddyData > { - uint32_t id; - uint32_t padding1; - uint64_t padding2; - uint64_t padding3; - uint64_t padding4; // last 4 bytes is uint32_t but who cares + uint8_t OwnerRace; + uint8_t OwnerSex; + uint8_t Stain; + uint8_t Equips[3]; }; - struct FFXIVIpcObjectSpawn : FFXIVIpcBasePacket< ObjectSpawn > + struct FFXIVIpcHousingObjectTransformMultiResult : FFXIVIpcBasePacket< HousingObjectTransformMultiResult > { - uint8_t spawnIndex; - uint8_t objKind; - uint8_t state; - uint8_t unknown3; - uint32_t objId; - uint32_t actorId; - uint32_t levelId; - uint32_t unknown10; - uint32_t someActorId14; - uint32_t gimmickId; - float scale; - int16_t unknown20a; - uint16_t rotation; - int16_t unknown24a; - int16_t unknown24b; - uint16_t flag; - int16_t unknown28c; - uint32_t housingLink; - Common::FFXIVARR_POSITION3 position; - int16_t unknown3C; - int16_t unknown3E; + Common::LandIdent LandId; + uint8_t Result; + uint8_t __padding1; + uint16_t FixIndexes[10]; }; - struct FFXIVIpcObjectDespawn : FFXIVIpcBasePacket< ObjectDespawn > + struct FFXIVIpcHousingLogWithHouseName : FFXIVIpcBasePacket< HousingLogWithHouseName > { - uint8_t spawnIndex; - uint8_t padding[7]; + uint32_t LogId; + uint8_t Name[23]; }; - struct FFXIVIpcDuelChallenge : FFXIVIpcBasePacket< DuelChallenge > + struct FFXIVIpcHousingCombinedObjectStatus : FFXIVIpcBasePacket< HousingCombinedObjectStatus > { - uint8_t otherClassJobId; - uint8_t otherLevel; // class job level - uint8_t challengeByYou; // 0 if the other challenges you, 1 if you challenges the other. - uint8_t otherItemLevel; - - uint32_t otherActorId; - - char otherName[32]; + uint16_t AddressData; + uint16_t Kind[8]; + uint8_t Step[8]; + uint8_t Status[8]; }; - - struct FFXIVIpcRetainerInformation : FFXIVIpcBasePacket< RetainerInformation > + + struct FFXIVIpcHouseBuddyModelData : FFXIVIpcBasePacket< HouseBuddyModelData > { - uint8_t unknown0[8]; - uint64_t retainerId; - uint8_t hireOrder; - uint8_t itemCount; - uint8_t unknown5[2]; - uint32_t gil; - uint8_t sellingCount; - uint8_t cityId; - uint8_t classJob; - uint8_t level; - uint8_t unknown11[4]; - uint32_t retainerTask; - uint32_t retainerTaskComplete; - uint8_t unknown14; - char retainerName[20]; + uint16_t AddressData; + uint8_t BuddyScale; + uint8_t Stain; + uint8_t Invisibility; + uint8_t __padding1; + uint8_t __padding2; + uint8_t __padding3; + uint32_t ModelEquips[3]; }; - struct FFXIVIpcCharaVisualEffect : FFXIVIpcBasePacket< CharaVisualEffect > + struct FFXIVIpcCreateObject : FFXIVIpcBasePacket< CreateObject > { - uint32_t id; - uint32_t padding; + uint8_t Index; + uint8_t Kind; + uint8_t Flag; + uint8_t __padding1; + uint32_t BaseId; + uint32_t EntityId; + uint32_t LayoutId; + uint32_t ContentId; + uint32_t OwnerId; + uint32_t BindLayoutId; + float Scale; + uint16_t SharedGroupTimelineState; + uint16_t Dir; + uint16_t FATE; + uint8_t PermissionInvisibility; + uint8_t Args; + uint32_t Args2; + uint32_t Args3; + Common::FFXIVARR_POSITION3 Pos; }; - struct FFXIVIpcCFCancel : FFXIVIpcBasePacket< CFCancel > + struct FFXIVIpcDeleteObject : FFXIVIpcBasePacket< DeleteObject > { - uint32_t cancelReason; - uint32_t unknown2; + uint8_t Index; }; - struct FFXIVIpcShopMessage : FFXIVIpcBasePacket< ShopMessage > + struct FFXIVIpcGetFcProfileResult : + FFXIVIpcBasePacket< GetFcProfileResult > { - uint32_t shopId; - uint32_t msgType; - uint32_t unknown2; - uint32_t itemId; - uint32_t amount; - uint32_t price; - uint32_t unknown6; - uint32_t unknown7; + uint64_t TargetCharacterID; + uint64_t FreeCompanyID; + uint64_t CrestID; + uint64_t LandID; + uint32_t TargetEntityID; + uint32_t CreateDate; + uint32_t Reputation; + uint16_t TotalMemberCount; + uint16_t OnlineMemberCount; + uint16_t FcActivity; + uint16_t FcRole; + uint8_t FcActiveTimeFlag; + uint8_t FcJoinRequestFlag; + uint8_t GrandCompanyID; + uint8_t FcStatus; + uint8_t FcRank; + uint8_t JoinRequestCount; + char FreeCompanyName[22]; + char FcTag[7]; + char MasterCharacterName[32]; + char CompanyMotto[193]; + char HouseName[23]; }; - struct FFXIVIpcLootMessage : FFXIVIpcBasePacket< LootMessage > + struct FFXIVIpcFreeCompany : FFXIVIpcBasePacket< FreeCompany > { - Common::LootMessageType msgType; - uint8_t padding[3]; - uint32_t param1; - uint32_t param2; - uint32_t param3; - uint32_t param4; - uint32_t param5; - uint32_t param6; - uint32_t param7; + uint64_t Crest; + char Tag[6]; }; - struct FFXIVIpcSocialMessage : FFXIVIpcBasePacket< SocialMessage > + struct FFXIVIpcPcPartyResult : FFXIVIpcBasePacket< PcPartyResult > { - uint64_t contentId; - uint32_t expireTime; - uint8_t p1; - uint8_t p2; - uint8_t socialType; - uint8_t padding; - uint8_t type; - uint8_t unknown4; - char name[32]; - uint8_t padding2[6]; + uint32_t UpPacketNo; + uint32_t Result; }; - struct FFXIVIpcSocialMessage2 : FFXIVIpcBasePacket< SocialMessage2 > + struct FFXIVIpcPcPartyUpdate : FFXIVIpcBasePacket< PcPartyUpdate > { - uint64_t contentId; - uint32_t unknown3; - uint8_t p1; - uint8_t p2; - uint8_t socialType; - uint8_t padding; - char name[32]; + uint64_t ExecuteCharacterID; + uint64_t TargetCharacterID; + uint8_t ExecuteIdentity; + uint8_t TargetIdentity; + uint8_t UpdateStatus; + uint8_t Count; + char ExecuteCharacterName[32]; + char TargetCharacterName[32]; }; - struct FFXIVIpcSocialRequestResponse : FFXIVIpcBasePacket< SocialRequestResponse > + struct FFXIVIpcPartyRecruitResult : FFXIVIpcBasePacket< PartyRecruitResult > { - uint64_t contentId; - uint32_t unknown3; - uint8_t u1AlwaysOne; - uint8_t response; - uint8_t u2AlwaysOne; - char name[32]; - uint8_t padding; + uint64_t TargetCharacterID; + uint64_t Param; + uint32_t Type; + uint32_t Result; + uint8_t Identity; + char TargetName[32]; }; - struct FFXIVIpcPartyList : FFXIVIpcBasePacket< PartyList > + struct ZoneProtoDownStatusWork { - struct - { - char name[32]; - uint64_t contentId; - uint32_t charaId; - uint32_t u1; - uint32_t u2; - uint32_t hp; - uint32_t maxHp; - uint16_t mp; - uint16_t maxMp; - uint16_t u3; - uint16_t zoneId; - uint8_t gposeSelectable; - uint8_t classId; - uint8_t u5; - uint8_t level; - uint8_t otherData[368]; - } member[8]; - uint64_t someContentId1; - uint64_t someContentId2; - uint8_t leaderIndex; - uint8_t partySize; - uint16_t padding1; - uint32_t padding2; + uint16_t Id; + int16_t SystemParam; + float Time; + uint32_t Source; }; - struct FFXIVIpcPartyMessage : FFXIVIpcBasePacket< PartyMessage > + struct ZoneProtoDownPartyMember { - uint64_t leaderContentId; - uint64_t memberContentId; - uint8_t u1; - uint8_t u2; - uint16_t type; - uint8_t partySize; // ? - char leaderName[32]; - char memberName[32]; - uint8_t padding[3]; + char Name[32]; + uint64_t CharaId; + uint32_t EntityId; + uint32_t ParentEntityId; + uint8_t Valid; + uint8_t ClassJob; + uint8_t Sex; + uint8_t Role; + uint8_t Lv; + uint8_t LvSync; + uint8_t ObjType; + uint8_t BuddyCommand; + uint32_t Hp; + uint32_t HpMax; + uint16_t Mp; + uint16_t MpMax; + uint16_t Tp; + uint16_t TerritoryType; + uint32_t PetEntityId; + ZoneProtoDownStatusWork Status[30]; }; - struct FFXIVIpcEventContinue : FFXIVIpcBasePacket< EventContinue > + struct FFXIVIpcUpdateParty : FFXIVIpcBasePacket< UpdateParty > { - uint32_t eventId; - uint16_t scene; - uint16_t unknown; - uint64_t unknown2; + ZoneProtoDownPartyMember Member[8]; + uint64_t PartyID; + uint64_t ChatChannel; + uint8_t LeaderIndex; + uint8_t PartyCount; + uint8_t __padding1; + uint8_t __padding2; + ZoneProtoDownStatusWork PetStatus[30]; }; - struct FFXIVDirectorUnk4 : FFXIVIpcBasePacket< SomeDirectorUnk4 > + struct ZoneProtoDownMemberPos { - uint32_t param[4]; - uint64_t unknown; + uint8_t Valid; + uint8_t __padding1; + uint16_t Pos[3]; }; - struct FFXIVCeremonySetActorAppearance : FFXIVIpcBasePacket< CeremonySetActorAppearance > + struct FFXIVIpcPartyPos : FFXIVIpcBasePacket< PartyPos > { - uint8_t u1; - uint8_t questBL; - uint16_t padding1; - uint32_t u3; - struct - { - uint64_t mainWeaponModel; - uint64_t secWeaponModel; - uint64_t craftToolModel; - uint32_t c_u6; - uint32_t c_u7; - uint32_t charId; - uint16_t u4; - uint16_t guardianDeity; - uint32_t u5; - uint32_t models[10]; - uint8_t look[26]; - uint16_t padding3; - } actors[2]; + ZoneProtoDownMemberPos Member[8]; }; - //For quests this is only used for pre-accepted ones. Accepted quests are getting handled by the client. - template< int ArgCount > - struct FFXIVIpcMapUpdateN - { - uint8_t entryCount; - uint8_t padding[ 3 ]; - uint32_t iconIds[ ArgCount ]; - uint32_t levelIds[ ArgCount ]; - uint32_t eventIds[ ArgCount ]; // possible event ids for this: Quest, GuildLeveAssignment, GuildOrderGuide, TripleTriad, CustomTalk, PreHandler - uint8_t additionalData[ ArgCount ]; // use unknown - }; - - struct FFXIVIpcMapUpdate : - FFXIVIpcBasePacket< MapUpdate >, - FFXIVIpcMapUpdateN< 2 > - { - }; - - struct FFXIVIpcMapUpdate4 : - FFXIVIpcBasePacket< MapUpdate4 >, - FFXIVIpcMapUpdateN< 4 > - { - }; - - struct FFXIVIpcMapUpdate8 : - FFXIVIpcBasePacket< MapUpdate8 >, - FFXIVIpcMapUpdateN< 8 > - { - }; - - struct FFXIVIpcMapUpdate16 : - FFXIVIpcBasePacket< MapUpdate16 >, - FFXIVIpcMapUpdateN< 16 > - { - }; - - struct FFXIVIpcMapUpdate32 : - FFXIVIpcBasePacket< MapUpdate32 >, - FFXIVIpcMapUpdateN< 32 > - { - }; - - struct FFXIVIpcMapUpdate64 : - FFXIVIpcBasePacket< MapUpdate64 >, - FFXIVIpcMapUpdateN< 64 > - { - }; - - struct FFXIVIpcMapUpdate128 : - FFXIVIpcBasePacket< MapUpdate128 >, - FFXIVIpcMapUpdateN< 128 > - { - }; } - -#endif /*_CORE_NETWORK_PACKETS_SERVER_IPC_H*/ diff --git a/src/common/Service.h b/src/common/Service.h index 8cbb43a1..e124cb6b 100644 --- a/src/common/Service.h +++ b/src/common/Service.h @@ -1,5 +1,4 @@ -#ifndef SAPPHIRE_SERVICE_H -#define SAPPHIRE_SERVICE_H +#pragma once #include #include @@ -111,5 +110,3 @@ namespace Sapphire::Common inline static std::shared_ptr< SvcType > service = nullptr; }; } - -#endif //SAPPHIRE_SERVICE_H diff --git a/src/common/Util/Util.cpp b/src/common/Util/Util.cpp index 5aa64bf6..0f53d1e6 100644 --- a/src/common/Util/Util.cpp +++ b/src/common/Util/Util.cpp @@ -124,12 +124,12 @@ uint64_t Util::getTimeMs() uint32_t Util::getTimeSeconds() { auto currClock = std::chrono::system_clock::now(); - return std::chrono::time_point_cast< std::chrono::seconds >( currClock ).time_since_epoch().count(); + return static_cast< uint32_t >( std::chrono::time_point_cast< std::chrono::seconds >( currClock ).time_since_epoch().count() ); } uint64_t Util::getEorzeanTimeStamp() { - return static_cast< uint64_t >( getTimeSeconds() * 20.571428571428573 ); + return static_cast< uint64_t >( getTimeSeconds() * 20.571428571428573f ); } void Util::valueToFlagByteIndexValue( uint32_t inVal, uint8_t& outVal, uint16_t& outIndex ) diff --git a/src/common/Util/Util.h b/src/common/Util/Util.h index b498b5bc..15e78f5a 100644 --- a/src/common/Util/Util.h +++ b/src/common/Util/Util.h @@ -37,8 +37,8 @@ namespace Sapphire::Common::Util template< class T > inline void hashCombine( std::size_t& seed, const T& v ) { - std::hash< T > hasher; - seed ^= hasher( v ) + 0x9e3779b9 + ( seed << 6 ) + ( seed >> 2 ); + std::hash< T > hasher; + seed ^= hasher( v ) + 0x9e3779b9 + ( seed << 6 ) + ( seed >> 2 ); } } diff --git a/src/common/Util/UtilMath.cpp b/src/common/Util/UtilMath.cpp index d81a2f62..ca6cd7d8 100644 --- a/src/common/Util/UtilMath.cpp +++ b/src/common/Util/UtilMath.cpp @@ -1,5 +1,7 @@ #include #include "UtilMath.h" +#include "Common.h" +#include using namespace Sapphire::Common; @@ -65,12 +67,12 @@ float Util::calcAngFrom( float x, float y, float x1, float y1 ) uint16_t Util::floatToUInt16( float val ) { - return static_cast< uint16_t >( 0x8000 + val * 32.767f ); + return static_cast< uint16_t >( ( ( val + 1000.0f ) * 100.0f) * 0.32767501f ); } uint16_t Util::floatToUInt16Rot( float val ) { - return static_cast< uint16_t >( 0x8000 * ( ( val + PI ) ) / PI ); + return static_cast< uint16_t >( ( ( ( val + 3.1415927f ) * 100.f) * 103.30219106f ) ); } uint8_t Util::floatToUInt8Rot( float val ) @@ -78,7 +80,56 @@ uint8_t Util::floatToUInt8Rot( float val ) return static_cast< uint8_t >( 0x80 * ( ( val + PI ) ) / PI ); } -float Util::floatFromUInt16Rot( uint16_t rot ) +FFXIVARR_POSITION3 Util::transform( const FFXIVARR_POSITION3& vector, const Matrix33& matrix ) { - return rot / 32768.0f * PI - PI; -} \ No newline at end of file + FFXIVARR_POSITION3 dst{}; + + dst.x = vector.z * matrix.m[ 2 ][ 0 ] + vector.x * matrix.m[ 0 ][ 0 ] + vector.y * matrix.m[ 1 ][ 0 ]; + dst.y = vector.z * matrix.m[ 2 ][ 1 ] + vector.x * matrix.m[ 0 ][ 1 ] + vector.y * matrix.m[ 1 ][ 1 ]; + dst.z = vector.z * matrix.m[ 2 ][ 2 ] + vector.x * matrix.m[ 0 ][ 2 ] + vector.y * matrix.m[ 1 ][ 2 ]; + + + return dst; +} + +float Util::eulerToDirection( const FFXIVARR_POSITION3 &euler ) +{ + Matrix33 matrix; + + auto sinZ = sinf( euler.z ); + auto cosZ = cosf( euler.z ); + auto sinY = sinf( euler.y ); + auto cosY = cosf( euler.y ); + auto sinX = sinf( euler.x ); + auto cosX = cosf( euler.x ); + + matrix.m[0][0] = cosZ * cosY; + matrix.m[0][1] = sinZ * cosX; + matrix.m[0][2] = sinZ * sinX + ( -cosZ * sinY ) * cosX; + + matrix.m[1][0] = -sinZ * cosY; + matrix.m[1][1] = cosZ * cosX + ( -sinZ * sinY * sinX ); + matrix.m[1][2] = cosZ * sinX + sinZ * sinY * cosX; + + matrix.m[2][0] = sinY; + matrix.m[2][1] = -cosY * sinX; + matrix.m[2][2] = cosY * cosX; + + FFXIVARR_POSITION3 AXIS_Z{ 0.0f, 0.0f, 1.0f }; + auto result = transform( AXIS_Z, matrix ); + + auto squared = result.z * result.z + result.x * result.x; + auto v1{0.0f}; + auto v2{0.0f}; + + if( squared > 0.00000011920929f ) + { + auto ret = sqrtf( squared ); + ret = -( ( squared * ret ) * ret - 1.0f ) * ( 0.5f * ret ) + ret; + ret = -( ( squared * ret ) * ret - 1.0f ) * ( 0.5f * ret ) + ret; + v1 = result.z * ( -( ( ( squared * ret ) * ret ) - 1.0f ) * ( 0.5f * ret ) + ret ); + v2 = result.x * ( -( ( ( squared * ret ) * ret ) - 1.0f ) * ( 0.5f * ret ) + ret ); + } + + return atan2f( v2, v1 ); +} diff --git a/src/common/Util/UtilMath.h b/src/common/Util/UtilMath.h index 1168d71b..d9849477 100644 --- a/src/common/Util/UtilMath.h +++ b/src/common/Util/UtilMath.h @@ -25,8 +25,6 @@ namespace Sapphire::Common::Util uint16_t floatToUInt16Rot( float val ); - float floatFromUInt16Rot( uint16_t rot ); - uint8_t floatToUInt8Rot( float val ); template < typename T > @@ -41,6 +39,9 @@ namespace Sapphire::Common::Util return val; } + FFXIVARR_POSITION3 transform( const FFXIVARR_POSITION3& vector, const Matrix33& matrix ); + + float eulerToDirection( const FFXIVARR_POSITION3& euler ); } #endif diff --git a/src/common/Vector3.cpp b/src/common/Vector3.cpp index e364fc99..a98c4fde 100644 --- a/src/common/Vector3.cpp +++ b/src/common/Vector3.cpp @@ -6,3 +6,9 @@ inline bool FFXIVARR_POSITION3::operator == ( const FFXIVARR_POSITION3& target ) { return x == target.x && y == target.y && z == target.z; } + + +inline bool Vector3::operator == ( const Vector3& target ) const +{ + return x == target.x && y == target.y && z == target.z && reserve == target.reserve; +} \ No newline at end of file diff --git a/src/common/Vector3.h b/src/common/Vector3.h index 48f5f1db..1658aa76 100644 --- a/src/common/Vector3.h +++ b/src/common/Vector3.h @@ -1,5 +1,4 @@ -#ifndef _VECTOR3_H_ -#define _VECTOR3_H_ +#pragma once namespace Sapphire::Common { @@ -10,6 +9,18 @@ namespace Sapphire::Common float z; inline bool operator == ( const FFXIVARR_POSITION3& target ) const; }; -} -#endif \ No newline at end of file + struct Vector3 + { + float x; + float y; + float z; + float reserve; + inline bool operator == ( const Vector3& target ) const; + }; + + struct Matrix33 + { + float m[ 3 ][ 3 ]; + }; +} diff --git a/src/dbm/DbManager.cpp b/src/dbm/DbManager.cpp index 4b7a7783..0f706212 100644 --- a/src/dbm/DbManager.cpp +++ b/src/dbm/DbManager.cpp @@ -5,14 +5,21 @@ #include #include #include -#include #include using namespace Sapphire; using namespace Sapphire::Common; +// fucking filesystem +#if _MSC_VER >= 1925 +#include namespace fs = std::filesystem; +#else +#include +namespace fs = std::experimental::filesystem; +#endif + DbManager::DbManager( const std::string& host, const std::string& database, const std::string& user, const std::string& pw, uint16_t port ) : m_host( host ), @@ -106,7 +113,11 @@ bool DbManager::performAction() { bool result = false; execute( " SET autocommit = 0 " ); - m_pConnection->beginTransaction(); + + if( m_mode != Mode::MIGRATE ) + { + m_pConnection->beginTransaction(); + } switch( m_mode ) { @@ -128,10 +139,14 @@ bool DbManager::performAction() case Mode::CLEAN_CHARS: break; } - if( !result ) - m_pConnection->rollbackTransaction(); - else - m_pConnection->commitTransaction(); + + if( m_mode != Mode::MIGRATE ) + { + if( !result ) + m_pConnection->rollbackTransaction(); + else + m_pConnection->commitTransaction(); + } return result; } @@ -419,29 +434,51 @@ bool DbManager::modeMigrate() { Logger::info( "Applying migration: {}", path.filename().string() ); + m_pConnection->beginTransaction(); + std::ifstream mFile( path.string() ); if( !mFile.is_open() ) { m_lastError = "File " + path.string() + " does not exist!"; return false; } - std::string sql( ( std::istreambuf_iterator< char >( mFile ) ), - ( std::istreambuf_iterator< char >( ) ) ); + std::string content( ( std::istreambuf_iterator< char >( mFile ) ), + ( std::istreambuf_iterator< char >( ) ) ); - try + std::string delimiter = ";"; + + size_t pos = 0; + std::string token; + while( ( pos = content.find( delimiter ) ) != std::string::npos ) { - auto stmt = m_pConnection->createStatement(); - stmt->executeQuery( sql ); - } - catch( std::runtime_error& e ) - { - m_lastError = e.what(); - return false; + token = content.substr( 0, pos ); + size_t pos1 = token.find_first_not_of( "\r\n" ); + token = token.substr( pos1, token.size() ); + size_t pos2 = token.find_first_of( "\r\n" ); + + try + { + auto stmt = m_pConnection->createStatement(); + stmt->executeQuery( token ); + } + catch( std::runtime_error& e ) + { + m_lastError = e.what(); + m_pConnection->rollbackTransaction(); + return false; + } + + content.erase( 0, pos + delimiter.length() ); } // insert into migrations table if( !execute( fmt::format( "INSERT INTO __Migration (`MigrationName`) VALUES ('{}');", path.filename().string() ) ) ) + { + m_pConnection->rollbackTransaction(); return false; + } + + m_pConnection->commitTransaction(); } } diff --git a/src/dbm/main.cpp b/src/dbm/main.cpp index ed6c09d4..7eaff903 100644 --- a/src/dbm/main.cpp +++ b/src/dbm/main.cpp @@ -3,14 +3,20 @@ #include #include #include -#include #include #include #include -[[maybe_unused]] Sapphire::Common::Util::CrashHandler crashHandler; +Sapphire::Common::Util::CrashHandler crashHandler; -namespace fs = std::filesystem; +// fucking filesystem +#if _MSC_VER >= 1925 +#include +namespace filesys = std::filesystem; +#else +#include +namespace filesys = std::experimental::filesystem; +#endif #include #include @@ -30,19 +36,19 @@ std::vector< std::string > getAllFilesInDir( const std::string& dirPath, try { // Check if given path exists and points to a directory - if( fs::exists( dirPath ) && fs::is_directory( dirPath ) ) + if( filesys::exists( dirPath ) && filesys::is_directory( dirPath ) ) { // Create a Recursive Directory Iterator object and points to the starting of directory - fs::recursive_directory_iterator iter( dirPath ); + filesys::recursive_directory_iterator iter( dirPath ); // Create a Recursive Directory Iterator object pointing to end. - fs::recursive_directory_iterator end; + filesys::recursive_directory_iterator end; // Iterate till end while( iter != end ) { // Check if current entry is a directory and if exists in skip list - if( fs::is_directory( iter->path() ) && + if( filesys::is_directory( iter->path() ) && ( std::find( dirSkipList.begin(), dirSkipList.end(), iter->path().filename() ) != dirSkipList.end() ) ) { // Skip the iteration of current directory pointed by iterator diff --git a/src/lobby/Forwards.h b/src/lobby/Forwards.h index 2e2d4e36..1f54bcc7 100644 --- a/src/lobby/Forwards.h +++ b/src/lobby/Forwards.h @@ -12,6 +12,11 @@ x ## Ptr make_ ## x( Args &&...args ) { \ return std::make_shared< x >( std::forward< Args >( args ) ... ); }\ typedef std::vector< x > x ## PtrList; +namespace Sapphire +{ + TYPE_FORWARD( Framework ); +} + namespace Sapphire::Lobby { TYPE_FORWARD( LobbySession ); diff --git a/src/lobby/GameConnection.cpp b/src/lobby/GameConnection.cpp index b7156cd4..ce05d0be 100644 --- a/src/lobby/GameConnection.cpp +++ b/src/lobby/GameConnection.cpp @@ -6,11 +6,16 @@ #include #include #include +#include #include #include #include #include +#include + +#include + #include "ServerLobby.h" #include "RestConnector.h" #include "LobbySession.h" @@ -19,15 +24,17 @@ using namespace Sapphire; using namespace Sapphire::Network::Packets; -using namespace Sapphire::Network::Packets::Server; +using namespace Sapphire::Network::Packets::LobbyPackets; +using namespace Sapphire::Network::Packets::LobbyPackets::Server; + extern Lobby::ServerLobby g_serverLobby; extern Lobby::RestConnector g_restConnector; Lobby::GameConnection::GameConnection( Sapphire::Network::HivePtr pHive, - Sapphire::Network::AcceptorPtr pAcceptor ) : - Sapphire::Network::Connection( pHive ), - m_pAcceptor( pAcceptor ), + Sapphire::Network::AcceptorPtr pAcceptor ) : + Sapphire::Network::Connection( std::move( pHive ) ), + m_pAcceptor( std::move( pAcceptor ) ), m_bEncryptionInitialized( false ) { } @@ -44,7 +51,7 @@ void Lobby::GameConnection::onAccept( const std::string& host, uint16_t port ) auto connection = make_GameConnection( m_hive, m_pAcceptor ); m_pAcceptor->accept( connection ); - Logger::info( "Connect from {0}", m_socket.remote_endpoint().address().to_string() ); + Logger::info( "Connect from {0}:{1}", m_socket.remote_endpoint().address().to_string(), m_socket.remote_endpoint().port() ); } @@ -97,168 +104,189 @@ void Lobby::GameConnection::onError( const asio::error_code& error ) } void -Lobby::GameConnection::sendError( uint64_t sequence, uint32_t errorcode, uint16_t messageId, uint32_t tmpId ) +Lobby::GameConnection::sendError( uint32_t requestNumber, uint32_t clientTimeValue, + uint32_t errorCode, uint16_t messageId, uint32_t tmpId ) { - auto errorPacket = makeLobbyPacket< FFXIVIpcLobbyError >( tmpId ); - errorPacket->data().seq = sequence; - errorPacket->data().error_id = errorcode; - errorPacket->data().message_id = messageId; + auto errorPacket = makeLobbyPacket< FFXIVIpcNackReply >( tmpId ); + errorPacket->data().requestNumber = requestNumber; + errorPacket->data().clientTimeValue = clientTimeValue; + errorPacket->data().errorCode = errorCode; + errorPacket->data().errorMessageNo = messageId; LobbyPacketContainer pRP( m_encKey ); pRP.addPacket( errorPacket ); sendPacket( pRP ); } -void Lobby::GameConnection::getCharList( FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ) +void Lobby::GameConnection::serviceLogin( FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ) { - uint64_t sequence = *reinterpret_cast< uint64_t* >( &packet.data[ 0 ] + 0x10 ); - Logger::info( "Sequence [{0}]", sequence ); + auto serviceLoginPacket = LobbyChannelPacket< Client::FFXIVIpcServiceLogin >( packet ); + uint32_t requestNumber = serviceLoginPacket.data().requestNumber; + uint32_t clientTimeValue = serviceLoginPacket.data().clientTimeValue; - Logger::info( "[{0}] ReqCharList", m_pSession->getAccountID() ); + //Logger::info( "requestNumber [{0}]", requestNumber ); + Logger::info( "[accountId#{0}] ReqCharList", m_pSession->getAccountID() ); LobbyPacketContainer pRP( m_encKey ); - auto serverListPacket = makeLobbyPacket< FFXIVIpcServerList >( tmpId ); - serverListPacket->data().seq = 1; - serverListPacket->data().offset = 0; - serverListPacket->data().numServers = 1; - serverListPacket->data().server[ 0 ].id = g_serverLobby.getConfig().global.general.worldID; - serverListPacket->data().server[ 0 ].index = 0; - serverListPacket->data().final = 1; - strcpy( serverListPacket->data().server[ 0 ].name, g_serverLobby.getConfig().worldName.c_str() ); + auto serverListPacket = makeLobbyPacket< FFXIVIpcDistWorldInfo >( tmpId ); + serverListPacket->data().requestNumber = requestNumber; + serverListPacket->data().clientTimeValue = clientTimeValue; + serverListPacket->data().listIndex = 0; + serverListPacket->data().endOfList = 1; + serverListPacket->data().count = 1; + serverListPacket->data().worldArray[ 0 ].worldId = g_serverLobby.getConfig().global.general.worldID; + serverListPacket->data().worldArray[ 0 ].worldIndex = 0; + strcpy( serverListPacket->data().worldArray[ 0 ].displayName, g_serverLobby.getConfig().worldName.c_str() ); + strcpy( serverListPacket->data().worldArray[ 0 ].worldSetName, g_serverLobby.getConfig().worldName.c_str() ); pRP.addPacket( serverListPacket ); - auto retainerListPacket = makeLobbyPacket< FFXIVIpcRetainerList >( tmpId ); - retainerListPacket->data().padding[ 8 ] = 1; + auto retainerListPacket = makeLobbyPacket< FFXIVIpcDistRetainerInfo >( tmpId ); + retainerListPacket->data().endOfList = 1; pRP.addPacket( retainerListPacket ); sendPacket( pRP ); - auto charList = g_restConnector.getCharList( ( char* ) m_pSession->getSessionId() ); + auto charList = g_restConnector.getCharList( m_pSession->getSessionId() ); - uint32_t charIndex = 0; + int32_t charIndex = -1; + uint8_t usedCharaIndex = 0; for( uint8_t i = 0; i < 4; i++ ) { - auto charListPacket = makeLobbyPacket< FFXIVIpcCharList >( tmpId ); - charListPacket->data().seq = sequence; - charListPacket->data().numInPacket = 2; - charListPacket->data().counter = i * 4; + auto charListPacket = makeLobbyPacket< FFXIVIpcServiceLoginReply >( tmpId ); + charListPacket->data().requestNumber = requestNumber; + charListPacket->data().clientTimeValue = clientTimeValue; + charListPacket->data().listIndex = i * 2; + charListPacket->data().count = 2; - for( uint8_t j = 0; j < 2; j++ ) + for( auto& j : charListPacket->data().chrArray ) { - if( charIndex < charList.size() && charList.size() != 0 ) - { - FFXIVIpcCharList::CharaDetails details; - memset( &details, 0, sizeof( FFXIVIpcCharList::CharaDetails ) ); + CharacterInfo details{}; + memset( &details, 0, sizeof( CharacterInfo ) ); + details.chrIndex = ++charIndex; - auto& charEntry = charList[ charIndex ]; - details.uniqueId = std::get< 1 >( charEntry ); - details.contentId = std::get< 2 >( charEntry ); - details.serverId = g_serverLobby.getConfig().global.general.worldID; - details.serverId1 = g_serverLobby.getConfig().global.general.worldID; - details.index = charIndex; - strcpy( details.charDetailJson, std::get< 3 >( charEntry ).c_str() ); - strcpy( details.nameChara, std::get< 0 >( charEntry ).c_str() ); - strcpy( details.nameServer, g_serverLobby.getConfig().worldName.c_str() ); - strcpy( details.nameServer1, g_serverLobby.getConfig().worldName.c_str() ); + if( charList.empty() || charIndex >= charList.size() ) + continue; - charListPacket->data().charaDetails[ j ] = details; + usedCharaIndex = charIndex; - Logger::debug( "[{0}] {1} - {2} - {3} - {4} - {5}", - charIndex, - details.index, - std::get< 0 >( charEntry ), - std::get< 1 >( charEntry ), - std::get< 2 >( charEntry ), - std::get< 3 >( charEntry ) ); - } - charIndex++; + auto& charEntry = charList[ charIndex ]; + details.characterId = std::get< 2 >( charEntry ); + details.playerId = std::get< 1 >( charEntry ); + details.worldId = g_serverLobby.getConfig().global.general.worldID; + + strcpy( details.graphicData, std::get< 3 >( charEntry ).c_str() ); + strcpy( details.chrName, std::get< 0 >( charEntry ).c_str() ); + strcpy( details.worldSetName, g_serverLobby.getConfig().worldName.c_str() ); + + /*Logger::debug( "[{0}] {1} - {2} - {3} - {4} - {5}", + charIndex, + details.chrIndex, + std::get< 0 >( charEntry ), + std::get< 1 >( charEntry ), + std::get< 2 >( charEntry ), + std::get< 3 >( charEntry ) );*/ + + j = details; } - - // TODO: Eventually move to account info storage if( i == 3 ) { - charListPacket->data().entitledExpansion = Common::CURRENT_EXPANSION_ID; - charListPacket->data().maxCharOnWorld = 25; - charListPacket->data().unknown8 = 8; - charListPacket->data().veteranRank = 12; - charListPacket->data().counter = ( i * 4 ) + 1; - charListPacket->data().unknown4 = 128; + charListPacket->data().maxCreateCharacter = Common::MAX_CREATE_CHARACTER; + charListPacket->data().maxCharacterList = Common::MAX_CHARACTER_LIST; + charListPacket->data().endOfList = 1; } - LobbyPacketContainer pRP( m_encKey ); - pRP.addPacket( charListPacket ); - sendPacket( pRP ); + m_pSession->setCharaIndex( usedCharaIndex ); + + LobbyPacketContainer pRP1( m_encKey ); + pRP1.addPacket( charListPacket ); + sendPacket( pRP1 ); } } -void Lobby::GameConnection::enterWorld( FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ) +void Lobby::GameConnection::gameLogin( FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ) { - uint64_t sequence = *reinterpret_cast< uint64_t* >( &packet.data[ 0 ] + 0x10 ); - Logger::info( "Sequence [{0}]", sequence ); + auto serviceLoginPacket = LobbyChannelPacket< Client::FFXIVIpcGameLogin >( packet ); + uint32_t requestNumber = serviceLoginPacket.data().requestNumber; + uint32_t clientTimeValue = serviceLoginPacket.data().clientTimeValue; - Logger::info( "[{0}] ReqEnterWorld", m_pSession->getAccountID() ); + //Logger::info( "requestNumber [{0}]", requestNumber ); - uint64_t lookupId = *reinterpret_cast< uint64_t* >( &packet.data[ 0 ] + 0x18 ); + uint64_t characterId = serviceLoginPacket.data().characterId; + uint64_t playerId = serviceLoginPacket.data().playerId; + uint8_t characterIndex = serviceLoginPacket.data().characterIndex; + uint8_t operation = serviceLoginPacket.data().operation; - uint32_t logInCharId = -1; + Logger::info( "[accountId#{0}] GameLogin: characterId#{1} playerId#{2}", m_pSession->getAccountID(), characterId, playerId ); + + uint64_t ticketId = -1; std::string logInCharName; - auto charList = g_restConnector.getCharList( ( char* ) m_pSession->getSessionId() ); - for( uint32_t i = 0; i < charList.size(); i++ ) - { - uint64_t thisContentId = std::get< 2 >( charList[ i ] ); + auto charList = g_restConnector.getCharList( m_pSession->getSessionId() ); - if( thisContentId == lookupId ) + for( auto& listEntry : charList ) + { + uint64_t thisContentId = std::get< 2 >( listEntry ); + + if( thisContentId == characterId ) { - logInCharId = std::get< 1 >( charList[ i ] ); - logInCharName = std::get< 0 >( charList[ i ] ); + ticketId = std::get< 1 >( listEntry ); + logInCharName = std::get< 0 >( listEntry ); break; } } - if( logInCharId == -1 ) + if( ticketId == -1 ) return; - Logger::info( "[{0}] Logging in as {1} ({2})", m_pSession->getAccountID(), logInCharName, logInCharId ); + Logger::info( "[accountId#{0}] Logging in as {1} ticketId ({2})", m_pSession->getAccountID(), logInCharName, ticketId ); LobbyPacketContainer pRP( m_encKey ); - auto enterWorldPacket = makeLobbyPacket< FFXIVIpcEnterWorld >( tmpId ); - enterWorldPacket->data().contentId = lookupId; - enterWorldPacket->data().seq = sequence; - strcpy( enterWorldPacket->data().host, g_serverLobby.getConfig().global.network.zoneHost.c_str() ); - enterWorldPacket->data().port = g_serverLobby.getConfig().global.network.zonePort; - enterWorldPacket->data().charId = logInCharId; - memcpy( enterWorldPacket->data().sid, m_pSession->getSessionId(), 66 ); + auto enterWorldPacket = makeLobbyPacket< FFXIVIpcGameLoginReply >( tmpId ); + enterWorldPacket->data().characterId = characterId; + enterWorldPacket->data().characterIndex = characterIndex; + enterWorldPacket->data().requestNumber = requestNumber; + enterWorldPacket->data().clientTimeValue = clientTimeValue; + strcpy( enterWorldPacket->data().frontendHost, g_serverLobby.getConfig().global.network.zoneHost.c_str() ); + enterWorldPacket->data().frontendPort = g_serverLobby.getConfig().global.network.zonePort; + enterWorldPacket->data().ticketId = static_cast< uint32_t >( ticketId ); + enterWorldPacket->data().operation = operation; + enterWorldPacket->data().worldId = g_serverLobby.getConfig().global.general.worldID; + memcpy( enterWorldPacket->data().ticketData, m_pSession->getSessionId(), sizeof( enterWorldPacket->data().ticketData ) ); pRP.addPacket( enterWorldPacket ); sendPacket( pRP ); } -bool Lobby::GameConnection::sendServiceAccountList( FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ) +bool Lobby::GameConnection::login( FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ) { - LobbySessionPtr pSession = g_serverLobby.getSession( ( char* ) &packet.data[ 0 ] + 0x22 ); + auto loginPacket = LobbyChannelPacket< Client::FFXIVIpcLogin >( packet ); + LobbySessionPtr pSession = g_serverLobby.getSession( loginPacket.data().sessionId ); - if( g_serverLobby.getConfig().allowNoSessionConnect && pSession == nullptr ) + Logger::info( "Login request from session: {0}", loginPacket.data().sessionId ); + Logger::info( "Client version: {0}", loginPacket.data().version ); + + if( g_serverLobby.getConfig().allowNoSessionConnect && !pSession ) { auto session = make_LobbySession(); session->setAccountID( 0 ); - session->setSessionId( ( uint8_t* ) &packet.data[ 0 ] + 0x22 ); + session->setSessionId( loginPacket.data().sessionId ); pSession = session; - Logger::info( "Allowed connection with no session: {0}", std::string( ( char* ) &packet.data[ 0 ] + 0x22 ) ); + Logger::info( "Allowed connection with no session: {0}", loginPacket.data().sessionId ); } - if( pSession != nullptr ) + if( pSession ) { Logger::info( "Found session linked to accountId: {0}", pSession->getAccountID() ); m_pSession = pSession; - auto serviceIdInfoPacket = makeLobbyPacket< FFXIVIpcServiceIdInfo >( tmpId ); - sprintf( serviceIdInfoPacket->data().serviceAccount[ 0 ].name, "FINAL FANTASY XIV" ); - serviceIdInfoPacket->data().numServiceAccounts = 1; - serviceIdInfoPacket->data().u1 = 3; - serviceIdInfoPacket->data().u2 = 0x99; - serviceIdInfoPacket->data().serviceAccount[ 0 ].id = 0x002E4A2B; + auto serviceIdInfoPacket = makeLobbyPacket< FFXIVIpcLoginReply >( tmpId ); + serviceIdInfoPacket->data().activeAccountCount = 1; + serviceIdInfoPacket->data().regionCode = 3; + serviceIdInfoPacket->data().optionParam = 0x99; + serviceIdInfoPacket->data().accountArray[ 0 ].accountIndex = 1; + serviceIdInfoPacket->data().accountArray[ 0 ].accountId = 0x002E4A2B; + sprintf( serviceIdInfoPacket->data().accountArray[ 0 ].accountName, "%s", Common::SERVICE_ACCOUNT_DEFAULT_NAME.c_str() ); LobbyPacketContainer pRP( m_encKey ); pRP.addPacket( serviceIdInfoPacket ); @@ -266,32 +294,35 @@ bool Lobby::GameConnection::sendServiceAccountList( FFXIVARR_PACKET_RAW& packet, } else { - Logger::info( "Could not retrieve session: {0}", std::string( ( char* ) &packet.data[ 0 ] + 0x22 ) ); - sendError( 1, 5006, 13001, tmpId ); + Logger::info( "Could not retrieve session: {0}", loginPacket.data().sessionId ); + sendError( 1, 0, 5006, 13001, tmpId ); return true; } return false; } -bool Lobby::GameConnection::createOrModifyChar( FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ) +bool Lobby::GameConnection::charaMake( FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ) { - uint64_t sequence = *reinterpret_cast< uint64_t* >( &packet.data[ 0 ] + 0x10 ); - uint8_t type = *reinterpret_cast< uint8_t* >( &packet.data[ 0 ] + 0x29 ); - Logger::info( "Sequence [{0}]", sequence ); - Logger::info( "Type [{0}]", type ); + auto charaMakePacket = LobbyChannelPacket< Client::FFXIVIpcCharaMake >( packet ); - Logger::info( "[{0}] ReqCharCreate", m_pSession->getAccountID() ); + uint32_t requestNumber = charaMakePacket.data().requestNumber; + uint32_t clientTimeValue = charaMakePacket.data().clientTimeValue; + Client::CharacterOperation characterOperation = charaMakePacket.data().operation; + //Logger::info( "requestNumber [{0}]", requestNumber ); + Logger::info( "Character Operation [{0}]", characterOperation ); - std::string name; - uint32_t newId = g_restConnector.getNextCharId(); - uint64_t newContentId = g_restConnector.getNextContentId(); + uint64_t characterId = charaMakePacket.data().characterId; + uint64_t playerId = charaMakePacket.data().playerId; + uint8_t characterIndex = charaMakePacket.data().characterIndex; - if( type == 1 ) //Character creation name check + Logger::info( "[accountId#{0}] ReqCharCreate", m_pSession->getAccountID() ); + + if( characterOperation == Client::CharacterOperation::CHARAOPE_RESERVENAME ) //Character creation name check { - name = std::string( ( char* ) &packet.data[ 0 ] + 0x2C ); + std::string name = std::string( charaMakePacket.data().chracterName ); - Logger::info( "[{0}] Type 1: {1}", m_pSession->getAccountID(), name ); + Logger::info( "[accountId#{0}] Character Operation CHARAOPE_RESERVENAME: {1}", m_pSession->getAccountID(), name ); LobbyPacketContainer pRP( m_encKey ); @@ -299,72 +330,80 @@ bool Lobby::GameConnection::createOrModifyChar( FFXIVARR_PACKET_RAW& packet, uin if( g_restConnector.checkNameTaken( m_pSession->newCharName ) ) { - sendError( sequence, 3074, 13004, tmpId ); + sendError( requestNumber, clientTimeValue, 3074, 13004, tmpId ); return true; } + uint64_t newContentId = g_restConnector.getNextContentId(); - auto charCreatePacket = makeLobbyPacket< FFXIVIpcCharCreate >( tmpId ); - charCreatePacket->data().content_id = newContentId; - strcpy( charCreatePacket->data().name, name.c_str() ); - strcpy( charCreatePacket->data().world, g_serverLobby.getConfig().worldName.c_str() ); - charCreatePacket->data().type = 1; - charCreatePacket->data().seq = sequence; - charCreatePacket->data().unknown = 1; - charCreatePacket->data().unknown_2 = 1; - charCreatePacket->data().unknown_7 = 1; - charCreatePacket->data().unknown_8 = 1; + auto charCreatePacket = makeLobbyPacket< FFXIVIpcCharaMakeReply >( tmpId ); + charCreatePacket->data().chrArray[0].characterId = newContentId; + charCreatePacket->data().chrArray[0].chrIndex = m_pSession->getCharaIndex() + 1; + charCreatePacket->data().chrArray[0].worldId = g_serverLobby.getConfig().global.general.worldID; + strcpy( charCreatePacket->data().chrArray[0].chrName, m_pSession->newCharName.c_str() ); + strcpy( charCreatePacket->data().chrArray[0].worldSetName, g_serverLobby.getConfig().worldName.c_str() ); + charCreatePacket->data().optionParam = Client::CharacterOperation::CHARAOPE_RESERVENAME; + charCreatePacket->data().requestNumber = requestNumber; + charCreatePacket->data().clientTimeValue = clientTimeValue; + charCreatePacket->data().endOfList = 1; + charCreatePacket->data().count = 1; pRP.addPacket( charCreatePacket ); sendPacket( pRP ); } - else if( type == 2 ) //Character creation finalize + else if( characterOperation == Client::CharacterOperation::CHARAOPE_MAKECHARA ) //Character creation finalize { - std::string charDetails( ( char* ) &packet.data[ 0 ] + 0x4C ); - Logger::info( "[{0}] Type 2: {1}", m_pSession->getAccountID(), charDetails ); + std::string charDetails( charaMakePacket.data().charaMakeData ); + Logger::info( "[accountId#{0}] Character Operation CHARAOPE_MAKECHARA: {1}", m_pSession->getAccountID(), charDetails ); - if( g_restConnector.createCharacter( ( char* ) m_pSession->getSessionId(), m_pSession->newCharName, charDetails ) != + if( g_restConnector.createCharacter( m_pSession->getSessionId(), m_pSession->newCharName, charDetails ) != -1 ) { LobbyPacketContainer pRP( m_encKey ); - auto charCreatePacket = makeLobbyPacket< FFXIVIpcCharCreate >( tmpId ); - charCreatePacket->data().content_id = newContentId; - strcpy( charCreatePacket->data().name, name.c_str() ); - strcpy( charCreatePacket->data().world, g_serverLobby.getConfig().worldName.c_str() ); - strcpy( charCreatePacket->data().world2, g_serverLobby.getConfig().worldName.c_str() ); - charCreatePacket->data().type = 2; - charCreatePacket->data().seq = sequence; - charCreatePacket->data().unknown = 1; - charCreatePacket->data().unknown_2 = 1; - charCreatePacket->data().unknown_7 = 1; - charCreatePacket->data().unknown_8 = 1; + uint8_t newCharaIndex = m_pSession->getCharaIndex() + 1; + + uint32_t newId = g_restConnector.getNextCharId(); + m_pSession->setCharaIndex( newCharaIndex ); + + Logger::info( "[accountId#{0}] index {1} charaterId {2}", m_pSession->getAccountID(), newCharaIndex, characterId ); + Logger::info( "[accountId#{0}] index {1} playerId {2}", m_pSession->getAccountID(), newCharaIndex, newId ); + + auto charCreatePacket = makeLobbyPacket< FFXIVIpcCharaMakeReply >( tmpId ); + charCreatePacket->data().chrArray[0].playerId = characterId; + charCreatePacket->data().chrArray[0].chrIndex = newCharaIndex; + charCreatePacket->data().chrArray[0].characterId = characterId; + charCreatePacket->data().chrArray[0].worldId = g_serverLobby.getConfig().global.general.worldID; + strcpy( charCreatePacket->data().chrArray[0].chrName, m_pSession->newCharName.c_str() ); + strcpy( charCreatePacket->data().chrArray[0].worldSetName, g_serverLobby.getConfig().worldName.c_str() ); + charCreatePacket->data().optionParam = Client::CharacterOperation::CHARAOPE_MAKECHARA; + charCreatePacket->data().requestNumber = requestNumber; + charCreatePacket->data().clientTimeValue = clientTimeValue; + charCreatePacket->data().endOfList = 1; + charCreatePacket->data().count = 1; pRP.addPacket( charCreatePacket ); sendPacket( pRP ); } else { - sendError( sequence, 5006, 13001, tmpId ); + sendError( requestNumber, clientTimeValue, 5006, 13001, tmpId ); } } - else if( type == 4 ) //Character delete + else if( characterOperation == Client::CharacterOperation::CHARAOPE_DELETECHARA ) //Character delete { - name = std::string( ( char* ) &packet.data[ 0 ] + 0x2C ); - Logger::info( "[{0}] Type 4: {1}", m_pSession->getAccountID(), name ); + std::string name = std::string( charaMakePacket.data().chracterName ); + Logger::info( "[accountId#{0}] Character Operation CHARAOPE_DELETECHARA: {1}", m_pSession->getAccountID(), name ); - if( g_restConnector.deleteCharacter( ( char* ) m_pSession->getSessionId(), name ) ) + if( g_restConnector.deleteCharacter( m_pSession->getSessionId(), name ) ) { - auto charCreatePacket = makeLobbyPacket< FFXIVIpcCharCreate >( tmpId ); - //charCreatePacket->data().content_id = deletePlayer.getContentId(); - charCreatePacket->data().content_id = 0; - strcpy( charCreatePacket->data().name, name.c_str() ); - strcpy( charCreatePacket->data().world, g_serverLobby.getConfig().worldName.c_str() ); - charCreatePacket->data().type = 4; - charCreatePacket->data().seq = sequence; - charCreatePacket->data().unknown = 1; - charCreatePacket->data().unknown_2 = 1; - charCreatePacket->data().unknown_7 = 1; - charCreatePacket->data().unknown_8 = 1; + auto charCreatePacket = makeLobbyPacket< FFXIVIpcCharaMakeReply >( tmpId ); + strcpy( charCreatePacket->data().chrArray[0].chrName, name.c_str() ); + strcpy( charCreatePacket->data().chrArray[0].worldSetName, g_serverLobby.getConfig().worldName.c_str() ); + charCreatePacket->data().optionParam = Client::CharacterOperation::CHARAOPE_DELETECHARA; + charCreatePacket->data().requestNumber = requestNumber; + charCreatePacket->data().clientTimeValue = clientTimeValue; + charCreatePacket->data().endOfList = 1; + charCreatePacket->data().count = 1; LobbyPacketContainer pRP( m_encKey ); pRP.addPacket( charCreatePacket ); @@ -372,52 +411,113 @@ bool Lobby::GameConnection::createOrModifyChar( FFXIVARR_PACKET_RAW& packet, uin } else { - sendError( sequence, 5006, 13001, tmpId ); + sendError( requestNumber, clientTimeValue, 5006, 13001, tmpId ); } } else { - Logger::error( "[{0}] Unknown Character Creation Type: {1}", m_pSession->getAccountID(), type ); + Logger::error( "[accountId#{0}] Unhandled Character Operation: {1}", m_pSession->getAccountID(), characterOperation ); } return false; } +void Lobby::GameConnection::debugLogin( FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ) +{ + auto debugLoginPacket = LobbyChannelPacket< Client::FFXIVIpcDebugLogin >( packet ); + + uint32_t requestNumber = debugLoginPacket.data().requestNumber; + + //Logger::info( "requestNumber [{0}]", requestNumber ); + + Logger::info( "[accountId#{0}] {1} DebugLogin", m_pSession->getAccountID(), debugLoginPacket.data().ticketNumber ); + + auto debugLoginReplPacket = makeLobbyPacket< FFXIVIpcDebugLoginRepl >( tmpId ); + + debugLoginReplPacket->data().requestNumber = requestNumber; + //TODO: Why is the client sending the wrong ticket number? Find out why (for now just set to 1 so it grabs the one out of the config) + debugLoginReplPacket->data().ticketNumber = 1; + debugLoginReplPacket->data().frontendPort = g_serverLobby.getConfig().global.network.zonePort; + strcpy( debugLoginReplPacket->data().frontendHost, g_serverLobby.getConfig().global.network.zoneHost.c_str() ); + strcpy( debugLoginReplPacket->data().worldSetName, g_serverLobby.getConfig().worldName.c_str() ); + + LobbyPacketContainer pRP( m_encKey ); + pRP.addPacket( debugLoginReplPacket ); + sendPacket( pRP ); +} + +void Lobby::GameConnection::debugLogin2( FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ) +{ + auto debugLoginPacket = LobbyChannelPacket< Client::FFXIVIpcDebugLogin2 >( packet ); + + uint32_t requestNumber = debugLoginPacket.data().requestNumber; + + //Logger::info( "requestNumber [{0}]", requestNumber ); + + Logger::info( "[accountId#{0}] {1} DebugLogin2", m_pSession->getAccountID(), debugLoginPacket.data().ticketNumber ); + + auto debugLoginReplPacket = makeLobbyPacket< FFXIVIpcDebugLoginRepl >(tmpId); + + debugLoginReplPacket->data().requestNumber = requestNumber; + //TODO: Why is the client sending the wrong ticket number? Find out why (for now just set to 1 so it grabs the one out of the config) + debugLoginReplPacket->data().ticketNumber = 1; + debugLoginReplPacket->data().frontendPort = g_serverLobby.getConfig().global.network.zonePort; + strcpy( debugLoginReplPacket->data().frontendHost, g_serverLobby.getConfig().global.network.zoneHost.c_str() ); + strcpy( debugLoginReplPacket->data().worldSetName, g_serverLobby.getConfig().worldName.c_str() ); + + LobbyPacketContainer pRP( m_encKey ); + pRP.addPacket( debugLoginReplPacket ); + sendPacket( pRP ); +} + void Lobby::GameConnection::handleGamePacket( Network::Packets::FFXIVARR_PACKET_RAW& packet ) { - uint32_t tmpId = packet.segHdr.target_actor; - Logger::info( "OpCode [{0}]", *reinterpret_cast< uint16_t* >( &packet.data[ 2 ] ) ); + uint32_t accountId = 0; + if( m_pSession ) + accountId = m_pSession->getAccountID(); + + Logger::info( "[accountId#{0}] OpCode {1}", accountId, *reinterpret_cast< uint16_t* >( &packet.data[ 2 ] ) ); switch( *reinterpret_cast< uint16_t* >( &packet.data[ 2 ] ) ) { - case ClientVersionInfo: + case LoginEx: { // todo: validate client version based on sha1 or gamever/bootver - sendServiceAccountList( packet, tmpId ); + login( packet, tmpId ); } break; - case ReqCharList: + case ServiceLogin: { - getCharList( packet, tmpId ); + serviceLogin( packet, tmpId ); } break; - case ReqEnterWorld: + case GameLogin: { - enterWorld( packet, tmpId ); + gameLogin( packet, tmpId ); } break; - case ReqCharCreate: + case CharaMake: { - createOrModifyChar( packet, tmpId ); + charaMake( packet, tmpId ); } break; + case DebugLogin: + { + debugLogin( packet, tmpId ); + } + break; + + case DebugLogin2: + { + debugLogin2( packet, tmpId ); + } + break; } - } void Lobby::GameConnection::sendPacket( LobbyPacketContainer& pLpc ) @@ -440,28 +540,23 @@ void Lobby::GameConnection::sendPackets( Network::Packets::PacketContainer* pPac void Lobby::GameConnection::sendSinglePacket( FFXIVPacketBasePtr pPacket ) { PacketContainer pRP = PacketContainer(); - pRP.addPacket( pPacket ); + pRP.addPacket( std::move( pPacket ) ); sendPackets( &pRP ); } void Lobby::GameConnection::generateEncryptionKey( uint32_t key, const std::string& keyPhrase ) { - memset( m_baseKey, 0, 0x2C ); - m_baseKey[ 0 ] = 0x78; - m_baseKey[ 1 ] = 0x56; - m_baseKey[ 2 ] = 0x34; - m_baseKey[ 3 ] = 0x12; - memcpy( m_baseKey + 0x04, &key, 4 ); - m_baseKey[ 8 ] = 0x18; - m_baseKey[ 9 ] = 0x15; - memcpy( ( char* ) m_baseKey + 0x0C, keyPhrase.c_str(), keyPhrase.size() ); - Common::Util::md5( m_baseKey, m_encKey, 0x2C ); + std::memset( m_baseKey.rawKey, 0, sizeof( m_baseKey ) ); + m_baseKey.magic = 0x12345678; + m_baseKey.key = key; + m_baseKey.version = Common::FFXIV_ENC_VERSION; + std::memcpy( m_baseKey.keyPhrase, keyPhrase.c_str(), keyPhrase.size() ); + Common::Util::md5( m_baseKey.rawKey, m_encKey, sizeof( m_baseKey ) ); } void Lobby::GameConnection::handlePackets( const Network::Packets::FFXIVARR_PACKET_HEADER& ipcHeader, const std::vector< Network::Packets::FFXIVARR_PACKET_RAW >& packetData ) { - for( auto inPacket : packetData ) { @@ -495,7 +590,10 @@ void Lobby::GameConnection::handlePackets( const Network::Packets::FFXIVARR_PACK case SEGMENTTYPE_IPC: // game packet { - Logger::info( "GamePacket [{0}]", inPacket.segHdr.type ); + uint32_t accountId = 0; + if( m_pSession ) + accountId = m_pSession->getAccountID(); + Logger::info( "[accountId#{0}] GamePacket {1}", accountId, inPacket.segHdr.type ); handleGamePacket( inPacket ); break; } diff --git a/src/lobby/GameConnection.h b/src/lobby/GameConnection.h index a98c01c5..7a9a4531 100644 --- a/src/lobby/GameConnection.h +++ b/src/lobby/GameConnection.h @@ -28,7 +28,17 @@ namespace Sapphire::Lobby uint8_t m_encKey[0x10]; // base key, the encryption key is generated from this - uint8_t m_baseKey[0x2C]; + union + { + struct { + uint32_t magic; + uint32_t key; + uint32_t version; + char keyPhrase[ 0x20 ]; + }; + uint8_t rawKey[ 0x2C ]; + } m_baseKey; + bool m_bEncryptionInitialized; @@ -56,15 +66,19 @@ namespace Sapphire::Lobby void onError( const asio::error_code& error ) override; - void sendError( uint64_t sequence, uint32_t errorcode, uint16_t messageId, uint32_t tmpId ); + void sendError( uint32_t requestNumber, uint32_t clientTimeValue, uint32_t errorCode, uint16_t messageId, uint32_t tmpId ); - void getCharList( Network::Packets::FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ); + void serviceLogin( Network::Packets::FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ); - void enterWorld( Network::Packets::FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ); + void gameLogin( Network::Packets::FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ); - bool sendServiceAccountList( Network::Packets::FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ); + bool login( Network::Packets::FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ); - bool createOrModifyChar( Network::Packets::FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ); + bool charaMake( Network::Packets::FFXIVARR_PACKET_RAW& packet, uint32_t tmpId ); + + void debugLogin( Network::Packets::FFXIVARR_PACKET_RAW &packet, uint32_t tmpId ); + + void debugLogin2( Network::Packets::FFXIVARR_PACKET_RAW & packet, uint32_t tmpId ); void handlePackets( const Network::Packets::FFXIVARR_PACKET_HEADER& ipcHeader, const std::vector< Network::Packets::FFXIVARR_PACKET_RAW >& packetData ); diff --git a/src/lobby/LobbySession.cpp b/src/lobby/LobbySession.cpp deleted file mode 100644 index dc30fae2..00000000 --- a/src/lobby/LobbySession.cpp +++ /dev/null @@ -1,15 +0,0 @@ -#include "LobbySession.h" - -using namespace Sapphire::Lobby; - -LobbySession::LobbySession( void ) -{ - //setSocket(NULL); - -} - -LobbySession::~LobbySession( void ) -{ - -} - diff --git a/src/lobby/LobbySession.h b/src/lobby/LobbySession.h index 66a77c27..b3396c5f 100644 --- a/src/lobby/LobbySession.h +++ b/src/lobby/LobbySession.h @@ -16,28 +16,28 @@ namespace Sapphire::Lobby private: uint32_t m_IP; uint32_t m_accountID; - uint8_t m_sessionId[56]; + char m_sessionId[ 64 ]; + uint8_t m_charaIndex; public: std::string newCharName; - LobbySession( void ); - - ~LobbySession( void ); + LobbySession() = default; + ~LobbySession() = default; uint32_t getIP() { return m_IP; } - uint8_t* getSessionId() + char* getSessionId() { return m_sessionId; } - void setSessionId( uint8_t* sessionId ) + void setSessionId( char* sessionId ) { - memcpy( m_sessionId, sessionId, 56 ); + memcpy( m_sessionId, sessionId, sizeof( m_sessionId ) ); } void setIP( uint32_t iP ) @@ -54,6 +54,15 @@ namespace Sapphire::Lobby { m_accountID = iD; } + void setCharaIndex( uint8_t index ) + { + m_charaIndex = index; + } + + uint8_t getCharaIndex() + { + return m_charaIndex; + } }; diff --git a/src/lobby/RestConnector.cpp b/src/lobby/RestConnector.cpp index a8ee459f..bef831b5 100644 --- a/src/lobby/RestConnector.cpp +++ b/src/lobby/RestConnector.cpp @@ -3,7 +3,6 @@ #include "ServerLobby.h" #include #include -#include #include #include @@ -69,7 +68,7 @@ Lobby::LobbySessionPtr Lobby::RestConnector::getSession( char* sId ) { LobbySessionPtr pSession( new Lobby::LobbySession() ); pSession->setAccountID( json["result"].get< uint32_t >() ); - pSession->setSessionId( ( uint8_t* ) sId ); + pSession->setSessionId( sId ); return pSession; } else @@ -121,7 +120,7 @@ uint32_t Lobby::RestConnector::getNextCharId() { std::string json_string = "{\"secret\": \"" + serverSecret + "\"}"; - HttpResponse r = requestApi( "getNextCharId", json_string ); + HttpResponse r = requestApi( "getNextEntityId", json_string ); if( r == nullptr ) return -1; @@ -160,7 +159,7 @@ uint64_t Lobby::RestConnector::getNextContentId() { std::string json_string = "{\"secret\": \"" + serverSecret + "\"}"; - HttpResponse r = requestApi( "getNextContentId", json_string ); + HttpResponse r = requestApi( "getNextCharaId", json_string ); if( r == nullptr ) return -1; @@ -197,7 +196,7 @@ uint64_t Lobby::RestConnector::getNextContentId() CharList Lobby::RestConnector::getCharList( char* sId ) { - std::string json_string = "{\"sId\": \"" + std::string( sId, 56 ) + "\",\"secret\": \"" + serverSecret + "\"}"; + std::string json_string = "{\"sId\": \"" + std::string( sId ) + "\",\"secret\": \"" + serverSecret + "\"}"; HttpResponse r = requestApi( "getCharacterList", json_string ); @@ -206,7 +205,7 @@ CharList Lobby::RestConnector::getCharList( char* sId ) return list; std::string content = std::string( std::istreambuf_iterator< char >( r->content ), {} ); - Logger::debug( content ); + //Logger::debug( content ); if( r->status_code.find( "200" ) != std::string::npos ) { auto json = nlohmann::json(); @@ -224,14 +223,14 @@ CharList Lobby::RestConnector::getCharList( char* sId ) if( json["result"].get< std::string >().find( "invalid" ) == std::string::npos ) { - Logger::debug( json["result"] ); + //Logger::debug( json["result"] ); for( auto& child : json["charArray"] ) { - Logger::info( child["contentId"] ); + //Logger::info( child["contentId"] ); //std::string, uint32_t, uint64_t, std::string list.push_back( { child["name"], - std::stoi( std::string( child["charId"] ) ), + std::stoi( std::string( child["entityId"] ) ), std::stoll( std::string( child["contentId"] ) ), child["infoJson"] } ); @@ -254,7 +253,7 @@ CharList Lobby::RestConnector::getCharList( char* sId ) bool Lobby::RestConnector::deleteCharacter( char* sId, std::string name ) { std::string json_string = - "{\"sId\": \"" + std::string( sId, 56 ) + "\",\"secret\": \"" + serverSecret + "\",\"name\": \"" + name + "\"}"; + "{\"sId\": \"" + std::string( sId ) + "\",\"secret\": \"" + serverSecret + "\",\"name\": \"" + name + "\"}"; HttpResponse r = requestApi( "deleteCharacter", json_string ); @@ -288,7 +287,7 @@ bool Lobby::RestConnector::deleteCharacter( char* sId, std::string name ) int Lobby::RestConnector::createCharacter( char* sId, std::string name, std::string infoJson ) { std::string json_string = - "{\"sId\": \"" + std::string( sId, 56 ) + "\",\"secret\": \"" + serverSecret + "\",\"name\": \"" + name + + "{\"sId\": \"" + std::string( sId ) + "\",\"secret\": \"" + serverSecret + "\",\"name\": \"" + name + "\",\"infoJson\": \"" + Common::Util::base64Encode( ( uint8_t* ) infoJson.c_str(), infoJson.length() ) + "\"}"; HttpResponse r = requestApi( "createCharacter", json_string ); @@ -297,7 +296,7 @@ int Lobby::RestConnector::createCharacter( char* sId, std::string name, std::str return -1; std::string content = std::string( std::istreambuf_iterator< char >( r->content ), {} ); - Logger::debug( content ); + //Logger::debug( content ); if( r->status_code.find( "200" ) != std::string::npos ) { auto json = nlohmann::json(); diff --git a/src/lobby/ServerLobby.cpp b/src/lobby/ServerLobby.cpp index 97a252fa..d9d3a58b 100644 --- a/src/lobby/ServerLobby.cpp +++ b/src/lobby/ServerLobby.cpp @@ -10,7 +10,6 @@ #include #include - #include "ServerLobby.h" #include "GameConnection.h" diff --git a/src/lobby/mainLobbyServer.cpp b/src/lobby/mainLobbyServer.cpp index 0b16ff26..eb3c7653 100644 --- a/src/lobby/mainLobbyServer.cpp +++ b/src/lobby/mainLobbyServer.cpp @@ -2,7 +2,7 @@ #include -[[maybe_unused]] Sapphire::Common::Util::CrashHandler crashHandler; +Sapphire::Common::Util::CrashHandler crashHandler; Sapphire::Lobby::ServerLobby g_serverLobby( "lobby.ini" ); diff --git a/src/scripts/CMakeLists.txt b/src/scripts/CMakeLists.txt index c049a97f..33459e24 100644 --- a/src/scripts/CMakeLists.txt +++ b/src/scripts/CMakeLists.txt @@ -55,9 +55,6 @@ foreach(_scriptDir ${children}) configure_file("${CMAKE_CURRENT_SOURCE_DIR}/ScriptLoader.cpp.in" "${_scriptDir}/ScriptLoader.cpp") - if( UNIX ) - cotire("script_${_name}") - endif() if(MSVC) add_custom_command(TARGET "script_${_name}" POST_BUILD diff --git a/src/scripts/ScriptLoader.cpp.in b/src/scripts/ScriptLoader.cpp.in index c68d5f5d..e0fe6f4b 100644 --- a/src/scripts/ScriptLoader.cpp.in +++ b/src/scripts/ScriptLoader.cpp.in @@ -1,5 +1,10 @@ #include